@wix/auto_sdk_ecom_cart 1.0.74 → 1.0.75
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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +12 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +12 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1624,6 +1624,11 @@ interface TaxBreakdown {
|
|
|
1624
1624
|
taxName?: string | null;
|
|
1625
1625
|
/** The type of the jurisdiction in which this tax detail applies. */
|
|
1626
1626
|
jurisdictionType?: JurisdictionTypeWithLiterals;
|
|
1627
|
+
/**
|
|
1628
|
+
* The amount of this line item that was exempt from this authority.
|
|
1629
|
+
* @internal
|
|
1630
|
+
*/
|
|
1631
|
+
exemptAmount?: MultiCurrencyPrice;
|
|
1627
1632
|
}
|
|
1628
1633
|
/** JurisdictionType represents the type of the jurisdiction in which this tax detail applies (e.g. Country,State,County,City,Special). */
|
|
1629
1634
|
declare enum JurisdictionType {
|
|
@@ -1797,6 +1802,13 @@ interface AggregatedTaxBreakdown {
|
|
|
1797
1802
|
rate?: string;
|
|
1798
1803
|
/** The sum of all the tax from line items that calculated by the tax identifiers. */
|
|
1799
1804
|
aggregatedTaxAmount?: MultiCurrencyPrice;
|
|
1805
|
+
/** The sum of all the taxable amount from line items for tax identifiers. */
|
|
1806
|
+
aggregatedTaxableAmount?: MultiCurrencyPrice;
|
|
1807
|
+
/**
|
|
1808
|
+
* The aggregated exempt amount from all line items for tax identifiers.
|
|
1809
|
+
* @internal
|
|
1810
|
+
*/
|
|
1811
|
+
aggregatedExemptAmount?: MultiCurrencyPrice;
|
|
1800
1812
|
}
|
|
1801
1813
|
interface ShippingInformation {
|
|
1802
1814
|
/** Shipping region. */
|