hububb-models 1.0.75 → 1.0.77

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.
@@ -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;
@@ -645,6 +639,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
645
639
  source: import("zod").ZodOptional<import("zod").ZodString>;
646
640
  externalThreadId: import("zod").ZodOptional<import("zod").ZodString>;
647
641
  externalSource: import("zod").ZodOptional<import("zod").ZodString>;
642
+ title: import("zod").ZodOptional<import("zod").ZodString>;
648
643
  }, "strip", import("zod").ZodTypeAny, {
649
644
  type: "ONE_TO_ONE" | "GROUP";
650
645
  createdAt: import("@firebase/firestore").Timestamp;
@@ -652,6 +647,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
652
647
  participantIds: string[];
653
648
  id?: string | undefined;
654
649
  source?: string | undefined;
650
+ title?: string | undefined;
655
651
  lastMessage?: {
656
652
  id: string;
657
653
  body: string;
@@ -661,7 +657,6 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
661
657
  contentType: string;
662
658
  seen: Record<string, import("@firebase/firestore").Timestamp>;
663
659
  source?: string | undefined;
664
- title?: string | undefined;
665
660
  author?: {
666
661
  id: string;
667
662
  email: string;
@@ -734,6 +729,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
734
729
  participantIds: string[];
735
730
  id?: string | undefined;
736
731
  source?: string | undefined;
732
+ title?: string | undefined;
737
733
  lastMessage?: {
738
734
  id: string;
739
735
  body: string;
@@ -743,7 +739,6 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
743
739
  contentType: string;
744
740
  seen: Record<string, import("@firebase/firestore").Timestamp>;
745
741
  source?: string | undefined;
746
- title?: string | undefined;
747
742
  author?: {
748
743
  id: string;
749
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)()),
@@ -30,4 +29,5 @@ exports.ChatThreadSchema = (0, zod_1.object)({
30
29
  source: (0, zod_1.optional)((0, zod_1.string)()),
31
30
  externalThreadId: (0, zod_1.optional)((0, zod_1.string)()),
32
31
  externalSource: (0, zod_1.optional)((0, zod_1.string)()),
32
+ title: (0, zod_1.optional)((0, zod_1.string)()),
33
33
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hububb-models",
3
- "version": "1.0.75",
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",