@wix/ecom 1.0.820 → 1.0.821
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.821",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@wix/ecom_discount-rules": "1.0.61",
|
|
40
40
|
"@wix/ecom_discounts": "1.0.13",
|
|
41
41
|
"@wix/ecom_discounts-custom-trigger": "1.0.16",
|
|
42
|
-
"@wix/ecom_draft-orders": "1.0.
|
|
42
|
+
"@wix/ecom_draft-orders": "1.0.40",
|
|
43
43
|
"@wix/ecom_gift-vouchers": "1.0.12",
|
|
44
44
|
"@wix/ecom_gift-vouchers-provider": "1.0.12",
|
|
45
45
|
"@wix/ecom_local-delivery-options": "1.0.18",
|
|
@@ -48,16 +48,16 @@
|
|
|
48
48
|
"@wix/ecom_order-invoices": "1.0.48",
|
|
49
49
|
"@wix/ecom_order-payment-requests": "1.0.19",
|
|
50
50
|
"@wix/ecom_order-transactions": "1.0.76",
|
|
51
|
-
"@wix/ecom_orders": "1.0.
|
|
51
|
+
"@wix/ecom_orders": "1.0.143",
|
|
52
52
|
"@wix/ecom_orders-settings": "1.0.54",
|
|
53
|
-
"@wix/ecom_payment-settings": "1.0.
|
|
53
|
+
"@wix/ecom_payment-settings": "1.0.68",
|
|
54
54
|
"@wix/ecom_pickup-locations": "1.0.18",
|
|
55
55
|
"@wix/ecom_recommendations": "1.0.51",
|
|
56
56
|
"@wix/ecom_recommendations-provider": "1.0.9",
|
|
57
57
|
"@wix/ecom_shipping-options": "1.0.16",
|
|
58
58
|
"@wix/ecom_shipping-rates": "1.0.52",
|
|
59
59
|
"@wix/ecom_shippo-configurations": "1.0.23",
|
|
60
|
-
"@wix/ecom_subscription-contracts": "1.0.
|
|
60
|
+
"@wix/ecom_subscription-contracts": "1.0.7",
|
|
61
61
|
"@wix/ecom_tip-settings": "1.0.2",
|
|
62
62
|
"@wix/ecom_tippable-staff": "1.0.2",
|
|
63
63
|
"@wix/ecom_tips": "1.0.3",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"fqdn": ""
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
|
-
"falconPackageHash": "
|
|
90
|
+
"falconPackageHash": "618dd1cb3b18a27e7e48cc2aeb0c28129424d283b1459d3727e3d103"
|
|
91
91
|
}
|
|
@@ -2909,6 +2909,13 @@ interface OrderTaxInfo$2 {
|
|
|
2909
2909
|
totalTax?: Price$5;
|
|
2910
2910
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
2911
2911
|
taxBreakdown?: OrderTaxBreakdown$2[];
|
|
2912
|
+
/**
|
|
2913
|
+
* Whether the draft order is exempt from tax calculations.
|
|
2914
|
+
*
|
|
2915
|
+
* Default: `true`
|
|
2916
|
+
* @readonly
|
|
2917
|
+
*/
|
|
2918
|
+
taxExempt?: boolean | null;
|
|
2912
2919
|
}
|
|
2913
2920
|
/**
|
|
2914
2921
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -19782,6 +19789,13 @@ interface OrderTaxInfo$1 {
|
|
|
19782
19789
|
totalTax?: Price$4;
|
|
19783
19790
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
19784
19791
|
taxBreakdown?: OrderTaxBreakdown$1[];
|
|
19792
|
+
/**
|
|
19793
|
+
* Whether the draft order is exempt from tax calculations.
|
|
19794
|
+
*
|
|
19795
|
+
* Default: `true`
|
|
19796
|
+
* @readonly
|
|
19797
|
+
*/
|
|
19798
|
+
taxExempt?: boolean | null;
|
|
19785
19799
|
}
|
|
19786
19800
|
/**
|
|
19787
19801
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -24725,6 +24739,13 @@ interface OrderTaxInfo {
|
|
|
24725
24739
|
totalTax?: Price$3;
|
|
24726
24740
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
24727
24741
|
taxBreakdown?: OrderTaxBreakdown[];
|
|
24742
|
+
/**
|
|
24743
|
+
* Whether the draft order is exempt from tax calculations.
|
|
24744
|
+
*
|
|
24745
|
+
* Default: `true`
|
|
24746
|
+
* @readonly
|
|
24747
|
+
*/
|
|
24748
|
+
taxExempt?: boolean | null;
|
|
24728
24749
|
}
|
|
24729
24750
|
/**
|
|
24730
24751
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -2909,6 +2909,13 @@ interface OrderTaxInfo$2 {
|
|
|
2909
2909
|
totalTax?: Price$5;
|
|
2910
2910
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
2911
2911
|
taxBreakdown?: OrderTaxBreakdown$2[];
|
|
2912
|
+
/**
|
|
2913
|
+
* Whether the draft order is exempt from tax calculations.
|
|
2914
|
+
*
|
|
2915
|
+
* Default: `true`
|
|
2916
|
+
* @readonly
|
|
2917
|
+
*/
|
|
2918
|
+
taxExempt?: boolean | null;
|
|
2912
2919
|
}
|
|
2913
2920
|
/**
|
|
2914
2921
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -19782,6 +19789,13 @@ interface OrderTaxInfo$1 {
|
|
|
19782
19789
|
totalTax?: Price$4;
|
|
19783
19790
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
19784
19791
|
taxBreakdown?: OrderTaxBreakdown$1[];
|
|
19792
|
+
/**
|
|
19793
|
+
* Whether the draft order is exempt from tax calculations.
|
|
19794
|
+
*
|
|
19795
|
+
* Default: `true`
|
|
19796
|
+
* @readonly
|
|
19797
|
+
*/
|
|
19798
|
+
taxExempt?: boolean | null;
|
|
19785
19799
|
}
|
|
19786
19800
|
/**
|
|
19787
19801
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -24725,6 +24739,13 @@ interface OrderTaxInfo {
|
|
|
24725
24739
|
totalTax?: Price$3;
|
|
24726
24740
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
24727
24741
|
taxBreakdown?: OrderTaxBreakdown[];
|
|
24742
|
+
/**
|
|
24743
|
+
* Whether the draft order is exempt from tax calculations.
|
|
24744
|
+
*
|
|
24745
|
+
* Default: `true`
|
|
24746
|
+
* @readonly
|
|
24747
|
+
*/
|
|
24748
|
+
taxExempt?: boolean | null;
|
|
24728
24749
|
}
|
|
24729
24750
|
/**
|
|
24730
24751
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -21754,6 +21754,13 @@ interface OrderTaxInfo$3 {
|
|
|
21754
21754
|
totalTax?: Price$9;
|
|
21755
21755
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
21756
21756
|
taxBreakdown?: OrderTaxBreakdown$3[];
|
|
21757
|
+
/**
|
|
21758
|
+
* Whether the draft order is exempt from tax calculations.
|
|
21759
|
+
*
|
|
21760
|
+
* Default: `true`
|
|
21761
|
+
* @readonly
|
|
21762
|
+
*/
|
|
21763
|
+
taxExempt?: boolean | null;
|
|
21757
21764
|
}
|
|
21758
21765
|
/**
|
|
21759
21766
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -24334,6 +24341,13 @@ interface OrderTaxInfo$2 {
|
|
|
24334
24341
|
totalTax?: Price$8;
|
|
24335
24342
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
24336
24343
|
taxBreakdown?: OrderTaxBreakdown$2[];
|
|
24344
|
+
/**
|
|
24345
|
+
* Whether the draft order is exempt from tax calculations.
|
|
24346
|
+
*
|
|
24347
|
+
* Default: `true`
|
|
24348
|
+
* @readonly
|
|
24349
|
+
*/
|
|
24350
|
+
taxExempt?: boolean | null;
|
|
24337
24351
|
}
|
|
24338
24352
|
/**
|
|
24339
24353
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -28393,6 +28407,13 @@ interface OrderTaxInfo$1 {
|
|
|
28393
28407
|
totalTax?: Price$7;
|
|
28394
28408
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
28395
28409
|
taxBreakdown?: OrderTaxBreakdown$1[];
|
|
28410
|
+
/**
|
|
28411
|
+
* Whether the draft order is exempt from tax calculations.
|
|
28412
|
+
*
|
|
28413
|
+
* Default: `true`
|
|
28414
|
+
* @readonly
|
|
28415
|
+
*/
|
|
28416
|
+
taxExempt?: boolean | null;
|
|
28396
28417
|
}
|
|
28397
28418
|
/**
|
|
28398
28419
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -30658,6 +30679,13 @@ interface OrderTaxInfo {
|
|
|
30658
30679
|
totalTax?: Price$6;
|
|
30659
30680
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
30660
30681
|
taxBreakdown?: OrderTaxBreakdown[];
|
|
30682
|
+
/**
|
|
30683
|
+
* Whether the draft order is exempt from tax calculations.
|
|
30684
|
+
*
|
|
30685
|
+
* Default: `true`
|
|
30686
|
+
* @readonly
|
|
30687
|
+
*/
|
|
30688
|
+
taxExempt?: boolean | null;
|
|
30661
30689
|
}
|
|
30662
30690
|
/**
|
|
30663
30691
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -3467,6 +3467,13 @@ interface OrderTaxInfo {
|
|
|
3467
3467
|
totalTax?: Price;
|
|
3468
3468
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
3469
3469
|
taxBreakdown?: OrderTaxBreakdown[];
|
|
3470
|
+
/**
|
|
3471
|
+
* Whether the draft order is exempt from tax calculations.
|
|
3472
|
+
*
|
|
3473
|
+
* Default: `true`
|
|
3474
|
+
* @readonly
|
|
3475
|
+
*/
|
|
3476
|
+
taxExempt?: boolean | null;
|
|
3470
3477
|
}
|
|
3471
3478
|
/**
|
|
3472
3479
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -3467,6 +3467,13 @@ interface OrderTaxInfo {
|
|
|
3467
3467
|
totalTax?: Price;
|
|
3468
3468
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
3469
3469
|
taxBreakdown?: OrderTaxBreakdown[];
|
|
3470
|
+
/**
|
|
3471
|
+
* Whether the draft order is exempt from tax calculations.
|
|
3472
|
+
*
|
|
3473
|
+
* Default: `true`
|
|
3474
|
+
* @readonly
|
|
3475
|
+
*/
|
|
3476
|
+
taxExempt?: boolean | null;
|
|
3470
3477
|
}
|
|
3471
3478
|
/**
|
|
3472
3479
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|