@wix/auto_sdk_stores_customizations-v-3 1.0.56 → 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.
@@ -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 key generated based on choice name. Used for eCommerce integration.
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
@@ -1334,9 +1363,6 @@ declare function deleteCustomization(customizationId: string): Promise<void & {
1334
1363
  * - `createdDate` is sorted in `DESC` order
1335
1364
  * - `cursorPaging.limit` is `100`
1336
1365
  *
1337
- * For field support for filters and sorting,
1338
- * see [Customizations: Supported Filters and Sorting](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/customizations-v3/supported-filters-and-sorting).
1339
- *
1340
1366
  * To learn about working with _Query_ endpoints, see
1341
1367
  * [API Query Language](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language),
1342
1368
  * and [Sorting and Paging](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-sorting-and-paging).