@wix/auto_sdk_ecom_checkout 1.0.155 → 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.d.ts +1 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -1
- 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 +15 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -1
- 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 +15 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1 -1
- package/build/internal/es/meta.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. */
|
|
@@ -2267,7 +2281,7 @@ interface Benefit extends BenefitQuotaOneOf {
|
|
|
2267
2281
|
* Identifier for this benefit. Must be unique within the response so the response-level `coverages`
|
|
2268
2282
|
* (`LineItemCoverage.benefit_id`) can reference it unambiguously across memberships/plans.
|
|
2269
2283
|
* @minLength 1
|
|
2270
|
-
* @maxLength
|
|
2284
|
+
* @maxLength 200
|
|
2271
2285
|
*/
|
|
2272
2286
|
benefitId?: string;
|
|
2273
2287
|
/**
|