@jobsearch-works/firestore-models 2.4.0 → 2.4.2
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -618,7 +618,7 @@ interface VacancySuggestion {
|
|
618
618
|
readonly id?: string;
|
619
619
|
clientId: string;
|
620
620
|
vacancyId: string;
|
621
|
-
status:
|
621
|
+
status: 'suggested' | 'applied' | 'rejected';
|
622
622
|
createdAt?: Date | string;
|
623
623
|
}
|
624
624
|
|
@@ -769,7 +769,7 @@ interface ClientPersonalData {
|
|
769
769
|
updatedAt?: Date | string;
|
770
770
|
}
|
771
771
|
|
772
|
-
type ClientStatus = "active" | "inactive";
|
772
|
+
type ClientStatus = "new" | "active" | "inactive";
|
773
773
|
/**
|
774
774
|
* Root Client document
|
775
775
|
* Path: clients/{clientId}
|
package/dist/index.d.ts
CHANGED
@@ -618,7 +618,7 @@ interface VacancySuggestion {
|
|
618
618
|
readonly id?: string;
|
619
619
|
clientId: string;
|
620
620
|
vacancyId: string;
|
621
|
-
status:
|
621
|
+
status: 'suggested' | 'applied' | 'rejected';
|
622
622
|
createdAt?: Date | string;
|
623
623
|
}
|
624
624
|
|
@@ -769,7 +769,7 @@ interface ClientPersonalData {
|
|
769
769
|
updatedAt?: Date | string;
|
770
770
|
}
|
771
771
|
|
772
|
-
type ClientStatus = "active" | "inactive";
|
772
|
+
type ClientStatus = "new" | "active" | "inactive";
|
773
773
|
/**
|
774
774
|
* Root Client document
|
775
775
|
* Path: clients/{clientId}
|
package/package.json
CHANGED