hububb-models 1.0.91 → 1.0.92
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.
- package/dist/schemas/blog.d.ts +2 -2
- package/dist/schemas/thread.d.ts +17 -0
- package/dist/schemas/user.d.ts +3 -0
- package/dist/schemas/user.js +1 -0
- package/package.json +1 -1
package/dist/schemas/blog.d.ts
CHANGED
@@ -56,9 +56,9 @@ export declare const BlogSchema: import("zod").ZodObject<{
|
|
56
56
|
}, "strip", import("zod").ZodTypeAny, {
|
57
57
|
id: string;
|
58
58
|
title: string;
|
59
|
+
createdAt: FirebaseFirestore.Timestamp;
|
59
60
|
metaTitle: string;
|
60
61
|
metaDescription: string;
|
61
|
-
createdAt: FirebaseFirestore.Timestamp;
|
62
62
|
subtitle: string;
|
63
63
|
contentSections: {
|
64
64
|
content: string;
|
@@ -79,9 +79,9 @@ export declare const BlogSchema: import("zod").ZodObject<{
|
|
79
79
|
}, {
|
80
80
|
id: string;
|
81
81
|
title: string;
|
82
|
+
createdAt: FirebaseFirestore.Timestamp;
|
82
83
|
metaTitle: string;
|
83
84
|
metaDescription: string;
|
84
|
-
createdAt: FirebaseFirestore.Timestamp;
|
85
85
|
subtitle: string;
|
86
86
|
contentSections: {
|
87
87
|
content: string;
|
package/dist/schemas/thread.d.ts
CHANGED
@@ -92,6 +92,7 @@ export declare const ChatMessageSchema: import("zod").ZodObject<{
|
|
92
92
|
}>>;
|
93
93
|
klevioId: import("zod").ZodOptional<import("zod").ZodString>;
|
94
94
|
favorites: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
95
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
95
96
|
}, "strip", import("zod").ZodTypeAny, {
|
96
97
|
id: string;
|
97
98
|
email: string;
|
@@ -121,6 +122,7 @@ export declare const ChatMessageSchema: import("zod").ZodObject<{
|
|
121
122
|
} | undefined;
|
122
123
|
klevioId?: string | undefined;
|
123
124
|
favorites?: string[] | undefined;
|
125
|
+
createdAt?: string | undefined;
|
124
126
|
}, {
|
125
127
|
id: string;
|
126
128
|
email: string;
|
@@ -150,6 +152,7 @@ export declare const ChatMessageSchema: import("zod").ZodObject<{
|
|
150
152
|
} | undefined;
|
151
153
|
klevioId?: string | undefined;
|
152
154
|
favorites?: string[] | undefined;
|
155
|
+
createdAt?: string | undefined;
|
153
156
|
}>>;
|
154
157
|
contentType: import("zod").ZodString;
|
155
158
|
body: import("zod").ZodString;
|
@@ -196,6 +199,7 @@ export declare const ChatMessageSchema: import("zod").ZodObject<{
|
|
196
199
|
} | undefined;
|
197
200
|
klevioId?: string | undefined;
|
198
201
|
favorites?: string[] | undefined;
|
202
|
+
createdAt?: string | undefined;
|
199
203
|
} | undefined;
|
200
204
|
lastSeen?: FirebaseFirestore.Timestamp | undefined;
|
201
205
|
externalMessageId?: string | undefined;
|
@@ -238,6 +242,7 @@ export declare const ChatMessageSchema: import("zod").ZodObject<{
|
|
238
242
|
} | undefined;
|
239
243
|
klevioId?: string | undefined;
|
240
244
|
favorites?: string[] | undefined;
|
245
|
+
createdAt?: string | undefined;
|
241
246
|
} | undefined;
|
242
247
|
lastSeen?: FirebaseFirestore.Timestamp | undefined;
|
243
248
|
externalMessageId?: string | undefined;
|
@@ -341,6 +346,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
341
346
|
}>>;
|
342
347
|
klevioId: import("zod").ZodOptional<import("zod").ZodString>;
|
343
348
|
favorites: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
349
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
344
350
|
}, "strip", import("zod").ZodTypeAny, {
|
345
351
|
id: string;
|
346
352
|
email: string;
|
@@ -370,6 +376,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
370
376
|
} | undefined;
|
371
377
|
klevioId?: string | undefined;
|
372
378
|
favorites?: string[] | undefined;
|
379
|
+
createdAt?: string | undefined;
|
373
380
|
}, {
|
374
381
|
id: string;
|
375
382
|
email: string;
|
@@ -399,6 +406,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
399
406
|
} | undefined;
|
400
407
|
klevioId?: string | undefined;
|
401
408
|
favorites?: string[] | undefined;
|
409
|
+
createdAt?: string | undefined;
|
402
410
|
}>>;
|
403
411
|
contentType: import("zod").ZodString;
|
404
412
|
body: import("zod").ZodString;
|
@@ -445,6 +453,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
445
453
|
} | undefined;
|
446
454
|
klevioId?: string | undefined;
|
447
455
|
favorites?: string[] | undefined;
|
456
|
+
createdAt?: string | undefined;
|
448
457
|
} | undefined;
|
449
458
|
lastSeen?: FirebaseFirestore.Timestamp | undefined;
|
450
459
|
externalMessageId?: string | undefined;
|
@@ -487,6 +496,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
487
496
|
} | undefined;
|
488
497
|
klevioId?: string | undefined;
|
489
498
|
favorites?: string[] | undefined;
|
499
|
+
createdAt?: string | undefined;
|
490
500
|
} | undefined;
|
491
501
|
lastSeen?: FirebaseFirestore.Timestamp | undefined;
|
492
502
|
externalMessageId?: string | undefined;
|
@@ -582,6 +592,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
582
592
|
}>>;
|
583
593
|
klevioId: import("zod").ZodOptional<import("zod").ZodString>;
|
584
594
|
favorites: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
595
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
585
596
|
}, "strip", import("zod").ZodTypeAny, {
|
586
597
|
id: string;
|
587
598
|
email: string;
|
@@ -611,6 +622,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
611
622
|
} | undefined;
|
612
623
|
klevioId?: string | undefined;
|
613
624
|
favorites?: string[] | undefined;
|
625
|
+
createdAt?: string | undefined;
|
614
626
|
}, {
|
615
627
|
id: string;
|
616
628
|
email: string;
|
@@ -640,6 +652,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
640
652
|
} | undefined;
|
641
653
|
klevioId?: string | undefined;
|
642
654
|
favorites?: string[] | undefined;
|
655
|
+
createdAt?: string | undefined;
|
643
656
|
}>, "many">>;
|
644
657
|
type: import("zod").ZodUnion<[import("zod").ZodLiteral<"ONE_TO_ONE">, import("zod").ZodLiteral<"GROUP">]>;
|
645
658
|
source: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -692,6 +705,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
692
705
|
} | undefined;
|
693
706
|
klevioId?: string | undefined;
|
694
707
|
favorites?: string[] | undefined;
|
708
|
+
createdAt?: string | undefined;
|
695
709
|
} | undefined;
|
696
710
|
lastSeen?: FirebaseFirestore.Timestamp | undefined;
|
697
711
|
externalMessageId?: string | undefined;
|
@@ -726,6 +740,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
726
740
|
} | undefined;
|
727
741
|
klevioId?: string | undefined;
|
728
742
|
favorites?: string[] | undefined;
|
743
|
+
createdAt?: string | undefined;
|
729
744
|
}[] | undefined;
|
730
745
|
externalThreadId?: string | undefined;
|
731
746
|
externalSource?: string | undefined;
|
@@ -775,6 +790,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
775
790
|
} | undefined;
|
776
791
|
klevioId?: string | undefined;
|
777
792
|
favorites?: string[] | undefined;
|
793
|
+
createdAt?: string | undefined;
|
778
794
|
} | undefined;
|
779
795
|
lastSeen?: FirebaseFirestore.Timestamp | undefined;
|
780
796
|
externalMessageId?: string | undefined;
|
@@ -809,6 +825,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
809
825
|
} | undefined;
|
810
826
|
klevioId?: string | undefined;
|
811
827
|
favorites?: string[] | undefined;
|
828
|
+
createdAt?: string | undefined;
|
812
829
|
}[] | undefined;
|
813
830
|
externalThreadId?: string | undefined;
|
814
831
|
externalSource?: string | undefined;
|
package/dist/schemas/user.d.ts
CHANGED
@@ -87,6 +87,7 @@ export declare const UserSchema: import("zod").ZodObject<{
|
|
87
87
|
}>>;
|
88
88
|
klevioId: import("zod").ZodOptional<import("zod").ZodString>;
|
89
89
|
favorites: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
90
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
90
91
|
}, "strip", import("zod").ZodTypeAny, {
|
91
92
|
id: string;
|
92
93
|
email: string;
|
@@ -116,6 +117,7 @@ export declare const UserSchema: import("zod").ZodObject<{
|
|
116
117
|
} | undefined;
|
117
118
|
klevioId?: string | undefined;
|
118
119
|
favorites?: string[] | undefined;
|
120
|
+
createdAt?: string | undefined;
|
119
121
|
}, {
|
120
122
|
id: string;
|
121
123
|
email: string;
|
@@ -145,4 +147,5 @@ export declare const UserSchema: import("zod").ZodObject<{
|
|
145
147
|
} | undefined;
|
146
148
|
klevioId?: string | undefined;
|
147
149
|
favorites?: string[] | undefined;
|
150
|
+
createdAt?: string | undefined;
|
148
151
|
}>;
|
package/dist/schemas/user.js
CHANGED
@@ -39,4 +39,5 @@ exports.UserSchema = (0, zod_1.object)({
|
|
39
39
|
kyc: (0, zod_1.optional)(KycSchema),
|
40
40
|
klevioId: (0, zod_1.optional)((0, zod_1.string)()),
|
41
41
|
favorites: (0, zod_1.optional)((0, zod_1.array)((0, zod_1.string)())),
|
42
|
+
createdAt: (0, zod_1.optional)((0, zod_1.string)()),
|
42
43
|
});
|