@wix/auto_sdk_ecom_cart-v-2 1.0.5 → 1.0.6
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.d.ts +1 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -4
- package/build/es/index.d.mts +1 -4
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -4
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -4
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1 -4
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -1546,9 +1546,6 @@ interface V2AdditionalFee {
|
|
|
1546
1546
|
interface TaxSummary {
|
|
1547
1547
|
/**
|
|
1548
1548
|
* List of taxes applied to the cart.
|
|
1549
|
-
* May contain multiple entries when advanced tax rates are configured by the merchant,
|
|
1550
|
-
* or a single entry representing the total tax amount.
|
|
1551
|
-
* For more details on advanced tax rates, read [this article](https://support.wix.com/en/article/setting-up-tax-calculation-using-the-manual-method#step-3-optional-customize-advanced-mode-settings).
|
|
1552
1549
|
* @maxSize 100
|
|
1553
1550
|
*/
|
|
1554
1551
|
taxes?: Tax[];
|
|
@@ -1579,7 +1576,7 @@ interface Tax {
|
|
|
1579
1576
|
* Tax rate %, as a decimal point between 0 and 1.
|
|
1580
1577
|
* @decimalValue options { gte:0, lte:1, maxScale:6 }
|
|
1581
1578
|
*/
|
|
1582
|
-
rate?: string
|
|
1579
|
+
rate?: string;
|
|
1583
1580
|
/** Calculated tax, based on `taxable_amount` and `rate`. */
|
|
1584
1581
|
totalTax?: MultiCurrencyPrice;
|
|
1585
1582
|
}
|
package/build/es/index.d.mts
CHANGED
|
@@ -1569,9 +1569,6 @@ interface V2AdditionalFee {
|
|
|
1569
1569
|
interface TaxSummary {
|
|
1570
1570
|
/**
|
|
1571
1571
|
* List of taxes applied to the cart.
|
|
1572
|
-
* May contain multiple entries when advanced tax rates are configured by the merchant,
|
|
1573
|
-
* or a single entry representing the total tax amount.
|
|
1574
|
-
* For more details on advanced tax rates, read [this article](https://support.wix.com/en/article/setting-up-tax-calculation-using-the-manual-method#step-3-optional-customize-advanced-mode-settings).
|
|
1575
1572
|
* @maxSize 100
|
|
1576
1573
|
*/
|
|
1577
1574
|
taxes?: Tax[];
|
|
@@ -1602,7 +1599,7 @@ interface Tax {
|
|
|
1602
1599
|
* Tax rate %, as a decimal point between 0 and 1.
|
|
1603
1600
|
* @decimalValue options { gte:0, lte:1, maxScale:6 }
|
|
1604
1601
|
*/
|
|
1605
|
-
rate?: string
|
|
1602
|
+
rate?: string;
|
|
1606
1603
|
/** Calculated tax, based on `taxable_amount` and `rate`. */
|
|
1607
1604
|
totalTax?: MultiCurrencyPrice;
|
|
1608
1605
|
}
|