@wix/auto_sdk_ecom_current-cart-v-2 1.0.13 → 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.
@@ -1587,15 +1587,15 @@ interface Tax {
1587
1587
  name?: TranslatableString;
1588
1588
  /** Amount for which tax is calculated. */
1589
1589
  taxableAmount?: MultiCurrencyPrice;
1590
+ /** Amount that is exempt from tax. */
1591
+ exemptAmount?: MultiCurrencyPrice;
1590
1592
  /**
1591
1593
  * Tax rate %, as a decimal point between 0 and 1.
1592
1594
  * @decimalValue options { gte:0, lte:1, maxScale:6 }
1593
1595
  */
1594
1596
  rate?: string | null;
1595
1597
  /** Calculated tax, based on `taxable_amount` and `rate`. */
1596
- totalTax?: MultiCurrencyPrice;
1597
- /** Amount that is exempt from tax. */
1598
- totalExemptAmount?: MultiCurrencyPrice;
1598
+ amount?: MultiCurrencyPrice;
1599
1599
  }
1600
1600
  interface LineItemTax {
1601
1601
  /**