@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/index.d.ts
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
|
}
|