@wix/auto_sdk_ecom_cart-v-2 1.0.12 → 1.0.14
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 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +3 -6
- package/build/es/index.d.mts +3 -6
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +3 -6
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +3 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +3 -6
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +3 -6
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +3 -6
- package/package.json +2 -2
|
@@ -1319,19 +1319,16 @@ interface GiftCard {
|
|
|
1319
1319
|
/**
|
|
1320
1320
|
* A unique identifier of the gift card within the Cart.
|
|
1321
1321
|
* @format GUID
|
|
1322
|
-
* @readonly
|
|
1323
1322
|
*/
|
|
1324
1323
|
_id?: string;
|
|
1325
1324
|
/**
|
|
1326
1325
|
* A partially hidden version of the actual gift card code
|
|
1327
1326
|
* @maxLength 50
|
|
1328
|
-
* @readonly
|
|
1329
1327
|
*/
|
|
1330
1328
|
obfuscatedCode?: string;
|
|
1331
1329
|
/**
|
|
1332
1330
|
* App ID of the gift card provider.
|
|
1333
1331
|
* @format GUID
|
|
1334
|
-
* @readonly
|
|
1335
1332
|
*/
|
|
1336
1333
|
appId?: string;
|
|
1337
1334
|
/**
|
|
@@ -1638,15 +1635,15 @@ interface Tax {
|
|
|
1638
1635
|
name?: TranslatableString;
|
|
1639
1636
|
/** Amount for which tax is calculated. */
|
|
1640
1637
|
taxableAmount?: MultiCurrencyPrice;
|
|
1638
|
+
/** Amount that is exempt from tax. */
|
|
1639
|
+
exemptAmount?: MultiCurrencyPrice;
|
|
1641
1640
|
/**
|
|
1642
1641
|
* Tax rate %, as a decimal point between 0 and 1.
|
|
1643
1642
|
* @decimalValue options { gte:0, lte:1, maxScale:6 }
|
|
1644
1643
|
*/
|
|
1645
1644
|
rate?: string | null;
|
|
1646
1645
|
/** Calculated tax, based on `taxable_amount` and `rate`. */
|
|
1647
|
-
|
|
1648
|
-
/** Amount that is exempt from tax. */
|
|
1649
|
-
totalExemptAmount?: MultiCurrencyPrice;
|
|
1646
|
+
amount?: MultiCurrencyPrice;
|
|
1650
1647
|
}
|
|
1651
1648
|
interface LineItemTax {
|
|
1652
1649
|
/**
|