hububb-models 1.0.101 → 1.0.102

Sign up to get free protection for your applications and to get access to all the features.
@@ -672,6 +672,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
672
672
  externalThreadId: import("zod").ZodOptional<import("zod").ZodString>;
673
673
  externalSource: import("zod").ZodOptional<import("zod").ZodString>;
674
674
  title: import("zod").ZodOptional<import("zod").ZodString>;
675
+ lastSeenAt: import("zod").ZodOptional<import("zod").ZodType<FirebaseFirestore.Timestamp, import("zod").ZodTypeDef, FirebaseFirestore.Timestamp>>;
675
676
  }, "strip", import("zod").ZodTypeAny, {
676
677
  type: "ONE_TO_ONE" | "GROUP";
677
678
  createdAt: FirebaseFirestore.Timestamp;
@@ -759,6 +760,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
759
760
  }[] | undefined;
760
761
  externalThreadId?: string | undefined;
761
762
  externalSource?: string | undefined;
763
+ lastSeenAt?: FirebaseFirestore.Timestamp | undefined;
762
764
  }, {
763
765
  type: "ONE_TO_ONE" | "GROUP";
764
766
  createdAt: FirebaseFirestore.Timestamp;
@@ -846,4 +848,5 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
846
848
  }[] | undefined;
847
849
  externalThreadId?: string | undefined;
848
850
  externalSource?: string | undefined;
851
+ lastSeenAt?: FirebaseFirestore.Timestamp | undefined;
849
852
  }>;
@@ -31,4 +31,5 @@ exports.ChatThreadSchema = (0, zod_1.object)({
31
31
  externalThreadId: (0, zod_1.optional)((0, zod_1.string)()),
32
32
  externalSource: (0, zod_1.optional)((0, zod_1.string)()),
33
33
  title: (0, zod_1.optional)((0, zod_1.string)()),
34
+ lastSeenAt: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
34
35
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hububb-models",
3
- "version": "1.0.101",
3
+ "version": "1.0.102",
4
4
  "description": "Models for Hububb application",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",