@wix/auto_sdk_ecom_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.
@@ -1635,15 +1635,15 @@ interface Tax {
1635
1635
  name?: TranslatableString;
1636
1636
  /** Amount for which tax is calculated. */
1637
1637
  taxableAmount?: MultiCurrencyPrice;
1638
+ /** Amount that is exempt from tax. */
1639
+ exemptAmount?: MultiCurrencyPrice;
1638
1640
  /**
1639
1641
  * Tax rate %, as a decimal point between 0 and 1.
1640
1642
  * @decimalValue options { gte:0, lte:1, maxScale:6 }
1641
1643
  */
1642
1644
  rate?: string | null;
1643
1645
  /** Calculated tax, based on `taxable_amount` and `rate`. */
1644
- totalTax?: MultiCurrencyPrice;
1645
- /** Amount that is exempt from tax. */
1646
- totalExemptAmount?: MultiCurrencyPrice;
1646
+ amount?: MultiCurrencyPrice;
1647
1647
  }
1648
1648
  interface LineItemTax {
1649
1649
  /**