@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.
@@ -1586,15 +1586,15 @@ interface Tax {
1586
1586
  name?: TranslatableString;
1587
1587
  /** Amount for which tax is calculated. */
1588
1588
  taxableAmount?: MultiCurrencyPrice;
1589
+ /** Amount that is exempt from tax. */
1590
+ exemptAmount?: MultiCurrencyPrice;
1589
1591
  /**
1590
1592
  * Tax rate %, as a decimal point between 0 and 1.
1591
1593
  * @decimalValue options { gte:0, lte:1, maxScale:6 }
1592
1594
  */
1593
1595
  rate?: string | null;
1594
1596
  /** Calculated tax, based on `taxable_amount` and `rate`. */
1595
- totalTax?: MultiCurrencyPrice;
1596
- /** Amount that is exempt from tax. */
1597
- totalExemptAmount?: MultiCurrencyPrice;
1597
+ amount?: MultiCurrencyPrice;
1598
1598
  }
1599
1599
  interface LineItemTax {
1600
1600
  /**
@@ -1615,15 +1615,15 @@ interface Tax {
1615
1615
  name?: TranslatableString;
1616
1616
  /** Amount for which tax is calculated. */
1617
1617
  taxableAmount?: MultiCurrencyPrice;
1618
+ /** Amount that is exempt from tax. */
1619
+ exemptAmount?: MultiCurrencyPrice;
1618
1620
  /**
1619
1621
  * Tax rate %, as a decimal point between 0 and 1.
1620
1622
  * @decimalValue options { gte:0, lte:1, maxScale:6 }
1621
1623
  */
1622
1624
  rate?: string | null;
1623
1625
  /** Calculated tax, based on `taxable_amount` and `rate`. */
1624
- totalTax?: MultiCurrencyPrice;
1625
- /** Amount that is exempt from tax. */
1626
- totalExemptAmount?: MultiCurrencyPrice;
1626
+ amount?: MultiCurrencyPrice;
1627
1627
  }
1628
1628
  interface LineItemTax {
1629
1629
  /**