hububb-models 1.0.105 → 1.0.106
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/helpers/index.d.ts +1 -1
- package/dist/helpers/index.js +2 -2
- package/dist/schemas/apaleo/offer.d.ts +20 -20
- package/dist/schemas/apaleo/reservation.d.ts +46 -46
- package/dist/schemas/blog.d.ts +3 -3
- package/dist/schemas/channex/booking.d.ts +6 -6
- package/dist/schemas/channex/property.d.ts +16 -16
- package/dist/schemas/listing.d.ts +49 -49
- package/dist/schemas/reservation.d.ts +51 -51
- package/dist/schemas/thread.d.ts +53 -50
- package/dist/schemas/thread.js +1 -0
- package/dist/schemas/user.d.ts +3 -3
- package/package.json +1 -1
package/dist/schemas/thread.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
export declare const ChatMessageSchema: import("zod").ZodObject<{
|
2
2
|
id: import("zod").ZodString;
|
3
|
-
createdAt: import("zod").ZodType<
|
3
|
+
createdAt: import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>;
|
4
4
|
threadId: import("zod").ZodString;
|
5
5
|
authorId: import("zod").ZodString;
|
6
6
|
author: import("zod").ZodOptional<import("zod").ZodObject<{
|
@@ -92,7 +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").ZodType<
|
95
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>>;
|
96
96
|
roles: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
97
97
|
}, "strip", import("zod").ZodTypeAny, {
|
98
98
|
id: string;
|
@@ -123,7 +123,7 @@ export declare const ChatMessageSchema: import("zod").ZodObject<{
|
|
123
123
|
} | undefined;
|
124
124
|
klevioId?: string | undefined;
|
125
125
|
favorites?: string[] | undefined;
|
126
|
-
createdAt?:
|
126
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
127
127
|
roles?: Record<string, boolean> | undefined;
|
128
128
|
}, {
|
129
129
|
id: string;
|
@@ -154,24 +154,24 @@ export declare const ChatMessageSchema: import("zod").ZodObject<{
|
|
154
154
|
} | undefined;
|
155
155
|
klevioId?: string | undefined;
|
156
156
|
favorites?: string[] | undefined;
|
157
|
-
createdAt?:
|
157
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
158
158
|
roles?: Record<string, boolean> | undefined;
|
159
159
|
}>>;
|
160
160
|
contentType: import("zod").ZodString;
|
161
161
|
body: import("zod").ZodString;
|
162
|
-
seen: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodType<
|
163
|
-
lastSeen: import("zod").ZodOptional<import("zod").ZodType<
|
162
|
+
seen: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>>;
|
163
|
+
lastSeen: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>>;
|
164
164
|
source: import("zod").ZodOptional<import("zod").ZodString>;
|
165
165
|
externalMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
166
166
|
attachments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
167
167
|
}, "strip", import("zod").ZodTypeAny, {
|
168
168
|
id: string;
|
169
169
|
body: string;
|
170
|
-
createdAt:
|
170
|
+
createdAt: import("@firebase/firestore-types").Timestamp;
|
171
171
|
threadId: string;
|
172
172
|
authorId: string;
|
173
173
|
contentType: string;
|
174
|
-
seen: Record<string,
|
174
|
+
seen: Record<string, import("@firebase/firestore-types").Timestamp>;
|
175
175
|
source?: string | undefined;
|
176
176
|
author?: {
|
177
177
|
id: string;
|
@@ -202,20 +202,20 @@ export declare const ChatMessageSchema: import("zod").ZodObject<{
|
|
202
202
|
} | undefined;
|
203
203
|
klevioId?: string | undefined;
|
204
204
|
favorites?: string[] | undefined;
|
205
|
-
createdAt?:
|
205
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
206
206
|
roles?: Record<string, boolean> | undefined;
|
207
207
|
} | undefined;
|
208
|
-
lastSeen?:
|
208
|
+
lastSeen?: import("@firebase/firestore-types").Timestamp | undefined;
|
209
209
|
externalMessageId?: string | undefined;
|
210
210
|
attachments?: string[] | undefined;
|
211
211
|
}, {
|
212
212
|
id: string;
|
213
213
|
body: string;
|
214
|
-
createdAt:
|
214
|
+
createdAt: import("@firebase/firestore-types").Timestamp;
|
215
215
|
threadId: string;
|
216
216
|
authorId: string;
|
217
217
|
contentType: string;
|
218
|
-
seen: Record<string,
|
218
|
+
seen: Record<string, import("@firebase/firestore-types").Timestamp>;
|
219
219
|
source?: string | undefined;
|
220
220
|
author?: {
|
221
221
|
id: string;
|
@@ -246,20 +246,20 @@ export declare const ChatMessageSchema: import("zod").ZodObject<{
|
|
246
246
|
} | undefined;
|
247
247
|
klevioId?: string | undefined;
|
248
248
|
favorites?: string[] | undefined;
|
249
|
-
createdAt?:
|
249
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
250
250
|
roles?: Record<string, boolean> | undefined;
|
251
251
|
} | undefined;
|
252
|
-
lastSeen?:
|
252
|
+
lastSeen?: import("@firebase/firestore-types").Timestamp | undefined;
|
253
253
|
externalMessageId?: string | undefined;
|
254
254
|
attachments?: string[] | undefined;
|
255
255
|
}>;
|
256
256
|
export declare const ChatThreadSchema: import("zod").ZodObject<{
|
257
257
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
258
|
-
createdAt: import("zod").ZodType<
|
259
|
-
updatedAt: import("zod").ZodType<
|
258
|
+
createdAt: import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>;
|
259
|
+
updatedAt: import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>;
|
260
260
|
lastMessage: import("zod").ZodOptional<import("zod").ZodObject<{
|
261
261
|
id: import("zod").ZodString;
|
262
|
-
createdAt: import("zod").ZodType<
|
262
|
+
createdAt: import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>;
|
263
263
|
threadId: import("zod").ZodString;
|
264
264
|
authorId: import("zod").ZodString;
|
265
265
|
author: import("zod").ZodOptional<import("zod").ZodObject<{
|
@@ -351,7 +351,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
351
351
|
}>>;
|
352
352
|
klevioId: import("zod").ZodOptional<import("zod").ZodString>;
|
353
353
|
favorites: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
354
|
-
createdAt: import("zod").ZodOptional<import("zod").ZodType<
|
354
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>>;
|
355
355
|
roles: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
356
356
|
}, "strip", import("zod").ZodTypeAny, {
|
357
357
|
id: string;
|
@@ -382,7 +382,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
382
382
|
} | undefined;
|
383
383
|
klevioId?: string | undefined;
|
384
384
|
favorites?: string[] | undefined;
|
385
|
-
createdAt?:
|
385
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
386
386
|
roles?: Record<string, boolean> | undefined;
|
387
387
|
}, {
|
388
388
|
id: string;
|
@@ -413,24 +413,24 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
413
413
|
} | undefined;
|
414
414
|
klevioId?: string | undefined;
|
415
415
|
favorites?: string[] | undefined;
|
416
|
-
createdAt?:
|
416
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
417
417
|
roles?: Record<string, boolean> | undefined;
|
418
418
|
}>>;
|
419
419
|
contentType: import("zod").ZodString;
|
420
420
|
body: import("zod").ZodString;
|
421
|
-
seen: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodType<
|
422
|
-
lastSeen: import("zod").ZodOptional<import("zod").ZodType<
|
421
|
+
seen: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>>;
|
422
|
+
lastSeen: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>>;
|
423
423
|
source: import("zod").ZodOptional<import("zod").ZodString>;
|
424
424
|
externalMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
425
425
|
attachments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
426
426
|
}, "strip", import("zod").ZodTypeAny, {
|
427
427
|
id: string;
|
428
428
|
body: string;
|
429
|
-
createdAt:
|
429
|
+
createdAt: import("@firebase/firestore-types").Timestamp;
|
430
430
|
threadId: string;
|
431
431
|
authorId: string;
|
432
432
|
contentType: string;
|
433
|
-
seen: Record<string,
|
433
|
+
seen: Record<string, import("@firebase/firestore-types").Timestamp>;
|
434
434
|
source?: string | undefined;
|
435
435
|
author?: {
|
436
436
|
id: string;
|
@@ -461,20 +461,20 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
461
461
|
} | undefined;
|
462
462
|
klevioId?: string | undefined;
|
463
463
|
favorites?: string[] | undefined;
|
464
|
-
createdAt?:
|
464
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
465
465
|
roles?: Record<string, boolean> | undefined;
|
466
466
|
} | undefined;
|
467
|
-
lastSeen?:
|
467
|
+
lastSeen?: import("@firebase/firestore-types").Timestamp | undefined;
|
468
468
|
externalMessageId?: string | undefined;
|
469
469
|
attachments?: string[] | undefined;
|
470
470
|
}, {
|
471
471
|
id: string;
|
472
472
|
body: string;
|
473
|
-
createdAt:
|
473
|
+
createdAt: import("@firebase/firestore-types").Timestamp;
|
474
474
|
threadId: string;
|
475
475
|
authorId: string;
|
476
476
|
contentType: string;
|
477
|
-
seen: Record<string,
|
477
|
+
seen: Record<string, import("@firebase/firestore-types").Timestamp>;
|
478
478
|
source?: string | undefined;
|
479
479
|
author?: {
|
480
480
|
id: string;
|
@@ -505,10 +505,10 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
505
505
|
} | undefined;
|
506
506
|
klevioId?: string | undefined;
|
507
507
|
favorites?: string[] | undefined;
|
508
|
-
createdAt?:
|
508
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
509
509
|
roles?: Record<string, boolean> | undefined;
|
510
510
|
} | undefined;
|
511
|
-
lastSeen?:
|
511
|
+
lastSeen?: import("@firebase/firestore-types").Timestamp | undefined;
|
512
512
|
externalMessageId?: string | undefined;
|
513
513
|
attachments?: string[] | undefined;
|
514
514
|
}>>;
|
@@ -602,7 +602,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
602
602
|
}>>;
|
603
603
|
klevioId: import("zod").ZodOptional<import("zod").ZodString>;
|
604
604
|
favorites: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
605
|
-
createdAt: import("zod").ZodOptional<import("zod").ZodType<
|
605
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>>;
|
606
606
|
roles: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
607
607
|
}, "strip", import("zod").ZodTypeAny, {
|
608
608
|
id: string;
|
@@ -633,7 +633,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
633
633
|
} | undefined;
|
634
634
|
klevioId?: string | undefined;
|
635
635
|
favorites?: string[] | undefined;
|
636
|
-
createdAt?:
|
636
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
637
637
|
roles?: Record<string, boolean> | undefined;
|
638
638
|
}, {
|
639
639
|
id: string;
|
@@ -664,7 +664,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
664
664
|
} | undefined;
|
665
665
|
klevioId?: string | undefined;
|
666
666
|
favorites?: string[] | undefined;
|
667
|
-
createdAt?:
|
667
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
668
668
|
roles?: Record<string, boolean> | undefined;
|
669
669
|
}>, "many">>;
|
670
670
|
type: import("zod").ZodUnion<[import("zod").ZodLiteral<"ONE_TO_ONE">, import("zod").ZodLiteral<"GROUP">]>;
|
@@ -672,25 +672,27 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
672
672
|
externalThreadId: import("zod").ZodOptional<import("zod").ZodString>;
|
673
673
|
externalSource: import("zod").ZodOptional<import("zod").ZodString>;
|
674
674
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
675
|
-
seenBy: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodType<
|
675
|
+
seenBy: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>>;
|
676
676
|
isImportant: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
677
|
+
needsAttention: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>;
|
677
678
|
}, "strip", import("zod").ZodTypeAny, {
|
678
679
|
type: "ONE_TO_ONE" | "GROUP";
|
679
|
-
createdAt:
|
680
|
-
updatedAt:
|
680
|
+
createdAt: import("@firebase/firestore-types").Timestamp;
|
681
|
+
updatedAt: import("@firebase/firestore-types").Timestamp;
|
681
682
|
participantIds: string[];
|
682
|
-
seenBy: Record<string,
|
683
|
+
seenBy: Record<string, import("@firebase/firestore-types").Timestamp>;
|
684
|
+
needsAttention: Record<string, boolean>;
|
683
685
|
id?: string | undefined;
|
684
686
|
source?: string | undefined;
|
685
687
|
title?: string | undefined;
|
686
688
|
lastMessage?: {
|
687
689
|
id: string;
|
688
690
|
body: string;
|
689
|
-
createdAt:
|
691
|
+
createdAt: import("@firebase/firestore-types").Timestamp;
|
690
692
|
threadId: string;
|
691
693
|
authorId: string;
|
692
694
|
contentType: string;
|
693
|
-
seen: Record<string,
|
695
|
+
seen: Record<string, import("@firebase/firestore-types").Timestamp>;
|
694
696
|
source?: string | undefined;
|
695
697
|
author?: {
|
696
698
|
id: string;
|
@@ -721,10 +723,10 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
721
723
|
} | undefined;
|
722
724
|
klevioId?: string | undefined;
|
723
725
|
favorites?: string[] | undefined;
|
724
|
-
createdAt?:
|
726
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
725
727
|
roles?: Record<string, boolean> | undefined;
|
726
728
|
} | undefined;
|
727
|
-
lastSeen?:
|
729
|
+
lastSeen?: import("@firebase/firestore-types").Timestamp | undefined;
|
728
730
|
externalMessageId?: string | undefined;
|
729
731
|
attachments?: string[] | undefined;
|
730
732
|
} | undefined;
|
@@ -757,7 +759,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
757
759
|
} | undefined;
|
758
760
|
klevioId?: string | undefined;
|
759
761
|
favorites?: string[] | undefined;
|
760
|
-
createdAt?:
|
762
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
761
763
|
roles?: Record<string, boolean> | undefined;
|
762
764
|
}[] | undefined;
|
763
765
|
externalThreadId?: string | undefined;
|
@@ -765,21 +767,22 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
765
767
|
isImportant?: boolean | undefined;
|
766
768
|
}, {
|
767
769
|
type: "ONE_TO_ONE" | "GROUP";
|
768
|
-
createdAt:
|
769
|
-
updatedAt:
|
770
|
+
createdAt: import("@firebase/firestore-types").Timestamp;
|
771
|
+
updatedAt: import("@firebase/firestore-types").Timestamp;
|
770
772
|
participantIds: string[];
|
771
|
-
seenBy: Record<string,
|
773
|
+
seenBy: Record<string, import("@firebase/firestore-types").Timestamp>;
|
774
|
+
needsAttention: Record<string, boolean>;
|
772
775
|
id?: string | undefined;
|
773
776
|
source?: string | undefined;
|
774
777
|
title?: string | undefined;
|
775
778
|
lastMessage?: {
|
776
779
|
id: string;
|
777
780
|
body: string;
|
778
|
-
createdAt:
|
781
|
+
createdAt: import("@firebase/firestore-types").Timestamp;
|
779
782
|
threadId: string;
|
780
783
|
authorId: string;
|
781
784
|
contentType: string;
|
782
|
-
seen: Record<string,
|
785
|
+
seen: Record<string, import("@firebase/firestore-types").Timestamp>;
|
783
786
|
source?: string | undefined;
|
784
787
|
author?: {
|
785
788
|
id: string;
|
@@ -810,10 +813,10 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
810
813
|
} | undefined;
|
811
814
|
klevioId?: string | undefined;
|
812
815
|
favorites?: string[] | undefined;
|
813
|
-
createdAt?:
|
816
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
814
817
|
roles?: Record<string, boolean> | undefined;
|
815
818
|
} | undefined;
|
816
|
-
lastSeen?:
|
819
|
+
lastSeen?: import("@firebase/firestore-types").Timestamp | undefined;
|
817
820
|
externalMessageId?: string | undefined;
|
818
821
|
attachments?: string[] | undefined;
|
819
822
|
} | undefined;
|
@@ -846,7 +849,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
846
849
|
} | undefined;
|
847
850
|
klevioId?: string | undefined;
|
848
851
|
favorites?: string[] | undefined;
|
849
|
-
createdAt?:
|
852
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
850
853
|
roles?: Record<string, boolean> | undefined;
|
851
854
|
}[] | undefined;
|
852
855
|
externalThreadId?: string | undefined;
|
package/dist/schemas/thread.js
CHANGED
@@ -33,4 +33,5 @@ exports.ChatThreadSchema = (0, zod_1.object)({
|
|
33
33
|
title: (0, zod_1.optional)((0, zod_1.string)()),
|
34
34
|
seenBy: (0, zod_1.record)((0, zod_1.string)(), helpers_1.firestoreTimestampSchema),
|
35
35
|
isImportant: (0, zod_1.optional)((0, zod_1.boolean)()),
|
36
|
+
needsAttention: (0, zod_1.record)((0, zod_1.string)(), (0, zod_1.boolean)()),
|
36
37
|
});
|
package/dist/schemas/user.d.ts
CHANGED
@@ -87,7 +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").ZodType<
|
90
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>>;
|
91
91
|
roles: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
92
92
|
}, "strip", import("zod").ZodTypeAny, {
|
93
93
|
id: string;
|
@@ -118,7 +118,7 @@ export declare const UserSchema: import("zod").ZodObject<{
|
|
118
118
|
} | undefined;
|
119
119
|
klevioId?: string | undefined;
|
120
120
|
favorites?: string[] | undefined;
|
121
|
-
createdAt?:
|
121
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
122
122
|
roles?: Record<string, boolean> | undefined;
|
123
123
|
}, {
|
124
124
|
id: string;
|
@@ -149,6 +149,6 @@ export declare const UserSchema: import("zod").ZodObject<{
|
|
149
149
|
} | undefined;
|
150
150
|
klevioId?: string | undefined;
|
151
151
|
favorites?: string[] | undefined;
|
152
|
-
createdAt?:
|
152
|
+
createdAt?: import("@firebase/firestore-types").Timestamp | undefined;
|
153
153
|
roles?: Record<string, boolean> | undefined;
|
154
154
|
}>;
|