@kl1/contracts 1.1.4 → 1.1.5
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 +933 -886
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +932 -886
- package/dist/index.mjs.map +1 -1
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- 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/chatwoot/index.d.ts +7527 -0
- package/dist/src/chatwoot/index.d.ts.map +1 -0
- package/dist/src/chatwoot/schema.d.ts +79 -0
- package/dist/src/chatwoot/schema.d.ts.map +1 -0
- package/dist/src/chatwoot/validation.d.ts +53 -0
- package/dist/src/chatwoot/validation.d.ts.map +1 -0
- package/dist/src/contract.d.ts +5238 -3489
- 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 +289 -136
- 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 +1775 -1162
- 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/mail-server.d.ts +216 -0
- package/dist/src/mail/mail-server.d.ts.map +1 -0
- package/dist/src/mail/message-contract.d.ts +54 -54
- package/dist/src/mail/room-contract.d.ts +957 -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 +325 -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/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- 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,20 @@ export declare const mailContract: {
|
|
55
55
|
page: import("zod").ZodDefault<import("zod").ZodNumber>;
|
56
56
|
pageSize: import("zod").ZodDefault<import("zod").ZodNumber>;
|
57
57
|
keyword: import("zod").ZodOptional<import("zod").ZodString>;
|
58
|
-
|
59
|
-
|
58
|
+
level1: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"open">, import("zod").ZodLiteral<"close">, import("zod").ZodLiteral<"inbox">, import("zod").ZodLiteral<"sent">, import("zod").ZodLiteral<"scheduled">, import("zod").ZodLiteral<"starred">]>>;
|
59
|
+
level2: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"all">, import("zod").ZodLiteral<"unassign">, import("zod").ZodLiteral<"mine">, import("zod").ZodLiteral<"other">]>>;
|
60
60
|
}, "strip", import("zod").ZodTypeAny, {
|
61
61
|
page: number;
|
62
62
|
pageSize: number;
|
63
63
|
keyword?: string | undefined;
|
64
|
-
|
65
|
-
|
64
|
+
level1?: "open" | "close" | "inbox" | "sent" | "scheduled" | "starred" | undefined;
|
65
|
+
level2?: "all" | "other" | "unassign" | "mine" | undefined;
|
66
66
|
}, {
|
67
67
|
page?: number | undefined;
|
68
68
|
pageSize?: number | undefined;
|
69
69
|
keyword?: string | undefined;
|
70
|
-
|
71
|
-
|
70
|
+
level1?: "open" | "close" | "inbox" | "sent" | "scheduled" | "starred" | undefined;
|
71
|
+
level2?: "all" | "other" | "unassign" | "mine" | undefined;
|
72
72
|
}>;
|
73
73
|
responses: {
|
74
74
|
401: import("zod").ZodObject<{
|
@@ -326,34 +326,34 @@ export declare const mailContract: {
|
|
326
326
|
createdAt: import("zod").ZodDate;
|
327
327
|
updatedAt: import("zod").ZodDate;
|
328
328
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
329
|
+
bucketName: import("zod").ZodString;
|
330
|
+
fileName: import("zod").ZodString;
|
331
|
+
fileKey: import("zod").ZodString;
|
332
|
+
fileSize: import("zod").ZodNumber;
|
333
|
+
fileUrl: import("zod").ZodString;
|
334
|
+
extensionName: import("zod").ZodString;
|
335
335
|
}, "strip", import("zod").ZodTypeAny, {
|
336
336
|
id: string;
|
337
337
|
createdAt: Date;
|
338
338
|
updatedAt: Date;
|
339
339
|
deletedAt: Date | null;
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
340
|
+
extensionName: string;
|
341
|
+
fileName: string;
|
342
|
+
fileKey: string;
|
343
|
+
bucketName: string;
|
344
|
+
fileSize: number;
|
345
|
+
fileUrl: string;
|
346
346
|
}, {
|
347
347
|
id: string;
|
348
348
|
createdAt: Date;
|
349
349
|
updatedAt: Date;
|
350
350
|
deletedAt: Date | null;
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
351
|
+
extensionName: string;
|
352
|
+
fileName: string;
|
353
|
+
fileKey: string;
|
354
|
+
bucketName: string;
|
355
|
+
fileSize: number;
|
356
|
+
fileUrl: string;
|
357
357
|
}>;
|
358
358
|
}, "strip", import("zod").ZodTypeAny, {
|
359
359
|
id: string;
|
@@ -368,12 +368,12 @@ export declare const mailContract: {
|
|
368
368
|
createdAt: Date;
|
369
369
|
updatedAt: Date;
|
370
370
|
deletedAt: Date | null;
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
371
|
+
extensionName: string;
|
372
|
+
fileName: string;
|
373
|
+
fileKey: string;
|
374
|
+
bucketName: string;
|
375
|
+
fileSize: number;
|
376
|
+
fileUrl: string;
|
377
377
|
};
|
378
378
|
roomId: string;
|
379
379
|
messageId: string;
|
@@ -391,12 +391,12 @@ export declare const mailContract: {
|
|
391
391
|
createdAt: Date;
|
392
392
|
updatedAt: Date;
|
393
393
|
deletedAt: Date | null;
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
394
|
+
extensionName: string;
|
395
|
+
fileName: string;
|
396
|
+
fileKey: string;
|
397
|
+
bucketName: string;
|
398
|
+
fileSize: number;
|
399
|
+
fileUrl: string;
|
400
400
|
};
|
401
401
|
roomId: string;
|
402
402
|
messageId: string;
|
@@ -465,12 +465,12 @@ export declare const mailContract: {
|
|
465
465
|
createdAt: Date;
|
466
466
|
updatedAt: Date;
|
467
467
|
deletedAt: Date | null;
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
468
|
+
extensionName: string;
|
469
|
+
fileName: string;
|
470
|
+
fileKey: string;
|
471
|
+
bucketName: string;
|
472
|
+
fileSize: number;
|
473
|
+
fileUrl: string;
|
474
474
|
};
|
475
475
|
roomId: string;
|
476
476
|
messageId: string;
|
@@ -539,12 +539,12 @@ export declare const mailContract: {
|
|
539
539
|
createdAt: Date;
|
540
540
|
updatedAt: Date;
|
541
541
|
deletedAt: Date | null;
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
542
|
+
extensionName: string;
|
543
|
+
fileName: string;
|
544
|
+
fileKey: string;
|
545
|
+
bucketName: string;
|
546
|
+
fileSize: number;
|
547
|
+
fileUrl: string;
|
548
548
|
};
|
549
549
|
roomId: string;
|
550
550
|
messageId: string;
|
@@ -673,34 +673,34 @@ export declare const mailContract: {
|
|
673
673
|
createdAt: import("zod").ZodDate;
|
674
674
|
updatedAt: import("zod").ZodDate;
|
675
675
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
676
|
+
bucketName: import("zod").ZodString;
|
677
|
+
fileName: import("zod").ZodString;
|
678
|
+
fileKey: import("zod").ZodString;
|
679
|
+
fileSize: import("zod").ZodNumber;
|
680
|
+
fileUrl: import("zod").ZodString;
|
681
|
+
extensionName: import("zod").ZodString;
|
682
682
|
}, "strip", import("zod").ZodTypeAny, {
|
683
683
|
id: string;
|
684
684
|
createdAt: Date;
|
685
685
|
updatedAt: Date;
|
686
686
|
deletedAt: Date | null;
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
687
|
+
extensionName: string;
|
688
|
+
fileName: string;
|
689
|
+
fileKey: string;
|
690
|
+
bucketName: string;
|
691
|
+
fileSize: number;
|
692
|
+
fileUrl: string;
|
693
693
|
}, {
|
694
694
|
id: string;
|
695
695
|
createdAt: Date;
|
696
696
|
updatedAt: Date;
|
697
697
|
deletedAt: Date | null;
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
698
|
+
extensionName: string;
|
699
|
+
fileName: string;
|
700
|
+
fileKey: string;
|
701
|
+
bucketName: string;
|
702
|
+
fileSize: number;
|
703
|
+
fileUrl: string;
|
704
704
|
}>;
|
705
705
|
}, "strip", import("zod").ZodTypeAny, {
|
706
706
|
id: string;
|
@@ -715,12 +715,12 @@ export declare const mailContract: {
|
|
715
715
|
createdAt: Date;
|
716
716
|
updatedAt: Date;
|
717
717
|
deletedAt: Date | null;
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
718
|
+
extensionName: string;
|
719
|
+
fileName: string;
|
720
|
+
fileKey: string;
|
721
|
+
bucketName: string;
|
722
|
+
fileSize: number;
|
723
|
+
fileUrl: string;
|
724
724
|
};
|
725
725
|
roomId: string;
|
726
726
|
messageId: string;
|
@@ -738,12 +738,12 @@ export declare const mailContract: {
|
|
738
738
|
createdAt: Date;
|
739
739
|
updatedAt: Date;
|
740
740
|
deletedAt: Date | null;
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
741
|
+
extensionName: string;
|
742
|
+
fileName: string;
|
743
|
+
fileKey: string;
|
744
|
+
bucketName: string;
|
745
|
+
fileSize: number;
|
746
|
+
fileUrl: string;
|
747
747
|
};
|
748
748
|
roomId: string;
|
749
749
|
messageId: string;
|
@@ -812,12 +812,12 @@ export declare const mailContract: {
|
|
812
812
|
createdAt: Date;
|
813
813
|
updatedAt: Date;
|
814
814
|
deletedAt: Date | null;
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
815
|
+
extensionName: string;
|
816
|
+
fileName: string;
|
817
|
+
fileKey: string;
|
818
|
+
bucketName: string;
|
819
|
+
fileSize: number;
|
820
|
+
fileUrl: string;
|
821
821
|
};
|
822
822
|
roomId: string;
|
823
823
|
messageId: string;
|
@@ -886,12 +886,12 @@ export declare const mailContract: {
|
|
886
886
|
createdAt: Date;
|
887
887
|
updatedAt: Date;
|
888
888
|
deletedAt: Date | null;
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
889
|
+
extensionName: string;
|
890
|
+
fileName: string;
|
891
|
+
fileKey: string;
|
892
|
+
bucketName: string;
|
893
|
+
fileSize: number;
|
894
|
+
fileUrl: string;
|
895
895
|
};
|
896
896
|
roomId: string;
|
897
897
|
messageId: string;
|
@@ -929,7 +929,7 @@ export declare const mailContract: {
|
|
929
929
|
email: import("zod").ZodString;
|
930
930
|
address: import("zod").ZodNullable<import("zod").ZodString>;
|
931
931
|
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
932
|
-
|
932
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
933
933
|
}, "strip", import("zod").ZodTypeAny, {
|
934
934
|
id: string;
|
935
935
|
address: string | null;
|
@@ -939,7 +939,7 @@ export declare const mailContract: {
|
|
939
939
|
updatedAt: Date;
|
940
940
|
deletedAt: Date | null;
|
941
941
|
phone: string | null;
|
942
|
-
|
942
|
+
notificationCount: number | null;
|
943
943
|
}, {
|
944
944
|
id: string;
|
945
945
|
address: string | null;
|
@@ -949,7 +949,7 @@ export declare const mailContract: {
|
|
949
949
|
updatedAt: Date;
|
950
950
|
deletedAt: Date | null;
|
951
951
|
phone: string | null;
|
952
|
-
|
952
|
+
notificationCount: number | null;
|
953
953
|
}>;
|
954
954
|
messages: import("zod").ZodArray<import("zod").ZodObject<{
|
955
955
|
id: import("zod").ZodString;
|
@@ -1073,34 +1073,34 @@ export declare const mailContract: {
|
|
1073
1073
|
createdAt: import("zod").ZodDate;
|
1074
1074
|
updatedAt: import("zod").ZodDate;
|
1075
1075
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1076
|
+
bucketName: import("zod").ZodString;
|
1077
|
+
fileName: import("zod").ZodString;
|
1078
|
+
fileKey: import("zod").ZodString;
|
1079
|
+
fileSize: import("zod").ZodNumber;
|
1080
|
+
fileUrl: import("zod").ZodString;
|
1081
|
+
extensionName: import("zod").ZodString;
|
1082
1082
|
}, "strip", import("zod").ZodTypeAny, {
|
1083
1083
|
id: string;
|
1084
1084
|
createdAt: Date;
|
1085
1085
|
updatedAt: Date;
|
1086
1086
|
deletedAt: Date | null;
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1087
|
+
extensionName: string;
|
1088
|
+
fileName: string;
|
1089
|
+
fileKey: string;
|
1090
|
+
bucketName: string;
|
1091
|
+
fileSize: number;
|
1092
|
+
fileUrl: string;
|
1093
1093
|
}, {
|
1094
1094
|
id: string;
|
1095
1095
|
createdAt: Date;
|
1096
1096
|
updatedAt: Date;
|
1097
1097
|
deletedAt: Date | null;
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1098
|
+
extensionName: string;
|
1099
|
+
fileName: string;
|
1100
|
+
fileKey: string;
|
1101
|
+
bucketName: string;
|
1102
|
+
fileSize: number;
|
1103
|
+
fileUrl: string;
|
1104
1104
|
}>;
|
1105
1105
|
}, "strip", import("zod").ZodTypeAny, {
|
1106
1106
|
id: string;
|
@@ -1115,12 +1115,12 @@ export declare const mailContract: {
|
|
1115
1115
|
createdAt: Date;
|
1116
1116
|
updatedAt: Date;
|
1117
1117
|
deletedAt: Date | null;
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1118
|
+
extensionName: string;
|
1119
|
+
fileName: string;
|
1120
|
+
fileKey: string;
|
1121
|
+
bucketName: string;
|
1122
|
+
fileSize: number;
|
1123
|
+
fileUrl: string;
|
1124
1124
|
};
|
1125
1125
|
roomId: string;
|
1126
1126
|
messageId: string;
|
@@ -1138,12 +1138,12 @@ export declare const mailContract: {
|
|
1138
1138
|
createdAt: Date;
|
1139
1139
|
updatedAt: Date;
|
1140
1140
|
deletedAt: Date | null;
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1141
|
+
extensionName: string;
|
1142
|
+
fileName: string;
|
1143
|
+
fileKey: string;
|
1144
|
+
bucketName: string;
|
1145
|
+
fileSize: number;
|
1146
|
+
fileUrl: string;
|
1147
1147
|
};
|
1148
1148
|
roomId: string;
|
1149
1149
|
messageId: string;
|
@@ -1212,12 +1212,12 @@ export declare const mailContract: {
|
|
1212
1212
|
createdAt: Date;
|
1213
1213
|
updatedAt: Date;
|
1214
1214
|
deletedAt: Date | null;
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1215
|
+
extensionName: string;
|
1216
|
+
fileName: string;
|
1217
|
+
fileKey: string;
|
1218
|
+
bucketName: string;
|
1219
|
+
fileSize: number;
|
1220
|
+
fileUrl: string;
|
1221
1221
|
};
|
1222
1222
|
roomId: string;
|
1223
1223
|
messageId: string;
|
@@ -1286,12 +1286,12 @@ export declare const mailContract: {
|
|
1286
1286
|
createdAt: Date;
|
1287
1287
|
updatedAt: Date;
|
1288
1288
|
deletedAt: Date | null;
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1289
|
+
extensionName: string;
|
1290
|
+
fileName: string;
|
1291
|
+
fileKey: string;
|
1292
|
+
bucketName: string;
|
1293
|
+
fileSize: number;
|
1294
|
+
fileUrl: string;
|
1295
1295
|
};
|
1296
1296
|
roomId: string;
|
1297
1297
|
messageId: string;
|
@@ -1420,34 +1420,34 @@ export declare const mailContract: {
|
|
1420
1420
|
createdAt: import("zod").ZodDate;
|
1421
1421
|
updatedAt: import("zod").ZodDate;
|
1422
1422
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
1423
|
-
|
1424
|
-
|
1425
|
-
|
1426
|
-
|
1427
|
-
|
1428
|
-
|
1423
|
+
bucketName: import("zod").ZodString;
|
1424
|
+
fileName: import("zod").ZodString;
|
1425
|
+
fileKey: import("zod").ZodString;
|
1426
|
+
fileSize: import("zod").ZodNumber;
|
1427
|
+
fileUrl: import("zod").ZodString;
|
1428
|
+
extensionName: import("zod").ZodString;
|
1429
1429
|
}, "strip", import("zod").ZodTypeAny, {
|
1430
1430
|
id: string;
|
1431
1431
|
createdAt: Date;
|
1432
1432
|
updatedAt: Date;
|
1433
1433
|
deletedAt: Date | null;
|
1434
|
-
|
1435
|
-
|
1436
|
-
|
1437
|
-
|
1438
|
-
|
1439
|
-
|
1434
|
+
extensionName: string;
|
1435
|
+
fileName: string;
|
1436
|
+
fileKey: string;
|
1437
|
+
bucketName: string;
|
1438
|
+
fileSize: number;
|
1439
|
+
fileUrl: string;
|
1440
1440
|
}, {
|
1441
1441
|
id: string;
|
1442
1442
|
createdAt: Date;
|
1443
1443
|
updatedAt: Date;
|
1444
1444
|
deletedAt: Date | null;
|
1445
|
-
|
1446
|
-
|
1447
|
-
|
1448
|
-
|
1449
|
-
|
1450
|
-
|
1445
|
+
extensionName: string;
|
1446
|
+
fileName: string;
|
1447
|
+
fileKey: string;
|
1448
|
+
bucketName: string;
|
1449
|
+
fileSize: number;
|
1450
|
+
fileUrl: string;
|
1451
1451
|
}>;
|
1452
1452
|
}, "strip", import("zod").ZodTypeAny, {
|
1453
1453
|
id: string;
|
@@ -1462,12 +1462,12 @@ export declare const mailContract: {
|
|
1462
1462
|
createdAt: Date;
|
1463
1463
|
updatedAt: Date;
|
1464
1464
|
deletedAt: Date | null;
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1465
|
+
extensionName: string;
|
1466
|
+
fileName: string;
|
1467
|
+
fileKey: string;
|
1468
|
+
bucketName: string;
|
1469
|
+
fileSize: number;
|
1470
|
+
fileUrl: string;
|
1471
1471
|
};
|
1472
1472
|
roomId: string;
|
1473
1473
|
messageId: string;
|
@@ -1485,12 +1485,12 @@ export declare const mailContract: {
|
|
1485
1485
|
createdAt: Date;
|
1486
1486
|
updatedAt: Date;
|
1487
1487
|
deletedAt: Date | null;
|
1488
|
-
|
1489
|
-
|
1490
|
-
|
1491
|
-
|
1492
|
-
|
1493
|
-
|
1488
|
+
extensionName: string;
|
1489
|
+
fileName: string;
|
1490
|
+
fileKey: string;
|
1491
|
+
bucketName: string;
|
1492
|
+
fileSize: number;
|
1493
|
+
fileUrl: string;
|
1494
1494
|
};
|
1495
1495
|
roomId: string;
|
1496
1496
|
messageId: string;
|
@@ -1559,12 +1559,12 @@ export declare const mailContract: {
|
|
1559
1559
|
createdAt: Date;
|
1560
1560
|
updatedAt: Date;
|
1561
1561
|
deletedAt: Date | null;
|
1562
|
-
|
1563
|
-
|
1564
|
-
|
1565
|
-
|
1566
|
-
|
1567
|
-
|
1562
|
+
extensionName: string;
|
1563
|
+
fileName: string;
|
1564
|
+
fileKey: string;
|
1565
|
+
bucketName: string;
|
1566
|
+
fileSize: number;
|
1567
|
+
fileUrl: string;
|
1568
1568
|
};
|
1569
1569
|
roomId: string;
|
1570
1570
|
messageId: string;
|
@@ -1633,12 +1633,12 @@ export declare const mailContract: {
|
|
1633
1633
|
createdAt: Date;
|
1634
1634
|
updatedAt: Date;
|
1635
1635
|
deletedAt: Date | null;
|
1636
|
-
|
1637
|
-
|
1638
|
-
|
1639
|
-
|
1640
|
-
|
1641
|
-
|
1636
|
+
extensionName: string;
|
1637
|
+
fileName: string;
|
1638
|
+
fileKey: string;
|
1639
|
+
bucketName: string;
|
1640
|
+
fileSize: number;
|
1641
|
+
fileUrl: string;
|
1642
1642
|
};
|
1643
1643
|
roomId: string;
|
1644
1644
|
messageId: string;
|
@@ -1661,7 +1661,7 @@ export declare const mailContract: {
|
|
1661
1661
|
email: import("zod").ZodString;
|
1662
1662
|
address: import("zod").ZodNullable<import("zod").ZodString>;
|
1663
1663
|
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
1664
|
-
|
1664
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
1665
1665
|
}, "strip", import("zod").ZodTypeAny, {
|
1666
1666
|
id: string;
|
1667
1667
|
address: string | null;
|
@@ -1671,7 +1671,7 @@ export declare const mailContract: {
|
|
1671
1671
|
updatedAt: Date;
|
1672
1672
|
deletedAt: Date | null;
|
1673
1673
|
phone: string | null;
|
1674
|
-
|
1674
|
+
notificationCount: number | null;
|
1675
1675
|
}, {
|
1676
1676
|
id: string;
|
1677
1677
|
address: string | null;
|
@@ -1681,7 +1681,7 @@ export declare const mailContract: {
|
|
1681
1681
|
updatedAt: Date;
|
1682
1682
|
deletedAt: Date | null;
|
1683
1683
|
phone: string | null;
|
1684
|
-
|
1684
|
+
notificationCount: number | null;
|
1685
1685
|
}>;
|
1686
1686
|
}, "strip", import("zod").ZodTypeAny, {
|
1687
1687
|
id: string;
|
@@ -1698,7 +1698,7 @@ export declare const mailContract: {
|
|
1698
1698
|
updatedAt: Date;
|
1699
1699
|
deletedAt: Date | null;
|
1700
1700
|
phone: string | null;
|
1701
|
-
|
1701
|
+
notificationCount: number | null;
|
1702
1702
|
};
|
1703
1703
|
roomId: string;
|
1704
1704
|
actorId: string;
|
@@ -1717,7 +1717,7 @@ export declare const mailContract: {
|
|
1717
1717
|
updatedAt: Date;
|
1718
1718
|
deletedAt: Date | null;
|
1719
1719
|
phone: string | null;
|
1720
|
-
|
1720
|
+
notificationCount: number | null;
|
1721
1721
|
};
|
1722
1722
|
roomId: string;
|
1723
1723
|
actorId: string;
|
@@ -1738,12 +1738,12 @@ export declare const mailContract: {
|
|
1738
1738
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
1739
1739
|
name: import("zod").ZodString;
|
1740
1740
|
smtpHost: import("zod").ZodString;
|
1741
|
-
smtpPort: import("zod").
|
1742
|
-
smtpTlsPort: import("zod").
|
1741
|
+
smtpPort: import("zod").ZodNumber;
|
1742
|
+
smtpTlsPort: import("zod").ZodNumber;
|
1743
1743
|
useTlsForSmtp: import("zod").ZodBoolean;
|
1744
1744
|
imapHost: import("zod").ZodString;
|
1745
|
-
imapPort: import("zod").
|
1746
|
-
imapTlsPort: import("zod").
|
1745
|
+
imapPort: import("zod").ZodNumber;
|
1746
|
+
imapTlsPort: import("zod").ZodNumber;
|
1747
1747
|
useTlsForImap: import("zod").ZodBoolean;
|
1748
1748
|
}, "strip", import("zod").ZodTypeAny, {
|
1749
1749
|
id: string;
|
@@ -1752,12 +1752,12 @@ export declare const mailContract: {
|
|
1752
1752
|
updatedAt: Date;
|
1753
1753
|
deletedAt: Date | null;
|
1754
1754
|
smtpHost: string;
|
1755
|
-
smtpPort:
|
1756
|
-
smtpTlsPort:
|
1755
|
+
smtpPort: number;
|
1756
|
+
smtpTlsPort: number;
|
1757
1757
|
useTlsForSmtp: boolean;
|
1758
1758
|
imapHost: string;
|
1759
|
-
imapPort:
|
1760
|
-
imapTlsPort:
|
1759
|
+
imapPort: number;
|
1760
|
+
imapTlsPort: number;
|
1761
1761
|
useTlsForImap: boolean;
|
1762
1762
|
}, {
|
1763
1763
|
id: string;
|
@@ -1766,12 +1766,12 @@ export declare const mailContract: {
|
|
1766
1766
|
updatedAt: Date;
|
1767
1767
|
deletedAt: Date | null;
|
1768
1768
|
smtpHost: string;
|
1769
|
-
smtpPort:
|
1770
|
-
smtpTlsPort:
|
1769
|
+
smtpPort: number;
|
1770
|
+
smtpTlsPort: number;
|
1771
1771
|
useTlsForSmtp: boolean;
|
1772
1772
|
imapHost: string;
|
1773
|
-
imapPort:
|
1774
|
-
imapTlsPort:
|
1773
|
+
imapPort: number;
|
1774
|
+
imapTlsPort: number;
|
1775
1775
|
useTlsForImap: boolean;
|
1776
1776
|
}>;
|
1777
1777
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -1792,12 +1792,12 @@ export declare const mailContract: {
|
|
1792
1792
|
updatedAt: Date;
|
1793
1793
|
deletedAt: Date | null;
|
1794
1794
|
smtpHost: string;
|
1795
|
-
smtpPort:
|
1796
|
-
smtpTlsPort:
|
1795
|
+
smtpPort: number;
|
1796
|
+
smtpTlsPort: number;
|
1797
1797
|
useTlsForSmtp: boolean;
|
1798
1798
|
imapHost: string;
|
1799
|
-
imapPort:
|
1800
|
-
imapTlsPort:
|
1799
|
+
imapPort: number;
|
1800
|
+
imapTlsPort: number;
|
1801
1801
|
useTlsForImap: boolean;
|
1802
1802
|
};
|
1803
1803
|
}, {
|
@@ -1817,12 +1817,12 @@ export declare const mailContract: {
|
|
1817
1817
|
updatedAt: Date;
|
1818
1818
|
deletedAt: Date | null;
|
1819
1819
|
smtpHost: string;
|
1820
|
-
smtpPort:
|
1821
|
-
smtpTlsPort:
|
1820
|
+
smtpPort: number;
|
1821
|
+
smtpTlsPort: number;
|
1822
1822
|
useTlsForSmtp: boolean;
|
1823
1823
|
imapHost: string;
|
1824
|
-
imapPort:
|
1825
|
-
imapTlsPort:
|
1824
|
+
imapPort: number;
|
1825
|
+
imapTlsPort: number;
|
1826
1826
|
useTlsForImap: boolean;
|
1827
1827
|
};
|
1828
1828
|
}>;
|
@@ -1905,12 +1905,12 @@ export declare const mailContract: {
|
|
1905
1905
|
createdAt: Date;
|
1906
1906
|
updatedAt: Date;
|
1907
1907
|
deletedAt: Date | null;
|
1908
|
-
|
1909
|
-
|
1910
|
-
|
1911
|
-
|
1912
|
-
|
1913
|
-
|
1908
|
+
extensionName: string;
|
1909
|
+
fileName: string;
|
1910
|
+
fileKey: string;
|
1911
|
+
bucketName: string;
|
1912
|
+
fileSize: number;
|
1913
|
+
fileUrl: string;
|
1914
1914
|
};
|
1915
1915
|
roomId: string;
|
1916
1916
|
messageId: string;
|
@@ -1926,7 +1926,7 @@ export declare const mailContract: {
|
|
1926
1926
|
updatedAt: Date;
|
1927
1927
|
deletedAt: Date | null;
|
1928
1928
|
phone: string | null;
|
1929
|
-
|
1929
|
+
notificationCount: number | null;
|
1930
1930
|
};
|
1931
1931
|
resolved: boolean;
|
1932
1932
|
assigneeId: string | null;
|
@@ -2029,12 +2029,12 @@ export declare const mailContract: {
|
|
2029
2029
|
createdAt: Date;
|
2030
2030
|
updatedAt: Date;
|
2031
2031
|
deletedAt: Date | null;
|
2032
|
-
|
2033
|
-
|
2034
|
-
|
2035
|
-
|
2036
|
-
|
2037
|
-
|
2032
|
+
extensionName: string;
|
2033
|
+
fileName: string;
|
2034
|
+
fileKey: string;
|
2035
|
+
bucketName: string;
|
2036
|
+
fileSize: number;
|
2037
|
+
fileUrl: string;
|
2038
2038
|
};
|
2039
2039
|
roomId: string;
|
2040
2040
|
messageId: string;
|
@@ -2104,12 +2104,12 @@ export declare const mailContract: {
|
|
2104
2104
|
createdAt: Date;
|
2105
2105
|
updatedAt: Date;
|
2106
2106
|
deletedAt: Date | null;
|
2107
|
-
|
2108
|
-
|
2109
|
-
|
2110
|
-
|
2111
|
-
|
2112
|
-
|
2107
|
+
extensionName: string;
|
2108
|
+
fileName: string;
|
2109
|
+
fileKey: string;
|
2110
|
+
bucketName: string;
|
2111
|
+
fileSize: number;
|
2112
|
+
fileUrl: string;
|
2113
2113
|
};
|
2114
2114
|
roomId: string;
|
2115
2115
|
messageId: string;
|
@@ -2179,12 +2179,12 @@ export declare const mailContract: {
|
|
2179
2179
|
createdAt: Date;
|
2180
2180
|
updatedAt: Date;
|
2181
2181
|
deletedAt: Date | null;
|
2182
|
-
|
2183
|
-
|
2184
|
-
|
2185
|
-
|
2186
|
-
|
2187
|
-
|
2182
|
+
extensionName: string;
|
2183
|
+
fileName: string;
|
2184
|
+
fileKey: string;
|
2185
|
+
bucketName: string;
|
2186
|
+
fileSize: number;
|
2187
|
+
fileUrl: string;
|
2188
2188
|
};
|
2189
2189
|
roomId: string;
|
2190
2190
|
messageId: string;
|
@@ -2205,7 +2205,7 @@ export declare const mailContract: {
|
|
2205
2205
|
updatedAt: Date;
|
2206
2206
|
deletedAt: Date | null;
|
2207
2207
|
phone: string | null;
|
2208
|
-
|
2208
|
+
notificationCount: number | null;
|
2209
2209
|
};
|
2210
2210
|
roomId: string;
|
2211
2211
|
actorId: string;
|
@@ -2227,12 +2227,12 @@ export declare const mailContract: {
|
|
2227
2227
|
updatedAt: Date;
|
2228
2228
|
deletedAt: Date | null;
|
2229
2229
|
smtpHost: string;
|
2230
|
-
smtpPort:
|
2231
|
-
smtpTlsPort:
|
2230
|
+
smtpPort: number;
|
2231
|
+
smtpTlsPort: number;
|
2232
2232
|
useTlsForSmtp: boolean;
|
2233
2233
|
imapHost: string;
|
2234
|
-
imapPort:
|
2235
|
-
imapTlsPort:
|
2234
|
+
imapPort: number;
|
2235
|
+
imapTlsPort: number;
|
2236
2236
|
useTlsForImap: boolean;
|
2237
2237
|
};
|
2238
2238
|
};
|
@@ -2315,12 +2315,12 @@ export declare const mailContract: {
|
|
2315
2315
|
createdAt: Date;
|
2316
2316
|
updatedAt: Date;
|
2317
2317
|
deletedAt: Date | null;
|
2318
|
-
|
2319
|
-
|
2320
|
-
|
2321
|
-
|
2322
|
-
|
2323
|
-
|
2318
|
+
extensionName: string;
|
2319
|
+
fileName: string;
|
2320
|
+
fileKey: string;
|
2321
|
+
bucketName: string;
|
2322
|
+
fileSize: number;
|
2323
|
+
fileUrl: string;
|
2324
2324
|
};
|
2325
2325
|
roomId: string;
|
2326
2326
|
messageId: string;
|
@@ -2336,7 +2336,7 @@ export declare const mailContract: {
|
|
2336
2336
|
updatedAt: Date;
|
2337
2337
|
deletedAt: Date | null;
|
2338
2338
|
phone: string | null;
|
2339
|
-
|
2339
|
+
notificationCount: number | null;
|
2340
2340
|
};
|
2341
2341
|
resolved: boolean;
|
2342
2342
|
assigneeId: string | null;
|
@@ -2439,12 +2439,12 @@ export declare const mailContract: {
|
|
2439
2439
|
createdAt: Date;
|
2440
2440
|
updatedAt: Date;
|
2441
2441
|
deletedAt: Date | null;
|
2442
|
-
|
2443
|
-
|
2444
|
-
|
2445
|
-
|
2446
|
-
|
2447
|
-
|
2442
|
+
extensionName: string;
|
2443
|
+
fileName: string;
|
2444
|
+
fileKey: string;
|
2445
|
+
bucketName: string;
|
2446
|
+
fileSize: number;
|
2447
|
+
fileUrl: string;
|
2448
2448
|
};
|
2449
2449
|
roomId: string;
|
2450
2450
|
messageId: string;
|
@@ -2514,12 +2514,12 @@ export declare const mailContract: {
|
|
2514
2514
|
createdAt: Date;
|
2515
2515
|
updatedAt: Date;
|
2516
2516
|
deletedAt: Date | null;
|
2517
|
-
|
2518
|
-
|
2519
|
-
|
2520
|
-
|
2521
|
-
|
2522
|
-
|
2517
|
+
extensionName: string;
|
2518
|
+
fileName: string;
|
2519
|
+
fileKey: string;
|
2520
|
+
bucketName: string;
|
2521
|
+
fileSize: number;
|
2522
|
+
fileUrl: string;
|
2523
2523
|
};
|
2524
2524
|
roomId: string;
|
2525
2525
|
messageId: string;
|
@@ -2589,12 +2589,12 @@ export declare const mailContract: {
|
|
2589
2589
|
createdAt: Date;
|
2590
2590
|
updatedAt: Date;
|
2591
2591
|
deletedAt: Date | null;
|
2592
|
-
|
2593
|
-
|
2594
|
-
|
2595
|
-
|
2596
|
-
|
2597
|
-
|
2592
|
+
extensionName: string;
|
2593
|
+
fileName: string;
|
2594
|
+
fileKey: string;
|
2595
|
+
bucketName: string;
|
2596
|
+
fileSize: number;
|
2597
|
+
fileUrl: string;
|
2598
2598
|
};
|
2599
2599
|
roomId: string;
|
2600
2600
|
messageId: string;
|
@@ -2615,7 +2615,7 @@ export declare const mailContract: {
|
|
2615
2615
|
updatedAt: Date;
|
2616
2616
|
deletedAt: Date | null;
|
2617
2617
|
phone: string | null;
|
2618
|
-
|
2618
|
+
notificationCount: number | null;
|
2619
2619
|
};
|
2620
2620
|
roomId: string;
|
2621
2621
|
actorId: string;
|
@@ -2637,12 +2637,12 @@ export declare const mailContract: {
|
|
2637
2637
|
updatedAt: Date;
|
2638
2638
|
deletedAt: Date | null;
|
2639
2639
|
smtpHost: string;
|
2640
|
-
smtpPort:
|
2641
|
-
smtpTlsPort:
|
2640
|
+
smtpPort: number;
|
2641
|
+
smtpTlsPort: number;
|
2642
2642
|
useTlsForSmtp: boolean;
|
2643
2643
|
imapHost: string;
|
2644
|
-
imapPort:
|
2645
|
-
imapTlsPort:
|
2644
|
+
imapPort: number;
|
2645
|
+
imapTlsPort: number;
|
2646
2646
|
useTlsForImap: boolean;
|
2647
2647
|
};
|
2648
2648
|
};
|
@@ -2730,12 +2730,12 @@ export declare const mailContract: {
|
|
2730
2730
|
createdAt: Date;
|
2731
2731
|
updatedAt: Date;
|
2732
2732
|
deletedAt: Date | null;
|
2733
|
-
|
2734
|
-
|
2735
|
-
|
2736
|
-
|
2737
|
-
|
2738
|
-
|
2733
|
+
extensionName: string;
|
2734
|
+
fileName: string;
|
2735
|
+
fileKey: string;
|
2736
|
+
bucketName: string;
|
2737
|
+
fileSize: number;
|
2738
|
+
fileUrl: string;
|
2739
2739
|
};
|
2740
2740
|
roomId: string;
|
2741
2741
|
messageId: string;
|
@@ -2751,7 +2751,7 @@ export declare const mailContract: {
|
|
2751
2751
|
updatedAt: Date;
|
2752
2752
|
deletedAt: Date | null;
|
2753
2753
|
phone: string | null;
|
2754
|
-
|
2754
|
+
notificationCount: number | null;
|
2755
2755
|
};
|
2756
2756
|
resolved: boolean;
|
2757
2757
|
assigneeId: string | null;
|
@@ -2854,12 +2854,12 @@ export declare const mailContract: {
|
|
2854
2854
|
createdAt: Date;
|
2855
2855
|
updatedAt: Date;
|
2856
2856
|
deletedAt: Date | null;
|
2857
|
-
|
2858
|
-
|
2859
|
-
|
2860
|
-
|
2861
|
-
|
2862
|
-
|
2857
|
+
extensionName: string;
|
2858
|
+
fileName: string;
|
2859
|
+
fileKey: string;
|
2860
|
+
bucketName: string;
|
2861
|
+
fileSize: number;
|
2862
|
+
fileUrl: string;
|
2863
2863
|
};
|
2864
2864
|
roomId: string;
|
2865
2865
|
messageId: string;
|
@@ -2929,12 +2929,12 @@ export declare const mailContract: {
|
|
2929
2929
|
createdAt: Date;
|
2930
2930
|
updatedAt: Date;
|
2931
2931
|
deletedAt: Date | null;
|
2932
|
-
|
2933
|
-
|
2934
|
-
|
2935
|
-
|
2936
|
-
|
2937
|
-
|
2932
|
+
extensionName: string;
|
2933
|
+
fileName: string;
|
2934
|
+
fileKey: string;
|
2935
|
+
bucketName: string;
|
2936
|
+
fileSize: number;
|
2937
|
+
fileUrl: string;
|
2938
2938
|
};
|
2939
2939
|
roomId: string;
|
2940
2940
|
messageId: string;
|
@@ -3004,12 +3004,12 @@ export declare const mailContract: {
|
|
3004
3004
|
createdAt: Date;
|
3005
3005
|
updatedAt: Date;
|
3006
3006
|
deletedAt: Date | null;
|
3007
|
-
|
3008
|
-
|
3009
|
-
|
3010
|
-
|
3011
|
-
|
3012
|
-
|
3007
|
+
extensionName: string;
|
3008
|
+
fileName: string;
|
3009
|
+
fileKey: string;
|
3010
|
+
bucketName: string;
|
3011
|
+
fileSize: number;
|
3012
|
+
fileUrl: string;
|
3013
3013
|
};
|
3014
3014
|
roomId: string;
|
3015
3015
|
messageId: string;
|
@@ -3030,7 +3030,7 @@ export declare const mailContract: {
|
|
3030
3030
|
updatedAt: Date;
|
3031
3031
|
deletedAt: Date | null;
|
3032
3032
|
phone: string | null;
|
3033
|
-
|
3033
|
+
notificationCount: number | null;
|
3034
3034
|
};
|
3035
3035
|
roomId: string;
|
3036
3036
|
actorId: string;
|
@@ -3052,12 +3052,12 @@ export declare const mailContract: {
|
|
3052
3052
|
updatedAt: Date;
|
3053
3053
|
deletedAt: Date | null;
|
3054
3054
|
smtpHost: string;
|
3055
|
-
smtpPort:
|
3056
|
-
smtpTlsPort:
|
3055
|
+
smtpPort: number;
|
3056
|
+
smtpTlsPort: number;
|
3057
3057
|
useTlsForSmtp: boolean;
|
3058
3058
|
imapHost: string;
|
3059
|
-
imapPort:
|
3060
|
-
imapTlsPort:
|
3059
|
+
imapPort: number;
|
3060
|
+
imapTlsPort: number;
|
3061
3061
|
useTlsForImap: boolean;
|
3062
3062
|
};
|
3063
3063
|
};
|
@@ -3146,12 +3146,12 @@ export declare const mailContract: {
|
|
3146
3146
|
createdAt: Date;
|
3147
3147
|
updatedAt: Date;
|
3148
3148
|
deletedAt: Date | null;
|
3149
|
-
|
3150
|
-
|
3151
|
-
|
3152
|
-
|
3153
|
-
|
3154
|
-
|
3149
|
+
extensionName: string;
|
3150
|
+
fileName: string;
|
3151
|
+
fileKey: string;
|
3152
|
+
bucketName: string;
|
3153
|
+
fileSize: number;
|
3154
|
+
fileUrl: string;
|
3155
3155
|
};
|
3156
3156
|
roomId: string;
|
3157
3157
|
messageId: string;
|
@@ -3167,7 +3167,7 @@ export declare const mailContract: {
|
|
3167
3167
|
updatedAt: Date;
|
3168
3168
|
deletedAt: Date | null;
|
3169
3169
|
phone: string | null;
|
3170
|
-
|
3170
|
+
notificationCount: number | null;
|
3171
3171
|
};
|
3172
3172
|
resolved: boolean;
|
3173
3173
|
assigneeId: string | null;
|
@@ -3270,12 +3270,12 @@ export declare const mailContract: {
|
|
3270
3270
|
createdAt: Date;
|
3271
3271
|
updatedAt: Date;
|
3272
3272
|
deletedAt: Date | null;
|
3273
|
-
|
3274
|
-
|
3275
|
-
|
3276
|
-
|
3277
|
-
|
3278
|
-
|
3273
|
+
extensionName: string;
|
3274
|
+
fileName: string;
|
3275
|
+
fileKey: string;
|
3276
|
+
bucketName: string;
|
3277
|
+
fileSize: number;
|
3278
|
+
fileUrl: string;
|
3279
3279
|
};
|
3280
3280
|
roomId: string;
|
3281
3281
|
messageId: string;
|
@@ -3345,12 +3345,12 @@ export declare const mailContract: {
|
|
3345
3345
|
createdAt: Date;
|
3346
3346
|
updatedAt: Date;
|
3347
3347
|
deletedAt: Date | null;
|
3348
|
-
|
3349
|
-
|
3350
|
-
|
3351
|
-
|
3352
|
-
|
3353
|
-
|
3348
|
+
extensionName: string;
|
3349
|
+
fileName: string;
|
3350
|
+
fileKey: string;
|
3351
|
+
bucketName: string;
|
3352
|
+
fileSize: number;
|
3353
|
+
fileUrl: string;
|
3354
3354
|
};
|
3355
3355
|
roomId: string;
|
3356
3356
|
messageId: string;
|
@@ -3420,12 +3420,12 @@ export declare const mailContract: {
|
|
3420
3420
|
createdAt: Date;
|
3421
3421
|
updatedAt: Date;
|
3422
3422
|
deletedAt: Date | null;
|
3423
|
-
|
3424
|
-
|
3425
|
-
|
3426
|
-
|
3427
|
-
|
3428
|
-
|
3423
|
+
extensionName: string;
|
3424
|
+
fileName: string;
|
3425
|
+
fileKey: string;
|
3426
|
+
bucketName: string;
|
3427
|
+
fileSize: number;
|
3428
|
+
fileUrl: string;
|
3429
3429
|
};
|
3430
3430
|
roomId: string;
|
3431
3431
|
messageId: string;
|
@@ -3446,7 +3446,7 @@ export declare const mailContract: {
|
|
3446
3446
|
updatedAt: Date;
|
3447
3447
|
deletedAt: Date | null;
|
3448
3448
|
phone: string | null;
|
3449
|
-
|
3449
|
+
notificationCount: number | null;
|
3450
3450
|
};
|
3451
3451
|
roomId: string;
|
3452
3452
|
actorId: string;
|
@@ -3468,12 +3468,12 @@ export declare const mailContract: {
|
|
3468
3468
|
updatedAt: Date;
|
3469
3469
|
deletedAt: Date | null;
|
3470
3470
|
smtpHost: string;
|
3471
|
-
smtpPort:
|
3472
|
-
smtpTlsPort:
|
3471
|
+
smtpPort: number;
|
3472
|
+
smtpTlsPort: number;
|
3473
3473
|
useTlsForSmtp: boolean;
|
3474
3474
|
imapHost: string;
|
3475
|
-
imapPort:
|
3476
|
-
imapTlsPort:
|
3475
|
+
imapPort: number;
|
3476
|
+
imapTlsPort: number;
|
3477
3477
|
useTlsForImap: boolean;
|
3478
3478
|
};
|
3479
3479
|
};
|
@@ -3753,34 +3753,34 @@ export declare const mailContract: {
|
|
3753
3753
|
createdAt: import("zod").ZodDate;
|
3754
3754
|
updatedAt: import("zod").ZodDate;
|
3755
3755
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
3756
|
-
|
3757
|
-
|
3758
|
-
|
3759
|
-
|
3760
|
-
|
3761
|
-
|
3756
|
+
bucketName: import("zod").ZodString;
|
3757
|
+
fileName: import("zod").ZodString;
|
3758
|
+
fileKey: import("zod").ZodString;
|
3759
|
+
fileSize: import("zod").ZodNumber;
|
3760
|
+
fileUrl: import("zod").ZodString;
|
3761
|
+
extensionName: import("zod").ZodString;
|
3762
3762
|
}, "strip", import("zod").ZodTypeAny, {
|
3763
3763
|
id: string;
|
3764
3764
|
createdAt: Date;
|
3765
3765
|
updatedAt: Date;
|
3766
3766
|
deletedAt: Date | null;
|
3767
|
-
|
3768
|
-
|
3769
|
-
|
3770
|
-
|
3771
|
-
|
3772
|
-
|
3767
|
+
extensionName: string;
|
3768
|
+
fileName: string;
|
3769
|
+
fileKey: string;
|
3770
|
+
bucketName: string;
|
3771
|
+
fileSize: number;
|
3772
|
+
fileUrl: string;
|
3773
3773
|
}, {
|
3774
3774
|
id: string;
|
3775
3775
|
createdAt: Date;
|
3776
3776
|
updatedAt: Date;
|
3777
3777
|
deletedAt: Date | null;
|
3778
|
-
|
3779
|
-
|
3780
|
-
|
3781
|
-
|
3782
|
-
|
3783
|
-
|
3778
|
+
extensionName: string;
|
3779
|
+
fileName: string;
|
3780
|
+
fileKey: string;
|
3781
|
+
bucketName: string;
|
3782
|
+
fileSize: number;
|
3783
|
+
fileUrl: string;
|
3784
3784
|
}>;
|
3785
3785
|
}, "strip", import("zod").ZodTypeAny, {
|
3786
3786
|
id: string;
|
@@ -3795,12 +3795,12 @@ export declare const mailContract: {
|
|
3795
3795
|
createdAt: Date;
|
3796
3796
|
updatedAt: Date;
|
3797
3797
|
deletedAt: Date | null;
|
3798
|
-
|
3799
|
-
|
3800
|
-
|
3801
|
-
|
3802
|
-
|
3803
|
-
|
3798
|
+
extensionName: string;
|
3799
|
+
fileName: string;
|
3800
|
+
fileKey: string;
|
3801
|
+
bucketName: string;
|
3802
|
+
fileSize: number;
|
3803
|
+
fileUrl: string;
|
3804
3804
|
};
|
3805
3805
|
roomId: string;
|
3806
3806
|
messageId: string;
|
@@ -3818,12 +3818,12 @@ export declare const mailContract: {
|
|
3818
3818
|
createdAt: Date;
|
3819
3819
|
updatedAt: Date;
|
3820
3820
|
deletedAt: Date | null;
|
3821
|
-
|
3822
|
-
|
3823
|
-
|
3824
|
-
|
3825
|
-
|
3826
|
-
|
3821
|
+
extensionName: string;
|
3822
|
+
fileName: string;
|
3823
|
+
fileKey: string;
|
3824
|
+
bucketName: string;
|
3825
|
+
fileSize: number;
|
3826
|
+
fileUrl: string;
|
3827
3827
|
};
|
3828
3828
|
roomId: string;
|
3829
3829
|
messageId: string;
|
@@ -3892,12 +3892,12 @@ export declare const mailContract: {
|
|
3892
3892
|
createdAt: Date;
|
3893
3893
|
updatedAt: Date;
|
3894
3894
|
deletedAt: Date | null;
|
3895
|
-
|
3896
|
-
|
3897
|
-
|
3898
|
-
|
3899
|
-
|
3900
|
-
|
3895
|
+
extensionName: string;
|
3896
|
+
fileName: string;
|
3897
|
+
fileKey: string;
|
3898
|
+
bucketName: string;
|
3899
|
+
fileSize: number;
|
3900
|
+
fileUrl: string;
|
3901
3901
|
};
|
3902
3902
|
roomId: string;
|
3903
3903
|
messageId: string;
|
@@ -3966,12 +3966,12 @@ export declare const mailContract: {
|
|
3966
3966
|
createdAt: Date;
|
3967
3967
|
updatedAt: Date;
|
3968
3968
|
deletedAt: Date | null;
|
3969
|
-
|
3970
|
-
|
3971
|
-
|
3972
|
-
|
3973
|
-
|
3974
|
-
|
3969
|
+
extensionName: string;
|
3970
|
+
fileName: string;
|
3971
|
+
fileKey: string;
|
3972
|
+
bucketName: string;
|
3973
|
+
fileSize: number;
|
3974
|
+
fileUrl: string;
|
3975
3975
|
};
|
3976
3976
|
roomId: string;
|
3977
3977
|
messageId: string;
|
@@ -4100,34 +4100,34 @@ export declare const mailContract: {
|
|
4100
4100
|
createdAt: import("zod").ZodDate;
|
4101
4101
|
updatedAt: import("zod").ZodDate;
|
4102
4102
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
4103
|
-
|
4104
|
-
|
4105
|
-
|
4106
|
-
|
4107
|
-
|
4108
|
-
|
4103
|
+
bucketName: import("zod").ZodString;
|
4104
|
+
fileName: import("zod").ZodString;
|
4105
|
+
fileKey: import("zod").ZodString;
|
4106
|
+
fileSize: import("zod").ZodNumber;
|
4107
|
+
fileUrl: import("zod").ZodString;
|
4108
|
+
extensionName: import("zod").ZodString;
|
4109
4109
|
}, "strip", import("zod").ZodTypeAny, {
|
4110
4110
|
id: string;
|
4111
4111
|
createdAt: Date;
|
4112
4112
|
updatedAt: Date;
|
4113
4113
|
deletedAt: Date | null;
|
4114
|
-
|
4115
|
-
|
4116
|
-
|
4117
|
-
|
4118
|
-
|
4119
|
-
|
4114
|
+
extensionName: string;
|
4115
|
+
fileName: string;
|
4116
|
+
fileKey: string;
|
4117
|
+
bucketName: string;
|
4118
|
+
fileSize: number;
|
4119
|
+
fileUrl: string;
|
4120
4120
|
}, {
|
4121
4121
|
id: string;
|
4122
4122
|
createdAt: Date;
|
4123
4123
|
updatedAt: Date;
|
4124
4124
|
deletedAt: Date | null;
|
4125
|
-
|
4126
|
-
|
4127
|
-
|
4128
|
-
|
4129
|
-
|
4130
|
-
|
4125
|
+
extensionName: string;
|
4126
|
+
fileName: string;
|
4127
|
+
fileKey: string;
|
4128
|
+
bucketName: string;
|
4129
|
+
fileSize: number;
|
4130
|
+
fileUrl: string;
|
4131
4131
|
}>;
|
4132
4132
|
}, "strip", import("zod").ZodTypeAny, {
|
4133
4133
|
id: string;
|
@@ -4142,12 +4142,12 @@ export declare const mailContract: {
|
|
4142
4142
|
createdAt: Date;
|
4143
4143
|
updatedAt: Date;
|
4144
4144
|
deletedAt: Date | null;
|
4145
|
-
|
4146
|
-
|
4147
|
-
|
4148
|
-
|
4149
|
-
|
4150
|
-
|
4145
|
+
extensionName: string;
|
4146
|
+
fileName: string;
|
4147
|
+
fileKey: string;
|
4148
|
+
bucketName: string;
|
4149
|
+
fileSize: number;
|
4150
|
+
fileUrl: string;
|
4151
4151
|
};
|
4152
4152
|
roomId: string;
|
4153
4153
|
messageId: string;
|
@@ -4165,12 +4165,12 @@ export declare const mailContract: {
|
|
4165
4165
|
createdAt: Date;
|
4166
4166
|
updatedAt: Date;
|
4167
4167
|
deletedAt: Date | null;
|
4168
|
-
|
4169
|
-
|
4170
|
-
|
4171
|
-
|
4172
|
-
|
4173
|
-
|
4168
|
+
extensionName: string;
|
4169
|
+
fileName: string;
|
4170
|
+
fileKey: string;
|
4171
|
+
bucketName: string;
|
4172
|
+
fileSize: number;
|
4173
|
+
fileUrl: string;
|
4174
4174
|
};
|
4175
4175
|
roomId: string;
|
4176
4176
|
messageId: string;
|
@@ -4239,12 +4239,12 @@ export declare const mailContract: {
|
|
4239
4239
|
createdAt: Date;
|
4240
4240
|
updatedAt: Date;
|
4241
4241
|
deletedAt: Date | null;
|
4242
|
-
|
4243
|
-
|
4244
|
-
|
4245
|
-
|
4246
|
-
|
4247
|
-
|
4242
|
+
extensionName: string;
|
4243
|
+
fileName: string;
|
4244
|
+
fileKey: string;
|
4245
|
+
bucketName: string;
|
4246
|
+
fileSize: number;
|
4247
|
+
fileUrl: string;
|
4248
4248
|
};
|
4249
4249
|
roomId: string;
|
4250
4250
|
messageId: string;
|
@@ -4313,12 +4313,12 @@ export declare const mailContract: {
|
|
4313
4313
|
createdAt: Date;
|
4314
4314
|
updatedAt: Date;
|
4315
4315
|
deletedAt: Date | null;
|
4316
|
-
|
4317
|
-
|
4318
|
-
|
4319
|
-
|
4320
|
-
|
4321
|
-
|
4316
|
+
extensionName: string;
|
4317
|
+
fileName: string;
|
4318
|
+
fileKey: string;
|
4319
|
+
bucketName: string;
|
4320
|
+
fileSize: number;
|
4321
|
+
fileUrl: string;
|
4322
4322
|
};
|
4323
4323
|
roomId: string;
|
4324
4324
|
messageId: string;
|
@@ -4356,7 +4356,7 @@ export declare const mailContract: {
|
|
4356
4356
|
email: import("zod").ZodString;
|
4357
4357
|
address: import("zod").ZodNullable<import("zod").ZodString>;
|
4358
4358
|
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
4359
|
-
|
4359
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
4360
4360
|
}, "strip", import("zod").ZodTypeAny, {
|
4361
4361
|
id: string;
|
4362
4362
|
address: string | null;
|
@@ -4366,7 +4366,7 @@ export declare const mailContract: {
|
|
4366
4366
|
updatedAt: Date;
|
4367
4367
|
deletedAt: Date | null;
|
4368
4368
|
phone: string | null;
|
4369
|
-
|
4369
|
+
notificationCount: number | null;
|
4370
4370
|
}, {
|
4371
4371
|
id: string;
|
4372
4372
|
address: string | null;
|
@@ -4376,7 +4376,7 @@ export declare const mailContract: {
|
|
4376
4376
|
updatedAt: Date;
|
4377
4377
|
deletedAt: Date | null;
|
4378
4378
|
phone: string | null;
|
4379
|
-
|
4379
|
+
notificationCount: number | null;
|
4380
4380
|
}>;
|
4381
4381
|
messages: import("zod").ZodArray<import("zod").ZodObject<{
|
4382
4382
|
id: import("zod").ZodString;
|
@@ -4500,34 +4500,34 @@ export declare const mailContract: {
|
|
4500
4500
|
createdAt: import("zod").ZodDate;
|
4501
4501
|
updatedAt: import("zod").ZodDate;
|
4502
4502
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
4503
|
-
|
4504
|
-
|
4505
|
-
|
4506
|
-
|
4507
|
-
|
4508
|
-
|
4503
|
+
bucketName: import("zod").ZodString;
|
4504
|
+
fileName: import("zod").ZodString;
|
4505
|
+
fileKey: import("zod").ZodString;
|
4506
|
+
fileSize: import("zod").ZodNumber;
|
4507
|
+
fileUrl: import("zod").ZodString;
|
4508
|
+
extensionName: import("zod").ZodString;
|
4509
4509
|
}, "strip", import("zod").ZodTypeAny, {
|
4510
4510
|
id: string;
|
4511
4511
|
createdAt: Date;
|
4512
4512
|
updatedAt: Date;
|
4513
4513
|
deletedAt: Date | null;
|
4514
|
-
|
4515
|
-
|
4516
|
-
|
4517
|
-
|
4518
|
-
|
4519
|
-
|
4514
|
+
extensionName: string;
|
4515
|
+
fileName: string;
|
4516
|
+
fileKey: string;
|
4517
|
+
bucketName: string;
|
4518
|
+
fileSize: number;
|
4519
|
+
fileUrl: string;
|
4520
4520
|
}, {
|
4521
4521
|
id: string;
|
4522
4522
|
createdAt: Date;
|
4523
4523
|
updatedAt: Date;
|
4524
4524
|
deletedAt: Date | null;
|
4525
|
-
|
4526
|
-
|
4527
|
-
|
4528
|
-
|
4529
|
-
|
4530
|
-
|
4525
|
+
extensionName: string;
|
4526
|
+
fileName: string;
|
4527
|
+
fileKey: string;
|
4528
|
+
bucketName: string;
|
4529
|
+
fileSize: number;
|
4530
|
+
fileUrl: string;
|
4531
4531
|
}>;
|
4532
4532
|
}, "strip", import("zod").ZodTypeAny, {
|
4533
4533
|
id: string;
|
@@ -4542,12 +4542,12 @@ export declare const mailContract: {
|
|
4542
4542
|
createdAt: Date;
|
4543
4543
|
updatedAt: Date;
|
4544
4544
|
deletedAt: Date | null;
|
4545
|
-
|
4546
|
-
|
4547
|
-
|
4548
|
-
|
4549
|
-
|
4550
|
-
|
4545
|
+
extensionName: string;
|
4546
|
+
fileName: string;
|
4547
|
+
fileKey: string;
|
4548
|
+
bucketName: string;
|
4549
|
+
fileSize: number;
|
4550
|
+
fileUrl: string;
|
4551
4551
|
};
|
4552
4552
|
roomId: string;
|
4553
4553
|
messageId: string;
|
@@ -4565,12 +4565,12 @@ export declare const mailContract: {
|
|
4565
4565
|
createdAt: Date;
|
4566
4566
|
updatedAt: Date;
|
4567
4567
|
deletedAt: Date | null;
|
4568
|
-
|
4569
|
-
|
4570
|
-
|
4571
|
-
|
4572
|
-
|
4573
|
-
|
4568
|
+
extensionName: string;
|
4569
|
+
fileName: string;
|
4570
|
+
fileKey: string;
|
4571
|
+
bucketName: string;
|
4572
|
+
fileSize: number;
|
4573
|
+
fileUrl: string;
|
4574
4574
|
};
|
4575
4575
|
roomId: string;
|
4576
4576
|
messageId: string;
|
@@ -4639,12 +4639,12 @@ export declare const mailContract: {
|
|
4639
4639
|
createdAt: Date;
|
4640
4640
|
updatedAt: Date;
|
4641
4641
|
deletedAt: Date | null;
|
4642
|
-
|
4643
|
-
|
4644
|
-
|
4645
|
-
|
4646
|
-
|
4647
|
-
|
4642
|
+
extensionName: string;
|
4643
|
+
fileName: string;
|
4644
|
+
fileKey: string;
|
4645
|
+
bucketName: string;
|
4646
|
+
fileSize: number;
|
4647
|
+
fileUrl: string;
|
4648
4648
|
};
|
4649
4649
|
roomId: string;
|
4650
4650
|
messageId: string;
|
@@ -4713,12 +4713,12 @@ export declare const mailContract: {
|
|
4713
4713
|
createdAt: Date;
|
4714
4714
|
updatedAt: Date;
|
4715
4715
|
deletedAt: Date | null;
|
4716
|
-
|
4717
|
-
|
4718
|
-
|
4719
|
-
|
4720
|
-
|
4721
|
-
|
4716
|
+
extensionName: string;
|
4717
|
+
fileName: string;
|
4718
|
+
fileKey: string;
|
4719
|
+
bucketName: string;
|
4720
|
+
fileSize: number;
|
4721
|
+
fileUrl: string;
|
4722
4722
|
};
|
4723
4723
|
roomId: string;
|
4724
4724
|
messageId: string;
|
@@ -4847,34 +4847,34 @@ export declare const mailContract: {
|
|
4847
4847
|
createdAt: import("zod").ZodDate;
|
4848
4848
|
updatedAt: import("zod").ZodDate;
|
4849
4849
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
4850
|
-
|
4851
|
-
|
4852
|
-
|
4853
|
-
|
4854
|
-
|
4855
|
-
|
4850
|
+
bucketName: import("zod").ZodString;
|
4851
|
+
fileName: import("zod").ZodString;
|
4852
|
+
fileKey: import("zod").ZodString;
|
4853
|
+
fileSize: import("zod").ZodNumber;
|
4854
|
+
fileUrl: import("zod").ZodString;
|
4855
|
+
extensionName: import("zod").ZodString;
|
4856
4856
|
}, "strip", import("zod").ZodTypeAny, {
|
4857
4857
|
id: string;
|
4858
4858
|
createdAt: Date;
|
4859
4859
|
updatedAt: Date;
|
4860
4860
|
deletedAt: Date | null;
|
4861
|
-
|
4862
|
-
|
4863
|
-
|
4864
|
-
|
4865
|
-
|
4866
|
-
|
4861
|
+
extensionName: string;
|
4862
|
+
fileName: string;
|
4863
|
+
fileKey: string;
|
4864
|
+
bucketName: string;
|
4865
|
+
fileSize: number;
|
4866
|
+
fileUrl: string;
|
4867
4867
|
}, {
|
4868
4868
|
id: string;
|
4869
4869
|
createdAt: Date;
|
4870
4870
|
updatedAt: Date;
|
4871
4871
|
deletedAt: Date | null;
|
4872
|
-
|
4873
|
-
|
4874
|
-
|
4875
|
-
|
4876
|
-
|
4877
|
-
|
4872
|
+
extensionName: string;
|
4873
|
+
fileName: string;
|
4874
|
+
fileKey: string;
|
4875
|
+
bucketName: string;
|
4876
|
+
fileSize: number;
|
4877
|
+
fileUrl: string;
|
4878
4878
|
}>;
|
4879
4879
|
}, "strip", import("zod").ZodTypeAny, {
|
4880
4880
|
id: string;
|
@@ -4889,12 +4889,12 @@ export declare const mailContract: {
|
|
4889
4889
|
createdAt: Date;
|
4890
4890
|
updatedAt: Date;
|
4891
4891
|
deletedAt: Date | null;
|
4892
|
-
|
4893
|
-
|
4894
|
-
|
4895
|
-
|
4896
|
-
|
4897
|
-
|
4892
|
+
extensionName: string;
|
4893
|
+
fileName: string;
|
4894
|
+
fileKey: string;
|
4895
|
+
bucketName: string;
|
4896
|
+
fileSize: number;
|
4897
|
+
fileUrl: string;
|
4898
4898
|
};
|
4899
4899
|
roomId: string;
|
4900
4900
|
messageId: string;
|
@@ -4912,12 +4912,12 @@ export declare const mailContract: {
|
|
4912
4912
|
createdAt: Date;
|
4913
4913
|
updatedAt: Date;
|
4914
4914
|
deletedAt: Date | null;
|
4915
|
-
|
4916
|
-
|
4917
|
-
|
4918
|
-
|
4919
|
-
|
4920
|
-
|
4915
|
+
extensionName: string;
|
4916
|
+
fileName: string;
|
4917
|
+
fileKey: string;
|
4918
|
+
bucketName: string;
|
4919
|
+
fileSize: number;
|
4920
|
+
fileUrl: string;
|
4921
4921
|
};
|
4922
4922
|
roomId: string;
|
4923
4923
|
messageId: string;
|
@@ -4986,12 +4986,12 @@ export declare const mailContract: {
|
|
4986
4986
|
createdAt: Date;
|
4987
4987
|
updatedAt: Date;
|
4988
4988
|
deletedAt: Date | null;
|
4989
|
-
|
4990
|
-
|
4991
|
-
|
4992
|
-
|
4993
|
-
|
4994
|
-
|
4989
|
+
extensionName: string;
|
4990
|
+
fileName: string;
|
4991
|
+
fileKey: string;
|
4992
|
+
bucketName: string;
|
4993
|
+
fileSize: number;
|
4994
|
+
fileUrl: string;
|
4995
4995
|
};
|
4996
4996
|
roomId: string;
|
4997
4997
|
messageId: string;
|
@@ -5060,12 +5060,12 @@ export declare const mailContract: {
|
|
5060
5060
|
createdAt: Date;
|
5061
5061
|
updatedAt: Date;
|
5062
5062
|
deletedAt: Date | null;
|
5063
|
-
|
5064
|
-
|
5065
|
-
|
5066
|
-
|
5067
|
-
|
5068
|
-
|
5063
|
+
extensionName: string;
|
5064
|
+
fileName: string;
|
5065
|
+
fileKey: string;
|
5066
|
+
bucketName: string;
|
5067
|
+
fileSize: number;
|
5068
|
+
fileUrl: string;
|
5069
5069
|
};
|
5070
5070
|
roomId: string;
|
5071
5071
|
messageId: string;
|
@@ -5088,7 +5088,7 @@ export declare const mailContract: {
|
|
5088
5088
|
email: import("zod").ZodString;
|
5089
5089
|
address: import("zod").ZodNullable<import("zod").ZodString>;
|
5090
5090
|
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
5091
|
-
|
5091
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
5092
5092
|
}, "strip", import("zod").ZodTypeAny, {
|
5093
5093
|
id: string;
|
5094
5094
|
address: string | null;
|
@@ -5098,7 +5098,7 @@ export declare const mailContract: {
|
|
5098
5098
|
updatedAt: Date;
|
5099
5099
|
deletedAt: Date | null;
|
5100
5100
|
phone: string | null;
|
5101
|
-
|
5101
|
+
notificationCount: number | null;
|
5102
5102
|
}, {
|
5103
5103
|
id: string;
|
5104
5104
|
address: string | null;
|
@@ -5108,7 +5108,7 @@ export declare const mailContract: {
|
|
5108
5108
|
updatedAt: Date;
|
5109
5109
|
deletedAt: Date | null;
|
5110
5110
|
phone: string | null;
|
5111
|
-
|
5111
|
+
notificationCount: number | null;
|
5112
5112
|
}>;
|
5113
5113
|
}, "strip", import("zod").ZodTypeAny, {
|
5114
5114
|
id: string;
|
@@ -5125,7 +5125,7 @@ export declare const mailContract: {
|
|
5125
5125
|
updatedAt: Date;
|
5126
5126
|
deletedAt: Date | null;
|
5127
5127
|
phone: string | null;
|
5128
|
-
|
5128
|
+
notificationCount: number | null;
|
5129
5129
|
};
|
5130
5130
|
roomId: string;
|
5131
5131
|
actorId: string;
|
@@ -5144,7 +5144,7 @@ export declare const mailContract: {
|
|
5144
5144
|
updatedAt: Date;
|
5145
5145
|
deletedAt: Date | null;
|
5146
5146
|
phone: string | null;
|
5147
|
-
|
5147
|
+
notificationCount: number | null;
|
5148
5148
|
};
|
5149
5149
|
roomId: string;
|
5150
5150
|
actorId: string;
|
@@ -5165,12 +5165,12 @@ export declare const mailContract: {
|
|
5165
5165
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
5166
5166
|
name: import("zod").ZodString;
|
5167
5167
|
smtpHost: import("zod").ZodString;
|
5168
|
-
smtpPort: import("zod").
|
5169
|
-
smtpTlsPort: import("zod").
|
5168
|
+
smtpPort: import("zod").ZodNumber;
|
5169
|
+
smtpTlsPort: import("zod").ZodNumber;
|
5170
5170
|
useTlsForSmtp: import("zod").ZodBoolean;
|
5171
5171
|
imapHost: import("zod").ZodString;
|
5172
|
-
imapPort: import("zod").
|
5173
|
-
imapTlsPort: import("zod").
|
5172
|
+
imapPort: import("zod").ZodNumber;
|
5173
|
+
imapTlsPort: import("zod").ZodNumber;
|
5174
5174
|
useTlsForImap: import("zod").ZodBoolean;
|
5175
5175
|
}, "strip", import("zod").ZodTypeAny, {
|
5176
5176
|
id: string;
|
@@ -5179,12 +5179,12 @@ export declare const mailContract: {
|
|
5179
5179
|
updatedAt: Date;
|
5180
5180
|
deletedAt: Date | null;
|
5181
5181
|
smtpHost: string;
|
5182
|
-
smtpPort:
|
5183
|
-
smtpTlsPort:
|
5182
|
+
smtpPort: number;
|
5183
|
+
smtpTlsPort: number;
|
5184
5184
|
useTlsForSmtp: boolean;
|
5185
5185
|
imapHost: string;
|
5186
|
-
imapPort:
|
5187
|
-
imapTlsPort:
|
5186
|
+
imapPort: number;
|
5187
|
+
imapTlsPort: number;
|
5188
5188
|
useTlsForImap: boolean;
|
5189
5189
|
}, {
|
5190
5190
|
id: string;
|
@@ -5193,12 +5193,12 @@ export declare const mailContract: {
|
|
5193
5193
|
updatedAt: Date;
|
5194
5194
|
deletedAt: Date | null;
|
5195
5195
|
smtpHost: string;
|
5196
|
-
smtpPort:
|
5197
|
-
smtpTlsPort:
|
5196
|
+
smtpPort: number;
|
5197
|
+
smtpTlsPort: number;
|
5198
5198
|
useTlsForSmtp: boolean;
|
5199
5199
|
imapHost: string;
|
5200
|
-
imapPort:
|
5201
|
-
imapTlsPort:
|
5200
|
+
imapPort: number;
|
5201
|
+
imapTlsPort: number;
|
5202
5202
|
useTlsForImap: boolean;
|
5203
5203
|
}>;
|
5204
5204
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -5219,12 +5219,12 @@ export declare const mailContract: {
|
|
5219
5219
|
updatedAt: Date;
|
5220
5220
|
deletedAt: Date | null;
|
5221
5221
|
smtpHost: string;
|
5222
|
-
smtpPort:
|
5223
|
-
smtpTlsPort:
|
5222
|
+
smtpPort: number;
|
5223
|
+
smtpTlsPort: number;
|
5224
5224
|
useTlsForSmtp: boolean;
|
5225
5225
|
imapHost: string;
|
5226
|
-
imapPort:
|
5227
|
-
imapTlsPort:
|
5226
|
+
imapPort: number;
|
5227
|
+
imapTlsPort: number;
|
5228
5228
|
useTlsForImap: boolean;
|
5229
5229
|
};
|
5230
5230
|
}, {
|
@@ -5244,12 +5244,12 @@ export declare const mailContract: {
|
|
5244
5244
|
updatedAt: Date;
|
5245
5245
|
deletedAt: Date | null;
|
5246
5246
|
smtpHost: string;
|
5247
|
-
smtpPort:
|
5248
|
-
smtpTlsPort:
|
5247
|
+
smtpPort: number;
|
5248
|
+
smtpTlsPort: number;
|
5249
5249
|
useTlsForSmtp: boolean;
|
5250
5250
|
imapHost: string;
|
5251
|
-
imapPort:
|
5252
|
-
imapTlsPort:
|
5251
|
+
imapPort: number;
|
5252
|
+
imapTlsPort: number;
|
5253
5253
|
useTlsForImap: boolean;
|
5254
5254
|
};
|
5255
5255
|
}>;
|
@@ -5332,12 +5332,12 @@ export declare const mailContract: {
|
|
5332
5332
|
createdAt: Date;
|
5333
5333
|
updatedAt: Date;
|
5334
5334
|
deletedAt: Date | null;
|
5335
|
-
|
5336
|
-
|
5337
|
-
|
5338
|
-
|
5339
|
-
|
5340
|
-
|
5335
|
+
extensionName: string;
|
5336
|
+
fileName: string;
|
5337
|
+
fileKey: string;
|
5338
|
+
bucketName: string;
|
5339
|
+
fileSize: number;
|
5340
|
+
fileUrl: string;
|
5341
5341
|
};
|
5342
5342
|
roomId: string;
|
5343
5343
|
messageId: string;
|
@@ -5353,7 +5353,7 @@ export declare const mailContract: {
|
|
5353
5353
|
updatedAt: Date;
|
5354
5354
|
deletedAt: Date | null;
|
5355
5355
|
phone: string | null;
|
5356
|
-
|
5356
|
+
notificationCount: number | null;
|
5357
5357
|
};
|
5358
5358
|
resolved: boolean;
|
5359
5359
|
assigneeId: string | null;
|
@@ -5456,12 +5456,12 @@ export declare const mailContract: {
|
|
5456
5456
|
createdAt: Date;
|
5457
5457
|
updatedAt: Date;
|
5458
5458
|
deletedAt: Date | null;
|
5459
|
-
|
5460
|
-
|
5461
|
-
|
5462
|
-
|
5463
|
-
|
5464
|
-
|
5459
|
+
extensionName: string;
|
5460
|
+
fileName: string;
|
5461
|
+
fileKey: string;
|
5462
|
+
bucketName: string;
|
5463
|
+
fileSize: number;
|
5464
|
+
fileUrl: string;
|
5465
5465
|
};
|
5466
5466
|
roomId: string;
|
5467
5467
|
messageId: string;
|
@@ -5531,12 +5531,12 @@ export declare const mailContract: {
|
|
5531
5531
|
createdAt: Date;
|
5532
5532
|
updatedAt: Date;
|
5533
5533
|
deletedAt: Date | null;
|
5534
|
-
|
5535
|
-
|
5536
|
-
|
5537
|
-
|
5538
|
-
|
5539
|
-
|
5534
|
+
extensionName: string;
|
5535
|
+
fileName: string;
|
5536
|
+
fileKey: string;
|
5537
|
+
bucketName: string;
|
5538
|
+
fileSize: number;
|
5539
|
+
fileUrl: string;
|
5540
5540
|
};
|
5541
5541
|
roomId: string;
|
5542
5542
|
messageId: string;
|
@@ -5606,12 +5606,12 @@ export declare const mailContract: {
|
|
5606
5606
|
createdAt: Date;
|
5607
5607
|
updatedAt: Date;
|
5608
5608
|
deletedAt: Date | null;
|
5609
|
-
|
5610
|
-
|
5611
|
-
|
5612
|
-
|
5613
|
-
|
5614
|
-
|
5609
|
+
extensionName: string;
|
5610
|
+
fileName: string;
|
5611
|
+
fileKey: string;
|
5612
|
+
bucketName: string;
|
5613
|
+
fileSize: number;
|
5614
|
+
fileUrl: string;
|
5615
5615
|
};
|
5616
5616
|
roomId: string;
|
5617
5617
|
messageId: string;
|
@@ -5632,7 +5632,7 @@ export declare const mailContract: {
|
|
5632
5632
|
updatedAt: Date;
|
5633
5633
|
deletedAt: Date | null;
|
5634
5634
|
phone: string | null;
|
5635
|
-
|
5635
|
+
notificationCount: number | null;
|
5636
5636
|
};
|
5637
5637
|
roomId: string;
|
5638
5638
|
actorId: string;
|
@@ -5654,12 +5654,12 @@ export declare const mailContract: {
|
|
5654
5654
|
updatedAt: Date;
|
5655
5655
|
deletedAt: Date | null;
|
5656
5656
|
smtpHost: string;
|
5657
|
-
smtpPort:
|
5658
|
-
smtpTlsPort:
|
5657
|
+
smtpPort: number;
|
5658
|
+
smtpTlsPort: number;
|
5659
5659
|
useTlsForSmtp: boolean;
|
5660
5660
|
imapHost: string;
|
5661
|
-
imapPort:
|
5662
|
-
imapTlsPort:
|
5661
|
+
imapPort: number;
|
5662
|
+
imapTlsPort: number;
|
5663
5663
|
useTlsForImap: boolean;
|
5664
5664
|
};
|
5665
5665
|
};
|
@@ -5742,12 +5742,12 @@ export declare const mailContract: {
|
|
5742
5742
|
createdAt: Date;
|
5743
5743
|
updatedAt: Date;
|
5744
5744
|
deletedAt: Date | null;
|
5745
|
-
|
5746
|
-
|
5747
|
-
|
5748
|
-
|
5749
|
-
|
5750
|
-
|
5745
|
+
extensionName: string;
|
5746
|
+
fileName: string;
|
5747
|
+
fileKey: string;
|
5748
|
+
bucketName: string;
|
5749
|
+
fileSize: number;
|
5750
|
+
fileUrl: string;
|
5751
5751
|
};
|
5752
5752
|
roomId: string;
|
5753
5753
|
messageId: string;
|
@@ -5763,7 +5763,7 @@ export declare const mailContract: {
|
|
5763
5763
|
updatedAt: Date;
|
5764
5764
|
deletedAt: Date | null;
|
5765
5765
|
phone: string | null;
|
5766
|
-
|
5766
|
+
notificationCount: number | null;
|
5767
5767
|
};
|
5768
5768
|
resolved: boolean;
|
5769
5769
|
assigneeId: string | null;
|
@@ -5866,12 +5866,12 @@ export declare const mailContract: {
|
|
5866
5866
|
createdAt: Date;
|
5867
5867
|
updatedAt: Date;
|
5868
5868
|
deletedAt: Date | null;
|
5869
|
-
|
5870
|
-
|
5871
|
-
|
5872
|
-
|
5873
|
-
|
5874
|
-
|
5869
|
+
extensionName: string;
|
5870
|
+
fileName: string;
|
5871
|
+
fileKey: string;
|
5872
|
+
bucketName: string;
|
5873
|
+
fileSize: number;
|
5874
|
+
fileUrl: string;
|
5875
5875
|
};
|
5876
5876
|
roomId: string;
|
5877
5877
|
messageId: string;
|
@@ -5941,12 +5941,12 @@ export declare const mailContract: {
|
|
5941
5941
|
createdAt: Date;
|
5942
5942
|
updatedAt: Date;
|
5943
5943
|
deletedAt: Date | null;
|
5944
|
-
|
5945
|
-
|
5946
|
-
|
5947
|
-
|
5948
|
-
|
5949
|
-
|
5944
|
+
extensionName: string;
|
5945
|
+
fileName: string;
|
5946
|
+
fileKey: string;
|
5947
|
+
bucketName: string;
|
5948
|
+
fileSize: number;
|
5949
|
+
fileUrl: string;
|
5950
5950
|
};
|
5951
5951
|
roomId: string;
|
5952
5952
|
messageId: string;
|
@@ -6016,12 +6016,12 @@ export declare const mailContract: {
|
|
6016
6016
|
createdAt: Date;
|
6017
6017
|
updatedAt: Date;
|
6018
6018
|
deletedAt: Date | null;
|
6019
|
-
|
6020
|
-
|
6021
|
-
|
6022
|
-
|
6023
|
-
|
6024
|
-
|
6019
|
+
extensionName: string;
|
6020
|
+
fileName: string;
|
6021
|
+
fileKey: string;
|
6022
|
+
bucketName: string;
|
6023
|
+
fileSize: number;
|
6024
|
+
fileUrl: string;
|
6025
6025
|
};
|
6026
6026
|
roomId: string;
|
6027
6027
|
messageId: string;
|
@@ -6042,7 +6042,7 @@ export declare const mailContract: {
|
|
6042
6042
|
updatedAt: Date;
|
6043
6043
|
deletedAt: Date | null;
|
6044
6044
|
phone: string | null;
|
6045
|
-
|
6045
|
+
notificationCount: number | null;
|
6046
6046
|
};
|
6047
6047
|
roomId: string;
|
6048
6048
|
actorId: string;
|
@@ -6064,12 +6064,12 @@ export declare const mailContract: {
|
|
6064
6064
|
updatedAt: Date;
|
6065
6065
|
deletedAt: Date | null;
|
6066
6066
|
smtpHost: string;
|
6067
|
-
smtpPort:
|
6068
|
-
smtpTlsPort:
|
6067
|
+
smtpPort: number;
|
6068
|
+
smtpTlsPort: number;
|
6069
6069
|
useTlsForSmtp: boolean;
|
6070
6070
|
imapHost: string;
|
6071
|
-
imapPort:
|
6072
|
-
imapTlsPort:
|
6071
|
+
imapPort: number;
|
6072
|
+
imapTlsPort: number;
|
6073
6073
|
useTlsForImap: boolean;
|
6074
6074
|
};
|
6075
6075
|
};
|
@@ -6154,12 +6154,12 @@ export declare const mailContract: {
|
|
6154
6154
|
createdAt: Date;
|
6155
6155
|
updatedAt: Date;
|
6156
6156
|
deletedAt: Date | null;
|
6157
|
-
|
6158
|
-
|
6159
|
-
|
6160
|
-
|
6161
|
-
|
6162
|
-
|
6157
|
+
extensionName: string;
|
6158
|
+
fileName: string;
|
6159
|
+
fileKey: string;
|
6160
|
+
bucketName: string;
|
6161
|
+
fileSize: number;
|
6162
|
+
fileUrl: string;
|
6163
6163
|
};
|
6164
6164
|
roomId: string;
|
6165
6165
|
messageId: string;
|
@@ -6175,7 +6175,7 @@ export declare const mailContract: {
|
|
6175
6175
|
updatedAt: Date;
|
6176
6176
|
deletedAt: Date | null;
|
6177
6177
|
phone: string | null;
|
6178
|
-
|
6178
|
+
notificationCount: number | null;
|
6179
6179
|
};
|
6180
6180
|
resolved: boolean;
|
6181
6181
|
assigneeId: string | null;
|
@@ -6278,12 +6278,12 @@ export declare const mailContract: {
|
|
6278
6278
|
createdAt: Date;
|
6279
6279
|
updatedAt: Date;
|
6280
6280
|
deletedAt: Date | null;
|
6281
|
-
|
6282
|
-
|
6283
|
-
|
6284
|
-
|
6285
|
-
|
6286
|
-
|
6281
|
+
extensionName: string;
|
6282
|
+
fileName: string;
|
6283
|
+
fileKey: string;
|
6284
|
+
bucketName: string;
|
6285
|
+
fileSize: number;
|
6286
|
+
fileUrl: string;
|
6287
6287
|
};
|
6288
6288
|
roomId: string;
|
6289
6289
|
messageId: string;
|
@@ -6353,12 +6353,12 @@ export declare const mailContract: {
|
|
6353
6353
|
createdAt: Date;
|
6354
6354
|
updatedAt: Date;
|
6355
6355
|
deletedAt: Date | null;
|
6356
|
-
|
6357
|
-
|
6358
|
-
|
6359
|
-
|
6360
|
-
|
6361
|
-
|
6356
|
+
extensionName: string;
|
6357
|
+
fileName: string;
|
6358
|
+
fileKey: string;
|
6359
|
+
bucketName: string;
|
6360
|
+
fileSize: number;
|
6361
|
+
fileUrl: string;
|
6362
6362
|
};
|
6363
6363
|
roomId: string;
|
6364
6364
|
messageId: string;
|
@@ -6428,12 +6428,12 @@ export declare const mailContract: {
|
|
6428
6428
|
createdAt: Date;
|
6429
6429
|
updatedAt: Date;
|
6430
6430
|
deletedAt: Date | null;
|
6431
|
-
|
6432
|
-
|
6433
|
-
|
6434
|
-
|
6435
|
-
|
6436
|
-
|
6431
|
+
extensionName: string;
|
6432
|
+
fileName: string;
|
6433
|
+
fileKey: string;
|
6434
|
+
bucketName: string;
|
6435
|
+
fileSize: number;
|
6436
|
+
fileUrl: string;
|
6437
6437
|
};
|
6438
6438
|
roomId: string;
|
6439
6439
|
messageId: string;
|
@@ -6454,7 +6454,7 @@ export declare const mailContract: {
|
|
6454
6454
|
updatedAt: Date;
|
6455
6455
|
deletedAt: Date | null;
|
6456
6456
|
phone: string | null;
|
6457
|
-
|
6457
|
+
notificationCount: number | null;
|
6458
6458
|
};
|
6459
6459
|
roomId: string;
|
6460
6460
|
actorId: string;
|
@@ -6476,12 +6476,12 @@ export declare const mailContract: {
|
|
6476
6476
|
updatedAt: Date;
|
6477
6477
|
deletedAt: Date | null;
|
6478
6478
|
smtpHost: string;
|
6479
|
-
smtpPort:
|
6480
|
-
smtpTlsPort:
|
6479
|
+
smtpPort: number;
|
6480
|
+
smtpTlsPort: number;
|
6481
6481
|
useTlsForSmtp: boolean;
|
6482
6482
|
imapHost: string;
|
6483
|
-
imapPort:
|
6484
|
-
imapTlsPort:
|
6483
|
+
imapPort: number;
|
6484
|
+
imapTlsPort: number;
|
6485
6485
|
useTlsForImap: boolean;
|
6486
6486
|
};
|
6487
6487
|
};
|
@@ -6567,12 +6567,12 @@ export declare const mailContract: {
|
|
6567
6567
|
createdAt: Date;
|
6568
6568
|
updatedAt: Date;
|
6569
6569
|
deletedAt: Date | null;
|
6570
|
-
|
6571
|
-
|
6572
|
-
|
6573
|
-
|
6574
|
-
|
6575
|
-
|
6570
|
+
extensionName: string;
|
6571
|
+
fileName: string;
|
6572
|
+
fileKey: string;
|
6573
|
+
bucketName: string;
|
6574
|
+
fileSize: number;
|
6575
|
+
fileUrl: string;
|
6576
6576
|
};
|
6577
6577
|
roomId: string;
|
6578
6578
|
messageId: string;
|
@@ -6588,7 +6588,7 @@ export declare const mailContract: {
|
|
6588
6588
|
updatedAt: Date;
|
6589
6589
|
deletedAt: Date | null;
|
6590
6590
|
phone: string | null;
|
6591
|
-
|
6591
|
+
notificationCount: number | null;
|
6592
6592
|
};
|
6593
6593
|
resolved: boolean;
|
6594
6594
|
assigneeId: string | null;
|
@@ -6691,12 +6691,12 @@ export declare const mailContract: {
|
|
6691
6691
|
createdAt: Date;
|
6692
6692
|
updatedAt: Date;
|
6693
6693
|
deletedAt: Date | null;
|
6694
|
-
|
6695
|
-
|
6696
|
-
|
6697
|
-
|
6698
|
-
|
6699
|
-
|
6694
|
+
extensionName: string;
|
6695
|
+
fileName: string;
|
6696
|
+
fileKey: string;
|
6697
|
+
bucketName: string;
|
6698
|
+
fileSize: number;
|
6699
|
+
fileUrl: string;
|
6700
6700
|
};
|
6701
6701
|
roomId: string;
|
6702
6702
|
messageId: string;
|
@@ -6766,12 +6766,12 @@ export declare const mailContract: {
|
|
6766
6766
|
createdAt: Date;
|
6767
6767
|
updatedAt: Date;
|
6768
6768
|
deletedAt: Date | null;
|
6769
|
-
|
6770
|
-
|
6771
|
-
|
6772
|
-
|
6773
|
-
|
6774
|
-
|
6769
|
+
extensionName: string;
|
6770
|
+
fileName: string;
|
6771
|
+
fileKey: string;
|
6772
|
+
bucketName: string;
|
6773
|
+
fileSize: number;
|
6774
|
+
fileUrl: string;
|
6775
6775
|
};
|
6776
6776
|
roomId: string;
|
6777
6777
|
messageId: string;
|
@@ -6841,12 +6841,12 @@ export declare const mailContract: {
|
|
6841
6841
|
createdAt: Date;
|
6842
6842
|
updatedAt: Date;
|
6843
6843
|
deletedAt: Date | null;
|
6844
|
-
|
6845
|
-
|
6846
|
-
|
6847
|
-
|
6848
|
-
|
6849
|
-
|
6844
|
+
extensionName: string;
|
6845
|
+
fileName: string;
|
6846
|
+
fileKey: string;
|
6847
|
+
bucketName: string;
|
6848
|
+
fileSize: number;
|
6849
|
+
fileUrl: string;
|
6850
6850
|
};
|
6851
6851
|
roomId: string;
|
6852
6852
|
messageId: string;
|
@@ -6867,7 +6867,7 @@ export declare const mailContract: {
|
|
6867
6867
|
updatedAt: Date;
|
6868
6868
|
deletedAt: Date | null;
|
6869
6869
|
phone: string | null;
|
6870
|
-
|
6870
|
+
notificationCount: number | null;
|
6871
6871
|
};
|
6872
6872
|
roomId: string;
|
6873
6873
|
actorId: string;
|
@@ -6889,12 +6889,12 @@ export declare const mailContract: {
|
|
6889
6889
|
updatedAt: Date;
|
6890
6890
|
deletedAt: Date | null;
|
6891
6891
|
smtpHost: string;
|
6892
|
-
smtpPort:
|
6893
|
-
smtpTlsPort:
|
6892
|
+
smtpPort: number;
|
6893
|
+
smtpTlsPort: number;
|
6894
6894
|
useTlsForSmtp: boolean;
|
6895
6895
|
imapHost: string;
|
6896
|
-
imapPort:
|
6897
|
-
imapTlsPort:
|
6896
|
+
imapPort: number;
|
6897
|
+
imapTlsPort: number;
|
6898
6898
|
useTlsForImap: boolean;
|
6899
6899
|
};
|
6900
6900
|
};
|
@@ -7172,18 +7172,21 @@ export declare const mailContract: {
|
|
7172
7172
|
note: import("zod").ZodOptional<import("zod").ZodString>;
|
7173
7173
|
tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
7174
7174
|
handover: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodLiteral<"true">, import("zod").ZodLiteral<"false">]>, boolean, "false" | "true">]>>>;
|
7175
|
+
selfAssign: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodLiteral<"true">, import("zod").ZodLiteral<"false">]>, boolean, "false" | "true">]>>>;
|
7175
7176
|
}, "strip", import("zod").ZodTypeAny, {
|
7176
7177
|
resolved?: boolean | null | undefined;
|
7177
7178
|
assigneeId?: string | null | undefined;
|
7178
7179
|
note?: string | undefined;
|
7179
7180
|
tags?: string[] | undefined;
|
7180
7181
|
handover?: boolean | null | undefined;
|
7182
|
+
selfAssign?: boolean | null | undefined;
|
7181
7183
|
}, {
|
7182
7184
|
resolved?: boolean | "false" | "true" | null | undefined;
|
7183
7185
|
assigneeId?: string | null | undefined;
|
7184
7186
|
note?: string | undefined;
|
7185
7187
|
tags?: string[] | undefined;
|
7186
7188
|
handover?: boolean | "false" | "true" | null | undefined;
|
7189
|
+
selfAssign?: boolean | "false" | "true" | null | undefined;
|
7187
7190
|
}>;
|
7188
7191
|
summary: "Update a mail room by id";
|
7189
7192
|
method: "PATCH";
|
@@ -7450,34 +7453,34 @@ export declare const mailContract: {
|
|
7450
7453
|
createdAt: import("zod").ZodDate;
|
7451
7454
|
updatedAt: import("zod").ZodDate;
|
7452
7455
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
7453
|
-
|
7454
|
-
|
7455
|
-
|
7456
|
-
|
7457
|
-
|
7458
|
-
|
7456
|
+
bucketName: import("zod").ZodString;
|
7457
|
+
fileName: import("zod").ZodString;
|
7458
|
+
fileKey: import("zod").ZodString;
|
7459
|
+
fileSize: import("zod").ZodNumber;
|
7460
|
+
fileUrl: import("zod").ZodString;
|
7461
|
+
extensionName: import("zod").ZodString;
|
7459
7462
|
}, "strip", import("zod").ZodTypeAny, {
|
7460
7463
|
id: string;
|
7461
7464
|
createdAt: Date;
|
7462
7465
|
updatedAt: Date;
|
7463
7466
|
deletedAt: Date | null;
|
7464
|
-
|
7465
|
-
|
7466
|
-
|
7467
|
-
|
7468
|
-
|
7469
|
-
|
7467
|
+
extensionName: string;
|
7468
|
+
fileName: string;
|
7469
|
+
fileKey: string;
|
7470
|
+
bucketName: string;
|
7471
|
+
fileSize: number;
|
7472
|
+
fileUrl: string;
|
7470
7473
|
}, {
|
7471
7474
|
id: string;
|
7472
7475
|
createdAt: Date;
|
7473
7476
|
updatedAt: Date;
|
7474
7477
|
deletedAt: Date | null;
|
7475
|
-
|
7476
|
-
|
7477
|
-
|
7478
|
-
|
7479
|
-
|
7480
|
-
|
7478
|
+
extensionName: string;
|
7479
|
+
fileName: string;
|
7480
|
+
fileKey: string;
|
7481
|
+
bucketName: string;
|
7482
|
+
fileSize: number;
|
7483
|
+
fileUrl: string;
|
7481
7484
|
}>;
|
7482
7485
|
}, "strip", import("zod").ZodTypeAny, {
|
7483
7486
|
id: string;
|
@@ -7492,12 +7495,12 @@ export declare const mailContract: {
|
|
7492
7495
|
createdAt: Date;
|
7493
7496
|
updatedAt: Date;
|
7494
7497
|
deletedAt: Date | null;
|
7495
|
-
|
7496
|
-
|
7497
|
-
|
7498
|
-
|
7499
|
-
|
7500
|
-
|
7498
|
+
extensionName: string;
|
7499
|
+
fileName: string;
|
7500
|
+
fileKey: string;
|
7501
|
+
bucketName: string;
|
7502
|
+
fileSize: number;
|
7503
|
+
fileUrl: string;
|
7501
7504
|
};
|
7502
7505
|
roomId: string;
|
7503
7506
|
messageId: string;
|
@@ -7515,12 +7518,12 @@ export declare const mailContract: {
|
|
7515
7518
|
createdAt: Date;
|
7516
7519
|
updatedAt: Date;
|
7517
7520
|
deletedAt: Date | null;
|
7518
|
-
|
7519
|
-
|
7520
|
-
|
7521
|
-
|
7522
|
-
|
7523
|
-
|
7521
|
+
extensionName: string;
|
7522
|
+
fileName: string;
|
7523
|
+
fileKey: string;
|
7524
|
+
bucketName: string;
|
7525
|
+
fileSize: number;
|
7526
|
+
fileUrl: string;
|
7524
7527
|
};
|
7525
7528
|
roomId: string;
|
7526
7529
|
messageId: string;
|
@@ -7589,12 +7592,12 @@ export declare const mailContract: {
|
|
7589
7592
|
createdAt: Date;
|
7590
7593
|
updatedAt: Date;
|
7591
7594
|
deletedAt: Date | null;
|
7592
|
-
|
7593
|
-
|
7594
|
-
|
7595
|
-
|
7596
|
-
|
7597
|
-
|
7595
|
+
extensionName: string;
|
7596
|
+
fileName: string;
|
7597
|
+
fileKey: string;
|
7598
|
+
bucketName: string;
|
7599
|
+
fileSize: number;
|
7600
|
+
fileUrl: string;
|
7598
7601
|
};
|
7599
7602
|
roomId: string;
|
7600
7603
|
messageId: string;
|
@@ -7663,12 +7666,12 @@ export declare const mailContract: {
|
|
7663
7666
|
createdAt: Date;
|
7664
7667
|
updatedAt: Date;
|
7665
7668
|
deletedAt: Date | null;
|
7666
|
-
|
7667
|
-
|
7668
|
-
|
7669
|
-
|
7670
|
-
|
7671
|
-
|
7669
|
+
extensionName: string;
|
7670
|
+
fileName: string;
|
7671
|
+
fileKey: string;
|
7672
|
+
bucketName: string;
|
7673
|
+
fileSize: number;
|
7674
|
+
fileUrl: string;
|
7672
7675
|
};
|
7673
7676
|
roomId: string;
|
7674
7677
|
messageId: string;
|
@@ -7797,34 +7800,34 @@ export declare const mailContract: {
|
|
7797
7800
|
createdAt: import("zod").ZodDate;
|
7798
7801
|
updatedAt: import("zod").ZodDate;
|
7799
7802
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
7800
|
-
|
7801
|
-
|
7802
|
-
|
7803
|
-
|
7804
|
-
|
7805
|
-
|
7803
|
+
bucketName: import("zod").ZodString;
|
7804
|
+
fileName: import("zod").ZodString;
|
7805
|
+
fileKey: import("zod").ZodString;
|
7806
|
+
fileSize: import("zod").ZodNumber;
|
7807
|
+
fileUrl: import("zod").ZodString;
|
7808
|
+
extensionName: import("zod").ZodString;
|
7806
7809
|
}, "strip", import("zod").ZodTypeAny, {
|
7807
7810
|
id: string;
|
7808
7811
|
createdAt: Date;
|
7809
7812
|
updatedAt: Date;
|
7810
7813
|
deletedAt: Date | null;
|
7811
|
-
|
7812
|
-
|
7813
|
-
|
7814
|
-
|
7815
|
-
|
7816
|
-
|
7814
|
+
extensionName: string;
|
7815
|
+
fileName: string;
|
7816
|
+
fileKey: string;
|
7817
|
+
bucketName: string;
|
7818
|
+
fileSize: number;
|
7819
|
+
fileUrl: string;
|
7817
7820
|
}, {
|
7818
7821
|
id: string;
|
7819
7822
|
createdAt: Date;
|
7820
7823
|
updatedAt: Date;
|
7821
7824
|
deletedAt: Date | null;
|
7822
|
-
|
7823
|
-
|
7824
|
-
|
7825
|
-
|
7826
|
-
|
7827
|
-
|
7825
|
+
extensionName: string;
|
7826
|
+
fileName: string;
|
7827
|
+
fileKey: string;
|
7828
|
+
bucketName: string;
|
7829
|
+
fileSize: number;
|
7830
|
+
fileUrl: string;
|
7828
7831
|
}>;
|
7829
7832
|
}, "strip", import("zod").ZodTypeAny, {
|
7830
7833
|
id: string;
|
@@ -7839,12 +7842,12 @@ export declare const mailContract: {
|
|
7839
7842
|
createdAt: Date;
|
7840
7843
|
updatedAt: Date;
|
7841
7844
|
deletedAt: Date | null;
|
7842
|
-
|
7843
|
-
|
7844
|
-
|
7845
|
-
|
7846
|
-
|
7847
|
-
|
7845
|
+
extensionName: string;
|
7846
|
+
fileName: string;
|
7847
|
+
fileKey: string;
|
7848
|
+
bucketName: string;
|
7849
|
+
fileSize: number;
|
7850
|
+
fileUrl: string;
|
7848
7851
|
};
|
7849
7852
|
roomId: string;
|
7850
7853
|
messageId: string;
|
@@ -7862,12 +7865,12 @@ export declare const mailContract: {
|
|
7862
7865
|
createdAt: Date;
|
7863
7866
|
updatedAt: Date;
|
7864
7867
|
deletedAt: Date | null;
|
7865
|
-
|
7866
|
-
|
7867
|
-
|
7868
|
-
|
7869
|
-
|
7870
|
-
|
7868
|
+
extensionName: string;
|
7869
|
+
fileName: string;
|
7870
|
+
fileKey: string;
|
7871
|
+
bucketName: string;
|
7872
|
+
fileSize: number;
|
7873
|
+
fileUrl: string;
|
7871
7874
|
};
|
7872
7875
|
roomId: string;
|
7873
7876
|
messageId: string;
|
@@ -7936,12 +7939,12 @@ export declare const mailContract: {
|
|
7936
7939
|
createdAt: Date;
|
7937
7940
|
updatedAt: Date;
|
7938
7941
|
deletedAt: Date | null;
|
7939
|
-
|
7940
|
-
|
7941
|
-
|
7942
|
-
|
7943
|
-
|
7944
|
-
|
7942
|
+
extensionName: string;
|
7943
|
+
fileName: string;
|
7944
|
+
fileKey: string;
|
7945
|
+
bucketName: string;
|
7946
|
+
fileSize: number;
|
7947
|
+
fileUrl: string;
|
7945
7948
|
};
|
7946
7949
|
roomId: string;
|
7947
7950
|
messageId: string;
|
@@ -8010,12 +8013,12 @@ export declare const mailContract: {
|
|
8010
8013
|
createdAt: Date;
|
8011
8014
|
updatedAt: Date;
|
8012
8015
|
deletedAt: Date | null;
|
8013
|
-
|
8014
|
-
|
8015
|
-
|
8016
|
-
|
8017
|
-
|
8018
|
-
|
8016
|
+
extensionName: string;
|
8017
|
+
fileName: string;
|
8018
|
+
fileKey: string;
|
8019
|
+
bucketName: string;
|
8020
|
+
fileSize: number;
|
8021
|
+
fileUrl: string;
|
8019
8022
|
};
|
8020
8023
|
roomId: string;
|
8021
8024
|
messageId: string;
|
@@ -8053,7 +8056,7 @@ export declare const mailContract: {
|
|
8053
8056
|
email: import("zod").ZodString;
|
8054
8057
|
address: import("zod").ZodNullable<import("zod").ZodString>;
|
8055
8058
|
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
8056
|
-
|
8059
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
8057
8060
|
}, "strip", import("zod").ZodTypeAny, {
|
8058
8061
|
id: string;
|
8059
8062
|
address: string | null;
|
@@ -8063,7 +8066,7 @@ export declare const mailContract: {
|
|
8063
8066
|
updatedAt: Date;
|
8064
8067
|
deletedAt: Date | null;
|
8065
8068
|
phone: string | null;
|
8066
|
-
|
8069
|
+
notificationCount: number | null;
|
8067
8070
|
}, {
|
8068
8071
|
id: string;
|
8069
8072
|
address: string | null;
|
@@ -8073,7 +8076,7 @@ export declare const mailContract: {
|
|
8073
8076
|
updatedAt: Date;
|
8074
8077
|
deletedAt: Date | null;
|
8075
8078
|
phone: string | null;
|
8076
|
-
|
8079
|
+
notificationCount: number | null;
|
8077
8080
|
}>;
|
8078
8081
|
messages: import("zod").ZodArray<import("zod").ZodObject<{
|
8079
8082
|
id: import("zod").ZodString;
|
@@ -8197,34 +8200,34 @@ export declare const mailContract: {
|
|
8197
8200
|
createdAt: import("zod").ZodDate;
|
8198
8201
|
updatedAt: import("zod").ZodDate;
|
8199
8202
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
8200
|
-
|
8201
|
-
|
8202
|
-
|
8203
|
-
|
8204
|
-
|
8205
|
-
|
8203
|
+
bucketName: import("zod").ZodString;
|
8204
|
+
fileName: import("zod").ZodString;
|
8205
|
+
fileKey: import("zod").ZodString;
|
8206
|
+
fileSize: import("zod").ZodNumber;
|
8207
|
+
fileUrl: import("zod").ZodString;
|
8208
|
+
extensionName: import("zod").ZodString;
|
8206
8209
|
}, "strip", import("zod").ZodTypeAny, {
|
8207
8210
|
id: string;
|
8208
8211
|
createdAt: Date;
|
8209
8212
|
updatedAt: Date;
|
8210
8213
|
deletedAt: Date | null;
|
8211
|
-
|
8212
|
-
|
8213
|
-
|
8214
|
-
|
8215
|
-
|
8216
|
-
|
8214
|
+
extensionName: string;
|
8215
|
+
fileName: string;
|
8216
|
+
fileKey: string;
|
8217
|
+
bucketName: string;
|
8218
|
+
fileSize: number;
|
8219
|
+
fileUrl: string;
|
8217
8220
|
}, {
|
8218
8221
|
id: string;
|
8219
8222
|
createdAt: Date;
|
8220
8223
|
updatedAt: Date;
|
8221
8224
|
deletedAt: Date | null;
|
8222
|
-
|
8223
|
-
|
8224
|
-
|
8225
|
-
|
8226
|
-
|
8227
|
-
|
8225
|
+
extensionName: string;
|
8226
|
+
fileName: string;
|
8227
|
+
fileKey: string;
|
8228
|
+
bucketName: string;
|
8229
|
+
fileSize: number;
|
8230
|
+
fileUrl: string;
|
8228
8231
|
}>;
|
8229
8232
|
}, "strip", import("zod").ZodTypeAny, {
|
8230
8233
|
id: string;
|
@@ -8239,12 +8242,12 @@ export declare const mailContract: {
|
|
8239
8242
|
createdAt: Date;
|
8240
8243
|
updatedAt: Date;
|
8241
8244
|
deletedAt: Date | null;
|
8242
|
-
|
8243
|
-
|
8244
|
-
|
8245
|
-
|
8246
|
-
|
8247
|
-
|
8245
|
+
extensionName: string;
|
8246
|
+
fileName: string;
|
8247
|
+
fileKey: string;
|
8248
|
+
bucketName: string;
|
8249
|
+
fileSize: number;
|
8250
|
+
fileUrl: string;
|
8248
8251
|
};
|
8249
8252
|
roomId: string;
|
8250
8253
|
messageId: string;
|
@@ -8262,12 +8265,12 @@ export declare const mailContract: {
|
|
8262
8265
|
createdAt: Date;
|
8263
8266
|
updatedAt: Date;
|
8264
8267
|
deletedAt: Date | null;
|
8265
|
-
|
8266
|
-
|
8267
|
-
|
8268
|
-
|
8269
|
-
|
8270
|
-
|
8268
|
+
extensionName: string;
|
8269
|
+
fileName: string;
|
8270
|
+
fileKey: string;
|
8271
|
+
bucketName: string;
|
8272
|
+
fileSize: number;
|
8273
|
+
fileUrl: string;
|
8271
8274
|
};
|
8272
8275
|
roomId: string;
|
8273
8276
|
messageId: string;
|
@@ -8336,12 +8339,12 @@ export declare const mailContract: {
|
|
8336
8339
|
createdAt: Date;
|
8337
8340
|
updatedAt: Date;
|
8338
8341
|
deletedAt: Date | null;
|
8339
|
-
|
8340
|
-
|
8341
|
-
|
8342
|
-
|
8343
|
-
|
8344
|
-
|
8342
|
+
extensionName: string;
|
8343
|
+
fileName: string;
|
8344
|
+
fileKey: string;
|
8345
|
+
bucketName: string;
|
8346
|
+
fileSize: number;
|
8347
|
+
fileUrl: string;
|
8345
8348
|
};
|
8346
8349
|
roomId: string;
|
8347
8350
|
messageId: string;
|
@@ -8410,12 +8413,12 @@ export declare const mailContract: {
|
|
8410
8413
|
createdAt: Date;
|
8411
8414
|
updatedAt: Date;
|
8412
8415
|
deletedAt: Date | null;
|
8413
|
-
|
8414
|
-
|
8415
|
-
|
8416
|
-
|
8417
|
-
|
8418
|
-
|
8416
|
+
extensionName: string;
|
8417
|
+
fileName: string;
|
8418
|
+
fileKey: string;
|
8419
|
+
bucketName: string;
|
8420
|
+
fileSize: number;
|
8421
|
+
fileUrl: string;
|
8419
8422
|
};
|
8420
8423
|
roomId: string;
|
8421
8424
|
messageId: string;
|
@@ -8544,34 +8547,34 @@ export declare const mailContract: {
|
|
8544
8547
|
createdAt: import("zod").ZodDate;
|
8545
8548
|
updatedAt: import("zod").ZodDate;
|
8546
8549
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
8547
|
-
|
8548
|
-
|
8549
|
-
|
8550
|
-
|
8551
|
-
|
8552
|
-
|
8550
|
+
bucketName: import("zod").ZodString;
|
8551
|
+
fileName: import("zod").ZodString;
|
8552
|
+
fileKey: import("zod").ZodString;
|
8553
|
+
fileSize: import("zod").ZodNumber;
|
8554
|
+
fileUrl: import("zod").ZodString;
|
8555
|
+
extensionName: import("zod").ZodString;
|
8553
8556
|
}, "strip", import("zod").ZodTypeAny, {
|
8554
8557
|
id: string;
|
8555
8558
|
createdAt: Date;
|
8556
8559
|
updatedAt: Date;
|
8557
8560
|
deletedAt: Date | null;
|
8558
|
-
|
8559
|
-
|
8560
|
-
|
8561
|
-
|
8562
|
-
|
8563
|
-
|
8561
|
+
extensionName: string;
|
8562
|
+
fileName: string;
|
8563
|
+
fileKey: string;
|
8564
|
+
bucketName: string;
|
8565
|
+
fileSize: number;
|
8566
|
+
fileUrl: string;
|
8564
8567
|
}, {
|
8565
8568
|
id: string;
|
8566
8569
|
createdAt: Date;
|
8567
8570
|
updatedAt: Date;
|
8568
8571
|
deletedAt: Date | null;
|
8569
|
-
|
8570
|
-
|
8571
|
-
|
8572
|
-
|
8573
|
-
|
8574
|
-
|
8572
|
+
extensionName: string;
|
8573
|
+
fileName: string;
|
8574
|
+
fileKey: string;
|
8575
|
+
bucketName: string;
|
8576
|
+
fileSize: number;
|
8577
|
+
fileUrl: string;
|
8575
8578
|
}>;
|
8576
8579
|
}, "strip", import("zod").ZodTypeAny, {
|
8577
8580
|
id: string;
|
@@ -8586,12 +8589,12 @@ export declare const mailContract: {
|
|
8586
8589
|
createdAt: Date;
|
8587
8590
|
updatedAt: Date;
|
8588
8591
|
deletedAt: Date | null;
|
8589
|
-
|
8590
|
-
|
8591
|
-
|
8592
|
-
|
8593
|
-
|
8594
|
-
|
8592
|
+
extensionName: string;
|
8593
|
+
fileName: string;
|
8594
|
+
fileKey: string;
|
8595
|
+
bucketName: string;
|
8596
|
+
fileSize: number;
|
8597
|
+
fileUrl: string;
|
8595
8598
|
};
|
8596
8599
|
roomId: string;
|
8597
8600
|
messageId: string;
|
@@ -8609,12 +8612,12 @@ export declare const mailContract: {
|
|
8609
8612
|
createdAt: Date;
|
8610
8613
|
updatedAt: Date;
|
8611
8614
|
deletedAt: Date | null;
|
8612
|
-
|
8613
|
-
|
8614
|
-
|
8615
|
-
|
8616
|
-
|
8617
|
-
|
8615
|
+
extensionName: string;
|
8616
|
+
fileName: string;
|
8617
|
+
fileKey: string;
|
8618
|
+
bucketName: string;
|
8619
|
+
fileSize: number;
|
8620
|
+
fileUrl: string;
|
8618
8621
|
};
|
8619
8622
|
roomId: string;
|
8620
8623
|
messageId: string;
|
@@ -8683,12 +8686,12 @@ export declare const mailContract: {
|
|
8683
8686
|
createdAt: Date;
|
8684
8687
|
updatedAt: Date;
|
8685
8688
|
deletedAt: Date | null;
|
8686
|
-
|
8687
|
-
|
8688
|
-
|
8689
|
-
|
8690
|
-
|
8691
|
-
|
8689
|
+
extensionName: string;
|
8690
|
+
fileName: string;
|
8691
|
+
fileKey: string;
|
8692
|
+
bucketName: string;
|
8693
|
+
fileSize: number;
|
8694
|
+
fileUrl: string;
|
8692
8695
|
};
|
8693
8696
|
roomId: string;
|
8694
8697
|
messageId: string;
|
@@ -8757,12 +8760,12 @@ export declare const mailContract: {
|
|
8757
8760
|
createdAt: Date;
|
8758
8761
|
updatedAt: Date;
|
8759
8762
|
deletedAt: Date | null;
|
8760
|
-
|
8761
|
-
|
8762
|
-
|
8763
|
-
|
8764
|
-
|
8765
|
-
|
8763
|
+
extensionName: string;
|
8764
|
+
fileName: string;
|
8765
|
+
fileKey: string;
|
8766
|
+
bucketName: string;
|
8767
|
+
fileSize: number;
|
8768
|
+
fileUrl: string;
|
8766
8769
|
};
|
8767
8770
|
roomId: string;
|
8768
8771
|
messageId: string;
|
@@ -8785,7 +8788,7 @@ export declare const mailContract: {
|
|
8785
8788
|
email: import("zod").ZodString;
|
8786
8789
|
address: import("zod").ZodNullable<import("zod").ZodString>;
|
8787
8790
|
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
8788
|
-
|
8791
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
8789
8792
|
}, "strip", import("zod").ZodTypeAny, {
|
8790
8793
|
id: string;
|
8791
8794
|
address: string | null;
|
@@ -8795,7 +8798,7 @@ export declare const mailContract: {
|
|
8795
8798
|
updatedAt: Date;
|
8796
8799
|
deletedAt: Date | null;
|
8797
8800
|
phone: string | null;
|
8798
|
-
|
8801
|
+
notificationCount: number | null;
|
8799
8802
|
}, {
|
8800
8803
|
id: string;
|
8801
8804
|
address: string | null;
|
@@ -8805,7 +8808,7 @@ export declare const mailContract: {
|
|
8805
8808
|
updatedAt: Date;
|
8806
8809
|
deletedAt: Date | null;
|
8807
8810
|
phone: string | null;
|
8808
|
-
|
8811
|
+
notificationCount: number | null;
|
8809
8812
|
}>;
|
8810
8813
|
}, "strip", import("zod").ZodTypeAny, {
|
8811
8814
|
id: string;
|
@@ -8822,7 +8825,7 @@ export declare const mailContract: {
|
|
8822
8825
|
updatedAt: Date;
|
8823
8826
|
deletedAt: Date | null;
|
8824
8827
|
phone: string | null;
|
8825
|
-
|
8828
|
+
notificationCount: number | null;
|
8826
8829
|
};
|
8827
8830
|
roomId: string;
|
8828
8831
|
actorId: string;
|
@@ -8841,7 +8844,7 @@ export declare const mailContract: {
|
|
8841
8844
|
updatedAt: Date;
|
8842
8845
|
deletedAt: Date | null;
|
8843
8846
|
phone: string | null;
|
8844
|
-
|
8847
|
+
notificationCount: number | null;
|
8845
8848
|
};
|
8846
8849
|
roomId: string;
|
8847
8850
|
actorId: string;
|
@@ -8862,12 +8865,12 @@ export declare const mailContract: {
|
|
8862
8865
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
8863
8866
|
name: import("zod").ZodString;
|
8864
8867
|
smtpHost: import("zod").ZodString;
|
8865
|
-
smtpPort: import("zod").
|
8866
|
-
smtpTlsPort: import("zod").
|
8868
|
+
smtpPort: import("zod").ZodNumber;
|
8869
|
+
smtpTlsPort: import("zod").ZodNumber;
|
8867
8870
|
useTlsForSmtp: import("zod").ZodBoolean;
|
8868
8871
|
imapHost: import("zod").ZodString;
|
8869
|
-
imapPort: import("zod").
|
8870
|
-
imapTlsPort: import("zod").
|
8872
|
+
imapPort: import("zod").ZodNumber;
|
8873
|
+
imapTlsPort: import("zod").ZodNumber;
|
8871
8874
|
useTlsForImap: import("zod").ZodBoolean;
|
8872
8875
|
}, "strip", import("zod").ZodTypeAny, {
|
8873
8876
|
id: string;
|
@@ -8876,12 +8879,12 @@ export declare const mailContract: {
|
|
8876
8879
|
updatedAt: Date;
|
8877
8880
|
deletedAt: Date | null;
|
8878
8881
|
smtpHost: string;
|
8879
|
-
smtpPort:
|
8880
|
-
smtpTlsPort:
|
8882
|
+
smtpPort: number;
|
8883
|
+
smtpTlsPort: number;
|
8881
8884
|
useTlsForSmtp: boolean;
|
8882
8885
|
imapHost: string;
|
8883
|
-
imapPort:
|
8884
|
-
imapTlsPort:
|
8886
|
+
imapPort: number;
|
8887
|
+
imapTlsPort: number;
|
8885
8888
|
useTlsForImap: boolean;
|
8886
8889
|
}, {
|
8887
8890
|
id: string;
|
@@ -8890,12 +8893,12 @@ export declare const mailContract: {
|
|
8890
8893
|
updatedAt: Date;
|
8891
8894
|
deletedAt: Date | null;
|
8892
8895
|
smtpHost: string;
|
8893
|
-
smtpPort:
|
8894
|
-
smtpTlsPort:
|
8896
|
+
smtpPort: number;
|
8897
|
+
smtpTlsPort: number;
|
8895
8898
|
useTlsForSmtp: boolean;
|
8896
8899
|
imapHost: string;
|
8897
|
-
imapPort:
|
8898
|
-
imapTlsPort:
|
8900
|
+
imapPort: number;
|
8901
|
+
imapTlsPort: number;
|
8899
8902
|
useTlsForImap: boolean;
|
8900
8903
|
}>;
|
8901
8904
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -8916,12 +8919,12 @@ export declare const mailContract: {
|
|
8916
8919
|
updatedAt: Date;
|
8917
8920
|
deletedAt: Date | null;
|
8918
8921
|
smtpHost: string;
|
8919
|
-
smtpPort:
|
8920
|
-
smtpTlsPort:
|
8922
|
+
smtpPort: number;
|
8923
|
+
smtpTlsPort: number;
|
8921
8924
|
useTlsForSmtp: boolean;
|
8922
8925
|
imapHost: string;
|
8923
|
-
imapPort:
|
8924
|
-
imapTlsPort:
|
8926
|
+
imapPort: number;
|
8927
|
+
imapTlsPort: number;
|
8925
8928
|
useTlsForImap: boolean;
|
8926
8929
|
};
|
8927
8930
|
}, {
|
@@ -8941,12 +8944,12 @@ export declare const mailContract: {
|
|
8941
8944
|
updatedAt: Date;
|
8942
8945
|
deletedAt: Date | null;
|
8943
8946
|
smtpHost: string;
|
8944
|
-
smtpPort:
|
8945
|
-
smtpTlsPort:
|
8947
|
+
smtpPort: number;
|
8948
|
+
smtpTlsPort: number;
|
8946
8949
|
useTlsForSmtp: boolean;
|
8947
8950
|
imapHost: string;
|
8948
|
-
imapPort:
|
8949
|
-
imapTlsPort:
|
8951
|
+
imapPort: number;
|
8952
|
+
imapTlsPort: number;
|
8950
8953
|
useTlsForImap: boolean;
|
8951
8954
|
};
|
8952
8955
|
}>;
|
@@ -9029,12 +9032,12 @@ export declare const mailContract: {
|
|
9029
9032
|
createdAt: Date;
|
9030
9033
|
updatedAt: Date;
|
9031
9034
|
deletedAt: Date | null;
|
9032
|
-
|
9033
|
-
|
9034
|
-
|
9035
|
-
|
9036
|
-
|
9037
|
-
|
9035
|
+
extensionName: string;
|
9036
|
+
fileName: string;
|
9037
|
+
fileKey: string;
|
9038
|
+
bucketName: string;
|
9039
|
+
fileSize: number;
|
9040
|
+
fileUrl: string;
|
9038
9041
|
};
|
9039
9042
|
roomId: string;
|
9040
9043
|
messageId: string;
|
@@ -9050,7 +9053,7 @@ export declare const mailContract: {
|
|
9050
9053
|
updatedAt: Date;
|
9051
9054
|
deletedAt: Date | null;
|
9052
9055
|
phone: string | null;
|
9053
|
-
|
9056
|
+
notificationCount: number | null;
|
9054
9057
|
};
|
9055
9058
|
resolved: boolean;
|
9056
9059
|
assigneeId: string | null;
|
@@ -9153,12 +9156,12 @@ export declare const mailContract: {
|
|
9153
9156
|
createdAt: Date;
|
9154
9157
|
updatedAt: Date;
|
9155
9158
|
deletedAt: Date | null;
|
9156
|
-
|
9157
|
-
|
9158
|
-
|
9159
|
-
|
9160
|
-
|
9161
|
-
|
9159
|
+
extensionName: string;
|
9160
|
+
fileName: string;
|
9161
|
+
fileKey: string;
|
9162
|
+
bucketName: string;
|
9163
|
+
fileSize: number;
|
9164
|
+
fileUrl: string;
|
9162
9165
|
};
|
9163
9166
|
roomId: string;
|
9164
9167
|
messageId: string;
|
@@ -9228,12 +9231,12 @@ export declare const mailContract: {
|
|
9228
9231
|
createdAt: Date;
|
9229
9232
|
updatedAt: Date;
|
9230
9233
|
deletedAt: Date | null;
|
9231
|
-
|
9232
|
-
|
9233
|
-
|
9234
|
-
|
9235
|
-
|
9236
|
-
|
9234
|
+
extensionName: string;
|
9235
|
+
fileName: string;
|
9236
|
+
fileKey: string;
|
9237
|
+
bucketName: string;
|
9238
|
+
fileSize: number;
|
9239
|
+
fileUrl: string;
|
9237
9240
|
};
|
9238
9241
|
roomId: string;
|
9239
9242
|
messageId: string;
|
@@ -9303,12 +9306,12 @@ export declare const mailContract: {
|
|
9303
9306
|
createdAt: Date;
|
9304
9307
|
updatedAt: Date;
|
9305
9308
|
deletedAt: Date | null;
|
9306
|
-
|
9307
|
-
|
9308
|
-
|
9309
|
-
|
9310
|
-
|
9311
|
-
|
9309
|
+
extensionName: string;
|
9310
|
+
fileName: string;
|
9311
|
+
fileKey: string;
|
9312
|
+
bucketName: string;
|
9313
|
+
fileSize: number;
|
9314
|
+
fileUrl: string;
|
9312
9315
|
};
|
9313
9316
|
roomId: string;
|
9314
9317
|
messageId: string;
|
@@ -9329,7 +9332,7 @@ export declare const mailContract: {
|
|
9329
9332
|
updatedAt: Date;
|
9330
9333
|
deletedAt: Date | null;
|
9331
9334
|
phone: string | null;
|
9332
|
-
|
9335
|
+
notificationCount: number | null;
|
9333
9336
|
};
|
9334
9337
|
roomId: string;
|
9335
9338
|
actorId: string;
|
@@ -9351,12 +9354,12 @@ export declare const mailContract: {
|
|
9351
9354
|
updatedAt: Date;
|
9352
9355
|
deletedAt: Date | null;
|
9353
9356
|
smtpHost: string;
|
9354
|
-
smtpPort:
|
9355
|
-
smtpTlsPort:
|
9357
|
+
smtpPort: number;
|
9358
|
+
smtpTlsPort: number;
|
9356
9359
|
useTlsForSmtp: boolean;
|
9357
9360
|
imapHost: string;
|
9358
|
-
imapPort:
|
9359
|
-
imapTlsPort:
|
9361
|
+
imapPort: number;
|
9362
|
+
imapTlsPort: number;
|
9360
9363
|
useTlsForImap: boolean;
|
9361
9364
|
};
|
9362
9365
|
};
|
@@ -9439,12 +9442,12 @@ export declare const mailContract: {
|
|
9439
9442
|
createdAt: Date;
|
9440
9443
|
updatedAt: Date;
|
9441
9444
|
deletedAt: Date | null;
|
9442
|
-
|
9443
|
-
|
9444
|
-
|
9445
|
-
|
9446
|
-
|
9447
|
-
|
9445
|
+
extensionName: string;
|
9446
|
+
fileName: string;
|
9447
|
+
fileKey: string;
|
9448
|
+
bucketName: string;
|
9449
|
+
fileSize: number;
|
9450
|
+
fileUrl: string;
|
9448
9451
|
};
|
9449
9452
|
roomId: string;
|
9450
9453
|
messageId: string;
|
@@ -9460,7 +9463,7 @@ export declare const mailContract: {
|
|
9460
9463
|
updatedAt: Date;
|
9461
9464
|
deletedAt: Date | null;
|
9462
9465
|
phone: string | null;
|
9463
|
-
|
9466
|
+
notificationCount: number | null;
|
9464
9467
|
};
|
9465
9468
|
resolved: boolean;
|
9466
9469
|
assigneeId: string | null;
|
@@ -9563,12 +9566,12 @@ export declare const mailContract: {
|
|
9563
9566
|
createdAt: Date;
|
9564
9567
|
updatedAt: Date;
|
9565
9568
|
deletedAt: Date | null;
|
9566
|
-
|
9567
|
-
|
9568
|
-
|
9569
|
-
|
9570
|
-
|
9571
|
-
|
9569
|
+
extensionName: string;
|
9570
|
+
fileName: string;
|
9571
|
+
fileKey: string;
|
9572
|
+
bucketName: string;
|
9573
|
+
fileSize: number;
|
9574
|
+
fileUrl: string;
|
9572
9575
|
};
|
9573
9576
|
roomId: string;
|
9574
9577
|
messageId: string;
|
@@ -9638,12 +9641,12 @@ export declare const mailContract: {
|
|
9638
9641
|
createdAt: Date;
|
9639
9642
|
updatedAt: Date;
|
9640
9643
|
deletedAt: Date | null;
|
9641
|
-
|
9642
|
-
|
9643
|
-
|
9644
|
-
|
9645
|
-
|
9646
|
-
|
9644
|
+
extensionName: string;
|
9645
|
+
fileName: string;
|
9646
|
+
fileKey: string;
|
9647
|
+
bucketName: string;
|
9648
|
+
fileSize: number;
|
9649
|
+
fileUrl: string;
|
9647
9650
|
};
|
9648
9651
|
roomId: string;
|
9649
9652
|
messageId: string;
|
@@ -9713,12 +9716,12 @@ export declare const mailContract: {
|
|
9713
9716
|
createdAt: Date;
|
9714
9717
|
updatedAt: Date;
|
9715
9718
|
deletedAt: Date | null;
|
9716
|
-
|
9717
|
-
|
9718
|
-
|
9719
|
-
|
9720
|
-
|
9721
|
-
|
9719
|
+
extensionName: string;
|
9720
|
+
fileName: string;
|
9721
|
+
fileKey: string;
|
9722
|
+
bucketName: string;
|
9723
|
+
fileSize: number;
|
9724
|
+
fileUrl: string;
|
9722
9725
|
};
|
9723
9726
|
roomId: string;
|
9724
9727
|
messageId: string;
|
@@ -9739,7 +9742,7 @@ export declare const mailContract: {
|
|
9739
9742
|
updatedAt: Date;
|
9740
9743
|
deletedAt: Date | null;
|
9741
9744
|
phone: string | null;
|
9742
|
-
|
9745
|
+
notificationCount: number | null;
|
9743
9746
|
};
|
9744
9747
|
roomId: string;
|
9745
9748
|
actorId: string;
|
@@ -9761,12 +9764,12 @@ export declare const mailContract: {
|
|
9761
9764
|
updatedAt: Date;
|
9762
9765
|
deletedAt: Date | null;
|
9763
9766
|
smtpHost: string;
|
9764
|
-
smtpPort:
|
9765
|
-
smtpTlsPort:
|
9767
|
+
smtpPort: number;
|
9768
|
+
smtpTlsPort: number;
|
9766
9769
|
useTlsForSmtp: boolean;
|
9767
9770
|
imapHost: string;
|
9768
|
-
imapPort:
|
9769
|
-
imapTlsPort:
|
9771
|
+
imapPort: number;
|
9772
|
+
imapTlsPort: number;
|
9770
9773
|
useTlsForImap: boolean;
|
9771
9774
|
};
|
9772
9775
|
};
|
@@ -9851,12 +9854,12 @@ export declare const mailContract: {
|
|
9851
9854
|
createdAt: Date;
|
9852
9855
|
updatedAt: Date;
|
9853
9856
|
deletedAt: Date | null;
|
9854
|
-
|
9855
|
-
|
9856
|
-
|
9857
|
-
|
9858
|
-
|
9859
|
-
|
9857
|
+
extensionName: string;
|
9858
|
+
fileName: string;
|
9859
|
+
fileKey: string;
|
9860
|
+
bucketName: string;
|
9861
|
+
fileSize: number;
|
9862
|
+
fileUrl: string;
|
9860
9863
|
};
|
9861
9864
|
roomId: string;
|
9862
9865
|
messageId: string;
|
@@ -9872,7 +9875,7 @@ export declare const mailContract: {
|
|
9872
9875
|
updatedAt: Date;
|
9873
9876
|
deletedAt: Date | null;
|
9874
9877
|
phone: string | null;
|
9875
|
-
|
9878
|
+
notificationCount: number | null;
|
9876
9879
|
};
|
9877
9880
|
resolved: boolean;
|
9878
9881
|
assigneeId: string | null;
|
@@ -9975,12 +9978,12 @@ export declare const mailContract: {
|
|
9975
9978
|
createdAt: Date;
|
9976
9979
|
updatedAt: Date;
|
9977
9980
|
deletedAt: Date | null;
|
9978
|
-
|
9979
|
-
|
9980
|
-
|
9981
|
-
|
9982
|
-
|
9983
|
-
|
9981
|
+
extensionName: string;
|
9982
|
+
fileName: string;
|
9983
|
+
fileKey: string;
|
9984
|
+
bucketName: string;
|
9985
|
+
fileSize: number;
|
9986
|
+
fileUrl: string;
|
9984
9987
|
};
|
9985
9988
|
roomId: string;
|
9986
9989
|
messageId: string;
|
@@ -10050,12 +10053,12 @@ export declare const mailContract: {
|
|
10050
10053
|
createdAt: Date;
|
10051
10054
|
updatedAt: Date;
|
10052
10055
|
deletedAt: Date | null;
|
10053
|
-
|
10054
|
-
|
10055
|
-
|
10056
|
-
|
10057
|
-
|
10058
|
-
|
10056
|
+
extensionName: string;
|
10057
|
+
fileName: string;
|
10058
|
+
fileKey: string;
|
10059
|
+
bucketName: string;
|
10060
|
+
fileSize: number;
|
10061
|
+
fileUrl: string;
|
10059
10062
|
};
|
10060
10063
|
roomId: string;
|
10061
10064
|
messageId: string;
|
@@ -10125,12 +10128,12 @@ export declare const mailContract: {
|
|
10125
10128
|
createdAt: Date;
|
10126
10129
|
updatedAt: Date;
|
10127
10130
|
deletedAt: Date | null;
|
10128
|
-
|
10129
|
-
|
10130
|
-
|
10131
|
-
|
10132
|
-
|
10133
|
-
|
10131
|
+
extensionName: string;
|
10132
|
+
fileName: string;
|
10133
|
+
fileKey: string;
|
10134
|
+
bucketName: string;
|
10135
|
+
fileSize: number;
|
10136
|
+
fileUrl: string;
|
10134
10137
|
};
|
10135
10138
|
roomId: string;
|
10136
10139
|
messageId: string;
|
@@ -10151,7 +10154,7 @@ export declare const mailContract: {
|
|
10151
10154
|
updatedAt: Date;
|
10152
10155
|
deletedAt: Date | null;
|
10153
10156
|
phone: string | null;
|
10154
|
-
|
10157
|
+
notificationCount: number | null;
|
10155
10158
|
};
|
10156
10159
|
roomId: string;
|
10157
10160
|
actorId: string;
|
@@ -10173,12 +10176,12 @@ export declare const mailContract: {
|
|
10173
10176
|
updatedAt: Date;
|
10174
10177
|
deletedAt: Date | null;
|
10175
10178
|
smtpHost: string;
|
10176
|
-
smtpPort:
|
10177
|
-
smtpTlsPort:
|
10179
|
+
smtpPort: number;
|
10180
|
+
smtpTlsPort: number;
|
10178
10181
|
useTlsForSmtp: boolean;
|
10179
10182
|
imapHost: string;
|
10180
|
-
imapPort:
|
10181
|
-
imapTlsPort:
|
10183
|
+
imapPort: number;
|
10184
|
+
imapTlsPort: number;
|
10182
10185
|
useTlsForImap: boolean;
|
10183
10186
|
};
|
10184
10187
|
};
|
@@ -10264,12 +10267,12 @@ export declare const mailContract: {
|
|
10264
10267
|
createdAt: Date;
|
10265
10268
|
updatedAt: Date;
|
10266
10269
|
deletedAt: Date | null;
|
10267
|
-
|
10268
|
-
|
10269
|
-
|
10270
|
-
|
10271
|
-
|
10272
|
-
|
10270
|
+
extensionName: string;
|
10271
|
+
fileName: string;
|
10272
|
+
fileKey: string;
|
10273
|
+
bucketName: string;
|
10274
|
+
fileSize: number;
|
10275
|
+
fileUrl: string;
|
10273
10276
|
};
|
10274
10277
|
roomId: string;
|
10275
10278
|
messageId: string;
|
@@ -10285,7 +10288,7 @@ export declare const mailContract: {
|
|
10285
10288
|
updatedAt: Date;
|
10286
10289
|
deletedAt: Date | null;
|
10287
10290
|
phone: string | null;
|
10288
|
-
|
10291
|
+
notificationCount: number | null;
|
10289
10292
|
};
|
10290
10293
|
resolved: boolean;
|
10291
10294
|
assigneeId: string | null;
|
@@ -10388,12 +10391,12 @@ export declare const mailContract: {
|
|
10388
10391
|
createdAt: Date;
|
10389
10392
|
updatedAt: Date;
|
10390
10393
|
deletedAt: Date | null;
|
10391
|
-
|
10392
|
-
|
10393
|
-
|
10394
|
-
|
10395
|
-
|
10396
|
-
|
10394
|
+
extensionName: string;
|
10395
|
+
fileName: string;
|
10396
|
+
fileKey: string;
|
10397
|
+
bucketName: string;
|
10398
|
+
fileSize: number;
|
10399
|
+
fileUrl: string;
|
10397
10400
|
};
|
10398
10401
|
roomId: string;
|
10399
10402
|
messageId: string;
|
@@ -10463,12 +10466,12 @@ export declare const mailContract: {
|
|
10463
10466
|
createdAt: Date;
|
10464
10467
|
updatedAt: Date;
|
10465
10468
|
deletedAt: Date | null;
|
10466
|
-
|
10467
|
-
|
10468
|
-
|
10469
|
-
|
10470
|
-
|
10471
|
-
|
10469
|
+
extensionName: string;
|
10470
|
+
fileName: string;
|
10471
|
+
fileKey: string;
|
10472
|
+
bucketName: string;
|
10473
|
+
fileSize: number;
|
10474
|
+
fileUrl: string;
|
10472
10475
|
};
|
10473
10476
|
roomId: string;
|
10474
10477
|
messageId: string;
|
@@ -10538,12 +10541,12 @@ export declare const mailContract: {
|
|
10538
10541
|
createdAt: Date;
|
10539
10542
|
updatedAt: Date;
|
10540
10543
|
deletedAt: Date | null;
|
10541
|
-
|
10542
|
-
|
10543
|
-
|
10544
|
-
|
10545
|
-
|
10546
|
-
|
10544
|
+
extensionName: string;
|
10545
|
+
fileName: string;
|
10546
|
+
fileKey: string;
|
10547
|
+
bucketName: string;
|
10548
|
+
fileSize: number;
|
10549
|
+
fileUrl: string;
|
10547
10550
|
};
|
10548
10551
|
roomId: string;
|
10549
10552
|
messageId: string;
|
@@ -10564,7 +10567,7 @@ export declare const mailContract: {
|
|
10564
10567
|
updatedAt: Date;
|
10565
10568
|
deletedAt: Date | null;
|
10566
10569
|
phone: string | null;
|
10567
|
-
|
10570
|
+
notificationCount: number | null;
|
10568
10571
|
};
|
10569
10572
|
roomId: string;
|
10570
10573
|
actorId: string;
|
@@ -10586,12 +10589,12 @@ export declare const mailContract: {
|
|
10586
10589
|
updatedAt: Date;
|
10587
10590
|
deletedAt: Date | null;
|
10588
10591
|
smtpHost: string;
|
10589
|
-
smtpPort:
|
10590
|
-
smtpTlsPort:
|
10592
|
+
smtpPort: number;
|
10593
|
+
smtpTlsPort: number;
|
10591
10594
|
useTlsForSmtp: boolean;
|
10592
10595
|
imapHost: string;
|
10593
|
-
imapPort:
|
10594
|
-
imapTlsPort:
|
10596
|
+
imapPort: number;
|
10597
|
+
imapTlsPort: number;
|
10595
10598
|
useTlsForImap: boolean;
|
10596
10599
|
};
|
10597
10600
|
};
|
@@ -11046,34 +11049,34 @@ export declare const mailContract: {
|
|
11046
11049
|
createdAt: import("zod").ZodDate;
|
11047
11050
|
updatedAt: import("zod").ZodDate;
|
11048
11051
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
11049
|
-
|
11050
|
-
|
11051
|
-
|
11052
|
-
|
11053
|
-
|
11054
|
-
|
11052
|
+
bucketName: import("zod").ZodString;
|
11053
|
+
fileName: import("zod").ZodString;
|
11054
|
+
fileKey: import("zod").ZodString;
|
11055
|
+
fileSize: import("zod").ZodNumber;
|
11056
|
+
fileUrl: import("zod").ZodString;
|
11057
|
+
extensionName: import("zod").ZodString;
|
11055
11058
|
}, "strip", import("zod").ZodTypeAny, {
|
11056
11059
|
id: string;
|
11057
11060
|
createdAt: Date;
|
11058
11061
|
updatedAt: Date;
|
11059
11062
|
deletedAt: Date | null;
|
11060
|
-
|
11061
|
-
|
11062
|
-
|
11063
|
-
|
11064
|
-
|
11065
|
-
|
11063
|
+
extensionName: string;
|
11064
|
+
fileName: string;
|
11065
|
+
fileKey: string;
|
11066
|
+
bucketName: string;
|
11067
|
+
fileSize: number;
|
11068
|
+
fileUrl: string;
|
11066
11069
|
}, {
|
11067
11070
|
id: string;
|
11068
11071
|
createdAt: Date;
|
11069
11072
|
updatedAt: Date;
|
11070
11073
|
deletedAt: Date | null;
|
11071
|
-
|
11072
|
-
|
11073
|
-
|
11074
|
-
|
11075
|
-
|
11076
|
-
|
11074
|
+
extensionName: string;
|
11075
|
+
fileName: string;
|
11076
|
+
fileKey: string;
|
11077
|
+
bucketName: string;
|
11078
|
+
fileSize: number;
|
11079
|
+
fileUrl: string;
|
11077
11080
|
}>;
|
11078
11081
|
}, "strip", import("zod").ZodTypeAny, {
|
11079
11082
|
id: string;
|
@@ -11088,12 +11091,12 @@ export declare const mailContract: {
|
|
11088
11091
|
createdAt: Date;
|
11089
11092
|
updatedAt: Date;
|
11090
11093
|
deletedAt: Date | null;
|
11091
|
-
|
11092
|
-
|
11093
|
-
|
11094
|
-
|
11095
|
-
|
11096
|
-
|
11094
|
+
extensionName: string;
|
11095
|
+
fileName: string;
|
11096
|
+
fileKey: string;
|
11097
|
+
bucketName: string;
|
11098
|
+
fileSize: number;
|
11099
|
+
fileUrl: string;
|
11097
11100
|
};
|
11098
11101
|
roomId: string;
|
11099
11102
|
messageId: string;
|
@@ -11111,12 +11114,12 @@ export declare const mailContract: {
|
|
11111
11114
|
createdAt: Date;
|
11112
11115
|
updatedAt: Date;
|
11113
11116
|
deletedAt: Date | null;
|
11114
|
-
|
11115
|
-
|
11116
|
-
|
11117
|
-
|
11118
|
-
|
11119
|
-
|
11117
|
+
extensionName: string;
|
11118
|
+
fileName: string;
|
11119
|
+
fileKey: string;
|
11120
|
+
bucketName: string;
|
11121
|
+
fileSize: number;
|
11122
|
+
fileUrl: string;
|
11120
11123
|
};
|
11121
11124
|
roomId: string;
|
11122
11125
|
messageId: string;
|
@@ -11185,12 +11188,12 @@ export declare const mailContract: {
|
|
11185
11188
|
createdAt: Date;
|
11186
11189
|
updatedAt: Date;
|
11187
11190
|
deletedAt: Date | null;
|
11188
|
-
|
11189
|
-
|
11190
|
-
|
11191
|
-
|
11192
|
-
|
11193
|
-
|
11191
|
+
extensionName: string;
|
11192
|
+
fileName: string;
|
11193
|
+
fileKey: string;
|
11194
|
+
bucketName: string;
|
11195
|
+
fileSize: number;
|
11196
|
+
fileUrl: string;
|
11194
11197
|
};
|
11195
11198
|
roomId: string;
|
11196
11199
|
messageId: string;
|
@@ -11259,12 +11262,12 @@ export declare const mailContract: {
|
|
11259
11262
|
createdAt: Date;
|
11260
11263
|
updatedAt: Date;
|
11261
11264
|
deletedAt: Date | null;
|
11262
|
-
|
11263
|
-
|
11264
|
-
|
11265
|
-
|
11266
|
-
|
11267
|
-
|
11265
|
+
extensionName: string;
|
11266
|
+
fileName: string;
|
11267
|
+
fileKey: string;
|
11268
|
+
bucketName: string;
|
11269
|
+
fileSize: number;
|
11270
|
+
fileUrl: string;
|
11268
11271
|
};
|
11269
11272
|
roomId: string;
|
11270
11273
|
messageId: string;
|
@@ -11335,12 +11338,12 @@ export declare const mailContract: {
|
|
11335
11338
|
createdAt: Date;
|
11336
11339
|
updatedAt: Date;
|
11337
11340
|
deletedAt: Date | null;
|
11338
|
-
|
11339
|
-
|
11340
|
-
|
11341
|
-
|
11342
|
-
|
11343
|
-
|
11341
|
+
extensionName: string;
|
11342
|
+
fileName: string;
|
11343
|
+
fileKey: string;
|
11344
|
+
bucketName: string;
|
11345
|
+
fileSize: number;
|
11346
|
+
fileUrl: string;
|
11344
11347
|
};
|
11345
11348
|
roomId: string;
|
11346
11349
|
messageId: string;
|
@@ -11412,12 +11415,12 @@ export declare const mailContract: {
|
|
11412
11415
|
createdAt: Date;
|
11413
11416
|
updatedAt: Date;
|
11414
11417
|
deletedAt: Date | null;
|
11415
|
-
|
11416
|
-
|
11417
|
-
|
11418
|
-
|
11419
|
-
|
11420
|
-
|
11418
|
+
extensionName: string;
|
11419
|
+
fileName: string;
|
11420
|
+
fileKey: string;
|
11421
|
+
bucketName: string;
|
11422
|
+
fileSize: number;
|
11423
|
+
fileUrl: string;
|
11421
11424
|
};
|
11422
11425
|
roomId: string;
|
11423
11426
|
messageId: string;
|
@@ -11590,12 +11593,12 @@ export declare const mailContract: {
|
|
11590
11593
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
11591
11594
|
name: import("zod").ZodString;
|
11592
11595
|
smtpHost: import("zod").ZodString;
|
11593
|
-
smtpPort: import("zod").
|
11594
|
-
smtpTlsPort: import("zod").
|
11596
|
+
smtpPort: import("zod").ZodNumber;
|
11597
|
+
smtpTlsPort: import("zod").ZodNumber;
|
11595
11598
|
useTlsForSmtp: import("zod").ZodBoolean;
|
11596
11599
|
imapHost: import("zod").ZodString;
|
11597
|
-
imapPort: import("zod").
|
11598
|
-
imapTlsPort: import("zod").
|
11600
|
+
imapPort: import("zod").ZodNumber;
|
11601
|
+
imapTlsPort: import("zod").ZodNumber;
|
11599
11602
|
useTlsForImap: import("zod").ZodBoolean;
|
11600
11603
|
}, "strip", import("zod").ZodTypeAny, {
|
11601
11604
|
id: string;
|
@@ -11604,12 +11607,12 @@ export declare const mailContract: {
|
|
11604
11607
|
updatedAt: Date;
|
11605
11608
|
deletedAt: Date | null;
|
11606
11609
|
smtpHost: string;
|
11607
|
-
smtpPort:
|
11608
|
-
smtpTlsPort:
|
11610
|
+
smtpPort: number;
|
11611
|
+
smtpTlsPort: number;
|
11609
11612
|
useTlsForSmtp: boolean;
|
11610
11613
|
imapHost: string;
|
11611
|
-
imapPort:
|
11612
|
-
imapTlsPort:
|
11614
|
+
imapPort: number;
|
11615
|
+
imapTlsPort: number;
|
11613
11616
|
useTlsForImap: boolean;
|
11614
11617
|
}, {
|
11615
11618
|
id: string;
|
@@ -11618,12 +11621,12 @@ export declare const mailContract: {
|
|
11618
11621
|
updatedAt: Date;
|
11619
11622
|
deletedAt: Date | null;
|
11620
11623
|
smtpHost: string;
|
11621
|
-
smtpPort:
|
11622
|
-
smtpTlsPort:
|
11624
|
+
smtpPort: number;
|
11625
|
+
smtpTlsPort: number;
|
11623
11626
|
useTlsForSmtp: boolean;
|
11624
11627
|
imapHost: string;
|
11625
|
-
imapPort:
|
11626
|
-
imapTlsPort:
|
11628
|
+
imapPort: number;
|
11629
|
+
imapTlsPort: number;
|
11627
11630
|
useTlsForImap: boolean;
|
11628
11631
|
}>;
|
11629
11632
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -11644,12 +11647,12 @@ export declare const mailContract: {
|
|
11644
11647
|
updatedAt: Date;
|
11645
11648
|
deletedAt: Date | null;
|
11646
11649
|
smtpHost: string;
|
11647
|
-
smtpPort:
|
11648
|
-
smtpTlsPort:
|
11650
|
+
smtpPort: number;
|
11651
|
+
smtpTlsPort: number;
|
11649
11652
|
useTlsForSmtp: boolean;
|
11650
11653
|
imapHost: string;
|
11651
|
-
imapPort:
|
11652
|
-
imapTlsPort:
|
11654
|
+
imapPort: number;
|
11655
|
+
imapTlsPort: number;
|
11653
11656
|
useTlsForImap: boolean;
|
11654
11657
|
};
|
11655
11658
|
}, {
|
@@ -11669,12 +11672,12 @@ export declare const mailContract: {
|
|
11669
11672
|
updatedAt: Date;
|
11670
11673
|
deletedAt: Date | null;
|
11671
11674
|
smtpHost: string;
|
11672
|
-
smtpPort:
|
11673
|
-
smtpTlsPort:
|
11675
|
+
smtpPort: number;
|
11676
|
+
smtpTlsPort: number;
|
11674
11677
|
useTlsForSmtp: boolean;
|
11675
11678
|
imapHost: string;
|
11676
|
-
imapPort:
|
11677
|
-
imapTlsPort:
|
11679
|
+
imapPort: number;
|
11680
|
+
imapTlsPort: number;
|
11678
11681
|
useTlsForImap: boolean;
|
11679
11682
|
};
|
11680
11683
|
}>;
|
@@ -11696,12 +11699,12 @@ export declare const mailContract: {
|
|
11696
11699
|
updatedAt: Date;
|
11697
11700
|
deletedAt: Date | null;
|
11698
11701
|
smtpHost: string;
|
11699
|
-
smtpPort:
|
11700
|
-
smtpTlsPort:
|
11702
|
+
smtpPort: number;
|
11703
|
+
smtpTlsPort: number;
|
11701
11704
|
useTlsForSmtp: boolean;
|
11702
11705
|
imapHost: string;
|
11703
|
-
imapPort:
|
11704
|
-
imapTlsPort:
|
11706
|
+
imapPort: number;
|
11707
|
+
imapTlsPort: number;
|
11705
11708
|
useTlsForImap: boolean;
|
11706
11709
|
};
|
11707
11710
|
};
|
@@ -11724,12 +11727,12 @@ export declare const mailContract: {
|
|
11724
11727
|
updatedAt: Date;
|
11725
11728
|
deletedAt: Date | null;
|
11726
11729
|
smtpHost: string;
|
11727
|
-
smtpPort:
|
11728
|
-
smtpTlsPort:
|
11730
|
+
smtpPort: number;
|
11731
|
+
smtpTlsPort: number;
|
11729
11732
|
useTlsForSmtp: boolean;
|
11730
11733
|
imapHost: string;
|
11731
|
-
imapPort:
|
11732
|
-
imapTlsPort:
|
11734
|
+
imapPort: number;
|
11735
|
+
imapTlsPort: number;
|
11733
11736
|
useTlsForImap: boolean;
|
11734
11737
|
};
|
11735
11738
|
};
|
@@ -11755,7 +11758,7 @@ export declare const mailContract: {
|
|
11755
11758
|
}>>>;
|
11756
11759
|
};
|
11757
11760
|
getAll: {
|
11758
|
-
summary: "Get
|
11761
|
+
summary: "Get all accounts";
|
11759
11762
|
method: "GET";
|
11760
11763
|
responses: {
|
11761
11764
|
401: import("zod").ZodObject<{
|
@@ -11790,13 +11793,166 @@ export declare const mailContract: {
|
|
11790
11793
|
}>;
|
11791
11794
|
200: import("zod").ZodObject<{
|
11792
11795
|
requestId: import("zod").ZodString;
|
11793
|
-
data: import("zod").
|
11796
|
+
data: import("zod").ZodArray<import("zod").ZodObject<{
|
11797
|
+
id: import("zod").ZodString;
|
11798
|
+
createdAt: import("zod").ZodDate;
|
11799
|
+
updatedAt: import("zod").ZodDate;
|
11800
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
11801
|
+
name: import("zod").ZodString;
|
11802
|
+
address: import("zod").ZodString;
|
11803
|
+
accountId: import("zod").ZodString;
|
11804
|
+
mailServerId: import("zod").ZodString;
|
11805
|
+
mailServer: import("zod").ZodObject<{
|
11806
|
+
id: import("zod").ZodString;
|
11807
|
+
createdAt: import("zod").ZodDate;
|
11808
|
+
updatedAt: import("zod").ZodDate;
|
11809
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
11810
|
+
name: import("zod").ZodString;
|
11811
|
+
smtpHost: import("zod").ZodString;
|
11812
|
+
smtpPort: import("zod").ZodNumber;
|
11813
|
+
smtpTlsPort: import("zod").ZodNumber;
|
11814
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
11815
|
+
imapHost: import("zod").ZodString;
|
11816
|
+
imapPort: import("zod").ZodNumber;
|
11817
|
+
imapTlsPort: import("zod").ZodNumber;
|
11818
|
+
useTlsForImap: import("zod").ZodBoolean;
|
11819
|
+
}, "strip", import("zod").ZodTypeAny, {
|
11820
|
+
id: string;
|
11821
|
+
name: string;
|
11822
|
+
createdAt: Date;
|
11823
|
+
updatedAt: Date;
|
11824
|
+
deletedAt: Date | null;
|
11825
|
+
smtpHost: string;
|
11826
|
+
smtpPort: number;
|
11827
|
+
smtpTlsPort: number;
|
11828
|
+
useTlsForSmtp: boolean;
|
11829
|
+
imapHost: string;
|
11830
|
+
imapPort: number;
|
11831
|
+
imapTlsPort: number;
|
11832
|
+
useTlsForImap: boolean;
|
11833
|
+
}, {
|
11834
|
+
id: string;
|
11835
|
+
name: string;
|
11836
|
+
createdAt: Date;
|
11837
|
+
updatedAt: Date;
|
11838
|
+
deletedAt: Date | null;
|
11839
|
+
smtpHost: string;
|
11840
|
+
smtpPort: number;
|
11841
|
+
smtpTlsPort: number;
|
11842
|
+
useTlsForSmtp: boolean;
|
11843
|
+
imapHost: string;
|
11844
|
+
imapPort: number;
|
11845
|
+
imapTlsPort: number;
|
11846
|
+
useTlsForImap: boolean;
|
11847
|
+
}>;
|
11848
|
+
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
11849
|
+
}, "strip", import("zod").ZodTypeAny, {
|
11850
|
+
id: string;
|
11851
|
+
state: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset";
|
11852
|
+
address: string;
|
11853
|
+
name: string;
|
11854
|
+
createdAt: Date;
|
11855
|
+
updatedAt: Date;
|
11856
|
+
deletedAt: Date | null;
|
11857
|
+
accountId: string;
|
11858
|
+
mailServerId: string;
|
11859
|
+
mailServer: {
|
11860
|
+
id: string;
|
11861
|
+
name: string;
|
11862
|
+
createdAt: Date;
|
11863
|
+
updatedAt: Date;
|
11864
|
+
deletedAt: Date | null;
|
11865
|
+
smtpHost: string;
|
11866
|
+
smtpPort: number;
|
11867
|
+
smtpTlsPort: number;
|
11868
|
+
useTlsForSmtp: boolean;
|
11869
|
+
imapHost: string;
|
11870
|
+
imapPort: number;
|
11871
|
+
imapTlsPort: number;
|
11872
|
+
useTlsForImap: boolean;
|
11873
|
+
};
|
11874
|
+
}, {
|
11875
|
+
id: string;
|
11876
|
+
state: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset";
|
11877
|
+
address: string;
|
11878
|
+
name: string;
|
11879
|
+
createdAt: Date;
|
11880
|
+
updatedAt: Date;
|
11881
|
+
deletedAt: Date | null;
|
11882
|
+
accountId: string;
|
11883
|
+
mailServerId: string;
|
11884
|
+
mailServer: {
|
11885
|
+
id: string;
|
11886
|
+
name: string;
|
11887
|
+
createdAt: Date;
|
11888
|
+
updatedAt: Date;
|
11889
|
+
deletedAt: Date | null;
|
11890
|
+
smtpHost: string;
|
11891
|
+
smtpPort: number;
|
11892
|
+
smtpTlsPort: number;
|
11893
|
+
useTlsForSmtp: boolean;
|
11894
|
+
imapHost: string;
|
11895
|
+
imapPort: number;
|
11896
|
+
imapTlsPort: number;
|
11897
|
+
useTlsForImap: boolean;
|
11898
|
+
};
|
11899
|
+
}>, "many">;
|
11794
11900
|
}, "strip", import("zod").ZodTypeAny, {
|
11901
|
+
data: {
|
11902
|
+
id: string;
|
11903
|
+
state: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset";
|
11904
|
+
address: string;
|
11905
|
+
name: string;
|
11906
|
+
createdAt: Date;
|
11907
|
+
updatedAt: Date;
|
11908
|
+
deletedAt: Date | null;
|
11909
|
+
accountId: string;
|
11910
|
+
mailServerId: string;
|
11911
|
+
mailServer: {
|
11912
|
+
id: string;
|
11913
|
+
name: string;
|
11914
|
+
createdAt: Date;
|
11915
|
+
updatedAt: Date;
|
11916
|
+
deletedAt: Date | null;
|
11917
|
+
smtpHost: string;
|
11918
|
+
smtpPort: number;
|
11919
|
+
smtpTlsPort: number;
|
11920
|
+
useTlsForSmtp: boolean;
|
11921
|
+
imapHost: string;
|
11922
|
+
imapPort: number;
|
11923
|
+
imapTlsPort: number;
|
11924
|
+
useTlsForImap: boolean;
|
11925
|
+
};
|
11926
|
+
}[];
|
11795
11927
|
requestId: string;
|
11796
|
-
data?: any;
|
11797
11928
|
}, {
|
11929
|
+
data: {
|
11930
|
+
id: string;
|
11931
|
+
state: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset";
|
11932
|
+
address: string;
|
11933
|
+
name: string;
|
11934
|
+
createdAt: Date;
|
11935
|
+
updatedAt: Date;
|
11936
|
+
deletedAt: Date | null;
|
11937
|
+
accountId: string;
|
11938
|
+
mailServerId: string;
|
11939
|
+
mailServer: {
|
11940
|
+
id: string;
|
11941
|
+
name: string;
|
11942
|
+
createdAt: Date;
|
11943
|
+
updatedAt: Date;
|
11944
|
+
deletedAt: Date | null;
|
11945
|
+
smtpHost: string;
|
11946
|
+
smtpPort: number;
|
11947
|
+
smtpTlsPort: number;
|
11948
|
+
useTlsForSmtp: boolean;
|
11949
|
+
imapHost: string;
|
11950
|
+
imapPort: number;
|
11951
|
+
imapTlsPort: number;
|
11952
|
+
useTlsForImap: boolean;
|
11953
|
+
};
|
11954
|
+
}[];
|
11798
11955
|
requestId: string;
|
11799
|
-
data?: any;
|
11800
11956
|
}>;
|
11801
11957
|
};
|
11802
11958
|
path: "mail/account";
|
@@ -11834,12 +11990,12 @@ export declare const mailContract: {
|
|
11834
11990
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
11835
11991
|
name: import("zod").ZodString;
|
11836
11992
|
smtpHost: import("zod").ZodString;
|
11837
|
-
smtpPort: import("zod").
|
11838
|
-
smtpTlsPort: import("zod").
|
11993
|
+
smtpPort: import("zod").ZodNumber;
|
11994
|
+
smtpTlsPort: import("zod").ZodNumber;
|
11839
11995
|
useTlsForSmtp: import("zod").ZodBoolean;
|
11840
11996
|
imapHost: import("zod").ZodString;
|
11841
|
-
imapPort: import("zod").
|
11842
|
-
imapTlsPort: import("zod").
|
11997
|
+
imapPort: import("zod").ZodNumber;
|
11998
|
+
imapTlsPort: import("zod").ZodNumber;
|
11843
11999
|
useTlsForImap: import("zod").ZodBoolean;
|
11844
12000
|
}, "strip", import("zod").ZodTypeAny, {
|
11845
12001
|
id: string;
|
@@ -11848,12 +12004,12 @@ export declare const mailContract: {
|
|
11848
12004
|
updatedAt: Date;
|
11849
12005
|
deletedAt: Date | null;
|
11850
12006
|
smtpHost: string;
|
11851
|
-
smtpPort:
|
11852
|
-
smtpTlsPort:
|
12007
|
+
smtpPort: number;
|
12008
|
+
smtpTlsPort: number;
|
11853
12009
|
useTlsForSmtp: boolean;
|
11854
12010
|
imapHost: string;
|
11855
|
-
imapPort:
|
11856
|
-
imapTlsPort:
|
12011
|
+
imapPort: number;
|
12012
|
+
imapTlsPort: number;
|
11857
12013
|
useTlsForImap: boolean;
|
11858
12014
|
}, {
|
11859
12015
|
id: string;
|
@@ -11862,12 +12018,12 @@ export declare const mailContract: {
|
|
11862
12018
|
updatedAt: Date;
|
11863
12019
|
deletedAt: Date | null;
|
11864
12020
|
smtpHost: string;
|
11865
|
-
smtpPort:
|
11866
|
-
smtpTlsPort:
|
12021
|
+
smtpPort: number;
|
12022
|
+
smtpTlsPort: number;
|
11867
12023
|
useTlsForSmtp: boolean;
|
11868
12024
|
imapHost: string;
|
11869
|
-
imapPort:
|
11870
|
-
imapTlsPort:
|
12025
|
+
imapPort: number;
|
12026
|
+
imapTlsPort: number;
|
11871
12027
|
useTlsForImap: boolean;
|
11872
12028
|
}>>;
|
11873
12029
|
state: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>>;
|
@@ -11887,12 +12043,12 @@ export declare const mailContract: {
|
|
11887
12043
|
updatedAt: Date;
|
11888
12044
|
deletedAt: Date | null;
|
11889
12045
|
smtpHost: string;
|
11890
|
-
smtpPort:
|
11891
|
-
smtpTlsPort:
|
12046
|
+
smtpPort: number;
|
12047
|
+
smtpTlsPort: number;
|
11892
12048
|
useTlsForSmtp: boolean;
|
11893
12049
|
imapHost: string;
|
11894
|
-
imapPort:
|
11895
|
-
imapTlsPort:
|
12050
|
+
imapPort: number;
|
12051
|
+
imapTlsPort: number;
|
11896
12052
|
useTlsForImap: boolean;
|
11897
12053
|
} | undefined;
|
11898
12054
|
state?: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset" | undefined;
|
@@ -11912,12 +12068,12 @@ export declare const mailContract: {
|
|
11912
12068
|
updatedAt: Date;
|
11913
12069
|
deletedAt: Date | null;
|
11914
12070
|
smtpHost: string;
|
11915
|
-
smtpPort:
|
11916
|
-
smtpTlsPort:
|
12071
|
+
smtpPort: number;
|
12072
|
+
smtpTlsPort: number;
|
11917
12073
|
useTlsForSmtp: boolean;
|
11918
12074
|
imapHost: string;
|
11919
|
-
imapPort:
|
11920
|
-
imapTlsPort:
|
12075
|
+
imapPort: number;
|
12076
|
+
imapTlsPort: number;
|
11921
12077
|
useTlsForImap: boolean;
|
11922
12078
|
} | undefined;
|
11923
12079
|
state?: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset" | undefined;
|
@@ -11980,12 +12136,12 @@ export declare const mailContract: {
|
|
11980
12136
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
11981
12137
|
name: import("zod").ZodString;
|
11982
12138
|
smtpHost: import("zod").ZodString;
|
11983
|
-
smtpPort: import("zod").
|
11984
|
-
smtpTlsPort: import("zod").
|
12139
|
+
smtpPort: import("zod").ZodNumber;
|
12140
|
+
smtpTlsPort: import("zod").ZodNumber;
|
11985
12141
|
useTlsForSmtp: import("zod").ZodBoolean;
|
11986
12142
|
imapHost: import("zod").ZodString;
|
11987
|
-
imapPort: import("zod").
|
11988
|
-
imapTlsPort: import("zod").
|
12143
|
+
imapPort: import("zod").ZodNumber;
|
12144
|
+
imapTlsPort: import("zod").ZodNumber;
|
11989
12145
|
useTlsForImap: import("zod").ZodBoolean;
|
11990
12146
|
}, "strip", import("zod").ZodTypeAny, {
|
11991
12147
|
id: string;
|
@@ -11994,12 +12150,12 @@ export declare const mailContract: {
|
|
11994
12150
|
updatedAt: Date;
|
11995
12151
|
deletedAt: Date | null;
|
11996
12152
|
smtpHost: string;
|
11997
|
-
smtpPort:
|
11998
|
-
smtpTlsPort:
|
12153
|
+
smtpPort: number;
|
12154
|
+
smtpTlsPort: number;
|
11999
12155
|
useTlsForSmtp: boolean;
|
12000
12156
|
imapHost: string;
|
12001
|
-
imapPort:
|
12002
|
-
imapTlsPort:
|
12157
|
+
imapPort: number;
|
12158
|
+
imapTlsPort: number;
|
12003
12159
|
useTlsForImap: boolean;
|
12004
12160
|
}, {
|
12005
12161
|
id: string;
|
@@ -12008,12 +12164,12 @@ export declare const mailContract: {
|
|
12008
12164
|
updatedAt: Date;
|
12009
12165
|
deletedAt: Date | null;
|
12010
12166
|
smtpHost: string;
|
12011
|
-
smtpPort:
|
12012
|
-
smtpTlsPort:
|
12167
|
+
smtpPort: number;
|
12168
|
+
smtpTlsPort: number;
|
12013
12169
|
useTlsForSmtp: boolean;
|
12014
12170
|
imapHost: string;
|
12015
|
-
imapPort:
|
12016
|
-
imapTlsPort:
|
12171
|
+
imapPort: number;
|
12172
|
+
imapTlsPort: number;
|
12017
12173
|
useTlsForImap: boolean;
|
12018
12174
|
}>;
|
12019
12175
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -12034,12 +12190,12 @@ export declare const mailContract: {
|
|
12034
12190
|
updatedAt: Date;
|
12035
12191
|
deletedAt: Date | null;
|
12036
12192
|
smtpHost: string;
|
12037
|
-
smtpPort:
|
12038
|
-
smtpTlsPort:
|
12193
|
+
smtpPort: number;
|
12194
|
+
smtpTlsPort: number;
|
12039
12195
|
useTlsForSmtp: boolean;
|
12040
12196
|
imapHost: string;
|
12041
|
-
imapPort:
|
12042
|
-
imapTlsPort:
|
12197
|
+
imapPort: number;
|
12198
|
+
imapTlsPort: number;
|
12043
12199
|
useTlsForImap: boolean;
|
12044
12200
|
};
|
12045
12201
|
}, {
|
@@ -12059,12 +12215,12 @@ export declare const mailContract: {
|
|
12059
12215
|
updatedAt: Date;
|
12060
12216
|
deletedAt: Date | null;
|
12061
12217
|
smtpHost: string;
|
12062
|
-
smtpPort:
|
12063
|
-
smtpTlsPort:
|
12218
|
+
smtpPort: number;
|
12219
|
+
smtpTlsPort: number;
|
12064
12220
|
useTlsForSmtp: boolean;
|
12065
12221
|
imapHost: string;
|
12066
|
-
imapPort:
|
12067
|
-
imapTlsPort:
|
12222
|
+
imapPort: number;
|
12223
|
+
imapTlsPort: number;
|
12068
12224
|
useTlsForImap: boolean;
|
12069
12225
|
};
|
12070
12226
|
}>;
|
@@ -12086,12 +12242,12 @@ export declare const mailContract: {
|
|
12086
12242
|
updatedAt: Date;
|
12087
12243
|
deletedAt: Date | null;
|
12088
12244
|
smtpHost: string;
|
12089
|
-
smtpPort:
|
12090
|
-
smtpTlsPort:
|
12245
|
+
smtpPort: number;
|
12246
|
+
smtpTlsPort: number;
|
12091
12247
|
useTlsForSmtp: boolean;
|
12092
12248
|
imapHost: string;
|
12093
|
-
imapPort:
|
12094
|
-
imapTlsPort:
|
12249
|
+
imapPort: number;
|
12250
|
+
imapTlsPort: number;
|
12095
12251
|
useTlsForImap: boolean;
|
12096
12252
|
};
|
12097
12253
|
};
|
@@ -12114,12 +12270,12 @@ export declare const mailContract: {
|
|
12114
12270
|
updatedAt: Date;
|
12115
12271
|
deletedAt: Date | null;
|
12116
12272
|
smtpHost: string;
|
12117
|
-
smtpPort:
|
12118
|
-
smtpTlsPort:
|
12273
|
+
smtpPort: number;
|
12274
|
+
smtpTlsPort: number;
|
12119
12275
|
useTlsForSmtp: boolean;
|
12120
12276
|
imapHost: string;
|
12121
|
-
imapPort:
|
12122
|
-
imapTlsPort:
|
12277
|
+
imapPort: number;
|
12278
|
+
imapTlsPort: number;
|
12123
12279
|
useTlsForImap: boolean;
|
12124
12280
|
};
|
12125
12281
|
};
|
@@ -12204,12 +12360,12 @@ export declare const mailContract: {
|
|
12204
12360
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12205
12361
|
name: import("zod").ZodString;
|
12206
12362
|
smtpHost: import("zod").ZodString;
|
12207
|
-
smtpPort: import("zod").
|
12208
|
-
smtpTlsPort: import("zod").
|
12363
|
+
smtpPort: import("zod").ZodNumber;
|
12364
|
+
smtpTlsPort: import("zod").ZodNumber;
|
12209
12365
|
useTlsForSmtp: import("zod").ZodBoolean;
|
12210
12366
|
imapHost: import("zod").ZodString;
|
12211
|
-
imapPort: import("zod").
|
12212
|
-
imapTlsPort: import("zod").
|
12367
|
+
imapPort: import("zod").ZodNumber;
|
12368
|
+
imapTlsPort: import("zod").ZodNumber;
|
12213
12369
|
useTlsForImap: import("zod").ZodBoolean;
|
12214
12370
|
}, "strip", import("zod").ZodTypeAny, {
|
12215
12371
|
id: string;
|
@@ -12218,12 +12374,12 @@ export declare const mailContract: {
|
|
12218
12374
|
updatedAt: Date;
|
12219
12375
|
deletedAt: Date | null;
|
12220
12376
|
smtpHost: string;
|
12221
|
-
smtpPort:
|
12222
|
-
smtpTlsPort:
|
12377
|
+
smtpPort: number;
|
12378
|
+
smtpTlsPort: number;
|
12223
12379
|
useTlsForSmtp: boolean;
|
12224
12380
|
imapHost: string;
|
12225
|
-
imapPort:
|
12226
|
-
imapTlsPort:
|
12381
|
+
imapPort: number;
|
12382
|
+
imapTlsPort: number;
|
12227
12383
|
useTlsForImap: boolean;
|
12228
12384
|
}, {
|
12229
12385
|
id: string;
|
@@ -12232,12 +12388,12 @@ export declare const mailContract: {
|
|
12232
12388
|
updatedAt: Date;
|
12233
12389
|
deletedAt: Date | null;
|
12234
12390
|
smtpHost: string;
|
12235
|
-
smtpPort:
|
12236
|
-
smtpTlsPort:
|
12391
|
+
smtpPort: number;
|
12392
|
+
smtpTlsPort: number;
|
12237
12393
|
useTlsForSmtp: boolean;
|
12238
12394
|
imapHost: string;
|
12239
|
-
imapPort:
|
12240
|
-
imapTlsPort:
|
12395
|
+
imapPort: number;
|
12396
|
+
imapTlsPort: number;
|
12241
12397
|
useTlsForImap: boolean;
|
12242
12398
|
}>;
|
12243
12399
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -12258,12 +12414,12 @@ export declare const mailContract: {
|
|
12258
12414
|
updatedAt: Date;
|
12259
12415
|
deletedAt: Date | null;
|
12260
12416
|
smtpHost: string;
|
12261
|
-
smtpPort:
|
12262
|
-
smtpTlsPort:
|
12417
|
+
smtpPort: number;
|
12418
|
+
smtpTlsPort: number;
|
12263
12419
|
useTlsForSmtp: boolean;
|
12264
12420
|
imapHost: string;
|
12265
|
-
imapPort:
|
12266
|
-
imapTlsPort:
|
12421
|
+
imapPort: number;
|
12422
|
+
imapTlsPort: number;
|
12267
12423
|
useTlsForImap: boolean;
|
12268
12424
|
};
|
12269
12425
|
}, {
|
@@ -12283,12 +12439,12 @@ export declare const mailContract: {
|
|
12283
12439
|
updatedAt: Date;
|
12284
12440
|
deletedAt: Date | null;
|
12285
12441
|
smtpHost: string;
|
12286
|
-
smtpPort:
|
12287
|
-
smtpTlsPort:
|
12442
|
+
smtpPort: number;
|
12443
|
+
smtpTlsPort: number;
|
12288
12444
|
useTlsForSmtp: boolean;
|
12289
12445
|
imapHost: string;
|
12290
|
-
imapPort:
|
12291
|
-
imapTlsPort:
|
12446
|
+
imapPort: number;
|
12447
|
+
imapTlsPort: number;
|
12292
12448
|
useTlsForImap: boolean;
|
12293
12449
|
};
|
12294
12450
|
}>;
|
@@ -12310,12 +12466,12 @@ export declare const mailContract: {
|
|
12310
12466
|
updatedAt: Date;
|
12311
12467
|
deletedAt: Date | null;
|
12312
12468
|
smtpHost: string;
|
12313
|
-
smtpPort:
|
12314
|
-
smtpTlsPort:
|
12469
|
+
smtpPort: number;
|
12470
|
+
smtpTlsPort: number;
|
12315
12471
|
useTlsForSmtp: boolean;
|
12316
12472
|
imapHost: string;
|
12317
|
-
imapPort:
|
12318
|
-
imapTlsPort:
|
12473
|
+
imapPort: number;
|
12474
|
+
imapTlsPort: number;
|
12319
12475
|
useTlsForImap: boolean;
|
12320
12476
|
};
|
12321
12477
|
};
|
@@ -12338,12 +12494,12 @@ export declare const mailContract: {
|
|
12338
12494
|
updatedAt: Date;
|
12339
12495
|
deletedAt: Date | null;
|
12340
12496
|
smtpHost: string;
|
12341
|
-
smtpPort:
|
12342
|
-
smtpTlsPort:
|
12497
|
+
smtpPort: number;
|
12498
|
+
smtpTlsPort: number;
|
12343
12499
|
useTlsForSmtp: boolean;
|
12344
12500
|
imapHost: string;
|
12345
|
-
imapPort:
|
12346
|
-
imapTlsPort:
|
12501
|
+
imapPort: number;
|
12502
|
+
imapTlsPort: number;
|
12347
12503
|
useTlsForImap: boolean;
|
12348
12504
|
};
|
12349
12505
|
};
|
@@ -12428,12 +12584,12 @@ export declare const mailContract: {
|
|
12428
12584
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12429
12585
|
name: import("zod").ZodString;
|
12430
12586
|
smtpHost: import("zod").ZodString;
|
12431
|
-
smtpPort: import("zod").
|
12432
|
-
smtpTlsPort: import("zod").
|
12587
|
+
smtpPort: import("zod").ZodNumber;
|
12588
|
+
smtpTlsPort: import("zod").ZodNumber;
|
12433
12589
|
useTlsForSmtp: import("zod").ZodBoolean;
|
12434
12590
|
imapHost: import("zod").ZodString;
|
12435
|
-
imapPort: import("zod").
|
12436
|
-
imapTlsPort: import("zod").
|
12591
|
+
imapPort: import("zod").ZodNumber;
|
12592
|
+
imapTlsPort: import("zod").ZodNumber;
|
12437
12593
|
useTlsForImap: import("zod").ZodBoolean;
|
12438
12594
|
}, "strip", import("zod").ZodTypeAny, {
|
12439
12595
|
id: string;
|
@@ -12442,12 +12598,12 @@ export declare const mailContract: {
|
|
12442
12598
|
updatedAt: Date;
|
12443
12599
|
deletedAt: Date | null;
|
12444
12600
|
smtpHost: string;
|
12445
|
-
smtpPort:
|
12446
|
-
smtpTlsPort:
|
12601
|
+
smtpPort: number;
|
12602
|
+
smtpTlsPort: number;
|
12447
12603
|
useTlsForSmtp: boolean;
|
12448
12604
|
imapHost: string;
|
12449
|
-
imapPort:
|
12450
|
-
imapTlsPort:
|
12605
|
+
imapPort: number;
|
12606
|
+
imapTlsPort: number;
|
12451
12607
|
useTlsForImap: boolean;
|
12452
12608
|
}, {
|
12453
12609
|
id: string;
|
@@ -12456,12 +12612,12 @@ export declare const mailContract: {
|
|
12456
12612
|
updatedAt: Date;
|
12457
12613
|
deletedAt: Date | null;
|
12458
12614
|
smtpHost: string;
|
12459
|
-
smtpPort:
|
12460
|
-
smtpTlsPort:
|
12615
|
+
smtpPort: number;
|
12616
|
+
smtpTlsPort: number;
|
12461
12617
|
useTlsForSmtp: boolean;
|
12462
12618
|
imapHost: string;
|
12463
|
-
imapPort:
|
12464
|
-
imapTlsPort:
|
12619
|
+
imapPort: number;
|
12620
|
+
imapTlsPort: number;
|
12465
12621
|
useTlsForImap: boolean;
|
12466
12622
|
}>;
|
12467
12623
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -12482,12 +12638,12 @@ export declare const mailContract: {
|
|
12482
12638
|
updatedAt: Date;
|
12483
12639
|
deletedAt: Date | null;
|
12484
12640
|
smtpHost: string;
|
12485
|
-
smtpPort:
|
12486
|
-
smtpTlsPort:
|
12641
|
+
smtpPort: number;
|
12642
|
+
smtpTlsPort: number;
|
12487
12643
|
useTlsForSmtp: boolean;
|
12488
12644
|
imapHost: string;
|
12489
|
-
imapPort:
|
12490
|
-
imapTlsPort:
|
12645
|
+
imapPort: number;
|
12646
|
+
imapTlsPort: number;
|
12491
12647
|
useTlsForImap: boolean;
|
12492
12648
|
};
|
12493
12649
|
}, {
|
@@ -12507,12 +12663,12 @@ export declare const mailContract: {
|
|
12507
12663
|
updatedAt: Date;
|
12508
12664
|
deletedAt: Date | null;
|
12509
12665
|
smtpHost: string;
|
12510
|
-
smtpPort:
|
12511
|
-
smtpTlsPort:
|
12666
|
+
smtpPort: number;
|
12667
|
+
smtpTlsPort: number;
|
12512
12668
|
useTlsForSmtp: boolean;
|
12513
12669
|
imapHost: string;
|
12514
|
-
imapPort:
|
12515
|
-
imapTlsPort:
|
12670
|
+
imapPort: number;
|
12671
|
+
imapTlsPort: number;
|
12516
12672
|
useTlsForImap: boolean;
|
12517
12673
|
};
|
12518
12674
|
}>;
|
@@ -12534,12 +12690,12 @@ export declare const mailContract: {
|
|
12534
12690
|
updatedAt: Date;
|
12535
12691
|
deletedAt: Date | null;
|
12536
12692
|
smtpHost: string;
|
12537
|
-
smtpPort:
|
12538
|
-
smtpTlsPort:
|
12693
|
+
smtpPort: number;
|
12694
|
+
smtpTlsPort: number;
|
12539
12695
|
useTlsForSmtp: boolean;
|
12540
12696
|
imapHost: string;
|
12541
|
-
imapPort:
|
12542
|
-
imapTlsPort:
|
12697
|
+
imapPort: number;
|
12698
|
+
imapTlsPort: number;
|
12543
12699
|
useTlsForImap: boolean;
|
12544
12700
|
};
|
12545
12701
|
};
|
@@ -12562,12 +12718,12 @@ export declare const mailContract: {
|
|
12562
12718
|
updatedAt: Date;
|
12563
12719
|
deletedAt: Date | null;
|
12564
12720
|
smtpHost: string;
|
12565
|
-
smtpPort:
|
12566
|
-
smtpTlsPort:
|
12721
|
+
smtpPort: number;
|
12722
|
+
smtpTlsPort: number;
|
12567
12723
|
useTlsForSmtp: boolean;
|
12568
12724
|
imapHost: string;
|
12569
|
-
imapPort:
|
12570
|
-
imapTlsPort:
|
12725
|
+
imapPort: number;
|
12726
|
+
imapTlsPort: number;
|
12571
12727
|
useTlsForImap: boolean;
|
12572
12728
|
};
|
12573
12729
|
};
|
@@ -12666,7 +12822,37 @@ export declare const mailContract: {
|
|
12666
12822
|
};
|
12667
12823
|
server: {
|
12668
12824
|
create: {
|
12669
|
-
body:
|
12825
|
+
body: import("zod").ZodObject<{
|
12826
|
+
name: import("zod").ZodString;
|
12827
|
+
smtpHost: import("zod").ZodString;
|
12828
|
+
smtpPort: import("zod").ZodNumber;
|
12829
|
+
smtpTlsPort: import("zod").ZodNumber;
|
12830
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
12831
|
+
imapHost: import("zod").ZodString;
|
12832
|
+
imapPort: import("zod").ZodNumber;
|
12833
|
+
imapTlsPort: import("zod").ZodNumber;
|
12834
|
+
useTlsForImap: import("zod").ZodBoolean;
|
12835
|
+
}, "strip", import("zod").ZodTypeAny, {
|
12836
|
+
name: string;
|
12837
|
+
smtpHost: string;
|
12838
|
+
smtpPort: number;
|
12839
|
+
smtpTlsPort: number;
|
12840
|
+
useTlsForSmtp: boolean;
|
12841
|
+
imapHost: string;
|
12842
|
+
imapPort: number;
|
12843
|
+
imapTlsPort: number;
|
12844
|
+
useTlsForImap: boolean;
|
12845
|
+
}, {
|
12846
|
+
name: string;
|
12847
|
+
smtpHost: string;
|
12848
|
+
smtpPort: number;
|
12849
|
+
smtpTlsPort: number;
|
12850
|
+
useTlsForSmtp: boolean;
|
12851
|
+
imapHost: string;
|
12852
|
+
imapPort: number;
|
12853
|
+
imapTlsPort: number;
|
12854
|
+
useTlsForImap: boolean;
|
12855
|
+
}>;
|
12670
12856
|
summary: "Register a new mail server";
|
12671
12857
|
method: "POST";
|
12672
12858
|
responses: {
|
@@ -12700,20 +12886,90 @@ export declare const mailContract: {
|
|
12700
12886
|
message: string;
|
12701
12887
|
error?: any;
|
12702
12888
|
}>;
|
12703
|
-
|
12889
|
+
201: import("zod").ZodObject<{
|
12704
12890
|
requestId: import("zod").ZodString;
|
12705
|
-
|
12891
|
+
data: import("zod").ZodObject<{
|
12892
|
+
id: import("zod").ZodString;
|
12893
|
+
createdAt: import("zod").ZodDate;
|
12894
|
+
updatedAt: import("zod").ZodDate;
|
12895
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12896
|
+
name: import("zod").ZodString;
|
12897
|
+
smtpHost: import("zod").ZodString;
|
12898
|
+
smtpPort: import("zod").ZodNumber;
|
12899
|
+
smtpTlsPort: import("zod").ZodNumber;
|
12900
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
12901
|
+
imapHost: import("zod").ZodString;
|
12902
|
+
imapPort: import("zod").ZodNumber;
|
12903
|
+
imapTlsPort: import("zod").ZodNumber;
|
12904
|
+
useTlsForImap: import("zod").ZodBoolean;
|
12905
|
+
}, "strip", import("zod").ZodTypeAny, {
|
12906
|
+
id: string;
|
12907
|
+
name: string;
|
12908
|
+
createdAt: Date;
|
12909
|
+
updatedAt: Date;
|
12910
|
+
deletedAt: Date | null;
|
12911
|
+
smtpHost: string;
|
12912
|
+
smtpPort: number;
|
12913
|
+
smtpTlsPort: number;
|
12914
|
+
useTlsForSmtp: boolean;
|
12915
|
+
imapHost: string;
|
12916
|
+
imapPort: number;
|
12917
|
+
imapTlsPort: number;
|
12918
|
+
useTlsForImap: boolean;
|
12919
|
+
}, {
|
12920
|
+
id: string;
|
12921
|
+
name: string;
|
12922
|
+
createdAt: Date;
|
12923
|
+
updatedAt: Date;
|
12924
|
+
deletedAt: Date | null;
|
12925
|
+
smtpHost: string;
|
12926
|
+
smtpPort: number;
|
12927
|
+
smtpTlsPort: number;
|
12928
|
+
useTlsForSmtp: boolean;
|
12929
|
+
imapHost: string;
|
12930
|
+
imapPort: number;
|
12931
|
+
imapTlsPort: number;
|
12932
|
+
useTlsForImap: boolean;
|
12933
|
+
}>;
|
12706
12934
|
}, "strip", import("zod").ZodTypeAny, {
|
12707
|
-
|
12935
|
+
data: {
|
12936
|
+
id: string;
|
12937
|
+
name: string;
|
12938
|
+
createdAt: Date;
|
12939
|
+
updatedAt: Date;
|
12940
|
+
deletedAt: Date | null;
|
12941
|
+
smtpHost: string;
|
12942
|
+
smtpPort: number;
|
12943
|
+
smtpTlsPort: number;
|
12944
|
+
useTlsForSmtp: boolean;
|
12945
|
+
imapHost: string;
|
12946
|
+
imapPort: number;
|
12947
|
+
imapTlsPort: number;
|
12948
|
+
useTlsForImap: boolean;
|
12949
|
+
};
|
12708
12950
|
requestId: string;
|
12709
12951
|
}, {
|
12710
|
-
|
12952
|
+
data: {
|
12953
|
+
id: string;
|
12954
|
+
name: string;
|
12955
|
+
createdAt: Date;
|
12956
|
+
updatedAt: Date;
|
12957
|
+
deletedAt: Date | null;
|
12958
|
+
smtpHost: string;
|
12959
|
+
smtpPort: number;
|
12960
|
+
smtpTlsPort: number;
|
12961
|
+
useTlsForSmtp: boolean;
|
12962
|
+
imapHost: string;
|
12963
|
+
imapPort: number;
|
12964
|
+
imapTlsPort: number;
|
12965
|
+
useTlsForImap: boolean;
|
12966
|
+
};
|
12711
12967
|
requestId: string;
|
12712
12968
|
}>;
|
12713
12969
|
};
|
12714
12970
|
path: "mail/server/";
|
12715
12971
|
};
|
12716
|
-
|
12972
|
+
getById: {
|
12717
12973
|
summary: "Get a mail server by id";
|
12718
12974
|
method: "GET";
|
12719
12975
|
pathParams: import("zod").ZodObject<{
|
@@ -12756,20 +13012,237 @@ export declare const mailContract: {
|
|
12756
13012
|
}>;
|
12757
13013
|
200: import("zod").ZodObject<{
|
12758
13014
|
requestId: import("zod").ZodString;
|
13015
|
+
data: import("zod").ZodObject<{
|
13016
|
+
id: import("zod").ZodString;
|
13017
|
+
createdAt: import("zod").ZodDate;
|
13018
|
+
updatedAt: import("zod").ZodDate;
|
13019
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13020
|
+
name: import("zod").ZodString;
|
13021
|
+
smtpHost: import("zod").ZodString;
|
13022
|
+
smtpPort: import("zod").ZodNumber;
|
13023
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13024
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
13025
|
+
imapHost: import("zod").ZodString;
|
13026
|
+
imapPort: import("zod").ZodNumber;
|
13027
|
+
imapTlsPort: import("zod").ZodNumber;
|
13028
|
+
useTlsForImap: import("zod").ZodBoolean;
|
13029
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13030
|
+
id: string;
|
13031
|
+
name: string;
|
13032
|
+
createdAt: Date;
|
13033
|
+
updatedAt: Date;
|
13034
|
+
deletedAt: Date | null;
|
13035
|
+
smtpHost: string;
|
13036
|
+
smtpPort: number;
|
13037
|
+
smtpTlsPort: number;
|
13038
|
+
useTlsForSmtp: boolean;
|
13039
|
+
imapHost: string;
|
13040
|
+
imapPort: number;
|
13041
|
+
imapTlsPort: number;
|
13042
|
+
useTlsForImap: boolean;
|
13043
|
+
}, {
|
13044
|
+
id: string;
|
13045
|
+
name: string;
|
13046
|
+
createdAt: Date;
|
13047
|
+
updatedAt: Date;
|
13048
|
+
deletedAt: Date | null;
|
13049
|
+
smtpHost: string;
|
13050
|
+
smtpPort: number;
|
13051
|
+
smtpTlsPort: number;
|
13052
|
+
useTlsForSmtp: boolean;
|
13053
|
+
imapHost: string;
|
13054
|
+
imapPort: number;
|
13055
|
+
imapTlsPort: number;
|
13056
|
+
useTlsForImap: boolean;
|
13057
|
+
}>;
|
13058
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13059
|
+
data: {
|
13060
|
+
id: string;
|
13061
|
+
name: string;
|
13062
|
+
createdAt: Date;
|
13063
|
+
updatedAt: Date;
|
13064
|
+
deletedAt: Date | null;
|
13065
|
+
smtpHost: string;
|
13066
|
+
smtpPort: number;
|
13067
|
+
smtpTlsPort: number;
|
13068
|
+
useTlsForSmtp: boolean;
|
13069
|
+
imapHost: string;
|
13070
|
+
imapPort: number;
|
13071
|
+
imapTlsPort: number;
|
13072
|
+
useTlsForImap: boolean;
|
13073
|
+
};
|
13074
|
+
requestId: string;
|
13075
|
+
}, {
|
13076
|
+
data: {
|
13077
|
+
id: string;
|
13078
|
+
name: string;
|
13079
|
+
createdAt: Date;
|
13080
|
+
updatedAt: Date;
|
13081
|
+
deletedAt: Date | null;
|
13082
|
+
smtpHost: string;
|
13083
|
+
smtpPort: number;
|
13084
|
+
smtpTlsPort: number;
|
13085
|
+
useTlsForSmtp: boolean;
|
13086
|
+
imapHost: string;
|
13087
|
+
imapPort: number;
|
13088
|
+
imapTlsPort: number;
|
13089
|
+
useTlsForImap: boolean;
|
13090
|
+
};
|
13091
|
+
requestId: string;
|
13092
|
+
}>;
|
13093
|
+
};
|
13094
|
+
path: "mail/server/:id";
|
13095
|
+
};
|
13096
|
+
getAll: {
|
13097
|
+
summary: "Get all mail servers";
|
13098
|
+
method: "GET";
|
13099
|
+
responses: {
|
13100
|
+
401: import("zod").ZodObject<{
|
12759
13101
|
message: import("zod").ZodString;
|
13102
|
+
error: import("zod").ZodAny;
|
12760
13103
|
}, "strip", import("zod").ZodTypeAny, {
|
12761
13104
|
message: string;
|
12762
|
-
|
13105
|
+
error?: any;
|
12763
13106
|
}, {
|
12764
13107
|
message: string;
|
13108
|
+
error?: any;
|
13109
|
+
}>;
|
13110
|
+
404: import("zod").ZodObject<{
|
13111
|
+
message: import("zod").ZodString;
|
13112
|
+
error: import("zod").ZodAny;
|
13113
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13114
|
+
message: string;
|
13115
|
+
error?: any;
|
13116
|
+
}, {
|
13117
|
+
message: string;
|
13118
|
+
error?: any;
|
13119
|
+
}>;
|
13120
|
+
422: import("zod").ZodObject<{
|
13121
|
+
message: import("zod").ZodString;
|
13122
|
+
error: import("zod").ZodAny;
|
13123
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13124
|
+
message: string;
|
13125
|
+
error?: any;
|
13126
|
+
}, {
|
13127
|
+
message: string;
|
13128
|
+
error?: any;
|
13129
|
+
}>;
|
13130
|
+
200: import("zod").ZodObject<{
|
13131
|
+
requestId: import("zod").ZodString;
|
13132
|
+
data: import("zod").ZodArray<import("zod").ZodObject<{
|
13133
|
+
id: import("zod").ZodString;
|
13134
|
+
createdAt: import("zod").ZodDate;
|
13135
|
+
updatedAt: import("zod").ZodDate;
|
13136
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13137
|
+
name: import("zod").ZodString;
|
13138
|
+
smtpHost: import("zod").ZodString;
|
13139
|
+
smtpPort: import("zod").ZodNumber;
|
13140
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13141
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
13142
|
+
imapHost: import("zod").ZodString;
|
13143
|
+
imapPort: import("zod").ZodNumber;
|
13144
|
+
imapTlsPort: import("zod").ZodNumber;
|
13145
|
+
useTlsForImap: import("zod").ZodBoolean;
|
13146
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13147
|
+
id: string;
|
13148
|
+
name: string;
|
13149
|
+
createdAt: Date;
|
13150
|
+
updatedAt: Date;
|
13151
|
+
deletedAt: Date | null;
|
13152
|
+
smtpHost: string;
|
13153
|
+
smtpPort: number;
|
13154
|
+
smtpTlsPort: number;
|
13155
|
+
useTlsForSmtp: boolean;
|
13156
|
+
imapHost: string;
|
13157
|
+
imapPort: number;
|
13158
|
+
imapTlsPort: number;
|
13159
|
+
useTlsForImap: boolean;
|
13160
|
+
}, {
|
13161
|
+
id: string;
|
13162
|
+
name: string;
|
13163
|
+
createdAt: Date;
|
13164
|
+
updatedAt: Date;
|
13165
|
+
deletedAt: Date | null;
|
13166
|
+
smtpHost: string;
|
13167
|
+
smtpPort: number;
|
13168
|
+
smtpTlsPort: number;
|
13169
|
+
useTlsForSmtp: boolean;
|
13170
|
+
imapHost: string;
|
13171
|
+
imapPort: number;
|
13172
|
+
imapTlsPort: number;
|
13173
|
+
useTlsForImap: boolean;
|
13174
|
+
}>, "many">;
|
13175
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13176
|
+
data: {
|
13177
|
+
id: string;
|
13178
|
+
name: string;
|
13179
|
+
createdAt: Date;
|
13180
|
+
updatedAt: Date;
|
13181
|
+
deletedAt: Date | null;
|
13182
|
+
smtpHost: string;
|
13183
|
+
smtpPort: number;
|
13184
|
+
smtpTlsPort: number;
|
13185
|
+
useTlsForSmtp: boolean;
|
13186
|
+
imapHost: string;
|
13187
|
+
imapPort: number;
|
13188
|
+
imapTlsPort: number;
|
13189
|
+
useTlsForImap: boolean;
|
13190
|
+
}[];
|
13191
|
+
requestId: string;
|
13192
|
+
}, {
|
13193
|
+
data: {
|
13194
|
+
id: string;
|
13195
|
+
name: string;
|
13196
|
+
createdAt: Date;
|
13197
|
+
updatedAt: Date;
|
13198
|
+
deletedAt: Date | null;
|
13199
|
+
smtpHost: string;
|
13200
|
+
smtpPort: number;
|
13201
|
+
smtpTlsPort: number;
|
13202
|
+
useTlsForSmtp: boolean;
|
13203
|
+
imapHost: string;
|
13204
|
+
imapPort: number;
|
13205
|
+
imapTlsPort: number;
|
13206
|
+
useTlsForImap: boolean;
|
13207
|
+
}[];
|
12765
13208
|
requestId: string;
|
12766
13209
|
}>;
|
12767
13210
|
};
|
12768
|
-
path: "mail/server
|
13211
|
+
path: "mail/server/";
|
12769
13212
|
};
|
12770
13213
|
update: {
|
12771
|
-
body:
|
12772
|
-
|
13214
|
+
body: import("zod").ZodObject<{
|
13215
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
13216
|
+
smtpHost: import("zod").ZodOptional<import("zod").ZodString>;
|
13217
|
+
smtpPort: import("zod").ZodOptional<import("zod").ZodNumber>;
|
13218
|
+
smtpTlsPort: import("zod").ZodOptional<import("zod").ZodNumber>;
|
13219
|
+
useTlsForSmtp: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
13220
|
+
imapHost: import("zod").ZodOptional<import("zod").ZodString>;
|
13221
|
+
imapPort: import("zod").ZodOptional<import("zod").ZodNumber>;
|
13222
|
+
imapTlsPort: import("zod").ZodOptional<import("zod").ZodNumber>;
|
13223
|
+
useTlsForImap: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
13224
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13225
|
+
name?: string | undefined;
|
13226
|
+
smtpHost?: string | undefined;
|
13227
|
+
smtpPort?: number | undefined;
|
13228
|
+
smtpTlsPort?: number | undefined;
|
13229
|
+
useTlsForSmtp?: boolean | undefined;
|
13230
|
+
imapHost?: string | undefined;
|
13231
|
+
imapPort?: number | undefined;
|
13232
|
+
imapTlsPort?: number | undefined;
|
13233
|
+
useTlsForImap?: boolean | undefined;
|
13234
|
+
}, {
|
13235
|
+
name?: string | undefined;
|
13236
|
+
smtpHost?: string | undefined;
|
13237
|
+
smtpPort?: number | undefined;
|
13238
|
+
smtpTlsPort?: number | undefined;
|
13239
|
+
useTlsForSmtp?: boolean | undefined;
|
13240
|
+
imapHost?: string | undefined;
|
13241
|
+
imapPort?: number | undefined;
|
13242
|
+
imapTlsPort?: number | undefined;
|
13243
|
+
useTlsForImap?: boolean | undefined;
|
13244
|
+
}>;
|
13245
|
+
summary: "Update a mail server";
|
12773
13246
|
method: "PATCH";
|
12774
13247
|
pathParams: import("zod").ZodObject<{
|
12775
13248
|
id: import("zod").ZodString;
|
@@ -12811,12 +13284,82 @@ export declare const mailContract: {
|
|
12811
13284
|
}>;
|
12812
13285
|
200: import("zod").ZodObject<{
|
12813
13286
|
requestId: import("zod").ZodString;
|
12814
|
-
|
13287
|
+
data: import("zod").ZodObject<{
|
13288
|
+
id: import("zod").ZodString;
|
13289
|
+
createdAt: import("zod").ZodDate;
|
13290
|
+
updatedAt: import("zod").ZodDate;
|
13291
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13292
|
+
name: import("zod").ZodString;
|
13293
|
+
smtpHost: import("zod").ZodString;
|
13294
|
+
smtpPort: import("zod").ZodNumber;
|
13295
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13296
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
13297
|
+
imapHost: import("zod").ZodString;
|
13298
|
+
imapPort: import("zod").ZodNumber;
|
13299
|
+
imapTlsPort: import("zod").ZodNumber;
|
13300
|
+
useTlsForImap: import("zod").ZodBoolean;
|
13301
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13302
|
+
id: string;
|
13303
|
+
name: string;
|
13304
|
+
createdAt: Date;
|
13305
|
+
updatedAt: Date;
|
13306
|
+
deletedAt: Date | null;
|
13307
|
+
smtpHost: string;
|
13308
|
+
smtpPort: number;
|
13309
|
+
smtpTlsPort: number;
|
13310
|
+
useTlsForSmtp: boolean;
|
13311
|
+
imapHost: string;
|
13312
|
+
imapPort: number;
|
13313
|
+
imapTlsPort: number;
|
13314
|
+
useTlsForImap: boolean;
|
13315
|
+
}, {
|
13316
|
+
id: string;
|
13317
|
+
name: string;
|
13318
|
+
createdAt: Date;
|
13319
|
+
updatedAt: Date;
|
13320
|
+
deletedAt: Date | null;
|
13321
|
+
smtpHost: string;
|
13322
|
+
smtpPort: number;
|
13323
|
+
smtpTlsPort: number;
|
13324
|
+
useTlsForSmtp: boolean;
|
13325
|
+
imapHost: string;
|
13326
|
+
imapPort: number;
|
13327
|
+
imapTlsPort: number;
|
13328
|
+
useTlsForImap: boolean;
|
13329
|
+
}>;
|
12815
13330
|
}, "strip", import("zod").ZodTypeAny, {
|
12816
|
-
|
13331
|
+
data: {
|
13332
|
+
id: string;
|
13333
|
+
name: string;
|
13334
|
+
createdAt: Date;
|
13335
|
+
updatedAt: Date;
|
13336
|
+
deletedAt: Date | null;
|
13337
|
+
smtpHost: string;
|
13338
|
+
smtpPort: number;
|
13339
|
+
smtpTlsPort: number;
|
13340
|
+
useTlsForSmtp: boolean;
|
13341
|
+
imapHost: string;
|
13342
|
+
imapPort: number;
|
13343
|
+
imapTlsPort: number;
|
13344
|
+
useTlsForImap: boolean;
|
13345
|
+
};
|
12817
13346
|
requestId: string;
|
12818
13347
|
}, {
|
12819
|
-
|
13348
|
+
data: {
|
13349
|
+
id: string;
|
13350
|
+
name: string;
|
13351
|
+
createdAt: Date;
|
13352
|
+
updatedAt: Date;
|
13353
|
+
deletedAt: Date | null;
|
13354
|
+
smtpHost: string;
|
13355
|
+
smtpPort: number;
|
13356
|
+
smtpTlsPort: number;
|
13357
|
+
useTlsForSmtp: boolean;
|
13358
|
+
imapHost: string;
|
13359
|
+
imapPort: number;
|
13360
|
+
imapTlsPort: number;
|
13361
|
+
useTlsForImap: boolean;
|
13362
|
+
};
|
12820
13363
|
requestId: string;
|
12821
13364
|
}>;
|
12822
13365
|
};
|
@@ -12824,8 +13367,8 @@ export declare const mailContract: {
|
|
12824
13367
|
};
|
12825
13368
|
delete: {
|
12826
13369
|
body: null;
|
12827
|
-
summary: "Delete a mail server
|
12828
|
-
method: "
|
13370
|
+
summary: "Delete a mail server";
|
13371
|
+
method: "DELETE";
|
12829
13372
|
pathParams: import("zod").ZodObject<{
|
12830
13373
|
id: import("zod").ZodString;
|
12831
13374
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -12866,12 +13409,82 @@ export declare const mailContract: {
|
|
12866
13409
|
}>;
|
12867
13410
|
200: import("zod").ZodObject<{
|
12868
13411
|
requestId: import("zod").ZodString;
|
12869
|
-
|
13412
|
+
data: import("zod").ZodObject<{
|
13413
|
+
id: import("zod").ZodString;
|
13414
|
+
createdAt: import("zod").ZodDate;
|
13415
|
+
updatedAt: import("zod").ZodDate;
|
13416
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13417
|
+
name: import("zod").ZodString;
|
13418
|
+
smtpHost: import("zod").ZodString;
|
13419
|
+
smtpPort: import("zod").ZodNumber;
|
13420
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13421
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
13422
|
+
imapHost: import("zod").ZodString;
|
13423
|
+
imapPort: import("zod").ZodNumber;
|
13424
|
+
imapTlsPort: import("zod").ZodNumber;
|
13425
|
+
useTlsForImap: import("zod").ZodBoolean;
|
13426
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13427
|
+
id: string;
|
13428
|
+
name: string;
|
13429
|
+
createdAt: Date;
|
13430
|
+
updatedAt: Date;
|
13431
|
+
deletedAt: Date | null;
|
13432
|
+
smtpHost: string;
|
13433
|
+
smtpPort: number;
|
13434
|
+
smtpTlsPort: number;
|
13435
|
+
useTlsForSmtp: boolean;
|
13436
|
+
imapHost: string;
|
13437
|
+
imapPort: number;
|
13438
|
+
imapTlsPort: number;
|
13439
|
+
useTlsForImap: boolean;
|
13440
|
+
}, {
|
13441
|
+
id: string;
|
13442
|
+
name: string;
|
13443
|
+
createdAt: Date;
|
13444
|
+
updatedAt: Date;
|
13445
|
+
deletedAt: Date | null;
|
13446
|
+
smtpHost: string;
|
13447
|
+
smtpPort: number;
|
13448
|
+
smtpTlsPort: number;
|
13449
|
+
useTlsForSmtp: boolean;
|
13450
|
+
imapHost: string;
|
13451
|
+
imapPort: number;
|
13452
|
+
imapTlsPort: number;
|
13453
|
+
useTlsForImap: boolean;
|
13454
|
+
}>;
|
12870
13455
|
}, "strip", import("zod").ZodTypeAny, {
|
12871
|
-
|
13456
|
+
data: {
|
13457
|
+
id: string;
|
13458
|
+
name: string;
|
13459
|
+
createdAt: Date;
|
13460
|
+
updatedAt: Date;
|
13461
|
+
deletedAt: Date | null;
|
13462
|
+
smtpHost: string;
|
13463
|
+
smtpPort: number;
|
13464
|
+
smtpTlsPort: number;
|
13465
|
+
useTlsForSmtp: boolean;
|
13466
|
+
imapHost: string;
|
13467
|
+
imapPort: number;
|
13468
|
+
imapTlsPort: number;
|
13469
|
+
useTlsForImap: boolean;
|
13470
|
+
};
|
12872
13471
|
requestId: string;
|
12873
13472
|
}, {
|
12874
|
-
|
13473
|
+
data: {
|
13474
|
+
id: string;
|
13475
|
+
name: string;
|
13476
|
+
createdAt: Date;
|
13477
|
+
updatedAt: Date;
|
13478
|
+
deletedAt: Date | null;
|
13479
|
+
smtpHost: string;
|
13480
|
+
smtpPort: number;
|
13481
|
+
smtpTlsPort: number;
|
13482
|
+
useTlsForSmtp: boolean;
|
13483
|
+
imapHost: string;
|
13484
|
+
imapPort: number;
|
13485
|
+
imapTlsPort: number;
|
13486
|
+
useTlsForImap: boolean;
|
13487
|
+
};
|
12875
13488
|
requestId: string;
|
12876
13489
|
}>;
|
12877
13490
|
};
|