@jobsearch-works/firestore-models 2.4.6 → 2.4.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 CHANGED
@@ -525,6 +525,7 @@ declare const ClientStatusEnum: {
525
525
  readonly onboarding: "onboarding";
526
526
  readonly active: "active";
527
527
  readonly inactive: "inactive";
528
+ readonly deleted: "deleted";
528
529
  };
529
530
 
530
531
  type AgentStatus = "active" | "inactive";
@@ -554,6 +555,7 @@ interface AuthUser {
554
555
  emailVerified?: boolean;
555
556
  createdAt?: Date | string;
556
557
  updatedAt?: Date | string;
558
+ deletedAt?: Date;
557
559
  }
558
560
 
559
561
  interface Companies {
@@ -961,15 +963,16 @@ interface ClientEmail {
961
963
  to: string[];
962
964
  from: string[];
963
965
  date: string;
964
- "html-content": string;
965
- "text-content": string;
966
- message_id: string;
966
+ htmlContent: string;
967
+ textContent: string;
968
+ messageId: string;
967
969
  snippet: string;
968
970
  subject: string;
969
- thread_id: string;
971
+ threadId: string;
970
972
  timestamp: number;
971
973
  labels: string[];
972
974
  categories: EmailCategory[];
975
+ jobApplicationId?: string;
973
976
  }
974
977
 
975
978
  type FirestoreTimestamp = {
package/dist/index.d.ts CHANGED
@@ -525,6 +525,7 @@ declare const ClientStatusEnum: {
525
525
  readonly onboarding: "onboarding";
526
526
  readonly active: "active";
527
527
  readonly inactive: "inactive";
528
+ readonly deleted: "deleted";
528
529
  };
529
530
 
530
531
  type AgentStatus = "active" | "inactive";
@@ -554,6 +555,7 @@ interface AuthUser {
554
555
  emailVerified?: boolean;
555
556
  createdAt?: Date | string;
556
557
  updatedAt?: Date | string;
558
+ deletedAt?: Date;
557
559
  }
558
560
 
559
561
  interface Companies {
@@ -961,15 +963,16 @@ interface ClientEmail {
961
963
  to: string[];
962
964
  from: string[];
963
965
  date: string;
964
- "html-content": string;
965
- "text-content": string;
966
- message_id: string;
966
+ htmlContent: string;
967
+ textContent: string;
968
+ messageId: string;
967
969
  snippet: string;
968
970
  subject: string;
969
- thread_id: string;
971
+ threadId: string;
970
972
  timestamp: number;
971
973
  labels: string[];
972
974
  categories: EmailCategory[];
975
+ jobApplicationId?: string;
973
976
  }
974
977
 
975
978
  type FirestoreTimestamp = {
package/dist/index.js CHANGED
@@ -1217,7 +1217,8 @@ var ClientStatusEnum = {
1217
1217
  "new": "new",
1218
1218
  "onboarding": "onboarding",
1219
1219
  "active": "active",
1220
- "inactive": "inactive"
1220
+ "inactive": "inactive",
1221
+ "deleted": "deleted"
1221
1222
  };
1222
1223
 
1223
1224
  // src/types/Vacancy.ts
package/dist/index.mjs CHANGED
@@ -1184,7 +1184,8 @@ var ClientStatusEnum = {
1184
1184
  "new": "new",
1185
1185
  "onboarding": "onboarding",
1186
1186
  "active": "active",
1187
- "inactive": "inactive"
1187
+ "inactive": "inactive",
1188
+ "deleted": "deleted"
1188
1189
  };
1189
1190
 
1190
1191
  // src/types/Vacancy.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobsearch-works/firestore-models",
3
- "version": "2.4.6",
3
+ "version": "2.4.8",
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",