@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobsearch-works/firestore-models",
3
- "version": "4.2.5",
3
+ "version": "4.2.6",
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",