@wix/auto_sdk_ecom_current-cart-v-2 1.0.4 → 1.0.6

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.
@@ -1645,7 +1645,7 @@ interface AdditionalFeeTax {
1645
1645
  interface PriceSummary {
1646
1646
  /**
1647
1647
  * Total price of all line items after applying item-level discounts.
1648
- * Before tax TODO: Change it to include tax if the 'prices_include_tax' flag is true.
1648
+ * Includes tax if `tax_summary.prices_include_tax` is true.
1649
1649
  */
1650
1650
  subtotal?: MultiCurrencyPrice;
1651
1651
  /**
@@ -1656,12 +1656,12 @@ interface PriceSummary {
1656
1656
  discount?: MultiCurrencyPrice;
1657
1657
  /**
1658
1658
  * Final delivery cost for the cart.
1659
- * Before tax TODO: Change it to include tax if the 'prices_include_tax' flag is true.
1659
+ * Includes tax if `tax_summary.prices_include_tax` is true.
1660
1660
  */
1661
1661
  delivery?: MultiCurrencyPrice;
1662
1662
  /**
1663
1663
  * Total additional fees associated with the cart.
1664
- * Before tax TODO: Change it to include tax if the 'prices_include_tax' flag is true.
1664
+ * Includes tax if `tax_summary.prices_include_tax` is true.
1665
1665
  */
1666
1666
  additionalFees?: MultiCurrencyPrice;
1667
1667
  /** Total tax amount calculated across all applicable components (items, discounts, delivery, and fees). */