@kl1/contracts 1.1.4-uat → 1.1.4
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 +886 -933
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +886 -932
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +2153 -3015
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +8 -24
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +7 -76
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +3490 -5239
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/index.d.ts +0 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +7 -73
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +7 -73
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/account-contract.d.ts +136 -289
- package/dist/src/mail/account-contract.d.ts.map +1 -1
- package/dist/src/mail/index.d.ts +0 -10
- package/dist/src/mail/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +1162 -1775
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server-contract.d.ts +18 -477
- package/dist/src/mail/mail-server-contract.d.ts.map +1 -1
- package/dist/src/mail/message-contract.d.ts +54 -54
- package/dist/src/mail/room-contract.d.ts +954 -957
- 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 +322 -325
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +259 -683
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +7 -83
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +7 -73
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/src/app/index.d.ts +0 -17
- package/dist/src/app/index.d.ts.map +0 -1
- package/dist/src/chatwoot/index.d.ts +0 -7527
- package/dist/src/chatwoot/index.d.ts.map +0 -1
- package/dist/src/chatwoot/schema.d.ts +0 -79
- package/dist/src/chatwoot/schema.d.ts.map +0 -1
- package/dist/src/chatwoot/validation.d.ts +0 -53
- package/dist/src/chatwoot/validation.d.ts.map +0 -1
- package/dist/src/mail/mail-server.d.ts +0 -216
- package/dist/src/mail/mail-server.d.ts.map +0 -1
- package/dist/src/platform-contact/schema.d.ts +0 -30
- package/dist/src/platform-contact/schema.d.ts.map +0 -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
|
+
assigneeId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
59
|
+
resolved: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodEffects<import("zod").ZodString, boolean, string>]>>>;
|
60
60
|
}, "strip", import("zod").ZodTypeAny, {
|
61
61
|
page: number;
|
62
62
|
pageSize: number;
|
63
63
|
keyword?: string | undefined;
|
64
|
-
|
65
|
-
|
64
|
+
assigneeId?: string | null | undefined;
|
65
|
+
resolved?: boolean | null | undefined;
|
66
66
|
}, {
|
67
67
|
page?: number | undefined;
|
68
68
|
pageSize?: number | undefined;
|
69
69
|
keyword?: string | undefined;
|
70
|
-
|
71
|
-
|
70
|
+
assigneeId?: string | null | undefined;
|
71
|
+
resolved?: string | boolean | null | 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
|
+
bucket_name: import("zod").ZodString;
|
330
|
+
file_name: import("zod").ZodString;
|
331
|
+
file_key: import("zod").ZodString;
|
332
|
+
file_size: import("zod").ZodNumber;
|
333
|
+
file_url: import("zod").ZodString;
|
334
|
+
extension_name: 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
|
+
bucket_name: string;
|
341
|
+
file_name: string;
|
342
|
+
file_key: string;
|
343
|
+
file_size: number;
|
344
|
+
file_url: string;
|
345
|
+
extension_name: 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
|
+
bucket_name: string;
|
352
|
+
file_name: string;
|
353
|
+
file_key: string;
|
354
|
+
file_size: number;
|
355
|
+
file_url: string;
|
356
|
+
extension_name: 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
|
+
bucket_name: string;
|
372
|
+
file_name: string;
|
373
|
+
file_key: string;
|
374
|
+
file_size: number;
|
375
|
+
file_url: string;
|
376
|
+
extension_name: 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
|
+
bucket_name: string;
|
395
|
+
file_name: string;
|
396
|
+
file_key: string;
|
397
|
+
file_size: number;
|
398
|
+
file_url: string;
|
399
|
+
extension_name: 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
|
+
bucket_name: string;
|
469
|
+
file_name: string;
|
470
|
+
file_key: string;
|
471
|
+
file_size: number;
|
472
|
+
file_url: string;
|
473
|
+
extension_name: 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
|
+
bucket_name: string;
|
543
|
+
file_name: string;
|
544
|
+
file_key: string;
|
545
|
+
file_size: number;
|
546
|
+
file_url: string;
|
547
|
+
extension_name: 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
|
+
bucket_name: import("zod").ZodString;
|
677
|
+
file_name: import("zod").ZodString;
|
678
|
+
file_key: import("zod").ZodString;
|
679
|
+
file_size: import("zod").ZodNumber;
|
680
|
+
file_url: import("zod").ZodString;
|
681
|
+
extension_name: 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
|
+
bucket_name: string;
|
688
|
+
file_name: string;
|
689
|
+
file_key: string;
|
690
|
+
file_size: number;
|
691
|
+
file_url: string;
|
692
|
+
extension_name: 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
|
+
bucket_name: string;
|
699
|
+
file_name: string;
|
700
|
+
file_key: string;
|
701
|
+
file_size: number;
|
702
|
+
file_url: string;
|
703
|
+
extension_name: 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
|
+
bucket_name: string;
|
719
|
+
file_name: string;
|
720
|
+
file_key: string;
|
721
|
+
file_size: number;
|
722
|
+
file_url: string;
|
723
|
+
extension_name: 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
|
+
bucket_name: string;
|
742
|
+
file_name: string;
|
743
|
+
file_key: string;
|
744
|
+
file_size: number;
|
745
|
+
file_url: string;
|
746
|
+
extension_name: 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
|
+
bucket_name: string;
|
816
|
+
file_name: string;
|
817
|
+
file_key: string;
|
818
|
+
file_size: number;
|
819
|
+
file_url: string;
|
820
|
+
extension_name: 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
|
+
bucket_name: string;
|
890
|
+
file_name: string;
|
891
|
+
file_key: string;
|
892
|
+
file_size: number;
|
893
|
+
file_url: string;
|
894
|
+
extension_name: 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
|
+
notification_count: 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
|
+
notification_count: 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
|
+
notification_count: 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
|
+
bucket_name: import("zod").ZodString;
|
1077
|
+
file_name: import("zod").ZodString;
|
1078
|
+
file_key: import("zod").ZodString;
|
1079
|
+
file_size: import("zod").ZodNumber;
|
1080
|
+
file_url: import("zod").ZodString;
|
1081
|
+
extension_name: 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
|
+
bucket_name: string;
|
1088
|
+
file_name: string;
|
1089
|
+
file_key: string;
|
1090
|
+
file_size: number;
|
1091
|
+
file_url: string;
|
1092
|
+
extension_name: 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
|
+
bucket_name: string;
|
1099
|
+
file_name: string;
|
1100
|
+
file_key: string;
|
1101
|
+
file_size: number;
|
1102
|
+
file_url: string;
|
1103
|
+
extension_name: 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
|
+
bucket_name: string;
|
1119
|
+
file_name: string;
|
1120
|
+
file_key: string;
|
1121
|
+
file_size: number;
|
1122
|
+
file_url: string;
|
1123
|
+
extension_name: 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
|
+
bucket_name: string;
|
1142
|
+
file_name: string;
|
1143
|
+
file_key: string;
|
1144
|
+
file_size: number;
|
1145
|
+
file_url: string;
|
1146
|
+
extension_name: 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
|
+
bucket_name: string;
|
1216
|
+
file_name: string;
|
1217
|
+
file_key: string;
|
1218
|
+
file_size: number;
|
1219
|
+
file_url: string;
|
1220
|
+
extension_name: 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
|
+
bucket_name: string;
|
1290
|
+
file_name: string;
|
1291
|
+
file_key: string;
|
1292
|
+
file_size: number;
|
1293
|
+
file_url: string;
|
1294
|
+
extension_name: 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
|
+
bucket_name: import("zod").ZodString;
|
1424
|
+
file_name: import("zod").ZodString;
|
1425
|
+
file_key: import("zod").ZodString;
|
1426
|
+
file_size: import("zod").ZodNumber;
|
1427
|
+
file_url: import("zod").ZodString;
|
1428
|
+
extension_name: 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
|
+
bucket_name: string;
|
1435
|
+
file_name: string;
|
1436
|
+
file_key: string;
|
1437
|
+
file_size: number;
|
1438
|
+
file_url: string;
|
1439
|
+
extension_name: 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
|
+
bucket_name: string;
|
1446
|
+
file_name: string;
|
1447
|
+
file_key: string;
|
1448
|
+
file_size: number;
|
1449
|
+
file_url: string;
|
1450
|
+
extension_name: 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
|
+
bucket_name: string;
|
1466
|
+
file_name: string;
|
1467
|
+
file_key: string;
|
1468
|
+
file_size: number;
|
1469
|
+
file_url: string;
|
1470
|
+
extension_name: 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
|
+
bucket_name: string;
|
1489
|
+
file_name: string;
|
1490
|
+
file_key: string;
|
1491
|
+
file_size: number;
|
1492
|
+
file_url: string;
|
1493
|
+
extension_name: 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
|
+
bucket_name: string;
|
1563
|
+
file_name: string;
|
1564
|
+
file_key: string;
|
1565
|
+
file_size: number;
|
1566
|
+
file_url: string;
|
1567
|
+
extension_name: 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
|
+
bucket_name: string;
|
1637
|
+
file_name: string;
|
1638
|
+
file_key: string;
|
1639
|
+
file_size: number;
|
1640
|
+
file_url: string;
|
1641
|
+
extension_name: 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
|
+
notification_count: 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
|
+
notification_count: 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
|
+
notification_count: 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
|
+
notification_count: 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
|
+
notification_count: 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").ZodString;
|
1742
|
+
smtpTlsPort: import("zod").ZodString;
|
1743
1743
|
useTlsForSmtp: import("zod").ZodBoolean;
|
1744
1744
|
imapHost: import("zod").ZodString;
|
1745
|
-
imapPort: import("zod").
|
1746
|
-
imapTlsPort: import("zod").
|
1745
|
+
imapPort: import("zod").ZodString;
|
1746
|
+
imapTlsPort: import("zod").ZodString;
|
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: string;
|
1756
|
+
smtpTlsPort: string;
|
1757
1757
|
useTlsForSmtp: boolean;
|
1758
1758
|
imapHost: string;
|
1759
|
-
imapPort:
|
1760
|
-
imapTlsPort:
|
1759
|
+
imapPort: string;
|
1760
|
+
imapTlsPort: string;
|
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: string;
|
1770
|
+
smtpTlsPort: string;
|
1771
1771
|
useTlsForSmtp: boolean;
|
1772
1772
|
imapHost: string;
|
1773
|
-
imapPort:
|
1774
|
-
imapTlsPort:
|
1773
|
+
imapPort: string;
|
1774
|
+
imapTlsPort: string;
|
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: string;
|
1796
|
+
smtpTlsPort: string;
|
1797
1797
|
useTlsForSmtp: boolean;
|
1798
1798
|
imapHost: string;
|
1799
|
-
imapPort:
|
1800
|
-
imapTlsPort:
|
1799
|
+
imapPort: string;
|
1800
|
+
imapTlsPort: string;
|
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: string;
|
1821
|
+
smtpTlsPort: string;
|
1822
1822
|
useTlsForSmtp: boolean;
|
1823
1823
|
imapHost: string;
|
1824
|
-
imapPort:
|
1825
|
-
imapTlsPort:
|
1824
|
+
imapPort: string;
|
1825
|
+
imapTlsPort: string;
|
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
|
+
bucket_name: string;
|
1909
|
+
file_name: string;
|
1910
|
+
file_key: string;
|
1911
|
+
file_size: number;
|
1912
|
+
file_url: string;
|
1913
|
+
extension_name: 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
|
+
notification_count: 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
|
+
bucket_name: string;
|
2033
|
+
file_name: string;
|
2034
|
+
file_key: string;
|
2035
|
+
file_size: number;
|
2036
|
+
file_url: string;
|
2037
|
+
extension_name: 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
|
+
bucket_name: string;
|
2108
|
+
file_name: string;
|
2109
|
+
file_key: string;
|
2110
|
+
file_size: number;
|
2111
|
+
file_url: string;
|
2112
|
+
extension_name: 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
|
+
bucket_name: string;
|
2183
|
+
file_name: string;
|
2184
|
+
file_key: string;
|
2185
|
+
file_size: number;
|
2186
|
+
file_url: string;
|
2187
|
+
extension_name: 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
|
+
notification_count: 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: string;
|
2231
|
+
smtpTlsPort: string;
|
2232
2232
|
useTlsForSmtp: boolean;
|
2233
2233
|
imapHost: string;
|
2234
|
-
imapPort:
|
2235
|
-
imapTlsPort:
|
2234
|
+
imapPort: string;
|
2235
|
+
imapTlsPort: string;
|
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
|
+
bucket_name: string;
|
2319
|
+
file_name: string;
|
2320
|
+
file_key: string;
|
2321
|
+
file_size: number;
|
2322
|
+
file_url: string;
|
2323
|
+
extension_name: 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
|
+
notification_count: 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
|
+
bucket_name: string;
|
2443
|
+
file_name: string;
|
2444
|
+
file_key: string;
|
2445
|
+
file_size: number;
|
2446
|
+
file_url: string;
|
2447
|
+
extension_name: 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
|
+
bucket_name: string;
|
2518
|
+
file_name: string;
|
2519
|
+
file_key: string;
|
2520
|
+
file_size: number;
|
2521
|
+
file_url: string;
|
2522
|
+
extension_name: 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
|
+
bucket_name: string;
|
2593
|
+
file_name: string;
|
2594
|
+
file_key: string;
|
2595
|
+
file_size: number;
|
2596
|
+
file_url: string;
|
2597
|
+
extension_name: 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
|
+
notification_count: 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: string;
|
2641
|
+
smtpTlsPort: string;
|
2642
2642
|
useTlsForSmtp: boolean;
|
2643
2643
|
imapHost: string;
|
2644
|
-
imapPort:
|
2645
|
-
imapTlsPort:
|
2644
|
+
imapPort: string;
|
2645
|
+
imapTlsPort: string;
|
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
|
+
bucket_name: string;
|
2734
|
+
file_name: string;
|
2735
|
+
file_key: string;
|
2736
|
+
file_size: number;
|
2737
|
+
file_url: string;
|
2738
|
+
extension_name: 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
|
+
notification_count: 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
|
+
bucket_name: string;
|
2858
|
+
file_name: string;
|
2859
|
+
file_key: string;
|
2860
|
+
file_size: number;
|
2861
|
+
file_url: string;
|
2862
|
+
extension_name: 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
|
+
bucket_name: string;
|
2933
|
+
file_name: string;
|
2934
|
+
file_key: string;
|
2935
|
+
file_size: number;
|
2936
|
+
file_url: string;
|
2937
|
+
extension_name: 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
|
+
bucket_name: string;
|
3008
|
+
file_name: string;
|
3009
|
+
file_key: string;
|
3010
|
+
file_size: number;
|
3011
|
+
file_url: string;
|
3012
|
+
extension_name: 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
|
+
notification_count: 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: string;
|
3056
|
+
smtpTlsPort: string;
|
3057
3057
|
useTlsForSmtp: boolean;
|
3058
3058
|
imapHost: string;
|
3059
|
-
imapPort:
|
3060
|
-
imapTlsPort:
|
3059
|
+
imapPort: string;
|
3060
|
+
imapTlsPort: string;
|
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
|
+
bucket_name: string;
|
3150
|
+
file_name: string;
|
3151
|
+
file_key: string;
|
3152
|
+
file_size: number;
|
3153
|
+
file_url: string;
|
3154
|
+
extension_name: 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
|
+
notification_count: 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
|
+
bucket_name: string;
|
3274
|
+
file_name: string;
|
3275
|
+
file_key: string;
|
3276
|
+
file_size: number;
|
3277
|
+
file_url: string;
|
3278
|
+
extension_name: 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
|
+
bucket_name: string;
|
3349
|
+
file_name: string;
|
3350
|
+
file_key: string;
|
3351
|
+
file_size: number;
|
3352
|
+
file_url: string;
|
3353
|
+
extension_name: 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
|
+
bucket_name: string;
|
3424
|
+
file_name: string;
|
3425
|
+
file_key: string;
|
3426
|
+
file_size: number;
|
3427
|
+
file_url: string;
|
3428
|
+
extension_name: 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
|
+
notification_count: 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: string;
|
3472
|
+
smtpTlsPort: string;
|
3473
3473
|
useTlsForSmtp: boolean;
|
3474
3474
|
imapHost: string;
|
3475
|
-
imapPort:
|
3476
|
-
imapTlsPort:
|
3475
|
+
imapPort: string;
|
3476
|
+
imapTlsPort: string;
|
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
|
+
bucket_name: import("zod").ZodString;
|
3757
|
+
file_name: import("zod").ZodString;
|
3758
|
+
file_key: import("zod").ZodString;
|
3759
|
+
file_size: import("zod").ZodNumber;
|
3760
|
+
file_url: import("zod").ZodString;
|
3761
|
+
extension_name: 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
|
+
bucket_name: string;
|
3768
|
+
file_name: string;
|
3769
|
+
file_key: string;
|
3770
|
+
file_size: number;
|
3771
|
+
file_url: string;
|
3772
|
+
extension_name: 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
|
+
bucket_name: string;
|
3779
|
+
file_name: string;
|
3780
|
+
file_key: string;
|
3781
|
+
file_size: number;
|
3782
|
+
file_url: string;
|
3783
|
+
extension_name: 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
|
+
bucket_name: string;
|
3799
|
+
file_name: string;
|
3800
|
+
file_key: string;
|
3801
|
+
file_size: number;
|
3802
|
+
file_url: string;
|
3803
|
+
extension_name: 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
|
+
bucket_name: string;
|
3822
|
+
file_name: string;
|
3823
|
+
file_key: string;
|
3824
|
+
file_size: number;
|
3825
|
+
file_url: string;
|
3826
|
+
extension_name: 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
|
+
bucket_name: string;
|
3896
|
+
file_name: string;
|
3897
|
+
file_key: string;
|
3898
|
+
file_size: number;
|
3899
|
+
file_url: string;
|
3900
|
+
extension_name: 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
|
+
bucket_name: string;
|
3970
|
+
file_name: string;
|
3971
|
+
file_key: string;
|
3972
|
+
file_size: number;
|
3973
|
+
file_url: string;
|
3974
|
+
extension_name: 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
|
+
bucket_name: import("zod").ZodString;
|
4104
|
+
file_name: import("zod").ZodString;
|
4105
|
+
file_key: import("zod").ZodString;
|
4106
|
+
file_size: import("zod").ZodNumber;
|
4107
|
+
file_url: import("zod").ZodString;
|
4108
|
+
extension_name: 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
|
+
bucket_name: string;
|
4115
|
+
file_name: string;
|
4116
|
+
file_key: string;
|
4117
|
+
file_size: number;
|
4118
|
+
file_url: string;
|
4119
|
+
extension_name: 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
|
+
bucket_name: string;
|
4126
|
+
file_name: string;
|
4127
|
+
file_key: string;
|
4128
|
+
file_size: number;
|
4129
|
+
file_url: string;
|
4130
|
+
extension_name: 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
|
+
bucket_name: string;
|
4146
|
+
file_name: string;
|
4147
|
+
file_key: string;
|
4148
|
+
file_size: number;
|
4149
|
+
file_url: string;
|
4150
|
+
extension_name: 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
|
+
bucket_name: string;
|
4169
|
+
file_name: string;
|
4170
|
+
file_key: string;
|
4171
|
+
file_size: number;
|
4172
|
+
file_url: string;
|
4173
|
+
extension_name: 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
|
+
bucket_name: string;
|
4243
|
+
file_name: string;
|
4244
|
+
file_key: string;
|
4245
|
+
file_size: number;
|
4246
|
+
file_url: string;
|
4247
|
+
extension_name: 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
|
+
bucket_name: string;
|
4317
|
+
file_name: string;
|
4318
|
+
file_key: string;
|
4319
|
+
file_size: number;
|
4320
|
+
file_url: string;
|
4321
|
+
extension_name: 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
|
+
notification_count: 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
|
+
notification_count: 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
|
+
notification_count: 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
|
+
bucket_name: import("zod").ZodString;
|
4504
|
+
file_name: import("zod").ZodString;
|
4505
|
+
file_key: import("zod").ZodString;
|
4506
|
+
file_size: import("zod").ZodNumber;
|
4507
|
+
file_url: import("zod").ZodString;
|
4508
|
+
extension_name: 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
|
+
bucket_name: string;
|
4515
|
+
file_name: string;
|
4516
|
+
file_key: string;
|
4517
|
+
file_size: number;
|
4518
|
+
file_url: string;
|
4519
|
+
extension_name: 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
|
+
bucket_name: string;
|
4526
|
+
file_name: string;
|
4527
|
+
file_key: string;
|
4528
|
+
file_size: number;
|
4529
|
+
file_url: string;
|
4530
|
+
extension_name: 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
|
+
bucket_name: string;
|
4546
|
+
file_name: string;
|
4547
|
+
file_key: string;
|
4548
|
+
file_size: number;
|
4549
|
+
file_url: string;
|
4550
|
+
extension_name: 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
|
+
bucket_name: string;
|
4569
|
+
file_name: string;
|
4570
|
+
file_key: string;
|
4571
|
+
file_size: number;
|
4572
|
+
file_url: string;
|
4573
|
+
extension_name: 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
|
+
bucket_name: string;
|
4643
|
+
file_name: string;
|
4644
|
+
file_key: string;
|
4645
|
+
file_size: number;
|
4646
|
+
file_url: string;
|
4647
|
+
extension_name: 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
|
+
bucket_name: string;
|
4717
|
+
file_name: string;
|
4718
|
+
file_key: string;
|
4719
|
+
file_size: number;
|
4720
|
+
file_url: string;
|
4721
|
+
extension_name: 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
|
+
bucket_name: import("zod").ZodString;
|
4851
|
+
file_name: import("zod").ZodString;
|
4852
|
+
file_key: import("zod").ZodString;
|
4853
|
+
file_size: import("zod").ZodNumber;
|
4854
|
+
file_url: import("zod").ZodString;
|
4855
|
+
extension_name: 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
|
+
bucket_name: string;
|
4862
|
+
file_name: string;
|
4863
|
+
file_key: string;
|
4864
|
+
file_size: number;
|
4865
|
+
file_url: string;
|
4866
|
+
extension_name: 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
|
+
bucket_name: string;
|
4873
|
+
file_name: string;
|
4874
|
+
file_key: string;
|
4875
|
+
file_size: number;
|
4876
|
+
file_url: string;
|
4877
|
+
extension_name: 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
|
+
bucket_name: string;
|
4893
|
+
file_name: string;
|
4894
|
+
file_key: string;
|
4895
|
+
file_size: number;
|
4896
|
+
file_url: string;
|
4897
|
+
extension_name: 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
|
+
bucket_name: string;
|
4916
|
+
file_name: string;
|
4917
|
+
file_key: string;
|
4918
|
+
file_size: number;
|
4919
|
+
file_url: string;
|
4920
|
+
extension_name: 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
|
+
bucket_name: string;
|
4990
|
+
file_name: string;
|
4991
|
+
file_key: string;
|
4992
|
+
file_size: number;
|
4993
|
+
file_url: string;
|
4994
|
+
extension_name: 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
|
+
bucket_name: string;
|
5064
|
+
file_name: string;
|
5065
|
+
file_key: string;
|
5066
|
+
file_size: number;
|
5067
|
+
file_url: string;
|
5068
|
+
extension_name: 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
|
+
notification_count: 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
|
+
notification_count: 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
|
+
notification_count: 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
|
+
notification_count: 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
|
+
notification_count: 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").ZodString;
|
5169
|
+
smtpTlsPort: import("zod").ZodString;
|
5170
5170
|
useTlsForSmtp: import("zod").ZodBoolean;
|
5171
5171
|
imapHost: import("zod").ZodString;
|
5172
|
-
imapPort: import("zod").
|
5173
|
-
imapTlsPort: import("zod").
|
5172
|
+
imapPort: import("zod").ZodString;
|
5173
|
+
imapTlsPort: import("zod").ZodString;
|
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: string;
|
5183
|
+
smtpTlsPort: string;
|
5184
5184
|
useTlsForSmtp: boolean;
|
5185
5185
|
imapHost: string;
|
5186
|
-
imapPort:
|
5187
|
-
imapTlsPort:
|
5186
|
+
imapPort: string;
|
5187
|
+
imapTlsPort: string;
|
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: string;
|
5197
|
+
smtpTlsPort: string;
|
5198
5198
|
useTlsForSmtp: boolean;
|
5199
5199
|
imapHost: string;
|
5200
|
-
imapPort:
|
5201
|
-
imapTlsPort:
|
5200
|
+
imapPort: string;
|
5201
|
+
imapTlsPort: string;
|
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: string;
|
5223
|
+
smtpTlsPort: string;
|
5224
5224
|
useTlsForSmtp: boolean;
|
5225
5225
|
imapHost: string;
|
5226
|
-
imapPort:
|
5227
|
-
imapTlsPort:
|
5226
|
+
imapPort: string;
|
5227
|
+
imapTlsPort: string;
|
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: string;
|
5248
|
+
smtpTlsPort: string;
|
5249
5249
|
useTlsForSmtp: boolean;
|
5250
5250
|
imapHost: string;
|
5251
|
-
imapPort:
|
5252
|
-
imapTlsPort:
|
5251
|
+
imapPort: string;
|
5252
|
+
imapTlsPort: string;
|
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
|
+
bucket_name: string;
|
5336
|
+
file_name: string;
|
5337
|
+
file_key: string;
|
5338
|
+
file_size: number;
|
5339
|
+
file_url: string;
|
5340
|
+
extension_name: 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
|
+
notification_count: 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
|
+
bucket_name: string;
|
5460
|
+
file_name: string;
|
5461
|
+
file_key: string;
|
5462
|
+
file_size: number;
|
5463
|
+
file_url: string;
|
5464
|
+
extension_name: 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
|
+
bucket_name: string;
|
5535
|
+
file_name: string;
|
5536
|
+
file_key: string;
|
5537
|
+
file_size: number;
|
5538
|
+
file_url: string;
|
5539
|
+
extension_name: 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
|
+
bucket_name: string;
|
5610
|
+
file_name: string;
|
5611
|
+
file_key: string;
|
5612
|
+
file_size: number;
|
5613
|
+
file_url: string;
|
5614
|
+
extension_name: 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
|
+
notification_count: 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: string;
|
5658
|
+
smtpTlsPort: string;
|
5659
5659
|
useTlsForSmtp: boolean;
|
5660
5660
|
imapHost: string;
|
5661
|
-
imapPort:
|
5662
|
-
imapTlsPort:
|
5661
|
+
imapPort: string;
|
5662
|
+
imapTlsPort: string;
|
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
|
+
bucket_name: string;
|
5746
|
+
file_name: string;
|
5747
|
+
file_key: string;
|
5748
|
+
file_size: number;
|
5749
|
+
file_url: string;
|
5750
|
+
extension_name: 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
|
+
notification_count: 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
|
+
bucket_name: string;
|
5870
|
+
file_name: string;
|
5871
|
+
file_key: string;
|
5872
|
+
file_size: number;
|
5873
|
+
file_url: string;
|
5874
|
+
extension_name: 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
|
+
bucket_name: string;
|
5945
|
+
file_name: string;
|
5946
|
+
file_key: string;
|
5947
|
+
file_size: number;
|
5948
|
+
file_url: string;
|
5949
|
+
extension_name: 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
|
+
bucket_name: string;
|
6020
|
+
file_name: string;
|
6021
|
+
file_key: string;
|
6022
|
+
file_size: number;
|
6023
|
+
file_url: string;
|
6024
|
+
extension_name: 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
|
+
notification_count: 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: string;
|
6068
|
+
smtpTlsPort: string;
|
6069
6069
|
useTlsForSmtp: boolean;
|
6070
6070
|
imapHost: string;
|
6071
|
-
imapPort:
|
6072
|
-
imapTlsPort:
|
6071
|
+
imapPort: string;
|
6072
|
+
imapTlsPort: string;
|
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
|
+
bucket_name: string;
|
6158
|
+
file_name: string;
|
6159
|
+
file_key: string;
|
6160
|
+
file_size: number;
|
6161
|
+
file_url: string;
|
6162
|
+
extension_name: 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
|
+
notification_count: 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
|
+
bucket_name: string;
|
6282
|
+
file_name: string;
|
6283
|
+
file_key: string;
|
6284
|
+
file_size: number;
|
6285
|
+
file_url: string;
|
6286
|
+
extension_name: 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
|
+
bucket_name: string;
|
6357
|
+
file_name: string;
|
6358
|
+
file_key: string;
|
6359
|
+
file_size: number;
|
6360
|
+
file_url: string;
|
6361
|
+
extension_name: 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
|
+
bucket_name: string;
|
6432
|
+
file_name: string;
|
6433
|
+
file_key: string;
|
6434
|
+
file_size: number;
|
6435
|
+
file_url: string;
|
6436
|
+
extension_name: 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
|
+
notification_count: 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: string;
|
6480
|
+
smtpTlsPort: string;
|
6481
6481
|
useTlsForSmtp: boolean;
|
6482
6482
|
imapHost: string;
|
6483
|
-
imapPort:
|
6484
|
-
imapTlsPort:
|
6483
|
+
imapPort: string;
|
6484
|
+
imapTlsPort: string;
|
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
|
+
bucket_name: string;
|
6571
|
+
file_name: string;
|
6572
|
+
file_key: string;
|
6573
|
+
file_size: number;
|
6574
|
+
file_url: string;
|
6575
|
+
extension_name: 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
|
+
notification_count: 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
|
+
bucket_name: string;
|
6695
|
+
file_name: string;
|
6696
|
+
file_key: string;
|
6697
|
+
file_size: number;
|
6698
|
+
file_url: string;
|
6699
|
+
extension_name: 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
|
+
bucket_name: string;
|
6770
|
+
file_name: string;
|
6771
|
+
file_key: string;
|
6772
|
+
file_size: number;
|
6773
|
+
file_url: string;
|
6774
|
+
extension_name: 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
|
+
bucket_name: string;
|
6845
|
+
file_name: string;
|
6846
|
+
file_key: string;
|
6847
|
+
file_size: number;
|
6848
|
+
file_url: string;
|
6849
|
+
extension_name: 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
|
+
notification_count: 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: string;
|
6893
|
+
smtpTlsPort: string;
|
6894
6894
|
useTlsForSmtp: boolean;
|
6895
6895
|
imapHost: string;
|
6896
|
-
imapPort:
|
6897
|
-
imapTlsPort:
|
6896
|
+
imapPort: string;
|
6897
|
+
imapTlsPort: string;
|
6898
6898
|
useTlsForImap: boolean;
|
6899
6899
|
};
|
6900
6900
|
};
|
@@ -7172,21 +7172,18 @@ 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">]>>>;
|
7176
7175
|
}, "strip", import("zod").ZodTypeAny, {
|
7177
7176
|
resolved?: boolean | null | undefined;
|
7178
7177
|
assigneeId?: string | null | undefined;
|
7179
7178
|
note?: string | undefined;
|
7180
7179
|
tags?: string[] | undefined;
|
7181
7180
|
handover?: boolean | null | undefined;
|
7182
|
-
selfAssign?: boolean | null | undefined;
|
7183
7181
|
}, {
|
7184
7182
|
resolved?: boolean | "false" | "true" | null | undefined;
|
7185
7183
|
assigneeId?: string | null | undefined;
|
7186
7184
|
note?: string | undefined;
|
7187
7185
|
tags?: string[] | undefined;
|
7188
7186
|
handover?: boolean | "false" | "true" | null | undefined;
|
7189
|
-
selfAssign?: boolean | "false" | "true" | null | undefined;
|
7190
7187
|
}>;
|
7191
7188
|
summary: "Update a mail room by id";
|
7192
7189
|
method: "PATCH";
|
@@ -7453,34 +7450,34 @@ export declare const mailContract: {
|
|
7453
7450
|
createdAt: import("zod").ZodDate;
|
7454
7451
|
updatedAt: import("zod").ZodDate;
|
7455
7452
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
7456
|
-
|
7457
|
-
|
7458
|
-
|
7459
|
-
|
7460
|
-
|
7461
|
-
|
7453
|
+
bucket_name: import("zod").ZodString;
|
7454
|
+
file_name: import("zod").ZodString;
|
7455
|
+
file_key: import("zod").ZodString;
|
7456
|
+
file_size: import("zod").ZodNumber;
|
7457
|
+
file_url: import("zod").ZodString;
|
7458
|
+
extension_name: import("zod").ZodString;
|
7462
7459
|
}, "strip", import("zod").ZodTypeAny, {
|
7463
7460
|
id: string;
|
7464
7461
|
createdAt: Date;
|
7465
7462
|
updatedAt: Date;
|
7466
7463
|
deletedAt: Date | null;
|
7467
|
-
|
7468
|
-
|
7469
|
-
|
7470
|
-
|
7471
|
-
|
7472
|
-
|
7464
|
+
bucket_name: string;
|
7465
|
+
file_name: string;
|
7466
|
+
file_key: string;
|
7467
|
+
file_size: number;
|
7468
|
+
file_url: string;
|
7469
|
+
extension_name: string;
|
7473
7470
|
}, {
|
7474
7471
|
id: string;
|
7475
7472
|
createdAt: Date;
|
7476
7473
|
updatedAt: Date;
|
7477
7474
|
deletedAt: Date | null;
|
7478
|
-
|
7479
|
-
|
7480
|
-
|
7481
|
-
|
7482
|
-
|
7483
|
-
|
7475
|
+
bucket_name: string;
|
7476
|
+
file_name: string;
|
7477
|
+
file_key: string;
|
7478
|
+
file_size: number;
|
7479
|
+
file_url: string;
|
7480
|
+
extension_name: string;
|
7484
7481
|
}>;
|
7485
7482
|
}, "strip", import("zod").ZodTypeAny, {
|
7486
7483
|
id: string;
|
@@ -7495,12 +7492,12 @@ export declare const mailContract: {
|
|
7495
7492
|
createdAt: Date;
|
7496
7493
|
updatedAt: Date;
|
7497
7494
|
deletedAt: Date | null;
|
7498
|
-
|
7499
|
-
|
7500
|
-
|
7501
|
-
|
7502
|
-
|
7503
|
-
|
7495
|
+
bucket_name: string;
|
7496
|
+
file_name: string;
|
7497
|
+
file_key: string;
|
7498
|
+
file_size: number;
|
7499
|
+
file_url: string;
|
7500
|
+
extension_name: string;
|
7504
7501
|
};
|
7505
7502
|
roomId: string;
|
7506
7503
|
messageId: string;
|
@@ -7518,12 +7515,12 @@ export declare const mailContract: {
|
|
7518
7515
|
createdAt: Date;
|
7519
7516
|
updatedAt: Date;
|
7520
7517
|
deletedAt: Date | null;
|
7521
|
-
|
7522
|
-
|
7523
|
-
|
7524
|
-
|
7525
|
-
|
7526
|
-
|
7518
|
+
bucket_name: string;
|
7519
|
+
file_name: string;
|
7520
|
+
file_key: string;
|
7521
|
+
file_size: number;
|
7522
|
+
file_url: string;
|
7523
|
+
extension_name: string;
|
7527
7524
|
};
|
7528
7525
|
roomId: string;
|
7529
7526
|
messageId: string;
|
@@ -7592,12 +7589,12 @@ export declare const mailContract: {
|
|
7592
7589
|
createdAt: Date;
|
7593
7590
|
updatedAt: Date;
|
7594
7591
|
deletedAt: Date | null;
|
7595
|
-
|
7596
|
-
|
7597
|
-
|
7598
|
-
|
7599
|
-
|
7600
|
-
|
7592
|
+
bucket_name: string;
|
7593
|
+
file_name: string;
|
7594
|
+
file_key: string;
|
7595
|
+
file_size: number;
|
7596
|
+
file_url: string;
|
7597
|
+
extension_name: string;
|
7601
7598
|
};
|
7602
7599
|
roomId: string;
|
7603
7600
|
messageId: string;
|
@@ -7666,12 +7663,12 @@ export declare const mailContract: {
|
|
7666
7663
|
createdAt: Date;
|
7667
7664
|
updatedAt: Date;
|
7668
7665
|
deletedAt: Date | null;
|
7669
|
-
|
7670
|
-
|
7671
|
-
|
7672
|
-
|
7673
|
-
|
7674
|
-
|
7666
|
+
bucket_name: string;
|
7667
|
+
file_name: string;
|
7668
|
+
file_key: string;
|
7669
|
+
file_size: number;
|
7670
|
+
file_url: string;
|
7671
|
+
extension_name: string;
|
7675
7672
|
};
|
7676
7673
|
roomId: string;
|
7677
7674
|
messageId: string;
|
@@ -7800,34 +7797,34 @@ export declare const mailContract: {
|
|
7800
7797
|
createdAt: import("zod").ZodDate;
|
7801
7798
|
updatedAt: import("zod").ZodDate;
|
7802
7799
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
7803
|
-
|
7804
|
-
|
7805
|
-
|
7806
|
-
|
7807
|
-
|
7808
|
-
|
7800
|
+
bucket_name: import("zod").ZodString;
|
7801
|
+
file_name: import("zod").ZodString;
|
7802
|
+
file_key: import("zod").ZodString;
|
7803
|
+
file_size: import("zod").ZodNumber;
|
7804
|
+
file_url: import("zod").ZodString;
|
7805
|
+
extension_name: import("zod").ZodString;
|
7809
7806
|
}, "strip", import("zod").ZodTypeAny, {
|
7810
7807
|
id: string;
|
7811
7808
|
createdAt: Date;
|
7812
7809
|
updatedAt: Date;
|
7813
7810
|
deletedAt: Date | null;
|
7814
|
-
|
7815
|
-
|
7816
|
-
|
7817
|
-
|
7818
|
-
|
7819
|
-
|
7811
|
+
bucket_name: string;
|
7812
|
+
file_name: string;
|
7813
|
+
file_key: string;
|
7814
|
+
file_size: number;
|
7815
|
+
file_url: string;
|
7816
|
+
extension_name: string;
|
7820
7817
|
}, {
|
7821
7818
|
id: string;
|
7822
7819
|
createdAt: Date;
|
7823
7820
|
updatedAt: Date;
|
7824
7821
|
deletedAt: Date | null;
|
7825
|
-
|
7826
|
-
|
7827
|
-
|
7828
|
-
|
7829
|
-
|
7830
|
-
|
7822
|
+
bucket_name: string;
|
7823
|
+
file_name: string;
|
7824
|
+
file_key: string;
|
7825
|
+
file_size: number;
|
7826
|
+
file_url: string;
|
7827
|
+
extension_name: string;
|
7831
7828
|
}>;
|
7832
7829
|
}, "strip", import("zod").ZodTypeAny, {
|
7833
7830
|
id: string;
|
@@ -7842,12 +7839,12 @@ export declare const mailContract: {
|
|
7842
7839
|
createdAt: Date;
|
7843
7840
|
updatedAt: Date;
|
7844
7841
|
deletedAt: Date | null;
|
7845
|
-
|
7846
|
-
|
7847
|
-
|
7848
|
-
|
7849
|
-
|
7850
|
-
|
7842
|
+
bucket_name: string;
|
7843
|
+
file_name: string;
|
7844
|
+
file_key: string;
|
7845
|
+
file_size: number;
|
7846
|
+
file_url: string;
|
7847
|
+
extension_name: string;
|
7851
7848
|
};
|
7852
7849
|
roomId: string;
|
7853
7850
|
messageId: string;
|
@@ -7865,12 +7862,12 @@ export declare const mailContract: {
|
|
7865
7862
|
createdAt: Date;
|
7866
7863
|
updatedAt: Date;
|
7867
7864
|
deletedAt: Date | null;
|
7868
|
-
|
7869
|
-
|
7870
|
-
|
7871
|
-
|
7872
|
-
|
7873
|
-
|
7865
|
+
bucket_name: string;
|
7866
|
+
file_name: string;
|
7867
|
+
file_key: string;
|
7868
|
+
file_size: number;
|
7869
|
+
file_url: string;
|
7870
|
+
extension_name: string;
|
7874
7871
|
};
|
7875
7872
|
roomId: string;
|
7876
7873
|
messageId: string;
|
@@ -7939,12 +7936,12 @@ export declare const mailContract: {
|
|
7939
7936
|
createdAt: Date;
|
7940
7937
|
updatedAt: Date;
|
7941
7938
|
deletedAt: Date | null;
|
7942
|
-
|
7943
|
-
|
7944
|
-
|
7945
|
-
|
7946
|
-
|
7947
|
-
|
7939
|
+
bucket_name: string;
|
7940
|
+
file_name: string;
|
7941
|
+
file_key: string;
|
7942
|
+
file_size: number;
|
7943
|
+
file_url: string;
|
7944
|
+
extension_name: string;
|
7948
7945
|
};
|
7949
7946
|
roomId: string;
|
7950
7947
|
messageId: string;
|
@@ -8013,12 +8010,12 @@ export declare const mailContract: {
|
|
8013
8010
|
createdAt: Date;
|
8014
8011
|
updatedAt: Date;
|
8015
8012
|
deletedAt: Date | null;
|
8016
|
-
|
8017
|
-
|
8018
|
-
|
8019
|
-
|
8020
|
-
|
8021
|
-
|
8013
|
+
bucket_name: string;
|
8014
|
+
file_name: string;
|
8015
|
+
file_key: string;
|
8016
|
+
file_size: number;
|
8017
|
+
file_url: string;
|
8018
|
+
extension_name: string;
|
8022
8019
|
};
|
8023
8020
|
roomId: string;
|
8024
8021
|
messageId: string;
|
@@ -8056,7 +8053,7 @@ export declare const mailContract: {
|
|
8056
8053
|
email: import("zod").ZodString;
|
8057
8054
|
address: import("zod").ZodNullable<import("zod").ZodString>;
|
8058
8055
|
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
8059
|
-
|
8056
|
+
notification_count: import("zod").ZodNullable<import("zod").ZodNumber>;
|
8060
8057
|
}, "strip", import("zod").ZodTypeAny, {
|
8061
8058
|
id: string;
|
8062
8059
|
address: string | null;
|
@@ -8066,7 +8063,7 @@ export declare const mailContract: {
|
|
8066
8063
|
updatedAt: Date;
|
8067
8064
|
deletedAt: Date | null;
|
8068
8065
|
phone: string | null;
|
8069
|
-
|
8066
|
+
notification_count: number | null;
|
8070
8067
|
}, {
|
8071
8068
|
id: string;
|
8072
8069
|
address: string | null;
|
@@ -8076,7 +8073,7 @@ export declare const mailContract: {
|
|
8076
8073
|
updatedAt: Date;
|
8077
8074
|
deletedAt: Date | null;
|
8078
8075
|
phone: string | null;
|
8079
|
-
|
8076
|
+
notification_count: number | null;
|
8080
8077
|
}>;
|
8081
8078
|
messages: import("zod").ZodArray<import("zod").ZodObject<{
|
8082
8079
|
id: import("zod").ZodString;
|
@@ -8200,34 +8197,34 @@ export declare const mailContract: {
|
|
8200
8197
|
createdAt: import("zod").ZodDate;
|
8201
8198
|
updatedAt: import("zod").ZodDate;
|
8202
8199
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
8203
|
-
|
8204
|
-
|
8205
|
-
|
8206
|
-
|
8207
|
-
|
8208
|
-
|
8200
|
+
bucket_name: import("zod").ZodString;
|
8201
|
+
file_name: import("zod").ZodString;
|
8202
|
+
file_key: import("zod").ZodString;
|
8203
|
+
file_size: import("zod").ZodNumber;
|
8204
|
+
file_url: import("zod").ZodString;
|
8205
|
+
extension_name: import("zod").ZodString;
|
8209
8206
|
}, "strip", import("zod").ZodTypeAny, {
|
8210
8207
|
id: string;
|
8211
8208
|
createdAt: Date;
|
8212
8209
|
updatedAt: Date;
|
8213
8210
|
deletedAt: Date | null;
|
8214
|
-
|
8215
|
-
|
8216
|
-
|
8217
|
-
|
8218
|
-
|
8219
|
-
|
8211
|
+
bucket_name: string;
|
8212
|
+
file_name: string;
|
8213
|
+
file_key: string;
|
8214
|
+
file_size: number;
|
8215
|
+
file_url: string;
|
8216
|
+
extension_name: string;
|
8220
8217
|
}, {
|
8221
8218
|
id: string;
|
8222
8219
|
createdAt: Date;
|
8223
8220
|
updatedAt: Date;
|
8224
8221
|
deletedAt: Date | null;
|
8225
|
-
|
8226
|
-
|
8227
|
-
|
8228
|
-
|
8229
|
-
|
8230
|
-
|
8222
|
+
bucket_name: string;
|
8223
|
+
file_name: string;
|
8224
|
+
file_key: string;
|
8225
|
+
file_size: number;
|
8226
|
+
file_url: string;
|
8227
|
+
extension_name: string;
|
8231
8228
|
}>;
|
8232
8229
|
}, "strip", import("zod").ZodTypeAny, {
|
8233
8230
|
id: string;
|
@@ -8242,12 +8239,12 @@ export declare const mailContract: {
|
|
8242
8239
|
createdAt: Date;
|
8243
8240
|
updatedAt: Date;
|
8244
8241
|
deletedAt: Date | null;
|
8245
|
-
|
8246
|
-
|
8247
|
-
|
8248
|
-
|
8249
|
-
|
8250
|
-
|
8242
|
+
bucket_name: string;
|
8243
|
+
file_name: string;
|
8244
|
+
file_key: string;
|
8245
|
+
file_size: number;
|
8246
|
+
file_url: string;
|
8247
|
+
extension_name: string;
|
8251
8248
|
};
|
8252
8249
|
roomId: string;
|
8253
8250
|
messageId: string;
|
@@ -8265,12 +8262,12 @@ export declare const mailContract: {
|
|
8265
8262
|
createdAt: Date;
|
8266
8263
|
updatedAt: Date;
|
8267
8264
|
deletedAt: Date | null;
|
8268
|
-
|
8269
|
-
|
8270
|
-
|
8271
|
-
|
8272
|
-
|
8273
|
-
|
8265
|
+
bucket_name: string;
|
8266
|
+
file_name: string;
|
8267
|
+
file_key: string;
|
8268
|
+
file_size: number;
|
8269
|
+
file_url: string;
|
8270
|
+
extension_name: string;
|
8274
8271
|
};
|
8275
8272
|
roomId: string;
|
8276
8273
|
messageId: string;
|
@@ -8339,12 +8336,12 @@ export declare const mailContract: {
|
|
8339
8336
|
createdAt: Date;
|
8340
8337
|
updatedAt: Date;
|
8341
8338
|
deletedAt: Date | null;
|
8342
|
-
|
8343
|
-
|
8344
|
-
|
8345
|
-
|
8346
|
-
|
8347
|
-
|
8339
|
+
bucket_name: string;
|
8340
|
+
file_name: string;
|
8341
|
+
file_key: string;
|
8342
|
+
file_size: number;
|
8343
|
+
file_url: string;
|
8344
|
+
extension_name: string;
|
8348
8345
|
};
|
8349
8346
|
roomId: string;
|
8350
8347
|
messageId: string;
|
@@ -8413,12 +8410,12 @@ export declare const mailContract: {
|
|
8413
8410
|
createdAt: Date;
|
8414
8411
|
updatedAt: Date;
|
8415
8412
|
deletedAt: Date | null;
|
8416
|
-
|
8417
|
-
|
8418
|
-
|
8419
|
-
|
8420
|
-
|
8421
|
-
|
8413
|
+
bucket_name: string;
|
8414
|
+
file_name: string;
|
8415
|
+
file_key: string;
|
8416
|
+
file_size: number;
|
8417
|
+
file_url: string;
|
8418
|
+
extension_name: string;
|
8422
8419
|
};
|
8423
8420
|
roomId: string;
|
8424
8421
|
messageId: string;
|
@@ -8547,34 +8544,34 @@ export declare const mailContract: {
|
|
8547
8544
|
createdAt: import("zod").ZodDate;
|
8548
8545
|
updatedAt: import("zod").ZodDate;
|
8549
8546
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
8550
|
-
|
8551
|
-
|
8552
|
-
|
8553
|
-
|
8554
|
-
|
8555
|
-
|
8547
|
+
bucket_name: import("zod").ZodString;
|
8548
|
+
file_name: import("zod").ZodString;
|
8549
|
+
file_key: import("zod").ZodString;
|
8550
|
+
file_size: import("zod").ZodNumber;
|
8551
|
+
file_url: import("zod").ZodString;
|
8552
|
+
extension_name: import("zod").ZodString;
|
8556
8553
|
}, "strip", import("zod").ZodTypeAny, {
|
8557
8554
|
id: string;
|
8558
8555
|
createdAt: Date;
|
8559
8556
|
updatedAt: Date;
|
8560
8557
|
deletedAt: Date | null;
|
8561
|
-
|
8562
|
-
|
8563
|
-
|
8564
|
-
|
8565
|
-
|
8566
|
-
|
8558
|
+
bucket_name: string;
|
8559
|
+
file_name: string;
|
8560
|
+
file_key: string;
|
8561
|
+
file_size: number;
|
8562
|
+
file_url: string;
|
8563
|
+
extension_name: string;
|
8567
8564
|
}, {
|
8568
8565
|
id: string;
|
8569
8566
|
createdAt: Date;
|
8570
8567
|
updatedAt: Date;
|
8571
8568
|
deletedAt: Date | null;
|
8572
|
-
|
8573
|
-
|
8574
|
-
|
8575
|
-
|
8576
|
-
|
8577
|
-
|
8569
|
+
bucket_name: string;
|
8570
|
+
file_name: string;
|
8571
|
+
file_key: string;
|
8572
|
+
file_size: number;
|
8573
|
+
file_url: string;
|
8574
|
+
extension_name: string;
|
8578
8575
|
}>;
|
8579
8576
|
}, "strip", import("zod").ZodTypeAny, {
|
8580
8577
|
id: string;
|
@@ -8589,12 +8586,12 @@ export declare const mailContract: {
|
|
8589
8586
|
createdAt: Date;
|
8590
8587
|
updatedAt: Date;
|
8591
8588
|
deletedAt: Date | null;
|
8592
|
-
|
8593
|
-
|
8594
|
-
|
8595
|
-
|
8596
|
-
|
8597
|
-
|
8589
|
+
bucket_name: string;
|
8590
|
+
file_name: string;
|
8591
|
+
file_key: string;
|
8592
|
+
file_size: number;
|
8593
|
+
file_url: string;
|
8594
|
+
extension_name: string;
|
8598
8595
|
};
|
8599
8596
|
roomId: string;
|
8600
8597
|
messageId: string;
|
@@ -8612,12 +8609,12 @@ export declare const mailContract: {
|
|
8612
8609
|
createdAt: Date;
|
8613
8610
|
updatedAt: Date;
|
8614
8611
|
deletedAt: Date | null;
|
8615
|
-
|
8616
|
-
|
8617
|
-
|
8618
|
-
|
8619
|
-
|
8620
|
-
|
8612
|
+
bucket_name: string;
|
8613
|
+
file_name: string;
|
8614
|
+
file_key: string;
|
8615
|
+
file_size: number;
|
8616
|
+
file_url: string;
|
8617
|
+
extension_name: string;
|
8621
8618
|
};
|
8622
8619
|
roomId: string;
|
8623
8620
|
messageId: string;
|
@@ -8686,12 +8683,12 @@ export declare const mailContract: {
|
|
8686
8683
|
createdAt: Date;
|
8687
8684
|
updatedAt: Date;
|
8688
8685
|
deletedAt: Date | null;
|
8689
|
-
|
8690
|
-
|
8691
|
-
|
8692
|
-
|
8693
|
-
|
8694
|
-
|
8686
|
+
bucket_name: string;
|
8687
|
+
file_name: string;
|
8688
|
+
file_key: string;
|
8689
|
+
file_size: number;
|
8690
|
+
file_url: string;
|
8691
|
+
extension_name: string;
|
8695
8692
|
};
|
8696
8693
|
roomId: string;
|
8697
8694
|
messageId: string;
|
@@ -8760,12 +8757,12 @@ export declare const mailContract: {
|
|
8760
8757
|
createdAt: Date;
|
8761
8758
|
updatedAt: Date;
|
8762
8759
|
deletedAt: Date | null;
|
8763
|
-
|
8764
|
-
|
8765
|
-
|
8766
|
-
|
8767
|
-
|
8768
|
-
|
8760
|
+
bucket_name: string;
|
8761
|
+
file_name: string;
|
8762
|
+
file_key: string;
|
8763
|
+
file_size: number;
|
8764
|
+
file_url: string;
|
8765
|
+
extension_name: string;
|
8769
8766
|
};
|
8770
8767
|
roomId: string;
|
8771
8768
|
messageId: string;
|
@@ -8788,7 +8785,7 @@ export declare const mailContract: {
|
|
8788
8785
|
email: import("zod").ZodString;
|
8789
8786
|
address: import("zod").ZodNullable<import("zod").ZodString>;
|
8790
8787
|
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
8791
|
-
|
8788
|
+
notification_count: import("zod").ZodNullable<import("zod").ZodNumber>;
|
8792
8789
|
}, "strip", import("zod").ZodTypeAny, {
|
8793
8790
|
id: string;
|
8794
8791
|
address: string | null;
|
@@ -8798,7 +8795,7 @@ export declare const mailContract: {
|
|
8798
8795
|
updatedAt: Date;
|
8799
8796
|
deletedAt: Date | null;
|
8800
8797
|
phone: string | null;
|
8801
|
-
|
8798
|
+
notification_count: number | null;
|
8802
8799
|
}, {
|
8803
8800
|
id: string;
|
8804
8801
|
address: string | null;
|
@@ -8808,7 +8805,7 @@ export declare const mailContract: {
|
|
8808
8805
|
updatedAt: Date;
|
8809
8806
|
deletedAt: Date | null;
|
8810
8807
|
phone: string | null;
|
8811
|
-
|
8808
|
+
notification_count: number | null;
|
8812
8809
|
}>;
|
8813
8810
|
}, "strip", import("zod").ZodTypeAny, {
|
8814
8811
|
id: string;
|
@@ -8825,7 +8822,7 @@ export declare const mailContract: {
|
|
8825
8822
|
updatedAt: Date;
|
8826
8823
|
deletedAt: Date | null;
|
8827
8824
|
phone: string | null;
|
8828
|
-
|
8825
|
+
notification_count: number | null;
|
8829
8826
|
};
|
8830
8827
|
roomId: string;
|
8831
8828
|
actorId: string;
|
@@ -8844,7 +8841,7 @@ export declare const mailContract: {
|
|
8844
8841
|
updatedAt: Date;
|
8845
8842
|
deletedAt: Date | null;
|
8846
8843
|
phone: string | null;
|
8847
|
-
|
8844
|
+
notification_count: number | null;
|
8848
8845
|
};
|
8849
8846
|
roomId: string;
|
8850
8847
|
actorId: string;
|
@@ -8865,12 +8862,12 @@ export declare const mailContract: {
|
|
8865
8862
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
8866
8863
|
name: import("zod").ZodString;
|
8867
8864
|
smtpHost: import("zod").ZodString;
|
8868
|
-
smtpPort: import("zod").
|
8869
|
-
smtpTlsPort: import("zod").
|
8865
|
+
smtpPort: import("zod").ZodString;
|
8866
|
+
smtpTlsPort: import("zod").ZodString;
|
8870
8867
|
useTlsForSmtp: import("zod").ZodBoolean;
|
8871
8868
|
imapHost: import("zod").ZodString;
|
8872
|
-
imapPort: import("zod").
|
8873
|
-
imapTlsPort: import("zod").
|
8869
|
+
imapPort: import("zod").ZodString;
|
8870
|
+
imapTlsPort: import("zod").ZodString;
|
8874
8871
|
useTlsForImap: import("zod").ZodBoolean;
|
8875
8872
|
}, "strip", import("zod").ZodTypeAny, {
|
8876
8873
|
id: string;
|
@@ -8879,12 +8876,12 @@ export declare const mailContract: {
|
|
8879
8876
|
updatedAt: Date;
|
8880
8877
|
deletedAt: Date | null;
|
8881
8878
|
smtpHost: string;
|
8882
|
-
smtpPort:
|
8883
|
-
smtpTlsPort:
|
8879
|
+
smtpPort: string;
|
8880
|
+
smtpTlsPort: string;
|
8884
8881
|
useTlsForSmtp: boolean;
|
8885
8882
|
imapHost: string;
|
8886
|
-
imapPort:
|
8887
|
-
imapTlsPort:
|
8883
|
+
imapPort: string;
|
8884
|
+
imapTlsPort: string;
|
8888
8885
|
useTlsForImap: boolean;
|
8889
8886
|
}, {
|
8890
8887
|
id: string;
|
@@ -8893,12 +8890,12 @@ export declare const mailContract: {
|
|
8893
8890
|
updatedAt: Date;
|
8894
8891
|
deletedAt: Date | null;
|
8895
8892
|
smtpHost: string;
|
8896
|
-
smtpPort:
|
8897
|
-
smtpTlsPort:
|
8893
|
+
smtpPort: string;
|
8894
|
+
smtpTlsPort: string;
|
8898
8895
|
useTlsForSmtp: boolean;
|
8899
8896
|
imapHost: string;
|
8900
|
-
imapPort:
|
8901
|
-
imapTlsPort:
|
8897
|
+
imapPort: string;
|
8898
|
+
imapTlsPort: string;
|
8902
8899
|
useTlsForImap: boolean;
|
8903
8900
|
}>;
|
8904
8901
|
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">]>;
|
@@ -8919,12 +8916,12 @@ export declare const mailContract: {
|
|
8919
8916
|
updatedAt: Date;
|
8920
8917
|
deletedAt: Date | null;
|
8921
8918
|
smtpHost: string;
|
8922
|
-
smtpPort:
|
8923
|
-
smtpTlsPort:
|
8919
|
+
smtpPort: string;
|
8920
|
+
smtpTlsPort: string;
|
8924
8921
|
useTlsForSmtp: boolean;
|
8925
8922
|
imapHost: string;
|
8926
|
-
imapPort:
|
8927
|
-
imapTlsPort:
|
8923
|
+
imapPort: string;
|
8924
|
+
imapTlsPort: string;
|
8928
8925
|
useTlsForImap: boolean;
|
8929
8926
|
};
|
8930
8927
|
}, {
|
@@ -8944,12 +8941,12 @@ export declare const mailContract: {
|
|
8944
8941
|
updatedAt: Date;
|
8945
8942
|
deletedAt: Date | null;
|
8946
8943
|
smtpHost: string;
|
8947
|
-
smtpPort:
|
8948
|
-
smtpTlsPort:
|
8944
|
+
smtpPort: string;
|
8945
|
+
smtpTlsPort: string;
|
8949
8946
|
useTlsForSmtp: boolean;
|
8950
8947
|
imapHost: string;
|
8951
|
-
imapPort:
|
8952
|
-
imapTlsPort:
|
8948
|
+
imapPort: string;
|
8949
|
+
imapTlsPort: string;
|
8953
8950
|
useTlsForImap: boolean;
|
8954
8951
|
};
|
8955
8952
|
}>;
|
@@ -9032,12 +9029,12 @@ export declare const mailContract: {
|
|
9032
9029
|
createdAt: Date;
|
9033
9030
|
updatedAt: Date;
|
9034
9031
|
deletedAt: Date | null;
|
9035
|
-
|
9036
|
-
|
9037
|
-
|
9038
|
-
|
9039
|
-
|
9040
|
-
|
9032
|
+
bucket_name: string;
|
9033
|
+
file_name: string;
|
9034
|
+
file_key: string;
|
9035
|
+
file_size: number;
|
9036
|
+
file_url: string;
|
9037
|
+
extension_name: string;
|
9041
9038
|
};
|
9042
9039
|
roomId: string;
|
9043
9040
|
messageId: string;
|
@@ -9053,7 +9050,7 @@ export declare const mailContract: {
|
|
9053
9050
|
updatedAt: Date;
|
9054
9051
|
deletedAt: Date | null;
|
9055
9052
|
phone: string | null;
|
9056
|
-
|
9053
|
+
notification_count: number | null;
|
9057
9054
|
};
|
9058
9055
|
resolved: boolean;
|
9059
9056
|
assigneeId: string | null;
|
@@ -9156,12 +9153,12 @@ export declare const mailContract: {
|
|
9156
9153
|
createdAt: Date;
|
9157
9154
|
updatedAt: Date;
|
9158
9155
|
deletedAt: Date | null;
|
9159
|
-
|
9160
|
-
|
9161
|
-
|
9162
|
-
|
9163
|
-
|
9164
|
-
|
9156
|
+
bucket_name: string;
|
9157
|
+
file_name: string;
|
9158
|
+
file_key: string;
|
9159
|
+
file_size: number;
|
9160
|
+
file_url: string;
|
9161
|
+
extension_name: string;
|
9165
9162
|
};
|
9166
9163
|
roomId: string;
|
9167
9164
|
messageId: string;
|
@@ -9231,12 +9228,12 @@ export declare const mailContract: {
|
|
9231
9228
|
createdAt: Date;
|
9232
9229
|
updatedAt: Date;
|
9233
9230
|
deletedAt: Date | null;
|
9234
|
-
|
9235
|
-
|
9236
|
-
|
9237
|
-
|
9238
|
-
|
9239
|
-
|
9231
|
+
bucket_name: string;
|
9232
|
+
file_name: string;
|
9233
|
+
file_key: string;
|
9234
|
+
file_size: number;
|
9235
|
+
file_url: string;
|
9236
|
+
extension_name: string;
|
9240
9237
|
};
|
9241
9238
|
roomId: string;
|
9242
9239
|
messageId: string;
|
@@ -9306,12 +9303,12 @@ export declare const mailContract: {
|
|
9306
9303
|
createdAt: Date;
|
9307
9304
|
updatedAt: Date;
|
9308
9305
|
deletedAt: Date | null;
|
9309
|
-
|
9310
|
-
|
9311
|
-
|
9312
|
-
|
9313
|
-
|
9314
|
-
|
9306
|
+
bucket_name: string;
|
9307
|
+
file_name: string;
|
9308
|
+
file_key: string;
|
9309
|
+
file_size: number;
|
9310
|
+
file_url: string;
|
9311
|
+
extension_name: string;
|
9315
9312
|
};
|
9316
9313
|
roomId: string;
|
9317
9314
|
messageId: string;
|
@@ -9332,7 +9329,7 @@ export declare const mailContract: {
|
|
9332
9329
|
updatedAt: Date;
|
9333
9330
|
deletedAt: Date | null;
|
9334
9331
|
phone: string | null;
|
9335
|
-
|
9332
|
+
notification_count: number | null;
|
9336
9333
|
};
|
9337
9334
|
roomId: string;
|
9338
9335
|
actorId: string;
|
@@ -9354,12 +9351,12 @@ export declare const mailContract: {
|
|
9354
9351
|
updatedAt: Date;
|
9355
9352
|
deletedAt: Date | null;
|
9356
9353
|
smtpHost: string;
|
9357
|
-
smtpPort:
|
9358
|
-
smtpTlsPort:
|
9354
|
+
smtpPort: string;
|
9355
|
+
smtpTlsPort: string;
|
9359
9356
|
useTlsForSmtp: boolean;
|
9360
9357
|
imapHost: string;
|
9361
|
-
imapPort:
|
9362
|
-
imapTlsPort:
|
9358
|
+
imapPort: string;
|
9359
|
+
imapTlsPort: string;
|
9363
9360
|
useTlsForImap: boolean;
|
9364
9361
|
};
|
9365
9362
|
};
|
@@ -9442,12 +9439,12 @@ export declare const mailContract: {
|
|
9442
9439
|
createdAt: Date;
|
9443
9440
|
updatedAt: Date;
|
9444
9441
|
deletedAt: Date | null;
|
9445
|
-
|
9446
|
-
|
9447
|
-
|
9448
|
-
|
9449
|
-
|
9450
|
-
|
9442
|
+
bucket_name: string;
|
9443
|
+
file_name: string;
|
9444
|
+
file_key: string;
|
9445
|
+
file_size: number;
|
9446
|
+
file_url: string;
|
9447
|
+
extension_name: string;
|
9451
9448
|
};
|
9452
9449
|
roomId: string;
|
9453
9450
|
messageId: string;
|
@@ -9463,7 +9460,7 @@ export declare const mailContract: {
|
|
9463
9460
|
updatedAt: Date;
|
9464
9461
|
deletedAt: Date | null;
|
9465
9462
|
phone: string | null;
|
9466
|
-
|
9463
|
+
notification_count: number | null;
|
9467
9464
|
};
|
9468
9465
|
resolved: boolean;
|
9469
9466
|
assigneeId: string | null;
|
@@ -9566,12 +9563,12 @@ export declare const mailContract: {
|
|
9566
9563
|
createdAt: Date;
|
9567
9564
|
updatedAt: Date;
|
9568
9565
|
deletedAt: Date | null;
|
9569
|
-
|
9570
|
-
|
9571
|
-
|
9572
|
-
|
9573
|
-
|
9574
|
-
|
9566
|
+
bucket_name: string;
|
9567
|
+
file_name: string;
|
9568
|
+
file_key: string;
|
9569
|
+
file_size: number;
|
9570
|
+
file_url: string;
|
9571
|
+
extension_name: string;
|
9575
9572
|
};
|
9576
9573
|
roomId: string;
|
9577
9574
|
messageId: string;
|
@@ -9641,12 +9638,12 @@ export declare const mailContract: {
|
|
9641
9638
|
createdAt: Date;
|
9642
9639
|
updatedAt: Date;
|
9643
9640
|
deletedAt: Date | null;
|
9644
|
-
|
9645
|
-
|
9646
|
-
|
9647
|
-
|
9648
|
-
|
9649
|
-
|
9641
|
+
bucket_name: string;
|
9642
|
+
file_name: string;
|
9643
|
+
file_key: string;
|
9644
|
+
file_size: number;
|
9645
|
+
file_url: string;
|
9646
|
+
extension_name: string;
|
9650
9647
|
};
|
9651
9648
|
roomId: string;
|
9652
9649
|
messageId: string;
|
@@ -9716,12 +9713,12 @@ export declare const mailContract: {
|
|
9716
9713
|
createdAt: Date;
|
9717
9714
|
updatedAt: Date;
|
9718
9715
|
deletedAt: Date | null;
|
9719
|
-
|
9720
|
-
|
9721
|
-
|
9722
|
-
|
9723
|
-
|
9724
|
-
|
9716
|
+
bucket_name: string;
|
9717
|
+
file_name: string;
|
9718
|
+
file_key: string;
|
9719
|
+
file_size: number;
|
9720
|
+
file_url: string;
|
9721
|
+
extension_name: string;
|
9725
9722
|
};
|
9726
9723
|
roomId: string;
|
9727
9724
|
messageId: string;
|
@@ -9742,7 +9739,7 @@ export declare const mailContract: {
|
|
9742
9739
|
updatedAt: Date;
|
9743
9740
|
deletedAt: Date | null;
|
9744
9741
|
phone: string | null;
|
9745
|
-
|
9742
|
+
notification_count: number | null;
|
9746
9743
|
};
|
9747
9744
|
roomId: string;
|
9748
9745
|
actorId: string;
|
@@ -9764,12 +9761,12 @@ export declare const mailContract: {
|
|
9764
9761
|
updatedAt: Date;
|
9765
9762
|
deletedAt: Date | null;
|
9766
9763
|
smtpHost: string;
|
9767
|
-
smtpPort:
|
9768
|
-
smtpTlsPort:
|
9764
|
+
smtpPort: string;
|
9765
|
+
smtpTlsPort: string;
|
9769
9766
|
useTlsForSmtp: boolean;
|
9770
9767
|
imapHost: string;
|
9771
|
-
imapPort:
|
9772
|
-
imapTlsPort:
|
9768
|
+
imapPort: string;
|
9769
|
+
imapTlsPort: string;
|
9773
9770
|
useTlsForImap: boolean;
|
9774
9771
|
};
|
9775
9772
|
};
|
@@ -9854,12 +9851,12 @@ export declare const mailContract: {
|
|
9854
9851
|
createdAt: Date;
|
9855
9852
|
updatedAt: Date;
|
9856
9853
|
deletedAt: Date | null;
|
9857
|
-
|
9858
|
-
|
9859
|
-
|
9860
|
-
|
9861
|
-
|
9862
|
-
|
9854
|
+
bucket_name: string;
|
9855
|
+
file_name: string;
|
9856
|
+
file_key: string;
|
9857
|
+
file_size: number;
|
9858
|
+
file_url: string;
|
9859
|
+
extension_name: string;
|
9863
9860
|
};
|
9864
9861
|
roomId: string;
|
9865
9862
|
messageId: string;
|
@@ -9875,7 +9872,7 @@ export declare const mailContract: {
|
|
9875
9872
|
updatedAt: Date;
|
9876
9873
|
deletedAt: Date | null;
|
9877
9874
|
phone: string | null;
|
9878
|
-
|
9875
|
+
notification_count: number | null;
|
9879
9876
|
};
|
9880
9877
|
resolved: boolean;
|
9881
9878
|
assigneeId: string | null;
|
@@ -9978,12 +9975,12 @@ export declare const mailContract: {
|
|
9978
9975
|
createdAt: Date;
|
9979
9976
|
updatedAt: Date;
|
9980
9977
|
deletedAt: Date | null;
|
9981
|
-
|
9982
|
-
|
9983
|
-
|
9984
|
-
|
9985
|
-
|
9986
|
-
|
9978
|
+
bucket_name: string;
|
9979
|
+
file_name: string;
|
9980
|
+
file_key: string;
|
9981
|
+
file_size: number;
|
9982
|
+
file_url: string;
|
9983
|
+
extension_name: string;
|
9987
9984
|
};
|
9988
9985
|
roomId: string;
|
9989
9986
|
messageId: string;
|
@@ -10053,12 +10050,12 @@ export declare const mailContract: {
|
|
10053
10050
|
createdAt: Date;
|
10054
10051
|
updatedAt: Date;
|
10055
10052
|
deletedAt: Date | null;
|
10056
|
-
|
10057
|
-
|
10058
|
-
|
10059
|
-
|
10060
|
-
|
10061
|
-
|
10053
|
+
bucket_name: string;
|
10054
|
+
file_name: string;
|
10055
|
+
file_key: string;
|
10056
|
+
file_size: number;
|
10057
|
+
file_url: string;
|
10058
|
+
extension_name: string;
|
10062
10059
|
};
|
10063
10060
|
roomId: string;
|
10064
10061
|
messageId: string;
|
@@ -10128,12 +10125,12 @@ export declare const mailContract: {
|
|
10128
10125
|
createdAt: Date;
|
10129
10126
|
updatedAt: Date;
|
10130
10127
|
deletedAt: Date | null;
|
10131
|
-
|
10132
|
-
|
10133
|
-
|
10134
|
-
|
10135
|
-
|
10136
|
-
|
10128
|
+
bucket_name: string;
|
10129
|
+
file_name: string;
|
10130
|
+
file_key: string;
|
10131
|
+
file_size: number;
|
10132
|
+
file_url: string;
|
10133
|
+
extension_name: string;
|
10137
10134
|
};
|
10138
10135
|
roomId: string;
|
10139
10136
|
messageId: string;
|
@@ -10154,7 +10151,7 @@ export declare const mailContract: {
|
|
10154
10151
|
updatedAt: Date;
|
10155
10152
|
deletedAt: Date | null;
|
10156
10153
|
phone: string | null;
|
10157
|
-
|
10154
|
+
notification_count: number | null;
|
10158
10155
|
};
|
10159
10156
|
roomId: string;
|
10160
10157
|
actorId: string;
|
@@ -10176,12 +10173,12 @@ export declare const mailContract: {
|
|
10176
10173
|
updatedAt: Date;
|
10177
10174
|
deletedAt: Date | null;
|
10178
10175
|
smtpHost: string;
|
10179
|
-
smtpPort:
|
10180
|
-
smtpTlsPort:
|
10176
|
+
smtpPort: string;
|
10177
|
+
smtpTlsPort: string;
|
10181
10178
|
useTlsForSmtp: boolean;
|
10182
10179
|
imapHost: string;
|
10183
|
-
imapPort:
|
10184
|
-
imapTlsPort:
|
10180
|
+
imapPort: string;
|
10181
|
+
imapTlsPort: string;
|
10185
10182
|
useTlsForImap: boolean;
|
10186
10183
|
};
|
10187
10184
|
};
|
@@ -10267,12 +10264,12 @@ export declare const mailContract: {
|
|
10267
10264
|
createdAt: Date;
|
10268
10265
|
updatedAt: Date;
|
10269
10266
|
deletedAt: Date | null;
|
10270
|
-
|
10271
|
-
|
10272
|
-
|
10273
|
-
|
10274
|
-
|
10275
|
-
|
10267
|
+
bucket_name: string;
|
10268
|
+
file_name: string;
|
10269
|
+
file_key: string;
|
10270
|
+
file_size: number;
|
10271
|
+
file_url: string;
|
10272
|
+
extension_name: string;
|
10276
10273
|
};
|
10277
10274
|
roomId: string;
|
10278
10275
|
messageId: string;
|
@@ -10288,7 +10285,7 @@ export declare const mailContract: {
|
|
10288
10285
|
updatedAt: Date;
|
10289
10286
|
deletedAt: Date | null;
|
10290
10287
|
phone: string | null;
|
10291
|
-
|
10288
|
+
notification_count: number | null;
|
10292
10289
|
};
|
10293
10290
|
resolved: boolean;
|
10294
10291
|
assigneeId: string | null;
|
@@ -10391,12 +10388,12 @@ export declare const mailContract: {
|
|
10391
10388
|
createdAt: Date;
|
10392
10389
|
updatedAt: Date;
|
10393
10390
|
deletedAt: Date | null;
|
10394
|
-
|
10395
|
-
|
10396
|
-
|
10397
|
-
|
10398
|
-
|
10399
|
-
|
10391
|
+
bucket_name: string;
|
10392
|
+
file_name: string;
|
10393
|
+
file_key: string;
|
10394
|
+
file_size: number;
|
10395
|
+
file_url: string;
|
10396
|
+
extension_name: string;
|
10400
10397
|
};
|
10401
10398
|
roomId: string;
|
10402
10399
|
messageId: string;
|
@@ -10466,12 +10463,12 @@ export declare const mailContract: {
|
|
10466
10463
|
createdAt: Date;
|
10467
10464
|
updatedAt: Date;
|
10468
10465
|
deletedAt: Date | null;
|
10469
|
-
|
10470
|
-
|
10471
|
-
|
10472
|
-
|
10473
|
-
|
10474
|
-
|
10466
|
+
bucket_name: string;
|
10467
|
+
file_name: string;
|
10468
|
+
file_key: string;
|
10469
|
+
file_size: number;
|
10470
|
+
file_url: string;
|
10471
|
+
extension_name: string;
|
10475
10472
|
};
|
10476
10473
|
roomId: string;
|
10477
10474
|
messageId: string;
|
@@ -10541,12 +10538,12 @@ export declare const mailContract: {
|
|
10541
10538
|
createdAt: Date;
|
10542
10539
|
updatedAt: Date;
|
10543
10540
|
deletedAt: Date | null;
|
10544
|
-
|
10545
|
-
|
10546
|
-
|
10547
|
-
|
10548
|
-
|
10549
|
-
|
10541
|
+
bucket_name: string;
|
10542
|
+
file_name: string;
|
10543
|
+
file_key: string;
|
10544
|
+
file_size: number;
|
10545
|
+
file_url: string;
|
10546
|
+
extension_name: string;
|
10550
10547
|
};
|
10551
10548
|
roomId: string;
|
10552
10549
|
messageId: string;
|
@@ -10567,7 +10564,7 @@ export declare const mailContract: {
|
|
10567
10564
|
updatedAt: Date;
|
10568
10565
|
deletedAt: Date | null;
|
10569
10566
|
phone: string | null;
|
10570
|
-
|
10567
|
+
notification_count: number | null;
|
10571
10568
|
};
|
10572
10569
|
roomId: string;
|
10573
10570
|
actorId: string;
|
@@ -10589,12 +10586,12 @@ export declare const mailContract: {
|
|
10589
10586
|
updatedAt: Date;
|
10590
10587
|
deletedAt: Date | null;
|
10591
10588
|
smtpHost: string;
|
10592
|
-
smtpPort:
|
10593
|
-
smtpTlsPort:
|
10589
|
+
smtpPort: string;
|
10590
|
+
smtpTlsPort: string;
|
10594
10591
|
useTlsForSmtp: boolean;
|
10595
10592
|
imapHost: string;
|
10596
|
-
imapPort:
|
10597
|
-
imapTlsPort:
|
10593
|
+
imapPort: string;
|
10594
|
+
imapTlsPort: string;
|
10598
10595
|
useTlsForImap: boolean;
|
10599
10596
|
};
|
10600
10597
|
};
|
@@ -11049,34 +11046,34 @@ export declare const mailContract: {
|
|
11049
11046
|
createdAt: import("zod").ZodDate;
|
11050
11047
|
updatedAt: import("zod").ZodDate;
|
11051
11048
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
11052
|
-
|
11053
|
-
|
11054
|
-
|
11055
|
-
|
11056
|
-
|
11057
|
-
|
11049
|
+
bucket_name: import("zod").ZodString;
|
11050
|
+
file_name: import("zod").ZodString;
|
11051
|
+
file_key: import("zod").ZodString;
|
11052
|
+
file_size: import("zod").ZodNumber;
|
11053
|
+
file_url: import("zod").ZodString;
|
11054
|
+
extension_name: import("zod").ZodString;
|
11058
11055
|
}, "strip", import("zod").ZodTypeAny, {
|
11059
11056
|
id: string;
|
11060
11057
|
createdAt: Date;
|
11061
11058
|
updatedAt: Date;
|
11062
11059
|
deletedAt: Date | null;
|
11063
|
-
|
11064
|
-
|
11065
|
-
|
11066
|
-
|
11067
|
-
|
11068
|
-
|
11060
|
+
bucket_name: string;
|
11061
|
+
file_name: string;
|
11062
|
+
file_key: string;
|
11063
|
+
file_size: number;
|
11064
|
+
file_url: string;
|
11065
|
+
extension_name: string;
|
11069
11066
|
}, {
|
11070
11067
|
id: string;
|
11071
11068
|
createdAt: Date;
|
11072
11069
|
updatedAt: Date;
|
11073
11070
|
deletedAt: Date | null;
|
11074
|
-
|
11075
|
-
|
11076
|
-
|
11077
|
-
|
11078
|
-
|
11079
|
-
|
11071
|
+
bucket_name: string;
|
11072
|
+
file_name: string;
|
11073
|
+
file_key: string;
|
11074
|
+
file_size: number;
|
11075
|
+
file_url: string;
|
11076
|
+
extension_name: string;
|
11080
11077
|
}>;
|
11081
11078
|
}, "strip", import("zod").ZodTypeAny, {
|
11082
11079
|
id: string;
|
@@ -11091,12 +11088,12 @@ export declare const mailContract: {
|
|
11091
11088
|
createdAt: Date;
|
11092
11089
|
updatedAt: Date;
|
11093
11090
|
deletedAt: Date | null;
|
11094
|
-
|
11095
|
-
|
11096
|
-
|
11097
|
-
|
11098
|
-
|
11099
|
-
|
11091
|
+
bucket_name: string;
|
11092
|
+
file_name: string;
|
11093
|
+
file_key: string;
|
11094
|
+
file_size: number;
|
11095
|
+
file_url: string;
|
11096
|
+
extension_name: string;
|
11100
11097
|
};
|
11101
11098
|
roomId: string;
|
11102
11099
|
messageId: string;
|
@@ -11114,12 +11111,12 @@ export declare const mailContract: {
|
|
11114
11111
|
createdAt: Date;
|
11115
11112
|
updatedAt: Date;
|
11116
11113
|
deletedAt: Date | null;
|
11117
|
-
|
11118
|
-
|
11119
|
-
|
11120
|
-
|
11121
|
-
|
11122
|
-
|
11114
|
+
bucket_name: string;
|
11115
|
+
file_name: string;
|
11116
|
+
file_key: string;
|
11117
|
+
file_size: number;
|
11118
|
+
file_url: string;
|
11119
|
+
extension_name: string;
|
11123
11120
|
};
|
11124
11121
|
roomId: string;
|
11125
11122
|
messageId: string;
|
@@ -11188,12 +11185,12 @@ export declare const mailContract: {
|
|
11188
11185
|
createdAt: Date;
|
11189
11186
|
updatedAt: Date;
|
11190
11187
|
deletedAt: Date | null;
|
11191
|
-
|
11192
|
-
|
11193
|
-
|
11194
|
-
|
11195
|
-
|
11196
|
-
|
11188
|
+
bucket_name: string;
|
11189
|
+
file_name: string;
|
11190
|
+
file_key: string;
|
11191
|
+
file_size: number;
|
11192
|
+
file_url: string;
|
11193
|
+
extension_name: string;
|
11197
11194
|
};
|
11198
11195
|
roomId: string;
|
11199
11196
|
messageId: string;
|
@@ -11262,12 +11259,12 @@ export declare const mailContract: {
|
|
11262
11259
|
createdAt: Date;
|
11263
11260
|
updatedAt: Date;
|
11264
11261
|
deletedAt: Date | null;
|
11265
|
-
|
11266
|
-
|
11267
|
-
|
11268
|
-
|
11269
|
-
|
11270
|
-
|
11262
|
+
bucket_name: string;
|
11263
|
+
file_name: string;
|
11264
|
+
file_key: string;
|
11265
|
+
file_size: number;
|
11266
|
+
file_url: string;
|
11267
|
+
extension_name: string;
|
11271
11268
|
};
|
11272
11269
|
roomId: string;
|
11273
11270
|
messageId: string;
|
@@ -11338,12 +11335,12 @@ export declare const mailContract: {
|
|
11338
11335
|
createdAt: Date;
|
11339
11336
|
updatedAt: Date;
|
11340
11337
|
deletedAt: Date | null;
|
11341
|
-
|
11342
|
-
|
11343
|
-
|
11344
|
-
|
11345
|
-
|
11346
|
-
|
11338
|
+
bucket_name: string;
|
11339
|
+
file_name: string;
|
11340
|
+
file_key: string;
|
11341
|
+
file_size: number;
|
11342
|
+
file_url: string;
|
11343
|
+
extension_name: string;
|
11347
11344
|
};
|
11348
11345
|
roomId: string;
|
11349
11346
|
messageId: string;
|
@@ -11415,12 +11412,12 @@ export declare const mailContract: {
|
|
11415
11412
|
createdAt: Date;
|
11416
11413
|
updatedAt: Date;
|
11417
11414
|
deletedAt: Date | null;
|
11418
|
-
|
11419
|
-
|
11420
|
-
|
11421
|
-
|
11422
|
-
|
11423
|
-
|
11415
|
+
bucket_name: string;
|
11416
|
+
file_name: string;
|
11417
|
+
file_key: string;
|
11418
|
+
file_size: number;
|
11419
|
+
file_url: string;
|
11420
|
+
extension_name: string;
|
11424
11421
|
};
|
11425
11422
|
roomId: string;
|
11426
11423
|
messageId: string;
|
@@ -11593,12 +11590,12 @@ export declare const mailContract: {
|
|
11593
11590
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
11594
11591
|
name: import("zod").ZodString;
|
11595
11592
|
smtpHost: import("zod").ZodString;
|
11596
|
-
smtpPort: import("zod").
|
11597
|
-
smtpTlsPort: import("zod").
|
11593
|
+
smtpPort: import("zod").ZodString;
|
11594
|
+
smtpTlsPort: import("zod").ZodString;
|
11598
11595
|
useTlsForSmtp: import("zod").ZodBoolean;
|
11599
11596
|
imapHost: import("zod").ZodString;
|
11600
|
-
imapPort: import("zod").
|
11601
|
-
imapTlsPort: import("zod").
|
11597
|
+
imapPort: import("zod").ZodString;
|
11598
|
+
imapTlsPort: import("zod").ZodString;
|
11602
11599
|
useTlsForImap: import("zod").ZodBoolean;
|
11603
11600
|
}, "strip", import("zod").ZodTypeAny, {
|
11604
11601
|
id: string;
|
@@ -11607,12 +11604,12 @@ export declare const mailContract: {
|
|
11607
11604
|
updatedAt: Date;
|
11608
11605
|
deletedAt: Date | null;
|
11609
11606
|
smtpHost: string;
|
11610
|
-
smtpPort:
|
11611
|
-
smtpTlsPort:
|
11607
|
+
smtpPort: string;
|
11608
|
+
smtpTlsPort: string;
|
11612
11609
|
useTlsForSmtp: boolean;
|
11613
11610
|
imapHost: string;
|
11614
|
-
imapPort:
|
11615
|
-
imapTlsPort:
|
11611
|
+
imapPort: string;
|
11612
|
+
imapTlsPort: string;
|
11616
11613
|
useTlsForImap: boolean;
|
11617
11614
|
}, {
|
11618
11615
|
id: string;
|
@@ -11621,12 +11618,12 @@ export declare const mailContract: {
|
|
11621
11618
|
updatedAt: Date;
|
11622
11619
|
deletedAt: Date | null;
|
11623
11620
|
smtpHost: string;
|
11624
|
-
smtpPort:
|
11625
|
-
smtpTlsPort:
|
11621
|
+
smtpPort: string;
|
11622
|
+
smtpTlsPort: string;
|
11626
11623
|
useTlsForSmtp: boolean;
|
11627
11624
|
imapHost: string;
|
11628
|
-
imapPort:
|
11629
|
-
imapTlsPort:
|
11625
|
+
imapPort: string;
|
11626
|
+
imapTlsPort: string;
|
11630
11627
|
useTlsForImap: boolean;
|
11631
11628
|
}>;
|
11632
11629
|
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">]>;
|
@@ -11647,12 +11644,12 @@ export declare const mailContract: {
|
|
11647
11644
|
updatedAt: Date;
|
11648
11645
|
deletedAt: Date | null;
|
11649
11646
|
smtpHost: string;
|
11650
|
-
smtpPort:
|
11651
|
-
smtpTlsPort:
|
11647
|
+
smtpPort: string;
|
11648
|
+
smtpTlsPort: string;
|
11652
11649
|
useTlsForSmtp: boolean;
|
11653
11650
|
imapHost: string;
|
11654
|
-
imapPort:
|
11655
|
-
imapTlsPort:
|
11651
|
+
imapPort: string;
|
11652
|
+
imapTlsPort: string;
|
11656
11653
|
useTlsForImap: boolean;
|
11657
11654
|
};
|
11658
11655
|
}, {
|
@@ -11672,12 +11669,12 @@ export declare const mailContract: {
|
|
11672
11669
|
updatedAt: Date;
|
11673
11670
|
deletedAt: Date | null;
|
11674
11671
|
smtpHost: string;
|
11675
|
-
smtpPort:
|
11676
|
-
smtpTlsPort:
|
11672
|
+
smtpPort: string;
|
11673
|
+
smtpTlsPort: string;
|
11677
11674
|
useTlsForSmtp: boolean;
|
11678
11675
|
imapHost: string;
|
11679
|
-
imapPort:
|
11680
|
-
imapTlsPort:
|
11676
|
+
imapPort: string;
|
11677
|
+
imapTlsPort: string;
|
11681
11678
|
useTlsForImap: boolean;
|
11682
11679
|
};
|
11683
11680
|
}>;
|
@@ -11699,12 +11696,12 @@ export declare const mailContract: {
|
|
11699
11696
|
updatedAt: Date;
|
11700
11697
|
deletedAt: Date | null;
|
11701
11698
|
smtpHost: string;
|
11702
|
-
smtpPort:
|
11703
|
-
smtpTlsPort:
|
11699
|
+
smtpPort: string;
|
11700
|
+
smtpTlsPort: string;
|
11704
11701
|
useTlsForSmtp: boolean;
|
11705
11702
|
imapHost: string;
|
11706
|
-
imapPort:
|
11707
|
-
imapTlsPort:
|
11703
|
+
imapPort: string;
|
11704
|
+
imapTlsPort: string;
|
11708
11705
|
useTlsForImap: boolean;
|
11709
11706
|
};
|
11710
11707
|
};
|
@@ -11727,12 +11724,12 @@ export declare const mailContract: {
|
|
11727
11724
|
updatedAt: Date;
|
11728
11725
|
deletedAt: Date | null;
|
11729
11726
|
smtpHost: string;
|
11730
|
-
smtpPort:
|
11731
|
-
smtpTlsPort:
|
11727
|
+
smtpPort: string;
|
11728
|
+
smtpTlsPort: string;
|
11732
11729
|
useTlsForSmtp: boolean;
|
11733
11730
|
imapHost: string;
|
11734
|
-
imapPort:
|
11735
|
-
imapTlsPort:
|
11731
|
+
imapPort: string;
|
11732
|
+
imapTlsPort: string;
|
11736
11733
|
useTlsForImap: boolean;
|
11737
11734
|
};
|
11738
11735
|
};
|
@@ -11758,7 +11755,7 @@ export declare const mailContract: {
|
|
11758
11755
|
}>>>;
|
11759
11756
|
};
|
11760
11757
|
getAll: {
|
11761
|
-
summary: "Get
|
11758
|
+
summary: "Get al accounts";
|
11762
11759
|
method: "GET";
|
11763
11760
|
responses: {
|
11764
11761
|
401: import("zod").ZodObject<{
|
@@ -11793,166 +11790,13 @@ export declare const mailContract: {
|
|
11793
11790
|
}>;
|
11794
11791
|
200: import("zod").ZodObject<{
|
11795
11792
|
requestId: import("zod").ZodString;
|
11796
|
-
data: import("zod").
|
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">;
|
11793
|
+
data: import("zod").ZodAny;
|
11900
11794
|
}, "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
|
-
}[];
|
11927
11795
|
requestId: string;
|
11796
|
+
data?: any;
|
11928
11797
|
}, {
|
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
|
-
}[];
|
11955
11798
|
requestId: string;
|
11799
|
+
data?: any;
|
11956
11800
|
}>;
|
11957
11801
|
};
|
11958
11802
|
path: "mail/account";
|
@@ -11990,12 +11834,12 @@ export declare const mailContract: {
|
|
11990
11834
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
11991
11835
|
name: import("zod").ZodString;
|
11992
11836
|
smtpHost: import("zod").ZodString;
|
11993
|
-
smtpPort: import("zod").
|
11994
|
-
smtpTlsPort: import("zod").
|
11837
|
+
smtpPort: import("zod").ZodString;
|
11838
|
+
smtpTlsPort: import("zod").ZodString;
|
11995
11839
|
useTlsForSmtp: import("zod").ZodBoolean;
|
11996
11840
|
imapHost: import("zod").ZodString;
|
11997
|
-
imapPort: import("zod").
|
11998
|
-
imapTlsPort: import("zod").
|
11841
|
+
imapPort: import("zod").ZodString;
|
11842
|
+
imapTlsPort: import("zod").ZodString;
|
11999
11843
|
useTlsForImap: import("zod").ZodBoolean;
|
12000
11844
|
}, "strip", import("zod").ZodTypeAny, {
|
12001
11845
|
id: string;
|
@@ -12004,12 +11848,12 @@ export declare const mailContract: {
|
|
12004
11848
|
updatedAt: Date;
|
12005
11849
|
deletedAt: Date | null;
|
12006
11850
|
smtpHost: string;
|
12007
|
-
smtpPort:
|
12008
|
-
smtpTlsPort:
|
11851
|
+
smtpPort: string;
|
11852
|
+
smtpTlsPort: string;
|
12009
11853
|
useTlsForSmtp: boolean;
|
12010
11854
|
imapHost: string;
|
12011
|
-
imapPort:
|
12012
|
-
imapTlsPort:
|
11855
|
+
imapPort: string;
|
11856
|
+
imapTlsPort: string;
|
12013
11857
|
useTlsForImap: boolean;
|
12014
11858
|
}, {
|
12015
11859
|
id: string;
|
@@ -12018,12 +11862,12 @@ export declare const mailContract: {
|
|
12018
11862
|
updatedAt: Date;
|
12019
11863
|
deletedAt: Date | null;
|
12020
11864
|
smtpHost: string;
|
12021
|
-
smtpPort:
|
12022
|
-
smtpTlsPort:
|
11865
|
+
smtpPort: string;
|
11866
|
+
smtpTlsPort: string;
|
12023
11867
|
useTlsForSmtp: boolean;
|
12024
11868
|
imapHost: string;
|
12025
|
-
imapPort:
|
12026
|
-
imapTlsPort:
|
11869
|
+
imapPort: string;
|
11870
|
+
imapTlsPort: string;
|
12027
11871
|
useTlsForImap: boolean;
|
12028
11872
|
}>>;
|
12029
11873
|
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">]>>;
|
@@ -12043,12 +11887,12 @@ export declare const mailContract: {
|
|
12043
11887
|
updatedAt: Date;
|
12044
11888
|
deletedAt: Date | null;
|
12045
11889
|
smtpHost: string;
|
12046
|
-
smtpPort:
|
12047
|
-
smtpTlsPort:
|
11890
|
+
smtpPort: string;
|
11891
|
+
smtpTlsPort: string;
|
12048
11892
|
useTlsForSmtp: boolean;
|
12049
11893
|
imapHost: string;
|
12050
|
-
imapPort:
|
12051
|
-
imapTlsPort:
|
11894
|
+
imapPort: string;
|
11895
|
+
imapTlsPort: string;
|
12052
11896
|
useTlsForImap: boolean;
|
12053
11897
|
} | undefined;
|
12054
11898
|
state?: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset" | undefined;
|
@@ -12068,12 +11912,12 @@ export declare const mailContract: {
|
|
12068
11912
|
updatedAt: Date;
|
12069
11913
|
deletedAt: Date | null;
|
12070
11914
|
smtpHost: string;
|
12071
|
-
smtpPort:
|
12072
|
-
smtpTlsPort:
|
11915
|
+
smtpPort: string;
|
11916
|
+
smtpTlsPort: string;
|
12073
11917
|
useTlsForSmtp: boolean;
|
12074
11918
|
imapHost: string;
|
12075
|
-
imapPort:
|
12076
|
-
imapTlsPort:
|
11919
|
+
imapPort: string;
|
11920
|
+
imapTlsPort: string;
|
12077
11921
|
useTlsForImap: boolean;
|
12078
11922
|
} | undefined;
|
12079
11923
|
state?: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset" | undefined;
|
@@ -12136,12 +11980,12 @@ export declare const mailContract: {
|
|
12136
11980
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12137
11981
|
name: import("zod").ZodString;
|
12138
11982
|
smtpHost: import("zod").ZodString;
|
12139
|
-
smtpPort: import("zod").
|
12140
|
-
smtpTlsPort: import("zod").
|
11983
|
+
smtpPort: import("zod").ZodString;
|
11984
|
+
smtpTlsPort: import("zod").ZodString;
|
12141
11985
|
useTlsForSmtp: import("zod").ZodBoolean;
|
12142
11986
|
imapHost: import("zod").ZodString;
|
12143
|
-
imapPort: import("zod").
|
12144
|
-
imapTlsPort: import("zod").
|
11987
|
+
imapPort: import("zod").ZodString;
|
11988
|
+
imapTlsPort: import("zod").ZodString;
|
12145
11989
|
useTlsForImap: import("zod").ZodBoolean;
|
12146
11990
|
}, "strip", import("zod").ZodTypeAny, {
|
12147
11991
|
id: string;
|
@@ -12150,12 +11994,12 @@ export declare const mailContract: {
|
|
12150
11994
|
updatedAt: Date;
|
12151
11995
|
deletedAt: Date | null;
|
12152
11996
|
smtpHost: string;
|
12153
|
-
smtpPort:
|
12154
|
-
smtpTlsPort:
|
11997
|
+
smtpPort: string;
|
11998
|
+
smtpTlsPort: string;
|
12155
11999
|
useTlsForSmtp: boolean;
|
12156
12000
|
imapHost: string;
|
12157
|
-
imapPort:
|
12158
|
-
imapTlsPort:
|
12001
|
+
imapPort: string;
|
12002
|
+
imapTlsPort: string;
|
12159
12003
|
useTlsForImap: boolean;
|
12160
12004
|
}, {
|
12161
12005
|
id: string;
|
@@ -12164,12 +12008,12 @@ export declare const mailContract: {
|
|
12164
12008
|
updatedAt: Date;
|
12165
12009
|
deletedAt: Date | null;
|
12166
12010
|
smtpHost: string;
|
12167
|
-
smtpPort:
|
12168
|
-
smtpTlsPort:
|
12011
|
+
smtpPort: string;
|
12012
|
+
smtpTlsPort: string;
|
12169
12013
|
useTlsForSmtp: boolean;
|
12170
12014
|
imapHost: string;
|
12171
|
-
imapPort:
|
12172
|
-
imapTlsPort:
|
12015
|
+
imapPort: string;
|
12016
|
+
imapTlsPort: string;
|
12173
12017
|
useTlsForImap: boolean;
|
12174
12018
|
}>;
|
12175
12019
|
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">]>;
|
@@ -12190,12 +12034,12 @@ export declare const mailContract: {
|
|
12190
12034
|
updatedAt: Date;
|
12191
12035
|
deletedAt: Date | null;
|
12192
12036
|
smtpHost: string;
|
12193
|
-
smtpPort:
|
12194
|
-
smtpTlsPort:
|
12037
|
+
smtpPort: string;
|
12038
|
+
smtpTlsPort: string;
|
12195
12039
|
useTlsForSmtp: boolean;
|
12196
12040
|
imapHost: string;
|
12197
|
-
imapPort:
|
12198
|
-
imapTlsPort:
|
12041
|
+
imapPort: string;
|
12042
|
+
imapTlsPort: string;
|
12199
12043
|
useTlsForImap: boolean;
|
12200
12044
|
};
|
12201
12045
|
}, {
|
@@ -12215,12 +12059,12 @@ export declare const mailContract: {
|
|
12215
12059
|
updatedAt: Date;
|
12216
12060
|
deletedAt: Date | null;
|
12217
12061
|
smtpHost: string;
|
12218
|
-
smtpPort:
|
12219
|
-
smtpTlsPort:
|
12062
|
+
smtpPort: string;
|
12063
|
+
smtpTlsPort: string;
|
12220
12064
|
useTlsForSmtp: boolean;
|
12221
12065
|
imapHost: string;
|
12222
|
-
imapPort:
|
12223
|
-
imapTlsPort:
|
12066
|
+
imapPort: string;
|
12067
|
+
imapTlsPort: string;
|
12224
12068
|
useTlsForImap: boolean;
|
12225
12069
|
};
|
12226
12070
|
}>;
|
@@ -12242,12 +12086,12 @@ export declare const mailContract: {
|
|
12242
12086
|
updatedAt: Date;
|
12243
12087
|
deletedAt: Date | null;
|
12244
12088
|
smtpHost: string;
|
12245
|
-
smtpPort:
|
12246
|
-
smtpTlsPort:
|
12089
|
+
smtpPort: string;
|
12090
|
+
smtpTlsPort: string;
|
12247
12091
|
useTlsForSmtp: boolean;
|
12248
12092
|
imapHost: string;
|
12249
|
-
imapPort:
|
12250
|
-
imapTlsPort:
|
12093
|
+
imapPort: string;
|
12094
|
+
imapTlsPort: string;
|
12251
12095
|
useTlsForImap: boolean;
|
12252
12096
|
};
|
12253
12097
|
};
|
@@ -12270,12 +12114,12 @@ export declare const mailContract: {
|
|
12270
12114
|
updatedAt: Date;
|
12271
12115
|
deletedAt: Date | null;
|
12272
12116
|
smtpHost: string;
|
12273
|
-
smtpPort:
|
12274
|
-
smtpTlsPort:
|
12117
|
+
smtpPort: string;
|
12118
|
+
smtpTlsPort: string;
|
12275
12119
|
useTlsForSmtp: boolean;
|
12276
12120
|
imapHost: string;
|
12277
|
-
imapPort:
|
12278
|
-
imapTlsPort:
|
12121
|
+
imapPort: string;
|
12122
|
+
imapTlsPort: string;
|
12279
12123
|
useTlsForImap: boolean;
|
12280
12124
|
};
|
12281
12125
|
};
|
@@ -12360,12 +12204,12 @@ export declare const mailContract: {
|
|
12360
12204
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12361
12205
|
name: import("zod").ZodString;
|
12362
12206
|
smtpHost: import("zod").ZodString;
|
12363
|
-
smtpPort: import("zod").
|
12364
|
-
smtpTlsPort: import("zod").
|
12207
|
+
smtpPort: import("zod").ZodString;
|
12208
|
+
smtpTlsPort: import("zod").ZodString;
|
12365
12209
|
useTlsForSmtp: import("zod").ZodBoolean;
|
12366
12210
|
imapHost: import("zod").ZodString;
|
12367
|
-
imapPort: import("zod").
|
12368
|
-
imapTlsPort: import("zod").
|
12211
|
+
imapPort: import("zod").ZodString;
|
12212
|
+
imapTlsPort: import("zod").ZodString;
|
12369
12213
|
useTlsForImap: import("zod").ZodBoolean;
|
12370
12214
|
}, "strip", import("zod").ZodTypeAny, {
|
12371
12215
|
id: string;
|
@@ -12374,12 +12218,12 @@ export declare const mailContract: {
|
|
12374
12218
|
updatedAt: Date;
|
12375
12219
|
deletedAt: Date | null;
|
12376
12220
|
smtpHost: string;
|
12377
|
-
smtpPort:
|
12378
|
-
smtpTlsPort:
|
12221
|
+
smtpPort: string;
|
12222
|
+
smtpTlsPort: string;
|
12379
12223
|
useTlsForSmtp: boolean;
|
12380
12224
|
imapHost: string;
|
12381
|
-
imapPort:
|
12382
|
-
imapTlsPort:
|
12225
|
+
imapPort: string;
|
12226
|
+
imapTlsPort: string;
|
12383
12227
|
useTlsForImap: boolean;
|
12384
12228
|
}, {
|
12385
12229
|
id: string;
|
@@ -12388,12 +12232,12 @@ export declare const mailContract: {
|
|
12388
12232
|
updatedAt: Date;
|
12389
12233
|
deletedAt: Date | null;
|
12390
12234
|
smtpHost: string;
|
12391
|
-
smtpPort:
|
12392
|
-
smtpTlsPort:
|
12235
|
+
smtpPort: string;
|
12236
|
+
smtpTlsPort: string;
|
12393
12237
|
useTlsForSmtp: boolean;
|
12394
12238
|
imapHost: string;
|
12395
|
-
imapPort:
|
12396
|
-
imapTlsPort:
|
12239
|
+
imapPort: string;
|
12240
|
+
imapTlsPort: string;
|
12397
12241
|
useTlsForImap: boolean;
|
12398
12242
|
}>;
|
12399
12243
|
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">]>;
|
@@ -12414,12 +12258,12 @@ export declare const mailContract: {
|
|
12414
12258
|
updatedAt: Date;
|
12415
12259
|
deletedAt: Date | null;
|
12416
12260
|
smtpHost: string;
|
12417
|
-
smtpPort:
|
12418
|
-
smtpTlsPort:
|
12261
|
+
smtpPort: string;
|
12262
|
+
smtpTlsPort: string;
|
12419
12263
|
useTlsForSmtp: boolean;
|
12420
12264
|
imapHost: string;
|
12421
|
-
imapPort:
|
12422
|
-
imapTlsPort:
|
12265
|
+
imapPort: string;
|
12266
|
+
imapTlsPort: string;
|
12423
12267
|
useTlsForImap: boolean;
|
12424
12268
|
};
|
12425
12269
|
}, {
|
@@ -12439,12 +12283,12 @@ export declare const mailContract: {
|
|
12439
12283
|
updatedAt: Date;
|
12440
12284
|
deletedAt: Date | null;
|
12441
12285
|
smtpHost: string;
|
12442
|
-
smtpPort:
|
12443
|
-
smtpTlsPort:
|
12286
|
+
smtpPort: string;
|
12287
|
+
smtpTlsPort: string;
|
12444
12288
|
useTlsForSmtp: boolean;
|
12445
12289
|
imapHost: string;
|
12446
|
-
imapPort:
|
12447
|
-
imapTlsPort:
|
12290
|
+
imapPort: string;
|
12291
|
+
imapTlsPort: string;
|
12448
12292
|
useTlsForImap: boolean;
|
12449
12293
|
};
|
12450
12294
|
}>;
|
@@ -12466,12 +12310,12 @@ export declare const mailContract: {
|
|
12466
12310
|
updatedAt: Date;
|
12467
12311
|
deletedAt: Date | null;
|
12468
12312
|
smtpHost: string;
|
12469
|
-
smtpPort:
|
12470
|
-
smtpTlsPort:
|
12313
|
+
smtpPort: string;
|
12314
|
+
smtpTlsPort: string;
|
12471
12315
|
useTlsForSmtp: boolean;
|
12472
12316
|
imapHost: string;
|
12473
|
-
imapPort:
|
12474
|
-
imapTlsPort:
|
12317
|
+
imapPort: string;
|
12318
|
+
imapTlsPort: string;
|
12475
12319
|
useTlsForImap: boolean;
|
12476
12320
|
};
|
12477
12321
|
};
|
@@ -12494,12 +12338,12 @@ export declare const mailContract: {
|
|
12494
12338
|
updatedAt: Date;
|
12495
12339
|
deletedAt: Date | null;
|
12496
12340
|
smtpHost: string;
|
12497
|
-
smtpPort:
|
12498
|
-
smtpTlsPort:
|
12341
|
+
smtpPort: string;
|
12342
|
+
smtpTlsPort: string;
|
12499
12343
|
useTlsForSmtp: boolean;
|
12500
12344
|
imapHost: string;
|
12501
|
-
imapPort:
|
12502
|
-
imapTlsPort:
|
12345
|
+
imapPort: string;
|
12346
|
+
imapTlsPort: string;
|
12503
12347
|
useTlsForImap: boolean;
|
12504
12348
|
};
|
12505
12349
|
};
|
@@ -12584,12 +12428,12 @@ export declare const mailContract: {
|
|
12584
12428
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12585
12429
|
name: import("zod").ZodString;
|
12586
12430
|
smtpHost: import("zod").ZodString;
|
12587
|
-
smtpPort: import("zod").
|
12588
|
-
smtpTlsPort: import("zod").
|
12431
|
+
smtpPort: import("zod").ZodString;
|
12432
|
+
smtpTlsPort: import("zod").ZodString;
|
12589
12433
|
useTlsForSmtp: import("zod").ZodBoolean;
|
12590
12434
|
imapHost: import("zod").ZodString;
|
12591
|
-
imapPort: import("zod").
|
12592
|
-
imapTlsPort: import("zod").
|
12435
|
+
imapPort: import("zod").ZodString;
|
12436
|
+
imapTlsPort: import("zod").ZodString;
|
12593
12437
|
useTlsForImap: import("zod").ZodBoolean;
|
12594
12438
|
}, "strip", import("zod").ZodTypeAny, {
|
12595
12439
|
id: string;
|
@@ -12598,12 +12442,12 @@ export declare const mailContract: {
|
|
12598
12442
|
updatedAt: Date;
|
12599
12443
|
deletedAt: Date | null;
|
12600
12444
|
smtpHost: string;
|
12601
|
-
smtpPort:
|
12602
|
-
smtpTlsPort:
|
12445
|
+
smtpPort: string;
|
12446
|
+
smtpTlsPort: string;
|
12603
12447
|
useTlsForSmtp: boolean;
|
12604
12448
|
imapHost: string;
|
12605
|
-
imapPort:
|
12606
|
-
imapTlsPort:
|
12449
|
+
imapPort: string;
|
12450
|
+
imapTlsPort: string;
|
12607
12451
|
useTlsForImap: boolean;
|
12608
12452
|
}, {
|
12609
12453
|
id: string;
|
@@ -12612,12 +12456,12 @@ export declare const mailContract: {
|
|
12612
12456
|
updatedAt: Date;
|
12613
12457
|
deletedAt: Date | null;
|
12614
12458
|
smtpHost: string;
|
12615
|
-
smtpPort:
|
12616
|
-
smtpTlsPort:
|
12459
|
+
smtpPort: string;
|
12460
|
+
smtpTlsPort: string;
|
12617
12461
|
useTlsForSmtp: boolean;
|
12618
12462
|
imapHost: string;
|
12619
|
-
imapPort:
|
12620
|
-
imapTlsPort:
|
12463
|
+
imapPort: string;
|
12464
|
+
imapTlsPort: string;
|
12621
12465
|
useTlsForImap: boolean;
|
12622
12466
|
}>;
|
12623
12467
|
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">]>;
|
@@ -12638,12 +12482,12 @@ export declare const mailContract: {
|
|
12638
12482
|
updatedAt: Date;
|
12639
12483
|
deletedAt: Date | null;
|
12640
12484
|
smtpHost: string;
|
12641
|
-
smtpPort:
|
12642
|
-
smtpTlsPort:
|
12485
|
+
smtpPort: string;
|
12486
|
+
smtpTlsPort: string;
|
12643
12487
|
useTlsForSmtp: boolean;
|
12644
12488
|
imapHost: string;
|
12645
|
-
imapPort:
|
12646
|
-
imapTlsPort:
|
12489
|
+
imapPort: string;
|
12490
|
+
imapTlsPort: string;
|
12647
12491
|
useTlsForImap: boolean;
|
12648
12492
|
};
|
12649
12493
|
}, {
|
@@ -12663,12 +12507,12 @@ export declare const mailContract: {
|
|
12663
12507
|
updatedAt: Date;
|
12664
12508
|
deletedAt: Date | null;
|
12665
12509
|
smtpHost: string;
|
12666
|
-
smtpPort:
|
12667
|
-
smtpTlsPort:
|
12510
|
+
smtpPort: string;
|
12511
|
+
smtpTlsPort: string;
|
12668
12512
|
useTlsForSmtp: boolean;
|
12669
12513
|
imapHost: string;
|
12670
|
-
imapPort:
|
12671
|
-
imapTlsPort:
|
12514
|
+
imapPort: string;
|
12515
|
+
imapTlsPort: string;
|
12672
12516
|
useTlsForImap: boolean;
|
12673
12517
|
};
|
12674
12518
|
}>;
|
@@ -12690,12 +12534,12 @@ export declare const mailContract: {
|
|
12690
12534
|
updatedAt: Date;
|
12691
12535
|
deletedAt: Date | null;
|
12692
12536
|
smtpHost: string;
|
12693
|
-
smtpPort:
|
12694
|
-
smtpTlsPort:
|
12537
|
+
smtpPort: string;
|
12538
|
+
smtpTlsPort: string;
|
12695
12539
|
useTlsForSmtp: boolean;
|
12696
12540
|
imapHost: string;
|
12697
|
-
imapPort:
|
12698
|
-
imapTlsPort:
|
12541
|
+
imapPort: string;
|
12542
|
+
imapTlsPort: string;
|
12699
12543
|
useTlsForImap: boolean;
|
12700
12544
|
};
|
12701
12545
|
};
|
@@ -12718,12 +12562,12 @@ export declare const mailContract: {
|
|
12718
12562
|
updatedAt: Date;
|
12719
12563
|
deletedAt: Date | null;
|
12720
12564
|
smtpHost: string;
|
12721
|
-
smtpPort:
|
12722
|
-
smtpTlsPort:
|
12565
|
+
smtpPort: string;
|
12566
|
+
smtpTlsPort: string;
|
12723
12567
|
useTlsForSmtp: boolean;
|
12724
12568
|
imapHost: string;
|
12725
|
-
imapPort:
|
12726
|
-
imapTlsPort:
|
12569
|
+
imapPort: string;
|
12570
|
+
imapTlsPort: string;
|
12727
12571
|
useTlsForImap: boolean;
|
12728
12572
|
};
|
12729
12573
|
};
|
@@ -12822,37 +12666,7 @@ export declare const mailContract: {
|
|
12822
12666
|
};
|
12823
12667
|
server: {
|
12824
12668
|
create: {
|
12825
|
-
body:
|
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
|
-
}>;
|
12669
|
+
body: null;
|
12856
12670
|
summary: "Register a new mail server";
|
12857
12671
|
method: "POST";
|
12858
12672
|
responses: {
|
@@ -12886,90 +12700,20 @@ export declare const mailContract: {
|
|
12886
12700
|
message: string;
|
12887
12701
|
error?: any;
|
12888
12702
|
}>;
|
12889
|
-
|
12703
|
+
200: import("zod").ZodObject<{
|
12890
12704
|
requestId: import("zod").ZodString;
|
12891
|
-
|
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
|
-
}>;
|
12705
|
+
message: import("zod").ZodString;
|
12934
12706
|
}, "strip", import("zod").ZodTypeAny, {
|
12935
|
-
|
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
|
-
};
|
12707
|
+
message: string;
|
12950
12708
|
requestId: string;
|
12951
12709
|
}, {
|
12952
|
-
|
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
|
-
};
|
12710
|
+
message: string;
|
12967
12711
|
requestId: string;
|
12968
12712
|
}>;
|
12969
12713
|
};
|
12970
12714
|
path: "mail/server/";
|
12971
12715
|
};
|
12972
|
-
|
12716
|
+
get: {
|
12973
12717
|
summary: "Get a mail server by id";
|
12974
12718
|
method: "GET";
|
12975
12719
|
pathParams: import("zod").ZodObject<{
|
@@ -13012,237 +12756,20 @@ export declare const mailContract: {
|
|
13012
12756
|
}>;
|
13013
12757
|
200: import("zod").ZodObject<{
|
13014
12758
|
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<{
|
13101
12759
|
message: import("zod").ZodString;
|
13102
|
-
error: import("zod").ZodAny;
|
13103
12760
|
}, "strip", import("zod").ZodTypeAny, {
|
13104
12761
|
message: string;
|
13105
|
-
error?: any;
|
13106
|
-
}, {
|
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
12762
|
requestId: string;
|
13192
12763
|
}, {
|
13193
|
-
|
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
|
-
}[];
|
12764
|
+
message: string;
|
13208
12765
|
requestId: string;
|
13209
12766
|
}>;
|
13210
12767
|
};
|
13211
|
-
path: "mail/server
|
12768
|
+
path: "mail/server/:id";
|
13212
12769
|
};
|
13213
12770
|
update: {
|
13214
|
-
body:
|
13215
|
-
|
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";
|
12771
|
+
body: null;
|
12772
|
+
summary: "Update a mail server by id";
|
13246
12773
|
method: "PATCH";
|
13247
12774
|
pathParams: import("zod").ZodObject<{
|
13248
12775
|
id: import("zod").ZodString;
|
@@ -13284,82 +12811,12 @@ export declare const mailContract: {
|
|
13284
12811
|
}>;
|
13285
12812
|
200: import("zod").ZodObject<{
|
13286
12813
|
requestId: import("zod").ZodString;
|
13287
|
-
|
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
|
-
}>;
|
12814
|
+
message: import("zod").ZodString;
|
13330
12815
|
}, "strip", import("zod").ZodTypeAny, {
|
13331
|
-
|
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
|
-
};
|
12816
|
+
message: string;
|
13346
12817
|
requestId: string;
|
13347
12818
|
}, {
|
13348
|
-
|
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
|
-
};
|
12819
|
+
message: string;
|
13363
12820
|
requestId: string;
|
13364
12821
|
}>;
|
13365
12822
|
};
|
@@ -13367,8 +12824,8 @@ export declare const mailContract: {
|
|
13367
12824
|
};
|
13368
12825
|
delete: {
|
13369
12826
|
body: null;
|
13370
|
-
summary: "Delete a mail server";
|
13371
|
-
method: "
|
12827
|
+
summary: "Delete a mail server by id";
|
12828
|
+
method: "PATCH";
|
13372
12829
|
pathParams: import("zod").ZodObject<{
|
13373
12830
|
id: import("zod").ZodString;
|
13374
12831
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -13409,82 +12866,12 @@ export declare const mailContract: {
|
|
13409
12866
|
}>;
|
13410
12867
|
200: import("zod").ZodObject<{
|
13411
12868
|
requestId: import("zod").ZodString;
|
13412
|
-
|
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
|
-
}>;
|
12869
|
+
message: import("zod").ZodString;
|
13455
12870
|
}, "strip", import("zod").ZodTypeAny, {
|
13456
|
-
|
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
|
-
};
|
12871
|
+
message: string;
|
13471
12872
|
requestId: string;
|
13472
12873
|
}, {
|
13473
|
-
|
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
|
-
};
|
12874
|
+
message: string;
|
13488
12875
|
requestId: string;
|
13489
12876
|
}>;
|
13490
12877
|
};
|