@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.
@@ -1650,6 +1650,8 @@ interface V2TaxSummary {
1650
1650
  * @maxSize 100
1651
1651
  */
1652
1652
  taxes?: Tax[];
1653
+ /** Total amount exempt from tax. */
1654
+ totalExempt?: ConvertedMoney;
1653
1655
  /**
1654
1656
  * Indicates whether tax is already included in prices (line items, discounts, delivery, additional fess).
1655
1657
  * @readonly
@@ -1689,7 +1691,7 @@ interface LineItemTax {
1689
1691
  * @format GUID
1690
1692
  */
1691
1693
  lineItemId?: string;
1692
- /** Tax amount applied to the additional fee. */
1694
+ /** Tax amount applied to the line item. */
1693
1695
  tax?: ConvertedMoney;
1694
1696
  }
1695
1697
  interface AdditionalFeeTax {