{"version":3,"sources":["../../src/promote-seo-v2-llms-txt-llms-txt.schemas.ts"],"sourcesContent":["import * as z from 'zod';\n\nexport const GetLlmsTxtRequest = z.object({\n  options: z\n    .object({\n      subdomain: z\n        .string()\n        .describe(\n          'Subdomain of the requested `llms.txt file`. For example, `www`, `es`, `fr`. Default: `www`.'\n        )\n        .max(63)\n        .optional(),\n    })\n    .optional(),\n});\nexport const GetLlmsTxtResponse = z.object({\n  llmsTxt: z\n    .object({\n      content: z\n        .string()\n        .describe('CFull text content of the `llms.txt` file.')\n        .max(720000)\n        .optional(),\n      default: z\n        .boolean()\n        .describe(\"Whether this `llms.txt` file uses Wix's default content.\")\n        .optional(),\n      subdomain: z\n        .string()\n        .describe(\n          \"Target subdomain for the `llms.txt` file (for example, 'www', 'es', 'fr'). Default: 'www'\"\n        )\n        .max(63)\n        .optional(),\n      hidden: z\n        .boolean()\n        .describe(\n          'Whether the llms.txt file should be hidden from public access.'\n        )\n        .optional()\n        .nullable(),\n      manuallyEdited: z\n        .boolean()\n        .describe(\n          \"Whether the content was manually edited by the user. If `true` in DB, update/append requests must also set `manually_edited=true` or they'll be rejected with `FAILED_PRECONDITION`.\"\n        )\n        .optional(),\n      detectedLanguage: z\n        .string()\n        .describe(\n          'ISO 639-1 language code detected for the site (e.g. en, fr). Used to localize the MCP documentation section when serving llms.txt.'\n        )\n        .max(2)\n        .optional(),\n    })\n    .describe('Retrieved `llms.txt` file entity.')\n    .optional(),\n});\nexport const UpdateLlmsTxtRequest = z.object({\n  options: z\n    .object({\n      llmsTxt: z\n        .object({\n          content: z\n            .string()\n            .describe('CFull text content of the `llms.txt` file.')\n            .max(720000)\n            .optional(),\n          default: z\n            .boolean()\n            .describe(\n              \"Whether this `llms.txt` file uses Wix's default content.\"\n            )\n            .optional(),\n          subdomain: z\n            .string()\n            .describe(\n              \"Target subdomain for the `llms.txt` file (for example, 'www', 'es', 'fr'). Default: 'www'\"\n            )\n            .max(63)\n            .optional(),\n          hidden: z\n            .boolean()\n            .describe(\n              'Whether the llms.txt file should be hidden from public access.'\n            )\n            .optional()\n            .nullable(),\n          manuallyEdited: z\n            .boolean()\n            .describe(\n              \"Whether the content was manually edited by the user. If `true` in DB, update/append requests must also set `manually_edited=true` or they'll be rejected with `FAILED_PRECONDITION`.\"\n            )\n            .optional(),\n          detectedLanguage: z\n            .string()\n            .describe(\n              'ISO 639-1 language code detected for the site (e.g. en, fr). Used to localize the MCP documentation section when serving llms.txt.'\n            )\n            .max(2)\n            .optional(),\n        })\n        .describe('`llms.txt` file to update.')\n        .optional(),\n    })\n    .optional(),\n});\nexport const UpdateLlmsTxtResponse = z.object({\n  llmsTxt: z\n    .object({\n      content: z\n        .string()\n        .describe('CFull text content of the `llms.txt` file.')\n        .max(720000)\n        .optional(),\n      default: z\n        .boolean()\n        .describe(\"Whether this `llms.txt` file uses Wix's default content.\")\n        .optional(),\n      subdomain: z\n        .string()\n        .describe(\n          \"Target subdomain for the `llms.txt` file (for example, 'www', 'es', 'fr'). Default: 'www'\"\n        )\n        .max(63)\n        .optional(),\n      hidden: z\n        .boolean()\n        .describe(\n          'Whether the llms.txt file should be hidden from public access.'\n        )\n        .optional()\n        .nullable(),\n      manuallyEdited: z\n        .boolean()\n        .describe(\n          \"Whether the content was manually edited by the user. If `true` in DB, update/append requests must also set `manually_edited=true` or they'll be rejected with `FAILED_PRECONDITION`.\"\n        )\n        .optional(),\n      detectedLanguage: z\n        .string()\n        .describe(\n          'ISO 639-1 language code detected for the site (e.g. en, fr). Used to localize the MCP documentation section when serving llms.txt.'\n        )\n        .max(2)\n        .optional(),\n    })\n    .describe('Updated Llms txt object')\n    .optional(),\n});\nexport const AppendLlmsTxtRequest = z.object({\n  options: z\n    .object({\n      llmsTxt: z\n        .object({\n          content: z\n            .string()\n            .describe('CFull text content of the `llms.txt` file.')\n            .max(720000)\n            .optional(),\n          default: z\n            .boolean()\n            .describe(\n              \"Whether this `llms.txt` file uses Wix's default content.\"\n            )\n            .optional(),\n          subdomain: z\n            .string()\n            .describe(\n              \"Target subdomain for the `llms.txt` file (for example, 'www', 'es', 'fr'). Default: 'www'\"\n            )\n            .max(63)\n            .optional(),\n          hidden: z\n            .boolean()\n            .describe(\n              'Whether the llms.txt file should be hidden from public access.'\n            )\n            .optional()\n            .nullable(),\n          manuallyEdited: z\n            .boolean()\n            .describe(\n              \"Whether the content was manually edited by the user. If `true` in DB, update/append requests must also set `manually_edited=true` or they'll be rejected with `FAILED_PRECONDITION`.\"\n            )\n            .optional(),\n          detectedLanguage: z\n            .string()\n            .describe(\n              'ISO 639-1 language code detected for the site (e.g. en, fr). Used to localize the MCP documentation section when serving llms.txt.'\n            )\n            .max(2)\n            .optional(),\n        })\n        .describe('`llms.txt` file to append.')\n        .optional(),\n    })\n    .optional(),\n});\nexport const AppendLlmsTxtResponse = z.object({\n  llmsTxt: z\n    .object({\n      content: z\n        .string()\n        .describe('CFull text content of the `llms.txt` file.')\n        .max(720000)\n        .optional(),\n      default: z\n        .boolean()\n        .describe(\"Whether this `llms.txt` file uses Wix's default content.\")\n        .optional(),\n      subdomain: z\n        .string()\n        .describe(\n          \"Target subdomain for the `llms.txt` file (for example, 'www', 'es', 'fr'). Default: 'www'\"\n        )\n        .max(63)\n        .optional(),\n      hidden: z\n        .boolean()\n        .describe(\n          'Whether the llms.txt file should be hidden from public access.'\n        )\n        .optional()\n        .nullable(),\n      manuallyEdited: z\n        .boolean()\n        .describe(\n          \"Whether the content was manually edited by the user. If `true` in DB, update/append requests must also set `manually_edited=true` or they'll be rejected with `FAILED_PRECONDITION`.\"\n        )\n        .optional(),\n      detectedLanguage: z\n        .string()\n        .describe(\n          'ISO 639-1 language code detected for the site (e.g. en, fr). Used to localize the MCP documentation section when serving llms.txt.'\n        )\n        .max(2)\n        .optional(),\n    })\n    .describe('Appended `llms.txt` file.')\n    .optional(),\n});\nexport const UpdateLlmsTxtHiddenStatusRequest = z.object({\n  options: z\n    .object({\n      hidden: z\n        .boolean()\n        .describe(\n          'Hidden state to set for the Llms.txt file.\\nIf true, the llms.txt file will be hidden from public access (returns 404).\\nIf false, the llms.txt file will be publicly accessible.'\n        )\n        .optional(),\n      subdomain: z\n        .string()\n        .describe(\n          'Subdomain of Llms.txt, for example `www`, `es`, `fr`. Default is `www`.'\n        )\n        .max(63)\n        .optional(),\n    })\n    .optional(),\n});\nexport const UpdateLlmsTxtHiddenStatusResponse = z.object({\n  llmsTxt: z\n    .object({\n      content: z\n        .string()\n        .describe('CFull text content of the `llms.txt` file.')\n        .max(720000)\n        .optional(),\n      default: z\n        .boolean()\n        .describe(\"Whether this `llms.txt` file uses Wix's default content.\")\n        .optional(),\n      subdomain: z\n        .string()\n        .describe(\n          \"Target subdomain for the `llms.txt` file (for example, 'www', 'es', 'fr'). Default: 'www'\"\n        )\n        .max(63)\n        .optional(),\n      hidden: z\n        .boolean()\n        .describe(\n          'Whether the llms.txt file should be hidden from public access.'\n        )\n        .optional()\n        .nullable(),\n      manuallyEdited: z\n        .boolean()\n        .describe(\n          \"Whether the content was manually edited by the user. If `true` in DB, update/append requests must also set `manually_edited=true` or they'll be rejected with `FAILED_PRECONDITION`.\"\n        )\n        .optional(),\n      detectedLanguage: z\n        .string()\n        .describe(\n          'ISO 639-1 language code detected for the site (e.g. en, fr). Used to localize the MCP documentation section when serving llms.txt.'\n        )\n        .max(2)\n        .optional(),\n    })\n    .describe('Updated Llms txt object with new hidden state')\n    .optional(),\n});\n"],"mappings":"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","names":[]}