@wix/auto_sdk_ecom_checkout-templates 1.0.68 → 1.0.70
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 +15 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +15 -3
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +15 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +15 -3
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +31 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +15 -3
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +31 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +15 -3
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -766,7 +766,10 @@ interface Checkout {
|
|
|
766
766
|
/** Buyer information. */
|
|
767
767
|
buyerInfo?: BuyerInfo;
|
|
768
768
|
/**
|
|
769
|
-
* The currency selected by the
|
|
769
|
+
* The currency [selected by the customer](https://support.wix.com/en/article/multicurrency-an-overview) during the purchase flow, in three-letter [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
|
|
770
|
+
*
|
|
771
|
+
* This reflects the customer’s preferred display currency and may differ from the site’s default currency.
|
|
772
|
+
* When no specific currency is selected by the customer, this matches the `currency` property.
|
|
770
773
|
* @readonly
|
|
771
774
|
* @format CURRENCY
|
|
772
775
|
*/
|
|
@@ -806,7 +809,7 @@ interface Checkout {
|
|
|
806
809
|
*/
|
|
807
810
|
taxSummary?: TaxSummary;
|
|
808
811
|
/**
|
|
809
|
-
* The site
|
|
812
|
+
* The site’s default currency, in three-letter [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format. This represents the base currency configured for the site and remains constant regardless of the customer’s currency selection.
|
|
810
813
|
* @format CURRENCY
|
|
811
814
|
* @readonly
|
|
812
815
|
*/
|
|
@@ -929,7 +932,10 @@ interface Checkout {
|
|
|
929
932
|
*/
|
|
930
933
|
businessLocationId?: string | null;
|
|
931
934
|
/**
|
|
932
|
-
*
|
|
935
|
+
* The currency used for payment, in three-letter [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
|
|
936
|
+
*
|
|
937
|
+
* This is determined by the [customer's selected currency](https://support.wix.com/en/article/multicurrency-an-overview) and the site’s supported payment currencies.
|
|
938
|
+
* If the customer’s selected currency is supported for payment, this matches the `conversionCurrency` property. If not supported, this falls back to the `currency` property.
|
|
933
939
|
* @readonly
|
|
934
940
|
* @format CURRENCY
|
|
935
941
|
*/
|
|
@@ -1182,6 +1188,12 @@ interface ItemTaxFullDetails {
|
|
|
1182
1188
|
* @deprecated
|
|
1183
1189
|
*/
|
|
1184
1190
|
rateBreakdown?: TaxRateBreakdown[];
|
|
1191
|
+
/**
|
|
1192
|
+
* tax information for a line item.
|
|
1193
|
+
* @maxSize 1000
|
|
1194
|
+
* @readonly
|
|
1195
|
+
*/
|
|
1196
|
+
taxBreakdown?: TaxBreakdown[];
|
|
1185
1197
|
}
|
|
1186
1198
|
interface TaxRateBreakdown {
|
|
1187
1199
|
/**
|