@yamlresume/core 0.5.0 → 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 +525 -1758
- package/dist/index.js +71 -71
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -480,17 +480,27 @@ declare const LOCALE_LANGUAGE_OPTIONS: readonly ["en", "zh-hans", "zh-hant-hk",
|
|
|
480
480
|
* Defines network options.
|
|
481
481
|
*/
|
|
482
482
|
declare const NETWORK_OPTIONS: readonly ["Behance", "Dribbble", "Facebook", "GitHub", "Gitlab", "Instagram", "Line", "LinkedIn", "Medium", "Pinterest", "Reddit", "Snapchat", "Stack Overflow", "Telegram", "TikTok", "Twitch", "Twitter", "Vimeo", "Weibo", "WeChat", "WhatsApp", "YouTube", "Zhihu"];
|
|
483
|
-
/**
|
|
484
|
-
* Defines network groups.
|
|
485
|
-
*/
|
|
486
|
-
declare const NETWORK_GROUP_OPTIONS: readonly ["Chat", "Design", "Media", "Social", "Technical", "WWW"];
|
|
487
483
|
/**
|
|
488
484
|
* All valid top-level sections in the resume.
|
|
489
485
|
* */
|
|
490
|
-
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[];
|
|
491
501
|
/** Defines identifiers for the available resume templates. */
|
|
492
502
|
declare const TEMPLATE_OPTIONS: readonly ["moderncv-banking", "moderncv-casual", "moderncv-classic"];
|
|
493
|
-
declare function
|
|
503
|
+
declare function getTemplateDetail(template: Template): {
|
|
494
504
|
name: string;
|
|
495
505
|
description: string;
|
|
496
506
|
id: "moderncv-banking" | "moderncv-casual" | "moderncv-classic";
|
|
@@ -516,7 +526,7 @@ declare const marginOptions: string[];
|
|
|
516
526
|
* @param localeLanguage The locale language to get the name for.
|
|
517
527
|
* @returns The language code and name of the given locale language.
|
|
518
528
|
*/
|
|
519
|
-
declare function
|
|
529
|
+
declare function getLocaleLanguageDetail(localeLanguage: LocaleLanguage): {
|
|
520
530
|
localeLanguage: "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es";
|
|
521
531
|
name: string;
|
|
522
532
|
};
|
|
@@ -556,49 +566,58 @@ declare const filledResume: Resume;
|
|
|
556
566
|
*/
|
|
557
567
|
|
|
558
568
|
/**
|
|
559
|
-
*
|
|
569
|
+
* A union type for all possible countries and regions in the world.
|
|
560
570
|
*/
|
|
561
571
|
type Country = (typeof COUNTRY_OPTIONS)[number];
|
|
562
572
|
/**
|
|
563
|
-
*
|
|
573
|
+
* A union type for all possible degrees.
|
|
564
574
|
*/
|
|
565
575
|
type Degree = (typeof DEGREE_OPTIONS)[number];
|
|
566
576
|
/**
|
|
567
|
-
*
|
|
577
|
+
* A union type for all possible language fluency levels.
|
|
568
578
|
*/
|
|
569
579
|
type Fluency = (typeof FLUENCY_OPTIONS)[number];
|
|
570
580
|
/**
|
|
571
|
-
*
|
|
581
|
+
* Keywords type, just an alias for a string list.
|
|
572
582
|
*/
|
|
573
583
|
type Keywords = string[];
|
|
574
584
|
/**
|
|
575
|
-
*
|
|
585
|
+
* A union type for all supported languages.
|
|
576
586
|
*/
|
|
577
587
|
type Language = (typeof LANGUAGE_OPTIONS)[number];
|
|
578
588
|
/**
|
|
579
|
-
*
|
|
589
|
+
* A union type for all possible skill proficiency levels.
|
|
580
590
|
*/
|
|
581
591
|
type Level = (typeof LEVEL_OPTIONS)[number];
|
|
582
592
|
/**
|
|
583
|
-
*
|
|
593
|
+
* A union type for all possible section IDs.
|
|
584
594
|
*/
|
|
585
595
|
type SectionID = (typeof SECTION_IDS)[number];
|
|
586
596
|
/**
|
|
587
|
-
*
|
|
597
|
+
* A union type for all possible section IDs that can be aliased and re-ordered.
|
|
588
598
|
*/
|
|
589
|
-
type
|
|
599
|
+
type OrderableSectionID = (typeof ORDERABLE_SECTION_IDS)[number];
|
|
590
600
|
/**
|
|
591
|
-
*
|
|
601
|
+
* A union type for all possible template options.
|
|
602
|
+
*
|
|
603
|
+
* @see {@link https://yamlresume.dev/docs/layout/templates}
|
|
604
|
+
*/
|
|
605
|
+
type Template = (typeof TEMPLATE_OPTIONS)[number];
|
|
606
|
+
/**
|
|
607
|
+
* A union type for all possible locale languages.
|
|
608
|
+
*
|
|
609
|
+
* @see {@link https://yamlresume.dev/docs/content/multi-languages}
|
|
592
610
|
*/
|
|
593
|
-
type
|
|
611
|
+
type LocaleLanguage = (typeof LOCALE_LANGUAGE_OPTIONS)[number];
|
|
594
612
|
/**
|
|
595
|
-
*
|
|
613
|
+
* A union type for all possible social network options.
|
|
596
614
|
*/
|
|
597
615
|
type Network = (typeof NETWORK_OPTIONS)[number];
|
|
598
616
|
/**
|
|
599
|
-
*
|
|
600
|
-
|
|
601
|
-
|
|
617
|
+
* Represents a single award, honor, or recognition received.
|
|
618
|
+
*
|
|
619
|
+
* @see {@link awardItemSchema} for its schema constraints.
|
|
620
|
+
*/
|
|
602
621
|
type AwardItem = {
|
|
603
622
|
/** The organization or entity that gave the award. */
|
|
604
623
|
awarder: string;
|
|
@@ -606,7 +625,7 @@ type AwardItem = {
|
|
|
606
625
|
title: string;
|
|
607
626
|
/** The date the award was received (e.g., "2020", "Oct 2020"). */
|
|
608
627
|
date?: string;
|
|
609
|
-
/** A short description or details about the award
|
|
628
|
+
/** A short description or details about the award. */
|
|
610
629
|
summary?: string;
|
|
611
630
|
/** Computed values derived during transformation. */
|
|
612
631
|
computed?: {
|
|
@@ -616,12 +635,20 @@ type AwardItem = {
|
|
|
616
635
|
summary: string;
|
|
617
636
|
};
|
|
618
637
|
};
|
|
619
|
-
/**
|
|
638
|
+
/**
|
|
639
|
+
* Contains a collection of awards and recognitions.
|
|
640
|
+
*
|
|
641
|
+
* @see {@link awardsSchema} for its schema constraints.
|
|
642
|
+
*/
|
|
620
643
|
type Awards = {
|
|
621
|
-
/**
|
|
644
|
+
/** A list of awards. */
|
|
622
645
|
awards?: AwardItem[];
|
|
623
646
|
};
|
|
624
|
-
/**
|
|
647
|
+
/**
|
|
648
|
+
* Represents the core personal and contact information.
|
|
649
|
+
*
|
|
650
|
+
* @see {@link basicsItemSchema} for its schema constraints.
|
|
651
|
+
*/
|
|
625
652
|
type BasicsItem = {
|
|
626
653
|
/** Full name. */
|
|
627
654
|
name: string;
|
|
@@ -631,7 +658,7 @@ type BasicsItem = {
|
|
|
631
658
|
headline?: string;
|
|
632
659
|
/** Phone number. */
|
|
633
660
|
phone?: string;
|
|
634
|
-
/** A professional summary or objective statement
|
|
661
|
+
/** A professional summary or objective statement. */
|
|
635
662
|
summary?: string;
|
|
636
663
|
/** Personal website or portfolio URL. */
|
|
637
664
|
url?: string;
|
|
@@ -643,12 +670,20 @@ type BasicsItem = {
|
|
|
643
670
|
url: string;
|
|
644
671
|
};
|
|
645
672
|
};
|
|
646
|
-
/**
|
|
673
|
+
/**
|
|
674
|
+
* Contains the core personal and contact information.
|
|
675
|
+
*
|
|
676
|
+
* @see {@link basicsSchema} for its schema constraints.
|
|
677
|
+
*/
|
|
647
678
|
type Basics = {
|
|
648
679
|
/** The basic personal information item. */
|
|
649
680
|
basics: BasicsItem;
|
|
650
681
|
};
|
|
651
|
-
/**
|
|
682
|
+
/**
|
|
683
|
+
* Represents a single certification, credential, or professional qualification.
|
|
684
|
+
*
|
|
685
|
+
* @see {@link certificateItemSchema} for its schema constraints.
|
|
686
|
+
*/
|
|
652
687
|
type CertificateItem = {
|
|
653
688
|
/** The organization that issued the certificate. */
|
|
654
689
|
issuer: string;
|
|
@@ -664,26 +699,34 @@ type CertificateItem = {
|
|
|
664
699
|
date: string;
|
|
665
700
|
};
|
|
666
701
|
};
|
|
667
|
-
/**
|
|
702
|
+
/**
|
|
703
|
+
* Contains a collection of certifications and credentials.
|
|
704
|
+
*
|
|
705
|
+
* @see {@link certificatesSchema} for its schema constraints.
|
|
706
|
+
*/
|
|
668
707
|
type Certificates = {
|
|
669
|
-
/**
|
|
708
|
+
/** A list of certificates. */
|
|
670
709
|
certificates?: CertificateItem[];
|
|
671
710
|
};
|
|
672
|
-
/**
|
|
711
|
+
/**
|
|
712
|
+
* Represents a single educational experience or degree program.
|
|
713
|
+
*
|
|
714
|
+
* @see {@link educationItemSchema} for its schema constraints.
|
|
715
|
+
*/
|
|
673
716
|
type EducationItem = {
|
|
674
|
-
/**
|
|
717
|
+
/** Area of study (e.g., "Computer Science"). */
|
|
675
718
|
area: string;
|
|
719
|
+
/** The type of degree obtained. */
|
|
720
|
+
degree: Degree;
|
|
676
721
|
/** Name of the institution. */
|
|
677
722
|
institution: string;
|
|
678
723
|
/** Start date of study (e.g., "2016", "Sep 2016"). */
|
|
679
724
|
startDate: string;
|
|
680
|
-
/**
|
|
681
|
-
degree: Degree;
|
|
682
|
-
/** List of courses taken (can be string array or pre-joined string). */
|
|
725
|
+
/** List of courses taken. */
|
|
683
726
|
courses?: string[];
|
|
684
|
-
/** End date of study (e.g., "2020", "May 2020")
|
|
727
|
+
/** End date of study (e.g., "2020", "May 2020"), empty implies "Present". */
|
|
685
728
|
endDate?: string;
|
|
686
|
-
/** Description of accomplishments or details
|
|
729
|
+
/** Description of accomplishments or details. */
|
|
687
730
|
summary?: string;
|
|
688
731
|
/** GPA or academic score. */
|
|
689
732
|
score?: string;
|
|
@@ -705,12 +748,20 @@ type EducationItem = {
|
|
|
705
748
|
summary: string;
|
|
706
749
|
};
|
|
707
750
|
};
|
|
708
|
-
/**
|
|
751
|
+
/**
|
|
752
|
+
* Contains a collection of educational experiences.
|
|
753
|
+
*
|
|
754
|
+
* @see {@link educationSchema} for its schema constraints.
|
|
755
|
+
*/
|
|
709
756
|
type Education = {
|
|
710
|
-
/**
|
|
757
|
+
/** A list of education experiences. */
|
|
711
758
|
education: EducationItem[];
|
|
712
759
|
};
|
|
713
|
-
/**
|
|
760
|
+
/**
|
|
761
|
+
* Represents a single interest, hobby, or personal activity.
|
|
762
|
+
*
|
|
763
|
+
* @see {@link interestItemSchema} for its schema constraints.
|
|
764
|
+
*/
|
|
714
765
|
type InterestItem = {
|
|
715
766
|
/** Name of the interest category (e.g., "Reading", "Photography"). */
|
|
716
767
|
name: string;
|
|
@@ -722,12 +773,20 @@ type InterestItem = {
|
|
|
722
773
|
keywords: string;
|
|
723
774
|
};
|
|
724
775
|
};
|
|
725
|
-
/**
|
|
776
|
+
/**
|
|
777
|
+
* Contains a collection of personal interests and hobbies.
|
|
778
|
+
*
|
|
779
|
+
* @see {@link interestsSchema} for its schema constraints.
|
|
780
|
+
*/
|
|
726
781
|
type Interests = {
|
|
727
|
-
/**
|
|
782
|
+
/** A list of interests. */
|
|
728
783
|
interests?: InterestItem[];
|
|
729
784
|
};
|
|
730
|
-
/**
|
|
785
|
+
/**
|
|
786
|
+
* Represents a single language proficiency or skill level.
|
|
787
|
+
*
|
|
788
|
+
* @see {@link languageItemSchema} for its schema constraints.
|
|
789
|
+
*/
|
|
731
790
|
type LanguageItem = {
|
|
732
791
|
/** The level of proficiency of the language. */
|
|
733
792
|
fluency: Fluency;
|
|
@@ -745,12 +804,20 @@ type LanguageItem = {
|
|
|
745
804
|
keywords: string;
|
|
746
805
|
};
|
|
747
806
|
};
|
|
748
|
-
/**
|
|
807
|
+
/**
|
|
808
|
+
* Contains a collection of language proficiencies.
|
|
809
|
+
*
|
|
810
|
+
* @see {@link languagesSchema} for its schema constraints.
|
|
811
|
+
*/
|
|
749
812
|
type Languages = {
|
|
750
|
-
/**
|
|
813
|
+
/** A list of languages. */
|
|
751
814
|
languages?: LanguageItem[];
|
|
752
815
|
};
|
|
753
|
-
/**
|
|
816
|
+
/**
|
|
817
|
+
* Represents location and address information.
|
|
818
|
+
*
|
|
819
|
+
* @see {@link locationItemSchema} for its schema constraints.
|
|
820
|
+
*/
|
|
754
821
|
type LocationItem = {
|
|
755
822
|
/** City name. */
|
|
756
823
|
city: string;
|
|
@@ -764,20 +831,28 @@ type LocationItem = {
|
|
|
764
831
|
region?: string;
|
|
765
832
|
/** Computed values derived during transformation. */
|
|
766
833
|
computed?: {
|
|
834
|
+
/** Fully formatted address string based on locale. */
|
|
835
|
+
fullAddress: string;
|
|
767
836
|
/** Combined string of postal code and address. */
|
|
768
837
|
postalCodeAndAddress: string;
|
|
769
838
|
/** Combined string of region and country. */
|
|
770
839
|
regionAndCountry: string;
|
|
771
|
-
/** Fully formatted address string based on locale. */
|
|
772
|
-
fullAddress: string;
|
|
773
840
|
};
|
|
774
841
|
};
|
|
775
|
-
/**
|
|
842
|
+
/**
|
|
843
|
+
* Contains location and address information.
|
|
844
|
+
*
|
|
845
|
+
* @see {@link locationSchema} for its schema constraints.
|
|
846
|
+
*/
|
|
776
847
|
type Location = {
|
|
777
848
|
/** The location information item. */
|
|
778
849
|
location?: LocationItem;
|
|
779
850
|
};
|
|
780
|
-
/**
|
|
851
|
+
/**
|
|
852
|
+
* Represents a single online profile or social media presence.
|
|
853
|
+
*
|
|
854
|
+
* @see {@link profileItemSchema} for its schema constraints.
|
|
855
|
+
*/
|
|
781
856
|
type ProfileItem = {
|
|
782
857
|
/** The name of the network or platform. */
|
|
783
858
|
network: Network;
|
|
@@ -791,18 +866,26 @@ type ProfileItem = {
|
|
|
791
866
|
url: string;
|
|
792
867
|
};
|
|
793
868
|
};
|
|
794
|
-
/**
|
|
869
|
+
/**
|
|
870
|
+
* Contains a collection of online profiles and social media presence.
|
|
871
|
+
*
|
|
872
|
+
* @see {@link profilesSchema} for its schema constraints.
|
|
873
|
+
*/
|
|
795
874
|
type Profiles = {
|
|
796
|
-
/**
|
|
875
|
+
/** A list of online profiles. */
|
|
797
876
|
profiles?: ProfileItem[];
|
|
798
877
|
};
|
|
799
|
-
/**
|
|
878
|
+
/**
|
|
879
|
+
* Represents a single project, portfolio piece, or technical work.
|
|
880
|
+
*
|
|
881
|
+
* @see {@link projectItemSchema} for its schema constraints.
|
|
882
|
+
*/
|
|
800
883
|
type ProjectItem = {
|
|
801
884
|
/** Name of the project. */
|
|
802
885
|
name: string;
|
|
803
886
|
/** Start date of the project (e.g., "2021", "Jan 2021"). */
|
|
804
887
|
startDate: string;
|
|
805
|
-
/** Detailed accomplishments for the project
|
|
888
|
+
/** Detailed accomplishments for the project. */
|
|
806
889
|
summary: string;
|
|
807
890
|
/** Description of the project. */
|
|
808
891
|
description?: string;
|
|
@@ -814,10 +897,10 @@ type ProjectItem = {
|
|
|
814
897
|
url?: string;
|
|
815
898
|
/** Computed values derived during transformation. */
|
|
816
899
|
computed?: {
|
|
817
|
-
/** Transformed keywords string. */
|
|
818
|
-
keywords: string;
|
|
819
900
|
/** Combined string representing the date range. */
|
|
820
901
|
dateRange: string;
|
|
902
|
+
/** Transformed keywords string. */
|
|
903
|
+
keywords: string;
|
|
821
904
|
/** Transformed start date string. */
|
|
822
905
|
startDate: string;
|
|
823
906
|
/** Transformed end date string (or "Present"). */
|
|
@@ -826,12 +909,20 @@ type ProjectItem = {
|
|
|
826
909
|
summary: string;
|
|
827
910
|
};
|
|
828
911
|
};
|
|
829
|
-
/**
|
|
912
|
+
/**
|
|
913
|
+
* Contains a collection of projects and portfolio pieces.
|
|
914
|
+
*
|
|
915
|
+
* @see {@link projectsSchema} for its schema constraints.
|
|
916
|
+
*/
|
|
830
917
|
type Projects = {
|
|
831
|
-
/**
|
|
918
|
+
/** A list of projects. */
|
|
832
919
|
projects?: ProjectItem[];
|
|
833
920
|
};
|
|
834
|
-
/**
|
|
921
|
+
/**
|
|
922
|
+
* Represents a single publication, research work, or academic paper.
|
|
923
|
+
*
|
|
924
|
+
* @see {@link publicationItemSchema} for its schema constraints.
|
|
925
|
+
*/
|
|
835
926
|
type PublicationItem = {
|
|
836
927
|
/** Name or title of the publication. */
|
|
837
928
|
name: string;
|
|
@@ -839,7 +930,7 @@ type PublicationItem = {
|
|
|
839
930
|
publisher: string;
|
|
840
931
|
/** Date of publication (e.g., "2023", "Mar 2023"). */
|
|
841
932
|
releaseDate?: string;
|
|
842
|
-
/** Summary or abstract of the publication
|
|
933
|
+
/** Summary or abstract of the publication. */
|
|
843
934
|
summary?: string;
|
|
844
935
|
/** URL related to the publication (e.g., DOI, link). */
|
|
845
936
|
url?: string;
|
|
@@ -851,16 +942,24 @@ type PublicationItem = {
|
|
|
851
942
|
summary: string;
|
|
852
943
|
};
|
|
853
944
|
};
|
|
854
|
-
/**
|
|
945
|
+
/**
|
|
946
|
+
* Contains a collection of publications and research works.
|
|
947
|
+
*
|
|
948
|
+
* @see {@link publicationsSchema} for its schema constraints.
|
|
949
|
+
*/
|
|
855
950
|
type Publications = {
|
|
856
|
-
/**
|
|
951
|
+
/** A list of publications. */
|
|
857
952
|
publications?: PublicationItem[];
|
|
858
953
|
};
|
|
859
|
-
/**
|
|
954
|
+
/**
|
|
955
|
+
* Represents a single professional reference or recommendation.
|
|
956
|
+
*
|
|
957
|
+
* @see {@link referenceItemSchema} for its schema constraints.
|
|
958
|
+
*/
|
|
860
959
|
type ReferenceItem = {
|
|
861
960
|
/** Name of the reference. */
|
|
862
961
|
name: string;
|
|
863
|
-
/** A brief note about the reference
|
|
962
|
+
/** A brief note about the reference. */
|
|
864
963
|
summary: string;
|
|
865
964
|
/** Email address of the reference. */
|
|
866
965
|
email?: string;
|
|
@@ -874,12 +973,20 @@ type ReferenceItem = {
|
|
|
874
973
|
summary: string;
|
|
875
974
|
};
|
|
876
975
|
};
|
|
877
|
-
/**
|
|
976
|
+
/**
|
|
977
|
+
* Contains a collection of professional references and recommendations.
|
|
978
|
+
*
|
|
979
|
+
* @see {@link referencesSchema} for its schema constraints.
|
|
980
|
+
*/
|
|
878
981
|
type References = {
|
|
879
|
-
/**
|
|
982
|
+
/** A list of references. */
|
|
880
983
|
references?: ReferenceItem[];
|
|
881
984
|
};
|
|
882
|
-
/**
|
|
985
|
+
/**
|
|
986
|
+
* Represents a single skill, competency, or technical ability.
|
|
987
|
+
*
|
|
988
|
+
* @see {@link skillItemSchema} for its schema constraints.
|
|
989
|
+
*/
|
|
883
990
|
type SkillItem = {
|
|
884
991
|
/** Proficiency level in the skill. */
|
|
885
992
|
level: Level;
|
|
@@ -895,12 +1002,20 @@ type SkillItem = {
|
|
|
895
1002
|
keywords: string;
|
|
896
1003
|
};
|
|
897
1004
|
};
|
|
898
|
-
/**
|
|
1005
|
+
/**
|
|
1006
|
+
* Contains a collection of skills and competencies.
|
|
1007
|
+
*
|
|
1008
|
+
* @see {@link skillsSchema} for its schema constraints.
|
|
1009
|
+
*/
|
|
899
1010
|
type Skills = {
|
|
900
|
-
/**
|
|
1011
|
+
/** A list of skills. */
|
|
901
1012
|
skills?: SkillItem[];
|
|
902
1013
|
};
|
|
903
|
-
/**
|
|
1014
|
+
/**
|
|
1015
|
+
* Represents a single volunteer experience or community service.
|
|
1016
|
+
*
|
|
1017
|
+
* @see {@link volunteerItemSchema} for its schema constraints.
|
|
1018
|
+
*/
|
|
904
1019
|
type VolunteerItem = {
|
|
905
1020
|
/** Name of the organization. */
|
|
906
1021
|
organization: string;
|
|
@@ -908,7 +1023,7 @@ type VolunteerItem = {
|
|
|
908
1023
|
position: string;
|
|
909
1024
|
/** Start date of the volunteer work (e.g., "2019", "Jun 2019"). */
|
|
910
1025
|
startDate: string;
|
|
911
|
-
/** Summary of responsibilities or achievements
|
|
1026
|
+
/** Summary of responsibilities or achievements. */
|
|
912
1027
|
summary: string;
|
|
913
1028
|
/** End date of the volunteer work (e.g., "2020", "Dec 2020"). */
|
|
914
1029
|
endDate?: string;
|
|
@@ -926,12 +1041,20 @@ type VolunteerItem = {
|
|
|
926
1041
|
summary: string;
|
|
927
1042
|
};
|
|
928
1043
|
};
|
|
929
|
-
/**
|
|
1044
|
+
/**
|
|
1045
|
+
* Contains a collection of volunteer experiences and community service.
|
|
1046
|
+
*
|
|
1047
|
+
* @see {@link volunteerSchema} for its schema constraints.
|
|
1048
|
+
*/
|
|
930
1049
|
type Volunteer = {
|
|
931
|
-
/**
|
|
1050
|
+
/** A list of volunteer experiences. */
|
|
932
1051
|
volunteer?: VolunteerItem[];
|
|
933
1052
|
};
|
|
934
|
-
/**
|
|
1053
|
+
/**
|
|
1054
|
+
* Represents a single work experience or employment position.
|
|
1055
|
+
*
|
|
1056
|
+
* @see {@link workItemSchema} for its schema constraints.
|
|
1057
|
+
*/
|
|
935
1058
|
type WorkItem = {
|
|
936
1059
|
/** Name of the company or employer. */
|
|
937
1060
|
name: string;
|
|
@@ -939,7 +1062,7 @@ type WorkItem = {
|
|
|
939
1062
|
position: string;
|
|
940
1063
|
/** Start date of employment (e.g., "2021", "Apr 2021"). */
|
|
941
1064
|
startDate: string;
|
|
942
|
-
/** Summary of responsibilities and accomplishments
|
|
1065
|
+
/** Summary of responsibilities and accomplishments. */
|
|
943
1066
|
summary: string;
|
|
944
1067
|
/** End date of employment (e.g., "2023", "Aug 2023"). */
|
|
945
1068
|
endDate?: string;
|
|
@@ -961,16 +1084,17 @@ type WorkItem = {
|
|
|
961
1084
|
summary: string;
|
|
962
1085
|
};
|
|
963
1086
|
};
|
|
964
|
-
/**
|
|
1087
|
+
/**
|
|
1088
|
+
* Contains a collection of work experiences and employment history.
|
|
1089
|
+
*
|
|
1090
|
+
* @see {@link workSchema} for its schema constraints.
|
|
1091
|
+
*/
|
|
965
1092
|
type Work = {
|
|
966
|
-
/**
|
|
1093
|
+
/** A list of work experiences. */
|
|
967
1094
|
work?: WorkItem[];
|
|
968
1095
|
};
|
|
969
|
-
/** Union type representing the structure for any top-level resume section. */
|
|
970
|
-
type SectionDefaultValues = Awards | Basics | Certificates | Education | Interests | Languages | Location | Profiles | Projects | Publications | References | Skills | Volunteer | Work;
|
|
971
1096
|
/**
|
|
972
|
-
*
|
|
973
|
-
* section.
|
|
1097
|
+
* Defines a collection of all possible "items" in a resume.
|
|
974
1098
|
*/
|
|
975
1099
|
type ResumeItem = {
|
|
976
1100
|
award: AwardItem;
|
|
@@ -991,37 +1115,41 @@ type ResumeItem = {
|
|
|
991
1115
|
/**
|
|
992
1116
|
* Defines the structure for the entire resume content.
|
|
993
1117
|
*
|
|
994
|
-
*
|
|
1118
|
+
* - only `basics` and `education` sections are mandatory.
|
|
995
1119
|
*/
|
|
996
1120
|
type ResumeContent = {
|
|
997
|
-
/**
|
|
998
|
-
awards?: AwardItem[];
|
|
999
|
-
/** Basic personal information. */
|
|
1121
|
+
/** Represents the core personal and contact information. */
|
|
1000
1122
|
basics: BasicsItem;
|
|
1001
|
-
/**
|
|
1002
|
-
certificates?: CertificateItem[];
|
|
1003
|
-
/** List of education history items. */
|
|
1123
|
+
/** Contains a collection of educational experiences. */
|
|
1004
1124
|
education: EducationItem[];
|
|
1005
|
-
/**
|
|
1125
|
+
/** Contains a collection of awards and recognitions. */
|
|
1126
|
+
awards?: AwardItem[];
|
|
1127
|
+
/** Contains a collection of certifications and credentials. */
|
|
1128
|
+
certificates?: CertificateItem[];
|
|
1129
|
+
/** Contains a collection of interests, hobbies, or personal activities. */
|
|
1006
1130
|
interests?: InterestItem[];
|
|
1007
|
-
/**
|
|
1131
|
+
/** Contains a collection of language proficiencies. */
|
|
1008
1132
|
languages?: LanguageItem[];
|
|
1009
|
-
/**
|
|
1133
|
+
/** Contains location information. */
|
|
1010
1134
|
location?: LocationItem;
|
|
1011
|
-
/**
|
|
1135
|
+
/** Contains a collection of projects. */
|
|
1012
1136
|
projects?: ProjectItem[];
|
|
1013
|
-
/**
|
|
1137
|
+
/** Contains a collection of online profiles. */
|
|
1014
1138
|
profiles?: ProfileItem[];
|
|
1015
|
-
/**
|
|
1139
|
+
/** Contains a collection of publications. */
|
|
1016
1140
|
publications?: PublicationItem[];
|
|
1017
|
-
/**
|
|
1141
|
+
/** Contains a collection of references. */
|
|
1018
1142
|
references?: ReferenceItem[];
|
|
1019
|
-
/**
|
|
1143
|
+
/** Contains a collection of skills. */
|
|
1020
1144
|
skills?: SkillItem[];
|
|
1021
|
-
/**
|
|
1145
|
+
/** Contains a collection of volunteer experiences. */
|
|
1022
1146
|
volunteer?: VolunteerItem[];
|
|
1023
|
-
/**
|
|
1147
|
+
/** Contains a collection of work experiences and employment history. */
|
|
1024
1148
|
work?: WorkItem[];
|
|
1149
|
+
/**
|
|
1150
|
+
* Computed values derived during transformation, applicable to the entire
|
|
1151
|
+
* content.
|
|
1152
|
+
*/
|
|
1025
1153
|
computed?: {
|
|
1026
1154
|
/** Translated names for each resume section based on locale. */
|
|
1027
1155
|
sectionNames?: {
|
|
@@ -1044,7 +1172,9 @@ type ResumeContent = {
|
|
|
1044
1172
|
urls?: string;
|
|
1045
1173
|
};
|
|
1046
1174
|
};
|
|
1047
|
-
/**
|
|
1175
|
+
/**
|
|
1176
|
+
* Defines page margin settings for document layout.
|
|
1177
|
+
*/
|
|
1048
1178
|
type ResumeLayoutMargins = {
|
|
1049
1179
|
/** Top margin value (e.g., "2.5cm"). */
|
|
1050
1180
|
top?: string;
|
|
@@ -1056,26 +1186,34 @@ type ResumeLayoutMargins = {
|
|
|
1056
1186
|
right?: string;
|
|
1057
1187
|
};
|
|
1058
1188
|
/**
|
|
1059
|
-
*
|
|
1189
|
+
* A union type for all possible latex fontspec numbers options.
|
|
1060
1190
|
*
|
|
1191
|
+
* - `Auto` - allowing the style to be automatically determined
|
|
1192
|
+
* based on the selected `LocaleLanguage` (default)
|
|
1061
1193
|
* - `Lining` - standard lining figures (default for CJK languages)
|
|
1062
1194
|
* - `OldStyle` - old style figures with varying heights (default for Latin
|
|
1063
1195
|
* languages)
|
|
1064
|
-
* - `Auto` - an undefined state, allowing the style to be automatically
|
|
1065
|
-
* determined based on the selected `LocaleLanguage`
|
|
1066
1196
|
*/
|
|
1067
1197
|
type FontspecNumbers = (typeof FONTSPEC_NUMBERS_OPTIONS)[number];
|
|
1068
1198
|
/**
|
|
1069
|
-
*
|
|
1199
|
+
* A union type for all possible font size options.
|
|
1200
|
+
*
|
|
1201
|
+
* For now only 3 options are supported:
|
|
1202
|
+
*
|
|
1203
|
+
* - `10pt` - 10pt font size (default)
|
|
1204
|
+
* - `11pt` - 11pt font size
|
|
1205
|
+
* - `12pt` - 12pt font size
|
|
1070
1206
|
*/
|
|
1071
1207
|
type FontSize = (typeof FONT_SIZE_OPTIONS)[number];
|
|
1072
|
-
/**
|
|
1208
|
+
/**
|
|
1209
|
+
* Defines typography settings for document formatting.
|
|
1210
|
+
*/
|
|
1073
1211
|
type ResumeLayoutTypography = {
|
|
1074
1212
|
/** Base font size for the document (e.g., "10pt", "11pt"). */
|
|
1075
1213
|
fontSize?: string;
|
|
1076
1214
|
};
|
|
1077
1215
|
/**
|
|
1078
|
-
* LaTeX
|
|
1216
|
+
* Defines LaTeX-specific configuration options.
|
|
1079
1217
|
*/
|
|
1080
1218
|
type ResumeLayoutLaTeX = {
|
|
1081
1219
|
/** LaTeX fontspec package configurations. */
|
|
@@ -1084,42 +1222,58 @@ type ResumeLayoutLaTeX = {
|
|
|
1084
1222
|
numbers?: FontspecNumbers;
|
|
1085
1223
|
};
|
|
1086
1224
|
};
|
|
1087
|
-
/**
|
|
1225
|
+
/**
|
|
1226
|
+
* Defines locale settings for internationalization and localization.
|
|
1227
|
+
*/
|
|
1088
1228
|
type ResumeLayoutLocale = {
|
|
1089
1229
|
/** The selected language for the resume content and template terms. */
|
|
1090
|
-
language?:
|
|
1230
|
+
language?: LocaleLanguage;
|
|
1091
1231
|
};
|
|
1092
|
-
/**
|
|
1232
|
+
/**
|
|
1233
|
+
* Defines page-level settings for document presentation.
|
|
1234
|
+
*/
|
|
1093
1235
|
type ResumeLayoutPage = {
|
|
1094
1236
|
/** Whether to display page numbers. */
|
|
1095
1237
|
showPageNumbers?: boolean;
|
|
1096
1238
|
};
|
|
1097
|
-
/**
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
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
|
+
};
|
|
1248
|
+
/**
|
|
1249
|
+
* Defines the overall layout configuration.
|
|
1250
|
+
*/
|
|
1101
1251
|
type ResumeLayout = {
|
|
1102
|
-
/**
|
|
1103
|
-
template?: ResumeTemplate;
|
|
1104
|
-
/** LaTeX specific settings. */
|
|
1105
|
-
latex?: ResumeLayoutLaTeX;
|
|
1106
|
-
/** Page margin settings. */
|
|
1107
|
-
margins?: ResumeLayoutMargins;
|
|
1108
|
-
/** Typography settings. */
|
|
1109
|
-
typography?: ResumeLayoutTypography;
|
|
1110
|
-
/** Localization settings. */
|
|
1252
|
+
/** Defines locale settings for internationalization and localization. */
|
|
1111
1253
|
locale?: ResumeLayoutLocale;
|
|
1112
|
-
/**
|
|
1254
|
+
/** Defines page margin settings for document layout. */
|
|
1255
|
+
margins?: ResumeLayoutMargins;
|
|
1256
|
+
/** Defines page-level settings for document presentation. */
|
|
1113
1257
|
page?: ResumeLayoutPage;
|
|
1258
|
+
/** Defines section customization settings. */
|
|
1259
|
+
sections?: ResumeLayoutSections;
|
|
1260
|
+
/** Defines the selected template. */
|
|
1261
|
+
template?: Template;
|
|
1262
|
+
/** Defines typography settings for document formatting. */
|
|
1263
|
+
typography?: ResumeLayoutTypography;
|
|
1264
|
+
/** Defines LaTeX-specific configuration options. */
|
|
1265
|
+
latex?: ResumeLayoutLaTeX;
|
|
1114
1266
|
};
|
|
1115
1267
|
/**
|
|
1116
|
-
*
|
|
1117
|
-
*
|
|
1268
|
+
* Defines the overall resume structure, including content and layout.
|
|
1269
|
+
*
|
|
1270
|
+
* - `content` is mandatory.
|
|
1271
|
+
* - `layout` is optional, yamlresume provide a default layout if absent.
|
|
1118
1272
|
*/
|
|
1119
1273
|
type Resume = {
|
|
1120
|
-
/**
|
|
1274
|
+
/** Defines the structure for the entire resume content. */
|
|
1121
1275
|
content: ResumeContent;
|
|
1122
|
-
/** Defines the
|
|
1276
|
+
/** Defines the overall layout configuration. */
|
|
1123
1277
|
layout?: ResumeLayout;
|
|
1124
1278
|
};
|
|
1125
1279
|
|
|
@@ -1317,6 +1471,12 @@ declare abstract class Renderer {
|
|
|
1317
1471
|
* @returns {string} The rendered resume
|
|
1318
1472
|
*/
|
|
1319
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;
|
|
1320
1480
|
}
|
|
1321
1481
|
|
|
1322
1482
|
/**
|
|
@@ -1380,10 +1540,14 @@ declare function getResumeRenderer(resume: Resume, summaryParser?: Parser): Rend
|
|
|
1380
1540
|
/**
|
|
1381
1541
|
* A zod schema for a yaml resume.
|
|
1382
1542
|
*/
|
|
1383
|
-
declare const
|
|
1543
|
+
declare const ResumeSchema: z.ZodObject<{
|
|
1384
1544
|
layout: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1385
1545
|
typography: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1386
|
-
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<{
|
|
1387
1551
|
Afghanistan: "Afghanistan";
|
|
1388
1552
|
"Aland Islands": "Aland Islands";
|
|
1389
1553
|
Albania: "Albania";
|
|
@@ -1760,403 +1924,75 @@ declare const resumeSchema: z.ZodObject<{
|
|
|
1760
1924
|
WhatsApp: "WhatsApp";
|
|
1761
1925
|
YouTube: "YouTube";
|
|
1762
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";
|
|
1763
1939
|
"moderncv-banking": "moderncv-banking";
|
|
1764
1940
|
"moderncv-casual": "moderncv-casual";
|
|
1765
1941
|
"moderncv-classic": "moderncv-classic";
|
|
1766
|
-
}
|
|
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>>>;
|
|
1767
1957
|
}, z.core.$strip>>>;
|
|
1768
|
-
template: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1769
|
-
Afghanistan: "Afghanistan";
|
|
1770
|
-
"Aland Islands": "Aland Islands";
|
|
1771
|
-
Albania: "Albania";
|
|
1772
|
-
Algeria: "Algeria";
|
|
1773
|
-
"American Samoa": "American Samoa";
|
|
1774
|
-
Andorra: "Andorra";
|
|
1775
|
-
Angola: "Angola";
|
|
1776
|
-
Anguilla: "Anguilla";
|
|
1777
|
-
Antarctica: "Antarctica";
|
|
1778
|
-
"Antigua And Barbuda": "Antigua And Barbuda";
|
|
1779
|
-
Argentina: "Argentina";
|
|
1780
|
-
Armenia: "Armenia";
|
|
1781
|
-
Aruba: "Aruba";
|
|
1782
|
-
Australia: "Australia";
|
|
1783
|
-
Austria: "Austria";
|
|
1784
|
-
Azerbaijan: "Azerbaijan";
|
|
1785
|
-
Bahrain: "Bahrain";
|
|
1786
|
-
Bangladesh: "Bangladesh";
|
|
1787
|
-
Barbados: "Barbados";
|
|
1788
|
-
Belarus: "Belarus";
|
|
1789
|
-
Belgium: "Belgium";
|
|
1790
|
-
Belize: "Belize";
|
|
1791
|
-
Benin: "Benin";
|
|
1792
|
-
Bermuda: "Bermuda";
|
|
1793
|
-
Bhutan: "Bhutan";
|
|
1794
|
-
Bolivia: "Bolivia";
|
|
1795
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
1796
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
1797
|
-
Botswana: "Botswana";
|
|
1798
|
-
"Bouvet Island": "Bouvet Island";
|
|
1799
|
-
Brazil: "Brazil";
|
|
1800
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
1801
|
-
Brunei: "Brunei";
|
|
1802
|
-
Bulgaria: "Bulgaria";
|
|
1803
|
-
"Burkina Faso": "Burkina Faso";
|
|
1804
|
-
Burundi: "Burundi";
|
|
1805
|
-
Cambodia: "Cambodia";
|
|
1806
|
-
Cameroon: "Cameroon";
|
|
1807
|
-
Canada: "Canada";
|
|
1808
|
-
"Cape Verde": "Cape Verde";
|
|
1809
|
-
"Cayman Islands": "Cayman Islands";
|
|
1810
|
-
"Central African Republic": "Central African Republic";
|
|
1811
|
-
Chad: "Chad";
|
|
1812
|
-
Chile: "Chile";
|
|
1813
|
-
China: "China";
|
|
1814
|
-
"Christmas Island": "Christmas Island";
|
|
1815
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
1816
|
-
Colombia: "Colombia";
|
|
1817
|
-
Comoros: "Comoros";
|
|
1818
|
-
Congo: "Congo";
|
|
1819
|
-
"Cook Islands": "Cook Islands";
|
|
1820
|
-
"Costa Rica": "Costa Rica";
|
|
1821
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
1822
|
-
Croatia: "Croatia";
|
|
1823
|
-
Cuba: "Cuba";
|
|
1824
|
-
Curaçao: "Curaçao";
|
|
1825
|
-
Cyprus: "Cyprus";
|
|
1826
|
-
"Czech Republic": "Czech Republic";
|
|
1827
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
1828
|
-
Denmark: "Denmark";
|
|
1829
|
-
Djibouti: "Djibouti";
|
|
1830
|
-
Dominica: "Dominica";
|
|
1831
|
-
"Dominican Republic": "Dominican Republic";
|
|
1832
|
-
"East Timor": "East Timor";
|
|
1833
|
-
Ecuador: "Ecuador";
|
|
1834
|
-
Egypt: "Egypt";
|
|
1835
|
-
"El Salvador": "El Salvador";
|
|
1836
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
1837
|
-
Eritrea: "Eritrea";
|
|
1838
|
-
Estonia: "Estonia";
|
|
1839
|
-
Ethiopia: "Ethiopia";
|
|
1840
|
-
"Falkland Islands": "Falkland Islands";
|
|
1841
|
-
"Faroe Islands": "Faroe Islands";
|
|
1842
|
-
"Fiji Islands": "Fiji Islands";
|
|
1843
|
-
Finland: "Finland";
|
|
1844
|
-
France: "France";
|
|
1845
|
-
"French Guiana": "French Guiana";
|
|
1846
|
-
"French Polynesia": "French Polynesia";
|
|
1847
|
-
"French Southern Territories": "French Southern Territories";
|
|
1848
|
-
Gabon: "Gabon";
|
|
1849
|
-
"Gambia The": "Gambia The";
|
|
1850
|
-
Georgia: "Georgia";
|
|
1851
|
-
Germany: "Germany";
|
|
1852
|
-
Ghana: "Ghana";
|
|
1853
|
-
Gibraltar: "Gibraltar";
|
|
1854
|
-
Greece: "Greece";
|
|
1855
|
-
Greenland: "Greenland";
|
|
1856
|
-
Grenada: "Grenada";
|
|
1857
|
-
Guadeloupe: "Guadeloupe";
|
|
1858
|
-
Guam: "Guam";
|
|
1859
|
-
Guatemala: "Guatemala";
|
|
1860
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
1861
|
-
Guinea: "Guinea";
|
|
1862
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
1863
|
-
Guyana: "Guyana";
|
|
1864
|
-
Haiti: "Haiti";
|
|
1865
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
1866
|
-
Honduras: "Honduras";
|
|
1867
|
-
"Hong Kong S.A.R.": "Hong Kong S.A.R.";
|
|
1868
|
-
Hungary: "Hungary";
|
|
1869
|
-
Iceland: "Iceland";
|
|
1870
|
-
India: "India";
|
|
1871
|
-
Indonesia: "Indonesia";
|
|
1872
|
-
Iran: "Iran";
|
|
1873
|
-
Iraq: "Iraq";
|
|
1874
|
-
Ireland: "Ireland";
|
|
1875
|
-
Israel: "Israel";
|
|
1876
|
-
Italy: "Italy";
|
|
1877
|
-
Jamaica: "Jamaica";
|
|
1878
|
-
Japan: "Japan";
|
|
1879
|
-
Jersey: "Jersey";
|
|
1880
|
-
Jordan: "Jordan";
|
|
1881
|
-
Kazakhstan: "Kazakhstan";
|
|
1882
|
-
Kenya: "Kenya";
|
|
1883
|
-
Kiribati: "Kiribati";
|
|
1884
|
-
Kosovo: "Kosovo";
|
|
1885
|
-
Kuwait: "Kuwait";
|
|
1886
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
1887
|
-
Laos: "Laos";
|
|
1888
|
-
Latvia: "Latvia";
|
|
1889
|
-
Lebanon: "Lebanon";
|
|
1890
|
-
Lesotho: "Lesotho";
|
|
1891
|
-
Liberia: "Liberia";
|
|
1892
|
-
Libya: "Libya";
|
|
1893
|
-
Liechtenstein: "Liechtenstein";
|
|
1894
|
-
Lithuania: "Lithuania";
|
|
1895
|
-
Luxembourg: "Luxembourg";
|
|
1896
|
-
"Macau S.A.R.": "Macau S.A.R.";
|
|
1897
|
-
Madagascar: "Madagascar";
|
|
1898
|
-
Malawi: "Malawi";
|
|
1899
|
-
Malaysia: "Malaysia";
|
|
1900
|
-
Maldives: "Maldives";
|
|
1901
|
-
Mali: "Mali";
|
|
1902
|
-
Malta: "Malta";
|
|
1903
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
1904
|
-
"Marshall Islands": "Marshall Islands";
|
|
1905
|
-
Martinique: "Martinique";
|
|
1906
|
-
Mauritania: "Mauritania";
|
|
1907
|
-
Mauritius: "Mauritius";
|
|
1908
|
-
Mayotte: "Mayotte";
|
|
1909
|
-
Mexico: "Mexico";
|
|
1910
|
-
Micronesia: "Micronesia";
|
|
1911
|
-
Moldova: "Moldova";
|
|
1912
|
-
Monaco: "Monaco";
|
|
1913
|
-
Mongolia: "Mongolia";
|
|
1914
|
-
Montenegro: "Montenegro";
|
|
1915
|
-
Montserrat: "Montserrat";
|
|
1916
|
-
Morocco: "Morocco";
|
|
1917
|
-
Mozambique: "Mozambique";
|
|
1918
|
-
Myanmar: "Myanmar";
|
|
1919
|
-
Namibia: "Namibia";
|
|
1920
|
-
Nauru: "Nauru";
|
|
1921
|
-
Nepal: "Nepal";
|
|
1922
|
-
Netherlands: "Netherlands";
|
|
1923
|
-
"New Caledonia": "New Caledonia";
|
|
1924
|
-
"New Zealand": "New Zealand";
|
|
1925
|
-
Nicaragua: "Nicaragua";
|
|
1926
|
-
Niger: "Niger";
|
|
1927
|
-
Nigeria: "Nigeria";
|
|
1928
|
-
Niue: "Niue";
|
|
1929
|
-
"Norfolk Island": "Norfolk Island";
|
|
1930
|
-
"North Korea": "North Korea";
|
|
1931
|
-
"North Macedonia": "North Macedonia";
|
|
1932
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
1933
|
-
Norway: "Norway";
|
|
1934
|
-
Oman: "Oman";
|
|
1935
|
-
Pakistan: "Pakistan";
|
|
1936
|
-
Palau: "Palau";
|
|
1937
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
1938
|
-
Panama: "Panama";
|
|
1939
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
1940
|
-
Paraguay: "Paraguay";
|
|
1941
|
-
Peru: "Peru";
|
|
1942
|
-
Philippines: "Philippines";
|
|
1943
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
1944
|
-
Poland: "Poland";
|
|
1945
|
-
Portugal: "Portugal";
|
|
1946
|
-
"Puerto Rico": "Puerto Rico";
|
|
1947
|
-
Qatar: "Qatar";
|
|
1948
|
-
Reunion: "Reunion";
|
|
1949
|
-
Romania: "Romania";
|
|
1950
|
-
Russia: "Russia";
|
|
1951
|
-
Rwanda: "Rwanda";
|
|
1952
|
-
"Saint Helena": "Saint Helena";
|
|
1953
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
1954
|
-
"Saint Lucia": "Saint Lucia";
|
|
1955
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
1956
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
1957
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
1958
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
1959
|
-
Samoa: "Samoa";
|
|
1960
|
-
"San Marino": "San Marino";
|
|
1961
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
1962
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
1963
|
-
Senegal: "Senegal";
|
|
1964
|
-
Serbia: "Serbia";
|
|
1965
|
-
Seychelles: "Seychelles";
|
|
1966
|
-
"Sierra Leone": "Sierra Leone";
|
|
1967
|
-
Singapore: "Singapore";
|
|
1968
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
1969
|
-
Slovakia: "Slovakia";
|
|
1970
|
-
Slovenia: "Slovenia";
|
|
1971
|
-
"Solomon Islands": "Solomon Islands";
|
|
1972
|
-
Somalia: "Somalia";
|
|
1973
|
-
"South Africa": "South Africa";
|
|
1974
|
-
"South Georgia": "South Georgia";
|
|
1975
|
-
"South Korea": "South Korea";
|
|
1976
|
-
"South Sudan": "South Sudan";
|
|
1977
|
-
Spain: "Spain";
|
|
1978
|
-
"Sri Lanka": "Sri Lanka";
|
|
1979
|
-
Sudan: "Sudan";
|
|
1980
|
-
Suriname: "Suriname";
|
|
1981
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
1982
|
-
Swaziland: "Swaziland";
|
|
1983
|
-
Sweden: "Sweden";
|
|
1984
|
-
Switzerland: "Switzerland";
|
|
1985
|
-
Syria: "Syria";
|
|
1986
|
-
Taiwan: "Taiwan";
|
|
1987
|
-
Tajikistan: "Tajikistan";
|
|
1988
|
-
Tanzania: "Tanzania";
|
|
1989
|
-
Thailand: "Thailand";
|
|
1990
|
-
"The Bahamas": "The Bahamas";
|
|
1991
|
-
Togo: "Togo";
|
|
1992
|
-
Tokelau: "Tokelau";
|
|
1993
|
-
Tonga: "Tonga";
|
|
1994
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
1995
|
-
Tunisia: "Tunisia";
|
|
1996
|
-
Turkey: "Turkey";
|
|
1997
|
-
Turkmenistan: "Turkmenistan";
|
|
1998
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
1999
|
-
Tuvalu: "Tuvalu";
|
|
2000
|
-
Uganda: "Uganda";
|
|
2001
|
-
Ukraine: "Ukraine";
|
|
2002
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
2003
|
-
"United Kingdom": "United Kingdom";
|
|
2004
|
-
"United States": "United States";
|
|
2005
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
2006
|
-
Uruguay: "Uruguay";
|
|
2007
|
-
Uzbekistan: "Uzbekistan";
|
|
2008
|
-
Vanuatu: "Vanuatu";
|
|
2009
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
2010
|
-
Venezuela: "Venezuela";
|
|
2011
|
-
Vietnam: "Vietnam";
|
|
2012
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
2013
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
2014
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
2015
|
-
"Western Sahara": "Western Sahara";
|
|
2016
|
-
Yemen: "Yemen";
|
|
2017
|
-
Zambia: "Zambia";
|
|
2018
|
-
Zimbabwe: "Zimbabwe";
|
|
2019
|
-
"Middle School": "Middle School";
|
|
2020
|
-
"High School": "High School";
|
|
2021
|
-
Diploma: "Diploma";
|
|
2022
|
-
Associate: "Associate";
|
|
2023
|
-
Bachelor: "Bachelor";
|
|
2024
|
-
Master: "Master";
|
|
2025
|
-
Doctor: "Doctor";
|
|
2026
|
-
"Elementary Proficiency": "Elementary Proficiency";
|
|
2027
|
-
"Limited Working Proficiency": "Limited Working Proficiency";
|
|
2028
|
-
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
2029
|
-
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
2030
|
-
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
2031
|
-
"10pt": "10pt";
|
|
2032
|
-
"11pt": "11pt";
|
|
2033
|
-
"12pt": "12pt";
|
|
2034
|
-
Lining: "Lining";
|
|
2035
|
-
OldStyle: "OldStyle";
|
|
2036
|
-
Auto: "Auto";
|
|
2037
|
-
Afrikaans: "Afrikaans";
|
|
2038
|
-
Albanian: "Albanian";
|
|
2039
|
-
Amharic: "Amharic";
|
|
2040
|
-
Arabic: "Arabic";
|
|
2041
|
-
Azerbaijani: "Azerbaijani";
|
|
2042
|
-
Belarusian: "Belarusian";
|
|
2043
|
-
Bengali: "Bengali";
|
|
2044
|
-
Bhojpuri: "Bhojpuri";
|
|
2045
|
-
Bulgarian: "Bulgarian";
|
|
2046
|
-
Burmese: "Burmese";
|
|
2047
|
-
Cantonese: "Cantonese";
|
|
2048
|
-
Catalan: "Catalan";
|
|
2049
|
-
Chinese: "Chinese";
|
|
2050
|
-
Croatian: "Croatian";
|
|
2051
|
-
Czech: "Czech";
|
|
2052
|
-
Danish: "Danish";
|
|
2053
|
-
Dutch: "Dutch";
|
|
2054
|
-
English: "English";
|
|
2055
|
-
Estonian: "Estonian";
|
|
2056
|
-
Farsi: "Farsi";
|
|
2057
|
-
Filipino: "Filipino";
|
|
2058
|
-
Finnish: "Finnish";
|
|
2059
|
-
French: "French";
|
|
2060
|
-
German: "German";
|
|
2061
|
-
Greek: "Greek";
|
|
2062
|
-
Gujarati: "Gujarati";
|
|
2063
|
-
Hausa: "Hausa";
|
|
2064
|
-
Hebrew: "Hebrew";
|
|
2065
|
-
Hindi: "Hindi";
|
|
2066
|
-
Hungarian: "Hungarian";
|
|
2067
|
-
Icelandic: "Icelandic";
|
|
2068
|
-
Igbo: "Igbo";
|
|
2069
|
-
Indonesian: "Indonesian";
|
|
2070
|
-
Irish: "Irish";
|
|
2071
|
-
Italian: "Italian";
|
|
2072
|
-
Japanese: "Japanese";
|
|
2073
|
-
Javanese: "Javanese";
|
|
2074
|
-
Kazakh: "Kazakh";
|
|
2075
|
-
Khmer: "Khmer";
|
|
2076
|
-
Korean: "Korean";
|
|
2077
|
-
Lahnda: "Lahnda";
|
|
2078
|
-
Latvian: "Latvian";
|
|
2079
|
-
Lithuanian: "Lithuanian";
|
|
2080
|
-
Malay: "Malay";
|
|
2081
|
-
Mandarin: "Mandarin";
|
|
2082
|
-
Marathi: "Marathi";
|
|
2083
|
-
Nepali: "Nepali";
|
|
2084
|
-
Norwegian: "Norwegian";
|
|
2085
|
-
Oromo: "Oromo";
|
|
2086
|
-
Pashto: "Pashto";
|
|
2087
|
-
Polish: "Polish";
|
|
2088
|
-
Portuguese: "Portuguese";
|
|
2089
|
-
Romanian: "Romanian";
|
|
2090
|
-
Russian: "Russian";
|
|
2091
|
-
Serbian: "Serbian";
|
|
2092
|
-
Shona: "Shona";
|
|
2093
|
-
Sinhala: "Sinhala";
|
|
2094
|
-
Slovak: "Slovak";
|
|
2095
|
-
Slovene: "Slovene";
|
|
2096
|
-
Somali: "Somali";
|
|
2097
|
-
Spanish: "Spanish";
|
|
2098
|
-
Sundanese: "Sundanese";
|
|
2099
|
-
Swahili: "Swahili";
|
|
2100
|
-
Swedish: "Swedish";
|
|
2101
|
-
Tagalog: "Tagalog";
|
|
2102
|
-
Tamil: "Tamil";
|
|
2103
|
-
Telugu: "Telugu";
|
|
2104
|
-
Thai: "Thai";
|
|
2105
|
-
Turkish: "Turkish";
|
|
2106
|
-
Ukrainian: "Ukrainian";
|
|
2107
|
-
Urdu: "Urdu";
|
|
2108
|
-
Uzbek: "Uzbek";
|
|
2109
|
-
Vietnamese: "Vietnamese";
|
|
2110
|
-
Yoruba: "Yoruba";
|
|
2111
|
-
Zulu: "Zulu";
|
|
2112
|
-
Novice: "Novice";
|
|
2113
|
-
Beginner: "Beginner";
|
|
2114
|
-
Intermediate: "Intermediate";
|
|
2115
|
-
Advanced: "Advanced";
|
|
2116
|
-
Expert: "Expert";
|
|
2117
|
-
en: "en";
|
|
2118
|
-
"zh-hans": "zh-hans";
|
|
2119
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
2120
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
2121
|
-
es: "es";
|
|
2122
|
-
Behance: "Behance";
|
|
2123
|
-
Dribbble: "Dribbble";
|
|
2124
|
-
Facebook: "Facebook";
|
|
2125
|
-
GitHub: "GitHub";
|
|
2126
|
-
Gitlab: "Gitlab";
|
|
2127
|
-
Instagram: "Instagram";
|
|
2128
|
-
Line: "Line";
|
|
2129
|
-
LinkedIn: "LinkedIn";
|
|
2130
|
-
Medium: "Medium";
|
|
2131
|
-
Pinterest: "Pinterest";
|
|
2132
|
-
Reddit: "Reddit";
|
|
2133
|
-
Snapchat: "Snapchat";
|
|
2134
|
-
"Stack Overflow": "Stack Overflow";
|
|
2135
|
-
Telegram: "Telegram";
|
|
2136
|
-
TikTok: "TikTok";
|
|
2137
|
-
Twitch: "Twitch";
|
|
2138
|
-
Twitter: "Twitter";
|
|
2139
|
-
Vimeo: "Vimeo";
|
|
2140
|
-
Weibo: "Weibo";
|
|
2141
|
-
WeChat: "WeChat";
|
|
2142
|
-
WhatsApp: "WhatsApp";
|
|
2143
|
-
YouTube: "YouTube";
|
|
2144
|
-
Zhihu: "Zhihu";
|
|
2145
|
-
"moderncv-banking": "moderncv-banking";
|
|
2146
|
-
"moderncv-casual": "moderncv-casual";
|
|
2147
|
-
"moderncv-classic": "moderncv-classic";
|
|
2148
|
-
}>>>;
|
|
2149
1958
|
page: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2150
|
-
showPageNumbers: z.ZodOptional<z.ZodNullable<z.
|
|
1959
|
+
showPageNumbers: z.ZodOptional<z.ZodNullable<z.ZodType<boolean, unknown, z.core.$ZodTypeInternals<boolean, unknown>>>>;
|
|
2151
1960
|
}, z.core.$strip>>>;
|
|
2152
1961
|
margins: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2153
|
-
top: z.ZodOptional<z.ZodNullable<z.
|
|
2154
|
-
bottom: z.ZodOptional<z.ZodNullable<z.
|
|
2155
|
-
left: z.ZodOptional<z.ZodNullable<z.
|
|
2156
|
-
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>>>>;
|
|
2157
1966
|
}, z.core.$strip>>>;
|
|
2158
1967
|
locale: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2159
|
-
language: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
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>>>>;
|
|
1969
|
+
}, z.core.$strip>>>;
|
|
1970
|
+
latex: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1971
|
+
fontspec: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1972
|
+
numbers: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
1973
|
+
}, z.core.$strip>>>;
|
|
1974
|
+
}, z.core.$strip>>>;
|
|
1975
|
+
}, z.core.$strip>>>;
|
|
1976
|
+
content: z.ZodObject<{
|
|
1977
|
+
work: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1978
|
+
name: z.ZodString;
|
|
1979
|
+
position: z.ZodString;
|
|
1980
|
+
startDate: z.ZodString;
|
|
1981
|
+
summary: z.ZodString;
|
|
1982
|
+
endDate: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1983
|
+
keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
1984
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1985
|
+
}, z.core.$strip>>>>;
|
|
1986
|
+
volunteer: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1987
|
+
organization: z.ZodString;
|
|
1988
|
+
position: z.ZodString;
|
|
1989
|
+
startDate: z.ZodString;
|
|
1990
|
+
summary: z.ZodString;
|
|
1991
|
+
endDate: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1992
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
1993
|
+
}, z.core.$strip>>>>;
|
|
1994
|
+
skills: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1995
|
+
level: z.ZodEnum<{
|
|
2160
1996
|
Afghanistan: "Afghanistan";
|
|
2161
1997
|
"Aland Islands": "Aland Islands";
|
|
2162
1998
|
Albania: "Albania";
|
|
@@ -2533,417 +2369,50 @@ declare const resumeSchema: z.ZodObject<{
|
|
|
2533
2369
|
WhatsApp: "WhatsApp";
|
|
2534
2370
|
YouTube: "YouTube";
|
|
2535
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";
|
|
2536
2384
|
"moderncv-banking": "moderncv-banking";
|
|
2537
2385
|
"moderncv-casual": "moderncv-casual";
|
|
2538
2386
|
"moderncv-classic": "moderncv-classic";
|
|
2539
|
-
}
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
Afghanistan: "Afghanistan";
|
|
2545
|
-
"Aland Islands": "Aland Islands";
|
|
2546
|
-
Albania: "Albania";
|
|
2547
|
-
Algeria: "Algeria";
|
|
2548
|
-
"American Samoa": "American Samoa";
|
|
2549
|
-
Andorra: "Andorra";
|
|
2550
|
-
Angola: "Angola";
|
|
2551
|
-
Anguilla: "Anguilla";
|
|
2552
|
-
Antarctica: "Antarctica";
|
|
2553
|
-
"Antigua And Barbuda": "Antigua And Barbuda";
|
|
2554
|
-
Argentina: "Argentina";
|
|
2555
|
-
Armenia: "Armenia";
|
|
2556
|
-
Aruba: "Aruba";
|
|
2557
|
-
Australia: "Australia";
|
|
2558
|
-
Austria: "Austria";
|
|
2559
|
-
Azerbaijan: "Azerbaijan";
|
|
2560
|
-
Bahrain: "Bahrain";
|
|
2561
|
-
Bangladesh: "Bangladesh";
|
|
2562
|
-
Barbados: "Barbados";
|
|
2563
|
-
Belarus: "Belarus";
|
|
2564
|
-
Belgium: "Belgium";
|
|
2565
|
-
Belize: "Belize";
|
|
2566
|
-
Benin: "Benin";
|
|
2567
|
-
Bermuda: "Bermuda";
|
|
2568
|
-
Bhutan: "Bhutan";
|
|
2569
|
-
Bolivia: "Bolivia";
|
|
2570
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
2571
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
2572
|
-
Botswana: "Botswana";
|
|
2573
|
-
"Bouvet Island": "Bouvet Island";
|
|
2574
|
-
Brazil: "Brazil";
|
|
2575
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
2576
|
-
Brunei: "Brunei";
|
|
2577
|
-
Bulgaria: "Bulgaria";
|
|
2578
|
-
"Burkina Faso": "Burkina Faso";
|
|
2579
|
-
Burundi: "Burundi";
|
|
2580
|
-
Cambodia: "Cambodia";
|
|
2581
|
-
Cameroon: "Cameroon";
|
|
2582
|
-
Canada: "Canada";
|
|
2583
|
-
"Cape Verde": "Cape Verde";
|
|
2584
|
-
"Cayman Islands": "Cayman Islands";
|
|
2585
|
-
"Central African Republic": "Central African Republic";
|
|
2586
|
-
Chad: "Chad";
|
|
2587
|
-
Chile: "Chile";
|
|
2588
|
-
China: "China";
|
|
2589
|
-
"Christmas Island": "Christmas Island";
|
|
2590
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
2591
|
-
Colombia: "Colombia";
|
|
2592
|
-
Comoros: "Comoros";
|
|
2593
|
-
Congo: "Congo";
|
|
2594
|
-
"Cook Islands": "Cook Islands";
|
|
2595
|
-
"Costa Rica": "Costa Rica";
|
|
2596
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
2597
|
-
Croatia: "Croatia";
|
|
2598
|
-
Cuba: "Cuba";
|
|
2599
|
-
Curaçao: "Curaçao";
|
|
2600
|
-
Cyprus: "Cyprus";
|
|
2601
|
-
"Czech Republic": "Czech Republic";
|
|
2602
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
2603
|
-
Denmark: "Denmark";
|
|
2604
|
-
Djibouti: "Djibouti";
|
|
2605
|
-
Dominica: "Dominica";
|
|
2606
|
-
"Dominican Republic": "Dominican Republic";
|
|
2607
|
-
"East Timor": "East Timor";
|
|
2608
|
-
Ecuador: "Ecuador";
|
|
2609
|
-
Egypt: "Egypt";
|
|
2610
|
-
"El Salvador": "El Salvador";
|
|
2611
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
2612
|
-
Eritrea: "Eritrea";
|
|
2613
|
-
Estonia: "Estonia";
|
|
2614
|
-
Ethiopia: "Ethiopia";
|
|
2615
|
-
"Falkland Islands": "Falkland Islands";
|
|
2616
|
-
"Faroe Islands": "Faroe Islands";
|
|
2617
|
-
"Fiji Islands": "Fiji Islands";
|
|
2618
|
-
Finland: "Finland";
|
|
2619
|
-
France: "France";
|
|
2620
|
-
"French Guiana": "French Guiana";
|
|
2621
|
-
"French Polynesia": "French Polynesia";
|
|
2622
|
-
"French Southern Territories": "French Southern Territories";
|
|
2623
|
-
Gabon: "Gabon";
|
|
2624
|
-
"Gambia The": "Gambia The";
|
|
2625
|
-
Georgia: "Georgia";
|
|
2626
|
-
Germany: "Germany";
|
|
2627
|
-
Ghana: "Ghana";
|
|
2628
|
-
Gibraltar: "Gibraltar";
|
|
2629
|
-
Greece: "Greece";
|
|
2630
|
-
Greenland: "Greenland";
|
|
2631
|
-
Grenada: "Grenada";
|
|
2632
|
-
Guadeloupe: "Guadeloupe";
|
|
2633
|
-
Guam: "Guam";
|
|
2634
|
-
Guatemala: "Guatemala";
|
|
2635
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
2636
|
-
Guinea: "Guinea";
|
|
2637
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
2638
|
-
Guyana: "Guyana";
|
|
2639
|
-
Haiti: "Haiti";
|
|
2640
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
2641
|
-
Honduras: "Honduras";
|
|
2642
|
-
"Hong Kong S.A.R.": "Hong Kong S.A.R.";
|
|
2643
|
-
Hungary: "Hungary";
|
|
2644
|
-
Iceland: "Iceland";
|
|
2645
|
-
India: "India";
|
|
2646
|
-
Indonesia: "Indonesia";
|
|
2647
|
-
Iran: "Iran";
|
|
2648
|
-
Iraq: "Iraq";
|
|
2649
|
-
Ireland: "Ireland";
|
|
2650
|
-
Israel: "Israel";
|
|
2651
|
-
Italy: "Italy";
|
|
2652
|
-
Jamaica: "Jamaica";
|
|
2653
|
-
Japan: "Japan";
|
|
2654
|
-
Jersey: "Jersey";
|
|
2655
|
-
Jordan: "Jordan";
|
|
2656
|
-
Kazakhstan: "Kazakhstan";
|
|
2657
|
-
Kenya: "Kenya";
|
|
2658
|
-
Kiribati: "Kiribati";
|
|
2659
|
-
Kosovo: "Kosovo";
|
|
2660
|
-
Kuwait: "Kuwait";
|
|
2661
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
2662
|
-
Laos: "Laos";
|
|
2663
|
-
Latvia: "Latvia";
|
|
2664
|
-
Lebanon: "Lebanon";
|
|
2665
|
-
Lesotho: "Lesotho";
|
|
2666
|
-
Liberia: "Liberia";
|
|
2667
|
-
Libya: "Libya";
|
|
2668
|
-
Liechtenstein: "Liechtenstein";
|
|
2669
|
-
Lithuania: "Lithuania";
|
|
2670
|
-
Luxembourg: "Luxembourg";
|
|
2671
|
-
"Macau S.A.R.": "Macau S.A.R.";
|
|
2672
|
-
Madagascar: "Madagascar";
|
|
2673
|
-
Malawi: "Malawi";
|
|
2674
|
-
Malaysia: "Malaysia";
|
|
2675
|
-
Maldives: "Maldives";
|
|
2676
|
-
Mali: "Mali";
|
|
2677
|
-
Malta: "Malta";
|
|
2678
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
2679
|
-
"Marshall Islands": "Marshall Islands";
|
|
2680
|
-
Martinique: "Martinique";
|
|
2681
|
-
Mauritania: "Mauritania";
|
|
2682
|
-
Mauritius: "Mauritius";
|
|
2683
|
-
Mayotte: "Mayotte";
|
|
2684
|
-
Mexico: "Mexico";
|
|
2685
|
-
Micronesia: "Micronesia";
|
|
2686
|
-
Moldova: "Moldova";
|
|
2687
|
-
Monaco: "Monaco";
|
|
2688
|
-
Mongolia: "Mongolia";
|
|
2689
|
-
Montenegro: "Montenegro";
|
|
2690
|
-
Montserrat: "Montserrat";
|
|
2691
|
-
Morocco: "Morocco";
|
|
2692
|
-
Mozambique: "Mozambique";
|
|
2693
|
-
Myanmar: "Myanmar";
|
|
2694
|
-
Namibia: "Namibia";
|
|
2695
|
-
Nauru: "Nauru";
|
|
2696
|
-
Nepal: "Nepal";
|
|
2697
|
-
Netherlands: "Netherlands";
|
|
2698
|
-
"New Caledonia": "New Caledonia";
|
|
2699
|
-
"New Zealand": "New Zealand";
|
|
2700
|
-
Nicaragua: "Nicaragua";
|
|
2701
|
-
Niger: "Niger";
|
|
2702
|
-
Nigeria: "Nigeria";
|
|
2703
|
-
Niue: "Niue";
|
|
2704
|
-
"Norfolk Island": "Norfolk Island";
|
|
2705
|
-
"North Korea": "North Korea";
|
|
2706
|
-
"North Macedonia": "North Macedonia";
|
|
2707
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
2708
|
-
Norway: "Norway";
|
|
2709
|
-
Oman: "Oman";
|
|
2710
|
-
Pakistan: "Pakistan";
|
|
2711
|
-
Palau: "Palau";
|
|
2712
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
2713
|
-
Panama: "Panama";
|
|
2714
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
2715
|
-
Paraguay: "Paraguay";
|
|
2716
|
-
Peru: "Peru";
|
|
2717
|
-
Philippines: "Philippines";
|
|
2718
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
2719
|
-
Poland: "Poland";
|
|
2720
|
-
Portugal: "Portugal";
|
|
2721
|
-
"Puerto Rico": "Puerto Rico";
|
|
2722
|
-
Qatar: "Qatar";
|
|
2723
|
-
Reunion: "Reunion";
|
|
2724
|
-
Romania: "Romania";
|
|
2725
|
-
Russia: "Russia";
|
|
2726
|
-
Rwanda: "Rwanda";
|
|
2727
|
-
"Saint Helena": "Saint Helena";
|
|
2728
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
2729
|
-
"Saint Lucia": "Saint Lucia";
|
|
2730
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
2731
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
2732
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
2733
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
2734
|
-
Samoa: "Samoa";
|
|
2735
|
-
"San Marino": "San Marino";
|
|
2736
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
2737
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
2738
|
-
Senegal: "Senegal";
|
|
2739
|
-
Serbia: "Serbia";
|
|
2740
|
-
Seychelles: "Seychelles";
|
|
2741
|
-
"Sierra Leone": "Sierra Leone";
|
|
2742
|
-
Singapore: "Singapore";
|
|
2743
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
2744
|
-
Slovakia: "Slovakia";
|
|
2745
|
-
Slovenia: "Slovenia";
|
|
2746
|
-
"Solomon Islands": "Solomon Islands";
|
|
2747
|
-
Somalia: "Somalia";
|
|
2748
|
-
"South Africa": "South Africa";
|
|
2749
|
-
"South Georgia": "South Georgia";
|
|
2750
|
-
"South Korea": "South Korea";
|
|
2751
|
-
"South Sudan": "South Sudan";
|
|
2752
|
-
Spain: "Spain";
|
|
2753
|
-
"Sri Lanka": "Sri Lanka";
|
|
2754
|
-
Sudan: "Sudan";
|
|
2755
|
-
Suriname: "Suriname";
|
|
2756
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
2757
|
-
Swaziland: "Swaziland";
|
|
2758
|
-
Sweden: "Sweden";
|
|
2759
|
-
Switzerland: "Switzerland";
|
|
2760
|
-
Syria: "Syria";
|
|
2761
|
-
Taiwan: "Taiwan";
|
|
2762
|
-
Tajikistan: "Tajikistan";
|
|
2763
|
-
Tanzania: "Tanzania";
|
|
2764
|
-
Thailand: "Thailand";
|
|
2765
|
-
"The Bahamas": "The Bahamas";
|
|
2766
|
-
Togo: "Togo";
|
|
2767
|
-
Tokelau: "Tokelau";
|
|
2768
|
-
Tonga: "Tonga";
|
|
2769
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
2770
|
-
Tunisia: "Tunisia";
|
|
2771
|
-
Turkey: "Turkey";
|
|
2772
|
-
Turkmenistan: "Turkmenistan";
|
|
2773
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
2774
|
-
Tuvalu: "Tuvalu";
|
|
2775
|
-
Uganda: "Uganda";
|
|
2776
|
-
Ukraine: "Ukraine";
|
|
2777
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
2778
|
-
"United Kingdom": "United Kingdom";
|
|
2779
|
-
"United States": "United States";
|
|
2780
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
2781
|
-
Uruguay: "Uruguay";
|
|
2782
|
-
Uzbekistan: "Uzbekistan";
|
|
2783
|
-
Vanuatu: "Vanuatu";
|
|
2784
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
2785
|
-
Venezuela: "Venezuela";
|
|
2786
|
-
Vietnam: "Vietnam";
|
|
2787
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
2788
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
2789
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
2790
|
-
"Western Sahara": "Western Sahara";
|
|
2791
|
-
Yemen: "Yemen";
|
|
2792
|
-
Zambia: "Zambia";
|
|
2793
|
-
Zimbabwe: "Zimbabwe";
|
|
2794
|
-
"Middle School": "Middle School";
|
|
2795
|
-
"High School": "High School";
|
|
2796
|
-
Diploma: "Diploma";
|
|
2797
|
-
Associate: "Associate";
|
|
2798
|
-
Bachelor: "Bachelor";
|
|
2799
|
-
Master: "Master";
|
|
2800
|
-
Doctor: "Doctor";
|
|
2801
|
-
"Elementary Proficiency": "Elementary Proficiency";
|
|
2802
|
-
"Limited Working Proficiency": "Limited Working Proficiency";
|
|
2803
|
-
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
2804
|
-
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
2805
|
-
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
2806
|
-
"10pt": "10pt";
|
|
2807
|
-
"11pt": "11pt";
|
|
2808
|
-
"12pt": "12pt";
|
|
2809
|
-
Lining: "Lining";
|
|
2810
|
-
OldStyle: "OldStyle";
|
|
2811
|
-
Auto: "Auto";
|
|
2812
|
-
Afrikaans: "Afrikaans";
|
|
2813
|
-
Albanian: "Albanian";
|
|
2814
|
-
Amharic: "Amharic";
|
|
2815
|
-
Arabic: "Arabic";
|
|
2816
|
-
Azerbaijani: "Azerbaijani";
|
|
2817
|
-
Belarusian: "Belarusian";
|
|
2818
|
-
Bengali: "Bengali";
|
|
2819
|
-
Bhojpuri: "Bhojpuri";
|
|
2820
|
-
Bulgarian: "Bulgarian";
|
|
2821
|
-
Burmese: "Burmese";
|
|
2822
|
-
Cantonese: "Cantonese";
|
|
2823
|
-
Catalan: "Catalan";
|
|
2824
|
-
Chinese: "Chinese";
|
|
2825
|
-
Croatian: "Croatian";
|
|
2826
|
-
Czech: "Czech";
|
|
2827
|
-
Danish: "Danish";
|
|
2828
|
-
Dutch: "Dutch";
|
|
2829
|
-
English: "English";
|
|
2830
|
-
Estonian: "Estonian";
|
|
2831
|
-
Farsi: "Farsi";
|
|
2832
|
-
Filipino: "Filipino";
|
|
2833
|
-
Finnish: "Finnish";
|
|
2834
|
-
French: "French";
|
|
2835
|
-
German: "German";
|
|
2836
|
-
Greek: "Greek";
|
|
2837
|
-
Gujarati: "Gujarati";
|
|
2838
|
-
Hausa: "Hausa";
|
|
2839
|
-
Hebrew: "Hebrew";
|
|
2840
|
-
Hindi: "Hindi";
|
|
2841
|
-
Hungarian: "Hungarian";
|
|
2842
|
-
Icelandic: "Icelandic";
|
|
2843
|
-
Igbo: "Igbo";
|
|
2844
|
-
Indonesian: "Indonesian";
|
|
2845
|
-
Irish: "Irish";
|
|
2846
|
-
Italian: "Italian";
|
|
2847
|
-
Japanese: "Japanese";
|
|
2848
|
-
Javanese: "Javanese";
|
|
2849
|
-
Kazakh: "Kazakh";
|
|
2850
|
-
Khmer: "Khmer";
|
|
2851
|
-
Korean: "Korean";
|
|
2852
|
-
Lahnda: "Lahnda";
|
|
2853
|
-
Latvian: "Latvian";
|
|
2854
|
-
Lithuanian: "Lithuanian";
|
|
2855
|
-
Malay: "Malay";
|
|
2856
|
-
Mandarin: "Mandarin";
|
|
2857
|
-
Marathi: "Marathi";
|
|
2858
|
-
Nepali: "Nepali";
|
|
2859
|
-
Norwegian: "Norwegian";
|
|
2860
|
-
Oromo: "Oromo";
|
|
2861
|
-
Pashto: "Pashto";
|
|
2862
|
-
Polish: "Polish";
|
|
2863
|
-
Portuguese: "Portuguese";
|
|
2864
|
-
Romanian: "Romanian";
|
|
2865
|
-
Russian: "Russian";
|
|
2866
|
-
Serbian: "Serbian";
|
|
2867
|
-
Shona: "Shona";
|
|
2868
|
-
Sinhala: "Sinhala";
|
|
2869
|
-
Slovak: "Slovak";
|
|
2870
|
-
Slovene: "Slovene";
|
|
2871
|
-
Somali: "Somali";
|
|
2872
|
-
Spanish: "Spanish";
|
|
2873
|
-
Sundanese: "Sundanese";
|
|
2874
|
-
Swahili: "Swahili";
|
|
2875
|
-
Swedish: "Swedish";
|
|
2876
|
-
Tagalog: "Tagalog";
|
|
2877
|
-
Tamil: "Tamil";
|
|
2878
|
-
Telugu: "Telugu";
|
|
2879
|
-
Thai: "Thai";
|
|
2880
|
-
Turkish: "Turkish";
|
|
2881
|
-
Ukrainian: "Ukrainian";
|
|
2882
|
-
Urdu: "Urdu";
|
|
2883
|
-
Uzbek: "Uzbek";
|
|
2884
|
-
Vietnamese: "Vietnamese";
|
|
2885
|
-
Yoruba: "Yoruba";
|
|
2886
|
-
Zulu: "Zulu";
|
|
2887
|
-
Novice: "Novice";
|
|
2888
|
-
Beginner: "Beginner";
|
|
2889
|
-
Intermediate: "Intermediate";
|
|
2890
|
-
Advanced: "Advanced";
|
|
2891
|
-
Expert: "Expert";
|
|
2892
|
-
en: "en";
|
|
2893
|
-
"zh-hans": "zh-hans";
|
|
2894
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
2895
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
2896
|
-
es: "es";
|
|
2897
|
-
Behance: "Behance";
|
|
2898
|
-
Dribbble: "Dribbble";
|
|
2899
|
-
Facebook: "Facebook";
|
|
2900
|
-
GitHub: "GitHub";
|
|
2901
|
-
Gitlab: "Gitlab";
|
|
2902
|
-
Instagram: "Instagram";
|
|
2903
|
-
Line: "Line";
|
|
2904
|
-
LinkedIn: "LinkedIn";
|
|
2905
|
-
Medium: "Medium";
|
|
2906
|
-
Pinterest: "Pinterest";
|
|
2907
|
-
Reddit: "Reddit";
|
|
2908
|
-
Snapchat: "Snapchat";
|
|
2909
|
-
"Stack Overflow": "Stack Overflow";
|
|
2910
|
-
Telegram: "Telegram";
|
|
2911
|
-
TikTok: "TikTok";
|
|
2912
|
-
Twitch: "Twitch";
|
|
2913
|
-
Twitter: "Twitter";
|
|
2914
|
-
Vimeo: "Vimeo";
|
|
2915
|
-
Weibo: "Weibo";
|
|
2916
|
-
WeChat: "WeChat";
|
|
2917
|
-
WhatsApp: "WhatsApp";
|
|
2918
|
-
YouTube: "YouTube";
|
|
2919
|
-
Zhihu: "Zhihu";
|
|
2920
|
-
"moderncv-banking": "moderncv-banking";
|
|
2921
|
-
"moderncv-casual": "moderncv-casual";
|
|
2922
|
-
"moderncv-classic": "moderncv-classic";
|
|
2923
|
-
}>>>;
|
|
2924
|
-
}, z.core.$strip>>>;
|
|
2925
|
-
}, z.core.$strip>>>;
|
|
2926
|
-
}, z.core.$strip>>>;
|
|
2927
|
-
content: z.ZodObject<{
|
|
2928
|
-
work: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2387
|
+
}>;
|
|
2388
|
+
name: z.ZodString;
|
|
2389
|
+
keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
2390
|
+
}, z.core.$strip>>>>;
|
|
2391
|
+
references: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2929
2392
|
name: z.ZodString;
|
|
2930
|
-
position: z.ZodString;
|
|
2931
|
-
startDate: z.ZodString;
|
|
2932
2393
|
summary: z.ZodString;
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2394
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2395
|
+
phone: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2396
|
+
relationship: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2936
2397
|
}, z.core.$strip>>>>;
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2398
|
+
publications: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2399
|
+
name: z.ZodString;
|
|
2400
|
+
publisher: z.ZodString;
|
|
2401
|
+
releaseDate: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2402
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2403
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2404
|
+
}, z.core.$strip>>>>;
|
|
2405
|
+
projects: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2406
|
+
name: z.ZodString;
|
|
2940
2407
|
startDate: z.ZodString;
|
|
2941
2408
|
summary: z.ZodString;
|
|
2942
|
-
|
|
2943
|
-
|
|
2409
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2410
|
+
endDate: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2411
|
+
keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
2412
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2944
2413
|
}, z.core.$strip>>>>;
|
|
2945
|
-
|
|
2946
|
-
|
|
2414
|
+
profiles: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2415
|
+
network: z.ZodEnum<{
|
|
2947
2416
|
Afghanistan: "Afghanistan";
|
|
2948
2417
|
"Aland Islands": "Aland Islands";
|
|
2949
2418
|
Albania: "Albania";
|
|
@@ -3320,38 +2789,34 @@ declare const resumeSchema: z.ZodObject<{
|
|
|
3320
2789
|
WhatsApp: "WhatsApp";
|
|
3321
2790
|
YouTube: "YouTube";
|
|
3322
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";
|
|
3323
2804
|
"moderncv-banking": "moderncv-banking";
|
|
3324
2805
|
"moderncv-casual": "moderncv-casual";
|
|
3325
2806
|
"moderncv-classic": "moderncv-classic";
|
|
3326
2807
|
}>;
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
}, z.core.$strip>>>>;
|
|
3330
|
-
references: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3331
|
-
name: z.ZodString;
|
|
3332
|
-
summary: z.ZodString;
|
|
3333
|
-
email: z.ZodOptional<z.ZodNullable<z.ZodEmail>>;
|
|
3334
|
-
phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3335
|
-
relationship: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3336
|
-
}, z.core.$strip>>>>;
|
|
3337
|
-
publications: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3338
|
-
name: z.ZodString;
|
|
3339
|
-
publisher: z.ZodString;
|
|
3340
|
-
releaseDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3341
|
-
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3342
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
3343
|
-
}, z.core.$strip>>>>;
|
|
3344
|
-
projects: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3345
|
-
name: z.ZodString;
|
|
3346
|
-
startDate: z.ZodString;
|
|
3347
|
-
summary: z.ZodString;
|
|
3348
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3349
|
-
endDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3350
|
-
keywords: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
3351
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
2808
|
+
username: z.ZodString;
|
|
2809
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3352
2810
|
}, z.core.$strip>>>>;
|
|
3353
|
-
|
|
3354
|
-
|
|
2811
|
+
location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2812
|
+
city: z.ZodString;
|
|
2813
|
+
address: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2814
|
+
country: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "basics" | "education" | "work" | "volunteer" | "awards" | "certificates" | "publications" | "skills" | "languages" | "interests" | "references" | "projects" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
|
|
2815
|
+
postalCode: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2816
|
+
region: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
2817
|
+
}, z.core.$strip>>>;
|
|
2818
|
+
languages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2819
|
+
fluency: z.ZodEnum<{
|
|
3355
2820
|
Afghanistan: "Afghanistan";
|
|
3356
2821
|
"Aland Islands": "Aland Islands";
|
|
3357
2822
|
Albania: "Albania";
|
|
@@ -3728,17 +3193,23 @@ declare const resumeSchema: z.ZodObject<{
|
|
|
3728
3193
|
WhatsApp: "WhatsApp";
|
|
3729
3194
|
YouTube: "YouTube";
|
|
3730
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";
|
|
3731
3208
|
"moderncv-banking": "moderncv-banking";
|
|
3732
3209
|
"moderncv-casual": "moderncv-casual";
|
|
3733
3210
|
"moderncv-classic": "moderncv-classic";
|
|
3734
3211
|
}>;
|
|
3735
|
-
|
|
3736
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
3737
|
-
}, z.core.$strip>>>>;
|
|
3738
|
-
location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3739
|
-
city: z.ZodString;
|
|
3740
|
-
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3741
|
-
country: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3212
|
+
language: z.ZodEnum<{
|
|
3742
3213
|
Afghanistan: "Afghanistan";
|
|
3743
3214
|
"Aland Islands": "Aland Islands";
|
|
3744
3215
|
Albania: "Albania";
|
|
@@ -4115,798 +3586,44 @@ declare const resumeSchema: z.ZodObject<{
|
|
|
4115
3586
|
WhatsApp: "WhatsApp";
|
|
4116
3587
|
YouTube: "YouTube";
|
|
4117
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";
|
|
4118
3601
|
"moderncv-banking": "moderncv-banking";
|
|
4119
3602
|
"moderncv-casual": "moderncv-casual";
|
|
4120
3603
|
"moderncv-classic": "moderncv-classic";
|
|
4121
|
-
}
|
|
4122
|
-
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
|
|
4144
|
-
Bangladesh: "Bangladesh";
|
|
4145
|
-
Barbados: "Barbados";
|
|
4146
|
-
Belarus: "Belarus";
|
|
4147
|
-
Belgium: "Belgium";
|
|
4148
|
-
Belize: "Belize";
|
|
4149
|
-
Benin: "Benin";
|
|
4150
|
-
Bermuda: "Bermuda";
|
|
4151
|
-
Bhutan: "Bhutan";
|
|
4152
|
-
Bolivia: "Bolivia";
|
|
4153
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
4154
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
4155
|
-
Botswana: "Botswana";
|
|
4156
|
-
"Bouvet Island": "Bouvet Island";
|
|
4157
|
-
Brazil: "Brazil";
|
|
4158
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
4159
|
-
Brunei: "Brunei";
|
|
4160
|
-
Bulgaria: "Bulgaria";
|
|
4161
|
-
"Burkina Faso": "Burkina Faso";
|
|
4162
|
-
Burundi: "Burundi";
|
|
4163
|
-
Cambodia: "Cambodia";
|
|
4164
|
-
Cameroon: "Cameroon";
|
|
4165
|
-
Canada: "Canada";
|
|
4166
|
-
"Cape Verde": "Cape Verde";
|
|
4167
|
-
"Cayman Islands": "Cayman Islands";
|
|
4168
|
-
"Central African Republic": "Central African Republic";
|
|
4169
|
-
Chad: "Chad";
|
|
4170
|
-
Chile: "Chile";
|
|
4171
|
-
China: "China";
|
|
4172
|
-
"Christmas Island": "Christmas Island";
|
|
4173
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
4174
|
-
Colombia: "Colombia";
|
|
4175
|
-
Comoros: "Comoros";
|
|
4176
|
-
Congo: "Congo";
|
|
4177
|
-
"Cook Islands": "Cook Islands";
|
|
4178
|
-
"Costa Rica": "Costa Rica";
|
|
4179
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
4180
|
-
Croatia: "Croatia";
|
|
4181
|
-
Cuba: "Cuba";
|
|
4182
|
-
Curaçao: "Curaçao";
|
|
4183
|
-
Cyprus: "Cyprus";
|
|
4184
|
-
"Czech Republic": "Czech Republic";
|
|
4185
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
4186
|
-
Denmark: "Denmark";
|
|
4187
|
-
Djibouti: "Djibouti";
|
|
4188
|
-
Dominica: "Dominica";
|
|
4189
|
-
"Dominican Republic": "Dominican Republic";
|
|
4190
|
-
"East Timor": "East Timor";
|
|
4191
|
-
Ecuador: "Ecuador";
|
|
4192
|
-
Egypt: "Egypt";
|
|
4193
|
-
"El Salvador": "El Salvador";
|
|
4194
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
4195
|
-
Eritrea: "Eritrea";
|
|
4196
|
-
Estonia: "Estonia";
|
|
4197
|
-
Ethiopia: "Ethiopia";
|
|
4198
|
-
"Falkland Islands": "Falkland Islands";
|
|
4199
|
-
"Faroe Islands": "Faroe Islands";
|
|
4200
|
-
"Fiji Islands": "Fiji Islands";
|
|
4201
|
-
Finland: "Finland";
|
|
4202
|
-
France: "France";
|
|
4203
|
-
"French Guiana": "French Guiana";
|
|
4204
|
-
"French Polynesia": "French Polynesia";
|
|
4205
|
-
"French Southern Territories": "French Southern Territories";
|
|
4206
|
-
Gabon: "Gabon";
|
|
4207
|
-
"Gambia The": "Gambia The";
|
|
4208
|
-
Georgia: "Georgia";
|
|
4209
|
-
Germany: "Germany";
|
|
4210
|
-
Ghana: "Ghana";
|
|
4211
|
-
Gibraltar: "Gibraltar";
|
|
4212
|
-
Greece: "Greece";
|
|
4213
|
-
Greenland: "Greenland";
|
|
4214
|
-
Grenada: "Grenada";
|
|
4215
|
-
Guadeloupe: "Guadeloupe";
|
|
4216
|
-
Guam: "Guam";
|
|
4217
|
-
Guatemala: "Guatemala";
|
|
4218
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
4219
|
-
Guinea: "Guinea";
|
|
4220
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
4221
|
-
Guyana: "Guyana";
|
|
4222
|
-
Haiti: "Haiti";
|
|
4223
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
4224
|
-
Honduras: "Honduras";
|
|
4225
|
-
"Hong Kong S.A.R.": "Hong Kong S.A.R.";
|
|
4226
|
-
Hungary: "Hungary";
|
|
4227
|
-
Iceland: "Iceland";
|
|
4228
|
-
India: "India";
|
|
4229
|
-
Indonesia: "Indonesia";
|
|
4230
|
-
Iran: "Iran";
|
|
4231
|
-
Iraq: "Iraq";
|
|
4232
|
-
Ireland: "Ireland";
|
|
4233
|
-
Israel: "Israel";
|
|
4234
|
-
Italy: "Italy";
|
|
4235
|
-
Jamaica: "Jamaica";
|
|
4236
|
-
Japan: "Japan";
|
|
4237
|
-
Jersey: "Jersey";
|
|
4238
|
-
Jordan: "Jordan";
|
|
4239
|
-
Kazakhstan: "Kazakhstan";
|
|
4240
|
-
Kenya: "Kenya";
|
|
4241
|
-
Kiribati: "Kiribati";
|
|
4242
|
-
Kosovo: "Kosovo";
|
|
4243
|
-
Kuwait: "Kuwait";
|
|
4244
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
4245
|
-
Laos: "Laos";
|
|
4246
|
-
Latvia: "Latvia";
|
|
4247
|
-
Lebanon: "Lebanon";
|
|
4248
|
-
Lesotho: "Lesotho";
|
|
4249
|
-
Liberia: "Liberia";
|
|
4250
|
-
Libya: "Libya";
|
|
4251
|
-
Liechtenstein: "Liechtenstein";
|
|
4252
|
-
Lithuania: "Lithuania";
|
|
4253
|
-
Luxembourg: "Luxembourg";
|
|
4254
|
-
"Macau S.A.R.": "Macau S.A.R.";
|
|
4255
|
-
Madagascar: "Madagascar";
|
|
4256
|
-
Malawi: "Malawi";
|
|
4257
|
-
Malaysia: "Malaysia";
|
|
4258
|
-
Maldives: "Maldives";
|
|
4259
|
-
Mali: "Mali";
|
|
4260
|
-
Malta: "Malta";
|
|
4261
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
4262
|
-
"Marshall Islands": "Marshall Islands";
|
|
4263
|
-
Martinique: "Martinique";
|
|
4264
|
-
Mauritania: "Mauritania";
|
|
4265
|
-
Mauritius: "Mauritius";
|
|
4266
|
-
Mayotte: "Mayotte";
|
|
4267
|
-
Mexico: "Mexico";
|
|
4268
|
-
Micronesia: "Micronesia";
|
|
4269
|
-
Moldova: "Moldova";
|
|
4270
|
-
Monaco: "Monaco";
|
|
4271
|
-
Mongolia: "Mongolia";
|
|
4272
|
-
Montenegro: "Montenegro";
|
|
4273
|
-
Montserrat: "Montserrat";
|
|
4274
|
-
Morocco: "Morocco";
|
|
4275
|
-
Mozambique: "Mozambique";
|
|
4276
|
-
Myanmar: "Myanmar";
|
|
4277
|
-
Namibia: "Namibia";
|
|
4278
|
-
Nauru: "Nauru";
|
|
4279
|
-
Nepal: "Nepal";
|
|
4280
|
-
Netherlands: "Netherlands";
|
|
4281
|
-
"New Caledonia": "New Caledonia";
|
|
4282
|
-
"New Zealand": "New Zealand";
|
|
4283
|
-
Nicaragua: "Nicaragua";
|
|
4284
|
-
Niger: "Niger";
|
|
4285
|
-
Nigeria: "Nigeria";
|
|
4286
|
-
Niue: "Niue";
|
|
4287
|
-
"Norfolk Island": "Norfolk Island";
|
|
4288
|
-
"North Korea": "North Korea";
|
|
4289
|
-
"North Macedonia": "North Macedonia";
|
|
4290
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
4291
|
-
Norway: "Norway";
|
|
4292
|
-
Oman: "Oman";
|
|
4293
|
-
Pakistan: "Pakistan";
|
|
4294
|
-
Palau: "Palau";
|
|
4295
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
4296
|
-
Panama: "Panama";
|
|
4297
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
4298
|
-
Paraguay: "Paraguay";
|
|
4299
|
-
Peru: "Peru";
|
|
4300
|
-
Philippines: "Philippines";
|
|
4301
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
4302
|
-
Poland: "Poland";
|
|
4303
|
-
Portugal: "Portugal";
|
|
4304
|
-
"Puerto Rico": "Puerto Rico";
|
|
4305
|
-
Qatar: "Qatar";
|
|
4306
|
-
Reunion: "Reunion";
|
|
4307
|
-
Romania: "Romania";
|
|
4308
|
-
Russia: "Russia";
|
|
4309
|
-
Rwanda: "Rwanda";
|
|
4310
|
-
"Saint Helena": "Saint Helena";
|
|
4311
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
4312
|
-
"Saint Lucia": "Saint Lucia";
|
|
4313
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
4314
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
4315
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
4316
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
4317
|
-
Samoa: "Samoa";
|
|
4318
|
-
"San Marino": "San Marino";
|
|
4319
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
4320
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
4321
|
-
Senegal: "Senegal";
|
|
4322
|
-
Serbia: "Serbia";
|
|
4323
|
-
Seychelles: "Seychelles";
|
|
4324
|
-
"Sierra Leone": "Sierra Leone";
|
|
4325
|
-
Singapore: "Singapore";
|
|
4326
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
4327
|
-
Slovakia: "Slovakia";
|
|
4328
|
-
Slovenia: "Slovenia";
|
|
4329
|
-
"Solomon Islands": "Solomon Islands";
|
|
4330
|
-
Somalia: "Somalia";
|
|
4331
|
-
"South Africa": "South Africa";
|
|
4332
|
-
"South Georgia": "South Georgia";
|
|
4333
|
-
"South Korea": "South Korea";
|
|
4334
|
-
"South Sudan": "South Sudan";
|
|
4335
|
-
Spain: "Spain";
|
|
4336
|
-
"Sri Lanka": "Sri Lanka";
|
|
4337
|
-
Sudan: "Sudan";
|
|
4338
|
-
Suriname: "Suriname";
|
|
4339
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
4340
|
-
Swaziland: "Swaziland";
|
|
4341
|
-
Sweden: "Sweden";
|
|
4342
|
-
Switzerland: "Switzerland";
|
|
4343
|
-
Syria: "Syria";
|
|
4344
|
-
Taiwan: "Taiwan";
|
|
4345
|
-
Tajikistan: "Tajikistan";
|
|
4346
|
-
Tanzania: "Tanzania";
|
|
4347
|
-
Thailand: "Thailand";
|
|
4348
|
-
"The Bahamas": "The Bahamas";
|
|
4349
|
-
Togo: "Togo";
|
|
4350
|
-
Tokelau: "Tokelau";
|
|
4351
|
-
Tonga: "Tonga";
|
|
4352
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
4353
|
-
Tunisia: "Tunisia";
|
|
4354
|
-
Turkey: "Turkey";
|
|
4355
|
-
Turkmenistan: "Turkmenistan";
|
|
4356
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
4357
|
-
Tuvalu: "Tuvalu";
|
|
4358
|
-
Uganda: "Uganda";
|
|
4359
|
-
Ukraine: "Ukraine";
|
|
4360
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
4361
|
-
"United Kingdom": "United Kingdom";
|
|
4362
|
-
"United States": "United States";
|
|
4363
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
4364
|
-
Uruguay: "Uruguay";
|
|
4365
|
-
Uzbekistan: "Uzbekistan";
|
|
4366
|
-
Vanuatu: "Vanuatu";
|
|
4367
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
4368
|
-
Venezuela: "Venezuela";
|
|
4369
|
-
Vietnam: "Vietnam";
|
|
4370
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
4371
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
4372
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
4373
|
-
"Western Sahara": "Western Sahara";
|
|
4374
|
-
Yemen: "Yemen";
|
|
4375
|
-
Zambia: "Zambia";
|
|
4376
|
-
Zimbabwe: "Zimbabwe";
|
|
4377
|
-
"Middle School": "Middle School";
|
|
4378
|
-
"High School": "High School";
|
|
4379
|
-
Diploma: "Diploma";
|
|
4380
|
-
Associate: "Associate";
|
|
4381
|
-
Bachelor: "Bachelor";
|
|
4382
|
-
Master: "Master";
|
|
4383
|
-
Doctor: "Doctor";
|
|
4384
|
-
"Elementary Proficiency": "Elementary Proficiency";
|
|
4385
|
-
"Limited Working Proficiency": "Limited Working Proficiency";
|
|
4386
|
-
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
4387
|
-
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
4388
|
-
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
4389
|
-
"10pt": "10pt";
|
|
4390
|
-
"11pt": "11pt";
|
|
4391
|
-
"12pt": "12pt";
|
|
4392
|
-
Lining: "Lining";
|
|
4393
|
-
OldStyle: "OldStyle";
|
|
4394
|
-
Auto: "Auto";
|
|
4395
|
-
Afrikaans: "Afrikaans";
|
|
4396
|
-
Albanian: "Albanian";
|
|
4397
|
-
Amharic: "Amharic";
|
|
4398
|
-
Arabic: "Arabic";
|
|
4399
|
-
Azerbaijani: "Azerbaijani";
|
|
4400
|
-
Belarusian: "Belarusian";
|
|
4401
|
-
Bengali: "Bengali";
|
|
4402
|
-
Bhojpuri: "Bhojpuri";
|
|
4403
|
-
Bulgarian: "Bulgarian";
|
|
4404
|
-
Burmese: "Burmese";
|
|
4405
|
-
Cantonese: "Cantonese";
|
|
4406
|
-
Catalan: "Catalan";
|
|
4407
|
-
Chinese: "Chinese";
|
|
4408
|
-
Croatian: "Croatian";
|
|
4409
|
-
Czech: "Czech";
|
|
4410
|
-
Danish: "Danish";
|
|
4411
|
-
Dutch: "Dutch";
|
|
4412
|
-
English: "English";
|
|
4413
|
-
Estonian: "Estonian";
|
|
4414
|
-
Farsi: "Farsi";
|
|
4415
|
-
Filipino: "Filipino";
|
|
4416
|
-
Finnish: "Finnish";
|
|
4417
|
-
French: "French";
|
|
4418
|
-
German: "German";
|
|
4419
|
-
Greek: "Greek";
|
|
4420
|
-
Gujarati: "Gujarati";
|
|
4421
|
-
Hausa: "Hausa";
|
|
4422
|
-
Hebrew: "Hebrew";
|
|
4423
|
-
Hindi: "Hindi";
|
|
4424
|
-
Hungarian: "Hungarian";
|
|
4425
|
-
Icelandic: "Icelandic";
|
|
4426
|
-
Igbo: "Igbo";
|
|
4427
|
-
Indonesian: "Indonesian";
|
|
4428
|
-
Irish: "Irish";
|
|
4429
|
-
Italian: "Italian";
|
|
4430
|
-
Japanese: "Japanese";
|
|
4431
|
-
Javanese: "Javanese";
|
|
4432
|
-
Kazakh: "Kazakh";
|
|
4433
|
-
Khmer: "Khmer";
|
|
4434
|
-
Korean: "Korean";
|
|
4435
|
-
Lahnda: "Lahnda";
|
|
4436
|
-
Latvian: "Latvian";
|
|
4437
|
-
Lithuanian: "Lithuanian";
|
|
4438
|
-
Malay: "Malay";
|
|
4439
|
-
Mandarin: "Mandarin";
|
|
4440
|
-
Marathi: "Marathi";
|
|
4441
|
-
Nepali: "Nepali";
|
|
4442
|
-
Norwegian: "Norwegian";
|
|
4443
|
-
Oromo: "Oromo";
|
|
4444
|
-
Pashto: "Pashto";
|
|
4445
|
-
Polish: "Polish";
|
|
4446
|
-
Portuguese: "Portuguese";
|
|
4447
|
-
Romanian: "Romanian";
|
|
4448
|
-
Russian: "Russian";
|
|
4449
|
-
Serbian: "Serbian";
|
|
4450
|
-
Shona: "Shona";
|
|
4451
|
-
Sinhala: "Sinhala";
|
|
4452
|
-
Slovak: "Slovak";
|
|
4453
|
-
Slovene: "Slovene";
|
|
4454
|
-
Somali: "Somali";
|
|
4455
|
-
Spanish: "Spanish";
|
|
4456
|
-
Sundanese: "Sundanese";
|
|
4457
|
-
Swahili: "Swahili";
|
|
4458
|
-
Swedish: "Swedish";
|
|
4459
|
-
Tagalog: "Tagalog";
|
|
4460
|
-
Tamil: "Tamil";
|
|
4461
|
-
Telugu: "Telugu";
|
|
4462
|
-
Thai: "Thai";
|
|
4463
|
-
Turkish: "Turkish";
|
|
4464
|
-
Ukrainian: "Ukrainian";
|
|
4465
|
-
Urdu: "Urdu";
|
|
4466
|
-
Uzbek: "Uzbek";
|
|
4467
|
-
Vietnamese: "Vietnamese";
|
|
4468
|
-
Yoruba: "Yoruba";
|
|
4469
|
-
Zulu: "Zulu";
|
|
4470
|
-
Novice: "Novice";
|
|
4471
|
-
Beginner: "Beginner";
|
|
4472
|
-
Intermediate: "Intermediate";
|
|
4473
|
-
Advanced: "Advanced";
|
|
4474
|
-
Expert: "Expert";
|
|
4475
|
-
en: "en";
|
|
4476
|
-
"zh-hans": "zh-hans";
|
|
4477
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
4478
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
4479
|
-
es: "es";
|
|
4480
|
-
Behance: "Behance";
|
|
4481
|
-
Dribbble: "Dribbble";
|
|
4482
|
-
Facebook: "Facebook";
|
|
4483
|
-
GitHub: "GitHub";
|
|
4484
|
-
Gitlab: "Gitlab";
|
|
4485
|
-
Instagram: "Instagram";
|
|
4486
|
-
Line: "Line";
|
|
4487
|
-
LinkedIn: "LinkedIn";
|
|
4488
|
-
Medium: "Medium";
|
|
4489
|
-
Pinterest: "Pinterest";
|
|
4490
|
-
Reddit: "Reddit";
|
|
4491
|
-
Snapchat: "Snapchat";
|
|
4492
|
-
"Stack Overflow": "Stack Overflow";
|
|
4493
|
-
Telegram: "Telegram";
|
|
4494
|
-
TikTok: "TikTok";
|
|
4495
|
-
Twitch: "Twitch";
|
|
4496
|
-
Twitter: "Twitter";
|
|
4497
|
-
Vimeo: "Vimeo";
|
|
4498
|
-
Weibo: "Weibo";
|
|
4499
|
-
WeChat: "WeChat";
|
|
4500
|
-
WhatsApp: "WhatsApp";
|
|
4501
|
-
YouTube: "YouTube";
|
|
4502
|
-
Zhihu: "Zhihu";
|
|
4503
|
-
"moderncv-banking": "moderncv-banking";
|
|
4504
|
-
"moderncv-casual": "moderncv-casual";
|
|
4505
|
-
"moderncv-classic": "moderncv-classic";
|
|
4506
|
-
}>;
|
|
4507
|
-
language: z.ZodEnum<{
|
|
4508
|
-
Afghanistan: "Afghanistan";
|
|
4509
|
-
"Aland Islands": "Aland Islands";
|
|
4510
|
-
Albania: "Albania";
|
|
4511
|
-
Algeria: "Algeria";
|
|
4512
|
-
"American Samoa": "American Samoa";
|
|
4513
|
-
Andorra: "Andorra";
|
|
4514
|
-
Angola: "Angola";
|
|
4515
|
-
Anguilla: "Anguilla";
|
|
4516
|
-
Antarctica: "Antarctica";
|
|
4517
|
-
"Antigua And Barbuda": "Antigua And Barbuda";
|
|
4518
|
-
Argentina: "Argentina";
|
|
4519
|
-
Armenia: "Armenia";
|
|
4520
|
-
Aruba: "Aruba";
|
|
4521
|
-
Australia: "Australia";
|
|
4522
|
-
Austria: "Austria";
|
|
4523
|
-
Azerbaijan: "Azerbaijan";
|
|
4524
|
-
Bahrain: "Bahrain";
|
|
4525
|
-
Bangladesh: "Bangladesh";
|
|
4526
|
-
Barbados: "Barbados";
|
|
4527
|
-
Belarus: "Belarus";
|
|
4528
|
-
Belgium: "Belgium";
|
|
4529
|
-
Belize: "Belize";
|
|
4530
|
-
Benin: "Benin";
|
|
4531
|
-
Bermuda: "Bermuda";
|
|
4532
|
-
Bhutan: "Bhutan";
|
|
4533
|
-
Bolivia: "Bolivia";
|
|
4534
|
-
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
|
|
4535
|
-
"Bosnia and Herzegovina": "Bosnia and Herzegovina";
|
|
4536
|
-
Botswana: "Botswana";
|
|
4537
|
-
"Bouvet Island": "Bouvet Island";
|
|
4538
|
-
Brazil: "Brazil";
|
|
4539
|
-
"British Indian Ocean Territory": "British Indian Ocean Territory";
|
|
4540
|
-
Brunei: "Brunei";
|
|
4541
|
-
Bulgaria: "Bulgaria";
|
|
4542
|
-
"Burkina Faso": "Burkina Faso";
|
|
4543
|
-
Burundi: "Burundi";
|
|
4544
|
-
Cambodia: "Cambodia";
|
|
4545
|
-
Cameroon: "Cameroon";
|
|
4546
|
-
Canada: "Canada";
|
|
4547
|
-
"Cape Verde": "Cape Verde";
|
|
4548
|
-
"Cayman Islands": "Cayman Islands";
|
|
4549
|
-
"Central African Republic": "Central African Republic";
|
|
4550
|
-
Chad: "Chad";
|
|
4551
|
-
Chile: "Chile";
|
|
4552
|
-
China: "China";
|
|
4553
|
-
"Christmas Island": "Christmas Island";
|
|
4554
|
-
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
|
|
4555
|
-
Colombia: "Colombia";
|
|
4556
|
-
Comoros: "Comoros";
|
|
4557
|
-
Congo: "Congo";
|
|
4558
|
-
"Cook Islands": "Cook Islands";
|
|
4559
|
-
"Costa Rica": "Costa Rica";
|
|
4560
|
-
"Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
|
|
4561
|
-
Croatia: "Croatia";
|
|
4562
|
-
Cuba: "Cuba";
|
|
4563
|
-
Curaçao: "Curaçao";
|
|
4564
|
-
Cyprus: "Cyprus";
|
|
4565
|
-
"Czech Republic": "Czech Republic";
|
|
4566
|
-
"Democratic Republic of the Congo": "Democratic Republic of the Congo";
|
|
4567
|
-
Denmark: "Denmark";
|
|
4568
|
-
Djibouti: "Djibouti";
|
|
4569
|
-
Dominica: "Dominica";
|
|
4570
|
-
"Dominican Republic": "Dominican Republic";
|
|
4571
|
-
"East Timor": "East Timor";
|
|
4572
|
-
Ecuador: "Ecuador";
|
|
4573
|
-
Egypt: "Egypt";
|
|
4574
|
-
"El Salvador": "El Salvador";
|
|
4575
|
-
"Equatorial Guinea": "Equatorial Guinea";
|
|
4576
|
-
Eritrea: "Eritrea";
|
|
4577
|
-
Estonia: "Estonia";
|
|
4578
|
-
Ethiopia: "Ethiopia";
|
|
4579
|
-
"Falkland Islands": "Falkland Islands";
|
|
4580
|
-
"Faroe Islands": "Faroe Islands";
|
|
4581
|
-
"Fiji Islands": "Fiji Islands";
|
|
4582
|
-
Finland: "Finland";
|
|
4583
|
-
France: "France";
|
|
4584
|
-
"French Guiana": "French Guiana";
|
|
4585
|
-
"French Polynesia": "French Polynesia";
|
|
4586
|
-
"French Southern Territories": "French Southern Territories";
|
|
4587
|
-
Gabon: "Gabon";
|
|
4588
|
-
"Gambia The": "Gambia The";
|
|
4589
|
-
Georgia: "Georgia";
|
|
4590
|
-
Germany: "Germany";
|
|
4591
|
-
Ghana: "Ghana";
|
|
4592
|
-
Gibraltar: "Gibraltar";
|
|
4593
|
-
Greece: "Greece";
|
|
4594
|
-
Greenland: "Greenland";
|
|
4595
|
-
Grenada: "Grenada";
|
|
4596
|
-
Guadeloupe: "Guadeloupe";
|
|
4597
|
-
Guam: "Guam";
|
|
4598
|
-
Guatemala: "Guatemala";
|
|
4599
|
-
"Guernsey and Alderney": "Guernsey and Alderney";
|
|
4600
|
-
Guinea: "Guinea";
|
|
4601
|
-
"Guinea-Bissau": "Guinea-Bissau";
|
|
4602
|
-
Guyana: "Guyana";
|
|
4603
|
-
Haiti: "Haiti";
|
|
4604
|
-
"Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
|
|
4605
|
-
Honduras: "Honduras";
|
|
4606
|
-
"Hong Kong S.A.R.": "Hong Kong S.A.R.";
|
|
4607
|
-
Hungary: "Hungary";
|
|
4608
|
-
Iceland: "Iceland";
|
|
4609
|
-
India: "India";
|
|
4610
|
-
Indonesia: "Indonesia";
|
|
4611
|
-
Iran: "Iran";
|
|
4612
|
-
Iraq: "Iraq";
|
|
4613
|
-
Ireland: "Ireland";
|
|
4614
|
-
Israel: "Israel";
|
|
4615
|
-
Italy: "Italy";
|
|
4616
|
-
Jamaica: "Jamaica";
|
|
4617
|
-
Japan: "Japan";
|
|
4618
|
-
Jersey: "Jersey";
|
|
4619
|
-
Jordan: "Jordan";
|
|
4620
|
-
Kazakhstan: "Kazakhstan";
|
|
4621
|
-
Kenya: "Kenya";
|
|
4622
|
-
Kiribati: "Kiribati";
|
|
4623
|
-
Kosovo: "Kosovo";
|
|
4624
|
-
Kuwait: "Kuwait";
|
|
4625
|
-
Kyrgyzstan: "Kyrgyzstan";
|
|
4626
|
-
Laos: "Laos";
|
|
4627
|
-
Latvia: "Latvia";
|
|
4628
|
-
Lebanon: "Lebanon";
|
|
4629
|
-
Lesotho: "Lesotho";
|
|
4630
|
-
Liberia: "Liberia";
|
|
4631
|
-
Libya: "Libya";
|
|
4632
|
-
Liechtenstein: "Liechtenstein";
|
|
4633
|
-
Lithuania: "Lithuania";
|
|
4634
|
-
Luxembourg: "Luxembourg";
|
|
4635
|
-
"Macau S.A.R.": "Macau S.A.R.";
|
|
4636
|
-
Madagascar: "Madagascar";
|
|
4637
|
-
Malawi: "Malawi";
|
|
4638
|
-
Malaysia: "Malaysia";
|
|
4639
|
-
Maldives: "Maldives";
|
|
4640
|
-
Mali: "Mali";
|
|
4641
|
-
Malta: "Malta";
|
|
4642
|
-
"Man (Isle of)": "Man (Isle of)";
|
|
4643
|
-
"Marshall Islands": "Marshall Islands";
|
|
4644
|
-
Martinique: "Martinique";
|
|
4645
|
-
Mauritania: "Mauritania";
|
|
4646
|
-
Mauritius: "Mauritius";
|
|
4647
|
-
Mayotte: "Mayotte";
|
|
4648
|
-
Mexico: "Mexico";
|
|
4649
|
-
Micronesia: "Micronesia";
|
|
4650
|
-
Moldova: "Moldova";
|
|
4651
|
-
Monaco: "Monaco";
|
|
4652
|
-
Mongolia: "Mongolia";
|
|
4653
|
-
Montenegro: "Montenegro";
|
|
4654
|
-
Montserrat: "Montserrat";
|
|
4655
|
-
Morocco: "Morocco";
|
|
4656
|
-
Mozambique: "Mozambique";
|
|
4657
|
-
Myanmar: "Myanmar";
|
|
4658
|
-
Namibia: "Namibia";
|
|
4659
|
-
Nauru: "Nauru";
|
|
4660
|
-
Nepal: "Nepal";
|
|
4661
|
-
Netherlands: "Netherlands";
|
|
4662
|
-
"New Caledonia": "New Caledonia";
|
|
4663
|
-
"New Zealand": "New Zealand";
|
|
4664
|
-
Nicaragua: "Nicaragua";
|
|
4665
|
-
Niger: "Niger";
|
|
4666
|
-
Nigeria: "Nigeria";
|
|
4667
|
-
Niue: "Niue";
|
|
4668
|
-
"Norfolk Island": "Norfolk Island";
|
|
4669
|
-
"North Korea": "North Korea";
|
|
4670
|
-
"North Macedonia": "North Macedonia";
|
|
4671
|
-
"Northern Mariana Islands": "Northern Mariana Islands";
|
|
4672
|
-
Norway: "Norway";
|
|
4673
|
-
Oman: "Oman";
|
|
4674
|
-
Pakistan: "Pakistan";
|
|
4675
|
-
Palau: "Palau";
|
|
4676
|
-
"Palestinian Territory Occupied": "Palestinian Territory Occupied";
|
|
4677
|
-
Panama: "Panama";
|
|
4678
|
-
"Papua new Guinea": "Papua new Guinea";
|
|
4679
|
-
Paraguay: "Paraguay";
|
|
4680
|
-
Peru: "Peru";
|
|
4681
|
-
Philippines: "Philippines";
|
|
4682
|
-
"Pitcairn Island": "Pitcairn Island";
|
|
4683
|
-
Poland: "Poland";
|
|
4684
|
-
Portugal: "Portugal";
|
|
4685
|
-
"Puerto Rico": "Puerto Rico";
|
|
4686
|
-
Qatar: "Qatar";
|
|
4687
|
-
Reunion: "Reunion";
|
|
4688
|
-
Romania: "Romania";
|
|
4689
|
-
Russia: "Russia";
|
|
4690
|
-
Rwanda: "Rwanda";
|
|
4691
|
-
"Saint Helena": "Saint Helena";
|
|
4692
|
-
"Saint Kitts And Nevis": "Saint Kitts And Nevis";
|
|
4693
|
-
"Saint Lucia": "Saint Lucia";
|
|
4694
|
-
"Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
|
|
4695
|
-
"Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
|
|
4696
|
-
"Saint-Barthelemy": "Saint-Barthelemy";
|
|
4697
|
-
"Saint-Martin (French part)": "Saint-Martin (French part)";
|
|
4698
|
-
Samoa: "Samoa";
|
|
4699
|
-
"San Marino": "San Marino";
|
|
4700
|
-
"Sao Tome and Principe": "Sao Tome and Principe";
|
|
4701
|
-
"Saudi Arabia": "Saudi Arabia";
|
|
4702
|
-
Senegal: "Senegal";
|
|
4703
|
-
Serbia: "Serbia";
|
|
4704
|
-
Seychelles: "Seychelles";
|
|
4705
|
-
"Sierra Leone": "Sierra Leone";
|
|
4706
|
-
Singapore: "Singapore";
|
|
4707
|
-
"Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
|
|
4708
|
-
Slovakia: "Slovakia";
|
|
4709
|
-
Slovenia: "Slovenia";
|
|
4710
|
-
"Solomon Islands": "Solomon Islands";
|
|
4711
|
-
Somalia: "Somalia";
|
|
4712
|
-
"South Africa": "South Africa";
|
|
4713
|
-
"South Georgia": "South Georgia";
|
|
4714
|
-
"South Korea": "South Korea";
|
|
4715
|
-
"South Sudan": "South Sudan";
|
|
4716
|
-
Spain: "Spain";
|
|
4717
|
-
"Sri Lanka": "Sri Lanka";
|
|
4718
|
-
Sudan: "Sudan";
|
|
4719
|
-
Suriname: "Suriname";
|
|
4720
|
-
"Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
|
|
4721
|
-
Swaziland: "Swaziland";
|
|
4722
|
-
Sweden: "Sweden";
|
|
4723
|
-
Switzerland: "Switzerland";
|
|
4724
|
-
Syria: "Syria";
|
|
4725
|
-
Taiwan: "Taiwan";
|
|
4726
|
-
Tajikistan: "Tajikistan";
|
|
4727
|
-
Tanzania: "Tanzania";
|
|
4728
|
-
Thailand: "Thailand";
|
|
4729
|
-
"The Bahamas": "The Bahamas";
|
|
4730
|
-
Togo: "Togo";
|
|
4731
|
-
Tokelau: "Tokelau";
|
|
4732
|
-
Tonga: "Tonga";
|
|
4733
|
-
"Trinidad And Tobago": "Trinidad And Tobago";
|
|
4734
|
-
Tunisia: "Tunisia";
|
|
4735
|
-
Turkey: "Turkey";
|
|
4736
|
-
Turkmenistan: "Turkmenistan";
|
|
4737
|
-
"Turks And Caicos Islands": "Turks And Caicos Islands";
|
|
4738
|
-
Tuvalu: "Tuvalu";
|
|
4739
|
-
Uganda: "Uganda";
|
|
4740
|
-
Ukraine: "Ukraine";
|
|
4741
|
-
"United Arab Emirates": "United Arab Emirates";
|
|
4742
|
-
"United Kingdom": "United Kingdom";
|
|
4743
|
-
"United States": "United States";
|
|
4744
|
-
"United States Minor Outlying Islands": "United States Minor Outlying Islands";
|
|
4745
|
-
Uruguay: "Uruguay";
|
|
4746
|
-
Uzbekistan: "Uzbekistan";
|
|
4747
|
-
Vanuatu: "Vanuatu";
|
|
4748
|
-
"Vatican City State (Holy See)": "Vatican City State (Holy See)";
|
|
4749
|
-
Venezuela: "Venezuela";
|
|
4750
|
-
Vietnam: "Vietnam";
|
|
4751
|
-
"Virgin Islands (British)": "Virgin Islands (British)";
|
|
4752
|
-
"Virgin Islands (US)": "Virgin Islands (US)";
|
|
4753
|
-
"Wallis And Futuna Islands": "Wallis And Futuna Islands";
|
|
4754
|
-
"Western Sahara": "Western Sahara";
|
|
4755
|
-
Yemen: "Yemen";
|
|
4756
|
-
Zambia: "Zambia";
|
|
4757
|
-
Zimbabwe: "Zimbabwe";
|
|
4758
|
-
"Middle School": "Middle School";
|
|
4759
|
-
"High School": "High School";
|
|
4760
|
-
Diploma: "Diploma";
|
|
4761
|
-
Associate: "Associate";
|
|
4762
|
-
Bachelor: "Bachelor";
|
|
4763
|
-
Master: "Master";
|
|
4764
|
-
Doctor: "Doctor";
|
|
4765
|
-
"Elementary Proficiency": "Elementary Proficiency";
|
|
4766
|
-
"Limited Working Proficiency": "Limited Working Proficiency";
|
|
4767
|
-
"Minimum Professional Proficiency": "Minimum Professional Proficiency";
|
|
4768
|
-
"Full Professional Proficiency": "Full Professional Proficiency";
|
|
4769
|
-
"Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
|
|
4770
|
-
"10pt": "10pt";
|
|
4771
|
-
"11pt": "11pt";
|
|
4772
|
-
"12pt": "12pt";
|
|
4773
|
-
Lining: "Lining";
|
|
4774
|
-
OldStyle: "OldStyle";
|
|
4775
|
-
Auto: "Auto";
|
|
4776
|
-
Afrikaans: "Afrikaans";
|
|
4777
|
-
Albanian: "Albanian";
|
|
4778
|
-
Amharic: "Amharic";
|
|
4779
|
-
Arabic: "Arabic";
|
|
4780
|
-
Azerbaijani: "Azerbaijani";
|
|
4781
|
-
Belarusian: "Belarusian";
|
|
4782
|
-
Bengali: "Bengali";
|
|
4783
|
-
Bhojpuri: "Bhojpuri";
|
|
4784
|
-
Bulgarian: "Bulgarian";
|
|
4785
|
-
Burmese: "Burmese";
|
|
4786
|
-
Cantonese: "Cantonese";
|
|
4787
|
-
Catalan: "Catalan";
|
|
4788
|
-
Chinese: "Chinese";
|
|
4789
|
-
Croatian: "Croatian";
|
|
4790
|
-
Czech: "Czech";
|
|
4791
|
-
Danish: "Danish";
|
|
4792
|
-
Dutch: "Dutch";
|
|
4793
|
-
English: "English";
|
|
4794
|
-
Estonian: "Estonian";
|
|
4795
|
-
Farsi: "Farsi";
|
|
4796
|
-
Filipino: "Filipino";
|
|
4797
|
-
Finnish: "Finnish";
|
|
4798
|
-
French: "French";
|
|
4799
|
-
German: "German";
|
|
4800
|
-
Greek: "Greek";
|
|
4801
|
-
Gujarati: "Gujarati";
|
|
4802
|
-
Hausa: "Hausa";
|
|
4803
|
-
Hebrew: "Hebrew";
|
|
4804
|
-
Hindi: "Hindi";
|
|
4805
|
-
Hungarian: "Hungarian";
|
|
4806
|
-
Icelandic: "Icelandic";
|
|
4807
|
-
Igbo: "Igbo";
|
|
4808
|
-
Indonesian: "Indonesian";
|
|
4809
|
-
Irish: "Irish";
|
|
4810
|
-
Italian: "Italian";
|
|
4811
|
-
Japanese: "Japanese";
|
|
4812
|
-
Javanese: "Javanese";
|
|
4813
|
-
Kazakh: "Kazakh";
|
|
4814
|
-
Khmer: "Khmer";
|
|
4815
|
-
Korean: "Korean";
|
|
4816
|
-
Lahnda: "Lahnda";
|
|
4817
|
-
Latvian: "Latvian";
|
|
4818
|
-
Lithuanian: "Lithuanian";
|
|
4819
|
-
Malay: "Malay";
|
|
4820
|
-
Mandarin: "Mandarin";
|
|
4821
|
-
Marathi: "Marathi";
|
|
4822
|
-
Nepali: "Nepali";
|
|
4823
|
-
Norwegian: "Norwegian";
|
|
4824
|
-
Oromo: "Oromo";
|
|
4825
|
-
Pashto: "Pashto";
|
|
4826
|
-
Polish: "Polish";
|
|
4827
|
-
Portuguese: "Portuguese";
|
|
4828
|
-
Romanian: "Romanian";
|
|
4829
|
-
Russian: "Russian";
|
|
4830
|
-
Serbian: "Serbian";
|
|
4831
|
-
Shona: "Shona";
|
|
4832
|
-
Sinhala: "Sinhala";
|
|
4833
|
-
Slovak: "Slovak";
|
|
4834
|
-
Slovene: "Slovene";
|
|
4835
|
-
Somali: "Somali";
|
|
4836
|
-
Spanish: "Spanish";
|
|
4837
|
-
Sundanese: "Sundanese";
|
|
4838
|
-
Swahili: "Swahili";
|
|
4839
|
-
Swedish: "Swedish";
|
|
4840
|
-
Tagalog: "Tagalog";
|
|
4841
|
-
Tamil: "Tamil";
|
|
4842
|
-
Telugu: "Telugu";
|
|
4843
|
-
Thai: "Thai";
|
|
4844
|
-
Turkish: "Turkish";
|
|
4845
|
-
Ukrainian: "Ukrainian";
|
|
4846
|
-
Urdu: "Urdu";
|
|
4847
|
-
Uzbek: "Uzbek";
|
|
4848
|
-
Vietnamese: "Vietnamese";
|
|
4849
|
-
Yoruba: "Yoruba";
|
|
4850
|
-
Zulu: "Zulu";
|
|
4851
|
-
Novice: "Novice";
|
|
4852
|
-
Beginner: "Beginner";
|
|
4853
|
-
Intermediate: "Intermediate";
|
|
4854
|
-
Advanced: "Advanced";
|
|
4855
|
-
Expert: "Expert";
|
|
4856
|
-
en: "en";
|
|
4857
|
-
"zh-hans": "zh-hans";
|
|
4858
|
-
"zh-hant-hk": "zh-hant-hk";
|
|
4859
|
-
"zh-hant-tw": "zh-hant-tw";
|
|
4860
|
-
es: "es";
|
|
4861
|
-
Behance: "Behance";
|
|
4862
|
-
Dribbble: "Dribbble";
|
|
4863
|
-
Facebook: "Facebook";
|
|
4864
|
-
GitHub: "GitHub";
|
|
4865
|
-
Gitlab: "Gitlab";
|
|
4866
|
-
Instagram: "Instagram";
|
|
4867
|
-
Line: "Line";
|
|
4868
|
-
LinkedIn: "LinkedIn";
|
|
4869
|
-
Medium: "Medium";
|
|
4870
|
-
Pinterest: "Pinterest";
|
|
4871
|
-
Reddit: "Reddit";
|
|
4872
|
-
Snapchat: "Snapchat";
|
|
4873
|
-
"Stack Overflow": "Stack Overflow";
|
|
4874
|
-
Telegram: "Telegram";
|
|
4875
|
-
TikTok: "TikTok";
|
|
4876
|
-
Twitch: "Twitch";
|
|
4877
|
-
Twitter: "Twitter";
|
|
4878
|
-
Vimeo: "Vimeo";
|
|
4879
|
-
Weibo: "Weibo";
|
|
4880
|
-
WeChat: "WeChat";
|
|
4881
|
-
WhatsApp: "WhatsApp";
|
|
4882
|
-
YouTube: "YouTube";
|
|
4883
|
-
Zhihu: "Zhihu";
|
|
4884
|
-
"moderncv-banking": "moderncv-banking";
|
|
4885
|
-
"moderncv-casual": "moderncv-casual";
|
|
4886
|
-
"moderncv-classic": "moderncv-classic";
|
|
4887
|
-
}>;
|
|
4888
|
-
keywords: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
4889
|
-
}, z.core.$strip>>>>;
|
|
4890
|
-
interests: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
4891
|
-
name: z.ZodString;
|
|
4892
|
-
keywords: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
4893
|
-
}, z.core.$strip>>>>;
|
|
4894
|
-
certificates: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
4895
|
-
issuer: z.ZodString;
|
|
4896
|
-
name: z.ZodString;
|
|
4897
|
-
date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4898
|
-
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
4899
|
-
}, z.core.$strip>>>>;
|
|
4900
|
-
awards: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
4901
|
-
awarder: z.ZodString;
|
|
4902
|
-
title: z.ZodString;
|
|
4903
|
-
date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4904
|
-
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4905
|
-
}, z.core.$strip>>>>;
|
|
4906
|
-
education: z.ZodArray<z.ZodObject<{
|
|
4907
|
-
area: z.ZodString;
|
|
4908
|
-
institution: z.ZodString;
|
|
4909
|
-
degree: z.ZodEnum<{
|
|
3604
|
+
}>;
|
|
3605
|
+
keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
3606
|
+
}, z.core.$strip>>>>;
|
|
3607
|
+
interests: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3608
|
+
name: z.ZodString;
|
|
3609
|
+
keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
3610
|
+
}, z.core.$strip>>>>;
|
|
3611
|
+
certificates: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3612
|
+
issuer: z.ZodString;
|
|
3613
|
+
name: z.ZodString;
|
|
3614
|
+
date: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3615
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3616
|
+
}, z.core.$strip>>>>;
|
|
3617
|
+
awards: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3618
|
+
awarder: z.ZodString;
|
|
3619
|
+
title: z.ZodString;
|
|
3620
|
+
date: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3621
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
3622
|
+
}, z.core.$strip>>>>;
|
|
3623
|
+
education: z.ZodArray<z.ZodObject<{
|
|
3624
|
+
area: z.ZodString;
|
|
3625
|
+
institution: z.ZodString;
|
|
3626
|
+
degree: z.ZodEnum<{
|
|
4910
3627
|
Afghanistan: "Afghanistan";
|
|
4911
3628
|
"Aland Islands": "Aland Islands";
|
|
4912
3629
|
Albania: "Albania";
|
|
@@ -5283,24 +4000,36 @@ declare const resumeSchema: z.ZodObject<{
|
|
|
5283
4000
|
WhatsApp: "WhatsApp";
|
|
5284
4001
|
YouTube: "YouTube";
|
|
5285
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";
|
|
5286
4015
|
"moderncv-banking": "moderncv-banking";
|
|
5287
4016
|
"moderncv-casual": "moderncv-casual";
|
|
5288
4017
|
"moderncv-classic": "moderncv-classic";
|
|
5289
4018
|
}>;
|
|
5290
4019
|
startDate: z.ZodString;
|
|
5291
|
-
courses: z.ZodOptional<z.ZodNullable<z.
|
|
5292
|
-
endDate: z.ZodOptional<z.ZodNullable<z.
|
|
5293
|
-
summary: z.ZodOptional<z.ZodNullable<z.
|
|
5294
|
-
score: z.ZodOptional<z.ZodNullable<z.
|
|
5295
|
-
url: z.ZodOptional<z.ZodNullable<z.
|
|
4020
|
+
courses: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
|
|
4021
|
+
endDate: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
4022
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
4023
|
+
score: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
4024
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
5296
4025
|
}, z.core.$strip>>;
|
|
5297
4026
|
basics: z.ZodObject<{
|
|
5298
4027
|
name: z.ZodString;
|
|
5299
|
-
email: z.ZodOptional<z.ZodNullable<z.
|
|
5300
|
-
headline: z.ZodOptional<z.ZodNullable<z.
|
|
5301
|
-
phone: z.ZodOptional<z.ZodNullable<z.
|
|
5302
|
-
summary: z.ZodOptional<z.ZodNullable<z.
|
|
5303
|
-
url: z.ZodOptional<z.ZodNullable<z.
|
|
4028
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
4029
|
+
headline: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
4030
|
+
phone: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
4031
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
4032
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
|
|
5304
4033
|
}, z.core.$strip>;
|
|
5305
4034
|
}, z.core.$strip>;
|
|
5306
4035
|
}, z.core.$strip>;
|
|
@@ -5340,7 +4069,7 @@ type OptionTranslation = {
|
|
|
5340
4069
|
/** Translations for language names. */
|
|
5341
4070
|
languages: Record<Language, string>;
|
|
5342
4071
|
/** Translations for resume section titles. */
|
|
5343
|
-
sections: Record<
|
|
4072
|
+
sections: Record<OrderableSectionID, string>;
|
|
5344
4073
|
/** Translations for skill proficiency levels. */
|
|
5345
4074
|
skills: Record<Level, string>;
|
|
5346
4075
|
};
|
|
@@ -5356,7 +4085,7 @@ type OptionCategory = keyof OptionTranslation;
|
|
|
5356
4085
|
* @returns An object containing the translated terms for the specified
|
|
5357
4086
|
* language.
|
|
5358
4087
|
*/
|
|
5359
|
-
declare function getOptionTranslation<K extends OptionCategory>(language:
|
|
4088
|
+
declare function getOptionTranslation<K extends OptionCategory>(language: LocaleLanguage, category: K, option: keyof OptionTranslation[K]): string;
|
|
5360
4089
|
|
|
5361
4090
|
/**
|
|
5362
4091
|
* MIT License
|
|
@@ -5406,7 +4135,45 @@ type TemplateTranslationValue = {
|
|
|
5406
4135
|
* @returns An object containing the translated punctuations and terms for the
|
|
5407
4136
|
* specified language.
|
|
5408
4137
|
*/
|
|
5409
|
-
declare function getTemplateTranslations(language?:
|
|
4138
|
+
declare function getTemplateTranslations(language?: LocaleLanguage): TemplateTranslationValue;
|
|
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[];
|
|
5410
4177
|
|
|
5411
4178
|
/**
|
|
5412
4179
|
* MIT License
|
|
@@ -5446,7 +4213,7 @@ declare function parseDate(dateStr: string | undefined | null): Date | null;
|
|
|
5446
4213
|
* @param language - The language to localize the date string to.
|
|
5447
4214
|
* @returns The localized date string.
|
|
5448
4215
|
*/
|
|
5449
|
-
declare function localizeDate(date: string, language:
|
|
4216
|
+
declare function localizeDate(date: string, language: LocaleLanguage | string): string;
|
|
5450
4217
|
/**
|
|
5451
4218
|
* Get the date range for a given start and end date.
|
|
5452
4219
|
*
|
|
@@ -5455,7 +4222,7 @@ declare function localizeDate(date: string, language: LocaleLanguageOption | str
|
|
|
5455
4222
|
* @param language - The language to localize the date string to.
|
|
5456
4223
|
* @returns The date range.
|
|
5457
4224
|
*/
|
|
5458
|
-
declare function getDateRange(startDate: string, endDate: string, language:
|
|
4225
|
+
declare function getDateRange(startDate: string, endDate: string, language: LocaleLanguage): string;
|
|
5459
4226
|
/**
|
|
5460
4227
|
* The number of seconds in one day
|
|
5461
4228
|
*/
|
|
@@ -5635,4 +4402,4 @@ declare function joinNonEmptyString(codes: string[], separator?: string): string
|
|
|
5635
4402
|
*/
|
|
5636
4403
|
declare function toCodeBlock(code?: string, lang?: string): string;
|
|
5637
4404
|
|
|
5638
|
-
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
|
|
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 };
|