@kl1/contracts 1.0.16 → 1.0.17
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 +1107 -552
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1107 -552
- package/dist/index.mjs.map +1 -1
- package/dist/src/contact/index.d.ts +1224 -0
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +833 -0
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +7697 -1822
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +1305 -1305
- package/dist/src/mail/message-contract.d.ts +56 -56
- package/dist/src/mail/room-contract.d.ts +1241 -1241
- package/dist/src/mail/schemas/message.schema.d.ts +33 -33
- package/dist/src/mail/schemas/room-validation.schema.d.ts +404 -404
- package/dist/src/mail/schemas/room.schema.d.ts +268 -268
- package/dist/src/ticket/index.d.ts +4662 -0
- package/dist/src/ticket/index.d.ts.map +1 -0
- package/dist/src/ticket/schema.d.ts +675 -3
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/ticket/validation.d.ts +637 -0
- package/dist/src/ticket/validation.d.ts.map +1 -0
- package/package.json +1 -1
@@ -329,6 +329,30 @@ export declare const RoomContractsValidationSchema: {
|
|
329
329
|
updatedAt: Date;
|
330
330
|
deletedAt: Date | null;
|
331
331
|
roomId: string;
|
332
|
+
attachments: {
|
333
|
+
id: string;
|
334
|
+
createdAt: Date;
|
335
|
+
updatedAt: Date;
|
336
|
+
deletedAt: Date | null;
|
337
|
+
fileName: string;
|
338
|
+
fileType: string;
|
339
|
+
upload: {
|
340
|
+
id: string;
|
341
|
+
createdAt: Date;
|
342
|
+
updatedAt: Date;
|
343
|
+
deletedAt: Date | null;
|
344
|
+
bucket_name: string;
|
345
|
+
file_name: string;
|
346
|
+
file_key: string;
|
347
|
+
file_size: number;
|
348
|
+
file_url: string;
|
349
|
+
extension_name: string;
|
350
|
+
};
|
351
|
+
roomId: string;
|
352
|
+
messageId: string;
|
353
|
+
emailEngineAttachmentId: string;
|
354
|
+
uploadId: string;
|
355
|
+
}[];
|
332
356
|
subject: string;
|
333
357
|
textPlain: string;
|
334
358
|
textHtml: string;
|
@@ -370,6 +394,15 @@ export declare const RoomContractsValidationSchema: {
|
|
370
394
|
updatedAt: Date;
|
371
395
|
deletedAt: Date | null;
|
372
396
|
}[];
|
397
|
+
}, {
|
398
|
+
id: string;
|
399
|
+
direction: string;
|
400
|
+
action: string;
|
401
|
+
date: Date;
|
402
|
+
createdAt: Date;
|
403
|
+
updatedAt: Date;
|
404
|
+
deletedAt: Date | null;
|
405
|
+
roomId: string;
|
373
406
|
attachments: {
|
374
407
|
id: string;
|
375
408
|
createdAt: Date;
|
@@ -394,15 +427,6 @@ export declare const RoomContractsValidationSchema: {
|
|
394
427
|
emailEngineAttachmentId: string;
|
395
428
|
uploadId: string;
|
396
429
|
}[];
|
397
|
-
}, {
|
398
|
-
id: string;
|
399
|
-
direction: string;
|
400
|
-
action: string;
|
401
|
-
date: Date;
|
402
|
-
createdAt: Date;
|
403
|
-
updatedAt: Date;
|
404
|
-
deletedAt: Date | null;
|
405
|
-
roomId: string;
|
406
430
|
subject: string;
|
407
431
|
textPlain: string;
|
408
432
|
textHtml: string;
|
@@ -444,30 +468,6 @@ export declare const RoomContractsValidationSchema: {
|
|
444
468
|
updatedAt: Date;
|
445
469
|
deletedAt: Date | null;
|
446
470
|
}[];
|
447
|
-
attachments: {
|
448
|
-
id: string;
|
449
|
-
createdAt: Date;
|
450
|
-
updatedAt: Date;
|
451
|
-
deletedAt: Date | null;
|
452
|
-
fileName: string;
|
453
|
-
fileType: string;
|
454
|
-
upload: {
|
455
|
-
id: string;
|
456
|
-
createdAt: Date;
|
457
|
-
updatedAt: Date;
|
458
|
-
deletedAt: Date | null;
|
459
|
-
bucket_name: string;
|
460
|
-
file_name: string;
|
461
|
-
file_key: string;
|
462
|
-
file_size: number;
|
463
|
-
file_url: string;
|
464
|
-
extension_name: string;
|
465
|
-
};
|
466
|
-
roomId: string;
|
467
|
-
messageId: string;
|
468
|
-
emailEngineAttachmentId: string;
|
469
|
-
uploadId: string;
|
470
|
-
}[];
|
471
471
|
}>;
|
472
472
|
lastMessage: z.ZodObject<{
|
473
473
|
id: z.ZodString;
|
@@ -676,6 +676,30 @@ export declare const RoomContractsValidationSchema: {
|
|
676
676
|
updatedAt: Date;
|
677
677
|
deletedAt: Date | null;
|
678
678
|
roomId: string;
|
679
|
+
attachments: {
|
680
|
+
id: string;
|
681
|
+
createdAt: Date;
|
682
|
+
updatedAt: Date;
|
683
|
+
deletedAt: Date | null;
|
684
|
+
fileName: string;
|
685
|
+
fileType: string;
|
686
|
+
upload: {
|
687
|
+
id: string;
|
688
|
+
createdAt: Date;
|
689
|
+
updatedAt: Date;
|
690
|
+
deletedAt: Date | null;
|
691
|
+
bucket_name: string;
|
692
|
+
file_name: string;
|
693
|
+
file_key: string;
|
694
|
+
file_size: number;
|
695
|
+
file_url: string;
|
696
|
+
extension_name: string;
|
697
|
+
};
|
698
|
+
roomId: string;
|
699
|
+
messageId: string;
|
700
|
+
emailEngineAttachmentId: string;
|
701
|
+
uploadId: string;
|
702
|
+
}[];
|
679
703
|
subject: string;
|
680
704
|
textPlain: string;
|
681
705
|
textHtml: string;
|
@@ -717,6 +741,15 @@ export declare const RoomContractsValidationSchema: {
|
|
717
741
|
updatedAt: Date;
|
718
742
|
deletedAt: Date | null;
|
719
743
|
}[];
|
744
|
+
}, {
|
745
|
+
id: string;
|
746
|
+
direction: string;
|
747
|
+
action: string;
|
748
|
+
date: Date;
|
749
|
+
createdAt: Date;
|
750
|
+
updatedAt: Date;
|
751
|
+
deletedAt: Date | null;
|
752
|
+
roomId: string;
|
720
753
|
attachments: {
|
721
754
|
id: string;
|
722
755
|
createdAt: Date;
|
@@ -741,15 +774,6 @@ export declare const RoomContractsValidationSchema: {
|
|
741
774
|
emailEngineAttachmentId: string;
|
742
775
|
uploadId: string;
|
743
776
|
}[];
|
744
|
-
}, {
|
745
|
-
id: string;
|
746
|
-
direction: string;
|
747
|
-
action: string;
|
748
|
-
date: Date;
|
749
|
-
createdAt: Date;
|
750
|
-
updatedAt: Date;
|
751
|
-
deletedAt: Date | null;
|
752
|
-
roomId: string;
|
753
777
|
subject: string;
|
754
778
|
textPlain: string;
|
755
779
|
textHtml: string;
|
@@ -791,30 +815,6 @@ export declare const RoomContractsValidationSchema: {
|
|
791
815
|
updatedAt: Date;
|
792
816
|
deletedAt: Date | null;
|
793
817
|
}[];
|
794
|
-
attachments: {
|
795
|
-
id: string;
|
796
|
-
createdAt: Date;
|
797
|
-
updatedAt: Date;
|
798
|
-
deletedAt: Date | null;
|
799
|
-
fileName: string;
|
800
|
-
fileType: string;
|
801
|
-
upload: {
|
802
|
-
id: string;
|
803
|
-
createdAt: Date;
|
804
|
-
updatedAt: Date;
|
805
|
-
deletedAt: Date | null;
|
806
|
-
bucket_name: string;
|
807
|
-
file_name: string;
|
808
|
-
file_key: string;
|
809
|
-
file_size: number;
|
810
|
-
file_url: string;
|
811
|
-
extension_name: string;
|
812
|
-
};
|
813
|
-
roomId: string;
|
814
|
-
messageId: string;
|
815
|
-
emailEngineAttachmentId: string;
|
816
|
-
uploadId: string;
|
817
|
-
}[];
|
818
818
|
}>;
|
819
819
|
tags: z.ZodArray<z.ZodObject<{
|
820
820
|
color: z.ZodString;
|
@@ -1076,6 +1076,30 @@ export declare const RoomContractsValidationSchema: {
|
|
1076
1076
|
updatedAt: Date;
|
1077
1077
|
deletedAt: Date | null;
|
1078
1078
|
roomId: string;
|
1079
|
+
attachments: {
|
1080
|
+
id: string;
|
1081
|
+
createdAt: Date;
|
1082
|
+
updatedAt: Date;
|
1083
|
+
deletedAt: Date | null;
|
1084
|
+
fileName: string;
|
1085
|
+
fileType: string;
|
1086
|
+
upload: {
|
1087
|
+
id: string;
|
1088
|
+
createdAt: Date;
|
1089
|
+
updatedAt: Date;
|
1090
|
+
deletedAt: Date | null;
|
1091
|
+
bucket_name: string;
|
1092
|
+
file_name: string;
|
1093
|
+
file_key: string;
|
1094
|
+
file_size: number;
|
1095
|
+
file_url: string;
|
1096
|
+
extension_name: string;
|
1097
|
+
};
|
1098
|
+
roomId: string;
|
1099
|
+
messageId: string;
|
1100
|
+
emailEngineAttachmentId: string;
|
1101
|
+
uploadId: string;
|
1102
|
+
}[];
|
1079
1103
|
subject: string;
|
1080
1104
|
textPlain: string;
|
1081
1105
|
textHtml: string;
|
@@ -1117,6 +1141,15 @@ export declare const RoomContractsValidationSchema: {
|
|
1117
1141
|
updatedAt: Date;
|
1118
1142
|
deletedAt: Date | null;
|
1119
1143
|
}[];
|
1144
|
+
}, {
|
1145
|
+
id: string;
|
1146
|
+
direction: string;
|
1147
|
+
action: string;
|
1148
|
+
date: Date;
|
1149
|
+
createdAt: Date;
|
1150
|
+
updatedAt: Date;
|
1151
|
+
deletedAt: Date | null;
|
1152
|
+
roomId: string;
|
1120
1153
|
attachments: {
|
1121
1154
|
id: string;
|
1122
1155
|
createdAt: Date;
|
@@ -1141,15 +1174,6 @@ export declare const RoomContractsValidationSchema: {
|
|
1141
1174
|
emailEngineAttachmentId: string;
|
1142
1175
|
uploadId: string;
|
1143
1176
|
}[];
|
1144
|
-
}, {
|
1145
|
-
id: string;
|
1146
|
-
direction: string;
|
1147
|
-
action: string;
|
1148
|
-
date: Date;
|
1149
|
-
createdAt: Date;
|
1150
|
-
updatedAt: Date;
|
1151
|
-
deletedAt: Date | null;
|
1152
|
-
roomId: string;
|
1153
1177
|
subject: string;
|
1154
1178
|
textPlain: string;
|
1155
1179
|
textHtml: string;
|
@@ -1191,30 +1215,6 @@ export declare const RoomContractsValidationSchema: {
|
|
1191
1215
|
updatedAt: Date;
|
1192
1216
|
deletedAt: Date | null;
|
1193
1217
|
}[];
|
1194
|
-
attachments: {
|
1195
|
-
id: string;
|
1196
|
-
createdAt: Date;
|
1197
|
-
updatedAt: Date;
|
1198
|
-
deletedAt: Date | null;
|
1199
|
-
fileName: string;
|
1200
|
-
fileType: string;
|
1201
|
-
upload: {
|
1202
|
-
id: string;
|
1203
|
-
createdAt: Date;
|
1204
|
-
updatedAt: Date;
|
1205
|
-
deletedAt: Date | null;
|
1206
|
-
bucket_name: string;
|
1207
|
-
file_name: string;
|
1208
|
-
file_key: string;
|
1209
|
-
file_size: number;
|
1210
|
-
file_url: string;
|
1211
|
-
extension_name: string;
|
1212
|
-
};
|
1213
|
-
roomId: string;
|
1214
|
-
messageId: string;
|
1215
|
-
emailEngineAttachmentId: string;
|
1216
|
-
uploadId: string;
|
1217
|
-
}[];
|
1218
1218
|
}>, "many">;
|
1219
1219
|
messagesAndLogs: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
1220
1220
|
id: z.ZodString;
|
@@ -1423,6 +1423,30 @@ export declare const RoomContractsValidationSchema: {
|
|
1423
1423
|
updatedAt: Date;
|
1424
1424
|
deletedAt: Date | null;
|
1425
1425
|
roomId: string;
|
1426
|
+
attachments: {
|
1427
|
+
id: string;
|
1428
|
+
createdAt: Date;
|
1429
|
+
updatedAt: Date;
|
1430
|
+
deletedAt: Date | null;
|
1431
|
+
fileName: string;
|
1432
|
+
fileType: string;
|
1433
|
+
upload: {
|
1434
|
+
id: string;
|
1435
|
+
createdAt: Date;
|
1436
|
+
updatedAt: Date;
|
1437
|
+
deletedAt: Date | null;
|
1438
|
+
bucket_name: string;
|
1439
|
+
file_name: string;
|
1440
|
+
file_key: string;
|
1441
|
+
file_size: number;
|
1442
|
+
file_url: string;
|
1443
|
+
extension_name: string;
|
1444
|
+
};
|
1445
|
+
roomId: string;
|
1446
|
+
messageId: string;
|
1447
|
+
emailEngineAttachmentId: string;
|
1448
|
+
uploadId: string;
|
1449
|
+
}[];
|
1426
1450
|
subject: string;
|
1427
1451
|
textPlain: string;
|
1428
1452
|
textHtml: string;
|
@@ -1464,6 +1488,15 @@ export declare const RoomContractsValidationSchema: {
|
|
1464
1488
|
updatedAt: Date;
|
1465
1489
|
deletedAt: Date | null;
|
1466
1490
|
}[];
|
1491
|
+
}, {
|
1492
|
+
id: string;
|
1493
|
+
direction: string;
|
1494
|
+
action: string;
|
1495
|
+
date: Date;
|
1496
|
+
createdAt: Date;
|
1497
|
+
updatedAt: Date;
|
1498
|
+
deletedAt: Date | null;
|
1499
|
+
roomId: string;
|
1467
1500
|
attachments: {
|
1468
1501
|
id: string;
|
1469
1502
|
createdAt: Date;
|
@@ -1488,15 +1521,6 @@ export declare const RoomContractsValidationSchema: {
|
|
1488
1521
|
emailEngineAttachmentId: string;
|
1489
1522
|
uploadId: string;
|
1490
1523
|
}[];
|
1491
|
-
}, {
|
1492
|
-
id: string;
|
1493
|
-
direction: string;
|
1494
|
-
action: string;
|
1495
|
-
date: Date;
|
1496
|
-
createdAt: Date;
|
1497
|
-
updatedAt: Date;
|
1498
|
-
deletedAt: Date | null;
|
1499
|
-
roomId: string;
|
1500
1524
|
subject: string;
|
1501
1525
|
textPlain: string;
|
1502
1526
|
textHtml: string;
|
@@ -1538,30 +1562,6 @@ export declare const RoomContractsValidationSchema: {
|
|
1538
1562
|
updatedAt: Date;
|
1539
1563
|
deletedAt: Date | null;
|
1540
1564
|
}[];
|
1541
|
-
attachments: {
|
1542
|
-
id: string;
|
1543
|
-
createdAt: Date;
|
1544
|
-
updatedAt: Date;
|
1545
|
-
deletedAt: Date | null;
|
1546
|
-
fileName: string;
|
1547
|
-
fileType: string;
|
1548
|
-
upload: {
|
1549
|
-
id: string;
|
1550
|
-
createdAt: Date;
|
1551
|
-
updatedAt: Date;
|
1552
|
-
deletedAt: Date | null;
|
1553
|
-
bucket_name: string;
|
1554
|
-
file_name: string;
|
1555
|
-
file_key: string;
|
1556
|
-
file_size: number;
|
1557
|
-
file_url: string;
|
1558
|
-
extension_name: string;
|
1559
|
-
};
|
1560
|
-
roomId: string;
|
1561
|
-
messageId: string;
|
1562
|
-
emailEngineAttachmentId: string;
|
1563
|
-
uploadId: string;
|
1564
|
-
}[];
|
1565
1565
|
}>, z.ZodObject<{
|
1566
1566
|
id: z.ZodString;
|
1567
1567
|
createdAt: z.ZodString;
|
@@ -1768,6 +1768,30 @@ export declare const RoomContractsValidationSchema: {
|
|
1768
1768
|
updatedAt: Date;
|
1769
1769
|
deletedAt: Date | null;
|
1770
1770
|
roomId: string;
|
1771
|
+
attachments: {
|
1772
|
+
id: string;
|
1773
|
+
createdAt: Date;
|
1774
|
+
updatedAt: Date;
|
1775
|
+
deletedAt: Date | null;
|
1776
|
+
fileName: string;
|
1777
|
+
fileType: string;
|
1778
|
+
upload: {
|
1779
|
+
id: string;
|
1780
|
+
createdAt: Date;
|
1781
|
+
updatedAt: Date;
|
1782
|
+
deletedAt: Date | null;
|
1783
|
+
bucket_name: string;
|
1784
|
+
file_name: string;
|
1785
|
+
file_key: string;
|
1786
|
+
file_size: number;
|
1787
|
+
file_url: string;
|
1788
|
+
extension_name: string;
|
1789
|
+
};
|
1790
|
+
roomId: string;
|
1791
|
+
messageId: string;
|
1792
|
+
emailEngineAttachmentId: string;
|
1793
|
+
uploadId: string;
|
1794
|
+
}[];
|
1771
1795
|
subject: string;
|
1772
1796
|
textPlain: string;
|
1773
1797
|
textHtml: string;
|
@@ -1809,30 +1833,6 @@ export declare const RoomContractsValidationSchema: {
|
|
1809
1833
|
updatedAt: Date;
|
1810
1834
|
deletedAt: Date | null;
|
1811
1835
|
}[];
|
1812
|
-
attachments: {
|
1813
|
-
id: string;
|
1814
|
-
createdAt: Date;
|
1815
|
-
updatedAt: Date;
|
1816
|
-
deletedAt: Date | null;
|
1817
|
-
fileName: string;
|
1818
|
-
fileType: string;
|
1819
|
-
upload: {
|
1820
|
-
id: string;
|
1821
|
-
createdAt: Date;
|
1822
|
-
updatedAt: Date;
|
1823
|
-
deletedAt: Date | null;
|
1824
|
-
bucket_name: string;
|
1825
|
-
file_name: string;
|
1826
|
-
file_key: string;
|
1827
|
-
file_size: number;
|
1828
|
-
file_url: string;
|
1829
|
-
extension_name: string;
|
1830
|
-
};
|
1831
|
-
roomId: string;
|
1832
|
-
messageId: string;
|
1833
|
-
emailEngineAttachmentId: string;
|
1834
|
-
uploadId: string;
|
1835
|
-
}[];
|
1836
1836
|
};
|
1837
1837
|
assignee: {
|
1838
1838
|
id: string;
|
@@ -1893,6 +1893,30 @@ export declare const RoomContractsValidationSchema: {
|
|
1893
1893
|
updatedAt: Date;
|
1894
1894
|
deletedAt: Date | null;
|
1895
1895
|
roomId: string;
|
1896
|
+
attachments: {
|
1897
|
+
id: string;
|
1898
|
+
createdAt: Date;
|
1899
|
+
updatedAt: Date;
|
1900
|
+
deletedAt: Date | null;
|
1901
|
+
fileName: string;
|
1902
|
+
fileType: string;
|
1903
|
+
upload: {
|
1904
|
+
id: string;
|
1905
|
+
createdAt: Date;
|
1906
|
+
updatedAt: Date;
|
1907
|
+
deletedAt: Date | null;
|
1908
|
+
bucket_name: string;
|
1909
|
+
file_name: string;
|
1910
|
+
file_key: string;
|
1911
|
+
file_size: number;
|
1912
|
+
file_url: string;
|
1913
|
+
extension_name: string;
|
1914
|
+
};
|
1915
|
+
roomId: string;
|
1916
|
+
messageId: string;
|
1917
|
+
emailEngineAttachmentId: string;
|
1918
|
+
uploadId: string;
|
1919
|
+
}[];
|
1896
1920
|
subject: string;
|
1897
1921
|
textPlain: string;
|
1898
1922
|
textHtml: string;
|
@@ -1934,6 +1958,16 @@ export declare const RoomContractsValidationSchema: {
|
|
1934
1958
|
updatedAt: Date;
|
1935
1959
|
deletedAt: Date | null;
|
1936
1960
|
}[];
|
1961
|
+
};
|
1962
|
+
messages: {
|
1963
|
+
id: string;
|
1964
|
+
direction: string;
|
1965
|
+
action: string;
|
1966
|
+
date: Date;
|
1967
|
+
createdAt: Date;
|
1968
|
+
updatedAt: Date;
|
1969
|
+
deletedAt: Date | null;
|
1970
|
+
roomId: string;
|
1937
1971
|
attachments: {
|
1938
1972
|
id: string;
|
1939
1973
|
createdAt: Date;
|
@@ -1958,16 +1992,6 @@ export declare const RoomContractsValidationSchema: {
|
|
1958
1992
|
emailEngineAttachmentId: string;
|
1959
1993
|
uploadId: string;
|
1960
1994
|
}[];
|
1961
|
-
};
|
1962
|
-
messages: {
|
1963
|
-
id: string;
|
1964
|
-
direction: string;
|
1965
|
-
action: string;
|
1966
|
-
date: Date;
|
1967
|
-
createdAt: Date;
|
1968
|
-
updatedAt: Date;
|
1969
|
-
deletedAt: Date | null;
|
1970
|
-
roomId: string;
|
1971
1995
|
subject: string;
|
1972
1996
|
textPlain: string;
|
1973
1997
|
textHtml: string;
|
@@ -2009,6 +2033,16 @@ export declare const RoomContractsValidationSchema: {
|
|
2009
2033
|
updatedAt: Date;
|
2010
2034
|
deletedAt: Date | null;
|
2011
2035
|
}[];
|
2036
|
+
}[];
|
2037
|
+
messagesAndLogs: ({
|
2038
|
+
id: string;
|
2039
|
+
direction: string;
|
2040
|
+
action: string;
|
2041
|
+
date: Date;
|
2042
|
+
createdAt: Date;
|
2043
|
+
updatedAt: Date;
|
2044
|
+
deletedAt: Date | null;
|
2045
|
+
roomId: string;
|
2012
2046
|
attachments: {
|
2013
2047
|
id: string;
|
2014
2048
|
createdAt: Date;
|
@@ -2033,16 +2067,6 @@ export declare const RoomContractsValidationSchema: {
|
|
2033
2067
|
emailEngineAttachmentId: string;
|
2034
2068
|
uploadId: string;
|
2035
2069
|
}[];
|
2036
|
-
}[];
|
2037
|
-
messagesAndLogs: ({
|
2038
|
-
id: string;
|
2039
|
-
direction: string;
|
2040
|
-
action: string;
|
2041
|
-
date: Date;
|
2042
|
-
createdAt: Date;
|
2043
|
-
updatedAt: Date;
|
2044
|
-
deletedAt: Date | null;
|
2045
|
-
roomId: string;
|
2046
2070
|
subject: string;
|
2047
2071
|
textPlain: string;
|
2048
2072
|
textHtml: string;
|
@@ -2084,30 +2108,6 @@ export declare const RoomContractsValidationSchema: {
|
|
2084
2108
|
updatedAt: Date;
|
2085
2109
|
deletedAt: Date | null;
|
2086
2110
|
}[];
|
2087
|
-
attachments: {
|
2088
|
-
id: string;
|
2089
|
-
createdAt: Date;
|
2090
|
-
updatedAt: Date;
|
2091
|
-
deletedAt: Date | null;
|
2092
|
-
fileName: string;
|
2093
|
-
fileType: string;
|
2094
|
-
upload: {
|
2095
|
-
id: string;
|
2096
|
-
createdAt: Date;
|
2097
|
-
updatedAt: Date;
|
2098
|
-
deletedAt: Date | null;
|
2099
|
-
bucket_name: string;
|
2100
|
-
file_name: string;
|
2101
|
-
file_key: string;
|
2102
|
-
file_size: number;
|
2103
|
-
file_url: string;
|
2104
|
-
extension_name: string;
|
2105
|
-
};
|
2106
|
-
roomId: string;
|
2107
|
-
messageId: string;
|
2108
|
-
emailEngineAttachmentId: string;
|
2109
|
-
uploadId: string;
|
2110
|
-
}[];
|
2111
2111
|
} | {
|
2112
2112
|
id: string;
|
2113
2113
|
description: string;
|
@@ -2178,6 +2178,30 @@ export declare const RoomContractsValidationSchema: {
|
|
2178
2178
|
updatedAt: Date;
|
2179
2179
|
deletedAt: Date | null;
|
2180
2180
|
roomId: string;
|
2181
|
+
attachments: {
|
2182
|
+
id: string;
|
2183
|
+
createdAt: Date;
|
2184
|
+
updatedAt: Date;
|
2185
|
+
deletedAt: Date | null;
|
2186
|
+
fileName: string;
|
2187
|
+
fileType: string;
|
2188
|
+
upload: {
|
2189
|
+
id: string;
|
2190
|
+
createdAt: Date;
|
2191
|
+
updatedAt: Date;
|
2192
|
+
deletedAt: Date | null;
|
2193
|
+
bucket_name: string;
|
2194
|
+
file_name: string;
|
2195
|
+
file_key: string;
|
2196
|
+
file_size: number;
|
2197
|
+
file_url: string;
|
2198
|
+
extension_name: string;
|
2199
|
+
};
|
2200
|
+
roomId: string;
|
2201
|
+
messageId: string;
|
2202
|
+
emailEngineAttachmentId: string;
|
2203
|
+
uploadId: string;
|
2204
|
+
}[];
|
2181
2205
|
subject: string;
|
2182
2206
|
textPlain: string;
|
2183
2207
|
textHtml: string;
|
@@ -2219,30 +2243,6 @@ export declare const RoomContractsValidationSchema: {
|
|
2219
2243
|
updatedAt: Date;
|
2220
2244
|
deletedAt: Date | null;
|
2221
2245
|
}[];
|
2222
|
-
attachments: {
|
2223
|
-
id: string;
|
2224
|
-
createdAt: Date;
|
2225
|
-
updatedAt: Date;
|
2226
|
-
deletedAt: Date | null;
|
2227
|
-
fileName: string;
|
2228
|
-
fileType: string;
|
2229
|
-
upload: {
|
2230
|
-
id: string;
|
2231
|
-
createdAt: Date;
|
2232
|
-
updatedAt: Date;
|
2233
|
-
deletedAt: Date | null;
|
2234
|
-
bucket_name: string;
|
2235
|
-
file_name: string;
|
2236
|
-
file_key: string;
|
2237
|
-
file_size: number;
|
2238
|
-
file_url: string;
|
2239
|
-
extension_name: string;
|
2240
|
-
};
|
2241
|
-
roomId: string;
|
2242
|
-
messageId: string;
|
2243
|
-
emailEngineAttachmentId: string;
|
2244
|
-
uploadId: string;
|
2245
|
-
}[];
|
2246
2246
|
};
|
2247
2247
|
assignee: {
|
2248
2248
|
id: string;
|
@@ -2303,6 +2303,30 @@ export declare const RoomContractsValidationSchema: {
|
|
2303
2303
|
updatedAt: Date;
|
2304
2304
|
deletedAt: Date | null;
|
2305
2305
|
roomId: string;
|
2306
|
+
attachments: {
|
2307
|
+
id: string;
|
2308
|
+
createdAt: Date;
|
2309
|
+
updatedAt: Date;
|
2310
|
+
deletedAt: Date | null;
|
2311
|
+
fileName: string;
|
2312
|
+
fileType: string;
|
2313
|
+
upload: {
|
2314
|
+
id: string;
|
2315
|
+
createdAt: Date;
|
2316
|
+
updatedAt: Date;
|
2317
|
+
deletedAt: Date | null;
|
2318
|
+
bucket_name: string;
|
2319
|
+
file_name: string;
|
2320
|
+
file_key: string;
|
2321
|
+
file_size: number;
|
2322
|
+
file_url: string;
|
2323
|
+
extension_name: string;
|
2324
|
+
};
|
2325
|
+
roomId: string;
|
2326
|
+
messageId: string;
|
2327
|
+
emailEngineAttachmentId: string;
|
2328
|
+
uploadId: string;
|
2329
|
+
}[];
|
2306
2330
|
subject: string;
|
2307
2331
|
textPlain: string;
|
2308
2332
|
textHtml: string;
|
@@ -2344,6 +2368,16 @@ export declare const RoomContractsValidationSchema: {
|
|
2344
2368
|
updatedAt: Date;
|
2345
2369
|
deletedAt: Date | null;
|
2346
2370
|
}[];
|
2371
|
+
};
|
2372
|
+
messages: {
|
2373
|
+
id: string;
|
2374
|
+
direction: string;
|
2375
|
+
action: string;
|
2376
|
+
date: Date;
|
2377
|
+
createdAt: Date;
|
2378
|
+
updatedAt: Date;
|
2379
|
+
deletedAt: Date | null;
|
2380
|
+
roomId: string;
|
2347
2381
|
attachments: {
|
2348
2382
|
id: string;
|
2349
2383
|
createdAt: Date;
|
@@ -2368,16 +2402,6 @@ export declare const RoomContractsValidationSchema: {
|
|
2368
2402
|
emailEngineAttachmentId: string;
|
2369
2403
|
uploadId: string;
|
2370
2404
|
}[];
|
2371
|
-
};
|
2372
|
-
messages: {
|
2373
|
-
id: string;
|
2374
|
-
direction: string;
|
2375
|
-
action: string;
|
2376
|
-
date: Date;
|
2377
|
-
createdAt: Date;
|
2378
|
-
updatedAt: Date;
|
2379
|
-
deletedAt: Date | null;
|
2380
|
-
roomId: string;
|
2381
2405
|
subject: string;
|
2382
2406
|
textPlain: string;
|
2383
2407
|
textHtml: string;
|
@@ -2419,6 +2443,16 @@ export declare const RoomContractsValidationSchema: {
|
|
2419
2443
|
updatedAt: Date;
|
2420
2444
|
deletedAt: Date | null;
|
2421
2445
|
}[];
|
2446
|
+
}[];
|
2447
|
+
messagesAndLogs: ({
|
2448
|
+
id: string;
|
2449
|
+
direction: string;
|
2450
|
+
action: string;
|
2451
|
+
date: Date;
|
2452
|
+
createdAt: Date;
|
2453
|
+
updatedAt: Date;
|
2454
|
+
deletedAt: Date | null;
|
2455
|
+
roomId: string;
|
2422
2456
|
attachments: {
|
2423
2457
|
id: string;
|
2424
2458
|
createdAt: Date;
|
@@ -2443,16 +2477,6 @@ export declare const RoomContractsValidationSchema: {
|
|
2443
2477
|
emailEngineAttachmentId: string;
|
2444
2478
|
uploadId: string;
|
2445
2479
|
}[];
|
2446
|
-
}[];
|
2447
|
-
messagesAndLogs: ({
|
2448
|
-
id: string;
|
2449
|
-
direction: string;
|
2450
|
-
action: string;
|
2451
|
-
date: Date;
|
2452
|
-
createdAt: Date;
|
2453
|
-
updatedAt: Date;
|
2454
|
-
deletedAt: Date | null;
|
2455
|
-
roomId: string;
|
2456
2480
|
subject: string;
|
2457
2481
|
textPlain: string;
|
2458
2482
|
textHtml: string;
|
@@ -2494,30 +2518,6 @@ export declare const RoomContractsValidationSchema: {
|
|
2494
2518
|
updatedAt: Date;
|
2495
2519
|
deletedAt: Date | null;
|
2496
2520
|
}[];
|
2497
|
-
attachments: {
|
2498
|
-
id: string;
|
2499
|
-
createdAt: Date;
|
2500
|
-
updatedAt: Date;
|
2501
|
-
deletedAt: Date | null;
|
2502
|
-
fileName: string;
|
2503
|
-
fileType: string;
|
2504
|
-
upload: {
|
2505
|
-
id: string;
|
2506
|
-
createdAt: Date;
|
2507
|
-
updatedAt: Date;
|
2508
|
-
deletedAt: Date | null;
|
2509
|
-
bucket_name: string;
|
2510
|
-
file_name: string;
|
2511
|
-
file_key: string;
|
2512
|
-
file_size: number;
|
2513
|
-
file_url: string;
|
2514
|
-
extension_name: string;
|
2515
|
-
};
|
2516
|
-
roomId: string;
|
2517
|
-
messageId: string;
|
2518
|
-
emailEngineAttachmentId: string;
|
2519
|
-
uploadId: string;
|
2520
|
-
}[];
|
2521
2521
|
} | {
|
2522
2522
|
id: string;
|
2523
2523
|
description: string;
|
@@ -2593,6 +2593,30 @@ export declare const RoomContractsValidationSchema: {
|
|
2593
2593
|
updatedAt: Date;
|
2594
2594
|
deletedAt: Date | null;
|
2595
2595
|
roomId: string;
|
2596
|
+
attachments: {
|
2597
|
+
id: string;
|
2598
|
+
createdAt: Date;
|
2599
|
+
updatedAt: Date;
|
2600
|
+
deletedAt: Date | null;
|
2601
|
+
fileName: string;
|
2602
|
+
fileType: string;
|
2603
|
+
upload: {
|
2604
|
+
id: string;
|
2605
|
+
createdAt: Date;
|
2606
|
+
updatedAt: Date;
|
2607
|
+
deletedAt: Date | null;
|
2608
|
+
bucket_name: string;
|
2609
|
+
file_name: string;
|
2610
|
+
file_key: string;
|
2611
|
+
file_size: number;
|
2612
|
+
file_url: string;
|
2613
|
+
extension_name: string;
|
2614
|
+
};
|
2615
|
+
roomId: string;
|
2616
|
+
messageId: string;
|
2617
|
+
emailEngineAttachmentId: string;
|
2618
|
+
uploadId: string;
|
2619
|
+
}[];
|
2596
2620
|
subject: string;
|
2597
2621
|
textPlain: string;
|
2598
2622
|
textHtml: string;
|
@@ -2634,30 +2658,6 @@ export declare const RoomContractsValidationSchema: {
|
|
2634
2658
|
updatedAt: Date;
|
2635
2659
|
deletedAt: Date | null;
|
2636
2660
|
}[];
|
2637
|
-
attachments: {
|
2638
|
-
id: string;
|
2639
|
-
createdAt: Date;
|
2640
|
-
updatedAt: Date;
|
2641
|
-
deletedAt: Date | null;
|
2642
|
-
fileName: string;
|
2643
|
-
fileType: string;
|
2644
|
-
upload: {
|
2645
|
-
id: string;
|
2646
|
-
createdAt: Date;
|
2647
|
-
updatedAt: Date;
|
2648
|
-
deletedAt: Date | null;
|
2649
|
-
bucket_name: string;
|
2650
|
-
file_name: string;
|
2651
|
-
file_key: string;
|
2652
|
-
file_size: number;
|
2653
|
-
file_url: string;
|
2654
|
-
extension_name: string;
|
2655
|
-
};
|
2656
|
-
roomId: string;
|
2657
|
-
messageId: string;
|
2658
|
-
emailEngineAttachmentId: string;
|
2659
|
-
uploadId: string;
|
2660
|
-
}[];
|
2661
2661
|
};
|
2662
2662
|
assignee: {
|
2663
2663
|
id: string;
|
@@ -2718,6 +2718,30 @@ export declare const RoomContractsValidationSchema: {
|
|
2718
2718
|
updatedAt: Date;
|
2719
2719
|
deletedAt: Date | null;
|
2720
2720
|
roomId: string;
|
2721
|
+
attachments: {
|
2722
|
+
id: string;
|
2723
|
+
createdAt: Date;
|
2724
|
+
updatedAt: Date;
|
2725
|
+
deletedAt: Date | null;
|
2726
|
+
fileName: string;
|
2727
|
+
fileType: string;
|
2728
|
+
upload: {
|
2729
|
+
id: string;
|
2730
|
+
createdAt: Date;
|
2731
|
+
updatedAt: Date;
|
2732
|
+
deletedAt: Date | null;
|
2733
|
+
bucket_name: string;
|
2734
|
+
file_name: string;
|
2735
|
+
file_key: string;
|
2736
|
+
file_size: number;
|
2737
|
+
file_url: string;
|
2738
|
+
extension_name: string;
|
2739
|
+
};
|
2740
|
+
roomId: string;
|
2741
|
+
messageId: string;
|
2742
|
+
emailEngineAttachmentId: string;
|
2743
|
+
uploadId: string;
|
2744
|
+
}[];
|
2721
2745
|
subject: string;
|
2722
2746
|
textPlain: string;
|
2723
2747
|
textHtml: string;
|
@@ -2759,6 +2783,16 @@ export declare const RoomContractsValidationSchema: {
|
|
2759
2783
|
updatedAt: Date;
|
2760
2784
|
deletedAt: Date | null;
|
2761
2785
|
}[];
|
2786
|
+
};
|
2787
|
+
messages: {
|
2788
|
+
id: string;
|
2789
|
+
direction: string;
|
2790
|
+
action: string;
|
2791
|
+
date: Date;
|
2792
|
+
createdAt: Date;
|
2793
|
+
updatedAt: Date;
|
2794
|
+
deletedAt: Date | null;
|
2795
|
+
roomId: string;
|
2762
2796
|
attachments: {
|
2763
2797
|
id: string;
|
2764
2798
|
createdAt: Date;
|
@@ -2783,16 +2817,6 @@ export declare const RoomContractsValidationSchema: {
|
|
2783
2817
|
emailEngineAttachmentId: string;
|
2784
2818
|
uploadId: string;
|
2785
2819
|
}[];
|
2786
|
-
};
|
2787
|
-
messages: {
|
2788
|
-
id: string;
|
2789
|
-
direction: string;
|
2790
|
-
action: string;
|
2791
|
-
date: Date;
|
2792
|
-
createdAt: Date;
|
2793
|
-
updatedAt: Date;
|
2794
|
-
deletedAt: Date | null;
|
2795
|
-
roomId: string;
|
2796
2820
|
subject: string;
|
2797
2821
|
textPlain: string;
|
2798
2822
|
textHtml: string;
|
@@ -2834,6 +2858,16 @@ export declare const RoomContractsValidationSchema: {
|
|
2834
2858
|
updatedAt: Date;
|
2835
2859
|
deletedAt: Date | null;
|
2836
2860
|
}[];
|
2861
|
+
}[];
|
2862
|
+
messagesAndLogs: ({
|
2863
|
+
id: string;
|
2864
|
+
direction: string;
|
2865
|
+
action: string;
|
2866
|
+
date: Date;
|
2867
|
+
createdAt: Date;
|
2868
|
+
updatedAt: Date;
|
2869
|
+
deletedAt: Date | null;
|
2870
|
+
roomId: string;
|
2837
2871
|
attachments: {
|
2838
2872
|
id: string;
|
2839
2873
|
createdAt: Date;
|
@@ -2858,16 +2892,6 @@ export declare const RoomContractsValidationSchema: {
|
|
2858
2892
|
emailEngineAttachmentId: string;
|
2859
2893
|
uploadId: string;
|
2860
2894
|
}[];
|
2861
|
-
}[];
|
2862
|
-
messagesAndLogs: ({
|
2863
|
-
id: string;
|
2864
|
-
direction: string;
|
2865
|
-
action: string;
|
2866
|
-
date: Date;
|
2867
|
-
createdAt: Date;
|
2868
|
-
updatedAt: Date;
|
2869
|
-
deletedAt: Date | null;
|
2870
|
-
roomId: string;
|
2871
2895
|
subject: string;
|
2872
2896
|
textPlain: string;
|
2873
2897
|
textHtml: string;
|
@@ -2909,30 +2933,6 @@ export declare const RoomContractsValidationSchema: {
|
|
2909
2933
|
updatedAt: Date;
|
2910
2934
|
deletedAt: Date | null;
|
2911
2935
|
}[];
|
2912
|
-
attachments: {
|
2913
|
-
id: string;
|
2914
|
-
createdAt: Date;
|
2915
|
-
updatedAt: Date;
|
2916
|
-
deletedAt: Date | null;
|
2917
|
-
fileName: string;
|
2918
|
-
fileType: string;
|
2919
|
-
upload: {
|
2920
|
-
id: string;
|
2921
|
-
createdAt: Date;
|
2922
|
-
updatedAt: Date;
|
2923
|
-
deletedAt: Date | null;
|
2924
|
-
bucket_name: string;
|
2925
|
-
file_name: string;
|
2926
|
-
file_key: string;
|
2927
|
-
file_size: number;
|
2928
|
-
file_url: string;
|
2929
|
-
extension_name: string;
|
2930
|
-
};
|
2931
|
-
roomId: string;
|
2932
|
-
messageId: string;
|
2933
|
-
emailEngineAttachmentId: string;
|
2934
|
-
uploadId: string;
|
2935
|
-
}[];
|
2936
2936
|
} | {
|
2937
2937
|
id: string;
|
2938
2938
|
description: string;
|
@@ -3008,6 +3008,30 @@ export declare const RoomContractsValidationSchema: {
|
|
3008
3008
|
updatedAt: Date;
|
3009
3009
|
deletedAt: Date | null;
|
3010
3010
|
roomId: string;
|
3011
|
+
attachments: {
|
3012
|
+
id: string;
|
3013
|
+
createdAt: Date;
|
3014
|
+
updatedAt: Date;
|
3015
|
+
deletedAt: Date | null;
|
3016
|
+
fileName: string;
|
3017
|
+
fileType: string;
|
3018
|
+
upload: {
|
3019
|
+
id: string;
|
3020
|
+
createdAt: Date;
|
3021
|
+
updatedAt: Date;
|
3022
|
+
deletedAt: Date | null;
|
3023
|
+
bucket_name: string;
|
3024
|
+
file_name: string;
|
3025
|
+
file_key: string;
|
3026
|
+
file_size: number;
|
3027
|
+
file_url: string;
|
3028
|
+
extension_name: string;
|
3029
|
+
};
|
3030
|
+
roomId: string;
|
3031
|
+
messageId: string;
|
3032
|
+
emailEngineAttachmentId: string;
|
3033
|
+
uploadId: string;
|
3034
|
+
}[];
|
3011
3035
|
subject: string;
|
3012
3036
|
textPlain: string;
|
3013
3037
|
textHtml: string;
|
@@ -3049,30 +3073,6 @@ export declare const RoomContractsValidationSchema: {
|
|
3049
3073
|
updatedAt: Date;
|
3050
3074
|
deletedAt: Date | null;
|
3051
3075
|
}[];
|
3052
|
-
attachments: {
|
3053
|
-
id: string;
|
3054
|
-
createdAt: Date;
|
3055
|
-
updatedAt: Date;
|
3056
|
-
deletedAt: Date | null;
|
3057
|
-
fileName: string;
|
3058
|
-
fileType: string;
|
3059
|
-
upload: {
|
3060
|
-
id: string;
|
3061
|
-
createdAt: Date;
|
3062
|
-
updatedAt: Date;
|
3063
|
-
deletedAt: Date | null;
|
3064
|
-
bucket_name: string;
|
3065
|
-
file_name: string;
|
3066
|
-
file_key: string;
|
3067
|
-
file_size: number;
|
3068
|
-
file_url: string;
|
3069
|
-
extension_name: string;
|
3070
|
-
};
|
3071
|
-
roomId: string;
|
3072
|
-
messageId: string;
|
3073
|
-
emailEngineAttachmentId: string;
|
3074
|
-
uploadId: string;
|
3075
|
-
}[];
|
3076
3076
|
};
|
3077
3077
|
assignee: {
|
3078
3078
|
id: string;
|
@@ -3133,6 +3133,30 @@ export declare const RoomContractsValidationSchema: {
|
|
3133
3133
|
updatedAt: Date;
|
3134
3134
|
deletedAt: Date | null;
|
3135
3135
|
roomId: string;
|
3136
|
+
attachments: {
|
3137
|
+
id: string;
|
3138
|
+
createdAt: Date;
|
3139
|
+
updatedAt: Date;
|
3140
|
+
deletedAt: Date | null;
|
3141
|
+
fileName: string;
|
3142
|
+
fileType: string;
|
3143
|
+
upload: {
|
3144
|
+
id: string;
|
3145
|
+
createdAt: Date;
|
3146
|
+
updatedAt: Date;
|
3147
|
+
deletedAt: Date | null;
|
3148
|
+
bucket_name: string;
|
3149
|
+
file_name: string;
|
3150
|
+
file_key: string;
|
3151
|
+
file_size: number;
|
3152
|
+
file_url: string;
|
3153
|
+
extension_name: string;
|
3154
|
+
};
|
3155
|
+
roomId: string;
|
3156
|
+
messageId: string;
|
3157
|
+
emailEngineAttachmentId: string;
|
3158
|
+
uploadId: string;
|
3159
|
+
}[];
|
3136
3160
|
subject: string;
|
3137
3161
|
textPlain: string;
|
3138
3162
|
textHtml: string;
|
@@ -3174,6 +3198,16 @@ export declare const RoomContractsValidationSchema: {
|
|
3174
3198
|
updatedAt: Date;
|
3175
3199
|
deletedAt: Date | null;
|
3176
3200
|
}[];
|
3201
|
+
};
|
3202
|
+
messages: {
|
3203
|
+
id: string;
|
3204
|
+
direction: string;
|
3205
|
+
action: string;
|
3206
|
+
date: Date;
|
3207
|
+
createdAt: Date;
|
3208
|
+
updatedAt: Date;
|
3209
|
+
deletedAt: Date | null;
|
3210
|
+
roomId: string;
|
3177
3211
|
attachments: {
|
3178
3212
|
id: string;
|
3179
3213
|
createdAt: Date;
|
@@ -3198,16 +3232,6 @@ export declare const RoomContractsValidationSchema: {
|
|
3198
3232
|
emailEngineAttachmentId: string;
|
3199
3233
|
uploadId: string;
|
3200
3234
|
}[];
|
3201
|
-
};
|
3202
|
-
messages: {
|
3203
|
-
id: string;
|
3204
|
-
direction: string;
|
3205
|
-
action: string;
|
3206
|
-
date: Date;
|
3207
|
-
createdAt: Date;
|
3208
|
-
updatedAt: Date;
|
3209
|
-
deletedAt: Date | null;
|
3210
|
-
roomId: string;
|
3211
3235
|
subject: string;
|
3212
3236
|
textPlain: string;
|
3213
3237
|
textHtml: string;
|
@@ -3249,6 +3273,16 @@ export declare const RoomContractsValidationSchema: {
|
|
3249
3273
|
updatedAt: Date;
|
3250
3274
|
deletedAt: Date | null;
|
3251
3275
|
}[];
|
3276
|
+
}[];
|
3277
|
+
messagesAndLogs: ({
|
3278
|
+
id: string;
|
3279
|
+
direction: string;
|
3280
|
+
action: string;
|
3281
|
+
date: Date;
|
3282
|
+
createdAt: Date;
|
3283
|
+
updatedAt: Date;
|
3284
|
+
deletedAt: Date | null;
|
3285
|
+
roomId: string;
|
3252
3286
|
attachments: {
|
3253
3287
|
id: string;
|
3254
3288
|
createdAt: Date;
|
@@ -3273,16 +3307,6 @@ export declare const RoomContractsValidationSchema: {
|
|
3273
3307
|
emailEngineAttachmentId: string;
|
3274
3308
|
uploadId: string;
|
3275
3309
|
}[];
|
3276
|
-
}[];
|
3277
|
-
messagesAndLogs: ({
|
3278
|
-
id: string;
|
3279
|
-
direction: string;
|
3280
|
-
action: string;
|
3281
|
-
date: Date;
|
3282
|
-
createdAt: Date;
|
3283
|
-
updatedAt: Date;
|
3284
|
-
deletedAt: Date | null;
|
3285
|
-
roomId: string;
|
3286
3310
|
subject: string;
|
3287
3311
|
textPlain: string;
|
3288
3312
|
textHtml: string;
|
@@ -3324,30 +3348,6 @@ export declare const RoomContractsValidationSchema: {
|
|
3324
3348
|
updatedAt: Date;
|
3325
3349
|
deletedAt: Date | null;
|
3326
3350
|
}[];
|
3327
|
-
attachments: {
|
3328
|
-
id: string;
|
3329
|
-
createdAt: Date;
|
3330
|
-
updatedAt: Date;
|
3331
|
-
deletedAt: Date | null;
|
3332
|
-
fileName: string;
|
3333
|
-
fileType: string;
|
3334
|
-
upload: {
|
3335
|
-
id: string;
|
3336
|
-
createdAt: Date;
|
3337
|
-
updatedAt: Date;
|
3338
|
-
deletedAt: Date | null;
|
3339
|
-
bucket_name: string;
|
3340
|
-
file_name: string;
|
3341
|
-
file_key: string;
|
3342
|
-
file_size: number;
|
3343
|
-
file_url: string;
|
3344
|
-
extension_name: string;
|
3345
|
-
};
|
3346
|
-
roomId: string;
|
3347
|
-
messageId: string;
|
3348
|
-
emailEngineAttachmentId: string;
|
3349
|
-
uploadId: string;
|
3350
|
-
}[];
|
3351
3351
|
} | {
|
3352
3352
|
id: string;
|
3353
3353
|
description: string;
|