@yamlresume/core 0.7.5 → 0.8.1
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 +1197 -359
- package/dist/index.js +121 -68
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -134,7 +134,7 @@ type Node = BulletListNode | DocNode | ListItemNode | OrderedListNode | Paragrap
|
|
|
134
134
|
/**
|
|
135
135
|
* All possible countries and regions in the world.
|
|
136
136
|
*/
|
|
137
|
-
declare const COUNTRY_OPTIONS: readonly ["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
|
|
137
|
+
declare const COUNTRY_OPTIONS: readonly ["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"];
|
|
138
138
|
/**
|
|
139
139
|
* Represents all possible countries & regions with their corresponding English
|
|
140
140
|
* names.
|
|
@@ -160,130 +160,12 @@ declare const TraditionalChineseCountryTWNames: Record<Country, string>;
|
|
|
160
160
|
* Spanish names.
|
|
161
161
|
*/
|
|
162
162
|
declare const SpanishCountryNames: Record<Country, string>;
|
|
163
|
-
declare const NorwegianCountryNames: Record<Country, string>;
|
|
164
|
-
|
|
165
|
-
/**
|
|
166
|
-
* MIT License
|
|
167
|
-
*
|
|
168
|
-
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
169
|
-
*
|
|
170
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
171
|
-
* of this software and associated documentation files (the "Software"), to
|
|
172
|
-
* deal in the Software without restriction, including without limitation the
|
|
173
|
-
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
174
|
-
* sell copies of the Software, and to permit persons to whom the Software is
|
|
175
|
-
* furnished to do so, subject to the following conditions:
|
|
176
|
-
*
|
|
177
|
-
* The above copyright notice and this permission notice shall be included in
|
|
178
|
-
* all copies or substantial portions of the Software.
|
|
179
|
-
*
|
|
180
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
181
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
182
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
183
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
184
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
185
|
-
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
186
|
-
* IN THE SOFTWARE.
|
|
187
|
-
*/
|
|
188
|
-
|
|
189
|
-
/**
|
|
190
|
-
* Defines all possible degrees.
|
|
191
|
-
*/
|
|
192
|
-
declare const DEGREE_OPTIONS: readonly ["Middle School", "High School", "Diploma", "Associate", "Bachelor", "Master", "Doctor"];
|
|
193
|
-
/**
|
|
194
|
-
* Defines language fluency levels.
|
|
195
|
-
*
|
|
196
|
-
* Based on the Interagency Language Roundtable (ILR) scale.
|
|
197
|
-
*/
|
|
198
|
-
declare const FLUENCY_OPTIONS: readonly ["Elementary Proficiency", "Limited Working Proficiency", "Minimum Professional Proficiency", "Full Professional Proficiency", "Native or Bilingual Proficiency"];
|
|
199
|
-
/** The options for the font size. */
|
|
200
|
-
declare const FONT_SIZE_OPTIONS: readonly ["10pt", "11pt", "12pt"];
|
|
201
|
-
/** The options for the font spec numbers style. */
|
|
202
|
-
declare const FONTSPEC_NUMBERS_OPTIONS: readonly ["Lining", "OldStyle", "Auto"];
|
|
203
|
-
/**
|
|
204
|
-
* Defines common world languages.
|
|
205
|
-
*
|
|
206
|
-
* This list contains the most used languages in the world.
|
|
207
|
-
*
|
|
208
|
-
* TODO: allow users to add their own languages
|
|
209
|
-
*/
|
|
210
|
-
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"];
|
|
211
|
-
/**
|
|
212
|
-
* Defines skill proficiency levels.
|
|
213
|
-
*
|
|
214
|
-
* Based on common industry standards for skill assessment.
|
|
215
|
-
*/
|
|
216
|
-
declare const LEVEL_OPTIONS: readonly ["Novice", "Beginner", "Intermediate", "Advanced", "Expert", "Master"];
|
|
217
|
-
/**
|
|
218
|
-
* Defines supported languages for UI display and template translation.
|
|
219
|
-
*
|
|
220
|
-
* @see {@link https://en.wikipedia.org/wiki/IETF_language_tag}
|
|
221
|
-
*/
|
|
222
|
-
declare const LOCALE_LANGUAGE_OPTIONS: readonly ["en", "zh-hans", "zh-hant-hk", "zh-hant-tw", "es", "no"];
|
|
223
|
-
/**
|
|
224
|
-
* Defines network options.
|
|
225
|
-
*/
|
|
226
|
-
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"];
|
|
227
|
-
/**
|
|
228
|
-
* All valid top-level sections in the resume.
|
|
229
|
-
* */
|
|
230
|
-
declare const SECTION_IDS: readonly ["basics", "location", "profiles", "education", "work", "volunteer", "awards", "certificates", "publications", "skills", "languages", "interests", "references", "projects"];
|
|
231
|
-
/**
|
|
232
|
-
* All valid top-level sections in the resume that can be aliased and re-ordered.
|
|
233
|
-
*
|
|
234
|
-
* `location` and `profiles` are not excluded as these are not real sections,
|
|
235
|
-
* e.g, `location` and `profiles` information are not rendered as sections in
|
|
236
|
-
* the final resume.
|
|
237
|
-
*/
|
|
238
|
-
declare const ORDERABLE_SECTION_IDS: readonly ["basics", "education", "work", "volunteer", "awards", "certificates", "publications", "skills", "languages", "interests", "references", "projects"];
|
|
239
|
-
/**
|
|
240
|
-
* Default order for sections in the resume output.
|
|
241
|
-
*
|
|
242
|
-
* Sections not specified in custom order will follow this order.
|
|
243
|
-
*/
|
|
244
|
-
declare const DEFAULT_SECTIONS_ORDER: OrderableSectionID[];
|
|
245
|
-
/** Defines identifiers for the available resume templates. */
|
|
246
|
-
declare const TEMPLATE_OPTIONS: readonly ["moderncv-banking", "moderncv-casual", "moderncv-classic"];
|
|
247
|
-
declare function getTemplateDetail(template: Template): {
|
|
248
|
-
name: string;
|
|
249
|
-
description: string;
|
|
250
|
-
id: "moderncv-banking" | "moderncv-casual" | "moderncv-classic";
|
|
251
|
-
};
|
|
252
|
-
/** Provides default, empty item structures for each resume section type. */
|
|
253
|
-
declare const RESUME_SECTION_ITEMS: ResumeItem;
|
|
254
|
-
/**
|
|
255
|
-
* Default content structure for a new resume, containing empty or minimal
|
|
256
|
-
* sections.
|
|
257
|
-
*/
|
|
258
|
-
declare const DEFAULT_RESUME_CONTENT: ResumeContent;
|
|
259
|
-
/**
|
|
260
|
-
* Resume content structure containing one example item for each section.
|
|
261
|
-
*
|
|
262
|
-
* Useful for testing transformations and rendering.
|
|
263
|
-
*/
|
|
264
|
-
declare const FILLED_RESUME_CONTENT: ResumeContent;
|
|
265
|
-
/** Available margin size options for resume layout. */
|
|
266
|
-
declare const MARGIN_OPTIONS: string[];
|
|
267
|
-
/**
|
|
268
|
-
* Get the language code and name of the given locale language.
|
|
269
|
-
*
|
|
270
|
-
* @param localeLanguage The locale language to get the name for.
|
|
271
|
-
* @returns The language code and name of the given locale language.
|
|
272
|
-
*/
|
|
273
|
-
declare function getLocaleLanguageDetail(localeLanguage: LocaleLanguage): {
|
|
274
|
-
localeLanguage: "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no";
|
|
275
|
-
name: string;
|
|
276
|
-
};
|
|
277
|
-
/** Default layout configuration for a new resume. */
|
|
278
|
-
declare const DEFAULT_RESUME_LAYOUT: ResumeLayout;
|
|
279
|
-
/** Default value when user creates a new `Resume` object. */
|
|
280
|
-
declare const DEFAULT_RESUME: Resume;
|
|
281
163
|
/**
|
|
282
|
-
*
|
|
283
|
-
*
|
|
284
|
-
* This is useful for testing transformations and rendering.
|
|
164
|
+
* Represents all possible countries & regions with their corresponding
|
|
165
|
+
* French names.
|
|
285
166
|
*/
|
|
286
|
-
declare const
|
|
167
|
+
declare const FrenchCountryNames: Record<Country, string>;
|
|
168
|
+
declare const NorwegianCountryNames: Record<Country, string>;
|
|
287
169
|
|
|
288
170
|
/**
|
|
289
171
|
* MIT License
|
|
@@ -346,7 +228,7 @@ type OrderableSectionID = (typeof ORDERABLE_SECTION_IDS)[number];
|
|
|
346
228
|
*
|
|
347
229
|
* @see {@link https://yamlresume.dev/docs/layout/templates}
|
|
348
230
|
*/
|
|
349
|
-
type
|
|
231
|
+
type LatexTemplate = (typeof LATEX_TEMPLATE_OPTIONS)[number];
|
|
350
232
|
/**
|
|
351
233
|
* A union type for all possible locale languages.
|
|
352
234
|
*
|
|
@@ -577,10 +459,6 @@ type LocationItem = {
|
|
|
577
459
|
computed?: {
|
|
578
460
|
/** Fully formatted address string based on locale. */
|
|
579
461
|
fullAddress: string;
|
|
580
|
-
/** Combined string of postal code and address. */
|
|
581
|
-
postalCodeAndAddress: string;
|
|
582
|
-
/** Combined string of region and country. */
|
|
583
|
-
regionAndCountry: string;
|
|
584
462
|
};
|
|
585
463
|
};
|
|
586
464
|
/**
|
|
@@ -919,7 +797,7 @@ type ResumeContent = {
|
|
|
919
797
|
/**
|
|
920
798
|
* Defines page margin settings for document layout.
|
|
921
799
|
*/
|
|
922
|
-
type
|
|
800
|
+
type ResumeLayoutPageMargins = {
|
|
923
801
|
/** Top margin value (e.g., "2.5cm"). */
|
|
924
802
|
top?: string;
|
|
925
803
|
/** Bottom margin value (e.g., "2.5cm"). */
|
|
@@ -952,23 +830,23 @@ type FontSize = (typeof FONT_SIZE_OPTIONS)[number];
|
|
|
952
830
|
/**
|
|
953
831
|
* Defines link styling settings for typography.
|
|
954
832
|
*/
|
|
955
|
-
type
|
|
833
|
+
type LayoutTypographyLinks = {
|
|
956
834
|
/** Whether to underline links in the document. */
|
|
957
835
|
underline?: boolean;
|
|
958
836
|
};
|
|
959
837
|
/**
|
|
960
838
|
* Defines typography settings for document formatting.
|
|
961
839
|
*/
|
|
962
|
-
type
|
|
840
|
+
type LaTeXLayoutTypography = {
|
|
963
841
|
/** Base font size for the document (e.g., "10pt", "11pt"). */
|
|
964
842
|
fontSize?: string;
|
|
965
843
|
/** Link styling settings. */
|
|
966
|
-
links?:
|
|
844
|
+
links?: LayoutTypographyLinks;
|
|
967
845
|
};
|
|
968
846
|
/**
|
|
969
|
-
* Defines
|
|
847
|
+
* Defines advanced configuration options.
|
|
970
848
|
*/
|
|
971
|
-
type
|
|
849
|
+
type LaTeXLayoutAdvanced = {
|
|
972
850
|
/** LaTeX fontspec package configurations. */
|
|
973
851
|
fontspec?: {
|
|
974
852
|
/** Style for rendering numbers (Lining or OldStyle). */
|
|
@@ -978,45 +856,62 @@ type ResumeLayoutLaTeX = {
|
|
|
978
856
|
/**
|
|
979
857
|
* Defines locale settings for internationalization and localization.
|
|
980
858
|
*/
|
|
981
|
-
type
|
|
859
|
+
type ResumeLocale = {
|
|
982
860
|
/** The selected language for the resume content and template terms. */
|
|
983
861
|
language?: LocaleLanguage;
|
|
984
862
|
};
|
|
985
863
|
/**
|
|
986
864
|
* Defines page-level settings for document presentation.
|
|
987
865
|
*/
|
|
988
|
-
type
|
|
866
|
+
type LaTeXLayoutPage = {
|
|
989
867
|
/** Whether to display page numbers. */
|
|
990
868
|
showPageNumbers?: boolean;
|
|
869
|
+
/** Defines page margin settings for document layout. */
|
|
870
|
+
margins?: ResumeLayoutPageMargins;
|
|
991
871
|
};
|
|
992
872
|
/**
|
|
993
873
|
* Defines section alias settings for customizing section names.
|
|
994
874
|
*/
|
|
995
|
-
type
|
|
875
|
+
type LayoutSections = {
|
|
996
876
|
/** Custom aliases for section names, overriding default translations. */
|
|
997
|
-
aliases?: Partial<Record<
|
|
877
|
+
aliases?: Partial<Record<SectionID, string>>;
|
|
998
878
|
/** Custom order for sections in the final output. */
|
|
999
879
|
order?: OrderableSectionID[];
|
|
1000
880
|
};
|
|
1001
881
|
/**
|
|
1002
|
-
*
|
|
882
|
+
* A union type for all possible layout engines.
|
|
1003
883
|
*/
|
|
1004
|
-
type
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
884
|
+
type ResumeLayoutEngine = 'latex' | 'markdown';
|
|
885
|
+
/**
|
|
886
|
+
* LaTeX layout configuration.
|
|
887
|
+
*/
|
|
888
|
+
type LatexLayout = {
|
|
889
|
+
engine: 'latex';
|
|
1009
890
|
/** Defines page-level settings for document presentation. */
|
|
1010
|
-
page?:
|
|
891
|
+
page?: LaTeXLayoutPage;
|
|
1011
892
|
/** Defines section customization settings. */
|
|
1012
|
-
sections?:
|
|
893
|
+
sections?: LayoutSections;
|
|
1013
894
|
/** Defines the selected template. */
|
|
1014
|
-
template?:
|
|
895
|
+
template?: LatexTemplate;
|
|
1015
896
|
/** Defines typography settings for document formatting. */
|
|
1016
|
-
typography?:
|
|
1017
|
-
/** Defines
|
|
1018
|
-
|
|
897
|
+
typography?: LaTeXLayoutTypography;
|
|
898
|
+
/** Defines advanced configuration options. */
|
|
899
|
+
advanced?: LaTeXLayoutAdvanced;
|
|
900
|
+
};
|
|
901
|
+
/**
|
|
902
|
+
* Markdown layout configuration.
|
|
903
|
+
*
|
|
904
|
+
* Keep it minimal for now; can be extended later.
|
|
905
|
+
*/
|
|
906
|
+
type MarkdownLayout = {
|
|
907
|
+
engine: 'markdown';
|
|
908
|
+
/** Defines section customization settings. */
|
|
909
|
+
sections?: LayoutSections;
|
|
1019
910
|
};
|
|
911
|
+
/**
|
|
912
|
+
* Array of layout items supporting multiple output formats.
|
|
913
|
+
*/
|
|
914
|
+
type ResumeLayouts = (LatexLayout | MarkdownLayout)[];
|
|
1020
915
|
/**
|
|
1021
916
|
* Defines the overall resume structure, including content and layout.
|
|
1022
917
|
*
|
|
@@ -1026,9 +921,147 @@ type ResumeLayout = {
|
|
|
1026
921
|
type Resume = {
|
|
1027
922
|
/** Defines the structure for the entire resume content. */
|
|
1028
923
|
content: ResumeContent;
|
|
1029
|
-
/**
|
|
1030
|
-
|
|
924
|
+
/** Top-level locale setting. */
|
|
925
|
+
locale?: ResumeLocale;
|
|
926
|
+
/** Multiple output layout configurations. */
|
|
927
|
+
layouts?: ResumeLayouts;
|
|
928
|
+
};
|
|
929
|
+
|
|
930
|
+
/**
|
|
931
|
+
* MIT License
|
|
932
|
+
*
|
|
933
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
934
|
+
*
|
|
935
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
936
|
+
* of this software and associated documentation files (the "Software"), to
|
|
937
|
+
* deal in the Software without restriction, including without limitation the
|
|
938
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
939
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
940
|
+
* furnished to do so, subject to the following conditions:
|
|
941
|
+
*
|
|
942
|
+
* The above copyright notice and this permission notice shall be included in
|
|
943
|
+
* all copies or substantial portions of the Software.
|
|
944
|
+
*
|
|
945
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
946
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
947
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
948
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
949
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
950
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
951
|
+
* IN THE SOFTWARE.
|
|
952
|
+
*/
|
|
953
|
+
|
|
954
|
+
/**
|
|
955
|
+
* Defines all possible degrees.
|
|
956
|
+
*/
|
|
957
|
+
declare const DEGREE_OPTIONS: readonly ["Middle School", "High School", "Diploma", "Associate", "Bachelor", "Master", "Doctor"];
|
|
958
|
+
/**
|
|
959
|
+
* Defines language fluency levels.
|
|
960
|
+
*
|
|
961
|
+
* Based on the Interagency Language Roundtable (ILR) scale.
|
|
962
|
+
*/
|
|
963
|
+
declare const FLUENCY_OPTIONS: readonly ["Elementary Proficiency", "Limited Working Proficiency", "Minimum Professional Proficiency", "Full Professional Proficiency", "Native or Bilingual Proficiency"];
|
|
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"];
|
|
968
|
+
/**
|
|
969
|
+
* Defines common world languages.
|
|
970
|
+
*
|
|
971
|
+
* This list contains the most used languages in the world.
|
|
972
|
+
*
|
|
973
|
+
* TODO: allow users to add their own languages
|
|
974
|
+
*/
|
|
975
|
+
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"];
|
|
976
|
+
/**
|
|
977
|
+
* Defines skill proficiency levels.
|
|
978
|
+
*
|
|
979
|
+
* Based on common industry standards for skill assessment.
|
|
980
|
+
*/
|
|
981
|
+
declare const LEVEL_OPTIONS: readonly ["Novice", "Beginner", "Intermediate", "Advanced", "Expert", "Master"];
|
|
982
|
+
/**
|
|
983
|
+
* Defines supported languages for UI display and template translation.
|
|
984
|
+
*
|
|
985
|
+
* @see {@link https://en.wikipedia.org/wiki/IETF_language_tag}
|
|
986
|
+
*/
|
|
987
|
+
declare const LOCALE_LANGUAGE_OPTIONS: readonly ["en", "zh-hans", "zh-hant-hk", "zh-hant-tw", "es", "fr", "no"];
|
|
988
|
+
/**
|
|
989
|
+
* Defines network options.
|
|
990
|
+
*/
|
|
991
|
+
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"];
|
|
992
|
+
/**
|
|
993
|
+
* All valid top-level sections in the resume.
|
|
994
|
+
* */
|
|
995
|
+
declare const SECTION_IDS: readonly ["basics", "location", "profiles", "education", "work", "volunteer", "awards", "certificates", "publications", "skills", "languages", "interests", "references", "projects"];
|
|
996
|
+
/**
|
|
997
|
+
* All valid top-level sections in the resume that can be re-ordered.
|
|
998
|
+
*
|
|
999
|
+
* `location` and `profiles` are excluded as these are not real sections, i.e,
|
|
1000
|
+
* they are always rendered as part of the "core" information at the start of a
|
|
1001
|
+
* resume, not rendered as normal sections
|
|
1002
|
+
*/
|
|
1003
|
+
declare const ORDERABLE_SECTION_IDS: readonly ["basics", "education", "work", "volunteer", "awards", "certificates", "publications", "skills", "languages", "interests", "references", "projects"];
|
|
1004
|
+
/**
|
|
1005
|
+
* Default order for sections in the resume output.
|
|
1006
|
+
*
|
|
1007
|
+
* Sections not specified in custom order will follow this order.
|
|
1008
|
+
*/
|
|
1009
|
+
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
|
+
/**
|
|
1013
|
+
* Get the detail of the given LaTeX template.
|
|
1014
|
+
*
|
|
1015
|
+
* @param template - The template to get the detail for.
|
|
1016
|
+
* @returns The detail of the template.
|
|
1017
|
+
*/
|
|
1018
|
+
declare function getLatexTemplateDetail(template: LatexTemplate): {
|
|
1019
|
+
engine: ResumeLayoutEngine;
|
|
1020
|
+
name: string;
|
|
1021
|
+
description: string;
|
|
1022
|
+
id: "moderncv-banking" | "moderncv-casual" | "moderncv-classic";
|
|
1023
|
+
};
|
|
1024
|
+
/** Provides default, empty item structures for each resume section type. */
|
|
1025
|
+
declare const RESUME_SECTION_ITEMS: ResumeItem;
|
|
1026
|
+
/**
|
|
1027
|
+
* Default content structure for a new resume, containing empty or minimal
|
|
1028
|
+
* sections.
|
|
1029
|
+
*/
|
|
1030
|
+
declare const DEFAULT_RESUME_CONTENT: ResumeContent;
|
|
1031
|
+
/**
|
|
1032
|
+
* Resume content structure containing one example item for each section.
|
|
1033
|
+
*
|
|
1034
|
+
* Useful for testing transformations and rendering.
|
|
1035
|
+
*/
|
|
1036
|
+
declare const FILLED_RESUME_CONTENT: ResumeContent;
|
|
1037
|
+
/** Available margin size options for resume layout. */
|
|
1038
|
+
declare const MARGIN_OPTIONS: string[];
|
|
1039
|
+
/**
|
|
1040
|
+
* Get the language code and name of the given locale language.
|
|
1041
|
+
*
|
|
1042
|
+
* @param localeLanguage The locale language to get the name for.
|
|
1043
|
+
* @returns The language code and name of the given locale language.
|
|
1044
|
+
*/
|
|
1045
|
+
declare function getLocaleLanguageDetail(localeLanguage: LocaleLanguage): {
|
|
1046
|
+
localeLanguage: "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "fr" | "no";
|
|
1047
|
+
name: string;
|
|
1031
1048
|
};
|
|
1049
|
+
/** Default Markdown layout configuration. */
|
|
1050
|
+
declare const DEFAULT_MARKDOWN_LAYOUT: MarkdownLayout;
|
|
1051
|
+
/** Default LaTeX layout configuration for the new layouts array. */
|
|
1052
|
+
declare const DEFAULT_LATEX_LAYOUT: LatexLayout;
|
|
1053
|
+
/** Default layouts configuration. */
|
|
1054
|
+
declare const DEFAULT_RESUME_LAYOUTS: ResumeLayouts;
|
|
1055
|
+
/** Default locale configuration. */
|
|
1056
|
+
declare const DEFAULT_RESUME_LOCALE: ResumeLocale;
|
|
1057
|
+
/** Default value when user creates a new `Resume` object. */
|
|
1058
|
+
declare const DEFAULT_RESUME: Resume;
|
|
1059
|
+
/**
|
|
1060
|
+
* Default value when user wants to use a filled resume.
|
|
1061
|
+
*
|
|
1062
|
+
* This is useful for testing transformations and rendering.
|
|
1063
|
+
*/
|
|
1064
|
+
declare const FILLED_RESUME: Resume;
|
|
1032
1065
|
|
|
1033
1066
|
/**
|
|
1034
1067
|
* MIT License
|
|
@@ -1059,7 +1092,9 @@ type Resume = {
|
|
|
1059
1092
|
*/
|
|
1060
1093
|
interface CodeGenerationContext {
|
|
1061
1094
|
/** Typography settings from the resume layout. */
|
|
1062
|
-
typography?: Resume['
|
|
1095
|
+
typography?: Resume['layouts'] extends Array<infer T> ? T extends {
|
|
1096
|
+
typography?: infer U;
|
|
1097
|
+
} ? U : never : never;
|
|
1063
1098
|
}
|
|
1064
1099
|
/**
|
|
1065
1100
|
* Interface to generate code from an AST.
|
|
@@ -1330,12 +1365,13 @@ declare class YAMLResumeError<T extends ErrorCodeType> extends Error {
|
|
|
1330
1365
|
* The order of transformations is: content, layout, environment.
|
|
1331
1366
|
*
|
|
1332
1367
|
* @param resume - The original resume object.
|
|
1368
|
+
* @param layoutIndex - The index of the selected layout.
|
|
1333
1369
|
* @param summaryParser - The parser instance for handling summary fields.
|
|
1334
1370
|
* @returns A new, transformed resume object ready for rendering.
|
|
1335
1371
|
* @remarks This function operates on and returns a deep clone of the original
|
|
1336
1372
|
* resume.
|
|
1337
1373
|
*/
|
|
1338
|
-
declare function transformResume(resume: Resume, summaryParser: Parser): Resume;
|
|
1374
|
+
declare function transformResume(resume: Resume, layoutIndex: number, summaryParser: Parser): Resume;
|
|
1339
1375
|
|
|
1340
1376
|
/**
|
|
1341
1377
|
* MIT License
|
|
@@ -1377,12 +1413,14 @@ declare function transformResume(resume: Resume, summaryParser: Parser): Resume;
|
|
|
1377
1413
|
*/
|
|
1378
1414
|
declare abstract class Renderer {
|
|
1379
1415
|
resume: Resume;
|
|
1416
|
+
layoutIndex: number;
|
|
1380
1417
|
/**
|
|
1381
1418
|
* Constructor for the Renderer class.
|
|
1382
1419
|
*
|
|
1383
1420
|
* @param resume - The resume to render.
|
|
1421
|
+
* @param layoutIndex - The index of the selected layout.
|
|
1384
1422
|
*/
|
|
1385
|
-
constructor(resume: Resume);
|
|
1423
|
+
constructor(resume: Resume, layoutIndex: number);
|
|
1386
1424
|
/**
|
|
1387
1425
|
* Render the preamble of the TeX document.
|
|
1388
1426
|
*
|
|
@@ -1498,6 +1536,23 @@ declare abstract class Renderer {
|
|
|
1498
1536
|
protected renderOrderedSections(): string;
|
|
1499
1537
|
}
|
|
1500
1538
|
|
|
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
|
+
|
|
1501
1556
|
/**
|
|
1502
1557
|
* MIT License
|
|
1503
1558
|
*
|
|
@@ -1523,19 +1578,382 @@ declare abstract class Renderer {
|
|
|
1523
1578
|
*/
|
|
1524
1579
|
|
|
1525
1580
|
/**
|
|
1526
|
-
*
|
|
1527
|
-
*
|
|
1528
|
-
* @param {Resume} resume - The resume object
|
|
1529
|
-
* @param {Parser} summaryParser - The parser instance for the summary field.
|
|
1530
|
-
* Default to `MarkdownParser` if not provided.
|
|
1531
|
-
* @returns {Renderer} The renderer instance for the specified template.
|
|
1581
|
+
* Base class for moderncv renderers.
|
|
1532
1582
|
*/
|
|
1533
|
-
declare
|
|
1534
|
-
|
|
1535
|
-
/**
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1583
|
+
declare class ModerncvBase extends Renderer {
|
|
1584
|
+
style: ModerncvStyle;
|
|
1585
|
+
/**
|
|
1586
|
+
* Constructor for the ModerncvBase class.
|
|
1587
|
+
*
|
|
1588
|
+
* @param resume - The resume object
|
|
1589
|
+
* @param style - The moderncv style
|
|
1590
|
+
* @param layoutIndex - The index of the selected layout to use.
|
|
1591
|
+
* @param summaryParser - The summary parser used to parse summary field in
|
|
1592
|
+
* various sections.
|
|
1593
|
+
*/
|
|
1594
|
+
constructor(resume: Resume, style: ModerncvStyle, layoutIndex: number, summaryParser: Parser);
|
|
1595
|
+
/**
|
|
1596
|
+
* Check if the resume is a CJK resume.
|
|
1597
|
+
*/
|
|
1598
|
+
private isCJKResume;
|
|
1599
|
+
/**
|
|
1600
|
+
* Render the document class configuration.
|
|
1601
|
+
*/
|
|
1602
|
+
private renderDocumentClassConfig;
|
|
1603
|
+
/**
|
|
1604
|
+
* Override the moderncv commands for CJK resumes
|
|
1605
|
+
*/
|
|
1606
|
+
private renderModerncvOverride;
|
|
1607
|
+
/**
|
|
1608
|
+
* Render the moderncv configuration.
|
|
1609
|
+
*/
|
|
1610
|
+
private renderModerncvConfig;
|
|
1611
|
+
/**
|
|
1612
|
+
* Render the layout configuration.
|
|
1613
|
+
*/
|
|
1614
|
+
private renderLayoutConfig;
|
|
1615
|
+
/**
|
|
1616
|
+
* Render the LaTeX packages for CJK support
|
|
1617
|
+
*/
|
|
1618
|
+
private renderCTeXConfig;
|
|
1619
|
+
/**
|
|
1620
|
+
* Render the LaTeX packages for Spanish support
|
|
1621
|
+
*/
|
|
1622
|
+
private renderBabelConfig;
|
|
1623
|
+
/**
|
|
1624
|
+
* Render the LaTeX packages for fontspec support
|
|
1625
|
+
*/
|
|
1626
|
+
private renderFontspecConfig;
|
|
1627
|
+
/**
|
|
1628
|
+
* Render the preamble for the resume.
|
|
1629
|
+
*
|
|
1630
|
+
* @returns The LaTeX code for the preamble
|
|
1631
|
+
*/
|
|
1632
|
+
renderPreamble(): string;
|
|
1633
|
+
/**
|
|
1634
|
+
* Render the basics section of the resume.
|
|
1635
|
+
*
|
|
1636
|
+
* @returns The LaTeX code for the basics section
|
|
1637
|
+
*/
|
|
1638
|
+
renderBasics(): string;
|
|
1639
|
+
/**
|
|
1640
|
+
* Render the location section of the resume.
|
|
1641
|
+
*
|
|
1642
|
+
* @returns The LaTeX code for the location section
|
|
1643
|
+
*/
|
|
1644
|
+
renderLocation(): string;
|
|
1645
|
+
/**
|
|
1646
|
+
* Render the profiles section of the resume.
|
|
1647
|
+
*
|
|
1648
|
+
* @returns The LaTeX code for the profiles section
|
|
1649
|
+
*/
|
|
1650
|
+
renderProfiles(): string;
|
|
1651
|
+
/**
|
|
1652
|
+
* Render the summary section of the resume.
|
|
1653
|
+
*
|
|
1654
|
+
* @returns The LaTeX code for the summary section
|
|
1655
|
+
*/
|
|
1656
|
+
renderSummary(): string;
|
|
1657
|
+
/**
|
|
1658
|
+
* Render the education section of the resume.
|
|
1659
|
+
*
|
|
1660
|
+
* @returns The LaTeX code for the education section
|
|
1661
|
+
*/
|
|
1662
|
+
renderEducation(): string;
|
|
1663
|
+
/**
|
|
1664
|
+
* Render the work section of the resume.
|
|
1665
|
+
*
|
|
1666
|
+
* @returns The LaTeX code for the work section
|
|
1667
|
+
*/
|
|
1668
|
+
renderWork(): string;
|
|
1669
|
+
/**
|
|
1670
|
+
* Render the languages section of the resume.
|
|
1671
|
+
*
|
|
1672
|
+
* @returns The LaTeX code for the languages section
|
|
1673
|
+
*/
|
|
1674
|
+
renderLanguages(): string;
|
|
1675
|
+
/**
|
|
1676
|
+
* Render the skills section of the resume.
|
|
1677
|
+
*
|
|
1678
|
+
* @returns The LaTeX code for the skills section
|
|
1679
|
+
*/
|
|
1680
|
+
renderSkills(): string;
|
|
1681
|
+
/**
|
|
1682
|
+
* Render the awards section of the resume.
|
|
1683
|
+
*
|
|
1684
|
+
* @returns The LaTeX code for the awards section
|
|
1685
|
+
*/
|
|
1686
|
+
renderAwards(): string;
|
|
1687
|
+
/**
|
|
1688
|
+
* Render the certificates section of the resume.
|
|
1689
|
+
*
|
|
1690
|
+
* @returns The LaTeX code for the certificates section
|
|
1691
|
+
*/
|
|
1692
|
+
renderCertificates(): string;
|
|
1693
|
+
/**
|
|
1694
|
+
* Render the publications section of the resume.
|
|
1695
|
+
*
|
|
1696
|
+
* @returns The LaTeX code for the publications section
|
|
1697
|
+
*/
|
|
1698
|
+
renderPublications(): string;
|
|
1699
|
+
/**
|
|
1700
|
+
* Render the references section of the resume.
|
|
1701
|
+
*
|
|
1702
|
+
* @returns The LaTeX code for the references section
|
|
1703
|
+
*/
|
|
1704
|
+
renderReferences(): string;
|
|
1705
|
+
/**
|
|
1706
|
+
* Render the projects section of the resume.
|
|
1707
|
+
*
|
|
1708
|
+
* @returns The LaTeX code for the projects section
|
|
1709
|
+
*/
|
|
1710
|
+
renderProjects(): string;
|
|
1711
|
+
/**
|
|
1712
|
+
* Render the interests section of the resume.
|
|
1713
|
+
*
|
|
1714
|
+
* @returns The LaTeX code for the interests section
|
|
1715
|
+
*/
|
|
1716
|
+
renderInterests(): string;
|
|
1717
|
+
/**
|
|
1718
|
+
* Render the volunteer section of the resume.
|
|
1719
|
+
*
|
|
1720
|
+
* @returns The LaTeX code for the volunteer section
|
|
1721
|
+
*/
|
|
1722
|
+
renderVolunteer(): string;
|
|
1723
|
+
/**
|
|
1724
|
+
* Render the resume.
|
|
1725
|
+
*
|
|
1726
|
+
* @returns The LaTeX code for the resume
|
|
1727
|
+
*/
|
|
1728
|
+
render(): string;
|
|
1729
|
+
/**
|
|
1730
|
+
* Generate the LaTeX code for the resume.
|
|
1731
|
+
*
|
|
1732
|
+
* @returns The LaTeX code for the resume
|
|
1733
|
+
*/
|
|
1734
|
+
private generateTeX;
|
|
1735
|
+
}
|
|
1736
|
+
/**
|
|
1737
|
+
* Renderer for the banking style of moderncv.
|
|
1738
|
+
*/
|
|
1739
|
+
declare class ModerncvBankingRenderer extends ModerncvBase {
|
|
1740
|
+
/**
|
|
1741
|
+
* Create moderncv renderer with banking style.
|
|
1742
|
+
*
|
|
1743
|
+
* @param resume - The resume object to render.
|
|
1744
|
+
* @param layoutIndex - The index of the selected layout to use.
|
|
1745
|
+
* @param summaryParser - Optional parser for summary fields (defaults to markdown).
|
|
1746
|
+
*/
|
|
1747
|
+
constructor(resume: Resume, layoutIndex: number, summaryParser?: Parser);
|
|
1748
|
+
}
|
|
1749
|
+
/**
|
|
1750
|
+
* Renderer for the casual style of moderncv.
|
|
1751
|
+
*/
|
|
1752
|
+
declare class ModerncvCasualRenderer extends ModerncvBase {
|
|
1753
|
+
/**
|
|
1754
|
+
* Create a moderncv renderer with casual style.
|
|
1755
|
+
*
|
|
1756
|
+
* @param resume - The resume object to render.
|
|
1757
|
+
* @param layoutIndex - The index of the selected layout to use.
|
|
1758
|
+
* @param summaryParser - Optional parser for summary fields (defaults to markdown).
|
|
1759
|
+
*/
|
|
1760
|
+
constructor(resume: Resume, layoutIndex: number, summaryParser?: Parser);
|
|
1761
|
+
}
|
|
1762
|
+
/**
|
|
1763
|
+
* Renderer for the classic style of moderncv.
|
|
1764
|
+
*/
|
|
1765
|
+
declare class ModerncvClassicRenderer extends ModerncvBase {
|
|
1766
|
+
/**
|
|
1767
|
+
* Create moderncv renderer with classic style.
|
|
1768
|
+
*
|
|
1769
|
+
* @param resume - The resume object to render.
|
|
1770
|
+
* @param layoutIndex - The index of the selected layout to use.
|
|
1771
|
+
* @param summaryParser - Optional parser for summary fields (defaults to markdown).
|
|
1772
|
+
*/
|
|
1773
|
+
constructor(resume: Resume, layoutIndex: number, summaryParser?: Parser);
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
/**
|
|
1777
|
+
* MIT License
|
|
1778
|
+
*
|
|
1779
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1780
|
+
*
|
|
1781
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1782
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1783
|
+
* deal in the Software without restriction, including without limitation the
|
|
1784
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1785
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1786
|
+
* furnished to do so, subject to the following conditions:
|
|
1787
|
+
*
|
|
1788
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1789
|
+
* all copies or substantial portions of the Software.
|
|
1790
|
+
*
|
|
1791
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1792
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1793
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1794
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1795
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1796
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1797
|
+
* IN THE SOFTWARE.
|
|
1798
|
+
*/
|
|
1799
|
+
|
|
1800
|
+
/**
|
|
1801
|
+
* Markdown renderer for generating markdown documents from resume data.
|
|
1802
|
+
*/
|
|
1803
|
+
declare class MarkdownRenderer extends Renderer {
|
|
1804
|
+
/**
|
|
1805
|
+
* Constructor for the MarkdownRenderer class.
|
|
1806
|
+
*
|
|
1807
|
+
* @param resume - The resume object
|
|
1808
|
+
* @param layoutIndex - The index of the selected layout to use.
|
|
1809
|
+
* @param summaryParser - The summary parser used to parse summary field in
|
|
1810
|
+
* various sections.
|
|
1811
|
+
*/
|
|
1812
|
+
constructor(resume: Resume, layoutIndex: number, summaryParser?: Parser);
|
|
1813
|
+
/**
|
|
1814
|
+
* Render the preamble of the markdown document.
|
|
1815
|
+
*
|
|
1816
|
+
* Please note that markdown output do not need a preamble.
|
|
1817
|
+
*
|
|
1818
|
+
* @returns {string} The preamble of the markdown document.
|
|
1819
|
+
*/
|
|
1820
|
+
renderPreamble(): string;
|
|
1821
|
+
/**
|
|
1822
|
+
* Render the basics section of the resume.
|
|
1823
|
+
*
|
|
1824
|
+
* @returns {string} The rendered basics section
|
|
1825
|
+
*/
|
|
1826
|
+
renderBasics(): string;
|
|
1827
|
+
/**
|
|
1828
|
+
* Render the summary section of the resume.
|
|
1829
|
+
*
|
|
1830
|
+
* @returns {string} The rendered summary section
|
|
1831
|
+
*/
|
|
1832
|
+
renderSummary(): string;
|
|
1833
|
+
/**
|
|
1834
|
+
* Render the location section of the resume.
|
|
1835
|
+
*
|
|
1836
|
+
* @returns {string} The rendered location section
|
|
1837
|
+
*/
|
|
1838
|
+
renderLocation(): string;
|
|
1839
|
+
/**
|
|
1840
|
+
* Render the profiles section of the resume.
|
|
1841
|
+
*
|
|
1842
|
+
* @returns {string} The rendered profiles section
|
|
1843
|
+
*/
|
|
1844
|
+
renderProfiles(): string;
|
|
1845
|
+
/**
|
|
1846
|
+
* Render the education section of the resume.
|
|
1847
|
+
*
|
|
1848
|
+
* @returns {string} The rendered education section
|
|
1849
|
+
*/
|
|
1850
|
+
renderEducation(): string;
|
|
1851
|
+
/**
|
|
1852
|
+
* Render the work section of the resume.
|
|
1853
|
+
*
|
|
1854
|
+
* @returns {string} The rendered work section
|
|
1855
|
+
*/
|
|
1856
|
+
renderWork(): string;
|
|
1857
|
+
/**
|
|
1858
|
+
* Render the languages section of the resume.
|
|
1859
|
+
*
|
|
1860
|
+
* @returns {string} The rendered languages section
|
|
1861
|
+
*/
|
|
1862
|
+
renderLanguages(): string;
|
|
1863
|
+
/**
|
|
1864
|
+
* Render the skills section of the resume.
|
|
1865
|
+
*
|
|
1866
|
+
* @returns {string} The rendered skills section
|
|
1867
|
+
*/
|
|
1868
|
+
renderSkills(): string;
|
|
1869
|
+
/**
|
|
1870
|
+
* Render the awards section of the resume.
|
|
1871
|
+
*
|
|
1872
|
+
* @returns {string} The rendered awards section
|
|
1873
|
+
*/
|
|
1874
|
+
renderAwards(): string;
|
|
1875
|
+
/**
|
|
1876
|
+
* Render the certificates section of the resume.
|
|
1877
|
+
*
|
|
1878
|
+
* @returns {string} The rendered certificates section
|
|
1879
|
+
*/
|
|
1880
|
+
renderCertificates(): string;
|
|
1881
|
+
/**
|
|
1882
|
+
* Render the publications section of the resume.
|
|
1883
|
+
*
|
|
1884
|
+
* @returns {string} The rendered publications section
|
|
1885
|
+
*/
|
|
1886
|
+
renderPublications(): string;
|
|
1887
|
+
/**
|
|
1888
|
+
* Render the references section of the resume.
|
|
1889
|
+
*
|
|
1890
|
+
* @returns {string} The rendered references section
|
|
1891
|
+
*/
|
|
1892
|
+
renderReferences(): string;
|
|
1893
|
+
/**
|
|
1894
|
+
* Render the projects section of the resume.
|
|
1895
|
+
*
|
|
1896
|
+
* @returns {string} The rendered projects section
|
|
1897
|
+
*/
|
|
1898
|
+
renderProjects(): string;
|
|
1899
|
+
/**
|
|
1900
|
+
* Render the interests section of the resume.
|
|
1901
|
+
*
|
|
1902
|
+
* @returns {string} The rendered interests section
|
|
1903
|
+
*/
|
|
1904
|
+
renderInterests(): string;
|
|
1905
|
+
/**
|
|
1906
|
+
* Render the volunteer section of the resume.
|
|
1907
|
+
*
|
|
1908
|
+
* @returns {string} The rendered volunteer section
|
|
1909
|
+
*/
|
|
1910
|
+
renderVolunteer(): string;
|
|
1911
|
+
/**
|
|
1912
|
+
* Render the complete markdown resume.
|
|
1913
|
+
*
|
|
1914
|
+
* @returns {string} The rendered markdown resume
|
|
1915
|
+
*/
|
|
1916
|
+
render(): string;
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
/**
|
|
1920
|
+
* MIT License
|
|
1921
|
+
*
|
|
1922
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1923
|
+
*
|
|
1924
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1925
|
+
* of this software and associated documentation files (the "Software"), to
|
|
1926
|
+
* deal in the Software without restriction, including without limitation the
|
|
1927
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1928
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
1929
|
+
* furnished to do so, subject to the following conditions:
|
|
1930
|
+
*
|
|
1931
|
+
* The above copyright notice and this permission notice shall be included in
|
|
1932
|
+
* all copies or substantial portions of the Software.
|
|
1933
|
+
*
|
|
1934
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1935
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1936
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1937
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1938
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1939
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1940
|
+
* IN THE SOFTWARE.
|
|
1941
|
+
*/
|
|
1942
|
+
|
|
1943
|
+
/**
|
|
1944
|
+
* Get the appropriate resume renderer based on the provided resume layout.
|
|
1945
|
+
*
|
|
1946
|
+
* @param {number} layoutIndex - The index of the layout to use.
|
|
1947
|
+
* @param {Parser} summaryParser - The parser instance for the summary field.
|
|
1948
|
+
* Default to `MarkdownParser` if not provided.
|
|
1949
|
+
* @returns {Renderer} The renderer instance for the specified template.
|
|
1950
|
+
*/
|
|
1951
|
+
declare function getResumeRenderer(resume: Resume, layoutIndex: number, summaryParser?: Parser): Renderer;
|
|
1952
|
+
|
|
1953
|
+
/**
|
|
1954
|
+
* MIT License
|
|
1955
|
+
*
|
|
1956
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
1539
1957
|
*
|
|
1540
1958
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1541
1959
|
* of this software and associated documentation files (the "Software"), to
|
|
@@ -1560,14 +1978,441 @@ declare function getResumeRenderer(resume: Resume, summaryParser?: Parser): Rend
|
|
|
1560
1978
|
* A zod schema for a yaml resume.
|
|
1561
1979
|
*/
|
|
1562
1980
|
declare const ResumeSchema: z.ZodObject<{
|
|
1563
|
-
|
|
1981
|
+
layouts: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1982
|
+
advanced: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1983
|
+
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>>>>;
|
|
1985
|
+
}, z.core.$strip>>>;
|
|
1986
|
+
}, z.core.$strip>>>;
|
|
1564
1987
|
typography: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1565
1988
|
links: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1566
1989
|
underline: z.ZodDefault<z.ZodBoolean>;
|
|
1567
1990
|
}, z.core.$strip>>>;
|
|
1568
|
-
fontSize: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
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>>>>;
|
|
1992
|
+
}, 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>>>>;
|
|
1994
|
+
sections: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1995
|
+
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>>>>;
|
|
1569
2413
|
}, z.core.$strip>>>;
|
|
1570
|
-
template: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
2414
|
+
engine: z.ZodLiteral<"latex">;
|
|
2415
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1571
2416
|
sections: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1572
2417
|
order: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
1573
2418
|
Afghanistan: "Afghanistan";
|
|
@@ -1668,7 +2513,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
1668
2513
|
Haiti: "Haiti";
|
|
1669
2514
|
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
1670
2515
|
Honduras: "Honduras";
|
|
1671
|
-
"Hong Kong
|
|
2516
|
+
"Hong Kong": "Hong Kong";
|
|
1672
2517
|
Hungary: "Hungary";
|
|
1673
2518
|
Iceland: "Iceland";
|
|
1674
2519
|
India: "India";
|
|
@@ -1697,7 +2542,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
1697
2542
|
Liechtenstein: "Liechtenstein";
|
|
1698
2543
|
Lithuania: "Lithuania";
|
|
1699
2544
|
Luxembourg: "Luxembourg";
|
|
1700
|
-
|
|
2545
|
+
Macau: "Macau";
|
|
1701
2546
|
Madagascar: "Madagascar";
|
|
1702
2547
|
Malawi: "Malawi";
|
|
1703
2548
|
Malaysia: "Malaysia";
|
|
@@ -1832,12 +2677,6 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
1832
2677
|
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
1833
2678
|
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
1834
2679
|
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
1835
|
-
"10pt": "10pt";
|
|
1836
|
-
"11pt": "11pt";
|
|
1837
|
-
"12pt": "12pt";
|
|
1838
|
-
Lining: "Lining";
|
|
1839
|
-
OldStyle: "OldStyle";
|
|
1840
|
-
Auto: "Auto";
|
|
1841
2680
|
Afrikaans: "Afrikaans";
|
|
1842
2681
|
Albanian: "Albanian";
|
|
1843
2682
|
Amharic: "Amharic";
|
|
@@ -1918,11 +2757,27 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
1918
2757
|
Intermediate: "Intermediate";
|
|
1919
2758
|
Advanced: "Advanced";
|
|
1920
2759
|
Expert: "Expert";
|
|
2760
|
+
basics: "basics";
|
|
2761
|
+
education: "education";
|
|
2762
|
+
work: "work";
|
|
2763
|
+
volunteer: "volunteer";
|
|
2764
|
+
awards: "awards";
|
|
2765
|
+
certificates: "certificates";
|
|
2766
|
+
publications: "publications";
|
|
2767
|
+
skills: "skills";
|
|
2768
|
+
languages: "languages";
|
|
2769
|
+
interests: "interests";
|
|
2770
|
+
references: "references";
|
|
2771
|
+
projects: "projects";
|
|
2772
|
+
"moderncv-banking": "moderncv-banking";
|
|
2773
|
+
"moderncv-casual": "moderncv-casual";
|
|
2774
|
+
"moderncv-classic": "moderncv-classic";
|
|
1921
2775
|
en: "en";
|
|
1922
2776
|
"zh-hans": "zh-hans";
|
|
1923
2777
|
"zh-hant-hk": "zh-hant-hk";
|
|
1924
2778
|
"zh-hant-tw": "zh-hant-tw";
|
|
1925
2779
|
es: "es";
|
|
2780
|
+
fr: "fr";
|
|
1926
2781
|
no: "no";
|
|
1927
2782
|
Behance: "Behance";
|
|
1928
2783
|
Dribbble: "Dribbble";
|
|
@@ -1947,21 +2802,12 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
1947
2802
|
WhatsApp: "WhatsApp";
|
|
1948
2803
|
YouTube: "YouTube";
|
|
1949
2804
|
Zhihu: "Zhihu";
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
publications: "publications";
|
|
1957
|
-
skills: "skills";
|
|
1958
|
-
languages: "languages";
|
|
1959
|
-
interests: "interests";
|
|
1960
|
-
references: "references";
|
|
1961
|
-
projects: "projects";
|
|
1962
|
-
"moderncv-banking": "moderncv-banking";
|
|
1963
|
-
"moderncv-casual": "moderncv-casual";
|
|
1964
|
-
"moderncv-classic": "moderncv-classic";
|
|
2805
|
+
Lining: "Lining";
|
|
2806
|
+
OldStyle: "OldStyle";
|
|
2807
|
+
Auto: "Auto";
|
|
2808
|
+
"10pt": "10pt";
|
|
2809
|
+
"11pt": "11pt";
|
|
2810
|
+
"12pt": "12pt";
|
|
1965
2811
|
}>>>>;
|
|
1966
2812
|
aliases: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1967
2813
|
basics: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
@@ -1978,23 +2824,10 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
1978
2824
|
projects: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1979
2825
|
}, z.core.$strip>>>;
|
|
1980
2826
|
}, z.core.$strip>>>;
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
margins: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1985
|
-
top: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1986
|
-
bottom: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1987
|
-
left: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1988
|
-
right: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1989
|
-
}, z.core.$strip>>>;
|
|
1990
|
-
locale: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1991
|
-
language: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
1992
|
-
}, z.core.$strip>>>;
|
|
1993
|
-
latex: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1994
|
-
fontspec: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1995
|
-
numbers: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
1996
|
-
}, z.core.$strip>>>;
|
|
1997
|
-
}, z.core.$strip>>>;
|
|
2827
|
+
engine: z.ZodLiteral<"markdown">;
|
|
2828
|
+
}, z.core.$strip>], "engine">>>>;
|
|
2829
|
+
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>>>>;
|
|
1998
2831
|
}, z.core.$strip>>>;
|
|
1999
2832
|
content: z.ZodObject<{
|
|
2000
2833
|
work: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -2114,7 +2947,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2114
2947
|
Haiti: "Haiti";
|
|
2115
2948
|
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
2116
2949
|
Honduras: "Honduras";
|
|
2117
|
-
"Hong Kong
|
|
2950
|
+
"Hong Kong": "Hong Kong";
|
|
2118
2951
|
Hungary: "Hungary";
|
|
2119
2952
|
Iceland: "Iceland";
|
|
2120
2953
|
India: "India";
|
|
@@ -2143,7 +2976,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2143
2976
|
Liechtenstein: "Liechtenstein";
|
|
2144
2977
|
Lithuania: "Lithuania";
|
|
2145
2978
|
Luxembourg: "Luxembourg";
|
|
2146
|
-
|
|
2979
|
+
Macau: "Macau";
|
|
2147
2980
|
Madagascar: "Madagascar";
|
|
2148
2981
|
Malawi: "Malawi";
|
|
2149
2982
|
Malaysia: "Malaysia";
|
|
@@ -2278,12 +3111,6 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2278
3111
|
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
2279
3112
|
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
2280
3113
|
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
2281
|
-
"10pt": "10pt";
|
|
2282
|
-
"11pt": "11pt";
|
|
2283
|
-
"12pt": "12pt";
|
|
2284
|
-
Lining: "Lining";
|
|
2285
|
-
OldStyle: "OldStyle";
|
|
2286
|
-
Auto: "Auto";
|
|
2287
3114
|
Afrikaans: "Afrikaans";
|
|
2288
3115
|
Albanian: "Albanian";
|
|
2289
3116
|
Amharic: "Amharic";
|
|
@@ -2364,11 +3191,27 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2364
3191
|
Intermediate: "Intermediate";
|
|
2365
3192
|
Advanced: "Advanced";
|
|
2366
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";
|
|
2367
3209
|
en: "en";
|
|
2368
3210
|
"zh-hans": "zh-hans";
|
|
2369
3211
|
"zh-hant-hk": "zh-hant-hk";
|
|
2370
3212
|
"zh-hant-tw": "zh-hant-tw";
|
|
2371
3213
|
es: "es";
|
|
3214
|
+
fr: "fr";
|
|
2372
3215
|
no: "no";
|
|
2373
3216
|
Behance: "Behance";
|
|
2374
3217
|
Dribbble: "Dribbble";
|
|
@@ -2393,21 +3236,12 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2393
3236
|
WhatsApp: "WhatsApp";
|
|
2394
3237
|
YouTube: "YouTube";
|
|
2395
3238
|
Zhihu: "Zhihu";
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
publications: "publications";
|
|
2403
|
-
skills: "skills";
|
|
2404
|
-
languages: "languages";
|
|
2405
|
-
interests: "interests";
|
|
2406
|
-
references: "references";
|
|
2407
|
-
projects: "projects";
|
|
2408
|
-
"moderncv-banking": "moderncv-banking";
|
|
2409
|
-
"moderncv-casual": "moderncv-casual";
|
|
2410
|
-
"moderncv-classic": "moderncv-classic";
|
|
3239
|
+
Lining: "Lining";
|
|
3240
|
+
OldStyle: "OldStyle";
|
|
3241
|
+
Auto: "Auto";
|
|
3242
|
+
"10pt": "10pt";
|
|
3243
|
+
"11pt": "11pt";
|
|
3244
|
+
"12pt": "12pt";
|
|
2411
3245
|
}>;
|
|
2412
3246
|
name: z.ZodString;
|
|
2413
3247
|
keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
@@ -2535,7 +3369,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2535
3369
|
Haiti: "Haiti";
|
|
2536
3370
|
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
2537
3371
|
Honduras: "Honduras";
|
|
2538
|
-
"Hong Kong
|
|
3372
|
+
"Hong Kong": "Hong Kong";
|
|
2539
3373
|
Hungary: "Hungary";
|
|
2540
3374
|
Iceland: "Iceland";
|
|
2541
3375
|
India: "India";
|
|
@@ -2564,7 +3398,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2564
3398
|
Liechtenstein: "Liechtenstein";
|
|
2565
3399
|
Lithuania: "Lithuania";
|
|
2566
3400
|
Luxembourg: "Luxembourg";
|
|
2567
|
-
|
|
3401
|
+
Macau: "Macau";
|
|
2568
3402
|
Madagascar: "Madagascar";
|
|
2569
3403
|
Malawi: "Malawi";
|
|
2570
3404
|
Malaysia: "Malaysia";
|
|
@@ -2699,12 +3533,6 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2699
3533
|
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
2700
3534
|
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
2701
3535
|
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
2702
|
-
"10pt": "10pt";
|
|
2703
|
-
"11pt": "11pt";
|
|
2704
|
-
"12pt": "12pt";
|
|
2705
|
-
Lining: "Lining";
|
|
2706
|
-
OldStyle: "OldStyle";
|
|
2707
|
-
Auto: "Auto";
|
|
2708
3536
|
Afrikaans: "Afrikaans";
|
|
2709
3537
|
Albanian: "Albanian";
|
|
2710
3538
|
Amharic: "Amharic";
|
|
@@ -2785,11 +3613,27 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2785
3613
|
Intermediate: "Intermediate";
|
|
2786
3614
|
Advanced: "Advanced";
|
|
2787
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";
|
|
2788
3631
|
en: "en";
|
|
2789
3632
|
"zh-hans": "zh-hans";
|
|
2790
3633
|
"zh-hant-hk": "zh-hant-hk";
|
|
2791
3634
|
"zh-hant-tw": "zh-hant-tw";
|
|
2792
3635
|
es: "es";
|
|
3636
|
+
fr: "fr";
|
|
2793
3637
|
no: "no";
|
|
2794
3638
|
Behance: "Behance";
|
|
2795
3639
|
Dribbble: "Dribbble";
|
|
@@ -2814,21 +3658,12 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2814
3658
|
WhatsApp: "WhatsApp";
|
|
2815
3659
|
YouTube: "YouTube";
|
|
2816
3660
|
Zhihu: "Zhihu";
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
publications: "publications";
|
|
2824
|
-
skills: "skills";
|
|
2825
|
-
languages: "languages";
|
|
2826
|
-
interests: "interests";
|
|
2827
|
-
references: "references";
|
|
2828
|
-
projects: "projects";
|
|
2829
|
-
"moderncv-banking": "moderncv-banking";
|
|
2830
|
-
"moderncv-casual": "moderncv-casual";
|
|
2831
|
-
"moderncv-classic": "moderncv-classic";
|
|
3661
|
+
Lining: "Lining";
|
|
3662
|
+
OldStyle: "OldStyle";
|
|
3663
|
+
Auto: "Auto";
|
|
3664
|
+
"10pt": "10pt";
|
|
3665
|
+
"11pt": "11pt";
|
|
3666
|
+
"12pt": "12pt";
|
|
2832
3667
|
}>;
|
|
2833
3668
|
username: z.ZodString;
|
|
2834
3669
|
url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
@@ -2836,7 +3671,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2836
3671
|
location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2837
3672
|
city: z.ZodString;
|
|
2838
3673
|
address: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2839
|
-
country: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "no" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
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>>>>;
|
|
2840
3675
|
postalCode: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2841
3676
|
region: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2842
3677
|
}, z.core.$strip>>>;
|
|
@@ -2940,7 +3775,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2940
3775
|
Haiti: "Haiti";
|
|
2941
3776
|
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
2942
3777
|
Honduras: "Honduras";
|
|
2943
|
-
"Hong Kong
|
|
3778
|
+
"Hong Kong": "Hong Kong";
|
|
2944
3779
|
Hungary: "Hungary";
|
|
2945
3780
|
Iceland: "Iceland";
|
|
2946
3781
|
India: "India";
|
|
@@ -2969,7 +3804,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2969
3804
|
Liechtenstein: "Liechtenstein";
|
|
2970
3805
|
Lithuania: "Lithuania";
|
|
2971
3806
|
Luxembourg: "Luxembourg";
|
|
2972
|
-
|
|
3807
|
+
Macau: "Macau";
|
|
2973
3808
|
Madagascar: "Madagascar";
|
|
2974
3809
|
Malawi: "Malawi";
|
|
2975
3810
|
Malaysia: "Malaysia";
|
|
@@ -3104,12 +3939,6 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3104
3939
|
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
3105
3940
|
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
3106
3941
|
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
3107
|
-
"10pt": "10pt";
|
|
3108
|
-
"11pt": "11pt";
|
|
3109
|
-
"12pt": "12pt";
|
|
3110
|
-
Lining: "Lining";
|
|
3111
|
-
OldStyle: "OldStyle";
|
|
3112
|
-
Auto: "Auto";
|
|
3113
3942
|
Afrikaans: "Afrikaans";
|
|
3114
3943
|
Albanian: "Albanian";
|
|
3115
3944
|
Amharic: "Amharic";
|
|
@@ -3190,11 +4019,27 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3190
4019
|
Intermediate: "Intermediate";
|
|
3191
4020
|
Advanced: "Advanced";
|
|
3192
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";
|
|
3193
4037
|
en: "en";
|
|
3194
4038
|
"zh-hans": "zh-hans";
|
|
3195
4039
|
"zh-hant-hk": "zh-hant-hk";
|
|
3196
4040
|
"zh-hant-tw": "zh-hant-tw";
|
|
3197
4041
|
es: "es";
|
|
4042
|
+
fr: "fr";
|
|
3198
4043
|
no: "no";
|
|
3199
4044
|
Behance: "Behance";
|
|
3200
4045
|
Dribbble: "Dribbble";
|
|
@@ -3219,21 +4064,12 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3219
4064
|
WhatsApp: "WhatsApp";
|
|
3220
4065
|
YouTube: "YouTube";
|
|
3221
4066
|
Zhihu: "Zhihu";
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
publications: "publications";
|
|
3229
|
-
skills: "skills";
|
|
3230
|
-
languages: "languages";
|
|
3231
|
-
interests: "interests";
|
|
3232
|
-
references: "references";
|
|
3233
|
-
projects: "projects";
|
|
3234
|
-
"moderncv-banking": "moderncv-banking";
|
|
3235
|
-
"moderncv-casual": "moderncv-casual";
|
|
3236
|
-
"moderncv-classic": "moderncv-classic";
|
|
4067
|
+
Lining: "Lining";
|
|
4068
|
+
OldStyle: "OldStyle";
|
|
4069
|
+
Auto: "Auto";
|
|
4070
|
+
"10pt": "10pt";
|
|
4071
|
+
"11pt": "11pt";
|
|
4072
|
+
"12pt": "12pt";
|
|
3237
4073
|
}>;
|
|
3238
4074
|
language: z.ZodEnum<{
|
|
3239
4075
|
Afghanistan: "Afghanistan";
|
|
@@ -3334,7 +4170,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3334
4170
|
Haiti: "Haiti";
|
|
3335
4171
|
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
3336
4172
|
Honduras: "Honduras";
|
|
3337
|
-
"Hong Kong
|
|
4173
|
+
"Hong Kong": "Hong Kong";
|
|
3338
4174
|
Hungary: "Hungary";
|
|
3339
4175
|
Iceland: "Iceland";
|
|
3340
4176
|
India: "India";
|
|
@@ -3363,7 +4199,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3363
4199
|
Liechtenstein: "Liechtenstein";
|
|
3364
4200
|
Lithuania: "Lithuania";
|
|
3365
4201
|
Luxembourg: "Luxembourg";
|
|
3366
|
-
|
|
4202
|
+
Macau: "Macau";
|
|
3367
4203
|
Madagascar: "Madagascar";
|
|
3368
4204
|
Malawi: "Malawi";
|
|
3369
4205
|
Malaysia: "Malaysia";
|
|
@@ -3498,12 +4334,6 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3498
4334
|
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
3499
4335
|
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
3500
4336
|
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
3501
|
-
"10pt": "10pt";
|
|
3502
|
-
"11pt": "11pt";
|
|
3503
|
-
"12pt": "12pt";
|
|
3504
|
-
Lining: "Lining";
|
|
3505
|
-
OldStyle: "OldStyle";
|
|
3506
|
-
Auto: "Auto";
|
|
3507
4337
|
Afrikaans: "Afrikaans";
|
|
3508
4338
|
Albanian: "Albanian";
|
|
3509
4339
|
Amharic: "Amharic";
|
|
@@ -3584,11 +4414,27 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3584
4414
|
Intermediate: "Intermediate";
|
|
3585
4415
|
Advanced: "Advanced";
|
|
3586
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";
|
|
3587
4432
|
en: "en";
|
|
3588
4433
|
"zh-hans": "zh-hans";
|
|
3589
4434
|
"zh-hant-hk": "zh-hant-hk";
|
|
3590
4435
|
"zh-hant-tw": "zh-hant-tw";
|
|
3591
4436
|
es: "es";
|
|
4437
|
+
fr: "fr";
|
|
3592
4438
|
no: "no";
|
|
3593
4439
|
Behance: "Behance";
|
|
3594
4440
|
Dribbble: "Dribbble";
|
|
@@ -3613,21 +4459,12 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3613
4459
|
WhatsApp: "WhatsApp";
|
|
3614
4460
|
YouTube: "YouTube";
|
|
3615
4461
|
Zhihu: "Zhihu";
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
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";
|
|
4462
|
+
Lining: "Lining";
|
|
4463
|
+
OldStyle: "OldStyle";
|
|
4464
|
+
Auto: "Auto";
|
|
4465
|
+
"10pt": "10pt";
|
|
4466
|
+
"11pt": "11pt";
|
|
4467
|
+
"12pt": "12pt";
|
|
3631
4468
|
}>;
|
|
3632
4469
|
keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
3633
4470
|
}, z.core.$strip>>>>;
|
|
@@ -3749,7 +4586,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3749
4586
|
Haiti: "Haiti";
|
|
3750
4587
|
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
3751
4588
|
Honduras: "Honduras";
|
|
3752
|
-
"Hong Kong
|
|
4589
|
+
"Hong Kong": "Hong Kong";
|
|
3753
4590
|
Hungary: "Hungary";
|
|
3754
4591
|
Iceland: "Iceland";
|
|
3755
4592
|
India: "India";
|
|
@@ -3778,7 +4615,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3778
4615
|
Liechtenstein: "Liechtenstein";
|
|
3779
4616
|
Lithuania: "Lithuania";
|
|
3780
4617
|
Luxembourg: "Luxembourg";
|
|
3781
|
-
|
|
4618
|
+
Macau: "Macau";
|
|
3782
4619
|
Madagascar: "Madagascar";
|
|
3783
4620
|
Malawi: "Malawi";
|
|
3784
4621
|
Malaysia: "Malaysia";
|
|
@@ -3913,12 +4750,6 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3913
4750
|
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
3914
4751
|
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
3915
4752
|
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
3916
|
-
"10pt": "10pt";
|
|
3917
|
-
"11pt": "11pt";
|
|
3918
|
-
"12pt": "12pt";
|
|
3919
|
-
Lining: "Lining";
|
|
3920
|
-
OldStyle: "OldStyle";
|
|
3921
|
-
Auto: "Auto";
|
|
3922
4753
|
Afrikaans: "Afrikaans";
|
|
3923
4754
|
Albanian: "Albanian";
|
|
3924
4755
|
Amharic: "Amharic";
|
|
@@ -3999,11 +4830,27 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3999
4830
|
Intermediate: "Intermediate";
|
|
4000
4831
|
Advanced: "Advanced";
|
|
4001
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";
|
|
4002
4848
|
en: "en";
|
|
4003
4849
|
"zh-hans": "zh-hans";
|
|
4004
4850
|
"zh-hant-hk": "zh-hant-hk";
|
|
4005
4851
|
"zh-hant-tw": "zh-hant-tw";
|
|
4006
4852
|
es: "es";
|
|
4853
|
+
fr: "fr";
|
|
4007
4854
|
no: "no";
|
|
4008
4855
|
Behance: "Behance";
|
|
4009
4856
|
Dribbble: "Dribbble";
|
|
@@ -4028,21 +4875,12 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
4028
4875
|
WhatsApp: "WhatsApp";
|
|
4029
4876
|
YouTube: "YouTube";
|
|
4030
4877
|
Zhihu: "Zhihu";
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
publications: "publications";
|
|
4038
|
-
skills: "skills";
|
|
4039
|
-
languages: "languages";
|
|
4040
|
-
interests: "interests";
|
|
4041
|
-
references: "references";
|
|
4042
|
-
projects: "projects";
|
|
4043
|
-
"moderncv-banking": "moderncv-banking";
|
|
4044
|
-
"moderncv-casual": "moderncv-casual";
|
|
4045
|
-
"moderncv-classic": "moderncv-classic";
|
|
4878
|
+
Lining: "Lining";
|
|
4879
|
+
OldStyle: "OldStyle";
|
|
4880
|
+
Auto: "Auto";
|
|
4881
|
+
"10pt": "10pt";
|
|
4882
|
+
"11pt": "11pt";
|
|
4883
|
+
"12pt": "12pt";
|
|
4046
4884
|
}>;
|
|
4047
4885
|
startDate: z.ZodString;
|
|
4048
4886
|
courses: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
@@ -4097,7 +4935,7 @@ type OptionTranslation = {
|
|
|
4097
4935
|
/** Translations for language names. */
|
|
4098
4936
|
languages: Record<Language, string>;
|
|
4099
4937
|
/** Translations for resume section titles. */
|
|
4100
|
-
sections: Record<
|
|
4938
|
+
sections: Record<SectionID, string>;
|
|
4101
4939
|
/** Translations for skill proficiency levels. */
|
|
4102
4940
|
skills: Record<Level, string>;
|
|
4103
4941
|
};
|
|
@@ -4274,37 +5112,6 @@ declare function epochSecondsToLocaleDateString(epochTime: number, locale?: stri
|
|
|
4274
5112
|
*/
|
|
4275
5113
|
declare function milliSecondsToSeconds(ms: number): number;
|
|
4276
5114
|
|
|
4277
|
-
/**
|
|
4278
|
-
* MIT License
|
|
4279
|
-
*
|
|
4280
|
-
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
4281
|
-
*
|
|
4282
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4283
|
-
* of this software and associated documentation files (the "Software"), to
|
|
4284
|
-
* deal in the Software without restriction, including without limitation the
|
|
4285
|
-
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
4286
|
-
* sell copies of the Software, and to permit persons to whom the Software is
|
|
4287
|
-
* furnished to do so, subject to the following conditions:
|
|
4288
|
-
*
|
|
4289
|
-
* The above copyright notice and this permission notice shall be included in
|
|
4290
|
-
* all copies or substantial portions of the Software.
|
|
4291
|
-
*
|
|
4292
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4293
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4294
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4295
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4296
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
4297
|
-
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
4298
|
-
* IN THE SOFTWARE.
|
|
4299
|
-
*/
|
|
4300
|
-
/**
|
|
4301
|
-
* A wrapper around the escape-latex that handles null and undefined values.
|
|
4302
|
-
*
|
|
4303
|
-
* @param value - value to be escaped
|
|
4304
|
-
* @returns escaped value
|
|
4305
|
-
*/
|
|
4306
|
-
declare function escapeLatex(value: string | null | undefined): any;
|
|
4307
|
-
|
|
4308
5115
|
/**
|
|
4309
5116
|
* MIT License
|
|
4310
5117
|
*
|
|
@@ -4438,4 +5245,35 @@ declare function joinNonEmptyString(codes: string[], separator?: string): string
|
|
|
4438
5245
|
*/
|
|
4439
5246
|
declare function toCodeBlock(code?: string, lang?: string): string;
|
|
4440
5247
|
|
|
4441
|
-
|
|
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 };
|