hububb-saas-shared 1.0.21 → 1.0.22
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.
|
@@ -236,7 +236,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
|
236
236
|
isImportant: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
237
237
|
needsAttention: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
238
238
|
needsAttentionMap: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>;
|
|
239
|
-
propertyId: import("zod").ZodOptional<import("zod").
|
|
239
|
+
propertyId: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
240
240
|
}, "strip", import("zod").ZodTypeAny, {
|
|
241
241
|
type: "ONE_TO_ONE" | "GROUP";
|
|
242
242
|
createdAt: import("@firebase/firestore-types").Timestamp;
|
|
@@ -248,7 +248,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
|
248
248
|
id?: string | undefined;
|
|
249
249
|
source?: string | undefined;
|
|
250
250
|
title?: string | undefined;
|
|
251
|
-
propertyId?:
|
|
251
|
+
propertyId?: number | undefined;
|
|
252
252
|
lastMessage?: {
|
|
253
253
|
id: string;
|
|
254
254
|
body: string;
|
|
@@ -300,7 +300,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
|
300
300
|
id?: string | undefined;
|
|
301
301
|
source?: string | undefined;
|
|
302
302
|
title?: string | undefined;
|
|
303
|
-
propertyId?:
|
|
303
|
+
propertyId?: number | undefined;
|
|
304
304
|
lastMessage?: {
|
|
305
305
|
id: string;
|
|
306
306
|
body: string;
|
|
@@ -35,5 +35,5 @@ exports.ChatThreadSchema = (0, zod_1.object)({
|
|
|
35
35
|
isImportant: (0, zod_1.optional)((0, zod_1.boolean)()),
|
|
36
36
|
needsAttention: (0, zod_1.array)((0, zod_1.string)()),
|
|
37
37
|
needsAttentionMap: (0, zod_1.record)((0, zod_1.string)(), (0, zod_1.boolean)()),
|
|
38
|
-
propertyId: (0, zod_1.optional)((0, zod_1.
|
|
38
|
+
propertyId: (0, zod_1.optional)((0, zod_1.number)()),
|
|
39
39
|
});
|