@wix/auto_sdk_multilingual_locale-settings 1.0.44 → 1.0.45
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/package.json +4 -11
- package/build/cjs/schemas.d.ts +0 -192
- package/build/cjs/schemas.js +0 -283
- package/build/cjs/schemas.js.map +0 -1
- package/build/es/schemas.d.mts +0 -192
- package/build/es/schemas.mjs +0 -241
- package/build/es/schemas.mjs.map +0 -1
- package/build/internal/cjs/schemas.d.ts +0 -192
- package/build/internal/cjs/schemas.js +0 -283
- package/build/internal/cjs/schemas.js.map +0 -1
- package/build/internal/es/schemas.d.mts +0 -192
- package/build/internal/es/schemas.mjs +0 -241
- package/build/internal/es/schemas.mjs.map +0 -1
- package/schemas/package.json +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_multilingual_locale-settings",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.45",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -21,23 +21,16 @@
|
|
|
21
21
|
"import": "./build/es/meta.mjs",
|
|
22
22
|
"require": "./build/cjs/meta.js",
|
|
23
23
|
"types": "./build/es/meta.d.mts"
|
|
24
|
-
},
|
|
25
|
-
"./schemas": {
|
|
26
|
-
"import": "./build/es/schemas.mjs",
|
|
27
|
-
"require": "./build/cjs/schemas.js",
|
|
28
|
-
"types": "./build/es/schemas.d.mts"
|
|
29
24
|
}
|
|
30
25
|
},
|
|
31
26
|
"files": [
|
|
32
27
|
"build",
|
|
33
28
|
"meta",
|
|
34
|
-
"service-plugins"
|
|
35
|
-
"schemas"
|
|
29
|
+
"service-plugins"
|
|
36
30
|
],
|
|
37
31
|
"dependencies": {
|
|
38
32
|
"@wix/sdk-runtime": "^1.0.10",
|
|
39
|
-
"@wix/sdk-types": "^1.17.6"
|
|
40
|
-
"zod": "^4.3.6"
|
|
33
|
+
"@wix/sdk-types": "^1.17.6"
|
|
41
34
|
},
|
|
42
35
|
"devDependencies": {
|
|
43
36
|
"tsup": "^8.4.0",
|
|
@@ -57,5 +50,5 @@
|
|
|
57
50
|
"fqdn": "wix.multilingual.settings.v2.locale_settings"
|
|
58
51
|
}
|
|
59
52
|
},
|
|
60
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "6800d5bb1d8a11abd3c4f562088dcf4aa78ea6aabfd2ce3ef9757abd"
|
|
61
54
|
}
|
package/build/cjs/schemas.d.ts
DELETED
|
@@ -1,192 +0,0 @@
|
|
|
1
|
-
import * as z from 'zod';
|
|
2
|
-
|
|
3
|
-
declare const GetLocaleSettingsRequest: z.ZodObject<{}, z.core.$strip>;
|
|
4
|
-
declare const GetLocaleSettingsResponse: z.ZodObject<{
|
|
5
|
-
localeSettings: z.ZodOptional<z.ZodObject<{
|
|
6
|
-
revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7
|
-
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
8
|
-
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
9
|
-
multilingualModeEnabled: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
10
|
-
autoSwitch: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
11
|
-
urlStructure: z.ZodOptional<z.ZodEnum<{
|
|
12
|
-
SUBDIRECTORY: "SUBDIRECTORY";
|
|
13
|
-
SUBDOMAIN: "SUBDOMAIN";
|
|
14
|
-
QUERY_PARAM: "QUERY_PARAM";
|
|
15
|
-
}>>;
|
|
16
|
-
primaryLocale: z.ZodOptional<z.ZodObject<{
|
|
17
|
-
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18
|
-
revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19
|
-
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
20
|
-
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
21
|
-
languageCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
22
|
-
regionCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23
|
-
visibility: z.ZodOptional<z.ZodEnum<{
|
|
24
|
-
HIDDEN: "HIDDEN";
|
|
25
|
-
VISIBLE: "VISIBLE";
|
|
26
|
-
}>>;
|
|
27
|
-
primaryLocale: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
28
|
-
visitorPrimaryLocale: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
29
|
-
flag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
30
|
-
regionalFormat: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
31
|
-
effectiveUrlStructure: z.ZodOptional<z.ZodEnum<{
|
|
32
|
-
SUBDIRECTORY: "SUBDIRECTORY";
|
|
33
|
-
SUBDOMAIN: "SUBDOMAIN";
|
|
34
|
-
QUERY_PARAM: "QUERY_PARAM";
|
|
35
|
-
}>>;
|
|
36
|
-
urlStructureOverride: z.ZodOptional<z.ZodObject<{
|
|
37
|
-
urlStructure: z.ZodOptional<z.ZodEnum<{
|
|
38
|
-
SUBDIRECTORY: "SUBDIRECTORY";
|
|
39
|
-
SUBDOMAIN: "SUBDOMAIN";
|
|
40
|
-
QUERY_PARAM: "QUERY_PARAM";
|
|
41
|
-
}>>;
|
|
42
|
-
}, z.core.$strip>>;
|
|
43
|
-
machineTranslationCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
44
|
-
effectiveDisplayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
45
|
-
displayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
46
|
-
overrideDisplayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
47
|
-
}, z.core.$strip>>;
|
|
48
|
-
}, z.core.$strip>>;
|
|
49
|
-
}, z.core.$strip>;
|
|
50
|
-
declare const UpdateLocaleSettingsRequest: z.ZodObject<{
|
|
51
|
-
localeSettings: z.ZodObject<{
|
|
52
|
-
revision: z.ZodString;
|
|
53
|
-
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
54
|
-
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
55
|
-
multilingualModeEnabled: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
56
|
-
autoSwitch: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
57
|
-
urlStructure: z.ZodOptional<z.ZodEnum<{
|
|
58
|
-
SUBDIRECTORY: "SUBDIRECTORY";
|
|
59
|
-
SUBDOMAIN: "SUBDOMAIN";
|
|
60
|
-
QUERY_PARAM: "QUERY_PARAM";
|
|
61
|
-
}>>;
|
|
62
|
-
primaryLocale: z.ZodOptional<z.ZodObject<{
|
|
63
|
-
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
64
|
-
revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
65
|
-
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
66
|
-
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
67
|
-
languageCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
68
|
-
regionCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
69
|
-
visibility: z.ZodOptional<z.ZodEnum<{
|
|
70
|
-
HIDDEN: "HIDDEN";
|
|
71
|
-
VISIBLE: "VISIBLE";
|
|
72
|
-
}>>;
|
|
73
|
-
primaryLocale: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
74
|
-
visitorPrimaryLocale: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
75
|
-
flag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
76
|
-
regionalFormat: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
77
|
-
effectiveUrlStructure: z.ZodOptional<z.ZodEnum<{
|
|
78
|
-
SUBDIRECTORY: "SUBDIRECTORY";
|
|
79
|
-
SUBDOMAIN: "SUBDOMAIN";
|
|
80
|
-
QUERY_PARAM: "QUERY_PARAM";
|
|
81
|
-
}>>;
|
|
82
|
-
urlStructureOverride: z.ZodOptional<z.ZodObject<{
|
|
83
|
-
urlStructure: z.ZodOptional<z.ZodEnum<{
|
|
84
|
-
SUBDIRECTORY: "SUBDIRECTORY";
|
|
85
|
-
SUBDOMAIN: "SUBDOMAIN";
|
|
86
|
-
QUERY_PARAM: "QUERY_PARAM";
|
|
87
|
-
}>>;
|
|
88
|
-
}, z.core.$strip>>;
|
|
89
|
-
machineTranslationCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
90
|
-
effectiveDisplayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
91
|
-
displayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
92
|
-
overrideDisplayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
93
|
-
}, z.core.$strip>>;
|
|
94
|
-
}, z.core.$strip>;
|
|
95
|
-
}, z.core.$strip>;
|
|
96
|
-
declare const UpdateLocaleSettingsResponse: z.ZodObject<{
|
|
97
|
-
localeSettings: z.ZodOptional<z.ZodObject<{
|
|
98
|
-
revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
99
|
-
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
100
|
-
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
101
|
-
multilingualModeEnabled: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
102
|
-
autoSwitch: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
103
|
-
urlStructure: z.ZodOptional<z.ZodEnum<{
|
|
104
|
-
SUBDIRECTORY: "SUBDIRECTORY";
|
|
105
|
-
SUBDOMAIN: "SUBDOMAIN";
|
|
106
|
-
QUERY_PARAM: "QUERY_PARAM";
|
|
107
|
-
}>>;
|
|
108
|
-
primaryLocale: z.ZodOptional<z.ZodObject<{
|
|
109
|
-
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
110
|
-
revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
111
|
-
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
112
|
-
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
113
|
-
languageCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
114
|
-
regionCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
115
|
-
visibility: z.ZodOptional<z.ZodEnum<{
|
|
116
|
-
HIDDEN: "HIDDEN";
|
|
117
|
-
VISIBLE: "VISIBLE";
|
|
118
|
-
}>>;
|
|
119
|
-
primaryLocale: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
120
|
-
visitorPrimaryLocale: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
121
|
-
flag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
122
|
-
regionalFormat: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
123
|
-
effectiveUrlStructure: z.ZodOptional<z.ZodEnum<{
|
|
124
|
-
SUBDIRECTORY: "SUBDIRECTORY";
|
|
125
|
-
SUBDOMAIN: "SUBDOMAIN";
|
|
126
|
-
QUERY_PARAM: "QUERY_PARAM";
|
|
127
|
-
}>>;
|
|
128
|
-
urlStructureOverride: z.ZodOptional<z.ZodObject<{
|
|
129
|
-
urlStructure: z.ZodOptional<z.ZodEnum<{
|
|
130
|
-
SUBDIRECTORY: "SUBDIRECTORY";
|
|
131
|
-
SUBDOMAIN: "SUBDOMAIN";
|
|
132
|
-
QUERY_PARAM: "QUERY_PARAM";
|
|
133
|
-
}>>;
|
|
134
|
-
}, z.core.$strip>>;
|
|
135
|
-
machineTranslationCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
136
|
-
effectiveDisplayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
137
|
-
displayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
138
|
-
overrideDisplayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
139
|
-
}, z.core.$strip>>;
|
|
140
|
-
}, z.core.$strip>>;
|
|
141
|
-
}, z.core.$strip>;
|
|
142
|
-
declare const SetMultilingualModeRequest: z.ZodObject<{
|
|
143
|
-
multilingualModeEnabled: z.ZodBoolean;
|
|
144
|
-
}, z.core.$strip>;
|
|
145
|
-
declare const SetMultilingualModeResponse: z.ZodObject<{
|
|
146
|
-
localeSettings: z.ZodOptional<z.ZodObject<{
|
|
147
|
-
revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
148
|
-
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
149
|
-
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
150
|
-
multilingualModeEnabled: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
151
|
-
autoSwitch: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
152
|
-
urlStructure: z.ZodOptional<z.ZodEnum<{
|
|
153
|
-
SUBDIRECTORY: "SUBDIRECTORY";
|
|
154
|
-
SUBDOMAIN: "SUBDOMAIN";
|
|
155
|
-
QUERY_PARAM: "QUERY_PARAM";
|
|
156
|
-
}>>;
|
|
157
|
-
primaryLocale: z.ZodOptional<z.ZodObject<{
|
|
158
|
-
_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
159
|
-
revision: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
160
|
-
_createdDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
161
|
-
_updatedDate: z.ZodNullable<z.ZodOptional<z.ZodDate>>;
|
|
162
|
-
languageCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
163
|
-
regionCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
164
|
-
visibility: z.ZodOptional<z.ZodEnum<{
|
|
165
|
-
HIDDEN: "HIDDEN";
|
|
166
|
-
VISIBLE: "VISIBLE";
|
|
167
|
-
}>>;
|
|
168
|
-
primaryLocale: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
169
|
-
visitorPrimaryLocale: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
170
|
-
flag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
171
|
-
regionalFormat: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
172
|
-
effectiveUrlStructure: z.ZodOptional<z.ZodEnum<{
|
|
173
|
-
SUBDIRECTORY: "SUBDIRECTORY";
|
|
174
|
-
SUBDOMAIN: "SUBDOMAIN";
|
|
175
|
-
QUERY_PARAM: "QUERY_PARAM";
|
|
176
|
-
}>>;
|
|
177
|
-
urlStructureOverride: z.ZodOptional<z.ZodObject<{
|
|
178
|
-
urlStructure: z.ZodOptional<z.ZodEnum<{
|
|
179
|
-
SUBDIRECTORY: "SUBDIRECTORY";
|
|
180
|
-
SUBDOMAIN: "SUBDOMAIN";
|
|
181
|
-
QUERY_PARAM: "QUERY_PARAM";
|
|
182
|
-
}>>;
|
|
183
|
-
}, z.core.$strip>>;
|
|
184
|
-
machineTranslationCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
185
|
-
effectiveDisplayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
186
|
-
displayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
187
|
-
overrideDisplayName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
188
|
-
}, z.core.$strip>>;
|
|
189
|
-
}, z.core.$strip>>;
|
|
190
|
-
}, z.core.$strip>;
|
|
191
|
-
|
|
192
|
-
export { GetLocaleSettingsRequest, GetLocaleSettingsResponse, SetMultilingualModeRequest, SetMultilingualModeResponse, UpdateLocaleSettingsRequest, UpdateLocaleSettingsResponse };
|
package/build/cjs/schemas.js
DELETED
|
@@ -1,283 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __create = Object.create;
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __export = (target, all) => {
|
|
9
|
-
for (var name in all)
|
|
10
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
-
};
|
|
12
|
-
var __copyProps = (to, from, except, desc) => {
|
|
13
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
-
for (let key of __getOwnPropNames(from))
|
|
15
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
-
}
|
|
18
|
-
return to;
|
|
19
|
-
};
|
|
20
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
-
mod
|
|
27
|
-
));
|
|
28
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
-
|
|
30
|
-
// schemas.ts
|
|
31
|
-
var schemas_exports = {};
|
|
32
|
-
__export(schemas_exports, {
|
|
33
|
-
GetLocaleSettingsRequest: () => GetLocaleSettingsRequest,
|
|
34
|
-
GetLocaleSettingsResponse: () => GetLocaleSettingsResponse,
|
|
35
|
-
SetMultilingualModeRequest: () => SetMultilingualModeRequest,
|
|
36
|
-
SetMultilingualModeResponse: () => SetMultilingualModeResponse,
|
|
37
|
-
UpdateLocaleSettingsRequest: () => UpdateLocaleSettingsRequest,
|
|
38
|
-
UpdateLocaleSettingsResponse: () => UpdateLocaleSettingsResponse
|
|
39
|
-
});
|
|
40
|
-
module.exports = __toCommonJS(schemas_exports);
|
|
41
|
-
|
|
42
|
-
// src/multilingual-settings-v2-locale-settings-locale-settings.schemas.ts
|
|
43
|
-
var z = __toESM(require("zod"));
|
|
44
|
-
var GetLocaleSettingsRequest = z.object({});
|
|
45
|
-
var GetLocaleSettingsResponse = z.object({
|
|
46
|
-
localeSettings: z.object({
|
|
47
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
48
|
-
"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."
|
|
49
|
-
).optional().nullable(),
|
|
50
|
-
_createdDate: z.date().describe("Date and time the locale settings were created.").optional().nullable(),
|
|
51
|
-
_updatedDate: z.date().describe("Date and time the locale settings were last updated.").optional().nullable(),
|
|
52
|
-
multilingualModeEnabled: z.boolean().describe(
|
|
53
|
-
"Whether multilingual mode is enabled for the site. When enabled, you can create secondary locales.\n\nDefault: `false`"
|
|
54
|
-
).optional().nullable(),
|
|
55
|
-
autoSwitch: z.boolean().describe(
|
|
56
|
-
'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>'
|
|
57
|
-
).optional().nullable(),
|
|
58
|
-
urlStructure: z.enum(["SUBDIRECTORY", "SUBDOMAIN", "QUERY_PARAM"]).describe(
|
|
59
|
-
'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"`'
|
|
60
|
-
).optional(),
|
|
61
|
-
primaryLocale: z.object({
|
|
62
|
-
_id: z.string().describe(
|
|
63
|
-
'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.'
|
|
64
|
-
).max(20).optional().nullable(),
|
|
65
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
66
|
-
"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."
|
|
67
|
-
).optional().nullable(),
|
|
68
|
-
_createdDate: z.date().describe("Date and time the locale was created.").optional().nullable(),
|
|
69
|
-
_updatedDate: z.date().describe("Date and time the locale was last updated.").optional().nullable(),
|
|
70
|
-
languageCode: z.string().describe('Language code. For example, `"en"` for English.').optional().nullable(),
|
|
71
|
-
regionCode: z.string().describe('Region code. For example, `"UK"` for United Kingdom.').optional().nullable(),
|
|
72
|
-
visibility: z.enum(["HIDDEN", "VISIBLE"]).describe("Locale visibility status.").optional(),
|
|
73
|
-
primaryLocale: z.boolean().describe("Whether the locale is the site's primary locale.").optional().nullable(),
|
|
74
|
-
visitorPrimaryLocale: z.boolean().describe(
|
|
75
|
-
"Whether the locale is the site's visitor primary locale."
|
|
76
|
-
).optional().nullable(),
|
|
77
|
-
flag: z.string().describe(
|
|
78
|
-
'Flag icon as a 3-letter language code based on Wix\'s supported locales. For example, `"USA"` for the United States flag icon.'
|
|
79
|
-
).max(3).optional().nullable(),
|
|
80
|
-
regionalFormat: z.string().describe(
|
|
81
|
-
'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`.'
|
|
82
|
-
).optional().nullable(),
|
|
83
|
-
effectiveUrlStructure: z.enum(["SUBDIRECTORY", "SUBDOMAIN", "QUERY_PARAM"]).describe(
|
|
84
|
-
"Default URL structure for the locale's live site URL,\nbased on the locale's settings, unless overridden."
|
|
85
|
-
).optional(),
|
|
86
|
-
urlStructureOverride: z.object({
|
|
87
|
-
urlStructure: z.enum(["SUBDIRECTORY", "SUBDOMAIN", "QUERY_PARAM"]).describe("URL structure to use instead of the default.").optional()
|
|
88
|
-
}).describe(
|
|
89
|
-
"Optional override for the locale's default URL structure."
|
|
90
|
-
).optional(),
|
|
91
|
-
machineTranslationCode: z.string().describe(
|
|
92
|
-
'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.'
|
|
93
|
-
).optional().nullable(),
|
|
94
|
-
effectiveDisplayName: z.string().describe("The locale's `displayName`, unless overridden.").max(30).optional().nullable(),
|
|
95
|
-
displayName: z.string().describe(
|
|
96
|
-
"Default display name for the locale, inferred from the locale ID and region code."
|
|
97
|
-
).max(30).optional().nullable(),
|
|
98
|
-
overrideDisplayName: z.string().describe("Optional override for the locale's display name.").max(30).optional().nullable()
|
|
99
|
-
}).describe("The site's primary locale.").optional()
|
|
100
|
-
}).describe("Retrieved locale settings.").optional()
|
|
101
|
-
});
|
|
102
|
-
var UpdateLocaleSettingsRequest = z.object({
|
|
103
|
-
localeSettings: z.object({
|
|
104
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
105
|
-
"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."
|
|
106
|
-
),
|
|
107
|
-
_createdDate: z.date().describe("Date and time the locale settings were created.").optional().nullable(),
|
|
108
|
-
_updatedDate: z.date().describe("Date and time the locale settings were last updated.").optional().nullable(),
|
|
109
|
-
multilingualModeEnabled: z.boolean().describe(
|
|
110
|
-
"Whether multilingual mode is enabled for the site. When enabled, you can create secondary locales.\n\nDefault: `false`"
|
|
111
|
-
).optional().nullable(),
|
|
112
|
-
autoSwitch: z.boolean().describe(
|
|
113
|
-
'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>'
|
|
114
|
-
).optional().nullable(),
|
|
115
|
-
urlStructure: z.enum(["SUBDIRECTORY", "SUBDOMAIN", "QUERY_PARAM"]).optional(),
|
|
116
|
-
primaryLocale: z.object({
|
|
117
|
-
_id: z.string().describe(
|
|
118
|
-
'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.'
|
|
119
|
-
).max(20).optional().nullable(),
|
|
120
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
121
|
-
"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."
|
|
122
|
-
).optional().nullable(),
|
|
123
|
-
_createdDate: z.date().describe("Date and time the locale was created.").optional().nullable(),
|
|
124
|
-
_updatedDate: z.date().describe("Date and time the locale was last updated.").optional().nullable(),
|
|
125
|
-
languageCode: z.string().describe('Language code. For example, `"en"` for English.').optional().nullable(),
|
|
126
|
-
regionCode: z.string().describe('Region code. For example, `"UK"` for United Kingdom.').optional().nullable(),
|
|
127
|
-
visibility: z.enum(["HIDDEN", "VISIBLE"]).optional(),
|
|
128
|
-
primaryLocale: z.boolean().describe("Whether the locale is the site's primary locale.").optional().nullable(),
|
|
129
|
-
visitorPrimaryLocale: z.boolean().describe(
|
|
130
|
-
"Whether the locale is the site's visitor primary locale."
|
|
131
|
-
).optional().nullable(),
|
|
132
|
-
flag: z.string().describe(
|
|
133
|
-
'Flag icon as a 3-letter language code based on Wix\'s supported locales. For example, `"USA"` for the United States flag icon.'
|
|
134
|
-
).max(3).optional().nullable(),
|
|
135
|
-
regionalFormat: z.string().describe(
|
|
136
|
-
'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`.'
|
|
137
|
-
).optional().nullable(),
|
|
138
|
-
effectiveUrlStructure: z.enum(["SUBDIRECTORY", "SUBDOMAIN", "QUERY_PARAM"]).optional(),
|
|
139
|
-
urlStructureOverride: z.object({
|
|
140
|
-
urlStructure: z.enum(["SUBDIRECTORY", "SUBDOMAIN", "QUERY_PARAM"]).optional()
|
|
141
|
-
}).describe(
|
|
142
|
-
"Optional override for the locale's default URL structure."
|
|
143
|
-
).optional(),
|
|
144
|
-
machineTranslationCode: z.string().describe(
|
|
145
|
-
'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.'
|
|
146
|
-
).optional().nullable(),
|
|
147
|
-
effectiveDisplayName: z.string().describe("The locale's `displayName`, unless overridden.").max(30).optional().nullable(),
|
|
148
|
-
displayName: z.string().describe(
|
|
149
|
-
"Default display name for the locale, inferred from the locale ID and region code."
|
|
150
|
-
).max(30).optional().nullable(),
|
|
151
|
-
overrideDisplayName: z.string().describe("Optional override for the locale's display name.").max(30).optional().nullable()
|
|
152
|
-
}).describe("The site's primary locale.").optional()
|
|
153
|
-
}).describe("Locale settings to update.")
|
|
154
|
-
});
|
|
155
|
-
var UpdateLocaleSettingsResponse = z.object({
|
|
156
|
-
localeSettings: z.object({
|
|
157
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
158
|
-
"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."
|
|
159
|
-
).optional().nullable(),
|
|
160
|
-
_createdDate: z.date().describe("Date and time the locale settings were created.").optional().nullable(),
|
|
161
|
-
_updatedDate: z.date().describe("Date and time the locale settings were last updated.").optional().nullable(),
|
|
162
|
-
multilingualModeEnabled: z.boolean().describe(
|
|
163
|
-
"Whether multilingual mode is enabled for the site. When enabled, you can create secondary locales.\n\nDefault: `false`"
|
|
164
|
-
).optional().nullable(),
|
|
165
|
-
autoSwitch: z.boolean().describe(
|
|
166
|
-
'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>'
|
|
167
|
-
).optional().nullable(),
|
|
168
|
-
urlStructure: z.enum(["SUBDIRECTORY", "SUBDOMAIN", "QUERY_PARAM"]).describe(
|
|
169
|
-
'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"`'
|
|
170
|
-
).optional(),
|
|
171
|
-
primaryLocale: z.object({
|
|
172
|
-
_id: z.string().describe(
|
|
173
|
-
'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.'
|
|
174
|
-
).max(20).optional().nullable(),
|
|
175
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
176
|
-
"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."
|
|
177
|
-
).optional().nullable(),
|
|
178
|
-
_createdDate: z.date().describe("Date and time the locale was created.").optional().nullable(),
|
|
179
|
-
_updatedDate: z.date().describe("Date and time the locale was last updated.").optional().nullable(),
|
|
180
|
-
languageCode: z.string().describe('Language code. For example, `"en"` for English.').optional().nullable(),
|
|
181
|
-
regionCode: z.string().describe('Region code. For example, `"UK"` for United Kingdom.').optional().nullable(),
|
|
182
|
-
visibility: z.enum(["HIDDEN", "VISIBLE"]).describe("Locale visibility status.").optional(),
|
|
183
|
-
primaryLocale: z.boolean().describe("Whether the locale is the site's primary locale.").optional().nullable(),
|
|
184
|
-
visitorPrimaryLocale: z.boolean().describe(
|
|
185
|
-
"Whether the locale is the site's visitor primary locale."
|
|
186
|
-
).optional().nullable(),
|
|
187
|
-
flag: z.string().describe(
|
|
188
|
-
'Flag icon as a 3-letter language code based on Wix\'s supported locales. For example, `"USA"` for the United States flag icon.'
|
|
189
|
-
).max(3).optional().nullable(),
|
|
190
|
-
regionalFormat: z.string().describe(
|
|
191
|
-
'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`.'
|
|
192
|
-
).optional().nullable(),
|
|
193
|
-
effectiveUrlStructure: z.enum(["SUBDIRECTORY", "SUBDOMAIN", "QUERY_PARAM"]).describe(
|
|
194
|
-
"Default URL structure for the locale's live site URL,\nbased on the locale's settings, unless overridden."
|
|
195
|
-
).optional(),
|
|
196
|
-
urlStructureOverride: z.object({
|
|
197
|
-
urlStructure: z.enum(["SUBDIRECTORY", "SUBDOMAIN", "QUERY_PARAM"]).describe("URL structure to use instead of the default.").optional()
|
|
198
|
-
}).describe(
|
|
199
|
-
"Optional override for the locale's default URL structure."
|
|
200
|
-
).optional(),
|
|
201
|
-
machineTranslationCode: z.string().describe(
|
|
202
|
-
'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.'
|
|
203
|
-
).optional().nullable(),
|
|
204
|
-
effectiveDisplayName: z.string().describe("The locale's `displayName`, unless overridden.").max(30).optional().nullable(),
|
|
205
|
-
displayName: z.string().describe(
|
|
206
|
-
"Default display name for the locale, inferred from the locale ID and region code."
|
|
207
|
-
).max(30).optional().nullable(),
|
|
208
|
-
overrideDisplayName: z.string().describe("Optional override for the locale's display name.").max(30).optional().nullable()
|
|
209
|
-
}).describe("The site's primary locale.").optional()
|
|
210
|
-
}).describe("Updated locale settings.").optional()
|
|
211
|
-
});
|
|
212
|
-
var SetMultilingualModeRequest = z.object({
|
|
213
|
-
multilingualModeEnabled: z.boolean().describe(
|
|
214
|
-
"Whether to enable multilingual mode for the site.\n\nDefault: `false`"
|
|
215
|
-
)
|
|
216
|
-
});
|
|
217
|
-
var SetMultilingualModeResponse = z.object({
|
|
218
|
-
localeSettings: z.object({
|
|
219
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
220
|
-
"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."
|
|
221
|
-
).optional().nullable(),
|
|
222
|
-
_createdDate: z.date().describe("Date and time the locale settings were created.").optional().nullable(),
|
|
223
|
-
_updatedDate: z.date().describe("Date and time the locale settings were last updated.").optional().nullable(),
|
|
224
|
-
multilingualModeEnabled: z.boolean().describe(
|
|
225
|
-
"Whether multilingual mode is enabled for the site. When enabled, you can create secondary locales.\n\nDefault: `false`"
|
|
226
|
-
).optional().nullable(),
|
|
227
|
-
autoSwitch: z.boolean().describe(
|
|
228
|
-
'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>'
|
|
229
|
-
).optional().nullable(),
|
|
230
|
-
urlStructure: z.enum(["SUBDIRECTORY", "SUBDOMAIN", "QUERY_PARAM"]).describe(
|
|
231
|
-
'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"`'
|
|
232
|
-
).optional(),
|
|
233
|
-
primaryLocale: z.object({
|
|
234
|
-
_id: z.string().describe(
|
|
235
|
-
'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.'
|
|
236
|
-
).max(20).optional().nullable(),
|
|
237
|
-
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
238
|
-
"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."
|
|
239
|
-
).optional().nullable(),
|
|
240
|
-
_createdDate: z.date().describe("Date and time the locale was created.").optional().nullable(),
|
|
241
|
-
_updatedDate: z.date().describe("Date and time the locale was last updated.").optional().nullable(),
|
|
242
|
-
languageCode: z.string().describe('Language code. For example, `"en"` for English.').optional().nullable(),
|
|
243
|
-
regionCode: z.string().describe('Region code. For example, `"UK"` for United Kingdom.').optional().nullable(),
|
|
244
|
-
visibility: z.enum(["HIDDEN", "VISIBLE"]).describe("Locale visibility status.").optional(),
|
|
245
|
-
primaryLocale: z.boolean().describe("Whether the locale is the site's primary locale.").optional().nullable(),
|
|
246
|
-
visitorPrimaryLocale: z.boolean().describe(
|
|
247
|
-
"Whether the locale is the site's visitor primary locale."
|
|
248
|
-
).optional().nullable(),
|
|
249
|
-
flag: z.string().describe(
|
|
250
|
-
'Flag icon as a 3-letter language code based on Wix\'s supported locales. For example, `"USA"` for the United States flag icon.'
|
|
251
|
-
).max(3).optional().nullable(),
|
|
252
|
-
regionalFormat: z.string().describe(
|
|
253
|
-
'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`.'
|
|
254
|
-
).optional().nullable(),
|
|
255
|
-
effectiveUrlStructure: z.enum(["SUBDIRECTORY", "SUBDOMAIN", "QUERY_PARAM"]).describe(
|
|
256
|
-
"Default URL structure for the locale's live site URL,\nbased on the locale's settings, unless overridden."
|
|
257
|
-
).optional(),
|
|
258
|
-
urlStructureOverride: z.object({
|
|
259
|
-
urlStructure: z.enum(["SUBDIRECTORY", "SUBDOMAIN", "QUERY_PARAM"]).describe("URL structure to use instead of the default.").optional()
|
|
260
|
-
}).describe(
|
|
261
|
-
"Optional override for the locale's default URL structure."
|
|
262
|
-
).optional(),
|
|
263
|
-
machineTranslationCode: z.string().describe(
|
|
264
|
-
'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.'
|
|
265
|
-
).optional().nullable(),
|
|
266
|
-
effectiveDisplayName: z.string().describe("The locale's `displayName`, unless overridden.").max(30).optional().nullable(),
|
|
267
|
-
displayName: z.string().describe(
|
|
268
|
-
"Default display name for the locale, inferred from the locale ID and region code."
|
|
269
|
-
).max(30).optional().nullable(),
|
|
270
|
-
overrideDisplayName: z.string().describe("Optional override for the locale's display name.").max(30).optional().nullable()
|
|
271
|
-
}).describe("The site's primary locale.").optional()
|
|
272
|
-
}).describe("Updated locale settings.").optional()
|
|
273
|
-
});
|
|
274
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
275
|
-
0 && (module.exports = {
|
|
276
|
-
GetLocaleSettingsRequest,
|
|
277
|
-
GetLocaleSettingsResponse,
|
|
278
|
-
SetMultilingualModeRequest,
|
|
279
|
-
SetMultilingualModeResponse,
|
|
280
|
-
UpdateLocaleSettingsRequest,
|
|
281
|
-
UpdateLocaleSettingsResponse
|
|
282
|
-
});
|
|
283
|
-
//# sourceMappingURL=schemas.js.map
|
package/build/cjs/schemas.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../schemas.ts","../../src/multilingual-settings-v2-locale-settings-locale-settings.schemas.ts"],"sourcesContent":["export * from './src/multilingual-settings-v2-locale-settings-locale-settings.schemas.js';\n","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":[]}
|