@jobsearch-works/firestore-models 4.0.0 → 4.0.1
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -639,7 +639,7 @@ interface VacancySuggestion {
|
|
|
639
639
|
readonly id?: string;
|
|
640
640
|
clientId: string;
|
|
641
641
|
vacancyId: string;
|
|
642
|
-
status:
|
|
642
|
+
status: "suggested" | "accepted" | "approved" | "rejected";
|
|
643
643
|
createdAt?: Date | string;
|
|
644
644
|
}
|
|
645
645
|
|
package/dist/index.d.ts
CHANGED
|
@@ -639,7 +639,7 @@ interface VacancySuggestion {
|
|
|
639
639
|
readonly id?: string;
|
|
640
640
|
clientId: string;
|
|
641
641
|
vacancyId: string;
|
|
642
|
-
status:
|
|
642
|
+
status: "suggested" | "accepted" | "approved" | "rejected";
|
|
643
643
|
createdAt?: Date | string;
|
|
644
644
|
}
|
|
645
645
|
|
package/package.json
CHANGED