@wix/auto_sdk_ecom_cart-v-2 1.0.74 → 1.0.76

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.
@@ -1684,6 +1684,8 @@ interface V2TaxSummary {
1684
1684
  * @maxSize 100
1685
1685
  */
1686
1686
  taxes?: Tax[];
1687
+ /** Total amount exempt from tax. */
1688
+ totalExempt?: ConvertedMoney;
1687
1689
  /**
1688
1690
  * Indicates whether tax is already included in prices (line items, discounts, delivery, additional fess).
1689
1691
  * @readonly
@@ -1723,7 +1725,7 @@ interface LineItemTax {
1723
1725
  * @format GUID
1724
1726
  */
1725
1727
  lineItemId?: string;
1726
- /** Tax amount applied to the additional fee. */
1728
+ /** Tax amount applied to the line item. */
1727
1729
  tax?: ConvertedMoney;
1728
1730
  }
1729
1731
  interface AdditionalFeeTax {