@wix/auto_sdk_stores_customizations-v-3 1.0.48 → 1.0.50

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.
@@ -1281,7 +1281,9 @@ interface UpdateCustomizationOptions {
1281
1281
  /**
1282
1282
  * Deletes a customization.
1283
1283
  *
1284
- * > **Note:** A customization cannot be deleted if it is assigned to one or more products.
1284
+ * > **Notes:**
1285
+ * > + **Options** (customizations with `customizationType: PRODUCT_OPTION`) can't be deleted while assigned to any product because they affect product variants and inventory.
1286
+ * > + **Modifiers** can be deleted freely. When deleted, they are automatically removed from all products that reference them.
1285
1287
  * @param customizationId - Customization ID.
1286
1288
  * @public
1287
1289
  * @requiredField customizationId
@@ -1303,11 +1305,11 @@ declare function deleteCustomization(customizationId: string): Promise<void & {
1303
1305
  * - `cursorPaging.limit` is `100`
1304
1306
  *
1305
1307
  * For field support for filters and sorting,
1306
- * see [Customizations: Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-solutions/stores/catalog-v3/customizations-v3/supported-filters-and-sorting).
1308
+ * see [Customizations: Supported Filters and Sorting](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/customizations-v3/supported-filters-and-sorting).
1307
1309
  *
1308
1310
  * To learn about working with _Query_ endpoints, see
1309
- * [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language),
1310
- * and [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging).
1311
+ * [API Query Language](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language),
1312
+ * and [Sorting and Paging](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-sorting-and-paging).
1311
1313
  * @public
1312
1314
  * @permissionId WIX_STORES.CUSTOMIZATION_READ
1313
1315
  * @applicableIdentity APP
@@ -1449,7 +1451,7 @@ type CustomizationQuery = {
1449
1451
  }[];
1450
1452
  };
1451
1453
  /**
1452
- * Creates multiple brands.
1454
+ * Creates multiple customizations.
1453
1455
  * @param customizations - Customizations to create.
1454
1456
  * @public
1455
1457
  * @requiredField customizations
@@ -1522,7 +1524,7 @@ interface SetCustomizationChoicesOptions {
1522
1524
  /**
1523
1525
  * Removes choices from a customization.
1524
1526
  *
1525
- * +> **Note:** A choice cannot be removed if it is assigned to one or more products.
1527
+ * > **Note:** A choice can't be removed if it's assigned to one or more product variants. This applies to option choices only; modifier choices can be removed freely.
1526
1528
  * @param customizationId - Customization ID.
1527
1529
  * @param choiceIds - IDs of choices to remove.
1528
1530
  * @public