@wix/auto_sdk_ecom_checkout 1.0.156 → 1.0.157
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.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- 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 +14 -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 +14 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1746,6 +1746,13 @@ interface GiftCardCalculationError {
|
|
|
1746
1746
|
obfuscatedCode?: string;
|
|
1747
1747
|
/** Error details. */
|
|
1748
1748
|
error?: Details;
|
|
1749
|
+
/**
|
|
1750
|
+
* Full gift card code. Echoed from the request input for correlation.
|
|
1751
|
+
* @internal
|
|
1752
|
+
* @minLength 8
|
|
1753
|
+
* @maxLength 20
|
|
1754
|
+
*/
|
|
1755
|
+
code?: string;
|
|
1749
1756
|
}
|
|
1750
1757
|
interface GiftCard {
|
|
1751
1758
|
/**
|
|
@@ -1771,6 +1778,13 @@ interface GiftCard {
|
|
|
1771
1778
|
externalId?: string | null;
|
|
1772
1779
|
/** Requested amount to redeem from the gift card. */
|
|
1773
1780
|
requestedAmount?: MultiCurrencyPrice;
|
|
1781
|
+
/**
|
|
1782
|
+
* Full gift card code. Echoed from the request input for correlation.
|
|
1783
|
+
* @internal
|
|
1784
|
+
* @minLength 8
|
|
1785
|
+
* @maxLength 20
|
|
1786
|
+
*/
|
|
1787
|
+
code?: string;
|
|
1774
1788
|
}
|
|
1775
1789
|
interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
|
|
1776
1790
|
/** Coupon details. */
|