@jobsearch-works/firestore-models 4.2.5 → 4.2.7
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 +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -643,6 +643,9 @@ interface Vacancy {
|
|
|
643
643
|
category: VacancyCategory;
|
|
644
644
|
suggestedTo?: string[];
|
|
645
645
|
embeddedValue?: number[];
|
|
646
|
+
salary?: number;
|
|
647
|
+
salaryMin?: number;
|
|
648
|
+
salaryMax?: number;
|
|
646
649
|
questions?: Omit<ApplicationQuestion, "answerText">[];
|
|
647
650
|
createdAt?: Date | string;
|
|
648
651
|
updatedAt?: Date | string;
|
|
@@ -795,6 +798,7 @@ interface Application {
|
|
|
795
798
|
totalTokensUsed?: number;
|
|
796
799
|
lastRunAt?: Date | string;
|
|
797
800
|
lastRunStatus?: string;
|
|
801
|
+
confirmationEmailReceived?: boolean;
|
|
798
802
|
submittedAt?: Date | string;
|
|
799
803
|
interviewingAt?: Date | string;
|
|
800
804
|
acceptedAt?: Date | string;
|
|
@@ -1110,6 +1114,7 @@ interface ClientEmail {
|
|
|
1110
1114
|
timestamp: number;
|
|
1111
1115
|
labels: string[];
|
|
1112
1116
|
categories: EmailCategory[];
|
|
1117
|
+
classified?: boolean;
|
|
1113
1118
|
jobApplicationId?: string;
|
|
1114
1119
|
logs: EmailLog[];
|
|
1115
1120
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -643,6 +643,9 @@ interface Vacancy {
|
|
|
643
643
|
category: VacancyCategory;
|
|
644
644
|
suggestedTo?: string[];
|
|
645
645
|
embeddedValue?: number[];
|
|
646
|
+
salary?: number;
|
|
647
|
+
salaryMin?: number;
|
|
648
|
+
salaryMax?: number;
|
|
646
649
|
questions?: Omit<ApplicationQuestion, "answerText">[];
|
|
647
650
|
createdAt?: Date | string;
|
|
648
651
|
updatedAt?: Date | string;
|
|
@@ -795,6 +798,7 @@ interface Application {
|
|
|
795
798
|
totalTokensUsed?: number;
|
|
796
799
|
lastRunAt?: Date | string;
|
|
797
800
|
lastRunStatus?: string;
|
|
801
|
+
confirmationEmailReceived?: boolean;
|
|
798
802
|
submittedAt?: Date | string;
|
|
799
803
|
interviewingAt?: Date | string;
|
|
800
804
|
acceptedAt?: Date | string;
|
|
@@ -1110,6 +1114,7 @@ interface ClientEmail {
|
|
|
1110
1114
|
timestamp: number;
|
|
1111
1115
|
labels: string[];
|
|
1112
1116
|
categories: EmailCategory[];
|
|
1117
|
+
classified?: boolean;
|
|
1113
1118
|
jobApplicationId?: string;
|
|
1114
1119
|
logs: EmailLog[];
|
|
1115
1120
|
}
|
package/package.json
CHANGED