@wix/auto_sdk_stores_customizations-v-3 1.0.57 → 1.0.58
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 +30 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +21 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +30 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +21 -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 +30 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +21 -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 +30 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +21 -1
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -44,6 +44,15 @@ interface Customization extends CustomizationCustomizationSettingsOneOf {
|
|
|
44
44
|
* @readonly
|
|
45
45
|
*/
|
|
46
46
|
_updatedDate?: Date | null;
|
|
47
|
+
/**
|
|
48
|
+
* A read-only identifier generated from the customization name.
|
|
49
|
+
*
|
|
50
|
+
* Use `key` in the `catalogReference.options` object when [integrating Catalog V3 with eCommerce APIs](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/e-commerce-integration).
|
|
51
|
+
* @readonly
|
|
52
|
+
* @minLength 1
|
|
53
|
+
* @maxLength 50
|
|
54
|
+
*/
|
|
55
|
+
key?: string | null;
|
|
47
56
|
/**
|
|
48
57
|
* Customization name for options (for example, `"color"`, `"size"`) and modifiers (for example, `"greeting card"`).
|
|
49
58
|
* @minLength 1
|
|
@@ -122,6 +131,15 @@ interface FreeTextSettings {
|
|
|
122
131
|
* @maxLength 100
|
|
123
132
|
*/
|
|
124
133
|
title?: string;
|
|
134
|
+
/**
|
|
135
|
+
* A read-only identifier generated from the title.
|
|
136
|
+
*
|
|
137
|
+
* Use `key` in the `catalogReference.options` object when [integrating Catalog V3 with eCommerce APIs](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/e-commerce-integration).
|
|
138
|
+
* @readonly
|
|
139
|
+
* @minLength 1
|
|
140
|
+
* @maxLength 150
|
|
141
|
+
*/
|
|
142
|
+
key?: string | null;
|
|
125
143
|
}
|
|
126
144
|
interface ChoicesSettings {
|
|
127
145
|
/**
|
|
@@ -156,7 +174,9 @@ interface Choice extends ChoiceValueOneOf {
|
|
|
156
174
|
*/
|
|
157
175
|
choiceType?: ChoiceTypeWithLiterals;
|
|
158
176
|
/**
|
|
159
|
-
* A read-only
|
|
177
|
+
* A read-only identifier generated from the choice name.
|
|
178
|
+
*
|
|
179
|
+
* Use `key` in the `catalogReference.options` object when [integrating Catalog V3 with eCommerce APIs](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/e-commerce-integration).
|
|
160
180
|
* @readonly
|
|
161
181
|
* @minLength 1
|
|
162
182
|
* @maxLength 50
|
|
@@ -1274,6 +1294,15 @@ interface UpdateCustomization {
|
|
|
1274
1294
|
* @readonly
|
|
1275
1295
|
*/
|
|
1276
1296
|
_updatedDate?: Date | null;
|
|
1297
|
+
/**
|
|
1298
|
+
* A read-only identifier generated from the customization name.
|
|
1299
|
+
*
|
|
1300
|
+
* Use `key` in the `catalogReference.options` object when [integrating Catalog V3 with eCommerce APIs](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/e-commerce-integration).
|
|
1301
|
+
* @readonly
|
|
1302
|
+
* @minLength 1
|
|
1303
|
+
* @maxLength 50
|
|
1304
|
+
*/
|
|
1305
|
+
key?: string | null;
|
|
1277
1306
|
/**
|
|
1278
1307
|
* Customization name for options (for example, `"color"`, `"size"`) and modifiers (for example, `"greeting card"`).
|
|
1279
1308
|
* @minLength 1
|