@jobsearch-works/firestore-models 2.4.8 → 2.4.10

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
@@ -688,6 +688,7 @@ interface ApplicationQuestion {
688
688
  id?: string;
689
689
  questionText: string;
690
690
  answerText?: string;
691
+ clientId: string;
691
692
  type: ApplicationQuestionType;
692
693
  createdAt?: Date | string;
693
694
  updatedAt?: Date | string;
@@ -956,7 +957,7 @@ interface ClientAccessToken {
956
957
  * Subcollection document under clients/{userId}/emails/{emailId}
957
958
  * For new email structure
958
959
  */
959
- type EmailCategory = "One Time Pin" | "Spam" | "Job Interview" | "Job Rejection" | "Require More Info" | "Job Suggestions" | "Uncategorised";
960
+ type EmailCategory = "One Time Pin" | "Spam" | "Job Submitted" | "Job Interview" | "Job Accepted" | "Job Rejection" | "Require More Info" | "Job Suggestions" | "Uncategorised";
960
961
  interface ClientEmail {
961
962
  bcc: string[];
962
963
  cc: string[];
package/dist/index.d.ts CHANGED
@@ -688,6 +688,7 @@ interface ApplicationQuestion {
688
688
  id?: string;
689
689
  questionText: string;
690
690
  answerText?: string;
691
+ clientId: string;
691
692
  type: ApplicationQuestionType;
692
693
  createdAt?: Date | string;
693
694
  updatedAt?: Date | string;
@@ -956,7 +957,7 @@ interface ClientAccessToken {
956
957
  * Subcollection document under clients/{userId}/emails/{emailId}
957
958
  * For new email structure
958
959
  */
959
- type EmailCategory = "One Time Pin" | "Spam" | "Job Interview" | "Job Rejection" | "Require More Info" | "Job Suggestions" | "Uncategorised";
960
+ type EmailCategory = "One Time Pin" | "Spam" | "Job Submitted" | "Job Interview" | "Job Accepted" | "Job Rejection" | "Require More Info" | "Job Suggestions" | "Uncategorised";
960
961
  interface ClientEmail {
961
962
  bcc: string[];
962
963
  cc: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobsearch-works/firestore-models",
3
- "version": "2.4.8",
3
+ "version": "2.4.10",
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",