@jobsearch-works/firestore-models 2.4.6 → 2.4.7

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
@@ -554,6 +554,7 @@ interface AuthUser {
554
554
  emailVerified?: boolean;
555
555
  createdAt?: Date | string;
556
556
  updatedAt?: Date | string;
557
+ deletedAt?: Date;
557
558
  }
558
559
 
559
560
  interface Companies {
@@ -961,15 +962,16 @@ interface ClientEmail {
961
962
  to: string[];
962
963
  from: string[];
963
964
  date: string;
964
- "html-content": string;
965
- "text-content": string;
966
- message_id: string;
965
+ htmlContent: string;
966
+ textContent: string;
967
+ messageId: string;
967
968
  snippet: string;
968
969
  subject: string;
969
- thread_id: string;
970
+ threadId: string;
970
971
  timestamp: number;
971
972
  labels: string[];
972
973
  categories: EmailCategory[];
974
+ applicationId: string;
973
975
  }
974
976
 
975
977
  type FirestoreTimestamp = {
package/dist/index.d.ts CHANGED
@@ -554,6 +554,7 @@ interface AuthUser {
554
554
  emailVerified?: boolean;
555
555
  createdAt?: Date | string;
556
556
  updatedAt?: Date | string;
557
+ deletedAt?: Date;
557
558
  }
558
559
 
559
560
  interface Companies {
@@ -961,15 +962,16 @@ interface ClientEmail {
961
962
  to: string[];
962
963
  from: string[];
963
964
  date: string;
964
- "html-content": string;
965
- "text-content": string;
966
- message_id: string;
965
+ htmlContent: string;
966
+ textContent: string;
967
+ messageId: string;
967
968
  snippet: string;
968
969
  subject: string;
969
- thread_id: string;
970
+ threadId: string;
970
971
  timestamp: number;
971
972
  labels: string[];
972
973
  categories: EmailCategory[];
974
+ applicationId: string;
973
975
  }
974
976
 
975
977
  type FirestoreTimestamp = {
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.7",
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",