@yamlresume/core 0.5.1 → 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/README.md +34 -7
- package/dist/index.d.ts +646 -1563
- package/dist/index.js +88 -86
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/magic-string.es-PGO5ZCT3.js +0 -14
- package/dist/magic-string.es-PGO5ZCT3.js.map +0 -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
|
*/
|
|
@@ -483,8 +227,22 @@ declare const NETWORK_OPTIONS: readonly ["Behance", "Dribbble", "Facebook", "Git
|
|
|
483
227
|
/**
|
|
484
228
|
* All valid top-level sections in the resume.
|
|
485
229
|
* */
|
|
486
|
-
declare const SECTION_IDS: readonly ["basics", "location", "profiles", "
|
|
487
|
-
/**
|
|
230
|
+
declare const SECTION_IDS: readonly ["basics", "location", "profiles", "education", "work", "volunteer", "awards", "certificates", "publications", "skills", "languages", "interests", "references", "projects"];
|
|
231
|
+
/**
|
|
232
|
+
* All valid top-level sections in the resume that can be aliased and re-ordered.
|
|
233
|
+
*
|
|
234
|
+
* `location` and `profiles` are not excluded as these are not real sections,
|
|
235
|
+
* e.g, `location` and `profiles` information are not rendered as sections in
|
|
236
|
+
* the final resume.
|
|
237
|
+
*/
|
|
238
|
+
declare const ORDERABLE_SECTION_IDS: readonly ["basics", "education", "work", "volunteer", "awards", "certificates", "publications", "skills", "languages", "interests", "references", "projects"];
|
|
239
|
+
/**
|
|
240
|
+
* Default order for sections in the resume output.
|
|
241
|
+
*
|
|
242
|
+
* Sections not specified in custom order will follow this order.
|
|
243
|
+
*/
|
|
244
|
+
declare const DEFAULT_SECTIONS_ORDER: OrderableSectionID[];
|
|
245
|
+
/** Defines identifiers for the available resume templates. */
|
|
488
246
|
declare const TEMPLATE_OPTIONS: readonly ["moderncv-banking", "moderncv-casual", "moderncv-classic"];
|
|
489
247
|
declare function getTemplateDetail(template: Template): {
|
|
490
248
|
name: string;
|
|
@@ -513,7 +271,7 @@ declare const marginOptions: string[];
|
|
|
513
271
|
* @returns The language code and name of the given locale language.
|
|
514
272
|
*/
|
|
515
273
|
declare function getLocaleLanguageDetail(localeLanguage: LocaleLanguage): {
|
|
516
|
-
localeLanguage: "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es";
|
|
274
|
+
localeLanguage: "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no";
|
|
517
275
|
name: string;
|
|
518
276
|
};
|
|
519
277
|
/** Default layout configuration for a new resume. */
|
|
@@ -579,6 +337,10 @@ type Level = (typeof LEVEL_OPTIONS)[number];
|
|
|
579
337
|
* A union type for all possible section IDs.
|
|
580
338
|
*/
|
|
581
339
|
type SectionID = (typeof SECTION_IDS)[number];
|
|
340
|
+
/**
|
|
341
|
+
* A union type for all possible section IDs that can be aliased and re-ordered.
|
|
342
|
+
*/
|
|
343
|
+
type OrderableSectionID = (typeof ORDERABLE_SECTION_IDS)[number];
|
|
582
344
|
/**
|
|
583
345
|
* A union type for all possible template options.
|
|
584
346
|
*
|
|
@@ -1187,12 +949,21 @@ type FontspecNumbers = (typeof FONTSPEC_NUMBERS_OPTIONS)[number];
|
|
|
1187
949
|
* - `12pt` - 12pt font size
|
|
1188
950
|
*/
|
|
1189
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
|
+
};
|
|
1190
959
|
/**
|
|
1191
960
|
* Defines typography settings for document formatting.
|
|
1192
961
|
*/
|
|
1193
962
|
type ResumeLayoutTypography = {
|
|
1194
963
|
/** Base font size for the document (e.g., "10pt", "11pt"). */
|
|
1195
964
|
fontSize?: string;
|
|
965
|
+
/** Link styling settings. */
|
|
966
|
+
links?: ResumeLayoutTypographyLinks;
|
|
1196
967
|
};
|
|
1197
968
|
/**
|
|
1198
969
|
* Defines LaTeX-specific configuration options.
|
|
@@ -1218,6 +989,15 @@ type ResumeLayoutPage = {
|
|
|
1218
989
|
/** Whether to display page numbers. */
|
|
1219
990
|
showPageNumbers?: boolean;
|
|
1220
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
|
+
};
|
|
1221
1001
|
/**
|
|
1222
1002
|
* Defines the overall layout configuration.
|
|
1223
1003
|
*/
|
|
@@ -1228,6 +1008,8 @@ type ResumeLayout = {
|
|
|
1228
1008
|
margins?: ResumeLayoutMargins;
|
|
1229
1009
|
/** Defines page-level settings for document presentation. */
|
|
1230
1010
|
page?: ResumeLayoutPage;
|
|
1011
|
+
/** Defines section customization settings. */
|
|
1012
|
+
sections?: ResumeLayoutSections;
|
|
1231
1013
|
/** Defines the selected template. */
|
|
1232
1014
|
template?: Template;
|
|
1233
1015
|
/** Defines typography settings for document formatting. */
|
|
@@ -1273,21 +1055,31 @@ type Resume = {
|
|
|
1273
1055
|
*/
|
|
1274
1056
|
|
|
1275
1057
|
/**
|
|
1276
|
-
*
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
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.
|
|
1281
1066
|
*
|
|
1282
|
-
*
|
|
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.
|
|
1283
1070
|
*
|
|
1284
|
-
* @
|
|
1285
|
-
* @param summaryParser - The parser instance for handling summary fields.
|
|
1286
|
-
* @returns A new, transformed resume object ready for rendering.
|
|
1287
|
-
* @remarks This function operates on and returns a deep clone of the original
|
|
1288
|
-
* resume.
|
|
1071
|
+
* @see {@link Node}
|
|
1289
1072
|
*/
|
|
1290
|
-
|
|
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
|
+
}
|
|
1291
1083
|
|
|
1292
1084
|
/**
|
|
1293
1085
|
* MIT License
|
|
@@ -1314,134 +1106,22 @@ declare function transformResume(resume: Resume, summaryParser: Parser): Resume;
|
|
|
1314
1106
|
*/
|
|
1315
1107
|
|
|
1316
1108
|
/**
|
|
1317
|
-
*
|
|
1109
|
+
* Generate LaTeX code from a Node.
|
|
1318
1110
|
*
|
|
1319
|
-
*
|
|
1320
|
-
*
|
|
1321
|
-
* sections:
|
|
1111
|
+
* This class implements the `CodeGenerator` interface and provides a method
|
|
1112
|
+
* to convert an AST node into its corresponding LaTeX code.
|
|
1322
1113
|
*
|
|
1323
|
-
*
|
|
1324
|
-
* 2. Education and career (education, work)
|
|
1325
|
-
* 3. Languages and skills
|
|
1326
|
-
* 4. Paper works (awards, certificates, publications)
|
|
1327
|
-
* 5. Persons and projects (references, projects)
|
|
1328
|
-
* 6. Non-essential information (interests, volunteer)
|
|
1114
|
+
* @see {@link CodeGenerator}
|
|
1329
1115
|
*/
|
|
1330
|
-
declare
|
|
1331
|
-
resume: Resume;
|
|
1332
|
-
/**
|
|
1333
|
-
* Constructor for the Renderer class.
|
|
1334
|
-
*
|
|
1335
|
-
* @param resume - The resume to render.
|
|
1336
|
-
*/
|
|
1337
|
-
constructor(resume: Resume);
|
|
1338
|
-
/**
|
|
1339
|
-
* Render the preamble of the TeX document.
|
|
1340
|
-
*
|
|
1341
|
-
* @returns {string} The preamble of the TeX document.
|
|
1342
|
-
*/
|
|
1343
|
-
abstract renderPreamble(): string;
|
|
1344
|
-
/**
|
|
1345
|
-
* Render the basics section of the resume.
|
|
1346
|
-
*
|
|
1347
|
-
* @returns {string} The rendered basics section
|
|
1348
|
-
*/
|
|
1349
|
-
abstract renderBasics(): string;
|
|
1350
|
-
/**
|
|
1351
|
-
* Render the summary section of the resume.
|
|
1352
|
-
*
|
|
1353
|
-
* This method handles rendering the summary text stored in
|
|
1354
|
-
* resume.content.basics.summary. The summary is rendered separately from
|
|
1355
|
-
* other basic information since it may need to appear in a different location
|
|
1356
|
-
* in the output document depending on the template.
|
|
1357
|
-
*
|
|
1358
|
-
* @returns {string} The rendered summary section
|
|
1359
|
-
*/
|
|
1360
|
-
abstract renderSummary(): string;
|
|
1361
|
-
/**
|
|
1362
|
-
* Render the location section of the resume.
|
|
1363
|
-
*
|
|
1364
|
-
* @returns {string} The rendered location section
|
|
1365
|
-
*/
|
|
1366
|
-
abstract renderLocation(): string;
|
|
1367
|
-
/**
|
|
1368
|
-
* Render the profiles section of the resume.
|
|
1369
|
-
*
|
|
1370
|
-
* @returns {string} The rendered profiles section
|
|
1371
|
-
*/
|
|
1372
|
-
abstract renderProfiles(): string;
|
|
1373
|
-
/**
|
|
1374
|
-
* Render the education section of the resume.
|
|
1375
|
-
*
|
|
1376
|
-
* @returns {string} The rendered education section
|
|
1377
|
-
*/
|
|
1378
|
-
abstract renderEducation(): string;
|
|
1379
|
-
/**
|
|
1380
|
-
* Render the work section of the resume.
|
|
1381
|
-
*
|
|
1382
|
-
* @returns {string} The rendered work section
|
|
1383
|
-
*/
|
|
1384
|
-
abstract renderWork(): string;
|
|
1385
|
-
/**
|
|
1386
|
-
* Render the languages section of the resume.
|
|
1387
|
-
*
|
|
1388
|
-
* @returns {string} The rendered languages section
|
|
1389
|
-
*/
|
|
1390
|
-
abstract renderLanguages(): string;
|
|
1391
|
-
/**
|
|
1392
|
-
* Render the skills section of the resume.
|
|
1393
|
-
*
|
|
1394
|
-
* @returns {string} The rendered skills section
|
|
1395
|
-
*/
|
|
1396
|
-
abstract renderSkills(): string;
|
|
1397
|
-
/**
|
|
1398
|
-
* Render the awards section of the resume.
|
|
1399
|
-
*
|
|
1400
|
-
* @returns {string} The rendered awards section
|
|
1401
|
-
*/
|
|
1402
|
-
abstract renderAwards(): string;
|
|
1403
|
-
/**
|
|
1404
|
-
* Render the certificates section of the resume.
|
|
1405
|
-
*
|
|
1406
|
-
* @returns {string} The rendered certificates section
|
|
1407
|
-
*/
|
|
1408
|
-
abstract renderCertificates(): string;
|
|
1409
|
-
/**
|
|
1410
|
-
* Render the publications section of the resume.
|
|
1411
|
-
*
|
|
1412
|
-
* @returns {string} The rendered publications section
|
|
1413
|
-
*/
|
|
1414
|
-
abstract renderPublications(): string;
|
|
1415
|
-
/**
|
|
1416
|
-
* Render the references section of the resume.
|
|
1417
|
-
*
|
|
1418
|
-
* @returns {string} The rendered references section
|
|
1419
|
-
*/
|
|
1420
|
-
abstract renderReferences(): string;
|
|
1421
|
-
/**
|
|
1422
|
-
* Render the projects section of the resume.
|
|
1423
|
-
*
|
|
1424
|
-
* @returns {string} The rendered projects section
|
|
1425
|
-
*/
|
|
1426
|
-
abstract renderProjects(): string;
|
|
1427
|
-
/**
|
|
1428
|
-
* Render the interests section of the resume.
|
|
1429
|
-
*
|
|
1430
|
-
* @returns {string} The rendered interests section
|
|
1431
|
-
*/
|
|
1432
|
-
abstract renderInterests(): string;
|
|
1433
|
-
/**
|
|
1434
|
-
* Render the volunteer section of the resume.
|
|
1435
|
-
*
|
|
1436
|
-
* @returns {string} The rendered volunteer section
|
|
1437
|
-
*/
|
|
1438
|
-
abstract renderVolunteer(): string;
|
|
1116
|
+
declare class LatexCodeGenerator implements CodeGenerator {
|
|
1439
1117
|
/**
|
|
1440
|
-
*
|
|
1118
|
+
* Generate LaTeX code from an AST node.
|
|
1441
1119
|
*
|
|
1442
|
-
* @
|
|
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.
|
|
1443
1123
|
*/
|
|
1444
|
-
|
|
1124
|
+
generate(node: Node, context?: CodeGenerationContext): string;
|
|
1445
1125
|
}
|
|
1446
1126
|
|
|
1447
1127
|
/**
|
|
@@ -1469,14 +1149,22 @@ declare abstract class Renderer {
|
|
|
1469
1149
|
*/
|
|
1470
1150
|
|
|
1471
1151
|
/**
|
|
1472
|
-
*
|
|
1152
|
+
* Interface for parsing input strings into AST nodes.
|
|
1473
1153
|
*
|
|
1474
|
-
*
|
|
1475
|
-
*
|
|
1476
|
-
*
|
|
1477
|
-
* @
|
|
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}
|
|
1478
1158
|
*/
|
|
1479
|
-
|
|
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
|
+
}
|
|
1480
1168
|
|
|
1481
1169
|
/**
|
|
1482
1170
|
* MIT License
|
|
@@ -1503,785 +1191,385 @@ declare function getResumeRenderer(resume: Resume, summaryParser?: Parser): Rend
|
|
|
1503
1191
|
*/
|
|
1504
1192
|
|
|
1505
1193
|
/**
|
|
1506
|
-
*
|
|
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}
|
|
1507
1200
|
*/
|
|
1508
|
-
declare
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
Reddit: "Reddit";
|
|
1876
|
-
Snapchat: "Snapchat";
|
|
1877
|
-
"Stack Overflow": "Stack Overflow";
|
|
1878
|
-
Telegram: "Telegram";
|
|
1879
|
-
TikTok: "TikTok";
|
|
1880
|
-
Twitch: "Twitch";
|
|
1881
|
-
Twitter: "Twitter";
|
|
1882
|
-
Vimeo: "Vimeo";
|
|
1883
|
-
Weibo: "Weibo";
|
|
1884
|
-
WeChat: "WeChat";
|
|
1885
|
-
WhatsApp: "WhatsApp";
|
|
1886
|
-
YouTube: "YouTube";
|
|
1887
|
-
Zhihu: "Zhihu";
|
|
1888
|
-
"moderncv-banking": "moderncv-banking";
|
|
1889
|
-
"moderncv-casual": "moderncv-casual";
|
|
1890
|
-
"moderncv-classic": "moderncv-classic";
|
|
1891
|
-
}>>>;
|
|
1892
|
-
}, z.core.$strip>>>;
|
|
1893
|
-
template: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1894
|
-
Afghanistan: "Afghanistan";
|
|
1895
|
-
"Aland Islands": "Aland Islands";
|
|
1896
|
-
Albania: "Albania";
|
|
1897
|
-
Algeria: "Algeria";
|
|
1898
|
-
"American Samoa": "American Samoa";
|
|
1899
|
-
Andorra: "Andorra";
|
|
1900
|
-
Angola: "Angola";
|
|
1901
|
-
Anguilla: "Anguilla";
|
|
1902
|
-
Antarctica: "Antarctica";
|
|
1903
|
-
"Antigua And Barbuda": "Antigua And Barbuda";
|
|
1904
|
-
Argentina: "Argentina";
|
|
1905
|
-
Armenia: "Armenia";
|
|
1906
|
-
Aruba: "Aruba";
|
|
1907
|
-
Australia: "Australia";
|
|
1908
|
-
Austria: "Austria";
|
|
1909
|
-
Azerbaijan: "Azerbaijan";
|
|
1910
|
-
Bahrain: "Bahrain";
|
|
1911
|
-
Bangladesh: "Bangladesh";
|
|
1912
|
-
Barbados: "Barbados";
|
|
1913
|
-
Belarus: "Belarus";
|
|
1914
|
-
Belgium: "Belgium";
|
|
1915
|
-
Belize: "Belize";
|
|
1916
|
-
Benin: "Benin";
|
|
1917
|
-
Bermuda: "Bermuda";
|
|
1918
|
-
Bhutan: "Bhutan";
|
|
1919
|
-
Bolivia: "Bolivia";
|
|
1920
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
1921
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
1922
|
-
Botswana: "Botswana";
|
|
1923
|
-
"Bouvet Island": "Bouvet Island";
|
|
1924
|
-
Brazil: "Brazil";
|
|
1925
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
1926
|
-
Brunei: "Brunei";
|
|
1927
|
-
Bulgaria: "Bulgaria";
|
|
1928
|
-
"Burkina Faso": "Burkina Faso";
|
|
1929
|
-
Burundi: "Burundi";
|
|
1930
|
-
Cambodia: "Cambodia";
|
|
1931
|
-
Cameroon: "Cameroon";
|
|
1932
|
-
Canada: "Canada";
|
|
1933
|
-
"Cape Verde": "Cape Verde";
|
|
1934
|
-
"Cayman Islands": "Cayman Islands";
|
|
1935
|
-
"Central African Republic": "Central African Republic";
|
|
1936
|
-
Chad: "Chad";
|
|
1937
|
-
Chile: "Chile";
|
|
1938
|
-
China: "China";
|
|
1939
|
-
"Christmas Island": "Christmas Island";
|
|
1940
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
1941
|
-
Colombia: "Colombia";
|
|
1942
|
-
Comoros: "Comoros";
|
|
1943
|
-
Congo: "Congo";
|
|
1944
|
-
"Cook Islands": "Cook Islands";
|
|
1945
|
-
"Costa Rica": "Costa Rica";
|
|
1946
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
1947
|
-
Croatia: "Croatia";
|
|
1948
|
-
Cuba: "Cuba";
|
|
1949
|
-
Curaçao: "Curaçao";
|
|
1950
|
-
Cyprus: "Cyprus";
|
|
1951
|
-
"Czech Republic": "Czech Republic";
|
|
1952
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
1953
|
-
Denmark: "Denmark";
|
|
1954
|
-
Djibouti: "Djibouti";
|
|
1955
|
-
Dominica: "Dominica";
|
|
1956
|
-
"Dominican Republic": "Dominican Republic";
|
|
1957
|
-
"East Timor": "East Timor";
|
|
1958
|
-
Ecuador: "Ecuador";
|
|
1959
|
-
Egypt: "Egypt";
|
|
1960
|
-
"El Salvador": "El Salvador";
|
|
1961
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
1962
|
-
Eritrea: "Eritrea";
|
|
1963
|
-
Estonia: "Estonia";
|
|
1964
|
-
Ethiopia: "Ethiopia";
|
|
1965
|
-
"Falkland Islands": "Falkland Islands";
|
|
1966
|
-
"Faroe Islands": "Faroe Islands";
|
|
1967
|
-
"Fiji Islands": "Fiji Islands";
|
|
1968
|
-
Finland: "Finland";
|
|
1969
|
-
France: "France";
|
|
1970
|
-
"French Guiana": "French Guiana";
|
|
1971
|
-
"French Polynesia": "French Polynesia";
|
|
1972
|
-
"French Southern Territories": "French Southern Territories";
|
|
1973
|
-
Gabon: "Gabon";
|
|
1974
|
-
"Gambia The": "Gambia The";
|
|
1975
|
-
Georgia: "Georgia";
|
|
1976
|
-
Germany: "Germany";
|
|
1977
|
-
Ghana: "Ghana";
|
|
1978
|
-
Gibraltar: "Gibraltar";
|
|
1979
|
-
Greece: "Greece";
|
|
1980
|
-
Greenland: "Greenland";
|
|
1981
|
-
Grenada: "Grenada";
|
|
1982
|
-
Guadeloupe: "Guadeloupe";
|
|
1983
|
-
Guam: "Guam";
|
|
1984
|
-
Guatemala: "Guatemala";
|
|
1985
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
1986
|
-
Guinea: "Guinea";
|
|
1987
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
1988
|
-
Guyana: "Guyana";
|
|
1989
|
-
Haiti: "Haiti";
|
|
1990
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
1991
|
-
Honduras: "Honduras";
|
|
1992
|
-
"Hong Kong S.A.R.": "Hong Kong S.A.R.";
|
|
1993
|
-
Hungary: "Hungary";
|
|
1994
|
-
Iceland: "Iceland";
|
|
1995
|
-
India: "India";
|
|
1996
|
-
Indonesia: "Indonesia";
|
|
1997
|
-
Iran: "Iran";
|
|
1998
|
-
Iraq: "Iraq";
|
|
1999
|
-
Ireland: "Ireland";
|
|
2000
|
-
Israel: "Israel";
|
|
2001
|
-
Italy: "Italy";
|
|
2002
|
-
Jamaica: "Jamaica";
|
|
2003
|
-
Japan: "Japan";
|
|
2004
|
-
Jersey: "Jersey";
|
|
2005
|
-
Jordan: "Jordan";
|
|
2006
|
-
Kazakhstan: "Kazakhstan";
|
|
2007
|
-
Kenya: "Kenya";
|
|
2008
|
-
Kiribati: "Kiribati";
|
|
2009
|
-
Kosovo: "Kosovo";
|
|
2010
|
-
Kuwait: "Kuwait";
|
|
2011
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
2012
|
-
Laos: "Laos";
|
|
2013
|
-
Latvia: "Latvia";
|
|
2014
|
-
Lebanon: "Lebanon";
|
|
2015
|
-
Lesotho: "Lesotho";
|
|
2016
|
-
Liberia: "Liberia";
|
|
2017
|
-
Libya: "Libya";
|
|
2018
|
-
Liechtenstein: "Liechtenstein";
|
|
2019
|
-
Lithuania: "Lithuania";
|
|
2020
|
-
Luxembourg: "Luxembourg";
|
|
2021
|
-
"Macau S.A.R.": "Macau S.A.R.";
|
|
2022
|
-
Madagascar: "Madagascar";
|
|
2023
|
-
Malawi: "Malawi";
|
|
2024
|
-
Malaysia: "Malaysia";
|
|
2025
|
-
Maldives: "Maldives";
|
|
2026
|
-
Mali: "Mali";
|
|
2027
|
-
Malta: "Malta";
|
|
2028
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
2029
|
-
"Marshall Islands": "Marshall Islands";
|
|
2030
|
-
Martinique: "Martinique";
|
|
2031
|
-
Mauritania: "Mauritania";
|
|
2032
|
-
Mauritius: "Mauritius";
|
|
2033
|
-
Mayotte: "Mayotte";
|
|
2034
|
-
Mexico: "Mexico";
|
|
2035
|
-
Micronesia: "Micronesia";
|
|
2036
|
-
Moldova: "Moldova";
|
|
2037
|
-
Monaco: "Monaco";
|
|
2038
|
-
Mongolia: "Mongolia";
|
|
2039
|
-
Montenegro: "Montenegro";
|
|
2040
|
-
Montserrat: "Montserrat";
|
|
2041
|
-
Morocco: "Morocco";
|
|
2042
|
-
Mozambique: "Mozambique";
|
|
2043
|
-
Myanmar: "Myanmar";
|
|
2044
|
-
Namibia: "Namibia";
|
|
2045
|
-
Nauru: "Nauru";
|
|
2046
|
-
Nepal: "Nepal";
|
|
2047
|
-
Netherlands: "Netherlands";
|
|
2048
|
-
"New Caledonia": "New Caledonia";
|
|
2049
|
-
"New Zealand": "New Zealand";
|
|
2050
|
-
Nicaragua: "Nicaragua";
|
|
2051
|
-
Niger: "Niger";
|
|
2052
|
-
Nigeria: "Nigeria";
|
|
2053
|
-
Niue: "Niue";
|
|
2054
|
-
"Norfolk Island": "Norfolk Island";
|
|
2055
|
-
"North Korea": "North Korea";
|
|
2056
|
-
"North Macedonia": "North Macedonia";
|
|
2057
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
2058
|
-
Norway: "Norway";
|
|
2059
|
-
Oman: "Oman";
|
|
2060
|
-
Pakistan: "Pakistan";
|
|
2061
|
-
Palau: "Palau";
|
|
2062
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
2063
|
-
Panama: "Panama";
|
|
2064
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
2065
|
-
Paraguay: "Paraguay";
|
|
2066
|
-
Peru: "Peru";
|
|
2067
|
-
Philippines: "Philippines";
|
|
2068
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
2069
|
-
Poland: "Poland";
|
|
2070
|
-
Portugal: "Portugal";
|
|
2071
|
-
"Puerto Rico": "Puerto Rico";
|
|
2072
|
-
Qatar: "Qatar";
|
|
2073
|
-
Reunion: "Reunion";
|
|
2074
|
-
Romania: "Romania";
|
|
2075
|
-
Russia: "Russia";
|
|
2076
|
-
Rwanda: "Rwanda";
|
|
2077
|
-
"Saint Helena": "Saint Helena";
|
|
2078
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
2079
|
-
"Saint Lucia": "Saint Lucia";
|
|
2080
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
2081
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
2082
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
2083
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
2084
|
-
Samoa: "Samoa";
|
|
2085
|
-
"San Marino": "San Marino";
|
|
2086
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
2087
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
2088
|
-
Senegal: "Senegal";
|
|
2089
|
-
Serbia: "Serbia";
|
|
2090
|
-
Seychelles: "Seychelles";
|
|
2091
|
-
"Sierra Leone": "Sierra Leone";
|
|
2092
|
-
Singapore: "Singapore";
|
|
2093
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
2094
|
-
Slovakia: "Slovakia";
|
|
2095
|
-
Slovenia: "Slovenia";
|
|
2096
|
-
"Solomon Islands": "Solomon Islands";
|
|
2097
|
-
Somalia: "Somalia";
|
|
2098
|
-
"South Africa": "South Africa";
|
|
2099
|
-
"South Georgia": "South Georgia";
|
|
2100
|
-
"South Korea": "South Korea";
|
|
2101
|
-
"South Sudan": "South Sudan";
|
|
2102
|
-
Spain: "Spain";
|
|
2103
|
-
"Sri Lanka": "Sri Lanka";
|
|
2104
|
-
Sudan: "Sudan";
|
|
2105
|
-
Suriname: "Suriname";
|
|
2106
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
2107
|
-
Swaziland: "Swaziland";
|
|
2108
|
-
Sweden: "Sweden";
|
|
2109
|
-
Switzerland: "Switzerland";
|
|
2110
|
-
Syria: "Syria";
|
|
2111
|
-
Taiwan: "Taiwan";
|
|
2112
|
-
Tajikistan: "Tajikistan";
|
|
2113
|
-
Tanzania: "Tanzania";
|
|
2114
|
-
Thailand: "Thailand";
|
|
2115
|
-
"The Bahamas": "The Bahamas";
|
|
2116
|
-
Togo: "Togo";
|
|
2117
|
-
Tokelau: "Tokelau";
|
|
2118
|
-
Tonga: "Tonga";
|
|
2119
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
2120
|
-
Tunisia: "Tunisia";
|
|
2121
|
-
Turkey: "Turkey";
|
|
2122
|
-
Turkmenistan: "Turkmenistan";
|
|
2123
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
2124
|
-
Tuvalu: "Tuvalu";
|
|
2125
|
-
Uganda: "Uganda";
|
|
2126
|
-
Ukraine: "Ukraine";
|
|
2127
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
2128
|
-
"United Kingdom": "United Kingdom";
|
|
2129
|
-
"United States": "United States";
|
|
2130
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
2131
|
-
Uruguay: "Uruguay";
|
|
2132
|
-
Uzbekistan: "Uzbekistan";
|
|
2133
|
-
Vanuatu: "Vanuatu";
|
|
2134
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
2135
|
-
Venezuela: "Venezuela";
|
|
2136
|
-
Vietnam: "Vietnam";
|
|
2137
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
2138
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
2139
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
2140
|
-
"Western Sahara": "Western Sahara";
|
|
2141
|
-
Yemen: "Yemen";
|
|
2142
|
-
Zambia: "Zambia";
|
|
2143
|
-
Zimbabwe: "Zimbabwe";
|
|
2144
|
-
"Middle School": "Middle School";
|
|
2145
|
-
"High School": "High School";
|
|
2146
|
-
Diploma: "Diploma";
|
|
2147
|
-
Associate: "Associate";
|
|
2148
|
-
Bachelor: "Bachelor";
|
|
2149
|
-
Master: "Master";
|
|
2150
|
-
Doctor: "Doctor";
|
|
2151
|
-
"Elementary Proficiency": "Elementary Proficiency";
|
|
2152
|
-
"Limited Working Proficiency": "Limited Working Proficiency";
|
|
2153
|
-
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
2154
|
-
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
2155
|
-
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
2156
|
-
"10pt": "10pt";
|
|
2157
|
-
"11pt": "11pt";
|
|
2158
|
-
"12pt": "12pt";
|
|
2159
|
-
Lining: "Lining";
|
|
2160
|
-
OldStyle: "OldStyle";
|
|
2161
|
-
Auto: "Auto";
|
|
2162
|
-
Afrikaans: "Afrikaans";
|
|
2163
|
-
Albanian: "Albanian";
|
|
2164
|
-
Amharic: "Amharic";
|
|
2165
|
-
Arabic: "Arabic";
|
|
2166
|
-
Azerbaijani: "Azerbaijani";
|
|
2167
|
-
Belarusian: "Belarusian";
|
|
2168
|
-
Bengali: "Bengali";
|
|
2169
|
-
Bhojpuri: "Bhojpuri";
|
|
2170
|
-
Bulgarian: "Bulgarian";
|
|
2171
|
-
Burmese: "Burmese";
|
|
2172
|
-
Cantonese: "Cantonese";
|
|
2173
|
-
Catalan: "Catalan";
|
|
2174
|
-
Chinese: "Chinese";
|
|
2175
|
-
Croatian: "Croatian";
|
|
2176
|
-
Czech: "Czech";
|
|
2177
|
-
Danish: "Danish";
|
|
2178
|
-
Dutch: "Dutch";
|
|
2179
|
-
English: "English";
|
|
2180
|
-
Estonian: "Estonian";
|
|
2181
|
-
Farsi: "Farsi";
|
|
2182
|
-
Filipino: "Filipino";
|
|
2183
|
-
Finnish: "Finnish";
|
|
2184
|
-
French: "French";
|
|
2185
|
-
German: "German";
|
|
2186
|
-
Greek: "Greek";
|
|
2187
|
-
Gujarati: "Gujarati";
|
|
2188
|
-
Hausa: "Hausa";
|
|
2189
|
-
Hebrew: "Hebrew";
|
|
2190
|
-
Hindi: "Hindi";
|
|
2191
|
-
Hungarian: "Hungarian";
|
|
2192
|
-
Icelandic: "Icelandic";
|
|
2193
|
-
Igbo: "Igbo";
|
|
2194
|
-
Indonesian: "Indonesian";
|
|
2195
|
-
Irish: "Irish";
|
|
2196
|
-
Italian: "Italian";
|
|
2197
|
-
Japanese: "Japanese";
|
|
2198
|
-
Javanese: "Javanese";
|
|
2199
|
-
Kazakh: "Kazakh";
|
|
2200
|
-
Khmer: "Khmer";
|
|
2201
|
-
Korean: "Korean";
|
|
2202
|
-
Lahnda: "Lahnda";
|
|
2203
|
-
Latvian: "Latvian";
|
|
2204
|
-
Lithuanian: "Lithuanian";
|
|
2205
|
-
Malay: "Malay";
|
|
2206
|
-
Mandarin: "Mandarin";
|
|
2207
|
-
Marathi: "Marathi";
|
|
2208
|
-
Nepali: "Nepali";
|
|
2209
|
-
Norwegian: "Norwegian";
|
|
2210
|
-
Oromo: "Oromo";
|
|
2211
|
-
Pashto: "Pashto";
|
|
2212
|
-
Polish: "Polish";
|
|
2213
|
-
Portuguese: "Portuguese";
|
|
2214
|
-
Romanian: "Romanian";
|
|
2215
|
-
Russian: "Russian";
|
|
2216
|
-
Serbian: "Serbian";
|
|
2217
|
-
Shona: "Shona";
|
|
2218
|
-
Sinhala: "Sinhala";
|
|
2219
|
-
Slovak: "Slovak";
|
|
2220
|
-
Slovene: "Slovene";
|
|
2221
|
-
Somali: "Somali";
|
|
2222
|
-
Spanish: "Spanish";
|
|
2223
|
-
Sundanese: "Sundanese";
|
|
2224
|
-
Swahili: "Swahili";
|
|
2225
|
-
Swedish: "Swedish";
|
|
2226
|
-
Tagalog: "Tagalog";
|
|
2227
|
-
Tamil: "Tamil";
|
|
2228
|
-
Telugu: "Telugu";
|
|
2229
|
-
Thai: "Thai";
|
|
2230
|
-
Turkish: "Turkish";
|
|
2231
|
-
Ukrainian: "Ukrainian";
|
|
2232
|
-
Urdu: "Urdu";
|
|
2233
|
-
Uzbek: "Uzbek";
|
|
2234
|
-
Vietnamese: "Vietnamese";
|
|
2235
|
-
Yoruba: "Yoruba";
|
|
2236
|
-
Zulu: "Zulu";
|
|
2237
|
-
Novice: "Novice";
|
|
2238
|
-
Beginner: "Beginner";
|
|
2239
|
-
Intermediate: "Intermediate";
|
|
2240
|
-
Advanced: "Advanced";
|
|
2241
|
-
Expert: "Expert";
|
|
2242
|
-
en: "en";
|
|
2243
|
-
"zh-hans": "zh-hans";
|
|
2244
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
2245
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
2246
|
-
es: "es";
|
|
2247
|
-
Behance: "Behance";
|
|
2248
|
-
Dribbble: "Dribbble";
|
|
2249
|
-
Facebook: "Facebook";
|
|
2250
|
-
GitHub: "GitHub";
|
|
2251
|
-
Gitlab: "Gitlab";
|
|
2252
|
-
Instagram: "Instagram";
|
|
2253
|
-
Line: "Line";
|
|
2254
|
-
LinkedIn: "LinkedIn";
|
|
2255
|
-
Medium: "Medium";
|
|
2256
|
-
Pinterest: "Pinterest";
|
|
2257
|
-
Reddit: "Reddit";
|
|
2258
|
-
Snapchat: "Snapchat";
|
|
2259
|
-
"Stack Overflow": "Stack Overflow";
|
|
2260
|
-
Telegram: "Telegram";
|
|
2261
|
-
TikTok: "TikTok";
|
|
2262
|
-
Twitch: "Twitch";
|
|
2263
|
-
Twitter: "Twitter";
|
|
2264
|
-
Vimeo: "Vimeo";
|
|
2265
|
-
Weibo: "Weibo";
|
|
2266
|
-
WeChat: "WeChat";
|
|
2267
|
-
WhatsApp: "WhatsApp";
|
|
2268
|
-
YouTube: "YouTube";
|
|
2269
|
-
Zhihu: "Zhihu";
|
|
2270
|
-
"moderncv-banking": "moderncv-banking";
|
|
2271
|
-
"moderncv-casual": "moderncv-casual";
|
|
2272
|
-
"moderncv-classic": "moderncv-classic";
|
|
2273
|
-
}>>>;
|
|
2274
|
-
page: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2275
|
-
showPageNumbers: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2276
|
-
}, z.core.$strip>>>;
|
|
2277
|
-
margins: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2278
|
-
top: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2279
|
-
bottom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2280
|
-
left: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2281
|
-
right: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
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
|
+
|
|
1211
|
+
/**
|
|
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.
|
|
1216
|
+
*/
|
|
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
|
+
};
|
|
1271
|
+
};
|
|
1272
|
+
/**
|
|
1273
|
+
* Type for the error code.
|
|
1274
|
+
*/
|
|
1275
|
+
type ErrorCodeType = keyof typeof ErrorType;
|
|
1276
|
+
/**
|
|
1277
|
+
* Type for the error message parameters.
|
|
1278
|
+
*/
|
|
1279
|
+
type ErrorMessageParams = {
|
|
1280
|
+
[K in ErrorCodeType]: {
|
|
1281
|
+
[P in keyof (typeof ErrorType)[K] as P extends 'message' | 'code' | 'errno' ? never : P]: string;
|
|
1282
|
+
};
|
|
1283
|
+
};
|
|
1284
|
+
/**
|
|
1285
|
+
* Custom error class for YAMLResume errors.
|
|
1286
|
+
*/
|
|
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
|
+
}
|
|
1298
|
+
|
|
1299
|
+
/**
|
|
1300
|
+
* MIT License
|
|
1301
|
+
*
|
|
1302
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1303
|
+
*
|
|
1304
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1305
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1306
|
+
* deal in the Software without restriction, including without limitation the
|
|
1307
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1308
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1309
|
+
* furnished to do so, subject to the following conditions:
|
|
1310
|
+
*
|
|
1311
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1312
|
+
* all copies or substantial portions of the Software.
|
|
1313
|
+
*
|
|
1314
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1315
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1316
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1317
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1318
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1319
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1320
|
+
* IN THE SOFTWARE.
|
|
1321
|
+
*/
|
|
1322
|
+
|
|
1323
|
+
/**
|
|
1324
|
+
* Applies all necessary transformations to a resume object in preparation for
|
|
1325
|
+
* rendering.
|
|
1326
|
+
*
|
|
1327
|
+
* This includes content processing, layout merging/adjustments, and environment
|
|
1328
|
+
* setup.
|
|
1329
|
+
*
|
|
1330
|
+
* The order of transformations is: content, layout, environment.
|
|
1331
|
+
*
|
|
1332
|
+
* @param resume - The original resume object.
|
|
1333
|
+
* @param summaryParser - The parser instance for handling summary fields.
|
|
1334
|
+
* @returns A new, transformed resume object ready for rendering.
|
|
1335
|
+
* @remarks This function operates on and returns a deep clone of the original
|
|
1336
|
+
* resume.
|
|
1337
|
+
*/
|
|
1338
|
+
declare function transformResume(resume: Resume, summaryParser: Parser): Resume;
|
|
1339
|
+
|
|
1340
|
+
/**
|
|
1341
|
+
* MIT License
|
|
1342
|
+
*
|
|
1343
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1344
|
+
*
|
|
1345
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1346
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1347
|
+
* deal in the Software without restriction, including without limitation the
|
|
1348
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1349
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1350
|
+
* furnished to do so, subject to the following conditions:
|
|
1351
|
+
*
|
|
1352
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1353
|
+
* all copies or substantial portions of the Software.
|
|
1354
|
+
*
|
|
1355
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1356
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1357
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1358
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1359
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1360
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1361
|
+
* IN THE SOFTWARE.
|
|
1362
|
+
*/
|
|
1363
|
+
|
|
1364
|
+
/**
|
|
1365
|
+
* Abstract class for rendering resumes in TeX format.
|
|
1366
|
+
*
|
|
1367
|
+
* TeXRenderer provides the base functionality for converting Resume objects
|
|
1368
|
+
* into TeX documents. It follows a specific rendering order for resume
|
|
1369
|
+
* sections:
|
|
1370
|
+
*
|
|
1371
|
+
* 1. Core information (basics, location, profiles)
|
|
1372
|
+
* 2. Education and career (education, work)
|
|
1373
|
+
* 3. Languages and skills
|
|
1374
|
+
* 4. Paper works (awards, certificates, publications)
|
|
1375
|
+
* 5. Persons and projects (references, projects)
|
|
1376
|
+
* 6. Non-essential information (interests, volunteer)
|
|
1377
|
+
*/
|
|
1378
|
+
declare abstract class Renderer {
|
|
1379
|
+
resume: Resume;
|
|
1380
|
+
/**
|
|
1381
|
+
* Constructor for the Renderer class.
|
|
1382
|
+
*
|
|
1383
|
+
* @param resume - The resume to render.
|
|
1384
|
+
*/
|
|
1385
|
+
constructor(resume: Resume);
|
|
1386
|
+
/**
|
|
1387
|
+
* Render the preamble of the TeX document.
|
|
1388
|
+
*
|
|
1389
|
+
* @returns {string} The preamble of the TeX document.
|
|
1390
|
+
*/
|
|
1391
|
+
abstract renderPreamble(): string;
|
|
1392
|
+
/**
|
|
1393
|
+
* Render the basics section of the resume.
|
|
1394
|
+
*
|
|
1395
|
+
* @returns {string} The rendered basics section
|
|
1396
|
+
*/
|
|
1397
|
+
abstract renderBasics(): string;
|
|
1398
|
+
/**
|
|
1399
|
+
* Render the summary section of the resume.
|
|
1400
|
+
*
|
|
1401
|
+
* This method handles rendering the summary text stored in
|
|
1402
|
+
* resume.content.basics.summary. The summary is rendered separately from
|
|
1403
|
+
* other basic information since it may need to appear in a different location
|
|
1404
|
+
* in the output document depending on the template.
|
|
1405
|
+
*
|
|
1406
|
+
* @returns {string} The rendered summary section
|
|
1407
|
+
*/
|
|
1408
|
+
abstract renderSummary(): string;
|
|
1409
|
+
/**
|
|
1410
|
+
* Render the location section of the resume.
|
|
1411
|
+
*
|
|
1412
|
+
* @returns {string} The rendered location section
|
|
1413
|
+
*/
|
|
1414
|
+
abstract renderLocation(): string;
|
|
1415
|
+
/**
|
|
1416
|
+
* Render the profiles section of the resume.
|
|
1417
|
+
*
|
|
1418
|
+
* @returns {string} The rendered profiles section
|
|
1419
|
+
*/
|
|
1420
|
+
abstract renderProfiles(): string;
|
|
1421
|
+
/**
|
|
1422
|
+
* Render the education section of the resume.
|
|
1423
|
+
*
|
|
1424
|
+
* @returns {string} The rendered education section
|
|
1425
|
+
*/
|
|
1426
|
+
abstract renderEducation(): string;
|
|
1427
|
+
/**
|
|
1428
|
+
* Render the work section of the resume.
|
|
1429
|
+
*
|
|
1430
|
+
* @returns {string} The rendered work section
|
|
1431
|
+
*/
|
|
1432
|
+
abstract renderWork(): string;
|
|
1433
|
+
/**
|
|
1434
|
+
* Render the languages section of the resume.
|
|
1435
|
+
*
|
|
1436
|
+
* @returns {string} The rendered languages section
|
|
1437
|
+
*/
|
|
1438
|
+
abstract renderLanguages(): string;
|
|
1439
|
+
/**
|
|
1440
|
+
* Render the skills section of the resume.
|
|
1441
|
+
*
|
|
1442
|
+
* @returns {string} The rendered skills section
|
|
1443
|
+
*/
|
|
1444
|
+
abstract renderSkills(): string;
|
|
1445
|
+
/**
|
|
1446
|
+
* Render the awards section of the resume.
|
|
1447
|
+
*
|
|
1448
|
+
* @returns {string} The rendered awards section
|
|
1449
|
+
*/
|
|
1450
|
+
abstract renderAwards(): string;
|
|
1451
|
+
/**
|
|
1452
|
+
* Render the certificates section of the resume.
|
|
1453
|
+
*
|
|
1454
|
+
* @returns {string} The rendered certificates section
|
|
1455
|
+
*/
|
|
1456
|
+
abstract renderCertificates(): string;
|
|
1457
|
+
/**
|
|
1458
|
+
* Render the publications section of the resume.
|
|
1459
|
+
*
|
|
1460
|
+
* @returns {string} The rendered publications section
|
|
1461
|
+
*/
|
|
1462
|
+
abstract renderPublications(): string;
|
|
1463
|
+
/**
|
|
1464
|
+
* Render the references section of the resume.
|
|
1465
|
+
*
|
|
1466
|
+
* @returns {string} The rendered references section
|
|
1467
|
+
*/
|
|
1468
|
+
abstract renderReferences(): string;
|
|
1469
|
+
/**
|
|
1470
|
+
* Render the projects section of the resume.
|
|
1471
|
+
*
|
|
1472
|
+
* @returns {string} The rendered projects section
|
|
1473
|
+
*/
|
|
1474
|
+
abstract renderProjects(): string;
|
|
1475
|
+
/**
|
|
1476
|
+
* Render the interests section of the resume.
|
|
1477
|
+
*
|
|
1478
|
+
* @returns {string} The rendered interests section
|
|
1479
|
+
*/
|
|
1480
|
+
abstract renderInterests(): string;
|
|
1481
|
+
/**
|
|
1482
|
+
* Render the volunteer section of the resume.
|
|
1483
|
+
*
|
|
1484
|
+
* @returns {string} The rendered volunteer section
|
|
1485
|
+
*/
|
|
1486
|
+
abstract renderVolunteer(): string;
|
|
1487
|
+
/**
|
|
1488
|
+
* Render the resume.
|
|
1489
|
+
*
|
|
1490
|
+
* @returns {string} The rendered resume
|
|
1491
|
+
*/
|
|
1492
|
+
abstract render(): string;
|
|
1493
|
+
/**
|
|
1494
|
+
* Render sections in the specified order.
|
|
1495
|
+
*
|
|
1496
|
+
* @returns {string} The rendered sections in the specified order
|
|
1497
|
+
*/
|
|
1498
|
+
protected renderOrderedSections(): string;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
/**
|
|
1502
|
+
* MIT License
|
|
1503
|
+
*
|
|
1504
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1505
|
+
*
|
|
1506
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1507
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1508
|
+
* deal in the Software without restriction, including without limitation the
|
|
1509
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1510
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1511
|
+
* furnished to do so, subject to the following conditions:
|
|
1512
|
+
*
|
|
1513
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1514
|
+
* all copies or substantial portions of the Software.
|
|
1515
|
+
*
|
|
1516
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1517
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1518
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1519
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1520
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1521
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1522
|
+
* IN THE SOFTWARE.
|
|
1523
|
+
*/
|
|
1524
|
+
|
|
1525
|
+
/**
|
|
1526
|
+
* Get the appropriate resume renderer based on the provided resume.
|
|
1527
|
+
*
|
|
1528
|
+
* @param {Resume} resume - The resume object
|
|
1529
|
+
* @param {Parser} summaryParser - The parser instance for the summary field.
|
|
1530
|
+
* Default to `MarkdownParser` if not provided.
|
|
1531
|
+
* @returns {Renderer} The renderer instance for the specified template.
|
|
1532
|
+
*/
|
|
1533
|
+
declare function getResumeRenderer(resume: Resume, summaryParser?: Parser): Renderer;
|
|
1534
|
+
|
|
1535
|
+
/**
|
|
1536
|
+
* MIT License
|
|
1537
|
+
*
|
|
1538
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1539
|
+
*
|
|
1540
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1541
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1542
|
+
* deal in the Software without restriction, including without limitation the
|
|
1543
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1544
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1545
|
+
* furnished to do so, subject to the following conditions:
|
|
1546
|
+
*
|
|
1547
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1548
|
+
* all copies or substantial portions of the Software.
|
|
1549
|
+
*
|
|
1550
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1551
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1552
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1553
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1554
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1555
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1556
|
+
* IN THE SOFTWARE.
|
|
1557
|
+
*/
|
|
1558
|
+
|
|
1559
|
+
/**
|
|
1560
|
+
* A zod schema for a yaml resume.
|
|
1561
|
+
*/
|
|
1562
|
+
declare const ResumeSchema: z.ZodObject<{
|
|
1563
|
+
layout: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1564
|
+
typography: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
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>>>>;
|
|
2282
1569
|
}, z.core.$strip>>>;
|
|
2283
|
-
locale: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2284
|
-
|
|
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>>>>;
|
|
1571
|
+
sections: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1572
|
+
order: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
2285
1573
|
Afghanistan: "Afghanistan";
|
|
2286
1574
|
"Aland Islands": "Aland Islands";
|
|
2287
1575
|
Albania: "Albania";
|
|
@@ -2635,6 +1923,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2635
1923
|
"zh-hant-hk": "zh-hant-hk";
|
|
2636
1924
|
"zh-hant-tw": "zh-hant-tw";
|
|
2637
1925
|
es: "es";
|
|
1926
|
+
no: "no";
|
|
2638
1927
|
Behance: "Behance";
|
|
2639
1928
|
Dribbble: "Dribbble";
|
|
2640
1929
|
Facebook: "Facebook";
|
|
@@ -2658,394 +1947,52 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2658
1947
|
WhatsApp: "WhatsApp";
|
|
2659
1948
|
YouTube: "YouTube";
|
|
2660
1949
|
Zhihu: "Zhihu";
|
|
1950
|
+
basics: "basics";
|
|
1951
|
+
education: "education";
|
|
1952
|
+
work: "work";
|
|
1953
|
+
volunteer: "volunteer";
|
|
1954
|
+
awards: "awards";
|
|
1955
|
+
certificates: "certificates";
|
|
1956
|
+
publications: "publications";
|
|
1957
|
+
skills: "skills";
|
|
1958
|
+
languages: "languages";
|
|
1959
|
+
interests: "interests";
|
|
1960
|
+
references: "references";
|
|
1961
|
+
projects: "projects";
|
|
2661
1962
|
"moderncv-banking": "moderncv-banking";
|
|
2662
1963
|
"moderncv-casual": "moderncv-casual";
|
|
2663
1964
|
"moderncv-classic": "moderncv-classic";
|
|
2664
|
-
}
|
|
1965
|
+
}>>>>;
|
|
1966
|
+
aliases: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1967
|
+
basics: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1968
|
+
education: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1969
|
+
work: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1970
|
+
volunteer: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1971
|
+
awards: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1972
|
+
certificates: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1973
|
+
publications: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1974
|
+
skills: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1975
|
+
languages: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1976
|
+
interests: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1977
|
+
references: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1978
|
+
projects: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1979
|
+
}, z.core.$strip>>>;
|
|
1980
|
+
}, z.core.$strip>>>;
|
|
1981
|
+
page: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1982
|
+
showPageNumbers: z.ZodOptional<z.ZodNullable<z.ZodType<boolean, unknown, z.core.$ZodTypeInternals<boolean, unknown>>>>;
|
|
1983
|
+
}, z.core.$strip>>>;
|
|
1984
|
+
margins: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1985
|
+
top: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1986
|
+
bottom: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1987
|
+
left: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1988
|
+
right: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1989
|
+
}, z.core.$strip>>>;
|
|
1990
|
+
locale: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
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>>>>;
|
|
2665
1992
|
}, z.core.$strip>>>;
|
|
2666
1993
|
latex: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2667
1994
|
fontspec: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2668
|
-
numbers: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2669
|
-
Afghanistan: "Afghanistan";
|
|
2670
|
-
"Aland Islands": "Aland Islands";
|
|
2671
|
-
Albania: "Albania";
|
|
2672
|
-
Algeria: "Algeria";
|
|
2673
|
-
"American Samoa": "American Samoa";
|
|
2674
|
-
Andorra: "Andorra";
|
|
2675
|
-
Angola: "Angola";
|
|
2676
|
-
Anguilla: "Anguilla";
|
|
2677
|
-
Antarctica: "Antarctica";
|
|
2678
|
-
"Antigua And Barbuda": "Antigua And Barbuda";
|
|
2679
|
-
Argentina: "Argentina";
|
|
2680
|
-
Armenia: "Armenia";
|
|
2681
|
-
Aruba: "Aruba";
|
|
2682
|
-
Australia: "Australia";
|
|
2683
|
-
Austria: "Austria";
|
|
2684
|
-
Azerbaijan: "Azerbaijan";
|
|
2685
|
-
Bahrain: "Bahrain";
|
|
2686
|
-
Bangladesh: "Bangladesh";
|
|
2687
|
-
Barbados: "Barbados";
|
|
2688
|
-
Belarus: "Belarus";
|
|
2689
|
-
Belgium: "Belgium";
|
|
2690
|
-
Belize: "Belize";
|
|
2691
|
-
Benin: "Benin";
|
|
2692
|
-
Bermuda: "Bermuda";
|
|
2693
|
-
Bhutan: "Bhutan";
|
|
2694
|
-
Bolivia: "Bolivia";
|
|
2695
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
2696
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
2697
|
-
Botswana: "Botswana";
|
|
2698
|
-
"Bouvet Island": "Bouvet Island";
|
|
2699
|
-
Brazil: "Brazil";
|
|
2700
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
2701
|
-
Brunei: "Brunei";
|
|
2702
|
-
Bulgaria: "Bulgaria";
|
|
2703
|
-
"Burkina Faso": "Burkina Faso";
|
|
2704
|
-
Burundi: "Burundi";
|
|
2705
|
-
Cambodia: "Cambodia";
|
|
2706
|
-
Cameroon: "Cameroon";
|
|
2707
|
-
Canada: "Canada";
|
|
2708
|
-
"Cape Verde": "Cape Verde";
|
|
2709
|
-
"Cayman Islands": "Cayman Islands";
|
|
2710
|
-
"Central African Republic": "Central African Republic";
|
|
2711
|
-
Chad: "Chad";
|
|
2712
|
-
Chile: "Chile";
|
|
2713
|
-
China: "China";
|
|
2714
|
-
"Christmas Island": "Christmas Island";
|
|
2715
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
2716
|
-
Colombia: "Colombia";
|
|
2717
|
-
Comoros: "Comoros";
|
|
2718
|
-
Congo: "Congo";
|
|
2719
|
-
"Cook Islands": "Cook Islands";
|
|
2720
|
-
"Costa Rica": "Costa Rica";
|
|
2721
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
2722
|
-
Croatia: "Croatia";
|
|
2723
|
-
Cuba: "Cuba";
|
|
2724
|
-
Curaçao: "Curaçao";
|
|
2725
|
-
Cyprus: "Cyprus";
|
|
2726
|
-
"Czech Republic": "Czech Republic";
|
|
2727
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
2728
|
-
Denmark: "Denmark";
|
|
2729
|
-
Djibouti: "Djibouti";
|
|
2730
|
-
Dominica: "Dominica";
|
|
2731
|
-
"Dominican Republic": "Dominican Republic";
|
|
2732
|
-
"East Timor": "East Timor";
|
|
2733
|
-
Ecuador: "Ecuador";
|
|
2734
|
-
Egypt: "Egypt";
|
|
2735
|
-
"El Salvador": "El Salvador";
|
|
2736
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
2737
|
-
Eritrea: "Eritrea";
|
|
2738
|
-
Estonia: "Estonia";
|
|
2739
|
-
Ethiopia: "Ethiopia";
|
|
2740
|
-
"Falkland Islands": "Falkland Islands";
|
|
2741
|
-
"Faroe Islands": "Faroe Islands";
|
|
2742
|
-
"Fiji Islands": "Fiji Islands";
|
|
2743
|
-
Finland: "Finland";
|
|
2744
|
-
France: "France";
|
|
2745
|
-
"French Guiana": "French Guiana";
|
|
2746
|
-
"French Polynesia": "French Polynesia";
|
|
2747
|
-
"French Southern Territories": "French Southern Territories";
|
|
2748
|
-
Gabon: "Gabon";
|
|
2749
|
-
"Gambia The": "Gambia The";
|
|
2750
|
-
Georgia: "Georgia";
|
|
2751
|
-
Germany: "Germany";
|
|
2752
|
-
Ghana: "Ghana";
|
|
2753
|
-
Gibraltar: "Gibraltar";
|
|
2754
|
-
Greece: "Greece";
|
|
2755
|
-
Greenland: "Greenland";
|
|
2756
|
-
Grenada: "Grenada";
|
|
2757
|
-
Guadeloupe: "Guadeloupe";
|
|
2758
|
-
Guam: "Guam";
|
|
2759
|
-
Guatemala: "Guatemala";
|
|
2760
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
2761
|
-
Guinea: "Guinea";
|
|
2762
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
2763
|
-
Guyana: "Guyana";
|
|
2764
|
-
Haiti: "Haiti";
|
|
2765
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
2766
|
-
Honduras: "Honduras";
|
|
2767
|
-
"Hong Kong S.A.R.": "Hong Kong S.A.R.";
|
|
2768
|
-
Hungary: "Hungary";
|
|
2769
|
-
Iceland: "Iceland";
|
|
2770
|
-
India: "India";
|
|
2771
|
-
Indonesia: "Indonesia";
|
|
2772
|
-
Iran: "Iran";
|
|
2773
|
-
Iraq: "Iraq";
|
|
2774
|
-
Ireland: "Ireland";
|
|
2775
|
-
Israel: "Israel";
|
|
2776
|
-
Italy: "Italy";
|
|
2777
|
-
Jamaica: "Jamaica";
|
|
2778
|
-
Japan: "Japan";
|
|
2779
|
-
Jersey: "Jersey";
|
|
2780
|
-
Jordan: "Jordan";
|
|
2781
|
-
Kazakhstan: "Kazakhstan";
|
|
2782
|
-
Kenya: "Kenya";
|
|
2783
|
-
Kiribati: "Kiribati";
|
|
2784
|
-
Kosovo: "Kosovo";
|
|
2785
|
-
Kuwait: "Kuwait";
|
|
2786
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
2787
|
-
Laos: "Laos";
|
|
2788
|
-
Latvia: "Latvia";
|
|
2789
|
-
Lebanon: "Lebanon";
|
|
2790
|
-
Lesotho: "Lesotho";
|
|
2791
|
-
Liberia: "Liberia";
|
|
2792
|
-
Libya: "Libya";
|
|
2793
|
-
Liechtenstein: "Liechtenstein";
|
|
2794
|
-
Lithuania: "Lithuania";
|
|
2795
|
-
Luxembourg: "Luxembourg";
|
|
2796
|
-
"Macau S.A.R.": "Macau S.A.R.";
|
|
2797
|
-
Madagascar: "Madagascar";
|
|
2798
|
-
Malawi: "Malawi";
|
|
2799
|
-
Malaysia: "Malaysia";
|
|
2800
|
-
Maldives: "Maldives";
|
|
2801
|
-
Mali: "Mali";
|
|
2802
|
-
Malta: "Malta";
|
|
2803
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
2804
|
-
"Marshall Islands": "Marshall Islands";
|
|
2805
|
-
Martinique: "Martinique";
|
|
2806
|
-
Mauritania: "Mauritania";
|
|
2807
|
-
Mauritius: "Mauritius";
|
|
2808
|
-
Mayotte: "Mayotte";
|
|
2809
|
-
Mexico: "Mexico";
|
|
2810
|
-
Micronesia: "Micronesia";
|
|
2811
|
-
Moldova: "Moldova";
|
|
2812
|
-
Monaco: "Monaco";
|
|
2813
|
-
Mongolia: "Mongolia";
|
|
2814
|
-
Montenegro: "Montenegro";
|
|
2815
|
-
Montserrat: "Montserrat";
|
|
2816
|
-
Morocco: "Morocco";
|
|
2817
|
-
Mozambique: "Mozambique";
|
|
2818
|
-
Myanmar: "Myanmar";
|
|
2819
|
-
Namibia: "Namibia";
|
|
2820
|
-
Nauru: "Nauru";
|
|
2821
|
-
Nepal: "Nepal";
|
|
2822
|
-
Netherlands: "Netherlands";
|
|
2823
|
-
"New Caledonia": "New Caledonia";
|
|
2824
|
-
"New Zealand": "New Zealand";
|
|
2825
|
-
Nicaragua: "Nicaragua";
|
|
2826
|
-
Niger: "Niger";
|
|
2827
|
-
Nigeria: "Nigeria";
|
|
2828
|
-
Niue: "Niue";
|
|
2829
|
-
"Norfolk Island": "Norfolk Island";
|
|
2830
|
-
"North Korea": "North Korea";
|
|
2831
|
-
"North Macedonia": "North Macedonia";
|
|
2832
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
2833
|
-
Norway: "Norway";
|
|
2834
|
-
Oman: "Oman";
|
|
2835
|
-
Pakistan: "Pakistan";
|
|
2836
|
-
Palau: "Palau";
|
|
2837
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
2838
|
-
Panama: "Panama";
|
|
2839
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
2840
|
-
Paraguay: "Paraguay";
|
|
2841
|
-
Peru: "Peru";
|
|
2842
|
-
Philippines: "Philippines";
|
|
2843
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
2844
|
-
Poland: "Poland";
|
|
2845
|
-
Portugal: "Portugal";
|
|
2846
|
-
"Puerto Rico": "Puerto Rico";
|
|
2847
|
-
Qatar: "Qatar";
|
|
2848
|
-
Reunion: "Reunion";
|
|
2849
|
-
Romania: "Romania";
|
|
2850
|
-
Russia: "Russia";
|
|
2851
|
-
Rwanda: "Rwanda";
|
|
2852
|
-
"Saint Helena": "Saint Helena";
|
|
2853
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
2854
|
-
"Saint Lucia": "Saint Lucia";
|
|
2855
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
2856
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
2857
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
2858
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
2859
|
-
Samoa: "Samoa";
|
|
2860
|
-
"San Marino": "San Marino";
|
|
2861
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
2862
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
2863
|
-
Senegal: "Senegal";
|
|
2864
|
-
Serbia: "Serbia";
|
|
2865
|
-
Seychelles: "Seychelles";
|
|
2866
|
-
"Sierra Leone": "Sierra Leone";
|
|
2867
|
-
Singapore: "Singapore";
|
|
2868
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
2869
|
-
Slovakia: "Slovakia";
|
|
2870
|
-
Slovenia: "Slovenia";
|
|
2871
|
-
"Solomon Islands": "Solomon Islands";
|
|
2872
|
-
Somalia: "Somalia";
|
|
2873
|
-
"South Africa": "South Africa";
|
|
2874
|
-
"South Georgia": "South Georgia";
|
|
2875
|
-
"South Korea": "South Korea";
|
|
2876
|
-
"South Sudan": "South Sudan";
|
|
2877
|
-
Spain: "Spain";
|
|
2878
|
-
"Sri Lanka": "Sri Lanka";
|
|
2879
|
-
Sudan: "Sudan";
|
|
2880
|
-
Suriname: "Suriname";
|
|
2881
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
2882
|
-
Swaziland: "Swaziland";
|
|
2883
|
-
Sweden: "Sweden";
|
|
2884
|
-
Switzerland: "Switzerland";
|
|
2885
|
-
Syria: "Syria";
|
|
2886
|
-
Taiwan: "Taiwan";
|
|
2887
|
-
Tajikistan: "Tajikistan";
|
|
2888
|
-
Tanzania: "Tanzania";
|
|
2889
|
-
Thailand: "Thailand";
|
|
2890
|
-
"The Bahamas": "The Bahamas";
|
|
2891
|
-
Togo: "Togo";
|
|
2892
|
-
Tokelau: "Tokelau";
|
|
2893
|
-
Tonga: "Tonga";
|
|
2894
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
2895
|
-
Tunisia: "Tunisia";
|
|
2896
|
-
Turkey: "Turkey";
|
|
2897
|
-
Turkmenistan: "Turkmenistan";
|
|
2898
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
2899
|
-
Tuvalu: "Tuvalu";
|
|
2900
|
-
Uganda: "Uganda";
|
|
2901
|
-
Ukraine: "Ukraine";
|
|
2902
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
2903
|
-
"United Kingdom": "United Kingdom";
|
|
2904
|
-
"United States": "United States";
|
|
2905
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
2906
|
-
Uruguay: "Uruguay";
|
|
2907
|
-
Uzbekistan: "Uzbekistan";
|
|
2908
|
-
Vanuatu: "Vanuatu";
|
|
2909
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
2910
|
-
Venezuela: "Venezuela";
|
|
2911
|
-
Vietnam: "Vietnam";
|
|
2912
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
2913
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
2914
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
2915
|
-
"Western Sahara": "Western Sahara";
|
|
2916
|
-
Yemen: "Yemen";
|
|
2917
|
-
Zambia: "Zambia";
|
|
2918
|
-
Zimbabwe: "Zimbabwe";
|
|
2919
|
-
"Middle School": "Middle School";
|
|
2920
|
-
"High School": "High School";
|
|
2921
|
-
Diploma: "Diploma";
|
|
2922
|
-
Associate: "Associate";
|
|
2923
|
-
Bachelor: "Bachelor";
|
|
2924
|
-
Master: "Master";
|
|
2925
|
-
Doctor: "Doctor";
|
|
2926
|
-
"Elementary Proficiency": "Elementary Proficiency";
|
|
2927
|
-
"Limited Working Proficiency": "Limited Working Proficiency";
|
|
2928
|
-
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
2929
|
-
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
2930
|
-
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
2931
|
-
"10pt": "10pt";
|
|
2932
|
-
"11pt": "11pt";
|
|
2933
|
-
"12pt": "12pt";
|
|
2934
|
-
Lining: "Lining";
|
|
2935
|
-
OldStyle: "OldStyle";
|
|
2936
|
-
Auto: "Auto";
|
|
2937
|
-
Afrikaans: "Afrikaans";
|
|
2938
|
-
Albanian: "Albanian";
|
|
2939
|
-
Amharic: "Amharic";
|
|
2940
|
-
Arabic: "Arabic";
|
|
2941
|
-
Azerbaijani: "Azerbaijani";
|
|
2942
|
-
Belarusian: "Belarusian";
|
|
2943
|
-
Bengali: "Bengali";
|
|
2944
|
-
Bhojpuri: "Bhojpuri";
|
|
2945
|
-
Bulgarian: "Bulgarian";
|
|
2946
|
-
Burmese: "Burmese";
|
|
2947
|
-
Cantonese: "Cantonese";
|
|
2948
|
-
Catalan: "Catalan";
|
|
2949
|
-
Chinese: "Chinese";
|
|
2950
|
-
Croatian: "Croatian";
|
|
2951
|
-
Czech: "Czech";
|
|
2952
|
-
Danish: "Danish";
|
|
2953
|
-
Dutch: "Dutch";
|
|
2954
|
-
English: "English";
|
|
2955
|
-
Estonian: "Estonian";
|
|
2956
|
-
Farsi: "Farsi";
|
|
2957
|
-
Filipino: "Filipino";
|
|
2958
|
-
Finnish: "Finnish";
|
|
2959
|
-
French: "French";
|
|
2960
|
-
German: "German";
|
|
2961
|
-
Greek: "Greek";
|
|
2962
|
-
Gujarati: "Gujarati";
|
|
2963
|
-
Hausa: "Hausa";
|
|
2964
|
-
Hebrew: "Hebrew";
|
|
2965
|
-
Hindi: "Hindi";
|
|
2966
|
-
Hungarian: "Hungarian";
|
|
2967
|
-
Icelandic: "Icelandic";
|
|
2968
|
-
Igbo: "Igbo";
|
|
2969
|
-
Indonesian: "Indonesian";
|
|
2970
|
-
Irish: "Irish";
|
|
2971
|
-
Italian: "Italian";
|
|
2972
|
-
Japanese: "Japanese";
|
|
2973
|
-
Javanese: "Javanese";
|
|
2974
|
-
Kazakh: "Kazakh";
|
|
2975
|
-
Khmer: "Khmer";
|
|
2976
|
-
Korean: "Korean";
|
|
2977
|
-
Lahnda: "Lahnda";
|
|
2978
|
-
Latvian: "Latvian";
|
|
2979
|
-
Lithuanian: "Lithuanian";
|
|
2980
|
-
Malay: "Malay";
|
|
2981
|
-
Mandarin: "Mandarin";
|
|
2982
|
-
Marathi: "Marathi";
|
|
2983
|
-
Nepali: "Nepali";
|
|
2984
|
-
Norwegian: "Norwegian";
|
|
2985
|
-
Oromo: "Oromo";
|
|
2986
|
-
Pashto: "Pashto";
|
|
2987
|
-
Polish: "Polish";
|
|
2988
|
-
Portuguese: "Portuguese";
|
|
2989
|
-
Romanian: "Romanian";
|
|
2990
|
-
Russian: "Russian";
|
|
2991
|
-
Serbian: "Serbian";
|
|
2992
|
-
Shona: "Shona";
|
|
2993
|
-
Sinhala: "Sinhala";
|
|
2994
|
-
Slovak: "Slovak";
|
|
2995
|
-
Slovene: "Slovene";
|
|
2996
|
-
Somali: "Somali";
|
|
2997
|
-
Spanish: "Spanish";
|
|
2998
|
-
Sundanese: "Sundanese";
|
|
2999
|
-
Swahili: "Swahili";
|
|
3000
|
-
Swedish: "Swedish";
|
|
3001
|
-
Tagalog: "Tagalog";
|
|
3002
|
-
Tamil: "Tamil";
|
|
3003
|
-
Telugu: "Telugu";
|
|
3004
|
-
Thai: "Thai";
|
|
3005
|
-
Turkish: "Turkish";
|
|
3006
|
-
Ukrainian: "Ukrainian";
|
|
3007
|
-
Urdu: "Urdu";
|
|
3008
|
-
Uzbek: "Uzbek";
|
|
3009
|
-
Vietnamese: "Vietnamese";
|
|
3010
|
-
Yoruba: "Yoruba";
|
|
3011
|
-
Zulu: "Zulu";
|
|
3012
|
-
Novice: "Novice";
|
|
3013
|
-
Beginner: "Beginner";
|
|
3014
|
-
Intermediate: "Intermediate";
|
|
3015
|
-
Advanced: "Advanced";
|
|
3016
|
-
Expert: "Expert";
|
|
3017
|
-
en: "en";
|
|
3018
|
-
"zh-hans": "zh-hans";
|
|
3019
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
3020
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
3021
|
-
es: "es";
|
|
3022
|
-
Behance: "Behance";
|
|
3023
|
-
Dribbble: "Dribbble";
|
|
3024
|
-
Facebook: "Facebook";
|
|
3025
|
-
GitHub: "GitHub";
|
|
3026
|
-
Gitlab: "Gitlab";
|
|
3027
|
-
Instagram: "Instagram";
|
|
3028
|
-
Line: "Line";
|
|
3029
|
-
LinkedIn: "LinkedIn";
|
|
3030
|
-
Medium: "Medium";
|
|
3031
|
-
Pinterest: "Pinterest";
|
|
3032
|
-
Reddit: "Reddit";
|
|
3033
|
-
Snapchat: "Snapchat";
|
|
3034
|
-
"Stack Overflow": "Stack Overflow";
|
|
3035
|
-
Telegram: "Telegram";
|
|
3036
|
-
TikTok: "TikTok";
|
|
3037
|
-
Twitch: "Twitch";
|
|
3038
|
-
Twitter: "Twitter";
|
|
3039
|
-
Vimeo: "Vimeo";
|
|
3040
|
-
Weibo: "Weibo";
|
|
3041
|
-
WeChat: "WeChat";
|
|
3042
|
-
WhatsApp: "WhatsApp";
|
|
3043
|
-
YouTube: "YouTube";
|
|
3044
|
-
Zhihu: "Zhihu";
|
|
3045
|
-
"moderncv-banking": "moderncv-banking";
|
|
3046
|
-
"moderncv-casual": "moderncv-casual";
|
|
3047
|
-
"moderncv-classic": "moderncv-classic";
|
|
3048
|
-
}>>>;
|
|
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>>>>;
|
|
3049
1996
|
}, z.core.$strip>>>;
|
|
3050
1997
|
}, z.core.$strip>>>;
|
|
3051
1998
|
}, z.core.$strip>>>;
|
|
@@ -3422,6 +2369,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3422
2369
|
"zh-hant-hk": "zh-hant-hk";
|
|
3423
2370
|
"zh-hant-tw": "zh-hant-tw";
|
|
3424
2371
|
es: "es";
|
|
2372
|
+
no: "no";
|
|
3425
2373
|
Behance: "Behance";
|
|
3426
2374
|
Dribbble: "Dribbble";
|
|
3427
2375
|
Facebook: "Facebook";
|
|
@@ -3445,6 +2393,18 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3445
2393
|
WhatsApp: "WhatsApp";
|
|
3446
2394
|
YouTube: "YouTube";
|
|
3447
2395
|
Zhihu: "Zhihu";
|
|
2396
|
+
basics: "basics";
|
|
2397
|
+
education: "education";
|
|
2398
|
+
work: "work";
|
|
2399
|
+
volunteer: "volunteer";
|
|
2400
|
+
awards: "awards";
|
|
2401
|
+
certificates: "certificates";
|
|
2402
|
+
publications: "publications";
|
|
2403
|
+
skills: "skills";
|
|
2404
|
+
languages: "languages";
|
|
2405
|
+
interests: "interests";
|
|
2406
|
+
references: "references";
|
|
2407
|
+
projects: "projects";
|
|
3448
2408
|
"moderncv-banking": "moderncv-banking";
|
|
3449
2409
|
"moderncv-casual": "moderncv-casual";
|
|
3450
2410
|
"moderncv-classic": "moderncv-classic";
|
|
@@ -3830,6 +2790,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3830
2790
|
"zh-hant-hk": "zh-hant-hk";
|
|
3831
2791
|
"zh-hant-tw": "zh-hant-tw";
|
|
3832
2792
|
es: "es";
|
|
2793
|
+
no: "no";
|
|
3833
2794
|
Behance: "Behance";
|
|
3834
2795
|
Dribbble: "Dribbble";
|
|
3835
2796
|
Facebook: "Facebook";
|
|
@@ -3853,6 +2814,18 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3853
2814
|
WhatsApp: "WhatsApp";
|
|
3854
2815
|
YouTube: "YouTube";
|
|
3855
2816
|
Zhihu: "Zhihu";
|
|
2817
|
+
basics: "basics";
|
|
2818
|
+
education: "education";
|
|
2819
|
+
work: "work";
|
|
2820
|
+
volunteer: "volunteer";
|
|
2821
|
+
awards: "awards";
|
|
2822
|
+
certificates: "certificates";
|
|
2823
|
+
publications: "publications";
|
|
2824
|
+
skills: "skills";
|
|
2825
|
+
languages: "languages";
|
|
2826
|
+
interests: "interests";
|
|
2827
|
+
references: "references";
|
|
2828
|
+
projects: "projects";
|
|
3856
2829
|
"moderncv-banking": "moderncv-banking";
|
|
3857
2830
|
"moderncv-casual": "moderncv-casual";
|
|
3858
2831
|
"moderncv-classic": "moderncv-classic";
|
|
@@ -3863,7 +2836,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3863
2836
|
location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3864
2837
|
city: z.ZodString;
|
|
3865
2838
|
address: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3866
|
-
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" | "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" | "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>>>>;
|
|
3867
2840
|
postalCode: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3868
2841
|
region: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3869
2842
|
}, z.core.$strip>>>;
|
|
@@ -4222,6 +3195,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
4222
3195
|
"zh-hant-hk": "zh-hant-hk";
|
|
4223
3196
|
"zh-hant-tw": "zh-hant-tw";
|
|
4224
3197
|
es: "es";
|
|
3198
|
+
no: "no";
|
|
4225
3199
|
Behance: "Behance";
|
|
4226
3200
|
Dribbble: "Dribbble";
|
|
4227
3201
|
Facebook: "Facebook";
|
|
@@ -4245,6 +3219,18 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
4245
3219
|
WhatsApp: "WhatsApp";
|
|
4246
3220
|
YouTube: "YouTube";
|
|
4247
3221
|
Zhihu: "Zhihu";
|
|
3222
|
+
basics: "basics";
|
|
3223
|
+
education: "education";
|
|
3224
|
+
work: "work";
|
|
3225
|
+
volunteer: "volunteer";
|
|
3226
|
+
awards: "awards";
|
|
3227
|
+
certificates: "certificates";
|
|
3228
|
+
publications: "publications";
|
|
3229
|
+
skills: "skills";
|
|
3230
|
+
languages: "languages";
|
|
3231
|
+
interests: "interests";
|
|
3232
|
+
references: "references";
|
|
3233
|
+
projects: "projects";
|
|
4248
3234
|
"moderncv-banking": "moderncv-banking";
|
|
4249
3235
|
"moderncv-casual": "moderncv-casual";
|
|
4250
3236
|
"moderncv-classic": "moderncv-classic";
|
|
@@ -4603,6 +3589,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
4603
3589
|
"zh-hant-hk": "zh-hant-hk";
|
|
4604
3590
|
"zh-hant-tw": "zh-hant-tw";
|
|
4605
3591
|
es: "es";
|
|
3592
|
+
no: "no";
|
|
4606
3593
|
Behance: "Behance";
|
|
4607
3594
|
Dribbble: "Dribbble";
|
|
4608
3595
|
Facebook: "Facebook";
|
|
@@ -4626,6 +3613,18 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
4626
3613
|
WhatsApp: "WhatsApp";
|
|
4627
3614
|
YouTube: "YouTube";
|
|
4628
3615
|
Zhihu: "Zhihu";
|
|
3616
|
+
basics: "basics";
|
|
3617
|
+
education: "education";
|
|
3618
|
+
work: "work";
|
|
3619
|
+
volunteer: "volunteer";
|
|
3620
|
+
awards: "awards";
|
|
3621
|
+
certificates: "certificates";
|
|
3622
|
+
publications: "publications";
|
|
3623
|
+
skills: "skills";
|
|
3624
|
+
languages: "languages";
|
|
3625
|
+
interests: "interests";
|
|
3626
|
+
references: "references";
|
|
3627
|
+
projects: "projects";
|
|
4629
3628
|
"moderncv-banking": "moderncv-banking";
|
|
4630
3629
|
"moderncv-casual": "moderncv-casual";
|
|
4631
3630
|
"moderncv-classic": "moderncv-classic";
|
|
@@ -5005,6 +4004,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
5005
4004
|
"zh-hant-hk": "zh-hant-hk";
|
|
5006
4005
|
"zh-hant-tw": "zh-hant-tw";
|
|
5007
4006
|
es: "es";
|
|
4007
|
+
no: "no";
|
|
5008
4008
|
Behance: "Behance";
|
|
5009
4009
|
Dribbble: "Dribbble";
|
|
5010
4010
|
Facebook: "Facebook";
|
|
@@ -5028,6 +4028,18 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
5028
4028
|
WhatsApp: "WhatsApp";
|
|
5029
4029
|
YouTube: "YouTube";
|
|
5030
4030
|
Zhihu: "Zhihu";
|
|
4031
|
+
basics: "basics";
|
|
4032
|
+
education: "education";
|
|
4033
|
+
work: "work";
|
|
4034
|
+
volunteer: "volunteer";
|
|
4035
|
+
awards: "awards";
|
|
4036
|
+
certificates: "certificates";
|
|
4037
|
+
publications: "publications";
|
|
4038
|
+
skills: "skills";
|
|
4039
|
+
languages: "languages";
|
|
4040
|
+
interests: "interests";
|
|
4041
|
+
references: "references";
|
|
4042
|
+
projects: "projects";
|
|
5031
4043
|
"moderncv-banking": "moderncv-banking";
|
|
5032
4044
|
"moderncv-casual": "moderncv-casual";
|
|
5033
4045
|
"moderncv-classic": "moderncv-classic";
|
|
@@ -5085,7 +4097,7 @@ type OptionTranslation = {
|
|
|
5085
4097
|
/** Translations for language names. */
|
|
5086
4098
|
languages: Record<Language, string>;
|
|
5087
4099
|
/** Translations for resume section titles. */
|
|
5088
|
-
sections: Record<
|
|
4100
|
+
sections: Record<OrderableSectionID, string>;
|
|
5089
4101
|
/** Translations for skill proficiency levels. */
|
|
5090
4102
|
skills: Record<Level, string>;
|
|
5091
4103
|
};
|
|
@@ -5153,6 +4165,44 @@ type TemplateTranslationValue = {
|
|
|
5153
4165
|
*/
|
|
5154
4166
|
declare function getTemplateTranslations(language?: LocaleLanguage): TemplateTranslationValue;
|
|
5155
4167
|
|
|
4168
|
+
/**
|
|
4169
|
+
* MIT License
|
|
4170
|
+
*
|
|
4171
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
4172
|
+
*
|
|
4173
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4174
|
+
* of this software and associated documentation files (the "Software"), to
|
|
4175
|
+
* deal in the Software without restriction, including without limitation the
|
|
4176
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
4177
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
4178
|
+
* furnished to do so, subject to the following conditions:
|
|
4179
|
+
*
|
|
4180
|
+
* The above copyright notice and this permission notice shall be included in
|
|
4181
|
+
* all copies or substantial portions of the Software.
|
|
4182
|
+
*
|
|
4183
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4184
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4185
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4186
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4187
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
4188
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
4189
|
+
* IN THE SOFTWARE.
|
|
4190
|
+
*/
|
|
4191
|
+
/**
|
|
4192
|
+
* Generic function to merge custom order with default order.
|
|
4193
|
+
*
|
|
4194
|
+
* Items specified in customOrder will have higher priority and appear first
|
|
4195
|
+
* in the result. Remaining items will follow in the default order.
|
|
4196
|
+
*
|
|
4197
|
+
* Duplicate items in customOrder will be deduplicated (first occurrence kept).
|
|
4198
|
+
* Items in customOrder that are not in defaultOrder will be ignored.
|
|
4199
|
+
*
|
|
4200
|
+
* @param customOrder - Array of items with custom priority order
|
|
4201
|
+
* @param defaultOrder - Array of items in default order
|
|
4202
|
+
* @returns Merged order array
|
|
4203
|
+
*/
|
|
4204
|
+
declare function mergeArrayWithOrder<T>(customOrder: T[] | undefined | null, defaultOrder: T[]): T[];
|
|
4205
|
+
|
|
5156
4206
|
/**
|
|
5157
4207
|
* MIT License
|
|
5158
4208
|
*
|
|
@@ -5324,6 +4374,39 @@ declare function removeKeysFromObject<T extends object>(obj: T, keysToRemove: (s
|
|
|
5324
4374
|
* ```
|
|
5325
4375
|
*/
|
|
5326
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;
|
|
5327
4410
|
|
|
5328
4411
|
/**
|
|
5329
4412
|
* MIT License
|
|
@@ -5380,4 +4463,4 @@ declare function joinNonEmptyString(codes: string[], separator?: string): string
|
|
|
5380
4463
|
*/
|
|
5381
4464
|
declare function toCodeBlock(code?: string, lang?: string): string;
|
|
5382
4465
|
|
|
5383
|
-
export { type Awards, type Basics, type BulletListNode, COUNTRY_OPTIONS, type Certificates, type Country, 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, 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, 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 };
|