@wix/auto_sdk_restaurants_sections 1.0.65 → 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.
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../schemas.ts","../../src/restaurants-menus-v1-section-sections.schemas.ts"],"sourcesContent":["export * from './src/restaurants-menus-v1-section-sections.schemas.js';\n","import * as z from 'zod';\n\nexport const DuplicateSectionRequest = z.object({\n _id: z\n .string()\n .describe('ID of the section to be duplicated.')\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 options: z\n .object({\n businessLocationIds: z.array(z.string()).max(100).optional(),\n duplicateSubEntities: z\n .boolean()\n .describe(\n \"Whether to duplicate the section's sub-entities, such as its items.\\n\\nDefault: `false`\"\n )\n .optional()\n .nullable(),\n })\n .optional(),\n});\nexport const DuplicateSectionResponse = z.object({\n sectionId: z.array(z.string()).optional(),\n});\nexport const CreateSectionRequest = z.object({\n section: z\n .object({\n _id: z\n .string()\n .describe('Section 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 section is updated. To prevent conflicting changes, the current revision must be passed when updating the section. Ignored when creating a section.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the section was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the section was updated.')\n .optional()\n .nullable(),\n name: z.string().describe('Section name.').min(1).max(500).optional(),\n description: z\n .string()\n .describe('Section description.')\n .max(1500)\n .optional()\n .nullable(),\n image: z.string().describe('Main section image.').optional(),\n additionalImages: z.array(z.string()).max(100).optional(),\n itemIds: z.array(z.string()).max(300).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 visible: z\n .boolean()\n .describe(\n 'Whether the section is visible in the menu for site visitors.'\n )\n .optional()\n .nullable(),\n businessLocationId: z\n .string()\n .describe(\n 'ID of the business location ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations)) where this section is available.'\n )\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 })\n .describe('Section details.'),\n});\nexport const CreateSectionResponse = z.object({\n _id: z\n .string()\n .describe('Section 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 section is updated. To prevent conflicting changes, the current revision must be passed when updating the section. Ignored when creating a section.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the section was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the section was updated.')\n .optional()\n .nullable(),\n name: z.string().describe('Section name.').min(1).max(500).optional(),\n description: z\n .string()\n .describe('Section description.')\n .max(1500)\n .optional()\n .nullable(),\n image: z.string().describe('Main section image.').optional(),\n additionalImages: z.array(z.string()).max(100).optional(),\n itemIds: z.array(z.string()).max(300).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 visible: z\n .boolean()\n .describe('Whether the section is visible in the menu for site visitors.')\n .optional()\n .nullable(),\n businessLocationId: z\n .string()\n .describe(\n 'ID of the business location ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations)) where this section is available.'\n )\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});\nexport const BulkCreateSectionsRequest = z.object({\n sections: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Section 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 section is updated. To prevent conflicting changes, the current revision must be passed when updating the section. Ignored when creating a section.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the section was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the section was updated.')\n .optional()\n .nullable(),\n name: z.string().describe('Section name.').min(1).max(500).optional(),\n description: z\n .string()\n .describe('Section description.')\n .max(1500)\n .optional()\n .nullable(),\n image: z.string().describe('Main section image.').optional(),\n additionalImages: z.array(z.string()).max(100).optional(),\n itemIds: z.array(z.string()).max(300).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 visible: z\n .boolean()\n .describe(\n 'Whether the section is visible in the menu for site visitors.'\n )\n .optional()\n .nullable(),\n businessLocationId: z\n .string()\n .describe(\n 'ID of the business location ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations)) where this section is available.'\n )\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 })\n )\n .max(100),\n options: z\n .object({\n returnEntity: z\n .boolean()\n .describe('Whether to receive the created sections in the response.')\n .optional(),\n })\n .optional(),\n});\nexport const BulkCreateSectionsResponse = 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 created sections.')\n .optional(),\n item: z\n .object({\n _id: z\n .string()\n .describe('Section 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 section is updated. To prevent conflicting changes, the current revision must be passed when updating the section. Ignored when creating a section.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the section was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the section was updated.')\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Section name.')\n .min(1)\n .max(500)\n .optional(),\n description: z\n .string()\n .describe('Section description.')\n .max(1500)\n .optional()\n .nullable(),\n image: z.string().describe('Main section image.').optional(),\n additionalImages: z.array(z.string()).max(100).optional(),\n itemIds: z.array(z.string()).max(300).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 visible: z\n .boolean()\n .describe(\n 'Whether the section is visible in the menu for site visitors.'\n )\n .optional()\n .nullable(),\n businessLocationId: z\n .string()\n .describe(\n 'ID of the business location ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations)) where this section is available.'\n )\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 })\n .describe(\n 'Created section. Only returned if `returnEntity` is set to `true`.'\n )\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 GetSectionRequest = z.object({\n sectionId: z\n .string()\n .describe('Section 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 GetSectionResponse = z.object({\n _id: z\n .string()\n .describe('Section 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 section is updated. To prevent conflicting changes, the current revision must be passed when updating the section. Ignored when creating a section.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the section was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the section was updated.')\n .optional()\n .nullable(),\n name: z.string().describe('Section name.').min(1).max(500).optional(),\n description: z\n .string()\n .describe('Section description.')\n .max(1500)\n .optional()\n .nullable(),\n image: z.string().describe('Main section image.').optional(),\n additionalImages: z.array(z.string()).max(100).optional(),\n itemIds: z.array(z.string()).max(300).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 visible: z\n .boolean()\n .describe('Whether the section is visible in the menu for site visitors.')\n .optional()\n .nullable(),\n businessLocationId: z\n .string()\n .describe(\n 'ID of the business location ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations)) where this section is available.'\n )\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});\nexport const ListSectionsRequest = z.object({\n options: z\n .object({\n sectionIds: 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 onlyVisible: z\n .boolean()\n .describe(\n 'Whether to return only sections that are visible to site visitors.'\n )\n .optional()\n .nullable(),\n })\n .optional(),\n});\nexport const ListSectionsResponse = z.object({\n sections: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Section 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 section is updated. To prevent conflicting changes, the current revision must be passed when updating the section. Ignored when creating a section.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the section was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the section was updated.')\n .optional()\n .nullable(),\n name: z.string().describe('Section name.').min(1).max(500).optional(),\n description: z\n .string()\n .describe('Section description.')\n .max(1500)\n .optional()\n .nullable(),\n image: z.string().describe('Main section image.').optional(),\n additionalImages: z.array(z.string()).max(100).optional(),\n itemIds: z.array(z.string()).max(300).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 visible: z\n .boolean()\n .describe(\n 'Whether the section is visible in the menu for site visitors.'\n )\n .optional()\n .nullable(),\n businessLocationId: z\n .string()\n .describe(\n 'ID of the business location ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations)) where this section is available.'\n )\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 })\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('The metadata of the paginated results.')\n .optional(),\n});\nexport const QuerySectionsRequest = z.object({\n query: z\n .object({\n filter: z\n .object({\n image: z\n .object({ $exists: z.boolean() })\n .partial()\n .strict()\n .optional(),\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 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 description: 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 itemIds: z\n .object({ $exists: z.boolean(), $hasSome: z.array(z.string()) })\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 $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 QuerySectionsResponse = z.object({\n sections: z\n .array(\n z.object({\n _id: z\n .string()\n .describe('Section 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 section is updated. To prevent conflicting changes, the current revision must be passed when updating the section. Ignored when creating a section.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the section was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the section was updated.')\n .optional()\n .nullable(),\n name: z.string().describe('Section name.').min(1).max(500).optional(),\n description: z\n .string()\n .describe('Section description.')\n .max(1500)\n .optional()\n .nullable(),\n image: z.string().describe('Main section image.').optional(),\n additionalImages: z.array(z.string()).max(100).optional(),\n itemIds: z.array(z.string()).max(300).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 visible: z\n .boolean()\n .describe(\n 'Whether the section is visible in the menu for site visitors.'\n )\n .optional()\n .nullable(),\n businessLocationId: z\n .string()\n .describe(\n 'ID of the business location ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations)) where this section is available.'\n )\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 })\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('The metadata of the paginated results.')\n .optional(),\n});\nexport const UpdateSectionRequest = z.object({\n _id: z\n .string()\n .describe('Section 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 section: z\n .object({\n _id: z\n .string()\n .describe('Section 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 section is updated. To prevent conflicting changes, the current revision must be passed when updating the section. Ignored when creating a section.'\n ),\n _createdDate: z\n .date()\n .describe('Date and time the section was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the section was updated.')\n .optional()\n .nullable(),\n name: z.string().describe('Section name.').min(1).max(500).optional(),\n description: z\n .string()\n .describe('Section description.')\n .max(1500)\n .optional()\n .nullable(),\n image: z.string().describe('Main section image.').optional(),\n additionalImages: z.array(z.string()).max(100).optional(),\n itemIds: z.array(z.string()).max(300).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 visible: z\n .boolean()\n .describe(\n 'Whether the section is visible in the menu for site visitors.'\n )\n .optional()\n .nullable(),\n businessLocationId: z\n .string()\n .describe(\n 'ID of the business location ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations)) where this section is available.'\n )\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 })\n .describe('Section update.'),\n});\nexport const UpdateSectionResponse = z.object({\n _id: z\n .string()\n .describe('Section 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 section is updated. To prevent conflicting changes, the current revision must be passed when updating the section. Ignored when creating a section.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the section was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the section was updated.')\n .optional()\n .nullable(),\n name: z.string().describe('Section name.').min(1).max(500).optional(),\n description: z\n .string()\n .describe('Section description.')\n .max(1500)\n .optional()\n .nullable(),\n image: z.string().describe('Main section image.').optional(),\n additionalImages: z.array(z.string()).max(100).optional(),\n itemIds: z.array(z.string()).max(300).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 visible: z\n .boolean()\n .describe('Whether the section is visible in the menu for site visitors.')\n .optional()\n .nullable(),\n businessLocationId: z\n .string()\n .describe(\n 'ID of the business location ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations)) where this section is available.'\n )\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});\nexport const BulkUpdateSectionRequest = z.object({\n sections: z\n .array(\n z.object({\n section: z\n .object({\n _id: z\n .string()\n .describe('Section 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 section is updated. To prevent conflicting changes, the current revision must be passed when updating the section. Ignored when creating a section.'\n ),\n _createdDate: z\n .date()\n .describe('Date and time the section was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the section was updated.')\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Section name.')\n .min(1)\n .max(500)\n .optional(),\n description: z\n .string()\n .describe('Section description.')\n .max(1500)\n .optional()\n .nullable(),\n image: z.string().describe('Main section image.').optional(),\n additionalImages: z.array(z.string()).max(100).optional(),\n itemIds: z.array(z.string()).max(300).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 visible: z\n .boolean()\n .describe(\n 'Whether the section is visible in the menu for site visitors.'\n )\n .optional()\n .nullable(),\n businessLocationId: z\n .string()\n .describe(\n 'ID of the business location ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations)) where this section is available.'\n )\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 })\n .describe('Section 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('Whether to receive the updated sections in the response.')\n .optional(),\n })\n .optional(),\n});\nexport const BulkUpdateSectionResponse = z.object({\n results: z\n .array(\n z.object({\n sectionMetadata: 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('Whether to receive the updated sections in the response.')\n .optional(),\n section: z\n .object({\n _id: z\n .string()\n .describe('Section 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 section is updated. To prevent conflicting changes, the current revision must be passed when updating the section. Ignored when creating a section.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the section was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the section was updated.')\n .optional()\n .nullable(),\n name: z\n .string()\n .describe('Section name.')\n .min(1)\n .max(500)\n .optional(),\n description: z\n .string()\n .describe('Section description.')\n .max(1500)\n .optional()\n .nullable(),\n image: z.string().describe('Main section image.').optional(),\n additionalImages: z.array(z.string()).max(100).optional(),\n itemIds: z.array(z.string()).max(300).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 visible: z\n .boolean()\n .describe(\n 'Whether the section is visible in the menu for site visitors.'\n )\n .optional()\n .nullable(),\n businessLocationId: z\n .string()\n .describe(\n 'ID of the business location ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations)) where this section is available.'\n )\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 })\n .describe(\n 'Updated section. 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 DeleteSectionRequest = z.object({\n sectionId: z\n .string()\n .describe('Section 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 DeleteSectionResponse = z.object({});\nexport const BulkDeleteSectionsRequest = z.object({ ids: z.array(z.string()) });\nexport const BulkDeleteSectionsResponse = 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 deleted sections.')\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":[]}
@@ -0,0 +1,358 @@
1
+ import * as z from 'zod';
2
+
3
+ declare const DuplicateSectionRequest: z.ZodObject<{
4
+ _id: z.ZodString;
5
+ options: z.ZodOptional<z.ZodObject<{
6
+ businessLocationIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
7
+ duplicateSubEntities: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
8
+ }, z.core.$strip>>;
9
+ }, z.core.$strip>;
10
+ declare const DuplicateSectionResponse: z.ZodObject<{
11
+ sectionId: z.ZodOptional<z.ZodArray<z.ZodString>>;
12
+ }, z.core.$strip>;
13
+ declare const CreateSectionRequest: z.ZodObject<{
14
+ section: z.ZodObject<{
15
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
16
+ revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
17
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
18
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
19
+ name: z.ZodOptional<z.ZodString>;
20
+ description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
21
+ image: z.ZodOptional<z.ZodString>;
22
+ additionalImages: z.ZodOptional<z.ZodArray<z.ZodString>>;
23
+ itemIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
24
+ extendedFields: z.ZodOptional<z.ZodObject<{
25
+ namespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
26
+ }, z.core.$strip>>;
27
+ visible: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
28
+ businessLocationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
29
+ }, z.core.$strip>;
30
+ }, z.core.$strip>;
31
+ declare const CreateSectionResponse: z.ZodObject<{
32
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
33
+ revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
34
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
35
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
36
+ name: z.ZodOptional<z.ZodString>;
37
+ description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
38
+ image: z.ZodOptional<z.ZodString>;
39
+ additionalImages: z.ZodOptional<z.ZodArray<z.ZodString>>;
40
+ itemIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
41
+ extendedFields: z.ZodOptional<z.ZodObject<{
42
+ namespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
43
+ }, z.core.$strip>>;
44
+ visible: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
45
+ businessLocationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
46
+ }, z.core.$strip>;
47
+ declare const BulkCreateSectionsRequest: z.ZodObject<{
48
+ sections: z.ZodArray<z.ZodObject<{
49
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
50
+ revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
51
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
52
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
53
+ name: z.ZodOptional<z.ZodString>;
54
+ description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
55
+ image: z.ZodOptional<z.ZodString>;
56
+ additionalImages: z.ZodOptional<z.ZodArray<z.ZodString>>;
57
+ itemIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
58
+ extendedFields: z.ZodOptional<z.ZodObject<{
59
+ namespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
60
+ }, z.core.$strip>>;
61
+ visible: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
62
+ businessLocationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
63
+ }, z.core.$strip>>;
64
+ options: z.ZodOptional<z.ZodObject<{
65
+ returnEntity: z.ZodOptional<z.ZodBoolean>;
66
+ }, z.core.$strip>>;
67
+ }, z.core.$strip>;
68
+ declare const BulkCreateSectionsResponse: z.ZodObject<{
69
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
70
+ itemMetadata: z.ZodOptional<z.ZodObject<{
71
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
72
+ originalIndex: z.ZodOptional<z.ZodNumber>;
73
+ success: z.ZodOptional<z.ZodBoolean>;
74
+ error: z.ZodOptional<z.ZodObject<{
75
+ code: z.ZodOptional<z.ZodString>;
76
+ description: z.ZodOptional<z.ZodString>;
77
+ data: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
78
+ }, z.core.$strip>>;
79
+ }, z.core.$strip>>;
80
+ item: z.ZodOptional<z.ZodObject<{
81
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
82
+ revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
83
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
84
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
85
+ name: z.ZodOptional<z.ZodString>;
86
+ description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
87
+ image: z.ZodOptional<z.ZodString>;
88
+ additionalImages: z.ZodOptional<z.ZodArray<z.ZodString>>;
89
+ itemIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
90
+ extendedFields: z.ZodOptional<z.ZodObject<{
91
+ namespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
92
+ }, z.core.$strip>>;
93
+ visible: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
94
+ businessLocationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
95
+ }, z.core.$strip>>;
96
+ }, z.core.$strip>>>;
97
+ bulkActionMetadata: z.ZodOptional<z.ZodObject<{
98
+ totalSuccesses: z.ZodOptional<z.ZodNumber>;
99
+ totalFailures: z.ZodOptional<z.ZodNumber>;
100
+ undetailedFailures: z.ZodOptional<z.ZodNumber>;
101
+ }, z.core.$strip>>;
102
+ }, z.core.$strip>;
103
+ declare const GetSectionRequest: z.ZodObject<{
104
+ sectionId: z.ZodString;
105
+ }, z.core.$strip>;
106
+ declare const GetSectionResponse: z.ZodObject<{
107
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
108
+ revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
109
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
110
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
111
+ name: z.ZodOptional<z.ZodString>;
112
+ description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
113
+ image: z.ZodOptional<z.ZodString>;
114
+ additionalImages: z.ZodOptional<z.ZodArray<z.ZodString>>;
115
+ itemIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
116
+ extendedFields: z.ZodOptional<z.ZodObject<{
117
+ namespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
118
+ }, z.core.$strip>>;
119
+ visible: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
120
+ businessLocationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
121
+ }, z.core.$strip>;
122
+ declare const ListSectionsRequest: z.ZodObject<{
123
+ options: z.ZodOptional<z.ZodObject<{
124
+ sectionIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
125
+ paging: z.ZodOptional<z.ZodObject<{
126
+ limit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
127
+ cursor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
128
+ }, z.core.$strip>>;
129
+ onlyVisible: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
130
+ }, z.core.$strip>>;
131
+ }, z.core.$strip>;
132
+ declare const ListSectionsResponse: z.ZodObject<{
133
+ sections: z.ZodOptional<z.ZodArray<z.ZodObject<{
134
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
135
+ revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
136
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
137
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
138
+ name: z.ZodOptional<z.ZodString>;
139
+ description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
140
+ image: z.ZodOptional<z.ZodString>;
141
+ additionalImages: z.ZodOptional<z.ZodArray<z.ZodString>>;
142
+ itemIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
143
+ extendedFields: z.ZodOptional<z.ZodObject<{
144
+ namespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
145
+ }, z.core.$strip>>;
146
+ visible: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
147
+ businessLocationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
148
+ }, z.core.$strip>>>;
149
+ pagingMetadata: z.ZodOptional<z.ZodObject<{
150
+ count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
151
+ cursors: z.ZodOptional<z.ZodObject<{
152
+ next: z.ZodNullable<z.ZodOptional<z.ZodString>>;
153
+ prev: z.ZodNullable<z.ZodOptional<z.ZodString>>;
154
+ }, z.core.$strip>>;
155
+ hasNext: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
156
+ }, z.core.$strip>>;
157
+ }, z.core.$strip>;
158
+ declare const QuerySectionsRequest: z.ZodObject<{
159
+ query: z.ZodObject<{
160
+ filter: z.ZodOptional<z.ZodObject<{
161
+ image: z.ZodOptional<z.ZodObject<{
162
+ $exists: z.ZodOptional<z.ZodBoolean>;
163
+ }, z.core.$strict>>;
164
+ _id: z.ZodOptional<z.ZodObject<{
165
+ $eq: z.ZodOptional<z.ZodString>;
166
+ $in: z.ZodOptional<z.ZodArray<z.ZodString>>;
167
+ $ne: z.ZodOptional<z.ZodString>;
168
+ $nin: z.ZodOptional<z.ZodArray<z.ZodString>>;
169
+ }, z.core.$strict>>;
170
+ name: z.ZodOptional<z.ZodObject<{
171
+ $eq: z.ZodOptional<z.ZodString>;
172
+ $in: z.ZodOptional<z.ZodArray<z.ZodString>>;
173
+ $ne: z.ZodOptional<z.ZodString>;
174
+ $nin: z.ZodOptional<z.ZodArray<z.ZodString>>;
175
+ $startsWith: z.ZodOptional<z.ZodString>;
176
+ }, z.core.$strict>>;
177
+ description: z.ZodOptional<z.ZodObject<{
178
+ $eq: z.ZodOptional<z.ZodString>;
179
+ $in: z.ZodOptional<z.ZodArray<z.ZodString>>;
180
+ $ne: z.ZodOptional<z.ZodString>;
181
+ $nin: z.ZodOptional<z.ZodArray<z.ZodString>>;
182
+ $startsWith: z.ZodOptional<z.ZodString>;
183
+ }, z.core.$strict>>;
184
+ itemIds: z.ZodOptional<z.ZodObject<{
185
+ $exists: z.ZodOptional<z.ZodBoolean>;
186
+ $hasSome: z.ZodOptional<z.ZodArray<z.ZodString>>;
187
+ }, z.core.$strict>>;
188
+ _createdDate: z.ZodOptional<z.ZodObject<{
189
+ $eq: z.ZodOptional<z.ZodString>;
190
+ $gt: z.ZodOptional<z.ZodString>;
191
+ $gte: z.ZodOptional<z.ZodString>;
192
+ $lt: z.ZodOptional<z.ZodString>;
193
+ $lte: z.ZodOptional<z.ZodString>;
194
+ $ne: z.ZodOptional<z.ZodString>;
195
+ }, z.core.$strict>>;
196
+ _updatedDate: z.ZodOptional<z.ZodObject<{
197
+ $eq: z.ZodOptional<z.ZodString>;
198
+ $gt: z.ZodOptional<z.ZodString>;
199
+ $gte: z.ZodOptional<z.ZodString>;
200
+ $lt: z.ZodOptional<z.ZodString>;
201
+ $lte: z.ZodOptional<z.ZodString>;
202
+ $ne: z.ZodOptional<z.ZodString>;
203
+ }, z.core.$strict>>;
204
+ $and: z.ZodOptional<z.ZodArray<z.ZodAny>>;
205
+ $or: z.ZodOptional<z.ZodArray<z.ZodAny>>;
206
+ $not: z.ZodOptional<z.ZodAny>;
207
+ }, z.core.$strict>>;
208
+ sort: z.ZodOptional<z.ZodArray<z.ZodObject<{}, z.core.$strip>>>;
209
+ }, z.core.$catchall<z.ZodAny>>;
210
+ }, z.core.$strip>;
211
+ declare const QuerySectionsResponse: z.ZodObject<{
212
+ sections: z.ZodOptional<z.ZodArray<z.ZodObject<{
213
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
214
+ revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
215
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
216
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
217
+ name: z.ZodOptional<z.ZodString>;
218
+ description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
219
+ image: z.ZodOptional<z.ZodString>;
220
+ additionalImages: z.ZodOptional<z.ZodArray<z.ZodString>>;
221
+ itemIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
222
+ extendedFields: z.ZodOptional<z.ZodObject<{
223
+ namespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
224
+ }, z.core.$strip>>;
225
+ visible: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
226
+ businessLocationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
227
+ }, z.core.$strip>>>;
228
+ pagingMetadata: z.ZodOptional<z.ZodObject<{
229
+ count: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
230
+ cursors: z.ZodOptional<z.ZodObject<{
231
+ next: z.ZodNullable<z.ZodOptional<z.ZodString>>;
232
+ prev: z.ZodNullable<z.ZodOptional<z.ZodString>>;
233
+ }, z.core.$strip>>;
234
+ hasNext: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
235
+ }, z.core.$strip>>;
236
+ }, z.core.$strip>;
237
+ declare const UpdateSectionRequest: z.ZodObject<{
238
+ _id: z.ZodString;
239
+ section: z.ZodObject<{
240
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
241
+ revision: z.ZodString;
242
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
243
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
244
+ name: z.ZodOptional<z.ZodString>;
245
+ description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
246
+ image: z.ZodOptional<z.ZodString>;
247
+ additionalImages: z.ZodOptional<z.ZodArray<z.ZodString>>;
248
+ itemIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
249
+ extendedFields: z.ZodOptional<z.ZodObject<{
250
+ namespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
251
+ }, z.core.$strip>>;
252
+ visible: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
253
+ businessLocationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
254
+ }, z.core.$strip>;
255
+ }, z.core.$strip>;
256
+ declare const UpdateSectionResponse: z.ZodObject<{
257
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
258
+ revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
259
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
260
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
261
+ name: z.ZodOptional<z.ZodString>;
262
+ description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
263
+ image: z.ZodOptional<z.ZodString>;
264
+ additionalImages: z.ZodOptional<z.ZodArray<z.ZodString>>;
265
+ itemIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
266
+ extendedFields: z.ZodOptional<z.ZodObject<{
267
+ namespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
268
+ }, z.core.$strip>>;
269
+ visible: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
270
+ businessLocationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
271
+ }, z.core.$strip>;
272
+ declare const BulkUpdateSectionRequest: z.ZodObject<{
273
+ sections: z.ZodArray<z.ZodObject<{
274
+ section: z.ZodOptional<z.ZodObject<{
275
+ _id: z.ZodString;
276
+ revision: z.ZodString;
277
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
278
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
279
+ name: z.ZodOptional<z.ZodString>;
280
+ description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
281
+ image: z.ZodOptional<z.ZodString>;
282
+ additionalImages: z.ZodOptional<z.ZodArray<z.ZodString>>;
283
+ itemIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
284
+ extendedFields: z.ZodOptional<z.ZodObject<{
285
+ namespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
286
+ }, z.core.$strip>>;
287
+ visible: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
288
+ businessLocationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
289
+ }, z.core.$strip>>;
290
+ mask: z.ZodOptional<z.ZodArray<z.ZodString>>;
291
+ }, z.core.$strip>>;
292
+ options: z.ZodOptional<z.ZodObject<{
293
+ returnEntity: z.ZodOptional<z.ZodBoolean>;
294
+ }, z.core.$strip>>;
295
+ }, z.core.$strip>;
296
+ declare const BulkUpdateSectionResponse: z.ZodObject<{
297
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
298
+ sectionMetadata: z.ZodOptional<z.ZodObject<{
299
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
300
+ originalIndex: z.ZodOptional<z.ZodNumber>;
301
+ success: z.ZodOptional<z.ZodBoolean>;
302
+ error: z.ZodOptional<z.ZodObject<{
303
+ code: z.ZodOptional<z.ZodString>;
304
+ description: z.ZodOptional<z.ZodString>;
305
+ data: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
306
+ }, z.core.$strip>>;
307
+ }, z.core.$strip>>;
308
+ section: z.ZodOptional<z.ZodObject<{
309
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
310
+ revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
311
+ _createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
312
+ _updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
313
+ name: z.ZodOptional<z.ZodString>;
314
+ description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
315
+ image: z.ZodOptional<z.ZodString>;
316
+ additionalImages: z.ZodOptional<z.ZodArray<z.ZodString>>;
317
+ itemIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
318
+ extendedFields: z.ZodOptional<z.ZodObject<{
319
+ namespaces: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
320
+ }, z.core.$strip>>;
321
+ visible: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
322
+ businessLocationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
323
+ }, z.core.$strip>>;
324
+ }, z.core.$strip>>>;
325
+ bulkActionMetadata: z.ZodOptional<z.ZodObject<{
326
+ totalSuccesses: z.ZodOptional<z.ZodNumber>;
327
+ totalFailures: z.ZodOptional<z.ZodNumber>;
328
+ undetailedFailures: z.ZodOptional<z.ZodNumber>;
329
+ }, z.core.$strip>>;
330
+ }, z.core.$strip>;
331
+ declare const DeleteSectionRequest: z.ZodObject<{
332
+ sectionId: z.ZodString;
333
+ }, z.core.$strip>;
334
+ declare const DeleteSectionResponse: z.ZodObject<{}, z.core.$strip>;
335
+ declare const BulkDeleteSectionsRequest: z.ZodObject<{
336
+ ids: z.ZodArray<z.ZodString>;
337
+ }, z.core.$strip>;
338
+ declare const BulkDeleteSectionsResponse: z.ZodObject<{
339
+ results: z.ZodOptional<z.ZodArray<z.ZodObject<{
340
+ itemMetadata: z.ZodOptional<z.ZodObject<{
341
+ _id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
342
+ originalIndex: z.ZodOptional<z.ZodNumber>;
343
+ success: z.ZodOptional<z.ZodBoolean>;
344
+ error: z.ZodOptional<z.ZodObject<{
345
+ code: z.ZodOptional<z.ZodString>;
346
+ description: z.ZodOptional<z.ZodString>;
347
+ data: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
348
+ }, z.core.$strip>>;
349
+ }, z.core.$strip>>;
350
+ }, z.core.$strip>>>;
351
+ bulkActionMetadata: z.ZodOptional<z.ZodObject<{
352
+ totalSuccesses: z.ZodOptional<z.ZodNumber>;
353
+ totalFailures: z.ZodOptional<z.ZodNumber>;
354
+ undetailedFailures: z.ZodOptional<z.ZodNumber>;
355
+ }, z.core.$strip>>;
356
+ }, z.core.$strip>;
357
+
358
+ export { BulkCreateSectionsRequest, BulkCreateSectionsResponse, BulkDeleteSectionsRequest, BulkDeleteSectionsResponse, BulkUpdateSectionRequest, BulkUpdateSectionResponse, CreateSectionRequest, CreateSectionResponse, DeleteSectionRequest, DeleteSectionResponse, DuplicateSectionRequest, DuplicateSectionResponse, GetSectionRequest, GetSectionResponse, ListSectionsRequest, ListSectionsResponse, QuerySectionsRequest, QuerySectionsResponse, UpdateSectionRequest, UpdateSectionResponse };