@jobsearch-works/firestore-models 2.4.11 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -667,7 +667,6 @@ interface Certification {
667
667
 
668
668
  interface Language {
669
669
  language: string;
670
- proficiency: string;
671
670
  }
672
671
 
673
672
  interface Project {
@@ -692,15 +691,21 @@ type Summary = string | null;
692
691
  */
693
692
  interface ClientResume {
694
693
  readonly id?: string;
695
- jobTitle: string | null;
696
- skills: Skill[];
697
- education: Education[];
698
- experience: WorkExperience[];
699
- certifications: Certification[];
700
- languages: Language[];
701
- projects: Project[];
702
- summary: Summary;
703
- additionalInfo: string | null;
694
+ jobTitle?: string;
695
+ skills?: Skill[];
696
+ education?: Education[];
697
+ experience?: WorkExperience[];
698
+ certifications?: Certification[];
699
+ languages?: Language[];
700
+ projects?: Project[];
701
+ summary?: Summary;
702
+ github?: string;
703
+ linkedin?: string;
704
+ website?: string;
705
+ createdAt: Date | string;
706
+ updatedAt: Date | string;
707
+ storagePath?: string;
708
+ additionalInfo?: string;
704
709
  }
705
710
 
706
711
  declare const ApplicationStatus: {
package/dist/index.d.ts CHANGED
@@ -667,7 +667,6 @@ interface Certification {
667
667
 
668
668
  interface Language {
669
669
  language: string;
670
- proficiency: string;
671
670
  }
672
671
 
673
672
  interface Project {
@@ -692,15 +691,21 @@ type Summary = string | null;
692
691
  */
693
692
  interface ClientResume {
694
693
  readonly id?: string;
695
- jobTitle: string | null;
696
- skills: Skill[];
697
- education: Education[];
698
- experience: WorkExperience[];
699
- certifications: Certification[];
700
- languages: Language[];
701
- projects: Project[];
702
- summary: Summary;
703
- additionalInfo: string | null;
694
+ jobTitle?: string;
695
+ skills?: Skill[];
696
+ education?: Education[];
697
+ experience?: WorkExperience[];
698
+ certifications?: Certification[];
699
+ languages?: Language[];
700
+ projects?: Project[];
701
+ summary?: Summary;
702
+ github?: string;
703
+ linkedin?: string;
704
+ website?: string;
705
+ createdAt: Date | string;
706
+ updatedAt: Date | string;
707
+ storagePath?: string;
708
+ additionalInfo?: string;
704
709
  }
705
710
 
706
711
  declare const ApplicationStatus: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobsearch-works/firestore-models",
3
- "version": "2.4.11",
3
+ "version": "3.0.0",
4
4
  "description": "A shared library for standardizing Firestore document schemas and paths across multiple projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",