hububb-models 1.0.76 → 1.0.77

Sign up to get free protection for your applications and to get access to all the features.
@@ -157,7 +157,6 @@ export declare const ChatMessageSchema: import("zod").ZodObject<{
157
157
  lastSeen: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore").Timestamp>>;
158
158
  source: import("zod").ZodOptional<import("zod").ZodString>;
159
159
  externalMessageId: import("zod").ZodOptional<import("zod").ZodString>;
160
- title: import("zod").ZodOptional<import("zod").ZodString>;
161
160
  }, "strip", import("zod").ZodTypeAny, {
162
161
  id: string;
163
162
  body: string;
@@ -167,7 +166,6 @@ export declare const ChatMessageSchema: import("zod").ZodObject<{
167
166
  contentType: string;
168
167
  seen: Record<string, import("@firebase/firestore").Timestamp>;
169
168
  source?: string | undefined;
170
- title?: string | undefined;
171
169
  author?: {
172
170
  id: string;
173
171
  email: string;
@@ -209,7 +207,6 @@ export declare const ChatMessageSchema: import("zod").ZodObject<{
209
207
  contentType: string;
210
208
  seen: Record<string, import("@firebase/firestore").Timestamp>;
211
209
  source?: string | undefined;
212
- title?: string | undefined;
213
210
  author?: {
214
211
  id: string;
215
212
  email: string;
@@ -406,7 +403,6 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
406
403
  lastSeen: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore").Timestamp>>;
407
404
  source: import("zod").ZodOptional<import("zod").ZodString>;
408
405
  externalMessageId: import("zod").ZodOptional<import("zod").ZodString>;
409
- title: import("zod").ZodOptional<import("zod").ZodString>;
410
406
  }, "strip", import("zod").ZodTypeAny, {
411
407
  id: string;
412
408
  body: string;
@@ -416,7 +412,6 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
416
412
  contentType: string;
417
413
  seen: Record<string, import("@firebase/firestore").Timestamp>;
418
414
  source?: string | undefined;
419
- title?: string | undefined;
420
415
  author?: {
421
416
  id: string;
422
417
  email: string;
@@ -458,7 +453,6 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
458
453
  contentType: string;
459
454
  seen: Record<string, import("@firebase/firestore").Timestamp>;
460
455
  source?: string | undefined;
461
- title?: string | undefined;
462
456
  author?: {
463
457
  id: string;
464
458
  email: string;
@@ -663,7 +657,6 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
663
657
  contentType: string;
664
658
  seen: Record<string, import("@firebase/firestore").Timestamp>;
665
659
  source?: string | undefined;
666
- title?: string | undefined;
667
660
  author?: {
668
661
  id: string;
669
662
  email: string;
@@ -746,7 +739,6 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
746
739
  contentType: string;
747
740
  seen: Record<string, import("@firebase/firestore").Timestamp>;
748
741
  source?: string | undefined;
749
- title?: string | undefined;
750
742
  author?: {
751
743
  id: string;
752
744
  email: string;
@@ -17,7 +17,6 @@ exports.ChatMessageSchema = (0, zod_1.object)({
17
17
  lastSeen: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
18
18
  source: (0, zod_1.optional)((0, zod_1.string)()),
19
19
  externalMessageId: (0, zod_1.optional)((0, zod_1.string)()),
20
- title: (0, zod_1.optional)((0, zod_1.string)()),
21
20
  });
22
21
  exports.ChatThreadSchema = (0, zod_1.object)({
23
22
  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.0.76",
3
+ "version": "1.0.77",
4
4
  "description": "Models for Hububb application",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",