hububb-models 1.0.75 → 1.0.76
Sign up to get free protection for your applications and to get access to all the features.
package/dist/schemas/thread.d.ts
CHANGED
@@ -645,6 +645,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
645
645
|
source: import("zod").ZodOptional<import("zod").ZodString>;
|
646
646
|
externalThreadId: import("zod").ZodOptional<import("zod").ZodString>;
|
647
647
|
externalSource: import("zod").ZodOptional<import("zod").ZodString>;
|
648
|
+
title: import("zod").ZodOptional<import("zod").ZodString>;
|
648
649
|
}, "strip", import("zod").ZodTypeAny, {
|
649
650
|
type: "ONE_TO_ONE" | "GROUP";
|
650
651
|
createdAt: import("@firebase/firestore").Timestamp;
|
@@ -652,6 +653,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
652
653
|
participantIds: string[];
|
653
654
|
id?: string | undefined;
|
654
655
|
source?: string | undefined;
|
656
|
+
title?: string | undefined;
|
655
657
|
lastMessage?: {
|
656
658
|
id: string;
|
657
659
|
body: string;
|
@@ -734,6 +736,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
734
736
|
participantIds: string[];
|
735
737
|
id?: string | undefined;
|
736
738
|
source?: string | undefined;
|
739
|
+
title?: string | undefined;
|
737
740
|
lastMessage?: {
|
738
741
|
id: string;
|
739
742
|
body: string;
|
package/dist/schemas/thread.js
CHANGED
@@ -30,4 +30,5 @@ exports.ChatThreadSchema = (0, zod_1.object)({
|
|
30
30
|
source: (0, zod_1.optional)((0, zod_1.string)()),
|
31
31
|
externalThreadId: (0, zod_1.optional)((0, zod_1.string)()),
|
32
32
|
externalSource: (0, zod_1.optional)((0, zod_1.string)()),
|
33
|
+
title: (0, zod_1.optional)((0, zod_1.string)()),
|
33
34
|
});
|