@wix/auto_sdk_stores_customizations-v-3 1.0.80 → 1.0.81
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.d.ts +36 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +55 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +12 -2
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +166 -1
- package/build/cjs/schemas.js +314 -25
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.d.mts +36 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +55 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +12 -2
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +166 -1
- package/build/es/schemas.mjs +310 -25
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +0 -4
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +3 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +12 -2
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +166 -1
- package/build/internal/cjs/schemas.js +314 -25
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/index.d.mts +0 -4
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +3 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +12 -2
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +166 -1
- package/build/internal/es/schemas.mjs +310 -25
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -204,7 +204,6 @@ interface Choice extends ChoiceValueOneOf {
|
|
|
204
204
|
/**
|
|
205
205
|
* Optional image displayed alongside a ONE_COLOR choice in the storefront.
|
|
206
206
|
* Only valid for ONE_COLOR choices; not populated for other choice types.
|
|
207
|
-
* @internal
|
|
208
207
|
*/
|
|
209
208
|
displayImage?: string;
|
|
210
209
|
/**
|
|
@@ -456,12 +455,11 @@ declare enum RequestedFields {
|
|
|
456
455
|
/**
|
|
457
456
|
* Returns display images for choices.
|
|
458
457
|
* @documentationMaturity preview
|
|
459
|
-
* @internal
|
|
460
458
|
*/
|
|
461
459
|
CHOICE_DISPLAY_IMAGE = "CHOICE_DISPLAY_IMAGE"
|
|
462
460
|
}
|
|
463
461
|
/** @enumType */
|
|
464
|
-
type RequestedFieldsWithLiterals = RequestedFields | 'ASSIGNED_PRODUCTS_COUNT';
|
|
462
|
+
type RequestedFieldsWithLiterals = RequestedFields | 'ASSIGNED_PRODUCTS_COUNT' | 'CHOICE_DISPLAY_IMAGE';
|
|
465
463
|
interface GetCustomizationResponse {
|
|
466
464
|
/** Customization. */
|
|
467
465
|
customization?: Customization;
|
|
@@ -1882,7 +1880,7 @@ interface RemoveCustomizationChoicesOptions {
|
|
|
1882
1880
|
* @param revision - Revision number, which increments by 1 each time the customization is updated.
|
|
1883
1881
|
* To prevent conflicting changes,
|
|
1884
1882
|
* the current revision must be passed when updating the customization.
|
|
1885
|
-
* @
|
|
1883
|
+
* @public
|
|
1886
1884
|
* @documentationMaturity preview
|
|
1887
1885
|
* @requiredField customizationId
|
|
1888
1886
|
* @requiredField options.choices
|
|
@@ -1918,7 +1916,7 @@ interface UpdateCustomizationChoicesOptions {
|
|
|
1918
1916
|
* To control how choices are sorted in storefront filter panels, use [Update Customization](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/customizations-v3/update-customization) to set the `choicesSettings.sortOrder` field.
|
|
1919
1917
|
* @param customizationId - Customization ID.
|
|
1920
1918
|
* @param revision - Revision number, which increments by 1 each time the customization is updated. To prevent conflicting changes, the current revision must be passed when updating the customization.
|
|
1921
|
-
* @
|
|
1919
|
+
* @public
|
|
1922
1920
|
* @documentationMaturity preview
|
|
1923
1921
|
* @requiredField customizationId
|
|
1924
1922
|
* @requiredField options.choiceIds
|