@yamlresume/core 0.8.1 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +790 -2909
- package/dist/index.js +478 -100
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -167,6 +167,74 @@ declare const SpanishCountryNames: Record<Country, string>;
|
|
|
167
167
|
declare const FrenchCountryNames: Record<Country, string>;
|
|
168
168
|
declare const NorwegianCountryNames: Record<Country, string>;
|
|
169
169
|
|
|
170
|
+
/**
|
|
171
|
+
* MIT License
|
|
172
|
+
*
|
|
173
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
174
|
+
*
|
|
175
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
176
|
+
* of this software and associated documentation files (the "Software"), to
|
|
177
|
+
* deal in the Software without restriction, including without limitation the
|
|
178
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
179
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
180
|
+
* furnished to do so, subject to the following conditions:
|
|
181
|
+
*
|
|
182
|
+
* The above copyright notice and this permission notice shall be included in
|
|
183
|
+
* all copies or substantial portions of the Software.
|
|
184
|
+
*
|
|
185
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
186
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
187
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
188
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
189
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
190
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
191
|
+
* IN THE SOFTWARE.
|
|
192
|
+
*/
|
|
193
|
+
/**
|
|
194
|
+
* Defines all possible degrees.
|
|
195
|
+
*/
|
|
196
|
+
declare const DEGREE_OPTIONS: readonly ["Middle School", "High School", "Diploma", "Associate", "Bachelor", "Master", "Doctor"];
|
|
197
|
+
/**
|
|
198
|
+
* Defines language fluency levels.
|
|
199
|
+
*
|
|
200
|
+
* Based on the Interagency Language Roundtable (ILR) scale.
|
|
201
|
+
*/
|
|
202
|
+
declare const FLUENCY_OPTIONS: readonly ["Elementary Proficiency", "Limited Working Proficiency", "Minimum Professional Proficiency", "Full Professional Proficiency", "Native or Bilingual Proficiency"];
|
|
203
|
+
/** The options for the latex layout font size. */
|
|
204
|
+
declare const LATEX_FONT_SIZE_OPTIONS: readonly ["10pt", "11pt", "12pt"];
|
|
205
|
+
/** The options for the HTML layout font size. */
|
|
206
|
+
declare const HTML_FONT_SIZE_OPTIONS: readonly ["10px", "11px", "12px", "13px", "14px", "15px", "16px", "17px", "18px", "19px", "20px", "21px", "22px", "23px", "24px"];
|
|
207
|
+
/** Defines identifiers for the available HTML layout templates. */
|
|
208
|
+
declare const HTML_TEMPLATE_OPTIONS: readonly ["calm"];
|
|
209
|
+
/** The options for the latex layout fontspec numbers style. */
|
|
210
|
+
declare const LATEX_FONTSPEC_NUMBERS_OPTIONS: readonly ["Lining", "OldStyle", "Auto"];
|
|
211
|
+
/** Defines identifiers for the available latex layout templates. */
|
|
212
|
+
declare const LATEX_TEMPLATE_OPTIONS: readonly ["moderncv-banking", "moderncv-casual", "moderncv-classic"];
|
|
213
|
+
/**
|
|
214
|
+
* Defines common world languages.
|
|
215
|
+
*
|
|
216
|
+
* This list contains the most used languages in the world.
|
|
217
|
+
*
|
|
218
|
+
* TODO: allow users to add their own languages
|
|
219
|
+
*/
|
|
220
|
+
declare const LANGUAGE_OPTIONS: readonly ["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"];
|
|
221
|
+
/**
|
|
222
|
+
* Defines skill proficiency levels.
|
|
223
|
+
*
|
|
224
|
+
* Based on common industry standards for skill assessment.
|
|
225
|
+
*/
|
|
226
|
+
declare const LEVEL_OPTIONS: readonly ["Novice", "Beginner", "Intermediate", "Advanced", "Expert", "Master"];
|
|
227
|
+
/**
|
|
228
|
+
* Defines supported languages for UI display and template translation.
|
|
229
|
+
*
|
|
230
|
+
* @see {@link https://en.wikipedia.org/wiki/IETF_language_tag}
|
|
231
|
+
*/
|
|
232
|
+
declare const LOCALE_LANGUAGE_OPTIONS: readonly ["en", "zh-hans", "zh-hant-hk", "zh-hant-tw", "es", "fr", "no"];
|
|
233
|
+
/**
|
|
234
|
+
* Defines network options.
|
|
235
|
+
*/
|
|
236
|
+
declare const NETWORK_OPTIONS: readonly ["Behance", "Dribbble", "Facebook", "GitHub", "Gitlab", "Instagram", "Line", "LinkedIn", "Medium", "Pinterest", "Reddit", "Snapchat", "Stack Overflow", "Telegram", "TikTok", "Twitch", "Twitter", "Vimeo", "Weibo", "WeChat", "WhatsApp", "YouTube", "Zhihu"];
|
|
237
|
+
|
|
170
238
|
/**
|
|
171
239
|
* MIT License
|
|
172
240
|
*
|
|
@@ -212,33 +280,80 @@ type Keywords = string[];
|
|
|
212
280
|
*/
|
|
213
281
|
type Language = (typeof LANGUAGE_OPTIONS)[number];
|
|
214
282
|
/**
|
|
215
|
-
* A union type for all possible
|
|
283
|
+
* A union type for all possible latex fontspec numbers options.
|
|
284
|
+
*
|
|
285
|
+
* - `Auto` - allowing the style to be automatically determined
|
|
286
|
+
* based on the selected `LocaleLanguage` (default)
|
|
287
|
+
* - `Lining` - standard lining figures (default for CJK languages)
|
|
288
|
+
* - `OldStyle` - old style figures with varying heights (default for Latin
|
|
289
|
+
* languages)
|
|
216
290
|
*/
|
|
217
|
-
type
|
|
291
|
+
type LatexFontspecNumbers = (typeof LATEX_FONTSPEC_NUMBERS_OPTIONS)[number];
|
|
218
292
|
/**
|
|
219
|
-
* A union type for all possible
|
|
293
|
+
* A union type for all possible HTML font size options.
|
|
220
294
|
*/
|
|
221
|
-
type
|
|
295
|
+
type HtmlFontSize = (typeof HTML_FONT_SIZE_OPTIONS)[number];
|
|
222
296
|
/**
|
|
223
|
-
* A union type for all possible
|
|
297
|
+
* A union type for all possible HTML template options.
|
|
298
|
+
*
|
|
299
|
+
* @see {@link https://yamlresume.dev/docs/layouts/html/templates}
|
|
224
300
|
*/
|
|
225
|
-
type
|
|
301
|
+
type HtmlTemplate = (typeof HTML_TEMPLATE_OPTIONS)[number];
|
|
302
|
+
/**
|
|
303
|
+
* A union type for all possible latex font size options.
|
|
304
|
+
*
|
|
305
|
+
* For now only 3 options are supported:
|
|
306
|
+
*
|
|
307
|
+
* - `10pt` - 10pt font size (default)
|
|
308
|
+
* - `11pt` - 11pt font size
|
|
309
|
+
* - `12pt` - 12pt font size
|
|
310
|
+
*/
|
|
311
|
+
type LatexFontSize = (typeof LATEX_FONT_SIZE_OPTIONS)[number];
|
|
226
312
|
/**
|
|
227
313
|
* A union type for all possible template options.
|
|
228
314
|
*
|
|
229
|
-
* @see {@link https://yamlresume.dev/docs/
|
|
315
|
+
* @see {@link https://yamlresume.dev/docs/layouts/latex/templates}
|
|
230
316
|
*/
|
|
231
317
|
type LatexTemplate = (typeof LATEX_TEMPLATE_OPTIONS)[number];
|
|
318
|
+
/**
|
|
319
|
+
* A union type for all possible skill proficiency levels.
|
|
320
|
+
*/
|
|
321
|
+
type Level = (typeof LEVEL_OPTIONS)[number];
|
|
232
322
|
/**
|
|
233
323
|
* A union type for all possible locale languages.
|
|
234
324
|
*
|
|
235
|
-
* @see {@link https://yamlresume.dev/docs/
|
|
325
|
+
* @see {@link https://yamlresume.dev/docs/locale}
|
|
236
326
|
*/
|
|
237
327
|
type LocaleLanguage = (typeof LOCALE_LANGUAGE_OPTIONS)[number];
|
|
238
328
|
/**
|
|
239
329
|
* A union type for all possible social network options.
|
|
240
330
|
*/
|
|
241
331
|
type Network = (typeof NETWORK_OPTIONS)[number];
|
|
332
|
+
|
|
333
|
+
/**
|
|
334
|
+
* MIT License
|
|
335
|
+
*
|
|
336
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
337
|
+
*
|
|
338
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
339
|
+
* of this software and associated documentation files (the "Software"), to
|
|
340
|
+
* deal in the Software without restriction, including without limitation the
|
|
341
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
342
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
343
|
+
* furnished to do so, subject to the following conditions:
|
|
344
|
+
*
|
|
345
|
+
* The above copyright notice and this permission notice shall be included in
|
|
346
|
+
* all copies or substantial portions of the Software.
|
|
347
|
+
*
|
|
348
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
349
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
350
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
351
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
352
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
353
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
354
|
+
* IN THE SOFTWARE.
|
|
355
|
+
*/
|
|
356
|
+
|
|
242
357
|
/**
|
|
243
358
|
* Represents a single award, honor, or recognition received.
|
|
244
359
|
*
|
|
@@ -739,7 +854,7 @@ type ResumeItem = {
|
|
|
739
854
|
*
|
|
740
855
|
* - only `basics` and `education` sections are mandatory.
|
|
741
856
|
*/
|
|
742
|
-
type
|
|
857
|
+
type Content = {
|
|
743
858
|
/** Represents the core personal and contact information. */
|
|
744
859
|
basics: BasicsItem;
|
|
745
860
|
/** Contains a collection of educational experiences. */
|
|
@@ -794,137 +909,85 @@ type ResumeContent = {
|
|
|
794
909
|
urls?: string;
|
|
795
910
|
};
|
|
796
911
|
};
|
|
912
|
+
|
|
797
913
|
/**
|
|
798
|
-
*
|
|
799
|
-
*/
|
|
800
|
-
type ResumeLayoutPageMargins = {
|
|
801
|
-
/** Top margin value (e.g., "2.5cm"). */
|
|
802
|
-
top?: string;
|
|
803
|
-
/** Bottom margin value (e.g., "2.5cm"). */
|
|
804
|
-
bottom?: string;
|
|
805
|
-
/** Left margin value (e.g., "1.5cm"). */
|
|
806
|
-
left?: string;
|
|
807
|
-
/** Right margin value (e.g., "1.5cm"). */
|
|
808
|
-
right?: string;
|
|
809
|
-
};
|
|
810
|
-
/**
|
|
811
|
-
* A union type for all possible latex fontspec numbers options.
|
|
914
|
+
* MIT License
|
|
812
915
|
*
|
|
813
|
-
*
|
|
814
|
-
* based on the selected `LocaleLanguage` (default)
|
|
815
|
-
* - `Lining` - standard lining figures (default for CJK languages)
|
|
816
|
-
* - `OldStyle` - old style figures with varying heights (default for Latin
|
|
817
|
-
* languages)
|
|
818
|
-
*/
|
|
819
|
-
type FontspecNumbers = (typeof FONTSPEC_NUMBERS_OPTIONS)[number];
|
|
820
|
-
/**
|
|
821
|
-
* A union type for all possible font size options.
|
|
916
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
822
917
|
*
|
|
823
|
-
*
|
|
918
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
919
|
+
* of this software and associated documentation files (the "Software"), to
|
|
920
|
+
* deal in the Software without restriction, including without limitation the
|
|
921
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
922
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
923
|
+
* furnished to do so, subject to the following conditions:
|
|
824
924
|
*
|
|
825
|
-
*
|
|
826
|
-
*
|
|
827
|
-
*
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
*
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
underline?: boolean;
|
|
836
|
-
};
|
|
837
|
-
/**
|
|
838
|
-
* Defines typography settings for document formatting.
|
|
839
|
-
*/
|
|
840
|
-
type LaTeXLayoutTypography = {
|
|
841
|
-
/** Base font size for the document (e.g., "10pt", "11pt"). */
|
|
842
|
-
fontSize?: string;
|
|
843
|
-
/** Link styling settings. */
|
|
844
|
-
links?: LayoutTypographyLinks;
|
|
845
|
-
};
|
|
846
|
-
/**
|
|
847
|
-
* Defines advanced configuration options.
|
|
925
|
+
* The above copyright notice and this permission notice shall be included in
|
|
926
|
+
* all copies or substantial portions of the Software.
|
|
927
|
+
*
|
|
928
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
929
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
930
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
931
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
932
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
933
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
934
|
+
* IN THE SOFTWARE.
|
|
848
935
|
*/
|
|
849
|
-
|
|
850
|
-
/** LaTeX fontspec package configurations. */
|
|
851
|
-
fontspec?: {
|
|
852
|
-
/** Style for rendering numbers (Lining or OldStyle). */
|
|
853
|
-
numbers?: FontspecNumbers;
|
|
854
|
-
};
|
|
855
|
-
};
|
|
936
|
+
|
|
856
937
|
/**
|
|
857
938
|
* Defines locale settings for internationalization and localization.
|
|
858
939
|
*/
|
|
859
|
-
type
|
|
940
|
+
type Locale = {
|
|
860
941
|
/** The selected language for the resume content and template terms. */
|
|
861
942
|
language?: LocaleLanguage;
|
|
862
943
|
};
|
|
944
|
+
|
|
863
945
|
/**
|
|
864
|
-
*
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
*
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
*
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
/**
|
|
886
|
-
* LaTeX layout configuration.
|
|
946
|
+
* MIT License
|
|
947
|
+
*
|
|
948
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
949
|
+
*
|
|
950
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
951
|
+
* of this software and associated documentation files (the "Software"), to
|
|
952
|
+
* deal in the Software without restriction, including without limitation the
|
|
953
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
954
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
955
|
+
* furnished to do so, subject to the following conditions:
|
|
956
|
+
*
|
|
957
|
+
* The above copyright notice and this permission notice shall be included in
|
|
958
|
+
* all copies or substantial portions of the Software.
|
|
959
|
+
*
|
|
960
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
961
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
962
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
963
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
964
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
965
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
966
|
+
* IN THE SOFTWARE.
|
|
887
967
|
*/
|
|
888
|
-
|
|
889
|
-
engine: 'latex';
|
|
890
|
-
/** Defines page-level settings for document presentation. */
|
|
891
|
-
page?: LaTeXLayoutPage;
|
|
892
|
-
/** Defines section customization settings. */
|
|
893
|
-
sections?: LayoutSections;
|
|
894
|
-
/** Defines the selected template. */
|
|
895
|
-
template?: LatexTemplate;
|
|
896
|
-
/** Defines typography settings for document formatting. */
|
|
897
|
-
typography?: LaTeXLayoutTypography;
|
|
898
|
-
/** Defines advanced configuration options. */
|
|
899
|
-
advanced?: LaTeXLayoutAdvanced;
|
|
900
|
-
};
|
|
968
|
+
|
|
901
969
|
/**
|
|
902
|
-
*
|
|
903
|
-
*
|
|
904
|
-
* Keep it minimal for now; can be extended later.
|
|
970
|
+
* A union type for all possible section IDs that can be aliased and re-ordered.
|
|
905
971
|
*/
|
|
906
|
-
type
|
|
907
|
-
engine: 'markdown';
|
|
908
|
-
/** Defines section customization settings. */
|
|
909
|
-
sections?: LayoutSections;
|
|
910
|
-
};
|
|
972
|
+
type OrderableSectionID = (typeof ORDERABLE_SECTION_IDS)[number];
|
|
911
973
|
/**
|
|
912
|
-
*
|
|
974
|
+
* A union type for all possible section IDs.
|
|
913
975
|
*/
|
|
914
|
-
type
|
|
976
|
+
type SectionID = (typeof SECTION_IDS)[number];
|
|
915
977
|
/**
|
|
916
978
|
* Defines the overall resume structure, including content and layout.
|
|
917
979
|
*
|
|
918
980
|
* - `content` is mandatory.
|
|
919
|
-
* - `
|
|
981
|
+
* - `layouts` is optional, yamlresume provide a default list of layouts if
|
|
982
|
+
* absent.
|
|
920
983
|
*/
|
|
921
984
|
type Resume = {
|
|
922
985
|
/** Defines the structure for the entire resume content. */
|
|
923
|
-
content:
|
|
986
|
+
content: Content;
|
|
924
987
|
/** Top-level locale setting. */
|
|
925
|
-
locale?:
|
|
988
|
+
locale?: Locale;
|
|
926
989
|
/** Multiple output layout configurations. */
|
|
927
|
-
layouts?:
|
|
990
|
+
layouts?: Layouts;
|
|
928
991
|
};
|
|
929
992
|
|
|
930
993
|
/**
|
|
@@ -952,46 +1015,246 @@ type Resume = {
|
|
|
952
1015
|
*/
|
|
953
1016
|
|
|
954
1017
|
/**
|
|
955
|
-
* Defines
|
|
1018
|
+
* Defines page margin settings for document layout.
|
|
956
1019
|
*/
|
|
957
|
-
|
|
1020
|
+
type Margins = {
|
|
1021
|
+
/** Top margin value (e.g., "2.5cm"). */
|
|
1022
|
+
top?: string;
|
|
1023
|
+
/** Bottom margin value (e.g., "2.5cm"). */
|
|
1024
|
+
bottom?: string;
|
|
1025
|
+
/** Left margin value (e.g., "1.5cm"). */
|
|
1026
|
+
left?: string;
|
|
1027
|
+
/** Right margin value (e.g., "1.5cm"). */
|
|
1028
|
+
right?: string;
|
|
1029
|
+
};
|
|
958
1030
|
/**
|
|
959
|
-
*
|
|
960
|
-
*
|
|
961
|
-
* Based on the Interagency Language Roundtable (ILR) scale.
|
|
1031
|
+
* A union type for all possible layout engines.
|
|
962
1032
|
*/
|
|
963
|
-
|
|
964
|
-
/** The options for the font size. */
|
|
965
|
-
declare const FONT_SIZE_OPTIONS: readonly ["10pt", "11pt", "12pt"];
|
|
966
|
-
/** The options for the font spec numbers style. */
|
|
967
|
-
declare const FONTSPEC_NUMBERS_OPTIONS: readonly ["Lining", "OldStyle", "Auto"];
|
|
1033
|
+
type LayoutEngine = 'html' | 'latex' | 'markdown';
|
|
968
1034
|
/**
|
|
969
|
-
* Defines
|
|
970
|
-
*
|
|
971
|
-
* This list contains the most used languages in the world.
|
|
972
|
-
*
|
|
973
|
-
* TODO: allow users to add their own languages
|
|
1035
|
+
* Defines section alias settings for customizing section names.
|
|
974
1036
|
*/
|
|
975
|
-
|
|
1037
|
+
type Sections = {
|
|
1038
|
+
/** Custom aliases for section names, overriding default translations. */
|
|
1039
|
+
aliases?: Partial<Record<SectionID, string>>;
|
|
1040
|
+
/** Custom order for sections in the final output. */
|
|
1041
|
+
order?: OrderableSectionID[];
|
|
1042
|
+
};
|
|
1043
|
+
|
|
976
1044
|
/**
|
|
977
|
-
*
|
|
1045
|
+
* MIT License
|
|
978
1046
|
*
|
|
979
|
-
*
|
|
1047
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1048
|
+
*
|
|
1049
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1050
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1051
|
+
* deal in the Software without restriction, including without limitation the
|
|
1052
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1053
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1054
|
+
* furnished to do so, subject to the following conditions:
|
|
1055
|
+
*
|
|
1056
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1057
|
+
* all copies or substantial portions of the Software.
|
|
1058
|
+
*
|
|
1059
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1060
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1061
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1062
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1063
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1064
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1065
|
+
* IN THE SOFTWARE.
|
|
980
1066
|
*/
|
|
981
|
-
|
|
1067
|
+
|
|
982
1068
|
/**
|
|
983
|
-
* Defines
|
|
1069
|
+
* Defines HTML typography settings for document formatting.
|
|
1070
|
+
*/
|
|
1071
|
+
type HtmlTypography = {
|
|
1072
|
+
/** Base font size for the document (e.g., "small", "medium", "large"). */
|
|
1073
|
+
fontSize?: HtmlFontSize;
|
|
1074
|
+
};
|
|
1075
|
+
/**
|
|
1076
|
+
* HTML layout configuration.
|
|
984
1077
|
*
|
|
985
|
-
*
|
|
1078
|
+
* Defines the structure for HTML-specific layout settings including
|
|
1079
|
+
* template selection, typography options, and section configuration.
|
|
986
1080
|
*/
|
|
987
|
-
|
|
1081
|
+
type HtmlLayout = {
|
|
1082
|
+
engine: 'html';
|
|
1083
|
+
/** Defines the selected template. */
|
|
1084
|
+
template?: HtmlTemplate;
|
|
1085
|
+
/** Defines typography settings for document formatting. */
|
|
1086
|
+
typography?: HtmlTypography;
|
|
1087
|
+
/** Defines section customization settings. */
|
|
1088
|
+
sections?: Sections;
|
|
1089
|
+
};
|
|
1090
|
+
|
|
988
1091
|
/**
|
|
989
|
-
*
|
|
1092
|
+
* MIT License
|
|
1093
|
+
*
|
|
1094
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1095
|
+
*
|
|
1096
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1097
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1098
|
+
* deal in the Software without restriction, including without limitation the
|
|
1099
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1100
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1101
|
+
* furnished to do so, subject to the following conditions:
|
|
1102
|
+
*
|
|
1103
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1104
|
+
* all copies or substantial portions of the Software.
|
|
1105
|
+
*
|
|
1106
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1107
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1108
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1109
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1110
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1111
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1112
|
+
* IN THE SOFTWARE.
|
|
990
1113
|
*/
|
|
991
|
-
|
|
1114
|
+
|
|
1115
|
+
/**
|
|
1116
|
+
* Defines latex link styling settings for typography.
|
|
1117
|
+
*/
|
|
1118
|
+
type Links = {
|
|
1119
|
+
/** Whether to underline links in the document. */
|
|
1120
|
+
underline?: boolean;
|
|
1121
|
+
};
|
|
1122
|
+
/**
|
|
1123
|
+
* Defines latex typography settings for document formatting.
|
|
1124
|
+
*/
|
|
1125
|
+
type LatexTypography = {
|
|
1126
|
+
/** Base font size for the document (e.g., "10pt", "11pt"). */
|
|
1127
|
+
fontSize?: LatexFontSize;
|
|
1128
|
+
/** Link styling settings. */
|
|
1129
|
+
links?: Links;
|
|
1130
|
+
};
|
|
1131
|
+
/**
|
|
1132
|
+
* Defines advanced latex configuration options.
|
|
1133
|
+
*/
|
|
1134
|
+
type LatexAdvanced = {
|
|
1135
|
+
/** LaTeX fontspec package configurations. */
|
|
1136
|
+
fontspec?: {
|
|
1137
|
+
/** Style for rendering numbers (Lining or OldStyle). */
|
|
1138
|
+
numbers?: LatexFontspecNumbers;
|
|
1139
|
+
};
|
|
1140
|
+
};
|
|
1141
|
+
/**
|
|
1142
|
+
* Defines latex page-level settings for document presentation.
|
|
1143
|
+
*/
|
|
1144
|
+
type LatexPage = {
|
|
1145
|
+
/** Whether to display page numbers. */
|
|
1146
|
+
showPageNumbers?: boolean;
|
|
1147
|
+
/** Defines page margin settings for document layout. */
|
|
1148
|
+
margins?: Margins;
|
|
1149
|
+
};
|
|
1150
|
+
/**
|
|
1151
|
+
* LaTeX layout configuration.
|
|
1152
|
+
*/
|
|
1153
|
+
type LatexLayout = {
|
|
1154
|
+
engine: 'latex';
|
|
1155
|
+
/** Defines page-level settings for document presentation. */
|
|
1156
|
+
page?: LatexPage;
|
|
1157
|
+
/** Defines section customization settings. */
|
|
1158
|
+
sections?: Sections;
|
|
1159
|
+
/** Defines the selected template. */
|
|
1160
|
+
template?: LatexTemplate;
|
|
1161
|
+
/** Defines typography settings for document formatting. */
|
|
1162
|
+
typography?: LatexTypography;
|
|
1163
|
+
/** Defines advanced configuration options. */
|
|
1164
|
+
advanced?: LatexAdvanced;
|
|
1165
|
+
};
|
|
1166
|
+
|
|
1167
|
+
/**
|
|
1168
|
+
* MIT License
|
|
1169
|
+
*
|
|
1170
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1171
|
+
*
|
|
1172
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1173
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1174
|
+
* deal in the Software without restriction, including without limitation the
|
|
1175
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1176
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1177
|
+
* furnished to do so, subject to the following conditions:
|
|
1178
|
+
*
|
|
1179
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1180
|
+
* all copies or substantial portions of the Software.
|
|
1181
|
+
*
|
|
1182
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1183
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1184
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1185
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1186
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1187
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1188
|
+
* IN THE SOFTWARE.
|
|
1189
|
+
*/
|
|
1190
|
+
|
|
1191
|
+
/**
|
|
1192
|
+
* Markdown layout configuration.
|
|
1193
|
+
*
|
|
1194
|
+
* Keep it minimal for now; can be extended later.
|
|
1195
|
+
*/
|
|
1196
|
+
type MarkdownLayout = {
|
|
1197
|
+
engine: 'markdown';
|
|
1198
|
+
/** Defines section customization settings. */
|
|
1199
|
+
sections?: Sections;
|
|
1200
|
+
};
|
|
1201
|
+
|
|
1202
|
+
/**
|
|
1203
|
+
* MIT License
|
|
1204
|
+
*
|
|
1205
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1206
|
+
*
|
|
1207
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1208
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1209
|
+
* deal in the Software without restriction, including without limitation the
|
|
1210
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1211
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1212
|
+
* furnished to do so, subject to the following conditions:
|
|
1213
|
+
*
|
|
1214
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1215
|
+
* all copies or substantial portions of the Software.
|
|
1216
|
+
*
|
|
1217
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1218
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1219
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1220
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1221
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1222
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1223
|
+
* IN THE SOFTWARE.
|
|
1224
|
+
*/
|
|
1225
|
+
|
|
1226
|
+
/**
|
|
1227
|
+
* Array of layout items supporting multiple output formats.
|
|
1228
|
+
*/
|
|
1229
|
+
type Layouts = (LatexLayout | MarkdownLayout | HtmlLayout)[];
|
|
1230
|
+
|
|
1231
|
+
/**
|
|
1232
|
+
* MIT License
|
|
1233
|
+
*
|
|
1234
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1235
|
+
*
|
|
1236
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1237
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1238
|
+
* deal in the Software without restriction, including without limitation the
|
|
1239
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1240
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1241
|
+
* furnished to do so, subject to the following conditions:
|
|
1242
|
+
*
|
|
1243
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1244
|
+
* all copies or substantial portions of the Software.
|
|
1245
|
+
*
|
|
1246
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1247
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1248
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1249
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1250
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1251
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1252
|
+
* IN THE SOFTWARE.
|
|
1253
|
+
*/
|
|
1254
|
+
|
|
992
1255
|
/**
|
|
993
1256
|
* All valid top-level sections in the resume.
|
|
994
|
-
|
|
1257
|
+
*/
|
|
995
1258
|
declare const SECTION_IDS: readonly ["basics", "location", "profiles", "education", "work", "volunteer", "awards", "certificates", "publications", "skills", "languages", "interests", "references", "projects"];
|
|
996
1259
|
/**
|
|
997
1260
|
* All valid top-level sections in the resume that can be re-ordered.
|
|
@@ -1007,8 +1270,6 @@ declare const ORDERABLE_SECTION_IDS: readonly ["basics", "education", "work", "v
|
|
|
1007
1270
|
* Sections not specified in custom order will follow this order.
|
|
1008
1271
|
*/
|
|
1009
1272
|
declare const DEFAULT_SECTIONS_ORDER: OrderableSectionID[];
|
|
1010
|
-
/** Defines identifiers for the available resume templates. */
|
|
1011
|
-
declare const LATEX_TEMPLATE_OPTIONS: readonly ["moderncv-banking", "moderncv-casual", "moderncv-classic"];
|
|
1012
1273
|
/**
|
|
1013
1274
|
* Get the detail of the given LaTeX template.
|
|
1014
1275
|
*
|
|
@@ -1016,24 +1277,36 @@ declare const LATEX_TEMPLATE_OPTIONS: readonly ["moderncv-banking", "moderncv-ca
|
|
|
1016
1277
|
* @returns The detail of the template.
|
|
1017
1278
|
*/
|
|
1018
1279
|
declare function getLatexTemplateDetail(template: LatexTemplate): {
|
|
1019
|
-
engine:
|
|
1280
|
+
engine: LayoutEngine;
|
|
1020
1281
|
name: string;
|
|
1021
1282
|
description: string;
|
|
1022
1283
|
id: "moderncv-banking" | "moderncv-casual" | "moderncv-classic";
|
|
1023
1284
|
};
|
|
1285
|
+
/**
|
|
1286
|
+
* Get the detail of the given HTML template.
|
|
1287
|
+
*
|
|
1288
|
+
* @param template - The template to get the detail for.
|
|
1289
|
+
* @returns The detail of the template.
|
|
1290
|
+
*/
|
|
1291
|
+
declare function getHtmlTemplateDetail(template: HtmlTemplate): {
|
|
1292
|
+
engine: LayoutEngine;
|
|
1293
|
+
name: string;
|
|
1294
|
+
description: string;
|
|
1295
|
+
id: "calm";
|
|
1296
|
+
};
|
|
1024
1297
|
/** Provides default, empty item structures for each resume section type. */
|
|
1025
1298
|
declare const RESUME_SECTION_ITEMS: ResumeItem;
|
|
1026
1299
|
/**
|
|
1027
1300
|
* Default content structure for a new resume, containing empty or minimal
|
|
1028
1301
|
* sections.
|
|
1029
1302
|
*/
|
|
1030
|
-
declare const DEFAULT_RESUME_CONTENT:
|
|
1303
|
+
declare const DEFAULT_RESUME_CONTENT: Content;
|
|
1031
1304
|
/**
|
|
1032
1305
|
* Resume content structure containing one example item for each section.
|
|
1033
1306
|
*
|
|
1034
1307
|
* Useful for testing transformations and rendering.
|
|
1035
1308
|
*/
|
|
1036
|
-
declare const FILLED_RESUME_CONTENT:
|
|
1309
|
+
declare const FILLED_RESUME_CONTENT: Content;
|
|
1037
1310
|
/** Available margin size options for resume layout. */
|
|
1038
1311
|
declare const MARGIN_OPTIONS: string[];
|
|
1039
1312
|
/**
|
|
@@ -1046,14 +1319,16 @@ declare function getLocaleLanguageDetail(localeLanguage: LocaleLanguage): {
|
|
|
1046
1319
|
localeLanguage: "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "fr" | "no";
|
|
1047
1320
|
name: string;
|
|
1048
1321
|
};
|
|
1322
|
+
/** Default HTML layout configuration. */
|
|
1323
|
+
declare const DEFAULT_HTML_LAYOUT: HtmlLayout;
|
|
1049
1324
|
/** Default Markdown layout configuration. */
|
|
1050
1325
|
declare const DEFAULT_MARKDOWN_LAYOUT: MarkdownLayout;
|
|
1051
1326
|
/** Default LaTeX layout configuration for the new layouts array. */
|
|
1052
1327
|
declare const DEFAULT_LATEX_LAYOUT: LatexLayout;
|
|
1053
1328
|
/** Default layouts configuration. */
|
|
1054
|
-
declare const DEFAULT_RESUME_LAYOUTS:
|
|
1329
|
+
declare const DEFAULT_RESUME_LAYOUTS: Layouts;
|
|
1055
1330
|
/** Default locale configuration. */
|
|
1056
|
-
declare const DEFAULT_RESUME_LOCALE:
|
|
1331
|
+
declare const DEFAULT_RESUME_LOCALE: Locale;
|
|
1057
1332
|
/** Default value when user creates a new `Resume` object. */
|
|
1058
1333
|
declare const DEFAULT_RESUME: Resume;
|
|
1059
1334
|
/**
|
|
@@ -1092,9 +1367,7 @@ declare const FILLED_RESUME: Resume;
|
|
|
1092
1367
|
*/
|
|
1093
1368
|
interface CodeGenerationContext {
|
|
1094
1369
|
/** Typography settings from the resume layout. */
|
|
1095
|
-
typography?:
|
|
1096
|
-
typography?: infer U;
|
|
1097
|
-
} ? U : never : never;
|
|
1370
|
+
typography?: LatexLayout['typography'] | HtmlLayout['typography'];
|
|
1098
1371
|
}
|
|
1099
1372
|
/**
|
|
1100
1373
|
* Interface to generate code from an AST.
|
|
@@ -1116,6 +1389,49 @@ interface CodeGenerator {
|
|
|
1116
1389
|
generate(node: Node, context?: CodeGenerationContext): string;
|
|
1117
1390
|
}
|
|
1118
1391
|
|
|
1392
|
+
/**
|
|
1393
|
+
* MIT License
|
|
1394
|
+
*
|
|
1395
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1396
|
+
*
|
|
1397
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1398
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1399
|
+
* deal in the Software without restriction, including without limitation the
|
|
1400
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1401
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1402
|
+
* furnished to do so, subject to the following conditions:
|
|
1403
|
+
*
|
|
1404
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1405
|
+
* all copies or substantial portions of the Software.
|
|
1406
|
+
*
|
|
1407
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1408
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1409
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1410
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1411
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1412
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1413
|
+
* IN THE SOFTWARE.
|
|
1414
|
+
*/
|
|
1415
|
+
|
|
1416
|
+
/**
|
|
1417
|
+
* Generate HTML code from a Node.
|
|
1418
|
+
*
|
|
1419
|
+
* This class implements the `CodeGenerator` interface and provides a method
|
|
1420
|
+
* to convert an AST node into its corresponding HTML code.
|
|
1421
|
+
*
|
|
1422
|
+
* @see {@link CodeGenerator}
|
|
1423
|
+
*/
|
|
1424
|
+
declare class HtmlCodeGenerator implements CodeGenerator {
|
|
1425
|
+
/**
|
|
1426
|
+
* Generate HTML code from an AST node.
|
|
1427
|
+
*
|
|
1428
|
+
* @param node - The AST node to generate HTML code from.
|
|
1429
|
+
* @param context - Optional context containing layout settings.
|
|
1430
|
+
* @returns The generated HTML code.
|
|
1431
|
+
*/
|
|
1432
|
+
generate(node: Node, context?: CodeGenerationContext): string;
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1119
1435
|
/**
|
|
1120
1436
|
* MIT License
|
|
1121
1437
|
*
|
|
@@ -1367,11 +1683,13 @@ declare class YAMLResumeError<T extends ErrorCodeType> extends Error {
|
|
|
1367
1683
|
* @param resume - The original resume object.
|
|
1368
1684
|
* @param layoutIndex - The index of the selected layout.
|
|
1369
1685
|
* @param summaryParser - The parser instance for handling summary fields.
|
|
1686
|
+
* @param escapeFunc - The function to escape string values, i.e, `escapeLatex`
|
|
1687
|
+
* or `escapeHtml`
|
|
1370
1688
|
* @returns A new, transformed resume object ready for rendering.
|
|
1371
1689
|
* @remarks This function operates on and returns a deep clone of the original
|
|
1372
1690
|
* resume.
|
|
1373
1691
|
*/
|
|
1374
|
-
declare function transformResume(resume: Resume, layoutIndex: number, summaryParser: Parser): Resume;
|
|
1692
|
+
declare function transformResume(resume: Resume, layoutIndex: number, summaryParser: Parser, escapeFunc: (input: string) => string): Resume;
|
|
1375
1693
|
|
|
1376
1694
|
/**
|
|
1377
1695
|
* MIT License
|
|
@@ -1398,11 +1716,15 @@ declare function transformResume(resume: Resume, layoutIndex: number, summaryPar
|
|
|
1398
1716
|
*/
|
|
1399
1717
|
|
|
1400
1718
|
/**
|
|
1401
|
-
* Abstract class for rendering resumes
|
|
1719
|
+
* Abstract class for rendering resumes to various format.
|
|
1720
|
+
*
|
|
1721
|
+
* The renderer will render the resume to different formats such as HTML,
|
|
1722
|
+
* Markdown, and LaTeX based on the selected layout.
|
|
1402
1723
|
*
|
|
1403
|
-
*
|
|
1404
|
-
*
|
|
1405
|
-
*
|
|
1724
|
+
* You should not use this class directly, instead, use the `getResumeRenderer`
|
|
1725
|
+
* function to get the appropriate renderer for the given resume layout.
|
|
1726
|
+
*
|
|
1727
|
+
* By default, the renderer will render the resume in the following order:
|
|
1406
1728
|
*
|
|
1407
1729
|
* 1. Core information (basics, location, profiles)
|
|
1408
1730
|
* 2. Education and career (education, work)
|
|
@@ -1536,23 +1858,6 @@ declare abstract class Renderer {
|
|
|
1536
1858
|
protected renderOrderedSections(): string;
|
|
1537
1859
|
}
|
|
1538
1860
|
|
|
1539
|
-
/**
|
|
1540
|
-
* The style options for the moderncv document class.
|
|
1541
|
-
*
|
|
1542
|
-
* These styles control the visual appearance and layout of the CV. There're
|
|
1543
|
-
* actually 5 styles in moderncv package, but only 3 are supported in this
|
|
1544
|
-
* project, `fancy` and `oldstyle` is pretty buggy and not working well.
|
|
1545
|
-
*
|
|
1546
|
-
* - `banking` - a modern, professional style with a banking/financial aesthetic
|
|
1547
|
-
* - `classic` - a traditional CV style with a clean, formal layout
|
|
1548
|
-
* - `casual` - a more relaxed style while maintaining professionalism
|
|
1549
|
-
*
|
|
1550
|
-
* @see {@link https://github.com/yamlresume/community/issues/117}
|
|
1551
|
-
*/
|
|
1552
|
-
declare const MODERNCV_STYLE_OPTIONS: readonly ["banking", "classic", "casual"];
|
|
1553
|
-
/** The type of moderncv style. */
|
|
1554
|
-
type ModerncvStyle = (typeof MODERNCV_STYLE_OPTIONS)[number];
|
|
1555
|
-
|
|
1556
1861
|
/**
|
|
1557
1862
|
* MIT License
|
|
1558
1863
|
*
|
|
@@ -1578,9 +1883,177 @@ type ModerncvStyle = (typeof MODERNCV_STYLE_OPTIONS)[number];
|
|
|
1578
1883
|
*/
|
|
1579
1884
|
|
|
1580
1885
|
/**
|
|
1581
|
-
*
|
|
1886
|
+
* HTML renderer for generating HTML5 documents from resume data.
|
|
1582
1887
|
*/
|
|
1583
|
-
declare class
|
|
1888
|
+
declare class HtmlRenderer extends Renderer {
|
|
1889
|
+
/**
|
|
1890
|
+
* Constructor for the HtmlRenderer class.
|
|
1891
|
+
*
|
|
1892
|
+
* @param resume - The resume object
|
|
1893
|
+
* @param layoutIndex - The index of the selected layout to use.
|
|
1894
|
+
* @param summaryParser - The summary parser used to parse summary field in
|
|
1895
|
+
* various sections.
|
|
1896
|
+
*/
|
|
1897
|
+
constructor(resume: Resume, layoutIndex: number, summaryParser?: Parser);
|
|
1898
|
+
/**
|
|
1899
|
+
* Get the CSS styles for the HTML document.
|
|
1900
|
+
*
|
|
1901
|
+
* @returns {string} The CSS styles
|
|
1902
|
+
*/
|
|
1903
|
+
private getStyles;
|
|
1904
|
+
/**
|
|
1905
|
+
* Render the preamble of the HTML document.
|
|
1906
|
+
*
|
|
1907
|
+
* @returns {string} The preamble of the HTML document.
|
|
1908
|
+
*/
|
|
1909
|
+
renderPreamble(): string;
|
|
1910
|
+
/**
|
|
1911
|
+
* Render the basics section of the resume.
|
|
1912
|
+
*
|
|
1913
|
+
* @returns {string} The rendered basics section
|
|
1914
|
+
*/
|
|
1915
|
+
renderBasics(): string;
|
|
1916
|
+
/**
|
|
1917
|
+
* Render the summary section of the resume.
|
|
1918
|
+
*
|
|
1919
|
+
* @returns {string} The rendered summary section
|
|
1920
|
+
*/
|
|
1921
|
+
renderSummary(): string;
|
|
1922
|
+
/**
|
|
1923
|
+
* Render the location section of the resume.
|
|
1924
|
+
*
|
|
1925
|
+
* Note: Location is handled in renderBasics() for HTML output.
|
|
1926
|
+
*
|
|
1927
|
+
* @returns {string} Empty string as location is included in basics
|
|
1928
|
+
*/
|
|
1929
|
+
renderLocation(): string;
|
|
1930
|
+
/**
|
|
1931
|
+
* Render the profiles section of the resume.
|
|
1932
|
+
*
|
|
1933
|
+
* Note: Profiles are handled in renderBasics() for HTML output.
|
|
1934
|
+
*
|
|
1935
|
+
* @returns {string} Empty string as profiles are included in basics
|
|
1936
|
+
*/
|
|
1937
|
+
renderProfiles(): string;
|
|
1938
|
+
/**
|
|
1939
|
+
* Render the education section of the resume.
|
|
1940
|
+
*
|
|
1941
|
+
* @returns {string} The rendered education section
|
|
1942
|
+
*/
|
|
1943
|
+
renderEducation(): string;
|
|
1944
|
+
/**
|
|
1945
|
+
* Render the work section of the resume.
|
|
1946
|
+
*
|
|
1947
|
+
* @returns {string} The rendered work section
|
|
1948
|
+
*/
|
|
1949
|
+
renderWork(): string;
|
|
1950
|
+
/**
|
|
1951
|
+
* Render the languages section of the resume.
|
|
1952
|
+
*
|
|
1953
|
+
* @returns {string} The rendered languages section
|
|
1954
|
+
*/
|
|
1955
|
+
renderLanguages(): string;
|
|
1956
|
+
/**
|
|
1957
|
+
* Render the skills section of the resume.
|
|
1958
|
+
*
|
|
1959
|
+
* @returns {string} The rendered skills section
|
|
1960
|
+
*/
|
|
1961
|
+
renderSkills(): string;
|
|
1962
|
+
/**
|
|
1963
|
+
* Render the awards section of the resume.
|
|
1964
|
+
*
|
|
1965
|
+
* @returns {string} The rendered awards section
|
|
1966
|
+
*/
|
|
1967
|
+
renderAwards(): string;
|
|
1968
|
+
/**
|
|
1969
|
+
* Render the certificates section of the resume.
|
|
1970
|
+
*
|
|
1971
|
+
* @returns {string} The rendered certificates section
|
|
1972
|
+
*/
|
|
1973
|
+
renderCertificates(): string;
|
|
1974
|
+
/**
|
|
1975
|
+
* Render the publications section of the resume.
|
|
1976
|
+
*
|
|
1977
|
+
* @returns {string} The rendered publications section
|
|
1978
|
+
*/
|
|
1979
|
+
renderPublications(): string;
|
|
1980
|
+
/**
|
|
1981
|
+
* Render the references section of the resume.
|
|
1982
|
+
*
|
|
1983
|
+
* @returns {string} The rendered references section
|
|
1984
|
+
*/
|
|
1985
|
+
renderReferences(): string;
|
|
1986
|
+
/**
|
|
1987
|
+
* Render the projects section of the resume.
|
|
1988
|
+
*
|
|
1989
|
+
* @returns {string} The rendered projects section
|
|
1990
|
+
*/
|
|
1991
|
+
renderProjects(): string;
|
|
1992
|
+
/**
|
|
1993
|
+
* Render the interests section of the resume.
|
|
1994
|
+
*
|
|
1995
|
+
* @returns {string} The rendered interests section
|
|
1996
|
+
*/
|
|
1997
|
+
renderInterests(): string;
|
|
1998
|
+
/**
|
|
1999
|
+
* Render the volunteer section of the resume.
|
|
2000
|
+
*
|
|
2001
|
+
* @returns {string} The rendered volunteer section
|
|
2002
|
+
*/
|
|
2003
|
+
renderVolunteer(): string;
|
|
2004
|
+
/**
|
|
2005
|
+
* Render the complete HTML resume.
|
|
2006
|
+
*
|
|
2007
|
+
* @returns {string} The rendered HTML resume
|
|
2008
|
+
*/
|
|
2009
|
+
render(): string;
|
|
2010
|
+
}
|
|
2011
|
+
|
|
2012
|
+
/**
|
|
2013
|
+
* The style options for the moderncv document class.
|
|
2014
|
+
*
|
|
2015
|
+
* These styles control the visual appearance and layout of the CV. There're
|
|
2016
|
+
* actually 5 styles in moderncv package, but only 3 are supported in this
|
|
2017
|
+
* project, `fancy` and `oldstyle` is pretty buggy and not working well.
|
|
2018
|
+
*
|
|
2019
|
+
* - `banking` - a modern, professional style with a banking/financial aesthetic
|
|
2020
|
+
* - `classic` - a traditional CV style with a clean, formal layout
|
|
2021
|
+
* - `casual` - a more relaxed style while maintaining professionalism
|
|
2022
|
+
*
|
|
2023
|
+
* @see {@link https://github.com/yamlresume/community/issues/117}
|
|
2024
|
+
*/
|
|
2025
|
+
declare const MODERNCV_STYLE_OPTIONS: readonly ["banking", "classic", "casual"];
|
|
2026
|
+
/** The type of moderncv style. */
|
|
2027
|
+
type ModerncvStyle = (typeof MODERNCV_STYLE_OPTIONS)[number];
|
|
2028
|
+
|
|
2029
|
+
/**
|
|
2030
|
+
* MIT License
|
|
2031
|
+
*
|
|
2032
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
2033
|
+
*
|
|
2034
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2035
|
+
* of this software and associated documentation files (the "Software"), to
|
|
2036
|
+
* deal in the Software without restriction, including without limitation the
|
|
2037
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
2038
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
2039
|
+
* furnished to do so, subject to the following conditions:
|
|
2040
|
+
*
|
|
2041
|
+
* The above copyright notice and this permission notice shall be included in
|
|
2042
|
+
* all copies or substantial portions of the Software.
|
|
2043
|
+
*
|
|
2044
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2045
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2046
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2047
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2048
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
2049
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
2050
|
+
* IN THE SOFTWARE.
|
|
2051
|
+
*/
|
|
2052
|
+
|
|
2053
|
+
/**
|
|
2054
|
+
* Base class for moderncv renderers.
|
|
2055
|
+
*/
|
|
2056
|
+
declare class ModerncvBase extends Renderer {
|
|
1584
2057
|
style: ModerncvStyle;
|
|
1585
2058
|
/**
|
|
1586
2059
|
* Constructor for the ModerncvBase class.
|
|
@@ -1979,784 +2452,97 @@ declare function getResumeRenderer(resume: Resume, layoutIndex: number, summaryP
|
|
|
1979
2452
|
*/
|
|
1980
2453
|
declare const ResumeSchema: z.ZodObject<{
|
|
1981
2454
|
layouts: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2455
|
+
sections: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2456
|
+
order: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
2457
|
+
basics: "basics";
|
|
2458
|
+
education: "education";
|
|
2459
|
+
work: "work";
|
|
2460
|
+
volunteer: "volunteer";
|
|
2461
|
+
awards: "awards";
|
|
2462
|
+
certificates: "certificates";
|
|
2463
|
+
publications: "publications";
|
|
2464
|
+
skills: "skills";
|
|
2465
|
+
languages: "languages";
|
|
2466
|
+
interests: "interests";
|
|
2467
|
+
references: "references";
|
|
2468
|
+
projects: "projects";
|
|
2469
|
+
}>>>>;
|
|
2470
|
+
aliases: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2471
|
+
basics: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2472
|
+
education: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2473
|
+
work: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2474
|
+
volunteer: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2475
|
+
awards: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2476
|
+
certificates: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2477
|
+
publications: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2478
|
+
skills: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2479
|
+
languages: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2480
|
+
interests: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2481
|
+
references: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2482
|
+
projects: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2483
|
+
}, z.core.$strip>>>;
|
|
2484
|
+
}, z.core.$strip>>>;
|
|
2485
|
+
typography: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2486
|
+
fontSize: z.ZodOptional<z.ZodNullable<z.ZodType<"10px" | "11px" | "12px" | "13px" | "14px" | "15px" | "16px" | "17px" | "18px" | "19px" | "20px" | "21px" | "22px" | "23px" | "24px", unknown, z.core.$ZodTypeInternals<"10px" | "11px" | "12px" | "13px" | "14px" | "15px" | "16px" | "17px" | "18px" | "19px" | "20px" | "21px" | "22px" | "23px" | "24px", unknown>>>>;
|
|
2487
|
+
}, z.core.$strip>>>;
|
|
2488
|
+
template: z.ZodOptional<z.ZodNullable<z.ZodType<"calm", unknown, z.core.$ZodTypeInternals<"calm", unknown>>>>;
|
|
2489
|
+
engine: z.ZodLiteral<"html">;
|
|
2490
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2491
|
+
sections: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2492
|
+
order: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
2493
|
+
basics: "basics";
|
|
2494
|
+
education: "education";
|
|
2495
|
+
work: "work";
|
|
2496
|
+
volunteer: "volunteer";
|
|
2497
|
+
awards: "awards";
|
|
2498
|
+
certificates: "certificates";
|
|
2499
|
+
publications: "publications";
|
|
2500
|
+
skills: "skills";
|
|
2501
|
+
languages: "languages";
|
|
2502
|
+
interests: "interests";
|
|
2503
|
+
references: "references";
|
|
2504
|
+
projects: "projects";
|
|
2505
|
+
}>>>>;
|
|
2506
|
+
aliases: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2507
|
+
basics: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2508
|
+
education: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2509
|
+
work: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2510
|
+
volunteer: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2511
|
+
awards: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2512
|
+
certificates: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2513
|
+
publications: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2514
|
+
skills: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2515
|
+
languages: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2516
|
+
interests: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2517
|
+
references: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2518
|
+
projects: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2519
|
+
}, z.core.$strip>>>;
|
|
2520
|
+
}, z.core.$strip>>>;
|
|
1982
2521
|
advanced: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1983
2522
|
fontspec: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1984
|
-
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" | "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" | "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" | "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" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "fr" | "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" | "Lining" | "OldStyle" | "Auto" | "10pt" | "11pt" | "12pt", 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" | "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" | "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" | "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" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "fr" | "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" | "Lining" | "OldStyle" | "Auto" | "10pt" | "11pt" | "12pt", unknown>>>>;
|
|
2523
|
+
numbers: z.ZodOptional<z.ZodNullable<z.ZodType<"Lining" | "OldStyle" | "Auto", unknown, z.core.$ZodTypeInternals<"Lining" | "OldStyle" | "Auto", unknown>>>>;
|
|
1985
2524
|
}, z.core.$strip>>>;
|
|
1986
2525
|
}, z.core.$strip>>>;
|
|
1987
2526
|
typography: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1988
2527
|
links: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1989
2528
|
underline: z.ZodDefault<z.ZodBoolean>;
|
|
1990
2529
|
}, z.core.$strip>>>;
|
|
1991
|
-
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" | "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" | "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" | "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" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "fr" | "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" | "Lining" | "OldStyle" | "Auto" | "10pt" | "11pt" | "12pt", 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" | "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" | "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" | "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" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "fr" | "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" | "Lining" | "OldStyle" | "Auto" | "10pt" | "11pt" | "12pt", unknown>>>>;
|
|
2530
|
+
fontSize: z.ZodOptional<z.ZodNullable<z.ZodType<"10pt" | "11pt" | "12pt", unknown, z.core.$ZodTypeInternals<"10pt" | "11pt" | "12pt", unknown>>>>;
|
|
2531
|
+
}, z.core.$strip>>>;
|
|
2532
|
+
template: z.ZodOptional<z.ZodNullable<z.ZodType<"moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
2533
|
+
page: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2534
|
+
margins: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2535
|
+
top: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2536
|
+
bottom: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2537
|
+
left: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2538
|
+
right: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2539
|
+
}, z.core.$strip>>>;
|
|
2540
|
+
showPageNumbers: z.ZodOptional<z.ZodNullable<z.ZodType<boolean, unknown, z.core.$ZodTypeInternals<boolean, unknown>>>>;
|
|
1992
2541
|
}, z.core.$strip>>>;
|
|
1993
|
-
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" | "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" | "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" | "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" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "fr" | "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" | "Lining" | "OldStyle" | "Auto" | "10pt" | "11pt" | "12pt", 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" | "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" | "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" | "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" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "fr" | "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" | "Lining" | "OldStyle" | "Auto" | "10pt" | "11pt" | "12pt", unknown>>>>;
|
|
2542
|
+
engine: z.ZodLiteral<"latex">;
|
|
2543
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1994
2544
|
sections: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1995
2545
|
order: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
1996
|
-
Afghanistan: "Afghanistan";
|
|
1997
|
-
"Aland Islands": "Aland Islands";
|
|
1998
|
-
Albania: "Albania";
|
|
1999
|
-
Algeria: "Algeria";
|
|
2000
|
-
"American Samoa": "American Samoa";
|
|
2001
|
-
Andorra: "Andorra";
|
|
2002
|
-
Angola: "Angola";
|
|
2003
|
-
Anguilla: "Anguilla";
|
|
2004
|
-
Antarctica: "Antarctica";
|
|
2005
|
-
"Antigua And Barbuda": "Antigua And Barbuda";
|
|
2006
|
-
Argentina: "Argentina";
|
|
2007
|
-
Armenia: "Armenia";
|
|
2008
|
-
Aruba: "Aruba";
|
|
2009
|
-
Australia: "Australia";
|
|
2010
|
-
Austria: "Austria";
|
|
2011
|
-
Azerbaijan: "Azerbaijan";
|
|
2012
|
-
Bahrain: "Bahrain";
|
|
2013
|
-
Bangladesh: "Bangladesh";
|
|
2014
|
-
Barbados: "Barbados";
|
|
2015
|
-
Belarus: "Belarus";
|
|
2016
|
-
Belgium: "Belgium";
|
|
2017
|
-
Belize: "Belize";
|
|
2018
|
-
Benin: "Benin";
|
|
2019
|
-
Bermuda: "Bermuda";
|
|
2020
|
-
Bhutan: "Bhutan";
|
|
2021
|
-
Bolivia: "Bolivia";
|
|
2022
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
2023
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
2024
|
-
Botswana: "Botswana";
|
|
2025
|
-
"Bouvet Island": "Bouvet Island";
|
|
2026
|
-
Brazil: "Brazil";
|
|
2027
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
2028
|
-
Brunei: "Brunei";
|
|
2029
|
-
Bulgaria: "Bulgaria";
|
|
2030
|
-
"Burkina Faso": "Burkina Faso";
|
|
2031
|
-
Burundi: "Burundi";
|
|
2032
|
-
Cambodia: "Cambodia";
|
|
2033
|
-
Cameroon: "Cameroon";
|
|
2034
|
-
Canada: "Canada";
|
|
2035
|
-
"Cape Verde": "Cape Verde";
|
|
2036
|
-
"Cayman Islands": "Cayman Islands";
|
|
2037
|
-
"Central African Republic": "Central African Republic";
|
|
2038
|
-
Chad: "Chad";
|
|
2039
|
-
Chile: "Chile";
|
|
2040
|
-
China: "China";
|
|
2041
|
-
"Christmas Island": "Christmas Island";
|
|
2042
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
2043
|
-
Colombia: "Colombia";
|
|
2044
|
-
Comoros: "Comoros";
|
|
2045
|
-
Congo: "Congo";
|
|
2046
|
-
"Cook Islands": "Cook Islands";
|
|
2047
|
-
"Costa Rica": "Costa Rica";
|
|
2048
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
2049
|
-
Croatia: "Croatia";
|
|
2050
|
-
Cuba: "Cuba";
|
|
2051
|
-
Curaçao: "Curaçao";
|
|
2052
|
-
Cyprus: "Cyprus";
|
|
2053
|
-
"Czech Republic": "Czech Republic";
|
|
2054
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
2055
|
-
Denmark: "Denmark";
|
|
2056
|
-
Djibouti: "Djibouti";
|
|
2057
|
-
Dominica: "Dominica";
|
|
2058
|
-
"Dominican Republic": "Dominican Republic";
|
|
2059
|
-
"East Timor": "East Timor";
|
|
2060
|
-
Ecuador: "Ecuador";
|
|
2061
|
-
Egypt: "Egypt";
|
|
2062
|
-
"El Salvador": "El Salvador";
|
|
2063
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
2064
|
-
Eritrea: "Eritrea";
|
|
2065
|
-
Estonia: "Estonia";
|
|
2066
|
-
Ethiopia: "Ethiopia";
|
|
2067
|
-
"Falkland Islands": "Falkland Islands";
|
|
2068
|
-
"Faroe Islands": "Faroe Islands";
|
|
2069
|
-
"Fiji Islands": "Fiji Islands";
|
|
2070
|
-
Finland: "Finland";
|
|
2071
|
-
France: "France";
|
|
2072
|
-
"French Guiana": "French Guiana";
|
|
2073
|
-
"French Polynesia": "French Polynesia";
|
|
2074
|
-
"French Southern Territories": "French Southern Territories";
|
|
2075
|
-
Gabon: "Gabon";
|
|
2076
|
-
"Gambia The": "Gambia The";
|
|
2077
|
-
Georgia: "Georgia";
|
|
2078
|
-
Germany: "Germany";
|
|
2079
|
-
Ghana: "Ghana";
|
|
2080
|
-
Gibraltar: "Gibraltar";
|
|
2081
|
-
Greece: "Greece";
|
|
2082
|
-
Greenland: "Greenland";
|
|
2083
|
-
Grenada: "Grenada";
|
|
2084
|
-
Guadeloupe: "Guadeloupe";
|
|
2085
|
-
Guam: "Guam";
|
|
2086
|
-
Guatemala: "Guatemala";
|
|
2087
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
2088
|
-
Guinea: "Guinea";
|
|
2089
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
2090
|
-
Guyana: "Guyana";
|
|
2091
|
-
Haiti: "Haiti";
|
|
2092
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
2093
|
-
Honduras: "Honduras";
|
|
2094
|
-
"Hong Kong": "Hong Kong";
|
|
2095
|
-
Hungary: "Hungary";
|
|
2096
|
-
Iceland: "Iceland";
|
|
2097
|
-
India: "India";
|
|
2098
|
-
Indonesia: "Indonesia";
|
|
2099
|
-
Iran: "Iran";
|
|
2100
|
-
Iraq: "Iraq";
|
|
2101
|
-
Ireland: "Ireland";
|
|
2102
|
-
Israel: "Israel";
|
|
2103
|
-
Italy: "Italy";
|
|
2104
|
-
Jamaica: "Jamaica";
|
|
2105
|
-
Japan: "Japan";
|
|
2106
|
-
Jersey: "Jersey";
|
|
2107
|
-
Jordan: "Jordan";
|
|
2108
|
-
Kazakhstan: "Kazakhstan";
|
|
2109
|
-
Kenya: "Kenya";
|
|
2110
|
-
Kiribati: "Kiribati";
|
|
2111
|
-
Kosovo: "Kosovo";
|
|
2112
|
-
Kuwait: "Kuwait";
|
|
2113
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
2114
|
-
Laos: "Laos";
|
|
2115
|
-
Latvia: "Latvia";
|
|
2116
|
-
Lebanon: "Lebanon";
|
|
2117
|
-
Lesotho: "Lesotho";
|
|
2118
|
-
Liberia: "Liberia";
|
|
2119
|
-
Libya: "Libya";
|
|
2120
|
-
Liechtenstein: "Liechtenstein";
|
|
2121
|
-
Lithuania: "Lithuania";
|
|
2122
|
-
Luxembourg: "Luxembourg";
|
|
2123
|
-
Macau: "Macau";
|
|
2124
|
-
Madagascar: "Madagascar";
|
|
2125
|
-
Malawi: "Malawi";
|
|
2126
|
-
Malaysia: "Malaysia";
|
|
2127
|
-
Maldives: "Maldives";
|
|
2128
|
-
Mali: "Mali";
|
|
2129
|
-
Malta: "Malta";
|
|
2130
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
2131
|
-
"Marshall Islands": "Marshall Islands";
|
|
2132
|
-
Martinique: "Martinique";
|
|
2133
|
-
Mauritania: "Mauritania";
|
|
2134
|
-
Mauritius: "Mauritius";
|
|
2135
|
-
Mayotte: "Mayotte";
|
|
2136
|
-
Mexico: "Mexico";
|
|
2137
|
-
Micronesia: "Micronesia";
|
|
2138
|
-
Moldova: "Moldova";
|
|
2139
|
-
Monaco: "Monaco";
|
|
2140
|
-
Mongolia: "Mongolia";
|
|
2141
|
-
Montenegro: "Montenegro";
|
|
2142
|
-
Montserrat: "Montserrat";
|
|
2143
|
-
Morocco: "Morocco";
|
|
2144
|
-
Mozambique: "Mozambique";
|
|
2145
|
-
Myanmar: "Myanmar";
|
|
2146
|
-
Namibia: "Namibia";
|
|
2147
|
-
Nauru: "Nauru";
|
|
2148
|
-
Nepal: "Nepal";
|
|
2149
|
-
Netherlands: "Netherlands";
|
|
2150
|
-
"New Caledonia": "New Caledonia";
|
|
2151
|
-
"New Zealand": "New Zealand";
|
|
2152
|
-
Nicaragua: "Nicaragua";
|
|
2153
|
-
Niger: "Niger";
|
|
2154
|
-
Nigeria: "Nigeria";
|
|
2155
|
-
Niue: "Niue";
|
|
2156
|
-
"Norfolk Island": "Norfolk Island";
|
|
2157
|
-
"North Korea": "North Korea";
|
|
2158
|
-
"North Macedonia": "North Macedonia";
|
|
2159
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
2160
|
-
Norway: "Norway";
|
|
2161
|
-
Oman: "Oman";
|
|
2162
|
-
Pakistan: "Pakistan";
|
|
2163
|
-
Palau: "Palau";
|
|
2164
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
2165
|
-
Panama: "Panama";
|
|
2166
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
2167
|
-
Paraguay: "Paraguay";
|
|
2168
|
-
Peru: "Peru";
|
|
2169
|
-
Philippines: "Philippines";
|
|
2170
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
2171
|
-
Poland: "Poland";
|
|
2172
|
-
Portugal: "Portugal";
|
|
2173
|
-
"Puerto Rico": "Puerto Rico";
|
|
2174
|
-
Qatar: "Qatar";
|
|
2175
|
-
Reunion: "Reunion";
|
|
2176
|
-
Romania: "Romania";
|
|
2177
|
-
Russia: "Russia";
|
|
2178
|
-
Rwanda: "Rwanda";
|
|
2179
|
-
"Saint Helena": "Saint Helena";
|
|
2180
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
2181
|
-
"Saint Lucia": "Saint Lucia";
|
|
2182
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
2183
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
2184
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
2185
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
2186
|
-
Samoa: "Samoa";
|
|
2187
|
-
"San Marino": "San Marino";
|
|
2188
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
2189
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
2190
|
-
Senegal: "Senegal";
|
|
2191
|
-
Serbia: "Serbia";
|
|
2192
|
-
Seychelles: "Seychelles";
|
|
2193
|
-
"Sierra Leone": "Sierra Leone";
|
|
2194
|
-
Singapore: "Singapore";
|
|
2195
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
2196
|
-
Slovakia: "Slovakia";
|
|
2197
|
-
Slovenia: "Slovenia";
|
|
2198
|
-
"Solomon Islands": "Solomon Islands";
|
|
2199
|
-
Somalia: "Somalia";
|
|
2200
|
-
"South Africa": "South Africa";
|
|
2201
|
-
"South Georgia": "South Georgia";
|
|
2202
|
-
"South Korea": "South Korea";
|
|
2203
|
-
"South Sudan": "South Sudan";
|
|
2204
|
-
Spain: "Spain";
|
|
2205
|
-
"Sri Lanka": "Sri Lanka";
|
|
2206
|
-
Sudan: "Sudan";
|
|
2207
|
-
Suriname: "Suriname";
|
|
2208
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
2209
|
-
Swaziland: "Swaziland";
|
|
2210
|
-
Sweden: "Sweden";
|
|
2211
|
-
Switzerland: "Switzerland";
|
|
2212
|
-
Syria: "Syria";
|
|
2213
|
-
Taiwan: "Taiwan";
|
|
2214
|
-
Tajikistan: "Tajikistan";
|
|
2215
|
-
Tanzania: "Tanzania";
|
|
2216
|
-
Thailand: "Thailand";
|
|
2217
|
-
"The Bahamas": "The Bahamas";
|
|
2218
|
-
Togo: "Togo";
|
|
2219
|
-
Tokelau: "Tokelau";
|
|
2220
|
-
Tonga: "Tonga";
|
|
2221
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
2222
|
-
Tunisia: "Tunisia";
|
|
2223
|
-
Turkey: "Turkey";
|
|
2224
|
-
Turkmenistan: "Turkmenistan";
|
|
2225
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
2226
|
-
Tuvalu: "Tuvalu";
|
|
2227
|
-
Uganda: "Uganda";
|
|
2228
|
-
Ukraine: "Ukraine";
|
|
2229
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
2230
|
-
"United Kingdom": "United Kingdom";
|
|
2231
|
-
"United States": "United States";
|
|
2232
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
2233
|
-
Uruguay: "Uruguay";
|
|
2234
|
-
Uzbekistan: "Uzbekistan";
|
|
2235
|
-
Vanuatu: "Vanuatu";
|
|
2236
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
2237
|
-
Venezuela: "Venezuela";
|
|
2238
|
-
Vietnam: "Vietnam";
|
|
2239
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
2240
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
2241
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
2242
|
-
"Western Sahara": "Western Sahara";
|
|
2243
|
-
Yemen: "Yemen";
|
|
2244
|
-
Zambia: "Zambia";
|
|
2245
|
-
Zimbabwe: "Zimbabwe";
|
|
2246
|
-
"Middle School": "Middle School";
|
|
2247
|
-
"High School": "High School";
|
|
2248
|
-
Diploma: "Diploma";
|
|
2249
|
-
Associate: "Associate";
|
|
2250
|
-
Bachelor: "Bachelor";
|
|
2251
|
-
Master: "Master";
|
|
2252
|
-
Doctor: "Doctor";
|
|
2253
|
-
"Elementary Proficiency": "Elementary Proficiency";
|
|
2254
|
-
"Limited Working Proficiency": "Limited Working Proficiency";
|
|
2255
|
-
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
2256
|
-
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
2257
|
-
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
2258
|
-
Afrikaans: "Afrikaans";
|
|
2259
|
-
Albanian: "Albanian";
|
|
2260
|
-
Amharic: "Amharic";
|
|
2261
|
-
Arabic: "Arabic";
|
|
2262
|
-
Azerbaijani: "Azerbaijani";
|
|
2263
|
-
Belarusian: "Belarusian";
|
|
2264
|
-
Bengali: "Bengali";
|
|
2265
|
-
Bhojpuri: "Bhojpuri";
|
|
2266
|
-
Bulgarian: "Bulgarian";
|
|
2267
|
-
Burmese: "Burmese";
|
|
2268
|
-
Cantonese: "Cantonese";
|
|
2269
|
-
Catalan: "Catalan";
|
|
2270
|
-
Chinese: "Chinese";
|
|
2271
|
-
Croatian: "Croatian";
|
|
2272
|
-
Czech: "Czech";
|
|
2273
|
-
Danish: "Danish";
|
|
2274
|
-
Dutch: "Dutch";
|
|
2275
|
-
English: "English";
|
|
2276
|
-
Estonian: "Estonian";
|
|
2277
|
-
Farsi: "Farsi";
|
|
2278
|
-
Filipino: "Filipino";
|
|
2279
|
-
Finnish: "Finnish";
|
|
2280
|
-
French: "French";
|
|
2281
|
-
German: "German";
|
|
2282
|
-
Greek: "Greek";
|
|
2283
|
-
Gujarati: "Gujarati";
|
|
2284
|
-
Hausa: "Hausa";
|
|
2285
|
-
Hebrew: "Hebrew";
|
|
2286
|
-
Hindi: "Hindi";
|
|
2287
|
-
Hungarian: "Hungarian";
|
|
2288
|
-
Icelandic: "Icelandic";
|
|
2289
|
-
Igbo: "Igbo";
|
|
2290
|
-
Indonesian: "Indonesian";
|
|
2291
|
-
Irish: "Irish";
|
|
2292
|
-
Italian: "Italian";
|
|
2293
|
-
Japanese: "Japanese";
|
|
2294
|
-
Javanese: "Javanese";
|
|
2295
|
-
Kazakh: "Kazakh";
|
|
2296
|
-
Khmer: "Khmer";
|
|
2297
|
-
Korean: "Korean";
|
|
2298
|
-
Lahnda: "Lahnda";
|
|
2299
|
-
Latvian: "Latvian";
|
|
2300
|
-
Lithuanian: "Lithuanian";
|
|
2301
|
-
Malay: "Malay";
|
|
2302
|
-
Mandarin: "Mandarin";
|
|
2303
|
-
Marathi: "Marathi";
|
|
2304
|
-
Nepali: "Nepali";
|
|
2305
|
-
Norwegian: "Norwegian";
|
|
2306
|
-
Oromo: "Oromo";
|
|
2307
|
-
Pashto: "Pashto";
|
|
2308
|
-
Polish: "Polish";
|
|
2309
|
-
Portuguese: "Portuguese";
|
|
2310
|
-
Romanian: "Romanian";
|
|
2311
|
-
Russian: "Russian";
|
|
2312
|
-
Serbian: "Serbian";
|
|
2313
|
-
Shona: "Shona";
|
|
2314
|
-
Sinhala: "Sinhala";
|
|
2315
|
-
Slovak: "Slovak";
|
|
2316
|
-
Slovene: "Slovene";
|
|
2317
|
-
Somali: "Somali";
|
|
2318
|
-
Spanish: "Spanish";
|
|
2319
|
-
Sundanese: "Sundanese";
|
|
2320
|
-
Swahili: "Swahili";
|
|
2321
|
-
Swedish: "Swedish";
|
|
2322
|
-
Tagalog: "Tagalog";
|
|
2323
|
-
Tamil: "Tamil";
|
|
2324
|
-
Telugu: "Telugu";
|
|
2325
|
-
Thai: "Thai";
|
|
2326
|
-
Turkish: "Turkish";
|
|
2327
|
-
Ukrainian: "Ukrainian";
|
|
2328
|
-
Urdu: "Urdu";
|
|
2329
|
-
Uzbek: "Uzbek";
|
|
2330
|
-
Vietnamese: "Vietnamese";
|
|
2331
|
-
Yoruba: "Yoruba";
|
|
2332
|
-
Zulu: "Zulu";
|
|
2333
|
-
Novice: "Novice";
|
|
2334
|
-
Beginner: "Beginner";
|
|
2335
|
-
Intermediate: "Intermediate";
|
|
2336
|
-
Advanced: "Advanced";
|
|
2337
|
-
Expert: "Expert";
|
|
2338
|
-
basics: "basics";
|
|
2339
|
-
education: "education";
|
|
2340
|
-
work: "work";
|
|
2341
|
-
volunteer: "volunteer";
|
|
2342
|
-
awards: "awards";
|
|
2343
|
-
certificates: "certificates";
|
|
2344
|
-
publications: "publications";
|
|
2345
|
-
skills: "skills";
|
|
2346
|
-
languages: "languages";
|
|
2347
|
-
interests: "interests";
|
|
2348
|
-
references: "references";
|
|
2349
|
-
projects: "projects";
|
|
2350
|
-
"moderncv-banking": "moderncv-banking";
|
|
2351
|
-
"moderncv-casual": "moderncv-casual";
|
|
2352
|
-
"moderncv-classic": "moderncv-classic";
|
|
2353
|
-
en: "en";
|
|
2354
|
-
"zh-hans": "zh-hans";
|
|
2355
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
2356
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
2357
|
-
es: "es";
|
|
2358
|
-
fr: "fr";
|
|
2359
|
-
no: "no";
|
|
2360
|
-
Behance: "Behance";
|
|
2361
|
-
Dribbble: "Dribbble";
|
|
2362
|
-
Facebook: "Facebook";
|
|
2363
|
-
GitHub: "GitHub";
|
|
2364
|
-
Gitlab: "Gitlab";
|
|
2365
|
-
Instagram: "Instagram";
|
|
2366
|
-
Line: "Line";
|
|
2367
|
-
LinkedIn: "LinkedIn";
|
|
2368
|
-
Medium: "Medium";
|
|
2369
|
-
Pinterest: "Pinterest";
|
|
2370
|
-
Reddit: "Reddit";
|
|
2371
|
-
Snapchat: "Snapchat";
|
|
2372
|
-
"Stack Overflow": "Stack Overflow";
|
|
2373
|
-
Telegram: "Telegram";
|
|
2374
|
-
TikTok: "TikTok";
|
|
2375
|
-
Twitch: "Twitch";
|
|
2376
|
-
Twitter: "Twitter";
|
|
2377
|
-
Vimeo: "Vimeo";
|
|
2378
|
-
Weibo: "Weibo";
|
|
2379
|
-
WeChat: "WeChat";
|
|
2380
|
-
WhatsApp: "WhatsApp";
|
|
2381
|
-
YouTube: "YouTube";
|
|
2382
|
-
Zhihu: "Zhihu";
|
|
2383
|
-
Lining: "Lining";
|
|
2384
|
-
OldStyle: "OldStyle";
|
|
2385
|
-
Auto: "Auto";
|
|
2386
|
-
"10pt": "10pt";
|
|
2387
|
-
"11pt": "11pt";
|
|
2388
|
-
"12pt": "12pt";
|
|
2389
|
-
}>>>>;
|
|
2390
|
-
aliases: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2391
|
-
basics: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2392
|
-
education: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2393
|
-
work: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2394
|
-
volunteer: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2395
|
-
awards: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2396
|
-
certificates: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2397
|
-
publications: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2398
|
-
skills: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2399
|
-
languages: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2400
|
-
interests: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2401
|
-
references: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2402
|
-
projects: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2403
|
-
}, z.core.$strip>>>;
|
|
2404
|
-
}, z.core.$strip>>>;
|
|
2405
|
-
page: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2406
|
-
margins: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2407
|
-
top: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2408
|
-
bottom: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2409
|
-
left: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2410
|
-
right: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2411
|
-
}, z.core.$strip>>>;
|
|
2412
|
-
showPageNumbers: z.ZodOptional<z.ZodNullable<z.ZodType<boolean, unknown, z.core.$ZodTypeInternals<boolean, unknown>>>>;
|
|
2413
|
-
}, z.core.$strip>>>;
|
|
2414
|
-
engine: z.ZodLiteral<"latex">;
|
|
2415
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2416
|
-
sections: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2417
|
-
order: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
2418
|
-
Afghanistan: "Afghanistan";
|
|
2419
|
-
"Aland Islands": "Aland Islands";
|
|
2420
|
-
Albania: "Albania";
|
|
2421
|
-
Algeria: "Algeria";
|
|
2422
|
-
"American Samoa": "American Samoa";
|
|
2423
|
-
Andorra: "Andorra";
|
|
2424
|
-
Angola: "Angola";
|
|
2425
|
-
Anguilla: "Anguilla";
|
|
2426
|
-
Antarctica: "Antarctica";
|
|
2427
|
-
"Antigua And Barbuda": "Antigua And Barbuda";
|
|
2428
|
-
Argentina: "Argentina";
|
|
2429
|
-
Armenia: "Armenia";
|
|
2430
|
-
Aruba: "Aruba";
|
|
2431
|
-
Australia: "Australia";
|
|
2432
|
-
Austria: "Austria";
|
|
2433
|
-
Azerbaijan: "Azerbaijan";
|
|
2434
|
-
Bahrain: "Bahrain";
|
|
2435
|
-
Bangladesh: "Bangladesh";
|
|
2436
|
-
Barbados: "Barbados";
|
|
2437
|
-
Belarus: "Belarus";
|
|
2438
|
-
Belgium: "Belgium";
|
|
2439
|
-
Belize: "Belize";
|
|
2440
|
-
Benin: "Benin";
|
|
2441
|
-
Bermuda: "Bermuda";
|
|
2442
|
-
Bhutan: "Bhutan";
|
|
2443
|
-
Bolivia: "Bolivia";
|
|
2444
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
2445
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
2446
|
-
Botswana: "Botswana";
|
|
2447
|
-
"Bouvet Island": "Bouvet Island";
|
|
2448
|
-
Brazil: "Brazil";
|
|
2449
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
2450
|
-
Brunei: "Brunei";
|
|
2451
|
-
Bulgaria: "Bulgaria";
|
|
2452
|
-
"Burkina Faso": "Burkina Faso";
|
|
2453
|
-
Burundi: "Burundi";
|
|
2454
|
-
Cambodia: "Cambodia";
|
|
2455
|
-
Cameroon: "Cameroon";
|
|
2456
|
-
Canada: "Canada";
|
|
2457
|
-
"Cape Verde": "Cape Verde";
|
|
2458
|
-
"Cayman Islands": "Cayman Islands";
|
|
2459
|
-
"Central African Republic": "Central African Republic";
|
|
2460
|
-
Chad: "Chad";
|
|
2461
|
-
Chile: "Chile";
|
|
2462
|
-
China: "China";
|
|
2463
|
-
"Christmas Island": "Christmas Island";
|
|
2464
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
2465
|
-
Colombia: "Colombia";
|
|
2466
|
-
Comoros: "Comoros";
|
|
2467
|
-
Congo: "Congo";
|
|
2468
|
-
"Cook Islands": "Cook Islands";
|
|
2469
|
-
"Costa Rica": "Costa Rica";
|
|
2470
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
2471
|
-
Croatia: "Croatia";
|
|
2472
|
-
Cuba: "Cuba";
|
|
2473
|
-
Curaçao: "Curaçao";
|
|
2474
|
-
Cyprus: "Cyprus";
|
|
2475
|
-
"Czech Republic": "Czech Republic";
|
|
2476
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
2477
|
-
Denmark: "Denmark";
|
|
2478
|
-
Djibouti: "Djibouti";
|
|
2479
|
-
Dominica: "Dominica";
|
|
2480
|
-
"Dominican Republic": "Dominican Republic";
|
|
2481
|
-
"East Timor": "East Timor";
|
|
2482
|
-
Ecuador: "Ecuador";
|
|
2483
|
-
Egypt: "Egypt";
|
|
2484
|
-
"El Salvador": "El Salvador";
|
|
2485
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
2486
|
-
Eritrea: "Eritrea";
|
|
2487
|
-
Estonia: "Estonia";
|
|
2488
|
-
Ethiopia: "Ethiopia";
|
|
2489
|
-
"Falkland Islands": "Falkland Islands";
|
|
2490
|
-
"Faroe Islands": "Faroe Islands";
|
|
2491
|
-
"Fiji Islands": "Fiji Islands";
|
|
2492
|
-
Finland: "Finland";
|
|
2493
|
-
France: "France";
|
|
2494
|
-
"French Guiana": "French Guiana";
|
|
2495
|
-
"French Polynesia": "French Polynesia";
|
|
2496
|
-
"French Southern Territories": "French Southern Territories";
|
|
2497
|
-
Gabon: "Gabon";
|
|
2498
|
-
"Gambia The": "Gambia The";
|
|
2499
|
-
Georgia: "Georgia";
|
|
2500
|
-
Germany: "Germany";
|
|
2501
|
-
Ghana: "Ghana";
|
|
2502
|
-
Gibraltar: "Gibraltar";
|
|
2503
|
-
Greece: "Greece";
|
|
2504
|
-
Greenland: "Greenland";
|
|
2505
|
-
Grenada: "Grenada";
|
|
2506
|
-
Guadeloupe: "Guadeloupe";
|
|
2507
|
-
Guam: "Guam";
|
|
2508
|
-
Guatemala: "Guatemala";
|
|
2509
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
2510
|
-
Guinea: "Guinea";
|
|
2511
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
2512
|
-
Guyana: "Guyana";
|
|
2513
|
-
Haiti: "Haiti";
|
|
2514
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
2515
|
-
Honduras: "Honduras";
|
|
2516
|
-
"Hong Kong": "Hong Kong";
|
|
2517
|
-
Hungary: "Hungary";
|
|
2518
|
-
Iceland: "Iceland";
|
|
2519
|
-
India: "India";
|
|
2520
|
-
Indonesia: "Indonesia";
|
|
2521
|
-
Iran: "Iran";
|
|
2522
|
-
Iraq: "Iraq";
|
|
2523
|
-
Ireland: "Ireland";
|
|
2524
|
-
Israel: "Israel";
|
|
2525
|
-
Italy: "Italy";
|
|
2526
|
-
Jamaica: "Jamaica";
|
|
2527
|
-
Japan: "Japan";
|
|
2528
|
-
Jersey: "Jersey";
|
|
2529
|
-
Jordan: "Jordan";
|
|
2530
|
-
Kazakhstan: "Kazakhstan";
|
|
2531
|
-
Kenya: "Kenya";
|
|
2532
|
-
Kiribati: "Kiribati";
|
|
2533
|
-
Kosovo: "Kosovo";
|
|
2534
|
-
Kuwait: "Kuwait";
|
|
2535
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
2536
|
-
Laos: "Laos";
|
|
2537
|
-
Latvia: "Latvia";
|
|
2538
|
-
Lebanon: "Lebanon";
|
|
2539
|
-
Lesotho: "Lesotho";
|
|
2540
|
-
Liberia: "Liberia";
|
|
2541
|
-
Libya: "Libya";
|
|
2542
|
-
Liechtenstein: "Liechtenstein";
|
|
2543
|
-
Lithuania: "Lithuania";
|
|
2544
|
-
Luxembourg: "Luxembourg";
|
|
2545
|
-
Macau: "Macau";
|
|
2546
|
-
Madagascar: "Madagascar";
|
|
2547
|
-
Malawi: "Malawi";
|
|
2548
|
-
Malaysia: "Malaysia";
|
|
2549
|
-
Maldives: "Maldives";
|
|
2550
|
-
Mali: "Mali";
|
|
2551
|
-
Malta: "Malta";
|
|
2552
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
2553
|
-
"Marshall Islands": "Marshall Islands";
|
|
2554
|
-
Martinique: "Martinique";
|
|
2555
|
-
Mauritania: "Mauritania";
|
|
2556
|
-
Mauritius: "Mauritius";
|
|
2557
|
-
Mayotte: "Mayotte";
|
|
2558
|
-
Mexico: "Mexico";
|
|
2559
|
-
Micronesia: "Micronesia";
|
|
2560
|
-
Moldova: "Moldova";
|
|
2561
|
-
Monaco: "Monaco";
|
|
2562
|
-
Mongolia: "Mongolia";
|
|
2563
|
-
Montenegro: "Montenegro";
|
|
2564
|
-
Montserrat: "Montserrat";
|
|
2565
|
-
Morocco: "Morocco";
|
|
2566
|
-
Mozambique: "Mozambique";
|
|
2567
|
-
Myanmar: "Myanmar";
|
|
2568
|
-
Namibia: "Namibia";
|
|
2569
|
-
Nauru: "Nauru";
|
|
2570
|
-
Nepal: "Nepal";
|
|
2571
|
-
Netherlands: "Netherlands";
|
|
2572
|
-
"New Caledonia": "New Caledonia";
|
|
2573
|
-
"New Zealand": "New Zealand";
|
|
2574
|
-
Nicaragua: "Nicaragua";
|
|
2575
|
-
Niger: "Niger";
|
|
2576
|
-
Nigeria: "Nigeria";
|
|
2577
|
-
Niue: "Niue";
|
|
2578
|
-
"Norfolk Island": "Norfolk Island";
|
|
2579
|
-
"North Korea": "North Korea";
|
|
2580
|
-
"North Macedonia": "North Macedonia";
|
|
2581
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
2582
|
-
Norway: "Norway";
|
|
2583
|
-
Oman: "Oman";
|
|
2584
|
-
Pakistan: "Pakistan";
|
|
2585
|
-
Palau: "Palau";
|
|
2586
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
2587
|
-
Panama: "Panama";
|
|
2588
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
2589
|
-
Paraguay: "Paraguay";
|
|
2590
|
-
Peru: "Peru";
|
|
2591
|
-
Philippines: "Philippines";
|
|
2592
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
2593
|
-
Poland: "Poland";
|
|
2594
|
-
Portugal: "Portugal";
|
|
2595
|
-
"Puerto Rico": "Puerto Rico";
|
|
2596
|
-
Qatar: "Qatar";
|
|
2597
|
-
Reunion: "Reunion";
|
|
2598
|
-
Romania: "Romania";
|
|
2599
|
-
Russia: "Russia";
|
|
2600
|
-
Rwanda: "Rwanda";
|
|
2601
|
-
"Saint Helena": "Saint Helena";
|
|
2602
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
2603
|
-
"Saint Lucia": "Saint Lucia";
|
|
2604
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
2605
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
2606
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
2607
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
2608
|
-
Samoa: "Samoa";
|
|
2609
|
-
"San Marino": "San Marino";
|
|
2610
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
2611
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
2612
|
-
Senegal: "Senegal";
|
|
2613
|
-
Serbia: "Serbia";
|
|
2614
|
-
Seychelles: "Seychelles";
|
|
2615
|
-
"Sierra Leone": "Sierra Leone";
|
|
2616
|
-
Singapore: "Singapore";
|
|
2617
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
2618
|
-
Slovakia: "Slovakia";
|
|
2619
|
-
Slovenia: "Slovenia";
|
|
2620
|
-
"Solomon Islands": "Solomon Islands";
|
|
2621
|
-
Somalia: "Somalia";
|
|
2622
|
-
"South Africa": "South Africa";
|
|
2623
|
-
"South Georgia": "South Georgia";
|
|
2624
|
-
"South Korea": "South Korea";
|
|
2625
|
-
"South Sudan": "South Sudan";
|
|
2626
|
-
Spain: "Spain";
|
|
2627
|
-
"Sri Lanka": "Sri Lanka";
|
|
2628
|
-
Sudan: "Sudan";
|
|
2629
|
-
Suriname: "Suriname";
|
|
2630
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
2631
|
-
Swaziland: "Swaziland";
|
|
2632
|
-
Sweden: "Sweden";
|
|
2633
|
-
Switzerland: "Switzerland";
|
|
2634
|
-
Syria: "Syria";
|
|
2635
|
-
Taiwan: "Taiwan";
|
|
2636
|
-
Tajikistan: "Tajikistan";
|
|
2637
|
-
Tanzania: "Tanzania";
|
|
2638
|
-
Thailand: "Thailand";
|
|
2639
|
-
"The Bahamas": "The Bahamas";
|
|
2640
|
-
Togo: "Togo";
|
|
2641
|
-
Tokelau: "Tokelau";
|
|
2642
|
-
Tonga: "Tonga";
|
|
2643
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
2644
|
-
Tunisia: "Tunisia";
|
|
2645
|
-
Turkey: "Turkey";
|
|
2646
|
-
Turkmenistan: "Turkmenistan";
|
|
2647
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
2648
|
-
Tuvalu: "Tuvalu";
|
|
2649
|
-
Uganda: "Uganda";
|
|
2650
|
-
Ukraine: "Ukraine";
|
|
2651
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
2652
|
-
"United Kingdom": "United Kingdom";
|
|
2653
|
-
"United States": "United States";
|
|
2654
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
2655
|
-
Uruguay: "Uruguay";
|
|
2656
|
-
Uzbekistan: "Uzbekistan";
|
|
2657
|
-
Vanuatu: "Vanuatu";
|
|
2658
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
2659
|
-
Venezuela: "Venezuela";
|
|
2660
|
-
Vietnam: "Vietnam";
|
|
2661
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
2662
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
2663
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
2664
|
-
"Western Sahara": "Western Sahara";
|
|
2665
|
-
Yemen: "Yemen";
|
|
2666
|
-
Zambia: "Zambia";
|
|
2667
|
-
Zimbabwe: "Zimbabwe";
|
|
2668
|
-
"Middle School": "Middle School";
|
|
2669
|
-
"High School": "High School";
|
|
2670
|
-
Diploma: "Diploma";
|
|
2671
|
-
Associate: "Associate";
|
|
2672
|
-
Bachelor: "Bachelor";
|
|
2673
|
-
Master: "Master";
|
|
2674
|
-
Doctor: "Doctor";
|
|
2675
|
-
"Elementary Proficiency": "Elementary Proficiency";
|
|
2676
|
-
"Limited Working Proficiency": "Limited Working Proficiency";
|
|
2677
|
-
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
2678
|
-
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
2679
|
-
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
2680
|
-
Afrikaans: "Afrikaans";
|
|
2681
|
-
Albanian: "Albanian";
|
|
2682
|
-
Amharic: "Amharic";
|
|
2683
|
-
Arabic: "Arabic";
|
|
2684
|
-
Azerbaijani: "Azerbaijani";
|
|
2685
|
-
Belarusian: "Belarusian";
|
|
2686
|
-
Bengali: "Bengali";
|
|
2687
|
-
Bhojpuri: "Bhojpuri";
|
|
2688
|
-
Bulgarian: "Bulgarian";
|
|
2689
|
-
Burmese: "Burmese";
|
|
2690
|
-
Cantonese: "Cantonese";
|
|
2691
|
-
Catalan: "Catalan";
|
|
2692
|
-
Chinese: "Chinese";
|
|
2693
|
-
Croatian: "Croatian";
|
|
2694
|
-
Czech: "Czech";
|
|
2695
|
-
Danish: "Danish";
|
|
2696
|
-
Dutch: "Dutch";
|
|
2697
|
-
English: "English";
|
|
2698
|
-
Estonian: "Estonian";
|
|
2699
|
-
Farsi: "Farsi";
|
|
2700
|
-
Filipino: "Filipino";
|
|
2701
|
-
Finnish: "Finnish";
|
|
2702
|
-
French: "French";
|
|
2703
|
-
German: "German";
|
|
2704
|
-
Greek: "Greek";
|
|
2705
|
-
Gujarati: "Gujarati";
|
|
2706
|
-
Hausa: "Hausa";
|
|
2707
|
-
Hebrew: "Hebrew";
|
|
2708
|
-
Hindi: "Hindi";
|
|
2709
|
-
Hungarian: "Hungarian";
|
|
2710
|
-
Icelandic: "Icelandic";
|
|
2711
|
-
Igbo: "Igbo";
|
|
2712
|
-
Indonesian: "Indonesian";
|
|
2713
|
-
Irish: "Irish";
|
|
2714
|
-
Italian: "Italian";
|
|
2715
|
-
Japanese: "Japanese";
|
|
2716
|
-
Javanese: "Javanese";
|
|
2717
|
-
Kazakh: "Kazakh";
|
|
2718
|
-
Khmer: "Khmer";
|
|
2719
|
-
Korean: "Korean";
|
|
2720
|
-
Lahnda: "Lahnda";
|
|
2721
|
-
Latvian: "Latvian";
|
|
2722
|
-
Lithuanian: "Lithuanian";
|
|
2723
|
-
Malay: "Malay";
|
|
2724
|
-
Mandarin: "Mandarin";
|
|
2725
|
-
Marathi: "Marathi";
|
|
2726
|
-
Nepali: "Nepali";
|
|
2727
|
-
Norwegian: "Norwegian";
|
|
2728
|
-
Oromo: "Oromo";
|
|
2729
|
-
Pashto: "Pashto";
|
|
2730
|
-
Polish: "Polish";
|
|
2731
|
-
Portuguese: "Portuguese";
|
|
2732
|
-
Romanian: "Romanian";
|
|
2733
|
-
Russian: "Russian";
|
|
2734
|
-
Serbian: "Serbian";
|
|
2735
|
-
Shona: "Shona";
|
|
2736
|
-
Sinhala: "Sinhala";
|
|
2737
|
-
Slovak: "Slovak";
|
|
2738
|
-
Slovene: "Slovene";
|
|
2739
|
-
Somali: "Somali";
|
|
2740
|
-
Spanish: "Spanish";
|
|
2741
|
-
Sundanese: "Sundanese";
|
|
2742
|
-
Swahili: "Swahili";
|
|
2743
|
-
Swedish: "Swedish";
|
|
2744
|
-
Tagalog: "Tagalog";
|
|
2745
|
-
Tamil: "Tamil";
|
|
2746
|
-
Telugu: "Telugu";
|
|
2747
|
-
Thai: "Thai";
|
|
2748
|
-
Turkish: "Turkish";
|
|
2749
|
-
Ukrainian: "Ukrainian";
|
|
2750
|
-
Urdu: "Urdu";
|
|
2751
|
-
Uzbek: "Uzbek";
|
|
2752
|
-
Vietnamese: "Vietnamese";
|
|
2753
|
-
Yoruba: "Yoruba";
|
|
2754
|
-
Zulu: "Zulu";
|
|
2755
|
-
Novice: "Novice";
|
|
2756
|
-
Beginner: "Beginner";
|
|
2757
|
-
Intermediate: "Intermediate";
|
|
2758
|
-
Advanced: "Advanced";
|
|
2759
|
-
Expert: "Expert";
|
|
2760
2546
|
basics: "basics";
|
|
2761
2547
|
education: "education";
|
|
2762
2548
|
work: "work";
|
|
@@ -2769,45 +2555,6 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2769
2555
|
interests: "interests";
|
|
2770
2556
|
references: "references";
|
|
2771
2557
|
projects: "projects";
|
|
2772
|
-
"moderncv-banking": "moderncv-banking";
|
|
2773
|
-
"moderncv-casual": "moderncv-casual";
|
|
2774
|
-
"moderncv-classic": "moderncv-classic";
|
|
2775
|
-
en: "en";
|
|
2776
|
-
"zh-hans": "zh-hans";
|
|
2777
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
2778
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
2779
|
-
es: "es";
|
|
2780
|
-
fr: "fr";
|
|
2781
|
-
no: "no";
|
|
2782
|
-
Behance: "Behance";
|
|
2783
|
-
Dribbble: "Dribbble";
|
|
2784
|
-
Facebook: "Facebook";
|
|
2785
|
-
GitHub: "GitHub";
|
|
2786
|
-
Gitlab: "Gitlab";
|
|
2787
|
-
Instagram: "Instagram";
|
|
2788
|
-
Line: "Line";
|
|
2789
|
-
LinkedIn: "LinkedIn";
|
|
2790
|
-
Medium: "Medium";
|
|
2791
|
-
Pinterest: "Pinterest";
|
|
2792
|
-
Reddit: "Reddit";
|
|
2793
|
-
Snapchat: "Snapchat";
|
|
2794
|
-
"Stack Overflow": "Stack Overflow";
|
|
2795
|
-
Telegram: "Telegram";
|
|
2796
|
-
TikTok: "TikTok";
|
|
2797
|
-
Twitch: "Twitch";
|
|
2798
|
-
Twitter: "Twitter";
|
|
2799
|
-
Vimeo: "Vimeo";
|
|
2800
|
-
Weibo: "Weibo";
|
|
2801
|
-
WeChat: "WeChat";
|
|
2802
|
-
WhatsApp: "WhatsApp";
|
|
2803
|
-
YouTube: "YouTube";
|
|
2804
|
-
Zhihu: "Zhihu";
|
|
2805
|
-
Lining: "Lining";
|
|
2806
|
-
OldStyle: "OldStyle";
|
|
2807
|
-
Auto: "Auto";
|
|
2808
|
-
"10pt": "10pt";
|
|
2809
|
-
"11pt": "11pt";
|
|
2810
|
-
"12pt": "12pt";
|
|
2811
2558
|
}>>>>;
|
|
2812
2559
|
aliases: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2813
2560
|
basics: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
@@ -2827,7 +2574,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2827
2574
|
engine: z.ZodLiteral<"markdown">;
|
|
2828
2575
|
}, z.core.$strip>], "engine">>>>;
|
|
2829
2576
|
locale: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2830
|
-
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" | "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" | "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" | "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" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "fr" | "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" | "Lining" | "OldStyle" | "Auto" | "10pt" | "11pt" | "12pt", 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" | "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" | "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" | "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" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "fr" | "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" | "Lining" | "OldStyle" | "Auto" | "10pt" | "11pt" | "12pt", unknown>>>>;
|
|
2577
|
+
language: z.ZodOptional<z.ZodNullable<z.ZodType<"en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "fr" | "no", unknown, z.core.$ZodTypeInternals<"en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "fr" | "no", unknown>>>>;
|
|
2831
2578
|
}, z.core.$strip>>>;
|
|
2832
2579
|
content: z.ZodObject<{
|
|
2833
2580
|
work: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -2849,1198 +2596,41 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2849
2596
|
}, z.core.$strip>>>>;
|
|
2850
2597
|
skills: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2851
2598
|
level: z.ZodEnum<{
|
|
2852
|
-
Afghanistan: "Afghanistan";
|
|
2853
|
-
"Aland Islands": "Aland Islands";
|
|
2854
|
-
Albania: "Albania";
|
|
2855
|
-
Algeria: "Algeria";
|
|
2856
|
-
"American Samoa": "American Samoa";
|
|
2857
|
-
Andorra: "Andorra";
|
|
2858
|
-
Angola: "Angola";
|
|
2859
|
-
Anguilla: "Anguilla";
|
|
2860
|
-
Antarctica: "Antarctica";
|
|
2861
|
-
"Antigua And Barbuda": "Antigua And Barbuda";
|
|
2862
|
-
Argentina: "Argentina";
|
|
2863
|
-
Armenia: "Armenia";
|
|
2864
|
-
Aruba: "Aruba";
|
|
2865
|
-
Australia: "Australia";
|
|
2866
|
-
Austria: "Austria";
|
|
2867
|
-
Azerbaijan: "Azerbaijan";
|
|
2868
|
-
Bahrain: "Bahrain";
|
|
2869
|
-
Bangladesh: "Bangladesh";
|
|
2870
|
-
Barbados: "Barbados";
|
|
2871
|
-
Belarus: "Belarus";
|
|
2872
|
-
Belgium: "Belgium";
|
|
2873
|
-
Belize: "Belize";
|
|
2874
|
-
Benin: "Benin";
|
|
2875
|
-
Bermuda: "Bermuda";
|
|
2876
|
-
Bhutan: "Bhutan";
|
|
2877
|
-
Bolivia: "Bolivia";
|
|
2878
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
2879
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
2880
|
-
Botswana: "Botswana";
|
|
2881
|
-
"Bouvet Island": "Bouvet Island";
|
|
2882
|
-
Brazil: "Brazil";
|
|
2883
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
2884
|
-
Brunei: "Brunei";
|
|
2885
|
-
Bulgaria: "Bulgaria";
|
|
2886
|
-
"Burkina Faso": "Burkina Faso";
|
|
2887
|
-
Burundi: "Burundi";
|
|
2888
|
-
Cambodia: "Cambodia";
|
|
2889
|
-
Cameroon: "Cameroon";
|
|
2890
|
-
Canada: "Canada";
|
|
2891
|
-
"Cape Verde": "Cape Verde";
|
|
2892
|
-
"Cayman Islands": "Cayman Islands";
|
|
2893
|
-
"Central African Republic": "Central African Republic";
|
|
2894
|
-
Chad: "Chad";
|
|
2895
|
-
Chile: "Chile";
|
|
2896
|
-
China: "China";
|
|
2897
|
-
"Christmas Island": "Christmas Island";
|
|
2898
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
2899
|
-
Colombia: "Colombia";
|
|
2900
|
-
Comoros: "Comoros";
|
|
2901
|
-
Congo: "Congo";
|
|
2902
|
-
"Cook Islands": "Cook Islands";
|
|
2903
|
-
"Costa Rica": "Costa Rica";
|
|
2904
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
2905
|
-
Croatia: "Croatia";
|
|
2906
|
-
Cuba: "Cuba";
|
|
2907
|
-
Curaçao: "Curaçao";
|
|
2908
|
-
Cyprus: "Cyprus";
|
|
2909
|
-
"Czech Republic": "Czech Republic";
|
|
2910
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
2911
|
-
Denmark: "Denmark";
|
|
2912
|
-
Djibouti: "Djibouti";
|
|
2913
|
-
Dominica: "Dominica";
|
|
2914
|
-
"Dominican Republic": "Dominican Republic";
|
|
2915
|
-
"East Timor": "East Timor";
|
|
2916
|
-
Ecuador: "Ecuador";
|
|
2917
|
-
Egypt: "Egypt";
|
|
2918
|
-
"El Salvador": "El Salvador";
|
|
2919
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
2920
|
-
Eritrea: "Eritrea";
|
|
2921
|
-
Estonia: "Estonia";
|
|
2922
|
-
Ethiopia: "Ethiopia";
|
|
2923
|
-
"Falkland Islands": "Falkland Islands";
|
|
2924
|
-
"Faroe Islands": "Faroe Islands";
|
|
2925
|
-
"Fiji Islands": "Fiji Islands";
|
|
2926
|
-
Finland: "Finland";
|
|
2927
|
-
France: "France";
|
|
2928
|
-
"French Guiana": "French Guiana";
|
|
2929
|
-
"French Polynesia": "French Polynesia";
|
|
2930
|
-
"French Southern Territories": "French Southern Territories";
|
|
2931
|
-
Gabon: "Gabon";
|
|
2932
|
-
"Gambia The": "Gambia The";
|
|
2933
|
-
Georgia: "Georgia";
|
|
2934
|
-
Germany: "Germany";
|
|
2935
|
-
Ghana: "Ghana";
|
|
2936
|
-
Gibraltar: "Gibraltar";
|
|
2937
|
-
Greece: "Greece";
|
|
2938
|
-
Greenland: "Greenland";
|
|
2939
|
-
Grenada: "Grenada";
|
|
2940
|
-
Guadeloupe: "Guadeloupe";
|
|
2941
|
-
Guam: "Guam";
|
|
2942
|
-
Guatemala: "Guatemala";
|
|
2943
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
2944
|
-
Guinea: "Guinea";
|
|
2945
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
2946
|
-
Guyana: "Guyana";
|
|
2947
|
-
Haiti: "Haiti";
|
|
2948
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
2949
|
-
Honduras: "Honduras";
|
|
2950
|
-
"Hong Kong": "Hong Kong";
|
|
2951
|
-
Hungary: "Hungary";
|
|
2952
|
-
Iceland: "Iceland";
|
|
2953
|
-
India: "India";
|
|
2954
|
-
Indonesia: "Indonesia";
|
|
2955
|
-
Iran: "Iran";
|
|
2956
|
-
Iraq: "Iraq";
|
|
2957
|
-
Ireland: "Ireland";
|
|
2958
|
-
Israel: "Israel";
|
|
2959
|
-
Italy: "Italy";
|
|
2960
|
-
Jamaica: "Jamaica";
|
|
2961
|
-
Japan: "Japan";
|
|
2962
|
-
Jersey: "Jersey";
|
|
2963
|
-
Jordan: "Jordan";
|
|
2964
|
-
Kazakhstan: "Kazakhstan";
|
|
2965
|
-
Kenya: "Kenya";
|
|
2966
|
-
Kiribati: "Kiribati";
|
|
2967
|
-
Kosovo: "Kosovo";
|
|
2968
|
-
Kuwait: "Kuwait";
|
|
2969
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
2970
|
-
Laos: "Laos";
|
|
2971
|
-
Latvia: "Latvia";
|
|
2972
|
-
Lebanon: "Lebanon";
|
|
2973
|
-
Lesotho: "Lesotho";
|
|
2974
|
-
Liberia: "Liberia";
|
|
2975
|
-
Libya: "Libya";
|
|
2976
|
-
Liechtenstein: "Liechtenstein";
|
|
2977
|
-
Lithuania: "Lithuania";
|
|
2978
|
-
Luxembourg: "Luxembourg";
|
|
2979
|
-
Macau: "Macau";
|
|
2980
|
-
Madagascar: "Madagascar";
|
|
2981
|
-
Malawi: "Malawi";
|
|
2982
|
-
Malaysia: "Malaysia";
|
|
2983
|
-
Maldives: "Maldives";
|
|
2984
|
-
Mali: "Mali";
|
|
2985
|
-
Malta: "Malta";
|
|
2986
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
2987
|
-
"Marshall Islands": "Marshall Islands";
|
|
2988
|
-
Martinique: "Martinique";
|
|
2989
|
-
Mauritania: "Mauritania";
|
|
2990
|
-
Mauritius: "Mauritius";
|
|
2991
|
-
Mayotte: "Mayotte";
|
|
2992
|
-
Mexico: "Mexico";
|
|
2993
|
-
Micronesia: "Micronesia";
|
|
2994
|
-
Moldova: "Moldova";
|
|
2995
|
-
Monaco: "Monaco";
|
|
2996
|
-
Mongolia: "Mongolia";
|
|
2997
|
-
Montenegro: "Montenegro";
|
|
2998
|
-
Montserrat: "Montserrat";
|
|
2999
|
-
Morocco: "Morocco";
|
|
3000
|
-
Mozambique: "Mozambique";
|
|
3001
|
-
Myanmar: "Myanmar";
|
|
3002
|
-
Namibia: "Namibia";
|
|
3003
|
-
Nauru: "Nauru";
|
|
3004
|
-
Nepal: "Nepal";
|
|
3005
|
-
Netherlands: "Netherlands";
|
|
3006
|
-
"New Caledonia": "New Caledonia";
|
|
3007
|
-
"New Zealand": "New Zealand";
|
|
3008
|
-
Nicaragua: "Nicaragua";
|
|
3009
|
-
Niger: "Niger";
|
|
3010
|
-
Nigeria: "Nigeria";
|
|
3011
|
-
Niue: "Niue";
|
|
3012
|
-
"Norfolk Island": "Norfolk Island";
|
|
3013
|
-
"North Korea": "North Korea";
|
|
3014
|
-
"North Macedonia": "North Macedonia";
|
|
3015
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
3016
|
-
Norway: "Norway";
|
|
3017
|
-
Oman: "Oman";
|
|
3018
|
-
Pakistan: "Pakistan";
|
|
3019
|
-
Palau: "Palau";
|
|
3020
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
3021
|
-
Panama: "Panama";
|
|
3022
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
3023
|
-
Paraguay: "Paraguay";
|
|
3024
|
-
Peru: "Peru";
|
|
3025
|
-
Philippines: "Philippines";
|
|
3026
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
3027
|
-
Poland: "Poland";
|
|
3028
|
-
Portugal: "Portugal";
|
|
3029
|
-
"Puerto Rico": "Puerto Rico";
|
|
3030
|
-
Qatar: "Qatar";
|
|
3031
|
-
Reunion: "Reunion";
|
|
3032
|
-
Romania: "Romania";
|
|
3033
|
-
Russia: "Russia";
|
|
3034
|
-
Rwanda: "Rwanda";
|
|
3035
|
-
"Saint Helena": "Saint Helena";
|
|
3036
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
3037
|
-
"Saint Lucia": "Saint Lucia";
|
|
3038
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
3039
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
3040
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
3041
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
3042
|
-
Samoa: "Samoa";
|
|
3043
|
-
"San Marino": "San Marino";
|
|
3044
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
3045
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
3046
|
-
Senegal: "Senegal";
|
|
3047
|
-
Serbia: "Serbia";
|
|
3048
|
-
Seychelles: "Seychelles";
|
|
3049
|
-
"Sierra Leone": "Sierra Leone";
|
|
3050
|
-
Singapore: "Singapore";
|
|
3051
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
3052
|
-
Slovakia: "Slovakia";
|
|
3053
|
-
Slovenia: "Slovenia";
|
|
3054
|
-
"Solomon Islands": "Solomon Islands";
|
|
3055
|
-
Somalia: "Somalia";
|
|
3056
|
-
"South Africa": "South Africa";
|
|
3057
|
-
"South Georgia": "South Georgia";
|
|
3058
|
-
"South Korea": "South Korea";
|
|
3059
|
-
"South Sudan": "South Sudan";
|
|
3060
|
-
Spain: "Spain";
|
|
3061
|
-
"Sri Lanka": "Sri Lanka";
|
|
3062
|
-
Sudan: "Sudan";
|
|
3063
|
-
Suriname: "Suriname";
|
|
3064
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
3065
|
-
Swaziland: "Swaziland";
|
|
3066
|
-
Sweden: "Sweden";
|
|
3067
|
-
Switzerland: "Switzerland";
|
|
3068
|
-
Syria: "Syria";
|
|
3069
|
-
Taiwan: "Taiwan";
|
|
3070
|
-
Tajikistan: "Tajikistan";
|
|
3071
|
-
Tanzania: "Tanzania";
|
|
3072
|
-
Thailand: "Thailand";
|
|
3073
|
-
"The Bahamas": "The Bahamas";
|
|
3074
|
-
Togo: "Togo";
|
|
3075
|
-
Tokelau: "Tokelau";
|
|
3076
|
-
Tonga: "Tonga";
|
|
3077
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
3078
|
-
Tunisia: "Tunisia";
|
|
3079
|
-
Turkey: "Turkey";
|
|
3080
|
-
Turkmenistan: "Turkmenistan";
|
|
3081
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
3082
|
-
Tuvalu: "Tuvalu";
|
|
3083
|
-
Uganda: "Uganda";
|
|
3084
|
-
Ukraine: "Ukraine";
|
|
3085
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
3086
|
-
"United Kingdom": "United Kingdom";
|
|
3087
|
-
"United States": "United States";
|
|
3088
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
3089
|
-
Uruguay: "Uruguay";
|
|
3090
|
-
Uzbekistan: "Uzbekistan";
|
|
3091
|
-
Vanuatu: "Vanuatu";
|
|
3092
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
3093
|
-
Venezuela: "Venezuela";
|
|
3094
|
-
Vietnam: "Vietnam";
|
|
3095
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
3096
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
3097
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
3098
|
-
"Western Sahara": "Western Sahara";
|
|
3099
|
-
Yemen: "Yemen";
|
|
3100
|
-
Zambia: "Zambia";
|
|
3101
|
-
Zimbabwe: "Zimbabwe";
|
|
3102
|
-
"Middle School": "Middle School";
|
|
3103
|
-
"High School": "High School";
|
|
3104
|
-
Diploma: "Diploma";
|
|
3105
|
-
Associate: "Associate";
|
|
3106
|
-
Bachelor: "Bachelor";
|
|
3107
2599
|
Master: "Master";
|
|
3108
|
-
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
|
|
3115
|
-
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
Hindi: "Hindi";
|
|
3143
|
-
Hungarian: "Hungarian";
|
|
3144
|
-
Icelandic: "Icelandic";
|
|
3145
|
-
Igbo: "Igbo";
|
|
3146
|
-
Indonesian: "Indonesian";
|
|
3147
|
-
Irish: "Irish";
|
|
3148
|
-
Italian: "Italian";
|
|
3149
|
-
Japanese: "Japanese";
|
|
3150
|
-
Javanese: "Javanese";
|
|
3151
|
-
Kazakh: "Kazakh";
|
|
3152
|
-
Khmer: "Khmer";
|
|
3153
|
-
Korean: "Korean";
|
|
3154
|
-
Lahnda: "Lahnda";
|
|
3155
|
-
Latvian: "Latvian";
|
|
3156
|
-
Lithuanian: "Lithuanian";
|
|
3157
|
-
Malay: "Malay";
|
|
3158
|
-
Mandarin: "Mandarin";
|
|
3159
|
-
Marathi: "Marathi";
|
|
3160
|
-
Nepali: "Nepali";
|
|
3161
|
-
Norwegian: "Norwegian";
|
|
3162
|
-
Oromo: "Oromo";
|
|
3163
|
-
Pashto: "Pashto";
|
|
3164
|
-
Polish: "Polish";
|
|
3165
|
-
Portuguese: "Portuguese";
|
|
3166
|
-
Romanian: "Romanian";
|
|
3167
|
-
Russian: "Russian";
|
|
3168
|
-
Serbian: "Serbian";
|
|
3169
|
-
Shona: "Shona";
|
|
3170
|
-
Sinhala: "Sinhala";
|
|
3171
|
-
Slovak: "Slovak";
|
|
3172
|
-
Slovene: "Slovene";
|
|
3173
|
-
Somali: "Somali";
|
|
3174
|
-
Spanish: "Spanish";
|
|
3175
|
-
Sundanese: "Sundanese";
|
|
3176
|
-
Swahili: "Swahili";
|
|
3177
|
-
Swedish: "Swedish";
|
|
3178
|
-
Tagalog: "Tagalog";
|
|
3179
|
-
Tamil: "Tamil";
|
|
3180
|
-
Telugu: "Telugu";
|
|
3181
|
-
Thai: "Thai";
|
|
3182
|
-
Turkish: "Turkish";
|
|
3183
|
-
Ukrainian: "Ukrainian";
|
|
3184
|
-
Urdu: "Urdu";
|
|
3185
|
-
Uzbek: "Uzbek";
|
|
3186
|
-
Vietnamese: "Vietnamese";
|
|
3187
|
-
Yoruba: "Yoruba";
|
|
3188
|
-
Zulu: "Zulu";
|
|
3189
|
-
Novice: "Novice";
|
|
3190
|
-
Beginner: "Beginner";
|
|
3191
|
-
Intermediate: "Intermediate";
|
|
3192
|
-
Advanced: "Advanced";
|
|
3193
|
-
Expert: "Expert";
|
|
3194
|
-
basics: "basics";
|
|
3195
|
-
education: "education";
|
|
3196
|
-
work: "work";
|
|
3197
|
-
volunteer: "volunteer";
|
|
3198
|
-
awards: "awards";
|
|
3199
|
-
certificates: "certificates";
|
|
3200
|
-
publications: "publications";
|
|
3201
|
-
skills: "skills";
|
|
3202
|
-
languages: "languages";
|
|
3203
|
-
interests: "interests";
|
|
3204
|
-
references: "references";
|
|
3205
|
-
projects: "projects";
|
|
3206
|
-
"moderncv-banking": "moderncv-banking";
|
|
3207
|
-
"moderncv-casual": "moderncv-casual";
|
|
3208
|
-
"moderncv-classic": "moderncv-classic";
|
|
3209
|
-
en: "en";
|
|
3210
|
-
"zh-hans": "zh-hans";
|
|
3211
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
3212
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
3213
|
-
es: "es";
|
|
3214
|
-
fr: "fr";
|
|
3215
|
-
no: "no";
|
|
3216
|
-
Behance: "Behance";
|
|
3217
|
-
Dribbble: "Dribbble";
|
|
3218
|
-
Facebook: "Facebook";
|
|
3219
|
-
GitHub: "GitHub";
|
|
3220
|
-
Gitlab: "Gitlab";
|
|
3221
|
-
Instagram: "Instagram";
|
|
3222
|
-
Line: "Line";
|
|
3223
|
-
LinkedIn: "LinkedIn";
|
|
3224
|
-
Medium: "Medium";
|
|
3225
|
-
Pinterest: "Pinterest";
|
|
3226
|
-
Reddit: "Reddit";
|
|
3227
|
-
Snapchat: "Snapchat";
|
|
3228
|
-
"Stack Overflow": "Stack Overflow";
|
|
3229
|
-
Telegram: "Telegram";
|
|
3230
|
-
TikTok: "TikTok";
|
|
3231
|
-
Twitch: "Twitch";
|
|
3232
|
-
Twitter: "Twitter";
|
|
3233
|
-
Vimeo: "Vimeo";
|
|
3234
|
-
Weibo: "Weibo";
|
|
3235
|
-
WeChat: "WeChat";
|
|
3236
|
-
WhatsApp: "WhatsApp";
|
|
3237
|
-
YouTube: "YouTube";
|
|
3238
|
-
Zhihu: "Zhihu";
|
|
3239
|
-
Lining: "Lining";
|
|
3240
|
-
OldStyle: "OldStyle";
|
|
3241
|
-
Auto: "Auto";
|
|
3242
|
-
"10pt": "10pt";
|
|
3243
|
-
"11pt": "11pt";
|
|
3244
|
-
"12pt": "12pt";
|
|
3245
|
-
}>;
|
|
3246
|
-
name: z.ZodString;
|
|
3247
|
-
keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
3248
|
-
}, z.core.$strip>>>>;
|
|
3249
|
-
references: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3250
|
-
name: z.ZodString;
|
|
3251
|
-
summary: z.ZodString;
|
|
3252
|
-
email: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3253
|
-
phone: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3254
|
-
relationship: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3255
|
-
}, z.core.$strip>>>>;
|
|
3256
|
-
publications: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3257
|
-
name: z.ZodString;
|
|
3258
|
-
publisher: z.ZodString;
|
|
3259
|
-
releaseDate: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3260
|
-
summary: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3261
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3262
|
-
}, z.core.$strip>>>>;
|
|
3263
|
-
projects: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3264
|
-
name: z.ZodString;
|
|
3265
|
-
startDate: z.ZodString;
|
|
3266
|
-
summary: z.ZodString;
|
|
3267
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3268
|
-
endDate: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3269
|
-
keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
3270
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3271
|
-
}, z.core.$strip>>>>;
|
|
3272
|
-
profiles: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3273
|
-
network: z.ZodEnum<{
|
|
3274
|
-
Afghanistan: "Afghanistan";
|
|
3275
|
-
"Aland Islands": "Aland Islands";
|
|
3276
|
-
Albania: "Albania";
|
|
3277
|
-
Algeria: "Algeria";
|
|
3278
|
-
"American Samoa": "American Samoa";
|
|
3279
|
-
Andorra: "Andorra";
|
|
3280
|
-
Angola: "Angola";
|
|
3281
|
-
Anguilla: "Anguilla";
|
|
3282
|
-
Antarctica: "Antarctica";
|
|
3283
|
-
"Antigua And Barbuda": "Antigua And Barbuda";
|
|
3284
|
-
Argentina: "Argentina";
|
|
3285
|
-
Armenia: "Armenia";
|
|
3286
|
-
Aruba: "Aruba";
|
|
3287
|
-
Australia: "Australia";
|
|
3288
|
-
Austria: "Austria";
|
|
3289
|
-
Azerbaijan: "Azerbaijan";
|
|
3290
|
-
Bahrain: "Bahrain";
|
|
3291
|
-
Bangladesh: "Bangladesh";
|
|
3292
|
-
Barbados: "Barbados";
|
|
3293
|
-
Belarus: "Belarus";
|
|
3294
|
-
Belgium: "Belgium";
|
|
3295
|
-
Belize: "Belize";
|
|
3296
|
-
Benin: "Benin";
|
|
3297
|
-
Bermuda: "Bermuda";
|
|
3298
|
-
Bhutan: "Bhutan";
|
|
3299
|
-
Bolivia: "Bolivia";
|
|
3300
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
3301
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
3302
|
-
Botswana: "Botswana";
|
|
3303
|
-
"Bouvet Island": "Bouvet Island";
|
|
3304
|
-
Brazil: "Brazil";
|
|
3305
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
3306
|
-
Brunei: "Brunei";
|
|
3307
|
-
Bulgaria: "Bulgaria";
|
|
3308
|
-
"Burkina Faso": "Burkina Faso";
|
|
3309
|
-
Burundi: "Burundi";
|
|
3310
|
-
Cambodia: "Cambodia";
|
|
3311
|
-
Cameroon: "Cameroon";
|
|
3312
|
-
Canada: "Canada";
|
|
3313
|
-
"Cape Verde": "Cape Verde";
|
|
3314
|
-
"Cayman Islands": "Cayman Islands";
|
|
3315
|
-
"Central African Republic": "Central African Republic";
|
|
3316
|
-
Chad: "Chad";
|
|
3317
|
-
Chile: "Chile";
|
|
3318
|
-
China: "China";
|
|
3319
|
-
"Christmas Island": "Christmas Island";
|
|
3320
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
3321
|
-
Colombia: "Colombia";
|
|
3322
|
-
Comoros: "Comoros";
|
|
3323
|
-
Congo: "Congo";
|
|
3324
|
-
"Cook Islands": "Cook Islands";
|
|
3325
|
-
"Costa Rica": "Costa Rica";
|
|
3326
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
3327
|
-
Croatia: "Croatia";
|
|
3328
|
-
Cuba: "Cuba";
|
|
3329
|
-
Curaçao: "Curaçao";
|
|
3330
|
-
Cyprus: "Cyprus";
|
|
3331
|
-
"Czech Republic": "Czech Republic";
|
|
3332
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
3333
|
-
Denmark: "Denmark";
|
|
3334
|
-
Djibouti: "Djibouti";
|
|
3335
|
-
Dominica: "Dominica";
|
|
3336
|
-
"Dominican Republic": "Dominican Republic";
|
|
3337
|
-
"East Timor": "East Timor";
|
|
3338
|
-
Ecuador: "Ecuador";
|
|
3339
|
-
Egypt: "Egypt";
|
|
3340
|
-
"El Salvador": "El Salvador";
|
|
3341
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
3342
|
-
Eritrea: "Eritrea";
|
|
3343
|
-
Estonia: "Estonia";
|
|
3344
|
-
Ethiopia: "Ethiopia";
|
|
3345
|
-
"Falkland Islands": "Falkland Islands";
|
|
3346
|
-
"Faroe Islands": "Faroe Islands";
|
|
3347
|
-
"Fiji Islands": "Fiji Islands";
|
|
3348
|
-
Finland: "Finland";
|
|
3349
|
-
France: "France";
|
|
3350
|
-
"French Guiana": "French Guiana";
|
|
3351
|
-
"French Polynesia": "French Polynesia";
|
|
3352
|
-
"French Southern Territories": "French Southern Territories";
|
|
3353
|
-
Gabon: "Gabon";
|
|
3354
|
-
"Gambia The": "Gambia The";
|
|
3355
|
-
Georgia: "Georgia";
|
|
3356
|
-
Germany: "Germany";
|
|
3357
|
-
Ghana: "Ghana";
|
|
3358
|
-
Gibraltar: "Gibraltar";
|
|
3359
|
-
Greece: "Greece";
|
|
3360
|
-
Greenland: "Greenland";
|
|
3361
|
-
Grenada: "Grenada";
|
|
3362
|
-
Guadeloupe: "Guadeloupe";
|
|
3363
|
-
Guam: "Guam";
|
|
3364
|
-
Guatemala: "Guatemala";
|
|
3365
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
3366
|
-
Guinea: "Guinea";
|
|
3367
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
3368
|
-
Guyana: "Guyana";
|
|
3369
|
-
Haiti: "Haiti";
|
|
3370
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
3371
|
-
Honduras: "Honduras";
|
|
3372
|
-
"Hong Kong": "Hong Kong";
|
|
3373
|
-
Hungary: "Hungary";
|
|
3374
|
-
Iceland: "Iceland";
|
|
3375
|
-
India: "India";
|
|
3376
|
-
Indonesia: "Indonesia";
|
|
3377
|
-
Iran: "Iran";
|
|
3378
|
-
Iraq: "Iraq";
|
|
3379
|
-
Ireland: "Ireland";
|
|
3380
|
-
Israel: "Israel";
|
|
3381
|
-
Italy: "Italy";
|
|
3382
|
-
Jamaica: "Jamaica";
|
|
3383
|
-
Japan: "Japan";
|
|
3384
|
-
Jersey: "Jersey";
|
|
3385
|
-
Jordan: "Jordan";
|
|
3386
|
-
Kazakhstan: "Kazakhstan";
|
|
3387
|
-
Kenya: "Kenya";
|
|
3388
|
-
Kiribati: "Kiribati";
|
|
3389
|
-
Kosovo: "Kosovo";
|
|
3390
|
-
Kuwait: "Kuwait";
|
|
3391
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
3392
|
-
Laos: "Laos";
|
|
3393
|
-
Latvia: "Latvia";
|
|
3394
|
-
Lebanon: "Lebanon";
|
|
3395
|
-
Lesotho: "Lesotho";
|
|
3396
|
-
Liberia: "Liberia";
|
|
3397
|
-
Libya: "Libya";
|
|
3398
|
-
Liechtenstein: "Liechtenstein";
|
|
3399
|
-
Lithuania: "Lithuania";
|
|
3400
|
-
Luxembourg: "Luxembourg";
|
|
3401
|
-
Macau: "Macau";
|
|
3402
|
-
Madagascar: "Madagascar";
|
|
3403
|
-
Malawi: "Malawi";
|
|
3404
|
-
Malaysia: "Malaysia";
|
|
3405
|
-
Maldives: "Maldives";
|
|
3406
|
-
Mali: "Mali";
|
|
3407
|
-
Malta: "Malta";
|
|
3408
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
3409
|
-
"Marshall Islands": "Marshall Islands";
|
|
3410
|
-
Martinique: "Martinique";
|
|
3411
|
-
Mauritania: "Mauritania";
|
|
3412
|
-
Mauritius: "Mauritius";
|
|
3413
|
-
Mayotte: "Mayotte";
|
|
3414
|
-
Mexico: "Mexico";
|
|
3415
|
-
Micronesia: "Micronesia";
|
|
3416
|
-
Moldova: "Moldova";
|
|
3417
|
-
Monaco: "Monaco";
|
|
3418
|
-
Mongolia: "Mongolia";
|
|
3419
|
-
Montenegro: "Montenegro";
|
|
3420
|
-
Montserrat: "Montserrat";
|
|
3421
|
-
Morocco: "Morocco";
|
|
3422
|
-
Mozambique: "Mozambique";
|
|
3423
|
-
Myanmar: "Myanmar";
|
|
3424
|
-
Namibia: "Namibia";
|
|
3425
|
-
Nauru: "Nauru";
|
|
3426
|
-
Nepal: "Nepal";
|
|
3427
|
-
Netherlands: "Netherlands";
|
|
3428
|
-
"New Caledonia": "New Caledonia";
|
|
3429
|
-
"New Zealand": "New Zealand";
|
|
3430
|
-
Nicaragua: "Nicaragua";
|
|
3431
|
-
Niger: "Niger";
|
|
3432
|
-
Nigeria: "Nigeria";
|
|
3433
|
-
Niue: "Niue";
|
|
3434
|
-
"Norfolk Island": "Norfolk Island";
|
|
3435
|
-
"North Korea": "North Korea";
|
|
3436
|
-
"North Macedonia": "North Macedonia";
|
|
3437
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
3438
|
-
Norway: "Norway";
|
|
3439
|
-
Oman: "Oman";
|
|
3440
|
-
Pakistan: "Pakistan";
|
|
3441
|
-
Palau: "Palau";
|
|
3442
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
3443
|
-
Panama: "Panama";
|
|
3444
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
3445
|
-
Paraguay: "Paraguay";
|
|
3446
|
-
Peru: "Peru";
|
|
3447
|
-
Philippines: "Philippines";
|
|
3448
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
3449
|
-
Poland: "Poland";
|
|
3450
|
-
Portugal: "Portugal";
|
|
3451
|
-
"Puerto Rico": "Puerto Rico";
|
|
3452
|
-
Qatar: "Qatar";
|
|
3453
|
-
Reunion: "Reunion";
|
|
3454
|
-
Romania: "Romania";
|
|
3455
|
-
Russia: "Russia";
|
|
3456
|
-
Rwanda: "Rwanda";
|
|
3457
|
-
"Saint Helena": "Saint Helena";
|
|
3458
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
3459
|
-
"Saint Lucia": "Saint Lucia";
|
|
3460
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
3461
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
3462
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
3463
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
3464
|
-
Samoa: "Samoa";
|
|
3465
|
-
"San Marino": "San Marino";
|
|
3466
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
3467
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
3468
|
-
Senegal: "Senegal";
|
|
3469
|
-
Serbia: "Serbia";
|
|
3470
|
-
Seychelles: "Seychelles";
|
|
3471
|
-
"Sierra Leone": "Sierra Leone";
|
|
3472
|
-
Singapore: "Singapore";
|
|
3473
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
3474
|
-
Slovakia: "Slovakia";
|
|
3475
|
-
Slovenia: "Slovenia";
|
|
3476
|
-
"Solomon Islands": "Solomon Islands";
|
|
3477
|
-
Somalia: "Somalia";
|
|
3478
|
-
"South Africa": "South Africa";
|
|
3479
|
-
"South Georgia": "South Georgia";
|
|
3480
|
-
"South Korea": "South Korea";
|
|
3481
|
-
"South Sudan": "South Sudan";
|
|
3482
|
-
Spain: "Spain";
|
|
3483
|
-
"Sri Lanka": "Sri Lanka";
|
|
3484
|
-
Sudan: "Sudan";
|
|
3485
|
-
Suriname: "Suriname";
|
|
3486
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
3487
|
-
Swaziland: "Swaziland";
|
|
3488
|
-
Sweden: "Sweden";
|
|
3489
|
-
Switzerland: "Switzerland";
|
|
3490
|
-
Syria: "Syria";
|
|
3491
|
-
Taiwan: "Taiwan";
|
|
3492
|
-
Tajikistan: "Tajikistan";
|
|
3493
|
-
Tanzania: "Tanzania";
|
|
3494
|
-
Thailand: "Thailand";
|
|
3495
|
-
"The Bahamas": "The Bahamas";
|
|
3496
|
-
Togo: "Togo";
|
|
3497
|
-
Tokelau: "Tokelau";
|
|
3498
|
-
Tonga: "Tonga";
|
|
3499
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
3500
|
-
Tunisia: "Tunisia";
|
|
3501
|
-
Turkey: "Turkey";
|
|
3502
|
-
Turkmenistan: "Turkmenistan";
|
|
3503
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
3504
|
-
Tuvalu: "Tuvalu";
|
|
3505
|
-
Uganda: "Uganda";
|
|
3506
|
-
Ukraine: "Ukraine";
|
|
3507
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
3508
|
-
"United Kingdom": "United Kingdom";
|
|
3509
|
-
"United States": "United States";
|
|
3510
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
3511
|
-
Uruguay: "Uruguay";
|
|
3512
|
-
Uzbekistan: "Uzbekistan";
|
|
3513
|
-
Vanuatu: "Vanuatu";
|
|
3514
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
3515
|
-
Venezuela: "Venezuela";
|
|
3516
|
-
Vietnam: "Vietnam";
|
|
3517
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
3518
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
3519
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
3520
|
-
"Western Sahara": "Western Sahara";
|
|
3521
|
-
Yemen: "Yemen";
|
|
3522
|
-
Zambia: "Zambia";
|
|
3523
|
-
Zimbabwe: "Zimbabwe";
|
|
3524
|
-
"Middle School": "Middle School";
|
|
3525
|
-
"High School": "High School";
|
|
3526
|
-
Diploma: "Diploma";
|
|
3527
|
-
Associate: "Associate";
|
|
3528
|
-
Bachelor: "Bachelor";
|
|
3529
|
-
Master: "Master";
|
|
3530
|
-
Doctor: "Doctor";
|
|
3531
|
-
"Elementary Proficiency": "Elementary Proficiency";
|
|
3532
|
-
"Limited Working Proficiency": "Limited Working Proficiency";
|
|
3533
|
-
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
3534
|
-
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
3535
|
-
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
3536
|
-
Afrikaans: "Afrikaans";
|
|
3537
|
-
Albanian: "Albanian";
|
|
3538
|
-
Amharic: "Amharic";
|
|
3539
|
-
Arabic: "Arabic";
|
|
3540
|
-
Azerbaijani: "Azerbaijani";
|
|
3541
|
-
Belarusian: "Belarusian";
|
|
3542
|
-
Bengali: "Bengali";
|
|
3543
|
-
Bhojpuri: "Bhojpuri";
|
|
3544
|
-
Bulgarian: "Bulgarian";
|
|
3545
|
-
Burmese: "Burmese";
|
|
3546
|
-
Cantonese: "Cantonese";
|
|
3547
|
-
Catalan: "Catalan";
|
|
3548
|
-
Chinese: "Chinese";
|
|
3549
|
-
Croatian: "Croatian";
|
|
3550
|
-
Czech: "Czech";
|
|
3551
|
-
Danish: "Danish";
|
|
3552
|
-
Dutch: "Dutch";
|
|
3553
|
-
English: "English";
|
|
3554
|
-
Estonian: "Estonian";
|
|
3555
|
-
Farsi: "Farsi";
|
|
3556
|
-
Filipino: "Filipino";
|
|
3557
|
-
Finnish: "Finnish";
|
|
3558
|
-
French: "French";
|
|
3559
|
-
German: "German";
|
|
3560
|
-
Greek: "Greek";
|
|
3561
|
-
Gujarati: "Gujarati";
|
|
3562
|
-
Hausa: "Hausa";
|
|
3563
|
-
Hebrew: "Hebrew";
|
|
3564
|
-
Hindi: "Hindi";
|
|
3565
|
-
Hungarian: "Hungarian";
|
|
3566
|
-
Icelandic: "Icelandic";
|
|
3567
|
-
Igbo: "Igbo";
|
|
3568
|
-
Indonesian: "Indonesian";
|
|
3569
|
-
Irish: "Irish";
|
|
3570
|
-
Italian: "Italian";
|
|
3571
|
-
Japanese: "Japanese";
|
|
3572
|
-
Javanese: "Javanese";
|
|
3573
|
-
Kazakh: "Kazakh";
|
|
3574
|
-
Khmer: "Khmer";
|
|
3575
|
-
Korean: "Korean";
|
|
3576
|
-
Lahnda: "Lahnda";
|
|
3577
|
-
Latvian: "Latvian";
|
|
3578
|
-
Lithuanian: "Lithuanian";
|
|
3579
|
-
Malay: "Malay";
|
|
3580
|
-
Mandarin: "Mandarin";
|
|
3581
|
-
Marathi: "Marathi";
|
|
3582
|
-
Nepali: "Nepali";
|
|
3583
|
-
Norwegian: "Norwegian";
|
|
3584
|
-
Oromo: "Oromo";
|
|
3585
|
-
Pashto: "Pashto";
|
|
3586
|
-
Polish: "Polish";
|
|
3587
|
-
Portuguese: "Portuguese";
|
|
3588
|
-
Romanian: "Romanian";
|
|
3589
|
-
Russian: "Russian";
|
|
3590
|
-
Serbian: "Serbian";
|
|
3591
|
-
Shona: "Shona";
|
|
3592
|
-
Sinhala: "Sinhala";
|
|
3593
|
-
Slovak: "Slovak";
|
|
3594
|
-
Slovene: "Slovene";
|
|
3595
|
-
Somali: "Somali";
|
|
3596
|
-
Spanish: "Spanish";
|
|
3597
|
-
Sundanese: "Sundanese";
|
|
3598
|
-
Swahili: "Swahili";
|
|
3599
|
-
Swedish: "Swedish";
|
|
3600
|
-
Tagalog: "Tagalog";
|
|
3601
|
-
Tamil: "Tamil";
|
|
3602
|
-
Telugu: "Telugu";
|
|
3603
|
-
Thai: "Thai";
|
|
3604
|
-
Turkish: "Turkish";
|
|
3605
|
-
Ukrainian: "Ukrainian";
|
|
3606
|
-
Urdu: "Urdu";
|
|
3607
|
-
Uzbek: "Uzbek";
|
|
3608
|
-
Vietnamese: "Vietnamese";
|
|
3609
|
-
Yoruba: "Yoruba";
|
|
3610
|
-
Zulu: "Zulu";
|
|
3611
|
-
Novice: "Novice";
|
|
3612
|
-
Beginner: "Beginner";
|
|
3613
|
-
Intermediate: "Intermediate";
|
|
3614
|
-
Advanced: "Advanced";
|
|
3615
|
-
Expert: "Expert";
|
|
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";
|
|
3628
|
-
"moderncv-banking": "moderncv-banking";
|
|
3629
|
-
"moderncv-casual": "moderncv-casual";
|
|
3630
|
-
"moderncv-classic": "moderncv-classic";
|
|
3631
|
-
en: "en";
|
|
3632
|
-
"zh-hans": "zh-hans";
|
|
3633
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
3634
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
3635
|
-
es: "es";
|
|
3636
|
-
fr: "fr";
|
|
3637
|
-
no: "no";
|
|
3638
|
-
Behance: "Behance";
|
|
3639
|
-
Dribbble: "Dribbble";
|
|
3640
|
-
Facebook: "Facebook";
|
|
3641
|
-
GitHub: "GitHub";
|
|
3642
|
-
Gitlab: "Gitlab";
|
|
3643
|
-
Instagram: "Instagram";
|
|
3644
|
-
Line: "Line";
|
|
3645
|
-
LinkedIn: "LinkedIn";
|
|
3646
|
-
Medium: "Medium";
|
|
3647
|
-
Pinterest: "Pinterest";
|
|
3648
|
-
Reddit: "Reddit";
|
|
3649
|
-
Snapchat: "Snapchat";
|
|
3650
|
-
"Stack Overflow": "Stack Overflow";
|
|
3651
|
-
Telegram: "Telegram";
|
|
3652
|
-
TikTok: "TikTok";
|
|
3653
|
-
Twitch: "Twitch";
|
|
3654
|
-
Twitter: "Twitter";
|
|
3655
|
-
Vimeo: "Vimeo";
|
|
3656
|
-
Weibo: "Weibo";
|
|
3657
|
-
WeChat: "WeChat";
|
|
3658
|
-
WhatsApp: "WhatsApp";
|
|
3659
|
-
YouTube: "YouTube";
|
|
3660
|
-
Zhihu: "Zhihu";
|
|
3661
|
-
Lining: "Lining";
|
|
3662
|
-
OldStyle: "OldStyle";
|
|
3663
|
-
Auto: "Auto";
|
|
3664
|
-
"10pt": "10pt";
|
|
3665
|
-
"11pt": "11pt";
|
|
3666
|
-
"12pt": "12pt";
|
|
3667
|
-
}>;
|
|
3668
|
-
username: z.ZodString;
|
|
3669
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3670
|
-
}, z.core.$strip>>>>;
|
|
3671
|
-
location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3672
|
-
city: z.ZodString;
|
|
3673
|
-
address: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3674
|
-
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" | "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" | "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" | "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" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "fr" | "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" | "Lining" | "OldStyle" | "Auto" | "10pt" | "11pt" | "12pt", 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" | "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" | "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" | "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" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "fr" | "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" | "Lining" | "OldStyle" | "Auto" | "10pt" | "11pt" | "12pt", unknown>>>>;
|
|
3675
|
-
postalCode: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3676
|
-
region: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3677
|
-
}, z.core.$strip>>>;
|
|
3678
|
-
languages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3679
|
-
fluency: z.ZodEnum<{
|
|
3680
|
-
Afghanistan: "Afghanistan";
|
|
3681
|
-
"Aland Islands": "Aland Islands";
|
|
3682
|
-
Albania: "Albania";
|
|
3683
|
-
Algeria: "Algeria";
|
|
3684
|
-
"American Samoa": "American Samoa";
|
|
3685
|
-
Andorra: "Andorra";
|
|
3686
|
-
Angola: "Angola";
|
|
3687
|
-
Anguilla: "Anguilla";
|
|
3688
|
-
Antarctica: "Antarctica";
|
|
3689
|
-
"Antigua And Barbuda": "Antigua And Barbuda";
|
|
3690
|
-
Argentina: "Argentina";
|
|
3691
|
-
Armenia: "Armenia";
|
|
3692
|
-
Aruba: "Aruba";
|
|
3693
|
-
Australia: "Australia";
|
|
3694
|
-
Austria: "Austria";
|
|
3695
|
-
Azerbaijan: "Azerbaijan";
|
|
3696
|
-
Bahrain: "Bahrain";
|
|
3697
|
-
Bangladesh: "Bangladesh";
|
|
3698
|
-
Barbados: "Barbados";
|
|
3699
|
-
Belarus: "Belarus";
|
|
3700
|
-
Belgium: "Belgium";
|
|
3701
|
-
Belize: "Belize";
|
|
3702
|
-
Benin: "Benin";
|
|
3703
|
-
Bermuda: "Bermuda";
|
|
3704
|
-
Bhutan: "Bhutan";
|
|
3705
|
-
Bolivia: "Bolivia";
|
|
3706
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
3707
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
3708
|
-
Botswana: "Botswana";
|
|
3709
|
-
"Bouvet Island": "Bouvet Island";
|
|
3710
|
-
Brazil: "Brazil";
|
|
3711
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
3712
|
-
Brunei: "Brunei";
|
|
3713
|
-
Bulgaria: "Bulgaria";
|
|
3714
|
-
"Burkina Faso": "Burkina Faso";
|
|
3715
|
-
Burundi: "Burundi";
|
|
3716
|
-
Cambodia: "Cambodia";
|
|
3717
|
-
Cameroon: "Cameroon";
|
|
3718
|
-
Canada: "Canada";
|
|
3719
|
-
"Cape Verde": "Cape Verde";
|
|
3720
|
-
"Cayman Islands": "Cayman Islands";
|
|
3721
|
-
"Central African Republic": "Central African Republic";
|
|
3722
|
-
Chad: "Chad";
|
|
3723
|
-
Chile: "Chile";
|
|
3724
|
-
China: "China";
|
|
3725
|
-
"Christmas Island": "Christmas Island";
|
|
3726
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
3727
|
-
Colombia: "Colombia";
|
|
3728
|
-
Comoros: "Comoros";
|
|
3729
|
-
Congo: "Congo";
|
|
3730
|
-
"Cook Islands": "Cook Islands";
|
|
3731
|
-
"Costa Rica": "Costa Rica";
|
|
3732
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
3733
|
-
Croatia: "Croatia";
|
|
3734
|
-
Cuba: "Cuba";
|
|
3735
|
-
Curaçao: "Curaçao";
|
|
3736
|
-
Cyprus: "Cyprus";
|
|
3737
|
-
"Czech Republic": "Czech Republic";
|
|
3738
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
3739
|
-
Denmark: "Denmark";
|
|
3740
|
-
Djibouti: "Djibouti";
|
|
3741
|
-
Dominica: "Dominica";
|
|
3742
|
-
"Dominican Republic": "Dominican Republic";
|
|
3743
|
-
"East Timor": "East Timor";
|
|
3744
|
-
Ecuador: "Ecuador";
|
|
3745
|
-
Egypt: "Egypt";
|
|
3746
|
-
"El Salvador": "El Salvador";
|
|
3747
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
3748
|
-
Eritrea: "Eritrea";
|
|
3749
|
-
Estonia: "Estonia";
|
|
3750
|
-
Ethiopia: "Ethiopia";
|
|
3751
|
-
"Falkland Islands": "Falkland Islands";
|
|
3752
|
-
"Faroe Islands": "Faroe Islands";
|
|
3753
|
-
"Fiji Islands": "Fiji Islands";
|
|
3754
|
-
Finland: "Finland";
|
|
3755
|
-
France: "France";
|
|
3756
|
-
"French Guiana": "French Guiana";
|
|
3757
|
-
"French Polynesia": "French Polynesia";
|
|
3758
|
-
"French Southern Territories": "French Southern Territories";
|
|
3759
|
-
Gabon: "Gabon";
|
|
3760
|
-
"Gambia The": "Gambia The";
|
|
3761
|
-
Georgia: "Georgia";
|
|
3762
|
-
Germany: "Germany";
|
|
3763
|
-
Ghana: "Ghana";
|
|
3764
|
-
Gibraltar: "Gibraltar";
|
|
3765
|
-
Greece: "Greece";
|
|
3766
|
-
Greenland: "Greenland";
|
|
3767
|
-
Grenada: "Grenada";
|
|
3768
|
-
Guadeloupe: "Guadeloupe";
|
|
3769
|
-
Guam: "Guam";
|
|
3770
|
-
Guatemala: "Guatemala";
|
|
3771
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
3772
|
-
Guinea: "Guinea";
|
|
3773
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
3774
|
-
Guyana: "Guyana";
|
|
3775
|
-
Haiti: "Haiti";
|
|
3776
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
3777
|
-
Honduras: "Honduras";
|
|
3778
|
-
"Hong Kong": "Hong Kong";
|
|
3779
|
-
Hungary: "Hungary";
|
|
3780
|
-
Iceland: "Iceland";
|
|
3781
|
-
India: "India";
|
|
3782
|
-
Indonesia: "Indonesia";
|
|
3783
|
-
Iran: "Iran";
|
|
3784
|
-
Iraq: "Iraq";
|
|
3785
|
-
Ireland: "Ireland";
|
|
3786
|
-
Israel: "Israel";
|
|
3787
|
-
Italy: "Italy";
|
|
3788
|
-
Jamaica: "Jamaica";
|
|
3789
|
-
Japan: "Japan";
|
|
3790
|
-
Jersey: "Jersey";
|
|
3791
|
-
Jordan: "Jordan";
|
|
3792
|
-
Kazakhstan: "Kazakhstan";
|
|
3793
|
-
Kenya: "Kenya";
|
|
3794
|
-
Kiribati: "Kiribati";
|
|
3795
|
-
Kosovo: "Kosovo";
|
|
3796
|
-
Kuwait: "Kuwait";
|
|
3797
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
3798
|
-
Laos: "Laos";
|
|
3799
|
-
Latvia: "Latvia";
|
|
3800
|
-
Lebanon: "Lebanon";
|
|
3801
|
-
Lesotho: "Lesotho";
|
|
3802
|
-
Liberia: "Liberia";
|
|
3803
|
-
Libya: "Libya";
|
|
3804
|
-
Liechtenstein: "Liechtenstein";
|
|
3805
|
-
Lithuania: "Lithuania";
|
|
3806
|
-
Luxembourg: "Luxembourg";
|
|
3807
|
-
Macau: "Macau";
|
|
3808
|
-
Madagascar: "Madagascar";
|
|
3809
|
-
Malawi: "Malawi";
|
|
3810
|
-
Malaysia: "Malaysia";
|
|
3811
|
-
Maldives: "Maldives";
|
|
3812
|
-
Mali: "Mali";
|
|
3813
|
-
Malta: "Malta";
|
|
3814
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
3815
|
-
"Marshall Islands": "Marshall Islands";
|
|
3816
|
-
Martinique: "Martinique";
|
|
3817
|
-
Mauritania: "Mauritania";
|
|
3818
|
-
Mauritius: "Mauritius";
|
|
3819
|
-
Mayotte: "Mayotte";
|
|
3820
|
-
Mexico: "Mexico";
|
|
3821
|
-
Micronesia: "Micronesia";
|
|
3822
|
-
Moldova: "Moldova";
|
|
3823
|
-
Monaco: "Monaco";
|
|
3824
|
-
Mongolia: "Mongolia";
|
|
3825
|
-
Montenegro: "Montenegro";
|
|
3826
|
-
Montserrat: "Montserrat";
|
|
3827
|
-
Morocco: "Morocco";
|
|
3828
|
-
Mozambique: "Mozambique";
|
|
3829
|
-
Myanmar: "Myanmar";
|
|
3830
|
-
Namibia: "Namibia";
|
|
3831
|
-
Nauru: "Nauru";
|
|
3832
|
-
Nepal: "Nepal";
|
|
3833
|
-
Netherlands: "Netherlands";
|
|
3834
|
-
"New Caledonia": "New Caledonia";
|
|
3835
|
-
"New Zealand": "New Zealand";
|
|
3836
|
-
Nicaragua: "Nicaragua";
|
|
3837
|
-
Niger: "Niger";
|
|
3838
|
-
Nigeria: "Nigeria";
|
|
3839
|
-
Niue: "Niue";
|
|
3840
|
-
"Norfolk Island": "Norfolk Island";
|
|
3841
|
-
"North Korea": "North Korea";
|
|
3842
|
-
"North Macedonia": "North Macedonia";
|
|
3843
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
3844
|
-
Norway: "Norway";
|
|
3845
|
-
Oman: "Oman";
|
|
3846
|
-
Pakistan: "Pakistan";
|
|
3847
|
-
Palau: "Palau";
|
|
3848
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
3849
|
-
Panama: "Panama";
|
|
3850
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
3851
|
-
Paraguay: "Paraguay";
|
|
3852
|
-
Peru: "Peru";
|
|
3853
|
-
Philippines: "Philippines";
|
|
3854
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
3855
|
-
Poland: "Poland";
|
|
3856
|
-
Portugal: "Portugal";
|
|
3857
|
-
"Puerto Rico": "Puerto Rico";
|
|
3858
|
-
Qatar: "Qatar";
|
|
3859
|
-
Reunion: "Reunion";
|
|
3860
|
-
Romania: "Romania";
|
|
3861
|
-
Russia: "Russia";
|
|
3862
|
-
Rwanda: "Rwanda";
|
|
3863
|
-
"Saint Helena": "Saint Helena";
|
|
3864
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
3865
|
-
"Saint Lucia": "Saint Lucia";
|
|
3866
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
3867
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
3868
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
3869
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
3870
|
-
Samoa: "Samoa";
|
|
3871
|
-
"San Marino": "San Marino";
|
|
3872
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
3873
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
3874
|
-
Senegal: "Senegal";
|
|
3875
|
-
Serbia: "Serbia";
|
|
3876
|
-
Seychelles: "Seychelles";
|
|
3877
|
-
"Sierra Leone": "Sierra Leone";
|
|
3878
|
-
Singapore: "Singapore";
|
|
3879
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
3880
|
-
Slovakia: "Slovakia";
|
|
3881
|
-
Slovenia: "Slovenia";
|
|
3882
|
-
"Solomon Islands": "Solomon Islands";
|
|
3883
|
-
Somalia: "Somalia";
|
|
3884
|
-
"South Africa": "South Africa";
|
|
3885
|
-
"South Georgia": "South Georgia";
|
|
3886
|
-
"South Korea": "South Korea";
|
|
3887
|
-
"South Sudan": "South Sudan";
|
|
3888
|
-
Spain: "Spain";
|
|
3889
|
-
"Sri Lanka": "Sri Lanka";
|
|
3890
|
-
Sudan: "Sudan";
|
|
3891
|
-
Suriname: "Suriname";
|
|
3892
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
3893
|
-
Swaziland: "Swaziland";
|
|
3894
|
-
Sweden: "Sweden";
|
|
3895
|
-
Switzerland: "Switzerland";
|
|
3896
|
-
Syria: "Syria";
|
|
3897
|
-
Taiwan: "Taiwan";
|
|
3898
|
-
Tajikistan: "Tajikistan";
|
|
3899
|
-
Tanzania: "Tanzania";
|
|
3900
|
-
Thailand: "Thailand";
|
|
3901
|
-
"The Bahamas": "The Bahamas";
|
|
3902
|
-
Togo: "Togo";
|
|
3903
|
-
Tokelau: "Tokelau";
|
|
3904
|
-
Tonga: "Tonga";
|
|
3905
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
3906
|
-
Tunisia: "Tunisia";
|
|
3907
|
-
Turkey: "Turkey";
|
|
3908
|
-
Turkmenistan: "Turkmenistan";
|
|
3909
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
3910
|
-
Tuvalu: "Tuvalu";
|
|
3911
|
-
Uganda: "Uganda";
|
|
3912
|
-
Ukraine: "Ukraine";
|
|
3913
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
3914
|
-
"United Kingdom": "United Kingdom";
|
|
3915
|
-
"United States": "United States";
|
|
3916
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
3917
|
-
Uruguay: "Uruguay";
|
|
3918
|
-
Uzbekistan: "Uzbekistan";
|
|
3919
|
-
Vanuatu: "Vanuatu";
|
|
3920
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
3921
|
-
Venezuela: "Venezuela";
|
|
3922
|
-
Vietnam: "Vietnam";
|
|
3923
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
3924
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
3925
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
3926
|
-
"Western Sahara": "Western Sahara";
|
|
3927
|
-
Yemen: "Yemen";
|
|
3928
|
-
Zambia: "Zambia";
|
|
3929
|
-
Zimbabwe: "Zimbabwe";
|
|
3930
|
-
"Middle School": "Middle School";
|
|
3931
|
-
"High School": "High School";
|
|
3932
|
-
Diploma: "Diploma";
|
|
3933
|
-
Associate: "Associate";
|
|
3934
|
-
Bachelor: "Bachelor";
|
|
3935
|
-
Master: "Master";
|
|
3936
|
-
Doctor: "Doctor";
|
|
3937
|
-
"Elementary Proficiency": "Elementary Proficiency";
|
|
3938
|
-
"Limited Working Proficiency": "Limited Working Proficiency";
|
|
3939
|
-
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
3940
|
-
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
3941
|
-
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
3942
|
-
Afrikaans: "Afrikaans";
|
|
3943
|
-
Albanian: "Albanian";
|
|
3944
|
-
Amharic: "Amharic";
|
|
3945
|
-
Arabic: "Arabic";
|
|
3946
|
-
Azerbaijani: "Azerbaijani";
|
|
3947
|
-
Belarusian: "Belarusian";
|
|
3948
|
-
Bengali: "Bengali";
|
|
3949
|
-
Bhojpuri: "Bhojpuri";
|
|
3950
|
-
Bulgarian: "Bulgarian";
|
|
3951
|
-
Burmese: "Burmese";
|
|
3952
|
-
Cantonese: "Cantonese";
|
|
3953
|
-
Catalan: "Catalan";
|
|
3954
|
-
Chinese: "Chinese";
|
|
3955
|
-
Croatian: "Croatian";
|
|
3956
|
-
Czech: "Czech";
|
|
3957
|
-
Danish: "Danish";
|
|
3958
|
-
Dutch: "Dutch";
|
|
3959
|
-
English: "English";
|
|
3960
|
-
Estonian: "Estonian";
|
|
3961
|
-
Farsi: "Farsi";
|
|
3962
|
-
Filipino: "Filipino";
|
|
3963
|
-
Finnish: "Finnish";
|
|
3964
|
-
French: "French";
|
|
3965
|
-
German: "German";
|
|
3966
|
-
Greek: "Greek";
|
|
3967
|
-
Gujarati: "Gujarati";
|
|
3968
|
-
Hausa: "Hausa";
|
|
3969
|
-
Hebrew: "Hebrew";
|
|
3970
|
-
Hindi: "Hindi";
|
|
3971
|
-
Hungarian: "Hungarian";
|
|
3972
|
-
Icelandic: "Icelandic";
|
|
3973
|
-
Igbo: "Igbo";
|
|
3974
|
-
Indonesian: "Indonesian";
|
|
3975
|
-
Irish: "Irish";
|
|
3976
|
-
Italian: "Italian";
|
|
3977
|
-
Japanese: "Japanese";
|
|
3978
|
-
Javanese: "Javanese";
|
|
3979
|
-
Kazakh: "Kazakh";
|
|
3980
|
-
Khmer: "Khmer";
|
|
3981
|
-
Korean: "Korean";
|
|
3982
|
-
Lahnda: "Lahnda";
|
|
3983
|
-
Latvian: "Latvian";
|
|
3984
|
-
Lithuanian: "Lithuanian";
|
|
3985
|
-
Malay: "Malay";
|
|
3986
|
-
Mandarin: "Mandarin";
|
|
3987
|
-
Marathi: "Marathi";
|
|
3988
|
-
Nepali: "Nepali";
|
|
3989
|
-
Norwegian: "Norwegian";
|
|
3990
|
-
Oromo: "Oromo";
|
|
3991
|
-
Pashto: "Pashto";
|
|
3992
|
-
Polish: "Polish";
|
|
3993
|
-
Portuguese: "Portuguese";
|
|
3994
|
-
Romanian: "Romanian";
|
|
3995
|
-
Russian: "Russian";
|
|
3996
|
-
Serbian: "Serbian";
|
|
3997
|
-
Shona: "Shona";
|
|
3998
|
-
Sinhala: "Sinhala";
|
|
3999
|
-
Slovak: "Slovak";
|
|
4000
|
-
Slovene: "Slovene";
|
|
4001
|
-
Somali: "Somali";
|
|
4002
|
-
Spanish: "Spanish";
|
|
4003
|
-
Sundanese: "Sundanese";
|
|
4004
|
-
Swahili: "Swahili";
|
|
4005
|
-
Swedish: "Swedish";
|
|
4006
|
-
Tagalog: "Tagalog";
|
|
4007
|
-
Tamil: "Tamil";
|
|
4008
|
-
Telugu: "Telugu";
|
|
4009
|
-
Thai: "Thai";
|
|
4010
|
-
Turkish: "Turkish";
|
|
4011
|
-
Ukrainian: "Ukrainian";
|
|
4012
|
-
Urdu: "Urdu";
|
|
4013
|
-
Uzbek: "Uzbek";
|
|
4014
|
-
Vietnamese: "Vietnamese";
|
|
4015
|
-
Yoruba: "Yoruba";
|
|
4016
|
-
Zulu: "Zulu";
|
|
4017
|
-
Novice: "Novice";
|
|
4018
|
-
Beginner: "Beginner";
|
|
4019
|
-
Intermediate: "Intermediate";
|
|
4020
|
-
Advanced: "Advanced";
|
|
4021
|
-
Expert: "Expert";
|
|
4022
|
-
basics: "basics";
|
|
4023
|
-
education: "education";
|
|
4024
|
-
work: "work";
|
|
4025
|
-
volunteer: "volunteer";
|
|
4026
|
-
awards: "awards";
|
|
4027
|
-
certificates: "certificates";
|
|
4028
|
-
publications: "publications";
|
|
4029
|
-
skills: "skills";
|
|
4030
|
-
languages: "languages";
|
|
4031
|
-
interests: "interests";
|
|
4032
|
-
references: "references";
|
|
4033
|
-
projects: "projects";
|
|
4034
|
-
"moderncv-banking": "moderncv-banking";
|
|
4035
|
-
"moderncv-casual": "moderncv-casual";
|
|
4036
|
-
"moderncv-classic": "moderncv-classic";
|
|
4037
|
-
en: "en";
|
|
4038
|
-
"zh-hans": "zh-hans";
|
|
4039
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
4040
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
4041
|
-
es: "es";
|
|
4042
|
-
fr: "fr";
|
|
4043
|
-
no: "no";
|
|
2600
|
+
Novice: "Novice";
|
|
2601
|
+
Beginner: "Beginner";
|
|
2602
|
+
Intermediate: "Intermediate";
|
|
2603
|
+
Advanced: "Advanced";
|
|
2604
|
+
Expert: "Expert";
|
|
2605
|
+
}>;
|
|
2606
|
+
name: z.ZodString;
|
|
2607
|
+
keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
2608
|
+
}, z.core.$strip>>>>;
|
|
2609
|
+
references: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2610
|
+
name: z.ZodString;
|
|
2611
|
+
summary: z.ZodString;
|
|
2612
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2613
|
+
phone: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2614
|
+
relationship: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2615
|
+
}, z.core.$strip>>>>;
|
|
2616
|
+
publications: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2617
|
+
name: z.ZodString;
|
|
2618
|
+
publisher: z.ZodString;
|
|
2619
|
+
releaseDate: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2620
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2621
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2622
|
+
}, z.core.$strip>>>>;
|
|
2623
|
+
projects: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2624
|
+
name: z.ZodString;
|
|
2625
|
+
startDate: z.ZodString;
|
|
2626
|
+
summary: z.ZodString;
|
|
2627
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2628
|
+
endDate: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2629
|
+
keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
2630
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2631
|
+
}, z.core.$strip>>>>;
|
|
2632
|
+
profiles: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2633
|
+
network: z.ZodEnum<{
|
|
4044
2634
|
Behance: "Behance";
|
|
4045
2635
|
Dribbble: "Dribbble";
|
|
4046
2636
|
Facebook: "Facebook";
|
|
@@ -4064,276 +2654,26 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
4064
2654
|
WhatsApp: "WhatsApp";
|
|
4065
2655
|
YouTube: "YouTube";
|
|
4066
2656
|
Zhihu: "Zhihu";
|
|
4067
|
-
Lining: "Lining";
|
|
4068
|
-
OldStyle: "OldStyle";
|
|
4069
|
-
Auto: "Auto";
|
|
4070
|
-
"10pt": "10pt";
|
|
4071
|
-
"11pt": "11pt";
|
|
4072
|
-
"12pt": "12pt";
|
|
4073
2657
|
}>;
|
|
4074
|
-
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
-
|
|
4084
|
-
|
|
4085
|
-
|
|
4086
|
-
Armenia: "Armenia";
|
|
4087
|
-
Aruba: "Aruba";
|
|
4088
|
-
Australia: "Australia";
|
|
4089
|
-
Austria: "Austria";
|
|
4090
|
-
Azerbaijan: "Azerbaijan";
|
|
4091
|
-
Bahrain: "Bahrain";
|
|
4092
|
-
Bangladesh: "Bangladesh";
|
|
4093
|
-
Barbados: "Barbados";
|
|
4094
|
-
Belarus: "Belarus";
|
|
4095
|
-
Belgium: "Belgium";
|
|
4096
|
-
Belize: "Belize";
|
|
4097
|
-
Benin: "Benin";
|
|
4098
|
-
Bermuda: "Bermuda";
|
|
4099
|
-
Bhutan: "Bhutan";
|
|
4100
|
-
Bolivia: "Bolivia";
|
|
4101
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
4102
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
4103
|
-
Botswana: "Botswana";
|
|
4104
|
-
"Bouvet Island": "Bouvet Island";
|
|
4105
|
-
Brazil: "Brazil";
|
|
4106
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
4107
|
-
Brunei: "Brunei";
|
|
4108
|
-
Bulgaria: "Bulgaria";
|
|
4109
|
-
"Burkina Faso": "Burkina Faso";
|
|
4110
|
-
Burundi: "Burundi";
|
|
4111
|
-
Cambodia: "Cambodia";
|
|
4112
|
-
Cameroon: "Cameroon";
|
|
4113
|
-
Canada: "Canada";
|
|
4114
|
-
"Cape Verde": "Cape Verde";
|
|
4115
|
-
"Cayman Islands": "Cayman Islands";
|
|
4116
|
-
"Central African Republic": "Central African Republic";
|
|
4117
|
-
Chad: "Chad";
|
|
4118
|
-
Chile: "Chile";
|
|
4119
|
-
China: "China";
|
|
4120
|
-
"Christmas Island": "Christmas Island";
|
|
4121
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
4122
|
-
Colombia: "Colombia";
|
|
4123
|
-
Comoros: "Comoros";
|
|
4124
|
-
Congo: "Congo";
|
|
4125
|
-
"Cook Islands": "Cook Islands";
|
|
4126
|
-
"Costa Rica": "Costa Rica";
|
|
4127
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
4128
|
-
Croatia: "Croatia";
|
|
4129
|
-
Cuba: "Cuba";
|
|
4130
|
-
Curaçao: "Curaçao";
|
|
4131
|
-
Cyprus: "Cyprus";
|
|
4132
|
-
"Czech Republic": "Czech Republic";
|
|
4133
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
4134
|
-
Denmark: "Denmark";
|
|
4135
|
-
Djibouti: "Djibouti";
|
|
4136
|
-
Dominica: "Dominica";
|
|
4137
|
-
"Dominican Republic": "Dominican Republic";
|
|
4138
|
-
"East Timor": "East Timor";
|
|
4139
|
-
Ecuador: "Ecuador";
|
|
4140
|
-
Egypt: "Egypt";
|
|
4141
|
-
"El Salvador": "El Salvador";
|
|
4142
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
4143
|
-
Eritrea: "Eritrea";
|
|
4144
|
-
Estonia: "Estonia";
|
|
4145
|
-
Ethiopia: "Ethiopia";
|
|
4146
|
-
"Falkland Islands": "Falkland Islands";
|
|
4147
|
-
"Faroe Islands": "Faroe Islands";
|
|
4148
|
-
"Fiji Islands": "Fiji Islands";
|
|
4149
|
-
Finland: "Finland";
|
|
4150
|
-
France: "France";
|
|
4151
|
-
"French Guiana": "French Guiana";
|
|
4152
|
-
"French Polynesia": "French Polynesia";
|
|
4153
|
-
"French Southern Territories": "French Southern Territories";
|
|
4154
|
-
Gabon: "Gabon";
|
|
4155
|
-
"Gambia The": "Gambia The";
|
|
4156
|
-
Georgia: "Georgia";
|
|
4157
|
-
Germany: "Germany";
|
|
4158
|
-
Ghana: "Ghana";
|
|
4159
|
-
Gibraltar: "Gibraltar";
|
|
4160
|
-
Greece: "Greece";
|
|
4161
|
-
Greenland: "Greenland";
|
|
4162
|
-
Grenada: "Grenada";
|
|
4163
|
-
Guadeloupe: "Guadeloupe";
|
|
4164
|
-
Guam: "Guam";
|
|
4165
|
-
Guatemala: "Guatemala";
|
|
4166
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
4167
|
-
Guinea: "Guinea";
|
|
4168
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
4169
|
-
Guyana: "Guyana";
|
|
4170
|
-
Haiti: "Haiti";
|
|
4171
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
4172
|
-
Honduras: "Honduras";
|
|
4173
|
-
"Hong Kong": "Hong Kong";
|
|
4174
|
-
Hungary: "Hungary";
|
|
4175
|
-
Iceland: "Iceland";
|
|
4176
|
-
India: "India";
|
|
4177
|
-
Indonesia: "Indonesia";
|
|
4178
|
-
Iran: "Iran";
|
|
4179
|
-
Iraq: "Iraq";
|
|
4180
|
-
Ireland: "Ireland";
|
|
4181
|
-
Israel: "Israel";
|
|
4182
|
-
Italy: "Italy";
|
|
4183
|
-
Jamaica: "Jamaica";
|
|
4184
|
-
Japan: "Japan";
|
|
4185
|
-
Jersey: "Jersey";
|
|
4186
|
-
Jordan: "Jordan";
|
|
4187
|
-
Kazakhstan: "Kazakhstan";
|
|
4188
|
-
Kenya: "Kenya";
|
|
4189
|
-
Kiribati: "Kiribati";
|
|
4190
|
-
Kosovo: "Kosovo";
|
|
4191
|
-
Kuwait: "Kuwait";
|
|
4192
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
4193
|
-
Laos: "Laos";
|
|
4194
|
-
Latvia: "Latvia";
|
|
4195
|
-
Lebanon: "Lebanon";
|
|
4196
|
-
Lesotho: "Lesotho";
|
|
4197
|
-
Liberia: "Liberia";
|
|
4198
|
-
Libya: "Libya";
|
|
4199
|
-
Liechtenstein: "Liechtenstein";
|
|
4200
|
-
Lithuania: "Lithuania";
|
|
4201
|
-
Luxembourg: "Luxembourg";
|
|
4202
|
-
Macau: "Macau";
|
|
4203
|
-
Madagascar: "Madagascar";
|
|
4204
|
-
Malawi: "Malawi";
|
|
4205
|
-
Malaysia: "Malaysia";
|
|
4206
|
-
Maldives: "Maldives";
|
|
4207
|
-
Mali: "Mali";
|
|
4208
|
-
Malta: "Malta";
|
|
4209
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
4210
|
-
"Marshall Islands": "Marshall Islands";
|
|
4211
|
-
Martinique: "Martinique";
|
|
4212
|
-
Mauritania: "Mauritania";
|
|
4213
|
-
Mauritius: "Mauritius";
|
|
4214
|
-
Mayotte: "Mayotte";
|
|
4215
|
-
Mexico: "Mexico";
|
|
4216
|
-
Micronesia: "Micronesia";
|
|
4217
|
-
Moldova: "Moldova";
|
|
4218
|
-
Monaco: "Monaco";
|
|
4219
|
-
Mongolia: "Mongolia";
|
|
4220
|
-
Montenegro: "Montenegro";
|
|
4221
|
-
Montserrat: "Montserrat";
|
|
4222
|
-
Morocco: "Morocco";
|
|
4223
|
-
Mozambique: "Mozambique";
|
|
4224
|
-
Myanmar: "Myanmar";
|
|
4225
|
-
Namibia: "Namibia";
|
|
4226
|
-
Nauru: "Nauru";
|
|
4227
|
-
Nepal: "Nepal";
|
|
4228
|
-
Netherlands: "Netherlands";
|
|
4229
|
-
"New Caledonia": "New Caledonia";
|
|
4230
|
-
"New Zealand": "New Zealand";
|
|
4231
|
-
Nicaragua: "Nicaragua";
|
|
4232
|
-
Niger: "Niger";
|
|
4233
|
-
Nigeria: "Nigeria";
|
|
4234
|
-
Niue: "Niue";
|
|
4235
|
-
"Norfolk Island": "Norfolk Island";
|
|
4236
|
-
"North Korea": "North Korea";
|
|
4237
|
-
"North Macedonia": "North Macedonia";
|
|
4238
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
4239
|
-
Norway: "Norway";
|
|
4240
|
-
Oman: "Oman";
|
|
4241
|
-
Pakistan: "Pakistan";
|
|
4242
|
-
Palau: "Palau";
|
|
4243
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
4244
|
-
Panama: "Panama";
|
|
4245
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
4246
|
-
Paraguay: "Paraguay";
|
|
4247
|
-
Peru: "Peru";
|
|
4248
|
-
Philippines: "Philippines";
|
|
4249
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
4250
|
-
Poland: "Poland";
|
|
4251
|
-
Portugal: "Portugal";
|
|
4252
|
-
"Puerto Rico": "Puerto Rico";
|
|
4253
|
-
Qatar: "Qatar";
|
|
4254
|
-
Reunion: "Reunion";
|
|
4255
|
-
Romania: "Romania";
|
|
4256
|
-
Russia: "Russia";
|
|
4257
|
-
Rwanda: "Rwanda";
|
|
4258
|
-
"Saint Helena": "Saint Helena";
|
|
4259
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
4260
|
-
"Saint Lucia": "Saint Lucia";
|
|
4261
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
4262
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
4263
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
4264
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
4265
|
-
Samoa: "Samoa";
|
|
4266
|
-
"San Marino": "San Marino";
|
|
4267
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
4268
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
4269
|
-
Senegal: "Senegal";
|
|
4270
|
-
Serbia: "Serbia";
|
|
4271
|
-
Seychelles: "Seychelles";
|
|
4272
|
-
"Sierra Leone": "Sierra Leone";
|
|
4273
|
-
Singapore: "Singapore";
|
|
4274
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
4275
|
-
Slovakia: "Slovakia";
|
|
4276
|
-
Slovenia: "Slovenia";
|
|
4277
|
-
"Solomon Islands": "Solomon Islands";
|
|
4278
|
-
Somalia: "Somalia";
|
|
4279
|
-
"South Africa": "South Africa";
|
|
4280
|
-
"South Georgia": "South Georgia";
|
|
4281
|
-
"South Korea": "South Korea";
|
|
4282
|
-
"South Sudan": "South Sudan";
|
|
4283
|
-
Spain: "Spain";
|
|
4284
|
-
"Sri Lanka": "Sri Lanka";
|
|
4285
|
-
Sudan: "Sudan";
|
|
4286
|
-
Suriname: "Suriname";
|
|
4287
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
4288
|
-
Swaziland: "Swaziland";
|
|
4289
|
-
Sweden: "Sweden";
|
|
4290
|
-
Switzerland: "Switzerland";
|
|
4291
|
-
Syria: "Syria";
|
|
4292
|
-
Taiwan: "Taiwan";
|
|
4293
|
-
Tajikistan: "Tajikistan";
|
|
4294
|
-
Tanzania: "Tanzania";
|
|
4295
|
-
Thailand: "Thailand";
|
|
4296
|
-
"The Bahamas": "The Bahamas";
|
|
4297
|
-
Togo: "Togo";
|
|
4298
|
-
Tokelau: "Tokelau";
|
|
4299
|
-
Tonga: "Tonga";
|
|
4300
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
4301
|
-
Tunisia: "Tunisia";
|
|
4302
|
-
Turkey: "Turkey";
|
|
4303
|
-
Turkmenistan: "Turkmenistan";
|
|
4304
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
4305
|
-
Tuvalu: "Tuvalu";
|
|
4306
|
-
Uganda: "Uganda";
|
|
4307
|
-
Ukraine: "Ukraine";
|
|
4308
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
4309
|
-
"United Kingdom": "United Kingdom";
|
|
4310
|
-
"United States": "United States";
|
|
4311
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
4312
|
-
Uruguay: "Uruguay";
|
|
4313
|
-
Uzbekistan: "Uzbekistan";
|
|
4314
|
-
Vanuatu: "Vanuatu";
|
|
4315
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
4316
|
-
Venezuela: "Venezuela";
|
|
4317
|
-
Vietnam: "Vietnam";
|
|
4318
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
4319
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
4320
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
4321
|
-
"Western Sahara": "Western Sahara";
|
|
4322
|
-
Yemen: "Yemen";
|
|
4323
|
-
Zambia: "Zambia";
|
|
4324
|
-
Zimbabwe: "Zimbabwe";
|
|
4325
|
-
"Middle School": "Middle School";
|
|
4326
|
-
"High School": "High School";
|
|
4327
|
-
Diploma: "Diploma";
|
|
4328
|
-
Associate: "Associate";
|
|
4329
|
-
Bachelor: "Bachelor";
|
|
4330
|
-
Master: "Master";
|
|
4331
|
-
Doctor: "Doctor";
|
|
2658
|
+
username: z.ZodString;
|
|
2659
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2660
|
+
}, z.core.$strip>>>>;
|
|
2661
|
+
location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2662
|
+
city: z.ZodString;
|
|
2663
|
+
address: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2664
|
+
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" | "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" | "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", 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" | "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" | "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", unknown>>>>;
|
|
2665
|
+
postalCode: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2666
|
+
region: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2667
|
+
}, z.core.$strip>>>;
|
|
2668
|
+
languages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2669
|
+
fluency: z.ZodEnum<{
|
|
4332
2670
|
"Elementary Proficiency": "Elementary Proficiency";
|
|
4333
2671
|
"Limited Working Proficiency": "Limited Working Proficiency";
|
|
4334
2672
|
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
4335
2673
|
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
4336
2674
|
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
2675
|
+
}>;
|
|
2676
|
+
language: z.ZodEnum<{
|
|
4337
2677
|
Afrikaans: "Afrikaans";
|
|
4338
2678
|
Albanian: "Albanian";
|
|
4339
2679
|
Amharic: "Amharic";
|
|
@@ -4409,62 +2749,6 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
4409
2749
|
Vietnamese: "Vietnamese";
|
|
4410
2750
|
Yoruba: "Yoruba";
|
|
4411
2751
|
Zulu: "Zulu";
|
|
4412
|
-
Novice: "Novice";
|
|
4413
|
-
Beginner: "Beginner";
|
|
4414
|
-
Intermediate: "Intermediate";
|
|
4415
|
-
Advanced: "Advanced";
|
|
4416
|
-
Expert: "Expert";
|
|
4417
|
-
basics: "basics";
|
|
4418
|
-
education: "education";
|
|
4419
|
-
work: "work";
|
|
4420
|
-
volunteer: "volunteer";
|
|
4421
|
-
awards: "awards";
|
|
4422
|
-
certificates: "certificates";
|
|
4423
|
-
publications: "publications";
|
|
4424
|
-
skills: "skills";
|
|
4425
|
-
languages: "languages";
|
|
4426
|
-
interests: "interests";
|
|
4427
|
-
references: "references";
|
|
4428
|
-
projects: "projects";
|
|
4429
|
-
"moderncv-banking": "moderncv-banking";
|
|
4430
|
-
"moderncv-casual": "moderncv-casual";
|
|
4431
|
-
"moderncv-classic": "moderncv-classic";
|
|
4432
|
-
en: "en";
|
|
4433
|
-
"zh-hans": "zh-hans";
|
|
4434
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
4435
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
4436
|
-
es: "es";
|
|
4437
|
-
fr: "fr";
|
|
4438
|
-
no: "no";
|
|
4439
|
-
Behance: "Behance";
|
|
4440
|
-
Dribbble: "Dribbble";
|
|
4441
|
-
Facebook: "Facebook";
|
|
4442
|
-
GitHub: "GitHub";
|
|
4443
|
-
Gitlab: "Gitlab";
|
|
4444
|
-
Instagram: "Instagram";
|
|
4445
|
-
Line: "Line";
|
|
4446
|
-
LinkedIn: "LinkedIn";
|
|
4447
|
-
Medium: "Medium";
|
|
4448
|
-
Pinterest: "Pinterest";
|
|
4449
|
-
Reddit: "Reddit";
|
|
4450
|
-
Snapchat: "Snapchat";
|
|
4451
|
-
"Stack Overflow": "Stack Overflow";
|
|
4452
|
-
Telegram: "Telegram";
|
|
4453
|
-
TikTok: "TikTok";
|
|
4454
|
-
Twitch: "Twitch";
|
|
4455
|
-
Twitter: "Twitter";
|
|
4456
|
-
Vimeo: "Vimeo";
|
|
4457
|
-
Weibo: "Weibo";
|
|
4458
|
-
WeChat: "WeChat";
|
|
4459
|
-
WhatsApp: "WhatsApp";
|
|
4460
|
-
YouTube: "YouTube";
|
|
4461
|
-
Zhihu: "Zhihu";
|
|
4462
|
-
Lining: "Lining";
|
|
4463
|
-
OldStyle: "OldStyle";
|
|
4464
|
-
Auto: "Auto";
|
|
4465
|
-
"10pt": "10pt";
|
|
4466
|
-
"11pt": "11pt";
|
|
4467
|
-
"12pt": "12pt";
|
|
4468
2752
|
}>;
|
|
4469
2753
|
keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
4470
2754
|
}, z.core.$strip>>>>;
|
|
@@ -4488,256 +2772,6 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
4488
2772
|
area: z.ZodString;
|
|
4489
2773
|
institution: z.ZodString;
|
|
4490
2774
|
degree: z.ZodEnum<{
|
|
4491
|
-
Afghanistan: "Afghanistan";
|
|
4492
|
-
"Aland Islands": "Aland Islands";
|
|
4493
|
-
Albania: "Albania";
|
|
4494
|
-
Algeria: "Algeria";
|
|
4495
|
-
"American Samoa": "American Samoa";
|
|
4496
|
-
Andorra: "Andorra";
|
|
4497
|
-
Angola: "Angola";
|
|
4498
|
-
Anguilla: "Anguilla";
|
|
4499
|
-
Antarctica: "Antarctica";
|
|
4500
|
-
"Antigua And Barbuda": "Antigua And Barbuda";
|
|
4501
|
-
Argentina: "Argentina";
|
|
4502
|
-
Armenia: "Armenia";
|
|
4503
|
-
Aruba: "Aruba";
|
|
4504
|
-
Australia: "Australia";
|
|
4505
|
-
Austria: "Austria";
|
|
4506
|
-
Azerbaijan: "Azerbaijan";
|
|
4507
|
-
Bahrain: "Bahrain";
|
|
4508
|
-
Bangladesh: "Bangladesh";
|
|
4509
|
-
Barbados: "Barbados";
|
|
4510
|
-
Belarus: "Belarus";
|
|
4511
|
-
Belgium: "Belgium";
|
|
4512
|
-
Belize: "Belize";
|
|
4513
|
-
Benin: "Benin";
|
|
4514
|
-
Bermuda: "Bermuda";
|
|
4515
|
-
Bhutan: "Bhutan";
|
|
4516
|
-
Bolivia: "Bolivia";
|
|
4517
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
4518
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
4519
|
-
Botswana: "Botswana";
|
|
4520
|
-
"Bouvet Island": "Bouvet Island";
|
|
4521
|
-
Brazil: "Brazil";
|
|
4522
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
4523
|
-
Brunei: "Brunei";
|
|
4524
|
-
Bulgaria: "Bulgaria";
|
|
4525
|
-
"Burkina Faso": "Burkina Faso";
|
|
4526
|
-
Burundi: "Burundi";
|
|
4527
|
-
Cambodia: "Cambodia";
|
|
4528
|
-
Cameroon: "Cameroon";
|
|
4529
|
-
Canada: "Canada";
|
|
4530
|
-
"Cape Verde": "Cape Verde";
|
|
4531
|
-
"Cayman Islands": "Cayman Islands";
|
|
4532
|
-
"Central African Republic": "Central African Republic";
|
|
4533
|
-
Chad: "Chad";
|
|
4534
|
-
Chile: "Chile";
|
|
4535
|
-
China: "China";
|
|
4536
|
-
"Christmas Island": "Christmas Island";
|
|
4537
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
4538
|
-
Colombia: "Colombia";
|
|
4539
|
-
Comoros: "Comoros";
|
|
4540
|
-
Congo: "Congo";
|
|
4541
|
-
"Cook Islands": "Cook Islands";
|
|
4542
|
-
"Costa Rica": "Costa Rica";
|
|
4543
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
4544
|
-
Croatia: "Croatia";
|
|
4545
|
-
Cuba: "Cuba";
|
|
4546
|
-
Curaçao: "Curaçao";
|
|
4547
|
-
Cyprus: "Cyprus";
|
|
4548
|
-
"Czech Republic": "Czech Republic";
|
|
4549
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
4550
|
-
Denmark: "Denmark";
|
|
4551
|
-
Djibouti: "Djibouti";
|
|
4552
|
-
Dominica: "Dominica";
|
|
4553
|
-
"Dominican Republic": "Dominican Republic";
|
|
4554
|
-
"East Timor": "East Timor";
|
|
4555
|
-
Ecuador: "Ecuador";
|
|
4556
|
-
Egypt: "Egypt";
|
|
4557
|
-
"El Salvador": "El Salvador";
|
|
4558
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
4559
|
-
Eritrea: "Eritrea";
|
|
4560
|
-
Estonia: "Estonia";
|
|
4561
|
-
Ethiopia: "Ethiopia";
|
|
4562
|
-
"Falkland Islands": "Falkland Islands";
|
|
4563
|
-
"Faroe Islands": "Faroe Islands";
|
|
4564
|
-
"Fiji Islands": "Fiji Islands";
|
|
4565
|
-
Finland: "Finland";
|
|
4566
|
-
France: "France";
|
|
4567
|
-
"French Guiana": "French Guiana";
|
|
4568
|
-
"French Polynesia": "French Polynesia";
|
|
4569
|
-
"French Southern Territories": "French Southern Territories";
|
|
4570
|
-
Gabon: "Gabon";
|
|
4571
|
-
"Gambia The": "Gambia The";
|
|
4572
|
-
Georgia: "Georgia";
|
|
4573
|
-
Germany: "Germany";
|
|
4574
|
-
Ghana: "Ghana";
|
|
4575
|
-
Gibraltar: "Gibraltar";
|
|
4576
|
-
Greece: "Greece";
|
|
4577
|
-
Greenland: "Greenland";
|
|
4578
|
-
Grenada: "Grenada";
|
|
4579
|
-
Guadeloupe: "Guadeloupe";
|
|
4580
|
-
Guam: "Guam";
|
|
4581
|
-
Guatemala: "Guatemala";
|
|
4582
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
4583
|
-
Guinea: "Guinea";
|
|
4584
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
4585
|
-
Guyana: "Guyana";
|
|
4586
|
-
Haiti: "Haiti";
|
|
4587
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
4588
|
-
Honduras: "Honduras";
|
|
4589
|
-
"Hong Kong": "Hong Kong";
|
|
4590
|
-
Hungary: "Hungary";
|
|
4591
|
-
Iceland: "Iceland";
|
|
4592
|
-
India: "India";
|
|
4593
|
-
Indonesia: "Indonesia";
|
|
4594
|
-
Iran: "Iran";
|
|
4595
|
-
Iraq: "Iraq";
|
|
4596
|
-
Ireland: "Ireland";
|
|
4597
|
-
Israel: "Israel";
|
|
4598
|
-
Italy: "Italy";
|
|
4599
|
-
Jamaica: "Jamaica";
|
|
4600
|
-
Japan: "Japan";
|
|
4601
|
-
Jersey: "Jersey";
|
|
4602
|
-
Jordan: "Jordan";
|
|
4603
|
-
Kazakhstan: "Kazakhstan";
|
|
4604
|
-
Kenya: "Kenya";
|
|
4605
|
-
Kiribati: "Kiribati";
|
|
4606
|
-
Kosovo: "Kosovo";
|
|
4607
|
-
Kuwait: "Kuwait";
|
|
4608
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
4609
|
-
Laos: "Laos";
|
|
4610
|
-
Latvia: "Latvia";
|
|
4611
|
-
Lebanon: "Lebanon";
|
|
4612
|
-
Lesotho: "Lesotho";
|
|
4613
|
-
Liberia: "Liberia";
|
|
4614
|
-
Libya: "Libya";
|
|
4615
|
-
Liechtenstein: "Liechtenstein";
|
|
4616
|
-
Lithuania: "Lithuania";
|
|
4617
|
-
Luxembourg: "Luxembourg";
|
|
4618
|
-
Macau: "Macau";
|
|
4619
|
-
Madagascar: "Madagascar";
|
|
4620
|
-
Malawi: "Malawi";
|
|
4621
|
-
Malaysia: "Malaysia";
|
|
4622
|
-
Maldives: "Maldives";
|
|
4623
|
-
Mali: "Mali";
|
|
4624
|
-
Malta: "Malta";
|
|
4625
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
4626
|
-
"Marshall Islands": "Marshall Islands";
|
|
4627
|
-
Martinique: "Martinique";
|
|
4628
|
-
Mauritania: "Mauritania";
|
|
4629
|
-
Mauritius: "Mauritius";
|
|
4630
|
-
Mayotte: "Mayotte";
|
|
4631
|
-
Mexico: "Mexico";
|
|
4632
|
-
Micronesia: "Micronesia";
|
|
4633
|
-
Moldova: "Moldova";
|
|
4634
|
-
Monaco: "Monaco";
|
|
4635
|
-
Mongolia: "Mongolia";
|
|
4636
|
-
Montenegro: "Montenegro";
|
|
4637
|
-
Montserrat: "Montserrat";
|
|
4638
|
-
Morocco: "Morocco";
|
|
4639
|
-
Mozambique: "Mozambique";
|
|
4640
|
-
Myanmar: "Myanmar";
|
|
4641
|
-
Namibia: "Namibia";
|
|
4642
|
-
Nauru: "Nauru";
|
|
4643
|
-
Nepal: "Nepal";
|
|
4644
|
-
Netherlands: "Netherlands";
|
|
4645
|
-
"New Caledonia": "New Caledonia";
|
|
4646
|
-
"New Zealand": "New Zealand";
|
|
4647
|
-
Nicaragua: "Nicaragua";
|
|
4648
|
-
Niger: "Niger";
|
|
4649
|
-
Nigeria: "Nigeria";
|
|
4650
|
-
Niue: "Niue";
|
|
4651
|
-
"Norfolk Island": "Norfolk Island";
|
|
4652
|
-
"North Korea": "North Korea";
|
|
4653
|
-
"North Macedonia": "North Macedonia";
|
|
4654
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
4655
|
-
Norway: "Norway";
|
|
4656
|
-
Oman: "Oman";
|
|
4657
|
-
Pakistan: "Pakistan";
|
|
4658
|
-
Palau: "Palau";
|
|
4659
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
4660
|
-
Panama: "Panama";
|
|
4661
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
4662
|
-
Paraguay: "Paraguay";
|
|
4663
|
-
Peru: "Peru";
|
|
4664
|
-
Philippines: "Philippines";
|
|
4665
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
4666
|
-
Poland: "Poland";
|
|
4667
|
-
Portugal: "Portugal";
|
|
4668
|
-
"Puerto Rico": "Puerto Rico";
|
|
4669
|
-
Qatar: "Qatar";
|
|
4670
|
-
Reunion: "Reunion";
|
|
4671
|
-
Romania: "Romania";
|
|
4672
|
-
Russia: "Russia";
|
|
4673
|
-
Rwanda: "Rwanda";
|
|
4674
|
-
"Saint Helena": "Saint Helena";
|
|
4675
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
4676
|
-
"Saint Lucia": "Saint Lucia";
|
|
4677
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
4678
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
4679
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
4680
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
4681
|
-
Samoa: "Samoa";
|
|
4682
|
-
"San Marino": "San Marino";
|
|
4683
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
4684
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
4685
|
-
Senegal: "Senegal";
|
|
4686
|
-
Serbia: "Serbia";
|
|
4687
|
-
Seychelles: "Seychelles";
|
|
4688
|
-
"Sierra Leone": "Sierra Leone";
|
|
4689
|
-
Singapore: "Singapore";
|
|
4690
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
4691
|
-
Slovakia: "Slovakia";
|
|
4692
|
-
Slovenia: "Slovenia";
|
|
4693
|
-
"Solomon Islands": "Solomon Islands";
|
|
4694
|
-
Somalia: "Somalia";
|
|
4695
|
-
"South Africa": "South Africa";
|
|
4696
|
-
"South Georgia": "South Georgia";
|
|
4697
|
-
"South Korea": "South Korea";
|
|
4698
|
-
"South Sudan": "South Sudan";
|
|
4699
|
-
Spain: "Spain";
|
|
4700
|
-
"Sri Lanka": "Sri Lanka";
|
|
4701
|
-
Sudan: "Sudan";
|
|
4702
|
-
Suriname: "Suriname";
|
|
4703
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
4704
|
-
Swaziland: "Swaziland";
|
|
4705
|
-
Sweden: "Sweden";
|
|
4706
|
-
Switzerland: "Switzerland";
|
|
4707
|
-
Syria: "Syria";
|
|
4708
|
-
Taiwan: "Taiwan";
|
|
4709
|
-
Tajikistan: "Tajikistan";
|
|
4710
|
-
Tanzania: "Tanzania";
|
|
4711
|
-
Thailand: "Thailand";
|
|
4712
|
-
"The Bahamas": "The Bahamas";
|
|
4713
|
-
Togo: "Togo";
|
|
4714
|
-
Tokelau: "Tokelau";
|
|
4715
|
-
Tonga: "Tonga";
|
|
4716
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
4717
|
-
Tunisia: "Tunisia";
|
|
4718
|
-
Turkey: "Turkey";
|
|
4719
|
-
Turkmenistan: "Turkmenistan";
|
|
4720
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
4721
|
-
Tuvalu: "Tuvalu";
|
|
4722
|
-
Uganda: "Uganda";
|
|
4723
|
-
Ukraine: "Ukraine";
|
|
4724
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
4725
|
-
"United Kingdom": "United Kingdom";
|
|
4726
|
-
"United States": "United States";
|
|
4727
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
4728
|
-
Uruguay: "Uruguay";
|
|
4729
|
-
Uzbekistan: "Uzbekistan";
|
|
4730
|
-
Vanuatu: "Vanuatu";
|
|
4731
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
4732
|
-
Venezuela: "Venezuela";
|
|
4733
|
-
Vietnam: "Vietnam";
|
|
4734
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
4735
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
4736
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
4737
|
-
"Western Sahara": "Western Sahara";
|
|
4738
|
-
Yemen: "Yemen";
|
|
4739
|
-
Zambia: "Zambia";
|
|
4740
|
-
Zimbabwe: "Zimbabwe";
|
|
4741
2775
|
"Middle School": "Middle School";
|
|
4742
2776
|
"High School": "High School";
|
|
4743
2777
|
Diploma: "Diploma";
|
|
@@ -4745,142 +2779,6 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
4745
2779
|
Bachelor: "Bachelor";
|
|
4746
2780
|
Master: "Master";
|
|
4747
2781
|
Doctor: "Doctor";
|
|
4748
|
-
"Elementary Proficiency": "Elementary Proficiency";
|
|
4749
|
-
"Limited Working Proficiency": "Limited Working Proficiency";
|
|
4750
|
-
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
4751
|
-
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
4752
|
-
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
4753
|
-
Afrikaans: "Afrikaans";
|
|
4754
|
-
Albanian: "Albanian";
|
|
4755
|
-
Amharic: "Amharic";
|
|
4756
|
-
Arabic: "Arabic";
|
|
4757
|
-
Azerbaijani: "Azerbaijani";
|
|
4758
|
-
Belarusian: "Belarusian";
|
|
4759
|
-
Bengali: "Bengali";
|
|
4760
|
-
Bhojpuri: "Bhojpuri";
|
|
4761
|
-
Bulgarian: "Bulgarian";
|
|
4762
|
-
Burmese: "Burmese";
|
|
4763
|
-
Cantonese: "Cantonese";
|
|
4764
|
-
Catalan: "Catalan";
|
|
4765
|
-
Chinese: "Chinese";
|
|
4766
|
-
Croatian: "Croatian";
|
|
4767
|
-
Czech: "Czech";
|
|
4768
|
-
Danish: "Danish";
|
|
4769
|
-
Dutch: "Dutch";
|
|
4770
|
-
English: "English";
|
|
4771
|
-
Estonian: "Estonian";
|
|
4772
|
-
Farsi: "Farsi";
|
|
4773
|
-
Filipino: "Filipino";
|
|
4774
|
-
Finnish: "Finnish";
|
|
4775
|
-
French: "French";
|
|
4776
|
-
German: "German";
|
|
4777
|
-
Greek: "Greek";
|
|
4778
|
-
Gujarati: "Gujarati";
|
|
4779
|
-
Hausa: "Hausa";
|
|
4780
|
-
Hebrew: "Hebrew";
|
|
4781
|
-
Hindi: "Hindi";
|
|
4782
|
-
Hungarian: "Hungarian";
|
|
4783
|
-
Icelandic: "Icelandic";
|
|
4784
|
-
Igbo: "Igbo";
|
|
4785
|
-
Indonesian: "Indonesian";
|
|
4786
|
-
Irish: "Irish";
|
|
4787
|
-
Italian: "Italian";
|
|
4788
|
-
Japanese: "Japanese";
|
|
4789
|
-
Javanese: "Javanese";
|
|
4790
|
-
Kazakh: "Kazakh";
|
|
4791
|
-
Khmer: "Khmer";
|
|
4792
|
-
Korean: "Korean";
|
|
4793
|
-
Lahnda: "Lahnda";
|
|
4794
|
-
Latvian: "Latvian";
|
|
4795
|
-
Lithuanian: "Lithuanian";
|
|
4796
|
-
Malay: "Malay";
|
|
4797
|
-
Mandarin: "Mandarin";
|
|
4798
|
-
Marathi: "Marathi";
|
|
4799
|
-
Nepali: "Nepali";
|
|
4800
|
-
Norwegian: "Norwegian";
|
|
4801
|
-
Oromo: "Oromo";
|
|
4802
|
-
Pashto: "Pashto";
|
|
4803
|
-
Polish: "Polish";
|
|
4804
|
-
Portuguese: "Portuguese";
|
|
4805
|
-
Romanian: "Romanian";
|
|
4806
|
-
Russian: "Russian";
|
|
4807
|
-
Serbian: "Serbian";
|
|
4808
|
-
Shona: "Shona";
|
|
4809
|
-
Sinhala: "Sinhala";
|
|
4810
|
-
Slovak: "Slovak";
|
|
4811
|
-
Slovene: "Slovene";
|
|
4812
|
-
Somali: "Somali";
|
|
4813
|
-
Spanish: "Spanish";
|
|
4814
|
-
Sundanese: "Sundanese";
|
|
4815
|
-
Swahili: "Swahili";
|
|
4816
|
-
Swedish: "Swedish";
|
|
4817
|
-
Tagalog: "Tagalog";
|
|
4818
|
-
Tamil: "Tamil";
|
|
4819
|
-
Telugu: "Telugu";
|
|
4820
|
-
Thai: "Thai";
|
|
4821
|
-
Turkish: "Turkish";
|
|
4822
|
-
Ukrainian: "Ukrainian";
|
|
4823
|
-
Urdu: "Urdu";
|
|
4824
|
-
Uzbek: "Uzbek";
|
|
4825
|
-
Vietnamese: "Vietnamese";
|
|
4826
|
-
Yoruba: "Yoruba";
|
|
4827
|
-
Zulu: "Zulu";
|
|
4828
|
-
Novice: "Novice";
|
|
4829
|
-
Beginner: "Beginner";
|
|
4830
|
-
Intermediate: "Intermediate";
|
|
4831
|
-
Advanced: "Advanced";
|
|
4832
|
-
Expert: "Expert";
|
|
4833
|
-
basics: "basics";
|
|
4834
|
-
education: "education";
|
|
4835
|
-
work: "work";
|
|
4836
|
-
volunteer: "volunteer";
|
|
4837
|
-
awards: "awards";
|
|
4838
|
-
certificates: "certificates";
|
|
4839
|
-
publications: "publications";
|
|
4840
|
-
skills: "skills";
|
|
4841
|
-
languages: "languages";
|
|
4842
|
-
interests: "interests";
|
|
4843
|
-
references: "references";
|
|
4844
|
-
projects: "projects";
|
|
4845
|
-
"moderncv-banking": "moderncv-banking";
|
|
4846
|
-
"moderncv-casual": "moderncv-casual";
|
|
4847
|
-
"moderncv-classic": "moderncv-classic";
|
|
4848
|
-
en: "en";
|
|
4849
|
-
"zh-hans": "zh-hans";
|
|
4850
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
4851
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
4852
|
-
es: "es";
|
|
4853
|
-
fr: "fr";
|
|
4854
|
-
no: "no";
|
|
4855
|
-
Behance: "Behance";
|
|
4856
|
-
Dribbble: "Dribbble";
|
|
4857
|
-
Facebook: "Facebook";
|
|
4858
|
-
GitHub: "GitHub";
|
|
4859
|
-
Gitlab: "Gitlab";
|
|
4860
|
-
Instagram: "Instagram";
|
|
4861
|
-
Line: "Line";
|
|
4862
|
-
LinkedIn: "LinkedIn";
|
|
4863
|
-
Medium: "Medium";
|
|
4864
|
-
Pinterest: "Pinterest";
|
|
4865
|
-
Reddit: "Reddit";
|
|
4866
|
-
Snapchat: "Snapchat";
|
|
4867
|
-
"Stack Overflow": "Stack Overflow";
|
|
4868
|
-
Telegram: "Telegram";
|
|
4869
|
-
TikTok: "TikTok";
|
|
4870
|
-
Twitch: "Twitch";
|
|
4871
|
-
Twitter: "Twitter";
|
|
4872
|
-
Vimeo: "Vimeo";
|
|
4873
|
-
Weibo: "Weibo";
|
|
4874
|
-
WeChat: "WeChat";
|
|
4875
|
-
WhatsApp: "WhatsApp";
|
|
4876
|
-
YouTube: "YouTube";
|
|
4877
|
-
Zhihu: "Zhihu";
|
|
4878
|
-
Lining: "Lining";
|
|
4879
|
-
OldStyle: "OldStyle";
|
|
4880
|
-
Auto: "Auto";
|
|
4881
|
-
"10pt": "10pt";
|
|
4882
|
-
"11pt": "11pt";
|
|
4883
|
-
"12pt": "12pt";
|
|
4884
2782
|
}>;
|
|
4885
2783
|
startDate: z.ZodString;
|
|
4886
2784
|
courses: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
@@ -5205,6 +3103,20 @@ declare function collectAllKeys(obj: unknown, keys?: Set<string | number | symbo
|
|
|
5205
3103
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
5206
3104
|
* IN THE SOFTWARE.
|
|
5207
3105
|
*/
|
|
3106
|
+
/**
|
|
3107
|
+
* Escape HTML entities in text.
|
|
3108
|
+
*
|
|
3109
|
+
* @param text - The text to escape.
|
|
3110
|
+
* @returns The escaped text.
|
|
3111
|
+
*/
|
|
3112
|
+
declare function escapeHtml(text: string): string;
|
|
3113
|
+
/**
|
|
3114
|
+
* A wrapper around the escape-latex that handles null and undefined values.
|
|
3115
|
+
*
|
|
3116
|
+
* @param value - value to be escaped
|
|
3117
|
+
* @returns escaped value
|
|
3118
|
+
*/
|
|
3119
|
+
declare function escapeLatex(value: string | null | undefined): any;
|
|
5208
3120
|
/**
|
|
5209
3121
|
* Check if a string is empty or only contains whitespace
|
|
5210
3122
|
*
|
|
@@ -5245,35 +3157,4 @@ declare function joinNonEmptyString(codes: string[], separator?: string): string
|
|
|
5245
3157
|
*/
|
|
5246
3158
|
declare function toCodeBlock(code?: string, lang?: string): string;
|
|
5247
3159
|
|
|
5248
|
-
|
|
5249
|
-
* MIT License
|
|
5250
|
-
*
|
|
5251
|
-
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
5252
|
-
*
|
|
5253
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5254
|
-
* of this software and associated documentation files (the "Software"), to
|
|
5255
|
-
* deal in the Software without restriction, including without limitation the
|
|
5256
|
-
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
5257
|
-
* sell copies of the Software, and to permit persons to whom the Software is
|
|
5258
|
-
* furnished to do so, subject to the following conditions:
|
|
5259
|
-
*
|
|
5260
|
-
* The above copyright notice and this permission notice shall be included in
|
|
5261
|
-
* all copies or substantial portions of the Software.
|
|
5262
|
-
*
|
|
5263
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5264
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5265
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5266
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5267
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
5268
|
-
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
5269
|
-
* IN THE SOFTWARE.
|
|
5270
|
-
*/
|
|
5271
|
-
/**
|
|
5272
|
-
* A wrapper around the escape-latex that handles null and undefined values.
|
|
5273
|
-
*
|
|
5274
|
-
* @param value - value to be escaped
|
|
5275
|
-
* @returns escaped value
|
|
5276
|
-
*/
|
|
5277
|
-
declare function escapeLatex(value: string | null | undefined): any;
|
|
5278
|
-
|
|
5279
|
-
export { type Awards, type Basics, type BulletListNode, COUNTRY_OPTIONS, type Certificates, type Country, DEFAULT_LATEX_LAYOUT, DEFAULT_MARKDOWN_LAYOUT, DEFAULT_RESUME, DEFAULT_RESUME_CONTENT, DEFAULT_RESUME_LAYOUTS, DEFAULT_RESUME_LOCALE, DEFAULT_SECTIONS_ORDER, DEGREE_OPTIONS, type Degree, type DocNode, type Education, EnglishCountryNames, ErrorType, FILLED_RESUME, FILLED_RESUME_CONTENT, FLUENCY_OPTIONS, FONTSPEC_NUMBERS_OPTIONS, FONT_SIZE_OPTIONS, type Fluency, type FontSize, type FontspecNumbers, FrenchCountryNames, type Interests, LANGUAGE_OPTIONS, LATEX_TEMPLATE_OPTIONS, LEVEL_OPTIONS, LOCALE_LANGUAGE_OPTIONS, type Language, type LanguageItem, type Languages, LatexCodeGenerator, type LatexLayout, type LatexTemplate, type Level, type LocaleLanguage, type Location, MARGIN_OPTIONS, type MarkdownLayout, MarkdownParser, MarkdownRenderer, ModerncvBankingRenderer, ModerncvCasualRenderer, ModerncvClassicRenderer, NETWORK_OPTIONS, type Network, type Node, NorwegianCountryNames, ONE_DAY, ORDERABLE_SECTION_IDS, type OrderableSectionID, type OrderedListNode, PUNCTUATIONS, type ParagraphNode, type Parser, type ProfileItem, type Profiles, type Projects, type Publications, type Punctuation, RESUME_SECTION_ITEMS, type References, type Resume, type ResumeContent, type ResumeItem, type ResumeLayoutEngine, type ResumeLayouts, type ResumeLocale, ResumeSchema, SECTION_IDS, type SectionID, SimplifiedChineseCountryNames, type Skills, SpanishCountryNames, TERMS, type Term, type TextNode, TraditionalChineseCountryHKNames, TraditionalChineseCountryTWNames, type Volunteer, type Work, YAMLResumeError, collectAllKeys, epochSecondsToLocaleDateString, escapeLatex, getDateRange, getLatexTemplateDetail, getLocaleLanguageDetail, getOptionTranslation, getResumeRenderer, getTemplateTranslations, isEmptyString, isEmptyValue, joinNonEmptyString, localizeDate, mergeArrayWithOrder, milliSecondsToSeconds, nowInUTCSeconds, parseDate, removeKeysFromObject, showIf, showIfNotEmpty, toCodeBlock, transformResume };
|
|
3160
|
+
export { type Awards, type Basics, type BulletListNode, COUNTRY_OPTIONS, type Certificates, type Content, type Country, DEFAULT_HTML_LAYOUT, DEFAULT_LATEX_LAYOUT, DEFAULT_MARKDOWN_LAYOUT, DEFAULT_RESUME, DEFAULT_RESUME_CONTENT, DEFAULT_RESUME_LAYOUTS, DEFAULT_RESUME_LOCALE, DEFAULT_SECTIONS_ORDER, DEGREE_OPTIONS, type Degree, type DocNode, type Education, EnglishCountryNames, ErrorType, FILLED_RESUME, FILLED_RESUME_CONTENT, FLUENCY_OPTIONS, type Fluency, FrenchCountryNames, HTML_FONT_SIZE_OPTIONS, HTML_TEMPLATE_OPTIONS, HtmlCodeGenerator, type HtmlFontSize, type HtmlLayout, HtmlRenderer, type HtmlTemplate, type Interests, type Keywords, LANGUAGE_OPTIONS, LATEX_FONTSPEC_NUMBERS_OPTIONS, LATEX_FONT_SIZE_OPTIONS, LATEX_TEMPLATE_OPTIONS, LEVEL_OPTIONS, LOCALE_LANGUAGE_OPTIONS, type Language, type Languages, LatexCodeGenerator, type LatexFontSize, type LatexFontspecNumbers, type LatexLayout, type LatexTemplate, type LayoutEngine, type Layouts, type Level, type Locale, type LocaleLanguage, type Location, MARGIN_OPTIONS, type MarkdownLayout, MarkdownParser, MarkdownRenderer, ModerncvBankingRenderer, ModerncvCasualRenderer, ModerncvClassicRenderer, NETWORK_OPTIONS, type Network, type Node, NorwegianCountryNames, ONE_DAY, ORDERABLE_SECTION_IDS, type OrderableSectionID, type OrderedListNode, PUNCTUATIONS, type ParagraphNode, type Parser, type Profiles, type Projects, type Publications, type Punctuation, RESUME_SECTION_ITEMS, type References, type Resume, type ResumeItem, ResumeSchema, SECTION_IDS, type SectionID, SimplifiedChineseCountryNames, type Skills, SpanishCountryNames, TERMS, type Term, type TextNode, TraditionalChineseCountryHKNames, TraditionalChineseCountryTWNames, type Volunteer, type Work, YAMLResumeError, collectAllKeys, epochSecondsToLocaleDateString, escapeHtml, escapeLatex, getDateRange, getHtmlTemplateDetail, getLatexTemplateDetail, getLocaleLanguageDetail, getOptionTranslation, getResumeRenderer, getTemplateTranslations, isEmptyString, isEmptyValue, joinNonEmptyString, localizeDate, mergeArrayWithOrder, milliSecondsToSeconds, nowInUTCSeconds, parseDate, removeKeysFromObject, showIf, showIfNotEmpty, toCodeBlock, transformResume };
|