@wix/auto_sdk_ecom_checkout 1.0.106 → 1.0.108
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 +26 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +1 -1
- package/build/cjs/index.typings.js +21 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- package/build/cjs/meta.js +21 -3
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +26 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -1
- package/build/es/index.typings.mjs +21 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -1
- package/build/es/meta.mjs +21 -3
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +26 -3
- 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 +21 -3
- 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 +21 -3
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +26 -3
- 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 +21 -3
- 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 +21 -3
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -173,6 +173,7 @@ function createCheckout(payload) {
|
|
|
173
173
|
path: "checkoutInfo.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
174
174
|
},
|
|
175
175
|
{ path: "checkoutInfo.lineItems.serviceProperties.scheduledDate" },
|
|
176
|
+
{ path: "checkoutInfo.lineItems.serviceProperties.endDate" },
|
|
176
177
|
{
|
|
177
178
|
path: "checkoutInfo.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
178
179
|
},
|
|
@@ -197,10 +198,12 @@ function createCheckout(payload) {
|
|
|
197
198
|
path: "lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
198
199
|
},
|
|
199
200
|
{ path: "lineItems.serviceProperties.scheduledDate" },
|
|
201
|
+
{ path: "lineItems.serviceProperties.endDate" },
|
|
200
202
|
{
|
|
201
203
|
path: "customLineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
202
204
|
},
|
|
203
|
-
{ path: "customLineItems.serviceProperties.scheduledDate" }
|
|
205
|
+
{ path: "customLineItems.serviceProperties.scheduledDate" },
|
|
206
|
+
{ path: "customLineItems.serviceProperties.endDate" }
|
|
204
207
|
]
|
|
205
208
|
},
|
|
206
209
|
{
|
|
@@ -266,6 +269,7 @@ function createCheckout(payload) {
|
|
|
266
269
|
path: "checkout.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
267
270
|
},
|
|
268
271
|
{ path: "checkout.lineItems.serviceProperties.scheduledDate" },
|
|
272
|
+
{ path: "checkout.lineItems.serviceProperties.endDate" },
|
|
269
273
|
{
|
|
270
274
|
path: "checkout.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
271
275
|
},
|
|
@@ -352,6 +356,7 @@ function getCheckout(payload) {
|
|
|
352
356
|
path: "checkout.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
353
357
|
},
|
|
354
358
|
{ path: "checkout.lineItems.serviceProperties.scheduledDate" },
|
|
359
|
+
{ path: "checkout.lineItems.serviceProperties.endDate" },
|
|
355
360
|
{
|
|
356
361
|
path: "checkout.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
357
362
|
},
|
|
@@ -438,6 +443,7 @@ function getCheckoutByCartId(payload) {
|
|
|
438
443
|
path: "checkout.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
439
444
|
},
|
|
440
445
|
{ path: "checkout.lineItems.serviceProperties.scheduledDate" },
|
|
446
|
+
{ path: "checkout.lineItems.serviceProperties.endDate" },
|
|
441
447
|
{
|
|
442
448
|
path: "checkout.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
443
449
|
},
|
|
@@ -556,6 +562,7 @@ function updateCheckout(payload) {
|
|
|
556
562
|
path: "checkout.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
557
563
|
},
|
|
558
564
|
{ path: "checkout.lineItems.serviceProperties.scheduledDate" },
|
|
565
|
+
{ path: "checkout.lineItems.serviceProperties.endDate" },
|
|
559
566
|
{
|
|
560
567
|
path: "checkout.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
561
568
|
},
|
|
@@ -580,10 +587,12 @@ function updateCheckout(payload) {
|
|
|
580
587
|
path: "lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
581
588
|
},
|
|
582
589
|
{ path: "lineItems.serviceProperties.scheduledDate" },
|
|
590
|
+
{ path: "lineItems.serviceProperties.endDate" },
|
|
583
591
|
{
|
|
584
592
|
path: "customLineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
585
593
|
},
|
|
586
|
-
{ path: "customLineItems.serviceProperties.scheduledDate" }
|
|
594
|
+
{ path: "customLineItems.serviceProperties.scheduledDate" },
|
|
595
|
+
{ path: "customLineItems.serviceProperties.endDate" }
|
|
587
596
|
]
|
|
588
597
|
},
|
|
589
598
|
{
|
|
@@ -649,6 +658,7 @@ function updateCheckout(payload) {
|
|
|
649
658
|
path: "checkout.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
650
659
|
},
|
|
651
660
|
{ path: "checkout.lineItems.serviceProperties.scheduledDate" },
|
|
661
|
+
{ path: "checkout.lineItems.serviceProperties.endDate" },
|
|
652
662
|
{
|
|
653
663
|
path: "checkout.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
654
664
|
},
|
|
@@ -735,6 +745,7 @@ function removeCoupon(payload) {
|
|
|
735
745
|
path: "checkout.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
736
746
|
},
|
|
737
747
|
{ path: "checkout.lineItems.serviceProperties.scheduledDate" },
|
|
748
|
+
{ path: "checkout.lineItems.serviceProperties.endDate" },
|
|
738
749
|
{
|
|
739
750
|
path: "checkout.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
740
751
|
},
|
|
@@ -821,6 +832,7 @@ function removeGiftCard(payload) {
|
|
|
821
832
|
path: "checkout.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
822
833
|
},
|
|
823
834
|
{ path: "checkout.lineItems.serviceProperties.scheduledDate" },
|
|
835
|
+
{ path: "checkout.lineItems.serviceProperties.endDate" },
|
|
824
836
|
{
|
|
825
837
|
path: "checkout.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
826
838
|
},
|
|
@@ -907,6 +919,7 @@ function removeOverrideCheckoutUrl(payload) {
|
|
|
907
919
|
path: "checkout.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
908
920
|
},
|
|
909
921
|
{ path: "checkout.lineItems.serviceProperties.scheduledDate" },
|
|
922
|
+
{ path: "checkout.lineItems.serviceProperties.endDate" },
|
|
910
923
|
{
|
|
911
924
|
path: "checkout.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
912
925
|
},
|
|
@@ -977,10 +990,12 @@ function addToCheckout(payload) {
|
|
|
977
990
|
path: "lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
978
991
|
},
|
|
979
992
|
{ path: "lineItems.serviceProperties.scheduledDate" },
|
|
993
|
+
{ path: "lineItems.serviceProperties.endDate" },
|
|
980
994
|
{
|
|
981
995
|
path: "customLineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
982
996
|
},
|
|
983
|
-
{ path: "customLineItems.serviceProperties.scheduledDate" }
|
|
997
|
+
{ path: "customLineItems.serviceProperties.scheduledDate" },
|
|
998
|
+
{ path: "customLineItems.serviceProperties.endDate" }
|
|
984
999
|
]
|
|
985
1000
|
},
|
|
986
1001
|
{
|
|
@@ -1019,6 +1034,7 @@ function addToCheckout(payload) {
|
|
|
1019
1034
|
path: "checkout.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
1020
1035
|
},
|
|
1021
1036
|
{ path: "checkout.lineItems.serviceProperties.scheduledDate" },
|
|
1037
|
+
{ path: "checkout.lineItems.serviceProperties.endDate" },
|
|
1022
1038
|
{
|
|
1023
1039
|
path: "checkout.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
1024
1040
|
},
|
|
@@ -1105,6 +1121,7 @@ function removeLineItems(payload) {
|
|
|
1105
1121
|
path: "checkout.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
1106
1122
|
},
|
|
1107
1123
|
{ path: "checkout.lineItems.serviceProperties.scheduledDate" },
|
|
1124
|
+
{ path: "checkout.lineItems.serviceProperties.endDate" },
|
|
1108
1125
|
{
|
|
1109
1126
|
path: "checkout.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
1110
1127
|
},
|
|
@@ -1281,6 +1298,7 @@ function updateLineItemsQuantity(payload) {
|
|
|
1281
1298
|
path: "checkout.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
1282
1299
|
},
|
|
1283
1300
|
{ path: "checkout.lineItems.serviceProperties.scheduledDate" },
|
|
1301
|
+
{ path: "checkout.lineItems.serviceProperties.endDate" },
|
|
1284
1302
|
{
|
|
1285
1303
|
path: "checkout.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
1286
1304
|
},
|
|
@@ -2566,6 +2584,7 @@ var onCheckoutCompleted = (0, import_sdk_types.EventDefinition)(
|
|
|
2566
2584
|
path: "data.checkout.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
2567
2585
|
},
|
|
2568
2586
|
{ path: "data.checkout.lineItems.serviceProperties.scheduledDate" },
|
|
2587
|
+
{ path: "data.checkout.lineItems.serviceProperties.endDate" },
|
|
2569
2588
|
{
|
|
2570
2589
|
path: "data.checkout.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
2571
2590
|
},
|
|
@@ -2643,6 +2662,7 @@ var onCheckoutCreated = (0, import_sdk_types.EventDefinition)(
|
|
|
2643
2662
|
path: "entity.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
2644
2663
|
},
|
|
2645
2664
|
{ path: "entity.lineItems.serviceProperties.scheduledDate" },
|
|
2665
|
+
{ path: "entity.lineItems.serviceProperties.endDate" },
|
|
2646
2666
|
{
|
|
2647
2667
|
path: "entity.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
2648
2668
|
},
|
|
@@ -2716,6 +2736,7 @@ var onCheckoutDeleted = (0, import_sdk_types.EventDefinition)(
|
|
|
2716
2736
|
path: "undefined.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
2717
2737
|
},
|
|
2718
2738
|
{ path: "undefined.lineItems.serviceProperties.scheduledDate" },
|
|
2739
|
+
{ path: "undefined.lineItems.serviceProperties.endDate" },
|
|
2719
2740
|
{
|
|
2720
2741
|
path: "undefined.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
2721
2742
|
},
|
|
@@ -2789,6 +2810,7 @@ var onCheckoutUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
2789
2810
|
path: "entity.lineItems.subscriptionOptionInfo.subscriptionSettings.startDate"
|
|
2790
2811
|
},
|
|
2791
2812
|
{ path: "entity.lineItems.serviceProperties.scheduledDate" },
|
|
2813
|
+
{ path: "entity.lineItems.serviceProperties.endDate" },
|
|
2792
2814
|
{
|
|
2793
2815
|
path: "entity.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
2794
2816
|
},
|
|
@@ -2817,6 +2839,7 @@ var onCheckoutUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
2817
2839
|
{
|
|
2818
2840
|
path: "modifiedFields.lineItems.serviceProperties.scheduledDate"
|
|
2819
2841
|
},
|
|
2842
|
+
{ path: "modifiedFields.lineItems.serviceProperties.endDate" },
|
|
2820
2843
|
{
|
|
2821
2844
|
path: "modifiedFields.shippingInfo.selectedCarrierServiceOption.logistics.deliveryTimeSlot.from"
|
|
2822
2845
|
},
|