@jobsearch-works/firestore-models 4.2.6 → 4.2.8
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 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1087,7 +1087,7 @@ interface ClientAccessToken {
|
|
|
1087
1087
|
* Subcollection document under clients/{userId}/emails/{emailId}
|
|
1088
1088
|
* For new email structure
|
|
1089
1089
|
*/
|
|
1090
|
-
type EmailCategory = "One Time Pin" | "Spam" | "Job Submitted" | "Job Interview" | "Job Accepted" | "Job Rejection" | "Require More Info" | "Job Suggestions" | "Uncategorised";
|
|
1090
|
+
type EmailCategory = "One Time Pin" | "Spam" | "Job Submitted" | "Job Interview" | "Job Accepted" | "Job Rejection" | "Vacancy Closed" | "Require More Info" | "Job Suggestions" | "Uncategorised";
|
|
1091
1091
|
/**
|
|
1092
1092
|
* Array of all valid EmailCategory values for validation and iteration
|
|
1093
1093
|
* This ensures consistency across the system
|
|
@@ -1114,6 +1114,7 @@ interface ClientEmail {
|
|
|
1114
1114
|
timestamp: number;
|
|
1115
1115
|
labels: string[];
|
|
1116
1116
|
categories: EmailCategory[];
|
|
1117
|
+
classified?: boolean;
|
|
1117
1118
|
jobApplicationId?: string;
|
|
1118
1119
|
logs: EmailLog[];
|
|
1119
1120
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1087,7 +1087,7 @@ interface ClientAccessToken {
|
|
|
1087
1087
|
* Subcollection document under clients/{userId}/emails/{emailId}
|
|
1088
1088
|
* For new email structure
|
|
1089
1089
|
*/
|
|
1090
|
-
type EmailCategory = "One Time Pin" | "Spam" | "Job Submitted" | "Job Interview" | "Job Accepted" | "Job Rejection" | "Require More Info" | "Job Suggestions" | "Uncategorised";
|
|
1090
|
+
type EmailCategory = "One Time Pin" | "Spam" | "Job Submitted" | "Job Interview" | "Job Accepted" | "Job Rejection" | "Vacancy Closed" | "Require More Info" | "Job Suggestions" | "Uncategorised";
|
|
1091
1091
|
/**
|
|
1092
1092
|
* Array of all valid EmailCategory values for validation and iteration
|
|
1093
1093
|
* This ensures consistency across the system
|
|
@@ -1114,6 +1114,7 @@ interface ClientEmail {
|
|
|
1114
1114
|
timestamp: number;
|
|
1115
1115
|
labels: string[];
|
|
1116
1116
|
categories: EmailCategory[];
|
|
1117
|
+
classified?: boolean;
|
|
1117
1118
|
jobApplicationId?: string;
|
|
1118
1119
|
logs: EmailLog[];
|
|
1119
1120
|
}
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED