@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.
@@ -1298,19 +1298,16 @@ interface GiftCard {
1298
1298
  /**
1299
1299
  * A unique identifier of the gift card within the Cart.
1300
1300
  * @format GUID
1301
- * @readonly
1302
1301
  */
1303
1302
  id?: string;
1304
1303
  /**
1305
1304
  * A partially hidden version of the actual gift card code
1306
1305
  * @maxLength 50
1307
- * @readonly
1308
1306
  */
1309
1307
  obfuscatedCode?: string;
1310
1308
  /**
1311
1309
  * App ID of the gift card provider.
1312
1310
  * @format GUID
1313
- * @readonly
1314
1311
  */
1315
1312
  appId?: string;
1316
1313
  /**
@@ -1589,15 +1586,15 @@ interface Tax {
1589
1586
  name?: TranslatableString;
1590
1587
  /** Amount for which tax is calculated. */
1591
1588
  taxableAmount?: MultiCurrencyPrice;
1589
+ /** Amount that is exempt from tax. */
1590
+ exemptAmount?: MultiCurrencyPrice;
1592
1591
  /**
1593
1592
  * Tax rate %, as a decimal point between 0 and 1.
1594
1593
  * @decimalValue options { gte:0, lte:1, maxScale:6 }
1595
1594
  */
1596
1595
  rate?: string | null;
1597
1596
  /** Calculated tax, based on `taxable_amount` and `rate`. */
1598
- totalTax?: MultiCurrencyPrice;
1599
- /** Amount that is exempt from tax. */
1600
- totalExemptAmount?: MultiCurrencyPrice;
1597
+ amount?: MultiCurrencyPrice;
1601
1598
  }
1602
1599
  interface LineItemTax {
1603
1600
  /**