@wix/auto_sdk_ecom_cart 1.0.112 → 1.0.114

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.
@@ -847,7 +847,7 @@ interface ItemModifier {
847
847
  price?: MultiCurrencyPrice;
848
848
  }
849
849
  interface PlatformFee {
850
- /** Platform fee name. */
850
+ /** __Required.__ Platform fee name. */
851
851
  name?: TranslatableString;
852
852
  /** Platform fee charge type. */
853
853
  chargeType?: V1ChargeTypeWithLiterals;
@@ -137,15 +137,18 @@ function createCart(payload) {
137
137
  path: "cartInfo.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
138
138
  },
139
139
  { path: "cartInfo.lineItems.serviceProperties.scheduledDate" },
140
+ { path: "cartInfo.lineItems.serviceProperties.endDate" },
140
141
  { path: "lineItems.image.urlExpirationDate" },
141
142
  {
142
143
  path: "lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
143
144
  },
144
145
  { path: "lineItems.serviceProperties.scheduledDate" },
146
+ { path: "lineItems.serviceProperties.endDate" },
145
147
  {
146
148
  path: "customLineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
147
149
  },
148
- { path: "customLineItems.serviceProperties.scheduledDate" }
150
+ { path: "customLineItems.serviceProperties.scheduledDate" },
151
+ { path: "customLineItems.serviceProperties.endDate" }
149
152
  ]
150
153
  },
151
154
  {
@@ -191,7 +194,8 @@ function createCart(payload) {
191
194
  {
192
195
  path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
193
196
  },
194
- { path: "cart.lineItems.serviceProperties.scheduledDate" }
197
+ { path: "cart.lineItems.serviceProperties.scheduledDate" },
198
+ { path: "cart.lineItems.serviceProperties.endDate" }
195
199
  ]
196
200
  },
197
201
  {
@@ -230,15 +234,18 @@ function updateCart(payload) {
230
234
  path: "cartInfo.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
231
235
  },
232
236
  { path: "cartInfo.lineItems.serviceProperties.scheduledDate" },
237
+ { path: "cartInfo.lineItems.serviceProperties.endDate" },
233
238
  { path: "lineItems.image.urlExpirationDate" },
234
239
  {
235
240
  path: "lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
236
241
  },
237
242
  { path: "lineItems.serviceProperties.scheduledDate" },
243
+ { path: "lineItems.serviceProperties.endDate" },
238
244
  {
239
245
  path: "customLineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
240
246
  },
241
- { path: "customLineItems.serviceProperties.scheduledDate" }
247
+ { path: "customLineItems.serviceProperties.scheduledDate" },
248
+ { path: "customLineItems.serviceProperties.endDate" }
242
249
  ]
243
250
  },
244
251
  {
@@ -284,7 +291,8 @@ function updateCart(payload) {
284
291
  {
285
292
  path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
286
293
  },
287
- { path: "cart.lineItems.serviceProperties.scheduledDate" }
294
+ { path: "cart.lineItems.serviceProperties.scheduledDate" },
295
+ { path: "cart.lineItems.serviceProperties.endDate" }
288
296
  ]
289
297
  },
290
298
  {
@@ -332,7 +340,8 @@ function getCart(payload) {
332
340
  {
333
341
  path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
334
342
  },
335
- { path: "cart.lineItems.serviceProperties.scheduledDate" }
343
+ { path: "cart.lineItems.serviceProperties.scheduledDate" },
344
+ { path: "cart.lineItems.serviceProperties.endDate" }
336
345
  ]
337
346
  },
338
347
  {
@@ -380,7 +389,8 @@ function getCartByCheckoutId(payload) {
380
389
  {
381
390
  path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
382
391
  },
383
- { path: "cart.lineItems.serviceProperties.scheduledDate" }
392
+ { path: "cart.lineItems.serviceProperties.scheduledDate" },
393
+ { path: "cart.lineItems.serviceProperties.endDate" }
384
394
  ]
385
395
  },
386
396
  {
@@ -413,10 +423,12 @@ function addToCart(payload) {
413
423
  path: "lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
414
424
  },
415
425
  { path: "lineItems.serviceProperties.scheduledDate" },
426
+ { path: "lineItems.serviceProperties.endDate" },
416
427
  {
417
428
  path: "customLineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
418
429
  },
419
- { path: "customLineItems.serviceProperties.scheduledDate" }
430
+ { path: "customLineItems.serviceProperties.scheduledDate" },
431
+ { path: "customLineItems.serviceProperties.endDate" }
420
432
  ]
421
433
  },
422
434
  {
@@ -454,7 +466,8 @@ function addToCart(payload) {
454
466
  {
455
467
  path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
456
468
  },
457
- { path: "cart.lineItems.serviceProperties.scheduledDate" }
469
+ { path: "cart.lineItems.serviceProperties.scheduledDate" },
470
+ { path: "cart.lineItems.serviceProperties.endDate" }
458
471
  ]
459
472
  },
460
473
  {
@@ -502,7 +515,8 @@ function removeLineItems(payload) {
502
515
  {
503
516
  path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
504
517
  },
505
- { path: "cart.lineItems.serviceProperties.scheduledDate" }
518
+ { path: "cart.lineItems.serviceProperties.scheduledDate" },
519
+ { path: "cart.lineItems.serviceProperties.endDate" }
506
520
  ]
507
521
  },
508
522
  {
@@ -582,7 +596,8 @@ function removeCoupon(payload) {
582
596
  {
583
597
  path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
584
598
  },
585
- { path: "cart.lineItems.serviceProperties.scheduledDate" }
599
+ { path: "cart.lineItems.serviceProperties.scheduledDate" },
600
+ { path: "cart.lineItems.serviceProperties.endDate" }
586
601
  ]
587
602
  },
588
603
  {
@@ -630,7 +645,8 @@ function updateLineItemsQuantity(payload) {
630
645
  {
631
646
  path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
632
647
  },
633
- { path: "cart.lineItems.serviceProperties.scheduledDate" }
648
+ { path: "cart.lineItems.serviceProperties.scheduledDate" },
649
+ { path: "cart.lineItems.serviceProperties.endDate" }
634
650
  ]
635
651
  },
636
652
  {
@@ -690,6 +706,7 @@ function estimateTotals(payload) {
690
706
  path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
691
707
  },
692
708
  { path: "cart.lineItems.serviceProperties.scheduledDate" },
709
+ { path: "cart.lineItems.serviceProperties.endDate" },
693
710
  {
694
711
  path: "shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
695
712
  },
@@ -787,7 +804,8 @@ function removeBusinessLocation(payload) {
787
804
  {
788
805
  path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
789
806
  },
790
- { path: "cart.lineItems.serviceProperties.scheduledDate" }
807
+ { path: "cart.lineItems.serviceProperties.scheduledDate" },
808
+ { path: "cart.lineItems.serviceProperties.endDate" }
791
809
  ]
792
810
  },
793
811
  {