@wix/auto_sdk_ecom_current-cart 1.0.171 → 1.0.172
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
|
@@ -1851,6 +1851,13 @@ interface GiftCard {
|
|
|
1851
1851
|
externalId?: string | null;
|
|
1852
1852
|
/** Requested amount to redeem from the gift card. */
|
|
1853
1853
|
requestedAmount?: MultiCurrencyPrice;
|
|
1854
|
+
/**
|
|
1855
|
+
* Full gift card code. Echoed from the request input for correlation.
|
|
1856
|
+
* @internal
|
|
1857
|
+
* @minLength 8
|
|
1858
|
+
* @maxLength 20
|
|
1859
|
+
*/
|
|
1860
|
+
code?: string;
|
|
1854
1861
|
}
|
|
1855
1862
|
interface TaxSummary {
|
|
1856
1863
|
/**
|
|
@@ -2480,6 +2487,13 @@ interface GiftCardCalculationError {
|
|
|
2480
2487
|
obfuscatedCode?: string;
|
|
2481
2488
|
/** Error details. */
|
|
2482
2489
|
error?: Details;
|
|
2490
|
+
/**
|
|
2491
|
+
* Full gift card code. Echoed from the request input for correlation.
|
|
2492
|
+
* @internal
|
|
2493
|
+
* @minLength 8
|
|
2494
|
+
* @maxLength 20
|
|
2495
|
+
*/
|
|
2496
|
+
code?: string;
|
|
2483
2497
|
}
|
|
2484
2498
|
interface MembershipOptions {
|
|
2485
2499
|
/**
|