@wix/auto_sdk_ecom_checkout-templates 1.0.46 → 1.0.47
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 +6 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -0
- package/build/cjs/index.typings.js +6 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.js +6 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +6 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -0
- package/build/es/index.typings.mjs +6 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.mjs +6 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +6 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +1 -4
- package/build/internal/cjs/index.typings.js +6 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.js +6 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +6 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +1 -4
- package/build/internal/es/index.typings.mjs +6 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.mjs +6 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1864,6 +1864,8 @@ interface GiftCard {
|
|
|
1864
1864
|
* @maxLength 50
|
|
1865
1865
|
*/
|
|
1866
1866
|
externalId?: string | null;
|
|
1867
|
+
/** Requested amount to redeem from the gift card. */
|
|
1868
|
+
requestedAmount?: MultiCurrencyPrice;
|
|
1867
1869
|
}
|
|
1868
1870
|
interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
|
|
1869
1871
|
/** Coupon details. */
|
|
@@ -96,6 +96,12 @@ function resolveWixEcomCheckoutTemplateApiV1CheckoutTemplateServiceUrl(opts) {
|
|
|
96
96
|
srcPath: "/ecom/v1/checkout-templates",
|
|
97
97
|
destPath: "/v1/checkout-templates"
|
|
98
98
|
}
|
|
99
|
+
],
|
|
100
|
+
"api._api_base_domain_": [
|
|
101
|
+
{
|
|
102
|
+
srcPath: "/checkout-template",
|
|
103
|
+
destPath: ""
|
|
104
|
+
}
|
|
99
105
|
]
|
|
100
106
|
};
|
|
101
107
|
return (0, import_rest_modules2.resolveUrl)(Object.assign(opts, { domainToMappings }));
|