hububb-models 1.0.117 → 1.0.118
Sign up to get free protection for your applications and to get access to all the features.
package/dist/schemas/thread.d.ts
CHANGED
@@ -675,6 +675,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
675
675
|
seenBy: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>>;
|
676
676
|
isImportant: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
677
677
|
needsAttention: import("zod").ZodArray<import("zod").ZodString, "many">;
|
678
|
+
needsAttentionMap: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>;
|
678
679
|
}, "strip", import("zod").ZodTypeAny, {
|
679
680
|
type: "ONE_TO_ONE" | "GROUP";
|
680
681
|
createdAt: import("@firebase/firestore-types").Timestamp;
|
@@ -682,6 +683,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
682
683
|
participantIds: string[];
|
683
684
|
seenBy: Record<string, import("@firebase/firestore-types").Timestamp>;
|
684
685
|
needsAttention: string[];
|
686
|
+
needsAttentionMap: Record<string, boolean>;
|
685
687
|
id?: string | undefined;
|
686
688
|
source?: string | undefined;
|
687
689
|
title?: string | undefined;
|
@@ -772,6 +774,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
772
774
|
participantIds: string[];
|
773
775
|
seenBy: Record<string, import("@firebase/firestore-types").Timestamp>;
|
774
776
|
needsAttention: string[];
|
777
|
+
needsAttentionMap: Record<string, boolean>;
|
775
778
|
id?: string | undefined;
|
776
779
|
source?: string | undefined;
|
777
780
|
title?: string | undefined;
|
package/dist/schemas/thread.js
CHANGED
@@ -34,4 +34,5 @@ exports.ChatThreadSchema = (0, zod_1.object)({
|
|
34
34
|
seenBy: (0, zod_1.record)((0, zod_1.string)(), helpers_1.firestoreTimestampSchema),
|
35
35
|
isImportant: (0, zod_1.optional)((0, zod_1.boolean)()),
|
36
36
|
needsAttention: (0, zod_1.array)((0, zod_1.string)()),
|
37
|
+
needsAttentionMap: (0, zod_1.record)((0, zod_1.string)(), (0, zod_1.boolean)()),
|
37
38
|
});
|