@yamlresume/core 0.6.0 → 0.7.0
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/dist/index.d.ts +404 -343
- package/dist/index.js +74 -72
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -107,263 +107,6 @@ type TextNode = {
|
|
|
107
107
|
**/
|
|
108
108
|
type Node = BulletListNode | DocNode | ListItemNode | OrderedListNode | ParagraphNode | TextNode;
|
|
109
109
|
|
|
110
|
-
/**
|
|
111
|
-
* MIT License
|
|
112
|
-
*
|
|
113
|
-
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
114
|
-
*
|
|
115
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
116
|
-
* of this software and associated documentation files (the "Software"), to
|
|
117
|
-
* deal in the Software without restriction, including without limitation the
|
|
118
|
-
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
119
|
-
* sell copies of the Software, and to permit persons to whom the Software is
|
|
120
|
-
* furnished to do so, subject to the following conditions:
|
|
121
|
-
*
|
|
122
|
-
* The above copyright notice and this permission notice shall be included in
|
|
123
|
-
* all copies or substantial portions of the Software.
|
|
124
|
-
*
|
|
125
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
126
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
127
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
128
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
129
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
130
|
-
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
131
|
-
* IN THE SOFTWARE.
|
|
132
|
-
*/
|
|
133
|
-
|
|
134
|
-
/**
|
|
135
|
-
* Interface to generate code from an AST.
|
|
136
|
-
*
|
|
137
|
-
* This interface defines the contract for code generation of abstract syntax
|
|
138
|
-
* tree (AST) nodes. Implementations of this interface are responsible for
|
|
139
|
-
* converting AST nodes into their corresponding code representations.
|
|
140
|
-
*
|
|
141
|
-
* @see {@link Node}
|
|
142
|
-
*/
|
|
143
|
-
interface CodeGenerator {
|
|
144
|
-
/**
|
|
145
|
-
* Generate code from an AST node.
|
|
146
|
-
*
|
|
147
|
-
* @param node - The AST node to generate code from.
|
|
148
|
-
* @returns The generated code.
|
|
149
|
-
*/
|
|
150
|
-
generate(node: Node): string;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
/**
|
|
154
|
-
* MIT License
|
|
155
|
-
*
|
|
156
|
-
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
157
|
-
*
|
|
158
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
159
|
-
* of this software and associated documentation files (the "Software"), to
|
|
160
|
-
* deal in the Software without restriction, including without limitation the
|
|
161
|
-
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
162
|
-
* sell copies of the Software, and to permit persons to whom the Software is
|
|
163
|
-
* furnished to do so, subject to the following conditions:
|
|
164
|
-
*
|
|
165
|
-
* The above copyright notice and this permission notice shall be included in
|
|
166
|
-
* all copies or substantial portions of the Software.
|
|
167
|
-
*
|
|
168
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
169
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
170
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
171
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
172
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
173
|
-
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
174
|
-
* IN THE SOFTWARE.
|
|
175
|
-
*/
|
|
176
|
-
|
|
177
|
-
/**
|
|
178
|
-
* Generate LaTeX code from a Node.
|
|
179
|
-
*
|
|
180
|
-
* This class implements the `CodeGenerator` interface and provides a method
|
|
181
|
-
* to convert an AST node into its corresponding LaTeX code.
|
|
182
|
-
*
|
|
183
|
-
* @see {@link CodeGenerator}
|
|
184
|
-
*/
|
|
185
|
-
declare class LatexCodeGenerator implements CodeGenerator {
|
|
186
|
-
/**
|
|
187
|
-
* Generate LaTeX code from an AST node.
|
|
188
|
-
*
|
|
189
|
-
* @param node - The AST node to generate LaTeX code from.
|
|
190
|
-
* @returns The generated LaTeX code.
|
|
191
|
-
*/
|
|
192
|
-
generate(node: Node): string;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
/**
|
|
196
|
-
* MIT License
|
|
197
|
-
*
|
|
198
|
-
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
199
|
-
*
|
|
200
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
201
|
-
* of this software and associated documentation files (the "Software"), to
|
|
202
|
-
* deal in the Software without restriction, including without limitation the
|
|
203
|
-
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
204
|
-
* sell copies of the Software, and to permit persons to whom the Software is
|
|
205
|
-
* furnished to do so, subject to the following conditions:
|
|
206
|
-
*
|
|
207
|
-
* The above copyright notice and this permission notice shall be included in
|
|
208
|
-
* all copies or substantial portions of the Software.
|
|
209
|
-
*
|
|
210
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
211
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
212
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
213
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
214
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
215
|
-
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
216
|
-
* IN THE SOFTWARE.
|
|
217
|
-
*/
|
|
218
|
-
|
|
219
|
-
/**
|
|
220
|
-
* Interface for parsing input strings into AST nodes.
|
|
221
|
-
*
|
|
222
|
-
* Implementations of this interface are responsible for converting input
|
|
223
|
-
* strings into their corresponding abstract syntax tree (AST) representations.
|
|
224
|
-
*
|
|
225
|
-
* @see {@link Node}
|
|
226
|
-
*/
|
|
227
|
-
interface Parser {
|
|
228
|
-
/**
|
|
229
|
-
* Parse an input string into an AST node.
|
|
230
|
-
*
|
|
231
|
-
* @param input - The input string to parse.
|
|
232
|
-
* @returns The parsed AST node.
|
|
233
|
-
*/
|
|
234
|
-
parse(input: string): Node;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
/**
|
|
238
|
-
* MIT License
|
|
239
|
-
*
|
|
240
|
-
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
241
|
-
*
|
|
242
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
243
|
-
* of this software and associated documentation files (the "Software"), to
|
|
244
|
-
* deal in the Software without restriction, including without limitation the
|
|
245
|
-
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
246
|
-
* sell copies of the Software, and to permit persons to whom the Software is
|
|
247
|
-
* furnished to do so, subject to the following conditions:
|
|
248
|
-
*
|
|
249
|
-
* The above copyright notice and this permission notice shall be included in
|
|
250
|
-
* all copies or substantial portions of the Software.
|
|
251
|
-
*
|
|
252
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
253
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
254
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
255
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
256
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
257
|
-
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
258
|
-
* IN THE SOFTWARE.
|
|
259
|
-
*/
|
|
260
|
-
|
|
261
|
-
/**
|
|
262
|
-
* Parse markdown to ast node
|
|
263
|
-
*
|
|
264
|
-
* Under the hood this class first parse the markdown to mdast and then
|
|
265
|
-
* transform the mdast to ast node.
|
|
266
|
-
*
|
|
267
|
-
* @see {@link Parser}
|
|
268
|
-
*/
|
|
269
|
-
declare class MarkdownParser implements Parser {
|
|
270
|
-
/**
|
|
271
|
-
* Parse markdown to ast node
|
|
272
|
-
*
|
|
273
|
-
* @param input - The markdown input to parse
|
|
274
|
-
* @returns The ast node
|
|
275
|
-
*/
|
|
276
|
-
parse(input: string): Node;
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
/**
|
|
280
|
-
* Enum of error codes for YAMLResumeError.
|
|
281
|
-
*
|
|
282
|
-
* Error codes are used to identify specific errors and can be used to
|
|
283
|
-
* internationalize error messages.
|
|
284
|
-
*/
|
|
285
|
-
declare const ErrorType: {
|
|
286
|
-
readonly FILE_NOT_FOUND: {
|
|
287
|
-
readonly code: "FILE_NOT_FOUND";
|
|
288
|
-
readonly errno: number;
|
|
289
|
-
readonly message: "Resume not found: {path}";
|
|
290
|
-
readonly path: "";
|
|
291
|
-
};
|
|
292
|
-
readonly FILE_READ_ERROR: {
|
|
293
|
-
readonly code: "FILE_READ_ERROR";
|
|
294
|
-
readonly errno: number;
|
|
295
|
-
readonly message: "Failed to read resume file: {path}";
|
|
296
|
-
readonly path: "";
|
|
297
|
-
};
|
|
298
|
-
readonly FILE_WRITE_ERROR: {
|
|
299
|
-
readonly code: "FILE_WRITE_ERROR";
|
|
300
|
-
readonly errno: number;
|
|
301
|
-
readonly message: "Failed to write file: {path}";
|
|
302
|
-
readonly path: "";
|
|
303
|
-
};
|
|
304
|
-
readonly FILE_CONFLICT: {
|
|
305
|
-
readonly code: "FILE_CONFLICT";
|
|
306
|
-
readonly errno: number;
|
|
307
|
-
readonly message: string;
|
|
308
|
-
readonly path: "";
|
|
309
|
-
};
|
|
310
|
-
readonly INVALID_EXTNAME: {
|
|
311
|
-
readonly code: "INVALID_EXTNAME";
|
|
312
|
-
readonly errno: number;
|
|
313
|
-
readonly message: string;
|
|
314
|
-
readonly extname: "";
|
|
315
|
-
};
|
|
316
|
-
readonly INVALID_YAML: {
|
|
317
|
-
readonly code: "INVALID_YAML";
|
|
318
|
-
readonly errno: number;
|
|
319
|
-
readonly message: "Invalid YAML format: {error}";
|
|
320
|
-
readonly error: "";
|
|
321
|
-
};
|
|
322
|
-
readonly INVALID_JSON: {
|
|
323
|
-
readonly code: "INVALID_JSON";
|
|
324
|
-
readonly errno: number;
|
|
325
|
-
readonly message: "Invalid JSON format: {error}";
|
|
326
|
-
readonly error: "";
|
|
327
|
-
};
|
|
328
|
-
readonly LATEX_NOT_FOUND: {
|
|
329
|
-
readonly code: "LATEX_NOT_FOUND";
|
|
330
|
-
readonly errno: number;
|
|
331
|
-
readonly message: "LaTeX compiler not found. Please install either xelatex or tectonic";
|
|
332
|
-
};
|
|
333
|
-
readonly LATEX_COMPILE_ERROR: {
|
|
334
|
-
readonly code: "LATEX_COMPILE_ERROR";
|
|
335
|
-
readonly errno: number;
|
|
336
|
-
readonly message: "LaTeX compilation failed: {error}";
|
|
337
|
-
readonly error: "";
|
|
338
|
-
};
|
|
339
|
-
};
|
|
340
|
-
/**
|
|
341
|
-
* Type for the error code.
|
|
342
|
-
*/
|
|
343
|
-
type ErrorCodeType = keyof typeof ErrorType;
|
|
344
|
-
/**
|
|
345
|
-
* Type for the error message parameters.
|
|
346
|
-
*/
|
|
347
|
-
type ErrorMessageParams = {
|
|
348
|
-
[K in ErrorCodeType]: {
|
|
349
|
-
[P in keyof (typeof ErrorType)[K] as P extends 'message' | 'code' | 'errno' ? never : P]: string;
|
|
350
|
-
};
|
|
351
|
-
};
|
|
352
|
-
/**
|
|
353
|
-
* Custom error class for YAMLResume errors.
|
|
354
|
-
*/
|
|
355
|
-
declare class YAMLResumeError<T extends ErrorCodeType> extends Error {
|
|
356
|
-
code: T;
|
|
357
|
-
errno: number;
|
|
358
|
-
/**
|
|
359
|
-
* Constructor for YAMLResumeError.
|
|
360
|
-
*
|
|
361
|
-
* @param code - The error code.
|
|
362
|
-
* @param params - The error message parameters.
|
|
363
|
-
*/
|
|
364
|
-
constructor(code: T, params: ErrorMessageParams[T]);
|
|
365
|
-
}
|
|
366
|
-
|
|
367
110
|
/**
|
|
368
111
|
* MIT License
|
|
369
112
|
*
|
|
@@ -417,6 +160,7 @@ declare const TraditionalChineseCountryTWNames: Record<Country, string>;
|
|
|
417
160
|
* Spanish names.
|
|
418
161
|
*/
|
|
419
162
|
declare const SpanishCountryNames: Record<Country, string>;
|
|
163
|
+
declare const NorwegianCountryNames: Record<Country, string>;
|
|
420
164
|
|
|
421
165
|
/**
|
|
422
166
|
* MIT License
|
|
@@ -475,7 +219,7 @@ declare const LEVEL_OPTIONS: readonly ["Novice", "Beginner", "Intermediate", "Ad
|
|
|
475
219
|
*
|
|
476
220
|
* @see {@link https://en.wikipedia.org/wiki/IETF_language_tag}
|
|
477
221
|
*/
|
|
478
|
-
declare const LOCALE_LANGUAGE_OPTIONS: readonly ["en", "zh-hans", "zh-hant-hk", "zh-hant-tw", "es"];
|
|
222
|
+
declare const LOCALE_LANGUAGE_OPTIONS: readonly ["en", "zh-hans", "zh-hant-hk", "zh-hant-tw", "es", "no"];
|
|
479
223
|
/**
|
|
480
224
|
* Defines network options.
|
|
481
225
|
*/
|
|
@@ -527,7 +271,7 @@ declare const marginOptions: string[];
|
|
|
527
271
|
* @returns The language code and name of the given locale language.
|
|
528
272
|
*/
|
|
529
273
|
declare function getLocaleLanguageDetail(localeLanguage: LocaleLanguage): {
|
|
530
|
-
localeLanguage: "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es";
|
|
274
|
+
localeLanguage: "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no";
|
|
531
275
|
name: string;
|
|
532
276
|
};
|
|
533
277
|
/** Default layout configuration for a new resume. */
|
|
@@ -1175,107 +919,382 @@ type ResumeContent = {
|
|
|
1175
919
|
/**
|
|
1176
920
|
* Defines page margin settings for document layout.
|
|
1177
921
|
*/
|
|
1178
|
-
type ResumeLayoutMargins = {
|
|
1179
|
-
/** Top margin value (e.g., "2.5cm"). */
|
|
1180
|
-
top?: string;
|
|
1181
|
-
/** Bottom margin value (e.g., "2.5cm"). */
|
|
1182
|
-
bottom?: string;
|
|
1183
|
-
/** Left margin value (e.g., "1.5cm"). */
|
|
1184
|
-
left?: string;
|
|
1185
|
-
/** Right margin value (e.g., "1.5cm"). */
|
|
1186
|
-
right?: string;
|
|
1187
|
-
};
|
|
922
|
+
type ResumeLayoutMargins = {
|
|
923
|
+
/** Top margin value (e.g., "2.5cm"). */
|
|
924
|
+
top?: string;
|
|
925
|
+
/** Bottom margin value (e.g., "2.5cm"). */
|
|
926
|
+
bottom?: string;
|
|
927
|
+
/** Left margin value (e.g., "1.5cm"). */
|
|
928
|
+
left?: string;
|
|
929
|
+
/** Right margin value (e.g., "1.5cm"). */
|
|
930
|
+
right?: string;
|
|
931
|
+
};
|
|
932
|
+
/**
|
|
933
|
+
* A union type for all possible latex fontspec numbers options.
|
|
934
|
+
*
|
|
935
|
+
* - `Auto` - allowing the style to be automatically determined
|
|
936
|
+
* based on the selected `LocaleLanguage` (default)
|
|
937
|
+
* - `Lining` - standard lining figures (default for CJK languages)
|
|
938
|
+
* - `OldStyle` - old style figures with varying heights (default for Latin
|
|
939
|
+
* languages)
|
|
940
|
+
*/
|
|
941
|
+
type FontspecNumbers = (typeof FONTSPEC_NUMBERS_OPTIONS)[number];
|
|
942
|
+
/**
|
|
943
|
+
* A union type for all possible font size options.
|
|
944
|
+
*
|
|
945
|
+
* For now only 3 options are supported:
|
|
946
|
+
*
|
|
947
|
+
* - `10pt` - 10pt font size (default)
|
|
948
|
+
* - `11pt` - 11pt font size
|
|
949
|
+
* - `12pt` - 12pt font size
|
|
950
|
+
*/
|
|
951
|
+
type FontSize = (typeof FONT_SIZE_OPTIONS)[number];
|
|
952
|
+
/**
|
|
953
|
+
* Defines link styling settings for typography.
|
|
954
|
+
*/
|
|
955
|
+
type ResumeLayoutTypographyLinks = {
|
|
956
|
+
/** Whether to underline links in the document. */
|
|
957
|
+
underline?: boolean;
|
|
958
|
+
};
|
|
959
|
+
/**
|
|
960
|
+
* Defines typography settings for document formatting.
|
|
961
|
+
*/
|
|
962
|
+
type ResumeLayoutTypography = {
|
|
963
|
+
/** Base font size for the document (e.g., "10pt", "11pt"). */
|
|
964
|
+
fontSize?: string;
|
|
965
|
+
/** Link styling settings. */
|
|
966
|
+
links?: ResumeLayoutTypographyLinks;
|
|
967
|
+
};
|
|
968
|
+
/**
|
|
969
|
+
* Defines LaTeX-specific configuration options.
|
|
970
|
+
*/
|
|
971
|
+
type ResumeLayoutLaTeX = {
|
|
972
|
+
/** LaTeX fontspec package configurations. */
|
|
973
|
+
fontspec?: {
|
|
974
|
+
/** Style for rendering numbers (Lining or OldStyle). */
|
|
975
|
+
numbers?: FontspecNumbers;
|
|
976
|
+
};
|
|
977
|
+
};
|
|
978
|
+
/**
|
|
979
|
+
* Defines locale settings for internationalization and localization.
|
|
980
|
+
*/
|
|
981
|
+
type ResumeLayoutLocale = {
|
|
982
|
+
/** The selected language for the resume content and template terms. */
|
|
983
|
+
language?: LocaleLanguage;
|
|
984
|
+
};
|
|
985
|
+
/**
|
|
986
|
+
* Defines page-level settings for document presentation.
|
|
987
|
+
*/
|
|
988
|
+
type ResumeLayoutPage = {
|
|
989
|
+
/** Whether to display page numbers. */
|
|
990
|
+
showPageNumbers?: boolean;
|
|
991
|
+
};
|
|
992
|
+
/**
|
|
993
|
+
* Defines section alias settings for customizing section names.
|
|
994
|
+
*/
|
|
995
|
+
type ResumeLayoutSections = {
|
|
996
|
+
/** Custom aliases for section names, overriding default translations. */
|
|
997
|
+
aliases?: Partial<Record<OrderableSectionID, string>>;
|
|
998
|
+
/** Custom order for sections in the final output. */
|
|
999
|
+
order?: OrderableSectionID[];
|
|
1000
|
+
};
|
|
1001
|
+
/**
|
|
1002
|
+
* Defines the overall layout configuration.
|
|
1003
|
+
*/
|
|
1004
|
+
type ResumeLayout = {
|
|
1005
|
+
/** Defines locale settings for internationalization and localization. */
|
|
1006
|
+
locale?: ResumeLayoutLocale;
|
|
1007
|
+
/** Defines page margin settings for document layout. */
|
|
1008
|
+
margins?: ResumeLayoutMargins;
|
|
1009
|
+
/** Defines page-level settings for document presentation. */
|
|
1010
|
+
page?: ResumeLayoutPage;
|
|
1011
|
+
/** Defines section customization settings. */
|
|
1012
|
+
sections?: ResumeLayoutSections;
|
|
1013
|
+
/** Defines the selected template. */
|
|
1014
|
+
template?: Template;
|
|
1015
|
+
/** Defines typography settings for document formatting. */
|
|
1016
|
+
typography?: ResumeLayoutTypography;
|
|
1017
|
+
/** Defines LaTeX-specific configuration options. */
|
|
1018
|
+
latex?: ResumeLayoutLaTeX;
|
|
1019
|
+
};
|
|
1020
|
+
/**
|
|
1021
|
+
* Defines the overall resume structure, including content and layout.
|
|
1022
|
+
*
|
|
1023
|
+
* - `content` is mandatory.
|
|
1024
|
+
* - `layout` is optional, yamlresume provide a default layout if absent.
|
|
1025
|
+
*/
|
|
1026
|
+
type Resume = {
|
|
1027
|
+
/** Defines the structure for the entire resume content. */
|
|
1028
|
+
content: ResumeContent;
|
|
1029
|
+
/** Defines the overall layout configuration. */
|
|
1030
|
+
layout?: ResumeLayout;
|
|
1031
|
+
};
|
|
1032
|
+
|
|
1033
|
+
/**
|
|
1034
|
+
* MIT License
|
|
1035
|
+
*
|
|
1036
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1037
|
+
*
|
|
1038
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1039
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1040
|
+
* deal in the Software without restriction, including without limitation the
|
|
1041
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1042
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1043
|
+
* furnished to do so, subject to the following conditions:
|
|
1044
|
+
*
|
|
1045
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1046
|
+
* all copies or substantial portions of the Software.
|
|
1047
|
+
*
|
|
1048
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1049
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1050
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1051
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1052
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1053
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1054
|
+
* IN THE SOFTWARE.
|
|
1055
|
+
*/
|
|
1056
|
+
|
|
1057
|
+
/**
|
|
1058
|
+
* Context for code generation containing layout settings.
|
|
1059
|
+
*/
|
|
1060
|
+
interface CodeGenerationContext {
|
|
1061
|
+
/** Typography settings from the resume layout. */
|
|
1062
|
+
typography?: Resume['layout']['typography'];
|
|
1063
|
+
}
|
|
1064
|
+
/**
|
|
1065
|
+
* Interface to generate code from an AST.
|
|
1066
|
+
*
|
|
1067
|
+
* This interface defines the contract for code generation of abstract syntax
|
|
1068
|
+
* tree (AST) nodes. Implementations of this interface are responsible for
|
|
1069
|
+
* converting AST nodes into their corresponding code representations.
|
|
1070
|
+
*
|
|
1071
|
+
* @see {@link Node}
|
|
1072
|
+
*/
|
|
1073
|
+
interface CodeGenerator {
|
|
1074
|
+
/**
|
|
1075
|
+
* Generate code from an AST node.
|
|
1076
|
+
*
|
|
1077
|
+
* @param node - The AST node to generate code from.
|
|
1078
|
+
* @param context - Optional context containing layout settings.
|
|
1079
|
+
* @returns The generated code.
|
|
1080
|
+
*/
|
|
1081
|
+
generate(node: Node, context?: CodeGenerationContext): string;
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
/**
|
|
1085
|
+
* MIT License
|
|
1086
|
+
*
|
|
1087
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1088
|
+
*
|
|
1089
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1090
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1091
|
+
* deal in the Software without restriction, including without limitation the
|
|
1092
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1093
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1094
|
+
* furnished to do so, subject to the following conditions:
|
|
1095
|
+
*
|
|
1096
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1097
|
+
* all copies or substantial portions of the Software.
|
|
1098
|
+
*
|
|
1099
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1100
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1101
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1102
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1103
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1104
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1105
|
+
* IN THE SOFTWARE.
|
|
1106
|
+
*/
|
|
1107
|
+
|
|
1188
1108
|
/**
|
|
1189
|
-
*
|
|
1109
|
+
* Generate LaTeX code from a Node.
|
|
1190
1110
|
*
|
|
1191
|
-
*
|
|
1192
|
-
*
|
|
1193
|
-
*
|
|
1194
|
-
*
|
|
1195
|
-
* languages)
|
|
1111
|
+
* This class implements the `CodeGenerator` interface and provides a method
|
|
1112
|
+
* to convert an AST node into its corresponding LaTeX code.
|
|
1113
|
+
*
|
|
1114
|
+
* @see {@link CodeGenerator}
|
|
1196
1115
|
*/
|
|
1197
|
-
|
|
1116
|
+
declare class LatexCodeGenerator implements CodeGenerator {
|
|
1117
|
+
/**
|
|
1118
|
+
* Generate LaTeX code from an AST node.
|
|
1119
|
+
*
|
|
1120
|
+
* @param node - The AST node to generate LaTeX code from.
|
|
1121
|
+
* @param context - Optional context containing layout settings.
|
|
1122
|
+
* @returns The generated LaTeX code.
|
|
1123
|
+
*/
|
|
1124
|
+
generate(node: Node, context?: CodeGenerationContext): string;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1198
1127
|
/**
|
|
1199
|
-
*
|
|
1128
|
+
* MIT License
|
|
1200
1129
|
*
|
|
1201
|
-
*
|
|
1130
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1202
1131
|
*
|
|
1203
|
-
*
|
|
1204
|
-
*
|
|
1205
|
-
*
|
|
1132
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1133
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1134
|
+
* deal in the Software without restriction, including without limitation the
|
|
1135
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1136
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1137
|
+
* furnished to do so, subject to the following conditions:
|
|
1138
|
+
*
|
|
1139
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1140
|
+
* all copies or substantial portions of the Software.
|
|
1141
|
+
*
|
|
1142
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1143
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1144
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1145
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1146
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1147
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1148
|
+
* IN THE SOFTWARE.
|
|
1206
1149
|
*/
|
|
1207
|
-
|
|
1150
|
+
|
|
1208
1151
|
/**
|
|
1209
|
-
*
|
|
1152
|
+
* Interface for parsing input strings into AST nodes.
|
|
1153
|
+
*
|
|
1154
|
+
* Implementations of this interface are responsible for converting input
|
|
1155
|
+
* strings into their corresponding abstract syntax tree (AST) representations.
|
|
1156
|
+
*
|
|
1157
|
+
* @see {@link Node}
|
|
1210
1158
|
*/
|
|
1211
|
-
|
|
1212
|
-
/**
|
|
1213
|
-
|
|
1214
|
-
|
|
1159
|
+
interface Parser {
|
|
1160
|
+
/**
|
|
1161
|
+
* Parse an input string into an AST node.
|
|
1162
|
+
*
|
|
1163
|
+
* @param input - The input string to parse.
|
|
1164
|
+
* @returns The parsed AST node.
|
|
1165
|
+
*/
|
|
1166
|
+
parse(input: string): Node;
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1215
1169
|
/**
|
|
1216
|
-
*
|
|
1170
|
+
* MIT License
|
|
1171
|
+
*
|
|
1172
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1173
|
+
*
|
|
1174
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1175
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1176
|
+
* deal in the Software without restriction, including without limitation the
|
|
1177
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1178
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1179
|
+
* furnished to do so, subject to the following conditions:
|
|
1180
|
+
*
|
|
1181
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1182
|
+
* all copies or substantial portions of the Software.
|
|
1183
|
+
*
|
|
1184
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1185
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1186
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1187
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1188
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1189
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1190
|
+
* IN THE SOFTWARE.
|
|
1217
1191
|
*/
|
|
1218
|
-
|
|
1219
|
-
/** LaTeX fontspec package configurations. */
|
|
1220
|
-
fontspec?: {
|
|
1221
|
-
/** Style for rendering numbers (Lining or OldStyle). */
|
|
1222
|
-
numbers?: FontspecNumbers;
|
|
1223
|
-
};
|
|
1224
|
-
};
|
|
1192
|
+
|
|
1225
1193
|
/**
|
|
1226
|
-
*
|
|
1194
|
+
* Parse markdown to ast node
|
|
1195
|
+
*
|
|
1196
|
+
* Under the hood this class first parse the markdown to mdast and then
|
|
1197
|
+
* transform the mdast to ast node.
|
|
1198
|
+
*
|
|
1199
|
+
* @see {@link Parser}
|
|
1227
1200
|
*/
|
|
1228
|
-
|
|
1229
|
-
/**
|
|
1230
|
-
|
|
1231
|
-
|
|
1201
|
+
declare class MarkdownParser implements Parser {
|
|
1202
|
+
/**
|
|
1203
|
+
* Parse markdown to ast node
|
|
1204
|
+
*
|
|
1205
|
+
* @param input - The markdown input to parse
|
|
1206
|
+
* @returns The ast node
|
|
1207
|
+
*/
|
|
1208
|
+
parse(input: string): Node;
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1232
1211
|
/**
|
|
1233
|
-
*
|
|
1212
|
+
* Enum of error codes for YAMLResumeError.
|
|
1213
|
+
*
|
|
1214
|
+
* Error codes are used to identify specific errors and can be used to
|
|
1215
|
+
* internationalize error messages.
|
|
1234
1216
|
*/
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1217
|
+
declare const ErrorType: {
|
|
1218
|
+
readonly FILE_NOT_FOUND: {
|
|
1219
|
+
readonly code: "FILE_NOT_FOUND";
|
|
1220
|
+
readonly errno: number;
|
|
1221
|
+
readonly message: "Resume not found: {path}";
|
|
1222
|
+
readonly path: "";
|
|
1223
|
+
};
|
|
1224
|
+
readonly FILE_READ_ERROR: {
|
|
1225
|
+
readonly code: "FILE_READ_ERROR";
|
|
1226
|
+
readonly errno: number;
|
|
1227
|
+
readonly message: "Failed to read resume file: {path}";
|
|
1228
|
+
readonly path: "";
|
|
1229
|
+
};
|
|
1230
|
+
readonly FILE_WRITE_ERROR: {
|
|
1231
|
+
readonly code: "FILE_WRITE_ERROR";
|
|
1232
|
+
readonly errno: number;
|
|
1233
|
+
readonly message: "Failed to write file: {path}";
|
|
1234
|
+
readonly path: "";
|
|
1235
|
+
};
|
|
1236
|
+
readonly FILE_CONFLICT: {
|
|
1237
|
+
readonly code: "FILE_CONFLICT";
|
|
1238
|
+
readonly errno: number;
|
|
1239
|
+
readonly message: string;
|
|
1240
|
+
readonly path: "";
|
|
1241
|
+
};
|
|
1242
|
+
readonly INVALID_EXTNAME: {
|
|
1243
|
+
readonly code: "INVALID_EXTNAME";
|
|
1244
|
+
readonly errno: number;
|
|
1245
|
+
readonly message: string;
|
|
1246
|
+
readonly extname: "";
|
|
1247
|
+
};
|
|
1248
|
+
readonly INVALID_YAML: {
|
|
1249
|
+
readonly code: "INVALID_YAML";
|
|
1250
|
+
readonly errno: number;
|
|
1251
|
+
readonly message: "Invalid YAML format: {error}";
|
|
1252
|
+
readonly error: "";
|
|
1253
|
+
};
|
|
1254
|
+
readonly INVALID_JSON: {
|
|
1255
|
+
readonly code: "INVALID_JSON";
|
|
1256
|
+
readonly errno: number;
|
|
1257
|
+
readonly message: "Invalid JSON format: {error}";
|
|
1258
|
+
readonly error: "";
|
|
1259
|
+
};
|
|
1260
|
+
readonly LATEX_NOT_FOUND: {
|
|
1261
|
+
readonly code: "LATEX_NOT_FOUND";
|
|
1262
|
+
readonly errno: number;
|
|
1263
|
+
readonly message: "LaTeX compiler not found. Please install either xelatex or tectonic";
|
|
1264
|
+
};
|
|
1265
|
+
readonly LATEX_COMPILE_ERROR: {
|
|
1266
|
+
readonly code: "LATEX_COMPILE_ERROR";
|
|
1267
|
+
readonly errno: number;
|
|
1268
|
+
readonly message: "LaTeX compilation failed: {error}";
|
|
1269
|
+
readonly error: "";
|
|
1270
|
+
};
|
|
1238
1271
|
};
|
|
1239
1272
|
/**
|
|
1240
|
-
*
|
|
1273
|
+
* Type for the error code.
|
|
1241
1274
|
*/
|
|
1242
|
-
type
|
|
1243
|
-
/** Custom aliases for section names, overriding default translations. */
|
|
1244
|
-
aliases?: Partial<Record<OrderableSectionID, string>>;
|
|
1245
|
-
/** Custom order for sections in the final output. */
|
|
1246
|
-
order?: OrderableSectionID[];
|
|
1247
|
-
};
|
|
1275
|
+
type ErrorCodeType = keyof typeof ErrorType;
|
|
1248
1276
|
/**
|
|
1249
|
-
*
|
|
1277
|
+
* Type for the error message parameters.
|
|
1250
1278
|
*/
|
|
1251
|
-
type
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
margins?: ResumeLayoutMargins;
|
|
1256
|
-
/** Defines page-level settings for document presentation. */
|
|
1257
|
-
page?: ResumeLayoutPage;
|
|
1258
|
-
/** Defines section customization settings. */
|
|
1259
|
-
sections?: ResumeLayoutSections;
|
|
1260
|
-
/** Defines the selected template. */
|
|
1261
|
-
template?: Template;
|
|
1262
|
-
/** Defines typography settings for document formatting. */
|
|
1263
|
-
typography?: ResumeLayoutTypography;
|
|
1264
|
-
/** Defines LaTeX-specific configuration options. */
|
|
1265
|
-
latex?: ResumeLayoutLaTeX;
|
|
1279
|
+
type ErrorMessageParams = {
|
|
1280
|
+
[K in ErrorCodeType]: {
|
|
1281
|
+
[P in keyof (typeof ErrorType)[K] as P extends 'message' | 'code' | 'errno' ? never : P]: string;
|
|
1282
|
+
};
|
|
1266
1283
|
};
|
|
1267
1284
|
/**
|
|
1268
|
-
*
|
|
1269
|
-
*
|
|
1270
|
-
* - `content` is mandatory.
|
|
1271
|
-
* - `layout` is optional, yamlresume provide a default layout if absent.
|
|
1285
|
+
* Custom error class for YAMLResume errors.
|
|
1272
1286
|
*/
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
/**
|
|
1277
|
-
|
|
1278
|
-
|
|
1287
|
+
declare class YAMLResumeError<T extends ErrorCodeType> extends Error {
|
|
1288
|
+
code: T;
|
|
1289
|
+
errno: number;
|
|
1290
|
+
/**
|
|
1291
|
+
* Constructor for YAMLResumeError.
|
|
1292
|
+
*
|
|
1293
|
+
* @param code - The error code.
|
|
1294
|
+
* @param params - The error message parameters.
|
|
1295
|
+
*/
|
|
1296
|
+
constructor(code: T, params: ErrorMessageParams[T]);
|
|
1297
|
+
}
|
|
1279
1298
|
|
|
1280
1299
|
/**
|
|
1281
1300
|
* MIT License
|
|
@@ -1543,9 +1562,12 @@ declare function getResumeRenderer(resume: Resume, summaryParser?: Parser): Rend
|
|
|
1543
1562
|
declare const ResumeSchema: z.ZodObject<{
|
|
1544
1563
|
layout: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1545
1564
|
typography: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1546
|
-
fontSize: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
1565
|
+
links: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1566
|
+
underline: z.ZodDefault<z.ZodBoolean>;
|
|
1567
|
+
}, z.core.$strip>>>;
|
|
1568
|
+
fontSize: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
1547
1569
|
}, z.core.$strip>>>;
|
|
1548
|
-
template: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
1570
|
+
template: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
1549
1571
|
sections: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1550
1572
|
order: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
1551
1573
|
Afghanistan: "Afghanistan";
|
|
@@ -1901,6 +1923,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
1901
1923
|
"zh-hant-hk": "zh-hant-hk";
|
|
1902
1924
|
"zh-hant-tw": "zh-hant-tw";
|
|
1903
1925
|
es: "es";
|
|
1926
|
+
no: "no";
|
|
1904
1927
|
Behance: "Behance";
|
|
1905
1928
|
Dribbble: "Dribbble";
|
|
1906
1929
|
Facebook: "Facebook";
|
|
@@ -1965,11 +1988,11 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
1965
1988
|
right: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1966
1989
|
}, z.core.$strip>>>;
|
|
1967
1990
|
locale: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1968
|
-
language: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
1991
|
+
language: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
1969
1992
|
}, z.core.$strip>>>;
|
|
1970
1993
|
latex: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1971
1994
|
fontspec: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1972
|
-
numbers: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
1995
|
+
numbers: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
1973
1996
|
}, z.core.$strip>>>;
|
|
1974
1997
|
}, z.core.$strip>>>;
|
|
1975
1998
|
}, z.core.$strip>>>;
|
|
@@ -2346,6 +2369,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2346
2369
|
"zh-hant-hk": "zh-hant-hk";
|
|
2347
2370
|
"zh-hant-tw": "zh-hant-tw";
|
|
2348
2371
|
es: "es";
|
|
2372
|
+
no: "no";
|
|
2349
2373
|
Behance: "Behance";
|
|
2350
2374
|
Dribbble: "Dribbble";
|
|
2351
2375
|
Facebook: "Facebook";
|
|
@@ -2766,6 +2790,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2766
2790
|
"zh-hant-hk": "zh-hant-hk";
|
|
2767
2791
|
"zh-hant-tw": "zh-hant-tw";
|
|
2768
2792
|
es: "es";
|
|
2793
|
+
no: "no";
|
|
2769
2794
|
Behance: "Behance";
|
|
2770
2795
|
Dribbble: "Dribbble";
|
|
2771
2796
|
Facebook: "Facebook";
|
|
@@ -2811,7 +2836,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2811
2836
|
location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2812
2837
|
city: z.ZodString;
|
|
2813
2838
|
address: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2814
|
-
country: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
2839
|
+
country: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
2815
2840
|
postalCode: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2816
2841
|
region: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2817
2842
|
}, z.core.$strip>>>;
|
|
@@ -3170,6 +3195,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3170
3195
|
"zh-hant-hk": "zh-hant-hk";
|
|
3171
3196
|
"zh-hant-tw": "zh-hant-tw";
|
|
3172
3197
|
es: "es";
|
|
3198
|
+
no: "no";
|
|
3173
3199
|
Behance: "Behance";
|
|
3174
3200
|
Dribbble: "Dribbble";
|
|
3175
3201
|
Facebook: "Facebook";
|
|
@@ -3563,6 +3589,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3563
3589
|
"zh-hant-hk": "zh-hant-hk";
|
|
3564
3590
|
"zh-hant-tw": "zh-hant-tw";
|
|
3565
3591
|
es: "es";
|
|
3592
|
+
no: "no";
|
|
3566
3593
|
Behance: "Behance";
|
|
3567
3594
|
Dribbble: "Dribbble";
|
|
3568
3595
|
Facebook: "Facebook";
|
|
@@ -3977,6 +4004,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3977
4004
|
"zh-hant-hk": "zh-hant-hk";
|
|
3978
4005
|
"zh-hant-tw": "zh-hant-tw";
|
|
3979
4006
|
es: "es";
|
|
4007
|
+
no: "no";
|
|
3980
4008
|
Behance: "Behance";
|
|
3981
4009
|
Dribbble: "Dribbble";
|
|
3982
4010
|
Facebook: "Facebook";
|
|
@@ -4346,6 +4374,39 @@ declare function removeKeysFromObject<T extends object>(obj: T, keysToRemove: (s
|
|
|
4346
4374
|
* ```
|
|
4347
4375
|
*/
|
|
4348
4376
|
declare function collectAllKeys(obj: unknown, keys?: Set<string | number | symbol>, visited?: WeakSet<object>): Set<string | number | symbol>;
|
|
4377
|
+
/**
|
|
4378
|
+
* Normamlize all leaf values that are `null` or `undefined` with empty strings.
|
|
4379
|
+
*
|
|
4380
|
+
* This function recursively traverses an object and replaces any `null` values
|
|
4381
|
+
* with empty strings. It only affects leaf nodes (values that are not objects
|
|
4382
|
+
* or arrays), preserving the structure of nested objects and arrays.
|
|
4383
|
+
*
|
|
4384
|
+
* @param obj - The object to process
|
|
4385
|
+
* @returns A new object with all `null` leaf values replaced by empty strings
|
|
4386
|
+
*
|
|
4387
|
+
* @example
|
|
4388
|
+
* ```typescript
|
|
4389
|
+
* const obj = {
|
|
4390
|
+
* name: 'John',
|
|
4391
|
+
* email: null,
|
|
4392
|
+
* details: {
|
|
4393
|
+
* age: undefined,
|
|
4394
|
+
* hobbies: ['reading', null, 'gaming']
|
|
4395
|
+
* }
|
|
4396
|
+
* }
|
|
4397
|
+
* const result = replaceNullWithEmptyString(obj)
|
|
4398
|
+
* // result will be:
|
|
4399
|
+
* // {
|
|
4400
|
+
* // name: 'John',
|
|
4401
|
+
* // email: '',
|
|
4402
|
+
* // details: {
|
|
4403
|
+
* // age: '',
|
|
4404
|
+
* // hobbies: ['reading', '', 'gaming']
|
|
4405
|
+
* // }
|
|
4406
|
+
* // }
|
|
4407
|
+
* ```
|
|
4408
|
+
*/
|
|
4409
|
+
declare function normalizeObjectLeafValues<T>(obj: T): T;
|
|
4349
4410
|
|
|
4350
4411
|
/**
|
|
4351
4412
|
* MIT License
|
|
@@ -4402,4 +4463,4 @@ declare function joinNonEmptyString(codes: string[], separator?: string): string
|
|
|
4402
4463
|
*/
|
|
4403
4464
|
declare function toCodeBlock(code?: string, lang?: string): string;
|
|
4404
4465
|
|
|
4405
|
-
export { type Awards, type Basics, type BulletListNode, COUNTRY_OPTIONS, type Certificates, type Country, DEFAULT_SECTIONS_ORDER, DEGREE_OPTIONS, type Degree, type DocNode, type Education, EnglishCountryNames, ErrorType, FLUENCY_OPTIONS, FONTSPEC_NUMBERS_OPTIONS, FONT_SIZE_OPTIONS, type Fluency, type FontSize, type FontspecNumbers, type Interests, LANGUAGE_OPTIONS, LEVEL_OPTIONS, LOCALE_LANGUAGE_OPTIONS, type Language, type LanguageItem, type Languages, LatexCodeGenerator, type Level, type LocaleLanguage, type Location, MarkdownParser, NETWORK_OPTIONS, type Network, type Node, ORDERABLE_SECTION_IDS, type OrderableSectionID, type OrderedListNode, PUNCTUATIONS, type ParagraphNode, type Parser, type ProfileItem, type Profiles, type Projects, type Publications, type Punctuation, type References, type Resume, type ResumeContent, type ResumeItem, type ResumeLayout, ResumeSchema, SECTION_IDS, type SectionID, SimplifiedChineseCountryNames, type Skills, SpanishCountryNames, TEMPLATE_OPTIONS, TERMS, type Template, type Term, type TextNode, TraditionalChineseCountryHKNames, TraditionalChineseCountryTWNames, type Volunteer, type Work, YAMLResumeError, collectAllKeys, defaultResume, defaultResumeContent, defaultResumeLayout, epochSecondsToLocaleDateString, escapeLatex, filledResume, filledResumeContent, getDateRange, getLocaleLanguageDetail, getOptionTranslation, getResumeRenderer, getTemplateDetail, getTemplateTranslations, isEmptyString, isEmptyValue, joinNonEmptyString, localizeDate, marginOptions, mergeArrayWithOrder, milliSecondsToSeconds, nowInUTCSeconds, oneDay, parseDate, removeKeysFromObject, resumeItems, showIf, toCodeBlock, transformResume };
|
|
4466
|
+
export { type Awards, type Basics, type BulletListNode, COUNTRY_OPTIONS, type Certificates, type Country, DEFAULT_SECTIONS_ORDER, DEGREE_OPTIONS, type Degree, type DocNode, type Education, EnglishCountryNames, ErrorType, FLUENCY_OPTIONS, FONTSPEC_NUMBERS_OPTIONS, FONT_SIZE_OPTIONS, type Fluency, type FontSize, type FontspecNumbers, type Interests, LANGUAGE_OPTIONS, LEVEL_OPTIONS, LOCALE_LANGUAGE_OPTIONS, type Language, type LanguageItem, type Languages, LatexCodeGenerator, type Level, type LocaleLanguage, type Location, MarkdownParser, NETWORK_OPTIONS, type Network, type Node, NorwegianCountryNames, ORDERABLE_SECTION_IDS, type OrderableSectionID, type OrderedListNode, PUNCTUATIONS, type ParagraphNode, type Parser, type ProfileItem, type Profiles, type Projects, type Publications, type Punctuation, type References, type Resume, type ResumeContent, type ResumeItem, type ResumeLayout, ResumeSchema, SECTION_IDS, type SectionID, SimplifiedChineseCountryNames, type Skills, SpanishCountryNames, TEMPLATE_OPTIONS, TERMS, type Template, type Term, type TextNode, TraditionalChineseCountryHKNames, TraditionalChineseCountryTWNames, type Volunteer, type Work, YAMLResumeError, collectAllKeys, defaultResume, defaultResumeContent, defaultResumeLayout, epochSecondsToLocaleDateString, escapeLatex, filledResume, filledResumeContent, getDateRange, getLocaleLanguageDetail, getOptionTranslation, getResumeRenderer, getTemplateDetail, getTemplateTranslations, isEmptyString, isEmptyValue, joinNonEmptyString, localizeDate, marginOptions, mergeArrayWithOrder, milliSecondsToSeconds, normalizeObjectLeafValues, nowInUTCSeconds, oneDay, parseDate, removeKeysFromObject, resumeItems, showIf, toCodeBlock, transformResume };
|