@kl1/contracts 1.1.4 → 1.1.5-uat
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/index.js +951 -888
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +950 -888
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +2985 -2123
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +24 -8
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +76 -7
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +5473 -3651
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +73 -7
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +73 -7
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/account-contract.d.ts +360 -137
- package/dist/src/mail/account-contract.d.ts.map +1 -1
- package/dist/src/mail/index.d.ts +10 -0
- package/dist/src/mail/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +1849 -1163
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server-contract.d.ts +477 -18
- package/dist/src/mail/mail-server-contract.d.ts.map +1 -1
- package/dist/src/mail/message-contract.d.ts +54 -54
- package/dist/src/mail/room-contract.d.ts +960 -954
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/account-validation.schema.d.ts +140 -140
- package/dist/src/mail/schemas/account-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/account.schema.d.ts +32 -32
- package/dist/src/mail/schemas/message.schema.d.ts +42 -42
- package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +328 -322
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +683 -259
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +83 -7
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +73 -7
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -5,20 +5,23 @@ export declare const RoomContractsValidationSchema: {
|
|
5
5
|
page: z.ZodDefault<z.ZodNumber>;
|
6
6
|
pageSize: z.ZodDefault<z.ZodNumber>;
|
7
7
|
keyword: z.ZodOptional<z.ZodString>;
|
8
|
-
|
9
|
-
|
8
|
+
contactLabels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
9
|
+
level1: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"open">, z.ZodLiteral<"close">, z.ZodLiteral<"inbox">, z.ZodLiteral<"sent">, z.ZodLiteral<"scheduled">, z.ZodLiteral<"starred">]>>;
|
10
|
+
level2: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"all">, z.ZodLiteral<"unassign">, z.ZodLiteral<"mine">, z.ZodLiteral<"other">]>>;
|
10
11
|
}, "strip", z.ZodTypeAny, {
|
11
12
|
page: number;
|
12
13
|
pageSize: number;
|
13
14
|
keyword?: string | undefined;
|
14
|
-
|
15
|
-
|
15
|
+
contactLabels?: string[] | undefined;
|
16
|
+
level1?: "open" | "close" | "inbox" | "sent" | "scheduled" | "starred" | undefined;
|
17
|
+
level2?: "all" | "other" | "unassign" | "mine" | undefined;
|
16
18
|
}, {
|
17
19
|
page?: number | undefined;
|
18
20
|
pageSize?: number | undefined;
|
19
21
|
keyword?: string | undefined;
|
20
|
-
|
21
|
-
|
22
|
+
contactLabels?: string[] | undefined;
|
23
|
+
level1?: "open" | "close" | "inbox" | "sent" | "scheduled" | "starred" | undefined;
|
24
|
+
level2?: "all" | "other" | "unassign" | "mine" | undefined;
|
22
25
|
}>;
|
23
26
|
output: z.ZodObject<{
|
24
27
|
data: z.ZodArray<z.ZodObject<{
|
@@ -244,34 +247,34 @@ export declare const RoomContractsValidationSchema: {
|
|
244
247
|
createdAt: z.ZodDate;
|
245
248
|
updatedAt: z.ZodDate;
|
246
249
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
250
|
+
bucketName: z.ZodString;
|
251
|
+
fileName: z.ZodString;
|
252
|
+
fileKey: z.ZodString;
|
253
|
+
fileSize: z.ZodNumber;
|
254
|
+
fileUrl: z.ZodString;
|
255
|
+
extensionName: z.ZodString;
|
253
256
|
}, "strip", z.ZodTypeAny, {
|
254
257
|
id: string;
|
255
258
|
createdAt: Date;
|
256
259
|
updatedAt: Date;
|
257
260
|
deletedAt: Date | null;
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
261
|
+
extensionName: string;
|
262
|
+
fileName: string;
|
263
|
+
fileKey: string;
|
264
|
+
bucketName: string;
|
265
|
+
fileSize: number;
|
266
|
+
fileUrl: string;
|
264
267
|
}, {
|
265
268
|
id: string;
|
266
269
|
createdAt: Date;
|
267
270
|
updatedAt: Date;
|
268
271
|
deletedAt: Date | null;
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
272
|
+
extensionName: string;
|
273
|
+
fileName: string;
|
274
|
+
fileKey: string;
|
275
|
+
bucketName: string;
|
276
|
+
fileSize: number;
|
277
|
+
fileUrl: string;
|
275
278
|
}>;
|
276
279
|
}, "strip", z.ZodTypeAny, {
|
277
280
|
id: string;
|
@@ -286,12 +289,12 @@ export declare const RoomContractsValidationSchema: {
|
|
286
289
|
createdAt: Date;
|
287
290
|
updatedAt: Date;
|
288
291
|
deletedAt: Date | null;
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
292
|
+
extensionName: string;
|
293
|
+
fileName: string;
|
294
|
+
fileKey: string;
|
295
|
+
bucketName: string;
|
296
|
+
fileSize: number;
|
297
|
+
fileUrl: string;
|
295
298
|
};
|
296
299
|
roomId: string;
|
297
300
|
messageId: string;
|
@@ -309,12 +312,12 @@ export declare const RoomContractsValidationSchema: {
|
|
309
312
|
createdAt: Date;
|
310
313
|
updatedAt: Date;
|
311
314
|
deletedAt: Date | null;
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
315
|
+
extensionName: string;
|
316
|
+
fileName: string;
|
317
|
+
fileKey: string;
|
318
|
+
bucketName: string;
|
319
|
+
fileSize: number;
|
320
|
+
fileUrl: string;
|
318
321
|
};
|
319
322
|
roomId: string;
|
320
323
|
messageId: string;
|
@@ -383,12 +386,12 @@ export declare const RoomContractsValidationSchema: {
|
|
383
386
|
createdAt: Date;
|
384
387
|
updatedAt: Date;
|
385
388
|
deletedAt: Date | null;
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
389
|
+
extensionName: string;
|
390
|
+
fileName: string;
|
391
|
+
fileKey: string;
|
392
|
+
bucketName: string;
|
393
|
+
fileSize: number;
|
394
|
+
fileUrl: string;
|
392
395
|
};
|
393
396
|
roomId: string;
|
394
397
|
messageId: string;
|
@@ -457,12 +460,12 @@ export declare const RoomContractsValidationSchema: {
|
|
457
460
|
createdAt: Date;
|
458
461
|
updatedAt: Date;
|
459
462
|
deletedAt: Date | null;
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
463
|
+
extensionName: string;
|
464
|
+
fileName: string;
|
465
|
+
fileKey: string;
|
466
|
+
bucketName: string;
|
467
|
+
fileSize: number;
|
468
|
+
fileUrl: string;
|
466
469
|
};
|
467
470
|
roomId: string;
|
468
471
|
messageId: string;
|
@@ -591,34 +594,34 @@ export declare const RoomContractsValidationSchema: {
|
|
591
594
|
createdAt: z.ZodDate;
|
592
595
|
updatedAt: z.ZodDate;
|
593
596
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
597
|
+
bucketName: z.ZodString;
|
598
|
+
fileName: z.ZodString;
|
599
|
+
fileKey: z.ZodString;
|
600
|
+
fileSize: z.ZodNumber;
|
601
|
+
fileUrl: z.ZodString;
|
602
|
+
extensionName: z.ZodString;
|
600
603
|
}, "strip", z.ZodTypeAny, {
|
601
604
|
id: string;
|
602
605
|
createdAt: Date;
|
603
606
|
updatedAt: Date;
|
604
607
|
deletedAt: Date | null;
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
608
|
+
extensionName: string;
|
609
|
+
fileName: string;
|
610
|
+
fileKey: string;
|
611
|
+
bucketName: string;
|
612
|
+
fileSize: number;
|
613
|
+
fileUrl: string;
|
611
614
|
}, {
|
612
615
|
id: string;
|
613
616
|
createdAt: Date;
|
614
617
|
updatedAt: Date;
|
615
618
|
deletedAt: Date | null;
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
619
|
+
extensionName: string;
|
620
|
+
fileName: string;
|
621
|
+
fileKey: string;
|
622
|
+
bucketName: string;
|
623
|
+
fileSize: number;
|
624
|
+
fileUrl: string;
|
622
625
|
}>;
|
623
626
|
}, "strip", z.ZodTypeAny, {
|
624
627
|
id: string;
|
@@ -633,12 +636,12 @@ export declare const RoomContractsValidationSchema: {
|
|
633
636
|
createdAt: Date;
|
634
637
|
updatedAt: Date;
|
635
638
|
deletedAt: Date | null;
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
639
|
+
extensionName: string;
|
640
|
+
fileName: string;
|
641
|
+
fileKey: string;
|
642
|
+
bucketName: string;
|
643
|
+
fileSize: number;
|
644
|
+
fileUrl: string;
|
642
645
|
};
|
643
646
|
roomId: string;
|
644
647
|
messageId: string;
|
@@ -656,12 +659,12 @@ export declare const RoomContractsValidationSchema: {
|
|
656
659
|
createdAt: Date;
|
657
660
|
updatedAt: Date;
|
658
661
|
deletedAt: Date | null;
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
662
|
+
extensionName: string;
|
663
|
+
fileName: string;
|
664
|
+
fileKey: string;
|
665
|
+
bucketName: string;
|
666
|
+
fileSize: number;
|
667
|
+
fileUrl: string;
|
665
668
|
};
|
666
669
|
roomId: string;
|
667
670
|
messageId: string;
|
@@ -730,12 +733,12 @@ export declare const RoomContractsValidationSchema: {
|
|
730
733
|
createdAt: Date;
|
731
734
|
updatedAt: Date;
|
732
735
|
deletedAt: Date | null;
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
736
|
+
extensionName: string;
|
737
|
+
fileName: string;
|
738
|
+
fileKey: string;
|
739
|
+
bucketName: string;
|
740
|
+
fileSize: number;
|
741
|
+
fileUrl: string;
|
739
742
|
};
|
740
743
|
roomId: string;
|
741
744
|
messageId: string;
|
@@ -804,12 +807,12 @@ export declare const RoomContractsValidationSchema: {
|
|
804
807
|
createdAt: Date;
|
805
808
|
updatedAt: Date;
|
806
809
|
deletedAt: Date | null;
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
810
|
+
extensionName: string;
|
811
|
+
fileName: string;
|
812
|
+
fileKey: string;
|
813
|
+
bucketName: string;
|
814
|
+
fileSize: number;
|
815
|
+
fileUrl: string;
|
813
816
|
};
|
814
817
|
roomId: string;
|
815
818
|
messageId: string;
|
@@ -847,7 +850,7 @@ export declare const RoomContractsValidationSchema: {
|
|
847
850
|
email: z.ZodString;
|
848
851
|
address: z.ZodNullable<z.ZodString>;
|
849
852
|
phone: z.ZodNullable<z.ZodString>;
|
850
|
-
|
853
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
851
854
|
}, "strip", z.ZodTypeAny, {
|
852
855
|
id: string;
|
853
856
|
address: string | null;
|
@@ -857,7 +860,7 @@ export declare const RoomContractsValidationSchema: {
|
|
857
860
|
updatedAt: Date;
|
858
861
|
deletedAt: Date | null;
|
859
862
|
phone: string | null;
|
860
|
-
|
863
|
+
notificationCount: number | null;
|
861
864
|
}, {
|
862
865
|
id: string;
|
863
866
|
address: string | null;
|
@@ -867,7 +870,7 @@ export declare const RoomContractsValidationSchema: {
|
|
867
870
|
updatedAt: Date;
|
868
871
|
deletedAt: Date | null;
|
869
872
|
phone: string | null;
|
870
|
-
|
873
|
+
notificationCount: number | null;
|
871
874
|
}>;
|
872
875
|
messages: z.ZodArray<z.ZodObject<{
|
873
876
|
id: z.ZodString;
|
@@ -991,34 +994,34 @@ export declare const RoomContractsValidationSchema: {
|
|
991
994
|
createdAt: z.ZodDate;
|
992
995
|
updatedAt: z.ZodDate;
|
993
996
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
997
|
+
bucketName: z.ZodString;
|
998
|
+
fileName: z.ZodString;
|
999
|
+
fileKey: z.ZodString;
|
1000
|
+
fileSize: z.ZodNumber;
|
1001
|
+
fileUrl: z.ZodString;
|
1002
|
+
extensionName: z.ZodString;
|
1000
1003
|
}, "strip", z.ZodTypeAny, {
|
1001
1004
|
id: string;
|
1002
1005
|
createdAt: Date;
|
1003
1006
|
updatedAt: Date;
|
1004
1007
|
deletedAt: Date | null;
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1008
|
+
extensionName: string;
|
1009
|
+
fileName: string;
|
1010
|
+
fileKey: string;
|
1011
|
+
bucketName: string;
|
1012
|
+
fileSize: number;
|
1013
|
+
fileUrl: string;
|
1011
1014
|
}, {
|
1012
1015
|
id: string;
|
1013
1016
|
createdAt: Date;
|
1014
1017
|
updatedAt: Date;
|
1015
1018
|
deletedAt: Date | null;
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1019
|
+
extensionName: string;
|
1020
|
+
fileName: string;
|
1021
|
+
fileKey: string;
|
1022
|
+
bucketName: string;
|
1023
|
+
fileSize: number;
|
1024
|
+
fileUrl: string;
|
1022
1025
|
}>;
|
1023
1026
|
}, "strip", z.ZodTypeAny, {
|
1024
1027
|
id: string;
|
@@ -1033,12 +1036,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1033
1036
|
createdAt: Date;
|
1034
1037
|
updatedAt: Date;
|
1035
1038
|
deletedAt: Date | null;
|
1036
|
-
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
|
1039
|
+
extensionName: string;
|
1040
|
+
fileName: string;
|
1041
|
+
fileKey: string;
|
1042
|
+
bucketName: string;
|
1043
|
+
fileSize: number;
|
1044
|
+
fileUrl: string;
|
1042
1045
|
};
|
1043
1046
|
roomId: string;
|
1044
1047
|
messageId: string;
|
@@ -1056,12 +1059,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1056
1059
|
createdAt: Date;
|
1057
1060
|
updatedAt: Date;
|
1058
1061
|
deletedAt: Date | null;
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1062
|
+
extensionName: string;
|
1063
|
+
fileName: string;
|
1064
|
+
fileKey: string;
|
1065
|
+
bucketName: string;
|
1066
|
+
fileSize: number;
|
1067
|
+
fileUrl: string;
|
1065
1068
|
};
|
1066
1069
|
roomId: string;
|
1067
1070
|
messageId: string;
|
@@ -1130,12 +1133,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1130
1133
|
createdAt: Date;
|
1131
1134
|
updatedAt: Date;
|
1132
1135
|
deletedAt: Date | null;
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1136
|
+
extensionName: string;
|
1137
|
+
fileName: string;
|
1138
|
+
fileKey: string;
|
1139
|
+
bucketName: string;
|
1140
|
+
fileSize: number;
|
1141
|
+
fileUrl: string;
|
1139
1142
|
};
|
1140
1143
|
roomId: string;
|
1141
1144
|
messageId: string;
|
@@ -1204,12 +1207,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1204
1207
|
createdAt: Date;
|
1205
1208
|
updatedAt: Date;
|
1206
1209
|
deletedAt: Date | null;
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1210
|
+
extensionName: string;
|
1211
|
+
fileName: string;
|
1212
|
+
fileKey: string;
|
1213
|
+
bucketName: string;
|
1214
|
+
fileSize: number;
|
1215
|
+
fileUrl: string;
|
1213
1216
|
};
|
1214
1217
|
roomId: string;
|
1215
1218
|
messageId: string;
|
@@ -1338,34 +1341,34 @@ export declare const RoomContractsValidationSchema: {
|
|
1338
1341
|
createdAt: z.ZodDate;
|
1339
1342
|
updatedAt: z.ZodDate;
|
1340
1343
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1341
|
-
|
1342
|
-
|
1343
|
-
|
1344
|
-
|
1345
|
-
|
1346
|
-
|
1344
|
+
bucketName: z.ZodString;
|
1345
|
+
fileName: z.ZodString;
|
1346
|
+
fileKey: z.ZodString;
|
1347
|
+
fileSize: z.ZodNumber;
|
1348
|
+
fileUrl: z.ZodString;
|
1349
|
+
extensionName: z.ZodString;
|
1347
1350
|
}, "strip", z.ZodTypeAny, {
|
1348
1351
|
id: string;
|
1349
1352
|
createdAt: Date;
|
1350
1353
|
updatedAt: Date;
|
1351
1354
|
deletedAt: Date | null;
|
1352
|
-
|
1353
|
-
|
1354
|
-
|
1355
|
-
|
1356
|
-
|
1357
|
-
|
1355
|
+
extensionName: string;
|
1356
|
+
fileName: string;
|
1357
|
+
fileKey: string;
|
1358
|
+
bucketName: string;
|
1359
|
+
fileSize: number;
|
1360
|
+
fileUrl: string;
|
1358
1361
|
}, {
|
1359
1362
|
id: string;
|
1360
1363
|
createdAt: Date;
|
1361
1364
|
updatedAt: Date;
|
1362
1365
|
deletedAt: Date | null;
|
1363
|
-
|
1364
|
-
|
1365
|
-
|
1366
|
-
|
1367
|
-
|
1368
|
-
|
1366
|
+
extensionName: string;
|
1367
|
+
fileName: string;
|
1368
|
+
fileKey: string;
|
1369
|
+
bucketName: string;
|
1370
|
+
fileSize: number;
|
1371
|
+
fileUrl: string;
|
1369
1372
|
}>;
|
1370
1373
|
}, "strip", z.ZodTypeAny, {
|
1371
1374
|
id: string;
|
@@ -1380,12 +1383,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1380
1383
|
createdAt: Date;
|
1381
1384
|
updatedAt: Date;
|
1382
1385
|
deletedAt: Date | null;
|
1383
|
-
|
1384
|
-
|
1385
|
-
|
1386
|
-
|
1387
|
-
|
1388
|
-
|
1386
|
+
extensionName: string;
|
1387
|
+
fileName: string;
|
1388
|
+
fileKey: string;
|
1389
|
+
bucketName: string;
|
1390
|
+
fileSize: number;
|
1391
|
+
fileUrl: string;
|
1389
1392
|
};
|
1390
1393
|
roomId: string;
|
1391
1394
|
messageId: string;
|
@@ -1403,12 +1406,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1403
1406
|
createdAt: Date;
|
1404
1407
|
updatedAt: Date;
|
1405
1408
|
deletedAt: Date | null;
|
1406
|
-
|
1407
|
-
|
1408
|
-
|
1409
|
-
|
1410
|
-
|
1411
|
-
|
1409
|
+
extensionName: string;
|
1410
|
+
fileName: string;
|
1411
|
+
fileKey: string;
|
1412
|
+
bucketName: string;
|
1413
|
+
fileSize: number;
|
1414
|
+
fileUrl: string;
|
1412
1415
|
};
|
1413
1416
|
roomId: string;
|
1414
1417
|
messageId: string;
|
@@ -1477,12 +1480,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1477
1480
|
createdAt: Date;
|
1478
1481
|
updatedAt: Date;
|
1479
1482
|
deletedAt: Date | null;
|
1480
|
-
|
1481
|
-
|
1482
|
-
|
1483
|
-
|
1484
|
-
|
1485
|
-
|
1483
|
+
extensionName: string;
|
1484
|
+
fileName: string;
|
1485
|
+
fileKey: string;
|
1486
|
+
bucketName: string;
|
1487
|
+
fileSize: number;
|
1488
|
+
fileUrl: string;
|
1486
1489
|
};
|
1487
1490
|
roomId: string;
|
1488
1491
|
messageId: string;
|
@@ -1551,12 +1554,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1551
1554
|
createdAt: Date;
|
1552
1555
|
updatedAt: Date;
|
1553
1556
|
deletedAt: Date | null;
|
1554
|
-
|
1555
|
-
|
1556
|
-
|
1557
|
-
|
1558
|
-
|
1559
|
-
|
1557
|
+
extensionName: string;
|
1558
|
+
fileName: string;
|
1559
|
+
fileKey: string;
|
1560
|
+
bucketName: string;
|
1561
|
+
fileSize: number;
|
1562
|
+
fileUrl: string;
|
1560
1563
|
};
|
1561
1564
|
roomId: string;
|
1562
1565
|
messageId: string;
|
@@ -1579,7 +1582,7 @@ export declare const RoomContractsValidationSchema: {
|
|
1579
1582
|
email: z.ZodString;
|
1580
1583
|
address: z.ZodNullable<z.ZodString>;
|
1581
1584
|
phone: z.ZodNullable<z.ZodString>;
|
1582
|
-
|
1585
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
1583
1586
|
}, "strip", z.ZodTypeAny, {
|
1584
1587
|
id: string;
|
1585
1588
|
address: string | null;
|
@@ -1589,7 +1592,7 @@ export declare const RoomContractsValidationSchema: {
|
|
1589
1592
|
updatedAt: Date;
|
1590
1593
|
deletedAt: Date | null;
|
1591
1594
|
phone: string | null;
|
1592
|
-
|
1595
|
+
notificationCount: number | null;
|
1593
1596
|
}, {
|
1594
1597
|
id: string;
|
1595
1598
|
address: string | null;
|
@@ -1599,7 +1602,7 @@ export declare const RoomContractsValidationSchema: {
|
|
1599
1602
|
updatedAt: Date;
|
1600
1603
|
deletedAt: Date | null;
|
1601
1604
|
phone: string | null;
|
1602
|
-
|
1605
|
+
notificationCount: number | null;
|
1603
1606
|
}>;
|
1604
1607
|
}, "strip", z.ZodTypeAny, {
|
1605
1608
|
id: string;
|
@@ -1616,7 +1619,7 @@ export declare const RoomContractsValidationSchema: {
|
|
1616
1619
|
updatedAt: Date;
|
1617
1620
|
deletedAt: Date | null;
|
1618
1621
|
phone: string | null;
|
1619
|
-
|
1622
|
+
notificationCount: number | null;
|
1620
1623
|
};
|
1621
1624
|
roomId: string;
|
1622
1625
|
actorId: string;
|
@@ -1635,7 +1638,7 @@ export declare const RoomContractsValidationSchema: {
|
|
1635
1638
|
updatedAt: Date;
|
1636
1639
|
deletedAt: Date | null;
|
1637
1640
|
phone: string | null;
|
1638
|
-
|
1641
|
+
notificationCount: number | null;
|
1639
1642
|
};
|
1640
1643
|
roomId: string;
|
1641
1644
|
actorId: string;
|
@@ -1656,12 +1659,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1656
1659
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1657
1660
|
name: z.ZodString;
|
1658
1661
|
smtpHost: z.ZodString;
|
1659
|
-
smtpPort: z.
|
1660
|
-
smtpTlsPort: z.
|
1662
|
+
smtpPort: z.ZodNumber;
|
1663
|
+
smtpTlsPort: z.ZodNumber;
|
1661
1664
|
useTlsForSmtp: z.ZodBoolean;
|
1662
1665
|
imapHost: z.ZodString;
|
1663
|
-
imapPort: z.
|
1664
|
-
imapTlsPort: z.
|
1666
|
+
imapPort: z.ZodNumber;
|
1667
|
+
imapTlsPort: z.ZodNumber;
|
1665
1668
|
useTlsForImap: z.ZodBoolean;
|
1666
1669
|
}, "strip", z.ZodTypeAny, {
|
1667
1670
|
id: string;
|
@@ -1670,12 +1673,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1670
1673
|
updatedAt: Date;
|
1671
1674
|
deletedAt: Date | null;
|
1672
1675
|
smtpHost: string;
|
1673
|
-
smtpPort:
|
1674
|
-
smtpTlsPort:
|
1676
|
+
smtpPort: number;
|
1677
|
+
smtpTlsPort: number;
|
1675
1678
|
useTlsForSmtp: boolean;
|
1676
1679
|
imapHost: string;
|
1677
|
-
imapPort:
|
1678
|
-
imapTlsPort:
|
1680
|
+
imapPort: number;
|
1681
|
+
imapTlsPort: number;
|
1679
1682
|
useTlsForImap: boolean;
|
1680
1683
|
}, {
|
1681
1684
|
id: string;
|
@@ -1684,12 +1687,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1684
1687
|
updatedAt: Date;
|
1685
1688
|
deletedAt: Date | null;
|
1686
1689
|
smtpHost: string;
|
1687
|
-
smtpPort:
|
1688
|
-
smtpTlsPort:
|
1690
|
+
smtpPort: number;
|
1691
|
+
smtpTlsPort: number;
|
1689
1692
|
useTlsForSmtp: boolean;
|
1690
1693
|
imapHost: string;
|
1691
|
-
imapPort:
|
1692
|
-
imapTlsPort:
|
1694
|
+
imapPort: number;
|
1695
|
+
imapTlsPort: number;
|
1693
1696
|
useTlsForImap: boolean;
|
1694
1697
|
}>;
|
1695
1698
|
state: z.ZodUnion<[z.ZodLiteral<"init">, z.ZodLiteral<"syncing">, z.ZodLiteral<"connecting">, z.ZodLiteral<"connected">, z.ZodLiteral<"disconnected">, z.ZodLiteral<"authenticationError">, z.ZodLiteral<"connectError">, z.ZodLiteral<"unset">]>;
|
@@ -1710,12 +1713,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1710
1713
|
updatedAt: Date;
|
1711
1714
|
deletedAt: Date | null;
|
1712
1715
|
smtpHost: string;
|
1713
|
-
smtpPort:
|
1714
|
-
smtpTlsPort:
|
1716
|
+
smtpPort: number;
|
1717
|
+
smtpTlsPort: number;
|
1715
1718
|
useTlsForSmtp: boolean;
|
1716
1719
|
imapHost: string;
|
1717
|
-
imapPort:
|
1718
|
-
imapTlsPort:
|
1720
|
+
imapPort: number;
|
1721
|
+
imapTlsPort: number;
|
1719
1722
|
useTlsForImap: boolean;
|
1720
1723
|
};
|
1721
1724
|
}, {
|
@@ -1735,12 +1738,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1735
1738
|
updatedAt: Date;
|
1736
1739
|
deletedAt: Date | null;
|
1737
1740
|
smtpHost: string;
|
1738
|
-
smtpPort:
|
1739
|
-
smtpTlsPort:
|
1741
|
+
smtpPort: number;
|
1742
|
+
smtpTlsPort: number;
|
1740
1743
|
useTlsForSmtp: boolean;
|
1741
1744
|
imapHost: string;
|
1742
|
-
imapPort:
|
1743
|
-
imapTlsPort:
|
1745
|
+
imapPort: number;
|
1746
|
+
imapTlsPort: number;
|
1744
1747
|
useTlsForImap: boolean;
|
1745
1748
|
};
|
1746
1749
|
}>;
|
@@ -1823,12 +1826,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1823
1826
|
createdAt: Date;
|
1824
1827
|
updatedAt: Date;
|
1825
1828
|
deletedAt: Date | null;
|
1826
|
-
|
1827
|
-
|
1828
|
-
|
1829
|
-
|
1830
|
-
|
1831
|
-
|
1829
|
+
extensionName: string;
|
1830
|
+
fileName: string;
|
1831
|
+
fileKey: string;
|
1832
|
+
bucketName: string;
|
1833
|
+
fileSize: number;
|
1834
|
+
fileUrl: string;
|
1832
1835
|
};
|
1833
1836
|
roomId: string;
|
1834
1837
|
messageId: string;
|
@@ -1844,7 +1847,7 @@ export declare const RoomContractsValidationSchema: {
|
|
1844
1847
|
updatedAt: Date;
|
1845
1848
|
deletedAt: Date | null;
|
1846
1849
|
phone: string | null;
|
1847
|
-
|
1850
|
+
notificationCount: number | null;
|
1848
1851
|
};
|
1849
1852
|
resolved: boolean;
|
1850
1853
|
assigneeId: string | null;
|
@@ -1947,12 +1950,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1947
1950
|
createdAt: Date;
|
1948
1951
|
updatedAt: Date;
|
1949
1952
|
deletedAt: Date | null;
|
1950
|
-
|
1951
|
-
|
1952
|
-
|
1953
|
-
|
1954
|
-
|
1955
|
-
|
1953
|
+
extensionName: string;
|
1954
|
+
fileName: string;
|
1955
|
+
fileKey: string;
|
1956
|
+
bucketName: string;
|
1957
|
+
fileSize: number;
|
1958
|
+
fileUrl: string;
|
1956
1959
|
};
|
1957
1960
|
roomId: string;
|
1958
1961
|
messageId: string;
|
@@ -2022,12 +2025,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2022
2025
|
createdAt: Date;
|
2023
2026
|
updatedAt: Date;
|
2024
2027
|
deletedAt: Date | null;
|
2025
|
-
|
2026
|
-
|
2027
|
-
|
2028
|
-
|
2029
|
-
|
2030
|
-
|
2028
|
+
extensionName: string;
|
2029
|
+
fileName: string;
|
2030
|
+
fileKey: string;
|
2031
|
+
bucketName: string;
|
2032
|
+
fileSize: number;
|
2033
|
+
fileUrl: string;
|
2031
2034
|
};
|
2032
2035
|
roomId: string;
|
2033
2036
|
messageId: string;
|
@@ -2097,12 +2100,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2097
2100
|
createdAt: Date;
|
2098
2101
|
updatedAt: Date;
|
2099
2102
|
deletedAt: Date | null;
|
2100
|
-
|
2101
|
-
|
2102
|
-
|
2103
|
-
|
2104
|
-
|
2105
|
-
|
2103
|
+
extensionName: string;
|
2104
|
+
fileName: string;
|
2105
|
+
fileKey: string;
|
2106
|
+
bucketName: string;
|
2107
|
+
fileSize: number;
|
2108
|
+
fileUrl: string;
|
2106
2109
|
};
|
2107
2110
|
roomId: string;
|
2108
2111
|
messageId: string;
|
@@ -2123,7 +2126,7 @@ export declare const RoomContractsValidationSchema: {
|
|
2123
2126
|
updatedAt: Date;
|
2124
2127
|
deletedAt: Date | null;
|
2125
2128
|
phone: string | null;
|
2126
|
-
|
2129
|
+
notificationCount: number | null;
|
2127
2130
|
};
|
2128
2131
|
roomId: string;
|
2129
2132
|
actorId: string;
|
@@ -2145,12 +2148,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2145
2148
|
updatedAt: Date;
|
2146
2149
|
deletedAt: Date | null;
|
2147
2150
|
smtpHost: string;
|
2148
|
-
smtpPort:
|
2149
|
-
smtpTlsPort:
|
2151
|
+
smtpPort: number;
|
2152
|
+
smtpTlsPort: number;
|
2150
2153
|
useTlsForSmtp: boolean;
|
2151
2154
|
imapHost: string;
|
2152
|
-
imapPort:
|
2153
|
-
imapTlsPort:
|
2155
|
+
imapPort: number;
|
2156
|
+
imapTlsPort: number;
|
2154
2157
|
useTlsForImap: boolean;
|
2155
2158
|
};
|
2156
2159
|
};
|
@@ -2233,12 +2236,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2233
2236
|
createdAt: Date;
|
2234
2237
|
updatedAt: Date;
|
2235
2238
|
deletedAt: Date | null;
|
2236
|
-
|
2237
|
-
|
2238
|
-
|
2239
|
-
|
2240
|
-
|
2241
|
-
|
2239
|
+
extensionName: string;
|
2240
|
+
fileName: string;
|
2241
|
+
fileKey: string;
|
2242
|
+
bucketName: string;
|
2243
|
+
fileSize: number;
|
2244
|
+
fileUrl: string;
|
2242
2245
|
};
|
2243
2246
|
roomId: string;
|
2244
2247
|
messageId: string;
|
@@ -2254,7 +2257,7 @@ export declare const RoomContractsValidationSchema: {
|
|
2254
2257
|
updatedAt: Date;
|
2255
2258
|
deletedAt: Date | null;
|
2256
2259
|
phone: string | null;
|
2257
|
-
|
2260
|
+
notificationCount: number | null;
|
2258
2261
|
};
|
2259
2262
|
resolved: boolean;
|
2260
2263
|
assigneeId: string | null;
|
@@ -2357,12 +2360,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2357
2360
|
createdAt: Date;
|
2358
2361
|
updatedAt: Date;
|
2359
2362
|
deletedAt: Date | null;
|
2360
|
-
|
2361
|
-
|
2362
|
-
|
2363
|
-
|
2364
|
-
|
2365
|
-
|
2363
|
+
extensionName: string;
|
2364
|
+
fileName: string;
|
2365
|
+
fileKey: string;
|
2366
|
+
bucketName: string;
|
2367
|
+
fileSize: number;
|
2368
|
+
fileUrl: string;
|
2366
2369
|
};
|
2367
2370
|
roomId: string;
|
2368
2371
|
messageId: string;
|
@@ -2432,12 +2435,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2432
2435
|
createdAt: Date;
|
2433
2436
|
updatedAt: Date;
|
2434
2437
|
deletedAt: Date | null;
|
2435
|
-
|
2436
|
-
|
2437
|
-
|
2438
|
-
|
2439
|
-
|
2440
|
-
|
2438
|
+
extensionName: string;
|
2439
|
+
fileName: string;
|
2440
|
+
fileKey: string;
|
2441
|
+
bucketName: string;
|
2442
|
+
fileSize: number;
|
2443
|
+
fileUrl: string;
|
2441
2444
|
};
|
2442
2445
|
roomId: string;
|
2443
2446
|
messageId: string;
|
@@ -2507,12 +2510,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2507
2510
|
createdAt: Date;
|
2508
2511
|
updatedAt: Date;
|
2509
2512
|
deletedAt: Date | null;
|
2510
|
-
|
2511
|
-
|
2512
|
-
|
2513
|
-
|
2514
|
-
|
2515
|
-
|
2513
|
+
extensionName: string;
|
2514
|
+
fileName: string;
|
2515
|
+
fileKey: string;
|
2516
|
+
bucketName: string;
|
2517
|
+
fileSize: number;
|
2518
|
+
fileUrl: string;
|
2516
2519
|
};
|
2517
2520
|
roomId: string;
|
2518
2521
|
messageId: string;
|
@@ -2533,7 +2536,7 @@ export declare const RoomContractsValidationSchema: {
|
|
2533
2536
|
updatedAt: Date;
|
2534
2537
|
deletedAt: Date | null;
|
2535
2538
|
phone: string | null;
|
2536
|
-
|
2539
|
+
notificationCount: number | null;
|
2537
2540
|
};
|
2538
2541
|
roomId: string;
|
2539
2542
|
actorId: string;
|
@@ -2555,12 +2558,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2555
2558
|
updatedAt: Date;
|
2556
2559
|
deletedAt: Date | null;
|
2557
2560
|
smtpHost: string;
|
2558
|
-
smtpPort:
|
2559
|
-
smtpTlsPort:
|
2561
|
+
smtpPort: number;
|
2562
|
+
smtpTlsPort: number;
|
2560
2563
|
useTlsForSmtp: boolean;
|
2561
2564
|
imapHost: string;
|
2562
|
-
imapPort:
|
2563
|
-
imapTlsPort:
|
2565
|
+
imapPort: number;
|
2566
|
+
imapTlsPort: number;
|
2564
2567
|
useTlsForImap: boolean;
|
2565
2568
|
};
|
2566
2569
|
};
|
@@ -2648,12 +2651,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2648
2651
|
createdAt: Date;
|
2649
2652
|
updatedAt: Date;
|
2650
2653
|
deletedAt: Date | null;
|
2651
|
-
|
2652
|
-
|
2653
|
-
|
2654
|
-
|
2655
|
-
|
2656
|
-
|
2654
|
+
extensionName: string;
|
2655
|
+
fileName: string;
|
2656
|
+
fileKey: string;
|
2657
|
+
bucketName: string;
|
2658
|
+
fileSize: number;
|
2659
|
+
fileUrl: string;
|
2657
2660
|
};
|
2658
2661
|
roomId: string;
|
2659
2662
|
messageId: string;
|
@@ -2669,7 +2672,7 @@ export declare const RoomContractsValidationSchema: {
|
|
2669
2672
|
updatedAt: Date;
|
2670
2673
|
deletedAt: Date | null;
|
2671
2674
|
phone: string | null;
|
2672
|
-
|
2675
|
+
notificationCount: number | null;
|
2673
2676
|
};
|
2674
2677
|
resolved: boolean;
|
2675
2678
|
assigneeId: string | null;
|
@@ -2772,12 +2775,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2772
2775
|
createdAt: Date;
|
2773
2776
|
updatedAt: Date;
|
2774
2777
|
deletedAt: Date | null;
|
2775
|
-
|
2776
|
-
|
2777
|
-
|
2778
|
-
|
2779
|
-
|
2780
|
-
|
2778
|
+
extensionName: string;
|
2779
|
+
fileName: string;
|
2780
|
+
fileKey: string;
|
2781
|
+
bucketName: string;
|
2782
|
+
fileSize: number;
|
2783
|
+
fileUrl: string;
|
2781
2784
|
};
|
2782
2785
|
roomId: string;
|
2783
2786
|
messageId: string;
|
@@ -2847,12 +2850,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2847
2850
|
createdAt: Date;
|
2848
2851
|
updatedAt: Date;
|
2849
2852
|
deletedAt: Date | null;
|
2850
|
-
|
2851
|
-
|
2852
|
-
|
2853
|
-
|
2854
|
-
|
2855
|
-
|
2853
|
+
extensionName: string;
|
2854
|
+
fileName: string;
|
2855
|
+
fileKey: string;
|
2856
|
+
bucketName: string;
|
2857
|
+
fileSize: number;
|
2858
|
+
fileUrl: string;
|
2856
2859
|
};
|
2857
2860
|
roomId: string;
|
2858
2861
|
messageId: string;
|
@@ -2922,12 +2925,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2922
2925
|
createdAt: Date;
|
2923
2926
|
updatedAt: Date;
|
2924
2927
|
deletedAt: Date | null;
|
2925
|
-
|
2926
|
-
|
2927
|
-
|
2928
|
-
|
2929
|
-
|
2930
|
-
|
2928
|
+
extensionName: string;
|
2929
|
+
fileName: string;
|
2930
|
+
fileKey: string;
|
2931
|
+
bucketName: string;
|
2932
|
+
fileSize: number;
|
2933
|
+
fileUrl: string;
|
2931
2934
|
};
|
2932
2935
|
roomId: string;
|
2933
2936
|
messageId: string;
|
@@ -2948,7 +2951,7 @@ export declare const RoomContractsValidationSchema: {
|
|
2948
2951
|
updatedAt: Date;
|
2949
2952
|
deletedAt: Date | null;
|
2950
2953
|
phone: string | null;
|
2951
|
-
|
2954
|
+
notificationCount: number | null;
|
2952
2955
|
};
|
2953
2956
|
roomId: string;
|
2954
2957
|
actorId: string;
|
@@ -2970,12 +2973,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2970
2973
|
updatedAt: Date;
|
2971
2974
|
deletedAt: Date | null;
|
2972
2975
|
smtpHost: string;
|
2973
|
-
smtpPort:
|
2974
|
-
smtpTlsPort:
|
2976
|
+
smtpPort: number;
|
2977
|
+
smtpTlsPort: number;
|
2975
2978
|
useTlsForSmtp: boolean;
|
2976
2979
|
imapHost: string;
|
2977
|
-
imapPort:
|
2978
|
-
imapTlsPort:
|
2980
|
+
imapPort: number;
|
2981
|
+
imapTlsPort: number;
|
2979
2982
|
useTlsForImap: boolean;
|
2980
2983
|
};
|
2981
2984
|
};
|
@@ -3063,12 +3066,12 @@ export declare const RoomContractsValidationSchema: {
|
|
3063
3066
|
createdAt: Date;
|
3064
3067
|
updatedAt: Date;
|
3065
3068
|
deletedAt: Date | null;
|
3066
|
-
|
3067
|
-
|
3068
|
-
|
3069
|
-
|
3070
|
-
|
3071
|
-
|
3069
|
+
extensionName: string;
|
3070
|
+
fileName: string;
|
3071
|
+
fileKey: string;
|
3072
|
+
bucketName: string;
|
3073
|
+
fileSize: number;
|
3074
|
+
fileUrl: string;
|
3072
3075
|
};
|
3073
3076
|
roomId: string;
|
3074
3077
|
messageId: string;
|
@@ -3084,7 +3087,7 @@ export declare const RoomContractsValidationSchema: {
|
|
3084
3087
|
updatedAt: Date;
|
3085
3088
|
deletedAt: Date | null;
|
3086
3089
|
phone: string | null;
|
3087
|
-
|
3090
|
+
notificationCount: number | null;
|
3088
3091
|
};
|
3089
3092
|
resolved: boolean;
|
3090
3093
|
assigneeId: string | null;
|
@@ -3187,12 +3190,12 @@ export declare const RoomContractsValidationSchema: {
|
|
3187
3190
|
createdAt: Date;
|
3188
3191
|
updatedAt: Date;
|
3189
3192
|
deletedAt: Date | null;
|
3190
|
-
|
3191
|
-
|
3192
|
-
|
3193
|
-
|
3194
|
-
|
3195
|
-
|
3193
|
+
extensionName: string;
|
3194
|
+
fileName: string;
|
3195
|
+
fileKey: string;
|
3196
|
+
bucketName: string;
|
3197
|
+
fileSize: number;
|
3198
|
+
fileUrl: string;
|
3196
3199
|
};
|
3197
3200
|
roomId: string;
|
3198
3201
|
messageId: string;
|
@@ -3262,12 +3265,12 @@ export declare const RoomContractsValidationSchema: {
|
|
3262
3265
|
createdAt: Date;
|
3263
3266
|
updatedAt: Date;
|
3264
3267
|
deletedAt: Date | null;
|
3265
|
-
|
3266
|
-
|
3267
|
-
|
3268
|
-
|
3269
|
-
|
3270
|
-
|
3268
|
+
extensionName: string;
|
3269
|
+
fileName: string;
|
3270
|
+
fileKey: string;
|
3271
|
+
bucketName: string;
|
3272
|
+
fileSize: number;
|
3273
|
+
fileUrl: string;
|
3271
3274
|
};
|
3272
3275
|
roomId: string;
|
3273
3276
|
messageId: string;
|
@@ -3337,12 +3340,12 @@ export declare const RoomContractsValidationSchema: {
|
|
3337
3340
|
createdAt: Date;
|
3338
3341
|
updatedAt: Date;
|
3339
3342
|
deletedAt: Date | null;
|
3340
|
-
|
3341
|
-
|
3342
|
-
|
3343
|
-
|
3344
|
-
|
3345
|
-
|
3343
|
+
extensionName: string;
|
3344
|
+
fileName: string;
|
3345
|
+
fileKey: string;
|
3346
|
+
bucketName: string;
|
3347
|
+
fileSize: number;
|
3348
|
+
fileUrl: string;
|
3346
3349
|
};
|
3347
3350
|
roomId: string;
|
3348
3351
|
messageId: string;
|
@@ -3363,7 +3366,7 @@ export declare const RoomContractsValidationSchema: {
|
|
3363
3366
|
updatedAt: Date;
|
3364
3367
|
deletedAt: Date | null;
|
3365
3368
|
phone: string | null;
|
3366
|
-
|
3369
|
+
notificationCount: number | null;
|
3367
3370
|
};
|
3368
3371
|
roomId: string;
|
3369
3372
|
actorId: string;
|
@@ -3385,12 +3388,12 @@ export declare const RoomContractsValidationSchema: {
|
|
3385
3388
|
updatedAt: Date;
|
3386
3389
|
deletedAt: Date | null;
|
3387
3390
|
smtpHost: string;
|
3388
|
-
smtpPort:
|
3389
|
-
smtpTlsPort:
|
3391
|
+
smtpPort: number;
|
3392
|
+
smtpTlsPort: number;
|
3390
3393
|
useTlsForSmtp: boolean;
|
3391
3394
|
imapHost: string;
|
3392
|
-
imapPort:
|
3393
|
-
imapTlsPort:
|
3395
|
+
imapPort: number;
|
3396
|
+
imapTlsPort: number;
|
3394
3397
|
useTlsForImap: boolean;
|
3395
3398
|
};
|
3396
3399
|
};
|
@@ -3408,18 +3411,21 @@ export declare const RoomContractsValidationSchema: {
|
|
3408
3411
|
note: z.ZodOptional<z.ZodString>;
|
3409
3412
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3410
3413
|
handover: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEffects<z.ZodUnion<[z.ZodLiteral<"true">, z.ZodLiteral<"false">]>, boolean, "false" | "true">]>>>;
|
3414
|
+
selfAssign: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEffects<z.ZodUnion<[z.ZodLiteral<"true">, z.ZodLiteral<"false">]>, boolean, "false" | "true">]>>>;
|
3411
3415
|
}, "strip", z.ZodTypeAny, {
|
3412
3416
|
resolved?: boolean | null | undefined;
|
3413
3417
|
assigneeId?: string | null | undefined;
|
3414
3418
|
note?: string | undefined;
|
3415
3419
|
tags?: string[] | undefined;
|
3416
3420
|
handover?: boolean | null | undefined;
|
3421
|
+
selfAssign?: boolean | null | undefined;
|
3417
3422
|
}, {
|
3418
3423
|
resolved?: boolean | "false" | "true" | null | undefined;
|
3419
3424
|
assigneeId?: string | null | undefined;
|
3420
3425
|
note?: string | undefined;
|
3421
3426
|
tags?: string[] | undefined;
|
3422
3427
|
handover?: boolean | "false" | "true" | null | undefined;
|
3428
|
+
selfAssign?: boolean | "false" | "true" | null | undefined;
|
3423
3429
|
}>;
|
3424
3430
|
};
|
3425
3431
|
};
|