hububb-models 1.1.14 → 1.1.15
Sign up to get free protection for your applications and to get access to all the features.
package/dist/schemas/thread.d.ts
CHANGED
@@ -798,6 +798,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
798
798
|
statusDescription?: string | undefined;
|
799
799
|
integrationSource?: string | undefined;
|
800
800
|
}>>;
|
801
|
+
isInquiryThread: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
801
802
|
}, "strip", import("zod").ZodTypeAny, {
|
802
803
|
type: "ONE_TO_ONE" | "GROUP";
|
803
804
|
createdAt: import("@firebase/firestore-types").Timestamp;
|
@@ -906,6 +907,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
906
907
|
externalSource?: string | undefined;
|
907
908
|
isImportant?: boolean | undefined;
|
908
909
|
tags?: string[] | undefined;
|
910
|
+
isInquiryThread?: boolean | undefined;
|
909
911
|
}, {
|
910
912
|
type: "ONE_TO_ONE" | "GROUP";
|
911
913
|
createdAt: import("@firebase/firestore-types").Timestamp;
|
@@ -1014,6 +1016,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
1014
1016
|
externalSource?: string | undefined;
|
1015
1017
|
isImportant?: boolean | undefined;
|
1016
1018
|
tags?: string[] | undefined;
|
1019
|
+
isInquiryThread?: boolean | undefined;
|
1017
1020
|
}>;
|
1018
1021
|
export declare const MessageAutomationTemplateSchema: import("zod").ZodObject<{
|
1019
1022
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
package/dist/schemas/thread.js
CHANGED
@@ -52,6 +52,7 @@ exports.ChatThreadSchema = (0, zod_1.object)({
|
|
52
52
|
integrationSource: true,
|
53
53
|
statusDescription: true,
|
54
54
|
})),
|
55
|
+
isInquiryThread: (0, zod_1.optional)((0, zod_1.boolean)()),
|
55
56
|
});
|
56
57
|
exports.MessageAutomationTemplateSchema = (0, zod_1.object)({
|
57
58
|
id: (0, zod_1.optional)((0, zod_1.string)()),
|