@wix/auto_sdk_ecom_current-cart-v-2 1.0.13 → 1.0.15
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 +3 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +3 -3
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +3 -3
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +6 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +3 -3
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +6 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +3 -3
- package/package.json +2 -2
|
@@ -373,6 +373,9 @@ interface DescriptionLine extends DescriptionLineValueOneOf, DescriptionLineDesc
|
|
|
373
373
|
/**
|
|
374
374
|
* Whether the description line originates from a modifier.
|
|
375
375
|
* @internal
|
|
376
|
+
* @deprecated Whether the description line originates from a modifier.
|
|
377
|
+
* @replacedBy none
|
|
378
|
+
* @targetRemovalDate 2025-12-31
|
|
376
379
|
*/
|
|
377
380
|
modifierDescriptionLine?: boolean;
|
|
378
381
|
}
|
|
@@ -1635,15 +1638,15 @@ interface Tax {
|
|
|
1635
1638
|
name?: TranslatableString;
|
|
1636
1639
|
/** Amount for which tax is calculated. */
|
|
1637
1640
|
taxableAmount?: MultiCurrencyPrice;
|
|
1641
|
+
/** Amount that is exempt from tax. */
|
|
1642
|
+
exemptAmount?: MultiCurrencyPrice;
|
|
1638
1643
|
/**
|
|
1639
1644
|
* Tax rate %, as a decimal point between 0 and 1.
|
|
1640
1645
|
* @decimalValue options { gte:0, lte:1, maxScale:6 }
|
|
1641
1646
|
*/
|
|
1642
1647
|
rate?: string | null;
|
|
1643
1648
|
/** Calculated tax, based on `taxable_amount` and `rate`. */
|
|
1644
|
-
|
|
1645
|
-
/** Amount that is exempt from tax. */
|
|
1646
|
-
totalExemptAmount?: MultiCurrencyPrice;
|
|
1649
|
+
amount?: MultiCurrencyPrice;
|
|
1647
1650
|
}
|
|
1648
1651
|
interface LineItemTax {
|
|
1649
1652
|
/**
|