hububb-models 1.1.14 → 1.1.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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>;
@@ -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)()),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hububb-models",
3
- "version": "1.1.14",
3
+ "version": "1.1.15",
4
4
  "description": "Models for Hububb application",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",