@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 +6 -4
- package/dist/index.d.ts +6 -4
- package/package.json +1 -1
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
|
-
|
|
965
|
-
|
|
966
|
-
|
|
965
|
+
htmlContent: string;
|
|
966
|
+
textContent: string;
|
|
967
|
+
messageId: string;
|
|
967
968
|
snippet: string;
|
|
968
969
|
subject: string;
|
|
969
|
-
|
|
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
|
-
|
|
965
|
-
|
|
966
|
-
|
|
965
|
+
htmlContent: string;
|
|
966
|
+
textContent: string;
|
|
967
|
+
messageId: string;
|
|
967
968
|
snippet: string;
|
|
968
969
|
subject: string;
|
|
969
|
-
|
|
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