@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.
@@ -1696,6 +1696,8 @@ interface V2TaxSummary {
1696
1696
  * @maxSize 100
1697
1697
  */
1698
1698
  taxes?: Tax[];
1699
+ /** Total amount exempt from tax. */
1700
+ totalExempt?: ConvertedMoney;
1699
1701
  /**
1700
1702
  * Indicates whether tax is already included in prices (line items, discounts, delivery, additional fess).
1701
1703
  * @readonly
@@ -1735,7 +1737,7 @@ interface LineItemTax {
1735
1737
  * @format GUID
1736
1738
  */
1737
1739
  lineItemId?: string;
1738
- /** Tax amount applied to the additional fee. */
1740
+ /** Tax amount applied to the line item. */
1739
1741
  tax?: ConvertedMoney;
1740
1742
  }
1741
1743
  interface AdditionalFeeTax {