@wix/auto_sdk_restaurants_item-modifier-groups 1.0.65 → 1.0.67

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.
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../schemas.ts","../../src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.schemas.ts"],"sourcesContent":["export * from './src/restaurants-menus-v1-item-modifier-group-item-modifier-groups.schemas.js';\n","import * as z from 'zod';\n\nexport const CreateModifierGroupRequest = z.object({\n modifierGroup: z\n .object({\n _id: z\n .string()\n .describe('Modifier group ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the modifier group is updated. To prevent conflicting changes, the current revision must be passed when updating the modifier group. Ignored when creating a modifier group.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the modifier group was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the modifier group was updated.')\n .optional()\n .nullable(),\n name: z.string().describe('Modifier group name.').min(1).max(100),\n modifiers: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Item modifier ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n preSelected: z\n .boolean()\n .describe(\n 'Whether the item modifier is pre-selected.\\nDefault: `false`.'\n )\n .optional()\n .nullable(),\n additionalChargeInfo: z\n .object({\n additionalCharge: z\n .string()\n .describe(\n 'Additional charge for the item modifier. A value of `0` means the item modifier is free.'\n )\n .optional()\n .nullable(),\n })\n .describe('Item modifier price details.')\n .optional(),\n })\n )\n .min(0)\n .max(500)\n .optional(),\n rule: z\n .object({\n required: z\n .boolean()\n .describe(\n 'Whether the items from the modifier group must be selected.'\n )\n .optional()\n .nullable(),\n minSelections: z\n .number()\n .int()\n .describe(\n 'Minimum number of item modifiers a site visitor must select. The value must be lower or equal to the available item modifiers in the group.\\nDefault: `0`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n maxSelections: z\n .number()\n .int()\n .describe(\n 'Maximum number of item modifiers a site visitor may select. Must be greater than or equal to the value of `minSelections`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n })\n .describe('Modifier group details.')\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields.')\n .optional(),\n businessLocationIds: z.array(z.string()).max(100).optional(),\n })\n .describe('Modifier group details.'),\n});\nexport const CreateModifierGroupResponse = z.object({\n _id: z\n .string()\n .describe('Modifier group ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the modifier group is updated. To prevent conflicting changes, the current revision must be passed when updating the modifier group. Ignored when creating a modifier group.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the modifier group was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the modifier group was updated.')\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Modifier group name.')\n .min(1)\n .max(100)\n .optional()\n .nullable(),\n modifiers: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Item modifier ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n preSelected: z\n .boolean()\n .describe(\n 'Whether the item modifier is pre-selected.\\nDefault: `false`.'\n )\n .optional()\n .nullable(),\n additionalChargeInfo: z\n .object({\n additionalCharge: z\n .string()\n .describe(\n 'Additional charge for the item modifier. A value of `0` means the item modifier is free.'\n )\n .optional()\n .nullable(),\n })\n .describe('Item modifier price details.')\n .optional(),\n })\n )\n .min(0)\n .max(500)\n .optional(),\n rule: z\n .object({\n required: z\n .boolean()\n .describe('Whether the items from the modifier group must be selected.')\n .optional()\n .nullable(),\n minSelections: z\n .number()\n .int()\n .describe(\n 'Minimum number of item modifiers a site visitor must select. The value must be lower or equal to the available item modifiers in the group.\\nDefault: `0`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n maxSelections: z\n .number()\n .int()\n .describe(\n 'Maximum number of item modifiers a site visitor may select. Must be greater than or equal to the value of `minSelections`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n })\n .describe('Modifier group details.')\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields.')\n .optional(),\n businessLocationIds: z.array(z.string()).max(100).optional(),\n});\nexport const GetModifierGroupRequest = z.object({\n modifierGroupId: z\n .string()\n .describe('Modifier group ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n ),\n});\nexport const GetModifierGroupResponse = z.object({\n _id: z\n .string()\n .describe('Modifier group ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the modifier group is updated. To prevent conflicting changes, the current revision must be passed when updating the modifier group. Ignored when creating a modifier group.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the modifier group was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the modifier group was updated.')\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Modifier group name.')\n .min(1)\n .max(100)\n .optional()\n .nullable(),\n modifiers: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Item modifier ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n preSelected: z\n .boolean()\n .describe(\n 'Whether the item modifier is pre-selected.\\nDefault: `false`.'\n )\n .optional()\n .nullable(),\n additionalChargeInfo: z\n .object({\n additionalCharge: z\n .string()\n .describe(\n 'Additional charge for the item modifier. A value of `0` means the item modifier is free.'\n )\n .optional()\n .nullable(),\n })\n .describe('Item modifier price details.')\n .optional(),\n })\n )\n .min(0)\n .max(500)\n .optional(),\n rule: z\n .object({\n required: z\n .boolean()\n .describe('Whether the items from the modifier group must be selected.')\n .optional()\n .nullable(),\n minSelections: z\n .number()\n .int()\n .describe(\n 'Minimum number of item modifiers a site visitor must select. The value must be lower or equal to the available item modifiers in the group.\\nDefault: `0`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n maxSelections: z\n .number()\n .int()\n .describe(\n 'Maximum number of item modifiers a site visitor may select. Must be greater than or equal to the value of `minSelections`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n })\n .describe('Modifier group details.')\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields.')\n .optional(),\n businessLocationIds: z.array(z.string()).max(100).optional(),\n});\nexport const ListModifierGroupsRequest = z.object({\n options: z\n .object({\n modifierGroupIds: z.array(z.string()).max(500).optional(),\n paging: z\n .object({\n limit: z\n .number()\n .int()\n .describe('Number of items to load.')\n .min(0)\n .max(500)\n .optional()\n .nullable(),\n cursor: z\n .string()\n .describe(\n \"Pointer to the next or previous page in the list of results.\\n\\nYou can get the relevant cursor token\\nfrom the `pagingMetadata` object in the previous call's response.\\nNot relevant for the first request.\"\n )\n .optional()\n .nullable(),\n })\n .describe('The metadata of the paginated results.')\n .optional(),\n })\n .optional(),\n});\nexport const ListModifierGroupsResponse = z.object({\n modifierGroups: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Modifier group ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the modifier group is updated. To prevent conflicting changes, the current revision must be passed when updating the modifier group. Ignored when creating a modifier group.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the modifier group was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the modifier group was updated.')\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Modifier group name.')\n .min(1)\n .max(100)\n .optional()\n .nullable(),\n modifiers: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Item modifier ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n preSelected: z\n .boolean()\n .describe(\n 'Whether the item modifier is pre-selected.\\nDefault: `false`.'\n )\n .optional()\n .nullable(),\n additionalChargeInfo: z\n .object({\n additionalCharge: z\n .string()\n .describe(\n 'Additional charge for the item modifier. A value of `0` means the item modifier is free.'\n )\n .optional()\n .nullable(),\n })\n .describe('Item modifier price details.')\n .optional(),\n })\n )\n .min(0)\n .max(500)\n .optional(),\n rule: z\n .object({\n required: z\n .boolean()\n .describe(\n 'Whether the items from the modifier group must be selected.'\n )\n .optional()\n .nullable(),\n minSelections: z\n .number()\n .int()\n .describe(\n 'Minimum number of item modifiers a site visitor must select. The value must be lower or equal to the available item modifiers in the group.\\nDefault: `0`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n maxSelections: z\n .number()\n .int()\n .describe(\n 'Maximum number of item modifiers a site visitor may select. Must be greater than or equal to the value of `minSelections`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n })\n .describe('Modifier group details.')\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields.')\n .optional(),\n businessLocationIds: z.array(z.string()).max(100).optional(),\n })\n )\n .optional(),\n metadata: z\n .object({\n count: z\n .number()\n .int()\n .describe('Number of items returned in the response.')\n .optional()\n .nullable(),\n cursors: z\n .object({\n next: z\n .string()\n .describe('Cursor pointing to next page in the list of results.')\n .optional()\n .nullable(),\n prev: z\n .string()\n .describe(\n 'Cursor pointing to previous page in the list of results.'\n )\n .optional()\n .nullable(),\n })\n .describe('Offset that was requested.')\n .optional(),\n hasNext: z\n .boolean()\n .describe(\n 'Indicates if there are more results after the current page.\\nIf `true`, another page of results can be retrieved.\\nIf `false`, this is the last page.'\n )\n .optional()\n .nullable(),\n })\n .describe('The metadata of the paginated results.')\n .optional(),\n});\nexport const QueryModifierGroupsRequest = z.object({\n query: z\n .object({\n filter: z\n .object({\n _id: z\n .object({\n $eq: z.string(),\n $in: z.array(z.string()),\n $ne: z.string(),\n $nin: z.array(z.string()),\n })\n .partial()\n .strict()\n .optional(),\n _createdDate: z\n .object({\n $eq: z.string(),\n $gt: z.string(),\n $gte: z.string(),\n $lt: z.string(),\n $lte: z.string(),\n $ne: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n _updatedDate: z\n .object({\n $eq: z.string(),\n $gt: z.string(),\n $gte: z.string(),\n $lt: z.string(),\n $lte: z.string(),\n $ne: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n 'modifiers._id': z\n .object({\n $hasSome: z.array(z.string()),\n $in: z.array(z.string()),\n $nin: z.array(z.string()),\n })\n .partial()\n .strict()\n .optional(),\n 'modifiers.preSelected': z\n .object({ $eq: z.boolean(), $ne: z.boolean() })\n .partial()\n .strict()\n .optional(),\n 'rule.minSelections': z\n .object({ $eq: z.number(), $ne: z.number() })\n .partial()\n .strict()\n .optional(),\n 'rule.maxSelections': z\n .object({ $eq: z.number(), $ne: z.number() })\n .partial()\n .strict()\n .optional(),\n modifiers: z\n .object({ $exists: z.boolean() })\n .partial()\n .strict()\n .optional(),\n 'rule.required': z\n .object({\n $eq: z.boolean(),\n $in: z.array(z.boolean()),\n $ne: z.boolean(),\n $nin: z.array(z.boolean()),\n })\n .partial()\n .strict()\n .optional(),\n rule: z\n .object({ $exists: z.boolean() })\n .partial()\n .strict()\n .optional(),\n name: z\n .object({\n $eq: z.string(),\n $in: z.array(z.string()),\n $ne: z.string(),\n $nin: z.array(z.string()),\n $startsWith: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n $and: z.array(z.any()).optional(),\n $or: z.array(z.any()).optional(),\n $not: z.any().optional(),\n })\n .strict()\n .optional(),\n sort: z.array(z.object({})).optional(),\n })\n .catchall(z.any())\n .describe('Query options.'),\n});\nexport const QueryModifierGroupsResponse = z.object({\n modifierGroups: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Modifier group ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the modifier group is updated. To prevent conflicting changes, the current revision must be passed when updating the modifier group. Ignored when creating a modifier group.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the modifier group was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the modifier group was updated.')\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Modifier group name.')\n .min(1)\n .max(100)\n .optional()\n .nullable(),\n modifiers: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Item modifier ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n preSelected: z\n .boolean()\n .describe(\n 'Whether the item modifier is pre-selected.\\nDefault: `false`.'\n )\n .optional()\n .nullable(),\n additionalChargeInfo: z\n .object({\n additionalCharge: z\n .string()\n .describe(\n 'Additional charge for the item modifier. A value of `0` means the item modifier is free.'\n )\n .optional()\n .nullable(),\n })\n .describe('Item modifier price details.')\n .optional(),\n })\n )\n .min(0)\n .max(500)\n .optional(),\n rule: z\n .object({\n required: z\n .boolean()\n .describe(\n 'Whether the items from the modifier group must be selected.'\n )\n .optional()\n .nullable(),\n minSelections: z\n .number()\n .int()\n .describe(\n 'Minimum number of item modifiers a site visitor must select. The value must be lower or equal to the available item modifiers in the group.\\nDefault: `0`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n maxSelections: z\n .number()\n .int()\n .describe(\n 'Maximum number of item modifiers a site visitor may select. Must be greater than or equal to the value of `minSelections`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n })\n .describe('Modifier group details.')\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields.')\n .optional(),\n businessLocationIds: z.array(z.string()).max(100).optional(),\n })\n )\n .optional(),\n pagingMetadata: z\n .object({\n count: z\n .number()\n .int()\n .describe('Number of items returned in the response.')\n .optional()\n .nullable(),\n cursors: z\n .object({\n next: z\n .string()\n .describe('Cursor pointing to next page in the list of results.')\n .optional()\n .nullable(),\n prev: z\n .string()\n .describe(\n 'Cursor pointing to previous page in the list of results.'\n )\n .optional()\n .nullable(),\n })\n .describe('Offset that was requested.')\n .optional(),\n hasNext: z\n .boolean()\n .describe(\n 'Indicates if there are more results after the current page.\\nIf `true`, another page of results can be retrieved.\\nIf `false`, this is the last page.'\n )\n .optional()\n .nullable(),\n })\n .describe('Metadata of the paginated results.')\n .optional(),\n});\nexport const CountModifierGroupsRequest = z.object({\n options: z\n .object({\n filter: z\n .record(z.string(), z.any())\n .describe('Filter for counting modifier groups.')\n .optional()\n .nullable(),\n })\n .optional(),\n});\nexport const CountModifierGroupsResponse = z.object({\n count: z.number().int().describe('Counted modifier groups.').optional(),\n});\nexport const UpdateModifierGroupRequest = z.object({\n _id: z\n .string()\n .describe('Modifier group ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n ),\n modifierGroup: z\n .object({\n _id: z\n .string()\n .describe('Modifier group ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the modifier group is updated. To prevent conflicting changes, the current revision must be passed when updating the modifier group. Ignored when creating a modifier group.'\n ),\n _createdDate: z\n .date()\n .describe('Date and time the modifier group was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the modifier group was updated.')\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Modifier group name.')\n .min(1)\n .max(100)\n .optional()\n .nullable(),\n modifiers: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Item modifier ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n preSelected: z\n .boolean()\n .describe(\n 'Whether the item modifier is pre-selected.\\nDefault: `false`.'\n )\n .optional()\n .nullable(),\n additionalChargeInfo: z\n .object({\n additionalCharge: z\n .string()\n .describe(\n 'Additional charge for the item modifier. A value of `0` means the item modifier is free.'\n )\n .optional()\n .nullable(),\n })\n .describe('Item modifier price details.')\n .optional(),\n })\n )\n .min(0)\n .max(500)\n .optional(),\n rule: z\n .object({\n required: z\n .boolean()\n .describe(\n 'Whether the items from the modifier group must be selected.'\n )\n .optional()\n .nullable(),\n minSelections: z\n .number()\n .int()\n .describe(\n 'Minimum number of item modifiers a site visitor must select. The value must be lower or equal to the available item modifiers in the group.\\nDefault: `0`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n maxSelections: z\n .number()\n .int()\n .describe(\n 'Maximum number of item modifiers a site visitor may select. Must be greater than or equal to the value of `minSelections`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n })\n .describe('Modifier group details.')\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields.')\n .optional(),\n businessLocationIds: z.array(z.string()).max(100).optional(),\n })\n .describe('Modifier group to update.'),\n});\nexport const UpdateModifierGroupResponse = z.object({\n _id: z\n .string()\n .describe('Modifier group ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the modifier group is updated. To prevent conflicting changes, the current revision must be passed when updating the modifier group. Ignored when creating a modifier group.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the modifier group was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the modifier group was updated.')\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Modifier group name.')\n .min(1)\n .max(100)\n .optional()\n .nullable(),\n modifiers: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Item modifier ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n preSelected: z\n .boolean()\n .describe(\n 'Whether the item modifier is pre-selected.\\nDefault: `false`.'\n )\n .optional()\n .nullable(),\n additionalChargeInfo: z\n .object({\n additionalCharge: z\n .string()\n .describe(\n 'Additional charge for the item modifier. A value of `0` means the item modifier is free.'\n )\n .optional()\n .nullable(),\n })\n .describe('Item modifier price details.')\n .optional(),\n })\n )\n .min(0)\n .max(500)\n .optional(),\n rule: z\n .object({\n required: z\n .boolean()\n .describe('Whether the items from the modifier group must be selected.')\n .optional()\n .nullable(),\n minSelections: z\n .number()\n .int()\n .describe(\n 'Minimum number of item modifiers a site visitor must select. The value must be lower or equal to the available item modifiers in the group.\\nDefault: `0`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n maxSelections: z\n .number()\n .int()\n .describe(\n 'Maximum number of item modifiers a site visitor may select. Must be greater than or equal to the value of `minSelections`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n })\n .describe('Modifier group details.')\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields.')\n .optional(),\n businessLocationIds: z.array(z.string()).max(100).optional(),\n});\nexport const DeleteModifierGroupRequest = z.object({\n modifierGroupId: z\n .string()\n .describe('Modifier group ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n ),\n});\nexport const DeleteModifierGroupResponse = z.object({});\nexport const BulkCreateModifierGroupsRequest = z.object({\n modifierGroups: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Modifier group ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the modifier group is updated. To prevent conflicting changes, the current revision must be passed when updating the modifier group. Ignored when creating a modifier group.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the modifier group was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the modifier group was updated.')\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Modifier group name.')\n .min(1)\n .max(100)\n .optional()\n .nullable(),\n modifiers: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Item modifier ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n preSelected: z\n .boolean()\n .describe(\n 'Whether the item modifier is pre-selected.\\nDefault: `false`.'\n )\n .optional()\n .nullable(),\n additionalChargeInfo: z\n .object({\n additionalCharge: z\n .string()\n .describe(\n 'Additional charge for the item modifier. A value of `0` means the item modifier is free.'\n )\n .optional()\n .nullable(),\n })\n .describe('Item modifier price details.')\n .optional(),\n })\n )\n .min(0)\n .max(500)\n .optional(),\n rule: z\n .object({\n required: z\n .boolean()\n .describe(\n 'Whether the items from the modifier group must be selected.'\n )\n .optional()\n .nullable(),\n minSelections: z\n .number()\n .int()\n .describe(\n 'Minimum number of item modifiers a site visitor must select. The value must be lower or equal to the available item modifiers in the group.\\nDefault: `0`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n maxSelections: z\n .number()\n .int()\n .describe(\n 'Maximum number of item modifiers a site visitor may select. Must be greater than or equal to the value of `minSelections`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n })\n .describe('Modifier group details.')\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields.')\n .optional(),\n businessLocationIds: z.array(z.string()).max(100).optional(),\n })\n )\n .max(100),\n options: z\n .object({\n returnEntity: z\n .boolean()\n .describe(\n 'Whether to receive the created modifier groups in the response.'\n )\n .optional(),\n })\n .optional(),\n});\nexport const BulkCreateModifierGroupsResponse = z.object({\n results: z\n .array(\n z.object({\n itemMetadata: z\n .object({\n _id: z\n .string()\n .describe(\n \"Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).\"\n )\n .optional()\n .nullable(),\n originalIndex: z\n .number()\n .int()\n .describe(\n 'Index of the item within the request array. Allows for correlation between request and response items.'\n )\n .optional(),\n success: z\n .boolean()\n .describe(\n 'Whether the requested action was successful for this item. When `false`, the `error` field is populated.'\n )\n .optional(),\n error: z\n .object({\n code: z.string().describe('Error code.').optional(),\n description: z\n .string()\n .describe('Description of the error.')\n .optional(),\n data: z\n .record(z.string(), z.any())\n .describe('Data related to the error.')\n .optional()\n .nullable(),\n })\n .describe('Details about the error in case of failure.')\n .optional(),\n })\n .describe('Metadata for group modifier creation.')\n .optional(),\n modifierGroup: z\n .object({\n _id: z\n .string()\n .describe('Modifier group ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the modifier group is updated. To prevent conflicting changes, the current revision must be passed when updating the modifier group. Ignored when creating a modifier group.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the modifier group was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the modifier group was updated.')\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Modifier group name.')\n .min(1)\n .max(100)\n .optional()\n .nullable(),\n modifiers: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Item modifier ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n preSelected: z\n .boolean()\n .describe(\n 'Whether the item modifier is pre-selected.\\nDefault: `false`.'\n )\n .optional()\n .nullable(),\n additionalChargeInfo: z\n .object({\n additionalCharge: z\n .string()\n .describe(\n 'Additional charge for the item modifier. A value of `0` means the item modifier is free.'\n )\n .optional()\n .nullable(),\n })\n .describe('Item modifier price details.')\n .optional(),\n })\n )\n .min(0)\n .max(500)\n .optional(),\n rule: z\n .object({\n required: z\n .boolean()\n .describe(\n 'Whether the items from the modifier group must be selected.'\n )\n .optional()\n .nullable(),\n minSelections: z\n .number()\n .int()\n .describe(\n 'Minimum number of item modifiers a site visitor must select. The value must be lower or equal to the available item modifiers in the group.\\nDefault: `0`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n maxSelections: z\n .number()\n .int()\n .describe(\n 'Maximum number of item modifiers a site visitor may select. Must be greater than or equal to the value of `minSelections`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n })\n .describe('Modifier group details.')\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields.')\n .optional(),\n businessLocationIds: z.array(z.string()).max(100).optional(),\n })\n .describe('Created modifier group.')\n .optional(),\n })\n )\n .optional(),\n bulkActionMetadata: z\n .object({\n totalSuccesses: z\n .number()\n .int()\n .describe('Number of items that were successfully processed.')\n .optional(),\n totalFailures: z\n .number()\n .int()\n .describe(\"Number of items that couldn't be processed.\")\n .optional(),\n undetailedFailures: z\n .number()\n .int()\n .describe(\n 'Number of failures without details because detailed failure threshold was exceeded.'\n )\n .optional(),\n })\n .describe('Metadata for the API call.')\n .optional(),\n});\nexport const BulkUpdateModifierGroupsRequest = z.object({\n modifierGroups: z\n .array(\n z.object({\n modifierGroup: z\n .object({\n _id: z\n .string()\n .describe('Modifier group ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n ),\n revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the modifier group is updated. To prevent conflicting changes, the current revision must be passed when updating the modifier group. Ignored when creating a modifier group.'\n ),\n _createdDate: z\n .date()\n .describe('Date and time the modifier group was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the modifier group was updated.')\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Modifier group name.')\n .min(1)\n .max(100)\n .optional()\n .nullable(),\n modifiers: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Item modifier ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n preSelected: z\n .boolean()\n .describe(\n 'Whether the item modifier is pre-selected.\\nDefault: `false`.'\n )\n .optional()\n .nullable(),\n additionalChargeInfo: z\n .object({\n additionalCharge: z\n .string()\n .describe(\n 'Additional charge for the item modifier. A value of `0` means the item modifier is free.'\n )\n .optional()\n .nullable(),\n })\n .describe('Item modifier price details.')\n .optional(),\n })\n )\n .min(0)\n .max(500)\n .optional(),\n rule: z\n .object({\n required: z\n .boolean()\n .describe(\n 'Whether the items from the modifier group must be selected.'\n )\n .optional()\n .nullable(),\n minSelections: z\n .number()\n .int()\n .describe(\n 'Minimum number of item modifiers a site visitor must select. The value must be lower or equal to the available item modifiers in the group.\\nDefault: `0`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n maxSelections: z\n .number()\n .int()\n .describe(\n 'Maximum number of item modifiers a site visitor may select. Must be greater than or equal to the value of `minSelections`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n })\n .describe('Modifier group details.')\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields.')\n .optional(),\n businessLocationIds: z.array(z.string()).max(100).optional(),\n })\n .describe('Modifier group to update.')\n .optional(),\n mask: z.array(z.string()).optional(),\n })\n )\n .min(1)\n .max(100),\n options: z\n .object({\n returnEntity: z\n .boolean()\n .describe(\n 'Whether to receive the updated modifier groups in the response.'\n )\n .optional(),\n })\n .optional(),\n});\nexport const BulkUpdateModifierGroupsResponse = z.object({\n results: z\n .array(\n z.object({\n itemMetadata: z\n .object({\n _id: z\n .string()\n .describe(\n \"Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).\"\n )\n .optional()\n .nullable(),\n originalIndex: z\n .number()\n .int()\n .describe(\n 'Index of the item within the request array. Allows for correlation between request and response items.'\n )\n .optional(),\n success: z\n .boolean()\n .describe(\n 'Whether the requested action was successful for this item. When `false`, the `error` field is populated.'\n )\n .optional(),\n error: z\n .object({\n code: z.string().describe('Error code.').optional(),\n description: z\n .string()\n .describe('Description of the error.')\n .optional(),\n data: z\n .record(z.string(), z.any())\n .describe('Data related to the error.')\n .optional()\n .nullable(),\n })\n .describe('Details about the error in case of failure.')\n .optional(),\n })\n .describe('Metadata for group modifier update.')\n .optional(),\n modifierGroup: z\n .object({\n _id: z\n .string()\n .describe('Modifier group ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n revision: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Revision number, which increments by 1 each time the modifier group is updated. To prevent conflicting changes, the current revision must be passed when updating the modifier group. Ignored when creating a modifier group.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the modifier group was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the modifier group was updated.')\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Modifier group name.')\n .min(1)\n .max(100)\n .optional()\n .nullable(),\n modifiers: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Item modifier ID.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n preSelected: z\n .boolean()\n .describe(\n 'Whether the item modifier is pre-selected.\\nDefault: `false`.'\n )\n .optional()\n .nullable(),\n additionalChargeInfo: z\n .object({\n additionalCharge: z\n .string()\n .describe(\n 'Additional charge for the item modifier. A value of `0` means the item modifier is free.'\n )\n .optional()\n .nullable(),\n })\n .describe('Item modifier price details.')\n .optional(),\n })\n )\n .min(0)\n .max(500)\n .optional(),\n rule: z\n .object({\n required: z\n .boolean()\n .describe(\n 'Whether the items from the modifier group must be selected.'\n )\n .optional()\n .nullable(),\n minSelections: z\n .number()\n .int()\n .describe(\n 'Minimum number of item modifiers a site visitor must select. The value must be lower or equal to the available item modifiers in the group.\\nDefault: `0`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n maxSelections: z\n .number()\n .int()\n .describe(\n 'Maximum number of item modifiers a site visitor may select. Must be greater than or equal to the value of `minSelections`.'\n )\n .min(0)\n .max(25)\n .optional()\n .nullable(),\n })\n .describe('Modifier group details.')\n .optional(),\n extendedFields: z\n .object({\n namespaces: z\n .record(z.string(), z.record(z.string(), z.any()))\n .describe(\n 'Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\\nThe value of each key is structured according to the schema defined when the extended fields were configured.\\n\\nYou can only access fields for which you have the appropriate permissions.\\n\\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).'\n )\n .optional(),\n })\n .describe('Extended fields.')\n .optional(),\n businessLocationIds: z.array(z.string()).max(100).optional(),\n })\n .describe(\n 'Updated modifier group. Only returned if `returnEntity` is set to `true`.'\n )\n .optional(),\n })\n )\n .min(1)\n .max(100)\n .optional(),\n bulkActionMetadata: z\n .object({\n totalSuccesses: z\n .number()\n .int()\n .describe('Number of items that were successfully processed.')\n .optional(),\n totalFailures: z\n .number()\n .int()\n .describe(\"Number of items that couldn't be processed.\")\n .optional(),\n undetailedFailures: z\n .number()\n .int()\n .describe(\n 'Number of failures without details because detailed failure threshold was exceeded.'\n )\n .optional(),\n })\n .describe('Metadata for the API call.')\n .optional(),\n});\nexport const BulkDeleteModifierGroupsRequest = z.object({\n ids: z.array(z.string()).max(200),\n});\nexport const BulkDeleteModifierGroupsResponse = z.object({\n results: z\n .array(\n z.object({\n itemMetadata: z\n .object({\n _id: z\n .string()\n .describe(\n \"Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).\"\n )\n .optional()\n .nullable(),\n originalIndex: z\n .number()\n .int()\n .describe(\n 'Index of the item within the request array. Allows for correlation between request and response items.'\n )\n .optional(),\n success: z\n .boolean()\n .describe(\n 'Whether the requested action was successful for this item. When `false`, the `error` field is populated.'\n )\n .optional(),\n error: z\n .object({\n code: z.string().describe('Error code.').optional(),\n description: z\n .string()\n .describe('Description of the error.')\n .optional(),\n data: z\n .record(z.string(), z.any())\n .describe('Data related to the error.')\n .optional()\n .nullable(),\n })\n .describe('Details about the error in case of failure.')\n .optional(),\n })\n .describe('Metadata for group modifier deletion.')\n .optional(),\n })\n )\n .optional(),\n bulkActionMetadata: z\n .object({\n totalSuccesses: z\n .number()\n .int()\n .describe('Number of items that were successfully processed.')\n .optional(),\n totalFailures: z\n .number()\n .int()\n .describe(\"Number of items that couldn't be processed.\")\n .optional(),\n undetailedFailures: z\n .number()\n .int()\n .describe(\n 'Number of failures without details because detailed failure threshold was exceeded.'\n )\n .optional(),\n })\n .describe('Metadata for the API call.')\n .optional(),\n});\n"],"mappings":"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","names":[]}
@@ -646,7 +646,9 @@ async function typedQueryModifierGroups(query) {
646
646
  }
647
647
  }
648
648
  var utils = {
649
- ...createQueryUtils()
649
+ query: {
650
+ ...createQueryUtils()
651
+ }
650
652
  };
651
653
  async function countModifierGroups2(options) {
652
654
  const { httpClient, sideEffects } = arguments[1];