@wix/auto_sdk_ecom_cart-v-2 1.0.5 → 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.
@@ -1546,9 +1546,6 @@ interface V2AdditionalFee {
1546
1546
  interface TaxSummary {
1547
1547
  /**
1548
1548
  * List of taxes applied to the cart.
1549
- * May contain multiple entries when advanced tax rates are configured by the merchant,
1550
- * or a single entry representing the total tax amount.
1551
- * For more details on advanced tax rates, read [this article](https://support.wix.com/en/article/setting-up-tax-calculation-using-the-manual-method#step-3-optional-customize-advanced-mode-settings).
1552
1549
  * @maxSize 100
1553
1550
  */
1554
1551
  taxes?: Tax[];
@@ -1579,7 +1576,7 @@ interface Tax {
1579
1576
  * Tax rate %, as a decimal point between 0 and 1.
1580
1577
  * @decimalValue options { gte:0, lte:1, maxScale:6 }
1581
1578
  */
1582
- rate?: string | null;
1579
+ rate?: string;
1583
1580
  /** Calculated tax, based on `taxable_amount` and `rate`. */
1584
1581
  totalTax?: MultiCurrencyPrice;
1585
1582
  }
@@ -1569,9 +1569,6 @@ interface V2AdditionalFee {
1569
1569
  interface TaxSummary {
1570
1570
  /**
1571
1571
  * List of taxes applied to the cart.
1572
- * May contain multiple entries when advanced tax rates are configured by the merchant,
1573
- * or a single entry representing the total tax amount.
1574
- * For more details on advanced tax rates, read [this article](https://support.wix.com/en/article/setting-up-tax-calculation-using-the-manual-method#step-3-optional-customize-advanced-mode-settings).
1575
1572
  * @maxSize 100
1576
1573
  */
1577
1574
  taxes?: Tax[];
@@ -1602,7 +1599,7 @@ interface Tax {
1602
1599
  * Tax rate %, as a decimal point between 0 and 1.
1603
1600
  * @decimalValue options { gte:0, lte:1, maxScale:6 }
1604
1601
  */
1605
- rate?: string | null;
1602
+ rate?: string;
1606
1603
  /** Calculated tax, based on `taxable_amount` and `rate`. */
1607
1604
  totalTax?: MultiCurrencyPrice;
1608
1605
  }