@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.
@@ -766,7 +766,10 @@ interface Checkout {
766
766
  /** Buyer information. */
767
767
  buyerInfo?: BuyerInfo;
768
768
  /**
769
- * The currency selected by the buyer during the purchase flow, in three-letter [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
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's default currency, in three-letter [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
812
+ * The sites 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
- * Currency used for payment, in three-letter [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
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
  /**