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.
@@ -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;
@@ -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
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hububb-models",
3
- "version": "1.0.117",
3
+ "version": "1.0.118",
4
4
  "description": "Models for Hububb application",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",