@wix/auto_sdk_ecom_current-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
package/build/cjs/index.d.ts
CHANGED
|
@@ -1299,19 +1299,16 @@ interface GiftCard {
|
|
|
1299
1299
|
/**
|
|
1300
1300
|
* A unique identifier of the gift card within the Cart.
|
|
1301
1301
|
* @format GUID
|
|
1302
|
-
* @readonly
|
|
1303
1302
|
*/
|
|
1304
1303
|
_id?: string;
|
|
1305
1304
|
/**
|
|
1306
1305
|
* A partially hidden version of the actual gift card code
|
|
1307
1306
|
* @maxLength 50
|
|
1308
|
-
* @readonly
|
|
1309
1307
|
*/
|
|
1310
1308
|
obfuscatedCode?: string;
|
|
1311
1309
|
/**
|
|
1312
1310
|
* App ID of the gift card provider.
|
|
1313
1311
|
* @format GUID
|
|
1314
|
-
* @readonly
|
|
1315
1312
|
*/
|
|
1316
1313
|
appId?: string;
|
|
1317
1314
|
/**
|
|
@@ -1618,15 +1615,15 @@ interface Tax {
|
|
|
1618
1615
|
name?: TranslatableString;
|
|
1619
1616
|
/** Amount for which tax is calculated. */
|
|
1620
1617
|
taxableAmount?: MultiCurrencyPrice;
|
|
1618
|
+
/** Amount that is exempt from tax. */
|
|
1619
|
+
exemptAmount?: MultiCurrencyPrice;
|
|
1621
1620
|
/**
|
|
1622
1621
|
* Tax rate %, as a decimal point between 0 and 1.
|
|
1623
1622
|
* @decimalValue options { gte:0, lte:1, maxScale:6 }
|
|
1624
1623
|
*/
|
|
1625
1624
|
rate?: string | null;
|
|
1626
1625
|
/** Calculated tax, based on `taxable_amount` and `rate`. */
|
|
1627
|
-
|
|
1628
|
-
/** Amount that is exempt from tax. */
|
|
1629
|
-
totalExemptAmount?: MultiCurrencyPrice;
|
|
1626
|
+
amount?: MultiCurrencyPrice;
|
|
1630
1627
|
}
|
|
1631
1628
|
interface LineItemTax {
|
|
1632
1629
|
/**
|