@wix/auto_sdk_ecom_cart 1.0.75 → 1.0.77
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 +1 -1
- package/build/cjs/index.typings.js +6 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +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 +1 -1
- package/build/es/index.typings.mjs +6 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +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 -1
- package/build/internal/cjs/index.typings.js +6 -0
- 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 +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 -1
- package/build/internal/es/index.typings.mjs +6 -0
- 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 +6 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1951,7 +1951,7 @@ interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
|
|
|
1951
1951
|
* @format GUID
|
|
1952
1952
|
* @deprecated IDs of line items the discount applies to.
|
|
1953
1953
|
* @replacedBy line_items_discounts
|
|
1954
|
-
* @targetRemovalDate
|
|
1954
|
+
* @targetRemovalDate 2025-12-31
|
|
1955
1955
|
*/
|
|
1956
1956
|
lineItemIds?: string[];
|
|
1957
1957
|
}
|
|
@@ -172,6 +172,12 @@ function resolveComWixEcomCartApiV1CartServiceUrl(opts) {
|
|
|
172
172
|
srcPath: "/cart-v1-proxy",
|
|
173
173
|
destPath: ""
|
|
174
174
|
}
|
|
175
|
+
],
|
|
176
|
+
"ecom.wixapps.net": [
|
|
177
|
+
{
|
|
178
|
+
srcPath: "/_api/ecom-cart",
|
|
179
|
+
destPath: ""
|
|
180
|
+
}
|
|
175
181
|
]
|
|
176
182
|
};
|
|
177
183
|
return (0, import_rest_modules2.resolveUrl)(Object.assign(opts, { domainToMappings }));
|