@wix/auto_sdk_restaurants_item-modifiers 1.0.64 → 1.0.66

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.
@@ -836,7 +836,7 @@ interface ItemModifierUpdatedEnvelope {
836
836
  */
837
837
  declare function onItemModifierUpdated(handler: (event: ItemModifierUpdatedEnvelope) => void | Promise<void>): void;
838
838
  /**
839
- * > **Note:** The Item Modifiers API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
839
+ * > **Note:** The Item Modifiers API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
840
840
  *
841
841
  * Creates an item modifier.
842
842
  *
@@ -853,7 +853,7 @@ declare function onItemModifierUpdated(handler: (event: ItemModifierUpdatedEnvel
853
853
  */
854
854
  declare function createModifier(modifier: NonNullablePaths<Modifier, `name`, 2>): Promise<NonNullablePaths<Modifier, `businessLocationIds`, 2>>;
855
855
  /**
856
- * > **Note:** The Item Modifier API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
856
+ * > **Note:** The Item Modifier API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
857
857
  *
858
858
  * Retrieves an item modifier by ID.
859
859
  * @param modifierId - ID of the item modifier to retrieve.
@@ -867,7 +867,7 @@ declare function createModifier(modifier: NonNullablePaths<Modifier, `name`, 2>)
867
867
  */
868
868
  declare function getModifier(modifierId: string): Promise<NonNullablePaths<Modifier, `businessLocationIds`, 2>>;
869
869
  /**
870
- * > **Note:** The Item Modifier API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
870
+ * > **Note:** The Item Modifier API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
871
871
  *
872
872
  * Retrieves a list of up to 500 item modifiers.
873
873
  * @public
@@ -888,7 +888,7 @@ interface ListModifiersOptions {
888
888
  paging?: CursorPaging;
889
889
  }
890
890
  /**
891
- * > **Note:** The Item Modifier API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
891
+ * > **Note:** The Item Modifier API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
892
892
  *
893
893
  * Updates an item modifier.
894
894
  *
@@ -955,7 +955,7 @@ interface UpdateModifier {
955
955
  businessLocationIds?: string[];
956
956
  }
957
957
  /**
958
- * > **Note:** The Item Modifier API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
958
+ * > **Note:** The Item Modifier API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
959
959
  *
960
960
  * Creates multiple item modifiers.
961
961
  * @param modifiers - List of item modifiers to create.
@@ -975,7 +975,7 @@ interface BulkCreateModifiersOptions {
975
975
  returnEntity?: boolean;
976
976
  }
977
977
  /**
978
- * > **Note:** The Item modifier API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
978
+ * > **Note:** The Item modifier API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
979
979
  *
980
980
  * Updates multiple item modifiers at once.
981
981
  * Each time an item modifier is updated, its revision increments by 1. The existing revision must be included when updating the item modifier. This ensures you're working with the latest item modifier information, and prevents unintended overwrites.
@@ -993,7 +993,7 @@ interface BulkUpdateModifiersOptions {
993
993
  returnEntity?: boolean;
994
994
  }
995
995
  /**
996
- * > **Note:** The Item modifier API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
996
+ * > **Note:** The Item modifier API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
997
997
  * Deletes an item modifier.
998
998
  * @param modifierId - ID of the item modifier to delete.
999
999
  * @public
@@ -1152,7 +1152,7 @@ declare const utils: {
1152
1152
  };
1153
1153
  };
1154
1154
  /**
1155
- * > **Note:** The Item API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
1155
+ * > **Note:** The Item API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
1156
1156
  *
1157
1157
  * Retrieves the number of modifiers that match a specified filter.
1158
1158
  *
@@ -1171,7 +1171,7 @@ interface CountModifiersOptions {
1171
1171
  filter?: Record<string, any> | null;
1172
1172
  }
1173
1173
  /**
1174
- * > **Note:** The Item Modifier API only works with the Wix Restaurants Menus (New) app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
1174
+ * > **Note:** The Item Modifier API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
1175
1175
  *
1176
1176
  * Deletes multiple item Modifiers at once.
1177
1177
  * @param ids - Item Modifier IDs.