hububb-saas-shared 1.0.20 → 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,6 +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").ZodNumber>;
239
240
  }, "strip", import("zod").ZodTypeAny, {
240
241
  type: "ONE_TO_ONE" | "GROUP";
241
242
  createdAt: import("@firebase/firestore-types").Timestamp;
@@ -247,6 +248,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
247
248
  id?: string | undefined;
248
249
  source?: string | undefined;
249
250
  title?: string | undefined;
251
+ propertyId?: number | undefined;
250
252
  lastMessage?: {
251
253
  id: string;
252
254
  body: string;
@@ -298,6 +300,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
298
300
  id?: string | undefined;
299
301
  source?: string | undefined;
300
302
  title?: string | undefined;
303
+ propertyId?: number | undefined;
301
304
  lastMessage?: {
302
305
  id: string;
303
306
  body: string;
@@ -35,4 +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.number)()),
38
39
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "hububb-saas-shared",
4
- "version": "1.0.20",
4
+ "version": "1.0.22",
5
5
  "description": "This is a shared package for the hububb saas project",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",