@yamlresume/core 0.5.1 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +34 -7
- package/dist/index.d.ts +176 -1154
- package/dist/index.js +68 -68
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/magic-string.es-PGO5ZCT3.js +0 -14
- package/dist/magic-string.es-PGO5ZCT3.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -483,7 +483,21 @@ declare const NETWORK_OPTIONS: readonly ["Behance", "Dribbble", "Facebook", "Git
|
|
|
483
483
|
/**
|
|
484
484
|
* All valid top-level sections in the resume.
|
|
485
485
|
* */
|
|
486
|
-
declare const SECTION_IDS: readonly ["basics", "location", "profiles", "
|
|
486
|
+
declare const SECTION_IDS: readonly ["basics", "location", "profiles", "education", "work", "volunteer", "awards", "certificates", "publications", "skills", "languages", "interests", "references", "projects"];
|
|
487
|
+
/**
|
|
488
|
+
* All valid top-level sections in the resume that can be aliased and re-ordered.
|
|
489
|
+
*
|
|
490
|
+
* `location` and `profiles` are not excluded as these are not real sections,
|
|
491
|
+
* e.g, `location` and `profiles` information are not rendered as sections in
|
|
492
|
+
* the final resume.
|
|
493
|
+
*/
|
|
494
|
+
declare const ORDERABLE_SECTION_IDS: readonly ["basics", "education", "work", "volunteer", "awards", "certificates", "publications", "skills", "languages", "interests", "references", "projects"];
|
|
495
|
+
/**
|
|
496
|
+
* Default order for sections in the resume output.
|
|
497
|
+
*
|
|
498
|
+
* Sections not specified in custom order will follow this order.
|
|
499
|
+
*/
|
|
500
|
+
declare const DEFAULT_SECTIONS_ORDER: OrderableSectionID[];
|
|
487
501
|
/** Defines identifiers for the available resume templates. */
|
|
488
502
|
declare const TEMPLATE_OPTIONS: readonly ["moderncv-banking", "moderncv-casual", "moderncv-classic"];
|
|
489
503
|
declare function getTemplateDetail(template: Template): {
|
|
@@ -579,6 +593,10 @@ type Level = (typeof LEVEL_OPTIONS)[number];
|
|
|
579
593
|
* A union type for all possible section IDs.
|
|
580
594
|
*/
|
|
581
595
|
type SectionID = (typeof SECTION_IDS)[number];
|
|
596
|
+
/**
|
|
597
|
+
* A union type for all possible section IDs that can be aliased and re-ordered.
|
|
598
|
+
*/
|
|
599
|
+
type OrderableSectionID = (typeof ORDERABLE_SECTION_IDS)[number];
|
|
582
600
|
/**
|
|
583
601
|
* A union type for all possible template options.
|
|
584
602
|
*
|
|
@@ -1218,6 +1236,15 @@ type ResumeLayoutPage = {
|
|
|
1218
1236
|
/** Whether to display page numbers. */
|
|
1219
1237
|
showPageNumbers?: boolean;
|
|
1220
1238
|
};
|
|
1239
|
+
/**
|
|
1240
|
+
* Defines section alias settings for customizing section names.
|
|
1241
|
+
*/
|
|
1242
|
+
type ResumeLayoutSections = {
|
|
1243
|
+
/** Custom aliases for section names, overriding default translations. */
|
|
1244
|
+
aliases?: Partial<Record<OrderableSectionID, string>>;
|
|
1245
|
+
/** Custom order for sections in the final output. */
|
|
1246
|
+
order?: OrderableSectionID[];
|
|
1247
|
+
};
|
|
1221
1248
|
/**
|
|
1222
1249
|
* Defines the overall layout configuration.
|
|
1223
1250
|
*/
|
|
@@ -1228,6 +1255,8 @@ type ResumeLayout = {
|
|
|
1228
1255
|
margins?: ResumeLayoutMargins;
|
|
1229
1256
|
/** Defines page-level settings for document presentation. */
|
|
1230
1257
|
page?: ResumeLayoutPage;
|
|
1258
|
+
/** Defines section customization settings. */
|
|
1259
|
+
sections?: ResumeLayoutSections;
|
|
1231
1260
|
/** Defines the selected template. */
|
|
1232
1261
|
template?: Template;
|
|
1233
1262
|
/** Defines typography settings for document formatting. */
|
|
@@ -1442,6 +1471,12 @@ declare abstract class Renderer {
|
|
|
1442
1471
|
* @returns {string} The rendered resume
|
|
1443
1472
|
*/
|
|
1444
1473
|
abstract render(): string;
|
|
1474
|
+
/**
|
|
1475
|
+
* Render sections in the specified order.
|
|
1476
|
+
*
|
|
1477
|
+
* @returns {string} The rendered sections in the specified order
|
|
1478
|
+
*/
|
|
1479
|
+
protected renderOrderedSections(): string;
|
|
1445
1480
|
}
|
|
1446
1481
|
|
|
1447
1482
|
/**
|
|
@@ -1508,7 +1543,11 @@ declare function getResumeRenderer(resume: Resume, summaryParser?: Parser): Rend
|
|
|
1508
1543
|
declare const ResumeSchema: z.ZodObject<{
|
|
1509
1544
|
layout: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1510
1545
|
typography: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1511
|
-
fontSize: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1546
|
+
fontSize: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
1547
|
+
}, z.core.$strip>>>;
|
|
1548
|
+
template: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
1549
|
+
sections: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1550
|
+
order: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
1512
1551
|
Afghanistan: "Afghanistan";
|
|
1513
1552
|
"Aland Islands": "Aland Islands";
|
|
1514
1553
|
Albania: "Albania";
|
|
@@ -1885,1167 +1924,52 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
1885
1924
|
WhatsApp: "WhatsApp";
|
|
1886
1925
|
YouTube: "YouTube";
|
|
1887
1926
|
Zhihu: "Zhihu";
|
|
1927
|
+
basics: "basics";
|
|
1928
|
+
education: "education";
|
|
1929
|
+
work: "work";
|
|
1930
|
+
volunteer: "volunteer";
|
|
1931
|
+
awards: "awards";
|
|
1932
|
+
certificates: "certificates";
|
|
1933
|
+
publications: "publications";
|
|
1934
|
+
skills: "skills";
|
|
1935
|
+
languages: "languages";
|
|
1936
|
+
interests: "interests";
|
|
1937
|
+
references: "references";
|
|
1938
|
+
projects: "projects";
|
|
1888
1939
|
"moderncv-banking": "moderncv-banking";
|
|
1889
1940
|
"moderncv-casual": "moderncv-casual";
|
|
1890
1941
|
"moderncv-classic": "moderncv-classic";
|
|
1891
|
-
}
|
|
1942
|
+
}>>>>;
|
|
1943
|
+
aliases: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1944
|
+
basics: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1945
|
+
education: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1946
|
+
work: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1947
|
+
volunteer: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1948
|
+
awards: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1949
|
+
certificates: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1950
|
+
publications: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1951
|
+
skills: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1952
|
+
languages: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1953
|
+
interests: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1954
|
+
references: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1955
|
+
projects: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1956
|
+
}, z.core.$strip>>>;
|
|
1892
1957
|
}, z.core.$strip>>>;
|
|
1893
|
-
template: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1894
|
-
Afghanistan: "Afghanistan";
|
|
1895
|
-
"Aland Islands": "Aland Islands";
|
|
1896
|
-
Albania: "Albania";
|
|
1897
|
-
Algeria: "Algeria";
|
|
1898
|
-
"American Samoa": "American Samoa";
|
|
1899
|
-
Andorra: "Andorra";
|
|
1900
|
-
Angola: "Angola";
|
|
1901
|
-
Anguilla: "Anguilla";
|
|
1902
|
-
Antarctica: "Antarctica";
|
|
1903
|
-
"Antigua And Barbuda": "Antigua And Barbuda";
|
|
1904
|
-
Argentina: "Argentina";
|
|
1905
|
-
Armenia: "Armenia";
|
|
1906
|
-
Aruba: "Aruba";
|
|
1907
|
-
Australia: "Australia";
|
|
1908
|
-
Austria: "Austria";
|
|
1909
|
-
Azerbaijan: "Azerbaijan";
|
|
1910
|
-
Bahrain: "Bahrain";
|
|
1911
|
-
Bangladesh: "Bangladesh";
|
|
1912
|
-
Barbados: "Barbados";
|
|
1913
|
-
Belarus: "Belarus";
|
|
1914
|
-
Belgium: "Belgium";
|
|
1915
|
-
Belize: "Belize";
|
|
1916
|
-
Benin: "Benin";
|
|
1917
|
-
Bermuda: "Bermuda";
|
|
1918
|
-
Bhutan: "Bhutan";
|
|
1919
|
-
Bolivia: "Bolivia";
|
|
1920
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
1921
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
1922
|
-
Botswana: "Botswana";
|
|
1923
|
-
"Bouvet Island": "Bouvet Island";
|
|
1924
|
-
Brazil: "Brazil";
|
|
1925
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
1926
|
-
Brunei: "Brunei";
|
|
1927
|
-
Bulgaria: "Bulgaria";
|
|
1928
|
-
"Burkina Faso": "Burkina Faso";
|
|
1929
|
-
Burundi: "Burundi";
|
|
1930
|
-
Cambodia: "Cambodia";
|
|
1931
|
-
Cameroon: "Cameroon";
|
|
1932
|
-
Canada: "Canada";
|
|
1933
|
-
"Cape Verde": "Cape Verde";
|
|
1934
|
-
"Cayman Islands": "Cayman Islands";
|
|
1935
|
-
"Central African Republic": "Central African Republic";
|
|
1936
|
-
Chad: "Chad";
|
|
1937
|
-
Chile: "Chile";
|
|
1938
|
-
China: "China";
|
|
1939
|
-
"Christmas Island": "Christmas Island";
|
|
1940
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
1941
|
-
Colombia: "Colombia";
|
|
1942
|
-
Comoros: "Comoros";
|
|
1943
|
-
Congo: "Congo";
|
|
1944
|
-
"Cook Islands": "Cook Islands";
|
|
1945
|
-
"Costa Rica": "Costa Rica";
|
|
1946
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
1947
|
-
Croatia: "Croatia";
|
|
1948
|
-
Cuba: "Cuba";
|
|
1949
|
-
Curaçao: "Curaçao";
|
|
1950
|
-
Cyprus: "Cyprus";
|
|
1951
|
-
"Czech Republic": "Czech Republic";
|
|
1952
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
1953
|
-
Denmark: "Denmark";
|
|
1954
|
-
Djibouti: "Djibouti";
|
|
1955
|
-
Dominica: "Dominica";
|
|
1956
|
-
"Dominican Republic": "Dominican Republic";
|
|
1957
|
-
"East Timor": "East Timor";
|
|
1958
|
-
Ecuador: "Ecuador";
|
|
1959
|
-
Egypt: "Egypt";
|
|
1960
|
-
"El Salvador": "El Salvador";
|
|
1961
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
1962
|
-
Eritrea: "Eritrea";
|
|
1963
|
-
Estonia: "Estonia";
|
|
1964
|
-
Ethiopia: "Ethiopia";
|
|
1965
|
-
"Falkland Islands": "Falkland Islands";
|
|
1966
|
-
"Faroe Islands": "Faroe Islands";
|
|
1967
|
-
"Fiji Islands": "Fiji Islands";
|
|
1968
|
-
Finland: "Finland";
|
|
1969
|
-
France: "France";
|
|
1970
|
-
"French Guiana": "French Guiana";
|
|
1971
|
-
"French Polynesia": "French Polynesia";
|
|
1972
|
-
"French Southern Territories": "French Southern Territories";
|
|
1973
|
-
Gabon: "Gabon";
|
|
1974
|
-
"Gambia The": "Gambia The";
|
|
1975
|
-
Georgia: "Georgia";
|
|
1976
|
-
Germany: "Germany";
|
|
1977
|
-
Ghana: "Ghana";
|
|
1978
|
-
Gibraltar: "Gibraltar";
|
|
1979
|
-
Greece: "Greece";
|
|
1980
|
-
Greenland: "Greenland";
|
|
1981
|
-
Grenada: "Grenada";
|
|
1982
|
-
Guadeloupe: "Guadeloupe";
|
|
1983
|
-
Guam: "Guam";
|
|
1984
|
-
Guatemala: "Guatemala";
|
|
1985
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
1986
|
-
Guinea: "Guinea";
|
|
1987
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
1988
|
-
Guyana: "Guyana";
|
|
1989
|
-
Haiti: "Haiti";
|
|
1990
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
1991
|
-
Honduras: "Honduras";
|
|
1992
|
-
"Hong Kong S.A.R.": "Hong Kong S.A.R.";
|
|
1993
|
-
Hungary: "Hungary";
|
|
1994
|
-
Iceland: "Iceland";
|
|
1995
|
-
India: "India";
|
|
1996
|
-
Indonesia: "Indonesia";
|
|
1997
|
-
Iran: "Iran";
|
|
1998
|
-
Iraq: "Iraq";
|
|
1999
|
-
Ireland: "Ireland";
|
|
2000
|
-
Israel: "Israel";
|
|
2001
|
-
Italy: "Italy";
|
|
2002
|
-
Jamaica: "Jamaica";
|
|
2003
|
-
Japan: "Japan";
|
|
2004
|
-
Jersey: "Jersey";
|
|
2005
|
-
Jordan: "Jordan";
|
|
2006
|
-
Kazakhstan: "Kazakhstan";
|
|
2007
|
-
Kenya: "Kenya";
|
|
2008
|
-
Kiribati: "Kiribati";
|
|
2009
|
-
Kosovo: "Kosovo";
|
|
2010
|
-
Kuwait: "Kuwait";
|
|
2011
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
2012
|
-
Laos: "Laos";
|
|
2013
|
-
Latvia: "Latvia";
|
|
2014
|
-
Lebanon: "Lebanon";
|
|
2015
|
-
Lesotho: "Lesotho";
|
|
2016
|
-
Liberia: "Liberia";
|
|
2017
|
-
Libya: "Libya";
|
|
2018
|
-
Liechtenstein: "Liechtenstein";
|
|
2019
|
-
Lithuania: "Lithuania";
|
|
2020
|
-
Luxembourg: "Luxembourg";
|
|
2021
|
-
"Macau S.A.R.": "Macau S.A.R.";
|
|
2022
|
-
Madagascar: "Madagascar";
|
|
2023
|
-
Malawi: "Malawi";
|
|
2024
|
-
Malaysia: "Malaysia";
|
|
2025
|
-
Maldives: "Maldives";
|
|
2026
|
-
Mali: "Mali";
|
|
2027
|
-
Malta: "Malta";
|
|
2028
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
2029
|
-
"Marshall Islands": "Marshall Islands";
|
|
2030
|
-
Martinique: "Martinique";
|
|
2031
|
-
Mauritania: "Mauritania";
|
|
2032
|
-
Mauritius: "Mauritius";
|
|
2033
|
-
Mayotte: "Mayotte";
|
|
2034
|
-
Mexico: "Mexico";
|
|
2035
|
-
Micronesia: "Micronesia";
|
|
2036
|
-
Moldova: "Moldova";
|
|
2037
|
-
Monaco: "Monaco";
|
|
2038
|
-
Mongolia: "Mongolia";
|
|
2039
|
-
Montenegro: "Montenegro";
|
|
2040
|
-
Montserrat: "Montserrat";
|
|
2041
|
-
Morocco: "Morocco";
|
|
2042
|
-
Mozambique: "Mozambique";
|
|
2043
|
-
Myanmar: "Myanmar";
|
|
2044
|
-
Namibia: "Namibia";
|
|
2045
|
-
Nauru: "Nauru";
|
|
2046
|
-
Nepal: "Nepal";
|
|
2047
|
-
Netherlands: "Netherlands";
|
|
2048
|
-
"New Caledonia": "New Caledonia";
|
|
2049
|
-
"New Zealand": "New Zealand";
|
|
2050
|
-
Nicaragua: "Nicaragua";
|
|
2051
|
-
Niger: "Niger";
|
|
2052
|
-
Nigeria: "Nigeria";
|
|
2053
|
-
Niue: "Niue";
|
|
2054
|
-
"Norfolk Island": "Norfolk Island";
|
|
2055
|
-
"North Korea": "North Korea";
|
|
2056
|
-
"North Macedonia": "North Macedonia";
|
|
2057
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
2058
|
-
Norway: "Norway";
|
|
2059
|
-
Oman: "Oman";
|
|
2060
|
-
Pakistan: "Pakistan";
|
|
2061
|
-
Palau: "Palau";
|
|
2062
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
2063
|
-
Panama: "Panama";
|
|
2064
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
2065
|
-
Paraguay: "Paraguay";
|
|
2066
|
-
Peru: "Peru";
|
|
2067
|
-
Philippines: "Philippines";
|
|
2068
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
2069
|
-
Poland: "Poland";
|
|
2070
|
-
Portugal: "Portugal";
|
|
2071
|
-
"Puerto Rico": "Puerto Rico";
|
|
2072
|
-
Qatar: "Qatar";
|
|
2073
|
-
Reunion: "Reunion";
|
|
2074
|
-
Romania: "Romania";
|
|
2075
|
-
Russia: "Russia";
|
|
2076
|
-
Rwanda: "Rwanda";
|
|
2077
|
-
"Saint Helena": "Saint Helena";
|
|
2078
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
2079
|
-
"Saint Lucia": "Saint Lucia";
|
|
2080
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
2081
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
2082
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
2083
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
2084
|
-
Samoa: "Samoa";
|
|
2085
|
-
"San Marino": "San Marino";
|
|
2086
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
2087
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
2088
|
-
Senegal: "Senegal";
|
|
2089
|
-
Serbia: "Serbia";
|
|
2090
|
-
Seychelles: "Seychelles";
|
|
2091
|
-
"Sierra Leone": "Sierra Leone";
|
|
2092
|
-
Singapore: "Singapore";
|
|
2093
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
2094
|
-
Slovakia: "Slovakia";
|
|
2095
|
-
Slovenia: "Slovenia";
|
|
2096
|
-
"Solomon Islands": "Solomon Islands";
|
|
2097
|
-
Somalia: "Somalia";
|
|
2098
|
-
"South Africa": "South Africa";
|
|
2099
|
-
"South Georgia": "South Georgia";
|
|
2100
|
-
"South Korea": "South Korea";
|
|
2101
|
-
"South Sudan": "South Sudan";
|
|
2102
|
-
Spain: "Spain";
|
|
2103
|
-
"Sri Lanka": "Sri Lanka";
|
|
2104
|
-
Sudan: "Sudan";
|
|
2105
|
-
Suriname: "Suriname";
|
|
2106
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
2107
|
-
Swaziland: "Swaziland";
|
|
2108
|
-
Sweden: "Sweden";
|
|
2109
|
-
Switzerland: "Switzerland";
|
|
2110
|
-
Syria: "Syria";
|
|
2111
|
-
Taiwan: "Taiwan";
|
|
2112
|
-
Tajikistan: "Tajikistan";
|
|
2113
|
-
Tanzania: "Tanzania";
|
|
2114
|
-
Thailand: "Thailand";
|
|
2115
|
-
"The Bahamas": "The Bahamas";
|
|
2116
|
-
Togo: "Togo";
|
|
2117
|
-
Tokelau: "Tokelau";
|
|
2118
|
-
Tonga: "Tonga";
|
|
2119
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
2120
|
-
Tunisia: "Tunisia";
|
|
2121
|
-
Turkey: "Turkey";
|
|
2122
|
-
Turkmenistan: "Turkmenistan";
|
|
2123
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
2124
|
-
Tuvalu: "Tuvalu";
|
|
2125
|
-
Uganda: "Uganda";
|
|
2126
|
-
Ukraine: "Ukraine";
|
|
2127
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
2128
|
-
"United Kingdom": "United Kingdom";
|
|
2129
|
-
"United States": "United States";
|
|
2130
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
2131
|
-
Uruguay: "Uruguay";
|
|
2132
|
-
Uzbekistan: "Uzbekistan";
|
|
2133
|
-
Vanuatu: "Vanuatu";
|
|
2134
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
2135
|
-
Venezuela: "Venezuela";
|
|
2136
|
-
Vietnam: "Vietnam";
|
|
2137
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
2138
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
2139
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
2140
|
-
"Western Sahara": "Western Sahara";
|
|
2141
|
-
Yemen: "Yemen";
|
|
2142
|
-
Zambia: "Zambia";
|
|
2143
|
-
Zimbabwe: "Zimbabwe";
|
|
2144
|
-
"Middle School": "Middle School";
|
|
2145
|
-
"High School": "High School";
|
|
2146
|
-
Diploma: "Diploma";
|
|
2147
|
-
Associate: "Associate";
|
|
2148
|
-
Bachelor: "Bachelor";
|
|
2149
|
-
Master: "Master";
|
|
2150
|
-
Doctor: "Doctor";
|
|
2151
|
-
"Elementary Proficiency": "Elementary Proficiency";
|
|
2152
|
-
"Limited Working Proficiency": "Limited Working Proficiency";
|
|
2153
|
-
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
2154
|
-
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
2155
|
-
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
2156
|
-
"10pt": "10pt";
|
|
2157
|
-
"11pt": "11pt";
|
|
2158
|
-
"12pt": "12pt";
|
|
2159
|
-
Lining: "Lining";
|
|
2160
|
-
OldStyle: "OldStyle";
|
|
2161
|
-
Auto: "Auto";
|
|
2162
|
-
Afrikaans: "Afrikaans";
|
|
2163
|
-
Albanian: "Albanian";
|
|
2164
|
-
Amharic: "Amharic";
|
|
2165
|
-
Arabic: "Arabic";
|
|
2166
|
-
Azerbaijani: "Azerbaijani";
|
|
2167
|
-
Belarusian: "Belarusian";
|
|
2168
|
-
Bengali: "Bengali";
|
|
2169
|
-
Bhojpuri: "Bhojpuri";
|
|
2170
|
-
Bulgarian: "Bulgarian";
|
|
2171
|
-
Burmese: "Burmese";
|
|
2172
|
-
Cantonese: "Cantonese";
|
|
2173
|
-
Catalan: "Catalan";
|
|
2174
|
-
Chinese: "Chinese";
|
|
2175
|
-
Croatian: "Croatian";
|
|
2176
|
-
Czech: "Czech";
|
|
2177
|
-
Danish: "Danish";
|
|
2178
|
-
Dutch: "Dutch";
|
|
2179
|
-
English: "English";
|
|
2180
|
-
Estonian: "Estonian";
|
|
2181
|
-
Farsi: "Farsi";
|
|
2182
|
-
Filipino: "Filipino";
|
|
2183
|
-
Finnish: "Finnish";
|
|
2184
|
-
French: "French";
|
|
2185
|
-
German: "German";
|
|
2186
|
-
Greek: "Greek";
|
|
2187
|
-
Gujarati: "Gujarati";
|
|
2188
|
-
Hausa: "Hausa";
|
|
2189
|
-
Hebrew: "Hebrew";
|
|
2190
|
-
Hindi: "Hindi";
|
|
2191
|
-
Hungarian: "Hungarian";
|
|
2192
|
-
Icelandic: "Icelandic";
|
|
2193
|
-
Igbo: "Igbo";
|
|
2194
|
-
Indonesian: "Indonesian";
|
|
2195
|
-
Irish: "Irish";
|
|
2196
|
-
Italian: "Italian";
|
|
2197
|
-
Japanese: "Japanese";
|
|
2198
|
-
Javanese: "Javanese";
|
|
2199
|
-
Kazakh: "Kazakh";
|
|
2200
|
-
Khmer: "Khmer";
|
|
2201
|
-
Korean: "Korean";
|
|
2202
|
-
Lahnda: "Lahnda";
|
|
2203
|
-
Latvian: "Latvian";
|
|
2204
|
-
Lithuanian: "Lithuanian";
|
|
2205
|
-
Malay: "Malay";
|
|
2206
|
-
Mandarin: "Mandarin";
|
|
2207
|
-
Marathi: "Marathi";
|
|
2208
|
-
Nepali: "Nepali";
|
|
2209
|
-
Norwegian: "Norwegian";
|
|
2210
|
-
Oromo: "Oromo";
|
|
2211
|
-
Pashto: "Pashto";
|
|
2212
|
-
Polish: "Polish";
|
|
2213
|
-
Portuguese: "Portuguese";
|
|
2214
|
-
Romanian: "Romanian";
|
|
2215
|
-
Russian: "Russian";
|
|
2216
|
-
Serbian: "Serbian";
|
|
2217
|
-
Shona: "Shona";
|
|
2218
|
-
Sinhala: "Sinhala";
|
|
2219
|
-
Slovak: "Slovak";
|
|
2220
|
-
Slovene: "Slovene";
|
|
2221
|
-
Somali: "Somali";
|
|
2222
|
-
Spanish: "Spanish";
|
|
2223
|
-
Sundanese: "Sundanese";
|
|
2224
|
-
Swahili: "Swahili";
|
|
2225
|
-
Swedish: "Swedish";
|
|
2226
|
-
Tagalog: "Tagalog";
|
|
2227
|
-
Tamil: "Tamil";
|
|
2228
|
-
Telugu: "Telugu";
|
|
2229
|
-
Thai: "Thai";
|
|
2230
|
-
Turkish: "Turkish";
|
|
2231
|
-
Ukrainian: "Ukrainian";
|
|
2232
|
-
Urdu: "Urdu";
|
|
2233
|
-
Uzbek: "Uzbek";
|
|
2234
|
-
Vietnamese: "Vietnamese";
|
|
2235
|
-
Yoruba: "Yoruba";
|
|
2236
|
-
Zulu: "Zulu";
|
|
2237
|
-
Novice: "Novice";
|
|
2238
|
-
Beginner: "Beginner";
|
|
2239
|
-
Intermediate: "Intermediate";
|
|
2240
|
-
Advanced: "Advanced";
|
|
2241
|
-
Expert: "Expert";
|
|
2242
|
-
en: "en";
|
|
2243
|
-
"zh-hans": "zh-hans";
|
|
2244
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
2245
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
2246
|
-
es: "es";
|
|
2247
|
-
Behance: "Behance";
|
|
2248
|
-
Dribbble: "Dribbble";
|
|
2249
|
-
Facebook: "Facebook";
|
|
2250
|
-
GitHub: "GitHub";
|
|
2251
|
-
Gitlab: "Gitlab";
|
|
2252
|
-
Instagram: "Instagram";
|
|
2253
|
-
Line: "Line";
|
|
2254
|
-
LinkedIn: "LinkedIn";
|
|
2255
|
-
Medium: "Medium";
|
|
2256
|
-
Pinterest: "Pinterest";
|
|
2257
|
-
Reddit: "Reddit";
|
|
2258
|
-
Snapchat: "Snapchat";
|
|
2259
|
-
"Stack Overflow": "Stack Overflow";
|
|
2260
|
-
Telegram: "Telegram";
|
|
2261
|
-
TikTok: "TikTok";
|
|
2262
|
-
Twitch: "Twitch";
|
|
2263
|
-
Twitter: "Twitter";
|
|
2264
|
-
Vimeo: "Vimeo";
|
|
2265
|
-
Weibo: "Weibo";
|
|
2266
|
-
WeChat: "WeChat";
|
|
2267
|
-
WhatsApp: "WhatsApp";
|
|
2268
|
-
YouTube: "YouTube";
|
|
2269
|
-
Zhihu: "Zhihu";
|
|
2270
|
-
"moderncv-banking": "moderncv-banking";
|
|
2271
|
-
"moderncv-casual": "moderncv-casual";
|
|
2272
|
-
"moderncv-classic": "moderncv-classic";
|
|
2273
|
-
}>>>;
|
|
2274
1958
|
page: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2275
|
-
showPageNumbers: z.ZodOptional<z.ZodNullable<z.
|
|
1959
|
+
showPageNumbers: z.ZodOptional<z.ZodNullable<z.ZodType<boolean, unknown, z.core.$ZodTypeInternals<boolean, unknown>>>>;
|
|
2276
1960
|
}, z.core.$strip>>>;
|
|
2277
1961
|
margins: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2278
|
-
top: z.ZodOptional<z.ZodNullable<z.
|
|
2279
|
-
bottom: z.ZodOptional<z.ZodNullable<z.
|
|
2280
|
-
left: z.ZodOptional<z.ZodNullable<z.
|
|
2281
|
-
right: z.ZodOptional<z.ZodNullable<z.
|
|
1962
|
+
top: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1963
|
+
bottom: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1964
|
+
left: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1965
|
+
right: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2282
1966
|
}, z.core.$strip>>>;
|
|
2283
1967
|
locale: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2284
|
-
language: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2285
|
-
Afghanistan: "Afghanistan";
|
|
2286
|
-
"Aland Islands": "Aland Islands";
|
|
2287
|
-
Albania: "Albania";
|
|
2288
|
-
Algeria: "Algeria";
|
|
2289
|
-
"American Samoa": "American Samoa";
|
|
2290
|
-
Andorra: "Andorra";
|
|
2291
|
-
Angola: "Angola";
|
|
2292
|
-
Anguilla: "Anguilla";
|
|
2293
|
-
Antarctica: "Antarctica";
|
|
2294
|
-
"Antigua And Barbuda": "Antigua And Barbuda";
|
|
2295
|
-
Argentina: "Argentina";
|
|
2296
|
-
Armenia: "Armenia";
|
|
2297
|
-
Aruba: "Aruba";
|
|
2298
|
-
Australia: "Australia";
|
|
2299
|
-
Austria: "Austria";
|
|
2300
|
-
Azerbaijan: "Azerbaijan";
|
|
2301
|
-
Bahrain: "Bahrain";
|
|
2302
|
-
Bangladesh: "Bangladesh";
|
|
2303
|
-
Barbados: "Barbados";
|
|
2304
|
-
Belarus: "Belarus";
|
|
2305
|
-
Belgium: "Belgium";
|
|
2306
|
-
Belize: "Belize";
|
|
2307
|
-
Benin: "Benin";
|
|
2308
|
-
Bermuda: "Bermuda";
|
|
2309
|
-
Bhutan: "Bhutan";
|
|
2310
|
-
Bolivia: "Bolivia";
|
|
2311
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
2312
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
2313
|
-
Botswana: "Botswana";
|
|
2314
|
-
"Bouvet Island": "Bouvet Island";
|
|
2315
|
-
Brazil: "Brazil";
|
|
2316
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
2317
|
-
Brunei: "Brunei";
|
|
2318
|
-
Bulgaria: "Bulgaria";
|
|
2319
|
-
"Burkina Faso": "Burkina Faso";
|
|
2320
|
-
Burundi: "Burundi";
|
|
2321
|
-
Cambodia: "Cambodia";
|
|
2322
|
-
Cameroon: "Cameroon";
|
|
2323
|
-
Canada: "Canada";
|
|
2324
|
-
"Cape Verde": "Cape Verde";
|
|
2325
|
-
"Cayman Islands": "Cayman Islands";
|
|
2326
|
-
"Central African Republic": "Central African Republic";
|
|
2327
|
-
Chad: "Chad";
|
|
2328
|
-
Chile: "Chile";
|
|
2329
|
-
China: "China";
|
|
2330
|
-
"Christmas Island": "Christmas Island";
|
|
2331
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
2332
|
-
Colombia: "Colombia";
|
|
2333
|
-
Comoros: "Comoros";
|
|
2334
|
-
Congo: "Congo";
|
|
2335
|
-
"Cook Islands": "Cook Islands";
|
|
2336
|
-
"Costa Rica": "Costa Rica";
|
|
2337
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
2338
|
-
Croatia: "Croatia";
|
|
2339
|
-
Cuba: "Cuba";
|
|
2340
|
-
Curaçao: "Curaçao";
|
|
2341
|
-
Cyprus: "Cyprus";
|
|
2342
|
-
"Czech Republic": "Czech Republic";
|
|
2343
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
2344
|
-
Denmark: "Denmark";
|
|
2345
|
-
Djibouti: "Djibouti";
|
|
2346
|
-
Dominica: "Dominica";
|
|
2347
|
-
"Dominican Republic": "Dominican Republic";
|
|
2348
|
-
"East Timor": "East Timor";
|
|
2349
|
-
Ecuador: "Ecuador";
|
|
2350
|
-
Egypt: "Egypt";
|
|
2351
|
-
"El Salvador": "El Salvador";
|
|
2352
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
2353
|
-
Eritrea: "Eritrea";
|
|
2354
|
-
Estonia: "Estonia";
|
|
2355
|
-
Ethiopia: "Ethiopia";
|
|
2356
|
-
"Falkland Islands": "Falkland Islands";
|
|
2357
|
-
"Faroe Islands": "Faroe Islands";
|
|
2358
|
-
"Fiji Islands": "Fiji Islands";
|
|
2359
|
-
Finland: "Finland";
|
|
2360
|
-
France: "France";
|
|
2361
|
-
"French Guiana": "French Guiana";
|
|
2362
|
-
"French Polynesia": "French Polynesia";
|
|
2363
|
-
"French Southern Territories": "French Southern Territories";
|
|
2364
|
-
Gabon: "Gabon";
|
|
2365
|
-
"Gambia The": "Gambia The";
|
|
2366
|
-
Georgia: "Georgia";
|
|
2367
|
-
Germany: "Germany";
|
|
2368
|
-
Ghana: "Ghana";
|
|
2369
|
-
Gibraltar: "Gibraltar";
|
|
2370
|
-
Greece: "Greece";
|
|
2371
|
-
Greenland: "Greenland";
|
|
2372
|
-
Grenada: "Grenada";
|
|
2373
|
-
Guadeloupe: "Guadeloupe";
|
|
2374
|
-
Guam: "Guam";
|
|
2375
|
-
Guatemala: "Guatemala";
|
|
2376
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
2377
|
-
Guinea: "Guinea";
|
|
2378
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
2379
|
-
Guyana: "Guyana";
|
|
2380
|
-
Haiti: "Haiti";
|
|
2381
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
2382
|
-
Honduras: "Honduras";
|
|
2383
|
-
"Hong Kong S.A.R.": "Hong Kong S.A.R.";
|
|
2384
|
-
Hungary: "Hungary";
|
|
2385
|
-
Iceland: "Iceland";
|
|
2386
|
-
India: "India";
|
|
2387
|
-
Indonesia: "Indonesia";
|
|
2388
|
-
Iran: "Iran";
|
|
2389
|
-
Iraq: "Iraq";
|
|
2390
|
-
Ireland: "Ireland";
|
|
2391
|
-
Israel: "Israel";
|
|
2392
|
-
Italy: "Italy";
|
|
2393
|
-
Jamaica: "Jamaica";
|
|
2394
|
-
Japan: "Japan";
|
|
2395
|
-
Jersey: "Jersey";
|
|
2396
|
-
Jordan: "Jordan";
|
|
2397
|
-
Kazakhstan: "Kazakhstan";
|
|
2398
|
-
Kenya: "Kenya";
|
|
2399
|
-
Kiribati: "Kiribati";
|
|
2400
|
-
Kosovo: "Kosovo";
|
|
2401
|
-
Kuwait: "Kuwait";
|
|
2402
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
2403
|
-
Laos: "Laos";
|
|
2404
|
-
Latvia: "Latvia";
|
|
2405
|
-
Lebanon: "Lebanon";
|
|
2406
|
-
Lesotho: "Lesotho";
|
|
2407
|
-
Liberia: "Liberia";
|
|
2408
|
-
Libya: "Libya";
|
|
2409
|
-
Liechtenstein: "Liechtenstein";
|
|
2410
|
-
Lithuania: "Lithuania";
|
|
2411
|
-
Luxembourg: "Luxembourg";
|
|
2412
|
-
"Macau S.A.R.": "Macau S.A.R.";
|
|
2413
|
-
Madagascar: "Madagascar";
|
|
2414
|
-
Malawi: "Malawi";
|
|
2415
|
-
Malaysia: "Malaysia";
|
|
2416
|
-
Maldives: "Maldives";
|
|
2417
|
-
Mali: "Mali";
|
|
2418
|
-
Malta: "Malta";
|
|
2419
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
2420
|
-
"Marshall Islands": "Marshall Islands";
|
|
2421
|
-
Martinique: "Martinique";
|
|
2422
|
-
Mauritania: "Mauritania";
|
|
2423
|
-
Mauritius: "Mauritius";
|
|
2424
|
-
Mayotte: "Mayotte";
|
|
2425
|
-
Mexico: "Mexico";
|
|
2426
|
-
Micronesia: "Micronesia";
|
|
2427
|
-
Moldova: "Moldova";
|
|
2428
|
-
Monaco: "Monaco";
|
|
2429
|
-
Mongolia: "Mongolia";
|
|
2430
|
-
Montenegro: "Montenegro";
|
|
2431
|
-
Montserrat: "Montserrat";
|
|
2432
|
-
Morocco: "Morocco";
|
|
2433
|
-
Mozambique: "Mozambique";
|
|
2434
|
-
Myanmar: "Myanmar";
|
|
2435
|
-
Namibia: "Namibia";
|
|
2436
|
-
Nauru: "Nauru";
|
|
2437
|
-
Nepal: "Nepal";
|
|
2438
|
-
Netherlands: "Netherlands";
|
|
2439
|
-
"New Caledonia": "New Caledonia";
|
|
2440
|
-
"New Zealand": "New Zealand";
|
|
2441
|
-
Nicaragua: "Nicaragua";
|
|
2442
|
-
Niger: "Niger";
|
|
2443
|
-
Nigeria: "Nigeria";
|
|
2444
|
-
Niue: "Niue";
|
|
2445
|
-
"Norfolk Island": "Norfolk Island";
|
|
2446
|
-
"North Korea": "North Korea";
|
|
2447
|
-
"North Macedonia": "North Macedonia";
|
|
2448
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
2449
|
-
Norway: "Norway";
|
|
2450
|
-
Oman: "Oman";
|
|
2451
|
-
Pakistan: "Pakistan";
|
|
2452
|
-
Palau: "Palau";
|
|
2453
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
2454
|
-
Panama: "Panama";
|
|
2455
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
2456
|
-
Paraguay: "Paraguay";
|
|
2457
|
-
Peru: "Peru";
|
|
2458
|
-
Philippines: "Philippines";
|
|
2459
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
2460
|
-
Poland: "Poland";
|
|
2461
|
-
Portugal: "Portugal";
|
|
2462
|
-
"Puerto Rico": "Puerto Rico";
|
|
2463
|
-
Qatar: "Qatar";
|
|
2464
|
-
Reunion: "Reunion";
|
|
2465
|
-
Romania: "Romania";
|
|
2466
|
-
Russia: "Russia";
|
|
2467
|
-
Rwanda: "Rwanda";
|
|
2468
|
-
"Saint Helena": "Saint Helena";
|
|
2469
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
2470
|
-
"Saint Lucia": "Saint Lucia";
|
|
2471
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
2472
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
2473
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
2474
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
2475
|
-
Samoa: "Samoa";
|
|
2476
|
-
"San Marino": "San Marino";
|
|
2477
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
2478
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
2479
|
-
Senegal: "Senegal";
|
|
2480
|
-
Serbia: "Serbia";
|
|
2481
|
-
Seychelles: "Seychelles";
|
|
2482
|
-
"Sierra Leone": "Sierra Leone";
|
|
2483
|
-
Singapore: "Singapore";
|
|
2484
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
2485
|
-
Slovakia: "Slovakia";
|
|
2486
|
-
Slovenia: "Slovenia";
|
|
2487
|
-
"Solomon Islands": "Solomon Islands";
|
|
2488
|
-
Somalia: "Somalia";
|
|
2489
|
-
"South Africa": "South Africa";
|
|
2490
|
-
"South Georgia": "South Georgia";
|
|
2491
|
-
"South Korea": "South Korea";
|
|
2492
|
-
"South Sudan": "South Sudan";
|
|
2493
|
-
Spain: "Spain";
|
|
2494
|
-
"Sri Lanka": "Sri Lanka";
|
|
2495
|
-
Sudan: "Sudan";
|
|
2496
|
-
Suriname: "Suriname";
|
|
2497
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
2498
|
-
Swaziland: "Swaziland";
|
|
2499
|
-
Sweden: "Sweden";
|
|
2500
|
-
Switzerland: "Switzerland";
|
|
2501
|
-
Syria: "Syria";
|
|
2502
|
-
Taiwan: "Taiwan";
|
|
2503
|
-
Tajikistan: "Tajikistan";
|
|
2504
|
-
Tanzania: "Tanzania";
|
|
2505
|
-
Thailand: "Thailand";
|
|
2506
|
-
"The Bahamas": "The Bahamas";
|
|
2507
|
-
Togo: "Togo";
|
|
2508
|
-
Tokelau: "Tokelau";
|
|
2509
|
-
Tonga: "Tonga";
|
|
2510
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
2511
|
-
Tunisia: "Tunisia";
|
|
2512
|
-
Turkey: "Turkey";
|
|
2513
|
-
Turkmenistan: "Turkmenistan";
|
|
2514
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
2515
|
-
Tuvalu: "Tuvalu";
|
|
2516
|
-
Uganda: "Uganda";
|
|
2517
|
-
Ukraine: "Ukraine";
|
|
2518
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
2519
|
-
"United Kingdom": "United Kingdom";
|
|
2520
|
-
"United States": "United States";
|
|
2521
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
2522
|
-
Uruguay: "Uruguay";
|
|
2523
|
-
Uzbekistan: "Uzbekistan";
|
|
2524
|
-
Vanuatu: "Vanuatu";
|
|
2525
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
2526
|
-
Venezuela: "Venezuela";
|
|
2527
|
-
Vietnam: "Vietnam";
|
|
2528
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
2529
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
2530
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
2531
|
-
"Western Sahara": "Western Sahara";
|
|
2532
|
-
Yemen: "Yemen";
|
|
2533
|
-
Zambia: "Zambia";
|
|
2534
|
-
Zimbabwe: "Zimbabwe";
|
|
2535
|
-
"Middle School": "Middle School";
|
|
2536
|
-
"High School": "High School";
|
|
2537
|
-
Diploma: "Diploma";
|
|
2538
|
-
Associate: "Associate";
|
|
2539
|
-
Bachelor: "Bachelor";
|
|
2540
|
-
Master: "Master";
|
|
2541
|
-
Doctor: "Doctor";
|
|
2542
|
-
"Elementary Proficiency": "Elementary Proficiency";
|
|
2543
|
-
"Limited Working Proficiency": "Limited Working Proficiency";
|
|
2544
|
-
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
2545
|
-
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
2546
|
-
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
2547
|
-
"10pt": "10pt";
|
|
2548
|
-
"11pt": "11pt";
|
|
2549
|
-
"12pt": "12pt";
|
|
2550
|
-
Lining: "Lining";
|
|
2551
|
-
OldStyle: "OldStyle";
|
|
2552
|
-
Auto: "Auto";
|
|
2553
|
-
Afrikaans: "Afrikaans";
|
|
2554
|
-
Albanian: "Albanian";
|
|
2555
|
-
Amharic: "Amharic";
|
|
2556
|
-
Arabic: "Arabic";
|
|
2557
|
-
Azerbaijani: "Azerbaijani";
|
|
2558
|
-
Belarusian: "Belarusian";
|
|
2559
|
-
Bengali: "Bengali";
|
|
2560
|
-
Bhojpuri: "Bhojpuri";
|
|
2561
|
-
Bulgarian: "Bulgarian";
|
|
2562
|
-
Burmese: "Burmese";
|
|
2563
|
-
Cantonese: "Cantonese";
|
|
2564
|
-
Catalan: "Catalan";
|
|
2565
|
-
Chinese: "Chinese";
|
|
2566
|
-
Croatian: "Croatian";
|
|
2567
|
-
Czech: "Czech";
|
|
2568
|
-
Danish: "Danish";
|
|
2569
|
-
Dutch: "Dutch";
|
|
2570
|
-
English: "English";
|
|
2571
|
-
Estonian: "Estonian";
|
|
2572
|
-
Farsi: "Farsi";
|
|
2573
|
-
Filipino: "Filipino";
|
|
2574
|
-
Finnish: "Finnish";
|
|
2575
|
-
French: "French";
|
|
2576
|
-
German: "German";
|
|
2577
|
-
Greek: "Greek";
|
|
2578
|
-
Gujarati: "Gujarati";
|
|
2579
|
-
Hausa: "Hausa";
|
|
2580
|
-
Hebrew: "Hebrew";
|
|
2581
|
-
Hindi: "Hindi";
|
|
2582
|
-
Hungarian: "Hungarian";
|
|
2583
|
-
Icelandic: "Icelandic";
|
|
2584
|
-
Igbo: "Igbo";
|
|
2585
|
-
Indonesian: "Indonesian";
|
|
2586
|
-
Irish: "Irish";
|
|
2587
|
-
Italian: "Italian";
|
|
2588
|
-
Japanese: "Japanese";
|
|
2589
|
-
Javanese: "Javanese";
|
|
2590
|
-
Kazakh: "Kazakh";
|
|
2591
|
-
Khmer: "Khmer";
|
|
2592
|
-
Korean: "Korean";
|
|
2593
|
-
Lahnda: "Lahnda";
|
|
2594
|
-
Latvian: "Latvian";
|
|
2595
|
-
Lithuanian: "Lithuanian";
|
|
2596
|
-
Malay: "Malay";
|
|
2597
|
-
Mandarin: "Mandarin";
|
|
2598
|
-
Marathi: "Marathi";
|
|
2599
|
-
Nepali: "Nepali";
|
|
2600
|
-
Norwegian: "Norwegian";
|
|
2601
|
-
Oromo: "Oromo";
|
|
2602
|
-
Pashto: "Pashto";
|
|
2603
|
-
Polish: "Polish";
|
|
2604
|
-
Portuguese: "Portuguese";
|
|
2605
|
-
Romanian: "Romanian";
|
|
2606
|
-
Russian: "Russian";
|
|
2607
|
-
Serbian: "Serbian";
|
|
2608
|
-
Shona: "Shona";
|
|
2609
|
-
Sinhala: "Sinhala";
|
|
2610
|
-
Slovak: "Slovak";
|
|
2611
|
-
Slovene: "Slovene";
|
|
2612
|
-
Somali: "Somali";
|
|
2613
|
-
Spanish: "Spanish";
|
|
2614
|
-
Sundanese: "Sundanese";
|
|
2615
|
-
Swahili: "Swahili";
|
|
2616
|
-
Swedish: "Swedish";
|
|
2617
|
-
Tagalog: "Tagalog";
|
|
2618
|
-
Tamil: "Tamil";
|
|
2619
|
-
Telugu: "Telugu";
|
|
2620
|
-
Thai: "Thai";
|
|
2621
|
-
Turkish: "Turkish";
|
|
2622
|
-
Ukrainian: "Ukrainian";
|
|
2623
|
-
Urdu: "Urdu";
|
|
2624
|
-
Uzbek: "Uzbek";
|
|
2625
|
-
Vietnamese: "Vietnamese";
|
|
2626
|
-
Yoruba: "Yoruba";
|
|
2627
|
-
Zulu: "Zulu";
|
|
2628
|
-
Novice: "Novice";
|
|
2629
|
-
Beginner: "Beginner";
|
|
2630
|
-
Intermediate: "Intermediate";
|
|
2631
|
-
Advanced: "Advanced";
|
|
2632
|
-
Expert: "Expert";
|
|
2633
|
-
en: "en";
|
|
2634
|
-
"zh-hans": "zh-hans";
|
|
2635
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
2636
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
2637
|
-
es: "es";
|
|
2638
|
-
Behance: "Behance";
|
|
2639
|
-
Dribbble: "Dribbble";
|
|
2640
|
-
Facebook: "Facebook";
|
|
2641
|
-
GitHub: "GitHub";
|
|
2642
|
-
Gitlab: "Gitlab";
|
|
2643
|
-
Instagram: "Instagram";
|
|
2644
|
-
Line: "Line";
|
|
2645
|
-
LinkedIn: "LinkedIn";
|
|
2646
|
-
Medium: "Medium";
|
|
2647
|
-
Pinterest: "Pinterest";
|
|
2648
|
-
Reddit: "Reddit";
|
|
2649
|
-
Snapchat: "Snapchat";
|
|
2650
|
-
"Stack Overflow": "Stack Overflow";
|
|
2651
|
-
Telegram: "Telegram";
|
|
2652
|
-
TikTok: "TikTok";
|
|
2653
|
-
Twitch: "Twitch";
|
|
2654
|
-
Twitter: "Twitter";
|
|
2655
|
-
Vimeo: "Vimeo";
|
|
2656
|
-
Weibo: "Weibo";
|
|
2657
|
-
WeChat: "WeChat";
|
|
2658
|
-
WhatsApp: "WhatsApp";
|
|
2659
|
-
YouTube: "YouTube";
|
|
2660
|
-
Zhihu: "Zhihu";
|
|
2661
|
-
"moderncv-banking": "moderncv-banking";
|
|
2662
|
-
"moderncv-casual": "moderncv-casual";
|
|
2663
|
-
"moderncv-classic": "moderncv-classic";
|
|
2664
|
-
}>>>;
|
|
1968
|
+
language: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
2665
1969
|
}, z.core.$strip>>>;
|
|
2666
1970
|
latex: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2667
1971
|
fontspec: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2668
|
-
numbers: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2669
|
-
Afghanistan: "Afghanistan";
|
|
2670
|
-
"Aland Islands": "Aland Islands";
|
|
2671
|
-
Albania: "Albania";
|
|
2672
|
-
Algeria: "Algeria";
|
|
2673
|
-
"American Samoa": "American Samoa";
|
|
2674
|
-
Andorra: "Andorra";
|
|
2675
|
-
Angola: "Angola";
|
|
2676
|
-
Anguilla: "Anguilla";
|
|
2677
|
-
Antarctica: "Antarctica";
|
|
2678
|
-
"Antigua And Barbuda": "Antigua And Barbuda";
|
|
2679
|
-
Argentina: "Argentina";
|
|
2680
|
-
Armenia: "Armenia";
|
|
2681
|
-
Aruba: "Aruba";
|
|
2682
|
-
Australia: "Australia";
|
|
2683
|
-
Austria: "Austria";
|
|
2684
|
-
Azerbaijan: "Azerbaijan";
|
|
2685
|
-
Bahrain: "Bahrain";
|
|
2686
|
-
Bangladesh: "Bangladesh";
|
|
2687
|
-
Barbados: "Barbados";
|
|
2688
|
-
Belarus: "Belarus";
|
|
2689
|
-
Belgium: "Belgium";
|
|
2690
|
-
Belize: "Belize";
|
|
2691
|
-
Benin: "Benin";
|
|
2692
|
-
Bermuda: "Bermuda";
|
|
2693
|
-
Bhutan: "Bhutan";
|
|
2694
|
-
Bolivia: "Bolivia";
|
|
2695
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
2696
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
2697
|
-
Botswana: "Botswana";
|
|
2698
|
-
"Bouvet Island": "Bouvet Island";
|
|
2699
|
-
Brazil: "Brazil";
|
|
2700
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
2701
|
-
Brunei: "Brunei";
|
|
2702
|
-
Bulgaria: "Bulgaria";
|
|
2703
|
-
"Burkina Faso": "Burkina Faso";
|
|
2704
|
-
Burundi: "Burundi";
|
|
2705
|
-
Cambodia: "Cambodia";
|
|
2706
|
-
Cameroon: "Cameroon";
|
|
2707
|
-
Canada: "Canada";
|
|
2708
|
-
"Cape Verde": "Cape Verde";
|
|
2709
|
-
"Cayman Islands": "Cayman Islands";
|
|
2710
|
-
"Central African Republic": "Central African Republic";
|
|
2711
|
-
Chad: "Chad";
|
|
2712
|
-
Chile: "Chile";
|
|
2713
|
-
China: "China";
|
|
2714
|
-
"Christmas Island": "Christmas Island";
|
|
2715
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
2716
|
-
Colombia: "Colombia";
|
|
2717
|
-
Comoros: "Comoros";
|
|
2718
|
-
Congo: "Congo";
|
|
2719
|
-
"Cook Islands": "Cook Islands";
|
|
2720
|
-
"Costa Rica": "Costa Rica";
|
|
2721
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
2722
|
-
Croatia: "Croatia";
|
|
2723
|
-
Cuba: "Cuba";
|
|
2724
|
-
Curaçao: "Curaçao";
|
|
2725
|
-
Cyprus: "Cyprus";
|
|
2726
|
-
"Czech Republic": "Czech Republic";
|
|
2727
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
2728
|
-
Denmark: "Denmark";
|
|
2729
|
-
Djibouti: "Djibouti";
|
|
2730
|
-
Dominica: "Dominica";
|
|
2731
|
-
"Dominican Republic": "Dominican Republic";
|
|
2732
|
-
"East Timor": "East Timor";
|
|
2733
|
-
Ecuador: "Ecuador";
|
|
2734
|
-
Egypt: "Egypt";
|
|
2735
|
-
"El Salvador": "El Salvador";
|
|
2736
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
2737
|
-
Eritrea: "Eritrea";
|
|
2738
|
-
Estonia: "Estonia";
|
|
2739
|
-
Ethiopia: "Ethiopia";
|
|
2740
|
-
"Falkland Islands": "Falkland Islands";
|
|
2741
|
-
"Faroe Islands": "Faroe Islands";
|
|
2742
|
-
"Fiji Islands": "Fiji Islands";
|
|
2743
|
-
Finland: "Finland";
|
|
2744
|
-
France: "France";
|
|
2745
|
-
"French Guiana": "French Guiana";
|
|
2746
|
-
"French Polynesia": "French Polynesia";
|
|
2747
|
-
"French Southern Territories": "French Southern Territories";
|
|
2748
|
-
Gabon: "Gabon";
|
|
2749
|
-
"Gambia The": "Gambia The";
|
|
2750
|
-
Georgia: "Georgia";
|
|
2751
|
-
Germany: "Germany";
|
|
2752
|
-
Ghana: "Ghana";
|
|
2753
|
-
Gibraltar: "Gibraltar";
|
|
2754
|
-
Greece: "Greece";
|
|
2755
|
-
Greenland: "Greenland";
|
|
2756
|
-
Grenada: "Grenada";
|
|
2757
|
-
Guadeloupe: "Guadeloupe";
|
|
2758
|
-
Guam: "Guam";
|
|
2759
|
-
Guatemala: "Guatemala";
|
|
2760
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
2761
|
-
Guinea: "Guinea";
|
|
2762
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
2763
|
-
Guyana: "Guyana";
|
|
2764
|
-
Haiti: "Haiti";
|
|
2765
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
2766
|
-
Honduras: "Honduras";
|
|
2767
|
-
"Hong Kong S.A.R.": "Hong Kong S.A.R.";
|
|
2768
|
-
Hungary: "Hungary";
|
|
2769
|
-
Iceland: "Iceland";
|
|
2770
|
-
India: "India";
|
|
2771
|
-
Indonesia: "Indonesia";
|
|
2772
|
-
Iran: "Iran";
|
|
2773
|
-
Iraq: "Iraq";
|
|
2774
|
-
Ireland: "Ireland";
|
|
2775
|
-
Israel: "Israel";
|
|
2776
|
-
Italy: "Italy";
|
|
2777
|
-
Jamaica: "Jamaica";
|
|
2778
|
-
Japan: "Japan";
|
|
2779
|
-
Jersey: "Jersey";
|
|
2780
|
-
Jordan: "Jordan";
|
|
2781
|
-
Kazakhstan: "Kazakhstan";
|
|
2782
|
-
Kenya: "Kenya";
|
|
2783
|
-
Kiribati: "Kiribati";
|
|
2784
|
-
Kosovo: "Kosovo";
|
|
2785
|
-
Kuwait: "Kuwait";
|
|
2786
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
2787
|
-
Laos: "Laos";
|
|
2788
|
-
Latvia: "Latvia";
|
|
2789
|
-
Lebanon: "Lebanon";
|
|
2790
|
-
Lesotho: "Lesotho";
|
|
2791
|
-
Liberia: "Liberia";
|
|
2792
|
-
Libya: "Libya";
|
|
2793
|
-
Liechtenstein: "Liechtenstein";
|
|
2794
|
-
Lithuania: "Lithuania";
|
|
2795
|
-
Luxembourg: "Luxembourg";
|
|
2796
|
-
"Macau S.A.R.": "Macau S.A.R.";
|
|
2797
|
-
Madagascar: "Madagascar";
|
|
2798
|
-
Malawi: "Malawi";
|
|
2799
|
-
Malaysia: "Malaysia";
|
|
2800
|
-
Maldives: "Maldives";
|
|
2801
|
-
Mali: "Mali";
|
|
2802
|
-
Malta: "Malta";
|
|
2803
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
2804
|
-
"Marshall Islands": "Marshall Islands";
|
|
2805
|
-
Martinique: "Martinique";
|
|
2806
|
-
Mauritania: "Mauritania";
|
|
2807
|
-
Mauritius: "Mauritius";
|
|
2808
|
-
Mayotte: "Mayotte";
|
|
2809
|
-
Mexico: "Mexico";
|
|
2810
|
-
Micronesia: "Micronesia";
|
|
2811
|
-
Moldova: "Moldova";
|
|
2812
|
-
Monaco: "Monaco";
|
|
2813
|
-
Mongolia: "Mongolia";
|
|
2814
|
-
Montenegro: "Montenegro";
|
|
2815
|
-
Montserrat: "Montserrat";
|
|
2816
|
-
Morocco: "Morocco";
|
|
2817
|
-
Mozambique: "Mozambique";
|
|
2818
|
-
Myanmar: "Myanmar";
|
|
2819
|
-
Namibia: "Namibia";
|
|
2820
|
-
Nauru: "Nauru";
|
|
2821
|
-
Nepal: "Nepal";
|
|
2822
|
-
Netherlands: "Netherlands";
|
|
2823
|
-
"New Caledonia": "New Caledonia";
|
|
2824
|
-
"New Zealand": "New Zealand";
|
|
2825
|
-
Nicaragua: "Nicaragua";
|
|
2826
|
-
Niger: "Niger";
|
|
2827
|
-
Nigeria: "Nigeria";
|
|
2828
|
-
Niue: "Niue";
|
|
2829
|
-
"Norfolk Island": "Norfolk Island";
|
|
2830
|
-
"North Korea": "North Korea";
|
|
2831
|
-
"North Macedonia": "North Macedonia";
|
|
2832
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
2833
|
-
Norway: "Norway";
|
|
2834
|
-
Oman: "Oman";
|
|
2835
|
-
Pakistan: "Pakistan";
|
|
2836
|
-
Palau: "Palau";
|
|
2837
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
2838
|
-
Panama: "Panama";
|
|
2839
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
2840
|
-
Paraguay: "Paraguay";
|
|
2841
|
-
Peru: "Peru";
|
|
2842
|
-
Philippines: "Philippines";
|
|
2843
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
2844
|
-
Poland: "Poland";
|
|
2845
|
-
Portugal: "Portugal";
|
|
2846
|
-
"Puerto Rico": "Puerto Rico";
|
|
2847
|
-
Qatar: "Qatar";
|
|
2848
|
-
Reunion: "Reunion";
|
|
2849
|
-
Romania: "Romania";
|
|
2850
|
-
Russia: "Russia";
|
|
2851
|
-
Rwanda: "Rwanda";
|
|
2852
|
-
"Saint Helena": "Saint Helena";
|
|
2853
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
2854
|
-
"Saint Lucia": "Saint Lucia";
|
|
2855
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
2856
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
2857
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
2858
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
2859
|
-
Samoa: "Samoa";
|
|
2860
|
-
"San Marino": "San Marino";
|
|
2861
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
2862
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
2863
|
-
Senegal: "Senegal";
|
|
2864
|
-
Serbia: "Serbia";
|
|
2865
|
-
Seychelles: "Seychelles";
|
|
2866
|
-
"Sierra Leone": "Sierra Leone";
|
|
2867
|
-
Singapore: "Singapore";
|
|
2868
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
2869
|
-
Slovakia: "Slovakia";
|
|
2870
|
-
Slovenia: "Slovenia";
|
|
2871
|
-
"Solomon Islands": "Solomon Islands";
|
|
2872
|
-
Somalia: "Somalia";
|
|
2873
|
-
"South Africa": "South Africa";
|
|
2874
|
-
"South Georgia": "South Georgia";
|
|
2875
|
-
"South Korea": "South Korea";
|
|
2876
|
-
"South Sudan": "South Sudan";
|
|
2877
|
-
Spain: "Spain";
|
|
2878
|
-
"Sri Lanka": "Sri Lanka";
|
|
2879
|
-
Sudan: "Sudan";
|
|
2880
|
-
Suriname: "Suriname";
|
|
2881
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
2882
|
-
Swaziland: "Swaziland";
|
|
2883
|
-
Sweden: "Sweden";
|
|
2884
|
-
Switzerland: "Switzerland";
|
|
2885
|
-
Syria: "Syria";
|
|
2886
|
-
Taiwan: "Taiwan";
|
|
2887
|
-
Tajikistan: "Tajikistan";
|
|
2888
|
-
Tanzania: "Tanzania";
|
|
2889
|
-
Thailand: "Thailand";
|
|
2890
|
-
"The Bahamas": "The Bahamas";
|
|
2891
|
-
Togo: "Togo";
|
|
2892
|
-
Tokelau: "Tokelau";
|
|
2893
|
-
Tonga: "Tonga";
|
|
2894
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
2895
|
-
Tunisia: "Tunisia";
|
|
2896
|
-
Turkey: "Turkey";
|
|
2897
|
-
Turkmenistan: "Turkmenistan";
|
|
2898
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
2899
|
-
Tuvalu: "Tuvalu";
|
|
2900
|
-
Uganda: "Uganda";
|
|
2901
|
-
Ukraine: "Ukraine";
|
|
2902
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
2903
|
-
"United Kingdom": "United Kingdom";
|
|
2904
|
-
"United States": "United States";
|
|
2905
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
2906
|
-
Uruguay: "Uruguay";
|
|
2907
|
-
Uzbekistan: "Uzbekistan";
|
|
2908
|
-
Vanuatu: "Vanuatu";
|
|
2909
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
2910
|
-
Venezuela: "Venezuela";
|
|
2911
|
-
Vietnam: "Vietnam";
|
|
2912
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
2913
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
2914
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
2915
|
-
"Western Sahara": "Western Sahara";
|
|
2916
|
-
Yemen: "Yemen";
|
|
2917
|
-
Zambia: "Zambia";
|
|
2918
|
-
Zimbabwe: "Zimbabwe";
|
|
2919
|
-
"Middle School": "Middle School";
|
|
2920
|
-
"High School": "High School";
|
|
2921
|
-
Diploma: "Diploma";
|
|
2922
|
-
Associate: "Associate";
|
|
2923
|
-
Bachelor: "Bachelor";
|
|
2924
|
-
Master: "Master";
|
|
2925
|
-
Doctor: "Doctor";
|
|
2926
|
-
"Elementary Proficiency": "Elementary Proficiency";
|
|
2927
|
-
"Limited Working Proficiency": "Limited Working Proficiency";
|
|
2928
|
-
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
2929
|
-
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
2930
|
-
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
2931
|
-
"10pt": "10pt";
|
|
2932
|
-
"11pt": "11pt";
|
|
2933
|
-
"12pt": "12pt";
|
|
2934
|
-
Lining: "Lining";
|
|
2935
|
-
OldStyle: "OldStyle";
|
|
2936
|
-
Auto: "Auto";
|
|
2937
|
-
Afrikaans: "Afrikaans";
|
|
2938
|
-
Albanian: "Albanian";
|
|
2939
|
-
Amharic: "Amharic";
|
|
2940
|
-
Arabic: "Arabic";
|
|
2941
|
-
Azerbaijani: "Azerbaijani";
|
|
2942
|
-
Belarusian: "Belarusian";
|
|
2943
|
-
Bengali: "Bengali";
|
|
2944
|
-
Bhojpuri: "Bhojpuri";
|
|
2945
|
-
Bulgarian: "Bulgarian";
|
|
2946
|
-
Burmese: "Burmese";
|
|
2947
|
-
Cantonese: "Cantonese";
|
|
2948
|
-
Catalan: "Catalan";
|
|
2949
|
-
Chinese: "Chinese";
|
|
2950
|
-
Croatian: "Croatian";
|
|
2951
|
-
Czech: "Czech";
|
|
2952
|
-
Danish: "Danish";
|
|
2953
|
-
Dutch: "Dutch";
|
|
2954
|
-
English: "English";
|
|
2955
|
-
Estonian: "Estonian";
|
|
2956
|
-
Farsi: "Farsi";
|
|
2957
|
-
Filipino: "Filipino";
|
|
2958
|
-
Finnish: "Finnish";
|
|
2959
|
-
French: "French";
|
|
2960
|
-
German: "German";
|
|
2961
|
-
Greek: "Greek";
|
|
2962
|
-
Gujarati: "Gujarati";
|
|
2963
|
-
Hausa: "Hausa";
|
|
2964
|
-
Hebrew: "Hebrew";
|
|
2965
|
-
Hindi: "Hindi";
|
|
2966
|
-
Hungarian: "Hungarian";
|
|
2967
|
-
Icelandic: "Icelandic";
|
|
2968
|
-
Igbo: "Igbo";
|
|
2969
|
-
Indonesian: "Indonesian";
|
|
2970
|
-
Irish: "Irish";
|
|
2971
|
-
Italian: "Italian";
|
|
2972
|
-
Japanese: "Japanese";
|
|
2973
|
-
Javanese: "Javanese";
|
|
2974
|
-
Kazakh: "Kazakh";
|
|
2975
|
-
Khmer: "Khmer";
|
|
2976
|
-
Korean: "Korean";
|
|
2977
|
-
Lahnda: "Lahnda";
|
|
2978
|
-
Latvian: "Latvian";
|
|
2979
|
-
Lithuanian: "Lithuanian";
|
|
2980
|
-
Malay: "Malay";
|
|
2981
|
-
Mandarin: "Mandarin";
|
|
2982
|
-
Marathi: "Marathi";
|
|
2983
|
-
Nepali: "Nepali";
|
|
2984
|
-
Norwegian: "Norwegian";
|
|
2985
|
-
Oromo: "Oromo";
|
|
2986
|
-
Pashto: "Pashto";
|
|
2987
|
-
Polish: "Polish";
|
|
2988
|
-
Portuguese: "Portuguese";
|
|
2989
|
-
Romanian: "Romanian";
|
|
2990
|
-
Russian: "Russian";
|
|
2991
|
-
Serbian: "Serbian";
|
|
2992
|
-
Shona: "Shona";
|
|
2993
|
-
Sinhala: "Sinhala";
|
|
2994
|
-
Slovak: "Slovak";
|
|
2995
|
-
Slovene: "Slovene";
|
|
2996
|
-
Somali: "Somali";
|
|
2997
|
-
Spanish: "Spanish";
|
|
2998
|
-
Sundanese: "Sundanese";
|
|
2999
|
-
Swahili: "Swahili";
|
|
3000
|
-
Swedish: "Swedish";
|
|
3001
|
-
Tagalog: "Tagalog";
|
|
3002
|
-
Tamil: "Tamil";
|
|
3003
|
-
Telugu: "Telugu";
|
|
3004
|
-
Thai: "Thai";
|
|
3005
|
-
Turkish: "Turkish";
|
|
3006
|
-
Ukrainian: "Ukrainian";
|
|
3007
|
-
Urdu: "Urdu";
|
|
3008
|
-
Uzbek: "Uzbek";
|
|
3009
|
-
Vietnamese: "Vietnamese";
|
|
3010
|
-
Yoruba: "Yoruba";
|
|
3011
|
-
Zulu: "Zulu";
|
|
3012
|
-
Novice: "Novice";
|
|
3013
|
-
Beginner: "Beginner";
|
|
3014
|
-
Intermediate: "Intermediate";
|
|
3015
|
-
Advanced: "Advanced";
|
|
3016
|
-
Expert: "Expert";
|
|
3017
|
-
en: "en";
|
|
3018
|
-
"zh-hans": "zh-hans";
|
|
3019
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
3020
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
3021
|
-
es: "es";
|
|
3022
|
-
Behance: "Behance";
|
|
3023
|
-
Dribbble: "Dribbble";
|
|
3024
|
-
Facebook: "Facebook";
|
|
3025
|
-
GitHub: "GitHub";
|
|
3026
|
-
Gitlab: "Gitlab";
|
|
3027
|
-
Instagram: "Instagram";
|
|
3028
|
-
Line: "Line";
|
|
3029
|
-
LinkedIn: "LinkedIn";
|
|
3030
|
-
Medium: "Medium";
|
|
3031
|
-
Pinterest: "Pinterest";
|
|
3032
|
-
Reddit: "Reddit";
|
|
3033
|
-
Snapchat: "Snapchat";
|
|
3034
|
-
"Stack Overflow": "Stack Overflow";
|
|
3035
|
-
Telegram: "Telegram";
|
|
3036
|
-
TikTok: "TikTok";
|
|
3037
|
-
Twitch: "Twitch";
|
|
3038
|
-
Twitter: "Twitter";
|
|
3039
|
-
Vimeo: "Vimeo";
|
|
3040
|
-
Weibo: "Weibo";
|
|
3041
|
-
WeChat: "WeChat";
|
|
3042
|
-
WhatsApp: "WhatsApp";
|
|
3043
|
-
YouTube: "YouTube";
|
|
3044
|
-
Zhihu: "Zhihu";
|
|
3045
|
-
"moderncv-banking": "moderncv-banking";
|
|
3046
|
-
"moderncv-casual": "moderncv-casual";
|
|
3047
|
-
"moderncv-classic": "moderncv-classic";
|
|
3048
|
-
}>>>;
|
|
1972
|
+
numbers: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
3049
1973
|
}, z.core.$strip>>>;
|
|
3050
1974
|
}, z.core.$strip>>>;
|
|
3051
1975
|
}, z.core.$strip>>>;
|
|
@@ -3445,6 +2369,18 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3445
2369
|
WhatsApp: "WhatsApp";
|
|
3446
2370
|
YouTube: "YouTube";
|
|
3447
2371
|
Zhihu: "Zhihu";
|
|
2372
|
+
basics: "basics";
|
|
2373
|
+
education: "education";
|
|
2374
|
+
work: "work";
|
|
2375
|
+
volunteer: "volunteer";
|
|
2376
|
+
awards: "awards";
|
|
2377
|
+
certificates: "certificates";
|
|
2378
|
+
publications: "publications";
|
|
2379
|
+
skills: "skills";
|
|
2380
|
+
languages: "languages";
|
|
2381
|
+
interests: "interests";
|
|
2382
|
+
references: "references";
|
|
2383
|
+
projects: "projects";
|
|
3448
2384
|
"moderncv-banking": "moderncv-banking";
|
|
3449
2385
|
"moderncv-casual": "moderncv-casual";
|
|
3450
2386
|
"moderncv-classic": "moderncv-classic";
|
|
@@ -3853,6 +2789,18 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3853
2789
|
WhatsApp: "WhatsApp";
|
|
3854
2790
|
YouTube: "YouTube";
|
|
3855
2791
|
Zhihu: "Zhihu";
|
|
2792
|
+
basics: "basics";
|
|
2793
|
+
education: "education";
|
|
2794
|
+
work: "work";
|
|
2795
|
+
volunteer: "volunteer";
|
|
2796
|
+
awards: "awards";
|
|
2797
|
+
certificates: "certificates";
|
|
2798
|
+
publications: "publications";
|
|
2799
|
+
skills: "skills";
|
|
2800
|
+
languages: "languages";
|
|
2801
|
+
interests: "interests";
|
|
2802
|
+
references: "references";
|
|
2803
|
+
projects: "projects";
|
|
3856
2804
|
"moderncv-banking": "moderncv-banking";
|
|
3857
2805
|
"moderncv-casual": "moderncv-casual";
|
|
3858
2806
|
"moderncv-classic": "moderncv-classic";
|
|
@@ -3863,7 +2811,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
3863
2811
|
location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3864
2812
|
city: z.ZodString;
|
|
3865
2813
|
address: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3866
|
-
country: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
2814
|
+
country: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
3867
2815
|
postalCode: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3868
2816
|
region: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3869
2817
|
}, z.core.$strip>>>;
|
|
@@ -4245,6 +3193,18 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
4245
3193
|
WhatsApp: "WhatsApp";
|
|
4246
3194
|
YouTube: "YouTube";
|
|
4247
3195
|
Zhihu: "Zhihu";
|
|
3196
|
+
basics: "basics";
|
|
3197
|
+
education: "education";
|
|
3198
|
+
work: "work";
|
|
3199
|
+
volunteer: "volunteer";
|
|
3200
|
+
awards: "awards";
|
|
3201
|
+
certificates: "certificates";
|
|
3202
|
+
publications: "publications";
|
|
3203
|
+
skills: "skills";
|
|
3204
|
+
languages: "languages";
|
|
3205
|
+
interests: "interests";
|
|
3206
|
+
references: "references";
|
|
3207
|
+
projects: "projects";
|
|
4248
3208
|
"moderncv-banking": "moderncv-banking";
|
|
4249
3209
|
"moderncv-casual": "moderncv-casual";
|
|
4250
3210
|
"moderncv-classic": "moderncv-classic";
|
|
@@ -4626,6 +3586,18 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
4626
3586
|
WhatsApp: "WhatsApp";
|
|
4627
3587
|
YouTube: "YouTube";
|
|
4628
3588
|
Zhihu: "Zhihu";
|
|
3589
|
+
basics: "basics";
|
|
3590
|
+
education: "education";
|
|
3591
|
+
work: "work";
|
|
3592
|
+
volunteer: "volunteer";
|
|
3593
|
+
awards: "awards";
|
|
3594
|
+
certificates: "certificates";
|
|
3595
|
+
publications: "publications";
|
|
3596
|
+
skills: "skills";
|
|
3597
|
+
languages: "languages";
|
|
3598
|
+
interests: "interests";
|
|
3599
|
+
references: "references";
|
|
3600
|
+
projects: "projects";
|
|
4629
3601
|
"moderncv-banking": "moderncv-banking";
|
|
4630
3602
|
"moderncv-casual": "moderncv-casual";
|
|
4631
3603
|
"moderncv-classic": "moderncv-classic";
|
|
@@ -5028,6 +4000,18 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
5028
4000
|
WhatsApp: "WhatsApp";
|
|
5029
4001
|
YouTube: "YouTube";
|
|
5030
4002
|
Zhihu: "Zhihu";
|
|
4003
|
+
basics: "basics";
|
|
4004
|
+
education: "education";
|
|
4005
|
+
work: "work";
|
|
4006
|
+
volunteer: "volunteer";
|
|
4007
|
+
awards: "awards";
|
|
4008
|
+
certificates: "certificates";
|
|
4009
|
+
publications: "publications";
|
|
4010
|
+
skills: "skills";
|
|
4011
|
+
languages: "languages";
|
|
4012
|
+
interests: "interests";
|
|
4013
|
+
references: "references";
|
|
4014
|
+
projects: "projects";
|
|
5031
4015
|
"moderncv-banking": "moderncv-banking";
|
|
5032
4016
|
"moderncv-casual": "moderncv-casual";
|
|
5033
4017
|
"moderncv-classic": "moderncv-classic";
|
|
@@ -5085,7 +4069,7 @@ type OptionTranslation = {
|
|
|
5085
4069
|
/** Translations for language names. */
|
|
5086
4070
|
languages: Record<Language, string>;
|
|
5087
4071
|
/** Translations for resume section titles. */
|
|
5088
|
-
sections: Record<
|
|
4072
|
+
sections: Record<OrderableSectionID, string>;
|
|
5089
4073
|
/** Translations for skill proficiency levels. */
|
|
5090
4074
|
skills: Record<Level, string>;
|
|
5091
4075
|
};
|
|
@@ -5153,6 +4137,44 @@ type TemplateTranslationValue = {
|
|
|
5153
4137
|
*/
|
|
5154
4138
|
declare function getTemplateTranslations(language?: LocaleLanguage): TemplateTranslationValue;
|
|
5155
4139
|
|
|
4140
|
+
/**
|
|
4141
|
+
* MIT License
|
|
4142
|
+
*
|
|
4143
|
+
* Copyright (c) 2023–Present PPResume (https://ppresume.com)
|
|
4144
|
+
*
|
|
4145
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4146
|
+
* of this software and associated documentation files (the "Software"), to
|
|
4147
|
+
* deal in the Software without restriction, including without limitation the
|
|
4148
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
4149
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
4150
|
+
* furnished to do so, subject to the following conditions:
|
|
4151
|
+
*
|
|
4152
|
+
* The above copyright notice and this permission notice shall be included in
|
|
4153
|
+
* all copies or substantial portions of the Software.
|
|
4154
|
+
*
|
|
4155
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4156
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4157
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4158
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4159
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
4160
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
4161
|
+
* IN THE SOFTWARE.
|
|
4162
|
+
*/
|
|
4163
|
+
/**
|
|
4164
|
+
* Generic function to merge custom order with default order.
|
|
4165
|
+
*
|
|
4166
|
+
* Items specified in customOrder will have higher priority and appear first
|
|
4167
|
+
* in the result. Remaining items will follow in the default order.
|
|
4168
|
+
*
|
|
4169
|
+
* Duplicate items in customOrder will be deduplicated (first occurrence kept).
|
|
4170
|
+
* Items in customOrder that are not in defaultOrder will be ignored.
|
|
4171
|
+
*
|
|
4172
|
+
* @param customOrder - Array of items with custom priority order
|
|
4173
|
+
* @param defaultOrder - Array of items in default order
|
|
4174
|
+
* @returns Merged order array
|
|
4175
|
+
*/
|
|
4176
|
+
declare function mergeArrayWithOrder<T>(customOrder: T[] | undefined | null, defaultOrder: T[]): T[];
|
|
4177
|
+
|
|
5156
4178
|
/**
|
|
5157
4179
|
* MIT License
|
|
5158
4180
|
*
|
|
@@ -5380,4 +4402,4 @@ declare function joinNonEmptyString(codes: string[], separator?: string): string
|
|
|
5380
4402
|
*/
|
|
5381
4403
|
declare function toCodeBlock(code?: string, lang?: string): string;
|
|
5382
4404
|
|
|
5383
|
-
export { type Awards, type Basics, type BulletListNode, COUNTRY_OPTIONS, type Certificates, type Country, DEGREE_OPTIONS, type Degree, type DocNode, type Education, EnglishCountryNames, ErrorType, FLUENCY_OPTIONS, FONTSPEC_NUMBERS_OPTIONS, FONT_SIZE_OPTIONS, type Fluency, type FontSize, type FontspecNumbers, type Interests, LANGUAGE_OPTIONS, LEVEL_OPTIONS, LOCALE_LANGUAGE_OPTIONS, type Language, type LanguageItem, type Languages, LatexCodeGenerator, type Level, type LocaleLanguage, type Location, MarkdownParser, NETWORK_OPTIONS, type Network, type Node, type OrderedListNode, PUNCTUATIONS, type ParagraphNode, type Parser, type ProfileItem, type Profiles, type Projects, type Publications, type Punctuation, type References, type Resume, type ResumeContent, type ResumeItem, type ResumeLayout, ResumeSchema, SECTION_IDS, type SectionID, SimplifiedChineseCountryNames, type Skills, SpanishCountryNames, TEMPLATE_OPTIONS, TERMS, type Template, type Term, type TextNode, TraditionalChineseCountryHKNames, TraditionalChineseCountryTWNames, type Volunteer, type Work, YAMLResumeError, collectAllKeys, defaultResume, defaultResumeContent, defaultResumeLayout, epochSecondsToLocaleDateString, escapeLatex, filledResume, filledResumeContent, getDateRange, getLocaleLanguageDetail, getOptionTranslation, getResumeRenderer, getTemplateDetail, getTemplateTranslations, isEmptyString, isEmptyValue, joinNonEmptyString, localizeDate, marginOptions, milliSecondsToSeconds, nowInUTCSeconds, oneDay, parseDate, removeKeysFromObject, resumeItems, showIf, toCodeBlock, transformResume };
|
|
4405
|
+
export { type Awards, type Basics, type BulletListNode, COUNTRY_OPTIONS, type Certificates, type Country, DEFAULT_SECTIONS_ORDER, DEGREE_OPTIONS, type Degree, type DocNode, type Education, EnglishCountryNames, ErrorType, FLUENCY_OPTIONS, FONTSPEC_NUMBERS_OPTIONS, FONT_SIZE_OPTIONS, type Fluency, type FontSize, type FontspecNumbers, type Interests, LANGUAGE_OPTIONS, LEVEL_OPTIONS, LOCALE_LANGUAGE_OPTIONS, type Language, type LanguageItem, type Languages, LatexCodeGenerator, type Level, type LocaleLanguage, type Location, MarkdownParser, NETWORK_OPTIONS, type Network, type Node, ORDERABLE_SECTION_IDS, type OrderableSectionID, type OrderedListNode, PUNCTUATIONS, type ParagraphNode, type Parser, type ProfileItem, type Profiles, type Projects, type Publications, type Punctuation, type References, type Resume, type ResumeContent, type ResumeItem, type ResumeLayout, ResumeSchema, SECTION_IDS, type SectionID, SimplifiedChineseCountryNames, type Skills, SpanishCountryNames, TEMPLATE_OPTIONS, TERMS, type Template, type Term, type TextNode, TraditionalChineseCountryHKNames, TraditionalChineseCountryTWNames, type Volunteer, type Work, YAMLResumeError, collectAllKeys, defaultResume, defaultResumeContent, defaultResumeLayout, epochSecondsToLocaleDateString, escapeLatex, filledResume, filledResumeContent, getDateRange, getLocaleLanguageDetail, getOptionTranslation, getResumeRenderer, getTemplateDetail, getTemplateTranslations, isEmptyString, isEmptyValue, joinNonEmptyString, localizeDate, marginOptions, mergeArrayWithOrder, milliSecondsToSeconds, nowInUTCSeconds, oneDay, parseDate, removeKeysFromObject, resumeItems, showIf, toCodeBlock, transformResume };
|