@wix/auto_sdk_ecom_cart-v-2 1.0.22 → 1.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/build/cjs/index.d.ts +34 -19
  2. package/build/cjs/index.js +2 -68
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.js +2 -68
  5. package/build/cjs/index.typings.js.map +1 -1
  6. package/build/cjs/meta.d.ts +22 -19
  7. package/build/cjs/meta.js +0 -68
  8. package/build/cjs/meta.js.map +1 -1
  9. package/build/es/index.d.mts +34 -19
  10. package/build/es/index.mjs +2 -68
  11. package/build/es/index.mjs.map +1 -1
  12. package/build/es/index.typings.mjs +2 -68
  13. package/build/es/index.typings.mjs.map +1 -1
  14. package/build/es/meta.d.mts +22 -19
  15. package/build/es/meta.mjs +0 -68
  16. package/build/es/meta.mjs.map +1 -1
  17. package/build/internal/cjs/index.d.ts +1 -3
  18. package/build/internal/cjs/index.js +2 -68
  19. package/build/internal/cjs/index.js.map +1 -1
  20. package/build/internal/cjs/index.typings.d.ts +35 -22
  21. package/build/internal/cjs/index.typings.js +2 -68
  22. package/build/internal/cjs/index.typings.js.map +1 -1
  23. package/build/internal/cjs/meta.d.ts +22 -19
  24. package/build/internal/cjs/meta.js +0 -68
  25. package/build/internal/cjs/meta.js.map +1 -1
  26. package/build/internal/es/index.d.mts +1 -3
  27. package/build/internal/es/index.mjs +2 -68
  28. package/build/internal/es/index.mjs.map +1 -1
  29. package/build/internal/es/index.typings.d.mts +35 -22
  30. package/build/internal/es/index.typings.mjs +2 -68
  31. package/build/internal/es/index.typings.mjs.map +1 -1
  32. package/build/internal/es/meta.d.mts +22 -19
  33. package/build/internal/es/meta.mjs +0 -68
  34. package/build/internal/es/meta.mjs.map +1 -1
  35. package/package.json +2 -2
@@ -25,13 +25,15 @@ interface Cart {
25
25
  revision?: string | null;
26
26
  /**
27
27
  * Line items added to the Cart by the customer.
28
- * This list may include both valid items (in stock) and invalid ones (e.g., out of stock).
29
- * When submitting an order, only valid items will be included in the order.
28
+ * This list may include items in stock and invalid out out stock.
30
29
  * @maxSize 300
31
30
  * @readonly
32
31
  */
33
32
  lineItems?: V2LineItem[];
34
- /** The sum of all line item final prices. */
33
+ /**
34
+ * The sum of all line item final prices.
35
+ * @readonly
36
+ */
35
37
  subtotal?: ConvertedMoney;
36
38
  /**
37
39
  * Optional message left by the customer.
@@ -43,6 +45,7 @@ interface Cart {
43
45
  * List of coupons added to the Cart.
44
46
  * Currently, only one coupon code is supported.
45
47
  * @maxSize 1
48
+ * @readonly
46
49
  */
47
50
  coupons?: Coupon[];
48
51
  /** Information about the source of the Cart, detailing the origin or context in which the Cart was created. */
@@ -227,6 +230,7 @@ interface ConvertedMoney {
227
230
  * Default: `amount`.
228
231
  * @format DECIMAL_VALUE
229
232
  * @decimalValue options { gte:0, lte:999999999, maxScale:3 }
233
+ * @readonly
230
234
  */
231
235
  convertedAmount?: string;
232
236
  }
@@ -446,11 +450,6 @@ interface Image {
446
450
  * @maxLength 400
447
451
  */
448
452
  id?: string;
449
- /**
450
- * Image URL.
451
- * @format WEB_URL
452
- */
453
- url?: string;
454
453
  /**
455
454
  * Original image height.
456
455
  * @readonly
@@ -2034,7 +2033,6 @@ interface CreateCurrentCartRequest {
2034
2033
  /**
2035
2034
  * Coupons to apply.
2036
2035
  * Currently only one is supported.
2037
- * If the coupon code is invalid, the cart will be created without it.
2038
2036
  * @maxSize 1
2039
2037
  * @minLength 1
2040
2038
  * @maxLength 50
@@ -2043,7 +2041,6 @@ interface CreateCurrentCartRequest {
2043
2041
  /**
2044
2042
  * Gift cards to add.
2045
2043
  * Currently only one is support.
2046
- * If the gift card code is invalid, the cart will be created without it.
2047
2044
  * @maxSize 1
2048
2045
  * @minLength 8
2049
2046
  * @maxLength 20
@@ -2118,18 +2115,14 @@ interface CustomItemPricingInfo {
2118
2115
  /**
2119
2116
  * Sale price of a single item, without modifiers.
2120
2117
  * Includes tax if `tax_info.prices_include_tax` is true.
2121
- * @format DECIMAL_VALUE
2122
- * @decimalValue options { gte:0, lte:1000000000000000, maxScale:3 }
2123
2118
  */
2124
- price?: string;
2119
+ price?: ConvertedMoney;
2125
2120
  /**
2126
2121
  * Full price of a single item before any discounts, without modifiers.
2127
2122
  * Defaults to `price` when not provided.
2128
2123
  * Includes tax if `tax_info.prices_include_tax` is true.
2129
- * @format DECIMAL_VALUE
2130
- * @decimalValue options { gte:0, lte:1000000000000000, maxScale:3 }
2131
2124
  */
2132
- fullPrice?: string | null;
2125
+ fullPrice?: ConvertedMoney;
2133
2126
  /**
2134
2127
  * Additional description for the price.
2135
2128
  * For example, when price is 0 but additional details about the actual price are needed - "Starts at $67".
@@ -2245,6 +2238,12 @@ interface RefreshCurrentCartResponse {
2245
2238
  cart?: Cart;
2246
2239
  }
2247
2240
  interface CalculateCurrentCartRequest {
2241
+ /**
2242
+ * Whether to retrieve the latest item prices, discounts, and inventory data from the catalogs before calculating the cart.
2243
+ *
2244
+ * Default: `false`
2245
+ */
2246
+ refreshCart?: boolean;
2248
2247
  /**
2249
2248
  * Specifies the level of **business validation** to perform during cart calculation,
2250
2249
  * by calling the [Validations service plugin](https://dev.wix.com/api/rest/wix-ecommerce/validations-integration-spi/introduction).
@@ -2569,7 +2568,6 @@ interface CreateCartRequest {
2569
2568
  /**
2570
2569
  * Coupons to apply.
2571
2570
  * Currently only one is supported.
2572
- * If the coupon code is invalid, the cart will be created without it.
2573
2571
  * @maxSize 1
2574
2572
  * @minLength 1
2575
2573
  * @maxLength 50
@@ -2578,7 +2576,6 @@ interface CreateCartRequest {
2578
2576
  /**
2579
2577
  * Gift cards to add.
2580
2578
  * Currently only one is support.
2581
- * If the gift card code is invalid, the cart will be created without it.
2582
2579
  * @maxSize 1
2583
2580
  * @minLength 8
2584
2581
  * @maxLength 20
@@ -2634,6 +2631,12 @@ interface CalculateCartRequest {
2634
2631
  * @format GUID
2635
2632
  */
2636
2633
  cartId: string;
2634
+ /**
2635
+ * Whether to retrieve the latest item prices, discounts, and inventory data from the catalogs before calculating the cart.
2636
+ *
2637
+ * Default: `false`
2638
+ */
2639
+ refreshCart?: boolean;
2637
2640
  /**
2638
2641
  * Specifies the level of **business validation** to perform during cart calculation,
2639
2642
  * by calling the [Validations service plugin](https://dev.wix.com/api/rest/wix-ecommerce/validations-integration-spi/introduction).
@@ -2737,7 +2740,7 @@ interface PlaceOrderResponse {
2737
2740
  */
2738
2741
  paymentGatewayOrderId?: string | null;
2739
2742
  /** Whether an order was successfully created from this cart and the payment transaction was completed. */
2740
- cartCompleted?: boolean;
2743
+ completed?: boolean;
2741
2744
  }
2742
2745
  interface AddLineItemsRequest {
2743
2746
  /**
@@ -106,18 +106,10 @@ function createCart(payload) {
106
106
  paths: [
107
107
  { path: "cart.createdDate" },
108
108
  { path: "cart.updatedDate" },
109
- {
110
- path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
111
- },
112
- { path: "cart.lineItems.attributes.image.urlExpirationDate" },
113
109
  {
114
110
  path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
115
111
  },
116
112
  { path: "cart.lineItems.attributes.serviceProperties.scheduledDate" },
117
- {
118
- path: "catalogItems.catalogOverrideFields.image.urlExpirationDate"
119
- },
120
- { path: "customItems.attributes.image.urlExpirationDate" },
121
113
  {
122
114
  path: "customItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
123
115
  },
@@ -162,10 +154,6 @@ function createCart(payload) {
162
154
  paths: [
163
155
  { path: "cart.createdDate" },
164
156
  { path: "cart.updatedDate" },
165
- {
166
- path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
167
- },
168
- { path: "cart.lineItems.attributes.image.urlExpirationDate" },
169
157
  {
170
158
  path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
171
159
  },
@@ -215,10 +203,6 @@ function getCart(payload) {
215
203
  paths: [
216
204
  { path: "cart.createdDate" },
217
205
  { path: "cart.updatedDate" },
218
- {
219
- path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
220
- },
221
- { path: "cart.lineItems.attributes.image.urlExpirationDate" },
222
206
  {
223
207
  path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
224
208
  },
@@ -258,10 +242,6 @@ function updateCart(payload) {
258
242
  paths: [
259
243
  { path: "cart.createdDate" },
260
244
  { path: "cart.updatedDate" },
261
- {
262
- path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
263
- },
264
- { path: "cart.lineItems.attributes.image.urlExpirationDate" },
265
245
  {
266
246
  path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
267
247
  },
@@ -302,10 +282,6 @@ function updateCart(payload) {
302
282
  paths: [
303
283
  { path: "cart.createdDate" },
304
284
  { path: "cart.updatedDate" },
305
- {
306
- path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
307
- },
308
- { path: "cart.lineItems.attributes.image.urlExpirationDate" },
309
285
  {
310
286
  path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
311
287
  },
@@ -376,10 +352,6 @@ function refreshCart(payload) {
376
352
  paths: [
377
353
  { path: "cart.createdDate" },
378
354
  { path: "cart.updatedDate" },
379
- {
380
- path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
381
- },
382
- { path: "cart.lineItems.attributes.image.urlExpirationDate" },
383
355
  {
384
356
  path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
385
357
  },
@@ -429,10 +401,6 @@ function calculateCart(payload) {
429
401
  paths: [
430
402
  { path: "cart.createdDate" },
431
403
  { path: "cart.updatedDate" },
432
- {
433
- path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
434
- },
435
- { path: "cart.lineItems.attributes.image.urlExpirationDate" },
436
404
  {
437
405
  path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
438
406
  },
@@ -520,10 +488,6 @@ function addLineItems(payload) {
520
488
  {
521
489
  transformFn: transformSDKTimestampToRESTTimestamp,
522
490
  paths: [
523
- {
524
- path: "catalogItems.catalogOverrideFields.image.urlExpirationDate"
525
- },
526
- { path: "customItems.attributes.image.urlExpirationDate" },
527
491
  {
528
492
  path: "customItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
529
493
  },
@@ -551,10 +515,6 @@ function addLineItems(payload) {
551
515
  paths: [
552
516
  { path: "cart.createdDate" },
553
517
  { path: "cart.updatedDate" },
554
- {
555
- path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
556
- },
557
- { path: "cart.lineItems.attributes.image.urlExpirationDate" },
558
518
  {
559
519
  path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
560
520
  },
@@ -604,10 +564,6 @@ function removeLineItems(payload) {
604
564
  paths: [
605
565
  { path: "cart.createdDate" },
606
566
  { path: "cart.updatedDate" },
607
- {
608
- path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
609
- },
610
- { path: "cart.lineItems.attributes.image.urlExpirationDate" },
611
567
  {
612
568
  path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
613
569
  },
@@ -657,10 +613,6 @@ function updateLineItems(payload) {
657
613
  paths: [
658
614
  { path: "cart.createdDate" },
659
615
  { path: "cart.updatedDate" },
660
- {
661
- path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
662
- },
663
- { path: "cart.lineItems.attributes.image.urlExpirationDate" },
664
616
  {
665
617
  path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
666
618
  },
@@ -710,10 +662,6 @@ function addCoupon(payload) {
710
662
  paths: [
711
663
  { path: "cart.createdDate" },
712
664
  { path: "cart.updatedDate" },
713
- {
714
- path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
715
- },
716
- { path: "cart.lineItems.attributes.image.urlExpirationDate" },
717
665
  {
718
666
  path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
719
667
  },
@@ -763,10 +711,6 @@ function removeCoupon(payload) {
763
711
  paths: [
764
712
  { path: "cart.createdDate" },
765
713
  { path: "cart.updatedDate" },
766
- {
767
- path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
768
- },
769
- { path: "cart.lineItems.attributes.image.urlExpirationDate" },
770
714
  {
771
715
  path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
772
716
  },
@@ -816,10 +760,6 @@ function addGiftCard(payload) {
816
760
  paths: [
817
761
  { path: "cart.createdDate" },
818
762
  { path: "cart.updatedDate" },
819
- {
820
- path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
821
- },
822
- { path: "cart.lineItems.attributes.image.urlExpirationDate" },
823
763
  {
824
764
  path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
825
765
  },
@@ -869,10 +809,6 @@ function removeGiftCard(payload) {
869
809
  paths: [
870
810
  { path: "cart.createdDate" },
871
811
  { path: "cart.updatedDate" },
872
- {
873
- path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
874
- },
875
- { path: "cart.lineItems.attributes.image.urlExpirationDate" },
876
812
  {
877
813
  path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
878
814
  },
@@ -922,10 +858,6 @@ function markCartAsCompleted(payload) {
922
858
  paths: [
923
859
  { path: "cart.createdDate" },
924
860
  { path: "cart.updatedDate" },
925
- {
926
- path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
927
- },
928
- { path: "cart.lineItems.attributes.image.urlExpirationDate" },
929
861
  {
930
862
  path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
931
863
  },