@wix/ecom 1.0.771 → 1.0.773
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.773",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"@wix/ecom_additional-fees": "1.0.27",
|
|
24
24
|
"@wix/ecom_back-in-stock-notifications": "1.0.51",
|
|
25
25
|
"@wix/ecom_back-in-stock-settings": "1.0.36",
|
|
26
|
-
"@wix/ecom_cart": "1.0.
|
|
27
|
-
"@wix/ecom_checkout": "1.0.
|
|
26
|
+
"@wix/ecom_cart": "1.0.79",
|
|
27
|
+
"@wix/ecom_checkout": "1.0.89",
|
|
28
28
|
"@wix/ecom_checkout-content": "1.0.7",
|
|
29
29
|
"@wix/ecom_checkout-settings": "1.0.52",
|
|
30
|
-
"@wix/ecom_checkout-templates": "1.0.
|
|
30
|
+
"@wix/ecom_checkout-templates": "1.0.88",
|
|
31
31
|
"@wix/ecom_currencies": "1.0.37",
|
|
32
|
-
"@wix/ecom_current-cart": "1.0.
|
|
32
|
+
"@wix/ecom_current-cart": "1.0.79",
|
|
33
33
|
"@wix/ecom_custom-triggers": "1.0.25",
|
|
34
34
|
"@wix/ecom_delivery-profile": "1.0.20",
|
|
35
35
|
"@wix/ecom_discount-rules": "1.0.53",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@wix/ecom_order-transactions": "1.0.67",
|
|
46
46
|
"@wix/ecom_orders": "1.0.122",
|
|
47
47
|
"@wix/ecom_orders-settings": "1.0.46",
|
|
48
|
-
"@wix/ecom_payment-settings": "1.0.
|
|
48
|
+
"@wix/ecom_payment-settings": "1.0.48",
|
|
49
49
|
"@wix/ecom_pickup-locations": "1.0.9",
|
|
50
50
|
"@wix/ecom_recommendations": "1.0.42",
|
|
51
51
|
"@wix/ecom_recommendations-provider": "1.0.1",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"fqdn": ""
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
|
-
"falconPackageHash": "
|
|
81
|
+
"falconPackageHash": "58513a8d4b90631e90e861102548ec8b6317a4848149aef7e7d471db"
|
|
82
82
|
}
|
|
@@ -4784,6 +4784,18 @@ interface AddToCurrentCartAndEstimateTotalsRequest$1 {
|
|
|
4784
4784
|
billingAddress?: Address$9;
|
|
4785
4785
|
/** The selected membership payment options and which line items they apply to. */
|
|
4786
4786
|
selectedMemberships?: SelectedMemberships$4;
|
|
4787
|
+
/**
|
|
4788
|
+
* Whether to calculate tax in the calculation request.
|
|
4789
|
+
*
|
|
4790
|
+
* Default: `true`
|
|
4791
|
+
*/
|
|
4792
|
+
calculateTax?: boolean | null;
|
|
4793
|
+
/**
|
|
4794
|
+
* Whether to calculate shipping in the calculation request.
|
|
4795
|
+
*
|
|
4796
|
+
* Default: `true`
|
|
4797
|
+
*/
|
|
4798
|
+
calculateShipping?: boolean | null;
|
|
4787
4799
|
}
|
|
4788
4800
|
interface SelectedMemberships$4 {
|
|
4789
4801
|
/** Selected memberships. */
|
|
@@ -5562,6 +5574,18 @@ interface EstimateCurrentCartTotalsRequest$1 {
|
|
|
5562
5574
|
billingAddress?: Address$9;
|
|
5563
5575
|
/** The selected membership payment options and which line items they apply to. */
|
|
5564
5576
|
selectedMemberships?: SelectedMemberships$4;
|
|
5577
|
+
/**
|
|
5578
|
+
* Whether to calculate tax in the calculation request.
|
|
5579
|
+
*
|
|
5580
|
+
* Default: `true`
|
|
5581
|
+
*/
|
|
5582
|
+
calculateTax?: boolean | null;
|
|
5583
|
+
/**
|
|
5584
|
+
* Whether to calculate shipping in the calculation request.
|
|
5585
|
+
*
|
|
5586
|
+
* Default: `true`
|
|
5587
|
+
*/
|
|
5588
|
+
calculateShipping?: boolean | null;
|
|
5565
5589
|
}
|
|
5566
5590
|
interface DeleteCurrentCartRequest$1 {
|
|
5567
5591
|
}
|
|
@@ -5768,6 +5792,18 @@ interface EstimateTotalsRequest$1 {
|
|
|
5768
5792
|
billingAddress?: Address$9;
|
|
5769
5793
|
/** The selected membership payment options and which line items they apply to. */
|
|
5770
5794
|
selectedMemberships?: SelectedMemberships$4;
|
|
5795
|
+
/**
|
|
5796
|
+
* Whether to calculate tax in the calculation request.
|
|
5797
|
+
*
|
|
5798
|
+
* Default: `true`
|
|
5799
|
+
*/
|
|
5800
|
+
calculateTax?: boolean | null;
|
|
5801
|
+
/**
|
|
5802
|
+
* Whether to calculate shipping in the calculation request.
|
|
5803
|
+
*
|
|
5804
|
+
* Default: `true`
|
|
5805
|
+
*/
|
|
5806
|
+
calculateShipping?: boolean | null;
|
|
5771
5807
|
}
|
|
5772
5808
|
interface DeleteCartRequest$1 {
|
|
5773
5809
|
/** ID of the cart to delete. */
|
|
@@ -6426,6 +6462,18 @@ interface EstimateTotalsOptions {
|
|
|
6426
6462
|
billingAddress?: Address$9;
|
|
6427
6463
|
/** The selected membership payment options and which line items they apply to. */
|
|
6428
6464
|
selectedMemberships?: SelectedMemberships$4;
|
|
6465
|
+
/**
|
|
6466
|
+
* Whether to calculate tax in the calculation request.
|
|
6467
|
+
*
|
|
6468
|
+
* Default: `true`
|
|
6469
|
+
*/
|
|
6470
|
+
calculateTax?: boolean | null;
|
|
6471
|
+
/**
|
|
6472
|
+
* Whether to calculate shipping in the calculation request.
|
|
6473
|
+
*
|
|
6474
|
+
* Default: `true`
|
|
6475
|
+
*/
|
|
6476
|
+
calculateShipping?: boolean | null;
|
|
6429
6477
|
}
|
|
6430
6478
|
|
|
6431
6479
|
declare function createCart$1(httpClient: HttpClient): CreateCartSignature;
|
|
@@ -7462,6 +7510,18 @@ interface AddToCurrentCartAndEstimateTotalsRequest {
|
|
|
7462
7510
|
billingAddress?: Address$8;
|
|
7463
7511
|
/** The selected membership payment options and which line items they apply to. */
|
|
7464
7512
|
selectedMemberships?: SelectedMemberships$3;
|
|
7513
|
+
/**
|
|
7514
|
+
* Whether to calculate tax in the calculation request.
|
|
7515
|
+
*
|
|
7516
|
+
* Default: `true`
|
|
7517
|
+
*/
|
|
7518
|
+
calculateTax?: boolean | null;
|
|
7519
|
+
/**
|
|
7520
|
+
* Whether to calculate shipping in the calculation request.
|
|
7521
|
+
*
|
|
7522
|
+
* Default: `true`
|
|
7523
|
+
*/
|
|
7524
|
+
calculateShipping?: boolean | null;
|
|
7465
7525
|
}
|
|
7466
7526
|
interface SelectedMemberships$3 {
|
|
7467
7527
|
/** Selected memberships. */
|
|
@@ -8240,6 +8300,18 @@ interface EstimateCurrentCartTotalsRequest {
|
|
|
8240
8300
|
billingAddress?: Address$8;
|
|
8241
8301
|
/** The selected membership payment options and which line items they apply to. */
|
|
8242
8302
|
selectedMemberships?: SelectedMemberships$3;
|
|
8303
|
+
/**
|
|
8304
|
+
* Whether to calculate tax in the calculation request.
|
|
8305
|
+
*
|
|
8306
|
+
* Default: `true`
|
|
8307
|
+
*/
|
|
8308
|
+
calculateTax?: boolean | null;
|
|
8309
|
+
/**
|
|
8310
|
+
* Whether to calculate shipping in the calculation request.
|
|
8311
|
+
*
|
|
8312
|
+
* Default: `true`
|
|
8313
|
+
*/
|
|
8314
|
+
calculateShipping?: boolean | null;
|
|
8243
8315
|
}
|
|
8244
8316
|
interface DeleteCurrentCartRequest {
|
|
8245
8317
|
}
|
|
@@ -8446,6 +8518,18 @@ interface EstimateTotalsRequest {
|
|
|
8446
8518
|
billingAddress?: Address$8;
|
|
8447
8519
|
/** The selected membership payment options and which line items they apply to. */
|
|
8448
8520
|
selectedMemberships?: SelectedMemberships$3;
|
|
8521
|
+
/**
|
|
8522
|
+
* Whether to calculate tax in the calculation request.
|
|
8523
|
+
*
|
|
8524
|
+
* Default: `true`
|
|
8525
|
+
*/
|
|
8526
|
+
calculateTax?: boolean | null;
|
|
8527
|
+
/**
|
|
8528
|
+
* Whether to calculate shipping in the calculation request.
|
|
8529
|
+
*
|
|
8530
|
+
* Default: `true`
|
|
8531
|
+
*/
|
|
8532
|
+
calculateShipping?: boolean | null;
|
|
8449
8533
|
}
|
|
8450
8534
|
interface DeleteCartRequest {
|
|
8451
8535
|
/** ID of the cart to delete. */
|
|
@@ -9008,6 +9092,18 @@ interface EstimateCurrentCartTotalsOptions {
|
|
|
9008
9092
|
billingAddress?: Address$8;
|
|
9009
9093
|
/** The selected membership payment options and which line items they apply to. */
|
|
9010
9094
|
selectedMemberships?: SelectedMemberships$3;
|
|
9095
|
+
/**
|
|
9096
|
+
* Whether to calculate tax in the calculation request.
|
|
9097
|
+
*
|
|
9098
|
+
* Default: `true`
|
|
9099
|
+
*/
|
|
9100
|
+
calculateTax?: boolean | null;
|
|
9101
|
+
/**
|
|
9102
|
+
* Whether to calculate shipping in the calculation request.
|
|
9103
|
+
*
|
|
9104
|
+
* Default: `true`
|
|
9105
|
+
*/
|
|
9106
|
+
calculateShipping?: boolean | null;
|
|
9011
9107
|
}
|
|
9012
9108
|
|
|
9013
9109
|
declare function getCurrentCart$1(httpClient: HttpClient): GetCurrentCartSignature;
|
|
@@ -4784,6 +4784,18 @@ interface AddToCurrentCartAndEstimateTotalsRequest$1 {
|
|
|
4784
4784
|
billingAddress?: Address$9;
|
|
4785
4785
|
/** The selected membership payment options and which line items they apply to. */
|
|
4786
4786
|
selectedMemberships?: SelectedMemberships$4;
|
|
4787
|
+
/**
|
|
4788
|
+
* Whether to calculate tax in the calculation request.
|
|
4789
|
+
*
|
|
4790
|
+
* Default: `true`
|
|
4791
|
+
*/
|
|
4792
|
+
calculateTax?: boolean | null;
|
|
4793
|
+
/**
|
|
4794
|
+
* Whether to calculate shipping in the calculation request.
|
|
4795
|
+
*
|
|
4796
|
+
* Default: `true`
|
|
4797
|
+
*/
|
|
4798
|
+
calculateShipping?: boolean | null;
|
|
4787
4799
|
}
|
|
4788
4800
|
interface SelectedMemberships$4 {
|
|
4789
4801
|
/** Selected memberships. */
|
|
@@ -5562,6 +5574,18 @@ interface EstimateCurrentCartTotalsRequest$1 {
|
|
|
5562
5574
|
billingAddress?: Address$9;
|
|
5563
5575
|
/** The selected membership payment options and which line items they apply to. */
|
|
5564
5576
|
selectedMemberships?: SelectedMemberships$4;
|
|
5577
|
+
/**
|
|
5578
|
+
* Whether to calculate tax in the calculation request.
|
|
5579
|
+
*
|
|
5580
|
+
* Default: `true`
|
|
5581
|
+
*/
|
|
5582
|
+
calculateTax?: boolean | null;
|
|
5583
|
+
/**
|
|
5584
|
+
* Whether to calculate shipping in the calculation request.
|
|
5585
|
+
*
|
|
5586
|
+
* Default: `true`
|
|
5587
|
+
*/
|
|
5588
|
+
calculateShipping?: boolean | null;
|
|
5565
5589
|
}
|
|
5566
5590
|
interface DeleteCurrentCartRequest$1 {
|
|
5567
5591
|
}
|
|
@@ -5768,6 +5792,18 @@ interface EstimateTotalsRequest$1 {
|
|
|
5768
5792
|
billingAddress?: Address$9;
|
|
5769
5793
|
/** The selected membership payment options and which line items they apply to. */
|
|
5770
5794
|
selectedMemberships?: SelectedMemberships$4;
|
|
5795
|
+
/**
|
|
5796
|
+
* Whether to calculate tax in the calculation request.
|
|
5797
|
+
*
|
|
5798
|
+
* Default: `true`
|
|
5799
|
+
*/
|
|
5800
|
+
calculateTax?: boolean | null;
|
|
5801
|
+
/**
|
|
5802
|
+
* Whether to calculate shipping in the calculation request.
|
|
5803
|
+
*
|
|
5804
|
+
* Default: `true`
|
|
5805
|
+
*/
|
|
5806
|
+
calculateShipping?: boolean | null;
|
|
5771
5807
|
}
|
|
5772
5808
|
interface DeleteCartRequest$1 {
|
|
5773
5809
|
/** ID of the cart to delete. */
|
|
@@ -6426,6 +6462,18 @@ interface EstimateTotalsOptions {
|
|
|
6426
6462
|
billingAddress?: Address$9;
|
|
6427
6463
|
/** The selected membership payment options and which line items they apply to. */
|
|
6428
6464
|
selectedMemberships?: SelectedMemberships$4;
|
|
6465
|
+
/**
|
|
6466
|
+
* Whether to calculate tax in the calculation request.
|
|
6467
|
+
*
|
|
6468
|
+
* Default: `true`
|
|
6469
|
+
*/
|
|
6470
|
+
calculateTax?: boolean | null;
|
|
6471
|
+
/**
|
|
6472
|
+
* Whether to calculate shipping in the calculation request.
|
|
6473
|
+
*
|
|
6474
|
+
* Default: `true`
|
|
6475
|
+
*/
|
|
6476
|
+
calculateShipping?: boolean | null;
|
|
6429
6477
|
}
|
|
6430
6478
|
|
|
6431
6479
|
declare function createCart$1(httpClient: HttpClient): CreateCartSignature;
|
|
@@ -7462,6 +7510,18 @@ interface AddToCurrentCartAndEstimateTotalsRequest {
|
|
|
7462
7510
|
billingAddress?: Address$8;
|
|
7463
7511
|
/** The selected membership payment options and which line items they apply to. */
|
|
7464
7512
|
selectedMemberships?: SelectedMemberships$3;
|
|
7513
|
+
/**
|
|
7514
|
+
* Whether to calculate tax in the calculation request.
|
|
7515
|
+
*
|
|
7516
|
+
* Default: `true`
|
|
7517
|
+
*/
|
|
7518
|
+
calculateTax?: boolean | null;
|
|
7519
|
+
/**
|
|
7520
|
+
* Whether to calculate shipping in the calculation request.
|
|
7521
|
+
*
|
|
7522
|
+
* Default: `true`
|
|
7523
|
+
*/
|
|
7524
|
+
calculateShipping?: boolean | null;
|
|
7465
7525
|
}
|
|
7466
7526
|
interface SelectedMemberships$3 {
|
|
7467
7527
|
/** Selected memberships. */
|
|
@@ -8240,6 +8300,18 @@ interface EstimateCurrentCartTotalsRequest {
|
|
|
8240
8300
|
billingAddress?: Address$8;
|
|
8241
8301
|
/** The selected membership payment options and which line items they apply to. */
|
|
8242
8302
|
selectedMemberships?: SelectedMemberships$3;
|
|
8303
|
+
/**
|
|
8304
|
+
* Whether to calculate tax in the calculation request.
|
|
8305
|
+
*
|
|
8306
|
+
* Default: `true`
|
|
8307
|
+
*/
|
|
8308
|
+
calculateTax?: boolean | null;
|
|
8309
|
+
/**
|
|
8310
|
+
* Whether to calculate shipping in the calculation request.
|
|
8311
|
+
*
|
|
8312
|
+
* Default: `true`
|
|
8313
|
+
*/
|
|
8314
|
+
calculateShipping?: boolean | null;
|
|
8243
8315
|
}
|
|
8244
8316
|
interface DeleteCurrentCartRequest {
|
|
8245
8317
|
}
|
|
@@ -8446,6 +8518,18 @@ interface EstimateTotalsRequest {
|
|
|
8446
8518
|
billingAddress?: Address$8;
|
|
8447
8519
|
/** The selected membership payment options and which line items they apply to. */
|
|
8448
8520
|
selectedMemberships?: SelectedMemberships$3;
|
|
8521
|
+
/**
|
|
8522
|
+
* Whether to calculate tax in the calculation request.
|
|
8523
|
+
*
|
|
8524
|
+
* Default: `true`
|
|
8525
|
+
*/
|
|
8526
|
+
calculateTax?: boolean | null;
|
|
8527
|
+
/**
|
|
8528
|
+
* Whether to calculate shipping in the calculation request.
|
|
8529
|
+
*
|
|
8530
|
+
* Default: `true`
|
|
8531
|
+
*/
|
|
8532
|
+
calculateShipping?: boolean | null;
|
|
8449
8533
|
}
|
|
8450
8534
|
interface DeleteCartRequest {
|
|
8451
8535
|
/** ID of the cart to delete. */
|
|
@@ -9008,6 +9092,18 @@ interface EstimateCurrentCartTotalsOptions {
|
|
|
9008
9092
|
billingAddress?: Address$8;
|
|
9009
9093
|
/** The selected membership payment options and which line items they apply to. */
|
|
9010
9094
|
selectedMemberships?: SelectedMemberships$3;
|
|
9095
|
+
/**
|
|
9096
|
+
* Whether to calculate tax in the calculation request.
|
|
9097
|
+
*
|
|
9098
|
+
* Default: `true`
|
|
9099
|
+
*/
|
|
9100
|
+
calculateTax?: boolean | null;
|
|
9101
|
+
/**
|
|
9102
|
+
* Whether to calculate shipping in the calculation request.
|
|
9103
|
+
*
|
|
9104
|
+
* Default: `true`
|
|
9105
|
+
*/
|
|
9106
|
+
calculateShipping?: boolean | null;
|
|
9011
9107
|
}
|
|
9012
9108
|
|
|
9013
9109
|
declare function getCurrentCart$1(httpClient: HttpClient): GetCurrentCartSignature;
|
|
@@ -4420,6 +4420,18 @@ interface EstimateTotalsRequest$1 {
|
|
|
4420
4420
|
billingAddress?: Address$d;
|
|
4421
4421
|
/** The selected membership payment options and which line items they apply to. */
|
|
4422
4422
|
selectedMemberships?: SelectedMemberships$7;
|
|
4423
|
+
/**
|
|
4424
|
+
* Whether to calculate tax in the calculation request.
|
|
4425
|
+
*
|
|
4426
|
+
* Default: `true`
|
|
4427
|
+
*/
|
|
4428
|
+
calculateTax?: boolean | null;
|
|
4429
|
+
/**
|
|
4430
|
+
* Whether to calculate shipping in the calculation request.
|
|
4431
|
+
*
|
|
4432
|
+
* Default: `true`
|
|
4433
|
+
*/
|
|
4434
|
+
calculateShipping?: boolean | null;
|
|
4423
4435
|
}
|
|
4424
4436
|
interface DeleteCartRequest$1 {
|
|
4425
4437
|
/** ID of the cart to delete. */
|
|
@@ -6367,6 +6379,18 @@ interface EstimateTotalsRequest {
|
|
|
6367
6379
|
billingAddress?: Address$c;
|
|
6368
6380
|
/** The selected membership payment options and which line items they apply to. */
|
|
6369
6381
|
selectedMemberships?: SelectedMemberships$6;
|
|
6382
|
+
/**
|
|
6383
|
+
* Whether to calculate tax in the calculation request.
|
|
6384
|
+
*
|
|
6385
|
+
* Default: `true`
|
|
6386
|
+
*/
|
|
6387
|
+
calculateTax?: boolean | null;
|
|
6388
|
+
/**
|
|
6389
|
+
* Whether to calculate shipping in the calculation request.
|
|
6390
|
+
*
|
|
6391
|
+
* Default: `true`
|
|
6392
|
+
*/
|
|
6393
|
+
calculateShipping?: boolean | null;
|
|
6370
6394
|
}
|
|
6371
6395
|
interface DeleteCartRequest {
|
|
6372
6396
|
/** ID of the cart to delete. */
|
|
@@ -8375,6 +8399,18 @@ interface EstimateCurrentCartTotalsRequest$1 {
|
|
|
8375
8399
|
billingAddress?: Address$b;
|
|
8376
8400
|
/** The selected membership payment options and which line items they apply to. */
|
|
8377
8401
|
selectedMemberships?: SelectedMemberships$5;
|
|
8402
|
+
/**
|
|
8403
|
+
* Whether to calculate tax in the calculation request.
|
|
8404
|
+
*
|
|
8405
|
+
* Default: `true`
|
|
8406
|
+
*/
|
|
8407
|
+
calculateTax?: boolean | null;
|
|
8408
|
+
/**
|
|
8409
|
+
* Whether to calculate shipping in the calculation request.
|
|
8410
|
+
*
|
|
8411
|
+
* Default: `true`
|
|
8412
|
+
*/
|
|
8413
|
+
calculateShipping?: boolean | null;
|
|
8378
8414
|
}
|
|
8379
8415
|
interface DeleteCurrentCartRequest$1 {
|
|
8380
8416
|
}
|
|
@@ -10282,6 +10318,18 @@ interface EstimateCurrentCartTotalsRequest {
|
|
|
10282
10318
|
billingAddress?: Address$a;
|
|
10283
10319
|
/** The selected membership payment options and which line items they apply to. */
|
|
10284
10320
|
selectedMemberships?: SelectedMemberships$4;
|
|
10321
|
+
/**
|
|
10322
|
+
* Whether to calculate tax in the calculation request.
|
|
10323
|
+
*
|
|
10324
|
+
* Default: `true`
|
|
10325
|
+
*/
|
|
10326
|
+
calculateTax?: boolean | null;
|
|
10327
|
+
/**
|
|
10328
|
+
* Whether to calculate shipping in the calculation request.
|
|
10329
|
+
*
|
|
10330
|
+
* Default: `true`
|
|
10331
|
+
*/
|
|
10332
|
+
calculateShipping?: boolean | null;
|
|
10285
10333
|
}
|
|
10286
10334
|
interface DeleteCurrentCartRequest {
|
|
10287
10335
|
}
|