@wix/ecom 1.0.630 → 1.0.632
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ecom",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.632",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@wix/ecom_cart": "1.0.47",
|
|
27
27
|
"@wix/ecom_checkout": "1.0.51",
|
|
28
28
|
"@wix/ecom_checkout-settings": "1.0.33",
|
|
29
|
-
"@wix/ecom_checkout-templates": "1.0.
|
|
29
|
+
"@wix/ecom_checkout-templates": "1.0.53",
|
|
30
30
|
"@wix/ecom_currencies": "1.0.23",
|
|
31
31
|
"@wix/ecom_current-cart": "1.0.47",
|
|
32
32
|
"@wix/ecom_custom-triggers": "1.0.7",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@wix/ecom_order-invoices": "1.0.25",
|
|
36
36
|
"@wix/ecom_order-transactions": "1.0.40",
|
|
37
37
|
"@wix/ecom_orders": "1.0.67",
|
|
38
|
-
"@wix/ecom_orders-settings": "1.0.
|
|
38
|
+
"@wix/ecom_orders-settings": "1.0.30",
|
|
39
39
|
"@wix/ecom_payment-settings": "1.0.13",
|
|
40
40
|
"@wix/ecom_recommendations": "1.0.26",
|
|
41
41
|
"@wix/ecom_shipping-rates": "1.0.18",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"fqdn": ""
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
|
-
"falconPackageHash": "
|
|
67
|
+
"falconPackageHash": "22377d1ddb3a13b45b145a46605b52f893d4759307a778ca60d2ad54"
|
|
68
68
|
}
|
|
@@ -15676,6 +15676,12 @@ interface CheckoutCustomization {
|
|
|
15676
15676
|
* Default: `false`
|
|
15677
15677
|
*/
|
|
15678
15678
|
lockedCoupon?: boolean;
|
|
15679
|
+
/**
|
|
15680
|
+
* Whether to disable manual payment option for this checkout.
|
|
15681
|
+
*
|
|
15682
|
+
* Default: `false`
|
|
15683
|
+
*/
|
|
15684
|
+
disabledManualPayment?: boolean;
|
|
15679
15685
|
}
|
|
15680
15686
|
interface WebClientCustomization {
|
|
15681
15687
|
/**
|
|
@@ -15684,6 +15690,12 @@ interface WebClientCustomization {
|
|
|
15684
15690
|
* Default: `false`
|
|
15685
15691
|
*/
|
|
15686
15692
|
disabledContinueShoppingButton?: boolean;
|
|
15693
|
+
/**
|
|
15694
|
+
* Whether to disable policy agreement checkout in the checkout page
|
|
15695
|
+
*
|
|
15696
|
+
* Default: `false`
|
|
15697
|
+
*/
|
|
15698
|
+
disabledPolicyAgreementCheckbox?: boolean;
|
|
15687
15699
|
}
|
|
15688
15700
|
interface V1LineItem {
|
|
15689
15701
|
/**
|
|
@@ -16957,6 +16969,18 @@ interface CustomSettings {
|
|
|
16957
16969
|
* Default: `false`
|
|
16958
16970
|
*/
|
|
16959
16971
|
lockCouponCode?: boolean;
|
|
16972
|
+
/**
|
|
16973
|
+
* Whether to disable policy agreement checkout in the checkout page
|
|
16974
|
+
*
|
|
16975
|
+
* Default: `false`
|
|
16976
|
+
*/
|
|
16977
|
+
disabledPolicyAgreementCheckbox?: boolean;
|
|
16978
|
+
/**
|
|
16979
|
+
* Whether to disable manual payment option for this checkout.
|
|
16980
|
+
*
|
|
16981
|
+
* Default: `false`
|
|
16982
|
+
*/
|
|
16983
|
+
disabledManualPayment?: boolean;
|
|
16960
16984
|
}
|
|
16961
16985
|
interface IdentificationData$4 extends IdentificationDataIdOneOf$4 {
|
|
16962
16986
|
/** ID of a site visitor that has not logged in to the site. */
|
|
@@ -17146,9 +17170,11 @@ declare function createCheckoutTemplate$1(httpClient: HttpClient): (checkoutTemp
|
|
|
17146
17170
|
customization?: {
|
|
17147
17171
|
webClient?: {
|
|
17148
17172
|
disabledContinueShoppingButton: boolean;
|
|
17173
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
17149
17174
|
} | undefined;
|
|
17150
17175
|
lockedGiftCard: boolean;
|
|
17151
17176
|
lockedCoupon: boolean;
|
|
17177
|
+
disabledManualPayment: boolean;
|
|
17152
17178
|
} | undefined;
|
|
17153
17179
|
lineItems: {
|
|
17154
17180
|
quantity: number;
|
|
@@ -17183,9 +17209,11 @@ declare function getCheckoutTemplate$1(httpClient: HttpClient): (checkoutTemplat
|
|
|
17183
17209
|
customization?: {
|
|
17184
17210
|
webClient?: {
|
|
17185
17211
|
disabledContinueShoppingButton: boolean;
|
|
17212
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
17186
17213
|
} | undefined;
|
|
17187
17214
|
lockedGiftCard: boolean;
|
|
17188
17215
|
lockedCoupon: boolean;
|
|
17216
|
+
disabledManualPayment: boolean;
|
|
17189
17217
|
} | undefined;
|
|
17190
17218
|
lineItems: {
|
|
17191
17219
|
quantity: number;
|
|
@@ -17220,9 +17248,11 @@ declare function updateCheckoutTemplate$1(httpClient: HttpClient): (_id: string
|
|
|
17220
17248
|
customization?: {
|
|
17221
17249
|
webClient?: {
|
|
17222
17250
|
disabledContinueShoppingButton: boolean;
|
|
17251
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
17223
17252
|
} | undefined;
|
|
17224
17253
|
lockedGiftCard: boolean;
|
|
17225
17254
|
lockedCoupon: boolean;
|
|
17255
|
+
disabledManualPayment: boolean;
|
|
17226
17256
|
} | undefined;
|
|
17227
17257
|
lineItems: {
|
|
17228
17258
|
quantity: number;
|
|
@@ -21844,6 +21844,12 @@ interface CheckoutCustomization {
|
|
|
21844
21844
|
* Default: `false`
|
|
21845
21845
|
*/
|
|
21846
21846
|
lockedCoupon?: boolean;
|
|
21847
|
+
/**
|
|
21848
|
+
* Whether to disable manual payment option for this checkout.
|
|
21849
|
+
*
|
|
21850
|
+
* Default: `false`
|
|
21851
|
+
*/
|
|
21852
|
+
disabledManualPayment?: boolean;
|
|
21847
21853
|
}
|
|
21848
21854
|
interface WebClientCustomization {
|
|
21849
21855
|
/**
|
|
@@ -21852,6 +21858,12 @@ interface WebClientCustomization {
|
|
|
21852
21858
|
* Default: `false`
|
|
21853
21859
|
*/
|
|
21854
21860
|
disabledContinueShoppingButton?: boolean;
|
|
21861
|
+
/**
|
|
21862
|
+
* Whether to disable policy agreement checkout in the checkout page
|
|
21863
|
+
*
|
|
21864
|
+
* Default: `false`
|
|
21865
|
+
*/
|
|
21866
|
+
disabledPolicyAgreementCheckbox?: boolean;
|
|
21855
21867
|
}
|
|
21856
21868
|
interface V1LineItem {
|
|
21857
21869
|
/**
|
|
@@ -23472,6 +23484,18 @@ interface CustomSettings {
|
|
|
23472
23484
|
* Default: `false`
|
|
23473
23485
|
*/
|
|
23474
23486
|
lockCouponCode?: boolean;
|
|
23487
|
+
/**
|
|
23488
|
+
* Whether to disable policy agreement checkout in the checkout page
|
|
23489
|
+
*
|
|
23490
|
+
* Default: `false`
|
|
23491
|
+
*/
|
|
23492
|
+
disabledPolicyAgreementCheckbox?: boolean;
|
|
23493
|
+
/**
|
|
23494
|
+
* Whether to disable manual payment option for this checkout.
|
|
23495
|
+
*
|
|
23496
|
+
* Default: `false`
|
|
23497
|
+
*/
|
|
23498
|
+
disabledManualPayment?: boolean;
|
|
23475
23499
|
}
|
|
23476
23500
|
interface CreateAndRedirectToCheckoutRequest {
|
|
23477
23501
|
/** ID of the checkout template to use to create a checkout. */
|
|
@@ -23601,9 +23625,11 @@ interface CreateCheckoutTemplateResponseNonNullableFields {
|
|
|
23601
23625
|
customization?: {
|
|
23602
23626
|
webClient?: {
|
|
23603
23627
|
disabledContinueShoppingButton: boolean;
|
|
23628
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
23604
23629
|
};
|
|
23605
23630
|
lockedGiftCard: boolean;
|
|
23606
23631
|
lockedCoupon: boolean;
|
|
23632
|
+
disabledManualPayment: boolean;
|
|
23607
23633
|
};
|
|
23608
23634
|
lineItems: {
|
|
23609
23635
|
quantity: number;
|
|
@@ -23640,9 +23666,11 @@ interface GetCheckoutTemplateResponseNonNullableFields {
|
|
|
23640
23666
|
customization?: {
|
|
23641
23667
|
webClient?: {
|
|
23642
23668
|
disabledContinueShoppingButton: boolean;
|
|
23669
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
23643
23670
|
};
|
|
23644
23671
|
lockedGiftCard: boolean;
|
|
23645
23672
|
lockedCoupon: boolean;
|
|
23673
|
+
disabledManualPayment: boolean;
|
|
23646
23674
|
};
|
|
23647
23675
|
lineItems: {
|
|
23648
23676
|
quantity: number;
|
|
@@ -23679,9 +23707,11 @@ interface UpdateCheckoutTemplateResponseNonNullableFields {
|
|
|
23679
23707
|
customization?: {
|
|
23680
23708
|
webClient?: {
|
|
23681
23709
|
disabledContinueShoppingButton: boolean;
|
|
23710
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
23682
23711
|
};
|
|
23683
23712
|
lockedGiftCard: boolean;
|
|
23684
23713
|
lockedCoupon: boolean;
|
|
23714
|
+
disabledManualPayment: boolean;
|
|
23685
23715
|
};
|
|
23686
23716
|
lineItems: {
|
|
23687
23717
|
quantity: number;
|
|
@@ -23718,9 +23748,11 @@ interface QueryCheckoutTemplatesResponseNonNullableFields {
|
|
|
23718
23748
|
customization?: {
|
|
23719
23749
|
webClient?: {
|
|
23720
23750
|
disabledContinueShoppingButton: boolean;
|
|
23751
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
23721
23752
|
};
|
|
23722
23753
|
lockedGiftCard: boolean;
|
|
23723
23754
|
lockedCoupon: boolean;
|
|
23755
|
+
disabledManualPayment: boolean;
|
|
23724
23756
|
};
|
|
23725
23757
|
lineItems: {
|
|
23726
23758
|
quantity: number;
|
|
@@ -23912,9 +23944,11 @@ declare function createCheckoutTemplate(httpClient: HttpClient): (checkoutTempla
|
|
|
23912
23944
|
customization?: {
|
|
23913
23945
|
webClient?: {
|
|
23914
23946
|
disabledContinueShoppingButton: boolean;
|
|
23947
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
23915
23948
|
} | undefined;
|
|
23916
23949
|
lockedGiftCard: boolean;
|
|
23917
23950
|
lockedCoupon: boolean;
|
|
23951
|
+
disabledManualPayment: boolean;
|
|
23918
23952
|
} | undefined;
|
|
23919
23953
|
lineItems: {
|
|
23920
23954
|
quantity: number;
|
|
@@ -23949,9 +23983,11 @@ declare function getCheckoutTemplate(httpClient: HttpClient): (checkoutTemplateI
|
|
|
23949
23983
|
customization?: {
|
|
23950
23984
|
webClient?: {
|
|
23951
23985
|
disabledContinueShoppingButton: boolean;
|
|
23986
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
23952
23987
|
} | undefined;
|
|
23953
23988
|
lockedGiftCard: boolean;
|
|
23954
23989
|
lockedCoupon: boolean;
|
|
23990
|
+
disabledManualPayment: boolean;
|
|
23955
23991
|
} | undefined;
|
|
23956
23992
|
lineItems: {
|
|
23957
23993
|
quantity: number;
|
|
@@ -23986,9 +24022,11 @@ declare function updateCheckoutTemplate(httpClient: HttpClient): (_id: string |
|
|
|
23986
24022
|
customization?: {
|
|
23987
24023
|
webClient?: {
|
|
23988
24024
|
disabledContinueShoppingButton: boolean;
|
|
24025
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
23989
24026
|
} | undefined;
|
|
23990
24027
|
lockedGiftCard: boolean;
|
|
23991
24028
|
lockedCoupon: boolean;
|
|
24029
|
+
disabledManualPayment: boolean;
|
|
23992
24030
|
} | undefined;
|
|
23993
24031
|
lineItems: {
|
|
23994
24032
|
quantity: number;
|
|
@@ -34355,6 +34355,12 @@ interface CheckoutCustomization$1 {
|
|
|
34355
34355
|
* Default: `false`
|
|
34356
34356
|
*/
|
|
34357
34357
|
lockedCoupon?: boolean;
|
|
34358
|
+
/**
|
|
34359
|
+
* Whether to disable manual payment option for this checkout.
|
|
34360
|
+
*
|
|
34361
|
+
* Default: `false`
|
|
34362
|
+
*/
|
|
34363
|
+
disabledManualPayment?: boolean;
|
|
34358
34364
|
}
|
|
34359
34365
|
interface WebClientCustomization$1 {
|
|
34360
34366
|
/**
|
|
@@ -34363,6 +34369,12 @@ interface WebClientCustomization$1 {
|
|
|
34363
34369
|
* Default: `false`
|
|
34364
34370
|
*/
|
|
34365
34371
|
disabledContinueShoppingButton?: boolean;
|
|
34372
|
+
/**
|
|
34373
|
+
* Whether to disable policy agreement checkout in the checkout page
|
|
34374
|
+
*
|
|
34375
|
+
* Default: `false`
|
|
34376
|
+
*/
|
|
34377
|
+
disabledPolicyAgreementCheckbox?: boolean;
|
|
34366
34378
|
}
|
|
34367
34379
|
interface V1LineItem$1 {
|
|
34368
34380
|
/**
|
|
@@ -35198,6 +35210,12 @@ interface CheckoutCustomization {
|
|
|
35198
35210
|
* Default: `false`
|
|
35199
35211
|
*/
|
|
35200
35212
|
lockedCoupon?: boolean;
|
|
35213
|
+
/**
|
|
35214
|
+
* Whether to disable manual payment option for this checkout.
|
|
35215
|
+
*
|
|
35216
|
+
* Default: `false`
|
|
35217
|
+
*/
|
|
35218
|
+
disabledManualPayment?: boolean;
|
|
35201
35219
|
}
|
|
35202
35220
|
interface WebClientCustomization {
|
|
35203
35221
|
/**
|
|
@@ -35206,6 +35224,12 @@ interface WebClientCustomization {
|
|
|
35206
35224
|
* Default: `false`
|
|
35207
35225
|
*/
|
|
35208
35226
|
disabledContinueShoppingButton?: boolean;
|
|
35227
|
+
/**
|
|
35228
|
+
* Whether to disable policy agreement checkout in the checkout page
|
|
35229
|
+
*
|
|
35230
|
+
* Default: `false`
|
|
35231
|
+
*/
|
|
35232
|
+
disabledPolicyAgreementCheckbox?: boolean;
|
|
35209
35233
|
}
|
|
35210
35234
|
interface V1LineItem {
|
|
35211
35235
|
/**
|
|
@@ -35459,9 +35483,11 @@ interface CreateCheckoutTemplateResponseNonNullableFields {
|
|
|
35459
35483
|
customization?: {
|
|
35460
35484
|
webClient?: {
|
|
35461
35485
|
disabledContinueShoppingButton: boolean;
|
|
35486
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
35462
35487
|
};
|
|
35463
35488
|
lockedGiftCard: boolean;
|
|
35464
35489
|
lockedCoupon: boolean;
|
|
35490
|
+
disabledManualPayment: boolean;
|
|
35465
35491
|
};
|
|
35466
35492
|
lineItems: {
|
|
35467
35493
|
quantity: number;
|
|
@@ -35498,9 +35524,11 @@ interface GetCheckoutTemplateResponseNonNullableFields {
|
|
|
35498
35524
|
customization?: {
|
|
35499
35525
|
webClient?: {
|
|
35500
35526
|
disabledContinueShoppingButton: boolean;
|
|
35527
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
35501
35528
|
};
|
|
35502
35529
|
lockedGiftCard: boolean;
|
|
35503
35530
|
lockedCoupon: boolean;
|
|
35531
|
+
disabledManualPayment: boolean;
|
|
35504
35532
|
};
|
|
35505
35533
|
lineItems: {
|
|
35506
35534
|
quantity: number;
|
|
@@ -35537,9 +35565,11 @@ interface UpdateCheckoutTemplateResponseNonNullableFields {
|
|
|
35537
35565
|
customization?: {
|
|
35538
35566
|
webClient?: {
|
|
35539
35567
|
disabledContinueShoppingButton: boolean;
|
|
35568
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
35540
35569
|
};
|
|
35541
35570
|
lockedGiftCard: boolean;
|
|
35542
35571
|
lockedCoupon: boolean;
|
|
35572
|
+
disabledManualPayment: boolean;
|
|
35543
35573
|
};
|
|
35544
35574
|
lineItems: {
|
|
35545
35575
|
quantity: number;
|
|
@@ -35576,9 +35606,11 @@ interface QueryCheckoutTemplatesResponseNonNullableFields {
|
|
|
35576
35606
|
customization?: {
|
|
35577
35607
|
webClient?: {
|
|
35578
35608
|
disabledContinueShoppingButton: boolean;
|
|
35609
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
35579
35610
|
};
|
|
35580
35611
|
lockedGiftCard: boolean;
|
|
35581
35612
|
lockedCoupon: boolean;
|
|
35613
|
+
disabledManualPayment: boolean;
|
|
35582
35614
|
};
|
|
35583
35615
|
lineItems: {
|
|
35584
35616
|
quantity: number;
|