@wix/auto_sdk_faq_question-entry 1.0.42 → 1.0.43

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.
Files changed (50) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +72 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +99 -3
  5. package/build/cjs/index.typings.js +63 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +99 -3
  8. package/build/cjs/meta.js +63 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/schemas.d.ts +631 -0
  11. package/build/cjs/schemas.js +1064 -0
  12. package/build/cjs/schemas.js.map +1 -0
  13. package/build/es/index.d.mts +1 -1
  14. package/build/es/index.mjs +70 -0
  15. package/build/es/index.mjs.map +1 -1
  16. package/build/es/index.typings.d.mts +99 -3
  17. package/build/es/index.typings.mjs +61 -0
  18. package/build/es/index.typings.mjs.map +1 -1
  19. package/build/es/meta.d.mts +99 -3
  20. package/build/es/meta.mjs +61 -0
  21. package/build/es/meta.mjs.map +1 -1
  22. package/build/es/schemas.d.mts +631 -0
  23. package/build/es/schemas.mjs +1008 -0
  24. package/build/es/schemas.mjs.map +1 -0
  25. package/build/internal/cjs/index.d.ts +1 -1
  26. package/build/internal/cjs/index.js +72 -0
  27. package/build/internal/cjs/index.js.map +1 -1
  28. package/build/internal/cjs/index.typings.d.ts +99 -3
  29. package/build/internal/cjs/index.typings.js +63 -0
  30. package/build/internal/cjs/index.typings.js.map +1 -1
  31. package/build/internal/cjs/meta.d.ts +99 -3
  32. package/build/internal/cjs/meta.js +63 -0
  33. package/build/internal/cjs/meta.js.map +1 -1
  34. package/build/internal/cjs/schemas.d.ts +631 -0
  35. package/build/internal/cjs/schemas.js +1064 -0
  36. package/build/internal/cjs/schemas.js.map +1 -0
  37. package/build/internal/es/index.d.mts +1 -1
  38. package/build/internal/es/index.mjs +70 -0
  39. package/build/internal/es/index.mjs.map +1 -1
  40. package/build/internal/es/index.typings.d.mts +99 -3
  41. package/build/internal/es/index.typings.mjs +61 -0
  42. package/build/internal/es/index.typings.mjs.map +1 -1
  43. package/build/internal/es/meta.d.mts +99 -3
  44. package/build/internal/es/meta.mjs +61 -0
  45. package/build/internal/es/meta.mjs.map +1 -1
  46. package/build/internal/es/schemas.d.mts +631 -0
  47. package/build/internal/es/schemas.mjs +1008 -0
  48. package/build/internal/es/schemas.mjs.map +1 -0
  49. package/package.json +12 -5
  50. package/schemas/package.json +3 -0
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../schemas.ts","../../src/faq-question-entry-v2-question-entry-question-entry.schemas.ts"],"sourcesContent":["export * from './src/faq-question-entry-v2-question-entry-question-entry.schemas.js';\n","import * as z from 'zod';\n\nexport const CreateQuestionEntryRequest = z.object({\n questionEntry: z\n .intersection(\n z.object({\n _id: z\n .string()\n .describe('Question entry 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 a question entry is updated.\\nTo prevent conflicting changes,\\nthe current revision must be specified when updating the question entry.\\n\\nIgnored when creating a question entry.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the question entry was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the question entry was last updated.')\n .optional()\n .nullable(),\n question: z\n .string()\n .describe('Question text displayed to site visitors.')\n .max(1000),\n labels: z\n .array(\n z.object({\n title: z\n .string()\n .describe('Label name.')\n .min(1)\n .max(36)\n .optional(),\n sortOrder: z\n .number()\n .describe('Order of the question entry within the label.')\n .optional()\n .nullable(),\n })\n )\n .max(100)\n .optional(),\n sortOrder: z\n .number()\n .describe(\n 'Order of the question entry within its category. Lower values appear first.'\n )\n .optional()\n .nullable(),\n categoryId: z\n .string()\n .describe(\n 'ID of the category that this question entry belongs to.\\nEach question entry must be assigned to exactly one category.'\n )\n .min(1)\n .max(50)\n .optional()\n .nullable(),\n slug: z\n .string()\n .describe(\n 'URL slug generated from the question text for SEO-friendly URLs.'\n )\n .max(100)\n .optional()\n .nullable(),\n shareLink: z\n .string()\n .describe('Direct link to this specific question entry for sharing.')\n .url()\n .optional()\n .nullable(),\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(\n 'Custom field data for the `questionEntry` object.\\n\\n[Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls.'\n )\n .optional(),\n }),\n z.xor([\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n }),\n z.object({\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n draftjs: z\n .string()\n .describe('Answer in [Draft.js](https://draftjs.org/) format.')\n .min(1)\n .max(100000),\n }),\n z.object({\n draftjs: z.never().optional(),\n plainText: z.never().optional(),\n richContent: z\n .any()\n .describe('Answer in [rich content](https://ricos.dev/) format.'),\n }),\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z\n .string()\n .describe('Answer in plain text format.')\n .min(1)\n .max(10000),\n }),\n ])\n )\n .describe('Question entry to create.'),\n});\nexport const CreateQuestionEntryResponse = z.intersection(\n z.object({\n _id: z\n .string()\n .describe('Question entry 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 a question entry is updated.\\nTo prevent conflicting changes,\\nthe current revision must be specified when updating the question entry.\\n\\nIgnored when creating a question entry.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the question entry was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the question entry was last updated.')\n .optional()\n .nullable(),\n question: z\n .string()\n .describe('Question text displayed to site visitors.')\n .max(1000)\n .optional()\n .nullable(),\n labels: z\n .array(\n z.object({\n title: z.string().describe('Label name.').min(1).max(36).optional(),\n sortOrder: z\n .number()\n .describe('Order of the question entry within the label.')\n .optional()\n .nullable(),\n })\n )\n .max(100)\n .optional(),\n sortOrder: z\n .number()\n .describe(\n 'Order of the question entry within its category. Lower values appear first.'\n )\n .optional()\n .nullable(),\n categoryId: z\n .string()\n .describe(\n 'ID of the category that this question entry belongs to.\\nEach question entry must be assigned to exactly one category.'\n )\n .min(1)\n .max(50)\n .optional()\n .nullable(),\n slug: z\n .string()\n .describe(\n 'URL slug generated from the question text for SEO-friendly URLs.'\n )\n .max(100)\n .optional()\n .nullable(),\n shareLink: z\n .string()\n .describe('Direct link to this specific question entry for sharing.')\n .url()\n .optional()\n .nullable(),\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(\n 'Custom field data for the `questionEntry` object.\\n\\n[Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls.'\n )\n .optional(),\n }),\n z.xor([\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n }),\n z.object({\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n draftjs: z\n .string()\n .describe('Answer in [Draft.js](https://draftjs.org/) format.')\n .min(1)\n .max(100000),\n }),\n z.object({\n draftjs: z.never().optional(),\n plainText: z.never().optional(),\n richContent: z\n .any()\n .describe('Answer in [rich content](https://ricos.dev/) format.'),\n }),\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z\n .string()\n .describe('Answer in plain text format.')\n .min(1)\n .max(10000),\n }),\n ])\n);\nexport const GetQuestionEntryRequest = z.object({\n questionEntryId: z\n .string()\n .describe('ID of the question entry to retrieve.')\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 GetQuestionEntryResponse = z.intersection(\n z.object({\n _id: z\n .string()\n .describe('Question entry 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 a question entry is updated.\\nTo prevent conflicting changes,\\nthe current revision must be specified when updating the question entry.\\n\\nIgnored when creating a question entry.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the question entry was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the question entry was last updated.')\n .optional()\n .nullable(),\n question: z\n .string()\n .describe('Question text displayed to site visitors.')\n .max(1000)\n .optional()\n .nullable(),\n labels: z\n .array(\n z.object({\n title: z.string().describe('Label name.').min(1).max(36).optional(),\n sortOrder: z\n .number()\n .describe('Order of the question entry within the label.')\n .optional()\n .nullable(),\n })\n )\n .max(100)\n .optional(),\n sortOrder: z\n .number()\n .describe(\n 'Order of the question entry within its category. Lower values appear first.'\n )\n .optional()\n .nullable(),\n categoryId: z\n .string()\n .describe(\n 'ID of the category that this question entry belongs to.\\nEach question entry must be assigned to exactly one category.'\n )\n .min(1)\n .max(50)\n .optional()\n .nullable(),\n slug: z\n .string()\n .describe(\n 'URL slug generated from the question text for SEO-friendly URLs.'\n )\n .max(100)\n .optional()\n .nullable(),\n shareLink: z\n .string()\n .describe('Direct link to this specific question entry for sharing.')\n .url()\n .optional()\n .nullable(),\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(\n 'Custom field data for the `questionEntry` object.\\n\\n[Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls.'\n )\n .optional(),\n }),\n z.xor([\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n }),\n z.object({\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n draftjs: z\n .string()\n .describe('Answer in [Draft.js](https://draftjs.org/) format.')\n .min(1)\n .max(100000),\n }),\n z.object({\n draftjs: z.never().optional(),\n plainText: z.never().optional(),\n richContent: z\n .any()\n .describe('Answer in [rich content](https://ricos.dev/) format.'),\n }),\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z\n .string()\n .describe('Answer in plain text format.')\n .min(1)\n .max(10000),\n }),\n ])\n);\nexport const UpdateQuestionEntryRequest = z.object({\n _id: z\n .string()\n .describe('Question entry 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 questionEntry: z\n .intersection(\n z.object({\n _id: z\n .string()\n .describe('Question entry 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 a question entry is updated.\\nTo prevent conflicting changes,\\nthe current revision must be specified when updating the question entry.\\n\\nIgnored when creating a question entry.'\n ),\n _createdDate: z\n .date()\n .describe('Date and time the question entry was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the question entry was last updated.')\n .optional()\n .nullable(),\n question: z\n .string()\n .describe('Question text displayed to site visitors.')\n .max(1000)\n .optional()\n .nullable(),\n labels: z\n .array(\n z.object({\n title: z\n .string()\n .describe('Label name.')\n .min(1)\n .max(36)\n .optional(),\n sortOrder: z\n .number()\n .describe('Order of the question entry within the label.')\n .optional()\n .nullable(),\n })\n )\n .max(100)\n .optional(),\n sortOrder: z\n .number()\n .describe(\n 'Order of the question entry within its category. Lower values appear first.'\n )\n .optional()\n .nullable(),\n categoryId: z\n .string()\n .describe(\n 'ID of the category that this question entry belongs to.\\nEach question entry must be assigned to exactly one category.'\n )\n .min(1)\n .max(50)\n .optional()\n .nullable(),\n slug: z\n .string()\n .describe(\n 'URL slug generated from the question text for SEO-friendly URLs.'\n )\n .max(100)\n .optional()\n .nullable(),\n shareLink: z\n .string()\n .describe('Direct link to this specific question entry for sharing.')\n .url()\n .optional()\n .nullable(),\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(\n 'Custom field data for the `questionEntry` object.\\n\\n[Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls.'\n )\n .optional(),\n }),\n z.xor([\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n }),\n z.object({\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n draftjs: z\n .string()\n .describe('Answer in [Draft.js](https://draftjs.org/) format.')\n .min(1)\n .max(100000),\n }),\n z.object({\n draftjs: z.never().optional(),\n plainText: z.never().optional(),\n richContent: z\n .any()\n .describe('Answer in [rich content](https://ricos.dev/) format.'),\n }),\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z\n .string()\n .describe('Answer in plain text format.')\n .min(1)\n .max(10000),\n }),\n ])\n )\n .describe(\n 'Question entry to update. Include only the fields you want to modify.'\n ),\n});\nexport const UpdateQuestionEntryResponse = z.intersection(\n z.object({\n _id: z\n .string()\n .describe('Question entry 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 a question entry is updated.\\nTo prevent conflicting changes,\\nthe current revision must be specified when updating the question entry.\\n\\nIgnored when creating a question entry.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the question entry was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the question entry was last updated.')\n .optional()\n .nullable(),\n question: z\n .string()\n .describe('Question text displayed to site visitors.')\n .max(1000)\n .optional()\n .nullable(),\n labels: z\n .array(\n z.object({\n title: z.string().describe('Label name.').min(1).max(36).optional(),\n sortOrder: z\n .number()\n .describe('Order of the question entry within the label.')\n .optional()\n .nullable(),\n })\n )\n .max(100)\n .optional(),\n sortOrder: z\n .number()\n .describe(\n 'Order of the question entry within its category. Lower values appear first.'\n )\n .optional()\n .nullable(),\n categoryId: z\n .string()\n .describe(\n 'ID of the category that this question entry belongs to.\\nEach question entry must be assigned to exactly one category.'\n )\n .min(1)\n .max(50)\n .optional()\n .nullable(),\n slug: z\n .string()\n .describe(\n 'URL slug generated from the question text for SEO-friendly URLs.'\n )\n .max(100)\n .optional()\n .nullable(),\n shareLink: z\n .string()\n .describe('Direct link to this specific question entry for sharing.')\n .url()\n .optional()\n .nullable(),\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(\n 'Custom field data for the `questionEntry` object.\\n\\n[Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls.'\n )\n .optional(),\n }),\n z.xor([\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n }),\n z.object({\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n draftjs: z\n .string()\n .describe('Answer in [Draft.js](https://draftjs.org/) format.')\n .min(1)\n .max(100000),\n }),\n z.object({\n draftjs: z.never().optional(),\n plainText: z.never().optional(),\n richContent: z\n .any()\n .describe('Answer in [rich content](https://ricos.dev/) format.'),\n }),\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z\n .string()\n .describe('Answer in plain text format.')\n .min(1)\n .max(10000),\n }),\n ])\n);\nexport const DeleteQuestionEntryRequest = z.object({\n questionEntryId: z\n .string()\n .describe('ID of the question entry to delete.')\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 DeleteQuestionEntryResponse = z.object({});\nexport const ListQuestionEntriesRequest = z.object({\n options: z\n .object({\n categoryId: z\n .string()\n .describe('ID of the category to filter question entries by.')\n .min(1)\n .max(50)\n .optional()\n .nullable(),\n questionEntryIds: z.array(z.string()).max(100).optional(),\n questionEntryLabel: z\n .string()\n .describe('Label name to filter question entries by.')\n .min(1)\n .max(36)\n .optional()\n .nullable(),\n paging: z\n .object({\n limit: z\n .number()\n .int()\n .describe('Maximum number of items to return in the results.')\n .min(0)\n .max(100)\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\\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\\nNot relevant for the first request.\"\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Pagination settings. Not required if specific question entry IDs are provided.'\n )\n .optional(),\n contentFormat: z\n .enum(['DRAFTJS', 'PLAIN_TEXT', 'RICH_CONTENT'])\n .optional(),\n fieldSet: z\n .array(z.enum(['UNKNOWN', 'SHARE_LINKS']))\n .max(100)\n .optional(),\n })\n .optional(),\n});\nexport const ListQuestionEntriesResponse = z.object({\n questionEntries: z\n .array(\n z.intersection(\n z.object({\n _id: z\n .string()\n .describe('Question entry 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 a question entry is updated.\\nTo prevent conflicting changes,\\nthe current revision must be specified when updating the question entry.\\n\\nIgnored when creating a question entry.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the question entry was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the question entry was last updated.')\n .optional()\n .nullable(),\n question: z\n .string()\n .describe('Question text displayed to site visitors.')\n .max(1000)\n .optional()\n .nullable(),\n labels: z\n .array(\n z.object({\n title: z\n .string()\n .describe('Label name.')\n .min(1)\n .max(36)\n .optional(),\n sortOrder: z\n .number()\n .describe('Order of the question entry within the label.')\n .optional()\n .nullable(),\n })\n )\n .max(100)\n .optional(),\n sortOrder: z\n .number()\n .describe(\n 'Order of the question entry within its category. Lower values appear first.'\n )\n .optional()\n .nullable(),\n categoryId: z\n .string()\n .describe(\n 'ID of the category that this question entry belongs to.\\nEach question entry must be assigned to exactly one category.'\n )\n .min(1)\n .max(50)\n .optional()\n .nullable(),\n slug: z\n .string()\n .describe(\n 'URL slug generated from the question text for SEO-friendly URLs.'\n )\n .max(100)\n .optional()\n .nullable(),\n shareLink: z\n .string()\n .describe(\n 'Direct link to this specific question entry for sharing.'\n )\n .url()\n .optional()\n .nullable(),\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(\n 'Custom field data for the `questionEntry` object.\\n\\n[Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls.'\n )\n .optional(),\n }),\n z.xor([\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n }),\n z.object({\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n draftjs: z\n .string()\n .describe('Answer in [Draft.js](https://draftjs.org/) format.')\n .min(1)\n .max(100000),\n }),\n z.object({\n draftjs: z.never().optional(),\n plainText: z.never().optional(),\n richContent: z\n .any()\n .describe('Answer in [rich content](https://ricos.dev/) format.'),\n }),\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z\n .string()\n .describe('Answer in plain text format.')\n .min(1)\n .max(10000),\n }),\n ])\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 offset: z\n .number()\n .int()\n .describe('Offset that was requested.')\n .optional()\n .nullable(),\n total: z\n .number()\n .int()\n .describe(\n 'Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set.'\n )\n .optional()\n .nullable(),\n tooManyToCount: z\n .boolean()\n .describe(\n 'Flag that indicates the server failed to calculate the `total` field.'\n )\n .optional()\n .nullable(),\n cursors: z\n .object({\n next: z\n .string()\n .describe(\n 'Cursor string pointing to the next page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n prev: z\n .string()\n .describe(\n 'Cursor pointing to the previous page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used.'\n )\n .optional(),\n })\n .describe('Pagination information for navigating through results.')\n .optional(),\n});\nexport const QueryQuestionEntriesRequest = z.object({\n query: z\n .object({\n filter: z\n .object({\n question: z\n .object({\n $eq: z.string(),\n $exists: z.boolean(),\n $gt: z.string(),\n $gte: z.string(),\n $hasAll: z.array(z.string()),\n $hasSome: z.array(z.string()),\n $in: z.array(z.string()),\n $lt: z.string(),\n $lte: z.string(),\n $ne: z.string(),\n $nin: z.array(z.string()),\n $startsWith: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n 'answer.draftjs': z\n .object({\n $eq: z.any(),\n $exists: z.boolean(),\n $gt: z.any(),\n $gte: z.any(),\n $hasAll: z.array(z.any()),\n $hasSome: z.array(z.any()),\n $in: z.array(z.any()),\n $lt: z.any(),\n $lte: z.any(),\n $ne: z.any(),\n $nin: z.array(z.any()),\n $startsWith: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n 'answer.richContent': z\n .object({\n $eq: z.any(),\n $exists: z.boolean(),\n $gt: z.any(),\n $gte: z.any(),\n $hasAll: z.array(z.any()),\n $hasSome: z.array(z.any()),\n $in: z.array(z.any()),\n $lt: z.any(),\n $lte: z.any(),\n $ne: z.any(),\n $nin: z.array(z.any()),\n $startsWith: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n 'answer.plainText': z\n .object({\n $eq: z.any(),\n $exists: z.boolean(),\n $gt: z.any(),\n $gte: z.any(),\n $hasAll: z.array(z.any()),\n $hasSome: z.array(z.any()),\n $in: z.array(z.any()),\n $lt: z.any(),\n $lte: z.any(),\n $ne: z.any(),\n $nin: z.array(z.any()),\n $startsWith: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n _id: z\n .object({\n $eq: z.string(),\n $exists: z.boolean(),\n $gt: z.string(),\n $gte: z.string(),\n $hasAll: z.array(z.string()),\n $hasSome: z.array(z.string()),\n $in: z.array(z.string()),\n $lt: z.string(),\n $lte: z.string(),\n $ne: z.string(),\n $nin: z.array(z.string()),\n $startsWith: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n sortOrder: z\n .object({\n $eq: z.number(),\n $exists: z.boolean(),\n $gt: z.number(),\n $gte: z.number(),\n $hasAll: z.array(z.number()),\n $hasSome: z.array(z.number()),\n $in: z.array(z.number()),\n $lt: z.number(),\n $lte: z.number(),\n $ne: z.number(),\n $nin: z.array(z.number()),\n $startsWith: z.string(),\n })\n .partial()\n .strict()\n .optional(),\n categoryId: z\n .object({\n $eq: z.string(),\n $exists: z.boolean(),\n $gt: z.string(),\n $gte: z.string(),\n $hasAll: z.array(z.string()),\n $hasSome: z.array(z.string()),\n $in: z.array(z.string()),\n $lt: z.string(),\n $lte: 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\n .array(\n z.object({\n fieldName: z\n .enum([\n 'question',\n 'answer.draftjs',\n 'answer.richContent',\n 'answer.plainText',\n '_id',\n 'sortOrder',\n 'categoryId',\n ])\n .optional(),\n order: z.enum(['ASC', 'DESC']).optional(),\n })\n )\n .optional(),\n })\n .catchall(z.any())\n .describe(\n 'WQL query expression for filtering and sorting question entries.'\n ),\n options: z\n .object({\n contentFormat: z\n .enum(['DRAFTJS', 'PLAIN_TEXT', 'RICH_CONTENT'])\n .optional(),\n fieldSet: z\n .array(z.enum(['UNKNOWN', 'SHARE_LINKS']))\n .max(100)\n .optional(),\n })\n .optional(),\n});\nexport const QueryQuestionEntriesResponse = z.object({\n questionEntries: z\n .array(\n z.intersection(\n z.object({\n _id: z\n .string()\n .describe('Question entry 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 a question entry is updated.\\nTo prevent conflicting changes,\\nthe current revision must be specified when updating the question entry.\\n\\nIgnored when creating a question entry.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the question entry was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the question entry was last updated.')\n .optional()\n .nullable(),\n question: z\n .string()\n .describe('Question text displayed to site visitors.')\n .max(1000)\n .optional()\n .nullable(),\n labels: z\n .array(\n z.object({\n title: z\n .string()\n .describe('Label name.')\n .min(1)\n .max(36)\n .optional(),\n sortOrder: z\n .number()\n .describe('Order of the question entry within the label.')\n .optional()\n .nullable(),\n })\n )\n .max(100)\n .optional(),\n sortOrder: z\n .number()\n .describe(\n 'Order of the question entry within its category. Lower values appear first.'\n )\n .optional()\n .nullable(),\n categoryId: z\n .string()\n .describe(\n 'ID of the category that this question entry belongs to.\\nEach question entry must be assigned to exactly one category.'\n )\n .min(1)\n .max(50)\n .optional()\n .nullable(),\n slug: z\n .string()\n .describe(\n 'URL slug generated from the question text for SEO-friendly URLs.'\n )\n .max(100)\n .optional()\n .nullable(),\n shareLink: z\n .string()\n .describe(\n 'Direct link to this specific question entry for sharing.'\n )\n .url()\n .optional()\n .nullable(),\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(\n 'Custom field data for the `questionEntry` object.\\n\\n[Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls.'\n )\n .optional(),\n }),\n z.xor([\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n }),\n z.object({\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n draftjs: z\n .string()\n .describe('Answer in [Draft.js](https://draftjs.org/) format.')\n .min(1)\n .max(100000),\n }),\n z.object({\n draftjs: z.never().optional(),\n plainText: z.never().optional(),\n richContent: z\n .any()\n .describe('Answer in [rich content](https://ricos.dev/) format.'),\n }),\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z\n .string()\n .describe('Answer in plain text format.')\n .min(1)\n .max(10000),\n }),\n ])\n )\n )\n .optional(),\n pagingMetadata: z\n .object({\n count: z\n .number()\n .int()\n .describe('Number of items returned in current page.')\n .optional()\n .nullable(),\n cursors: z\n .object({\n next: z\n .string()\n .describe(\n 'Cursor string pointing to the next page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n prev: z\n .string()\n .describe(\n 'Cursor pointing to the previous page in the list of results.'\n )\n .max(16000)\n .optional()\n .nullable(),\n })\n .describe(\n 'Cursor strings that point to the next page, previous page, or both.'\n )\n .optional(),\n hasNext: z\n .boolean()\n .describe(\n 'Whether there are more pages to retrieve following the current page.\\n\\n+ `true`: Another page of results can be retrieved.\\n+ `false`: This is the last page.'\n )\n .optional()\n .nullable(),\n })\n .describe('Pagination information for navigating through results.')\n .optional(),\n});\nexport const BulkDeleteQuestionEntriesRequest = z.object({\n questionEntryIds: z.array(z.string()).min(1).max(100),\n});\nexport const BulkDeleteQuestionEntriesResponse = z.object({\n itemMetadata: z\n .array(\n z.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 )\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 about the bulk delete operation.')\n .optional(),\n});\nexport const UpdateExtendedFieldsRequest = z.object({\n _id: z.string().describe('ID of the entity to update.'),\n namespace: z\n .string()\n .describe(\n 'Identifier for the app whose extended fields are being updated.'\n ),\n options: z.object({\n namespaceData: z\n .record(z.string(), z.any())\n .describe(\n 'Data to update. Structured according to the [schema](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields#json-schema-for-extended-fields) defined when the extended fields were configured.'\n ),\n }),\n});\nexport const UpdateExtendedFieldsResponse = z.object({\n questionEntry: z\n .intersection(\n z.object({\n _id: z\n .string()\n .describe('Question entry 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 a question entry is updated.\\nTo prevent conflicting changes,\\nthe current revision must be specified when updating the question entry.\\n\\nIgnored when creating a question entry.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the question entry was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the question entry was last updated.')\n .optional()\n .nullable(),\n question: z\n .string()\n .describe('Question text displayed to site visitors.')\n .max(1000)\n .optional()\n .nullable(),\n labels: z\n .array(\n z.object({\n title: z\n .string()\n .describe('Label name.')\n .min(1)\n .max(36)\n .optional(),\n sortOrder: z\n .number()\n .describe('Order of the question entry within the label.')\n .optional()\n .nullable(),\n })\n )\n .max(100)\n .optional(),\n sortOrder: z\n .number()\n .describe(\n 'Order of the question entry within its category. Lower values appear first.'\n )\n .optional()\n .nullable(),\n categoryId: z\n .string()\n .describe(\n 'ID of the category that this question entry belongs to.\\nEach question entry must be assigned to exactly one category.'\n )\n .min(1)\n .max(50)\n .optional()\n .nullable(),\n slug: z\n .string()\n .describe(\n 'URL slug generated from the question text for SEO-friendly URLs.'\n )\n .max(100)\n .optional()\n .nullable(),\n shareLink: z\n .string()\n .describe('Direct link to this specific question entry for sharing.')\n .url()\n .optional()\n .nullable(),\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(\n 'Custom field data for the `questionEntry` object.\\n\\n[Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls.'\n )\n .optional(),\n }),\n z.xor([\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n }),\n z.object({\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n draftjs: z\n .string()\n .describe('Answer in [Draft.js](https://draftjs.org/) format.')\n .min(1)\n .max(100000),\n }),\n z.object({\n draftjs: z.never().optional(),\n plainText: z.never().optional(),\n richContent: z\n .any()\n .describe('Answer in [rich content](https://ricos.dev/) format.'),\n }),\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z\n .string()\n .describe('Answer in plain text format.')\n .min(1)\n .max(10000),\n }),\n ])\n )\n .describe('Question entry with updated extended fields.')\n .optional(),\n});\nexport const SetQuestionEntryLabelsRequest = z.object({\n questionEntryId: z\n .string()\n .describe('ID of the question entry to update labels for.')\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 labels: z\n .array(\n z.object({\n title: z.string().describe('Label name.').min(1).max(36).optional(),\n sortOrder: z\n .number()\n .describe('Order of the question entry within the label.')\n .optional()\n .nullable(),\n })\n )\n .max(100)\n .optional(),\n })\n .optional(),\n});\nexport const SetQuestionEntryLabelsResponse = z.object({\n questionEntry: z\n .intersection(\n z.object({\n _id: z\n .string()\n .describe('Question entry 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 a question entry is updated.\\nTo prevent conflicting changes,\\nthe current revision must be specified when updating the question entry.\\n\\nIgnored when creating a question entry.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the question entry was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the question entry was last updated.')\n .optional()\n .nullable(),\n question: z\n .string()\n .describe('Question text displayed to site visitors.')\n .max(1000)\n .optional()\n .nullable(),\n labels: z\n .array(\n z.object({\n title: z\n .string()\n .describe('Label name.')\n .min(1)\n .max(36)\n .optional(),\n sortOrder: z\n .number()\n .describe('Order of the question entry within the label.')\n .optional()\n .nullable(),\n })\n )\n .max(100)\n .optional(),\n sortOrder: z\n .number()\n .describe(\n 'Order of the question entry within its category. Lower values appear first.'\n )\n .optional()\n .nullable(),\n categoryId: z\n .string()\n .describe(\n 'ID of the category that this question entry belongs to.\\nEach question entry must be assigned to exactly one category.'\n )\n .min(1)\n .max(50)\n .optional()\n .nullable(),\n slug: z\n .string()\n .describe(\n 'URL slug generated from the question text for SEO-friendly URLs.'\n )\n .max(100)\n .optional()\n .nullable(),\n shareLink: z\n .string()\n .describe('Direct link to this specific question entry for sharing.')\n .url()\n .optional()\n .nullable(),\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(\n 'Custom field data for the `questionEntry` object.\\n\\n[Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls.'\n )\n .optional(),\n }),\n z.xor([\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n }),\n z.object({\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n draftjs: z\n .string()\n .describe('Answer in [Draft.js](https://draftjs.org/) format.')\n .min(1)\n .max(100000),\n }),\n z.object({\n draftjs: z.never().optional(),\n plainText: z.never().optional(),\n richContent: z\n .any()\n .describe('Answer in [rich content](https://ricos.dev/) format.'),\n }),\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z\n .string()\n .describe('Answer in plain text format.')\n .min(1)\n .max(10000),\n }),\n ])\n )\n .describe('Question entry with updated labels.')\n .optional(),\n});\nexport const BulkUpdateQuestionEntryRequest = z.object({\n options: z\n .object({\n questionEntries: z\n .array(\n z.object({\n questionEntry: z\n .intersection(\n z.object({\n _id: z\n .string()\n .describe('Question entry 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 a question entry is updated.\\nTo prevent conflicting changes,\\nthe current revision must be specified when updating the question entry.\\n\\nIgnored when creating a question entry.'\n ),\n _createdDate: z\n .date()\n .describe('Date and time the question entry was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe(\n 'Date and time the question entry was last updated.'\n )\n .optional()\n .nullable(),\n question: z\n .string()\n .describe('Question text displayed to site visitors.')\n .max(1000)\n .optional()\n .nullable(),\n labels: z\n .array(\n z.object({\n title: z\n .string()\n .describe('Label name.')\n .min(1)\n .max(36)\n .optional(),\n sortOrder: z\n .number()\n .describe(\n 'Order of the question entry within the label.'\n )\n .optional()\n .nullable(),\n })\n )\n .max(100)\n .optional(),\n sortOrder: z\n .number()\n .describe(\n 'Order of the question entry within its category. Lower values appear first.'\n )\n .optional()\n .nullable(),\n categoryId: z\n .string()\n .describe(\n 'ID of the category that this question entry belongs to.\\nEach question entry must be assigned to exactly one category.'\n )\n .min(1)\n .max(50)\n .optional()\n .nullable(),\n slug: z\n .string()\n .describe(\n 'URL slug generated from the question text for SEO-friendly URLs.'\n )\n .max(100)\n .optional()\n .nullable(),\n shareLink: z\n .string()\n .describe(\n 'Direct link to this specific question entry for sharing.'\n )\n .url()\n .optional()\n .nullable(),\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(\n 'Custom field data for the `questionEntry` object.\\n\\n[Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls.'\n )\n .optional(),\n }),\n z.xor([\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n }),\n z.object({\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n draftjs: z\n .string()\n .describe(\n 'Answer in [Draft.js](https://draftjs.org/) format.'\n )\n .min(1)\n .max(100000),\n }),\n z.object({\n draftjs: z.never().optional(),\n plainText: z.never().optional(),\n richContent: z\n .any()\n .describe(\n 'Answer in [rich content](https://ricos.dev/) format.'\n ),\n }),\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z\n .string()\n .describe('Answer in plain text format.')\n .min(1)\n .max(10000),\n }),\n ])\n )\n .describe('Question entry to update.'),\n })\n )\n .min(1)\n .max(100)\n .optional(),\n returnFullEntity: z\n .boolean()\n .describe(\n 'Whether to include the full updated question entries in the response.'\n )\n .optional()\n .nullable(),\n })\n .optional(),\n});\nexport const BulkUpdateQuestionEntryResponse = 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(\n 'Success or error information for the individual update operation.'\n )\n .optional(),\n questionEntry: z\n .intersection(\n z.object({\n _id: z\n .string()\n .describe('Question entry 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 a question entry is updated.\\nTo prevent conflicting changes,\\nthe current revision must be specified when updating the question entry.\\n\\nIgnored when creating a question entry.'\n )\n .optional()\n .nullable(),\n _createdDate: z\n .date()\n .describe('Date and time the question entry was created.')\n .optional()\n .nullable(),\n _updatedDate: z\n .date()\n .describe('Date and time the question entry was last updated.')\n .optional()\n .nullable(),\n question: z\n .string()\n .describe('Question text displayed to site visitors.')\n .max(1000)\n .optional()\n .nullable(),\n labels: z\n .array(\n z.object({\n title: z\n .string()\n .describe('Label name.')\n .min(1)\n .max(36)\n .optional(),\n sortOrder: z\n .number()\n .describe('Order of the question entry within the label.')\n .optional()\n .nullable(),\n })\n )\n .max(100)\n .optional(),\n sortOrder: z\n .number()\n .describe(\n 'Order of the question entry within its category. Lower values appear first.'\n )\n .optional()\n .nullable(),\n categoryId: z\n .string()\n .describe(\n 'ID of the category that this question entry belongs to.\\nEach question entry must be assigned to exactly one category.'\n )\n .min(1)\n .max(50)\n .optional()\n .nullable(),\n slug: z\n .string()\n .describe(\n 'URL slug generated from the question text for SEO-friendly URLs.'\n )\n .max(100)\n .optional()\n .nullable(),\n shareLink: z\n .string()\n .describe(\n 'Direct link to this specific question entry for sharing.'\n )\n .url()\n .optional()\n .nullable(),\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(\n 'Custom field data for the `questionEntry` object.\\n\\n[Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls.'\n )\n .optional(),\n }),\n z.xor([\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n }),\n z.object({\n richContent: z.never().optional(),\n plainText: z.never().optional(),\n draftjs: z\n .string()\n .describe(\n 'Answer in [Draft.js](https://draftjs.org/) format.'\n )\n .min(1)\n .max(100000),\n }),\n z.object({\n draftjs: z.never().optional(),\n plainText: z.never().optional(),\n richContent: z\n .any()\n .describe(\n 'Answer in [rich content](https://ricos.dev/) format.'\n ),\n }),\n z.object({\n draftjs: z.never().optional(),\n richContent: z.never().optional(),\n plainText: z\n .string()\n .describe('Answer in plain text format.')\n .min(1)\n .max(10000),\n }),\n ])\n )\n .describe(\n 'Updated question entry. Only included if `return_full_entity` was set to `true`.'\n )\n .optional(),\n })\n )\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('Summary information about the bulk update operation.')\n .optional(),\n});\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,QAAmB;AAEZ,IAAM,6BAA+B,SAAO;AAAA,EACjD,eACG;AAAA,IACG,SAAO;AAAA,MACP,KACG,SAAO,EACP,SAAS,oBAAoB,EAC7B;AAAA,QACC;AAAA,QACA;AAAA,MACF,EACC,SAAS,EACT,SAAS;AAAA,MACZ,UACG,SAAO,EACP,MAAM,WAAW,8BAA8B,EAC/C;AAAA,QACC;AAAA,MACF,EACC,SAAS,EACT,SAAS;AAAA,MACZ,cACG,OAAK,EACL,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,MACZ,cACG,OAAK,EACL,SAAS,oDAAoD,EAC7D,SAAS,EACT,SAAS;AAAA,MACZ,UACG,SAAO,EACP,SAAS,2CAA2C,EACpD,IAAI,GAAI;AAAA,MACX,QACG;AAAA,QACG,SAAO;AAAA,UACP,OACG,SAAO,EACP,SAAS,aAAa,EACtB,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS;AAAA,UACZ,WACG,SAAO,EACP,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,QACd,CAAC;AAAA,MACH,EACC,IAAI,GAAG,EACP,SAAS;AAAA,MACZ,WACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,SAAS,EACT,SAAS;AAAA,MACZ,YACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS,EACT,SAAS;AAAA,MACZ,MACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,IAAI,GAAG,EACP,SAAS,EACT,SAAS;AAAA,MACZ,WACG,SAAO,EACP,SAAS,0DAA0D,EACnE,IAAI,EACJ,SAAS,EACT,SAAS;AAAA,MACZ,gBACG,SAAO;AAAA,QACN,YACG,SAAS,SAAO,GAAK,SAAS,SAAO,GAAK,MAAI,CAAC,CAAC,EAChD;AAAA,UACC;AAAA,QACF,EACC,SAAS;AAAA,MACd,CAAC,EACA;AAAA,QACC;AAAA,MACF,EACC,SAAS;AAAA,IACd,CAAC;AAAA,IACC,MAAI;AAAA,MACF,SAAO;AAAA,QACP,SAAW,QAAM,EAAE,SAAS;AAAA,QAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,QAChC,WAAa,QAAM,EAAE,SAAS;AAAA,MAChC,CAAC;AAAA,MACC,SAAO;AAAA,QACP,aAAe,QAAM,EAAE,SAAS;AAAA,QAChC,WAAa,QAAM,EAAE,SAAS;AAAA,QAC9B,SACG,SAAO,EACP,SAAS,oDAAoD,EAC7D,IAAI,CAAC,EACL,IAAI,GAAM;AAAA,MACf,CAAC;AAAA,MACC,SAAO;AAAA,QACP,SAAW,QAAM,EAAE,SAAS;AAAA,QAC5B,WAAa,QAAM,EAAE,SAAS;AAAA,QAC9B,aACG,MAAI,EACJ,SAAS,sDAAsD;AAAA,MACpE,CAAC;AAAA,MACC,SAAO;AAAA,QACP,SAAW,QAAM,EAAE,SAAS;AAAA,QAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,QAChC,WACG,SAAO,EACP,SAAS,8BAA8B,EACvC,IAAI,CAAC,EACL,IAAI,GAAK;AAAA,MACd,CAAC;AAAA,IACH,CAAC;AAAA,EACH,EACC,SAAS,2BAA2B;AACzC,CAAC;AACM,IAAM,8BAAgC;AAAA,EACzC,SAAO;AAAA,IACP,KACG,SAAO,EACP,SAAS,oBAAoB,EAC7B;AAAA,MACC;AAAA,MACA;AAAA,IACF,EACC,SAAS,EACT,SAAS;AAAA,IACZ,UACG,SAAO,EACP,MAAM,WAAW,8BAA8B,EAC/C;AAAA,MACC;AAAA,IACF,EACC,SAAS,EACT,SAAS;AAAA,IACZ,cACG,OAAK,EACL,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,IACZ,cACG,OAAK,EACL,SAAS,oDAAoD,EAC7D,SAAS,EACT,SAAS;AAAA,IACZ,UACG,SAAO,EACP,SAAS,2CAA2C,EACpD,IAAI,GAAI,EACR,SAAS,EACT,SAAS;AAAA,IACZ,QACG;AAAA,MACG,SAAO;AAAA,QACP,OAAS,SAAO,EAAE,SAAS,aAAa,EAAE,IAAI,CAAC,EAAE,IAAI,EAAE,EAAE,SAAS;AAAA,QAClE,WACG,SAAO,EACP,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,MACd,CAAC;AAAA,IACH,EACC,IAAI,GAAG,EACP,SAAS;AAAA,IACZ,WACG,SAAO,EACP;AAAA,MACC;AAAA,IACF,EACC,SAAS,EACT,SAAS;AAAA,IACZ,YACG,SAAO,EACP;AAAA,MACC;AAAA,IACF,EACC,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS,EACT,SAAS;AAAA,IACZ,MACG,SAAO,EACP;AAAA,MACC;AAAA,IACF,EACC,IAAI,GAAG,EACP,SAAS,EACT,SAAS;AAAA,IACZ,WACG,SAAO,EACP,SAAS,0DAA0D,EACnE,IAAI,EACJ,SAAS,EACT,SAAS;AAAA,IACZ,gBACG,SAAO;AAAA,MACN,YACG,SAAS,SAAO,GAAK,SAAS,SAAO,GAAK,MAAI,CAAC,CAAC,EAChD;AAAA,QACC;AAAA,MACF,EACC,SAAS;AAAA,IACd,CAAC,EACA;AAAA,MACC;AAAA,IACF,EACC,SAAS;AAAA,EACd,CAAC;AAAA,EACC,MAAI;AAAA,IACF,SAAO;AAAA,MACP,SAAW,QAAM,EAAE,SAAS;AAAA,MAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,MAChC,WAAa,QAAM,EAAE,SAAS;AAAA,IAChC,CAAC;AAAA,IACC,SAAO;AAAA,MACP,aAAe,QAAM,EAAE,SAAS;AAAA,MAChC,WAAa,QAAM,EAAE,SAAS;AAAA,MAC9B,SACG,SAAO,EACP,SAAS,oDAAoD,EAC7D,IAAI,CAAC,EACL,IAAI,GAAM;AAAA,IACf,CAAC;AAAA,IACC,SAAO;AAAA,MACP,SAAW,QAAM,EAAE,SAAS;AAAA,MAC5B,WAAa,QAAM,EAAE,SAAS;AAAA,MAC9B,aACG,MAAI,EACJ,SAAS,sDAAsD;AAAA,IACpE,CAAC;AAAA,IACC,SAAO;AAAA,MACP,SAAW,QAAM,EAAE,SAAS;AAAA,MAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,MAChC,WACG,SAAO,EACP,SAAS,8BAA8B,EACvC,IAAI,CAAC,EACL,IAAI,GAAK;AAAA,IACd,CAAC;AAAA,EACH,CAAC;AACH;AACO,IAAM,0BAA4B,SAAO;AAAA,EAC9C,iBACG,SAAO,EACP,SAAS,uCAAuC,EAChD;AAAA,IACC;AAAA,IACA;AAAA,EACF;AACJ,CAAC;AACM,IAAM,2BAA6B;AAAA,EACtC,SAAO;AAAA,IACP,KACG,SAAO,EACP,SAAS,oBAAoB,EAC7B;AAAA,MACC;AAAA,MACA;AAAA,IACF,EACC,SAAS,EACT,SAAS;AAAA,IACZ,UACG,SAAO,EACP,MAAM,WAAW,8BAA8B,EAC/C;AAAA,MACC;AAAA,IACF,EACC,SAAS,EACT,SAAS;AAAA,IACZ,cACG,OAAK,EACL,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,IACZ,cACG,OAAK,EACL,SAAS,oDAAoD,EAC7D,SAAS,EACT,SAAS;AAAA,IACZ,UACG,SAAO,EACP,SAAS,2CAA2C,EACpD,IAAI,GAAI,EACR,SAAS,EACT,SAAS;AAAA,IACZ,QACG;AAAA,MACG,SAAO;AAAA,QACP,OAAS,SAAO,EAAE,SAAS,aAAa,EAAE,IAAI,CAAC,EAAE,IAAI,EAAE,EAAE,SAAS;AAAA,QAClE,WACG,SAAO,EACP,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,MACd,CAAC;AAAA,IACH,EACC,IAAI,GAAG,EACP,SAAS;AAAA,IACZ,WACG,SAAO,EACP;AAAA,MACC;AAAA,IACF,EACC,SAAS,EACT,SAAS;AAAA,IACZ,YACG,SAAO,EACP;AAAA,MACC;AAAA,IACF,EACC,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS,EACT,SAAS;AAAA,IACZ,MACG,SAAO,EACP;AAAA,MACC;AAAA,IACF,EACC,IAAI,GAAG,EACP,SAAS,EACT,SAAS;AAAA,IACZ,WACG,SAAO,EACP,SAAS,0DAA0D,EACnE,IAAI,EACJ,SAAS,EACT,SAAS;AAAA,IACZ,gBACG,SAAO;AAAA,MACN,YACG,SAAS,SAAO,GAAK,SAAS,SAAO,GAAK,MAAI,CAAC,CAAC,EAChD;AAAA,QACC;AAAA,MACF,EACC,SAAS;AAAA,IACd,CAAC,EACA;AAAA,MACC;AAAA,IACF,EACC,SAAS;AAAA,EACd,CAAC;AAAA,EACC,MAAI;AAAA,IACF,SAAO;AAAA,MACP,SAAW,QAAM,EAAE,SAAS;AAAA,MAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,MAChC,WAAa,QAAM,EAAE,SAAS;AAAA,IAChC,CAAC;AAAA,IACC,SAAO;AAAA,MACP,aAAe,QAAM,EAAE,SAAS;AAAA,MAChC,WAAa,QAAM,EAAE,SAAS;AAAA,MAC9B,SACG,SAAO,EACP,SAAS,oDAAoD,EAC7D,IAAI,CAAC,EACL,IAAI,GAAM;AAAA,IACf,CAAC;AAAA,IACC,SAAO;AAAA,MACP,SAAW,QAAM,EAAE,SAAS;AAAA,MAC5B,WAAa,QAAM,EAAE,SAAS;AAAA,MAC9B,aACG,MAAI,EACJ,SAAS,sDAAsD;AAAA,IACpE,CAAC;AAAA,IACC,SAAO;AAAA,MACP,SAAW,QAAM,EAAE,SAAS;AAAA,MAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,MAChC,WACG,SAAO,EACP,SAAS,8BAA8B,EACvC,IAAI,CAAC,EACL,IAAI,GAAK;AAAA,IACd,CAAC;AAAA,EACH,CAAC;AACH;AACO,IAAM,6BAA+B,SAAO;AAAA,EACjD,KACG,SAAO,EACP,SAAS,oBAAoB,EAC7B;AAAA,IACC;AAAA,IACA;AAAA,EACF;AAAA,EACF,eACG;AAAA,IACG,SAAO;AAAA,MACP,KACG,SAAO,EACP,SAAS,oBAAoB,EAC7B;AAAA,QACC;AAAA,QACA;AAAA,MACF,EACC,SAAS,EACT,SAAS;AAAA,MACZ,UACG,SAAO,EACP,MAAM,WAAW,8BAA8B,EAC/C;AAAA,QACC;AAAA,MACF;AAAA,MACF,cACG,OAAK,EACL,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,MACZ,cACG,OAAK,EACL,SAAS,oDAAoD,EAC7D,SAAS,EACT,SAAS;AAAA,MACZ,UACG,SAAO,EACP,SAAS,2CAA2C,EACpD,IAAI,GAAI,EACR,SAAS,EACT,SAAS;AAAA,MACZ,QACG;AAAA,QACG,SAAO;AAAA,UACP,OACG,SAAO,EACP,SAAS,aAAa,EACtB,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS;AAAA,UACZ,WACG,SAAO,EACP,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,QACd,CAAC;AAAA,MACH,EACC,IAAI,GAAG,EACP,SAAS;AAAA,MACZ,WACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,SAAS,EACT,SAAS;AAAA,MACZ,YACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS,EACT,SAAS;AAAA,MACZ,MACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,IAAI,GAAG,EACP,SAAS,EACT,SAAS;AAAA,MACZ,WACG,SAAO,EACP,SAAS,0DAA0D,EACnE,IAAI,EACJ,SAAS,EACT,SAAS;AAAA,MACZ,gBACG,SAAO;AAAA,QACN,YACG,SAAS,SAAO,GAAK,SAAS,SAAO,GAAK,MAAI,CAAC,CAAC,EAChD;AAAA,UACC;AAAA,QACF,EACC,SAAS;AAAA,MACd,CAAC,EACA;AAAA,QACC;AAAA,MACF,EACC,SAAS;AAAA,IACd,CAAC;AAAA,IACC,MAAI;AAAA,MACF,SAAO;AAAA,QACP,SAAW,QAAM,EAAE,SAAS;AAAA,QAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,QAChC,WAAa,QAAM,EAAE,SAAS;AAAA,MAChC,CAAC;AAAA,MACC,SAAO;AAAA,QACP,aAAe,QAAM,EAAE,SAAS;AAAA,QAChC,WAAa,QAAM,EAAE,SAAS;AAAA,QAC9B,SACG,SAAO,EACP,SAAS,oDAAoD,EAC7D,IAAI,CAAC,EACL,IAAI,GAAM;AAAA,MACf,CAAC;AAAA,MACC,SAAO;AAAA,QACP,SAAW,QAAM,EAAE,SAAS;AAAA,QAC5B,WAAa,QAAM,EAAE,SAAS;AAAA,QAC9B,aACG,MAAI,EACJ,SAAS,sDAAsD;AAAA,MACpE,CAAC;AAAA,MACC,SAAO;AAAA,QACP,SAAW,QAAM,EAAE,SAAS;AAAA,QAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,QAChC,WACG,SAAO,EACP,SAAS,8BAA8B,EACvC,IAAI,CAAC,EACL,IAAI,GAAK;AAAA,MACd,CAAC;AAAA,IACH,CAAC;AAAA,EACH,EACC;AAAA,IACC;AAAA,EACF;AACJ,CAAC;AACM,IAAM,8BAAgC;AAAA,EACzC,SAAO;AAAA,IACP,KACG,SAAO,EACP,SAAS,oBAAoB,EAC7B;AAAA,MACC;AAAA,MACA;AAAA,IACF,EACC,SAAS,EACT,SAAS;AAAA,IACZ,UACG,SAAO,EACP,MAAM,WAAW,8BAA8B,EAC/C;AAAA,MACC;AAAA,IACF,EACC,SAAS,EACT,SAAS;AAAA,IACZ,cACG,OAAK,EACL,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,IACZ,cACG,OAAK,EACL,SAAS,oDAAoD,EAC7D,SAAS,EACT,SAAS;AAAA,IACZ,UACG,SAAO,EACP,SAAS,2CAA2C,EACpD,IAAI,GAAI,EACR,SAAS,EACT,SAAS;AAAA,IACZ,QACG;AAAA,MACG,SAAO;AAAA,QACP,OAAS,SAAO,EAAE,SAAS,aAAa,EAAE,IAAI,CAAC,EAAE,IAAI,EAAE,EAAE,SAAS;AAAA,QAClE,WACG,SAAO,EACP,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,MACd,CAAC;AAAA,IACH,EACC,IAAI,GAAG,EACP,SAAS;AAAA,IACZ,WACG,SAAO,EACP;AAAA,MACC;AAAA,IACF,EACC,SAAS,EACT,SAAS;AAAA,IACZ,YACG,SAAO,EACP;AAAA,MACC;AAAA,IACF,EACC,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS,EACT,SAAS;AAAA,IACZ,MACG,SAAO,EACP;AAAA,MACC;AAAA,IACF,EACC,IAAI,GAAG,EACP,SAAS,EACT,SAAS;AAAA,IACZ,WACG,SAAO,EACP,SAAS,0DAA0D,EACnE,IAAI,EACJ,SAAS,EACT,SAAS;AAAA,IACZ,gBACG,SAAO;AAAA,MACN,YACG,SAAS,SAAO,GAAK,SAAS,SAAO,GAAK,MAAI,CAAC,CAAC,EAChD;AAAA,QACC;AAAA,MACF,EACC,SAAS;AAAA,IACd,CAAC,EACA;AAAA,MACC;AAAA,IACF,EACC,SAAS;AAAA,EACd,CAAC;AAAA,EACC,MAAI;AAAA,IACF,SAAO;AAAA,MACP,SAAW,QAAM,EAAE,SAAS;AAAA,MAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,MAChC,WAAa,QAAM,EAAE,SAAS;AAAA,IAChC,CAAC;AAAA,IACC,SAAO;AAAA,MACP,aAAe,QAAM,EAAE,SAAS;AAAA,MAChC,WAAa,QAAM,EAAE,SAAS;AAAA,MAC9B,SACG,SAAO,EACP,SAAS,oDAAoD,EAC7D,IAAI,CAAC,EACL,IAAI,GAAM;AAAA,IACf,CAAC;AAAA,IACC,SAAO;AAAA,MACP,SAAW,QAAM,EAAE,SAAS;AAAA,MAC5B,WAAa,QAAM,EAAE,SAAS;AAAA,MAC9B,aACG,MAAI,EACJ,SAAS,sDAAsD;AAAA,IACpE,CAAC;AAAA,IACC,SAAO;AAAA,MACP,SAAW,QAAM,EAAE,SAAS;AAAA,MAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,MAChC,WACG,SAAO,EACP,SAAS,8BAA8B,EACvC,IAAI,CAAC,EACL,IAAI,GAAK;AAAA,IACd,CAAC;AAAA,EACH,CAAC;AACH;AACO,IAAM,6BAA+B,SAAO;AAAA,EACjD,iBACG,SAAO,EACP,SAAS,qCAAqC,EAC9C;AAAA,IACC;AAAA,IACA;AAAA,EACF;AACJ,CAAC;AACM,IAAM,8BAAgC,SAAO,CAAC,CAAC;AAC/C,IAAM,6BAA+B,SAAO;AAAA,EACjD,SACG,SAAO;AAAA,IACN,YACG,SAAO,EACP,SAAS,mDAAmD,EAC5D,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS,EACT,SAAS;AAAA,IACZ,kBAAoB,QAAQ,SAAO,CAAC,EAAE,IAAI,GAAG,EAAE,SAAS;AAAA,IACxD,oBACG,SAAO,EACP,SAAS,2CAA2C,EACpD,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS,EACT,SAAS;AAAA,IACZ,QACG,SAAO;AAAA,MACN,OACG,SAAO,EACP,IAAI,EACJ,SAAS,mDAAmD,EAC5D,IAAI,CAAC,EACL,IAAI,GAAG,EACP,SAAS,EACT,SAAS;AAAA,MACZ,QACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,IAAI,IAAK,EACT,SAAS,EACT,SAAS;AAAA,IACd,CAAC,EACA;AAAA,MACC;AAAA,IACF,EACC,SAAS;AAAA,IACZ,eACG,OAAK,CAAC,WAAW,cAAc,cAAc,CAAC,EAC9C,SAAS;AAAA,IACZ,UACG,QAAQ,OAAK,CAAC,WAAW,aAAa,CAAC,CAAC,EACxC,IAAI,GAAG,EACP,SAAS;AAAA,EACd,CAAC,EACA,SAAS;AACd,CAAC;AACM,IAAM,8BAAgC,SAAO;AAAA,EAClD,iBACG;AAAA,IACG;AAAA,MACE,SAAO;AAAA,QACP,KACG,SAAO,EACP,SAAS,oBAAoB,EAC7B;AAAA,UACC;AAAA,UACA;AAAA,QACF,EACC,SAAS,EACT,SAAS;AAAA,QACZ,UACG,SAAO,EACP,MAAM,WAAW,8BAA8B,EAC/C;AAAA,UACC;AAAA,QACF,EACC,SAAS,EACT,SAAS;AAAA,QACZ,cACG,OAAK,EACL,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,QACZ,cACG,OAAK,EACL,SAAS,oDAAoD,EAC7D,SAAS,EACT,SAAS;AAAA,QACZ,UACG,SAAO,EACP,SAAS,2CAA2C,EACpD,IAAI,GAAI,EACR,SAAS,EACT,SAAS;AAAA,QACZ,QACG;AAAA,UACG,SAAO;AAAA,YACP,OACG,SAAO,EACP,SAAS,aAAa,EACtB,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS;AAAA,YACZ,WACG,SAAO,EACP,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,UACd,CAAC;AAAA,QACH,EACC,IAAI,GAAG,EACP,SAAS;AAAA,QACZ,WACG,SAAO,EACP;AAAA,UACC;AAAA,QACF,EACC,SAAS,EACT,SAAS;AAAA,QACZ,YACG,SAAO,EACP;AAAA,UACC;AAAA,QACF,EACC,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS,EACT,SAAS;AAAA,QACZ,MACG,SAAO,EACP;AAAA,UACC;AAAA,QACF,EACC,IAAI,GAAG,EACP,SAAS,EACT,SAAS;AAAA,QACZ,WACG,SAAO,EACP;AAAA,UACC;AAAA,QACF,EACC,IAAI,EACJ,SAAS,EACT,SAAS;AAAA,QACZ,gBACG,SAAO;AAAA,UACN,YACG,SAAS,SAAO,GAAK,SAAS,SAAO,GAAK,MAAI,CAAC,CAAC,EAChD;AAAA,YACC;AAAA,UACF,EACC,SAAS;AAAA,QACd,CAAC,EACA;AAAA,UACC;AAAA,QACF,EACC,SAAS;AAAA,MACd,CAAC;AAAA,MACC,MAAI;AAAA,QACF,SAAO;AAAA,UACP,SAAW,QAAM,EAAE,SAAS;AAAA,UAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,UAChC,WAAa,QAAM,EAAE,SAAS;AAAA,QAChC,CAAC;AAAA,QACC,SAAO;AAAA,UACP,aAAe,QAAM,EAAE,SAAS;AAAA,UAChC,WAAa,QAAM,EAAE,SAAS;AAAA,UAC9B,SACG,SAAO,EACP,SAAS,oDAAoD,EAC7D,IAAI,CAAC,EACL,IAAI,GAAM;AAAA,QACf,CAAC;AAAA,QACC,SAAO;AAAA,UACP,SAAW,QAAM,EAAE,SAAS;AAAA,UAC5B,WAAa,QAAM,EAAE,SAAS;AAAA,UAC9B,aACG,MAAI,EACJ,SAAS,sDAAsD;AAAA,QACpE,CAAC;AAAA,QACC,SAAO;AAAA,UACP,SAAW,QAAM,EAAE,SAAS;AAAA,UAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,UAChC,WACG,SAAO,EACP,SAAS,8BAA8B,EACvC,IAAI,CAAC,EACL,IAAI,GAAK;AAAA,QACd,CAAC;AAAA,MACH,CAAC;AAAA,IACH;AAAA,EACF,EACC,SAAS;AAAA,EACZ,gBACG,SAAO;AAAA,IACN,OACG,SAAO,EACP,IAAI,EACJ,SAAS,2CAA2C,EACpD,SAAS,EACT,SAAS;AAAA,IACZ,QACG,SAAO,EACP,IAAI,EACJ,SAAS,4BAA4B,EACrC,SAAS,EACT,SAAS;AAAA,IACZ,OACG,SAAO,EACP,IAAI,EACJ;AAAA,MACC;AAAA,IACF,EACC,SAAS,EACT,SAAS;AAAA,IACZ,gBACG,UAAQ,EACR;AAAA,MACC;AAAA,IACF,EACC,SAAS,EACT,SAAS;AAAA,IACZ,SACG,SAAO;AAAA,MACN,MACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,IAAI,IAAK,EACT,SAAS,EACT,SAAS;AAAA,MACZ,MACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,IAAI,IAAK,EACT,SAAS,EACT,SAAS;AAAA,IACd,CAAC,EACA;AAAA,MACC;AAAA,IACF,EACC,SAAS;AAAA,EACd,CAAC,EACA,SAAS,wDAAwD,EACjE,SAAS;AACd,CAAC;AACM,IAAM,8BAAgC,SAAO;AAAA,EAClD,OACG,SAAO;AAAA,IACN,QACG,SAAO;AAAA,MACN,UACG,SAAO;AAAA,QACN,KAAO,SAAO;AAAA,QACd,SAAW,UAAQ;AAAA,QACnB,KAAO,SAAO;AAAA,QACd,MAAQ,SAAO;AAAA,QACf,SAAW,QAAQ,SAAO,CAAC;AAAA,QAC3B,UAAY,QAAQ,SAAO,CAAC;AAAA,QAC5B,KAAO,QAAQ,SAAO,CAAC;AAAA,QACvB,KAAO,SAAO;AAAA,QACd,MAAQ,SAAO;AAAA,QACf,KAAO,SAAO;AAAA,QACd,MAAQ,QAAQ,SAAO,CAAC;AAAA,QACxB,aAAe,SAAO;AAAA,MACxB,CAAC,EACA,QAAQ,EACR,OAAO,EACP,SAAS;AAAA,MACZ,kBACG,SAAO;AAAA,QACN,KAAO,MAAI;AAAA,QACX,SAAW,UAAQ;AAAA,QACnB,KAAO,MAAI;AAAA,QACX,MAAQ,MAAI;AAAA,QACZ,SAAW,QAAQ,MAAI,CAAC;AAAA,QACxB,UAAY,QAAQ,MAAI,CAAC;AAAA,QACzB,KAAO,QAAQ,MAAI,CAAC;AAAA,QACpB,KAAO,MAAI;AAAA,QACX,MAAQ,MAAI;AAAA,QACZ,KAAO,MAAI;AAAA,QACX,MAAQ,QAAQ,MAAI,CAAC;AAAA,QACrB,aAAe,SAAO;AAAA,MACxB,CAAC,EACA,QAAQ,EACR,OAAO,EACP,SAAS;AAAA,MACZ,sBACG,SAAO;AAAA,QACN,KAAO,MAAI;AAAA,QACX,SAAW,UAAQ;AAAA,QACnB,KAAO,MAAI;AAAA,QACX,MAAQ,MAAI;AAAA,QACZ,SAAW,QAAQ,MAAI,CAAC;AAAA,QACxB,UAAY,QAAQ,MAAI,CAAC;AAAA,QACzB,KAAO,QAAQ,MAAI,CAAC;AAAA,QACpB,KAAO,MAAI;AAAA,QACX,MAAQ,MAAI;AAAA,QACZ,KAAO,MAAI;AAAA,QACX,MAAQ,QAAQ,MAAI,CAAC;AAAA,QACrB,aAAe,SAAO;AAAA,MACxB,CAAC,EACA,QAAQ,EACR,OAAO,EACP,SAAS;AAAA,MACZ,oBACG,SAAO;AAAA,QACN,KAAO,MAAI;AAAA,QACX,SAAW,UAAQ;AAAA,QACnB,KAAO,MAAI;AAAA,QACX,MAAQ,MAAI;AAAA,QACZ,SAAW,QAAQ,MAAI,CAAC;AAAA,QACxB,UAAY,QAAQ,MAAI,CAAC;AAAA,QACzB,KAAO,QAAQ,MAAI,CAAC;AAAA,QACpB,KAAO,MAAI;AAAA,QACX,MAAQ,MAAI;AAAA,QACZ,KAAO,MAAI;AAAA,QACX,MAAQ,QAAQ,MAAI,CAAC;AAAA,QACrB,aAAe,SAAO;AAAA,MACxB,CAAC,EACA,QAAQ,EACR,OAAO,EACP,SAAS;AAAA,MACZ,KACG,SAAO;AAAA,QACN,KAAO,SAAO;AAAA,QACd,SAAW,UAAQ;AAAA,QACnB,KAAO,SAAO;AAAA,QACd,MAAQ,SAAO;AAAA,QACf,SAAW,QAAQ,SAAO,CAAC;AAAA,QAC3B,UAAY,QAAQ,SAAO,CAAC;AAAA,QAC5B,KAAO,QAAQ,SAAO,CAAC;AAAA,QACvB,KAAO,SAAO;AAAA,QACd,MAAQ,SAAO;AAAA,QACf,KAAO,SAAO;AAAA,QACd,MAAQ,QAAQ,SAAO,CAAC;AAAA,QACxB,aAAe,SAAO;AAAA,MACxB,CAAC,EACA,QAAQ,EACR,OAAO,EACP,SAAS;AAAA,MACZ,WACG,SAAO;AAAA,QACN,KAAO,SAAO;AAAA,QACd,SAAW,UAAQ;AAAA,QACnB,KAAO,SAAO;AAAA,QACd,MAAQ,SAAO;AAAA,QACf,SAAW,QAAQ,SAAO,CAAC;AAAA,QAC3B,UAAY,QAAQ,SAAO,CAAC;AAAA,QAC5B,KAAO,QAAQ,SAAO,CAAC;AAAA,QACvB,KAAO,SAAO;AAAA,QACd,MAAQ,SAAO;AAAA,QACf,KAAO,SAAO;AAAA,QACd,MAAQ,QAAQ,SAAO,CAAC;AAAA,QACxB,aAAe,SAAO;AAAA,MACxB,CAAC,EACA,QAAQ,EACR,OAAO,EACP,SAAS;AAAA,MACZ,YACG,SAAO;AAAA,QACN,KAAO,SAAO;AAAA,QACd,SAAW,UAAQ;AAAA,QACnB,KAAO,SAAO;AAAA,QACd,MAAQ,SAAO;AAAA,QACf,SAAW,QAAQ,SAAO,CAAC;AAAA,QAC3B,UAAY,QAAQ,SAAO,CAAC;AAAA,QAC5B,KAAO,QAAQ,SAAO,CAAC;AAAA,QACvB,KAAO,SAAO;AAAA,QACd,MAAQ,SAAO;AAAA,QACf,KAAO,SAAO;AAAA,QACd,MAAQ,QAAQ,SAAO,CAAC;AAAA,QACxB,aAAe,SAAO;AAAA,MACxB,CAAC,EACA,QAAQ,EACR,OAAO,EACP,SAAS;AAAA,MACZ,MAAQ,QAAQ,MAAI,CAAC,EAAE,SAAS;AAAA,MAChC,KAAO,QAAQ,MAAI,CAAC,EAAE,SAAS;AAAA,MAC/B,MAAQ,MAAI,EAAE,SAAS;AAAA,IACzB,CAAC,EACA,OAAO,EACP,SAAS;AAAA,IACZ,MACG;AAAA,MACG,SAAO;AAAA,QACP,WACG,OAAK;AAAA,UACJ;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,QACF,CAAC,EACA,SAAS;AAAA,QACZ,OAAS,OAAK,CAAC,OAAO,MAAM,CAAC,EAAE,SAAS;AAAA,MAC1C,CAAC;AAAA,IACH,EACC,SAAS;AAAA,EACd,CAAC,EACA,SAAW,MAAI,CAAC,EAChB;AAAA,IACC;AAAA,EACF;AAAA,EACF,SACG,SAAO;AAAA,IACN,eACG,OAAK,CAAC,WAAW,cAAc,cAAc,CAAC,EAC9C,SAAS;AAAA,IACZ,UACG,QAAQ,OAAK,CAAC,WAAW,aAAa,CAAC,CAAC,EACxC,IAAI,GAAG,EACP,SAAS;AAAA,EACd,CAAC,EACA,SAAS;AACd,CAAC;AACM,IAAM,+BAAiC,SAAO;AAAA,EACnD,iBACG;AAAA,IACG;AAAA,MACE,SAAO;AAAA,QACP,KACG,SAAO,EACP,SAAS,oBAAoB,EAC7B;AAAA,UACC;AAAA,UACA;AAAA,QACF,EACC,SAAS,EACT,SAAS;AAAA,QACZ,UACG,SAAO,EACP,MAAM,WAAW,8BAA8B,EAC/C;AAAA,UACC;AAAA,QACF,EACC,SAAS,EACT,SAAS;AAAA,QACZ,cACG,OAAK,EACL,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,QACZ,cACG,OAAK,EACL,SAAS,oDAAoD,EAC7D,SAAS,EACT,SAAS;AAAA,QACZ,UACG,SAAO,EACP,SAAS,2CAA2C,EACpD,IAAI,GAAI,EACR,SAAS,EACT,SAAS;AAAA,QACZ,QACG;AAAA,UACG,SAAO;AAAA,YACP,OACG,SAAO,EACP,SAAS,aAAa,EACtB,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS;AAAA,YACZ,WACG,SAAO,EACP,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,UACd,CAAC;AAAA,QACH,EACC,IAAI,GAAG,EACP,SAAS;AAAA,QACZ,WACG,SAAO,EACP;AAAA,UACC;AAAA,QACF,EACC,SAAS,EACT,SAAS;AAAA,QACZ,YACG,SAAO,EACP;AAAA,UACC;AAAA,QACF,EACC,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS,EACT,SAAS;AAAA,QACZ,MACG,SAAO,EACP;AAAA,UACC;AAAA,QACF,EACC,IAAI,GAAG,EACP,SAAS,EACT,SAAS;AAAA,QACZ,WACG,SAAO,EACP;AAAA,UACC;AAAA,QACF,EACC,IAAI,EACJ,SAAS,EACT,SAAS;AAAA,QACZ,gBACG,SAAO;AAAA,UACN,YACG,SAAS,SAAO,GAAK,SAAS,SAAO,GAAK,MAAI,CAAC,CAAC,EAChD;AAAA,YACC;AAAA,UACF,EACC,SAAS;AAAA,QACd,CAAC,EACA;AAAA,UACC;AAAA,QACF,EACC,SAAS;AAAA,MACd,CAAC;AAAA,MACC,MAAI;AAAA,QACF,SAAO;AAAA,UACP,SAAW,QAAM,EAAE,SAAS;AAAA,UAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,UAChC,WAAa,QAAM,EAAE,SAAS;AAAA,QAChC,CAAC;AAAA,QACC,SAAO;AAAA,UACP,aAAe,QAAM,EAAE,SAAS;AAAA,UAChC,WAAa,QAAM,EAAE,SAAS;AAAA,UAC9B,SACG,SAAO,EACP,SAAS,oDAAoD,EAC7D,IAAI,CAAC,EACL,IAAI,GAAM;AAAA,QACf,CAAC;AAAA,QACC,SAAO;AAAA,UACP,SAAW,QAAM,EAAE,SAAS;AAAA,UAC5B,WAAa,QAAM,EAAE,SAAS;AAAA,UAC9B,aACG,MAAI,EACJ,SAAS,sDAAsD;AAAA,QACpE,CAAC;AAAA,QACC,SAAO;AAAA,UACP,SAAW,QAAM,EAAE,SAAS;AAAA,UAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,UAChC,WACG,SAAO,EACP,SAAS,8BAA8B,EACvC,IAAI,CAAC,EACL,IAAI,GAAK;AAAA,QACd,CAAC;AAAA,MACH,CAAC;AAAA,IACH;AAAA,EACF,EACC,SAAS;AAAA,EACZ,gBACG,SAAO;AAAA,IACN,OACG,SAAO,EACP,IAAI,EACJ,SAAS,2CAA2C,EACpD,SAAS,EACT,SAAS;AAAA,IACZ,SACG,SAAO;AAAA,MACN,MACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,IAAI,IAAK,EACT,SAAS,EACT,SAAS;AAAA,MACZ,MACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,IAAI,IAAK,EACT,SAAS,EACT,SAAS;AAAA,IACd,CAAC,EACA;AAAA,MACC;AAAA,IACF,EACC,SAAS;AAAA,IACZ,SACG,UAAQ,EACR;AAAA,MACC;AAAA,IACF,EACC,SAAS,EACT,SAAS;AAAA,EACd,CAAC,EACA,SAAS,wDAAwD,EACjE,SAAS;AACd,CAAC;AACM,IAAM,mCAAqC,SAAO;AAAA,EACvD,kBAAoB,QAAQ,SAAO,CAAC,EAAE,IAAI,CAAC,EAAE,IAAI,GAAG;AACtD,CAAC;AACM,IAAM,oCAAsC,SAAO;AAAA,EACxD,cACG;AAAA,IACG,SAAO;AAAA,MACP,KACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,SAAS,EACT,SAAS;AAAA,MACZ,eACG,SAAO,EACP,IAAI,EACJ;AAAA,QACC;AAAA,MACF,EACC,SAAS;AAAA,MACZ,SACG,UAAQ,EACR;AAAA,QACC;AAAA,MACF,EACC,SAAS;AAAA,MACZ,OACG,SAAO;AAAA,QACN,MAAQ,SAAO,EAAE,SAAS,aAAa,EAAE,SAAS;AAAA,QAClD,aACG,SAAO,EACP,SAAS,2BAA2B,EACpC,SAAS;AAAA,QACZ,MACG,SAAS,SAAO,GAAK,MAAI,CAAC,EAC1B,SAAS,4BAA4B,EACrC,SAAS,EACT,SAAS;AAAA,MACd,CAAC,EACA,SAAS,6CAA6C,EACtD,SAAS;AAAA,IACd,CAAC;AAAA,EACH,EACC,IAAI,CAAC,EACL,IAAI,GAAG,EACP,SAAS;AAAA,EACZ,oBACG,SAAO;AAAA,IACN,gBACG,SAAO,EACP,IAAI,EACJ,SAAS,mDAAmD,EAC5D,SAAS;AAAA,IACZ,eACG,SAAO,EACP,IAAI,EACJ,SAAS,6CAA6C,EACtD,SAAS;AAAA,IACZ,oBACG,SAAO,EACP,IAAI,EACJ;AAAA,MACC;AAAA,IACF,EACC,SAAS;AAAA,EACd,CAAC,EACA,SAAS,2CAA2C,EACpD,SAAS;AACd,CAAC;AACM,IAAM,8BAAgC,SAAO;AAAA,EAClD,KAAO,SAAO,EAAE,SAAS,6BAA6B;AAAA,EACtD,WACG,SAAO,EACP;AAAA,IACC;AAAA,EACF;AAAA,EACF,SAAW,SAAO;AAAA,IAChB,eACG,SAAS,SAAO,GAAK,MAAI,CAAC,EAC1B;AAAA,MACC;AAAA,IACF;AAAA,EACJ,CAAC;AACH,CAAC;AACM,IAAM,+BAAiC,SAAO;AAAA,EACnD,eACG;AAAA,IACG,SAAO;AAAA,MACP,KACG,SAAO,EACP,SAAS,oBAAoB,EAC7B;AAAA,QACC;AAAA,QACA;AAAA,MACF,EACC,SAAS,EACT,SAAS;AAAA,MACZ,UACG,SAAO,EACP,MAAM,WAAW,8BAA8B,EAC/C;AAAA,QACC;AAAA,MACF,EACC,SAAS,EACT,SAAS;AAAA,MACZ,cACG,OAAK,EACL,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,MACZ,cACG,OAAK,EACL,SAAS,oDAAoD,EAC7D,SAAS,EACT,SAAS;AAAA,MACZ,UACG,SAAO,EACP,SAAS,2CAA2C,EACpD,IAAI,GAAI,EACR,SAAS,EACT,SAAS;AAAA,MACZ,QACG;AAAA,QACG,SAAO;AAAA,UACP,OACG,SAAO,EACP,SAAS,aAAa,EACtB,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS;AAAA,UACZ,WACG,SAAO,EACP,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,QACd,CAAC;AAAA,MACH,EACC,IAAI,GAAG,EACP,SAAS;AAAA,MACZ,WACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,SAAS,EACT,SAAS;AAAA,MACZ,YACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS,EACT,SAAS;AAAA,MACZ,MACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,IAAI,GAAG,EACP,SAAS,EACT,SAAS;AAAA,MACZ,WACG,SAAO,EACP,SAAS,0DAA0D,EACnE,IAAI,EACJ,SAAS,EACT,SAAS;AAAA,MACZ,gBACG,SAAO;AAAA,QACN,YACG,SAAS,SAAO,GAAK,SAAS,SAAO,GAAK,MAAI,CAAC,CAAC,EAChD;AAAA,UACC;AAAA,QACF,EACC,SAAS;AAAA,MACd,CAAC,EACA;AAAA,QACC;AAAA,MACF,EACC,SAAS;AAAA,IACd,CAAC;AAAA,IACC,MAAI;AAAA,MACF,SAAO;AAAA,QACP,SAAW,QAAM,EAAE,SAAS;AAAA,QAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,QAChC,WAAa,QAAM,EAAE,SAAS;AAAA,MAChC,CAAC;AAAA,MACC,SAAO;AAAA,QACP,aAAe,QAAM,EAAE,SAAS;AAAA,QAChC,WAAa,QAAM,EAAE,SAAS;AAAA,QAC9B,SACG,SAAO,EACP,SAAS,oDAAoD,EAC7D,IAAI,CAAC,EACL,IAAI,GAAM;AAAA,MACf,CAAC;AAAA,MACC,SAAO;AAAA,QACP,SAAW,QAAM,EAAE,SAAS;AAAA,QAC5B,WAAa,QAAM,EAAE,SAAS;AAAA,QAC9B,aACG,MAAI,EACJ,SAAS,sDAAsD;AAAA,MACpE,CAAC;AAAA,MACC,SAAO;AAAA,QACP,SAAW,QAAM,EAAE,SAAS;AAAA,QAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,QAChC,WACG,SAAO,EACP,SAAS,8BAA8B,EACvC,IAAI,CAAC,EACL,IAAI,GAAK;AAAA,MACd,CAAC;AAAA,IACH,CAAC;AAAA,EACH,EACC,SAAS,8CAA8C,EACvD,SAAS;AACd,CAAC;AACM,IAAM,gCAAkC,SAAO;AAAA,EACpD,iBACG,SAAO,EACP,SAAS,gDAAgD,EACzD;AAAA,IACC;AAAA,IACA;AAAA,EACF;AAAA,EACF,SACG,SAAO;AAAA,IACN,QACG;AAAA,MACG,SAAO;AAAA,QACP,OAAS,SAAO,EAAE,SAAS,aAAa,EAAE,IAAI,CAAC,EAAE,IAAI,EAAE,EAAE,SAAS;AAAA,QAClE,WACG,SAAO,EACP,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,MACd,CAAC;AAAA,IACH,EACC,IAAI,GAAG,EACP,SAAS;AAAA,EACd,CAAC,EACA,SAAS;AACd,CAAC;AACM,IAAM,iCAAmC,SAAO;AAAA,EACrD,eACG;AAAA,IACG,SAAO;AAAA,MACP,KACG,SAAO,EACP,SAAS,oBAAoB,EAC7B;AAAA,QACC;AAAA,QACA;AAAA,MACF,EACC,SAAS,EACT,SAAS;AAAA,MACZ,UACG,SAAO,EACP,MAAM,WAAW,8BAA8B,EAC/C;AAAA,QACC;AAAA,MACF,EACC,SAAS,EACT,SAAS;AAAA,MACZ,cACG,OAAK,EACL,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,MACZ,cACG,OAAK,EACL,SAAS,oDAAoD,EAC7D,SAAS,EACT,SAAS;AAAA,MACZ,UACG,SAAO,EACP,SAAS,2CAA2C,EACpD,IAAI,GAAI,EACR,SAAS,EACT,SAAS;AAAA,MACZ,QACG;AAAA,QACG,SAAO;AAAA,UACP,OACG,SAAO,EACP,SAAS,aAAa,EACtB,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS;AAAA,UACZ,WACG,SAAO,EACP,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,QACd,CAAC;AAAA,MACH,EACC,IAAI,GAAG,EACP,SAAS;AAAA,MACZ,WACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,SAAS,EACT,SAAS;AAAA,MACZ,YACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS,EACT,SAAS;AAAA,MACZ,MACG,SAAO,EACP;AAAA,QACC;AAAA,MACF,EACC,IAAI,GAAG,EACP,SAAS,EACT,SAAS;AAAA,MACZ,WACG,SAAO,EACP,SAAS,0DAA0D,EACnE,IAAI,EACJ,SAAS,EACT,SAAS;AAAA,MACZ,gBACG,SAAO;AAAA,QACN,YACG,SAAS,SAAO,GAAK,SAAS,SAAO,GAAK,MAAI,CAAC,CAAC,EAChD;AAAA,UACC;AAAA,QACF,EACC,SAAS;AAAA,MACd,CAAC,EACA;AAAA,QACC;AAAA,MACF,EACC,SAAS;AAAA,IACd,CAAC;AAAA,IACC,MAAI;AAAA,MACF,SAAO;AAAA,QACP,SAAW,QAAM,EAAE,SAAS;AAAA,QAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,QAChC,WAAa,QAAM,EAAE,SAAS;AAAA,MAChC,CAAC;AAAA,MACC,SAAO;AAAA,QACP,aAAe,QAAM,EAAE,SAAS;AAAA,QAChC,WAAa,QAAM,EAAE,SAAS;AAAA,QAC9B,SACG,SAAO,EACP,SAAS,oDAAoD,EAC7D,IAAI,CAAC,EACL,IAAI,GAAM;AAAA,MACf,CAAC;AAAA,MACC,SAAO;AAAA,QACP,SAAW,QAAM,EAAE,SAAS;AAAA,QAC5B,WAAa,QAAM,EAAE,SAAS;AAAA,QAC9B,aACG,MAAI,EACJ,SAAS,sDAAsD;AAAA,MACpE,CAAC;AAAA,MACC,SAAO;AAAA,QACP,SAAW,QAAM,EAAE,SAAS;AAAA,QAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,QAChC,WACG,SAAO,EACP,SAAS,8BAA8B,EACvC,IAAI,CAAC,EACL,IAAI,GAAK;AAAA,MACd,CAAC;AAAA,IACH,CAAC;AAAA,EACH,EACC,SAAS,qCAAqC,EAC9C,SAAS;AACd,CAAC;AACM,IAAM,iCAAmC,SAAO;AAAA,EACrD,SACG,SAAO;AAAA,IACN,iBACG;AAAA,MACG,SAAO;AAAA,QACP,eACG;AAAA,UACG,SAAO;AAAA,YACP,KACG,SAAO,EACP,SAAS,oBAAoB,EAC7B;AAAA,cACC;AAAA,cACA;AAAA,YACF;AAAA,YACF,UACG,SAAO,EACP,MAAM,WAAW,8BAA8B,EAC/C;AAAA,cACC;AAAA,YACF;AAAA,YACF,cACG,OAAK,EACL,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,YACZ,cACG,OAAK,EACL;AAAA,cACC;AAAA,YACF,EACC,SAAS,EACT,SAAS;AAAA,YACZ,UACG,SAAO,EACP,SAAS,2CAA2C,EACpD,IAAI,GAAI,EACR,SAAS,EACT,SAAS;AAAA,YACZ,QACG;AAAA,cACG,SAAO;AAAA,gBACP,OACG,SAAO,EACP,SAAS,aAAa,EACtB,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS;AAAA,gBACZ,WACG,SAAO,EACP;AAAA,kBACC;AAAA,gBACF,EACC,SAAS,EACT,SAAS;AAAA,cACd,CAAC;AAAA,YACH,EACC,IAAI,GAAG,EACP,SAAS;AAAA,YACZ,WACG,SAAO,EACP;AAAA,cACC;AAAA,YACF,EACC,SAAS,EACT,SAAS;AAAA,YACZ,YACG,SAAO,EACP;AAAA,cACC;AAAA,YACF,EACC,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS,EACT,SAAS;AAAA,YACZ,MACG,SAAO,EACP;AAAA,cACC;AAAA,YACF,EACC,IAAI,GAAG,EACP,SAAS,EACT,SAAS;AAAA,YACZ,WACG,SAAO,EACP;AAAA,cACC;AAAA,YACF,EACC,IAAI,EACJ,SAAS,EACT,SAAS;AAAA,YACZ,gBACG,SAAO;AAAA,cACN,YACG,SAAS,SAAO,GAAK,SAAS,SAAO,GAAK,MAAI,CAAC,CAAC,EAChD;AAAA,gBACC;AAAA,cACF,EACC,SAAS;AAAA,YACd,CAAC,EACA;AAAA,cACC;AAAA,YACF,EACC,SAAS;AAAA,UACd,CAAC;AAAA,UACC,MAAI;AAAA,YACF,SAAO;AAAA,cACP,SAAW,QAAM,EAAE,SAAS;AAAA,cAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,cAChC,WAAa,QAAM,EAAE,SAAS;AAAA,YAChC,CAAC;AAAA,YACC,SAAO;AAAA,cACP,aAAe,QAAM,EAAE,SAAS;AAAA,cAChC,WAAa,QAAM,EAAE,SAAS;AAAA,cAC9B,SACG,SAAO,EACP;AAAA,gBACC;AAAA,cACF,EACC,IAAI,CAAC,EACL,IAAI,GAAM;AAAA,YACf,CAAC;AAAA,YACC,SAAO;AAAA,cACP,SAAW,QAAM,EAAE,SAAS;AAAA,cAC5B,WAAa,QAAM,EAAE,SAAS;AAAA,cAC9B,aACG,MAAI,EACJ;AAAA,gBACC;AAAA,cACF;AAAA,YACJ,CAAC;AAAA,YACC,SAAO;AAAA,cACP,SAAW,QAAM,EAAE,SAAS;AAAA,cAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,cAChC,WACG,SAAO,EACP,SAAS,8BAA8B,EACvC,IAAI,CAAC,EACL,IAAI,GAAK;AAAA,YACd,CAAC;AAAA,UACH,CAAC;AAAA,QACH,EACC,SAAS,2BAA2B;AAAA,MACzC,CAAC;AAAA,IACH,EACC,IAAI,CAAC,EACL,IAAI,GAAG,EACP,SAAS;AAAA,IACZ,kBACG,UAAQ,EACR;AAAA,MACC;AAAA,IACF,EACC,SAAS,EACT,SAAS;AAAA,EACd,CAAC,EACA,SAAS;AACd,CAAC;AACM,IAAM,kCAAoC,SAAO;AAAA,EACtD,SACG;AAAA,IACG,SAAO;AAAA,MACP,cACG,SAAO;AAAA,QACN,KACG,SAAO,EACP;AAAA,UACC;AAAA,QACF,EACC,SAAS,EACT,SAAS;AAAA,QACZ,eACG,SAAO,EACP,IAAI,EACJ;AAAA,UACC;AAAA,QACF,EACC,SAAS;AAAA,QACZ,SACG,UAAQ,EACR;AAAA,UACC;AAAA,QACF,EACC,SAAS;AAAA,QACZ,OACG,SAAO;AAAA,UACN,MAAQ,SAAO,EAAE,SAAS,aAAa,EAAE,SAAS;AAAA,UAClD,aACG,SAAO,EACP,SAAS,2BAA2B,EACpC,SAAS;AAAA,UACZ,MACG,SAAS,SAAO,GAAK,MAAI,CAAC,EAC1B,SAAS,4BAA4B,EACrC,SAAS,EACT,SAAS;AAAA,QACd,CAAC,EACA,SAAS,6CAA6C,EACtD,SAAS;AAAA,MACd,CAAC,EACA;AAAA,QACC;AAAA,MACF,EACC,SAAS;AAAA,MACZ,eACG;AAAA,QACG,SAAO;AAAA,UACP,KACG,SAAO,EACP,SAAS,oBAAoB,EAC7B;AAAA,YACC;AAAA,YACA;AAAA,UACF,EACC,SAAS,EACT,SAAS;AAAA,UACZ,UACG,SAAO,EACP,MAAM,WAAW,8BAA8B,EAC/C;AAAA,YACC;AAAA,UACF,EACC,SAAS,EACT,SAAS;AAAA,UACZ,cACG,OAAK,EACL,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,UACZ,cACG,OAAK,EACL,SAAS,oDAAoD,EAC7D,SAAS,EACT,SAAS;AAAA,UACZ,UACG,SAAO,EACP,SAAS,2CAA2C,EACpD,IAAI,GAAI,EACR,SAAS,EACT,SAAS;AAAA,UACZ,QACG;AAAA,YACG,SAAO;AAAA,cACP,OACG,SAAO,EACP,SAAS,aAAa,EACtB,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS;AAAA,cACZ,WACG,SAAO,EACP,SAAS,+CAA+C,EACxD,SAAS,EACT,SAAS;AAAA,YACd,CAAC;AAAA,UACH,EACC,IAAI,GAAG,EACP,SAAS;AAAA,UACZ,WACG,SAAO,EACP;AAAA,YACC;AAAA,UACF,EACC,SAAS,EACT,SAAS;AAAA,UACZ,YACG,SAAO,EACP;AAAA,YACC;AAAA,UACF,EACC,IAAI,CAAC,EACL,IAAI,EAAE,EACN,SAAS,EACT,SAAS;AAAA,UACZ,MACG,SAAO,EACP;AAAA,YACC;AAAA,UACF,EACC,IAAI,GAAG,EACP,SAAS,EACT,SAAS;AAAA,UACZ,WACG,SAAO,EACP;AAAA,YACC;AAAA,UACF,EACC,IAAI,EACJ,SAAS,EACT,SAAS;AAAA,UACZ,gBACG,SAAO;AAAA,YACN,YACG,SAAS,SAAO,GAAK,SAAS,SAAO,GAAK,MAAI,CAAC,CAAC,EAChD;AAAA,cACC;AAAA,YACF,EACC,SAAS;AAAA,UACd,CAAC,EACA;AAAA,YACC;AAAA,UACF,EACC,SAAS;AAAA,QACd,CAAC;AAAA,QACC,MAAI;AAAA,UACF,SAAO;AAAA,YACP,SAAW,QAAM,EAAE,SAAS;AAAA,YAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,YAChC,WAAa,QAAM,EAAE,SAAS;AAAA,UAChC,CAAC;AAAA,UACC,SAAO;AAAA,YACP,aAAe,QAAM,EAAE,SAAS;AAAA,YAChC,WAAa,QAAM,EAAE,SAAS;AAAA,YAC9B,SACG,SAAO,EACP;AAAA,cACC;AAAA,YACF,EACC,IAAI,CAAC,EACL,IAAI,GAAM;AAAA,UACf,CAAC;AAAA,UACC,SAAO;AAAA,YACP,SAAW,QAAM,EAAE,SAAS;AAAA,YAC5B,WAAa,QAAM,EAAE,SAAS;AAAA,YAC9B,aACG,MAAI,EACJ;AAAA,cACC;AAAA,YACF;AAAA,UACJ,CAAC;AAAA,UACC,SAAO;AAAA,YACP,SAAW,QAAM,EAAE,SAAS;AAAA,YAC5B,aAAe,QAAM,EAAE,SAAS;AAAA,YAChC,WACG,SAAO,EACP,SAAS,8BAA8B,EACvC,IAAI,CAAC,EACL,IAAI,GAAK;AAAA,UACd,CAAC;AAAA,QACH,CAAC;AAAA,MACH,EACC;AAAA,QACC;AAAA,MACF,EACC,SAAS;AAAA,IACd,CAAC;AAAA,EACH,EACC,IAAI,GAAG,EACP,SAAS;AAAA,EACZ,oBACG,SAAO;AAAA,IACN,gBACG,SAAO,EACP,IAAI,EACJ,SAAS,mDAAmD,EAC5D,SAAS;AAAA,IACZ,eACG,SAAO,EACP,IAAI,EACJ,SAAS,6CAA6C,EACtD,SAAS;AAAA,IACZ,oBACG,SAAO,EACP,IAAI,EACJ;AAAA,MACC;AAAA,IACF,EACC,SAAS;AAAA,EACd,CAAC,EACA,SAAS,sDAAsD,EAC/D,SAAS;AACd,CAAC;","names":[]}
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
2
  import { QuestionEntry, UpdateQuestionEntry, ListQuestionEntriesOptions, ListQuestionEntriesResponse, BulkDeleteQuestionEntriesResponse, UpdateExtendedFieldsOptions, UpdateExtendedFieldsResponse, SetQuestionEntryLabelsOptions, SetQuestionEntryLabelsResponse, BulkUpdateQuestionEntryOptions, BulkUpdateQuestionEntryResponse, QuestionEntryCreatedEnvelope, QuestionEntryDeletedEnvelope, QuestionEntryUpdatedEnvelope, QuestionEntryQuery, QueryQuestionEntriesOptions, typedQueryQuestionEntries, QuestionEntriesQueryBuilder } from './index.typings.mjs';
3
- export { AccountInfo, AccountInfoMetadata, ActionEvent, Alignment, AlignmentWithLiterals, AnchorData, AppEmbedData, AppEmbedDataAppDataOneOf, AppType, AppTypeWithLiterals, ApplicationError, AspectRatio, AspectRatioWithLiterals, AudioData, Backdrop, BackdropType, BackdropTypeWithLiterals, Background, BackgroundGradient, BackgroundImage, BackgroundType, BackgroundTypeWithLiterals, Banner, BaseEventMetadata, BlockquoteData, BookingData, Border, BorderColors, BorderWidths, BulkActionMetadata, BulkDeleteQuestionEntriesRequest, BulkUpdateQuestionEntryRequest, BulkUpdateQuestionEntryResult, BulletedListData, ButtonData, ButtonDataType, ButtonDataTypeWithLiterals, ButtonStyles, CaptionData, CardData, CardDataBackground, CardDataBackgroundType, CardDataBackgroundTypeWithLiterals, CardStyles, CellStyle, CodeBlockData, CollapsibleListData, ColorData, Colors, CommonQueryWithEntityContext, ContentFormat, ContentFormatWithLiterals, CreateQuestionEntryRequest, CreateQuestionEntryResponse, Crop, CropWithLiterals, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, Decoration, DecorationDataOneOf, DecorationType, DecorationTypeWithLiterals, DeleteQuestionEntryRequest, DeleteQuestionEntryResponse, Design, DesignTarget, DesignTargetWithLiterals, Dimensions, Direction, DirectionWithLiterals, DividerData, DividerDataAlignment, DividerDataAlignmentWithLiterals, DocumentStyle, DomainEvent, DomainEventBodyOneOf, EmbedData, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventData, EventMetadata, ExtendedFields, FieldSet, FieldSetWithLiterals, FileData, FileSource, FileSourceDataOneOf, FontFamilyData, FontSizeData, FontType, FontTypeWithLiterals, GIF, GIFData, GIFType, GIFTypeWithLiterals, GalleryData, GalleryOptions, GalleryOptionsLayout, GetQuestionEntryRequest, GetQuestionEntryResponse, Gradient, GradientType, GradientTypeWithLiterals, HTMLData, HTMLDataDataOneOf, HeadingData, Height, IdentificationData, IdentificationDataIdOneOf, Image, ImageData, ImageDataStyles, ImagePosition, ImagePositionPosition, ImagePositionPositionWithLiterals, ImagePositionWithLiterals, ImageScalingScaling, ImageScalingScalingWithLiterals, ImageStyles, Indentation, IndentationWithLiterals, InitialExpandedItems, InitialExpandedItemsWithLiterals, Item, ItemDataOneOf, ItemMetadata, ItemStyle, Label, Layout, LayoutCellData, LayoutData, LayoutDataBackground, LayoutDataBackgroundImage, LayoutDataBackgroundType, LayoutDataBackgroundTypeWithLiterals, LayoutType, LayoutTypeWithLiterals, LayoutWithLiterals, LineStyle, LineStyleWithLiterals, Link, LinkData, LinkDataOneOf, LinkPreviewData, LinkPreviewDataStyles, ListQuestionEntriesRequest, ListStyle, ListStyleWithLiterals, ListValue, MapData, MapSettings, MapType, MapTypeWithLiterals, MaskedQuestionEntry, Media, MentionData, MessageEnvelope, Metadata, Node, NodeDataOneOf, NodeStyle, NodeType, NodeTypeWithLiterals, NullValue, NullValueWithLiterals, Oembed, Option, OptionDesign, OptionLayout, OrderedListData, Orientation, OrientationWithLiterals, Origin, OriginWithLiterals, PDFSettings, PagingMetadataV2, ParagraphData, Permissions, Placement, PlacementWithLiterals, PlaybackOptions, PluginContainerData, PluginContainerDataAlignment, PluginContainerDataAlignmentWithLiterals, PluginContainerDataWidth, PluginContainerDataWidthDataOneOf, Poll, PollData, PollDataLayout, PollDesign, PollDesignBackground, PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, PollDesignBackgroundTypeWithLiterals, PollLayout, PollLayoutDirection, PollLayoutDirectionWithLiterals, PollLayoutType, PollLayoutTypeWithLiterals, Position, PositionWithLiterals, PricingData, QueryQuestionEntriesRequest, QueryQuestionEntriesRequestContentFormat, QueryQuestionEntriesRequestContentFormatWithLiterals, QueryQuestionEntriesRequestFieldSet, QueryQuestionEntriesRequestFieldSetWithLiterals, QueryQuestionEntriesResponse, QuestionEntriesQueryResult, QuestionEntryAnswerOneOf, QuestionEntryQuerySpec, QuestionStatus, QuestionStatusWithLiterals, Rel, Resizing, ResizingWithLiterals, ResponsivenessBehaviour, ResponsivenessBehaviourWithLiterals, RestoreInfo, RibbonStyles, RichContent, Scaling, ScalingWithLiterals, SetQuestionEntryLabelsRequest, Settings, ShapeData, ShapeDataStyles, SortOrder, SortOrderWithLiterals, Sorting, Source, SourceWithLiterals, Spoiler, SpoilerData, Stop, Styles, StylesBorder, StylesPosition, StylesPositionWithLiterals, TableCellData, TableData, Target, TargetWithLiterals, TextAlignment, TextAlignmentWithLiterals, TextData, TextNodeStyle, TextStyle, Thumbnails, ThumbnailsAlignment, ThumbnailsAlignmentWithLiterals, TocData, Type, TypeWithLiterals, UpdateExtendedFieldsRequest, UpdateQuestionEntryRequest, UpdateQuestionEntryResponse, VerticalAlignment, VerticalAlignmentAlignment, VerticalAlignmentAlignmentWithLiterals, VerticalAlignmentWithLiterals, Video, VideoData, ViewMode, ViewModeWithLiterals, ViewRole, ViewRoleWithLiterals, VoteRole, VoteRoleWithLiterals, WebhookIdentityType, WebhookIdentityTypeWithLiterals, Width, WidthType, WidthTypeWithLiterals, WidthWithLiterals, utils } from './index.typings.mjs';
3
+ export { AccountInfo, AccountInfoMetadata, ActionEvent, Alignment, AlignmentWithLiterals, AnchorData, AppEmbedData, AppEmbedDataAppDataOneOf, AppType, AppTypeWithLiterals, ApplicationError, AspectRatio, AspectRatioWithLiterals, AudioData, Backdrop, BackdropType, BackdropTypeWithLiterals, Background, BackgroundGradient, BackgroundImage, BackgroundType, BackgroundTypeWithLiterals, Banner, BaseEventMetadata, BlockquoteData, BookingData, Border, BorderColors, BorderWidths, BulkActionMetadata, BulkDeleteQuestionEntriesRequest, BulkUpdateQuestionEntryRequest, BulkUpdateQuestionEntryResult, BulletedListData, ButtonData, ButtonDataType, ButtonDataTypeWithLiterals, ButtonStyles, CaptionData, CardData, CardDataBackground, CardDataBackgroundType, CardDataBackgroundTypeWithLiterals, CardStyles, CellStyle, CodeBlockData, CollapsibleListData, ColorData, Colors, ColumnSize, ColumnSizeWithLiterals, CommonQueryWithEntityContext, ContentFormat, ContentFormatWithLiterals, CreateQuestionEntryRequest, CreateQuestionEntryResponse, Crop, CropWithLiterals, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, Decoration, DecorationDataOneOf, DecorationType, DecorationTypeWithLiterals, DeleteQuestionEntryRequest, DeleteQuestionEntryResponse, Design, DesignTarget, DesignTargetWithLiterals, Dimensions, Direction, DirectionWithLiterals, DividerData, DividerDataAlignment, DividerDataAlignmentWithLiterals, DocumentStyle, DomainEvent, DomainEventBodyOneOf, EmbedData, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventData, EventMetadata, ExtendedFields, FieldSet, FieldSetWithLiterals, FileData, FileSource, FileSourceDataOneOf, FontFamilyData, FontSizeData, FontType, FontTypeWithLiterals, GIF, GIFData, GIFType, GIFTypeWithLiterals, GalleryData, GalleryOptions, GalleryOptionsLayout, GetQuestionEntryRequest, GetQuestionEntryResponse, Gradient, GradientType, GradientTypeWithLiterals, HTMLData, HTMLDataDataOneOf, HeadingData, Height, IdentificationData, IdentificationDataIdOneOf, Image, ImageData, ImageDataStyles, ImagePosition, ImagePositionPosition, ImagePositionPositionWithLiterals, ImagePositionWithLiterals, ImageScalingScaling, ImageScalingScalingWithLiterals, ImageStyles, Indentation, IndentationWithLiterals, InitialExpandedItems, InitialExpandedItemsWithLiterals, Item, ItemDataOneOf, ItemMetadata, ItemStyle, Label, Layout, LayoutCellData, LayoutData, LayoutDataBackground, LayoutDataBackgroundImage, LayoutDataBackgroundType, LayoutDataBackgroundTypeWithLiterals, LayoutType, LayoutTypeWithLiterals, LayoutWithLiterals, LineStyle, LineStyleWithLiterals, Link, LinkData, LinkDataOneOf, LinkPreviewData, LinkPreviewDataStyles, ListQuestionEntriesRequest, ListStyle, ListStyleWithLiterals, ListValue, MapData, MapSettings, MapType, MapTypeWithLiterals, MaskedQuestionEntry, Media, MentionData, MessageEnvelope, Metadata, Node, NodeDataOneOf, NodeStyle, NodeType, NodeTypeWithLiterals, NullValue, NullValueWithLiterals, Oembed, Option, OptionDesign, OptionLayout, OrderedListData, Orientation, OrientationWithLiterals, Origin, OriginWithLiterals, PDFSettings, PagingMetadataV2, ParagraphData, Permissions, Placement, PlacementWithLiterals, PlaybackOptions, PluginContainerData, PluginContainerDataAlignment, PluginContainerDataAlignmentWithLiterals, PluginContainerDataWidth, PluginContainerDataWidthDataOneOf, Poll, PollData, PollDataLayout, PollDesign, PollDesignBackground, PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, PollDesignBackgroundTypeWithLiterals, PollLayout, PollLayoutDirection, PollLayoutDirectionWithLiterals, PollLayoutType, PollLayoutTypeWithLiterals, Position, PositionWithLiterals, PricingData, QueryQuestionEntriesRequest, QueryQuestionEntriesRequestContentFormat, QueryQuestionEntriesRequestContentFormatWithLiterals, QueryQuestionEntriesRequestFieldSet, QueryQuestionEntriesRequestFieldSetWithLiterals, QueryQuestionEntriesResponse, QuestionEntriesQueryResult, QuestionEntryAnswerOneOf, QuestionEntryQuerySpec, QuestionStatus, QuestionStatusWithLiterals, Rel, Resizing, ResizingWithLiterals, ResponsivenessBehaviour, ResponsivenessBehaviourWithLiterals, RestoreInfo, RibbonStyles, RichContent, Scaling, ScalingWithLiterals, SetQuestionEntryLabelsRequest, Settings, ShapeData, ShapeDataStyles, SmartBlockCellData, SmartBlockData, SmartBlockDataType, SmartBlockDataTypeWithLiterals, SortOrder, SortOrderWithLiterals, Sorting, Source, SourceWithLiterals, Spoiler, SpoilerData, Stop, Styles, StylesBorder, StylesPosition, StylesPositionWithLiterals, TableCellData, TableData, Target, TargetWithLiterals, TextAlignment, TextAlignmentWithLiterals, TextData, TextNodeStyle, TextStyle, Thumbnails, ThumbnailsAlignment, ThumbnailsAlignmentWithLiterals, TocData, Type, TypeWithLiterals, UpdateExtendedFieldsRequest, UpdateQuestionEntryRequest, UpdateQuestionEntryResponse, VerticalAlignment, VerticalAlignmentAlignment, VerticalAlignmentAlignmentWithLiterals, VerticalAlignmentWithLiterals, Video, VideoData, ViewMode, ViewModeWithLiterals, ViewRole, ViewRoleWithLiterals, VoteRole, VoteRoleWithLiterals, WebhookIdentityType, WebhookIdentityTypeWithLiterals, Width, WidthType, WidthTypeWithLiterals, WidthWithLiterals, utils } from './index.typings.mjs';
4
4
 
5
5
  declare function createQuestionEntry$1(httpClient: HttpClient): CreateQuestionEntrySignature;
6
6
  interface CreateQuestionEntrySignature {
@@ -268,6 +268,9 @@ function createQuestionEntry(payload) {
268
268
  },
269
269
  { path: "questionEntry.richContent.nodes.tocData.fontSize" },
270
270
  { path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
271
+ {
272
+ path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
273
+ },
271
274
  { path: "questionEntry.labels.sortOrder" }
272
275
  ]
273
276
  }
@@ -404,6 +407,9 @@ function createQuestionEntry(payload) {
404
407
  },
405
408
  { path: "questionEntry.richContent.nodes.tocData.fontSize" },
406
409
  { path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
410
+ {
411
+ path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
412
+ },
407
413
  { path: "questionEntry.labels.sortOrder" }
408
414
  ]
409
415
  }
@@ -547,6 +553,9 @@ function getQuestionEntry(payload) {
547
553
  },
548
554
  { path: "questionEntry.richContent.nodes.tocData.fontSize" },
549
555
  { path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
556
+ {
557
+ path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
558
+ },
550
559
  { path: "questionEntry.labels.sortOrder" }
551
560
  ]
552
561
  }
@@ -668,6 +677,9 @@ function updateQuestionEntry(payload) {
668
677
  },
669
678
  { path: "questionEntry.richContent.nodes.tocData.fontSize" },
670
679
  { path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
680
+ {
681
+ path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
682
+ },
671
683
  { path: "questionEntry.labels.sortOrder" }
672
684
  ]
673
685
  }
@@ -804,6 +816,9 @@ function updateQuestionEntry(payload) {
804
816
  },
805
817
  { path: "questionEntry.richContent.nodes.tocData.fontSize" },
806
818
  { path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
819
+ {
820
+ path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
821
+ },
807
822
  { path: "questionEntry.labels.sortOrder" }
808
823
  ]
809
824
  }
@@ -968,6 +983,9 @@ function listQuestionEntries(payload) {
968
983
  },
969
984
  { path: "questionEntries.richContent.nodes.tocData.fontSize" },
970
985
  { path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
986
+ {
987
+ path: "questionEntries.richContent.nodes.smartBlockCellData.shape.duration"
988
+ },
971
989
  { path: "questionEntries.labels.sortOrder" }
972
990
  ]
973
991
  }
@@ -1111,6 +1129,9 @@ function queryQuestionEntries(payload) {
1111
1129
  },
1112
1130
  { path: "questionEntries.richContent.nodes.tocData.fontSize" },
1113
1131
  { path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
1132
+ {
1133
+ path: "questionEntries.richContent.nodes.smartBlockCellData.shape.duration"
1134
+ },
1114
1135
  { path: "questionEntries.labels.sortOrder" }
1115
1136
  ]
1116
1137
  }
@@ -1275,6 +1296,9 @@ function updateExtendedFields(payload) {
1275
1296
  },
1276
1297
  { path: "questionEntry.richContent.nodes.tocData.fontSize" },
1277
1298
  { path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
1299
+ {
1300
+ path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
1301
+ },
1278
1302
  { path: "questionEntry.labels.sortOrder" }
1279
1303
  ]
1280
1304
  }
@@ -1424,6 +1448,9 @@ function setQuestionEntryLabels(payload) {
1424
1448
  },
1425
1449
  { path: "questionEntry.richContent.nodes.tocData.fontSize" },
1426
1450
  { path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
1451
+ {
1452
+ path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
1453
+ },
1427
1454
  { path: "questionEntry.labels.sortOrder" }
1428
1455
  ]
1429
1456
  }
@@ -1565,6 +1592,9 @@ function bulkUpdateQuestionEntry(payload) {
1565
1592
  {
1566
1593
  path: "questionEntries.questionEntry.richContent.nodes.tocData.itemSpacing"
1567
1594
  },
1595
+ {
1596
+ path: "questionEntries.questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
1597
+ },
1568
1598
  { path: "questionEntries.questionEntry.labels.sortOrder" }
1569
1599
  ]
1570
1600
  }
@@ -1709,6 +1739,9 @@ function bulkUpdateQuestionEntry(payload) {
1709
1739
  {
1710
1740
  path: "results.questionEntry.richContent.nodes.tocData.itemSpacing"
1711
1741
  },
1742
+ {
1743
+ path: "results.questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
1744
+ },
1712
1745
  { path: "results.questionEntry.labels.sortOrder" }
1713
1746
  ]
1714
1747
  }
@@ -1759,6 +1792,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
1759
1792
  NodeType2["SHAPE"] = "SHAPE";
1760
1793
  NodeType2["CARD"] = "CARD";
1761
1794
  NodeType2["TOC"] = "TOC";
1795
+ NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
1796
+ NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
1762
1797
  return NodeType2;
1763
1798
  })(NodeType || {});
1764
1799
  var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
@@ -2086,6 +2121,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
2086
2121
  Indentation2["FLAT"] = "FLAT";
2087
2122
  return Indentation2;
2088
2123
  })(Indentation || {});
2124
+ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
2125
+ SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
2126
+ SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
2127
+ SmartBlockDataType2["STATS"] = "STATS";
2128
+ SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
2129
+ SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
2130
+ SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
2131
+ SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
2132
+ SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
2133
+ SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
2134
+ SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
2135
+ SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
2136
+ SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
2137
+ SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
2138
+ SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
2139
+ return SmartBlockDataType2;
2140
+ })(SmartBlockDataType || {});
2141
+ var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
2142
+ ColumnSize2["SMALL"] = "SMALL";
2143
+ ColumnSize2["MEDIUM"] = "MEDIUM";
2144
+ ColumnSize2["LARGE"] = "LARGE";
2145
+ ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
2146
+ return ColumnSize2;
2147
+ })(ColumnSize || {});
2089
2148
  var QuestionStatus = /* @__PURE__ */ ((QuestionStatus2) => {
2090
2149
  QuestionStatus2["UNKNOWN"] = "UNKNOWN";
2091
2150
  QuestionStatus2["VISIBLE"] = "VISIBLE";
@@ -2674,6 +2733,9 @@ var onQuestionEntryCreated = EventDefinition(
2674
2733
  },
2675
2734
  { path: "entity.richContent.nodes.tocData.fontSize" },
2676
2735
  { path: "entity.richContent.nodes.tocData.itemSpacing" },
2736
+ {
2737
+ path: "entity.richContent.nodes.smartBlockCellData.shape.duration"
2738
+ },
2677
2739
  { path: "entity.labels.sortOrder" }
2678
2740
  ]
2679
2741
  }
@@ -2789,6 +2851,9 @@ var onQuestionEntryDeleted = EventDefinition(
2789
2851
  },
2790
2852
  { path: "undefined.richContent.nodes.tocData.fontSize" },
2791
2853
  { path: "undefined.richContent.nodes.tocData.itemSpacing" },
2854
+ {
2855
+ path: "undefined.richContent.nodes.smartBlockCellData.shape.duration"
2856
+ },
2792
2857
  { path: "undefined.labels.sortOrder" }
2793
2858
  ]
2794
2859
  }
@@ -2896,6 +2961,9 @@ var onQuestionEntryUpdated = EventDefinition(
2896
2961
  },
2897
2962
  { path: "entity.richContent.nodes.tocData.fontSize" },
2898
2963
  { path: "entity.richContent.nodes.tocData.itemSpacing" },
2964
+ {
2965
+ path: "entity.richContent.nodes.smartBlockCellData.shape.duration"
2966
+ },
2899
2967
  { path: "entity.labels.sortOrder" }
2900
2968
  ]
2901
2969
  }
@@ -2945,6 +3013,7 @@ export {
2945
3013
  BackgroundType,
2946
3014
  ButtonDataType,
2947
3015
  CardDataBackgroundType,
3016
+ ColumnSize,
2948
3017
  ContentFormat,
2949
3018
  Crop,
2950
3019
  DecorationType,
@@ -2982,6 +3051,7 @@ export {
2982
3051
  Resizing,
2983
3052
  ResponsivenessBehaviour,
2984
3053
  Scaling,
3054
+ SmartBlockDataType,
2985
3055
  SortOrder,
2986
3056
  Source,
2987
3057
  StylesPosition,