@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.
@@ -1603,7 +1603,7 @@ interface AdditionalFeeTax {
1603
1603
  interface PriceSummary {
1604
1604
  /**
1605
1605
  * Total price of all line items after applying item-level discounts.
1606
- * Before tax TODO: Change it to include tax if the 'prices_include_tax' flag is true.
1606
+ * Includes tax if `tax_summary.prices_include_tax` is true.
1607
1607
  */
1608
1608
  subtotal?: MultiCurrencyPrice;
1609
1609
  /**
@@ -1614,12 +1614,12 @@ interface PriceSummary {
1614
1614
  discount?: MultiCurrencyPrice;
1615
1615
  /**
1616
1616
  * Final delivery cost for the cart.
1617
- * Before tax TODO: Change it to include tax if the 'prices_include_tax' flag is true.
1617
+ * Includes tax if `tax_summary.prices_include_tax` is true.
1618
1618
  */
1619
1619
  delivery?: MultiCurrencyPrice;
1620
1620
  /**
1621
1621
  * Total additional fees associated with the cart.
1622
- * Before tax TODO: Change it to include tax if the 'prices_include_tax' flag is true.
1622
+ * Includes tax if `tax_summary.prices_include_tax` is true.
1623
1623
  */
1624
1624
  additionalFees?: MultiCurrencyPrice;
1625
1625
  /** Total tax amount calculated across all applicable components (items, discounts, delivery, and fees). */