{"version":3,"sources":["../../src/multilingual-settings-v2-locale-settings-locale-settings.schemas.ts"],"sourcesContent":["import * as z from 'zod';\n\nexport const GetLocaleSettingsRequest = z.object({});\nexport const GetLocaleSettingsResponse = z.object({\n  localeSettings: z\n    .object({\n      revision: z\n        .string()\n        .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n        .describe(\n          'Revision number, which increments by 1 each time the locale settings are updated. To prevent conflicting changes, the existing revision must be passed when updating the locale settings.'\n        )\n        .optional()\n        .nullable(),\n      _createdDate: z\n        .date()\n        .describe('Date and time the locale settings were created.')\n        .optional()\n        .nullable(),\n      _updatedDate: z\n        .date()\n        .describe('Date and time the locale settings were last updated.')\n        .optional()\n        .nullable(),\n      multilingualModeEnabled: z\n        .boolean()\n        .describe(\n          'Whether multilingual mode is enabled for the site. When enabled, you can create secondary locales.\\n\\nDefault: `false`'\n        )\n        .optional()\n        .nullable(),\n      autoSwitch: z\n        .boolean()\n        .describe(\n          'Whether the live site automatically opens in a secondary locale if the\\nsite visitor\\'s browser is set to that locale.\\n\\nDefault: `false`\\n\\n<blockquote class=\"caution\">\\n\\n__Caution:__\\nAuto-switch can harm SEO by causing duplicate content issues and restricting search engine indexing of different language versions, which limits visibility in search results.\\n\\n</blockquote>'\n        )\n        .optional()\n        .nullable(),\n      urlStructure: z\n        .enum(['SUBDIRECTORY', 'SUBDOMAIN', 'QUERY_PARAM'])\n        .describe(\n          'Defines the default method for how secondary languages appear in the live site\\'s URL.\\nThe URL structure can be overridden per locale, using the Locale API.\\n\\nDefault: `\"SUBDIRECTORY\"`'\n        )\n        .optional(),\n      primaryLocale: z\n        .object({\n          _id: z\n            .string()\n            .describe(\n              'Locale ID.\\n\\nThe locale ID is made up of the language and region codes supported by Wix. For example, `\"en-US\"` for U.S. English.'\n            )\n            .max(20)\n            .optional()\n            .nullable(),\n          revision: z\n            .string()\n            .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n            .describe(\n              'Revision number, which increments by 1 each time the locale is updated. To prevent conflicting changes, the existing revision must be passed when updating the locale object.'\n            )\n            .optional()\n            .nullable(),\n          _createdDate: z\n            .date()\n            .describe('Date and time the locale was created.')\n            .optional()\n            .nullable(),\n          _updatedDate: z\n            .date()\n            .describe('Date and time the locale was last updated.')\n            .optional()\n            .nullable(),\n          languageCode: z\n            .string()\n            .describe('Language code. For example, `\"en\"` for English.')\n            .optional()\n            .nullable(),\n          regionCode: z\n            .string()\n            .describe('Region code. For example, `\"UK\"` for United Kingdom.')\n            .optional()\n            .nullable(),\n          visibility: z\n            .enum(['HIDDEN', 'VISIBLE'])\n            .describe('Locale visibility status.')\n            .optional(),\n          primaryLocale: z\n            .boolean()\n            .describe(\"Whether the locale is the site's primary locale.\")\n            .optional()\n            .nullable(),\n          visitorPrimaryLocale: z\n            .boolean()\n            .describe(\n              \"Whether the locale is the site's visitor primary locale.\"\n            )\n            .optional()\n            .nullable(),\n          flag: z\n            .string()\n            .describe(\n              'Flag icon as a 3-letter language code based on Wix\\'s supported locales. For example, `\"USA\"` for the United States flag icon.'\n            )\n            .max(3)\n            .optional()\n            .nullable(),\n          regionalFormat: z\n            .string()\n            .describe(\n              'Regional format for determining how to display data types such as dates, times, numbers, and currencies. For example, `\"en-US\"` to format dates like this: `MM-DD-YYYY`.'\n            )\n            .optional()\n            .nullable(),\n          effectiveUrlStructure: z\n            .enum(['SUBDIRECTORY', 'SUBDOMAIN', 'QUERY_PARAM'])\n            .describe(\n              \"Default URL structure for the locale's live site URL,\\nbased on the locale's settings, unless overridden.\"\n            )\n            .optional(),\n          urlStructureOverride: z\n            .object({\n              urlStructure: z\n                .enum(['SUBDIRECTORY', 'SUBDOMAIN', 'QUERY_PARAM'])\n                .describe('URL structure to use instead of the default.')\n                .optional(),\n            })\n            .describe(\n              \"Optional override for the locale's default URL structure.\"\n            )\n            .optional(),\n          machineTranslationCode: z\n            .string()\n            .describe(\n              'Language code based on Wix\\'s supported locales, used to specify the target language when\\ntranslatable content is sent for machine translation. For example, `\"ES\"` for Spanish\\nor `\"ZH_TW\"` for Traditional Chinese.\\n\\nDefault: The locale\\'s `languageCode` value.'\n            )\n            .optional()\n            .nullable(),\n          effectiveDisplayName: z\n            .string()\n            .describe(\"The locale's `displayName`, unless overridden.\")\n            .max(30)\n            .optional()\n            .nullable(),\n          displayName: z\n            .string()\n            .describe(\n              'Default display name for the locale, inferred from the locale ID and region code.'\n            )\n            .max(30)\n            .optional()\n            .nullable(),\n          overrideDisplayName: z\n            .string()\n            .describe(\"Optional override for the locale's display name.\")\n            .max(30)\n            .optional()\n            .nullable(),\n        })\n        .describe(\"The site's primary locale.\")\n        .optional(),\n    })\n    .describe('Retrieved locale settings.')\n    .optional(),\n});\nexport const UpdateLocaleSettingsRequest = z.object({\n  localeSettings: z\n    .object({\n      revision: z\n        .string()\n        .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n        .describe(\n          'Revision number, which increments by 1 each time the locale settings are updated. To prevent conflicting changes, the existing revision must be passed when updating the locale settings.'\n        ),\n      _createdDate: z\n        .date()\n        .describe('Date and time the locale settings were created.')\n        .optional()\n        .nullable(),\n      _updatedDate: z\n        .date()\n        .describe('Date and time the locale settings were last updated.')\n        .optional()\n        .nullable(),\n      multilingualModeEnabled: z\n        .boolean()\n        .describe(\n          'Whether multilingual mode is enabled for the site. When enabled, you can create secondary locales.\\n\\nDefault: `false`'\n        )\n        .optional()\n        .nullable(),\n      autoSwitch: z\n        .boolean()\n        .describe(\n          'Whether the live site automatically opens in a secondary locale if the\\nsite visitor\\'s browser is set to that locale.\\n\\nDefault: `false`\\n\\n<blockquote class=\"caution\">\\n\\n__Caution:__\\nAuto-switch can harm SEO by causing duplicate content issues and restricting search engine indexing of different language versions, which limits visibility in search results.\\n\\n</blockquote>'\n        )\n        .optional()\n        .nullable(),\n      urlStructure: z\n        .enum(['SUBDIRECTORY', 'SUBDOMAIN', 'QUERY_PARAM'])\n        .optional(),\n      primaryLocale: z\n        .object({\n          _id: z\n            .string()\n            .describe(\n              'Locale ID.\\n\\nThe locale ID is made up of the language and region codes supported by Wix. For example, `\"en-US\"` for U.S. English.'\n            )\n            .max(20)\n            .optional()\n            .nullable(),\n          revision: z\n            .string()\n            .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n            .describe(\n              'Revision number, which increments by 1 each time the locale is updated. To prevent conflicting changes, the existing revision must be passed when updating the locale object.'\n            )\n            .optional()\n            .nullable(),\n          _createdDate: z\n            .date()\n            .describe('Date and time the locale was created.')\n            .optional()\n            .nullable(),\n          _updatedDate: z\n            .date()\n            .describe('Date and time the locale was last updated.')\n            .optional()\n            .nullable(),\n          languageCode: z\n            .string()\n            .describe('Language code. For example, `\"en\"` for English.')\n            .optional()\n            .nullable(),\n          regionCode: z\n            .string()\n            .describe('Region code. For example, `\"UK\"` for United Kingdom.')\n            .optional()\n            .nullable(),\n          visibility: z.enum(['HIDDEN', 'VISIBLE']).optional(),\n          primaryLocale: z\n            .boolean()\n            .describe(\"Whether the locale is the site's primary locale.\")\n            .optional()\n            .nullable(),\n          visitorPrimaryLocale: z\n            .boolean()\n            .describe(\n              \"Whether the locale is the site's visitor primary locale.\"\n            )\n            .optional()\n            .nullable(),\n          flag: z\n            .string()\n            .describe(\n              'Flag icon as a 3-letter language code based on Wix\\'s supported locales. For example, `\"USA\"` for the United States flag icon.'\n            )\n            .max(3)\n            .optional()\n            .nullable(),\n          regionalFormat: z\n            .string()\n            .describe(\n              'Regional format for determining how to display data types such as dates, times, numbers, and currencies. For example, `\"en-US\"` to format dates like this: `MM-DD-YYYY`.'\n            )\n            .optional()\n            .nullable(),\n          effectiveUrlStructure: z\n            .enum(['SUBDIRECTORY', 'SUBDOMAIN', 'QUERY_PARAM'])\n            .optional(),\n          urlStructureOverride: z\n            .object({\n              urlStructure: z\n                .enum(['SUBDIRECTORY', 'SUBDOMAIN', 'QUERY_PARAM'])\n                .optional(),\n            })\n            .describe(\n              \"Optional override for the locale's default URL structure.\"\n            )\n            .optional(),\n          machineTranslationCode: z\n            .string()\n            .describe(\n              'Language code based on Wix\\'s supported locales, used to specify the target language when\\ntranslatable content is sent for machine translation. For example, `\"ES\"` for Spanish\\nor `\"ZH_TW\"` for Traditional Chinese.\\n\\nDefault: The locale\\'s `languageCode` value.'\n            )\n            .optional()\n            .nullable(),\n          effectiveDisplayName: z\n            .string()\n            .describe(\"The locale's `displayName`, unless overridden.\")\n            .max(30)\n            .optional()\n            .nullable(),\n          displayName: z\n            .string()\n            .describe(\n              'Default display name for the locale, inferred from the locale ID and region code.'\n            )\n            .max(30)\n            .optional()\n            .nullable(),\n          overrideDisplayName: z\n            .string()\n            .describe(\"Optional override for the locale's display name.\")\n            .max(30)\n            .optional()\n            .nullable(),\n        })\n        .describe(\"The site's primary locale.\")\n        .optional(),\n    })\n    .describe('Locale settings to update.'),\n});\nexport const UpdateLocaleSettingsResponse = z.object({\n  localeSettings: z\n    .object({\n      revision: z\n        .string()\n        .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n        .describe(\n          'Revision number, which increments by 1 each time the locale settings are updated. To prevent conflicting changes, the existing revision must be passed when updating the locale settings.'\n        )\n        .optional()\n        .nullable(),\n      _createdDate: z\n        .date()\n        .describe('Date and time the locale settings were created.')\n        .optional()\n        .nullable(),\n      _updatedDate: z\n        .date()\n        .describe('Date and time the locale settings were last updated.')\n        .optional()\n        .nullable(),\n      multilingualModeEnabled: z\n        .boolean()\n        .describe(\n          'Whether multilingual mode is enabled for the site. When enabled, you can create secondary locales.\\n\\nDefault: `false`'\n        )\n        .optional()\n        .nullable(),\n      autoSwitch: z\n        .boolean()\n        .describe(\n          'Whether the live site automatically opens in a secondary locale if the\\nsite visitor\\'s browser is set to that locale.\\n\\nDefault: `false`\\n\\n<blockquote class=\"caution\">\\n\\n__Caution:__\\nAuto-switch can harm SEO by causing duplicate content issues and restricting search engine indexing of different language versions, which limits visibility in search results.\\n\\n</blockquote>'\n        )\n        .optional()\n        .nullable(),\n      urlStructure: z\n        .enum(['SUBDIRECTORY', 'SUBDOMAIN', 'QUERY_PARAM'])\n        .describe(\n          'Defines the default method for how secondary languages appear in the live site\\'s URL.\\nThe URL structure can be overridden per locale, using the Locale API.\\n\\nDefault: `\"SUBDIRECTORY\"`'\n        )\n        .optional(),\n      primaryLocale: z\n        .object({\n          _id: z\n            .string()\n            .describe(\n              'Locale ID.\\n\\nThe locale ID is made up of the language and region codes supported by Wix. For example, `\"en-US\"` for U.S. English.'\n            )\n            .max(20)\n            .optional()\n            .nullable(),\n          revision: z\n            .string()\n            .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n            .describe(\n              'Revision number, which increments by 1 each time the locale is updated. To prevent conflicting changes, the existing revision must be passed when updating the locale object.'\n            )\n            .optional()\n            .nullable(),\n          _createdDate: z\n            .date()\n            .describe('Date and time the locale was created.')\n            .optional()\n            .nullable(),\n          _updatedDate: z\n            .date()\n            .describe('Date and time the locale was last updated.')\n            .optional()\n            .nullable(),\n          languageCode: z\n            .string()\n            .describe('Language code. For example, `\"en\"` for English.')\n            .optional()\n            .nullable(),\n          regionCode: z\n            .string()\n            .describe('Region code. For example, `\"UK\"` for United Kingdom.')\n            .optional()\n            .nullable(),\n          visibility: z\n            .enum(['HIDDEN', 'VISIBLE'])\n            .describe('Locale visibility status.')\n            .optional(),\n          primaryLocale: z\n            .boolean()\n            .describe(\"Whether the locale is the site's primary locale.\")\n            .optional()\n            .nullable(),\n          visitorPrimaryLocale: z\n            .boolean()\n            .describe(\n              \"Whether the locale is the site's visitor primary locale.\"\n            )\n            .optional()\n            .nullable(),\n          flag: z\n            .string()\n            .describe(\n              'Flag icon as a 3-letter language code based on Wix\\'s supported locales. For example, `\"USA\"` for the United States flag icon.'\n            )\n            .max(3)\n            .optional()\n            .nullable(),\n          regionalFormat: z\n            .string()\n            .describe(\n              'Regional format for determining how to display data types such as dates, times, numbers, and currencies. For example, `\"en-US\"` to format dates like this: `MM-DD-YYYY`.'\n            )\n            .optional()\n            .nullable(),\n          effectiveUrlStructure: z\n            .enum(['SUBDIRECTORY', 'SUBDOMAIN', 'QUERY_PARAM'])\n            .describe(\n              \"Default URL structure for the locale's live site URL,\\nbased on the locale's settings, unless overridden.\"\n            )\n            .optional(),\n          urlStructureOverride: z\n            .object({\n              urlStructure: z\n                .enum(['SUBDIRECTORY', 'SUBDOMAIN', 'QUERY_PARAM'])\n                .describe('URL structure to use instead of the default.')\n                .optional(),\n            })\n            .describe(\n              \"Optional override for the locale's default URL structure.\"\n            )\n            .optional(),\n          machineTranslationCode: z\n            .string()\n            .describe(\n              'Language code based on Wix\\'s supported locales, used to specify the target language when\\ntranslatable content is sent for machine translation. For example, `\"ES\"` for Spanish\\nor `\"ZH_TW\"` for Traditional Chinese.\\n\\nDefault: The locale\\'s `languageCode` value.'\n            )\n            .optional()\n            .nullable(),\n          effectiveDisplayName: z\n            .string()\n            .describe(\"The locale's `displayName`, unless overridden.\")\n            .max(30)\n            .optional()\n            .nullable(),\n          displayName: z\n            .string()\n            .describe(\n              'Default display name for the locale, inferred from the locale ID and region code.'\n            )\n            .max(30)\n            .optional()\n            .nullable(),\n          overrideDisplayName: z\n            .string()\n            .describe(\"Optional override for the locale's display name.\")\n            .max(30)\n            .optional()\n            .nullable(),\n        })\n        .describe(\"The site's primary locale.\")\n        .optional(),\n    })\n    .describe('Updated locale settings.')\n    .optional(),\n});\nexport const SetMultilingualModeRequest = z.object({\n  multilingualModeEnabled: z\n    .boolean()\n    .describe(\n      'Whether to enable multilingual mode for the site.\\n\\nDefault: `false`'\n    ),\n});\nexport const SetMultilingualModeResponse = z.object({\n  localeSettings: z\n    .object({\n      revision: z\n        .string()\n        .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n        .describe(\n          'Revision number, which increments by 1 each time the locale settings are updated. To prevent conflicting changes, the existing revision must be passed when updating the locale settings.'\n        )\n        .optional()\n        .nullable(),\n      _createdDate: z\n        .date()\n        .describe('Date and time the locale settings were created.')\n        .optional()\n        .nullable(),\n      _updatedDate: z\n        .date()\n        .describe('Date and time the locale settings were last updated.')\n        .optional()\n        .nullable(),\n      multilingualModeEnabled: z\n        .boolean()\n        .describe(\n          'Whether multilingual mode is enabled for the site. When enabled, you can create secondary locales.\\n\\nDefault: `false`'\n        )\n        .optional()\n        .nullable(),\n      autoSwitch: z\n        .boolean()\n        .describe(\n          'Whether the live site automatically opens in a secondary locale if the\\nsite visitor\\'s browser is set to that locale.\\n\\nDefault: `false`\\n\\n<blockquote class=\"caution\">\\n\\n__Caution:__\\nAuto-switch can harm SEO by causing duplicate content issues and restricting search engine indexing of different language versions, which limits visibility in search results.\\n\\n</blockquote>'\n        )\n        .optional()\n        .nullable(),\n      urlStructure: z\n        .enum(['SUBDIRECTORY', 'SUBDOMAIN', 'QUERY_PARAM'])\n        .describe(\n          'Defines the default method for how secondary languages appear in the live site\\'s URL.\\nThe URL structure can be overridden per locale, using the Locale API.\\n\\nDefault: `\"SUBDIRECTORY\"`'\n        )\n        .optional(),\n      primaryLocale: z\n        .object({\n          _id: z\n            .string()\n            .describe(\n              'Locale ID.\\n\\nThe locale ID is made up of the language and region codes supported by Wix. For example, `\"en-US\"` for U.S. English.'\n            )\n            .max(20)\n            .optional()\n            .nullable(),\n          revision: z\n            .string()\n            .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n            .describe(\n              'Revision number, which increments by 1 each time the locale is updated. To prevent conflicting changes, the existing revision must be passed when updating the locale object.'\n            )\n            .optional()\n            .nullable(),\n          _createdDate: z\n            .date()\n            .describe('Date and time the locale was created.')\n            .optional()\n            .nullable(),\n          _updatedDate: z\n            .date()\n            .describe('Date and time the locale was last updated.')\n            .optional()\n            .nullable(),\n          languageCode: z\n            .string()\n            .describe('Language code. For example, `\"en\"` for English.')\n            .optional()\n            .nullable(),\n          regionCode: z\n            .string()\n            .describe('Region code. For example, `\"UK\"` for United Kingdom.')\n            .optional()\n            .nullable(),\n          visibility: z\n            .enum(['HIDDEN', 'VISIBLE'])\n            .describe('Locale visibility status.')\n            .optional(),\n          primaryLocale: z\n            .boolean()\n            .describe(\"Whether the locale is the site's primary locale.\")\n            .optional()\n            .nullable(),\n          visitorPrimaryLocale: z\n            .boolean()\n            .describe(\n              \"Whether the locale is the site's visitor primary locale.\"\n            )\n            .optional()\n            .nullable(),\n          flag: z\n            .string()\n            .describe(\n              'Flag icon as a 3-letter language code based on Wix\\'s supported locales. For example, `\"USA\"` for the United States flag icon.'\n            )\n            .max(3)\n            .optional()\n            .nullable(),\n          regionalFormat: z\n            .string()\n            .describe(\n              'Regional format for determining how to display data types such as dates, times, numbers, and currencies. For example, `\"en-US\"` to format dates like this: `MM-DD-YYYY`.'\n            )\n            .optional()\n            .nullable(),\n          effectiveUrlStructure: z\n            .enum(['SUBDIRECTORY', 'SUBDOMAIN', 'QUERY_PARAM'])\n            .describe(\n              \"Default URL structure for the locale's live site URL,\\nbased on the locale's settings, unless overridden.\"\n            )\n            .optional(),\n          urlStructureOverride: z\n            .object({\n              urlStructure: z\n                .enum(['SUBDIRECTORY', 'SUBDOMAIN', 'QUERY_PARAM'])\n                .describe('URL structure to use instead of the default.')\n                .optional(),\n            })\n            .describe(\n              \"Optional override for the locale's default URL structure.\"\n            )\n            .optional(),\n          machineTranslationCode: z\n            .string()\n            .describe(\n              'Language code based on Wix\\'s supported locales, used to specify the target language when\\ntranslatable content is sent for machine translation. For example, `\"ES\"` for Spanish\\nor `\"ZH_TW\"` for Traditional Chinese.\\n\\nDefault: The locale\\'s `languageCode` value.'\n            )\n            .optional()\n            .nullable(),\n          effectiveDisplayName: z\n            .string()\n            .describe(\"The locale's `displayName`, unless overridden.\")\n            .max(30)\n            .optional()\n            .nullable(),\n          displayName: z\n            .string()\n            .describe(\n              'Default display name for the locale, inferred from the locale ID and region code.'\n            )\n            .max(30)\n            .optional()\n            .nullable(),\n          overrideDisplayName: z\n            .string()\n            .describe(\"Optional override for the locale's display name.\")\n            .max(30)\n            .optional()\n            .nullable(),\n        })\n        .describe(\"The site's primary locale.\")\n        .optional(),\n    })\n    .describe('Updated locale settings.')\n    .optional(),\n});\n"],"mappings":"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","names":[]}