@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 +15 -10
- package/dist/index.d.ts +15 -10
- package/package.json +1 -1
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
|
|
696
|
-
skills
|
|
697
|
-
education
|
|
698
|
-
experience
|
|
699
|
-
certifications
|
|
700
|
-
languages
|
|
701
|
-
projects
|
|
702
|
-
summary
|
|
703
|
-
|
|
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
|
|
696
|
-
skills
|
|
697
|
-
education
|
|
698
|
-
experience
|
|
699
|
-
certifications
|
|
700
|
-
languages
|
|
701
|
-
projects
|
|
702
|
-
summary
|
|
703
|
-
|
|
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