@wix/auto_sdk_ecom_current-cart 1.0.113 → 1.0.115
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.
- package/build/cjs/index.js +25 -9
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +1 -1
- package/build/cjs/index.typings.js +20 -8
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- package/build/cjs/meta.js +20 -8
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +25 -9
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -1
- package/build/es/index.typings.mjs +20 -8
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -1
- package/build/es/meta.mjs +20 -8
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +25 -9
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +7 -1
- package/build/internal/cjs/index.typings.js +20 -8
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -1
- package/build/internal/cjs/meta.js +20 -8
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +25 -9
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +7 -1
- package/build/internal/es/index.typings.mjs +20 -8
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1 -1
- package/build/internal/es/meta.mjs +20 -8
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -220,7 +220,8 @@ function currentCartGetCurrentCart(payload) {
|
|
|
220
220
|
{
|
|
221
221
|
path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
222
222
|
},
|
|
223
|
-
{ path: "cart.lineItems.serviceProperties.scheduledDate" }
|
|
223
|
+
{ path: "cart.lineItems.serviceProperties.scheduledDate" },
|
|
224
|
+
{ path: "cart.lineItems.serviceProperties.endDate" }
|
|
224
225
|
]
|
|
225
226
|
},
|
|
226
227
|
{
|
|
@@ -259,15 +260,18 @@ function updateCurrentCart(payload) {
|
|
|
259
260
|
path: "cartInfo.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
260
261
|
},
|
|
261
262
|
{ path: "cartInfo.lineItems.serviceProperties.scheduledDate" },
|
|
263
|
+
{ path: "cartInfo.lineItems.serviceProperties.endDate" },
|
|
262
264
|
{ path: "lineItems.image.urlExpirationDate" },
|
|
263
265
|
{
|
|
264
266
|
path: "lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
265
267
|
},
|
|
266
268
|
{ path: "lineItems.serviceProperties.scheduledDate" },
|
|
269
|
+
{ path: "lineItems.serviceProperties.endDate" },
|
|
267
270
|
{
|
|
268
271
|
path: "customLineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
269
272
|
},
|
|
270
|
-
{ path: "customLineItems.serviceProperties.scheduledDate" }
|
|
273
|
+
{ path: "customLineItems.serviceProperties.scheduledDate" },
|
|
274
|
+
{ path: "customLineItems.serviceProperties.endDate" }
|
|
271
275
|
]
|
|
272
276
|
},
|
|
273
277
|
{
|
|
@@ -313,7 +317,8 @@ function updateCurrentCart(payload) {
|
|
|
313
317
|
{
|
|
314
318
|
path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
315
319
|
},
|
|
316
|
-
{ path: "cart.lineItems.serviceProperties.scheduledDate" }
|
|
320
|
+
{ path: "cart.lineItems.serviceProperties.scheduledDate" },
|
|
321
|
+
{ path: "cart.lineItems.serviceProperties.endDate" }
|
|
317
322
|
]
|
|
318
323
|
},
|
|
319
324
|
{
|
|
@@ -346,10 +351,12 @@ function addToCurrentCart(payload) {
|
|
|
346
351
|
path: "lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
347
352
|
},
|
|
348
353
|
{ path: "lineItems.serviceProperties.scheduledDate" },
|
|
354
|
+
{ path: "lineItems.serviceProperties.endDate" },
|
|
349
355
|
{
|
|
350
356
|
path: "customLineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
351
357
|
},
|
|
352
|
-
{ path: "customLineItems.serviceProperties.scheduledDate" }
|
|
358
|
+
{ path: "customLineItems.serviceProperties.scheduledDate" },
|
|
359
|
+
{ path: "customLineItems.serviceProperties.endDate" }
|
|
353
360
|
]
|
|
354
361
|
},
|
|
355
362
|
{
|
|
@@ -387,7 +394,8 @@ function addToCurrentCart(payload) {
|
|
|
387
394
|
{
|
|
388
395
|
path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
389
396
|
},
|
|
390
|
-
{ path: "cart.lineItems.serviceProperties.scheduledDate" }
|
|
397
|
+
{ path: "cart.lineItems.serviceProperties.scheduledDate" },
|
|
398
|
+
{ path: "cart.lineItems.serviceProperties.endDate" }
|
|
391
399
|
]
|
|
392
400
|
},
|
|
393
401
|
{
|
|
@@ -435,7 +443,8 @@ function removeLineItemsFromCurrentCart(payload) {
|
|
|
435
443
|
{
|
|
436
444
|
path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
437
445
|
},
|
|
438
|
-
{ path: "cart.lineItems.serviceProperties.scheduledDate" }
|
|
446
|
+
{ path: "cart.lineItems.serviceProperties.scheduledDate" },
|
|
447
|
+
{ path: "cart.lineItems.serviceProperties.endDate" }
|
|
439
448
|
]
|
|
440
449
|
},
|
|
441
450
|
{
|
|
@@ -515,7 +524,8 @@ function removeCouponFromCurrentCart(payload) {
|
|
|
515
524
|
{
|
|
516
525
|
path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
517
526
|
},
|
|
518
|
-
{ path: "cart.lineItems.serviceProperties.scheduledDate" }
|
|
527
|
+
{ path: "cart.lineItems.serviceProperties.scheduledDate" },
|
|
528
|
+
{ path: "cart.lineItems.serviceProperties.endDate" }
|
|
519
529
|
]
|
|
520
530
|
},
|
|
521
531
|
{
|
|
@@ -563,7 +573,8 @@ function updateCurrentCartLineItemQuantity(payload) {
|
|
|
563
573
|
{
|
|
564
574
|
path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
565
575
|
},
|
|
566
|
-
{ path: "cart.lineItems.serviceProperties.scheduledDate" }
|
|
576
|
+
{ path: "cart.lineItems.serviceProperties.scheduledDate" },
|
|
577
|
+
{ path: "cart.lineItems.serviceProperties.endDate" }
|
|
567
578
|
]
|
|
568
579
|
},
|
|
569
580
|
{
|
|
@@ -623,6 +634,7 @@ function estimateCurrentCartTotals(payload) {
|
|
|
623
634
|
path: "cart.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
624
635
|
},
|
|
625
636
|
{ path: "cart.lineItems.serviceProperties.scheduledDate" },
|
|
637
|
+
{ path: "cart.lineItems.serviceProperties.endDate" },
|
|
626
638
|
{
|
|
627
639
|
path: "shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
628
640
|
},
|
|
@@ -1429,6 +1441,7 @@ var onCartDeleted = (0, import_sdk_types.EventDefinition)(
|
|
|
1429
1441
|
path: "undefined.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
1430
1442
|
},
|
|
1431
1443
|
{ path: "undefined.lineItems.serviceProperties.scheduledDate" },
|
|
1444
|
+
{ path: "undefined.lineItems.serviceProperties.endDate" },
|
|
1432
1445
|
{ path: "metadata.eventTime" }
|
|
1433
1446
|
]
|
|
1434
1447
|
},
|
|
@@ -1473,6 +1486,7 @@ var onCartUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
1473
1486
|
path: "entity.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
1474
1487
|
},
|
|
1475
1488
|
{ path: "entity.lineItems.serviceProperties.scheduledDate" },
|
|
1489
|
+
{ path: "entity.lineItems.serviceProperties.endDate" },
|
|
1476
1490
|
{ path: "metadata.eventTime" },
|
|
1477
1491
|
{ path: "modifiedFields.createdDate" },
|
|
1478
1492
|
{ path: "modifiedFields.updatedDate" },
|
|
@@ -1481,7 +1495,8 @@ var onCartUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
1481
1495
|
},
|
|
1482
1496
|
{
|
|
1483
1497
|
path: "modifiedFields.lineItems.serviceProperties.scheduledDate"
|
|
1484
|
-
}
|
|
1498
|
+
},
|
|
1499
|
+
{ path: "modifiedFields.lineItems.serviceProperties.endDate" }
|
|
1485
1500
|
]
|
|
1486
1501
|
},
|
|
1487
1502
|
{
|
|
@@ -1537,6 +1552,7 @@ var onCartCreated = (0, import_sdk_types.EventDefinition)(
|
|
|
1537
1552
|
path: "entity.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
1538
1553
|
},
|
|
1539
1554
|
{ path: "entity.lineItems.serviceProperties.scheduledDate" },
|
|
1555
|
+
{ path: "entity.lineItems.serviceProperties.endDate" },
|
|
1540
1556
|
{ path: "metadata.eventTime" }
|
|
1541
1557
|
]
|
|
1542
1558
|
},
|