@wix/auto_sdk_faq_question-entry 1.0.41 → 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.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +129 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +156 -5
- package/build/cjs/index.typings.js +114 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +156 -5
- package/build/cjs/meta.js +114 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +631 -0
- package/build/cjs/schemas.js +1064 -0
- package/build/cjs/schemas.js.map +1 -0
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +125 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +156 -5
- package/build/es/index.typings.mjs +110 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +156 -5
- package/build/es/meta.mjs +110 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +631 -0
- package/build/es/schemas.mjs +1008 -0
- package/build/es/schemas.mjs.map +1 -0
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +129 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +156 -5
- package/build/internal/cjs/index.typings.js +114 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +156 -5
- package/build/internal/cjs/meta.js +114 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +631 -0
- package/build/internal/cjs/schemas.js +1064 -0
- package/build/internal/cjs/schemas.js.map +1 -0
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +125 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +156 -5
- package/build/internal/es/index.typings.mjs +110 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +156 -5
- package/build/internal/es/meta.mjs +110 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +631 -0
- package/build/internal/es/schemas.mjs +1008 -0
- package/build/internal/es/schemas.mjs.map +1 -0
- package/package.json +12 -5
- 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":"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","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, 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, 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, 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 {
|
|
@@ -266,6 +266,11 @@ function createQuestionEntry(payload) {
|
|
|
266
266
|
{
|
|
267
267
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
268
268
|
},
|
|
269
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
270
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
271
|
+
{
|
|
272
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
273
|
+
},
|
|
269
274
|
{ path: "questionEntry.labels.sortOrder" }
|
|
270
275
|
]
|
|
271
276
|
}
|
|
@@ -400,6 +405,11 @@ function createQuestionEntry(payload) {
|
|
|
400
405
|
{
|
|
401
406
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
402
407
|
},
|
|
408
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
409
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
410
|
+
{
|
|
411
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
412
|
+
},
|
|
403
413
|
{ path: "questionEntry.labels.sortOrder" }
|
|
404
414
|
]
|
|
405
415
|
}
|
|
@@ -541,6 +551,11 @@ function getQuestionEntry(payload) {
|
|
|
541
551
|
{
|
|
542
552
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
543
553
|
},
|
|
554
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
555
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
556
|
+
{
|
|
557
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
558
|
+
},
|
|
544
559
|
{ path: "questionEntry.labels.sortOrder" }
|
|
545
560
|
]
|
|
546
561
|
}
|
|
@@ -660,6 +675,11 @@ function updateQuestionEntry(payload) {
|
|
|
660
675
|
{
|
|
661
676
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
662
677
|
},
|
|
678
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
679
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
680
|
+
{
|
|
681
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
682
|
+
},
|
|
663
683
|
{ path: "questionEntry.labels.sortOrder" }
|
|
664
684
|
]
|
|
665
685
|
}
|
|
@@ -794,6 +814,11 @@ function updateQuestionEntry(payload) {
|
|
|
794
814
|
{
|
|
795
815
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
796
816
|
},
|
|
817
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
818
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
819
|
+
{
|
|
820
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
821
|
+
},
|
|
797
822
|
{ path: "questionEntry.labels.sortOrder" }
|
|
798
823
|
]
|
|
799
824
|
}
|
|
@@ -956,6 +981,11 @@ function listQuestionEntries(payload) {
|
|
|
956
981
|
{
|
|
957
982
|
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
958
983
|
},
|
|
984
|
+
{ path: "questionEntries.richContent.nodes.tocData.fontSize" },
|
|
985
|
+
{ path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
|
|
986
|
+
{
|
|
987
|
+
path: "questionEntries.richContent.nodes.smartBlockCellData.shape.duration"
|
|
988
|
+
},
|
|
959
989
|
{ path: "questionEntries.labels.sortOrder" }
|
|
960
990
|
]
|
|
961
991
|
}
|
|
@@ -1097,6 +1127,11 @@ function queryQuestionEntries(payload) {
|
|
|
1097
1127
|
{
|
|
1098
1128
|
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1099
1129
|
},
|
|
1130
|
+
{ path: "questionEntries.richContent.nodes.tocData.fontSize" },
|
|
1131
|
+
{ path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
|
|
1132
|
+
{
|
|
1133
|
+
path: "questionEntries.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1134
|
+
},
|
|
1100
1135
|
{ path: "questionEntries.labels.sortOrder" }
|
|
1101
1136
|
]
|
|
1102
1137
|
}
|
|
@@ -1259,6 +1294,11 @@ function updateExtendedFields(payload) {
|
|
|
1259
1294
|
{
|
|
1260
1295
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1261
1296
|
},
|
|
1297
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
1298
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
1299
|
+
{
|
|
1300
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1301
|
+
},
|
|
1262
1302
|
{ path: "questionEntry.labels.sortOrder" }
|
|
1263
1303
|
]
|
|
1264
1304
|
}
|
|
@@ -1406,6 +1446,11 @@ function setQuestionEntryLabels(payload) {
|
|
|
1406
1446
|
{
|
|
1407
1447
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1408
1448
|
},
|
|
1449
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
1450
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
1451
|
+
{
|
|
1452
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1453
|
+
},
|
|
1409
1454
|
{ path: "questionEntry.labels.sortOrder" }
|
|
1410
1455
|
]
|
|
1411
1456
|
}
|
|
@@ -1541,6 +1586,15 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1541
1586
|
{
|
|
1542
1587
|
path: "questionEntries.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1543
1588
|
},
|
|
1589
|
+
{
|
|
1590
|
+
path: "questionEntries.questionEntry.richContent.nodes.tocData.fontSize"
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
path: "questionEntries.questionEntry.richContent.nodes.tocData.itemSpacing"
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
path: "questionEntries.questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1597
|
+
},
|
|
1544
1598
|
{ path: "questionEntries.questionEntry.labels.sortOrder" }
|
|
1545
1599
|
]
|
|
1546
1600
|
}
|
|
@@ -1679,6 +1733,15 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1679
1733
|
{
|
|
1680
1734
|
path: "results.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1681
1735
|
},
|
|
1736
|
+
{
|
|
1737
|
+
path: "results.questionEntry.richContent.nodes.tocData.fontSize"
|
|
1738
|
+
},
|
|
1739
|
+
{
|
|
1740
|
+
path: "results.questionEntry.richContent.nodes.tocData.itemSpacing"
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
path: "results.questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1744
|
+
},
|
|
1682
1745
|
{ path: "results.questionEntry.labels.sortOrder" }
|
|
1683
1746
|
]
|
|
1684
1747
|
}
|
|
@@ -1728,6 +1791,9 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1728
1791
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1729
1792
|
NodeType2["SHAPE"] = "SHAPE";
|
|
1730
1793
|
NodeType2["CARD"] = "CARD";
|
|
1794
|
+
NodeType2["TOC"] = "TOC";
|
|
1795
|
+
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
1796
|
+
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
1731
1797
|
return NodeType2;
|
|
1732
1798
|
})(NodeType || {});
|
|
1733
1799
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -1838,6 +1904,7 @@ var Source = /* @__PURE__ */ ((Source2) => {
|
|
|
1838
1904
|
Source2["HTML"] = "HTML";
|
|
1839
1905
|
Source2["ADSENSE"] = "ADSENSE";
|
|
1840
1906
|
Source2["AI"] = "AI";
|
|
1907
|
+
Source2["AI_WIDGET"] = "AI_WIDGET";
|
|
1841
1908
|
return Source2;
|
|
1842
1909
|
})(Source || {});
|
|
1843
1910
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -2039,6 +2106,45 @@ var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
|
|
|
2039
2106
|
CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2040
2107
|
return CardDataBackgroundType2;
|
|
2041
2108
|
})(CardDataBackgroundType || {});
|
|
2109
|
+
var ListStyle = /* @__PURE__ */ ((ListStyle2) => {
|
|
2110
|
+
ListStyle2["PLAIN"] = "PLAIN";
|
|
2111
|
+
ListStyle2["NUMBERED"] = "NUMBERED";
|
|
2112
|
+
ListStyle2["LETTERS"] = "LETTERS";
|
|
2113
|
+
ListStyle2["ROMAN"] = "ROMAN";
|
|
2114
|
+
ListStyle2["BULLETED"] = "BULLETED";
|
|
2115
|
+
ListStyle2["ALPHABETICAL_INDEX"] = "ALPHABETICAL_INDEX";
|
|
2116
|
+
ListStyle2["ALPHABETICAL_INDEX_COMPACT"] = "ALPHABETICAL_INDEX_COMPACT";
|
|
2117
|
+
return ListStyle2;
|
|
2118
|
+
})(ListStyle || {});
|
|
2119
|
+
var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
2120
|
+
Indentation2["NESTED"] = "NESTED";
|
|
2121
|
+
Indentation2["FLAT"] = "FLAT";
|
|
2122
|
+
return Indentation2;
|
|
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 || {});
|
|
2042
2148
|
var QuestionStatus = /* @__PURE__ */ ((QuestionStatus2) => {
|
|
2043
2149
|
QuestionStatus2["UNKNOWN"] = "UNKNOWN";
|
|
2044
2150
|
QuestionStatus2["VISIBLE"] = "VISIBLE";
|
|
@@ -2625,6 +2731,11 @@ var onQuestionEntryCreated = EventDefinition(
|
|
|
2625
2731
|
{
|
|
2626
2732
|
path: "entity.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2627
2733
|
},
|
|
2734
|
+
{ path: "entity.richContent.nodes.tocData.fontSize" },
|
|
2735
|
+
{ path: "entity.richContent.nodes.tocData.itemSpacing" },
|
|
2736
|
+
{
|
|
2737
|
+
path: "entity.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2738
|
+
},
|
|
2628
2739
|
{ path: "entity.labels.sortOrder" }
|
|
2629
2740
|
]
|
|
2630
2741
|
}
|
|
@@ -2738,6 +2849,11 @@ var onQuestionEntryDeleted = EventDefinition(
|
|
|
2738
2849
|
{
|
|
2739
2850
|
path: "undefined.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2740
2851
|
},
|
|
2852
|
+
{ path: "undefined.richContent.nodes.tocData.fontSize" },
|
|
2853
|
+
{ path: "undefined.richContent.nodes.tocData.itemSpacing" },
|
|
2854
|
+
{
|
|
2855
|
+
path: "undefined.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2856
|
+
},
|
|
2741
2857
|
{ path: "undefined.labels.sortOrder" }
|
|
2742
2858
|
]
|
|
2743
2859
|
}
|
|
@@ -2843,6 +2959,11 @@ var onQuestionEntryUpdated = EventDefinition(
|
|
|
2843
2959
|
{
|
|
2844
2960
|
path: "entity.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2845
2961
|
},
|
|
2962
|
+
{ path: "entity.richContent.nodes.tocData.fontSize" },
|
|
2963
|
+
{ path: "entity.richContent.nodes.tocData.itemSpacing" },
|
|
2964
|
+
{
|
|
2965
|
+
path: "entity.richContent.nodes.smartBlockCellData.shape.duration"
|
|
2966
|
+
},
|
|
2846
2967
|
{ path: "entity.labels.sortOrder" }
|
|
2847
2968
|
]
|
|
2848
2969
|
}
|
|
@@ -2892,6 +3013,7 @@ export {
|
|
|
2892
3013
|
BackgroundType,
|
|
2893
3014
|
ButtonDataType,
|
|
2894
3015
|
CardDataBackgroundType,
|
|
3016
|
+
ColumnSize,
|
|
2895
3017
|
ContentFormat,
|
|
2896
3018
|
Crop,
|
|
2897
3019
|
DecorationType,
|
|
@@ -2905,11 +3027,13 @@ export {
|
|
|
2905
3027
|
ImagePosition,
|
|
2906
3028
|
ImagePositionPosition,
|
|
2907
3029
|
ImageScalingScaling,
|
|
3030
|
+
Indentation,
|
|
2908
3031
|
InitialExpandedItems,
|
|
2909
3032
|
Layout,
|
|
2910
3033
|
LayoutDataBackgroundType,
|
|
2911
3034
|
LayoutType,
|
|
2912
3035
|
LineStyle,
|
|
3036
|
+
ListStyle,
|
|
2913
3037
|
MapType,
|
|
2914
3038
|
NodeType,
|
|
2915
3039
|
NullValue,
|
|
@@ -2927,6 +3051,7 @@ export {
|
|
|
2927
3051
|
Resizing,
|
|
2928
3052
|
ResponsivenessBehaviour,
|
|
2929
3053
|
Scaling,
|
|
3054
|
+
SmartBlockDataType,
|
|
2930
3055
|
SortOrder,
|
|
2931
3056
|
Source,
|
|
2932
3057
|
StylesPosition,
|