@jobsearch-works/firestore-models 4.2.5 → 4.2.6
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 +4 -0
- package/dist/index.d.ts +4 -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;
|
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;
|
package/package.json
CHANGED