@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
@@ -55,20 +55,23 @@ export declare const roomContract: {
|
|
55
55
|
page: z.ZodDefault<z.ZodNumber>;
|
56
56
|
pageSize: z.ZodDefault<z.ZodNumber>;
|
57
57
|
keyword: z.ZodOptional<z.ZodString>;
|
58
|
-
|
59
|
-
|
58
|
+
contactLabels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
59
|
+
level1: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"open">, z.ZodLiteral<"close">, z.ZodLiteral<"inbox">, z.ZodLiteral<"sent">, z.ZodLiteral<"scheduled">, z.ZodLiteral<"starred">]>>;
|
60
|
+
level2: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"all">, z.ZodLiteral<"unassign">, z.ZodLiteral<"mine">, z.ZodLiteral<"other">]>>;
|
60
61
|
}, "strip", z.ZodTypeAny, {
|
61
62
|
page: number;
|
62
63
|
pageSize: number;
|
63
64
|
keyword?: string | undefined;
|
64
|
-
|
65
|
-
|
65
|
+
contactLabels?: string[] | undefined;
|
66
|
+
level1?: "open" | "close" | "inbox" | "sent" | "scheduled" | "starred" | undefined;
|
67
|
+
level2?: "all" | "other" | "unassign" | "mine" | undefined;
|
66
68
|
}, {
|
67
69
|
page?: number | undefined;
|
68
70
|
pageSize?: number | undefined;
|
69
71
|
keyword?: string | undefined;
|
70
|
-
|
71
|
-
|
72
|
+
contactLabels?: string[] | undefined;
|
73
|
+
level1?: "open" | "close" | "inbox" | "sent" | "scheduled" | "starred" | undefined;
|
74
|
+
level2?: "all" | "other" | "unassign" | "mine" | undefined;
|
72
75
|
}>;
|
73
76
|
responses: {
|
74
77
|
401: z.ZodObject<{
|
@@ -326,34 +329,34 @@ export declare const roomContract: {
|
|
326
329
|
createdAt: z.ZodDate;
|
327
330
|
updatedAt: z.ZodDate;
|
328
331
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
332
|
+
bucketName: z.ZodString;
|
333
|
+
fileName: z.ZodString;
|
334
|
+
fileKey: z.ZodString;
|
335
|
+
fileSize: z.ZodNumber;
|
336
|
+
fileUrl: z.ZodString;
|
337
|
+
extensionName: z.ZodString;
|
335
338
|
}, "strip", z.ZodTypeAny, {
|
336
339
|
id: string;
|
337
340
|
createdAt: Date;
|
338
341
|
updatedAt: Date;
|
339
342
|
deletedAt: Date | null;
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
343
|
+
extensionName: string;
|
344
|
+
fileName: string;
|
345
|
+
fileKey: string;
|
346
|
+
bucketName: string;
|
347
|
+
fileSize: number;
|
348
|
+
fileUrl: string;
|
346
349
|
}, {
|
347
350
|
id: string;
|
348
351
|
createdAt: Date;
|
349
352
|
updatedAt: Date;
|
350
353
|
deletedAt: Date | null;
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
354
|
+
extensionName: string;
|
355
|
+
fileName: string;
|
356
|
+
fileKey: string;
|
357
|
+
bucketName: string;
|
358
|
+
fileSize: number;
|
359
|
+
fileUrl: string;
|
357
360
|
}>;
|
358
361
|
}, "strip", z.ZodTypeAny, {
|
359
362
|
id: string;
|
@@ -368,12 +371,12 @@ export declare const roomContract: {
|
|
368
371
|
createdAt: Date;
|
369
372
|
updatedAt: Date;
|
370
373
|
deletedAt: Date | null;
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
374
|
+
extensionName: string;
|
375
|
+
fileName: string;
|
376
|
+
fileKey: string;
|
377
|
+
bucketName: string;
|
378
|
+
fileSize: number;
|
379
|
+
fileUrl: string;
|
377
380
|
};
|
378
381
|
roomId: string;
|
379
382
|
messageId: string;
|
@@ -391,12 +394,12 @@ export declare const roomContract: {
|
|
391
394
|
createdAt: Date;
|
392
395
|
updatedAt: Date;
|
393
396
|
deletedAt: Date | null;
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
397
|
+
extensionName: string;
|
398
|
+
fileName: string;
|
399
|
+
fileKey: string;
|
400
|
+
bucketName: string;
|
401
|
+
fileSize: number;
|
402
|
+
fileUrl: string;
|
400
403
|
};
|
401
404
|
roomId: string;
|
402
405
|
messageId: string;
|
@@ -465,12 +468,12 @@ export declare const roomContract: {
|
|
465
468
|
createdAt: Date;
|
466
469
|
updatedAt: Date;
|
467
470
|
deletedAt: Date | null;
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
471
|
+
extensionName: string;
|
472
|
+
fileName: string;
|
473
|
+
fileKey: string;
|
474
|
+
bucketName: string;
|
475
|
+
fileSize: number;
|
476
|
+
fileUrl: string;
|
474
477
|
};
|
475
478
|
roomId: string;
|
476
479
|
messageId: string;
|
@@ -539,12 +542,12 @@ export declare const roomContract: {
|
|
539
542
|
createdAt: Date;
|
540
543
|
updatedAt: Date;
|
541
544
|
deletedAt: Date | null;
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
545
|
+
extensionName: string;
|
546
|
+
fileName: string;
|
547
|
+
fileKey: string;
|
548
|
+
bucketName: string;
|
549
|
+
fileSize: number;
|
550
|
+
fileUrl: string;
|
548
551
|
};
|
549
552
|
roomId: string;
|
550
553
|
messageId: string;
|
@@ -673,34 +676,34 @@ export declare const roomContract: {
|
|
673
676
|
createdAt: z.ZodDate;
|
674
677
|
updatedAt: z.ZodDate;
|
675
678
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
679
|
+
bucketName: z.ZodString;
|
680
|
+
fileName: z.ZodString;
|
681
|
+
fileKey: z.ZodString;
|
682
|
+
fileSize: z.ZodNumber;
|
683
|
+
fileUrl: z.ZodString;
|
684
|
+
extensionName: z.ZodString;
|
682
685
|
}, "strip", z.ZodTypeAny, {
|
683
686
|
id: string;
|
684
687
|
createdAt: Date;
|
685
688
|
updatedAt: Date;
|
686
689
|
deletedAt: Date | null;
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
690
|
+
extensionName: string;
|
691
|
+
fileName: string;
|
692
|
+
fileKey: string;
|
693
|
+
bucketName: string;
|
694
|
+
fileSize: number;
|
695
|
+
fileUrl: string;
|
693
696
|
}, {
|
694
697
|
id: string;
|
695
698
|
createdAt: Date;
|
696
699
|
updatedAt: Date;
|
697
700
|
deletedAt: Date | null;
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
701
|
+
extensionName: string;
|
702
|
+
fileName: string;
|
703
|
+
fileKey: string;
|
704
|
+
bucketName: string;
|
705
|
+
fileSize: number;
|
706
|
+
fileUrl: string;
|
704
707
|
}>;
|
705
708
|
}, "strip", z.ZodTypeAny, {
|
706
709
|
id: string;
|
@@ -715,12 +718,12 @@ export declare const roomContract: {
|
|
715
718
|
createdAt: Date;
|
716
719
|
updatedAt: Date;
|
717
720
|
deletedAt: Date | null;
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
721
|
+
extensionName: string;
|
722
|
+
fileName: string;
|
723
|
+
fileKey: string;
|
724
|
+
bucketName: string;
|
725
|
+
fileSize: number;
|
726
|
+
fileUrl: string;
|
724
727
|
};
|
725
728
|
roomId: string;
|
726
729
|
messageId: string;
|
@@ -738,12 +741,12 @@ export declare const roomContract: {
|
|
738
741
|
createdAt: Date;
|
739
742
|
updatedAt: Date;
|
740
743
|
deletedAt: Date | null;
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
744
|
+
extensionName: string;
|
745
|
+
fileName: string;
|
746
|
+
fileKey: string;
|
747
|
+
bucketName: string;
|
748
|
+
fileSize: number;
|
749
|
+
fileUrl: string;
|
747
750
|
};
|
748
751
|
roomId: string;
|
749
752
|
messageId: string;
|
@@ -812,12 +815,12 @@ export declare const roomContract: {
|
|
812
815
|
createdAt: Date;
|
813
816
|
updatedAt: Date;
|
814
817
|
deletedAt: Date | null;
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
818
|
+
extensionName: string;
|
819
|
+
fileName: string;
|
820
|
+
fileKey: string;
|
821
|
+
bucketName: string;
|
822
|
+
fileSize: number;
|
823
|
+
fileUrl: string;
|
821
824
|
};
|
822
825
|
roomId: string;
|
823
826
|
messageId: string;
|
@@ -886,12 +889,12 @@ export declare const roomContract: {
|
|
886
889
|
createdAt: Date;
|
887
890
|
updatedAt: Date;
|
888
891
|
deletedAt: Date | null;
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
892
|
+
extensionName: string;
|
893
|
+
fileName: string;
|
894
|
+
fileKey: string;
|
895
|
+
bucketName: string;
|
896
|
+
fileSize: number;
|
897
|
+
fileUrl: string;
|
895
898
|
};
|
896
899
|
roomId: string;
|
897
900
|
messageId: string;
|
@@ -929,7 +932,7 @@ export declare const roomContract: {
|
|
929
932
|
email: z.ZodString;
|
930
933
|
address: z.ZodNullable<z.ZodString>;
|
931
934
|
phone: z.ZodNullable<z.ZodString>;
|
932
|
-
|
935
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
933
936
|
}, "strip", z.ZodTypeAny, {
|
934
937
|
id: string;
|
935
938
|
address: string | null;
|
@@ -939,7 +942,7 @@ export declare const roomContract: {
|
|
939
942
|
updatedAt: Date;
|
940
943
|
deletedAt: Date | null;
|
941
944
|
phone: string | null;
|
942
|
-
|
945
|
+
notificationCount: number | null;
|
943
946
|
}, {
|
944
947
|
id: string;
|
945
948
|
address: string | null;
|
@@ -949,7 +952,7 @@ export declare const roomContract: {
|
|
949
952
|
updatedAt: Date;
|
950
953
|
deletedAt: Date | null;
|
951
954
|
phone: string | null;
|
952
|
-
|
955
|
+
notificationCount: number | null;
|
953
956
|
}>;
|
954
957
|
messages: z.ZodArray<z.ZodObject<{
|
955
958
|
id: z.ZodString;
|
@@ -1073,34 +1076,34 @@ export declare const roomContract: {
|
|
1073
1076
|
createdAt: z.ZodDate;
|
1074
1077
|
updatedAt: z.ZodDate;
|
1075
1078
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1079
|
+
bucketName: z.ZodString;
|
1080
|
+
fileName: z.ZodString;
|
1081
|
+
fileKey: z.ZodString;
|
1082
|
+
fileSize: z.ZodNumber;
|
1083
|
+
fileUrl: z.ZodString;
|
1084
|
+
extensionName: z.ZodString;
|
1082
1085
|
}, "strip", z.ZodTypeAny, {
|
1083
1086
|
id: string;
|
1084
1087
|
createdAt: Date;
|
1085
1088
|
updatedAt: Date;
|
1086
1089
|
deletedAt: Date | null;
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1090
|
+
extensionName: string;
|
1091
|
+
fileName: string;
|
1092
|
+
fileKey: string;
|
1093
|
+
bucketName: string;
|
1094
|
+
fileSize: number;
|
1095
|
+
fileUrl: string;
|
1093
1096
|
}, {
|
1094
1097
|
id: string;
|
1095
1098
|
createdAt: Date;
|
1096
1099
|
updatedAt: Date;
|
1097
1100
|
deletedAt: Date | null;
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1101
|
+
extensionName: string;
|
1102
|
+
fileName: string;
|
1103
|
+
fileKey: string;
|
1104
|
+
bucketName: string;
|
1105
|
+
fileSize: number;
|
1106
|
+
fileUrl: string;
|
1104
1107
|
}>;
|
1105
1108
|
}, "strip", z.ZodTypeAny, {
|
1106
1109
|
id: string;
|
@@ -1115,12 +1118,12 @@ export declare const roomContract: {
|
|
1115
1118
|
createdAt: Date;
|
1116
1119
|
updatedAt: Date;
|
1117
1120
|
deletedAt: Date | null;
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1121
|
+
extensionName: string;
|
1122
|
+
fileName: string;
|
1123
|
+
fileKey: string;
|
1124
|
+
bucketName: string;
|
1125
|
+
fileSize: number;
|
1126
|
+
fileUrl: string;
|
1124
1127
|
};
|
1125
1128
|
roomId: string;
|
1126
1129
|
messageId: string;
|
@@ -1138,12 +1141,12 @@ export declare const roomContract: {
|
|
1138
1141
|
createdAt: Date;
|
1139
1142
|
updatedAt: Date;
|
1140
1143
|
deletedAt: Date | null;
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1144
|
+
extensionName: string;
|
1145
|
+
fileName: string;
|
1146
|
+
fileKey: string;
|
1147
|
+
bucketName: string;
|
1148
|
+
fileSize: number;
|
1149
|
+
fileUrl: string;
|
1147
1150
|
};
|
1148
1151
|
roomId: string;
|
1149
1152
|
messageId: string;
|
@@ -1212,12 +1215,12 @@ export declare const roomContract: {
|
|
1212
1215
|
createdAt: Date;
|
1213
1216
|
updatedAt: Date;
|
1214
1217
|
deletedAt: Date | null;
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1218
|
+
extensionName: string;
|
1219
|
+
fileName: string;
|
1220
|
+
fileKey: string;
|
1221
|
+
bucketName: string;
|
1222
|
+
fileSize: number;
|
1223
|
+
fileUrl: string;
|
1221
1224
|
};
|
1222
1225
|
roomId: string;
|
1223
1226
|
messageId: string;
|
@@ -1286,12 +1289,12 @@ export declare const roomContract: {
|
|
1286
1289
|
createdAt: Date;
|
1287
1290
|
updatedAt: Date;
|
1288
1291
|
deletedAt: Date | null;
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1292
|
+
extensionName: string;
|
1293
|
+
fileName: string;
|
1294
|
+
fileKey: string;
|
1295
|
+
bucketName: string;
|
1296
|
+
fileSize: number;
|
1297
|
+
fileUrl: string;
|
1295
1298
|
};
|
1296
1299
|
roomId: string;
|
1297
1300
|
messageId: string;
|
@@ -1420,34 +1423,34 @@ export declare const roomContract: {
|
|
1420
1423
|
createdAt: z.ZodDate;
|
1421
1424
|
updatedAt: z.ZodDate;
|
1422
1425
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1423
|
-
|
1424
|
-
|
1425
|
-
|
1426
|
-
|
1427
|
-
|
1428
|
-
|
1426
|
+
bucketName: z.ZodString;
|
1427
|
+
fileName: z.ZodString;
|
1428
|
+
fileKey: z.ZodString;
|
1429
|
+
fileSize: z.ZodNumber;
|
1430
|
+
fileUrl: z.ZodString;
|
1431
|
+
extensionName: z.ZodString;
|
1429
1432
|
}, "strip", z.ZodTypeAny, {
|
1430
1433
|
id: string;
|
1431
1434
|
createdAt: Date;
|
1432
1435
|
updatedAt: Date;
|
1433
1436
|
deletedAt: Date | null;
|
1434
|
-
|
1435
|
-
|
1436
|
-
|
1437
|
-
|
1438
|
-
|
1439
|
-
|
1437
|
+
extensionName: string;
|
1438
|
+
fileName: string;
|
1439
|
+
fileKey: string;
|
1440
|
+
bucketName: string;
|
1441
|
+
fileSize: number;
|
1442
|
+
fileUrl: string;
|
1440
1443
|
}, {
|
1441
1444
|
id: string;
|
1442
1445
|
createdAt: Date;
|
1443
1446
|
updatedAt: Date;
|
1444
1447
|
deletedAt: Date | null;
|
1445
|
-
|
1446
|
-
|
1447
|
-
|
1448
|
-
|
1449
|
-
|
1450
|
-
|
1448
|
+
extensionName: string;
|
1449
|
+
fileName: string;
|
1450
|
+
fileKey: string;
|
1451
|
+
bucketName: string;
|
1452
|
+
fileSize: number;
|
1453
|
+
fileUrl: string;
|
1451
1454
|
}>;
|
1452
1455
|
}, "strip", z.ZodTypeAny, {
|
1453
1456
|
id: string;
|
@@ -1462,12 +1465,12 @@ export declare const roomContract: {
|
|
1462
1465
|
createdAt: Date;
|
1463
1466
|
updatedAt: Date;
|
1464
1467
|
deletedAt: Date | null;
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1468
|
+
extensionName: string;
|
1469
|
+
fileName: string;
|
1470
|
+
fileKey: string;
|
1471
|
+
bucketName: string;
|
1472
|
+
fileSize: number;
|
1473
|
+
fileUrl: string;
|
1471
1474
|
};
|
1472
1475
|
roomId: string;
|
1473
1476
|
messageId: string;
|
@@ -1485,12 +1488,12 @@ export declare const roomContract: {
|
|
1485
1488
|
createdAt: Date;
|
1486
1489
|
updatedAt: Date;
|
1487
1490
|
deletedAt: Date | null;
|
1488
|
-
|
1489
|
-
|
1490
|
-
|
1491
|
-
|
1492
|
-
|
1493
|
-
|
1491
|
+
extensionName: string;
|
1492
|
+
fileName: string;
|
1493
|
+
fileKey: string;
|
1494
|
+
bucketName: string;
|
1495
|
+
fileSize: number;
|
1496
|
+
fileUrl: string;
|
1494
1497
|
};
|
1495
1498
|
roomId: string;
|
1496
1499
|
messageId: string;
|
@@ -1559,12 +1562,12 @@ export declare const roomContract: {
|
|
1559
1562
|
createdAt: Date;
|
1560
1563
|
updatedAt: Date;
|
1561
1564
|
deletedAt: Date | null;
|
1562
|
-
|
1563
|
-
|
1564
|
-
|
1565
|
-
|
1566
|
-
|
1567
|
-
|
1565
|
+
extensionName: string;
|
1566
|
+
fileName: string;
|
1567
|
+
fileKey: string;
|
1568
|
+
bucketName: string;
|
1569
|
+
fileSize: number;
|
1570
|
+
fileUrl: string;
|
1568
1571
|
};
|
1569
1572
|
roomId: string;
|
1570
1573
|
messageId: string;
|
@@ -1633,12 +1636,12 @@ export declare const roomContract: {
|
|
1633
1636
|
createdAt: Date;
|
1634
1637
|
updatedAt: Date;
|
1635
1638
|
deletedAt: Date | null;
|
1636
|
-
|
1637
|
-
|
1638
|
-
|
1639
|
-
|
1640
|
-
|
1641
|
-
|
1639
|
+
extensionName: string;
|
1640
|
+
fileName: string;
|
1641
|
+
fileKey: string;
|
1642
|
+
bucketName: string;
|
1643
|
+
fileSize: number;
|
1644
|
+
fileUrl: string;
|
1642
1645
|
};
|
1643
1646
|
roomId: string;
|
1644
1647
|
messageId: string;
|
@@ -1661,7 +1664,7 @@ export declare const roomContract: {
|
|
1661
1664
|
email: z.ZodString;
|
1662
1665
|
address: z.ZodNullable<z.ZodString>;
|
1663
1666
|
phone: z.ZodNullable<z.ZodString>;
|
1664
|
-
|
1667
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
1665
1668
|
}, "strip", z.ZodTypeAny, {
|
1666
1669
|
id: string;
|
1667
1670
|
address: string | null;
|
@@ -1671,7 +1674,7 @@ export declare const roomContract: {
|
|
1671
1674
|
updatedAt: Date;
|
1672
1675
|
deletedAt: Date | null;
|
1673
1676
|
phone: string | null;
|
1674
|
-
|
1677
|
+
notificationCount: number | null;
|
1675
1678
|
}, {
|
1676
1679
|
id: string;
|
1677
1680
|
address: string | null;
|
@@ -1681,7 +1684,7 @@ export declare const roomContract: {
|
|
1681
1684
|
updatedAt: Date;
|
1682
1685
|
deletedAt: Date | null;
|
1683
1686
|
phone: string | null;
|
1684
|
-
|
1687
|
+
notificationCount: number | null;
|
1685
1688
|
}>;
|
1686
1689
|
}, "strip", z.ZodTypeAny, {
|
1687
1690
|
id: string;
|
@@ -1698,7 +1701,7 @@ export declare const roomContract: {
|
|
1698
1701
|
updatedAt: Date;
|
1699
1702
|
deletedAt: Date | null;
|
1700
1703
|
phone: string | null;
|
1701
|
-
|
1704
|
+
notificationCount: number | null;
|
1702
1705
|
};
|
1703
1706
|
roomId: string;
|
1704
1707
|
actorId: string;
|
@@ -1717,7 +1720,7 @@ export declare const roomContract: {
|
|
1717
1720
|
updatedAt: Date;
|
1718
1721
|
deletedAt: Date | null;
|
1719
1722
|
phone: string | null;
|
1720
|
-
|
1723
|
+
notificationCount: number | null;
|
1721
1724
|
};
|
1722
1725
|
roomId: string;
|
1723
1726
|
actorId: string;
|
@@ -1738,12 +1741,12 @@ export declare const roomContract: {
|
|
1738
1741
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1739
1742
|
name: z.ZodString;
|
1740
1743
|
smtpHost: z.ZodString;
|
1741
|
-
smtpPort: z.
|
1742
|
-
smtpTlsPort: z.
|
1744
|
+
smtpPort: z.ZodNumber;
|
1745
|
+
smtpTlsPort: z.ZodNumber;
|
1743
1746
|
useTlsForSmtp: z.ZodBoolean;
|
1744
1747
|
imapHost: z.ZodString;
|
1745
|
-
imapPort: z.
|
1746
|
-
imapTlsPort: z.
|
1748
|
+
imapPort: z.ZodNumber;
|
1749
|
+
imapTlsPort: z.ZodNumber;
|
1747
1750
|
useTlsForImap: z.ZodBoolean;
|
1748
1751
|
}, "strip", z.ZodTypeAny, {
|
1749
1752
|
id: string;
|
@@ -1752,12 +1755,12 @@ export declare const roomContract: {
|
|
1752
1755
|
updatedAt: Date;
|
1753
1756
|
deletedAt: Date | null;
|
1754
1757
|
smtpHost: string;
|
1755
|
-
smtpPort:
|
1756
|
-
smtpTlsPort:
|
1758
|
+
smtpPort: number;
|
1759
|
+
smtpTlsPort: number;
|
1757
1760
|
useTlsForSmtp: boolean;
|
1758
1761
|
imapHost: string;
|
1759
|
-
imapPort:
|
1760
|
-
imapTlsPort:
|
1762
|
+
imapPort: number;
|
1763
|
+
imapTlsPort: number;
|
1761
1764
|
useTlsForImap: boolean;
|
1762
1765
|
}, {
|
1763
1766
|
id: string;
|
@@ -1766,12 +1769,12 @@ export declare const roomContract: {
|
|
1766
1769
|
updatedAt: Date;
|
1767
1770
|
deletedAt: Date | null;
|
1768
1771
|
smtpHost: string;
|
1769
|
-
smtpPort:
|
1770
|
-
smtpTlsPort:
|
1772
|
+
smtpPort: number;
|
1773
|
+
smtpTlsPort: number;
|
1771
1774
|
useTlsForSmtp: boolean;
|
1772
1775
|
imapHost: string;
|
1773
|
-
imapPort:
|
1774
|
-
imapTlsPort:
|
1776
|
+
imapPort: number;
|
1777
|
+
imapTlsPort: number;
|
1775
1778
|
useTlsForImap: boolean;
|
1776
1779
|
}>;
|
1777
1780
|
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">]>;
|
@@ -1792,12 +1795,12 @@ export declare const roomContract: {
|
|
1792
1795
|
updatedAt: Date;
|
1793
1796
|
deletedAt: Date | null;
|
1794
1797
|
smtpHost: string;
|
1795
|
-
smtpPort:
|
1796
|
-
smtpTlsPort:
|
1798
|
+
smtpPort: number;
|
1799
|
+
smtpTlsPort: number;
|
1797
1800
|
useTlsForSmtp: boolean;
|
1798
1801
|
imapHost: string;
|
1799
|
-
imapPort:
|
1800
|
-
imapTlsPort:
|
1802
|
+
imapPort: number;
|
1803
|
+
imapTlsPort: number;
|
1801
1804
|
useTlsForImap: boolean;
|
1802
1805
|
};
|
1803
1806
|
}, {
|
@@ -1817,12 +1820,12 @@ export declare const roomContract: {
|
|
1817
1820
|
updatedAt: Date;
|
1818
1821
|
deletedAt: Date | null;
|
1819
1822
|
smtpHost: string;
|
1820
|
-
smtpPort:
|
1821
|
-
smtpTlsPort:
|
1823
|
+
smtpPort: number;
|
1824
|
+
smtpTlsPort: number;
|
1822
1825
|
useTlsForSmtp: boolean;
|
1823
1826
|
imapHost: string;
|
1824
|
-
imapPort:
|
1825
|
-
imapTlsPort:
|
1827
|
+
imapPort: number;
|
1828
|
+
imapTlsPort: number;
|
1826
1829
|
useTlsForImap: boolean;
|
1827
1830
|
};
|
1828
1831
|
}>;
|
@@ -1905,12 +1908,12 @@ export declare const roomContract: {
|
|
1905
1908
|
createdAt: Date;
|
1906
1909
|
updatedAt: Date;
|
1907
1910
|
deletedAt: Date | null;
|
1908
|
-
|
1909
|
-
|
1910
|
-
|
1911
|
-
|
1912
|
-
|
1913
|
-
|
1911
|
+
extensionName: string;
|
1912
|
+
fileName: string;
|
1913
|
+
fileKey: string;
|
1914
|
+
bucketName: string;
|
1915
|
+
fileSize: number;
|
1916
|
+
fileUrl: string;
|
1914
1917
|
};
|
1915
1918
|
roomId: string;
|
1916
1919
|
messageId: string;
|
@@ -1926,7 +1929,7 @@ export declare const roomContract: {
|
|
1926
1929
|
updatedAt: Date;
|
1927
1930
|
deletedAt: Date | null;
|
1928
1931
|
phone: string | null;
|
1929
|
-
|
1932
|
+
notificationCount: number | null;
|
1930
1933
|
};
|
1931
1934
|
resolved: boolean;
|
1932
1935
|
assigneeId: string | null;
|
@@ -2029,12 +2032,12 @@ export declare const roomContract: {
|
|
2029
2032
|
createdAt: Date;
|
2030
2033
|
updatedAt: Date;
|
2031
2034
|
deletedAt: Date | null;
|
2032
|
-
|
2033
|
-
|
2034
|
-
|
2035
|
-
|
2036
|
-
|
2037
|
-
|
2035
|
+
extensionName: string;
|
2036
|
+
fileName: string;
|
2037
|
+
fileKey: string;
|
2038
|
+
bucketName: string;
|
2039
|
+
fileSize: number;
|
2040
|
+
fileUrl: string;
|
2038
2041
|
};
|
2039
2042
|
roomId: string;
|
2040
2043
|
messageId: string;
|
@@ -2104,12 +2107,12 @@ export declare const roomContract: {
|
|
2104
2107
|
createdAt: Date;
|
2105
2108
|
updatedAt: Date;
|
2106
2109
|
deletedAt: Date | null;
|
2107
|
-
|
2108
|
-
|
2109
|
-
|
2110
|
-
|
2111
|
-
|
2112
|
-
|
2110
|
+
extensionName: string;
|
2111
|
+
fileName: string;
|
2112
|
+
fileKey: string;
|
2113
|
+
bucketName: string;
|
2114
|
+
fileSize: number;
|
2115
|
+
fileUrl: string;
|
2113
2116
|
};
|
2114
2117
|
roomId: string;
|
2115
2118
|
messageId: string;
|
@@ -2179,12 +2182,12 @@ export declare const roomContract: {
|
|
2179
2182
|
createdAt: Date;
|
2180
2183
|
updatedAt: Date;
|
2181
2184
|
deletedAt: Date | null;
|
2182
|
-
|
2183
|
-
|
2184
|
-
|
2185
|
-
|
2186
|
-
|
2187
|
-
|
2185
|
+
extensionName: string;
|
2186
|
+
fileName: string;
|
2187
|
+
fileKey: string;
|
2188
|
+
bucketName: string;
|
2189
|
+
fileSize: number;
|
2190
|
+
fileUrl: string;
|
2188
2191
|
};
|
2189
2192
|
roomId: string;
|
2190
2193
|
messageId: string;
|
@@ -2205,7 +2208,7 @@ export declare const roomContract: {
|
|
2205
2208
|
updatedAt: Date;
|
2206
2209
|
deletedAt: Date | null;
|
2207
2210
|
phone: string | null;
|
2208
|
-
|
2211
|
+
notificationCount: number | null;
|
2209
2212
|
};
|
2210
2213
|
roomId: string;
|
2211
2214
|
actorId: string;
|
@@ -2227,12 +2230,12 @@ export declare const roomContract: {
|
|
2227
2230
|
updatedAt: Date;
|
2228
2231
|
deletedAt: Date | null;
|
2229
2232
|
smtpHost: string;
|
2230
|
-
smtpPort:
|
2231
|
-
smtpTlsPort:
|
2233
|
+
smtpPort: number;
|
2234
|
+
smtpTlsPort: number;
|
2232
2235
|
useTlsForSmtp: boolean;
|
2233
2236
|
imapHost: string;
|
2234
|
-
imapPort:
|
2235
|
-
imapTlsPort:
|
2237
|
+
imapPort: number;
|
2238
|
+
imapTlsPort: number;
|
2236
2239
|
useTlsForImap: boolean;
|
2237
2240
|
};
|
2238
2241
|
};
|
@@ -2315,12 +2318,12 @@ export declare const roomContract: {
|
|
2315
2318
|
createdAt: Date;
|
2316
2319
|
updatedAt: Date;
|
2317
2320
|
deletedAt: Date | null;
|
2318
|
-
|
2319
|
-
|
2320
|
-
|
2321
|
-
|
2322
|
-
|
2323
|
-
|
2321
|
+
extensionName: string;
|
2322
|
+
fileName: string;
|
2323
|
+
fileKey: string;
|
2324
|
+
bucketName: string;
|
2325
|
+
fileSize: number;
|
2326
|
+
fileUrl: string;
|
2324
2327
|
};
|
2325
2328
|
roomId: string;
|
2326
2329
|
messageId: string;
|
@@ -2336,7 +2339,7 @@ export declare const roomContract: {
|
|
2336
2339
|
updatedAt: Date;
|
2337
2340
|
deletedAt: Date | null;
|
2338
2341
|
phone: string | null;
|
2339
|
-
|
2342
|
+
notificationCount: number | null;
|
2340
2343
|
};
|
2341
2344
|
resolved: boolean;
|
2342
2345
|
assigneeId: string | null;
|
@@ -2439,12 +2442,12 @@ export declare const roomContract: {
|
|
2439
2442
|
createdAt: Date;
|
2440
2443
|
updatedAt: Date;
|
2441
2444
|
deletedAt: Date | null;
|
2442
|
-
|
2443
|
-
|
2444
|
-
|
2445
|
-
|
2446
|
-
|
2447
|
-
|
2445
|
+
extensionName: string;
|
2446
|
+
fileName: string;
|
2447
|
+
fileKey: string;
|
2448
|
+
bucketName: string;
|
2449
|
+
fileSize: number;
|
2450
|
+
fileUrl: string;
|
2448
2451
|
};
|
2449
2452
|
roomId: string;
|
2450
2453
|
messageId: string;
|
@@ -2514,12 +2517,12 @@ export declare const roomContract: {
|
|
2514
2517
|
createdAt: Date;
|
2515
2518
|
updatedAt: Date;
|
2516
2519
|
deletedAt: Date | null;
|
2517
|
-
|
2518
|
-
|
2519
|
-
|
2520
|
-
|
2521
|
-
|
2522
|
-
|
2520
|
+
extensionName: string;
|
2521
|
+
fileName: string;
|
2522
|
+
fileKey: string;
|
2523
|
+
bucketName: string;
|
2524
|
+
fileSize: number;
|
2525
|
+
fileUrl: string;
|
2523
2526
|
};
|
2524
2527
|
roomId: string;
|
2525
2528
|
messageId: string;
|
@@ -2589,12 +2592,12 @@ export declare const roomContract: {
|
|
2589
2592
|
createdAt: Date;
|
2590
2593
|
updatedAt: Date;
|
2591
2594
|
deletedAt: Date | null;
|
2592
|
-
|
2593
|
-
|
2594
|
-
|
2595
|
-
|
2596
|
-
|
2597
|
-
|
2595
|
+
extensionName: string;
|
2596
|
+
fileName: string;
|
2597
|
+
fileKey: string;
|
2598
|
+
bucketName: string;
|
2599
|
+
fileSize: number;
|
2600
|
+
fileUrl: string;
|
2598
2601
|
};
|
2599
2602
|
roomId: string;
|
2600
2603
|
messageId: string;
|
@@ -2615,7 +2618,7 @@ export declare const roomContract: {
|
|
2615
2618
|
updatedAt: Date;
|
2616
2619
|
deletedAt: Date | null;
|
2617
2620
|
phone: string | null;
|
2618
|
-
|
2621
|
+
notificationCount: number | null;
|
2619
2622
|
};
|
2620
2623
|
roomId: string;
|
2621
2624
|
actorId: string;
|
@@ -2637,12 +2640,12 @@ export declare const roomContract: {
|
|
2637
2640
|
updatedAt: Date;
|
2638
2641
|
deletedAt: Date | null;
|
2639
2642
|
smtpHost: string;
|
2640
|
-
smtpPort:
|
2641
|
-
smtpTlsPort:
|
2643
|
+
smtpPort: number;
|
2644
|
+
smtpTlsPort: number;
|
2642
2645
|
useTlsForSmtp: boolean;
|
2643
2646
|
imapHost: string;
|
2644
|
-
imapPort:
|
2645
|
-
imapTlsPort:
|
2647
|
+
imapPort: number;
|
2648
|
+
imapTlsPort: number;
|
2646
2649
|
useTlsForImap: boolean;
|
2647
2650
|
};
|
2648
2651
|
};
|
@@ -2730,12 +2733,12 @@ export declare const roomContract: {
|
|
2730
2733
|
createdAt: Date;
|
2731
2734
|
updatedAt: Date;
|
2732
2735
|
deletedAt: Date | null;
|
2733
|
-
|
2734
|
-
|
2735
|
-
|
2736
|
-
|
2737
|
-
|
2738
|
-
|
2736
|
+
extensionName: string;
|
2737
|
+
fileName: string;
|
2738
|
+
fileKey: string;
|
2739
|
+
bucketName: string;
|
2740
|
+
fileSize: number;
|
2741
|
+
fileUrl: string;
|
2739
2742
|
};
|
2740
2743
|
roomId: string;
|
2741
2744
|
messageId: string;
|
@@ -2751,7 +2754,7 @@ export declare const roomContract: {
|
|
2751
2754
|
updatedAt: Date;
|
2752
2755
|
deletedAt: Date | null;
|
2753
2756
|
phone: string | null;
|
2754
|
-
|
2757
|
+
notificationCount: number | null;
|
2755
2758
|
};
|
2756
2759
|
resolved: boolean;
|
2757
2760
|
assigneeId: string | null;
|
@@ -2854,12 +2857,12 @@ export declare const roomContract: {
|
|
2854
2857
|
createdAt: Date;
|
2855
2858
|
updatedAt: Date;
|
2856
2859
|
deletedAt: Date | null;
|
2857
|
-
|
2858
|
-
|
2859
|
-
|
2860
|
-
|
2861
|
-
|
2862
|
-
|
2860
|
+
extensionName: string;
|
2861
|
+
fileName: string;
|
2862
|
+
fileKey: string;
|
2863
|
+
bucketName: string;
|
2864
|
+
fileSize: number;
|
2865
|
+
fileUrl: string;
|
2863
2866
|
};
|
2864
2867
|
roomId: string;
|
2865
2868
|
messageId: string;
|
@@ -2929,12 +2932,12 @@ export declare const roomContract: {
|
|
2929
2932
|
createdAt: Date;
|
2930
2933
|
updatedAt: Date;
|
2931
2934
|
deletedAt: Date | null;
|
2932
|
-
|
2933
|
-
|
2934
|
-
|
2935
|
-
|
2936
|
-
|
2937
|
-
|
2935
|
+
extensionName: string;
|
2936
|
+
fileName: string;
|
2937
|
+
fileKey: string;
|
2938
|
+
bucketName: string;
|
2939
|
+
fileSize: number;
|
2940
|
+
fileUrl: string;
|
2938
2941
|
};
|
2939
2942
|
roomId: string;
|
2940
2943
|
messageId: string;
|
@@ -3004,12 +3007,12 @@ export declare const roomContract: {
|
|
3004
3007
|
createdAt: Date;
|
3005
3008
|
updatedAt: Date;
|
3006
3009
|
deletedAt: Date | null;
|
3007
|
-
|
3008
|
-
|
3009
|
-
|
3010
|
-
|
3011
|
-
|
3012
|
-
|
3010
|
+
extensionName: string;
|
3011
|
+
fileName: string;
|
3012
|
+
fileKey: string;
|
3013
|
+
bucketName: string;
|
3014
|
+
fileSize: number;
|
3015
|
+
fileUrl: string;
|
3013
3016
|
};
|
3014
3017
|
roomId: string;
|
3015
3018
|
messageId: string;
|
@@ -3030,7 +3033,7 @@ export declare const roomContract: {
|
|
3030
3033
|
updatedAt: Date;
|
3031
3034
|
deletedAt: Date | null;
|
3032
3035
|
phone: string | null;
|
3033
|
-
|
3036
|
+
notificationCount: number | null;
|
3034
3037
|
};
|
3035
3038
|
roomId: string;
|
3036
3039
|
actorId: string;
|
@@ -3052,12 +3055,12 @@ export declare const roomContract: {
|
|
3052
3055
|
updatedAt: Date;
|
3053
3056
|
deletedAt: Date | null;
|
3054
3057
|
smtpHost: string;
|
3055
|
-
smtpPort:
|
3056
|
-
smtpTlsPort:
|
3058
|
+
smtpPort: number;
|
3059
|
+
smtpTlsPort: number;
|
3057
3060
|
useTlsForSmtp: boolean;
|
3058
3061
|
imapHost: string;
|
3059
|
-
imapPort:
|
3060
|
-
imapTlsPort:
|
3062
|
+
imapPort: number;
|
3063
|
+
imapTlsPort: number;
|
3061
3064
|
useTlsForImap: boolean;
|
3062
3065
|
};
|
3063
3066
|
};
|
@@ -3146,12 +3149,12 @@ export declare const roomContract: {
|
|
3146
3149
|
createdAt: Date;
|
3147
3150
|
updatedAt: Date;
|
3148
3151
|
deletedAt: Date | null;
|
3149
|
-
|
3150
|
-
|
3151
|
-
|
3152
|
-
|
3153
|
-
|
3154
|
-
|
3152
|
+
extensionName: string;
|
3153
|
+
fileName: string;
|
3154
|
+
fileKey: string;
|
3155
|
+
bucketName: string;
|
3156
|
+
fileSize: number;
|
3157
|
+
fileUrl: string;
|
3155
3158
|
};
|
3156
3159
|
roomId: string;
|
3157
3160
|
messageId: string;
|
@@ -3167,7 +3170,7 @@ export declare const roomContract: {
|
|
3167
3170
|
updatedAt: Date;
|
3168
3171
|
deletedAt: Date | null;
|
3169
3172
|
phone: string | null;
|
3170
|
-
|
3173
|
+
notificationCount: number | null;
|
3171
3174
|
};
|
3172
3175
|
resolved: boolean;
|
3173
3176
|
assigneeId: string | null;
|
@@ -3270,12 +3273,12 @@ export declare const roomContract: {
|
|
3270
3273
|
createdAt: Date;
|
3271
3274
|
updatedAt: Date;
|
3272
3275
|
deletedAt: Date | null;
|
3273
|
-
|
3274
|
-
|
3275
|
-
|
3276
|
-
|
3277
|
-
|
3278
|
-
|
3276
|
+
extensionName: string;
|
3277
|
+
fileName: string;
|
3278
|
+
fileKey: string;
|
3279
|
+
bucketName: string;
|
3280
|
+
fileSize: number;
|
3281
|
+
fileUrl: string;
|
3279
3282
|
};
|
3280
3283
|
roomId: string;
|
3281
3284
|
messageId: string;
|
@@ -3345,12 +3348,12 @@ export declare const roomContract: {
|
|
3345
3348
|
createdAt: Date;
|
3346
3349
|
updatedAt: Date;
|
3347
3350
|
deletedAt: Date | null;
|
3348
|
-
|
3349
|
-
|
3350
|
-
|
3351
|
-
|
3352
|
-
|
3353
|
-
|
3351
|
+
extensionName: string;
|
3352
|
+
fileName: string;
|
3353
|
+
fileKey: string;
|
3354
|
+
bucketName: string;
|
3355
|
+
fileSize: number;
|
3356
|
+
fileUrl: string;
|
3354
3357
|
};
|
3355
3358
|
roomId: string;
|
3356
3359
|
messageId: string;
|
@@ -3420,12 +3423,12 @@ export declare const roomContract: {
|
|
3420
3423
|
createdAt: Date;
|
3421
3424
|
updatedAt: Date;
|
3422
3425
|
deletedAt: Date | null;
|
3423
|
-
|
3424
|
-
|
3425
|
-
|
3426
|
-
|
3427
|
-
|
3428
|
-
|
3426
|
+
extensionName: string;
|
3427
|
+
fileName: string;
|
3428
|
+
fileKey: string;
|
3429
|
+
bucketName: string;
|
3430
|
+
fileSize: number;
|
3431
|
+
fileUrl: string;
|
3429
3432
|
};
|
3430
3433
|
roomId: string;
|
3431
3434
|
messageId: string;
|
@@ -3446,7 +3449,7 @@ export declare const roomContract: {
|
|
3446
3449
|
updatedAt: Date;
|
3447
3450
|
deletedAt: Date | null;
|
3448
3451
|
phone: string | null;
|
3449
|
-
|
3452
|
+
notificationCount: number | null;
|
3450
3453
|
};
|
3451
3454
|
roomId: string;
|
3452
3455
|
actorId: string;
|
@@ -3468,12 +3471,12 @@ export declare const roomContract: {
|
|
3468
3471
|
updatedAt: Date;
|
3469
3472
|
deletedAt: Date | null;
|
3470
3473
|
smtpHost: string;
|
3471
|
-
smtpPort:
|
3472
|
-
smtpTlsPort:
|
3474
|
+
smtpPort: number;
|
3475
|
+
smtpTlsPort: number;
|
3473
3476
|
useTlsForSmtp: boolean;
|
3474
3477
|
imapHost: string;
|
3475
|
-
imapPort:
|
3476
|
-
imapTlsPort:
|
3478
|
+
imapPort: number;
|
3479
|
+
imapTlsPort: number;
|
3477
3480
|
useTlsForImap: boolean;
|
3478
3481
|
};
|
3479
3482
|
};
|
@@ -3753,34 +3756,34 @@ export declare const roomContract: {
|
|
3753
3756
|
createdAt: z.ZodDate;
|
3754
3757
|
updatedAt: z.ZodDate;
|
3755
3758
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
3756
|
-
|
3757
|
-
|
3758
|
-
|
3759
|
-
|
3760
|
-
|
3761
|
-
|
3759
|
+
bucketName: z.ZodString;
|
3760
|
+
fileName: z.ZodString;
|
3761
|
+
fileKey: z.ZodString;
|
3762
|
+
fileSize: z.ZodNumber;
|
3763
|
+
fileUrl: z.ZodString;
|
3764
|
+
extensionName: z.ZodString;
|
3762
3765
|
}, "strip", z.ZodTypeAny, {
|
3763
3766
|
id: string;
|
3764
3767
|
createdAt: Date;
|
3765
3768
|
updatedAt: Date;
|
3766
3769
|
deletedAt: Date | null;
|
3767
|
-
|
3768
|
-
|
3769
|
-
|
3770
|
-
|
3771
|
-
|
3772
|
-
|
3770
|
+
extensionName: string;
|
3771
|
+
fileName: string;
|
3772
|
+
fileKey: string;
|
3773
|
+
bucketName: string;
|
3774
|
+
fileSize: number;
|
3775
|
+
fileUrl: string;
|
3773
3776
|
}, {
|
3774
3777
|
id: string;
|
3775
3778
|
createdAt: Date;
|
3776
3779
|
updatedAt: Date;
|
3777
3780
|
deletedAt: Date | null;
|
3778
|
-
|
3779
|
-
|
3780
|
-
|
3781
|
-
|
3782
|
-
|
3783
|
-
|
3781
|
+
extensionName: string;
|
3782
|
+
fileName: string;
|
3783
|
+
fileKey: string;
|
3784
|
+
bucketName: string;
|
3785
|
+
fileSize: number;
|
3786
|
+
fileUrl: string;
|
3784
3787
|
}>;
|
3785
3788
|
}, "strip", z.ZodTypeAny, {
|
3786
3789
|
id: string;
|
@@ -3795,12 +3798,12 @@ export declare const roomContract: {
|
|
3795
3798
|
createdAt: Date;
|
3796
3799
|
updatedAt: Date;
|
3797
3800
|
deletedAt: Date | null;
|
3798
|
-
|
3799
|
-
|
3800
|
-
|
3801
|
-
|
3802
|
-
|
3803
|
-
|
3801
|
+
extensionName: string;
|
3802
|
+
fileName: string;
|
3803
|
+
fileKey: string;
|
3804
|
+
bucketName: string;
|
3805
|
+
fileSize: number;
|
3806
|
+
fileUrl: string;
|
3804
3807
|
};
|
3805
3808
|
roomId: string;
|
3806
3809
|
messageId: string;
|
@@ -3818,12 +3821,12 @@ export declare const roomContract: {
|
|
3818
3821
|
createdAt: Date;
|
3819
3822
|
updatedAt: Date;
|
3820
3823
|
deletedAt: Date | null;
|
3821
|
-
|
3822
|
-
|
3823
|
-
|
3824
|
-
|
3825
|
-
|
3826
|
-
|
3824
|
+
extensionName: string;
|
3825
|
+
fileName: string;
|
3826
|
+
fileKey: string;
|
3827
|
+
bucketName: string;
|
3828
|
+
fileSize: number;
|
3829
|
+
fileUrl: string;
|
3827
3830
|
};
|
3828
3831
|
roomId: string;
|
3829
3832
|
messageId: string;
|
@@ -3892,12 +3895,12 @@ export declare const roomContract: {
|
|
3892
3895
|
createdAt: Date;
|
3893
3896
|
updatedAt: Date;
|
3894
3897
|
deletedAt: Date | null;
|
3895
|
-
|
3896
|
-
|
3897
|
-
|
3898
|
-
|
3899
|
-
|
3900
|
-
|
3898
|
+
extensionName: string;
|
3899
|
+
fileName: string;
|
3900
|
+
fileKey: string;
|
3901
|
+
bucketName: string;
|
3902
|
+
fileSize: number;
|
3903
|
+
fileUrl: string;
|
3901
3904
|
};
|
3902
3905
|
roomId: string;
|
3903
3906
|
messageId: string;
|
@@ -3966,12 +3969,12 @@ export declare const roomContract: {
|
|
3966
3969
|
createdAt: Date;
|
3967
3970
|
updatedAt: Date;
|
3968
3971
|
deletedAt: Date | null;
|
3969
|
-
|
3970
|
-
|
3971
|
-
|
3972
|
-
|
3973
|
-
|
3974
|
-
|
3972
|
+
extensionName: string;
|
3973
|
+
fileName: string;
|
3974
|
+
fileKey: string;
|
3975
|
+
bucketName: string;
|
3976
|
+
fileSize: number;
|
3977
|
+
fileUrl: string;
|
3975
3978
|
};
|
3976
3979
|
roomId: string;
|
3977
3980
|
messageId: string;
|
@@ -4100,34 +4103,34 @@ export declare const roomContract: {
|
|
4100
4103
|
createdAt: z.ZodDate;
|
4101
4104
|
updatedAt: z.ZodDate;
|
4102
4105
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
4103
|
-
|
4104
|
-
|
4105
|
-
|
4106
|
-
|
4107
|
-
|
4108
|
-
|
4106
|
+
bucketName: z.ZodString;
|
4107
|
+
fileName: z.ZodString;
|
4108
|
+
fileKey: z.ZodString;
|
4109
|
+
fileSize: z.ZodNumber;
|
4110
|
+
fileUrl: z.ZodString;
|
4111
|
+
extensionName: z.ZodString;
|
4109
4112
|
}, "strip", z.ZodTypeAny, {
|
4110
4113
|
id: string;
|
4111
4114
|
createdAt: Date;
|
4112
4115
|
updatedAt: Date;
|
4113
4116
|
deletedAt: Date | null;
|
4114
|
-
|
4115
|
-
|
4116
|
-
|
4117
|
-
|
4118
|
-
|
4119
|
-
|
4117
|
+
extensionName: string;
|
4118
|
+
fileName: string;
|
4119
|
+
fileKey: string;
|
4120
|
+
bucketName: string;
|
4121
|
+
fileSize: number;
|
4122
|
+
fileUrl: string;
|
4120
4123
|
}, {
|
4121
4124
|
id: string;
|
4122
4125
|
createdAt: Date;
|
4123
4126
|
updatedAt: Date;
|
4124
4127
|
deletedAt: Date | null;
|
4125
|
-
|
4126
|
-
|
4127
|
-
|
4128
|
-
|
4129
|
-
|
4130
|
-
|
4128
|
+
extensionName: string;
|
4129
|
+
fileName: string;
|
4130
|
+
fileKey: string;
|
4131
|
+
bucketName: string;
|
4132
|
+
fileSize: number;
|
4133
|
+
fileUrl: string;
|
4131
4134
|
}>;
|
4132
4135
|
}, "strip", z.ZodTypeAny, {
|
4133
4136
|
id: string;
|
@@ -4142,12 +4145,12 @@ export declare const roomContract: {
|
|
4142
4145
|
createdAt: Date;
|
4143
4146
|
updatedAt: Date;
|
4144
4147
|
deletedAt: Date | null;
|
4145
|
-
|
4146
|
-
|
4147
|
-
|
4148
|
-
|
4149
|
-
|
4150
|
-
|
4148
|
+
extensionName: string;
|
4149
|
+
fileName: string;
|
4150
|
+
fileKey: string;
|
4151
|
+
bucketName: string;
|
4152
|
+
fileSize: number;
|
4153
|
+
fileUrl: string;
|
4151
4154
|
};
|
4152
4155
|
roomId: string;
|
4153
4156
|
messageId: string;
|
@@ -4165,12 +4168,12 @@ export declare const roomContract: {
|
|
4165
4168
|
createdAt: Date;
|
4166
4169
|
updatedAt: Date;
|
4167
4170
|
deletedAt: Date | null;
|
4168
|
-
|
4169
|
-
|
4170
|
-
|
4171
|
-
|
4172
|
-
|
4173
|
-
|
4171
|
+
extensionName: string;
|
4172
|
+
fileName: string;
|
4173
|
+
fileKey: string;
|
4174
|
+
bucketName: string;
|
4175
|
+
fileSize: number;
|
4176
|
+
fileUrl: string;
|
4174
4177
|
};
|
4175
4178
|
roomId: string;
|
4176
4179
|
messageId: string;
|
@@ -4239,12 +4242,12 @@ export declare const roomContract: {
|
|
4239
4242
|
createdAt: Date;
|
4240
4243
|
updatedAt: Date;
|
4241
4244
|
deletedAt: Date | null;
|
4242
|
-
|
4243
|
-
|
4244
|
-
|
4245
|
-
|
4246
|
-
|
4247
|
-
|
4245
|
+
extensionName: string;
|
4246
|
+
fileName: string;
|
4247
|
+
fileKey: string;
|
4248
|
+
bucketName: string;
|
4249
|
+
fileSize: number;
|
4250
|
+
fileUrl: string;
|
4248
4251
|
};
|
4249
4252
|
roomId: string;
|
4250
4253
|
messageId: string;
|
@@ -4313,12 +4316,12 @@ export declare const roomContract: {
|
|
4313
4316
|
createdAt: Date;
|
4314
4317
|
updatedAt: Date;
|
4315
4318
|
deletedAt: Date | null;
|
4316
|
-
|
4317
|
-
|
4318
|
-
|
4319
|
-
|
4320
|
-
|
4321
|
-
|
4319
|
+
extensionName: string;
|
4320
|
+
fileName: string;
|
4321
|
+
fileKey: string;
|
4322
|
+
bucketName: string;
|
4323
|
+
fileSize: number;
|
4324
|
+
fileUrl: string;
|
4322
4325
|
};
|
4323
4326
|
roomId: string;
|
4324
4327
|
messageId: string;
|
@@ -4356,7 +4359,7 @@ export declare const roomContract: {
|
|
4356
4359
|
email: z.ZodString;
|
4357
4360
|
address: z.ZodNullable<z.ZodString>;
|
4358
4361
|
phone: z.ZodNullable<z.ZodString>;
|
4359
|
-
|
4362
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
4360
4363
|
}, "strip", z.ZodTypeAny, {
|
4361
4364
|
id: string;
|
4362
4365
|
address: string | null;
|
@@ -4366,7 +4369,7 @@ export declare const roomContract: {
|
|
4366
4369
|
updatedAt: Date;
|
4367
4370
|
deletedAt: Date | null;
|
4368
4371
|
phone: string | null;
|
4369
|
-
|
4372
|
+
notificationCount: number | null;
|
4370
4373
|
}, {
|
4371
4374
|
id: string;
|
4372
4375
|
address: string | null;
|
@@ -4376,7 +4379,7 @@ export declare const roomContract: {
|
|
4376
4379
|
updatedAt: Date;
|
4377
4380
|
deletedAt: Date | null;
|
4378
4381
|
phone: string | null;
|
4379
|
-
|
4382
|
+
notificationCount: number | null;
|
4380
4383
|
}>;
|
4381
4384
|
messages: z.ZodArray<z.ZodObject<{
|
4382
4385
|
id: z.ZodString;
|
@@ -4500,34 +4503,34 @@ export declare const roomContract: {
|
|
4500
4503
|
createdAt: z.ZodDate;
|
4501
4504
|
updatedAt: z.ZodDate;
|
4502
4505
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
4503
|
-
|
4504
|
-
|
4505
|
-
|
4506
|
-
|
4507
|
-
|
4508
|
-
|
4506
|
+
bucketName: z.ZodString;
|
4507
|
+
fileName: z.ZodString;
|
4508
|
+
fileKey: z.ZodString;
|
4509
|
+
fileSize: z.ZodNumber;
|
4510
|
+
fileUrl: z.ZodString;
|
4511
|
+
extensionName: z.ZodString;
|
4509
4512
|
}, "strip", z.ZodTypeAny, {
|
4510
4513
|
id: string;
|
4511
4514
|
createdAt: Date;
|
4512
4515
|
updatedAt: Date;
|
4513
4516
|
deletedAt: Date | null;
|
4514
|
-
|
4515
|
-
|
4516
|
-
|
4517
|
-
|
4518
|
-
|
4519
|
-
|
4517
|
+
extensionName: string;
|
4518
|
+
fileName: string;
|
4519
|
+
fileKey: string;
|
4520
|
+
bucketName: string;
|
4521
|
+
fileSize: number;
|
4522
|
+
fileUrl: string;
|
4520
4523
|
}, {
|
4521
4524
|
id: string;
|
4522
4525
|
createdAt: Date;
|
4523
4526
|
updatedAt: Date;
|
4524
4527
|
deletedAt: Date | null;
|
4525
|
-
|
4526
|
-
|
4527
|
-
|
4528
|
-
|
4529
|
-
|
4530
|
-
|
4528
|
+
extensionName: string;
|
4529
|
+
fileName: string;
|
4530
|
+
fileKey: string;
|
4531
|
+
bucketName: string;
|
4532
|
+
fileSize: number;
|
4533
|
+
fileUrl: string;
|
4531
4534
|
}>;
|
4532
4535
|
}, "strip", z.ZodTypeAny, {
|
4533
4536
|
id: string;
|
@@ -4542,12 +4545,12 @@ export declare const roomContract: {
|
|
4542
4545
|
createdAt: Date;
|
4543
4546
|
updatedAt: Date;
|
4544
4547
|
deletedAt: Date | null;
|
4545
|
-
|
4546
|
-
|
4547
|
-
|
4548
|
-
|
4549
|
-
|
4550
|
-
|
4548
|
+
extensionName: string;
|
4549
|
+
fileName: string;
|
4550
|
+
fileKey: string;
|
4551
|
+
bucketName: string;
|
4552
|
+
fileSize: number;
|
4553
|
+
fileUrl: string;
|
4551
4554
|
};
|
4552
4555
|
roomId: string;
|
4553
4556
|
messageId: string;
|
@@ -4565,12 +4568,12 @@ export declare const roomContract: {
|
|
4565
4568
|
createdAt: Date;
|
4566
4569
|
updatedAt: Date;
|
4567
4570
|
deletedAt: Date | null;
|
4568
|
-
|
4569
|
-
|
4570
|
-
|
4571
|
-
|
4572
|
-
|
4573
|
-
|
4571
|
+
extensionName: string;
|
4572
|
+
fileName: string;
|
4573
|
+
fileKey: string;
|
4574
|
+
bucketName: string;
|
4575
|
+
fileSize: number;
|
4576
|
+
fileUrl: string;
|
4574
4577
|
};
|
4575
4578
|
roomId: string;
|
4576
4579
|
messageId: string;
|
@@ -4639,12 +4642,12 @@ export declare const roomContract: {
|
|
4639
4642
|
createdAt: Date;
|
4640
4643
|
updatedAt: Date;
|
4641
4644
|
deletedAt: Date | null;
|
4642
|
-
|
4643
|
-
|
4644
|
-
|
4645
|
-
|
4646
|
-
|
4647
|
-
|
4645
|
+
extensionName: string;
|
4646
|
+
fileName: string;
|
4647
|
+
fileKey: string;
|
4648
|
+
bucketName: string;
|
4649
|
+
fileSize: number;
|
4650
|
+
fileUrl: string;
|
4648
4651
|
};
|
4649
4652
|
roomId: string;
|
4650
4653
|
messageId: string;
|
@@ -4713,12 +4716,12 @@ export declare const roomContract: {
|
|
4713
4716
|
createdAt: Date;
|
4714
4717
|
updatedAt: Date;
|
4715
4718
|
deletedAt: Date | null;
|
4716
|
-
|
4717
|
-
|
4718
|
-
|
4719
|
-
|
4720
|
-
|
4721
|
-
|
4719
|
+
extensionName: string;
|
4720
|
+
fileName: string;
|
4721
|
+
fileKey: string;
|
4722
|
+
bucketName: string;
|
4723
|
+
fileSize: number;
|
4724
|
+
fileUrl: string;
|
4722
4725
|
};
|
4723
4726
|
roomId: string;
|
4724
4727
|
messageId: string;
|
@@ -4847,34 +4850,34 @@ export declare const roomContract: {
|
|
4847
4850
|
createdAt: z.ZodDate;
|
4848
4851
|
updatedAt: z.ZodDate;
|
4849
4852
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
4850
|
-
|
4851
|
-
|
4852
|
-
|
4853
|
-
|
4854
|
-
|
4855
|
-
|
4853
|
+
bucketName: z.ZodString;
|
4854
|
+
fileName: z.ZodString;
|
4855
|
+
fileKey: z.ZodString;
|
4856
|
+
fileSize: z.ZodNumber;
|
4857
|
+
fileUrl: z.ZodString;
|
4858
|
+
extensionName: z.ZodString;
|
4856
4859
|
}, "strip", z.ZodTypeAny, {
|
4857
4860
|
id: string;
|
4858
4861
|
createdAt: Date;
|
4859
4862
|
updatedAt: Date;
|
4860
4863
|
deletedAt: Date | null;
|
4861
|
-
|
4862
|
-
|
4863
|
-
|
4864
|
-
|
4865
|
-
|
4866
|
-
|
4864
|
+
extensionName: string;
|
4865
|
+
fileName: string;
|
4866
|
+
fileKey: string;
|
4867
|
+
bucketName: string;
|
4868
|
+
fileSize: number;
|
4869
|
+
fileUrl: string;
|
4867
4870
|
}, {
|
4868
4871
|
id: string;
|
4869
4872
|
createdAt: Date;
|
4870
4873
|
updatedAt: Date;
|
4871
4874
|
deletedAt: Date | null;
|
4872
|
-
|
4873
|
-
|
4874
|
-
|
4875
|
-
|
4876
|
-
|
4877
|
-
|
4875
|
+
extensionName: string;
|
4876
|
+
fileName: string;
|
4877
|
+
fileKey: string;
|
4878
|
+
bucketName: string;
|
4879
|
+
fileSize: number;
|
4880
|
+
fileUrl: string;
|
4878
4881
|
}>;
|
4879
4882
|
}, "strip", z.ZodTypeAny, {
|
4880
4883
|
id: string;
|
@@ -4889,12 +4892,12 @@ export declare const roomContract: {
|
|
4889
4892
|
createdAt: Date;
|
4890
4893
|
updatedAt: Date;
|
4891
4894
|
deletedAt: Date | null;
|
4892
|
-
|
4893
|
-
|
4894
|
-
|
4895
|
-
|
4896
|
-
|
4897
|
-
|
4895
|
+
extensionName: string;
|
4896
|
+
fileName: string;
|
4897
|
+
fileKey: string;
|
4898
|
+
bucketName: string;
|
4899
|
+
fileSize: number;
|
4900
|
+
fileUrl: string;
|
4898
4901
|
};
|
4899
4902
|
roomId: string;
|
4900
4903
|
messageId: string;
|
@@ -4912,12 +4915,12 @@ export declare const roomContract: {
|
|
4912
4915
|
createdAt: Date;
|
4913
4916
|
updatedAt: Date;
|
4914
4917
|
deletedAt: Date | null;
|
4915
|
-
|
4916
|
-
|
4917
|
-
|
4918
|
-
|
4919
|
-
|
4920
|
-
|
4918
|
+
extensionName: string;
|
4919
|
+
fileName: string;
|
4920
|
+
fileKey: string;
|
4921
|
+
bucketName: string;
|
4922
|
+
fileSize: number;
|
4923
|
+
fileUrl: string;
|
4921
4924
|
};
|
4922
4925
|
roomId: string;
|
4923
4926
|
messageId: string;
|
@@ -4986,12 +4989,12 @@ export declare const roomContract: {
|
|
4986
4989
|
createdAt: Date;
|
4987
4990
|
updatedAt: Date;
|
4988
4991
|
deletedAt: Date | null;
|
4989
|
-
|
4990
|
-
|
4991
|
-
|
4992
|
-
|
4993
|
-
|
4994
|
-
|
4992
|
+
extensionName: string;
|
4993
|
+
fileName: string;
|
4994
|
+
fileKey: string;
|
4995
|
+
bucketName: string;
|
4996
|
+
fileSize: number;
|
4997
|
+
fileUrl: string;
|
4995
4998
|
};
|
4996
4999
|
roomId: string;
|
4997
5000
|
messageId: string;
|
@@ -5060,12 +5063,12 @@ export declare const roomContract: {
|
|
5060
5063
|
createdAt: Date;
|
5061
5064
|
updatedAt: Date;
|
5062
5065
|
deletedAt: Date | null;
|
5063
|
-
|
5064
|
-
|
5065
|
-
|
5066
|
-
|
5067
|
-
|
5068
|
-
|
5066
|
+
extensionName: string;
|
5067
|
+
fileName: string;
|
5068
|
+
fileKey: string;
|
5069
|
+
bucketName: string;
|
5070
|
+
fileSize: number;
|
5071
|
+
fileUrl: string;
|
5069
5072
|
};
|
5070
5073
|
roomId: string;
|
5071
5074
|
messageId: string;
|
@@ -5088,7 +5091,7 @@ export declare const roomContract: {
|
|
5088
5091
|
email: z.ZodString;
|
5089
5092
|
address: z.ZodNullable<z.ZodString>;
|
5090
5093
|
phone: z.ZodNullable<z.ZodString>;
|
5091
|
-
|
5094
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
5092
5095
|
}, "strip", z.ZodTypeAny, {
|
5093
5096
|
id: string;
|
5094
5097
|
address: string | null;
|
@@ -5098,7 +5101,7 @@ export declare const roomContract: {
|
|
5098
5101
|
updatedAt: Date;
|
5099
5102
|
deletedAt: Date | null;
|
5100
5103
|
phone: string | null;
|
5101
|
-
|
5104
|
+
notificationCount: number | null;
|
5102
5105
|
}, {
|
5103
5106
|
id: string;
|
5104
5107
|
address: string | null;
|
@@ -5108,7 +5111,7 @@ export declare const roomContract: {
|
|
5108
5111
|
updatedAt: Date;
|
5109
5112
|
deletedAt: Date | null;
|
5110
5113
|
phone: string | null;
|
5111
|
-
|
5114
|
+
notificationCount: number | null;
|
5112
5115
|
}>;
|
5113
5116
|
}, "strip", z.ZodTypeAny, {
|
5114
5117
|
id: string;
|
@@ -5125,7 +5128,7 @@ export declare const roomContract: {
|
|
5125
5128
|
updatedAt: Date;
|
5126
5129
|
deletedAt: Date | null;
|
5127
5130
|
phone: string | null;
|
5128
|
-
|
5131
|
+
notificationCount: number | null;
|
5129
5132
|
};
|
5130
5133
|
roomId: string;
|
5131
5134
|
actorId: string;
|
@@ -5144,7 +5147,7 @@ export declare const roomContract: {
|
|
5144
5147
|
updatedAt: Date;
|
5145
5148
|
deletedAt: Date | null;
|
5146
5149
|
phone: string | null;
|
5147
|
-
|
5150
|
+
notificationCount: number | null;
|
5148
5151
|
};
|
5149
5152
|
roomId: string;
|
5150
5153
|
actorId: string;
|
@@ -5165,12 +5168,12 @@ export declare const roomContract: {
|
|
5165
5168
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
5166
5169
|
name: z.ZodString;
|
5167
5170
|
smtpHost: z.ZodString;
|
5168
|
-
smtpPort: z.
|
5169
|
-
smtpTlsPort: z.
|
5171
|
+
smtpPort: z.ZodNumber;
|
5172
|
+
smtpTlsPort: z.ZodNumber;
|
5170
5173
|
useTlsForSmtp: z.ZodBoolean;
|
5171
5174
|
imapHost: z.ZodString;
|
5172
|
-
imapPort: z.
|
5173
|
-
imapTlsPort: z.
|
5175
|
+
imapPort: z.ZodNumber;
|
5176
|
+
imapTlsPort: z.ZodNumber;
|
5174
5177
|
useTlsForImap: z.ZodBoolean;
|
5175
5178
|
}, "strip", z.ZodTypeAny, {
|
5176
5179
|
id: string;
|
@@ -5179,12 +5182,12 @@ export declare const roomContract: {
|
|
5179
5182
|
updatedAt: Date;
|
5180
5183
|
deletedAt: Date | null;
|
5181
5184
|
smtpHost: string;
|
5182
|
-
smtpPort:
|
5183
|
-
smtpTlsPort:
|
5185
|
+
smtpPort: number;
|
5186
|
+
smtpTlsPort: number;
|
5184
5187
|
useTlsForSmtp: boolean;
|
5185
5188
|
imapHost: string;
|
5186
|
-
imapPort:
|
5187
|
-
imapTlsPort:
|
5189
|
+
imapPort: number;
|
5190
|
+
imapTlsPort: number;
|
5188
5191
|
useTlsForImap: boolean;
|
5189
5192
|
}, {
|
5190
5193
|
id: string;
|
@@ -5193,12 +5196,12 @@ export declare const roomContract: {
|
|
5193
5196
|
updatedAt: Date;
|
5194
5197
|
deletedAt: Date | null;
|
5195
5198
|
smtpHost: string;
|
5196
|
-
smtpPort:
|
5197
|
-
smtpTlsPort:
|
5199
|
+
smtpPort: number;
|
5200
|
+
smtpTlsPort: number;
|
5198
5201
|
useTlsForSmtp: boolean;
|
5199
5202
|
imapHost: string;
|
5200
|
-
imapPort:
|
5201
|
-
imapTlsPort:
|
5203
|
+
imapPort: number;
|
5204
|
+
imapTlsPort: number;
|
5202
5205
|
useTlsForImap: boolean;
|
5203
5206
|
}>;
|
5204
5207
|
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">]>;
|
@@ -5219,12 +5222,12 @@ export declare const roomContract: {
|
|
5219
5222
|
updatedAt: Date;
|
5220
5223
|
deletedAt: Date | null;
|
5221
5224
|
smtpHost: string;
|
5222
|
-
smtpPort:
|
5223
|
-
smtpTlsPort:
|
5225
|
+
smtpPort: number;
|
5226
|
+
smtpTlsPort: number;
|
5224
5227
|
useTlsForSmtp: boolean;
|
5225
5228
|
imapHost: string;
|
5226
|
-
imapPort:
|
5227
|
-
imapTlsPort:
|
5229
|
+
imapPort: number;
|
5230
|
+
imapTlsPort: number;
|
5228
5231
|
useTlsForImap: boolean;
|
5229
5232
|
};
|
5230
5233
|
}, {
|
@@ -5244,12 +5247,12 @@ export declare const roomContract: {
|
|
5244
5247
|
updatedAt: Date;
|
5245
5248
|
deletedAt: Date | null;
|
5246
5249
|
smtpHost: string;
|
5247
|
-
smtpPort:
|
5248
|
-
smtpTlsPort:
|
5250
|
+
smtpPort: number;
|
5251
|
+
smtpTlsPort: number;
|
5249
5252
|
useTlsForSmtp: boolean;
|
5250
5253
|
imapHost: string;
|
5251
|
-
imapPort:
|
5252
|
-
imapTlsPort:
|
5254
|
+
imapPort: number;
|
5255
|
+
imapTlsPort: number;
|
5253
5256
|
useTlsForImap: boolean;
|
5254
5257
|
};
|
5255
5258
|
}>;
|
@@ -5332,12 +5335,12 @@ export declare const roomContract: {
|
|
5332
5335
|
createdAt: Date;
|
5333
5336
|
updatedAt: Date;
|
5334
5337
|
deletedAt: Date | null;
|
5335
|
-
|
5336
|
-
|
5337
|
-
|
5338
|
-
|
5339
|
-
|
5340
|
-
|
5338
|
+
extensionName: string;
|
5339
|
+
fileName: string;
|
5340
|
+
fileKey: string;
|
5341
|
+
bucketName: string;
|
5342
|
+
fileSize: number;
|
5343
|
+
fileUrl: string;
|
5341
5344
|
};
|
5342
5345
|
roomId: string;
|
5343
5346
|
messageId: string;
|
@@ -5353,7 +5356,7 @@ export declare const roomContract: {
|
|
5353
5356
|
updatedAt: Date;
|
5354
5357
|
deletedAt: Date | null;
|
5355
5358
|
phone: string | null;
|
5356
|
-
|
5359
|
+
notificationCount: number | null;
|
5357
5360
|
};
|
5358
5361
|
resolved: boolean;
|
5359
5362
|
assigneeId: string | null;
|
@@ -5456,12 +5459,12 @@ export declare const roomContract: {
|
|
5456
5459
|
createdAt: Date;
|
5457
5460
|
updatedAt: Date;
|
5458
5461
|
deletedAt: Date | null;
|
5459
|
-
|
5460
|
-
|
5461
|
-
|
5462
|
-
|
5463
|
-
|
5464
|
-
|
5462
|
+
extensionName: string;
|
5463
|
+
fileName: string;
|
5464
|
+
fileKey: string;
|
5465
|
+
bucketName: string;
|
5466
|
+
fileSize: number;
|
5467
|
+
fileUrl: string;
|
5465
5468
|
};
|
5466
5469
|
roomId: string;
|
5467
5470
|
messageId: string;
|
@@ -5531,12 +5534,12 @@ export declare const roomContract: {
|
|
5531
5534
|
createdAt: Date;
|
5532
5535
|
updatedAt: Date;
|
5533
5536
|
deletedAt: Date | null;
|
5534
|
-
|
5535
|
-
|
5536
|
-
|
5537
|
-
|
5538
|
-
|
5539
|
-
|
5537
|
+
extensionName: string;
|
5538
|
+
fileName: string;
|
5539
|
+
fileKey: string;
|
5540
|
+
bucketName: string;
|
5541
|
+
fileSize: number;
|
5542
|
+
fileUrl: string;
|
5540
5543
|
};
|
5541
5544
|
roomId: string;
|
5542
5545
|
messageId: string;
|
@@ -5606,12 +5609,12 @@ export declare const roomContract: {
|
|
5606
5609
|
createdAt: Date;
|
5607
5610
|
updatedAt: Date;
|
5608
5611
|
deletedAt: Date | null;
|
5609
|
-
|
5610
|
-
|
5611
|
-
|
5612
|
-
|
5613
|
-
|
5614
|
-
|
5612
|
+
extensionName: string;
|
5613
|
+
fileName: string;
|
5614
|
+
fileKey: string;
|
5615
|
+
bucketName: string;
|
5616
|
+
fileSize: number;
|
5617
|
+
fileUrl: string;
|
5615
5618
|
};
|
5616
5619
|
roomId: string;
|
5617
5620
|
messageId: string;
|
@@ -5632,7 +5635,7 @@ export declare const roomContract: {
|
|
5632
5635
|
updatedAt: Date;
|
5633
5636
|
deletedAt: Date | null;
|
5634
5637
|
phone: string | null;
|
5635
|
-
|
5638
|
+
notificationCount: number | null;
|
5636
5639
|
};
|
5637
5640
|
roomId: string;
|
5638
5641
|
actorId: string;
|
@@ -5654,12 +5657,12 @@ export declare const roomContract: {
|
|
5654
5657
|
updatedAt: Date;
|
5655
5658
|
deletedAt: Date | null;
|
5656
5659
|
smtpHost: string;
|
5657
|
-
smtpPort:
|
5658
|
-
smtpTlsPort:
|
5660
|
+
smtpPort: number;
|
5661
|
+
smtpTlsPort: number;
|
5659
5662
|
useTlsForSmtp: boolean;
|
5660
5663
|
imapHost: string;
|
5661
|
-
imapPort:
|
5662
|
-
imapTlsPort:
|
5664
|
+
imapPort: number;
|
5665
|
+
imapTlsPort: number;
|
5663
5666
|
useTlsForImap: boolean;
|
5664
5667
|
};
|
5665
5668
|
};
|
@@ -5742,12 +5745,12 @@ export declare const roomContract: {
|
|
5742
5745
|
createdAt: Date;
|
5743
5746
|
updatedAt: Date;
|
5744
5747
|
deletedAt: Date | null;
|
5745
|
-
|
5746
|
-
|
5747
|
-
|
5748
|
-
|
5749
|
-
|
5750
|
-
|
5748
|
+
extensionName: string;
|
5749
|
+
fileName: string;
|
5750
|
+
fileKey: string;
|
5751
|
+
bucketName: string;
|
5752
|
+
fileSize: number;
|
5753
|
+
fileUrl: string;
|
5751
5754
|
};
|
5752
5755
|
roomId: string;
|
5753
5756
|
messageId: string;
|
@@ -5763,7 +5766,7 @@ export declare const roomContract: {
|
|
5763
5766
|
updatedAt: Date;
|
5764
5767
|
deletedAt: Date | null;
|
5765
5768
|
phone: string | null;
|
5766
|
-
|
5769
|
+
notificationCount: number | null;
|
5767
5770
|
};
|
5768
5771
|
resolved: boolean;
|
5769
5772
|
assigneeId: string | null;
|
@@ -5866,12 +5869,12 @@ export declare const roomContract: {
|
|
5866
5869
|
createdAt: Date;
|
5867
5870
|
updatedAt: Date;
|
5868
5871
|
deletedAt: Date | null;
|
5869
|
-
|
5870
|
-
|
5871
|
-
|
5872
|
-
|
5873
|
-
|
5874
|
-
|
5872
|
+
extensionName: string;
|
5873
|
+
fileName: string;
|
5874
|
+
fileKey: string;
|
5875
|
+
bucketName: string;
|
5876
|
+
fileSize: number;
|
5877
|
+
fileUrl: string;
|
5875
5878
|
};
|
5876
5879
|
roomId: string;
|
5877
5880
|
messageId: string;
|
@@ -5941,12 +5944,12 @@ export declare const roomContract: {
|
|
5941
5944
|
createdAt: Date;
|
5942
5945
|
updatedAt: Date;
|
5943
5946
|
deletedAt: Date | null;
|
5944
|
-
|
5945
|
-
|
5946
|
-
|
5947
|
-
|
5948
|
-
|
5949
|
-
|
5947
|
+
extensionName: string;
|
5948
|
+
fileName: string;
|
5949
|
+
fileKey: string;
|
5950
|
+
bucketName: string;
|
5951
|
+
fileSize: number;
|
5952
|
+
fileUrl: string;
|
5950
5953
|
};
|
5951
5954
|
roomId: string;
|
5952
5955
|
messageId: string;
|
@@ -6016,12 +6019,12 @@ export declare const roomContract: {
|
|
6016
6019
|
createdAt: Date;
|
6017
6020
|
updatedAt: Date;
|
6018
6021
|
deletedAt: Date | null;
|
6019
|
-
|
6020
|
-
|
6021
|
-
|
6022
|
-
|
6023
|
-
|
6024
|
-
|
6022
|
+
extensionName: string;
|
6023
|
+
fileName: string;
|
6024
|
+
fileKey: string;
|
6025
|
+
bucketName: string;
|
6026
|
+
fileSize: number;
|
6027
|
+
fileUrl: string;
|
6025
6028
|
};
|
6026
6029
|
roomId: string;
|
6027
6030
|
messageId: string;
|
@@ -6042,7 +6045,7 @@ export declare const roomContract: {
|
|
6042
6045
|
updatedAt: Date;
|
6043
6046
|
deletedAt: Date | null;
|
6044
6047
|
phone: string | null;
|
6045
|
-
|
6048
|
+
notificationCount: number | null;
|
6046
6049
|
};
|
6047
6050
|
roomId: string;
|
6048
6051
|
actorId: string;
|
@@ -6064,12 +6067,12 @@ export declare const roomContract: {
|
|
6064
6067
|
updatedAt: Date;
|
6065
6068
|
deletedAt: Date | null;
|
6066
6069
|
smtpHost: string;
|
6067
|
-
smtpPort:
|
6068
|
-
smtpTlsPort:
|
6070
|
+
smtpPort: number;
|
6071
|
+
smtpTlsPort: number;
|
6069
6072
|
useTlsForSmtp: boolean;
|
6070
6073
|
imapHost: string;
|
6071
|
-
imapPort:
|
6072
|
-
imapTlsPort:
|
6074
|
+
imapPort: number;
|
6075
|
+
imapTlsPort: number;
|
6073
6076
|
useTlsForImap: boolean;
|
6074
6077
|
};
|
6075
6078
|
};
|
@@ -6154,12 +6157,12 @@ export declare const roomContract: {
|
|
6154
6157
|
createdAt: Date;
|
6155
6158
|
updatedAt: Date;
|
6156
6159
|
deletedAt: Date | null;
|
6157
|
-
|
6158
|
-
|
6159
|
-
|
6160
|
-
|
6161
|
-
|
6162
|
-
|
6160
|
+
extensionName: string;
|
6161
|
+
fileName: string;
|
6162
|
+
fileKey: string;
|
6163
|
+
bucketName: string;
|
6164
|
+
fileSize: number;
|
6165
|
+
fileUrl: string;
|
6163
6166
|
};
|
6164
6167
|
roomId: string;
|
6165
6168
|
messageId: string;
|
@@ -6175,7 +6178,7 @@ export declare const roomContract: {
|
|
6175
6178
|
updatedAt: Date;
|
6176
6179
|
deletedAt: Date | null;
|
6177
6180
|
phone: string | null;
|
6178
|
-
|
6181
|
+
notificationCount: number | null;
|
6179
6182
|
};
|
6180
6183
|
resolved: boolean;
|
6181
6184
|
assigneeId: string | null;
|
@@ -6278,12 +6281,12 @@ export declare const roomContract: {
|
|
6278
6281
|
createdAt: Date;
|
6279
6282
|
updatedAt: Date;
|
6280
6283
|
deletedAt: Date | null;
|
6281
|
-
|
6282
|
-
|
6283
|
-
|
6284
|
-
|
6285
|
-
|
6286
|
-
|
6284
|
+
extensionName: string;
|
6285
|
+
fileName: string;
|
6286
|
+
fileKey: string;
|
6287
|
+
bucketName: string;
|
6288
|
+
fileSize: number;
|
6289
|
+
fileUrl: string;
|
6287
6290
|
};
|
6288
6291
|
roomId: string;
|
6289
6292
|
messageId: string;
|
@@ -6353,12 +6356,12 @@ export declare const roomContract: {
|
|
6353
6356
|
createdAt: Date;
|
6354
6357
|
updatedAt: Date;
|
6355
6358
|
deletedAt: Date | null;
|
6356
|
-
|
6357
|
-
|
6358
|
-
|
6359
|
-
|
6360
|
-
|
6361
|
-
|
6359
|
+
extensionName: string;
|
6360
|
+
fileName: string;
|
6361
|
+
fileKey: string;
|
6362
|
+
bucketName: string;
|
6363
|
+
fileSize: number;
|
6364
|
+
fileUrl: string;
|
6362
6365
|
};
|
6363
6366
|
roomId: string;
|
6364
6367
|
messageId: string;
|
@@ -6428,12 +6431,12 @@ export declare const roomContract: {
|
|
6428
6431
|
createdAt: Date;
|
6429
6432
|
updatedAt: Date;
|
6430
6433
|
deletedAt: Date | null;
|
6431
|
-
|
6432
|
-
|
6433
|
-
|
6434
|
-
|
6435
|
-
|
6436
|
-
|
6434
|
+
extensionName: string;
|
6435
|
+
fileName: string;
|
6436
|
+
fileKey: string;
|
6437
|
+
bucketName: string;
|
6438
|
+
fileSize: number;
|
6439
|
+
fileUrl: string;
|
6437
6440
|
};
|
6438
6441
|
roomId: string;
|
6439
6442
|
messageId: string;
|
@@ -6454,7 +6457,7 @@ export declare const roomContract: {
|
|
6454
6457
|
updatedAt: Date;
|
6455
6458
|
deletedAt: Date | null;
|
6456
6459
|
phone: string | null;
|
6457
|
-
|
6460
|
+
notificationCount: number | null;
|
6458
6461
|
};
|
6459
6462
|
roomId: string;
|
6460
6463
|
actorId: string;
|
@@ -6476,12 +6479,12 @@ export declare const roomContract: {
|
|
6476
6479
|
updatedAt: Date;
|
6477
6480
|
deletedAt: Date | null;
|
6478
6481
|
smtpHost: string;
|
6479
|
-
smtpPort:
|
6480
|
-
smtpTlsPort:
|
6482
|
+
smtpPort: number;
|
6483
|
+
smtpTlsPort: number;
|
6481
6484
|
useTlsForSmtp: boolean;
|
6482
6485
|
imapHost: string;
|
6483
|
-
imapPort:
|
6484
|
-
imapTlsPort:
|
6486
|
+
imapPort: number;
|
6487
|
+
imapTlsPort: number;
|
6485
6488
|
useTlsForImap: boolean;
|
6486
6489
|
};
|
6487
6490
|
};
|
@@ -6567,12 +6570,12 @@ export declare const roomContract: {
|
|
6567
6570
|
createdAt: Date;
|
6568
6571
|
updatedAt: Date;
|
6569
6572
|
deletedAt: Date | null;
|
6570
|
-
|
6571
|
-
|
6572
|
-
|
6573
|
-
|
6574
|
-
|
6575
|
-
|
6573
|
+
extensionName: string;
|
6574
|
+
fileName: string;
|
6575
|
+
fileKey: string;
|
6576
|
+
bucketName: string;
|
6577
|
+
fileSize: number;
|
6578
|
+
fileUrl: string;
|
6576
6579
|
};
|
6577
6580
|
roomId: string;
|
6578
6581
|
messageId: string;
|
@@ -6588,7 +6591,7 @@ export declare const roomContract: {
|
|
6588
6591
|
updatedAt: Date;
|
6589
6592
|
deletedAt: Date | null;
|
6590
6593
|
phone: string | null;
|
6591
|
-
|
6594
|
+
notificationCount: number | null;
|
6592
6595
|
};
|
6593
6596
|
resolved: boolean;
|
6594
6597
|
assigneeId: string | null;
|
@@ -6691,12 +6694,12 @@ export declare const roomContract: {
|
|
6691
6694
|
createdAt: Date;
|
6692
6695
|
updatedAt: Date;
|
6693
6696
|
deletedAt: Date | null;
|
6694
|
-
|
6695
|
-
|
6696
|
-
|
6697
|
-
|
6698
|
-
|
6699
|
-
|
6697
|
+
extensionName: string;
|
6698
|
+
fileName: string;
|
6699
|
+
fileKey: string;
|
6700
|
+
bucketName: string;
|
6701
|
+
fileSize: number;
|
6702
|
+
fileUrl: string;
|
6700
6703
|
};
|
6701
6704
|
roomId: string;
|
6702
6705
|
messageId: string;
|
@@ -6766,12 +6769,12 @@ export declare const roomContract: {
|
|
6766
6769
|
createdAt: Date;
|
6767
6770
|
updatedAt: Date;
|
6768
6771
|
deletedAt: Date | null;
|
6769
|
-
|
6770
|
-
|
6771
|
-
|
6772
|
-
|
6773
|
-
|
6774
|
-
|
6772
|
+
extensionName: string;
|
6773
|
+
fileName: string;
|
6774
|
+
fileKey: string;
|
6775
|
+
bucketName: string;
|
6776
|
+
fileSize: number;
|
6777
|
+
fileUrl: string;
|
6775
6778
|
};
|
6776
6779
|
roomId: string;
|
6777
6780
|
messageId: string;
|
@@ -6841,12 +6844,12 @@ export declare const roomContract: {
|
|
6841
6844
|
createdAt: Date;
|
6842
6845
|
updatedAt: Date;
|
6843
6846
|
deletedAt: Date | null;
|
6844
|
-
|
6845
|
-
|
6846
|
-
|
6847
|
-
|
6848
|
-
|
6849
|
-
|
6847
|
+
extensionName: string;
|
6848
|
+
fileName: string;
|
6849
|
+
fileKey: string;
|
6850
|
+
bucketName: string;
|
6851
|
+
fileSize: number;
|
6852
|
+
fileUrl: string;
|
6850
6853
|
};
|
6851
6854
|
roomId: string;
|
6852
6855
|
messageId: string;
|
@@ -6867,7 +6870,7 @@ export declare const roomContract: {
|
|
6867
6870
|
updatedAt: Date;
|
6868
6871
|
deletedAt: Date | null;
|
6869
6872
|
phone: string | null;
|
6870
|
-
|
6873
|
+
notificationCount: number | null;
|
6871
6874
|
};
|
6872
6875
|
roomId: string;
|
6873
6876
|
actorId: string;
|
@@ -6889,12 +6892,12 @@ export declare const roomContract: {
|
|
6889
6892
|
updatedAt: Date;
|
6890
6893
|
deletedAt: Date | null;
|
6891
6894
|
smtpHost: string;
|
6892
|
-
smtpPort:
|
6893
|
-
smtpTlsPort:
|
6895
|
+
smtpPort: number;
|
6896
|
+
smtpTlsPort: number;
|
6894
6897
|
useTlsForSmtp: boolean;
|
6895
6898
|
imapHost: string;
|
6896
|
-
imapPort:
|
6897
|
-
imapTlsPort:
|
6899
|
+
imapPort: number;
|
6900
|
+
imapTlsPort: number;
|
6898
6901
|
useTlsForImap: boolean;
|
6899
6902
|
};
|
6900
6903
|
};
|
@@ -7172,18 +7175,21 @@ export declare const roomContract: {
|
|
7172
7175
|
note: z.ZodOptional<z.ZodString>;
|
7173
7176
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
7174
7177
|
handover: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEffects<z.ZodUnion<[z.ZodLiteral<"true">, z.ZodLiteral<"false">]>, boolean, "false" | "true">]>>>;
|
7178
|
+
selfAssign: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEffects<z.ZodUnion<[z.ZodLiteral<"true">, z.ZodLiteral<"false">]>, boolean, "false" | "true">]>>>;
|
7175
7179
|
}, "strip", z.ZodTypeAny, {
|
7176
7180
|
resolved?: boolean | null | undefined;
|
7177
7181
|
assigneeId?: string | null | undefined;
|
7178
7182
|
note?: string | undefined;
|
7179
7183
|
tags?: string[] | undefined;
|
7180
7184
|
handover?: boolean | null | undefined;
|
7185
|
+
selfAssign?: boolean | null | undefined;
|
7181
7186
|
}, {
|
7182
7187
|
resolved?: boolean | "false" | "true" | null | undefined;
|
7183
7188
|
assigneeId?: string | null | undefined;
|
7184
7189
|
note?: string | undefined;
|
7185
7190
|
tags?: string[] | undefined;
|
7186
7191
|
handover?: boolean | "false" | "true" | null | undefined;
|
7192
|
+
selfAssign?: boolean | "false" | "true" | null | undefined;
|
7187
7193
|
}>;
|
7188
7194
|
summary: "Update a mail room by id";
|
7189
7195
|
method: "PATCH";
|
@@ -7450,34 +7456,34 @@ export declare const roomContract: {
|
|
7450
7456
|
createdAt: z.ZodDate;
|
7451
7457
|
updatedAt: z.ZodDate;
|
7452
7458
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
7453
|
-
|
7454
|
-
|
7455
|
-
|
7456
|
-
|
7457
|
-
|
7458
|
-
|
7459
|
+
bucketName: z.ZodString;
|
7460
|
+
fileName: z.ZodString;
|
7461
|
+
fileKey: z.ZodString;
|
7462
|
+
fileSize: z.ZodNumber;
|
7463
|
+
fileUrl: z.ZodString;
|
7464
|
+
extensionName: z.ZodString;
|
7459
7465
|
}, "strip", z.ZodTypeAny, {
|
7460
7466
|
id: string;
|
7461
7467
|
createdAt: Date;
|
7462
7468
|
updatedAt: Date;
|
7463
7469
|
deletedAt: Date | null;
|
7464
|
-
|
7465
|
-
|
7466
|
-
|
7467
|
-
|
7468
|
-
|
7469
|
-
|
7470
|
+
extensionName: string;
|
7471
|
+
fileName: string;
|
7472
|
+
fileKey: string;
|
7473
|
+
bucketName: string;
|
7474
|
+
fileSize: number;
|
7475
|
+
fileUrl: string;
|
7470
7476
|
}, {
|
7471
7477
|
id: string;
|
7472
7478
|
createdAt: Date;
|
7473
7479
|
updatedAt: Date;
|
7474
7480
|
deletedAt: Date | null;
|
7475
|
-
|
7476
|
-
|
7477
|
-
|
7478
|
-
|
7479
|
-
|
7480
|
-
|
7481
|
+
extensionName: string;
|
7482
|
+
fileName: string;
|
7483
|
+
fileKey: string;
|
7484
|
+
bucketName: string;
|
7485
|
+
fileSize: number;
|
7486
|
+
fileUrl: string;
|
7481
7487
|
}>;
|
7482
7488
|
}, "strip", z.ZodTypeAny, {
|
7483
7489
|
id: string;
|
@@ -7492,12 +7498,12 @@ export declare const roomContract: {
|
|
7492
7498
|
createdAt: Date;
|
7493
7499
|
updatedAt: Date;
|
7494
7500
|
deletedAt: Date | null;
|
7495
|
-
|
7496
|
-
|
7497
|
-
|
7498
|
-
|
7499
|
-
|
7500
|
-
|
7501
|
+
extensionName: string;
|
7502
|
+
fileName: string;
|
7503
|
+
fileKey: string;
|
7504
|
+
bucketName: string;
|
7505
|
+
fileSize: number;
|
7506
|
+
fileUrl: string;
|
7501
7507
|
};
|
7502
7508
|
roomId: string;
|
7503
7509
|
messageId: string;
|
@@ -7515,12 +7521,12 @@ export declare const roomContract: {
|
|
7515
7521
|
createdAt: Date;
|
7516
7522
|
updatedAt: Date;
|
7517
7523
|
deletedAt: Date | null;
|
7518
|
-
|
7519
|
-
|
7520
|
-
|
7521
|
-
|
7522
|
-
|
7523
|
-
|
7524
|
+
extensionName: string;
|
7525
|
+
fileName: string;
|
7526
|
+
fileKey: string;
|
7527
|
+
bucketName: string;
|
7528
|
+
fileSize: number;
|
7529
|
+
fileUrl: string;
|
7524
7530
|
};
|
7525
7531
|
roomId: string;
|
7526
7532
|
messageId: string;
|
@@ -7589,12 +7595,12 @@ export declare const roomContract: {
|
|
7589
7595
|
createdAt: Date;
|
7590
7596
|
updatedAt: Date;
|
7591
7597
|
deletedAt: Date | null;
|
7592
|
-
|
7593
|
-
|
7594
|
-
|
7595
|
-
|
7596
|
-
|
7597
|
-
|
7598
|
+
extensionName: string;
|
7599
|
+
fileName: string;
|
7600
|
+
fileKey: string;
|
7601
|
+
bucketName: string;
|
7602
|
+
fileSize: number;
|
7603
|
+
fileUrl: string;
|
7598
7604
|
};
|
7599
7605
|
roomId: string;
|
7600
7606
|
messageId: string;
|
@@ -7663,12 +7669,12 @@ export declare const roomContract: {
|
|
7663
7669
|
createdAt: Date;
|
7664
7670
|
updatedAt: Date;
|
7665
7671
|
deletedAt: Date | null;
|
7666
|
-
|
7667
|
-
|
7668
|
-
|
7669
|
-
|
7670
|
-
|
7671
|
-
|
7672
|
+
extensionName: string;
|
7673
|
+
fileName: string;
|
7674
|
+
fileKey: string;
|
7675
|
+
bucketName: string;
|
7676
|
+
fileSize: number;
|
7677
|
+
fileUrl: string;
|
7672
7678
|
};
|
7673
7679
|
roomId: string;
|
7674
7680
|
messageId: string;
|
@@ -7797,34 +7803,34 @@ export declare const roomContract: {
|
|
7797
7803
|
createdAt: z.ZodDate;
|
7798
7804
|
updatedAt: z.ZodDate;
|
7799
7805
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
7800
|
-
|
7801
|
-
|
7802
|
-
|
7803
|
-
|
7804
|
-
|
7805
|
-
|
7806
|
+
bucketName: z.ZodString;
|
7807
|
+
fileName: z.ZodString;
|
7808
|
+
fileKey: z.ZodString;
|
7809
|
+
fileSize: z.ZodNumber;
|
7810
|
+
fileUrl: z.ZodString;
|
7811
|
+
extensionName: z.ZodString;
|
7806
7812
|
}, "strip", z.ZodTypeAny, {
|
7807
7813
|
id: string;
|
7808
7814
|
createdAt: Date;
|
7809
7815
|
updatedAt: Date;
|
7810
7816
|
deletedAt: Date | null;
|
7811
|
-
|
7812
|
-
|
7813
|
-
|
7814
|
-
|
7815
|
-
|
7816
|
-
|
7817
|
+
extensionName: string;
|
7818
|
+
fileName: string;
|
7819
|
+
fileKey: string;
|
7820
|
+
bucketName: string;
|
7821
|
+
fileSize: number;
|
7822
|
+
fileUrl: string;
|
7817
7823
|
}, {
|
7818
7824
|
id: string;
|
7819
7825
|
createdAt: Date;
|
7820
7826
|
updatedAt: Date;
|
7821
7827
|
deletedAt: Date | null;
|
7822
|
-
|
7823
|
-
|
7824
|
-
|
7825
|
-
|
7826
|
-
|
7827
|
-
|
7828
|
+
extensionName: string;
|
7829
|
+
fileName: string;
|
7830
|
+
fileKey: string;
|
7831
|
+
bucketName: string;
|
7832
|
+
fileSize: number;
|
7833
|
+
fileUrl: string;
|
7828
7834
|
}>;
|
7829
7835
|
}, "strip", z.ZodTypeAny, {
|
7830
7836
|
id: string;
|
@@ -7839,12 +7845,12 @@ export declare const roomContract: {
|
|
7839
7845
|
createdAt: Date;
|
7840
7846
|
updatedAt: Date;
|
7841
7847
|
deletedAt: Date | null;
|
7842
|
-
|
7843
|
-
|
7844
|
-
|
7845
|
-
|
7846
|
-
|
7847
|
-
|
7848
|
+
extensionName: string;
|
7849
|
+
fileName: string;
|
7850
|
+
fileKey: string;
|
7851
|
+
bucketName: string;
|
7852
|
+
fileSize: number;
|
7853
|
+
fileUrl: string;
|
7848
7854
|
};
|
7849
7855
|
roomId: string;
|
7850
7856
|
messageId: string;
|
@@ -7862,12 +7868,12 @@ export declare const roomContract: {
|
|
7862
7868
|
createdAt: Date;
|
7863
7869
|
updatedAt: Date;
|
7864
7870
|
deletedAt: Date | null;
|
7865
|
-
|
7866
|
-
|
7867
|
-
|
7868
|
-
|
7869
|
-
|
7870
|
-
|
7871
|
+
extensionName: string;
|
7872
|
+
fileName: string;
|
7873
|
+
fileKey: string;
|
7874
|
+
bucketName: string;
|
7875
|
+
fileSize: number;
|
7876
|
+
fileUrl: string;
|
7871
7877
|
};
|
7872
7878
|
roomId: string;
|
7873
7879
|
messageId: string;
|
@@ -7936,12 +7942,12 @@ export declare const roomContract: {
|
|
7936
7942
|
createdAt: Date;
|
7937
7943
|
updatedAt: Date;
|
7938
7944
|
deletedAt: Date | null;
|
7939
|
-
|
7940
|
-
|
7941
|
-
|
7942
|
-
|
7943
|
-
|
7944
|
-
|
7945
|
+
extensionName: string;
|
7946
|
+
fileName: string;
|
7947
|
+
fileKey: string;
|
7948
|
+
bucketName: string;
|
7949
|
+
fileSize: number;
|
7950
|
+
fileUrl: string;
|
7945
7951
|
};
|
7946
7952
|
roomId: string;
|
7947
7953
|
messageId: string;
|
@@ -8010,12 +8016,12 @@ export declare const roomContract: {
|
|
8010
8016
|
createdAt: Date;
|
8011
8017
|
updatedAt: Date;
|
8012
8018
|
deletedAt: Date | null;
|
8013
|
-
|
8014
|
-
|
8015
|
-
|
8016
|
-
|
8017
|
-
|
8018
|
-
|
8019
|
+
extensionName: string;
|
8020
|
+
fileName: string;
|
8021
|
+
fileKey: string;
|
8022
|
+
bucketName: string;
|
8023
|
+
fileSize: number;
|
8024
|
+
fileUrl: string;
|
8019
8025
|
};
|
8020
8026
|
roomId: string;
|
8021
8027
|
messageId: string;
|
@@ -8053,7 +8059,7 @@ export declare const roomContract: {
|
|
8053
8059
|
email: z.ZodString;
|
8054
8060
|
address: z.ZodNullable<z.ZodString>;
|
8055
8061
|
phone: z.ZodNullable<z.ZodString>;
|
8056
|
-
|
8062
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
8057
8063
|
}, "strip", z.ZodTypeAny, {
|
8058
8064
|
id: string;
|
8059
8065
|
address: string | null;
|
@@ -8063,7 +8069,7 @@ export declare const roomContract: {
|
|
8063
8069
|
updatedAt: Date;
|
8064
8070
|
deletedAt: Date | null;
|
8065
8071
|
phone: string | null;
|
8066
|
-
|
8072
|
+
notificationCount: number | null;
|
8067
8073
|
}, {
|
8068
8074
|
id: string;
|
8069
8075
|
address: string | null;
|
@@ -8073,7 +8079,7 @@ export declare const roomContract: {
|
|
8073
8079
|
updatedAt: Date;
|
8074
8080
|
deletedAt: Date | null;
|
8075
8081
|
phone: string | null;
|
8076
|
-
|
8082
|
+
notificationCount: number | null;
|
8077
8083
|
}>;
|
8078
8084
|
messages: z.ZodArray<z.ZodObject<{
|
8079
8085
|
id: z.ZodString;
|
@@ -8197,34 +8203,34 @@ export declare const roomContract: {
|
|
8197
8203
|
createdAt: z.ZodDate;
|
8198
8204
|
updatedAt: z.ZodDate;
|
8199
8205
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
8200
|
-
|
8201
|
-
|
8202
|
-
|
8203
|
-
|
8204
|
-
|
8205
|
-
|
8206
|
+
bucketName: z.ZodString;
|
8207
|
+
fileName: z.ZodString;
|
8208
|
+
fileKey: z.ZodString;
|
8209
|
+
fileSize: z.ZodNumber;
|
8210
|
+
fileUrl: z.ZodString;
|
8211
|
+
extensionName: z.ZodString;
|
8206
8212
|
}, "strip", z.ZodTypeAny, {
|
8207
8213
|
id: string;
|
8208
8214
|
createdAt: Date;
|
8209
8215
|
updatedAt: Date;
|
8210
8216
|
deletedAt: Date | null;
|
8211
|
-
|
8212
|
-
|
8213
|
-
|
8214
|
-
|
8215
|
-
|
8216
|
-
|
8217
|
+
extensionName: string;
|
8218
|
+
fileName: string;
|
8219
|
+
fileKey: string;
|
8220
|
+
bucketName: string;
|
8221
|
+
fileSize: number;
|
8222
|
+
fileUrl: string;
|
8217
8223
|
}, {
|
8218
8224
|
id: string;
|
8219
8225
|
createdAt: Date;
|
8220
8226
|
updatedAt: Date;
|
8221
8227
|
deletedAt: Date | null;
|
8222
|
-
|
8223
|
-
|
8224
|
-
|
8225
|
-
|
8226
|
-
|
8227
|
-
|
8228
|
+
extensionName: string;
|
8229
|
+
fileName: string;
|
8230
|
+
fileKey: string;
|
8231
|
+
bucketName: string;
|
8232
|
+
fileSize: number;
|
8233
|
+
fileUrl: string;
|
8228
8234
|
}>;
|
8229
8235
|
}, "strip", z.ZodTypeAny, {
|
8230
8236
|
id: string;
|
@@ -8239,12 +8245,12 @@ export declare const roomContract: {
|
|
8239
8245
|
createdAt: Date;
|
8240
8246
|
updatedAt: Date;
|
8241
8247
|
deletedAt: Date | null;
|
8242
|
-
|
8243
|
-
|
8244
|
-
|
8245
|
-
|
8246
|
-
|
8247
|
-
|
8248
|
+
extensionName: string;
|
8249
|
+
fileName: string;
|
8250
|
+
fileKey: string;
|
8251
|
+
bucketName: string;
|
8252
|
+
fileSize: number;
|
8253
|
+
fileUrl: string;
|
8248
8254
|
};
|
8249
8255
|
roomId: string;
|
8250
8256
|
messageId: string;
|
@@ -8262,12 +8268,12 @@ export declare const roomContract: {
|
|
8262
8268
|
createdAt: Date;
|
8263
8269
|
updatedAt: Date;
|
8264
8270
|
deletedAt: Date | null;
|
8265
|
-
|
8266
|
-
|
8267
|
-
|
8268
|
-
|
8269
|
-
|
8270
|
-
|
8271
|
+
extensionName: string;
|
8272
|
+
fileName: string;
|
8273
|
+
fileKey: string;
|
8274
|
+
bucketName: string;
|
8275
|
+
fileSize: number;
|
8276
|
+
fileUrl: string;
|
8271
8277
|
};
|
8272
8278
|
roomId: string;
|
8273
8279
|
messageId: string;
|
@@ -8336,12 +8342,12 @@ export declare const roomContract: {
|
|
8336
8342
|
createdAt: Date;
|
8337
8343
|
updatedAt: Date;
|
8338
8344
|
deletedAt: Date | null;
|
8339
|
-
|
8340
|
-
|
8341
|
-
|
8342
|
-
|
8343
|
-
|
8344
|
-
|
8345
|
+
extensionName: string;
|
8346
|
+
fileName: string;
|
8347
|
+
fileKey: string;
|
8348
|
+
bucketName: string;
|
8349
|
+
fileSize: number;
|
8350
|
+
fileUrl: string;
|
8345
8351
|
};
|
8346
8352
|
roomId: string;
|
8347
8353
|
messageId: string;
|
@@ -8410,12 +8416,12 @@ export declare const roomContract: {
|
|
8410
8416
|
createdAt: Date;
|
8411
8417
|
updatedAt: Date;
|
8412
8418
|
deletedAt: Date | null;
|
8413
|
-
|
8414
|
-
|
8415
|
-
|
8416
|
-
|
8417
|
-
|
8418
|
-
|
8419
|
+
extensionName: string;
|
8420
|
+
fileName: string;
|
8421
|
+
fileKey: string;
|
8422
|
+
bucketName: string;
|
8423
|
+
fileSize: number;
|
8424
|
+
fileUrl: string;
|
8419
8425
|
};
|
8420
8426
|
roomId: string;
|
8421
8427
|
messageId: string;
|
@@ -8544,34 +8550,34 @@ export declare const roomContract: {
|
|
8544
8550
|
createdAt: z.ZodDate;
|
8545
8551
|
updatedAt: z.ZodDate;
|
8546
8552
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
8547
|
-
|
8548
|
-
|
8549
|
-
|
8550
|
-
|
8551
|
-
|
8552
|
-
|
8553
|
+
bucketName: z.ZodString;
|
8554
|
+
fileName: z.ZodString;
|
8555
|
+
fileKey: z.ZodString;
|
8556
|
+
fileSize: z.ZodNumber;
|
8557
|
+
fileUrl: z.ZodString;
|
8558
|
+
extensionName: z.ZodString;
|
8553
8559
|
}, "strip", z.ZodTypeAny, {
|
8554
8560
|
id: string;
|
8555
8561
|
createdAt: Date;
|
8556
8562
|
updatedAt: Date;
|
8557
8563
|
deletedAt: Date | null;
|
8558
|
-
|
8559
|
-
|
8560
|
-
|
8561
|
-
|
8562
|
-
|
8563
|
-
|
8564
|
+
extensionName: string;
|
8565
|
+
fileName: string;
|
8566
|
+
fileKey: string;
|
8567
|
+
bucketName: string;
|
8568
|
+
fileSize: number;
|
8569
|
+
fileUrl: string;
|
8564
8570
|
}, {
|
8565
8571
|
id: string;
|
8566
8572
|
createdAt: Date;
|
8567
8573
|
updatedAt: Date;
|
8568
8574
|
deletedAt: Date | null;
|
8569
|
-
|
8570
|
-
|
8571
|
-
|
8572
|
-
|
8573
|
-
|
8574
|
-
|
8575
|
+
extensionName: string;
|
8576
|
+
fileName: string;
|
8577
|
+
fileKey: string;
|
8578
|
+
bucketName: string;
|
8579
|
+
fileSize: number;
|
8580
|
+
fileUrl: string;
|
8575
8581
|
}>;
|
8576
8582
|
}, "strip", z.ZodTypeAny, {
|
8577
8583
|
id: string;
|
@@ -8586,12 +8592,12 @@ export declare const roomContract: {
|
|
8586
8592
|
createdAt: Date;
|
8587
8593
|
updatedAt: Date;
|
8588
8594
|
deletedAt: Date | null;
|
8589
|
-
|
8590
|
-
|
8591
|
-
|
8592
|
-
|
8593
|
-
|
8594
|
-
|
8595
|
+
extensionName: string;
|
8596
|
+
fileName: string;
|
8597
|
+
fileKey: string;
|
8598
|
+
bucketName: string;
|
8599
|
+
fileSize: number;
|
8600
|
+
fileUrl: string;
|
8595
8601
|
};
|
8596
8602
|
roomId: string;
|
8597
8603
|
messageId: string;
|
@@ -8609,12 +8615,12 @@ export declare const roomContract: {
|
|
8609
8615
|
createdAt: Date;
|
8610
8616
|
updatedAt: Date;
|
8611
8617
|
deletedAt: Date | null;
|
8612
|
-
|
8613
|
-
|
8614
|
-
|
8615
|
-
|
8616
|
-
|
8617
|
-
|
8618
|
+
extensionName: string;
|
8619
|
+
fileName: string;
|
8620
|
+
fileKey: string;
|
8621
|
+
bucketName: string;
|
8622
|
+
fileSize: number;
|
8623
|
+
fileUrl: string;
|
8618
8624
|
};
|
8619
8625
|
roomId: string;
|
8620
8626
|
messageId: string;
|
@@ -8683,12 +8689,12 @@ export declare const roomContract: {
|
|
8683
8689
|
createdAt: Date;
|
8684
8690
|
updatedAt: Date;
|
8685
8691
|
deletedAt: Date | null;
|
8686
|
-
|
8687
|
-
|
8688
|
-
|
8689
|
-
|
8690
|
-
|
8691
|
-
|
8692
|
+
extensionName: string;
|
8693
|
+
fileName: string;
|
8694
|
+
fileKey: string;
|
8695
|
+
bucketName: string;
|
8696
|
+
fileSize: number;
|
8697
|
+
fileUrl: string;
|
8692
8698
|
};
|
8693
8699
|
roomId: string;
|
8694
8700
|
messageId: string;
|
@@ -8757,12 +8763,12 @@ export declare const roomContract: {
|
|
8757
8763
|
createdAt: Date;
|
8758
8764
|
updatedAt: Date;
|
8759
8765
|
deletedAt: Date | null;
|
8760
|
-
|
8761
|
-
|
8762
|
-
|
8763
|
-
|
8764
|
-
|
8765
|
-
|
8766
|
+
extensionName: string;
|
8767
|
+
fileName: string;
|
8768
|
+
fileKey: string;
|
8769
|
+
bucketName: string;
|
8770
|
+
fileSize: number;
|
8771
|
+
fileUrl: string;
|
8766
8772
|
};
|
8767
8773
|
roomId: string;
|
8768
8774
|
messageId: string;
|
@@ -8785,7 +8791,7 @@ export declare const roomContract: {
|
|
8785
8791
|
email: z.ZodString;
|
8786
8792
|
address: z.ZodNullable<z.ZodString>;
|
8787
8793
|
phone: z.ZodNullable<z.ZodString>;
|
8788
|
-
|
8794
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
8789
8795
|
}, "strip", z.ZodTypeAny, {
|
8790
8796
|
id: string;
|
8791
8797
|
address: string | null;
|
@@ -8795,7 +8801,7 @@ export declare const roomContract: {
|
|
8795
8801
|
updatedAt: Date;
|
8796
8802
|
deletedAt: Date | null;
|
8797
8803
|
phone: string | null;
|
8798
|
-
|
8804
|
+
notificationCount: number | null;
|
8799
8805
|
}, {
|
8800
8806
|
id: string;
|
8801
8807
|
address: string | null;
|
@@ -8805,7 +8811,7 @@ export declare const roomContract: {
|
|
8805
8811
|
updatedAt: Date;
|
8806
8812
|
deletedAt: Date | null;
|
8807
8813
|
phone: string | null;
|
8808
|
-
|
8814
|
+
notificationCount: number | null;
|
8809
8815
|
}>;
|
8810
8816
|
}, "strip", z.ZodTypeAny, {
|
8811
8817
|
id: string;
|
@@ -8822,7 +8828,7 @@ export declare const roomContract: {
|
|
8822
8828
|
updatedAt: Date;
|
8823
8829
|
deletedAt: Date | null;
|
8824
8830
|
phone: string | null;
|
8825
|
-
|
8831
|
+
notificationCount: number | null;
|
8826
8832
|
};
|
8827
8833
|
roomId: string;
|
8828
8834
|
actorId: string;
|
@@ -8841,7 +8847,7 @@ export declare const roomContract: {
|
|
8841
8847
|
updatedAt: Date;
|
8842
8848
|
deletedAt: Date | null;
|
8843
8849
|
phone: string | null;
|
8844
|
-
|
8850
|
+
notificationCount: number | null;
|
8845
8851
|
};
|
8846
8852
|
roomId: string;
|
8847
8853
|
actorId: string;
|
@@ -8862,12 +8868,12 @@ export declare const roomContract: {
|
|
8862
8868
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
8863
8869
|
name: z.ZodString;
|
8864
8870
|
smtpHost: z.ZodString;
|
8865
|
-
smtpPort: z.
|
8866
|
-
smtpTlsPort: z.
|
8871
|
+
smtpPort: z.ZodNumber;
|
8872
|
+
smtpTlsPort: z.ZodNumber;
|
8867
8873
|
useTlsForSmtp: z.ZodBoolean;
|
8868
8874
|
imapHost: z.ZodString;
|
8869
|
-
imapPort: z.
|
8870
|
-
imapTlsPort: z.
|
8875
|
+
imapPort: z.ZodNumber;
|
8876
|
+
imapTlsPort: z.ZodNumber;
|
8871
8877
|
useTlsForImap: z.ZodBoolean;
|
8872
8878
|
}, "strip", z.ZodTypeAny, {
|
8873
8879
|
id: string;
|
@@ -8876,12 +8882,12 @@ export declare const roomContract: {
|
|
8876
8882
|
updatedAt: Date;
|
8877
8883
|
deletedAt: Date | null;
|
8878
8884
|
smtpHost: string;
|
8879
|
-
smtpPort:
|
8880
|
-
smtpTlsPort:
|
8885
|
+
smtpPort: number;
|
8886
|
+
smtpTlsPort: number;
|
8881
8887
|
useTlsForSmtp: boolean;
|
8882
8888
|
imapHost: string;
|
8883
|
-
imapPort:
|
8884
|
-
imapTlsPort:
|
8889
|
+
imapPort: number;
|
8890
|
+
imapTlsPort: number;
|
8885
8891
|
useTlsForImap: boolean;
|
8886
8892
|
}, {
|
8887
8893
|
id: string;
|
@@ -8890,12 +8896,12 @@ export declare const roomContract: {
|
|
8890
8896
|
updatedAt: Date;
|
8891
8897
|
deletedAt: Date | null;
|
8892
8898
|
smtpHost: string;
|
8893
|
-
smtpPort:
|
8894
|
-
smtpTlsPort:
|
8899
|
+
smtpPort: number;
|
8900
|
+
smtpTlsPort: number;
|
8895
8901
|
useTlsForSmtp: boolean;
|
8896
8902
|
imapHost: string;
|
8897
|
-
imapPort:
|
8898
|
-
imapTlsPort:
|
8903
|
+
imapPort: number;
|
8904
|
+
imapTlsPort: number;
|
8899
8905
|
useTlsForImap: boolean;
|
8900
8906
|
}>;
|
8901
8907
|
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">]>;
|
@@ -8916,12 +8922,12 @@ export declare const roomContract: {
|
|
8916
8922
|
updatedAt: Date;
|
8917
8923
|
deletedAt: Date | null;
|
8918
8924
|
smtpHost: string;
|
8919
|
-
smtpPort:
|
8920
|
-
smtpTlsPort:
|
8925
|
+
smtpPort: number;
|
8926
|
+
smtpTlsPort: number;
|
8921
8927
|
useTlsForSmtp: boolean;
|
8922
8928
|
imapHost: string;
|
8923
|
-
imapPort:
|
8924
|
-
imapTlsPort:
|
8929
|
+
imapPort: number;
|
8930
|
+
imapTlsPort: number;
|
8925
8931
|
useTlsForImap: boolean;
|
8926
8932
|
};
|
8927
8933
|
}, {
|
@@ -8941,12 +8947,12 @@ export declare const roomContract: {
|
|
8941
8947
|
updatedAt: Date;
|
8942
8948
|
deletedAt: Date | null;
|
8943
8949
|
smtpHost: string;
|
8944
|
-
smtpPort:
|
8945
|
-
smtpTlsPort:
|
8950
|
+
smtpPort: number;
|
8951
|
+
smtpTlsPort: number;
|
8946
8952
|
useTlsForSmtp: boolean;
|
8947
8953
|
imapHost: string;
|
8948
|
-
imapPort:
|
8949
|
-
imapTlsPort:
|
8954
|
+
imapPort: number;
|
8955
|
+
imapTlsPort: number;
|
8950
8956
|
useTlsForImap: boolean;
|
8951
8957
|
};
|
8952
8958
|
}>;
|
@@ -9029,12 +9035,12 @@ export declare const roomContract: {
|
|
9029
9035
|
createdAt: Date;
|
9030
9036
|
updatedAt: Date;
|
9031
9037
|
deletedAt: Date | null;
|
9032
|
-
|
9033
|
-
|
9034
|
-
|
9035
|
-
|
9036
|
-
|
9037
|
-
|
9038
|
+
extensionName: string;
|
9039
|
+
fileName: string;
|
9040
|
+
fileKey: string;
|
9041
|
+
bucketName: string;
|
9042
|
+
fileSize: number;
|
9043
|
+
fileUrl: string;
|
9038
9044
|
};
|
9039
9045
|
roomId: string;
|
9040
9046
|
messageId: string;
|
@@ -9050,7 +9056,7 @@ export declare const roomContract: {
|
|
9050
9056
|
updatedAt: Date;
|
9051
9057
|
deletedAt: Date | null;
|
9052
9058
|
phone: string | null;
|
9053
|
-
|
9059
|
+
notificationCount: number | null;
|
9054
9060
|
};
|
9055
9061
|
resolved: boolean;
|
9056
9062
|
assigneeId: string | null;
|
@@ -9153,12 +9159,12 @@ export declare const roomContract: {
|
|
9153
9159
|
createdAt: Date;
|
9154
9160
|
updatedAt: Date;
|
9155
9161
|
deletedAt: Date | null;
|
9156
|
-
|
9157
|
-
|
9158
|
-
|
9159
|
-
|
9160
|
-
|
9161
|
-
|
9162
|
+
extensionName: string;
|
9163
|
+
fileName: string;
|
9164
|
+
fileKey: string;
|
9165
|
+
bucketName: string;
|
9166
|
+
fileSize: number;
|
9167
|
+
fileUrl: string;
|
9162
9168
|
};
|
9163
9169
|
roomId: string;
|
9164
9170
|
messageId: string;
|
@@ -9228,12 +9234,12 @@ export declare const roomContract: {
|
|
9228
9234
|
createdAt: Date;
|
9229
9235
|
updatedAt: Date;
|
9230
9236
|
deletedAt: Date | null;
|
9231
|
-
|
9232
|
-
|
9233
|
-
|
9234
|
-
|
9235
|
-
|
9236
|
-
|
9237
|
+
extensionName: string;
|
9238
|
+
fileName: string;
|
9239
|
+
fileKey: string;
|
9240
|
+
bucketName: string;
|
9241
|
+
fileSize: number;
|
9242
|
+
fileUrl: string;
|
9237
9243
|
};
|
9238
9244
|
roomId: string;
|
9239
9245
|
messageId: string;
|
@@ -9303,12 +9309,12 @@ export declare const roomContract: {
|
|
9303
9309
|
createdAt: Date;
|
9304
9310
|
updatedAt: Date;
|
9305
9311
|
deletedAt: Date | null;
|
9306
|
-
|
9307
|
-
|
9308
|
-
|
9309
|
-
|
9310
|
-
|
9311
|
-
|
9312
|
+
extensionName: string;
|
9313
|
+
fileName: string;
|
9314
|
+
fileKey: string;
|
9315
|
+
bucketName: string;
|
9316
|
+
fileSize: number;
|
9317
|
+
fileUrl: string;
|
9312
9318
|
};
|
9313
9319
|
roomId: string;
|
9314
9320
|
messageId: string;
|
@@ -9329,7 +9335,7 @@ export declare const roomContract: {
|
|
9329
9335
|
updatedAt: Date;
|
9330
9336
|
deletedAt: Date | null;
|
9331
9337
|
phone: string | null;
|
9332
|
-
|
9338
|
+
notificationCount: number | null;
|
9333
9339
|
};
|
9334
9340
|
roomId: string;
|
9335
9341
|
actorId: string;
|
@@ -9351,12 +9357,12 @@ export declare const roomContract: {
|
|
9351
9357
|
updatedAt: Date;
|
9352
9358
|
deletedAt: Date | null;
|
9353
9359
|
smtpHost: string;
|
9354
|
-
smtpPort:
|
9355
|
-
smtpTlsPort:
|
9360
|
+
smtpPort: number;
|
9361
|
+
smtpTlsPort: number;
|
9356
9362
|
useTlsForSmtp: boolean;
|
9357
9363
|
imapHost: string;
|
9358
|
-
imapPort:
|
9359
|
-
imapTlsPort:
|
9364
|
+
imapPort: number;
|
9365
|
+
imapTlsPort: number;
|
9360
9366
|
useTlsForImap: boolean;
|
9361
9367
|
};
|
9362
9368
|
};
|
@@ -9439,12 +9445,12 @@ export declare const roomContract: {
|
|
9439
9445
|
createdAt: Date;
|
9440
9446
|
updatedAt: Date;
|
9441
9447
|
deletedAt: Date | null;
|
9442
|
-
|
9443
|
-
|
9444
|
-
|
9445
|
-
|
9446
|
-
|
9447
|
-
|
9448
|
+
extensionName: string;
|
9449
|
+
fileName: string;
|
9450
|
+
fileKey: string;
|
9451
|
+
bucketName: string;
|
9452
|
+
fileSize: number;
|
9453
|
+
fileUrl: string;
|
9448
9454
|
};
|
9449
9455
|
roomId: string;
|
9450
9456
|
messageId: string;
|
@@ -9460,7 +9466,7 @@ export declare const roomContract: {
|
|
9460
9466
|
updatedAt: Date;
|
9461
9467
|
deletedAt: Date | null;
|
9462
9468
|
phone: string | null;
|
9463
|
-
|
9469
|
+
notificationCount: number | null;
|
9464
9470
|
};
|
9465
9471
|
resolved: boolean;
|
9466
9472
|
assigneeId: string | null;
|
@@ -9563,12 +9569,12 @@ export declare const roomContract: {
|
|
9563
9569
|
createdAt: Date;
|
9564
9570
|
updatedAt: Date;
|
9565
9571
|
deletedAt: Date | null;
|
9566
|
-
|
9567
|
-
|
9568
|
-
|
9569
|
-
|
9570
|
-
|
9571
|
-
|
9572
|
+
extensionName: string;
|
9573
|
+
fileName: string;
|
9574
|
+
fileKey: string;
|
9575
|
+
bucketName: string;
|
9576
|
+
fileSize: number;
|
9577
|
+
fileUrl: string;
|
9572
9578
|
};
|
9573
9579
|
roomId: string;
|
9574
9580
|
messageId: string;
|
@@ -9638,12 +9644,12 @@ export declare const roomContract: {
|
|
9638
9644
|
createdAt: Date;
|
9639
9645
|
updatedAt: Date;
|
9640
9646
|
deletedAt: Date | null;
|
9641
|
-
|
9642
|
-
|
9643
|
-
|
9644
|
-
|
9645
|
-
|
9646
|
-
|
9647
|
+
extensionName: string;
|
9648
|
+
fileName: string;
|
9649
|
+
fileKey: string;
|
9650
|
+
bucketName: string;
|
9651
|
+
fileSize: number;
|
9652
|
+
fileUrl: string;
|
9647
9653
|
};
|
9648
9654
|
roomId: string;
|
9649
9655
|
messageId: string;
|
@@ -9713,12 +9719,12 @@ export declare const roomContract: {
|
|
9713
9719
|
createdAt: Date;
|
9714
9720
|
updatedAt: Date;
|
9715
9721
|
deletedAt: Date | null;
|
9716
|
-
|
9717
|
-
|
9718
|
-
|
9719
|
-
|
9720
|
-
|
9721
|
-
|
9722
|
+
extensionName: string;
|
9723
|
+
fileName: string;
|
9724
|
+
fileKey: string;
|
9725
|
+
bucketName: string;
|
9726
|
+
fileSize: number;
|
9727
|
+
fileUrl: string;
|
9722
9728
|
};
|
9723
9729
|
roomId: string;
|
9724
9730
|
messageId: string;
|
@@ -9739,7 +9745,7 @@ export declare const roomContract: {
|
|
9739
9745
|
updatedAt: Date;
|
9740
9746
|
deletedAt: Date | null;
|
9741
9747
|
phone: string | null;
|
9742
|
-
|
9748
|
+
notificationCount: number | null;
|
9743
9749
|
};
|
9744
9750
|
roomId: string;
|
9745
9751
|
actorId: string;
|
@@ -9761,12 +9767,12 @@ export declare const roomContract: {
|
|
9761
9767
|
updatedAt: Date;
|
9762
9768
|
deletedAt: Date | null;
|
9763
9769
|
smtpHost: string;
|
9764
|
-
smtpPort:
|
9765
|
-
smtpTlsPort:
|
9770
|
+
smtpPort: number;
|
9771
|
+
smtpTlsPort: number;
|
9766
9772
|
useTlsForSmtp: boolean;
|
9767
9773
|
imapHost: string;
|
9768
|
-
imapPort:
|
9769
|
-
imapTlsPort:
|
9774
|
+
imapPort: number;
|
9775
|
+
imapTlsPort: number;
|
9770
9776
|
useTlsForImap: boolean;
|
9771
9777
|
};
|
9772
9778
|
};
|
@@ -9851,12 +9857,12 @@ export declare const roomContract: {
|
|
9851
9857
|
createdAt: Date;
|
9852
9858
|
updatedAt: Date;
|
9853
9859
|
deletedAt: Date | null;
|
9854
|
-
|
9855
|
-
|
9856
|
-
|
9857
|
-
|
9858
|
-
|
9859
|
-
|
9860
|
+
extensionName: string;
|
9861
|
+
fileName: string;
|
9862
|
+
fileKey: string;
|
9863
|
+
bucketName: string;
|
9864
|
+
fileSize: number;
|
9865
|
+
fileUrl: string;
|
9860
9866
|
};
|
9861
9867
|
roomId: string;
|
9862
9868
|
messageId: string;
|
@@ -9872,7 +9878,7 @@ export declare const roomContract: {
|
|
9872
9878
|
updatedAt: Date;
|
9873
9879
|
deletedAt: Date | null;
|
9874
9880
|
phone: string | null;
|
9875
|
-
|
9881
|
+
notificationCount: number | null;
|
9876
9882
|
};
|
9877
9883
|
resolved: boolean;
|
9878
9884
|
assigneeId: string | null;
|
@@ -9975,12 +9981,12 @@ export declare const roomContract: {
|
|
9975
9981
|
createdAt: Date;
|
9976
9982
|
updatedAt: Date;
|
9977
9983
|
deletedAt: Date | null;
|
9978
|
-
|
9979
|
-
|
9980
|
-
|
9981
|
-
|
9982
|
-
|
9983
|
-
|
9984
|
+
extensionName: string;
|
9985
|
+
fileName: string;
|
9986
|
+
fileKey: string;
|
9987
|
+
bucketName: string;
|
9988
|
+
fileSize: number;
|
9989
|
+
fileUrl: string;
|
9984
9990
|
};
|
9985
9991
|
roomId: string;
|
9986
9992
|
messageId: string;
|
@@ -10050,12 +10056,12 @@ export declare const roomContract: {
|
|
10050
10056
|
createdAt: Date;
|
10051
10057
|
updatedAt: Date;
|
10052
10058
|
deletedAt: Date | null;
|
10053
|
-
|
10054
|
-
|
10055
|
-
|
10056
|
-
|
10057
|
-
|
10058
|
-
|
10059
|
+
extensionName: string;
|
10060
|
+
fileName: string;
|
10061
|
+
fileKey: string;
|
10062
|
+
bucketName: string;
|
10063
|
+
fileSize: number;
|
10064
|
+
fileUrl: string;
|
10059
10065
|
};
|
10060
10066
|
roomId: string;
|
10061
10067
|
messageId: string;
|
@@ -10125,12 +10131,12 @@ export declare const roomContract: {
|
|
10125
10131
|
createdAt: Date;
|
10126
10132
|
updatedAt: Date;
|
10127
10133
|
deletedAt: Date | null;
|
10128
|
-
|
10129
|
-
|
10130
|
-
|
10131
|
-
|
10132
|
-
|
10133
|
-
|
10134
|
+
extensionName: string;
|
10135
|
+
fileName: string;
|
10136
|
+
fileKey: string;
|
10137
|
+
bucketName: string;
|
10138
|
+
fileSize: number;
|
10139
|
+
fileUrl: string;
|
10134
10140
|
};
|
10135
10141
|
roomId: string;
|
10136
10142
|
messageId: string;
|
@@ -10151,7 +10157,7 @@ export declare const roomContract: {
|
|
10151
10157
|
updatedAt: Date;
|
10152
10158
|
deletedAt: Date | null;
|
10153
10159
|
phone: string | null;
|
10154
|
-
|
10160
|
+
notificationCount: number | null;
|
10155
10161
|
};
|
10156
10162
|
roomId: string;
|
10157
10163
|
actorId: string;
|
@@ -10173,12 +10179,12 @@ export declare const roomContract: {
|
|
10173
10179
|
updatedAt: Date;
|
10174
10180
|
deletedAt: Date | null;
|
10175
10181
|
smtpHost: string;
|
10176
|
-
smtpPort:
|
10177
|
-
smtpTlsPort:
|
10182
|
+
smtpPort: number;
|
10183
|
+
smtpTlsPort: number;
|
10178
10184
|
useTlsForSmtp: boolean;
|
10179
10185
|
imapHost: string;
|
10180
|
-
imapPort:
|
10181
|
-
imapTlsPort:
|
10186
|
+
imapPort: number;
|
10187
|
+
imapTlsPort: number;
|
10182
10188
|
useTlsForImap: boolean;
|
10183
10189
|
};
|
10184
10190
|
};
|
@@ -10264,12 +10270,12 @@ export declare const roomContract: {
|
|
10264
10270
|
createdAt: Date;
|
10265
10271
|
updatedAt: Date;
|
10266
10272
|
deletedAt: Date | null;
|
10267
|
-
|
10268
|
-
|
10269
|
-
|
10270
|
-
|
10271
|
-
|
10272
|
-
|
10273
|
+
extensionName: string;
|
10274
|
+
fileName: string;
|
10275
|
+
fileKey: string;
|
10276
|
+
bucketName: string;
|
10277
|
+
fileSize: number;
|
10278
|
+
fileUrl: string;
|
10273
10279
|
};
|
10274
10280
|
roomId: string;
|
10275
10281
|
messageId: string;
|
@@ -10285,7 +10291,7 @@ export declare const roomContract: {
|
|
10285
10291
|
updatedAt: Date;
|
10286
10292
|
deletedAt: Date | null;
|
10287
10293
|
phone: string | null;
|
10288
|
-
|
10294
|
+
notificationCount: number | null;
|
10289
10295
|
};
|
10290
10296
|
resolved: boolean;
|
10291
10297
|
assigneeId: string | null;
|
@@ -10388,12 +10394,12 @@ export declare const roomContract: {
|
|
10388
10394
|
createdAt: Date;
|
10389
10395
|
updatedAt: Date;
|
10390
10396
|
deletedAt: Date | null;
|
10391
|
-
|
10392
|
-
|
10393
|
-
|
10394
|
-
|
10395
|
-
|
10396
|
-
|
10397
|
+
extensionName: string;
|
10398
|
+
fileName: string;
|
10399
|
+
fileKey: string;
|
10400
|
+
bucketName: string;
|
10401
|
+
fileSize: number;
|
10402
|
+
fileUrl: string;
|
10397
10403
|
};
|
10398
10404
|
roomId: string;
|
10399
10405
|
messageId: string;
|
@@ -10463,12 +10469,12 @@ export declare const roomContract: {
|
|
10463
10469
|
createdAt: Date;
|
10464
10470
|
updatedAt: Date;
|
10465
10471
|
deletedAt: Date | null;
|
10466
|
-
|
10467
|
-
|
10468
|
-
|
10469
|
-
|
10470
|
-
|
10471
|
-
|
10472
|
+
extensionName: string;
|
10473
|
+
fileName: string;
|
10474
|
+
fileKey: string;
|
10475
|
+
bucketName: string;
|
10476
|
+
fileSize: number;
|
10477
|
+
fileUrl: string;
|
10472
10478
|
};
|
10473
10479
|
roomId: string;
|
10474
10480
|
messageId: string;
|
@@ -10538,12 +10544,12 @@ export declare const roomContract: {
|
|
10538
10544
|
createdAt: Date;
|
10539
10545
|
updatedAt: Date;
|
10540
10546
|
deletedAt: Date | null;
|
10541
|
-
|
10542
|
-
|
10543
|
-
|
10544
|
-
|
10545
|
-
|
10546
|
-
|
10547
|
+
extensionName: string;
|
10548
|
+
fileName: string;
|
10549
|
+
fileKey: string;
|
10550
|
+
bucketName: string;
|
10551
|
+
fileSize: number;
|
10552
|
+
fileUrl: string;
|
10547
10553
|
};
|
10548
10554
|
roomId: string;
|
10549
10555
|
messageId: string;
|
@@ -10564,7 +10570,7 @@ export declare const roomContract: {
|
|
10564
10570
|
updatedAt: Date;
|
10565
10571
|
deletedAt: Date | null;
|
10566
10572
|
phone: string | null;
|
10567
|
-
|
10573
|
+
notificationCount: number | null;
|
10568
10574
|
};
|
10569
10575
|
roomId: string;
|
10570
10576
|
actorId: string;
|
@@ -10586,12 +10592,12 @@ export declare const roomContract: {
|
|
10586
10592
|
updatedAt: Date;
|
10587
10593
|
deletedAt: Date | null;
|
10588
10594
|
smtpHost: string;
|
10589
|
-
smtpPort:
|
10590
|
-
smtpTlsPort:
|
10595
|
+
smtpPort: number;
|
10596
|
+
smtpTlsPort: number;
|
10591
10597
|
useTlsForSmtp: boolean;
|
10592
10598
|
imapHost: string;
|
10593
|
-
imapPort:
|
10594
|
-
imapTlsPort:
|
10599
|
+
imapPort: number;
|
10600
|
+
imapTlsPort: number;
|
10595
10601
|
useTlsForImap: boolean;
|
10596
10602
|
};
|
10597
10603
|
};
|