@yamlresume/core 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -480,17 +480,13 @@ 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
486
  declare const SECTION_IDS: readonly ["basics", "location", "profiles", "work", "education", "volunteer", "awards", "certificates", "publications", "skills", "languages", "interests", "references", "projects"];
491
487
  /** Defines identifiers for the available resume templates. */
492
488
  declare const TEMPLATE_OPTIONS: readonly ["moderncv-banking", "moderncv-casual", "moderncv-classic"];
493
- declare function getTemplateOptionDetail(templateOption: TemplateOption): {
489
+ declare function getTemplateDetail(template: Template): {
494
490
  name: string;
495
491
  description: string;
496
492
  id: "moderncv-banking" | "moderncv-casual" | "moderncv-classic";
@@ -516,7 +512,7 @@ declare const marginOptions: string[];
516
512
  * @param localeLanguage The locale language to get the name for.
517
513
  * @returns The language code and name of the given locale language.
518
514
  */
519
- declare function getLocaleLanguageOptionDetail(localeLanguage: LocaleLanguageOption): {
515
+ declare function getLocaleLanguageDetail(localeLanguage: LocaleLanguage): {
520
516
  localeLanguage: "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es";
521
517
  name: string;
522
518
  };
@@ -556,49 +552,54 @@ declare const filledResume: Resume;
556
552
  */
557
553
 
558
554
  /**
559
- * Type for all possible countries and regions in the world.
555
+ * A union type for all possible countries and regions in the world.
560
556
  */
561
557
  type Country = (typeof COUNTRY_OPTIONS)[number];
562
558
  /**
563
- * Type for all possible degrees.
559
+ * A union type for all possible degrees.
564
560
  */
565
561
  type Degree = (typeof DEGREE_OPTIONS)[number];
566
562
  /**
567
- * Type for language fluency levels.
563
+ * A union type for all possible language fluency levels.
568
564
  */
569
565
  type Fluency = (typeof FLUENCY_OPTIONS)[number];
570
566
  /**
571
- * Type for keywords.
567
+ * Keywords type, just an alias for a string list.
572
568
  */
573
569
  type Keywords = string[];
574
570
  /**
575
- * Type for all supported languages.
571
+ * A union type for all supported languages.
576
572
  */
577
573
  type Language = (typeof LANGUAGE_OPTIONS)[number];
578
574
  /**
579
- * Type for skill proficiency levels.
575
+ * A union type for all possible skill proficiency levels.
580
576
  */
581
577
  type Level = (typeof LEVEL_OPTIONS)[number];
582
578
  /**
583
- * Type for all possible section IDs.
579
+ * A union type for all possible section IDs.
584
580
  */
585
581
  type SectionID = (typeof SECTION_IDS)[number];
586
582
  /**
587
- * Type for template options.
583
+ * A union type for all possible template options.
584
+ *
585
+ * @see {@link https://yamlresume.dev/docs/layout/templates}
588
586
  */
589
- type TemplateOption = (typeof TEMPLATE_OPTIONS)[number];
587
+ type Template = (typeof TEMPLATE_OPTIONS)[number];
590
588
  /**
591
- * Type for all possible locale languages.
589
+ * A union type for all possible locale languages.
590
+ *
591
+ * @see {@link https://yamlresume.dev/docs/content/multi-languages}
592
592
  */
593
- type LocaleLanguageOption = (typeof LOCALE_LANGUAGE_OPTIONS)[number];
593
+ type LocaleLanguage = (typeof LOCALE_LANGUAGE_OPTIONS)[number];
594
594
  /**
595
- * Defines supported social media and professional network identifiers.
595
+ * A union type for all possible social network options.
596
596
  */
597
597
  type Network = (typeof NETWORK_OPTIONS)[number];
598
598
  /**
599
- * Categorizes networks for potential grouping or display purposes. */
600
- type NetworkGroup = (typeof NETWORK_GROUP_OPTIONS)[number];
601
- /** Represents a single award item. */
599
+ * Represents a single award, honor, or recognition received.
600
+ *
601
+ * @see {@link awardItemSchema} for its schema constraints.
602
+ */
602
603
  type AwardItem = {
603
604
  /** The organization or entity that gave the award. */
604
605
  awarder: string;
@@ -606,7 +607,7 @@ type AwardItem = {
606
607
  title: string;
607
608
  /** The date the award was received (e.g., "2020", "Oct 2020"). */
608
609
  date?: string;
609
- /** A short description or details about the award (supports rich text). */
610
+ /** A short description or details about the award. */
610
611
  summary?: string;
611
612
  /** Computed values derived during transformation. */
612
613
  computed?: {
@@ -616,12 +617,20 @@ type AwardItem = {
616
617
  summary: string;
617
618
  };
618
619
  };
619
- /** Represents the 'awards' section of the resume content. */
620
+ /**
621
+ * Contains a collection of awards and recognitions.
622
+ *
623
+ * @see {@link awardsSchema} for its schema constraints.
624
+ */
620
625
  type Awards = {
621
- /** An array of award items. */
626
+ /** A list of awards. */
622
627
  awards?: AwardItem[];
623
628
  };
624
- /** Represents the basic personal information. */
629
+ /**
630
+ * Represents the core personal and contact information.
631
+ *
632
+ * @see {@link basicsItemSchema} for its schema constraints.
633
+ */
625
634
  type BasicsItem = {
626
635
  /** Full name. */
627
636
  name: string;
@@ -631,7 +640,7 @@ type BasicsItem = {
631
640
  headline?: string;
632
641
  /** Phone number. */
633
642
  phone?: string;
634
- /** A professional summary or objective statement (supports rich text). */
643
+ /** A professional summary or objective statement. */
635
644
  summary?: string;
636
645
  /** Personal website or portfolio URL. */
637
646
  url?: string;
@@ -643,12 +652,20 @@ type BasicsItem = {
643
652
  url: string;
644
653
  };
645
654
  };
646
- /** Represents the 'basics' section of the resume content. */
655
+ /**
656
+ * Contains the core personal and contact information.
657
+ *
658
+ * @see {@link basicsSchema} for its schema constraints.
659
+ */
647
660
  type Basics = {
648
661
  /** The basic personal information item. */
649
662
  basics: BasicsItem;
650
663
  };
651
- /** Represents a single certification item. */
664
+ /**
665
+ * Represents a single certification, credential, or professional qualification.
666
+ *
667
+ * @see {@link certificateItemSchema} for its schema constraints.
668
+ */
652
669
  type CertificateItem = {
653
670
  /** The organization that issued the certificate. */
654
671
  issuer: string;
@@ -664,26 +681,34 @@ type CertificateItem = {
664
681
  date: string;
665
682
  };
666
683
  };
667
- /** Represents the 'certificates' section of the resume content. */
684
+ /**
685
+ * Contains a collection of certifications and credentials.
686
+ *
687
+ * @see {@link certificatesSchema} for its schema constraints.
688
+ */
668
689
  type Certificates = {
669
- /** An array of certificate items. */
690
+ /** A list of certificates. */
670
691
  certificates?: CertificateItem[];
671
692
  };
672
- /** Represents a single education history item. */
693
+ /**
694
+ * Represents a single educational experience or degree program.
695
+ *
696
+ * @see {@link educationItemSchema} for its schema constraints.
697
+ */
673
698
  type EducationItem = {
674
- /** Field of study (e.g., "Computer Science"). */
699
+ /** Area of study (e.g., "Computer Science"). */
675
700
  area: string;
701
+ /** The type of degree obtained. */
702
+ degree: Degree;
676
703
  /** Name of the institution. */
677
704
  institution: string;
678
705
  /** Start date of study (e.g., "2016", "Sep 2016"). */
679
706
  startDate: string;
680
- /** The type of degree obtained. */
681
- degree: Degree;
682
- /** List of courses taken (can be string array or pre-joined string). */
707
+ /** List of courses taken. */
683
708
  courses?: string[];
684
- /** End date of study (e.g., "2020", "May 2020"). Empty implies "Present". */
709
+ /** End date of study (e.g., "2020", "May 2020"), empty implies "Present". */
685
710
  endDate?: string;
686
- /** Description of accomplishments or details (supports rich text). */
711
+ /** Description of accomplishments or details. */
687
712
  summary?: string;
688
713
  /** GPA or academic score. */
689
714
  score?: string;
@@ -705,12 +730,20 @@ type EducationItem = {
705
730
  summary: string;
706
731
  };
707
732
  };
708
- /** Represents the 'education' section of the resume content. */
733
+ /**
734
+ * Contains a collection of educational experiences.
735
+ *
736
+ * @see {@link educationSchema} for its schema constraints.
737
+ */
709
738
  type Education = {
710
- /** An array of education history items. */
739
+ /** A list of education experiences. */
711
740
  education: EducationItem[];
712
741
  };
713
- /** Represents a single interest item. */
742
+ /**
743
+ * Represents a single interest, hobby, or personal activity.
744
+ *
745
+ * @see {@link interestItemSchema} for its schema constraints.
746
+ */
714
747
  type InterestItem = {
715
748
  /** Name of the interest category (e.g., "Reading", "Photography"). */
716
749
  name: string;
@@ -722,12 +755,20 @@ type InterestItem = {
722
755
  keywords: string;
723
756
  };
724
757
  };
725
- /** Represents the 'interests' section of the resume content. */
758
+ /**
759
+ * Contains a collection of personal interests and hobbies.
760
+ *
761
+ * @see {@link interestsSchema} for its schema constraints.
762
+ */
726
763
  type Interests = {
727
- /** An array of interest items. */
764
+ /** A list of interests. */
728
765
  interests?: InterestItem[];
729
766
  };
730
- /** Represents a single language proficiency item. */
767
+ /**
768
+ * Represents a single language proficiency or skill level.
769
+ *
770
+ * @see {@link languageItemSchema} for its schema constraints.
771
+ */
731
772
  type LanguageItem = {
732
773
  /** The level of proficiency of the language. */
733
774
  fluency: Fluency;
@@ -745,12 +786,20 @@ type LanguageItem = {
745
786
  keywords: string;
746
787
  };
747
788
  };
748
- /** Represents the 'languages' section of the resume content. */
789
+ /**
790
+ * Contains a collection of language proficiencies.
791
+ *
792
+ * @see {@link languagesSchema} for its schema constraints.
793
+ */
749
794
  type Languages = {
750
- /** An array of language items. */
795
+ /** A list of languages. */
751
796
  languages?: LanguageItem[];
752
797
  };
753
- /** Represents the location information. */
798
+ /**
799
+ * Represents location and address information.
800
+ *
801
+ * @see {@link locationItemSchema} for its schema constraints.
802
+ */
754
803
  type LocationItem = {
755
804
  /** City name. */
756
805
  city: string;
@@ -764,20 +813,28 @@ type LocationItem = {
764
813
  region?: string;
765
814
  /** Computed values derived during transformation. */
766
815
  computed?: {
816
+ /** Fully formatted address string based on locale. */
817
+ fullAddress: string;
767
818
  /** Combined string of postal code and address. */
768
819
  postalCodeAndAddress: string;
769
820
  /** Combined string of region and country. */
770
821
  regionAndCountry: string;
771
- /** Fully formatted address string based on locale. */
772
- fullAddress: string;
773
822
  };
774
823
  };
775
- /** Represents the 'location' section of the resume content. */
824
+ /**
825
+ * Contains location and address information.
826
+ *
827
+ * @see {@link locationSchema} for its schema constraints.
828
+ */
776
829
  type Location = {
777
830
  /** The location information item. */
778
831
  location?: LocationItem;
779
832
  };
780
- /** Represents a single online profile item (e.g., GitHub, LinkedIn). */
833
+ /**
834
+ * Represents a single online profile or social media presence.
835
+ *
836
+ * @see {@link profileItemSchema} for its schema constraints.
837
+ */
781
838
  type ProfileItem = {
782
839
  /** The name of the network or platform. */
783
840
  network: Network;
@@ -791,18 +848,26 @@ type ProfileItem = {
791
848
  url: string;
792
849
  };
793
850
  };
794
- /** Represents the 'profiles' section of the resume content. */
851
+ /**
852
+ * Contains a collection of online profiles and social media presence.
853
+ *
854
+ * @see {@link profilesSchema} for its schema constraints.
855
+ */
795
856
  type Profiles = {
796
- /** An array of online profile items. */
857
+ /** A list of online profiles. */
797
858
  profiles?: ProfileItem[];
798
859
  };
799
- /** Represents a single project item. */
860
+ /**
861
+ * Represents a single project, portfolio piece, or technical work.
862
+ *
863
+ * @see {@link projectItemSchema} for its schema constraints.
864
+ */
800
865
  type ProjectItem = {
801
866
  /** Name of the project. */
802
867
  name: string;
803
868
  /** Start date of the project (e.g., "2021", "Jan 2021"). */
804
869
  startDate: string;
805
- /** Detailed accomplishments for the project (supports rich text). */
870
+ /** Detailed accomplishments for the project. */
806
871
  summary: string;
807
872
  /** Description of the project. */
808
873
  description?: string;
@@ -814,10 +879,10 @@ type ProjectItem = {
814
879
  url?: string;
815
880
  /** Computed values derived during transformation. */
816
881
  computed?: {
817
- /** Transformed keywords string. */
818
- keywords: string;
819
882
  /** Combined string representing the date range. */
820
883
  dateRange: string;
884
+ /** Transformed keywords string. */
885
+ keywords: string;
821
886
  /** Transformed start date string. */
822
887
  startDate: string;
823
888
  /** Transformed end date string (or "Present"). */
@@ -826,12 +891,20 @@ type ProjectItem = {
826
891
  summary: string;
827
892
  };
828
893
  };
829
- /** Represents the 'projects' section of the resume content. */
894
+ /**
895
+ * Contains a collection of projects and portfolio pieces.
896
+ *
897
+ * @see {@link projectsSchema} for its schema constraints.
898
+ */
830
899
  type Projects = {
831
- /** An array of project items. */
900
+ /** A list of projects. */
832
901
  projects?: ProjectItem[];
833
902
  };
834
- /** Represents a single publication item. */
903
+ /**
904
+ * Represents a single publication, research work, or academic paper.
905
+ *
906
+ * @see {@link publicationItemSchema} for its schema constraints.
907
+ */
835
908
  type PublicationItem = {
836
909
  /** Name or title of the publication. */
837
910
  name: string;
@@ -839,7 +912,7 @@ type PublicationItem = {
839
912
  publisher: string;
840
913
  /** Date of publication (e.g., "2023", "Mar 2023"). */
841
914
  releaseDate?: string;
842
- /** Summary or abstract of the publication (supports rich text). */
915
+ /** Summary or abstract of the publication. */
843
916
  summary?: string;
844
917
  /** URL related to the publication (e.g., DOI, link). */
845
918
  url?: string;
@@ -851,16 +924,24 @@ type PublicationItem = {
851
924
  summary: string;
852
925
  };
853
926
  };
854
- /** Represents the 'publications' section of the resume content. */
927
+ /**
928
+ * Contains a collection of publications and research works.
929
+ *
930
+ * @see {@link publicationsSchema} for its schema constraints.
931
+ */
855
932
  type Publications = {
856
- /** An array of publication items. */
933
+ /** A list of publications. */
857
934
  publications?: PublicationItem[];
858
935
  };
859
- /** Represents a single reference item. */
936
+ /**
937
+ * Represents a single professional reference or recommendation.
938
+ *
939
+ * @see {@link referenceItemSchema} for its schema constraints.
940
+ */
860
941
  type ReferenceItem = {
861
942
  /** Name of the reference. */
862
943
  name: string;
863
- /** A brief note about the reference (supports rich text). */
944
+ /** A brief note about the reference. */
864
945
  summary: string;
865
946
  /** Email address of the reference. */
866
947
  email?: string;
@@ -874,12 +955,20 @@ type ReferenceItem = {
874
955
  summary: string;
875
956
  };
876
957
  };
877
- /** Represents the 'references' section of the resume content. */
958
+ /**
959
+ * Contains a collection of professional references and recommendations.
960
+ *
961
+ * @see {@link referencesSchema} for its schema constraints.
962
+ */
878
963
  type References = {
879
- /** An array of reference items. */
964
+ /** A list of references. */
880
965
  references?: ReferenceItem[];
881
966
  };
882
- /** Represents a single skill item. */
967
+ /**
968
+ * Represents a single skill, competency, or technical ability.
969
+ *
970
+ * @see {@link skillItemSchema} for its schema constraints.
971
+ */
883
972
  type SkillItem = {
884
973
  /** Proficiency level in the skill. */
885
974
  level: Level;
@@ -895,12 +984,20 @@ type SkillItem = {
895
984
  keywords: string;
896
985
  };
897
986
  };
898
- /** Represents the 'skills' section of the resume content. */
987
+ /**
988
+ * Contains a collection of skills and competencies.
989
+ *
990
+ * @see {@link skillsSchema} for its schema constraints.
991
+ */
899
992
  type Skills = {
900
- /** An array of skill items. */
993
+ /** A list of skills. */
901
994
  skills?: SkillItem[];
902
995
  };
903
- /** Represents a single volunteer experience item. */
996
+ /**
997
+ * Represents a single volunteer experience or community service.
998
+ *
999
+ * @see {@link volunteerItemSchema} for its schema constraints.
1000
+ */
904
1001
  type VolunteerItem = {
905
1002
  /** Name of the organization. */
906
1003
  organization: string;
@@ -908,7 +1005,7 @@ type VolunteerItem = {
908
1005
  position: string;
909
1006
  /** Start date of the volunteer work (e.g., "2019", "Jun 2019"). */
910
1007
  startDate: string;
911
- /** Summary of responsibilities or achievements (supports rich text). */
1008
+ /** Summary of responsibilities or achievements. */
912
1009
  summary: string;
913
1010
  /** End date of the volunteer work (e.g., "2020", "Dec 2020"). */
914
1011
  endDate?: string;
@@ -926,12 +1023,20 @@ type VolunteerItem = {
926
1023
  summary: string;
927
1024
  };
928
1025
  };
929
- /** Represents the 'volunteer' section of the resume content. */
1026
+ /**
1027
+ * Contains a collection of volunteer experiences and community service.
1028
+ *
1029
+ * @see {@link volunteerSchema} for its schema constraints.
1030
+ */
930
1031
  type Volunteer = {
931
- /** An array of volunteer experience items. */
1032
+ /** A list of volunteer experiences. */
932
1033
  volunteer?: VolunteerItem[];
933
1034
  };
934
- /** Represents a single work experience item. */
1035
+ /**
1036
+ * Represents a single work experience or employment position.
1037
+ *
1038
+ * @see {@link workItemSchema} for its schema constraints.
1039
+ */
935
1040
  type WorkItem = {
936
1041
  /** Name of the company or employer. */
937
1042
  name: string;
@@ -939,7 +1044,7 @@ type WorkItem = {
939
1044
  position: string;
940
1045
  /** Start date of employment (e.g., "2021", "Apr 2021"). */
941
1046
  startDate: string;
942
- /** Summary of responsibilities and accomplishments (supports rich text). */
1047
+ /** Summary of responsibilities and accomplishments. */
943
1048
  summary: string;
944
1049
  /** End date of employment (e.g., "2023", "Aug 2023"). */
945
1050
  endDate?: string;
@@ -961,16 +1066,17 @@ type WorkItem = {
961
1066
  summary: string;
962
1067
  };
963
1068
  };
964
- /** Represents the 'work' section of the resume content. */
1069
+ /**
1070
+ * Contains a collection of work experiences and employment history.
1071
+ *
1072
+ * @see {@link workSchema} for its schema constraints.
1073
+ */
965
1074
  type Work = {
966
- /** An array of work experience items. */
1075
+ /** A list of work experiences. */
967
1076
  work?: WorkItem[];
968
1077
  };
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
1078
  /**
972
- * Type defining the structure for a single default item within each resume
973
- * section.
1079
+ * Defines a collection of all possible "items" in a resume.
974
1080
  */
975
1081
  type ResumeItem = {
976
1082
  award: AwardItem;
@@ -991,37 +1097,41 @@ type ResumeItem = {
991
1097
  /**
992
1098
  * Defines the structure for the entire resume content.
993
1099
  *
994
- * @remarks - only `basics` and `education` sections are strictly required.
1100
+ * - only `basics` and `education` sections are mandatory.
995
1101
  */
996
1102
  type ResumeContent = {
997
- /** Array of award items. */
998
- awards?: AwardItem[];
999
- /** Basic personal information. */
1103
+ /** Represents the core personal and contact information. */
1000
1104
  basics: BasicsItem;
1001
- /** List of certificate items. */
1002
- certificates?: CertificateItem[];
1003
- /** List of education history items. */
1105
+ /** Contains a collection of educational experiences. */
1004
1106
  education: EducationItem[];
1005
- /** List of interest items. */
1107
+ /** Contains a collection of awards and recognitions. */
1108
+ awards?: AwardItem[];
1109
+ /** Contains a collection of certifications and credentials. */
1110
+ certificates?: CertificateItem[];
1111
+ /** Contains a collection of interests, hobbies, or personal activities. */
1006
1112
  interests?: InterestItem[];
1007
- /** List of language proficiency items. */
1113
+ /** Contains a collection of language proficiencies. */
1008
1114
  languages?: LanguageItem[];
1009
- /** Location information. */
1115
+ /** Contains location information. */
1010
1116
  location?: LocationItem;
1011
- /** List of project items. */
1117
+ /** Contains a collection of projects. */
1012
1118
  projects?: ProjectItem[];
1013
- /** List of online profile items. */
1119
+ /** Contains a collection of online profiles. */
1014
1120
  profiles?: ProfileItem[];
1015
- /** List of publication items. */
1121
+ /** Contains a collection of publications. */
1016
1122
  publications?: PublicationItem[];
1017
- /** List of reference items. */
1123
+ /** Contains a collection of references. */
1018
1124
  references?: ReferenceItem[];
1019
- /** List of skill items. */
1125
+ /** Contains a collection of skills. */
1020
1126
  skills?: SkillItem[];
1021
- /** List of volunteer experience items. */
1127
+ /** Contains a collection of volunteer experiences. */
1022
1128
  volunteer?: VolunteerItem[];
1023
- /** List of work experience items. */
1129
+ /** Contains a collection of work experiences and employment history. */
1024
1130
  work?: WorkItem[];
1131
+ /**
1132
+ * Computed values derived during transformation, applicable to the entire
1133
+ * content.
1134
+ */
1025
1135
  computed?: {
1026
1136
  /** Translated names for each resume section based on locale. */
1027
1137
  sectionNames?: {
@@ -1044,7 +1154,9 @@ type ResumeContent = {
1044
1154
  urls?: string;
1045
1155
  };
1046
1156
  };
1047
- /** Defines the structure for page margin settings. */
1157
+ /**
1158
+ * Defines page margin settings for document layout.
1159
+ */
1048
1160
  type ResumeLayoutMargins = {
1049
1161
  /** Top margin value (e.g., "2.5cm"). */
1050
1162
  top?: string;
@@ -1056,26 +1168,34 @@ type ResumeLayoutMargins = {
1056
1168
  right?: string;
1057
1169
  };
1058
1170
  /**
1059
- * The type of fontspec numbers style.
1171
+ * A union type for all possible latex fontspec numbers options.
1060
1172
  *
1173
+ * - `Auto` - allowing the style to be automatically determined
1174
+ * based on the selected `LocaleLanguage` (default)
1061
1175
  * - `Lining` - standard lining figures (default for CJK languages)
1062
1176
  * - `OldStyle` - old style figures with varying heights (default for Latin
1063
1177
  * languages)
1064
- * - `Auto` - an undefined state, allowing the style to be automatically
1065
- * determined based on the selected `LocaleLanguage`
1066
1178
  */
1067
1179
  type FontspecNumbers = (typeof FONTSPEC_NUMBERS_OPTIONS)[number];
1068
1180
  /**
1069
- * The type of font size.
1181
+ * A union type for all possible font size options.
1182
+ *
1183
+ * For now only 3 options are supported:
1184
+ *
1185
+ * - `10pt` - 10pt font size (default)
1186
+ * - `11pt` - 11pt font size
1187
+ * - `12pt` - 12pt font size
1070
1188
  */
1071
1189
  type FontSize = (typeof FONT_SIZE_OPTIONS)[number];
1072
- /** Defines typography settings like font size. */
1190
+ /**
1191
+ * Defines typography settings for document formatting.
1192
+ */
1073
1193
  type ResumeLayoutTypography = {
1074
1194
  /** Base font size for the document (e.g., "10pt", "11pt"). */
1075
1195
  fontSize?: string;
1076
1196
  };
1077
1197
  /**
1078
- * LaTeX specific settings.
1198
+ * Defines LaTeX-specific configuration options.
1079
1199
  */
1080
1200
  type ResumeLayoutLaTeX = {
1081
1201
  /** LaTeX fontspec package configurations. */
@@ -1084,42 +1204,47 @@ type ResumeLayoutLaTeX = {
1084
1204
  numbers?: FontspecNumbers;
1085
1205
  };
1086
1206
  };
1087
- /** Defines locale settings, primarily the language for translations. */
1207
+ /**
1208
+ * Defines locale settings for internationalization and localization.
1209
+ */
1088
1210
  type ResumeLayoutLocale = {
1089
1211
  /** The selected language for the resume content and template terms. */
1090
- language?: LocaleLanguageOption;
1212
+ language?: LocaleLanguage;
1091
1213
  };
1092
- /** Defines page-level settings like page numbering. */
1214
+ /**
1215
+ * Defines page-level settings for document presentation.
1216
+ */
1093
1217
  type ResumeLayoutPage = {
1094
1218
  /** Whether to display page numbers. */
1095
1219
  showPageNumbers?: boolean;
1096
1220
  };
1097
- /** Defines the selected template identifier. */
1098
- type ResumeTemplate = TemplateOption;
1099
- /** Defines the overall layout configuration, including template, margins,
1100
- * typography, locale, and computed environment settings. */
1221
+ /**
1222
+ * Defines the overall layout configuration.
1223
+ */
1101
1224
  type ResumeLayout = {
1102
- /** The selected template configuration. */
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. */
1225
+ /** Defines locale settings for internationalization and localization. */
1111
1226
  locale?: ResumeLayoutLocale;
1112
- /** Page-level settings. */
1227
+ /** Defines page margin settings for document layout. */
1228
+ margins?: ResumeLayoutMargins;
1229
+ /** Defines page-level settings for document presentation. */
1113
1230
  page?: ResumeLayoutPage;
1231
+ /** Defines the selected template. */
1232
+ template?: Template;
1233
+ /** Defines typography settings for document formatting. */
1234
+ typography?: ResumeLayoutTypography;
1235
+ /** Defines LaTeX-specific configuration options. */
1236
+ latex?: ResumeLayoutLaTeX;
1114
1237
  };
1115
1238
  /**
1116
- * Represents the complete resume data structure, including metadata, content,
1117
- * layout configuration, and build information.
1239
+ * Defines the overall resume structure, including content and layout.
1240
+ *
1241
+ * - `content` is mandatory.
1242
+ * - `layout` is optional, yamlresume provide a default layout if absent.
1118
1243
  */
1119
1244
  type Resume = {
1120
- /** Contains all the textual and structured content of the resume sections. */
1245
+ /** Defines the structure for the entire resume content. */
1121
1246
  content: ResumeContent;
1122
- /** Defines the visual appearance, template, and localization settings. */
1247
+ /** Defines the overall layout configuration. */
1123
1248
  layout?: ResumeLayout;
1124
1249
  };
1125
1250
 
@@ -1380,7 +1505,7 @@ declare function getResumeRenderer(resume: Resume, summaryParser?: Parser): Rend
1380
1505
  /**
1381
1506
  * A zod schema for a yaml resume.
1382
1507
  */
1383
- declare const resumeSchema: z.ZodObject<{
1508
+ declare const ResumeSchema: z.ZodObject<{
1384
1509
  layout: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1385
1510
  typography: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1386
1511
  fontSize: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
@@ -2930,17 +3055,17 @@ declare const resumeSchema: z.ZodObject<{
2930
3055
  position: z.ZodString;
2931
3056
  startDate: z.ZodString;
2932
3057
  summary: z.ZodString;
2933
- endDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2934
- keywords: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
2935
- url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
3058
+ endDate: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
3059
+ keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
3060
+ url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
2936
3061
  }, z.core.$strip>>>>;
2937
3062
  volunteer: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2938
3063
  organization: z.ZodString;
2939
3064
  position: z.ZodString;
2940
3065
  startDate: z.ZodString;
2941
3066
  summary: z.ZodString;
2942
- endDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2943
- url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
3067
+ endDate: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
3068
+ url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
2944
3069
  }, z.core.$strip>>>>;
2945
3070
  skills: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2946
3071
  level: z.ZodEnum<{
@@ -3325,30 +3450,30 @@ declare const resumeSchema: z.ZodObject<{
3325
3450
  "moderncv-classic": "moderncv-classic";
3326
3451
  }>;
3327
3452
  name: z.ZodString;
3328
- keywords: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
3453
+ keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
3329
3454
  }, z.core.$strip>>>>;
3330
3455
  references: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
3331
3456
  name: z.ZodString;
3332
3457
  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>>;
3458
+ email: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
3459
+ phone: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
3460
+ relationship: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
3336
3461
  }, z.core.$strip>>>>;
3337
3462
  publications: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
3338
3463
  name: z.ZodString;
3339
3464
  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>>;
3465
+ releaseDate: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
3466
+ summary: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
3467
+ url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
3343
3468
  }, z.core.$strip>>>>;
3344
3469
  projects: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
3345
3470
  name: z.ZodString;
3346
3471
  startDate: z.ZodString;
3347
3472
  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>>;
3473
+ description: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
3474
+ endDate: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
3475
+ keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
3476
+ url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
3352
3477
  }, z.core.$strip>>>>;
3353
3478
  profiles: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
3354
3479
  network: z.ZodEnum<{
@@ -3733,394 +3858,14 @@ declare const resumeSchema: z.ZodObject<{
3733
3858
  "moderncv-classic": "moderncv-classic";
3734
3859
  }>;
3735
3860
  username: z.ZodString;
3736
- url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
3861
+ url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
3737
3862
  }, z.core.$strip>>>>;
3738
3863
  location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3739
3864
  city: z.ZodString;
3740
- address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3741
- country: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3742
- Afghanistan: "Afghanistan";
3743
- "Aland Islands": "Aland Islands";
3744
- Albania: "Albania";
3745
- Algeria: "Algeria";
3746
- "American Samoa": "American Samoa";
3747
- Andorra: "Andorra";
3748
- Angola: "Angola";
3749
- Anguilla: "Anguilla";
3750
- Antarctica: "Antarctica";
3751
- "Antigua And Barbuda": "Antigua And Barbuda";
3752
- Argentina: "Argentina";
3753
- Armenia: "Armenia";
3754
- Aruba: "Aruba";
3755
- Australia: "Australia";
3756
- Austria: "Austria";
3757
- Azerbaijan: "Azerbaijan";
3758
- Bahrain: "Bahrain";
3759
- Bangladesh: "Bangladesh";
3760
- Barbados: "Barbados";
3761
- Belarus: "Belarus";
3762
- Belgium: "Belgium";
3763
- Belize: "Belize";
3764
- Benin: "Benin";
3765
- Bermuda: "Bermuda";
3766
- Bhutan: "Bhutan";
3767
- Bolivia: "Bolivia";
3768
- "Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba";
3769
- "Bosnia and Herzegovina": "Bosnia and Herzegovina";
3770
- Botswana: "Botswana";
3771
- "Bouvet Island": "Bouvet Island";
3772
- Brazil: "Brazil";
3773
- "British Indian Ocean Territory": "British Indian Ocean Territory";
3774
- Brunei: "Brunei";
3775
- Bulgaria: "Bulgaria";
3776
- "Burkina Faso": "Burkina Faso";
3777
- Burundi: "Burundi";
3778
- Cambodia: "Cambodia";
3779
- Cameroon: "Cameroon";
3780
- Canada: "Canada";
3781
- "Cape Verde": "Cape Verde";
3782
- "Cayman Islands": "Cayman Islands";
3783
- "Central African Republic": "Central African Republic";
3784
- Chad: "Chad";
3785
- Chile: "Chile";
3786
- China: "China";
3787
- "Christmas Island": "Christmas Island";
3788
- "Cocos (Keeling) Islands": "Cocos (Keeling) Islands";
3789
- Colombia: "Colombia";
3790
- Comoros: "Comoros";
3791
- Congo: "Congo";
3792
- "Cook Islands": "Cook Islands";
3793
- "Costa Rica": "Costa Rica";
3794
- "Cote D'Ivoire (Ivory Coast)": "Cote D'Ivoire (Ivory Coast)";
3795
- Croatia: "Croatia";
3796
- Cuba: "Cuba";
3797
- Curaçao: "Curaçao";
3798
- Cyprus: "Cyprus";
3799
- "Czech Republic": "Czech Republic";
3800
- "Democratic Republic of the Congo": "Democratic Republic of the Congo";
3801
- Denmark: "Denmark";
3802
- Djibouti: "Djibouti";
3803
- Dominica: "Dominica";
3804
- "Dominican Republic": "Dominican Republic";
3805
- "East Timor": "East Timor";
3806
- Ecuador: "Ecuador";
3807
- Egypt: "Egypt";
3808
- "El Salvador": "El Salvador";
3809
- "Equatorial Guinea": "Equatorial Guinea";
3810
- Eritrea: "Eritrea";
3811
- Estonia: "Estonia";
3812
- Ethiopia: "Ethiopia";
3813
- "Falkland Islands": "Falkland Islands";
3814
- "Faroe Islands": "Faroe Islands";
3815
- "Fiji Islands": "Fiji Islands";
3816
- Finland: "Finland";
3817
- France: "France";
3818
- "French Guiana": "French Guiana";
3819
- "French Polynesia": "French Polynesia";
3820
- "French Southern Territories": "French Southern Territories";
3821
- Gabon: "Gabon";
3822
- "Gambia The": "Gambia The";
3823
- Georgia: "Georgia";
3824
- Germany: "Germany";
3825
- Ghana: "Ghana";
3826
- Gibraltar: "Gibraltar";
3827
- Greece: "Greece";
3828
- Greenland: "Greenland";
3829
- Grenada: "Grenada";
3830
- Guadeloupe: "Guadeloupe";
3831
- Guam: "Guam";
3832
- Guatemala: "Guatemala";
3833
- "Guernsey and Alderney": "Guernsey and Alderney";
3834
- Guinea: "Guinea";
3835
- "Guinea-Bissau": "Guinea-Bissau";
3836
- Guyana: "Guyana";
3837
- Haiti: "Haiti";
3838
- "Heard Island and McDonald Islands": "Heard Island and McDonald Islands";
3839
- Honduras: "Honduras";
3840
- "Hong Kong S.A.R.": "Hong Kong S.A.R.";
3841
- Hungary: "Hungary";
3842
- Iceland: "Iceland";
3843
- India: "India";
3844
- Indonesia: "Indonesia";
3845
- Iran: "Iran";
3846
- Iraq: "Iraq";
3847
- Ireland: "Ireland";
3848
- Israel: "Israel";
3849
- Italy: "Italy";
3850
- Jamaica: "Jamaica";
3851
- Japan: "Japan";
3852
- Jersey: "Jersey";
3853
- Jordan: "Jordan";
3854
- Kazakhstan: "Kazakhstan";
3855
- Kenya: "Kenya";
3856
- Kiribati: "Kiribati";
3857
- Kosovo: "Kosovo";
3858
- Kuwait: "Kuwait";
3859
- Kyrgyzstan: "Kyrgyzstan";
3860
- Laos: "Laos";
3861
- Latvia: "Latvia";
3862
- Lebanon: "Lebanon";
3863
- Lesotho: "Lesotho";
3864
- Liberia: "Liberia";
3865
- Libya: "Libya";
3866
- Liechtenstein: "Liechtenstein";
3867
- Lithuania: "Lithuania";
3868
- Luxembourg: "Luxembourg";
3869
- "Macau S.A.R.": "Macau S.A.R.";
3870
- Madagascar: "Madagascar";
3871
- Malawi: "Malawi";
3872
- Malaysia: "Malaysia";
3873
- Maldives: "Maldives";
3874
- Mali: "Mali";
3875
- Malta: "Malta";
3876
- "Man (Isle of)": "Man (Isle of)";
3877
- "Marshall Islands": "Marshall Islands";
3878
- Martinique: "Martinique";
3879
- Mauritania: "Mauritania";
3880
- Mauritius: "Mauritius";
3881
- Mayotte: "Mayotte";
3882
- Mexico: "Mexico";
3883
- Micronesia: "Micronesia";
3884
- Moldova: "Moldova";
3885
- Monaco: "Monaco";
3886
- Mongolia: "Mongolia";
3887
- Montenegro: "Montenegro";
3888
- Montserrat: "Montserrat";
3889
- Morocco: "Morocco";
3890
- Mozambique: "Mozambique";
3891
- Myanmar: "Myanmar";
3892
- Namibia: "Namibia";
3893
- Nauru: "Nauru";
3894
- Nepal: "Nepal";
3895
- Netherlands: "Netherlands";
3896
- "New Caledonia": "New Caledonia";
3897
- "New Zealand": "New Zealand";
3898
- Nicaragua: "Nicaragua";
3899
- Niger: "Niger";
3900
- Nigeria: "Nigeria";
3901
- Niue: "Niue";
3902
- "Norfolk Island": "Norfolk Island";
3903
- "North Korea": "North Korea";
3904
- "North Macedonia": "North Macedonia";
3905
- "Northern Mariana Islands": "Northern Mariana Islands";
3906
- Norway: "Norway";
3907
- Oman: "Oman";
3908
- Pakistan: "Pakistan";
3909
- Palau: "Palau";
3910
- "Palestinian Territory Occupied": "Palestinian Territory Occupied";
3911
- Panama: "Panama";
3912
- "Papua new Guinea": "Papua new Guinea";
3913
- Paraguay: "Paraguay";
3914
- Peru: "Peru";
3915
- Philippines: "Philippines";
3916
- "Pitcairn Island": "Pitcairn Island";
3917
- Poland: "Poland";
3918
- Portugal: "Portugal";
3919
- "Puerto Rico": "Puerto Rico";
3920
- Qatar: "Qatar";
3921
- Reunion: "Reunion";
3922
- Romania: "Romania";
3923
- Russia: "Russia";
3924
- Rwanda: "Rwanda";
3925
- "Saint Helena": "Saint Helena";
3926
- "Saint Kitts And Nevis": "Saint Kitts And Nevis";
3927
- "Saint Lucia": "Saint Lucia";
3928
- "Saint Pierre and Miquelon": "Saint Pierre and Miquelon";
3929
- "Saint Vincent And The Grenadines": "Saint Vincent And The Grenadines";
3930
- "Saint-Barthelemy": "Saint-Barthelemy";
3931
- "Saint-Martin (French part)": "Saint-Martin (French part)";
3932
- Samoa: "Samoa";
3933
- "San Marino": "San Marino";
3934
- "Sao Tome and Principe": "Sao Tome and Principe";
3935
- "Saudi Arabia": "Saudi Arabia";
3936
- Senegal: "Senegal";
3937
- Serbia: "Serbia";
3938
- Seychelles: "Seychelles";
3939
- "Sierra Leone": "Sierra Leone";
3940
- Singapore: "Singapore";
3941
- "Sint Maarten (Dutch part)": "Sint Maarten (Dutch part)";
3942
- Slovakia: "Slovakia";
3943
- Slovenia: "Slovenia";
3944
- "Solomon Islands": "Solomon Islands";
3945
- Somalia: "Somalia";
3946
- "South Africa": "South Africa";
3947
- "South Georgia": "South Georgia";
3948
- "South Korea": "South Korea";
3949
- "South Sudan": "South Sudan";
3950
- Spain: "Spain";
3951
- "Sri Lanka": "Sri Lanka";
3952
- Sudan: "Sudan";
3953
- Suriname: "Suriname";
3954
- "Svalbard And Jan Mayen Islands": "Svalbard And Jan Mayen Islands";
3955
- Swaziland: "Swaziland";
3956
- Sweden: "Sweden";
3957
- Switzerland: "Switzerland";
3958
- Syria: "Syria";
3959
- Taiwan: "Taiwan";
3960
- Tajikistan: "Tajikistan";
3961
- Tanzania: "Tanzania";
3962
- Thailand: "Thailand";
3963
- "The Bahamas": "The Bahamas";
3964
- Togo: "Togo";
3965
- Tokelau: "Tokelau";
3966
- Tonga: "Tonga";
3967
- "Trinidad And Tobago": "Trinidad And Tobago";
3968
- Tunisia: "Tunisia";
3969
- Turkey: "Turkey";
3970
- Turkmenistan: "Turkmenistan";
3971
- "Turks And Caicos Islands": "Turks And Caicos Islands";
3972
- Tuvalu: "Tuvalu";
3973
- Uganda: "Uganda";
3974
- Ukraine: "Ukraine";
3975
- "United Arab Emirates": "United Arab Emirates";
3976
- "United Kingdom": "United Kingdom";
3977
- "United States": "United States";
3978
- "United States Minor Outlying Islands": "United States Minor Outlying Islands";
3979
- Uruguay: "Uruguay";
3980
- Uzbekistan: "Uzbekistan";
3981
- Vanuatu: "Vanuatu";
3982
- "Vatican City State (Holy See)": "Vatican City State (Holy See)";
3983
- Venezuela: "Venezuela";
3984
- Vietnam: "Vietnam";
3985
- "Virgin Islands (British)": "Virgin Islands (British)";
3986
- "Virgin Islands (US)": "Virgin Islands (US)";
3987
- "Wallis And Futuna Islands": "Wallis And Futuna Islands";
3988
- "Western Sahara": "Western Sahara";
3989
- Yemen: "Yemen";
3990
- Zambia: "Zambia";
3991
- Zimbabwe: "Zimbabwe";
3992
- "Middle School": "Middle School";
3993
- "High School": "High School";
3994
- Diploma: "Diploma";
3995
- Associate: "Associate";
3996
- Bachelor: "Bachelor";
3997
- Master: "Master";
3998
- Doctor: "Doctor";
3999
- "Elementary Proficiency": "Elementary Proficiency";
4000
- "Limited Working Proficiency": "Limited Working Proficiency";
4001
- "Minimum Professional Proficiency": "Minimum Professional Proficiency";
4002
- "Full Professional Proficiency": "Full Professional Proficiency";
4003
- "Native or Bilingual Proficiency": "Native or Bilingual Proficiency";
4004
- "10pt": "10pt";
4005
- "11pt": "11pt";
4006
- "12pt": "12pt";
4007
- Lining: "Lining";
4008
- OldStyle: "OldStyle";
4009
- Auto: "Auto";
4010
- Afrikaans: "Afrikaans";
4011
- Albanian: "Albanian";
4012
- Amharic: "Amharic";
4013
- Arabic: "Arabic";
4014
- Azerbaijani: "Azerbaijani";
4015
- Belarusian: "Belarusian";
4016
- Bengali: "Bengali";
4017
- Bhojpuri: "Bhojpuri";
4018
- Bulgarian: "Bulgarian";
4019
- Burmese: "Burmese";
4020
- Cantonese: "Cantonese";
4021
- Catalan: "Catalan";
4022
- Chinese: "Chinese";
4023
- Croatian: "Croatian";
4024
- Czech: "Czech";
4025
- Danish: "Danish";
4026
- Dutch: "Dutch";
4027
- English: "English";
4028
- Estonian: "Estonian";
4029
- Farsi: "Farsi";
4030
- Filipino: "Filipino";
4031
- Finnish: "Finnish";
4032
- French: "French";
4033
- German: "German";
4034
- Greek: "Greek";
4035
- Gujarati: "Gujarati";
4036
- Hausa: "Hausa";
4037
- Hebrew: "Hebrew";
4038
- Hindi: "Hindi";
4039
- Hungarian: "Hungarian";
4040
- Icelandic: "Icelandic";
4041
- Igbo: "Igbo";
4042
- Indonesian: "Indonesian";
4043
- Irish: "Irish";
4044
- Italian: "Italian";
4045
- Japanese: "Japanese";
4046
- Javanese: "Javanese";
4047
- Kazakh: "Kazakh";
4048
- Khmer: "Khmer";
4049
- Korean: "Korean";
4050
- Lahnda: "Lahnda";
4051
- Latvian: "Latvian";
4052
- Lithuanian: "Lithuanian";
4053
- Malay: "Malay";
4054
- Mandarin: "Mandarin";
4055
- Marathi: "Marathi";
4056
- Nepali: "Nepali";
4057
- Norwegian: "Norwegian";
4058
- Oromo: "Oromo";
4059
- Pashto: "Pashto";
4060
- Polish: "Polish";
4061
- Portuguese: "Portuguese";
4062
- Romanian: "Romanian";
4063
- Russian: "Russian";
4064
- Serbian: "Serbian";
4065
- Shona: "Shona";
4066
- Sinhala: "Sinhala";
4067
- Slovak: "Slovak";
4068
- Slovene: "Slovene";
4069
- Somali: "Somali";
4070
- Spanish: "Spanish";
4071
- Sundanese: "Sundanese";
4072
- Swahili: "Swahili";
4073
- Swedish: "Swedish";
4074
- Tagalog: "Tagalog";
4075
- Tamil: "Tamil";
4076
- Telugu: "Telugu";
4077
- Thai: "Thai";
4078
- Turkish: "Turkish";
4079
- Ukrainian: "Ukrainian";
4080
- Urdu: "Urdu";
4081
- Uzbek: "Uzbek";
4082
- Vietnamese: "Vietnamese";
4083
- Yoruba: "Yoruba";
4084
- Zulu: "Zulu";
4085
- Novice: "Novice";
4086
- Beginner: "Beginner";
4087
- Intermediate: "Intermediate";
4088
- Advanced: "Advanced";
4089
- Expert: "Expert";
4090
- en: "en";
4091
- "zh-hans": "zh-hans";
4092
- "zh-hant-hk": "zh-hant-hk";
4093
- "zh-hant-tw": "zh-hant-tw";
4094
- es: "es";
4095
- Behance: "Behance";
4096
- Dribbble: "Dribbble";
4097
- Facebook: "Facebook";
4098
- GitHub: "GitHub";
4099
- Gitlab: "Gitlab";
4100
- Instagram: "Instagram";
4101
- Line: "Line";
4102
- LinkedIn: "LinkedIn";
4103
- Medium: "Medium";
4104
- Pinterest: "Pinterest";
4105
- Reddit: "Reddit";
4106
- Snapchat: "Snapchat";
4107
- "Stack Overflow": "Stack Overflow";
4108
- Telegram: "Telegram";
4109
- TikTok: "TikTok";
4110
- Twitch: "Twitch";
4111
- Twitter: "Twitter";
4112
- Vimeo: "Vimeo";
4113
- Weibo: "Weibo";
4114
- WeChat: "WeChat";
4115
- WhatsApp: "WhatsApp";
4116
- YouTube: "YouTube";
4117
- Zhihu: "Zhihu";
4118
- "moderncv-banking": "moderncv-banking";
4119
- "moderncv-casual": "moderncv-casual";
4120
- "moderncv-classic": "moderncv-classic";
4121
- }>>>;
4122
- postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4123
- region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3865
+ address: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
3866
+ country: z.ZodOptional<z.ZodNullable<z.ZodType<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown, z.core.$ZodTypeInternals<"Afghanistan" | "Aland Islands" | "Albania" | "Algeria" | "American Samoa" | "Andorra" | "Angola" | "Anguilla" | "Antarctica" | "Antigua And Barbuda" | "Argentina" | "Armenia" | "Aruba" | "Australia" | "Austria" | "Azerbaijan" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bermuda" | "Bhutan" | "Bolivia" | "Bonaire, Sint Eustatius and Saba" | "Bosnia and Herzegovina" | "Botswana" | "Bouvet Island" | "Brazil" | "British Indian Ocean Territory" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cambodia" | "Cameroon" | "Canada" | "Cape Verde" | "Cayman Islands" | "Central African Republic" | "Chad" | "Chile" | "China" | "Christmas Island" | "Cocos (Keeling) Islands" | "Colombia" | "Comoros" | "Congo" | "Cook Islands" | "Costa Rica" | "Cote D'Ivoire (Ivory Coast)" | "Croatia" | "Cuba" | "Curaçao" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "East Timor" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Ethiopia" | "Falkland Islands" | "Faroe Islands" | "Fiji Islands" | "Finland" | "France" | "French Guiana" | "French Polynesia" | "French Southern Territories" | "Gabon" | "Gambia The" | "Georgia" | "Germany" | "Ghana" | "Gibraltar" | "Greece" | "Greenland" | "Grenada" | "Guadeloupe" | "Guam" | "Guatemala" | "Guernsey and Alderney" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Heard Island and McDonald Islands" | "Honduras" | "Hong Kong S.A.R." | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jersey" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kosovo" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Macau S.A.R." | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Man (Isle of)" | "Marshall Islands" | "Martinique" | "Mauritania" | "Mauritius" | "Mayotte" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Montserrat" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Caledonia" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "Niue" | "Norfolk Island" | "North Korea" | "North Macedonia" | "Northern Mariana Islands" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Palestinian Territory Occupied" | "Panama" | "Papua new Guinea" | "Paraguay" | "Peru" | "Philippines" | "Pitcairn Island" | "Poland" | "Portugal" | "Puerto Rico" | "Qatar" | "Reunion" | "Romania" | "Russia" | "Rwanda" | "Saint Helena" | "Saint Kitts And Nevis" | "Saint Lucia" | "Saint Pierre and Miquelon" | "Saint Vincent And The Grenadines" | "Saint-Barthelemy" | "Saint-Martin (French part)" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Sint Maarten (Dutch part)" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Georgia" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Svalbard And Jan Mayen Islands" | "Swaziland" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "The Bahamas" | "Togo" | "Tokelau" | "Tonga" | "Trinidad And Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Turks And Caicos Islands" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "United States Minor Outlying Islands" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City State (Holy See)" | "Venezuela" | "Vietnam" | "Virgin Islands (British)" | "Virgin Islands (US)" | "Wallis And Futuna Islands" | "Western Sahara" | "Yemen" | "Zambia" | "Zimbabwe" | "Middle School" | "High School" | "Diploma" | "Associate" | "Bachelor" | "Master" | "Doctor" | "Elementary Proficiency" | "Limited Working Proficiency" | "Minimum Professional Proficiency" | "Full Professional Proficiency" | "Native or Bilingual Proficiency" | "10pt" | "11pt" | "12pt" | "Lining" | "OldStyle" | "Auto" | "Afrikaans" | "Albanian" | "Amharic" | "Arabic" | "Azerbaijani" | "Belarusian" | "Bengali" | "Bhojpuri" | "Bulgarian" | "Burmese" | "Cantonese" | "Catalan" | "Chinese" | "Croatian" | "Czech" | "Danish" | "Dutch" | "English" | "Estonian" | "Farsi" | "Filipino" | "Finnish" | "French" | "German" | "Greek" | "Gujarati" | "Hausa" | "Hebrew" | "Hindi" | "Hungarian" | "Icelandic" | "Igbo" | "Indonesian" | "Irish" | "Italian" | "Japanese" | "Javanese" | "Kazakh" | "Khmer" | "Korean" | "Lahnda" | "Latvian" | "Lithuanian" | "Malay" | "Mandarin" | "Marathi" | "Nepali" | "Norwegian" | "Oromo" | "Pashto" | "Polish" | "Portuguese" | "Romanian" | "Russian" | "Serbian" | "Shona" | "Sinhala" | "Slovak" | "Slovene" | "Somali" | "Spanish" | "Sundanese" | "Swahili" | "Swedish" | "Tagalog" | "Tamil" | "Telugu" | "Thai" | "Turkish" | "Ukrainian" | "Urdu" | "Uzbek" | "Vietnamese" | "Yoruba" | "Zulu" | "Novice" | "Beginner" | "Intermediate" | "Advanced" | "Expert" | "en" | "zh-hans" | "zh-hant-hk" | "zh-hant-tw" | "es" | "Behance" | "Dribbble" | "Facebook" | "GitHub" | "Gitlab" | "Instagram" | "Line" | "LinkedIn" | "Medium" | "Pinterest" | "Reddit" | "Snapchat" | "Stack Overflow" | "Telegram" | "TikTok" | "Twitch" | "Twitter" | "Vimeo" | "Weibo" | "WeChat" | "WhatsApp" | "YouTube" | "Zhihu" | "moderncv-banking" | "moderncv-casual" | "moderncv-classic", unknown>>>>;
3867
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
3868
+ region: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
4124
3869
  }, z.core.$strip>>>;
4125
3870
  languages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
4126
3871
  fluency: z.ZodEnum<{
@@ -4885,23 +4630,23 @@ declare const resumeSchema: z.ZodObject<{
4885
4630
  "moderncv-casual": "moderncv-casual";
4886
4631
  "moderncv-classic": "moderncv-classic";
4887
4632
  }>;
4888
- keywords: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
4633
+ keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
4889
4634
  }, z.core.$strip>>>>;
4890
4635
  interests: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
4891
4636
  name: z.ZodString;
4892
- keywords: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
4637
+ keywords: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
4893
4638
  }, z.core.$strip>>>>;
4894
4639
  certificates: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
4895
4640
  issuer: z.ZodString;
4896
4641
  name: z.ZodString;
4897
- date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4898
- url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
4642
+ date: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
4643
+ url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
4899
4644
  }, z.core.$strip>>>>;
4900
4645
  awards: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
4901
4646
  awarder: z.ZodString;
4902
4647
  title: z.ZodString;
4903
- date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4904
- summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4648
+ date: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
4649
+ summary: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
4905
4650
  }, z.core.$strip>>>>;
4906
4651
  education: z.ZodArray<z.ZodObject<{
4907
4652
  area: z.ZodString;
@@ -5288,19 +5033,19 @@ declare const resumeSchema: z.ZodObject<{
5288
5033
  "moderncv-classic": "moderncv-classic";
5289
5034
  }>;
5290
5035
  startDate: z.ZodString;
5291
- courses: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
5292
- endDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5293
- summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5294
- score: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5295
- url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
5036
+ courses: z.ZodOptional<z.ZodNullable<z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>>>;
5037
+ endDate: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
5038
+ summary: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
5039
+ score: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
5040
+ url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
5296
5041
  }, z.core.$strip>>;
5297
5042
  basics: z.ZodObject<{
5298
5043
  name: z.ZodString;
5299
- email: z.ZodOptional<z.ZodNullable<z.ZodEmail>>;
5300
- headline: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5301
- phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5302
- summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5303
- url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
5044
+ email: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
5045
+ headline: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
5046
+ phone: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
5047
+ summary: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
5048
+ url: z.ZodOptional<z.ZodNullable<z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>>>;
5304
5049
  }, z.core.$strip>;
5305
5050
  }, z.core.$strip>;
5306
5051
  }, z.core.$strip>;
@@ -5356,7 +5101,7 @@ type OptionCategory = keyof OptionTranslation;
5356
5101
  * @returns An object containing the translated terms for the specified
5357
5102
  * language.
5358
5103
  */
5359
- declare function getOptionTranslation<K extends OptionCategory>(language: LocaleLanguageOption, category: K, option: keyof OptionTranslation[K]): string;
5104
+ declare function getOptionTranslation<K extends OptionCategory>(language: LocaleLanguage, category: K, option: keyof OptionTranslation[K]): string;
5360
5105
 
5361
5106
  /**
5362
5107
  * MIT License
@@ -5406,7 +5151,7 @@ type TemplateTranslationValue = {
5406
5151
  * @returns An object containing the translated punctuations and terms for the
5407
5152
  * specified language.
5408
5153
  */
5409
- declare function getTemplateTranslations(language?: LocaleLanguageOption): TemplateTranslationValue;
5154
+ declare function getTemplateTranslations(language?: LocaleLanguage): TemplateTranslationValue;
5410
5155
 
5411
5156
  /**
5412
5157
  * MIT License
@@ -5446,7 +5191,7 @@ declare function parseDate(dateStr: string | undefined | null): Date | null;
5446
5191
  * @param language - The language to localize the date string to.
5447
5192
  * @returns The localized date string.
5448
5193
  */
5449
- declare function localizeDate(date: string, language: LocaleLanguageOption | string): string;
5194
+ declare function localizeDate(date: string, language: LocaleLanguage | string): string;
5450
5195
  /**
5451
5196
  * Get the date range for a given start and end date.
5452
5197
  *
@@ -5455,7 +5200,7 @@ declare function localizeDate(date: string, language: LocaleLanguageOption | str
5455
5200
  * @param language - The language to localize the date string to.
5456
5201
  * @returns The date range.
5457
5202
  */
5458
- declare function getDateRange(startDate: string, endDate: string, language: LocaleLanguageOption): string;
5203
+ declare function getDateRange(startDate: string, endDate: string, language: LocaleLanguage): string;
5459
5204
  /**
5460
5205
  * The number of seconds in one day
5461
5206
  */
@@ -5635,4 +5380,4 @@ declare function joinNonEmptyString(codes: string[], separator?: string): string
5635
5380
  */
5636
5381
  declare function toCodeBlock(code?: string, lang?: string): string;
5637
5382
 
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 LocaleLanguageOption, type Location, MarkdownParser, NETWORK_GROUP_OPTIONS, NETWORK_OPTIONS, type Network, type NetworkGroup, type Node, type OrderedListNode, PUNCTUATIONS, type ParagraphNode, type Parser, type ProfileItem, type Profiles, type Projects, type Publications, type Punctuation, type References, type Resume, type ResumeContent, type ResumeItem, type ResumeLayout, SECTION_IDS, type SectionDefaultValues, type SectionID, SimplifiedChineseCountryNames, type Skills, SpanishCountryNames, TEMPLATE_OPTIONS, TERMS, type TemplateOption, type Term, type TextNode, TraditionalChineseCountryHKNames, TraditionalChineseCountryTWNames, type Volunteer, type Work, YAMLResumeError, collectAllKeys, defaultResume, defaultResumeContent, defaultResumeLayout, epochSecondsToLocaleDateString, escapeLatex, filledResume, filledResumeContent, getDateRange, getLocaleLanguageOptionDetail, getOptionTranslation, getResumeRenderer, getTemplateOptionDetail, getTemplateTranslations, isEmptyString, isEmptyValue, joinNonEmptyString, localizeDate, marginOptions, milliSecondsToSeconds, nowInUTCSeconds, oneDay, parseDate, removeKeysFromObject, resumeItems, resumeSchema, showIf, toCodeBlock, transformResume };
5383
+ export { type Awards, type Basics, type BulletListNode, COUNTRY_OPTIONS, type Certificates, type Country, DEGREE_OPTIONS, type Degree, type DocNode, type Education, EnglishCountryNames, ErrorType, FLUENCY_OPTIONS, FONTSPEC_NUMBERS_OPTIONS, FONT_SIZE_OPTIONS, type Fluency, type FontSize, type FontspecNumbers, type Interests, LANGUAGE_OPTIONS, LEVEL_OPTIONS, LOCALE_LANGUAGE_OPTIONS, type Language, type LanguageItem, type Languages, LatexCodeGenerator, type Level, type LocaleLanguage, type Location, MarkdownParser, NETWORK_OPTIONS, type Network, type Node, type OrderedListNode, PUNCTUATIONS, type ParagraphNode, type Parser, type ProfileItem, type Profiles, type Projects, type Publications, type Punctuation, type References, type Resume, type ResumeContent, type ResumeItem, type ResumeLayout, ResumeSchema, SECTION_IDS, type SectionID, SimplifiedChineseCountryNames, type Skills, SpanishCountryNames, TEMPLATE_OPTIONS, TERMS, type Template, type Term, type TextNode, TraditionalChineseCountryHKNames, TraditionalChineseCountryTWNames, type Volunteer, type Work, YAMLResumeError, collectAllKeys, defaultResume, defaultResumeContent, defaultResumeLayout, epochSecondsToLocaleDateString, escapeLatex, filledResume, filledResumeContent, getDateRange, getLocaleLanguageDetail, getOptionTranslation, getResumeRenderer, getTemplateDetail, getTemplateTranslations, isEmptyString, isEmptyValue, joinNonEmptyString, localizeDate, marginOptions, milliSecondsToSeconds, nowInUTCSeconds, oneDay, parseDate, removeKeysFromObject, resumeItems, showIf, toCodeBlock, transformResume };