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