@kl1/contracts 1.1.4 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +933 -886
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +932 -886
- package/dist/index.mjs.map +1 -1
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- package/dist/src/chat/index.d.ts +2985 -2123
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +24 -8
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +76 -7
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/chatwoot/index.d.ts +7527 -0
- package/dist/src/chatwoot/index.d.ts.map +1 -0
- package/dist/src/chatwoot/schema.d.ts +79 -0
- package/dist/src/chatwoot/schema.d.ts.map +1 -0
- package/dist/src/chatwoot/validation.d.ts +53 -0
- package/dist/src/chatwoot/validation.d.ts.map +1 -0
- package/dist/src/contract.d.ts +5238 -3489
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +73 -7
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +73 -7
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/account-contract.d.ts +289 -136
- package/dist/src/mail/account-contract.d.ts.map +1 -1
- package/dist/src/mail/index.d.ts +10 -0
- package/dist/src/mail/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +1775 -1162
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server-contract.d.ts +477 -18
- package/dist/src/mail/mail-server-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server.d.ts +216 -0
- package/dist/src/mail/mail-server.d.ts.map +1 -0
- package/dist/src/mail/message-contract.d.ts +54 -54
- package/dist/src/mail/room-contract.d.ts +957 -954
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/account-validation.schema.d.ts +140 -140
- package/dist/src/mail/schemas/account-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/account.schema.d.ts +32 -32
- package/dist/src/mail/schemas/message.schema.d.ts +42 -42
- package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +325 -322
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +683 -259
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +83 -7
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- package/dist/src/viber/index.d.ts +73 -7
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -55,20 +55,20 @@ export declare const roomContract: {
|
|
55
55
|
page: z.ZodDefault<z.ZodNumber>;
|
56
56
|
pageSize: z.ZodDefault<z.ZodNumber>;
|
57
57
|
keyword: z.ZodOptional<z.ZodString>;
|
58
|
-
|
59
|
-
|
58
|
+
level1: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"open">, z.ZodLiteral<"close">, z.ZodLiteral<"inbox">, z.ZodLiteral<"sent">, z.ZodLiteral<"scheduled">, z.ZodLiteral<"starred">]>>;
|
59
|
+
level2: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"all">, z.ZodLiteral<"unassign">, z.ZodLiteral<"mine">, z.ZodLiteral<"other">]>>;
|
60
60
|
}, "strip", z.ZodTypeAny, {
|
61
61
|
page: number;
|
62
62
|
pageSize: number;
|
63
63
|
keyword?: string | undefined;
|
64
|
-
|
65
|
-
|
64
|
+
level1?: "open" | "close" | "inbox" | "sent" | "scheduled" | "starred" | undefined;
|
65
|
+
level2?: "all" | "other" | "unassign" | "mine" | undefined;
|
66
66
|
}, {
|
67
67
|
page?: number | undefined;
|
68
68
|
pageSize?: number | undefined;
|
69
69
|
keyword?: string | undefined;
|
70
|
-
|
71
|
-
|
70
|
+
level1?: "open" | "close" | "inbox" | "sent" | "scheduled" | "starred" | undefined;
|
71
|
+
level2?: "all" | "other" | "unassign" | "mine" | undefined;
|
72
72
|
}>;
|
73
73
|
responses: {
|
74
74
|
401: z.ZodObject<{
|
@@ -326,34 +326,34 @@ export declare const roomContract: {
|
|
326
326
|
createdAt: z.ZodDate;
|
327
327
|
updatedAt: z.ZodDate;
|
328
328
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
329
|
+
bucketName: z.ZodString;
|
330
|
+
fileName: z.ZodString;
|
331
|
+
fileKey: z.ZodString;
|
332
|
+
fileSize: z.ZodNumber;
|
333
|
+
fileUrl: z.ZodString;
|
334
|
+
extensionName: z.ZodString;
|
335
335
|
}, "strip", z.ZodTypeAny, {
|
336
336
|
id: string;
|
337
337
|
createdAt: Date;
|
338
338
|
updatedAt: Date;
|
339
339
|
deletedAt: Date | null;
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
340
|
+
extensionName: string;
|
341
|
+
fileName: string;
|
342
|
+
fileKey: string;
|
343
|
+
bucketName: string;
|
344
|
+
fileSize: number;
|
345
|
+
fileUrl: string;
|
346
346
|
}, {
|
347
347
|
id: string;
|
348
348
|
createdAt: Date;
|
349
349
|
updatedAt: Date;
|
350
350
|
deletedAt: Date | null;
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
351
|
+
extensionName: string;
|
352
|
+
fileName: string;
|
353
|
+
fileKey: string;
|
354
|
+
bucketName: string;
|
355
|
+
fileSize: number;
|
356
|
+
fileUrl: string;
|
357
357
|
}>;
|
358
358
|
}, "strip", z.ZodTypeAny, {
|
359
359
|
id: string;
|
@@ -368,12 +368,12 @@ export declare const roomContract: {
|
|
368
368
|
createdAt: Date;
|
369
369
|
updatedAt: Date;
|
370
370
|
deletedAt: Date | null;
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
371
|
+
extensionName: string;
|
372
|
+
fileName: string;
|
373
|
+
fileKey: string;
|
374
|
+
bucketName: string;
|
375
|
+
fileSize: number;
|
376
|
+
fileUrl: string;
|
377
377
|
};
|
378
378
|
roomId: string;
|
379
379
|
messageId: string;
|
@@ -391,12 +391,12 @@ export declare const roomContract: {
|
|
391
391
|
createdAt: Date;
|
392
392
|
updatedAt: Date;
|
393
393
|
deletedAt: Date | null;
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
394
|
+
extensionName: string;
|
395
|
+
fileName: string;
|
396
|
+
fileKey: string;
|
397
|
+
bucketName: string;
|
398
|
+
fileSize: number;
|
399
|
+
fileUrl: string;
|
400
400
|
};
|
401
401
|
roomId: string;
|
402
402
|
messageId: string;
|
@@ -465,12 +465,12 @@ export declare const roomContract: {
|
|
465
465
|
createdAt: Date;
|
466
466
|
updatedAt: Date;
|
467
467
|
deletedAt: Date | null;
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
468
|
+
extensionName: string;
|
469
|
+
fileName: string;
|
470
|
+
fileKey: string;
|
471
|
+
bucketName: string;
|
472
|
+
fileSize: number;
|
473
|
+
fileUrl: string;
|
474
474
|
};
|
475
475
|
roomId: string;
|
476
476
|
messageId: string;
|
@@ -539,12 +539,12 @@ export declare const roomContract: {
|
|
539
539
|
createdAt: Date;
|
540
540
|
updatedAt: Date;
|
541
541
|
deletedAt: Date | null;
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
542
|
+
extensionName: string;
|
543
|
+
fileName: string;
|
544
|
+
fileKey: string;
|
545
|
+
bucketName: string;
|
546
|
+
fileSize: number;
|
547
|
+
fileUrl: string;
|
548
548
|
};
|
549
549
|
roomId: string;
|
550
550
|
messageId: string;
|
@@ -673,34 +673,34 @@ export declare const roomContract: {
|
|
673
673
|
createdAt: z.ZodDate;
|
674
674
|
updatedAt: z.ZodDate;
|
675
675
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
676
|
+
bucketName: z.ZodString;
|
677
|
+
fileName: z.ZodString;
|
678
|
+
fileKey: z.ZodString;
|
679
|
+
fileSize: z.ZodNumber;
|
680
|
+
fileUrl: z.ZodString;
|
681
|
+
extensionName: z.ZodString;
|
682
682
|
}, "strip", z.ZodTypeAny, {
|
683
683
|
id: string;
|
684
684
|
createdAt: Date;
|
685
685
|
updatedAt: Date;
|
686
686
|
deletedAt: Date | null;
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
687
|
+
extensionName: string;
|
688
|
+
fileName: string;
|
689
|
+
fileKey: string;
|
690
|
+
bucketName: string;
|
691
|
+
fileSize: number;
|
692
|
+
fileUrl: string;
|
693
693
|
}, {
|
694
694
|
id: string;
|
695
695
|
createdAt: Date;
|
696
696
|
updatedAt: Date;
|
697
697
|
deletedAt: Date | null;
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
698
|
+
extensionName: string;
|
699
|
+
fileName: string;
|
700
|
+
fileKey: string;
|
701
|
+
bucketName: string;
|
702
|
+
fileSize: number;
|
703
|
+
fileUrl: string;
|
704
704
|
}>;
|
705
705
|
}, "strip", z.ZodTypeAny, {
|
706
706
|
id: string;
|
@@ -715,12 +715,12 @@ export declare const roomContract: {
|
|
715
715
|
createdAt: Date;
|
716
716
|
updatedAt: Date;
|
717
717
|
deletedAt: Date | null;
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
718
|
+
extensionName: string;
|
719
|
+
fileName: string;
|
720
|
+
fileKey: string;
|
721
|
+
bucketName: string;
|
722
|
+
fileSize: number;
|
723
|
+
fileUrl: string;
|
724
724
|
};
|
725
725
|
roomId: string;
|
726
726
|
messageId: string;
|
@@ -738,12 +738,12 @@ export declare const roomContract: {
|
|
738
738
|
createdAt: Date;
|
739
739
|
updatedAt: Date;
|
740
740
|
deletedAt: Date | null;
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
741
|
+
extensionName: string;
|
742
|
+
fileName: string;
|
743
|
+
fileKey: string;
|
744
|
+
bucketName: string;
|
745
|
+
fileSize: number;
|
746
|
+
fileUrl: string;
|
747
747
|
};
|
748
748
|
roomId: string;
|
749
749
|
messageId: string;
|
@@ -812,12 +812,12 @@ export declare const roomContract: {
|
|
812
812
|
createdAt: Date;
|
813
813
|
updatedAt: Date;
|
814
814
|
deletedAt: Date | null;
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
815
|
+
extensionName: string;
|
816
|
+
fileName: string;
|
817
|
+
fileKey: string;
|
818
|
+
bucketName: string;
|
819
|
+
fileSize: number;
|
820
|
+
fileUrl: string;
|
821
821
|
};
|
822
822
|
roomId: string;
|
823
823
|
messageId: string;
|
@@ -886,12 +886,12 @@ export declare const roomContract: {
|
|
886
886
|
createdAt: Date;
|
887
887
|
updatedAt: Date;
|
888
888
|
deletedAt: Date | null;
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
889
|
+
extensionName: string;
|
890
|
+
fileName: string;
|
891
|
+
fileKey: string;
|
892
|
+
bucketName: string;
|
893
|
+
fileSize: number;
|
894
|
+
fileUrl: string;
|
895
895
|
};
|
896
896
|
roomId: string;
|
897
897
|
messageId: string;
|
@@ -929,7 +929,7 @@ export declare const roomContract: {
|
|
929
929
|
email: z.ZodString;
|
930
930
|
address: z.ZodNullable<z.ZodString>;
|
931
931
|
phone: z.ZodNullable<z.ZodString>;
|
932
|
-
|
932
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
933
933
|
}, "strip", z.ZodTypeAny, {
|
934
934
|
id: string;
|
935
935
|
address: string | null;
|
@@ -939,7 +939,7 @@ export declare const roomContract: {
|
|
939
939
|
updatedAt: Date;
|
940
940
|
deletedAt: Date | null;
|
941
941
|
phone: string | null;
|
942
|
-
|
942
|
+
notificationCount: number | null;
|
943
943
|
}, {
|
944
944
|
id: string;
|
945
945
|
address: string | null;
|
@@ -949,7 +949,7 @@ export declare const roomContract: {
|
|
949
949
|
updatedAt: Date;
|
950
950
|
deletedAt: Date | null;
|
951
951
|
phone: string | null;
|
952
|
-
|
952
|
+
notificationCount: number | null;
|
953
953
|
}>;
|
954
954
|
messages: z.ZodArray<z.ZodObject<{
|
955
955
|
id: z.ZodString;
|
@@ -1073,34 +1073,34 @@ export declare const roomContract: {
|
|
1073
1073
|
createdAt: z.ZodDate;
|
1074
1074
|
updatedAt: z.ZodDate;
|
1075
1075
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1076
|
+
bucketName: z.ZodString;
|
1077
|
+
fileName: z.ZodString;
|
1078
|
+
fileKey: z.ZodString;
|
1079
|
+
fileSize: z.ZodNumber;
|
1080
|
+
fileUrl: z.ZodString;
|
1081
|
+
extensionName: z.ZodString;
|
1082
1082
|
}, "strip", z.ZodTypeAny, {
|
1083
1083
|
id: string;
|
1084
1084
|
createdAt: Date;
|
1085
1085
|
updatedAt: Date;
|
1086
1086
|
deletedAt: Date | null;
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1087
|
+
extensionName: string;
|
1088
|
+
fileName: string;
|
1089
|
+
fileKey: string;
|
1090
|
+
bucketName: string;
|
1091
|
+
fileSize: number;
|
1092
|
+
fileUrl: string;
|
1093
1093
|
}, {
|
1094
1094
|
id: string;
|
1095
1095
|
createdAt: Date;
|
1096
1096
|
updatedAt: Date;
|
1097
1097
|
deletedAt: Date | null;
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1098
|
+
extensionName: string;
|
1099
|
+
fileName: string;
|
1100
|
+
fileKey: string;
|
1101
|
+
bucketName: string;
|
1102
|
+
fileSize: number;
|
1103
|
+
fileUrl: string;
|
1104
1104
|
}>;
|
1105
1105
|
}, "strip", z.ZodTypeAny, {
|
1106
1106
|
id: string;
|
@@ -1115,12 +1115,12 @@ export declare const roomContract: {
|
|
1115
1115
|
createdAt: Date;
|
1116
1116
|
updatedAt: Date;
|
1117
1117
|
deletedAt: Date | null;
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1118
|
+
extensionName: string;
|
1119
|
+
fileName: string;
|
1120
|
+
fileKey: string;
|
1121
|
+
bucketName: string;
|
1122
|
+
fileSize: number;
|
1123
|
+
fileUrl: string;
|
1124
1124
|
};
|
1125
1125
|
roomId: string;
|
1126
1126
|
messageId: string;
|
@@ -1138,12 +1138,12 @@ export declare const roomContract: {
|
|
1138
1138
|
createdAt: Date;
|
1139
1139
|
updatedAt: Date;
|
1140
1140
|
deletedAt: Date | null;
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1141
|
+
extensionName: string;
|
1142
|
+
fileName: string;
|
1143
|
+
fileKey: string;
|
1144
|
+
bucketName: string;
|
1145
|
+
fileSize: number;
|
1146
|
+
fileUrl: string;
|
1147
1147
|
};
|
1148
1148
|
roomId: string;
|
1149
1149
|
messageId: string;
|
@@ -1212,12 +1212,12 @@ export declare const roomContract: {
|
|
1212
1212
|
createdAt: Date;
|
1213
1213
|
updatedAt: Date;
|
1214
1214
|
deletedAt: Date | null;
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1215
|
+
extensionName: string;
|
1216
|
+
fileName: string;
|
1217
|
+
fileKey: string;
|
1218
|
+
bucketName: string;
|
1219
|
+
fileSize: number;
|
1220
|
+
fileUrl: string;
|
1221
1221
|
};
|
1222
1222
|
roomId: string;
|
1223
1223
|
messageId: string;
|
@@ -1286,12 +1286,12 @@ export declare const roomContract: {
|
|
1286
1286
|
createdAt: Date;
|
1287
1287
|
updatedAt: Date;
|
1288
1288
|
deletedAt: Date | null;
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1289
|
+
extensionName: string;
|
1290
|
+
fileName: string;
|
1291
|
+
fileKey: string;
|
1292
|
+
bucketName: string;
|
1293
|
+
fileSize: number;
|
1294
|
+
fileUrl: string;
|
1295
1295
|
};
|
1296
1296
|
roomId: string;
|
1297
1297
|
messageId: string;
|
@@ -1420,34 +1420,34 @@ export declare const roomContract: {
|
|
1420
1420
|
createdAt: z.ZodDate;
|
1421
1421
|
updatedAt: z.ZodDate;
|
1422
1422
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1423
|
-
|
1424
|
-
|
1425
|
-
|
1426
|
-
|
1427
|
-
|
1428
|
-
|
1423
|
+
bucketName: z.ZodString;
|
1424
|
+
fileName: z.ZodString;
|
1425
|
+
fileKey: z.ZodString;
|
1426
|
+
fileSize: z.ZodNumber;
|
1427
|
+
fileUrl: z.ZodString;
|
1428
|
+
extensionName: z.ZodString;
|
1429
1429
|
}, "strip", z.ZodTypeAny, {
|
1430
1430
|
id: string;
|
1431
1431
|
createdAt: Date;
|
1432
1432
|
updatedAt: Date;
|
1433
1433
|
deletedAt: Date | null;
|
1434
|
-
|
1435
|
-
|
1436
|
-
|
1437
|
-
|
1438
|
-
|
1439
|
-
|
1434
|
+
extensionName: string;
|
1435
|
+
fileName: string;
|
1436
|
+
fileKey: string;
|
1437
|
+
bucketName: string;
|
1438
|
+
fileSize: number;
|
1439
|
+
fileUrl: string;
|
1440
1440
|
}, {
|
1441
1441
|
id: string;
|
1442
1442
|
createdAt: Date;
|
1443
1443
|
updatedAt: Date;
|
1444
1444
|
deletedAt: Date | null;
|
1445
|
-
|
1446
|
-
|
1447
|
-
|
1448
|
-
|
1449
|
-
|
1450
|
-
|
1445
|
+
extensionName: string;
|
1446
|
+
fileName: string;
|
1447
|
+
fileKey: string;
|
1448
|
+
bucketName: string;
|
1449
|
+
fileSize: number;
|
1450
|
+
fileUrl: string;
|
1451
1451
|
}>;
|
1452
1452
|
}, "strip", z.ZodTypeAny, {
|
1453
1453
|
id: string;
|
@@ -1462,12 +1462,12 @@ export declare const roomContract: {
|
|
1462
1462
|
createdAt: Date;
|
1463
1463
|
updatedAt: Date;
|
1464
1464
|
deletedAt: Date | null;
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1465
|
+
extensionName: string;
|
1466
|
+
fileName: string;
|
1467
|
+
fileKey: string;
|
1468
|
+
bucketName: string;
|
1469
|
+
fileSize: number;
|
1470
|
+
fileUrl: string;
|
1471
1471
|
};
|
1472
1472
|
roomId: string;
|
1473
1473
|
messageId: string;
|
@@ -1485,12 +1485,12 @@ export declare const roomContract: {
|
|
1485
1485
|
createdAt: Date;
|
1486
1486
|
updatedAt: Date;
|
1487
1487
|
deletedAt: Date | null;
|
1488
|
-
|
1489
|
-
|
1490
|
-
|
1491
|
-
|
1492
|
-
|
1493
|
-
|
1488
|
+
extensionName: string;
|
1489
|
+
fileName: string;
|
1490
|
+
fileKey: string;
|
1491
|
+
bucketName: string;
|
1492
|
+
fileSize: number;
|
1493
|
+
fileUrl: string;
|
1494
1494
|
};
|
1495
1495
|
roomId: string;
|
1496
1496
|
messageId: string;
|
@@ -1559,12 +1559,12 @@ export declare const roomContract: {
|
|
1559
1559
|
createdAt: Date;
|
1560
1560
|
updatedAt: Date;
|
1561
1561
|
deletedAt: Date | null;
|
1562
|
-
|
1563
|
-
|
1564
|
-
|
1565
|
-
|
1566
|
-
|
1567
|
-
|
1562
|
+
extensionName: string;
|
1563
|
+
fileName: string;
|
1564
|
+
fileKey: string;
|
1565
|
+
bucketName: string;
|
1566
|
+
fileSize: number;
|
1567
|
+
fileUrl: string;
|
1568
1568
|
};
|
1569
1569
|
roomId: string;
|
1570
1570
|
messageId: string;
|
@@ -1633,12 +1633,12 @@ export declare const roomContract: {
|
|
1633
1633
|
createdAt: Date;
|
1634
1634
|
updatedAt: Date;
|
1635
1635
|
deletedAt: Date | null;
|
1636
|
-
|
1637
|
-
|
1638
|
-
|
1639
|
-
|
1640
|
-
|
1641
|
-
|
1636
|
+
extensionName: string;
|
1637
|
+
fileName: string;
|
1638
|
+
fileKey: string;
|
1639
|
+
bucketName: string;
|
1640
|
+
fileSize: number;
|
1641
|
+
fileUrl: string;
|
1642
1642
|
};
|
1643
1643
|
roomId: string;
|
1644
1644
|
messageId: string;
|
@@ -1661,7 +1661,7 @@ export declare const roomContract: {
|
|
1661
1661
|
email: z.ZodString;
|
1662
1662
|
address: z.ZodNullable<z.ZodString>;
|
1663
1663
|
phone: z.ZodNullable<z.ZodString>;
|
1664
|
-
|
1664
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
1665
1665
|
}, "strip", z.ZodTypeAny, {
|
1666
1666
|
id: string;
|
1667
1667
|
address: string | null;
|
@@ -1671,7 +1671,7 @@ export declare const roomContract: {
|
|
1671
1671
|
updatedAt: Date;
|
1672
1672
|
deletedAt: Date | null;
|
1673
1673
|
phone: string | null;
|
1674
|
-
|
1674
|
+
notificationCount: number | null;
|
1675
1675
|
}, {
|
1676
1676
|
id: string;
|
1677
1677
|
address: string | null;
|
@@ -1681,7 +1681,7 @@ export declare const roomContract: {
|
|
1681
1681
|
updatedAt: Date;
|
1682
1682
|
deletedAt: Date | null;
|
1683
1683
|
phone: string | null;
|
1684
|
-
|
1684
|
+
notificationCount: number | null;
|
1685
1685
|
}>;
|
1686
1686
|
}, "strip", z.ZodTypeAny, {
|
1687
1687
|
id: string;
|
@@ -1698,7 +1698,7 @@ export declare const roomContract: {
|
|
1698
1698
|
updatedAt: Date;
|
1699
1699
|
deletedAt: Date | null;
|
1700
1700
|
phone: string | null;
|
1701
|
-
|
1701
|
+
notificationCount: number | null;
|
1702
1702
|
};
|
1703
1703
|
roomId: string;
|
1704
1704
|
actorId: string;
|
@@ -1717,7 +1717,7 @@ export declare const roomContract: {
|
|
1717
1717
|
updatedAt: Date;
|
1718
1718
|
deletedAt: Date | null;
|
1719
1719
|
phone: string | null;
|
1720
|
-
|
1720
|
+
notificationCount: number | null;
|
1721
1721
|
};
|
1722
1722
|
roomId: string;
|
1723
1723
|
actorId: string;
|
@@ -1738,12 +1738,12 @@ export declare const roomContract: {
|
|
1738
1738
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1739
1739
|
name: z.ZodString;
|
1740
1740
|
smtpHost: z.ZodString;
|
1741
|
-
smtpPort: z.
|
1742
|
-
smtpTlsPort: z.
|
1741
|
+
smtpPort: z.ZodNumber;
|
1742
|
+
smtpTlsPort: z.ZodNumber;
|
1743
1743
|
useTlsForSmtp: z.ZodBoolean;
|
1744
1744
|
imapHost: z.ZodString;
|
1745
|
-
imapPort: z.
|
1746
|
-
imapTlsPort: z.
|
1745
|
+
imapPort: z.ZodNumber;
|
1746
|
+
imapTlsPort: z.ZodNumber;
|
1747
1747
|
useTlsForImap: z.ZodBoolean;
|
1748
1748
|
}, "strip", z.ZodTypeAny, {
|
1749
1749
|
id: string;
|
@@ -1752,12 +1752,12 @@ export declare const roomContract: {
|
|
1752
1752
|
updatedAt: Date;
|
1753
1753
|
deletedAt: Date | null;
|
1754
1754
|
smtpHost: string;
|
1755
|
-
smtpPort:
|
1756
|
-
smtpTlsPort:
|
1755
|
+
smtpPort: number;
|
1756
|
+
smtpTlsPort: number;
|
1757
1757
|
useTlsForSmtp: boolean;
|
1758
1758
|
imapHost: string;
|
1759
|
-
imapPort:
|
1760
|
-
imapTlsPort:
|
1759
|
+
imapPort: number;
|
1760
|
+
imapTlsPort: number;
|
1761
1761
|
useTlsForImap: boolean;
|
1762
1762
|
}, {
|
1763
1763
|
id: string;
|
@@ -1766,12 +1766,12 @@ export declare const roomContract: {
|
|
1766
1766
|
updatedAt: Date;
|
1767
1767
|
deletedAt: Date | null;
|
1768
1768
|
smtpHost: string;
|
1769
|
-
smtpPort:
|
1770
|
-
smtpTlsPort:
|
1769
|
+
smtpPort: number;
|
1770
|
+
smtpTlsPort: number;
|
1771
1771
|
useTlsForSmtp: boolean;
|
1772
1772
|
imapHost: string;
|
1773
|
-
imapPort:
|
1774
|
-
imapTlsPort:
|
1773
|
+
imapPort: number;
|
1774
|
+
imapTlsPort: number;
|
1775
1775
|
useTlsForImap: boolean;
|
1776
1776
|
}>;
|
1777
1777
|
state: z.ZodUnion<[z.ZodLiteral<"init">, z.ZodLiteral<"syncing">, z.ZodLiteral<"connecting">, z.ZodLiteral<"connected">, z.ZodLiteral<"disconnected">, z.ZodLiteral<"authenticationError">, z.ZodLiteral<"connectError">, z.ZodLiteral<"unset">]>;
|
@@ -1792,12 +1792,12 @@ export declare const roomContract: {
|
|
1792
1792
|
updatedAt: Date;
|
1793
1793
|
deletedAt: Date | null;
|
1794
1794
|
smtpHost: string;
|
1795
|
-
smtpPort:
|
1796
|
-
smtpTlsPort:
|
1795
|
+
smtpPort: number;
|
1796
|
+
smtpTlsPort: number;
|
1797
1797
|
useTlsForSmtp: boolean;
|
1798
1798
|
imapHost: string;
|
1799
|
-
imapPort:
|
1800
|
-
imapTlsPort:
|
1799
|
+
imapPort: number;
|
1800
|
+
imapTlsPort: number;
|
1801
1801
|
useTlsForImap: boolean;
|
1802
1802
|
};
|
1803
1803
|
}, {
|
@@ -1817,12 +1817,12 @@ export declare const roomContract: {
|
|
1817
1817
|
updatedAt: Date;
|
1818
1818
|
deletedAt: Date | null;
|
1819
1819
|
smtpHost: string;
|
1820
|
-
smtpPort:
|
1821
|
-
smtpTlsPort:
|
1820
|
+
smtpPort: number;
|
1821
|
+
smtpTlsPort: number;
|
1822
1822
|
useTlsForSmtp: boolean;
|
1823
1823
|
imapHost: string;
|
1824
|
-
imapPort:
|
1825
|
-
imapTlsPort:
|
1824
|
+
imapPort: number;
|
1825
|
+
imapTlsPort: number;
|
1826
1826
|
useTlsForImap: boolean;
|
1827
1827
|
};
|
1828
1828
|
}>;
|
@@ -1905,12 +1905,12 @@ export declare const roomContract: {
|
|
1905
1905
|
createdAt: Date;
|
1906
1906
|
updatedAt: Date;
|
1907
1907
|
deletedAt: Date | null;
|
1908
|
-
|
1909
|
-
|
1910
|
-
|
1911
|
-
|
1912
|
-
|
1913
|
-
|
1908
|
+
extensionName: string;
|
1909
|
+
fileName: string;
|
1910
|
+
fileKey: string;
|
1911
|
+
bucketName: string;
|
1912
|
+
fileSize: number;
|
1913
|
+
fileUrl: string;
|
1914
1914
|
};
|
1915
1915
|
roomId: string;
|
1916
1916
|
messageId: string;
|
@@ -1926,7 +1926,7 @@ export declare const roomContract: {
|
|
1926
1926
|
updatedAt: Date;
|
1927
1927
|
deletedAt: Date | null;
|
1928
1928
|
phone: string | null;
|
1929
|
-
|
1929
|
+
notificationCount: number | null;
|
1930
1930
|
};
|
1931
1931
|
resolved: boolean;
|
1932
1932
|
assigneeId: string | null;
|
@@ -2029,12 +2029,12 @@ export declare const roomContract: {
|
|
2029
2029
|
createdAt: Date;
|
2030
2030
|
updatedAt: Date;
|
2031
2031
|
deletedAt: Date | null;
|
2032
|
-
|
2033
|
-
|
2034
|
-
|
2035
|
-
|
2036
|
-
|
2037
|
-
|
2032
|
+
extensionName: string;
|
2033
|
+
fileName: string;
|
2034
|
+
fileKey: string;
|
2035
|
+
bucketName: string;
|
2036
|
+
fileSize: number;
|
2037
|
+
fileUrl: string;
|
2038
2038
|
};
|
2039
2039
|
roomId: string;
|
2040
2040
|
messageId: string;
|
@@ -2104,12 +2104,12 @@ export declare const roomContract: {
|
|
2104
2104
|
createdAt: Date;
|
2105
2105
|
updatedAt: Date;
|
2106
2106
|
deletedAt: Date | null;
|
2107
|
-
|
2108
|
-
|
2109
|
-
|
2110
|
-
|
2111
|
-
|
2112
|
-
|
2107
|
+
extensionName: string;
|
2108
|
+
fileName: string;
|
2109
|
+
fileKey: string;
|
2110
|
+
bucketName: string;
|
2111
|
+
fileSize: number;
|
2112
|
+
fileUrl: string;
|
2113
2113
|
};
|
2114
2114
|
roomId: string;
|
2115
2115
|
messageId: string;
|
@@ -2179,12 +2179,12 @@ export declare const roomContract: {
|
|
2179
2179
|
createdAt: Date;
|
2180
2180
|
updatedAt: Date;
|
2181
2181
|
deletedAt: Date | null;
|
2182
|
-
|
2183
|
-
|
2184
|
-
|
2185
|
-
|
2186
|
-
|
2187
|
-
|
2182
|
+
extensionName: string;
|
2183
|
+
fileName: string;
|
2184
|
+
fileKey: string;
|
2185
|
+
bucketName: string;
|
2186
|
+
fileSize: number;
|
2187
|
+
fileUrl: string;
|
2188
2188
|
};
|
2189
2189
|
roomId: string;
|
2190
2190
|
messageId: string;
|
@@ -2205,7 +2205,7 @@ export declare const roomContract: {
|
|
2205
2205
|
updatedAt: Date;
|
2206
2206
|
deletedAt: Date | null;
|
2207
2207
|
phone: string | null;
|
2208
|
-
|
2208
|
+
notificationCount: number | null;
|
2209
2209
|
};
|
2210
2210
|
roomId: string;
|
2211
2211
|
actorId: string;
|
@@ -2227,12 +2227,12 @@ export declare const roomContract: {
|
|
2227
2227
|
updatedAt: Date;
|
2228
2228
|
deletedAt: Date | null;
|
2229
2229
|
smtpHost: string;
|
2230
|
-
smtpPort:
|
2231
|
-
smtpTlsPort:
|
2230
|
+
smtpPort: number;
|
2231
|
+
smtpTlsPort: number;
|
2232
2232
|
useTlsForSmtp: boolean;
|
2233
2233
|
imapHost: string;
|
2234
|
-
imapPort:
|
2235
|
-
imapTlsPort:
|
2234
|
+
imapPort: number;
|
2235
|
+
imapTlsPort: number;
|
2236
2236
|
useTlsForImap: boolean;
|
2237
2237
|
};
|
2238
2238
|
};
|
@@ -2315,12 +2315,12 @@ export declare const roomContract: {
|
|
2315
2315
|
createdAt: Date;
|
2316
2316
|
updatedAt: Date;
|
2317
2317
|
deletedAt: Date | null;
|
2318
|
-
|
2319
|
-
|
2320
|
-
|
2321
|
-
|
2322
|
-
|
2323
|
-
|
2318
|
+
extensionName: string;
|
2319
|
+
fileName: string;
|
2320
|
+
fileKey: string;
|
2321
|
+
bucketName: string;
|
2322
|
+
fileSize: number;
|
2323
|
+
fileUrl: string;
|
2324
2324
|
};
|
2325
2325
|
roomId: string;
|
2326
2326
|
messageId: string;
|
@@ -2336,7 +2336,7 @@ export declare const roomContract: {
|
|
2336
2336
|
updatedAt: Date;
|
2337
2337
|
deletedAt: Date | null;
|
2338
2338
|
phone: string | null;
|
2339
|
-
|
2339
|
+
notificationCount: number | null;
|
2340
2340
|
};
|
2341
2341
|
resolved: boolean;
|
2342
2342
|
assigneeId: string | null;
|
@@ -2439,12 +2439,12 @@ export declare const roomContract: {
|
|
2439
2439
|
createdAt: Date;
|
2440
2440
|
updatedAt: Date;
|
2441
2441
|
deletedAt: Date | null;
|
2442
|
-
|
2443
|
-
|
2444
|
-
|
2445
|
-
|
2446
|
-
|
2447
|
-
|
2442
|
+
extensionName: string;
|
2443
|
+
fileName: string;
|
2444
|
+
fileKey: string;
|
2445
|
+
bucketName: string;
|
2446
|
+
fileSize: number;
|
2447
|
+
fileUrl: string;
|
2448
2448
|
};
|
2449
2449
|
roomId: string;
|
2450
2450
|
messageId: string;
|
@@ -2514,12 +2514,12 @@ export declare const roomContract: {
|
|
2514
2514
|
createdAt: Date;
|
2515
2515
|
updatedAt: Date;
|
2516
2516
|
deletedAt: Date | null;
|
2517
|
-
|
2518
|
-
|
2519
|
-
|
2520
|
-
|
2521
|
-
|
2522
|
-
|
2517
|
+
extensionName: string;
|
2518
|
+
fileName: string;
|
2519
|
+
fileKey: string;
|
2520
|
+
bucketName: string;
|
2521
|
+
fileSize: number;
|
2522
|
+
fileUrl: string;
|
2523
2523
|
};
|
2524
2524
|
roomId: string;
|
2525
2525
|
messageId: string;
|
@@ -2589,12 +2589,12 @@ export declare const roomContract: {
|
|
2589
2589
|
createdAt: Date;
|
2590
2590
|
updatedAt: Date;
|
2591
2591
|
deletedAt: Date | null;
|
2592
|
-
|
2593
|
-
|
2594
|
-
|
2595
|
-
|
2596
|
-
|
2597
|
-
|
2592
|
+
extensionName: string;
|
2593
|
+
fileName: string;
|
2594
|
+
fileKey: string;
|
2595
|
+
bucketName: string;
|
2596
|
+
fileSize: number;
|
2597
|
+
fileUrl: string;
|
2598
2598
|
};
|
2599
2599
|
roomId: string;
|
2600
2600
|
messageId: string;
|
@@ -2615,7 +2615,7 @@ export declare const roomContract: {
|
|
2615
2615
|
updatedAt: Date;
|
2616
2616
|
deletedAt: Date | null;
|
2617
2617
|
phone: string | null;
|
2618
|
-
|
2618
|
+
notificationCount: number | null;
|
2619
2619
|
};
|
2620
2620
|
roomId: string;
|
2621
2621
|
actorId: string;
|
@@ -2637,12 +2637,12 @@ export declare const roomContract: {
|
|
2637
2637
|
updatedAt: Date;
|
2638
2638
|
deletedAt: Date | null;
|
2639
2639
|
smtpHost: string;
|
2640
|
-
smtpPort:
|
2641
|
-
smtpTlsPort:
|
2640
|
+
smtpPort: number;
|
2641
|
+
smtpTlsPort: number;
|
2642
2642
|
useTlsForSmtp: boolean;
|
2643
2643
|
imapHost: string;
|
2644
|
-
imapPort:
|
2645
|
-
imapTlsPort:
|
2644
|
+
imapPort: number;
|
2645
|
+
imapTlsPort: number;
|
2646
2646
|
useTlsForImap: boolean;
|
2647
2647
|
};
|
2648
2648
|
};
|
@@ -2730,12 +2730,12 @@ export declare const roomContract: {
|
|
2730
2730
|
createdAt: Date;
|
2731
2731
|
updatedAt: Date;
|
2732
2732
|
deletedAt: Date | null;
|
2733
|
-
|
2734
|
-
|
2735
|
-
|
2736
|
-
|
2737
|
-
|
2738
|
-
|
2733
|
+
extensionName: string;
|
2734
|
+
fileName: string;
|
2735
|
+
fileKey: string;
|
2736
|
+
bucketName: string;
|
2737
|
+
fileSize: number;
|
2738
|
+
fileUrl: string;
|
2739
2739
|
};
|
2740
2740
|
roomId: string;
|
2741
2741
|
messageId: string;
|
@@ -2751,7 +2751,7 @@ export declare const roomContract: {
|
|
2751
2751
|
updatedAt: Date;
|
2752
2752
|
deletedAt: Date | null;
|
2753
2753
|
phone: string | null;
|
2754
|
-
|
2754
|
+
notificationCount: number | null;
|
2755
2755
|
};
|
2756
2756
|
resolved: boolean;
|
2757
2757
|
assigneeId: string | null;
|
@@ -2854,12 +2854,12 @@ export declare const roomContract: {
|
|
2854
2854
|
createdAt: Date;
|
2855
2855
|
updatedAt: Date;
|
2856
2856
|
deletedAt: Date | null;
|
2857
|
-
|
2858
|
-
|
2859
|
-
|
2860
|
-
|
2861
|
-
|
2862
|
-
|
2857
|
+
extensionName: string;
|
2858
|
+
fileName: string;
|
2859
|
+
fileKey: string;
|
2860
|
+
bucketName: string;
|
2861
|
+
fileSize: number;
|
2862
|
+
fileUrl: string;
|
2863
2863
|
};
|
2864
2864
|
roomId: string;
|
2865
2865
|
messageId: string;
|
@@ -2929,12 +2929,12 @@ export declare const roomContract: {
|
|
2929
2929
|
createdAt: Date;
|
2930
2930
|
updatedAt: Date;
|
2931
2931
|
deletedAt: Date | null;
|
2932
|
-
|
2933
|
-
|
2934
|
-
|
2935
|
-
|
2936
|
-
|
2937
|
-
|
2932
|
+
extensionName: string;
|
2933
|
+
fileName: string;
|
2934
|
+
fileKey: string;
|
2935
|
+
bucketName: string;
|
2936
|
+
fileSize: number;
|
2937
|
+
fileUrl: string;
|
2938
2938
|
};
|
2939
2939
|
roomId: string;
|
2940
2940
|
messageId: string;
|
@@ -3004,12 +3004,12 @@ export declare const roomContract: {
|
|
3004
3004
|
createdAt: Date;
|
3005
3005
|
updatedAt: Date;
|
3006
3006
|
deletedAt: Date | null;
|
3007
|
-
|
3008
|
-
|
3009
|
-
|
3010
|
-
|
3011
|
-
|
3012
|
-
|
3007
|
+
extensionName: string;
|
3008
|
+
fileName: string;
|
3009
|
+
fileKey: string;
|
3010
|
+
bucketName: string;
|
3011
|
+
fileSize: number;
|
3012
|
+
fileUrl: string;
|
3013
3013
|
};
|
3014
3014
|
roomId: string;
|
3015
3015
|
messageId: string;
|
@@ -3030,7 +3030,7 @@ export declare const roomContract: {
|
|
3030
3030
|
updatedAt: Date;
|
3031
3031
|
deletedAt: Date | null;
|
3032
3032
|
phone: string | null;
|
3033
|
-
|
3033
|
+
notificationCount: number | null;
|
3034
3034
|
};
|
3035
3035
|
roomId: string;
|
3036
3036
|
actorId: string;
|
@@ -3052,12 +3052,12 @@ export declare const roomContract: {
|
|
3052
3052
|
updatedAt: Date;
|
3053
3053
|
deletedAt: Date | null;
|
3054
3054
|
smtpHost: string;
|
3055
|
-
smtpPort:
|
3056
|
-
smtpTlsPort:
|
3055
|
+
smtpPort: number;
|
3056
|
+
smtpTlsPort: number;
|
3057
3057
|
useTlsForSmtp: boolean;
|
3058
3058
|
imapHost: string;
|
3059
|
-
imapPort:
|
3060
|
-
imapTlsPort:
|
3059
|
+
imapPort: number;
|
3060
|
+
imapTlsPort: number;
|
3061
3061
|
useTlsForImap: boolean;
|
3062
3062
|
};
|
3063
3063
|
};
|
@@ -3146,12 +3146,12 @@ export declare const roomContract: {
|
|
3146
3146
|
createdAt: Date;
|
3147
3147
|
updatedAt: Date;
|
3148
3148
|
deletedAt: Date | null;
|
3149
|
-
|
3150
|
-
|
3151
|
-
|
3152
|
-
|
3153
|
-
|
3154
|
-
|
3149
|
+
extensionName: string;
|
3150
|
+
fileName: string;
|
3151
|
+
fileKey: string;
|
3152
|
+
bucketName: string;
|
3153
|
+
fileSize: number;
|
3154
|
+
fileUrl: string;
|
3155
3155
|
};
|
3156
3156
|
roomId: string;
|
3157
3157
|
messageId: string;
|
@@ -3167,7 +3167,7 @@ export declare const roomContract: {
|
|
3167
3167
|
updatedAt: Date;
|
3168
3168
|
deletedAt: Date | null;
|
3169
3169
|
phone: string | null;
|
3170
|
-
|
3170
|
+
notificationCount: number | null;
|
3171
3171
|
};
|
3172
3172
|
resolved: boolean;
|
3173
3173
|
assigneeId: string | null;
|
@@ -3270,12 +3270,12 @@ export declare const roomContract: {
|
|
3270
3270
|
createdAt: Date;
|
3271
3271
|
updatedAt: Date;
|
3272
3272
|
deletedAt: Date | null;
|
3273
|
-
|
3274
|
-
|
3275
|
-
|
3276
|
-
|
3277
|
-
|
3278
|
-
|
3273
|
+
extensionName: string;
|
3274
|
+
fileName: string;
|
3275
|
+
fileKey: string;
|
3276
|
+
bucketName: string;
|
3277
|
+
fileSize: number;
|
3278
|
+
fileUrl: string;
|
3279
3279
|
};
|
3280
3280
|
roomId: string;
|
3281
3281
|
messageId: string;
|
@@ -3345,12 +3345,12 @@ export declare const roomContract: {
|
|
3345
3345
|
createdAt: Date;
|
3346
3346
|
updatedAt: Date;
|
3347
3347
|
deletedAt: Date | null;
|
3348
|
-
|
3349
|
-
|
3350
|
-
|
3351
|
-
|
3352
|
-
|
3353
|
-
|
3348
|
+
extensionName: string;
|
3349
|
+
fileName: string;
|
3350
|
+
fileKey: string;
|
3351
|
+
bucketName: string;
|
3352
|
+
fileSize: number;
|
3353
|
+
fileUrl: string;
|
3354
3354
|
};
|
3355
3355
|
roomId: string;
|
3356
3356
|
messageId: string;
|
@@ -3420,12 +3420,12 @@ export declare const roomContract: {
|
|
3420
3420
|
createdAt: Date;
|
3421
3421
|
updatedAt: Date;
|
3422
3422
|
deletedAt: Date | null;
|
3423
|
-
|
3424
|
-
|
3425
|
-
|
3426
|
-
|
3427
|
-
|
3428
|
-
|
3423
|
+
extensionName: string;
|
3424
|
+
fileName: string;
|
3425
|
+
fileKey: string;
|
3426
|
+
bucketName: string;
|
3427
|
+
fileSize: number;
|
3428
|
+
fileUrl: string;
|
3429
3429
|
};
|
3430
3430
|
roomId: string;
|
3431
3431
|
messageId: string;
|
@@ -3446,7 +3446,7 @@ export declare const roomContract: {
|
|
3446
3446
|
updatedAt: Date;
|
3447
3447
|
deletedAt: Date | null;
|
3448
3448
|
phone: string | null;
|
3449
|
-
|
3449
|
+
notificationCount: number | null;
|
3450
3450
|
};
|
3451
3451
|
roomId: string;
|
3452
3452
|
actorId: string;
|
@@ -3468,12 +3468,12 @@ export declare const roomContract: {
|
|
3468
3468
|
updatedAt: Date;
|
3469
3469
|
deletedAt: Date | null;
|
3470
3470
|
smtpHost: string;
|
3471
|
-
smtpPort:
|
3472
|
-
smtpTlsPort:
|
3471
|
+
smtpPort: number;
|
3472
|
+
smtpTlsPort: number;
|
3473
3473
|
useTlsForSmtp: boolean;
|
3474
3474
|
imapHost: string;
|
3475
|
-
imapPort:
|
3476
|
-
imapTlsPort:
|
3475
|
+
imapPort: number;
|
3476
|
+
imapTlsPort: number;
|
3477
3477
|
useTlsForImap: boolean;
|
3478
3478
|
};
|
3479
3479
|
};
|
@@ -3753,34 +3753,34 @@ export declare const roomContract: {
|
|
3753
3753
|
createdAt: z.ZodDate;
|
3754
3754
|
updatedAt: z.ZodDate;
|
3755
3755
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
3756
|
-
|
3757
|
-
|
3758
|
-
|
3759
|
-
|
3760
|
-
|
3761
|
-
|
3756
|
+
bucketName: z.ZodString;
|
3757
|
+
fileName: z.ZodString;
|
3758
|
+
fileKey: z.ZodString;
|
3759
|
+
fileSize: z.ZodNumber;
|
3760
|
+
fileUrl: z.ZodString;
|
3761
|
+
extensionName: z.ZodString;
|
3762
3762
|
}, "strip", z.ZodTypeAny, {
|
3763
3763
|
id: string;
|
3764
3764
|
createdAt: Date;
|
3765
3765
|
updatedAt: Date;
|
3766
3766
|
deletedAt: Date | null;
|
3767
|
-
|
3768
|
-
|
3769
|
-
|
3770
|
-
|
3771
|
-
|
3772
|
-
|
3767
|
+
extensionName: string;
|
3768
|
+
fileName: string;
|
3769
|
+
fileKey: string;
|
3770
|
+
bucketName: string;
|
3771
|
+
fileSize: number;
|
3772
|
+
fileUrl: string;
|
3773
3773
|
}, {
|
3774
3774
|
id: string;
|
3775
3775
|
createdAt: Date;
|
3776
3776
|
updatedAt: Date;
|
3777
3777
|
deletedAt: Date | null;
|
3778
|
-
|
3779
|
-
|
3780
|
-
|
3781
|
-
|
3782
|
-
|
3783
|
-
|
3778
|
+
extensionName: string;
|
3779
|
+
fileName: string;
|
3780
|
+
fileKey: string;
|
3781
|
+
bucketName: string;
|
3782
|
+
fileSize: number;
|
3783
|
+
fileUrl: string;
|
3784
3784
|
}>;
|
3785
3785
|
}, "strip", z.ZodTypeAny, {
|
3786
3786
|
id: string;
|
@@ -3795,12 +3795,12 @@ export declare const roomContract: {
|
|
3795
3795
|
createdAt: Date;
|
3796
3796
|
updatedAt: Date;
|
3797
3797
|
deletedAt: Date | null;
|
3798
|
-
|
3799
|
-
|
3800
|
-
|
3801
|
-
|
3802
|
-
|
3803
|
-
|
3798
|
+
extensionName: string;
|
3799
|
+
fileName: string;
|
3800
|
+
fileKey: string;
|
3801
|
+
bucketName: string;
|
3802
|
+
fileSize: number;
|
3803
|
+
fileUrl: string;
|
3804
3804
|
};
|
3805
3805
|
roomId: string;
|
3806
3806
|
messageId: string;
|
@@ -3818,12 +3818,12 @@ export declare const roomContract: {
|
|
3818
3818
|
createdAt: Date;
|
3819
3819
|
updatedAt: Date;
|
3820
3820
|
deletedAt: Date | null;
|
3821
|
-
|
3822
|
-
|
3823
|
-
|
3824
|
-
|
3825
|
-
|
3826
|
-
|
3821
|
+
extensionName: string;
|
3822
|
+
fileName: string;
|
3823
|
+
fileKey: string;
|
3824
|
+
bucketName: string;
|
3825
|
+
fileSize: number;
|
3826
|
+
fileUrl: string;
|
3827
3827
|
};
|
3828
3828
|
roomId: string;
|
3829
3829
|
messageId: string;
|
@@ -3892,12 +3892,12 @@ export declare const roomContract: {
|
|
3892
3892
|
createdAt: Date;
|
3893
3893
|
updatedAt: Date;
|
3894
3894
|
deletedAt: Date | null;
|
3895
|
-
|
3896
|
-
|
3897
|
-
|
3898
|
-
|
3899
|
-
|
3900
|
-
|
3895
|
+
extensionName: string;
|
3896
|
+
fileName: string;
|
3897
|
+
fileKey: string;
|
3898
|
+
bucketName: string;
|
3899
|
+
fileSize: number;
|
3900
|
+
fileUrl: string;
|
3901
3901
|
};
|
3902
3902
|
roomId: string;
|
3903
3903
|
messageId: string;
|
@@ -3966,12 +3966,12 @@ export declare const roomContract: {
|
|
3966
3966
|
createdAt: Date;
|
3967
3967
|
updatedAt: Date;
|
3968
3968
|
deletedAt: Date | null;
|
3969
|
-
|
3970
|
-
|
3971
|
-
|
3972
|
-
|
3973
|
-
|
3974
|
-
|
3969
|
+
extensionName: string;
|
3970
|
+
fileName: string;
|
3971
|
+
fileKey: string;
|
3972
|
+
bucketName: string;
|
3973
|
+
fileSize: number;
|
3974
|
+
fileUrl: string;
|
3975
3975
|
};
|
3976
3976
|
roomId: string;
|
3977
3977
|
messageId: string;
|
@@ -4100,34 +4100,34 @@ export declare const roomContract: {
|
|
4100
4100
|
createdAt: z.ZodDate;
|
4101
4101
|
updatedAt: z.ZodDate;
|
4102
4102
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
4103
|
-
|
4104
|
-
|
4105
|
-
|
4106
|
-
|
4107
|
-
|
4108
|
-
|
4103
|
+
bucketName: z.ZodString;
|
4104
|
+
fileName: z.ZodString;
|
4105
|
+
fileKey: z.ZodString;
|
4106
|
+
fileSize: z.ZodNumber;
|
4107
|
+
fileUrl: z.ZodString;
|
4108
|
+
extensionName: z.ZodString;
|
4109
4109
|
}, "strip", z.ZodTypeAny, {
|
4110
4110
|
id: string;
|
4111
4111
|
createdAt: Date;
|
4112
4112
|
updatedAt: Date;
|
4113
4113
|
deletedAt: Date | null;
|
4114
|
-
|
4115
|
-
|
4116
|
-
|
4117
|
-
|
4118
|
-
|
4119
|
-
|
4114
|
+
extensionName: string;
|
4115
|
+
fileName: string;
|
4116
|
+
fileKey: string;
|
4117
|
+
bucketName: string;
|
4118
|
+
fileSize: number;
|
4119
|
+
fileUrl: string;
|
4120
4120
|
}, {
|
4121
4121
|
id: string;
|
4122
4122
|
createdAt: Date;
|
4123
4123
|
updatedAt: Date;
|
4124
4124
|
deletedAt: Date | null;
|
4125
|
-
|
4126
|
-
|
4127
|
-
|
4128
|
-
|
4129
|
-
|
4130
|
-
|
4125
|
+
extensionName: string;
|
4126
|
+
fileName: string;
|
4127
|
+
fileKey: string;
|
4128
|
+
bucketName: string;
|
4129
|
+
fileSize: number;
|
4130
|
+
fileUrl: string;
|
4131
4131
|
}>;
|
4132
4132
|
}, "strip", z.ZodTypeAny, {
|
4133
4133
|
id: string;
|
@@ -4142,12 +4142,12 @@ export declare const roomContract: {
|
|
4142
4142
|
createdAt: Date;
|
4143
4143
|
updatedAt: Date;
|
4144
4144
|
deletedAt: Date | null;
|
4145
|
-
|
4146
|
-
|
4147
|
-
|
4148
|
-
|
4149
|
-
|
4150
|
-
|
4145
|
+
extensionName: string;
|
4146
|
+
fileName: string;
|
4147
|
+
fileKey: string;
|
4148
|
+
bucketName: string;
|
4149
|
+
fileSize: number;
|
4150
|
+
fileUrl: string;
|
4151
4151
|
};
|
4152
4152
|
roomId: string;
|
4153
4153
|
messageId: string;
|
@@ -4165,12 +4165,12 @@ export declare const roomContract: {
|
|
4165
4165
|
createdAt: Date;
|
4166
4166
|
updatedAt: Date;
|
4167
4167
|
deletedAt: Date | null;
|
4168
|
-
|
4169
|
-
|
4170
|
-
|
4171
|
-
|
4172
|
-
|
4173
|
-
|
4168
|
+
extensionName: string;
|
4169
|
+
fileName: string;
|
4170
|
+
fileKey: string;
|
4171
|
+
bucketName: string;
|
4172
|
+
fileSize: number;
|
4173
|
+
fileUrl: string;
|
4174
4174
|
};
|
4175
4175
|
roomId: string;
|
4176
4176
|
messageId: string;
|
@@ -4239,12 +4239,12 @@ export declare const roomContract: {
|
|
4239
4239
|
createdAt: Date;
|
4240
4240
|
updatedAt: Date;
|
4241
4241
|
deletedAt: Date | null;
|
4242
|
-
|
4243
|
-
|
4244
|
-
|
4245
|
-
|
4246
|
-
|
4247
|
-
|
4242
|
+
extensionName: string;
|
4243
|
+
fileName: string;
|
4244
|
+
fileKey: string;
|
4245
|
+
bucketName: string;
|
4246
|
+
fileSize: number;
|
4247
|
+
fileUrl: string;
|
4248
4248
|
};
|
4249
4249
|
roomId: string;
|
4250
4250
|
messageId: string;
|
@@ -4313,12 +4313,12 @@ export declare const roomContract: {
|
|
4313
4313
|
createdAt: Date;
|
4314
4314
|
updatedAt: Date;
|
4315
4315
|
deletedAt: Date | null;
|
4316
|
-
|
4317
|
-
|
4318
|
-
|
4319
|
-
|
4320
|
-
|
4321
|
-
|
4316
|
+
extensionName: string;
|
4317
|
+
fileName: string;
|
4318
|
+
fileKey: string;
|
4319
|
+
bucketName: string;
|
4320
|
+
fileSize: number;
|
4321
|
+
fileUrl: string;
|
4322
4322
|
};
|
4323
4323
|
roomId: string;
|
4324
4324
|
messageId: string;
|
@@ -4356,7 +4356,7 @@ export declare const roomContract: {
|
|
4356
4356
|
email: z.ZodString;
|
4357
4357
|
address: z.ZodNullable<z.ZodString>;
|
4358
4358
|
phone: z.ZodNullable<z.ZodString>;
|
4359
|
-
|
4359
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
4360
4360
|
}, "strip", z.ZodTypeAny, {
|
4361
4361
|
id: string;
|
4362
4362
|
address: string | null;
|
@@ -4366,7 +4366,7 @@ export declare const roomContract: {
|
|
4366
4366
|
updatedAt: Date;
|
4367
4367
|
deletedAt: Date | null;
|
4368
4368
|
phone: string | null;
|
4369
|
-
|
4369
|
+
notificationCount: number | null;
|
4370
4370
|
}, {
|
4371
4371
|
id: string;
|
4372
4372
|
address: string | null;
|
@@ -4376,7 +4376,7 @@ export declare const roomContract: {
|
|
4376
4376
|
updatedAt: Date;
|
4377
4377
|
deletedAt: Date | null;
|
4378
4378
|
phone: string | null;
|
4379
|
-
|
4379
|
+
notificationCount: number | null;
|
4380
4380
|
}>;
|
4381
4381
|
messages: z.ZodArray<z.ZodObject<{
|
4382
4382
|
id: z.ZodString;
|
@@ -4500,34 +4500,34 @@ export declare const roomContract: {
|
|
4500
4500
|
createdAt: z.ZodDate;
|
4501
4501
|
updatedAt: z.ZodDate;
|
4502
4502
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
4503
|
-
|
4504
|
-
|
4505
|
-
|
4506
|
-
|
4507
|
-
|
4508
|
-
|
4503
|
+
bucketName: z.ZodString;
|
4504
|
+
fileName: z.ZodString;
|
4505
|
+
fileKey: z.ZodString;
|
4506
|
+
fileSize: z.ZodNumber;
|
4507
|
+
fileUrl: z.ZodString;
|
4508
|
+
extensionName: z.ZodString;
|
4509
4509
|
}, "strip", z.ZodTypeAny, {
|
4510
4510
|
id: string;
|
4511
4511
|
createdAt: Date;
|
4512
4512
|
updatedAt: Date;
|
4513
4513
|
deletedAt: Date | null;
|
4514
|
-
|
4515
|
-
|
4516
|
-
|
4517
|
-
|
4518
|
-
|
4519
|
-
|
4514
|
+
extensionName: string;
|
4515
|
+
fileName: string;
|
4516
|
+
fileKey: string;
|
4517
|
+
bucketName: string;
|
4518
|
+
fileSize: number;
|
4519
|
+
fileUrl: string;
|
4520
4520
|
}, {
|
4521
4521
|
id: string;
|
4522
4522
|
createdAt: Date;
|
4523
4523
|
updatedAt: Date;
|
4524
4524
|
deletedAt: Date | null;
|
4525
|
-
|
4526
|
-
|
4527
|
-
|
4528
|
-
|
4529
|
-
|
4530
|
-
|
4525
|
+
extensionName: string;
|
4526
|
+
fileName: string;
|
4527
|
+
fileKey: string;
|
4528
|
+
bucketName: string;
|
4529
|
+
fileSize: number;
|
4530
|
+
fileUrl: string;
|
4531
4531
|
}>;
|
4532
4532
|
}, "strip", z.ZodTypeAny, {
|
4533
4533
|
id: string;
|
@@ -4542,12 +4542,12 @@ export declare const roomContract: {
|
|
4542
4542
|
createdAt: Date;
|
4543
4543
|
updatedAt: Date;
|
4544
4544
|
deletedAt: Date | null;
|
4545
|
-
|
4546
|
-
|
4547
|
-
|
4548
|
-
|
4549
|
-
|
4550
|
-
|
4545
|
+
extensionName: string;
|
4546
|
+
fileName: string;
|
4547
|
+
fileKey: string;
|
4548
|
+
bucketName: string;
|
4549
|
+
fileSize: number;
|
4550
|
+
fileUrl: string;
|
4551
4551
|
};
|
4552
4552
|
roomId: string;
|
4553
4553
|
messageId: string;
|
@@ -4565,12 +4565,12 @@ export declare const roomContract: {
|
|
4565
4565
|
createdAt: Date;
|
4566
4566
|
updatedAt: Date;
|
4567
4567
|
deletedAt: Date | null;
|
4568
|
-
|
4569
|
-
|
4570
|
-
|
4571
|
-
|
4572
|
-
|
4573
|
-
|
4568
|
+
extensionName: string;
|
4569
|
+
fileName: string;
|
4570
|
+
fileKey: string;
|
4571
|
+
bucketName: string;
|
4572
|
+
fileSize: number;
|
4573
|
+
fileUrl: string;
|
4574
4574
|
};
|
4575
4575
|
roomId: string;
|
4576
4576
|
messageId: string;
|
@@ -4639,12 +4639,12 @@ export declare const roomContract: {
|
|
4639
4639
|
createdAt: Date;
|
4640
4640
|
updatedAt: Date;
|
4641
4641
|
deletedAt: Date | null;
|
4642
|
-
|
4643
|
-
|
4644
|
-
|
4645
|
-
|
4646
|
-
|
4647
|
-
|
4642
|
+
extensionName: string;
|
4643
|
+
fileName: string;
|
4644
|
+
fileKey: string;
|
4645
|
+
bucketName: string;
|
4646
|
+
fileSize: number;
|
4647
|
+
fileUrl: string;
|
4648
4648
|
};
|
4649
4649
|
roomId: string;
|
4650
4650
|
messageId: string;
|
@@ -4713,12 +4713,12 @@ export declare const roomContract: {
|
|
4713
4713
|
createdAt: Date;
|
4714
4714
|
updatedAt: Date;
|
4715
4715
|
deletedAt: Date | null;
|
4716
|
-
|
4717
|
-
|
4718
|
-
|
4719
|
-
|
4720
|
-
|
4721
|
-
|
4716
|
+
extensionName: string;
|
4717
|
+
fileName: string;
|
4718
|
+
fileKey: string;
|
4719
|
+
bucketName: string;
|
4720
|
+
fileSize: number;
|
4721
|
+
fileUrl: string;
|
4722
4722
|
};
|
4723
4723
|
roomId: string;
|
4724
4724
|
messageId: string;
|
@@ -4847,34 +4847,34 @@ export declare const roomContract: {
|
|
4847
4847
|
createdAt: z.ZodDate;
|
4848
4848
|
updatedAt: z.ZodDate;
|
4849
4849
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
4850
|
-
|
4851
|
-
|
4852
|
-
|
4853
|
-
|
4854
|
-
|
4855
|
-
|
4850
|
+
bucketName: z.ZodString;
|
4851
|
+
fileName: z.ZodString;
|
4852
|
+
fileKey: z.ZodString;
|
4853
|
+
fileSize: z.ZodNumber;
|
4854
|
+
fileUrl: z.ZodString;
|
4855
|
+
extensionName: z.ZodString;
|
4856
4856
|
}, "strip", z.ZodTypeAny, {
|
4857
4857
|
id: string;
|
4858
4858
|
createdAt: Date;
|
4859
4859
|
updatedAt: Date;
|
4860
4860
|
deletedAt: Date | null;
|
4861
|
-
|
4862
|
-
|
4863
|
-
|
4864
|
-
|
4865
|
-
|
4866
|
-
|
4861
|
+
extensionName: string;
|
4862
|
+
fileName: string;
|
4863
|
+
fileKey: string;
|
4864
|
+
bucketName: string;
|
4865
|
+
fileSize: number;
|
4866
|
+
fileUrl: string;
|
4867
4867
|
}, {
|
4868
4868
|
id: string;
|
4869
4869
|
createdAt: Date;
|
4870
4870
|
updatedAt: Date;
|
4871
4871
|
deletedAt: Date | null;
|
4872
|
-
|
4873
|
-
|
4874
|
-
|
4875
|
-
|
4876
|
-
|
4877
|
-
|
4872
|
+
extensionName: string;
|
4873
|
+
fileName: string;
|
4874
|
+
fileKey: string;
|
4875
|
+
bucketName: string;
|
4876
|
+
fileSize: number;
|
4877
|
+
fileUrl: string;
|
4878
4878
|
}>;
|
4879
4879
|
}, "strip", z.ZodTypeAny, {
|
4880
4880
|
id: string;
|
@@ -4889,12 +4889,12 @@ export declare const roomContract: {
|
|
4889
4889
|
createdAt: Date;
|
4890
4890
|
updatedAt: Date;
|
4891
4891
|
deletedAt: Date | null;
|
4892
|
-
|
4893
|
-
|
4894
|
-
|
4895
|
-
|
4896
|
-
|
4897
|
-
|
4892
|
+
extensionName: string;
|
4893
|
+
fileName: string;
|
4894
|
+
fileKey: string;
|
4895
|
+
bucketName: string;
|
4896
|
+
fileSize: number;
|
4897
|
+
fileUrl: string;
|
4898
4898
|
};
|
4899
4899
|
roomId: string;
|
4900
4900
|
messageId: string;
|
@@ -4912,12 +4912,12 @@ export declare const roomContract: {
|
|
4912
4912
|
createdAt: Date;
|
4913
4913
|
updatedAt: Date;
|
4914
4914
|
deletedAt: Date | null;
|
4915
|
-
|
4916
|
-
|
4917
|
-
|
4918
|
-
|
4919
|
-
|
4920
|
-
|
4915
|
+
extensionName: string;
|
4916
|
+
fileName: string;
|
4917
|
+
fileKey: string;
|
4918
|
+
bucketName: string;
|
4919
|
+
fileSize: number;
|
4920
|
+
fileUrl: string;
|
4921
4921
|
};
|
4922
4922
|
roomId: string;
|
4923
4923
|
messageId: string;
|
@@ -4986,12 +4986,12 @@ export declare const roomContract: {
|
|
4986
4986
|
createdAt: Date;
|
4987
4987
|
updatedAt: Date;
|
4988
4988
|
deletedAt: Date | null;
|
4989
|
-
|
4990
|
-
|
4991
|
-
|
4992
|
-
|
4993
|
-
|
4994
|
-
|
4989
|
+
extensionName: string;
|
4990
|
+
fileName: string;
|
4991
|
+
fileKey: string;
|
4992
|
+
bucketName: string;
|
4993
|
+
fileSize: number;
|
4994
|
+
fileUrl: string;
|
4995
4995
|
};
|
4996
4996
|
roomId: string;
|
4997
4997
|
messageId: string;
|
@@ -5060,12 +5060,12 @@ export declare const roomContract: {
|
|
5060
5060
|
createdAt: Date;
|
5061
5061
|
updatedAt: Date;
|
5062
5062
|
deletedAt: Date | null;
|
5063
|
-
|
5064
|
-
|
5065
|
-
|
5066
|
-
|
5067
|
-
|
5068
|
-
|
5063
|
+
extensionName: string;
|
5064
|
+
fileName: string;
|
5065
|
+
fileKey: string;
|
5066
|
+
bucketName: string;
|
5067
|
+
fileSize: number;
|
5068
|
+
fileUrl: string;
|
5069
5069
|
};
|
5070
5070
|
roomId: string;
|
5071
5071
|
messageId: string;
|
@@ -5088,7 +5088,7 @@ export declare const roomContract: {
|
|
5088
5088
|
email: z.ZodString;
|
5089
5089
|
address: z.ZodNullable<z.ZodString>;
|
5090
5090
|
phone: z.ZodNullable<z.ZodString>;
|
5091
|
-
|
5091
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
5092
5092
|
}, "strip", z.ZodTypeAny, {
|
5093
5093
|
id: string;
|
5094
5094
|
address: string | null;
|
@@ -5098,7 +5098,7 @@ export declare const roomContract: {
|
|
5098
5098
|
updatedAt: Date;
|
5099
5099
|
deletedAt: Date | null;
|
5100
5100
|
phone: string | null;
|
5101
|
-
|
5101
|
+
notificationCount: number | null;
|
5102
5102
|
}, {
|
5103
5103
|
id: string;
|
5104
5104
|
address: string | null;
|
@@ -5108,7 +5108,7 @@ export declare const roomContract: {
|
|
5108
5108
|
updatedAt: Date;
|
5109
5109
|
deletedAt: Date | null;
|
5110
5110
|
phone: string | null;
|
5111
|
-
|
5111
|
+
notificationCount: number | null;
|
5112
5112
|
}>;
|
5113
5113
|
}, "strip", z.ZodTypeAny, {
|
5114
5114
|
id: string;
|
@@ -5125,7 +5125,7 @@ export declare const roomContract: {
|
|
5125
5125
|
updatedAt: Date;
|
5126
5126
|
deletedAt: Date | null;
|
5127
5127
|
phone: string | null;
|
5128
|
-
|
5128
|
+
notificationCount: number | null;
|
5129
5129
|
};
|
5130
5130
|
roomId: string;
|
5131
5131
|
actorId: string;
|
@@ -5144,7 +5144,7 @@ export declare const roomContract: {
|
|
5144
5144
|
updatedAt: Date;
|
5145
5145
|
deletedAt: Date | null;
|
5146
5146
|
phone: string | null;
|
5147
|
-
|
5147
|
+
notificationCount: number | null;
|
5148
5148
|
};
|
5149
5149
|
roomId: string;
|
5150
5150
|
actorId: string;
|
@@ -5165,12 +5165,12 @@ export declare const roomContract: {
|
|
5165
5165
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
5166
5166
|
name: z.ZodString;
|
5167
5167
|
smtpHost: z.ZodString;
|
5168
|
-
smtpPort: z.
|
5169
|
-
smtpTlsPort: z.
|
5168
|
+
smtpPort: z.ZodNumber;
|
5169
|
+
smtpTlsPort: z.ZodNumber;
|
5170
5170
|
useTlsForSmtp: z.ZodBoolean;
|
5171
5171
|
imapHost: z.ZodString;
|
5172
|
-
imapPort: z.
|
5173
|
-
imapTlsPort: z.
|
5172
|
+
imapPort: z.ZodNumber;
|
5173
|
+
imapTlsPort: z.ZodNumber;
|
5174
5174
|
useTlsForImap: z.ZodBoolean;
|
5175
5175
|
}, "strip", z.ZodTypeAny, {
|
5176
5176
|
id: string;
|
@@ -5179,12 +5179,12 @@ export declare const roomContract: {
|
|
5179
5179
|
updatedAt: Date;
|
5180
5180
|
deletedAt: Date | null;
|
5181
5181
|
smtpHost: string;
|
5182
|
-
smtpPort:
|
5183
|
-
smtpTlsPort:
|
5182
|
+
smtpPort: number;
|
5183
|
+
smtpTlsPort: number;
|
5184
5184
|
useTlsForSmtp: boolean;
|
5185
5185
|
imapHost: string;
|
5186
|
-
imapPort:
|
5187
|
-
imapTlsPort:
|
5186
|
+
imapPort: number;
|
5187
|
+
imapTlsPort: number;
|
5188
5188
|
useTlsForImap: boolean;
|
5189
5189
|
}, {
|
5190
5190
|
id: string;
|
@@ -5193,12 +5193,12 @@ export declare const roomContract: {
|
|
5193
5193
|
updatedAt: Date;
|
5194
5194
|
deletedAt: Date | null;
|
5195
5195
|
smtpHost: string;
|
5196
|
-
smtpPort:
|
5197
|
-
smtpTlsPort:
|
5196
|
+
smtpPort: number;
|
5197
|
+
smtpTlsPort: number;
|
5198
5198
|
useTlsForSmtp: boolean;
|
5199
5199
|
imapHost: string;
|
5200
|
-
imapPort:
|
5201
|
-
imapTlsPort:
|
5200
|
+
imapPort: number;
|
5201
|
+
imapTlsPort: number;
|
5202
5202
|
useTlsForImap: boolean;
|
5203
5203
|
}>;
|
5204
5204
|
state: z.ZodUnion<[z.ZodLiteral<"init">, z.ZodLiteral<"syncing">, z.ZodLiteral<"connecting">, z.ZodLiteral<"connected">, z.ZodLiteral<"disconnected">, z.ZodLiteral<"authenticationError">, z.ZodLiteral<"connectError">, z.ZodLiteral<"unset">]>;
|
@@ -5219,12 +5219,12 @@ export declare const roomContract: {
|
|
5219
5219
|
updatedAt: Date;
|
5220
5220
|
deletedAt: Date | null;
|
5221
5221
|
smtpHost: string;
|
5222
|
-
smtpPort:
|
5223
|
-
smtpTlsPort:
|
5222
|
+
smtpPort: number;
|
5223
|
+
smtpTlsPort: number;
|
5224
5224
|
useTlsForSmtp: boolean;
|
5225
5225
|
imapHost: string;
|
5226
|
-
imapPort:
|
5227
|
-
imapTlsPort:
|
5226
|
+
imapPort: number;
|
5227
|
+
imapTlsPort: number;
|
5228
5228
|
useTlsForImap: boolean;
|
5229
5229
|
};
|
5230
5230
|
}, {
|
@@ -5244,12 +5244,12 @@ export declare const roomContract: {
|
|
5244
5244
|
updatedAt: Date;
|
5245
5245
|
deletedAt: Date | null;
|
5246
5246
|
smtpHost: string;
|
5247
|
-
smtpPort:
|
5248
|
-
smtpTlsPort:
|
5247
|
+
smtpPort: number;
|
5248
|
+
smtpTlsPort: number;
|
5249
5249
|
useTlsForSmtp: boolean;
|
5250
5250
|
imapHost: string;
|
5251
|
-
imapPort:
|
5252
|
-
imapTlsPort:
|
5251
|
+
imapPort: number;
|
5252
|
+
imapTlsPort: number;
|
5253
5253
|
useTlsForImap: boolean;
|
5254
5254
|
};
|
5255
5255
|
}>;
|
@@ -5332,12 +5332,12 @@ export declare const roomContract: {
|
|
5332
5332
|
createdAt: Date;
|
5333
5333
|
updatedAt: Date;
|
5334
5334
|
deletedAt: Date | null;
|
5335
|
-
|
5336
|
-
|
5337
|
-
|
5338
|
-
|
5339
|
-
|
5340
|
-
|
5335
|
+
extensionName: string;
|
5336
|
+
fileName: string;
|
5337
|
+
fileKey: string;
|
5338
|
+
bucketName: string;
|
5339
|
+
fileSize: number;
|
5340
|
+
fileUrl: string;
|
5341
5341
|
};
|
5342
5342
|
roomId: string;
|
5343
5343
|
messageId: string;
|
@@ -5353,7 +5353,7 @@ export declare const roomContract: {
|
|
5353
5353
|
updatedAt: Date;
|
5354
5354
|
deletedAt: Date | null;
|
5355
5355
|
phone: string | null;
|
5356
|
-
|
5356
|
+
notificationCount: number | null;
|
5357
5357
|
};
|
5358
5358
|
resolved: boolean;
|
5359
5359
|
assigneeId: string | null;
|
@@ -5456,12 +5456,12 @@ export declare const roomContract: {
|
|
5456
5456
|
createdAt: Date;
|
5457
5457
|
updatedAt: Date;
|
5458
5458
|
deletedAt: Date | null;
|
5459
|
-
|
5460
|
-
|
5461
|
-
|
5462
|
-
|
5463
|
-
|
5464
|
-
|
5459
|
+
extensionName: string;
|
5460
|
+
fileName: string;
|
5461
|
+
fileKey: string;
|
5462
|
+
bucketName: string;
|
5463
|
+
fileSize: number;
|
5464
|
+
fileUrl: string;
|
5465
5465
|
};
|
5466
5466
|
roomId: string;
|
5467
5467
|
messageId: string;
|
@@ -5531,12 +5531,12 @@ export declare const roomContract: {
|
|
5531
5531
|
createdAt: Date;
|
5532
5532
|
updatedAt: Date;
|
5533
5533
|
deletedAt: Date | null;
|
5534
|
-
|
5535
|
-
|
5536
|
-
|
5537
|
-
|
5538
|
-
|
5539
|
-
|
5534
|
+
extensionName: string;
|
5535
|
+
fileName: string;
|
5536
|
+
fileKey: string;
|
5537
|
+
bucketName: string;
|
5538
|
+
fileSize: number;
|
5539
|
+
fileUrl: string;
|
5540
5540
|
};
|
5541
5541
|
roomId: string;
|
5542
5542
|
messageId: string;
|
@@ -5606,12 +5606,12 @@ export declare const roomContract: {
|
|
5606
5606
|
createdAt: Date;
|
5607
5607
|
updatedAt: Date;
|
5608
5608
|
deletedAt: Date | null;
|
5609
|
-
|
5610
|
-
|
5611
|
-
|
5612
|
-
|
5613
|
-
|
5614
|
-
|
5609
|
+
extensionName: string;
|
5610
|
+
fileName: string;
|
5611
|
+
fileKey: string;
|
5612
|
+
bucketName: string;
|
5613
|
+
fileSize: number;
|
5614
|
+
fileUrl: string;
|
5615
5615
|
};
|
5616
5616
|
roomId: string;
|
5617
5617
|
messageId: string;
|
@@ -5632,7 +5632,7 @@ export declare const roomContract: {
|
|
5632
5632
|
updatedAt: Date;
|
5633
5633
|
deletedAt: Date | null;
|
5634
5634
|
phone: string | null;
|
5635
|
-
|
5635
|
+
notificationCount: number | null;
|
5636
5636
|
};
|
5637
5637
|
roomId: string;
|
5638
5638
|
actorId: string;
|
@@ -5654,12 +5654,12 @@ export declare const roomContract: {
|
|
5654
5654
|
updatedAt: Date;
|
5655
5655
|
deletedAt: Date | null;
|
5656
5656
|
smtpHost: string;
|
5657
|
-
smtpPort:
|
5658
|
-
smtpTlsPort:
|
5657
|
+
smtpPort: number;
|
5658
|
+
smtpTlsPort: number;
|
5659
5659
|
useTlsForSmtp: boolean;
|
5660
5660
|
imapHost: string;
|
5661
|
-
imapPort:
|
5662
|
-
imapTlsPort:
|
5661
|
+
imapPort: number;
|
5662
|
+
imapTlsPort: number;
|
5663
5663
|
useTlsForImap: boolean;
|
5664
5664
|
};
|
5665
5665
|
};
|
@@ -5742,12 +5742,12 @@ export declare const roomContract: {
|
|
5742
5742
|
createdAt: Date;
|
5743
5743
|
updatedAt: Date;
|
5744
5744
|
deletedAt: Date | null;
|
5745
|
-
|
5746
|
-
|
5747
|
-
|
5748
|
-
|
5749
|
-
|
5750
|
-
|
5745
|
+
extensionName: string;
|
5746
|
+
fileName: string;
|
5747
|
+
fileKey: string;
|
5748
|
+
bucketName: string;
|
5749
|
+
fileSize: number;
|
5750
|
+
fileUrl: string;
|
5751
5751
|
};
|
5752
5752
|
roomId: string;
|
5753
5753
|
messageId: string;
|
@@ -5763,7 +5763,7 @@ export declare const roomContract: {
|
|
5763
5763
|
updatedAt: Date;
|
5764
5764
|
deletedAt: Date | null;
|
5765
5765
|
phone: string | null;
|
5766
|
-
|
5766
|
+
notificationCount: number | null;
|
5767
5767
|
};
|
5768
5768
|
resolved: boolean;
|
5769
5769
|
assigneeId: string | null;
|
@@ -5866,12 +5866,12 @@ export declare const roomContract: {
|
|
5866
5866
|
createdAt: Date;
|
5867
5867
|
updatedAt: Date;
|
5868
5868
|
deletedAt: Date | null;
|
5869
|
-
|
5870
|
-
|
5871
|
-
|
5872
|
-
|
5873
|
-
|
5874
|
-
|
5869
|
+
extensionName: string;
|
5870
|
+
fileName: string;
|
5871
|
+
fileKey: string;
|
5872
|
+
bucketName: string;
|
5873
|
+
fileSize: number;
|
5874
|
+
fileUrl: string;
|
5875
5875
|
};
|
5876
5876
|
roomId: string;
|
5877
5877
|
messageId: string;
|
@@ -5941,12 +5941,12 @@ export declare const roomContract: {
|
|
5941
5941
|
createdAt: Date;
|
5942
5942
|
updatedAt: Date;
|
5943
5943
|
deletedAt: Date | null;
|
5944
|
-
|
5945
|
-
|
5946
|
-
|
5947
|
-
|
5948
|
-
|
5949
|
-
|
5944
|
+
extensionName: string;
|
5945
|
+
fileName: string;
|
5946
|
+
fileKey: string;
|
5947
|
+
bucketName: string;
|
5948
|
+
fileSize: number;
|
5949
|
+
fileUrl: string;
|
5950
5950
|
};
|
5951
5951
|
roomId: string;
|
5952
5952
|
messageId: string;
|
@@ -6016,12 +6016,12 @@ export declare const roomContract: {
|
|
6016
6016
|
createdAt: Date;
|
6017
6017
|
updatedAt: Date;
|
6018
6018
|
deletedAt: Date | null;
|
6019
|
-
|
6020
|
-
|
6021
|
-
|
6022
|
-
|
6023
|
-
|
6024
|
-
|
6019
|
+
extensionName: string;
|
6020
|
+
fileName: string;
|
6021
|
+
fileKey: string;
|
6022
|
+
bucketName: string;
|
6023
|
+
fileSize: number;
|
6024
|
+
fileUrl: string;
|
6025
6025
|
};
|
6026
6026
|
roomId: string;
|
6027
6027
|
messageId: string;
|
@@ -6042,7 +6042,7 @@ export declare const roomContract: {
|
|
6042
6042
|
updatedAt: Date;
|
6043
6043
|
deletedAt: Date | null;
|
6044
6044
|
phone: string | null;
|
6045
|
-
|
6045
|
+
notificationCount: number | null;
|
6046
6046
|
};
|
6047
6047
|
roomId: string;
|
6048
6048
|
actorId: string;
|
@@ -6064,12 +6064,12 @@ export declare const roomContract: {
|
|
6064
6064
|
updatedAt: Date;
|
6065
6065
|
deletedAt: Date | null;
|
6066
6066
|
smtpHost: string;
|
6067
|
-
smtpPort:
|
6068
|
-
smtpTlsPort:
|
6067
|
+
smtpPort: number;
|
6068
|
+
smtpTlsPort: number;
|
6069
6069
|
useTlsForSmtp: boolean;
|
6070
6070
|
imapHost: string;
|
6071
|
-
imapPort:
|
6072
|
-
imapTlsPort:
|
6071
|
+
imapPort: number;
|
6072
|
+
imapTlsPort: number;
|
6073
6073
|
useTlsForImap: boolean;
|
6074
6074
|
};
|
6075
6075
|
};
|
@@ -6154,12 +6154,12 @@ export declare const roomContract: {
|
|
6154
6154
|
createdAt: Date;
|
6155
6155
|
updatedAt: Date;
|
6156
6156
|
deletedAt: Date | null;
|
6157
|
-
|
6158
|
-
|
6159
|
-
|
6160
|
-
|
6161
|
-
|
6162
|
-
|
6157
|
+
extensionName: string;
|
6158
|
+
fileName: string;
|
6159
|
+
fileKey: string;
|
6160
|
+
bucketName: string;
|
6161
|
+
fileSize: number;
|
6162
|
+
fileUrl: string;
|
6163
6163
|
};
|
6164
6164
|
roomId: string;
|
6165
6165
|
messageId: string;
|
@@ -6175,7 +6175,7 @@ export declare const roomContract: {
|
|
6175
6175
|
updatedAt: Date;
|
6176
6176
|
deletedAt: Date | null;
|
6177
6177
|
phone: string | null;
|
6178
|
-
|
6178
|
+
notificationCount: number | null;
|
6179
6179
|
};
|
6180
6180
|
resolved: boolean;
|
6181
6181
|
assigneeId: string | null;
|
@@ -6278,12 +6278,12 @@ export declare const roomContract: {
|
|
6278
6278
|
createdAt: Date;
|
6279
6279
|
updatedAt: Date;
|
6280
6280
|
deletedAt: Date | null;
|
6281
|
-
|
6282
|
-
|
6283
|
-
|
6284
|
-
|
6285
|
-
|
6286
|
-
|
6281
|
+
extensionName: string;
|
6282
|
+
fileName: string;
|
6283
|
+
fileKey: string;
|
6284
|
+
bucketName: string;
|
6285
|
+
fileSize: number;
|
6286
|
+
fileUrl: string;
|
6287
6287
|
};
|
6288
6288
|
roomId: string;
|
6289
6289
|
messageId: string;
|
@@ -6353,12 +6353,12 @@ export declare const roomContract: {
|
|
6353
6353
|
createdAt: Date;
|
6354
6354
|
updatedAt: Date;
|
6355
6355
|
deletedAt: Date | null;
|
6356
|
-
|
6357
|
-
|
6358
|
-
|
6359
|
-
|
6360
|
-
|
6361
|
-
|
6356
|
+
extensionName: string;
|
6357
|
+
fileName: string;
|
6358
|
+
fileKey: string;
|
6359
|
+
bucketName: string;
|
6360
|
+
fileSize: number;
|
6361
|
+
fileUrl: string;
|
6362
6362
|
};
|
6363
6363
|
roomId: string;
|
6364
6364
|
messageId: string;
|
@@ -6428,12 +6428,12 @@ export declare const roomContract: {
|
|
6428
6428
|
createdAt: Date;
|
6429
6429
|
updatedAt: Date;
|
6430
6430
|
deletedAt: Date | null;
|
6431
|
-
|
6432
|
-
|
6433
|
-
|
6434
|
-
|
6435
|
-
|
6436
|
-
|
6431
|
+
extensionName: string;
|
6432
|
+
fileName: string;
|
6433
|
+
fileKey: string;
|
6434
|
+
bucketName: string;
|
6435
|
+
fileSize: number;
|
6436
|
+
fileUrl: string;
|
6437
6437
|
};
|
6438
6438
|
roomId: string;
|
6439
6439
|
messageId: string;
|
@@ -6454,7 +6454,7 @@ export declare const roomContract: {
|
|
6454
6454
|
updatedAt: Date;
|
6455
6455
|
deletedAt: Date | null;
|
6456
6456
|
phone: string | null;
|
6457
|
-
|
6457
|
+
notificationCount: number | null;
|
6458
6458
|
};
|
6459
6459
|
roomId: string;
|
6460
6460
|
actorId: string;
|
@@ -6476,12 +6476,12 @@ export declare const roomContract: {
|
|
6476
6476
|
updatedAt: Date;
|
6477
6477
|
deletedAt: Date | null;
|
6478
6478
|
smtpHost: string;
|
6479
|
-
smtpPort:
|
6480
|
-
smtpTlsPort:
|
6479
|
+
smtpPort: number;
|
6480
|
+
smtpTlsPort: number;
|
6481
6481
|
useTlsForSmtp: boolean;
|
6482
6482
|
imapHost: string;
|
6483
|
-
imapPort:
|
6484
|
-
imapTlsPort:
|
6483
|
+
imapPort: number;
|
6484
|
+
imapTlsPort: number;
|
6485
6485
|
useTlsForImap: boolean;
|
6486
6486
|
};
|
6487
6487
|
};
|
@@ -6567,12 +6567,12 @@ export declare const roomContract: {
|
|
6567
6567
|
createdAt: Date;
|
6568
6568
|
updatedAt: Date;
|
6569
6569
|
deletedAt: Date | null;
|
6570
|
-
|
6571
|
-
|
6572
|
-
|
6573
|
-
|
6574
|
-
|
6575
|
-
|
6570
|
+
extensionName: string;
|
6571
|
+
fileName: string;
|
6572
|
+
fileKey: string;
|
6573
|
+
bucketName: string;
|
6574
|
+
fileSize: number;
|
6575
|
+
fileUrl: string;
|
6576
6576
|
};
|
6577
6577
|
roomId: string;
|
6578
6578
|
messageId: string;
|
@@ -6588,7 +6588,7 @@ export declare const roomContract: {
|
|
6588
6588
|
updatedAt: Date;
|
6589
6589
|
deletedAt: Date | null;
|
6590
6590
|
phone: string | null;
|
6591
|
-
|
6591
|
+
notificationCount: number | null;
|
6592
6592
|
};
|
6593
6593
|
resolved: boolean;
|
6594
6594
|
assigneeId: string | null;
|
@@ -6691,12 +6691,12 @@ export declare const roomContract: {
|
|
6691
6691
|
createdAt: Date;
|
6692
6692
|
updatedAt: Date;
|
6693
6693
|
deletedAt: Date | null;
|
6694
|
-
|
6695
|
-
|
6696
|
-
|
6697
|
-
|
6698
|
-
|
6699
|
-
|
6694
|
+
extensionName: string;
|
6695
|
+
fileName: string;
|
6696
|
+
fileKey: string;
|
6697
|
+
bucketName: string;
|
6698
|
+
fileSize: number;
|
6699
|
+
fileUrl: string;
|
6700
6700
|
};
|
6701
6701
|
roomId: string;
|
6702
6702
|
messageId: string;
|
@@ -6766,12 +6766,12 @@ export declare const roomContract: {
|
|
6766
6766
|
createdAt: Date;
|
6767
6767
|
updatedAt: Date;
|
6768
6768
|
deletedAt: Date | null;
|
6769
|
-
|
6770
|
-
|
6771
|
-
|
6772
|
-
|
6773
|
-
|
6774
|
-
|
6769
|
+
extensionName: string;
|
6770
|
+
fileName: string;
|
6771
|
+
fileKey: string;
|
6772
|
+
bucketName: string;
|
6773
|
+
fileSize: number;
|
6774
|
+
fileUrl: string;
|
6775
6775
|
};
|
6776
6776
|
roomId: string;
|
6777
6777
|
messageId: string;
|
@@ -6841,12 +6841,12 @@ export declare const roomContract: {
|
|
6841
6841
|
createdAt: Date;
|
6842
6842
|
updatedAt: Date;
|
6843
6843
|
deletedAt: Date | null;
|
6844
|
-
|
6845
|
-
|
6846
|
-
|
6847
|
-
|
6848
|
-
|
6849
|
-
|
6844
|
+
extensionName: string;
|
6845
|
+
fileName: string;
|
6846
|
+
fileKey: string;
|
6847
|
+
bucketName: string;
|
6848
|
+
fileSize: number;
|
6849
|
+
fileUrl: string;
|
6850
6850
|
};
|
6851
6851
|
roomId: string;
|
6852
6852
|
messageId: string;
|
@@ -6867,7 +6867,7 @@ export declare const roomContract: {
|
|
6867
6867
|
updatedAt: Date;
|
6868
6868
|
deletedAt: Date | null;
|
6869
6869
|
phone: string | null;
|
6870
|
-
|
6870
|
+
notificationCount: number | null;
|
6871
6871
|
};
|
6872
6872
|
roomId: string;
|
6873
6873
|
actorId: string;
|
@@ -6889,12 +6889,12 @@ export declare const roomContract: {
|
|
6889
6889
|
updatedAt: Date;
|
6890
6890
|
deletedAt: Date | null;
|
6891
6891
|
smtpHost: string;
|
6892
|
-
smtpPort:
|
6893
|
-
smtpTlsPort:
|
6892
|
+
smtpPort: number;
|
6893
|
+
smtpTlsPort: number;
|
6894
6894
|
useTlsForSmtp: boolean;
|
6895
6895
|
imapHost: string;
|
6896
|
-
imapPort:
|
6897
|
-
imapTlsPort:
|
6896
|
+
imapPort: number;
|
6897
|
+
imapTlsPort: number;
|
6898
6898
|
useTlsForImap: boolean;
|
6899
6899
|
};
|
6900
6900
|
};
|
@@ -7172,18 +7172,21 @@ export declare const roomContract: {
|
|
7172
7172
|
note: z.ZodOptional<z.ZodString>;
|
7173
7173
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
7174
7174
|
handover: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEffects<z.ZodUnion<[z.ZodLiteral<"true">, z.ZodLiteral<"false">]>, boolean, "false" | "true">]>>>;
|
7175
|
+
selfAssign: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEffects<z.ZodUnion<[z.ZodLiteral<"true">, z.ZodLiteral<"false">]>, boolean, "false" | "true">]>>>;
|
7175
7176
|
}, "strip", z.ZodTypeAny, {
|
7176
7177
|
resolved?: boolean | null | undefined;
|
7177
7178
|
assigneeId?: string | null | undefined;
|
7178
7179
|
note?: string | undefined;
|
7179
7180
|
tags?: string[] | undefined;
|
7180
7181
|
handover?: boolean | null | undefined;
|
7182
|
+
selfAssign?: boolean | null | undefined;
|
7181
7183
|
}, {
|
7182
7184
|
resolved?: boolean | "false" | "true" | null | undefined;
|
7183
7185
|
assigneeId?: string | null | undefined;
|
7184
7186
|
note?: string | undefined;
|
7185
7187
|
tags?: string[] | undefined;
|
7186
7188
|
handover?: boolean | "false" | "true" | null | undefined;
|
7189
|
+
selfAssign?: boolean | "false" | "true" | null | undefined;
|
7187
7190
|
}>;
|
7188
7191
|
summary: "Update a mail room by id";
|
7189
7192
|
method: "PATCH";
|
@@ -7450,34 +7453,34 @@ export declare const roomContract: {
|
|
7450
7453
|
createdAt: z.ZodDate;
|
7451
7454
|
updatedAt: z.ZodDate;
|
7452
7455
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
7453
|
-
|
7454
|
-
|
7455
|
-
|
7456
|
-
|
7457
|
-
|
7458
|
-
|
7456
|
+
bucketName: z.ZodString;
|
7457
|
+
fileName: z.ZodString;
|
7458
|
+
fileKey: z.ZodString;
|
7459
|
+
fileSize: z.ZodNumber;
|
7460
|
+
fileUrl: z.ZodString;
|
7461
|
+
extensionName: z.ZodString;
|
7459
7462
|
}, "strip", z.ZodTypeAny, {
|
7460
7463
|
id: string;
|
7461
7464
|
createdAt: Date;
|
7462
7465
|
updatedAt: Date;
|
7463
7466
|
deletedAt: Date | null;
|
7464
|
-
|
7465
|
-
|
7466
|
-
|
7467
|
-
|
7468
|
-
|
7469
|
-
|
7467
|
+
extensionName: string;
|
7468
|
+
fileName: string;
|
7469
|
+
fileKey: string;
|
7470
|
+
bucketName: string;
|
7471
|
+
fileSize: number;
|
7472
|
+
fileUrl: string;
|
7470
7473
|
}, {
|
7471
7474
|
id: string;
|
7472
7475
|
createdAt: Date;
|
7473
7476
|
updatedAt: Date;
|
7474
7477
|
deletedAt: Date | null;
|
7475
|
-
|
7476
|
-
|
7477
|
-
|
7478
|
-
|
7479
|
-
|
7480
|
-
|
7478
|
+
extensionName: string;
|
7479
|
+
fileName: string;
|
7480
|
+
fileKey: string;
|
7481
|
+
bucketName: string;
|
7482
|
+
fileSize: number;
|
7483
|
+
fileUrl: string;
|
7481
7484
|
}>;
|
7482
7485
|
}, "strip", z.ZodTypeAny, {
|
7483
7486
|
id: string;
|
@@ -7492,12 +7495,12 @@ export declare const roomContract: {
|
|
7492
7495
|
createdAt: Date;
|
7493
7496
|
updatedAt: Date;
|
7494
7497
|
deletedAt: Date | null;
|
7495
|
-
|
7496
|
-
|
7497
|
-
|
7498
|
-
|
7499
|
-
|
7500
|
-
|
7498
|
+
extensionName: string;
|
7499
|
+
fileName: string;
|
7500
|
+
fileKey: string;
|
7501
|
+
bucketName: string;
|
7502
|
+
fileSize: number;
|
7503
|
+
fileUrl: string;
|
7501
7504
|
};
|
7502
7505
|
roomId: string;
|
7503
7506
|
messageId: string;
|
@@ -7515,12 +7518,12 @@ export declare const roomContract: {
|
|
7515
7518
|
createdAt: Date;
|
7516
7519
|
updatedAt: Date;
|
7517
7520
|
deletedAt: Date | null;
|
7518
|
-
|
7519
|
-
|
7520
|
-
|
7521
|
-
|
7522
|
-
|
7523
|
-
|
7521
|
+
extensionName: string;
|
7522
|
+
fileName: string;
|
7523
|
+
fileKey: string;
|
7524
|
+
bucketName: string;
|
7525
|
+
fileSize: number;
|
7526
|
+
fileUrl: string;
|
7524
7527
|
};
|
7525
7528
|
roomId: string;
|
7526
7529
|
messageId: string;
|
@@ -7589,12 +7592,12 @@ export declare const roomContract: {
|
|
7589
7592
|
createdAt: Date;
|
7590
7593
|
updatedAt: Date;
|
7591
7594
|
deletedAt: Date | null;
|
7592
|
-
|
7593
|
-
|
7594
|
-
|
7595
|
-
|
7596
|
-
|
7597
|
-
|
7595
|
+
extensionName: string;
|
7596
|
+
fileName: string;
|
7597
|
+
fileKey: string;
|
7598
|
+
bucketName: string;
|
7599
|
+
fileSize: number;
|
7600
|
+
fileUrl: string;
|
7598
7601
|
};
|
7599
7602
|
roomId: string;
|
7600
7603
|
messageId: string;
|
@@ -7663,12 +7666,12 @@ export declare const roomContract: {
|
|
7663
7666
|
createdAt: Date;
|
7664
7667
|
updatedAt: Date;
|
7665
7668
|
deletedAt: Date | null;
|
7666
|
-
|
7667
|
-
|
7668
|
-
|
7669
|
-
|
7670
|
-
|
7671
|
-
|
7669
|
+
extensionName: string;
|
7670
|
+
fileName: string;
|
7671
|
+
fileKey: string;
|
7672
|
+
bucketName: string;
|
7673
|
+
fileSize: number;
|
7674
|
+
fileUrl: string;
|
7672
7675
|
};
|
7673
7676
|
roomId: string;
|
7674
7677
|
messageId: string;
|
@@ -7797,34 +7800,34 @@ export declare const roomContract: {
|
|
7797
7800
|
createdAt: z.ZodDate;
|
7798
7801
|
updatedAt: z.ZodDate;
|
7799
7802
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
7800
|
-
|
7801
|
-
|
7802
|
-
|
7803
|
-
|
7804
|
-
|
7805
|
-
|
7803
|
+
bucketName: z.ZodString;
|
7804
|
+
fileName: z.ZodString;
|
7805
|
+
fileKey: z.ZodString;
|
7806
|
+
fileSize: z.ZodNumber;
|
7807
|
+
fileUrl: z.ZodString;
|
7808
|
+
extensionName: z.ZodString;
|
7806
7809
|
}, "strip", z.ZodTypeAny, {
|
7807
7810
|
id: string;
|
7808
7811
|
createdAt: Date;
|
7809
7812
|
updatedAt: Date;
|
7810
7813
|
deletedAt: Date | null;
|
7811
|
-
|
7812
|
-
|
7813
|
-
|
7814
|
-
|
7815
|
-
|
7816
|
-
|
7814
|
+
extensionName: string;
|
7815
|
+
fileName: string;
|
7816
|
+
fileKey: string;
|
7817
|
+
bucketName: string;
|
7818
|
+
fileSize: number;
|
7819
|
+
fileUrl: string;
|
7817
7820
|
}, {
|
7818
7821
|
id: string;
|
7819
7822
|
createdAt: Date;
|
7820
7823
|
updatedAt: Date;
|
7821
7824
|
deletedAt: Date | null;
|
7822
|
-
|
7823
|
-
|
7824
|
-
|
7825
|
-
|
7826
|
-
|
7827
|
-
|
7825
|
+
extensionName: string;
|
7826
|
+
fileName: string;
|
7827
|
+
fileKey: string;
|
7828
|
+
bucketName: string;
|
7829
|
+
fileSize: number;
|
7830
|
+
fileUrl: string;
|
7828
7831
|
}>;
|
7829
7832
|
}, "strip", z.ZodTypeAny, {
|
7830
7833
|
id: string;
|
@@ -7839,12 +7842,12 @@ export declare const roomContract: {
|
|
7839
7842
|
createdAt: Date;
|
7840
7843
|
updatedAt: Date;
|
7841
7844
|
deletedAt: Date | null;
|
7842
|
-
|
7843
|
-
|
7844
|
-
|
7845
|
-
|
7846
|
-
|
7847
|
-
|
7845
|
+
extensionName: string;
|
7846
|
+
fileName: string;
|
7847
|
+
fileKey: string;
|
7848
|
+
bucketName: string;
|
7849
|
+
fileSize: number;
|
7850
|
+
fileUrl: string;
|
7848
7851
|
};
|
7849
7852
|
roomId: string;
|
7850
7853
|
messageId: string;
|
@@ -7862,12 +7865,12 @@ export declare const roomContract: {
|
|
7862
7865
|
createdAt: Date;
|
7863
7866
|
updatedAt: Date;
|
7864
7867
|
deletedAt: Date | null;
|
7865
|
-
|
7866
|
-
|
7867
|
-
|
7868
|
-
|
7869
|
-
|
7870
|
-
|
7868
|
+
extensionName: string;
|
7869
|
+
fileName: string;
|
7870
|
+
fileKey: string;
|
7871
|
+
bucketName: string;
|
7872
|
+
fileSize: number;
|
7873
|
+
fileUrl: string;
|
7871
7874
|
};
|
7872
7875
|
roomId: string;
|
7873
7876
|
messageId: string;
|
@@ -7936,12 +7939,12 @@ export declare const roomContract: {
|
|
7936
7939
|
createdAt: Date;
|
7937
7940
|
updatedAt: Date;
|
7938
7941
|
deletedAt: Date | null;
|
7939
|
-
|
7940
|
-
|
7941
|
-
|
7942
|
-
|
7943
|
-
|
7944
|
-
|
7942
|
+
extensionName: string;
|
7943
|
+
fileName: string;
|
7944
|
+
fileKey: string;
|
7945
|
+
bucketName: string;
|
7946
|
+
fileSize: number;
|
7947
|
+
fileUrl: string;
|
7945
7948
|
};
|
7946
7949
|
roomId: string;
|
7947
7950
|
messageId: string;
|
@@ -8010,12 +8013,12 @@ export declare const roomContract: {
|
|
8010
8013
|
createdAt: Date;
|
8011
8014
|
updatedAt: Date;
|
8012
8015
|
deletedAt: Date | null;
|
8013
|
-
|
8014
|
-
|
8015
|
-
|
8016
|
-
|
8017
|
-
|
8018
|
-
|
8016
|
+
extensionName: string;
|
8017
|
+
fileName: string;
|
8018
|
+
fileKey: string;
|
8019
|
+
bucketName: string;
|
8020
|
+
fileSize: number;
|
8021
|
+
fileUrl: string;
|
8019
8022
|
};
|
8020
8023
|
roomId: string;
|
8021
8024
|
messageId: string;
|
@@ -8053,7 +8056,7 @@ export declare const roomContract: {
|
|
8053
8056
|
email: z.ZodString;
|
8054
8057
|
address: z.ZodNullable<z.ZodString>;
|
8055
8058
|
phone: z.ZodNullable<z.ZodString>;
|
8056
|
-
|
8059
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
8057
8060
|
}, "strip", z.ZodTypeAny, {
|
8058
8061
|
id: string;
|
8059
8062
|
address: string | null;
|
@@ -8063,7 +8066,7 @@ export declare const roomContract: {
|
|
8063
8066
|
updatedAt: Date;
|
8064
8067
|
deletedAt: Date | null;
|
8065
8068
|
phone: string | null;
|
8066
|
-
|
8069
|
+
notificationCount: number | null;
|
8067
8070
|
}, {
|
8068
8071
|
id: string;
|
8069
8072
|
address: string | null;
|
@@ -8073,7 +8076,7 @@ export declare const roomContract: {
|
|
8073
8076
|
updatedAt: Date;
|
8074
8077
|
deletedAt: Date | null;
|
8075
8078
|
phone: string | null;
|
8076
|
-
|
8079
|
+
notificationCount: number | null;
|
8077
8080
|
}>;
|
8078
8081
|
messages: z.ZodArray<z.ZodObject<{
|
8079
8082
|
id: z.ZodString;
|
@@ -8197,34 +8200,34 @@ export declare const roomContract: {
|
|
8197
8200
|
createdAt: z.ZodDate;
|
8198
8201
|
updatedAt: z.ZodDate;
|
8199
8202
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
8200
|
-
|
8201
|
-
|
8202
|
-
|
8203
|
-
|
8204
|
-
|
8205
|
-
|
8203
|
+
bucketName: z.ZodString;
|
8204
|
+
fileName: z.ZodString;
|
8205
|
+
fileKey: z.ZodString;
|
8206
|
+
fileSize: z.ZodNumber;
|
8207
|
+
fileUrl: z.ZodString;
|
8208
|
+
extensionName: z.ZodString;
|
8206
8209
|
}, "strip", z.ZodTypeAny, {
|
8207
8210
|
id: string;
|
8208
8211
|
createdAt: Date;
|
8209
8212
|
updatedAt: Date;
|
8210
8213
|
deletedAt: Date | null;
|
8211
|
-
|
8212
|
-
|
8213
|
-
|
8214
|
-
|
8215
|
-
|
8216
|
-
|
8214
|
+
extensionName: string;
|
8215
|
+
fileName: string;
|
8216
|
+
fileKey: string;
|
8217
|
+
bucketName: string;
|
8218
|
+
fileSize: number;
|
8219
|
+
fileUrl: string;
|
8217
8220
|
}, {
|
8218
8221
|
id: string;
|
8219
8222
|
createdAt: Date;
|
8220
8223
|
updatedAt: Date;
|
8221
8224
|
deletedAt: Date | null;
|
8222
|
-
|
8223
|
-
|
8224
|
-
|
8225
|
-
|
8226
|
-
|
8227
|
-
|
8225
|
+
extensionName: string;
|
8226
|
+
fileName: string;
|
8227
|
+
fileKey: string;
|
8228
|
+
bucketName: string;
|
8229
|
+
fileSize: number;
|
8230
|
+
fileUrl: string;
|
8228
8231
|
}>;
|
8229
8232
|
}, "strip", z.ZodTypeAny, {
|
8230
8233
|
id: string;
|
@@ -8239,12 +8242,12 @@ export declare const roomContract: {
|
|
8239
8242
|
createdAt: Date;
|
8240
8243
|
updatedAt: Date;
|
8241
8244
|
deletedAt: Date | null;
|
8242
|
-
|
8243
|
-
|
8244
|
-
|
8245
|
-
|
8246
|
-
|
8247
|
-
|
8245
|
+
extensionName: string;
|
8246
|
+
fileName: string;
|
8247
|
+
fileKey: string;
|
8248
|
+
bucketName: string;
|
8249
|
+
fileSize: number;
|
8250
|
+
fileUrl: string;
|
8248
8251
|
};
|
8249
8252
|
roomId: string;
|
8250
8253
|
messageId: string;
|
@@ -8262,12 +8265,12 @@ export declare const roomContract: {
|
|
8262
8265
|
createdAt: Date;
|
8263
8266
|
updatedAt: Date;
|
8264
8267
|
deletedAt: Date | null;
|
8265
|
-
|
8266
|
-
|
8267
|
-
|
8268
|
-
|
8269
|
-
|
8270
|
-
|
8268
|
+
extensionName: string;
|
8269
|
+
fileName: string;
|
8270
|
+
fileKey: string;
|
8271
|
+
bucketName: string;
|
8272
|
+
fileSize: number;
|
8273
|
+
fileUrl: string;
|
8271
8274
|
};
|
8272
8275
|
roomId: string;
|
8273
8276
|
messageId: string;
|
@@ -8336,12 +8339,12 @@ export declare const roomContract: {
|
|
8336
8339
|
createdAt: Date;
|
8337
8340
|
updatedAt: Date;
|
8338
8341
|
deletedAt: Date | null;
|
8339
|
-
|
8340
|
-
|
8341
|
-
|
8342
|
-
|
8343
|
-
|
8344
|
-
|
8342
|
+
extensionName: string;
|
8343
|
+
fileName: string;
|
8344
|
+
fileKey: string;
|
8345
|
+
bucketName: string;
|
8346
|
+
fileSize: number;
|
8347
|
+
fileUrl: string;
|
8345
8348
|
};
|
8346
8349
|
roomId: string;
|
8347
8350
|
messageId: string;
|
@@ -8410,12 +8413,12 @@ export declare const roomContract: {
|
|
8410
8413
|
createdAt: Date;
|
8411
8414
|
updatedAt: Date;
|
8412
8415
|
deletedAt: Date | null;
|
8413
|
-
|
8414
|
-
|
8415
|
-
|
8416
|
-
|
8417
|
-
|
8418
|
-
|
8416
|
+
extensionName: string;
|
8417
|
+
fileName: string;
|
8418
|
+
fileKey: string;
|
8419
|
+
bucketName: string;
|
8420
|
+
fileSize: number;
|
8421
|
+
fileUrl: string;
|
8419
8422
|
};
|
8420
8423
|
roomId: string;
|
8421
8424
|
messageId: string;
|
@@ -8544,34 +8547,34 @@ export declare const roomContract: {
|
|
8544
8547
|
createdAt: z.ZodDate;
|
8545
8548
|
updatedAt: z.ZodDate;
|
8546
8549
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
8547
|
-
|
8548
|
-
|
8549
|
-
|
8550
|
-
|
8551
|
-
|
8552
|
-
|
8550
|
+
bucketName: z.ZodString;
|
8551
|
+
fileName: z.ZodString;
|
8552
|
+
fileKey: z.ZodString;
|
8553
|
+
fileSize: z.ZodNumber;
|
8554
|
+
fileUrl: z.ZodString;
|
8555
|
+
extensionName: z.ZodString;
|
8553
8556
|
}, "strip", z.ZodTypeAny, {
|
8554
8557
|
id: string;
|
8555
8558
|
createdAt: Date;
|
8556
8559
|
updatedAt: Date;
|
8557
8560
|
deletedAt: Date | null;
|
8558
|
-
|
8559
|
-
|
8560
|
-
|
8561
|
-
|
8562
|
-
|
8563
|
-
|
8561
|
+
extensionName: string;
|
8562
|
+
fileName: string;
|
8563
|
+
fileKey: string;
|
8564
|
+
bucketName: string;
|
8565
|
+
fileSize: number;
|
8566
|
+
fileUrl: string;
|
8564
8567
|
}, {
|
8565
8568
|
id: string;
|
8566
8569
|
createdAt: Date;
|
8567
8570
|
updatedAt: Date;
|
8568
8571
|
deletedAt: Date | null;
|
8569
|
-
|
8570
|
-
|
8571
|
-
|
8572
|
-
|
8573
|
-
|
8574
|
-
|
8572
|
+
extensionName: string;
|
8573
|
+
fileName: string;
|
8574
|
+
fileKey: string;
|
8575
|
+
bucketName: string;
|
8576
|
+
fileSize: number;
|
8577
|
+
fileUrl: string;
|
8575
8578
|
}>;
|
8576
8579
|
}, "strip", z.ZodTypeAny, {
|
8577
8580
|
id: string;
|
@@ -8586,12 +8589,12 @@ export declare const roomContract: {
|
|
8586
8589
|
createdAt: Date;
|
8587
8590
|
updatedAt: Date;
|
8588
8591
|
deletedAt: Date | null;
|
8589
|
-
|
8590
|
-
|
8591
|
-
|
8592
|
-
|
8593
|
-
|
8594
|
-
|
8592
|
+
extensionName: string;
|
8593
|
+
fileName: string;
|
8594
|
+
fileKey: string;
|
8595
|
+
bucketName: string;
|
8596
|
+
fileSize: number;
|
8597
|
+
fileUrl: string;
|
8595
8598
|
};
|
8596
8599
|
roomId: string;
|
8597
8600
|
messageId: string;
|
@@ -8609,12 +8612,12 @@ export declare const roomContract: {
|
|
8609
8612
|
createdAt: Date;
|
8610
8613
|
updatedAt: Date;
|
8611
8614
|
deletedAt: Date | null;
|
8612
|
-
|
8613
|
-
|
8614
|
-
|
8615
|
-
|
8616
|
-
|
8617
|
-
|
8615
|
+
extensionName: string;
|
8616
|
+
fileName: string;
|
8617
|
+
fileKey: string;
|
8618
|
+
bucketName: string;
|
8619
|
+
fileSize: number;
|
8620
|
+
fileUrl: string;
|
8618
8621
|
};
|
8619
8622
|
roomId: string;
|
8620
8623
|
messageId: string;
|
@@ -8683,12 +8686,12 @@ export declare const roomContract: {
|
|
8683
8686
|
createdAt: Date;
|
8684
8687
|
updatedAt: Date;
|
8685
8688
|
deletedAt: Date | null;
|
8686
|
-
|
8687
|
-
|
8688
|
-
|
8689
|
-
|
8690
|
-
|
8691
|
-
|
8689
|
+
extensionName: string;
|
8690
|
+
fileName: string;
|
8691
|
+
fileKey: string;
|
8692
|
+
bucketName: string;
|
8693
|
+
fileSize: number;
|
8694
|
+
fileUrl: string;
|
8692
8695
|
};
|
8693
8696
|
roomId: string;
|
8694
8697
|
messageId: string;
|
@@ -8757,12 +8760,12 @@ export declare const roomContract: {
|
|
8757
8760
|
createdAt: Date;
|
8758
8761
|
updatedAt: Date;
|
8759
8762
|
deletedAt: Date | null;
|
8760
|
-
|
8761
|
-
|
8762
|
-
|
8763
|
-
|
8764
|
-
|
8765
|
-
|
8763
|
+
extensionName: string;
|
8764
|
+
fileName: string;
|
8765
|
+
fileKey: string;
|
8766
|
+
bucketName: string;
|
8767
|
+
fileSize: number;
|
8768
|
+
fileUrl: string;
|
8766
8769
|
};
|
8767
8770
|
roomId: string;
|
8768
8771
|
messageId: string;
|
@@ -8785,7 +8788,7 @@ export declare const roomContract: {
|
|
8785
8788
|
email: z.ZodString;
|
8786
8789
|
address: z.ZodNullable<z.ZodString>;
|
8787
8790
|
phone: z.ZodNullable<z.ZodString>;
|
8788
|
-
|
8791
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
8789
8792
|
}, "strip", z.ZodTypeAny, {
|
8790
8793
|
id: string;
|
8791
8794
|
address: string | null;
|
@@ -8795,7 +8798,7 @@ export declare const roomContract: {
|
|
8795
8798
|
updatedAt: Date;
|
8796
8799
|
deletedAt: Date | null;
|
8797
8800
|
phone: string | null;
|
8798
|
-
|
8801
|
+
notificationCount: number | null;
|
8799
8802
|
}, {
|
8800
8803
|
id: string;
|
8801
8804
|
address: string | null;
|
@@ -8805,7 +8808,7 @@ export declare const roomContract: {
|
|
8805
8808
|
updatedAt: Date;
|
8806
8809
|
deletedAt: Date | null;
|
8807
8810
|
phone: string | null;
|
8808
|
-
|
8811
|
+
notificationCount: number | null;
|
8809
8812
|
}>;
|
8810
8813
|
}, "strip", z.ZodTypeAny, {
|
8811
8814
|
id: string;
|
@@ -8822,7 +8825,7 @@ export declare const roomContract: {
|
|
8822
8825
|
updatedAt: Date;
|
8823
8826
|
deletedAt: Date | null;
|
8824
8827
|
phone: string | null;
|
8825
|
-
|
8828
|
+
notificationCount: number | null;
|
8826
8829
|
};
|
8827
8830
|
roomId: string;
|
8828
8831
|
actorId: string;
|
@@ -8841,7 +8844,7 @@ export declare const roomContract: {
|
|
8841
8844
|
updatedAt: Date;
|
8842
8845
|
deletedAt: Date | null;
|
8843
8846
|
phone: string | null;
|
8844
|
-
|
8847
|
+
notificationCount: number | null;
|
8845
8848
|
};
|
8846
8849
|
roomId: string;
|
8847
8850
|
actorId: string;
|
@@ -8862,12 +8865,12 @@ export declare const roomContract: {
|
|
8862
8865
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
8863
8866
|
name: z.ZodString;
|
8864
8867
|
smtpHost: z.ZodString;
|
8865
|
-
smtpPort: z.
|
8866
|
-
smtpTlsPort: z.
|
8868
|
+
smtpPort: z.ZodNumber;
|
8869
|
+
smtpTlsPort: z.ZodNumber;
|
8867
8870
|
useTlsForSmtp: z.ZodBoolean;
|
8868
8871
|
imapHost: z.ZodString;
|
8869
|
-
imapPort: z.
|
8870
|
-
imapTlsPort: z.
|
8872
|
+
imapPort: z.ZodNumber;
|
8873
|
+
imapTlsPort: z.ZodNumber;
|
8871
8874
|
useTlsForImap: z.ZodBoolean;
|
8872
8875
|
}, "strip", z.ZodTypeAny, {
|
8873
8876
|
id: string;
|
@@ -8876,12 +8879,12 @@ export declare const roomContract: {
|
|
8876
8879
|
updatedAt: Date;
|
8877
8880
|
deletedAt: Date | null;
|
8878
8881
|
smtpHost: string;
|
8879
|
-
smtpPort:
|
8880
|
-
smtpTlsPort:
|
8882
|
+
smtpPort: number;
|
8883
|
+
smtpTlsPort: number;
|
8881
8884
|
useTlsForSmtp: boolean;
|
8882
8885
|
imapHost: string;
|
8883
|
-
imapPort:
|
8884
|
-
imapTlsPort:
|
8886
|
+
imapPort: number;
|
8887
|
+
imapTlsPort: number;
|
8885
8888
|
useTlsForImap: boolean;
|
8886
8889
|
}, {
|
8887
8890
|
id: string;
|
@@ -8890,12 +8893,12 @@ export declare const roomContract: {
|
|
8890
8893
|
updatedAt: Date;
|
8891
8894
|
deletedAt: Date | null;
|
8892
8895
|
smtpHost: string;
|
8893
|
-
smtpPort:
|
8894
|
-
smtpTlsPort:
|
8896
|
+
smtpPort: number;
|
8897
|
+
smtpTlsPort: number;
|
8895
8898
|
useTlsForSmtp: boolean;
|
8896
8899
|
imapHost: string;
|
8897
|
-
imapPort:
|
8898
|
-
imapTlsPort:
|
8900
|
+
imapPort: number;
|
8901
|
+
imapTlsPort: number;
|
8899
8902
|
useTlsForImap: boolean;
|
8900
8903
|
}>;
|
8901
8904
|
state: z.ZodUnion<[z.ZodLiteral<"init">, z.ZodLiteral<"syncing">, z.ZodLiteral<"connecting">, z.ZodLiteral<"connected">, z.ZodLiteral<"disconnected">, z.ZodLiteral<"authenticationError">, z.ZodLiteral<"connectError">, z.ZodLiteral<"unset">]>;
|
@@ -8916,12 +8919,12 @@ export declare const roomContract: {
|
|
8916
8919
|
updatedAt: Date;
|
8917
8920
|
deletedAt: Date | null;
|
8918
8921
|
smtpHost: string;
|
8919
|
-
smtpPort:
|
8920
|
-
smtpTlsPort:
|
8922
|
+
smtpPort: number;
|
8923
|
+
smtpTlsPort: number;
|
8921
8924
|
useTlsForSmtp: boolean;
|
8922
8925
|
imapHost: string;
|
8923
|
-
imapPort:
|
8924
|
-
imapTlsPort:
|
8926
|
+
imapPort: number;
|
8927
|
+
imapTlsPort: number;
|
8925
8928
|
useTlsForImap: boolean;
|
8926
8929
|
};
|
8927
8930
|
}, {
|
@@ -8941,12 +8944,12 @@ export declare const roomContract: {
|
|
8941
8944
|
updatedAt: Date;
|
8942
8945
|
deletedAt: Date | null;
|
8943
8946
|
smtpHost: string;
|
8944
|
-
smtpPort:
|
8945
|
-
smtpTlsPort:
|
8947
|
+
smtpPort: number;
|
8948
|
+
smtpTlsPort: number;
|
8946
8949
|
useTlsForSmtp: boolean;
|
8947
8950
|
imapHost: string;
|
8948
|
-
imapPort:
|
8949
|
-
imapTlsPort:
|
8951
|
+
imapPort: number;
|
8952
|
+
imapTlsPort: number;
|
8950
8953
|
useTlsForImap: boolean;
|
8951
8954
|
};
|
8952
8955
|
}>;
|
@@ -9029,12 +9032,12 @@ export declare const roomContract: {
|
|
9029
9032
|
createdAt: Date;
|
9030
9033
|
updatedAt: Date;
|
9031
9034
|
deletedAt: Date | null;
|
9032
|
-
|
9033
|
-
|
9034
|
-
|
9035
|
-
|
9036
|
-
|
9037
|
-
|
9035
|
+
extensionName: string;
|
9036
|
+
fileName: string;
|
9037
|
+
fileKey: string;
|
9038
|
+
bucketName: string;
|
9039
|
+
fileSize: number;
|
9040
|
+
fileUrl: string;
|
9038
9041
|
};
|
9039
9042
|
roomId: string;
|
9040
9043
|
messageId: string;
|
@@ -9050,7 +9053,7 @@ export declare const roomContract: {
|
|
9050
9053
|
updatedAt: Date;
|
9051
9054
|
deletedAt: Date | null;
|
9052
9055
|
phone: string | null;
|
9053
|
-
|
9056
|
+
notificationCount: number | null;
|
9054
9057
|
};
|
9055
9058
|
resolved: boolean;
|
9056
9059
|
assigneeId: string | null;
|
@@ -9153,12 +9156,12 @@ export declare const roomContract: {
|
|
9153
9156
|
createdAt: Date;
|
9154
9157
|
updatedAt: Date;
|
9155
9158
|
deletedAt: Date | null;
|
9156
|
-
|
9157
|
-
|
9158
|
-
|
9159
|
-
|
9160
|
-
|
9161
|
-
|
9159
|
+
extensionName: string;
|
9160
|
+
fileName: string;
|
9161
|
+
fileKey: string;
|
9162
|
+
bucketName: string;
|
9163
|
+
fileSize: number;
|
9164
|
+
fileUrl: string;
|
9162
9165
|
};
|
9163
9166
|
roomId: string;
|
9164
9167
|
messageId: string;
|
@@ -9228,12 +9231,12 @@ export declare const roomContract: {
|
|
9228
9231
|
createdAt: Date;
|
9229
9232
|
updatedAt: Date;
|
9230
9233
|
deletedAt: Date | null;
|
9231
|
-
|
9232
|
-
|
9233
|
-
|
9234
|
-
|
9235
|
-
|
9236
|
-
|
9234
|
+
extensionName: string;
|
9235
|
+
fileName: string;
|
9236
|
+
fileKey: string;
|
9237
|
+
bucketName: string;
|
9238
|
+
fileSize: number;
|
9239
|
+
fileUrl: string;
|
9237
9240
|
};
|
9238
9241
|
roomId: string;
|
9239
9242
|
messageId: string;
|
@@ -9303,12 +9306,12 @@ export declare const roomContract: {
|
|
9303
9306
|
createdAt: Date;
|
9304
9307
|
updatedAt: Date;
|
9305
9308
|
deletedAt: Date | null;
|
9306
|
-
|
9307
|
-
|
9308
|
-
|
9309
|
-
|
9310
|
-
|
9311
|
-
|
9309
|
+
extensionName: string;
|
9310
|
+
fileName: string;
|
9311
|
+
fileKey: string;
|
9312
|
+
bucketName: string;
|
9313
|
+
fileSize: number;
|
9314
|
+
fileUrl: string;
|
9312
9315
|
};
|
9313
9316
|
roomId: string;
|
9314
9317
|
messageId: string;
|
@@ -9329,7 +9332,7 @@ export declare const roomContract: {
|
|
9329
9332
|
updatedAt: Date;
|
9330
9333
|
deletedAt: Date | null;
|
9331
9334
|
phone: string | null;
|
9332
|
-
|
9335
|
+
notificationCount: number | null;
|
9333
9336
|
};
|
9334
9337
|
roomId: string;
|
9335
9338
|
actorId: string;
|
@@ -9351,12 +9354,12 @@ export declare const roomContract: {
|
|
9351
9354
|
updatedAt: Date;
|
9352
9355
|
deletedAt: Date | null;
|
9353
9356
|
smtpHost: string;
|
9354
|
-
smtpPort:
|
9355
|
-
smtpTlsPort:
|
9357
|
+
smtpPort: number;
|
9358
|
+
smtpTlsPort: number;
|
9356
9359
|
useTlsForSmtp: boolean;
|
9357
9360
|
imapHost: string;
|
9358
|
-
imapPort:
|
9359
|
-
imapTlsPort:
|
9361
|
+
imapPort: number;
|
9362
|
+
imapTlsPort: number;
|
9360
9363
|
useTlsForImap: boolean;
|
9361
9364
|
};
|
9362
9365
|
};
|
@@ -9439,12 +9442,12 @@ export declare const roomContract: {
|
|
9439
9442
|
createdAt: Date;
|
9440
9443
|
updatedAt: Date;
|
9441
9444
|
deletedAt: Date | null;
|
9442
|
-
|
9443
|
-
|
9444
|
-
|
9445
|
-
|
9446
|
-
|
9447
|
-
|
9445
|
+
extensionName: string;
|
9446
|
+
fileName: string;
|
9447
|
+
fileKey: string;
|
9448
|
+
bucketName: string;
|
9449
|
+
fileSize: number;
|
9450
|
+
fileUrl: string;
|
9448
9451
|
};
|
9449
9452
|
roomId: string;
|
9450
9453
|
messageId: string;
|
@@ -9460,7 +9463,7 @@ export declare const roomContract: {
|
|
9460
9463
|
updatedAt: Date;
|
9461
9464
|
deletedAt: Date | null;
|
9462
9465
|
phone: string | null;
|
9463
|
-
|
9466
|
+
notificationCount: number | null;
|
9464
9467
|
};
|
9465
9468
|
resolved: boolean;
|
9466
9469
|
assigneeId: string | null;
|
@@ -9563,12 +9566,12 @@ export declare const roomContract: {
|
|
9563
9566
|
createdAt: Date;
|
9564
9567
|
updatedAt: Date;
|
9565
9568
|
deletedAt: Date | null;
|
9566
|
-
|
9567
|
-
|
9568
|
-
|
9569
|
-
|
9570
|
-
|
9571
|
-
|
9569
|
+
extensionName: string;
|
9570
|
+
fileName: string;
|
9571
|
+
fileKey: string;
|
9572
|
+
bucketName: string;
|
9573
|
+
fileSize: number;
|
9574
|
+
fileUrl: string;
|
9572
9575
|
};
|
9573
9576
|
roomId: string;
|
9574
9577
|
messageId: string;
|
@@ -9638,12 +9641,12 @@ export declare const roomContract: {
|
|
9638
9641
|
createdAt: Date;
|
9639
9642
|
updatedAt: Date;
|
9640
9643
|
deletedAt: Date | null;
|
9641
|
-
|
9642
|
-
|
9643
|
-
|
9644
|
-
|
9645
|
-
|
9646
|
-
|
9644
|
+
extensionName: string;
|
9645
|
+
fileName: string;
|
9646
|
+
fileKey: string;
|
9647
|
+
bucketName: string;
|
9648
|
+
fileSize: number;
|
9649
|
+
fileUrl: string;
|
9647
9650
|
};
|
9648
9651
|
roomId: string;
|
9649
9652
|
messageId: string;
|
@@ -9713,12 +9716,12 @@ export declare const roomContract: {
|
|
9713
9716
|
createdAt: Date;
|
9714
9717
|
updatedAt: Date;
|
9715
9718
|
deletedAt: Date | null;
|
9716
|
-
|
9717
|
-
|
9718
|
-
|
9719
|
-
|
9720
|
-
|
9721
|
-
|
9719
|
+
extensionName: string;
|
9720
|
+
fileName: string;
|
9721
|
+
fileKey: string;
|
9722
|
+
bucketName: string;
|
9723
|
+
fileSize: number;
|
9724
|
+
fileUrl: string;
|
9722
9725
|
};
|
9723
9726
|
roomId: string;
|
9724
9727
|
messageId: string;
|
@@ -9739,7 +9742,7 @@ export declare const roomContract: {
|
|
9739
9742
|
updatedAt: Date;
|
9740
9743
|
deletedAt: Date | null;
|
9741
9744
|
phone: string | null;
|
9742
|
-
|
9745
|
+
notificationCount: number | null;
|
9743
9746
|
};
|
9744
9747
|
roomId: string;
|
9745
9748
|
actorId: string;
|
@@ -9761,12 +9764,12 @@ export declare const roomContract: {
|
|
9761
9764
|
updatedAt: Date;
|
9762
9765
|
deletedAt: Date | null;
|
9763
9766
|
smtpHost: string;
|
9764
|
-
smtpPort:
|
9765
|
-
smtpTlsPort:
|
9767
|
+
smtpPort: number;
|
9768
|
+
smtpTlsPort: number;
|
9766
9769
|
useTlsForSmtp: boolean;
|
9767
9770
|
imapHost: string;
|
9768
|
-
imapPort:
|
9769
|
-
imapTlsPort:
|
9771
|
+
imapPort: number;
|
9772
|
+
imapTlsPort: number;
|
9770
9773
|
useTlsForImap: boolean;
|
9771
9774
|
};
|
9772
9775
|
};
|
@@ -9851,12 +9854,12 @@ export declare const roomContract: {
|
|
9851
9854
|
createdAt: Date;
|
9852
9855
|
updatedAt: Date;
|
9853
9856
|
deletedAt: Date | null;
|
9854
|
-
|
9855
|
-
|
9856
|
-
|
9857
|
-
|
9858
|
-
|
9859
|
-
|
9857
|
+
extensionName: string;
|
9858
|
+
fileName: string;
|
9859
|
+
fileKey: string;
|
9860
|
+
bucketName: string;
|
9861
|
+
fileSize: number;
|
9862
|
+
fileUrl: string;
|
9860
9863
|
};
|
9861
9864
|
roomId: string;
|
9862
9865
|
messageId: string;
|
@@ -9872,7 +9875,7 @@ export declare const roomContract: {
|
|
9872
9875
|
updatedAt: Date;
|
9873
9876
|
deletedAt: Date | null;
|
9874
9877
|
phone: string | null;
|
9875
|
-
|
9878
|
+
notificationCount: number | null;
|
9876
9879
|
};
|
9877
9880
|
resolved: boolean;
|
9878
9881
|
assigneeId: string | null;
|
@@ -9975,12 +9978,12 @@ export declare const roomContract: {
|
|
9975
9978
|
createdAt: Date;
|
9976
9979
|
updatedAt: Date;
|
9977
9980
|
deletedAt: Date | null;
|
9978
|
-
|
9979
|
-
|
9980
|
-
|
9981
|
-
|
9982
|
-
|
9983
|
-
|
9981
|
+
extensionName: string;
|
9982
|
+
fileName: string;
|
9983
|
+
fileKey: string;
|
9984
|
+
bucketName: string;
|
9985
|
+
fileSize: number;
|
9986
|
+
fileUrl: string;
|
9984
9987
|
};
|
9985
9988
|
roomId: string;
|
9986
9989
|
messageId: string;
|
@@ -10050,12 +10053,12 @@ export declare const roomContract: {
|
|
10050
10053
|
createdAt: Date;
|
10051
10054
|
updatedAt: Date;
|
10052
10055
|
deletedAt: Date | null;
|
10053
|
-
|
10054
|
-
|
10055
|
-
|
10056
|
-
|
10057
|
-
|
10058
|
-
|
10056
|
+
extensionName: string;
|
10057
|
+
fileName: string;
|
10058
|
+
fileKey: string;
|
10059
|
+
bucketName: string;
|
10060
|
+
fileSize: number;
|
10061
|
+
fileUrl: string;
|
10059
10062
|
};
|
10060
10063
|
roomId: string;
|
10061
10064
|
messageId: string;
|
@@ -10125,12 +10128,12 @@ export declare const roomContract: {
|
|
10125
10128
|
createdAt: Date;
|
10126
10129
|
updatedAt: Date;
|
10127
10130
|
deletedAt: Date | null;
|
10128
|
-
|
10129
|
-
|
10130
|
-
|
10131
|
-
|
10132
|
-
|
10133
|
-
|
10131
|
+
extensionName: string;
|
10132
|
+
fileName: string;
|
10133
|
+
fileKey: string;
|
10134
|
+
bucketName: string;
|
10135
|
+
fileSize: number;
|
10136
|
+
fileUrl: string;
|
10134
10137
|
};
|
10135
10138
|
roomId: string;
|
10136
10139
|
messageId: string;
|
@@ -10151,7 +10154,7 @@ export declare const roomContract: {
|
|
10151
10154
|
updatedAt: Date;
|
10152
10155
|
deletedAt: Date | null;
|
10153
10156
|
phone: string | null;
|
10154
|
-
|
10157
|
+
notificationCount: number | null;
|
10155
10158
|
};
|
10156
10159
|
roomId: string;
|
10157
10160
|
actorId: string;
|
@@ -10173,12 +10176,12 @@ export declare const roomContract: {
|
|
10173
10176
|
updatedAt: Date;
|
10174
10177
|
deletedAt: Date | null;
|
10175
10178
|
smtpHost: string;
|
10176
|
-
smtpPort:
|
10177
|
-
smtpTlsPort:
|
10179
|
+
smtpPort: number;
|
10180
|
+
smtpTlsPort: number;
|
10178
10181
|
useTlsForSmtp: boolean;
|
10179
10182
|
imapHost: string;
|
10180
|
-
imapPort:
|
10181
|
-
imapTlsPort:
|
10183
|
+
imapPort: number;
|
10184
|
+
imapTlsPort: number;
|
10182
10185
|
useTlsForImap: boolean;
|
10183
10186
|
};
|
10184
10187
|
};
|
@@ -10264,12 +10267,12 @@ export declare const roomContract: {
|
|
10264
10267
|
createdAt: Date;
|
10265
10268
|
updatedAt: Date;
|
10266
10269
|
deletedAt: Date | null;
|
10267
|
-
|
10268
|
-
|
10269
|
-
|
10270
|
-
|
10271
|
-
|
10272
|
-
|
10270
|
+
extensionName: string;
|
10271
|
+
fileName: string;
|
10272
|
+
fileKey: string;
|
10273
|
+
bucketName: string;
|
10274
|
+
fileSize: number;
|
10275
|
+
fileUrl: string;
|
10273
10276
|
};
|
10274
10277
|
roomId: string;
|
10275
10278
|
messageId: string;
|
@@ -10285,7 +10288,7 @@ export declare const roomContract: {
|
|
10285
10288
|
updatedAt: Date;
|
10286
10289
|
deletedAt: Date | null;
|
10287
10290
|
phone: string | null;
|
10288
|
-
|
10291
|
+
notificationCount: number | null;
|
10289
10292
|
};
|
10290
10293
|
resolved: boolean;
|
10291
10294
|
assigneeId: string | null;
|
@@ -10388,12 +10391,12 @@ export declare const roomContract: {
|
|
10388
10391
|
createdAt: Date;
|
10389
10392
|
updatedAt: Date;
|
10390
10393
|
deletedAt: Date | null;
|
10391
|
-
|
10392
|
-
|
10393
|
-
|
10394
|
-
|
10395
|
-
|
10396
|
-
|
10394
|
+
extensionName: string;
|
10395
|
+
fileName: string;
|
10396
|
+
fileKey: string;
|
10397
|
+
bucketName: string;
|
10398
|
+
fileSize: number;
|
10399
|
+
fileUrl: string;
|
10397
10400
|
};
|
10398
10401
|
roomId: string;
|
10399
10402
|
messageId: string;
|
@@ -10463,12 +10466,12 @@ export declare const roomContract: {
|
|
10463
10466
|
createdAt: Date;
|
10464
10467
|
updatedAt: Date;
|
10465
10468
|
deletedAt: Date | null;
|
10466
|
-
|
10467
|
-
|
10468
|
-
|
10469
|
-
|
10470
|
-
|
10471
|
-
|
10469
|
+
extensionName: string;
|
10470
|
+
fileName: string;
|
10471
|
+
fileKey: string;
|
10472
|
+
bucketName: string;
|
10473
|
+
fileSize: number;
|
10474
|
+
fileUrl: string;
|
10472
10475
|
};
|
10473
10476
|
roomId: string;
|
10474
10477
|
messageId: string;
|
@@ -10538,12 +10541,12 @@ export declare const roomContract: {
|
|
10538
10541
|
createdAt: Date;
|
10539
10542
|
updatedAt: Date;
|
10540
10543
|
deletedAt: Date | null;
|
10541
|
-
|
10542
|
-
|
10543
|
-
|
10544
|
-
|
10545
|
-
|
10546
|
-
|
10544
|
+
extensionName: string;
|
10545
|
+
fileName: string;
|
10546
|
+
fileKey: string;
|
10547
|
+
bucketName: string;
|
10548
|
+
fileSize: number;
|
10549
|
+
fileUrl: string;
|
10547
10550
|
};
|
10548
10551
|
roomId: string;
|
10549
10552
|
messageId: string;
|
@@ -10564,7 +10567,7 @@ export declare const roomContract: {
|
|
10564
10567
|
updatedAt: Date;
|
10565
10568
|
deletedAt: Date | null;
|
10566
10569
|
phone: string | null;
|
10567
|
-
|
10570
|
+
notificationCount: number | null;
|
10568
10571
|
};
|
10569
10572
|
roomId: string;
|
10570
10573
|
actorId: string;
|
@@ -10586,12 +10589,12 @@ export declare const roomContract: {
|
|
10586
10589
|
updatedAt: Date;
|
10587
10590
|
deletedAt: Date | null;
|
10588
10591
|
smtpHost: string;
|
10589
|
-
smtpPort:
|
10590
|
-
smtpTlsPort:
|
10592
|
+
smtpPort: number;
|
10593
|
+
smtpTlsPort: number;
|
10591
10594
|
useTlsForSmtp: boolean;
|
10592
10595
|
imapHost: string;
|
10593
|
-
imapPort:
|
10594
|
-
imapTlsPort:
|
10596
|
+
imapPort: number;
|
10597
|
+
imapTlsPort: number;
|
10595
10598
|
useTlsForImap: boolean;
|
10596
10599
|
};
|
10597
10600
|
};
|