You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The Cart API does not maintain the state of a completed Cart that became an order.
886
+
*/
881
887
completedAt?: DateTime;
882
888
createdAt: DateTime;
883
889
currencyCode: CurrencyCode;
884
890
customAttributes: Attribute[];
885
891
email?: string;
886
892
lineItemsSubtotalPrice: MoneyV2;
887
893
note?: string;
894
+
/**
895
+
* @deprecated
896
+
* Not supported. Defaults to `null`.
897
+
*
898
+
* To retrieve customer orders, please use either the [Customer Account API](https://shopify.dev/docs/api/customer) or the legacy [Customer API](https://shopify.dev/docs/api/storefront/2025-01/objects/customer).
899
+
*/
888
900
order?: Order;
901
+
/**
902
+
* @deprecated
903
+
* Not supported. Defaults to `null`.
904
+
*
905
+
* To retrieve customer orders, please use either the [Customer Account API](https://shopify.dev/docs/api/customer) or the legacy [Customer API](https://shopify.dev/docs/api/storefront/2025-01/objects/customer).
906
+
*/
889
907
orderStatusUrl?: URL;
890
908
paymentDue: MoneyV2;
909
+
/**
910
+
* @deprecated
911
+
* Not supported. Defaults to `false`.
912
+
*
913
+
* The [Cart API](https://shopify.dev/docs/api/storefront/2025-01/objects/cart) returns only carts that are considered ready. Simply bypass or remove any existing code depending on this field.
914
+
*/
891
915
ready: boolean;
916
+
/**
917
+
* @deprecated
918
+
* Not supported. Defaults to `false`.
919
+
*
920
+
* The [Cart API](https://shopify.dev/docs/api/storefront/2025-01/objects/cart) does not contain shipping information, this is currently handled in the Checkout flow. Remove any existing code depending on these fields.
* The [Cart API](https://shopify.dev/docs/api/storefront/2025-01/objects/cart) does not contain shipping information, this is currently handled in the Checkout flow. Remove any existing code depending on these fields.
930
+
*/
895
931
shippingLine?: ShippingRate;
896
932
subtotalPrice: MoneyV2;
933
+
/**
934
+
* @deprecated
935
+
* Not supported. Defaults to `false`.
936
+
*
937
+
* The [Cart API](https://shopify.dev/docs/api/storefront/2025-01/objects/cart) does not have Tax aware as this is currently handled in the Checkout flow. Remove any existing code depending on this field.
938
+
*/
897
939
taxExempt: boolean;
940
+
/**
941
+
* @deprecated
942
+
* Not supported. Defaults to `false`.
943
+
*
944
+
* The [Cart API](https://shopify.dev/docs/api/storefront/2025-01/objects/cart) does not have Tax aware as this is currently handled in the Checkout flow. Remove any existing code depending on this field.
0 commit comments