hububb-models 1.0.74 → 1.0.75
Sign up to get free protection for your applications and to get access to all the features.
package/dist/schemas/thread.d.ts
CHANGED
@@ -157,6 +157,7 @@ export declare const ChatMessageSchema: import("zod").ZodObject<{
|
|
157
157
|
lastSeen: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore").Timestamp>>;
|
158
158
|
source: import("zod").ZodOptional<import("zod").ZodString>;
|
159
159
|
externalMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
160
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
160
161
|
}, "strip", import("zod").ZodTypeAny, {
|
161
162
|
id: string;
|
162
163
|
body: string;
|
@@ -166,6 +167,7 @@ export declare const ChatMessageSchema: import("zod").ZodObject<{
|
|
166
167
|
contentType: string;
|
167
168
|
seen: Record<string, import("@firebase/firestore").Timestamp>;
|
168
169
|
source?: string | undefined;
|
170
|
+
title?: string | undefined;
|
169
171
|
author?: {
|
170
172
|
id: string;
|
171
173
|
email: string;
|
@@ -207,6 +209,7 @@ export declare const ChatMessageSchema: import("zod").ZodObject<{
|
|
207
209
|
contentType: string;
|
208
210
|
seen: Record<string, import("@firebase/firestore").Timestamp>;
|
209
211
|
source?: string | undefined;
|
212
|
+
title?: string | undefined;
|
210
213
|
author?: {
|
211
214
|
id: string;
|
212
215
|
email: string;
|
@@ -403,6 +406,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
403
406
|
lastSeen: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore").Timestamp>>;
|
404
407
|
source: import("zod").ZodOptional<import("zod").ZodString>;
|
405
408
|
externalMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
409
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
406
410
|
}, "strip", import("zod").ZodTypeAny, {
|
407
411
|
id: string;
|
408
412
|
body: string;
|
@@ -412,6 +416,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
412
416
|
contentType: string;
|
413
417
|
seen: Record<string, import("@firebase/firestore").Timestamp>;
|
414
418
|
source?: string | undefined;
|
419
|
+
title?: string | undefined;
|
415
420
|
author?: {
|
416
421
|
id: string;
|
417
422
|
email: string;
|
@@ -453,6 +458,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
453
458
|
contentType: string;
|
454
459
|
seen: Record<string, import("@firebase/firestore").Timestamp>;
|
455
460
|
source?: string | undefined;
|
461
|
+
title?: string | undefined;
|
456
462
|
author?: {
|
457
463
|
id: string;
|
458
464
|
email: string;
|
@@ -655,6 +661,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
655
661
|
contentType: string;
|
656
662
|
seen: Record<string, import("@firebase/firestore").Timestamp>;
|
657
663
|
source?: string | undefined;
|
664
|
+
title?: string | undefined;
|
658
665
|
author?: {
|
659
666
|
id: string;
|
660
667
|
email: string;
|
@@ -736,6 +743,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
736
743
|
contentType: string;
|
737
744
|
seen: Record<string, import("@firebase/firestore").Timestamp>;
|
738
745
|
source?: string | undefined;
|
746
|
+
title?: string | undefined;
|
739
747
|
author?: {
|
740
748
|
id: string;
|
741
749
|
email: string;
|
package/dist/schemas/thread.js
CHANGED
@@ -17,6 +17,7 @@ exports.ChatMessageSchema = (0, zod_1.object)({
|
|
17
17
|
lastSeen: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
|
18
18
|
source: (0, zod_1.optional)((0, zod_1.string)()),
|
19
19
|
externalMessageId: (0, zod_1.optional)((0, zod_1.string)()),
|
20
|
+
title: (0, zod_1.optional)((0, zod_1.string)()),
|
20
21
|
});
|
21
22
|
exports.ChatThreadSchema = (0, zod_1.object)({
|
22
23
|
id: (0, zod_1.optional)((0, zod_1.string)()),
|