@kl1/contracts 1.1.2-uat → 1.1.3-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +891 -829
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +890 -829
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +1783 -1170
- 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/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/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/user/index.d.ts +3 -3
- package/dist/src/user/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -649,20 +649,20 @@ export declare const apiContract: {
|
|
649
649
|
page: import("zod").ZodDefault<import("zod").ZodNumber>;
|
650
650
|
pageSize: import("zod").ZodDefault<import("zod").ZodNumber>;
|
651
651
|
keyword: import("zod").ZodOptional<import("zod").ZodString>;
|
652
|
-
|
653
|
-
|
652
|
+
level1: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"open">, import("zod").ZodLiteral<"close">, import("zod").ZodLiteral<"inbox">, import("zod").ZodLiteral<"sent">, import("zod").ZodLiteral<"scheduled">, import("zod").ZodLiteral<"starred">]>>;
|
653
|
+
level2: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"all">, import("zod").ZodLiteral<"unassign">, import("zod").ZodLiteral<"mine">, import("zod").ZodLiteral<"other">]>>;
|
654
654
|
}, "strip", import("zod").ZodTypeAny, {
|
655
655
|
page: number;
|
656
656
|
pageSize: number;
|
657
657
|
keyword?: string | undefined;
|
658
|
-
|
659
|
-
|
658
|
+
level1?: "open" | "close" | "inbox" | "sent" | "scheduled" | "starred" | undefined;
|
659
|
+
level2?: "all" | "other" | "unassign" | "mine" | undefined;
|
660
660
|
}, {
|
661
661
|
page?: number | undefined;
|
662
662
|
pageSize?: number | undefined;
|
663
663
|
keyword?: string | undefined;
|
664
|
-
|
665
|
-
|
664
|
+
level1?: "open" | "close" | "inbox" | "sent" | "scheduled" | "starred" | undefined;
|
665
|
+
level2?: "all" | "other" | "unassign" | "mine" | undefined;
|
666
666
|
}>;
|
667
667
|
responses: {
|
668
668
|
401: import("zod").ZodObject<{
|
@@ -920,34 +920,34 @@ export declare const apiContract: {
|
|
920
920
|
createdAt: import("zod").ZodDate;
|
921
921
|
updatedAt: import("zod").ZodDate;
|
922
922
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
923
|
+
bucketName: import("zod").ZodString;
|
924
|
+
fileName: import("zod").ZodString;
|
925
|
+
fileKey: import("zod").ZodString;
|
926
|
+
fileSize: import("zod").ZodNumber;
|
927
|
+
fileUrl: import("zod").ZodString;
|
928
|
+
extensionName: import("zod").ZodString;
|
929
929
|
}, "strip", import("zod").ZodTypeAny, {
|
930
930
|
id: string;
|
931
931
|
createdAt: Date;
|
932
932
|
updatedAt: Date;
|
933
933
|
deletedAt: Date | null;
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
934
|
+
extensionName: string;
|
935
|
+
fileName: string;
|
936
|
+
fileKey: string;
|
937
|
+
bucketName: string;
|
938
|
+
fileSize: number;
|
939
|
+
fileUrl: string;
|
940
940
|
}, {
|
941
941
|
id: string;
|
942
942
|
createdAt: Date;
|
943
943
|
updatedAt: Date;
|
944
944
|
deletedAt: Date | null;
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
945
|
+
extensionName: string;
|
946
|
+
fileName: string;
|
947
|
+
fileKey: string;
|
948
|
+
bucketName: string;
|
949
|
+
fileSize: number;
|
950
|
+
fileUrl: string;
|
951
951
|
}>;
|
952
952
|
}, "strip", import("zod").ZodTypeAny, {
|
953
953
|
id: string;
|
@@ -962,12 +962,12 @@ export declare const apiContract: {
|
|
962
962
|
createdAt: Date;
|
963
963
|
updatedAt: Date;
|
964
964
|
deletedAt: Date | null;
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
965
|
+
extensionName: string;
|
966
|
+
fileName: string;
|
967
|
+
fileKey: string;
|
968
|
+
bucketName: string;
|
969
|
+
fileSize: number;
|
970
|
+
fileUrl: string;
|
971
971
|
};
|
972
972
|
roomId: string;
|
973
973
|
messageId: string;
|
@@ -985,12 +985,12 @@ export declare const apiContract: {
|
|
985
985
|
createdAt: Date;
|
986
986
|
updatedAt: Date;
|
987
987
|
deletedAt: Date | null;
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
988
|
+
extensionName: string;
|
989
|
+
fileName: string;
|
990
|
+
fileKey: string;
|
991
|
+
bucketName: string;
|
992
|
+
fileSize: number;
|
993
|
+
fileUrl: string;
|
994
994
|
};
|
995
995
|
roomId: string;
|
996
996
|
messageId: string;
|
@@ -1059,12 +1059,12 @@ export declare const apiContract: {
|
|
1059
1059
|
createdAt: Date;
|
1060
1060
|
updatedAt: Date;
|
1061
1061
|
deletedAt: Date | null;
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1062
|
+
extensionName: string;
|
1063
|
+
fileName: string;
|
1064
|
+
fileKey: string;
|
1065
|
+
bucketName: string;
|
1066
|
+
fileSize: number;
|
1067
|
+
fileUrl: string;
|
1068
1068
|
};
|
1069
1069
|
roomId: string;
|
1070
1070
|
messageId: string;
|
@@ -1133,12 +1133,12 @@ export declare const apiContract: {
|
|
1133
1133
|
createdAt: Date;
|
1134
1134
|
updatedAt: Date;
|
1135
1135
|
deletedAt: Date | null;
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
|
1136
|
+
extensionName: string;
|
1137
|
+
fileName: string;
|
1138
|
+
fileKey: string;
|
1139
|
+
bucketName: string;
|
1140
|
+
fileSize: number;
|
1141
|
+
fileUrl: string;
|
1142
1142
|
};
|
1143
1143
|
roomId: string;
|
1144
1144
|
messageId: string;
|
@@ -1267,34 +1267,34 @@ export declare const apiContract: {
|
|
1267
1267
|
createdAt: import("zod").ZodDate;
|
1268
1268
|
updatedAt: import("zod").ZodDate;
|
1269
1269
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
1270
|
-
|
1271
|
-
|
1272
|
-
|
1273
|
-
|
1274
|
-
|
1275
|
-
|
1270
|
+
bucketName: import("zod").ZodString;
|
1271
|
+
fileName: import("zod").ZodString;
|
1272
|
+
fileKey: import("zod").ZodString;
|
1273
|
+
fileSize: import("zod").ZodNumber;
|
1274
|
+
fileUrl: import("zod").ZodString;
|
1275
|
+
extensionName: import("zod").ZodString;
|
1276
1276
|
}, "strip", import("zod").ZodTypeAny, {
|
1277
1277
|
id: string;
|
1278
1278
|
createdAt: Date;
|
1279
1279
|
updatedAt: Date;
|
1280
1280
|
deletedAt: Date | null;
|
1281
|
-
|
1282
|
-
|
1283
|
-
|
1284
|
-
|
1285
|
-
|
1286
|
-
|
1281
|
+
extensionName: string;
|
1282
|
+
fileName: string;
|
1283
|
+
fileKey: string;
|
1284
|
+
bucketName: string;
|
1285
|
+
fileSize: number;
|
1286
|
+
fileUrl: string;
|
1287
1287
|
}, {
|
1288
1288
|
id: string;
|
1289
1289
|
createdAt: Date;
|
1290
1290
|
updatedAt: Date;
|
1291
1291
|
deletedAt: Date | null;
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1295
|
-
|
1296
|
-
|
1297
|
-
|
1292
|
+
extensionName: string;
|
1293
|
+
fileName: string;
|
1294
|
+
fileKey: string;
|
1295
|
+
bucketName: string;
|
1296
|
+
fileSize: number;
|
1297
|
+
fileUrl: string;
|
1298
1298
|
}>;
|
1299
1299
|
}, "strip", import("zod").ZodTypeAny, {
|
1300
1300
|
id: string;
|
@@ -1309,12 +1309,12 @@ export declare const apiContract: {
|
|
1309
1309
|
createdAt: Date;
|
1310
1310
|
updatedAt: Date;
|
1311
1311
|
deletedAt: Date | null;
|
1312
|
-
|
1313
|
-
|
1314
|
-
|
1315
|
-
|
1316
|
-
|
1317
|
-
|
1312
|
+
extensionName: string;
|
1313
|
+
fileName: string;
|
1314
|
+
fileKey: string;
|
1315
|
+
bucketName: string;
|
1316
|
+
fileSize: number;
|
1317
|
+
fileUrl: string;
|
1318
1318
|
};
|
1319
1319
|
roomId: string;
|
1320
1320
|
messageId: string;
|
@@ -1332,12 +1332,12 @@ export declare const apiContract: {
|
|
1332
1332
|
createdAt: Date;
|
1333
1333
|
updatedAt: Date;
|
1334
1334
|
deletedAt: Date | null;
|
1335
|
-
|
1336
|
-
|
1337
|
-
|
1338
|
-
|
1339
|
-
|
1340
|
-
|
1335
|
+
extensionName: string;
|
1336
|
+
fileName: string;
|
1337
|
+
fileKey: string;
|
1338
|
+
bucketName: string;
|
1339
|
+
fileSize: number;
|
1340
|
+
fileUrl: string;
|
1341
1341
|
};
|
1342
1342
|
roomId: string;
|
1343
1343
|
messageId: string;
|
@@ -1406,12 +1406,12 @@ export declare const apiContract: {
|
|
1406
1406
|
createdAt: Date;
|
1407
1407
|
updatedAt: Date;
|
1408
1408
|
deletedAt: Date | null;
|
1409
|
-
|
1410
|
-
|
1411
|
-
|
1412
|
-
|
1413
|
-
|
1414
|
-
|
1409
|
+
extensionName: string;
|
1410
|
+
fileName: string;
|
1411
|
+
fileKey: string;
|
1412
|
+
bucketName: string;
|
1413
|
+
fileSize: number;
|
1414
|
+
fileUrl: string;
|
1415
1415
|
};
|
1416
1416
|
roomId: string;
|
1417
1417
|
messageId: string;
|
@@ -1480,12 +1480,12 @@ export declare const apiContract: {
|
|
1480
1480
|
createdAt: Date;
|
1481
1481
|
updatedAt: Date;
|
1482
1482
|
deletedAt: Date | null;
|
1483
|
-
|
1484
|
-
|
1485
|
-
|
1486
|
-
|
1487
|
-
|
1488
|
-
|
1483
|
+
extensionName: string;
|
1484
|
+
fileName: string;
|
1485
|
+
fileKey: string;
|
1486
|
+
bucketName: string;
|
1487
|
+
fileSize: number;
|
1488
|
+
fileUrl: string;
|
1489
1489
|
};
|
1490
1490
|
roomId: string;
|
1491
1491
|
messageId: string;
|
@@ -1523,7 +1523,7 @@ export declare const apiContract: {
|
|
1523
1523
|
email: import("zod").ZodString;
|
1524
1524
|
address: import("zod").ZodNullable<import("zod").ZodString>;
|
1525
1525
|
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
1526
|
-
|
1526
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
1527
1527
|
}, "strip", import("zod").ZodTypeAny, {
|
1528
1528
|
id: string;
|
1529
1529
|
address: string | null;
|
@@ -1533,7 +1533,7 @@ export declare const apiContract: {
|
|
1533
1533
|
updatedAt: Date;
|
1534
1534
|
deletedAt: Date | null;
|
1535
1535
|
phone: string | null;
|
1536
|
-
|
1536
|
+
notificationCount: number | null;
|
1537
1537
|
}, {
|
1538
1538
|
id: string;
|
1539
1539
|
address: string | null;
|
@@ -1543,7 +1543,7 @@ export declare const apiContract: {
|
|
1543
1543
|
updatedAt: Date;
|
1544
1544
|
deletedAt: Date | null;
|
1545
1545
|
phone: string | null;
|
1546
|
-
|
1546
|
+
notificationCount: number | null;
|
1547
1547
|
}>;
|
1548
1548
|
messages: import("zod").ZodArray<import("zod").ZodObject<{
|
1549
1549
|
id: import("zod").ZodString;
|
@@ -1667,34 +1667,34 @@ export declare const apiContract: {
|
|
1667
1667
|
createdAt: import("zod").ZodDate;
|
1668
1668
|
updatedAt: import("zod").ZodDate;
|
1669
1669
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
1670
|
-
|
1671
|
-
|
1672
|
-
|
1673
|
-
|
1674
|
-
|
1675
|
-
|
1670
|
+
bucketName: import("zod").ZodString;
|
1671
|
+
fileName: import("zod").ZodString;
|
1672
|
+
fileKey: import("zod").ZodString;
|
1673
|
+
fileSize: import("zod").ZodNumber;
|
1674
|
+
fileUrl: import("zod").ZodString;
|
1675
|
+
extensionName: import("zod").ZodString;
|
1676
1676
|
}, "strip", import("zod").ZodTypeAny, {
|
1677
1677
|
id: string;
|
1678
1678
|
createdAt: Date;
|
1679
1679
|
updatedAt: Date;
|
1680
1680
|
deletedAt: Date | null;
|
1681
|
-
|
1682
|
-
|
1683
|
-
|
1684
|
-
|
1685
|
-
|
1686
|
-
|
1681
|
+
extensionName: string;
|
1682
|
+
fileName: string;
|
1683
|
+
fileKey: string;
|
1684
|
+
bucketName: string;
|
1685
|
+
fileSize: number;
|
1686
|
+
fileUrl: string;
|
1687
1687
|
}, {
|
1688
1688
|
id: string;
|
1689
1689
|
createdAt: Date;
|
1690
1690
|
updatedAt: Date;
|
1691
1691
|
deletedAt: Date | null;
|
1692
|
-
|
1693
|
-
|
1694
|
-
|
1695
|
-
|
1696
|
-
|
1697
|
-
|
1692
|
+
extensionName: string;
|
1693
|
+
fileName: string;
|
1694
|
+
fileKey: string;
|
1695
|
+
bucketName: string;
|
1696
|
+
fileSize: number;
|
1697
|
+
fileUrl: string;
|
1698
1698
|
}>;
|
1699
1699
|
}, "strip", import("zod").ZodTypeAny, {
|
1700
1700
|
id: string;
|
@@ -1709,12 +1709,12 @@ export declare const apiContract: {
|
|
1709
1709
|
createdAt: Date;
|
1710
1710
|
updatedAt: Date;
|
1711
1711
|
deletedAt: Date | null;
|
1712
|
-
|
1713
|
-
|
1714
|
-
|
1715
|
-
|
1716
|
-
|
1717
|
-
|
1712
|
+
extensionName: string;
|
1713
|
+
fileName: string;
|
1714
|
+
fileKey: string;
|
1715
|
+
bucketName: string;
|
1716
|
+
fileSize: number;
|
1717
|
+
fileUrl: string;
|
1718
1718
|
};
|
1719
1719
|
roomId: string;
|
1720
1720
|
messageId: string;
|
@@ -1732,12 +1732,12 @@ export declare const apiContract: {
|
|
1732
1732
|
createdAt: Date;
|
1733
1733
|
updatedAt: Date;
|
1734
1734
|
deletedAt: Date | null;
|
1735
|
-
|
1736
|
-
|
1737
|
-
|
1738
|
-
|
1739
|
-
|
1740
|
-
|
1735
|
+
extensionName: string;
|
1736
|
+
fileName: string;
|
1737
|
+
fileKey: string;
|
1738
|
+
bucketName: string;
|
1739
|
+
fileSize: number;
|
1740
|
+
fileUrl: string;
|
1741
1741
|
};
|
1742
1742
|
roomId: string;
|
1743
1743
|
messageId: string;
|
@@ -1806,12 +1806,12 @@ export declare const apiContract: {
|
|
1806
1806
|
createdAt: Date;
|
1807
1807
|
updatedAt: Date;
|
1808
1808
|
deletedAt: Date | null;
|
1809
|
-
|
1810
|
-
|
1811
|
-
|
1812
|
-
|
1813
|
-
|
1814
|
-
|
1809
|
+
extensionName: string;
|
1810
|
+
fileName: string;
|
1811
|
+
fileKey: string;
|
1812
|
+
bucketName: string;
|
1813
|
+
fileSize: number;
|
1814
|
+
fileUrl: string;
|
1815
1815
|
};
|
1816
1816
|
roomId: string;
|
1817
1817
|
messageId: string;
|
@@ -1880,12 +1880,12 @@ export declare const apiContract: {
|
|
1880
1880
|
createdAt: Date;
|
1881
1881
|
updatedAt: Date;
|
1882
1882
|
deletedAt: Date | null;
|
1883
|
-
|
1884
|
-
|
1885
|
-
|
1886
|
-
|
1887
|
-
|
1888
|
-
|
1883
|
+
extensionName: string;
|
1884
|
+
fileName: string;
|
1885
|
+
fileKey: string;
|
1886
|
+
bucketName: string;
|
1887
|
+
fileSize: number;
|
1888
|
+
fileUrl: string;
|
1889
1889
|
};
|
1890
1890
|
roomId: string;
|
1891
1891
|
messageId: string;
|
@@ -2014,34 +2014,34 @@ export declare const apiContract: {
|
|
2014
2014
|
createdAt: import("zod").ZodDate;
|
2015
2015
|
updatedAt: import("zod").ZodDate;
|
2016
2016
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
2017
|
-
|
2018
|
-
|
2019
|
-
|
2020
|
-
|
2021
|
-
|
2022
|
-
|
2017
|
+
bucketName: import("zod").ZodString;
|
2018
|
+
fileName: import("zod").ZodString;
|
2019
|
+
fileKey: import("zod").ZodString;
|
2020
|
+
fileSize: import("zod").ZodNumber;
|
2021
|
+
fileUrl: import("zod").ZodString;
|
2022
|
+
extensionName: import("zod").ZodString;
|
2023
2023
|
}, "strip", import("zod").ZodTypeAny, {
|
2024
2024
|
id: string;
|
2025
2025
|
createdAt: Date;
|
2026
2026
|
updatedAt: Date;
|
2027
2027
|
deletedAt: Date | null;
|
2028
|
-
|
2029
|
-
|
2030
|
-
|
2031
|
-
|
2032
|
-
|
2033
|
-
|
2028
|
+
extensionName: string;
|
2029
|
+
fileName: string;
|
2030
|
+
fileKey: string;
|
2031
|
+
bucketName: string;
|
2032
|
+
fileSize: number;
|
2033
|
+
fileUrl: string;
|
2034
2034
|
}, {
|
2035
2035
|
id: string;
|
2036
2036
|
createdAt: Date;
|
2037
2037
|
updatedAt: Date;
|
2038
2038
|
deletedAt: Date | null;
|
2039
|
-
|
2040
|
-
|
2041
|
-
|
2042
|
-
|
2043
|
-
|
2044
|
-
|
2039
|
+
extensionName: string;
|
2040
|
+
fileName: string;
|
2041
|
+
fileKey: string;
|
2042
|
+
bucketName: string;
|
2043
|
+
fileSize: number;
|
2044
|
+
fileUrl: string;
|
2045
2045
|
}>;
|
2046
2046
|
}, "strip", import("zod").ZodTypeAny, {
|
2047
2047
|
id: string;
|
@@ -2056,12 +2056,12 @@ export declare const apiContract: {
|
|
2056
2056
|
createdAt: Date;
|
2057
2057
|
updatedAt: Date;
|
2058
2058
|
deletedAt: Date | null;
|
2059
|
-
|
2060
|
-
|
2061
|
-
|
2062
|
-
|
2063
|
-
|
2064
|
-
|
2059
|
+
extensionName: string;
|
2060
|
+
fileName: string;
|
2061
|
+
fileKey: string;
|
2062
|
+
bucketName: string;
|
2063
|
+
fileSize: number;
|
2064
|
+
fileUrl: string;
|
2065
2065
|
};
|
2066
2066
|
roomId: string;
|
2067
2067
|
messageId: string;
|
@@ -2079,12 +2079,12 @@ export declare const apiContract: {
|
|
2079
2079
|
createdAt: Date;
|
2080
2080
|
updatedAt: Date;
|
2081
2081
|
deletedAt: Date | null;
|
2082
|
-
|
2083
|
-
|
2084
|
-
|
2085
|
-
|
2086
|
-
|
2087
|
-
|
2082
|
+
extensionName: string;
|
2083
|
+
fileName: string;
|
2084
|
+
fileKey: string;
|
2085
|
+
bucketName: string;
|
2086
|
+
fileSize: number;
|
2087
|
+
fileUrl: string;
|
2088
2088
|
};
|
2089
2089
|
roomId: string;
|
2090
2090
|
messageId: string;
|
@@ -2153,12 +2153,12 @@ export declare const apiContract: {
|
|
2153
2153
|
createdAt: Date;
|
2154
2154
|
updatedAt: Date;
|
2155
2155
|
deletedAt: Date | null;
|
2156
|
-
|
2157
|
-
|
2158
|
-
|
2159
|
-
|
2160
|
-
|
2161
|
-
|
2156
|
+
extensionName: string;
|
2157
|
+
fileName: string;
|
2158
|
+
fileKey: string;
|
2159
|
+
bucketName: string;
|
2160
|
+
fileSize: number;
|
2161
|
+
fileUrl: string;
|
2162
2162
|
};
|
2163
2163
|
roomId: string;
|
2164
2164
|
messageId: string;
|
@@ -2227,12 +2227,12 @@ export declare const apiContract: {
|
|
2227
2227
|
createdAt: Date;
|
2228
2228
|
updatedAt: Date;
|
2229
2229
|
deletedAt: Date | null;
|
2230
|
-
|
2231
|
-
|
2232
|
-
|
2233
|
-
|
2234
|
-
|
2235
|
-
|
2230
|
+
extensionName: string;
|
2231
|
+
fileName: string;
|
2232
|
+
fileKey: string;
|
2233
|
+
bucketName: string;
|
2234
|
+
fileSize: number;
|
2235
|
+
fileUrl: string;
|
2236
2236
|
};
|
2237
2237
|
roomId: string;
|
2238
2238
|
messageId: string;
|
@@ -2255,7 +2255,7 @@ export declare const apiContract: {
|
|
2255
2255
|
email: import("zod").ZodString;
|
2256
2256
|
address: import("zod").ZodNullable<import("zod").ZodString>;
|
2257
2257
|
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
2258
|
-
|
2258
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
2259
2259
|
}, "strip", import("zod").ZodTypeAny, {
|
2260
2260
|
id: string;
|
2261
2261
|
address: string | null;
|
@@ -2265,7 +2265,7 @@ export declare const apiContract: {
|
|
2265
2265
|
updatedAt: Date;
|
2266
2266
|
deletedAt: Date | null;
|
2267
2267
|
phone: string | null;
|
2268
|
-
|
2268
|
+
notificationCount: number | null;
|
2269
2269
|
}, {
|
2270
2270
|
id: string;
|
2271
2271
|
address: string | null;
|
@@ -2275,7 +2275,7 @@ export declare const apiContract: {
|
|
2275
2275
|
updatedAt: Date;
|
2276
2276
|
deletedAt: Date | null;
|
2277
2277
|
phone: string | null;
|
2278
|
-
|
2278
|
+
notificationCount: number | null;
|
2279
2279
|
}>;
|
2280
2280
|
}, "strip", import("zod").ZodTypeAny, {
|
2281
2281
|
id: string;
|
@@ -2292,7 +2292,7 @@ export declare const apiContract: {
|
|
2292
2292
|
updatedAt: Date;
|
2293
2293
|
deletedAt: Date | null;
|
2294
2294
|
phone: string | null;
|
2295
|
-
|
2295
|
+
notificationCount: number | null;
|
2296
2296
|
};
|
2297
2297
|
roomId: string;
|
2298
2298
|
actorId: string;
|
@@ -2311,7 +2311,7 @@ export declare const apiContract: {
|
|
2311
2311
|
updatedAt: Date;
|
2312
2312
|
deletedAt: Date | null;
|
2313
2313
|
phone: string | null;
|
2314
|
-
|
2314
|
+
notificationCount: number | null;
|
2315
2315
|
};
|
2316
2316
|
roomId: string;
|
2317
2317
|
actorId: string;
|
@@ -2332,12 +2332,12 @@ export declare const apiContract: {
|
|
2332
2332
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
2333
2333
|
name: import("zod").ZodString;
|
2334
2334
|
smtpHost: import("zod").ZodString;
|
2335
|
-
smtpPort: import("zod").
|
2336
|
-
smtpTlsPort: import("zod").
|
2335
|
+
smtpPort: import("zod").ZodNumber;
|
2336
|
+
smtpTlsPort: import("zod").ZodNumber;
|
2337
2337
|
useTlsForSmtp: import("zod").ZodBoolean;
|
2338
2338
|
imapHost: import("zod").ZodString;
|
2339
|
-
imapPort: import("zod").
|
2340
|
-
imapTlsPort: import("zod").
|
2339
|
+
imapPort: import("zod").ZodNumber;
|
2340
|
+
imapTlsPort: import("zod").ZodNumber;
|
2341
2341
|
useTlsForImap: import("zod").ZodBoolean;
|
2342
2342
|
}, "strip", import("zod").ZodTypeAny, {
|
2343
2343
|
id: string;
|
@@ -2346,12 +2346,12 @@ export declare const apiContract: {
|
|
2346
2346
|
updatedAt: Date;
|
2347
2347
|
deletedAt: Date | null;
|
2348
2348
|
smtpHost: string;
|
2349
|
-
smtpPort:
|
2350
|
-
smtpTlsPort:
|
2349
|
+
smtpPort: number;
|
2350
|
+
smtpTlsPort: number;
|
2351
2351
|
useTlsForSmtp: boolean;
|
2352
2352
|
imapHost: string;
|
2353
|
-
imapPort:
|
2354
|
-
imapTlsPort:
|
2353
|
+
imapPort: number;
|
2354
|
+
imapTlsPort: number;
|
2355
2355
|
useTlsForImap: boolean;
|
2356
2356
|
}, {
|
2357
2357
|
id: string;
|
@@ -2360,12 +2360,12 @@ export declare const apiContract: {
|
|
2360
2360
|
updatedAt: Date;
|
2361
2361
|
deletedAt: Date | null;
|
2362
2362
|
smtpHost: string;
|
2363
|
-
smtpPort:
|
2364
|
-
smtpTlsPort:
|
2363
|
+
smtpPort: number;
|
2364
|
+
smtpTlsPort: number;
|
2365
2365
|
useTlsForSmtp: boolean;
|
2366
2366
|
imapHost: string;
|
2367
|
-
imapPort:
|
2368
|
-
imapTlsPort:
|
2367
|
+
imapPort: number;
|
2368
|
+
imapTlsPort: number;
|
2369
2369
|
useTlsForImap: boolean;
|
2370
2370
|
}>;
|
2371
2371
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -2386,12 +2386,12 @@ export declare const apiContract: {
|
|
2386
2386
|
updatedAt: Date;
|
2387
2387
|
deletedAt: Date | null;
|
2388
2388
|
smtpHost: string;
|
2389
|
-
smtpPort:
|
2390
|
-
smtpTlsPort:
|
2389
|
+
smtpPort: number;
|
2390
|
+
smtpTlsPort: number;
|
2391
2391
|
useTlsForSmtp: boolean;
|
2392
2392
|
imapHost: string;
|
2393
|
-
imapPort:
|
2394
|
-
imapTlsPort:
|
2393
|
+
imapPort: number;
|
2394
|
+
imapTlsPort: number;
|
2395
2395
|
useTlsForImap: boolean;
|
2396
2396
|
};
|
2397
2397
|
}, {
|
@@ -2411,12 +2411,12 @@ export declare const apiContract: {
|
|
2411
2411
|
updatedAt: Date;
|
2412
2412
|
deletedAt: Date | null;
|
2413
2413
|
smtpHost: string;
|
2414
|
-
smtpPort:
|
2415
|
-
smtpTlsPort:
|
2414
|
+
smtpPort: number;
|
2415
|
+
smtpTlsPort: number;
|
2416
2416
|
useTlsForSmtp: boolean;
|
2417
2417
|
imapHost: string;
|
2418
|
-
imapPort:
|
2419
|
-
imapTlsPort:
|
2418
|
+
imapPort: number;
|
2419
|
+
imapTlsPort: number;
|
2420
2420
|
useTlsForImap: boolean;
|
2421
2421
|
};
|
2422
2422
|
}>;
|
@@ -2499,12 +2499,12 @@ export declare const apiContract: {
|
|
2499
2499
|
createdAt: Date;
|
2500
2500
|
updatedAt: Date;
|
2501
2501
|
deletedAt: Date | null;
|
2502
|
-
|
2503
|
-
|
2504
|
-
|
2505
|
-
|
2506
|
-
|
2507
|
-
|
2502
|
+
extensionName: string;
|
2503
|
+
fileName: string;
|
2504
|
+
fileKey: string;
|
2505
|
+
bucketName: string;
|
2506
|
+
fileSize: number;
|
2507
|
+
fileUrl: string;
|
2508
2508
|
};
|
2509
2509
|
roomId: string;
|
2510
2510
|
messageId: string;
|
@@ -2520,7 +2520,7 @@ export declare const apiContract: {
|
|
2520
2520
|
updatedAt: Date;
|
2521
2521
|
deletedAt: Date | null;
|
2522
2522
|
phone: string | null;
|
2523
|
-
|
2523
|
+
notificationCount: number | null;
|
2524
2524
|
};
|
2525
2525
|
resolved: boolean;
|
2526
2526
|
assigneeId: string | null;
|
@@ -2623,12 +2623,12 @@ export declare const apiContract: {
|
|
2623
2623
|
createdAt: Date;
|
2624
2624
|
updatedAt: Date;
|
2625
2625
|
deletedAt: Date | null;
|
2626
|
-
|
2627
|
-
|
2628
|
-
|
2629
|
-
|
2630
|
-
|
2631
|
-
|
2626
|
+
extensionName: string;
|
2627
|
+
fileName: string;
|
2628
|
+
fileKey: string;
|
2629
|
+
bucketName: string;
|
2630
|
+
fileSize: number;
|
2631
|
+
fileUrl: string;
|
2632
2632
|
};
|
2633
2633
|
roomId: string;
|
2634
2634
|
messageId: string;
|
@@ -2698,12 +2698,12 @@ export declare const apiContract: {
|
|
2698
2698
|
createdAt: Date;
|
2699
2699
|
updatedAt: Date;
|
2700
2700
|
deletedAt: Date | null;
|
2701
|
-
|
2702
|
-
|
2703
|
-
|
2704
|
-
|
2705
|
-
|
2706
|
-
|
2701
|
+
extensionName: string;
|
2702
|
+
fileName: string;
|
2703
|
+
fileKey: string;
|
2704
|
+
bucketName: string;
|
2705
|
+
fileSize: number;
|
2706
|
+
fileUrl: string;
|
2707
2707
|
};
|
2708
2708
|
roomId: string;
|
2709
2709
|
messageId: string;
|
@@ -2773,12 +2773,12 @@ export declare const apiContract: {
|
|
2773
2773
|
createdAt: Date;
|
2774
2774
|
updatedAt: Date;
|
2775
2775
|
deletedAt: Date | null;
|
2776
|
-
|
2777
|
-
|
2778
|
-
|
2779
|
-
|
2780
|
-
|
2781
|
-
|
2776
|
+
extensionName: string;
|
2777
|
+
fileName: string;
|
2778
|
+
fileKey: string;
|
2779
|
+
bucketName: string;
|
2780
|
+
fileSize: number;
|
2781
|
+
fileUrl: string;
|
2782
2782
|
};
|
2783
2783
|
roomId: string;
|
2784
2784
|
messageId: string;
|
@@ -2799,7 +2799,7 @@ export declare const apiContract: {
|
|
2799
2799
|
updatedAt: Date;
|
2800
2800
|
deletedAt: Date | null;
|
2801
2801
|
phone: string | null;
|
2802
|
-
|
2802
|
+
notificationCount: number | null;
|
2803
2803
|
};
|
2804
2804
|
roomId: string;
|
2805
2805
|
actorId: string;
|
@@ -2821,12 +2821,12 @@ export declare const apiContract: {
|
|
2821
2821
|
updatedAt: Date;
|
2822
2822
|
deletedAt: Date | null;
|
2823
2823
|
smtpHost: string;
|
2824
|
-
smtpPort:
|
2825
|
-
smtpTlsPort:
|
2824
|
+
smtpPort: number;
|
2825
|
+
smtpTlsPort: number;
|
2826
2826
|
useTlsForSmtp: boolean;
|
2827
2827
|
imapHost: string;
|
2828
|
-
imapPort:
|
2829
|
-
imapTlsPort:
|
2828
|
+
imapPort: number;
|
2829
|
+
imapTlsPort: number;
|
2830
2830
|
useTlsForImap: boolean;
|
2831
2831
|
};
|
2832
2832
|
};
|
@@ -2909,12 +2909,12 @@ export declare const apiContract: {
|
|
2909
2909
|
createdAt: Date;
|
2910
2910
|
updatedAt: Date;
|
2911
2911
|
deletedAt: Date | null;
|
2912
|
-
|
2913
|
-
|
2914
|
-
|
2915
|
-
|
2916
|
-
|
2917
|
-
|
2912
|
+
extensionName: string;
|
2913
|
+
fileName: string;
|
2914
|
+
fileKey: string;
|
2915
|
+
bucketName: string;
|
2916
|
+
fileSize: number;
|
2917
|
+
fileUrl: string;
|
2918
2918
|
};
|
2919
2919
|
roomId: string;
|
2920
2920
|
messageId: string;
|
@@ -2930,7 +2930,7 @@ export declare const apiContract: {
|
|
2930
2930
|
updatedAt: Date;
|
2931
2931
|
deletedAt: Date | null;
|
2932
2932
|
phone: string | null;
|
2933
|
-
|
2933
|
+
notificationCount: number | null;
|
2934
2934
|
};
|
2935
2935
|
resolved: boolean;
|
2936
2936
|
assigneeId: string | null;
|
@@ -3033,12 +3033,12 @@ export declare const apiContract: {
|
|
3033
3033
|
createdAt: Date;
|
3034
3034
|
updatedAt: Date;
|
3035
3035
|
deletedAt: Date | null;
|
3036
|
-
|
3037
|
-
|
3038
|
-
|
3039
|
-
|
3040
|
-
|
3041
|
-
|
3036
|
+
extensionName: string;
|
3037
|
+
fileName: string;
|
3038
|
+
fileKey: string;
|
3039
|
+
bucketName: string;
|
3040
|
+
fileSize: number;
|
3041
|
+
fileUrl: string;
|
3042
3042
|
};
|
3043
3043
|
roomId: string;
|
3044
3044
|
messageId: string;
|
@@ -3108,12 +3108,12 @@ export declare const apiContract: {
|
|
3108
3108
|
createdAt: Date;
|
3109
3109
|
updatedAt: Date;
|
3110
3110
|
deletedAt: Date | null;
|
3111
|
-
|
3112
|
-
|
3113
|
-
|
3114
|
-
|
3115
|
-
|
3116
|
-
|
3111
|
+
extensionName: string;
|
3112
|
+
fileName: string;
|
3113
|
+
fileKey: string;
|
3114
|
+
bucketName: string;
|
3115
|
+
fileSize: number;
|
3116
|
+
fileUrl: string;
|
3117
3117
|
};
|
3118
3118
|
roomId: string;
|
3119
3119
|
messageId: string;
|
@@ -3183,12 +3183,12 @@ export declare const apiContract: {
|
|
3183
3183
|
createdAt: Date;
|
3184
3184
|
updatedAt: Date;
|
3185
3185
|
deletedAt: Date | null;
|
3186
|
-
|
3187
|
-
|
3188
|
-
|
3189
|
-
|
3190
|
-
|
3191
|
-
|
3186
|
+
extensionName: string;
|
3187
|
+
fileName: string;
|
3188
|
+
fileKey: string;
|
3189
|
+
bucketName: string;
|
3190
|
+
fileSize: number;
|
3191
|
+
fileUrl: string;
|
3192
3192
|
};
|
3193
3193
|
roomId: string;
|
3194
3194
|
messageId: string;
|
@@ -3209,7 +3209,7 @@ export declare const apiContract: {
|
|
3209
3209
|
updatedAt: Date;
|
3210
3210
|
deletedAt: Date | null;
|
3211
3211
|
phone: string | null;
|
3212
|
-
|
3212
|
+
notificationCount: number | null;
|
3213
3213
|
};
|
3214
3214
|
roomId: string;
|
3215
3215
|
actorId: string;
|
@@ -3231,12 +3231,12 @@ export declare const apiContract: {
|
|
3231
3231
|
updatedAt: Date;
|
3232
3232
|
deletedAt: Date | null;
|
3233
3233
|
smtpHost: string;
|
3234
|
-
smtpPort:
|
3235
|
-
smtpTlsPort:
|
3234
|
+
smtpPort: number;
|
3235
|
+
smtpTlsPort: number;
|
3236
3236
|
useTlsForSmtp: boolean;
|
3237
3237
|
imapHost: string;
|
3238
|
-
imapPort:
|
3239
|
-
imapTlsPort:
|
3238
|
+
imapPort: number;
|
3239
|
+
imapTlsPort: number;
|
3240
3240
|
useTlsForImap: boolean;
|
3241
3241
|
};
|
3242
3242
|
};
|
@@ -3324,12 +3324,12 @@ export declare const apiContract: {
|
|
3324
3324
|
createdAt: Date;
|
3325
3325
|
updatedAt: Date;
|
3326
3326
|
deletedAt: Date | null;
|
3327
|
-
|
3328
|
-
|
3329
|
-
|
3330
|
-
|
3331
|
-
|
3332
|
-
|
3327
|
+
extensionName: string;
|
3328
|
+
fileName: string;
|
3329
|
+
fileKey: string;
|
3330
|
+
bucketName: string;
|
3331
|
+
fileSize: number;
|
3332
|
+
fileUrl: string;
|
3333
3333
|
};
|
3334
3334
|
roomId: string;
|
3335
3335
|
messageId: string;
|
@@ -3345,7 +3345,7 @@ export declare const apiContract: {
|
|
3345
3345
|
updatedAt: Date;
|
3346
3346
|
deletedAt: Date | null;
|
3347
3347
|
phone: string | null;
|
3348
|
-
|
3348
|
+
notificationCount: number | null;
|
3349
3349
|
};
|
3350
3350
|
resolved: boolean;
|
3351
3351
|
assigneeId: string | null;
|
@@ -3448,12 +3448,12 @@ export declare const apiContract: {
|
|
3448
3448
|
createdAt: Date;
|
3449
3449
|
updatedAt: Date;
|
3450
3450
|
deletedAt: Date | null;
|
3451
|
-
|
3452
|
-
|
3453
|
-
|
3454
|
-
|
3455
|
-
|
3456
|
-
|
3451
|
+
extensionName: string;
|
3452
|
+
fileName: string;
|
3453
|
+
fileKey: string;
|
3454
|
+
bucketName: string;
|
3455
|
+
fileSize: number;
|
3456
|
+
fileUrl: string;
|
3457
3457
|
};
|
3458
3458
|
roomId: string;
|
3459
3459
|
messageId: string;
|
@@ -3523,12 +3523,12 @@ export declare const apiContract: {
|
|
3523
3523
|
createdAt: Date;
|
3524
3524
|
updatedAt: Date;
|
3525
3525
|
deletedAt: Date | null;
|
3526
|
-
|
3527
|
-
|
3528
|
-
|
3529
|
-
|
3530
|
-
|
3531
|
-
|
3526
|
+
extensionName: string;
|
3527
|
+
fileName: string;
|
3528
|
+
fileKey: string;
|
3529
|
+
bucketName: string;
|
3530
|
+
fileSize: number;
|
3531
|
+
fileUrl: string;
|
3532
3532
|
};
|
3533
3533
|
roomId: string;
|
3534
3534
|
messageId: string;
|
@@ -3598,12 +3598,12 @@ export declare const apiContract: {
|
|
3598
3598
|
createdAt: Date;
|
3599
3599
|
updatedAt: Date;
|
3600
3600
|
deletedAt: Date | null;
|
3601
|
-
|
3602
|
-
|
3603
|
-
|
3604
|
-
|
3605
|
-
|
3606
|
-
|
3601
|
+
extensionName: string;
|
3602
|
+
fileName: string;
|
3603
|
+
fileKey: string;
|
3604
|
+
bucketName: string;
|
3605
|
+
fileSize: number;
|
3606
|
+
fileUrl: string;
|
3607
3607
|
};
|
3608
3608
|
roomId: string;
|
3609
3609
|
messageId: string;
|
@@ -3624,7 +3624,7 @@ export declare const apiContract: {
|
|
3624
3624
|
updatedAt: Date;
|
3625
3625
|
deletedAt: Date | null;
|
3626
3626
|
phone: string | null;
|
3627
|
-
|
3627
|
+
notificationCount: number | null;
|
3628
3628
|
};
|
3629
3629
|
roomId: string;
|
3630
3630
|
actorId: string;
|
@@ -3646,12 +3646,12 @@ export declare const apiContract: {
|
|
3646
3646
|
updatedAt: Date;
|
3647
3647
|
deletedAt: Date | null;
|
3648
3648
|
smtpHost: string;
|
3649
|
-
smtpPort:
|
3650
|
-
smtpTlsPort:
|
3649
|
+
smtpPort: number;
|
3650
|
+
smtpTlsPort: number;
|
3651
3651
|
useTlsForSmtp: boolean;
|
3652
3652
|
imapHost: string;
|
3653
|
-
imapPort:
|
3654
|
-
imapTlsPort:
|
3653
|
+
imapPort: number;
|
3654
|
+
imapTlsPort: number;
|
3655
3655
|
useTlsForImap: boolean;
|
3656
3656
|
};
|
3657
3657
|
};
|
@@ -3740,12 +3740,12 @@ export declare const apiContract: {
|
|
3740
3740
|
createdAt: Date;
|
3741
3741
|
updatedAt: Date;
|
3742
3742
|
deletedAt: Date | null;
|
3743
|
-
|
3744
|
-
|
3745
|
-
|
3746
|
-
|
3747
|
-
|
3748
|
-
|
3743
|
+
extensionName: string;
|
3744
|
+
fileName: string;
|
3745
|
+
fileKey: string;
|
3746
|
+
bucketName: string;
|
3747
|
+
fileSize: number;
|
3748
|
+
fileUrl: string;
|
3749
3749
|
};
|
3750
3750
|
roomId: string;
|
3751
3751
|
messageId: string;
|
@@ -3761,7 +3761,7 @@ export declare const apiContract: {
|
|
3761
3761
|
updatedAt: Date;
|
3762
3762
|
deletedAt: Date | null;
|
3763
3763
|
phone: string | null;
|
3764
|
-
|
3764
|
+
notificationCount: number | null;
|
3765
3765
|
};
|
3766
3766
|
resolved: boolean;
|
3767
3767
|
assigneeId: string | null;
|
@@ -3864,12 +3864,12 @@ export declare const apiContract: {
|
|
3864
3864
|
createdAt: Date;
|
3865
3865
|
updatedAt: Date;
|
3866
3866
|
deletedAt: Date | null;
|
3867
|
-
|
3868
|
-
|
3869
|
-
|
3870
|
-
|
3871
|
-
|
3872
|
-
|
3867
|
+
extensionName: string;
|
3868
|
+
fileName: string;
|
3869
|
+
fileKey: string;
|
3870
|
+
bucketName: string;
|
3871
|
+
fileSize: number;
|
3872
|
+
fileUrl: string;
|
3873
3873
|
};
|
3874
3874
|
roomId: string;
|
3875
3875
|
messageId: string;
|
@@ -3939,12 +3939,12 @@ export declare const apiContract: {
|
|
3939
3939
|
createdAt: Date;
|
3940
3940
|
updatedAt: Date;
|
3941
3941
|
deletedAt: Date | null;
|
3942
|
-
|
3943
|
-
|
3944
|
-
|
3945
|
-
|
3946
|
-
|
3947
|
-
|
3942
|
+
extensionName: string;
|
3943
|
+
fileName: string;
|
3944
|
+
fileKey: string;
|
3945
|
+
bucketName: string;
|
3946
|
+
fileSize: number;
|
3947
|
+
fileUrl: string;
|
3948
3948
|
};
|
3949
3949
|
roomId: string;
|
3950
3950
|
messageId: string;
|
@@ -4014,12 +4014,12 @@ export declare const apiContract: {
|
|
4014
4014
|
createdAt: Date;
|
4015
4015
|
updatedAt: Date;
|
4016
4016
|
deletedAt: Date | null;
|
4017
|
-
|
4018
|
-
|
4019
|
-
|
4020
|
-
|
4021
|
-
|
4022
|
-
|
4017
|
+
extensionName: string;
|
4018
|
+
fileName: string;
|
4019
|
+
fileKey: string;
|
4020
|
+
bucketName: string;
|
4021
|
+
fileSize: number;
|
4022
|
+
fileUrl: string;
|
4023
4023
|
};
|
4024
4024
|
roomId: string;
|
4025
4025
|
messageId: string;
|
@@ -4040,7 +4040,7 @@ export declare const apiContract: {
|
|
4040
4040
|
updatedAt: Date;
|
4041
4041
|
deletedAt: Date | null;
|
4042
4042
|
phone: string | null;
|
4043
|
-
|
4043
|
+
notificationCount: number | null;
|
4044
4044
|
};
|
4045
4045
|
roomId: string;
|
4046
4046
|
actorId: string;
|
@@ -4062,12 +4062,12 @@ export declare const apiContract: {
|
|
4062
4062
|
updatedAt: Date;
|
4063
4063
|
deletedAt: Date | null;
|
4064
4064
|
smtpHost: string;
|
4065
|
-
smtpPort:
|
4066
|
-
smtpTlsPort:
|
4065
|
+
smtpPort: number;
|
4066
|
+
smtpTlsPort: number;
|
4067
4067
|
useTlsForSmtp: boolean;
|
4068
4068
|
imapHost: string;
|
4069
|
-
imapPort:
|
4070
|
-
imapTlsPort:
|
4069
|
+
imapPort: number;
|
4070
|
+
imapTlsPort: number;
|
4071
4071
|
useTlsForImap: boolean;
|
4072
4072
|
};
|
4073
4073
|
};
|
@@ -4347,34 +4347,34 @@ export declare const apiContract: {
|
|
4347
4347
|
createdAt: import("zod").ZodDate;
|
4348
4348
|
updatedAt: import("zod").ZodDate;
|
4349
4349
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
4350
|
-
|
4351
|
-
|
4352
|
-
|
4353
|
-
|
4354
|
-
|
4355
|
-
|
4350
|
+
bucketName: import("zod").ZodString;
|
4351
|
+
fileName: import("zod").ZodString;
|
4352
|
+
fileKey: import("zod").ZodString;
|
4353
|
+
fileSize: import("zod").ZodNumber;
|
4354
|
+
fileUrl: import("zod").ZodString;
|
4355
|
+
extensionName: import("zod").ZodString;
|
4356
4356
|
}, "strip", import("zod").ZodTypeAny, {
|
4357
4357
|
id: string;
|
4358
4358
|
createdAt: Date;
|
4359
4359
|
updatedAt: Date;
|
4360
4360
|
deletedAt: Date | null;
|
4361
|
-
|
4362
|
-
|
4363
|
-
|
4364
|
-
|
4365
|
-
|
4366
|
-
|
4361
|
+
extensionName: string;
|
4362
|
+
fileName: string;
|
4363
|
+
fileKey: string;
|
4364
|
+
bucketName: string;
|
4365
|
+
fileSize: number;
|
4366
|
+
fileUrl: string;
|
4367
4367
|
}, {
|
4368
4368
|
id: string;
|
4369
4369
|
createdAt: Date;
|
4370
4370
|
updatedAt: Date;
|
4371
4371
|
deletedAt: Date | null;
|
4372
|
-
|
4373
|
-
|
4374
|
-
|
4375
|
-
|
4376
|
-
|
4377
|
-
|
4372
|
+
extensionName: string;
|
4373
|
+
fileName: string;
|
4374
|
+
fileKey: string;
|
4375
|
+
bucketName: string;
|
4376
|
+
fileSize: number;
|
4377
|
+
fileUrl: string;
|
4378
4378
|
}>;
|
4379
4379
|
}, "strip", import("zod").ZodTypeAny, {
|
4380
4380
|
id: string;
|
@@ -4389,13 +4389,13 @@ export declare const apiContract: {
|
|
4389
4389
|
createdAt: Date;
|
4390
4390
|
updatedAt: Date;
|
4391
4391
|
deletedAt: Date | null;
|
4392
|
-
|
4393
|
-
|
4394
|
-
|
4395
|
-
|
4396
|
-
|
4397
|
-
|
4398
|
-
};
|
4392
|
+
extensionName: string;
|
4393
|
+
fileName: string;
|
4394
|
+
fileKey: string;
|
4395
|
+
bucketName: string;
|
4396
|
+
fileSize: number;
|
4397
|
+
fileUrl: string;
|
4398
|
+
};
|
4399
4399
|
roomId: string;
|
4400
4400
|
messageId: string;
|
4401
4401
|
emailEngineAttachmentId: string;
|
@@ -4412,12 +4412,12 @@ export declare const apiContract: {
|
|
4412
4412
|
createdAt: Date;
|
4413
4413
|
updatedAt: Date;
|
4414
4414
|
deletedAt: Date | null;
|
4415
|
-
|
4416
|
-
|
4417
|
-
|
4418
|
-
|
4419
|
-
|
4420
|
-
|
4415
|
+
extensionName: string;
|
4416
|
+
fileName: string;
|
4417
|
+
fileKey: string;
|
4418
|
+
bucketName: string;
|
4419
|
+
fileSize: number;
|
4420
|
+
fileUrl: string;
|
4421
4421
|
};
|
4422
4422
|
roomId: string;
|
4423
4423
|
messageId: string;
|
@@ -4486,12 +4486,12 @@ export declare const apiContract: {
|
|
4486
4486
|
createdAt: Date;
|
4487
4487
|
updatedAt: Date;
|
4488
4488
|
deletedAt: Date | null;
|
4489
|
-
|
4490
|
-
|
4491
|
-
|
4492
|
-
|
4493
|
-
|
4494
|
-
|
4489
|
+
extensionName: string;
|
4490
|
+
fileName: string;
|
4491
|
+
fileKey: string;
|
4492
|
+
bucketName: string;
|
4493
|
+
fileSize: number;
|
4494
|
+
fileUrl: string;
|
4495
4495
|
};
|
4496
4496
|
roomId: string;
|
4497
4497
|
messageId: string;
|
@@ -4560,12 +4560,12 @@ export declare const apiContract: {
|
|
4560
4560
|
createdAt: Date;
|
4561
4561
|
updatedAt: Date;
|
4562
4562
|
deletedAt: Date | null;
|
4563
|
-
|
4564
|
-
|
4565
|
-
|
4566
|
-
|
4567
|
-
|
4568
|
-
|
4563
|
+
extensionName: string;
|
4564
|
+
fileName: string;
|
4565
|
+
fileKey: string;
|
4566
|
+
bucketName: string;
|
4567
|
+
fileSize: number;
|
4568
|
+
fileUrl: string;
|
4569
4569
|
};
|
4570
4570
|
roomId: string;
|
4571
4571
|
messageId: string;
|
@@ -4694,34 +4694,34 @@ export declare const apiContract: {
|
|
4694
4694
|
createdAt: import("zod").ZodDate;
|
4695
4695
|
updatedAt: import("zod").ZodDate;
|
4696
4696
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
4697
|
-
|
4698
|
-
|
4699
|
-
|
4700
|
-
|
4701
|
-
|
4702
|
-
|
4697
|
+
bucketName: import("zod").ZodString;
|
4698
|
+
fileName: import("zod").ZodString;
|
4699
|
+
fileKey: import("zod").ZodString;
|
4700
|
+
fileSize: import("zod").ZodNumber;
|
4701
|
+
fileUrl: import("zod").ZodString;
|
4702
|
+
extensionName: import("zod").ZodString;
|
4703
4703
|
}, "strip", import("zod").ZodTypeAny, {
|
4704
4704
|
id: string;
|
4705
4705
|
createdAt: Date;
|
4706
4706
|
updatedAt: Date;
|
4707
4707
|
deletedAt: Date | null;
|
4708
|
-
|
4709
|
-
|
4710
|
-
|
4711
|
-
|
4712
|
-
|
4713
|
-
|
4708
|
+
extensionName: string;
|
4709
|
+
fileName: string;
|
4710
|
+
fileKey: string;
|
4711
|
+
bucketName: string;
|
4712
|
+
fileSize: number;
|
4713
|
+
fileUrl: string;
|
4714
4714
|
}, {
|
4715
4715
|
id: string;
|
4716
4716
|
createdAt: Date;
|
4717
4717
|
updatedAt: Date;
|
4718
4718
|
deletedAt: Date | null;
|
4719
|
-
|
4720
|
-
|
4721
|
-
|
4722
|
-
|
4723
|
-
|
4724
|
-
|
4719
|
+
extensionName: string;
|
4720
|
+
fileName: string;
|
4721
|
+
fileKey: string;
|
4722
|
+
bucketName: string;
|
4723
|
+
fileSize: number;
|
4724
|
+
fileUrl: string;
|
4725
4725
|
}>;
|
4726
4726
|
}, "strip", import("zod").ZodTypeAny, {
|
4727
4727
|
id: string;
|
@@ -4736,12 +4736,12 @@ export declare const apiContract: {
|
|
4736
4736
|
createdAt: Date;
|
4737
4737
|
updatedAt: Date;
|
4738
4738
|
deletedAt: Date | null;
|
4739
|
-
|
4740
|
-
|
4741
|
-
|
4742
|
-
|
4743
|
-
|
4744
|
-
|
4739
|
+
extensionName: string;
|
4740
|
+
fileName: string;
|
4741
|
+
fileKey: string;
|
4742
|
+
bucketName: string;
|
4743
|
+
fileSize: number;
|
4744
|
+
fileUrl: string;
|
4745
4745
|
};
|
4746
4746
|
roomId: string;
|
4747
4747
|
messageId: string;
|
@@ -4759,12 +4759,12 @@ export declare const apiContract: {
|
|
4759
4759
|
createdAt: Date;
|
4760
4760
|
updatedAt: Date;
|
4761
4761
|
deletedAt: Date | null;
|
4762
|
-
|
4763
|
-
|
4764
|
-
|
4765
|
-
|
4766
|
-
|
4767
|
-
|
4762
|
+
extensionName: string;
|
4763
|
+
fileName: string;
|
4764
|
+
fileKey: string;
|
4765
|
+
bucketName: string;
|
4766
|
+
fileSize: number;
|
4767
|
+
fileUrl: string;
|
4768
4768
|
};
|
4769
4769
|
roomId: string;
|
4770
4770
|
messageId: string;
|
@@ -4833,12 +4833,12 @@ export declare const apiContract: {
|
|
4833
4833
|
createdAt: Date;
|
4834
4834
|
updatedAt: Date;
|
4835
4835
|
deletedAt: Date | null;
|
4836
|
-
|
4837
|
-
|
4838
|
-
|
4839
|
-
|
4840
|
-
|
4841
|
-
|
4836
|
+
extensionName: string;
|
4837
|
+
fileName: string;
|
4838
|
+
fileKey: string;
|
4839
|
+
bucketName: string;
|
4840
|
+
fileSize: number;
|
4841
|
+
fileUrl: string;
|
4842
4842
|
};
|
4843
4843
|
roomId: string;
|
4844
4844
|
messageId: string;
|
@@ -4907,12 +4907,12 @@ export declare const apiContract: {
|
|
4907
4907
|
createdAt: Date;
|
4908
4908
|
updatedAt: Date;
|
4909
4909
|
deletedAt: Date | null;
|
4910
|
-
|
4911
|
-
|
4912
|
-
|
4913
|
-
|
4914
|
-
|
4915
|
-
|
4910
|
+
extensionName: string;
|
4911
|
+
fileName: string;
|
4912
|
+
fileKey: string;
|
4913
|
+
bucketName: string;
|
4914
|
+
fileSize: number;
|
4915
|
+
fileUrl: string;
|
4916
4916
|
};
|
4917
4917
|
roomId: string;
|
4918
4918
|
messageId: string;
|
@@ -4950,7 +4950,7 @@ export declare const apiContract: {
|
|
4950
4950
|
email: import("zod").ZodString;
|
4951
4951
|
address: import("zod").ZodNullable<import("zod").ZodString>;
|
4952
4952
|
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
4953
|
-
|
4953
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
4954
4954
|
}, "strip", import("zod").ZodTypeAny, {
|
4955
4955
|
id: string;
|
4956
4956
|
address: string | null;
|
@@ -4960,7 +4960,7 @@ export declare const apiContract: {
|
|
4960
4960
|
updatedAt: Date;
|
4961
4961
|
deletedAt: Date | null;
|
4962
4962
|
phone: string | null;
|
4963
|
-
|
4963
|
+
notificationCount: number | null;
|
4964
4964
|
}, {
|
4965
4965
|
id: string;
|
4966
4966
|
address: string | null;
|
@@ -4970,7 +4970,7 @@ export declare const apiContract: {
|
|
4970
4970
|
updatedAt: Date;
|
4971
4971
|
deletedAt: Date | null;
|
4972
4972
|
phone: string | null;
|
4973
|
-
|
4973
|
+
notificationCount: number | null;
|
4974
4974
|
}>;
|
4975
4975
|
messages: import("zod").ZodArray<import("zod").ZodObject<{
|
4976
4976
|
id: import("zod").ZodString;
|
@@ -5094,34 +5094,34 @@ export declare const apiContract: {
|
|
5094
5094
|
createdAt: import("zod").ZodDate;
|
5095
5095
|
updatedAt: import("zod").ZodDate;
|
5096
5096
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
5097
|
-
|
5098
|
-
|
5099
|
-
|
5100
|
-
|
5101
|
-
|
5102
|
-
|
5097
|
+
bucketName: import("zod").ZodString;
|
5098
|
+
fileName: import("zod").ZodString;
|
5099
|
+
fileKey: import("zod").ZodString;
|
5100
|
+
fileSize: import("zod").ZodNumber;
|
5101
|
+
fileUrl: import("zod").ZodString;
|
5102
|
+
extensionName: import("zod").ZodString;
|
5103
5103
|
}, "strip", import("zod").ZodTypeAny, {
|
5104
5104
|
id: string;
|
5105
5105
|
createdAt: Date;
|
5106
5106
|
updatedAt: Date;
|
5107
5107
|
deletedAt: Date | null;
|
5108
|
-
|
5109
|
-
|
5110
|
-
|
5111
|
-
|
5112
|
-
|
5113
|
-
|
5108
|
+
extensionName: string;
|
5109
|
+
fileName: string;
|
5110
|
+
fileKey: string;
|
5111
|
+
bucketName: string;
|
5112
|
+
fileSize: number;
|
5113
|
+
fileUrl: string;
|
5114
5114
|
}, {
|
5115
5115
|
id: string;
|
5116
5116
|
createdAt: Date;
|
5117
5117
|
updatedAt: Date;
|
5118
5118
|
deletedAt: Date | null;
|
5119
|
-
|
5120
|
-
|
5121
|
-
|
5122
|
-
|
5123
|
-
|
5124
|
-
|
5119
|
+
extensionName: string;
|
5120
|
+
fileName: string;
|
5121
|
+
fileKey: string;
|
5122
|
+
bucketName: string;
|
5123
|
+
fileSize: number;
|
5124
|
+
fileUrl: string;
|
5125
5125
|
}>;
|
5126
5126
|
}, "strip", import("zod").ZodTypeAny, {
|
5127
5127
|
id: string;
|
@@ -5136,12 +5136,12 @@ export declare const apiContract: {
|
|
5136
5136
|
createdAt: Date;
|
5137
5137
|
updatedAt: Date;
|
5138
5138
|
deletedAt: Date | null;
|
5139
|
-
|
5140
|
-
|
5141
|
-
|
5142
|
-
|
5143
|
-
|
5144
|
-
|
5139
|
+
extensionName: string;
|
5140
|
+
fileName: string;
|
5141
|
+
fileKey: string;
|
5142
|
+
bucketName: string;
|
5143
|
+
fileSize: number;
|
5144
|
+
fileUrl: string;
|
5145
5145
|
};
|
5146
5146
|
roomId: string;
|
5147
5147
|
messageId: string;
|
@@ -5159,12 +5159,12 @@ export declare const apiContract: {
|
|
5159
5159
|
createdAt: Date;
|
5160
5160
|
updatedAt: Date;
|
5161
5161
|
deletedAt: Date | null;
|
5162
|
-
|
5163
|
-
|
5164
|
-
|
5165
|
-
|
5166
|
-
|
5167
|
-
|
5162
|
+
extensionName: string;
|
5163
|
+
fileName: string;
|
5164
|
+
fileKey: string;
|
5165
|
+
bucketName: string;
|
5166
|
+
fileSize: number;
|
5167
|
+
fileUrl: string;
|
5168
5168
|
};
|
5169
5169
|
roomId: string;
|
5170
5170
|
messageId: string;
|
@@ -5233,12 +5233,12 @@ export declare const apiContract: {
|
|
5233
5233
|
createdAt: Date;
|
5234
5234
|
updatedAt: Date;
|
5235
5235
|
deletedAt: Date | null;
|
5236
|
-
|
5237
|
-
|
5238
|
-
|
5239
|
-
|
5240
|
-
|
5241
|
-
|
5236
|
+
extensionName: string;
|
5237
|
+
fileName: string;
|
5238
|
+
fileKey: string;
|
5239
|
+
bucketName: string;
|
5240
|
+
fileSize: number;
|
5241
|
+
fileUrl: string;
|
5242
5242
|
};
|
5243
5243
|
roomId: string;
|
5244
5244
|
messageId: string;
|
@@ -5307,12 +5307,12 @@ export declare const apiContract: {
|
|
5307
5307
|
createdAt: Date;
|
5308
5308
|
updatedAt: Date;
|
5309
5309
|
deletedAt: Date | null;
|
5310
|
-
|
5311
|
-
|
5312
|
-
|
5313
|
-
|
5314
|
-
|
5315
|
-
|
5310
|
+
extensionName: string;
|
5311
|
+
fileName: string;
|
5312
|
+
fileKey: string;
|
5313
|
+
bucketName: string;
|
5314
|
+
fileSize: number;
|
5315
|
+
fileUrl: string;
|
5316
5316
|
};
|
5317
5317
|
roomId: string;
|
5318
5318
|
messageId: string;
|
@@ -5441,34 +5441,34 @@ export declare const apiContract: {
|
|
5441
5441
|
createdAt: import("zod").ZodDate;
|
5442
5442
|
updatedAt: import("zod").ZodDate;
|
5443
5443
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
5444
|
-
|
5445
|
-
|
5446
|
-
|
5447
|
-
|
5448
|
-
|
5449
|
-
|
5444
|
+
bucketName: import("zod").ZodString;
|
5445
|
+
fileName: import("zod").ZodString;
|
5446
|
+
fileKey: import("zod").ZodString;
|
5447
|
+
fileSize: import("zod").ZodNumber;
|
5448
|
+
fileUrl: import("zod").ZodString;
|
5449
|
+
extensionName: import("zod").ZodString;
|
5450
5450
|
}, "strip", import("zod").ZodTypeAny, {
|
5451
5451
|
id: string;
|
5452
5452
|
createdAt: Date;
|
5453
5453
|
updatedAt: Date;
|
5454
5454
|
deletedAt: Date | null;
|
5455
|
-
|
5456
|
-
|
5457
|
-
|
5458
|
-
|
5459
|
-
|
5460
|
-
|
5455
|
+
extensionName: string;
|
5456
|
+
fileName: string;
|
5457
|
+
fileKey: string;
|
5458
|
+
bucketName: string;
|
5459
|
+
fileSize: number;
|
5460
|
+
fileUrl: string;
|
5461
5461
|
}, {
|
5462
5462
|
id: string;
|
5463
5463
|
createdAt: Date;
|
5464
5464
|
updatedAt: Date;
|
5465
5465
|
deletedAt: Date | null;
|
5466
|
-
|
5467
|
-
|
5468
|
-
|
5469
|
-
|
5470
|
-
|
5471
|
-
|
5466
|
+
extensionName: string;
|
5467
|
+
fileName: string;
|
5468
|
+
fileKey: string;
|
5469
|
+
bucketName: string;
|
5470
|
+
fileSize: number;
|
5471
|
+
fileUrl: string;
|
5472
5472
|
}>;
|
5473
5473
|
}, "strip", import("zod").ZodTypeAny, {
|
5474
5474
|
id: string;
|
@@ -5483,12 +5483,12 @@ export declare const apiContract: {
|
|
5483
5483
|
createdAt: Date;
|
5484
5484
|
updatedAt: Date;
|
5485
5485
|
deletedAt: Date | null;
|
5486
|
-
|
5487
|
-
|
5488
|
-
|
5489
|
-
|
5490
|
-
|
5491
|
-
|
5486
|
+
extensionName: string;
|
5487
|
+
fileName: string;
|
5488
|
+
fileKey: string;
|
5489
|
+
bucketName: string;
|
5490
|
+
fileSize: number;
|
5491
|
+
fileUrl: string;
|
5492
5492
|
};
|
5493
5493
|
roomId: string;
|
5494
5494
|
messageId: string;
|
@@ -5506,12 +5506,12 @@ export declare const apiContract: {
|
|
5506
5506
|
createdAt: Date;
|
5507
5507
|
updatedAt: Date;
|
5508
5508
|
deletedAt: Date | null;
|
5509
|
-
|
5510
|
-
|
5511
|
-
|
5512
|
-
|
5513
|
-
|
5514
|
-
|
5509
|
+
extensionName: string;
|
5510
|
+
fileName: string;
|
5511
|
+
fileKey: string;
|
5512
|
+
bucketName: string;
|
5513
|
+
fileSize: number;
|
5514
|
+
fileUrl: string;
|
5515
5515
|
};
|
5516
5516
|
roomId: string;
|
5517
5517
|
messageId: string;
|
@@ -5580,12 +5580,12 @@ export declare const apiContract: {
|
|
5580
5580
|
createdAt: Date;
|
5581
5581
|
updatedAt: Date;
|
5582
5582
|
deletedAt: Date | null;
|
5583
|
-
|
5584
|
-
|
5585
|
-
|
5586
|
-
|
5587
|
-
|
5588
|
-
|
5583
|
+
extensionName: string;
|
5584
|
+
fileName: string;
|
5585
|
+
fileKey: string;
|
5586
|
+
bucketName: string;
|
5587
|
+
fileSize: number;
|
5588
|
+
fileUrl: string;
|
5589
5589
|
};
|
5590
5590
|
roomId: string;
|
5591
5591
|
messageId: string;
|
@@ -5654,12 +5654,12 @@ export declare const apiContract: {
|
|
5654
5654
|
createdAt: Date;
|
5655
5655
|
updatedAt: Date;
|
5656
5656
|
deletedAt: Date | null;
|
5657
|
-
|
5658
|
-
|
5659
|
-
|
5660
|
-
|
5661
|
-
|
5662
|
-
|
5657
|
+
extensionName: string;
|
5658
|
+
fileName: string;
|
5659
|
+
fileKey: string;
|
5660
|
+
bucketName: string;
|
5661
|
+
fileSize: number;
|
5662
|
+
fileUrl: string;
|
5663
5663
|
};
|
5664
5664
|
roomId: string;
|
5665
5665
|
messageId: string;
|
@@ -5682,7 +5682,7 @@ export declare const apiContract: {
|
|
5682
5682
|
email: import("zod").ZodString;
|
5683
5683
|
address: import("zod").ZodNullable<import("zod").ZodString>;
|
5684
5684
|
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
5685
|
-
|
5685
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
5686
5686
|
}, "strip", import("zod").ZodTypeAny, {
|
5687
5687
|
id: string;
|
5688
5688
|
address: string | null;
|
@@ -5692,7 +5692,7 @@ export declare const apiContract: {
|
|
5692
5692
|
updatedAt: Date;
|
5693
5693
|
deletedAt: Date | null;
|
5694
5694
|
phone: string | null;
|
5695
|
-
|
5695
|
+
notificationCount: number | null;
|
5696
5696
|
}, {
|
5697
5697
|
id: string;
|
5698
5698
|
address: string | null;
|
@@ -5702,7 +5702,7 @@ export declare const apiContract: {
|
|
5702
5702
|
updatedAt: Date;
|
5703
5703
|
deletedAt: Date | null;
|
5704
5704
|
phone: string | null;
|
5705
|
-
|
5705
|
+
notificationCount: number | null;
|
5706
5706
|
}>;
|
5707
5707
|
}, "strip", import("zod").ZodTypeAny, {
|
5708
5708
|
id: string;
|
@@ -5719,7 +5719,7 @@ export declare const apiContract: {
|
|
5719
5719
|
updatedAt: Date;
|
5720
5720
|
deletedAt: Date | null;
|
5721
5721
|
phone: string | null;
|
5722
|
-
|
5722
|
+
notificationCount: number | null;
|
5723
5723
|
};
|
5724
5724
|
roomId: string;
|
5725
5725
|
actorId: string;
|
@@ -5738,7 +5738,7 @@ export declare const apiContract: {
|
|
5738
5738
|
updatedAt: Date;
|
5739
5739
|
deletedAt: Date | null;
|
5740
5740
|
phone: string | null;
|
5741
|
-
|
5741
|
+
notificationCount: number | null;
|
5742
5742
|
};
|
5743
5743
|
roomId: string;
|
5744
5744
|
actorId: string;
|
@@ -5759,12 +5759,12 @@ export declare const apiContract: {
|
|
5759
5759
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
5760
5760
|
name: import("zod").ZodString;
|
5761
5761
|
smtpHost: import("zod").ZodString;
|
5762
|
-
smtpPort: import("zod").
|
5763
|
-
smtpTlsPort: import("zod").
|
5762
|
+
smtpPort: import("zod").ZodNumber;
|
5763
|
+
smtpTlsPort: import("zod").ZodNumber;
|
5764
5764
|
useTlsForSmtp: import("zod").ZodBoolean;
|
5765
5765
|
imapHost: import("zod").ZodString;
|
5766
|
-
imapPort: import("zod").
|
5767
|
-
imapTlsPort: import("zod").
|
5766
|
+
imapPort: import("zod").ZodNumber;
|
5767
|
+
imapTlsPort: import("zod").ZodNumber;
|
5768
5768
|
useTlsForImap: import("zod").ZodBoolean;
|
5769
5769
|
}, "strip", import("zod").ZodTypeAny, {
|
5770
5770
|
id: string;
|
@@ -5773,12 +5773,12 @@ export declare const apiContract: {
|
|
5773
5773
|
updatedAt: Date;
|
5774
5774
|
deletedAt: Date | null;
|
5775
5775
|
smtpHost: string;
|
5776
|
-
smtpPort:
|
5777
|
-
smtpTlsPort:
|
5776
|
+
smtpPort: number;
|
5777
|
+
smtpTlsPort: number;
|
5778
5778
|
useTlsForSmtp: boolean;
|
5779
5779
|
imapHost: string;
|
5780
|
-
imapPort:
|
5781
|
-
imapTlsPort:
|
5780
|
+
imapPort: number;
|
5781
|
+
imapTlsPort: number;
|
5782
5782
|
useTlsForImap: boolean;
|
5783
5783
|
}, {
|
5784
5784
|
id: string;
|
@@ -5787,12 +5787,12 @@ export declare const apiContract: {
|
|
5787
5787
|
updatedAt: Date;
|
5788
5788
|
deletedAt: Date | null;
|
5789
5789
|
smtpHost: string;
|
5790
|
-
smtpPort:
|
5791
|
-
smtpTlsPort:
|
5790
|
+
smtpPort: number;
|
5791
|
+
smtpTlsPort: number;
|
5792
5792
|
useTlsForSmtp: boolean;
|
5793
5793
|
imapHost: string;
|
5794
|
-
imapPort:
|
5795
|
-
imapTlsPort:
|
5794
|
+
imapPort: number;
|
5795
|
+
imapTlsPort: number;
|
5796
5796
|
useTlsForImap: boolean;
|
5797
5797
|
}>;
|
5798
5798
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -5813,12 +5813,12 @@ export declare const apiContract: {
|
|
5813
5813
|
updatedAt: Date;
|
5814
5814
|
deletedAt: Date | null;
|
5815
5815
|
smtpHost: string;
|
5816
|
-
smtpPort:
|
5817
|
-
smtpTlsPort:
|
5816
|
+
smtpPort: number;
|
5817
|
+
smtpTlsPort: number;
|
5818
5818
|
useTlsForSmtp: boolean;
|
5819
5819
|
imapHost: string;
|
5820
|
-
imapPort:
|
5821
|
-
imapTlsPort:
|
5820
|
+
imapPort: number;
|
5821
|
+
imapTlsPort: number;
|
5822
5822
|
useTlsForImap: boolean;
|
5823
5823
|
};
|
5824
5824
|
}, {
|
@@ -5838,12 +5838,12 @@ export declare const apiContract: {
|
|
5838
5838
|
updatedAt: Date;
|
5839
5839
|
deletedAt: Date | null;
|
5840
5840
|
smtpHost: string;
|
5841
|
-
smtpPort:
|
5842
|
-
smtpTlsPort:
|
5841
|
+
smtpPort: number;
|
5842
|
+
smtpTlsPort: number;
|
5843
5843
|
useTlsForSmtp: boolean;
|
5844
5844
|
imapHost: string;
|
5845
|
-
imapPort:
|
5846
|
-
imapTlsPort:
|
5845
|
+
imapPort: number;
|
5846
|
+
imapTlsPort: number;
|
5847
5847
|
useTlsForImap: boolean;
|
5848
5848
|
};
|
5849
5849
|
}>;
|
@@ -5926,12 +5926,12 @@ export declare const apiContract: {
|
|
5926
5926
|
createdAt: Date;
|
5927
5927
|
updatedAt: Date;
|
5928
5928
|
deletedAt: Date | null;
|
5929
|
-
|
5930
|
-
|
5931
|
-
|
5932
|
-
|
5933
|
-
|
5934
|
-
|
5929
|
+
extensionName: string;
|
5930
|
+
fileName: string;
|
5931
|
+
fileKey: string;
|
5932
|
+
bucketName: string;
|
5933
|
+
fileSize: number;
|
5934
|
+
fileUrl: string;
|
5935
5935
|
};
|
5936
5936
|
roomId: string;
|
5937
5937
|
messageId: string;
|
@@ -5947,7 +5947,7 @@ export declare const apiContract: {
|
|
5947
5947
|
updatedAt: Date;
|
5948
5948
|
deletedAt: Date | null;
|
5949
5949
|
phone: string | null;
|
5950
|
-
|
5950
|
+
notificationCount: number | null;
|
5951
5951
|
};
|
5952
5952
|
resolved: boolean;
|
5953
5953
|
assigneeId: string | null;
|
@@ -6050,12 +6050,12 @@ export declare const apiContract: {
|
|
6050
6050
|
createdAt: Date;
|
6051
6051
|
updatedAt: Date;
|
6052
6052
|
deletedAt: Date | null;
|
6053
|
-
|
6054
|
-
|
6055
|
-
|
6056
|
-
|
6057
|
-
|
6058
|
-
|
6053
|
+
extensionName: string;
|
6054
|
+
fileName: string;
|
6055
|
+
fileKey: string;
|
6056
|
+
bucketName: string;
|
6057
|
+
fileSize: number;
|
6058
|
+
fileUrl: string;
|
6059
6059
|
};
|
6060
6060
|
roomId: string;
|
6061
6061
|
messageId: string;
|
@@ -6125,12 +6125,12 @@ export declare const apiContract: {
|
|
6125
6125
|
createdAt: Date;
|
6126
6126
|
updatedAt: Date;
|
6127
6127
|
deletedAt: Date | null;
|
6128
|
-
|
6129
|
-
|
6130
|
-
|
6131
|
-
|
6132
|
-
|
6133
|
-
|
6128
|
+
extensionName: string;
|
6129
|
+
fileName: string;
|
6130
|
+
fileKey: string;
|
6131
|
+
bucketName: string;
|
6132
|
+
fileSize: number;
|
6133
|
+
fileUrl: string;
|
6134
6134
|
};
|
6135
6135
|
roomId: string;
|
6136
6136
|
messageId: string;
|
@@ -6200,12 +6200,12 @@ export declare const apiContract: {
|
|
6200
6200
|
createdAt: Date;
|
6201
6201
|
updatedAt: Date;
|
6202
6202
|
deletedAt: Date | null;
|
6203
|
-
|
6204
|
-
|
6205
|
-
|
6206
|
-
|
6207
|
-
|
6208
|
-
|
6203
|
+
extensionName: string;
|
6204
|
+
fileName: string;
|
6205
|
+
fileKey: string;
|
6206
|
+
bucketName: string;
|
6207
|
+
fileSize: number;
|
6208
|
+
fileUrl: string;
|
6209
6209
|
};
|
6210
6210
|
roomId: string;
|
6211
6211
|
messageId: string;
|
@@ -6226,7 +6226,7 @@ export declare const apiContract: {
|
|
6226
6226
|
updatedAt: Date;
|
6227
6227
|
deletedAt: Date | null;
|
6228
6228
|
phone: string | null;
|
6229
|
-
|
6229
|
+
notificationCount: number | null;
|
6230
6230
|
};
|
6231
6231
|
roomId: string;
|
6232
6232
|
actorId: string;
|
@@ -6248,12 +6248,12 @@ export declare const apiContract: {
|
|
6248
6248
|
updatedAt: Date;
|
6249
6249
|
deletedAt: Date | null;
|
6250
6250
|
smtpHost: string;
|
6251
|
-
smtpPort:
|
6252
|
-
smtpTlsPort:
|
6251
|
+
smtpPort: number;
|
6252
|
+
smtpTlsPort: number;
|
6253
6253
|
useTlsForSmtp: boolean;
|
6254
6254
|
imapHost: string;
|
6255
|
-
imapPort:
|
6256
|
-
imapTlsPort:
|
6255
|
+
imapPort: number;
|
6256
|
+
imapTlsPort: number;
|
6257
6257
|
useTlsForImap: boolean;
|
6258
6258
|
};
|
6259
6259
|
};
|
@@ -6336,12 +6336,12 @@ export declare const apiContract: {
|
|
6336
6336
|
createdAt: Date;
|
6337
6337
|
updatedAt: Date;
|
6338
6338
|
deletedAt: Date | null;
|
6339
|
-
|
6340
|
-
|
6341
|
-
|
6342
|
-
|
6343
|
-
|
6344
|
-
|
6339
|
+
extensionName: string;
|
6340
|
+
fileName: string;
|
6341
|
+
fileKey: string;
|
6342
|
+
bucketName: string;
|
6343
|
+
fileSize: number;
|
6344
|
+
fileUrl: string;
|
6345
6345
|
};
|
6346
6346
|
roomId: string;
|
6347
6347
|
messageId: string;
|
@@ -6357,7 +6357,7 @@ export declare const apiContract: {
|
|
6357
6357
|
updatedAt: Date;
|
6358
6358
|
deletedAt: Date | null;
|
6359
6359
|
phone: string | null;
|
6360
|
-
|
6360
|
+
notificationCount: number | null;
|
6361
6361
|
};
|
6362
6362
|
resolved: boolean;
|
6363
6363
|
assigneeId: string | null;
|
@@ -6460,12 +6460,12 @@ export declare const apiContract: {
|
|
6460
6460
|
createdAt: Date;
|
6461
6461
|
updatedAt: Date;
|
6462
6462
|
deletedAt: Date | null;
|
6463
|
-
|
6464
|
-
|
6465
|
-
|
6466
|
-
|
6467
|
-
|
6468
|
-
|
6463
|
+
extensionName: string;
|
6464
|
+
fileName: string;
|
6465
|
+
fileKey: string;
|
6466
|
+
bucketName: string;
|
6467
|
+
fileSize: number;
|
6468
|
+
fileUrl: string;
|
6469
6469
|
};
|
6470
6470
|
roomId: string;
|
6471
6471
|
messageId: string;
|
@@ -6535,12 +6535,12 @@ export declare const apiContract: {
|
|
6535
6535
|
createdAt: Date;
|
6536
6536
|
updatedAt: Date;
|
6537
6537
|
deletedAt: Date | null;
|
6538
|
-
|
6539
|
-
|
6540
|
-
|
6541
|
-
|
6542
|
-
|
6543
|
-
|
6538
|
+
extensionName: string;
|
6539
|
+
fileName: string;
|
6540
|
+
fileKey: string;
|
6541
|
+
bucketName: string;
|
6542
|
+
fileSize: number;
|
6543
|
+
fileUrl: string;
|
6544
6544
|
};
|
6545
6545
|
roomId: string;
|
6546
6546
|
messageId: string;
|
@@ -6610,12 +6610,12 @@ export declare const apiContract: {
|
|
6610
6610
|
createdAt: Date;
|
6611
6611
|
updatedAt: Date;
|
6612
6612
|
deletedAt: Date | null;
|
6613
|
-
|
6614
|
-
|
6615
|
-
|
6616
|
-
|
6617
|
-
|
6618
|
-
|
6613
|
+
extensionName: string;
|
6614
|
+
fileName: string;
|
6615
|
+
fileKey: string;
|
6616
|
+
bucketName: string;
|
6617
|
+
fileSize: number;
|
6618
|
+
fileUrl: string;
|
6619
6619
|
};
|
6620
6620
|
roomId: string;
|
6621
6621
|
messageId: string;
|
@@ -6636,7 +6636,7 @@ export declare const apiContract: {
|
|
6636
6636
|
updatedAt: Date;
|
6637
6637
|
deletedAt: Date | null;
|
6638
6638
|
phone: string | null;
|
6639
|
-
|
6639
|
+
notificationCount: number | null;
|
6640
6640
|
};
|
6641
6641
|
roomId: string;
|
6642
6642
|
actorId: string;
|
@@ -6658,12 +6658,12 @@ export declare const apiContract: {
|
|
6658
6658
|
updatedAt: Date;
|
6659
6659
|
deletedAt: Date | null;
|
6660
6660
|
smtpHost: string;
|
6661
|
-
smtpPort:
|
6662
|
-
smtpTlsPort:
|
6661
|
+
smtpPort: number;
|
6662
|
+
smtpTlsPort: number;
|
6663
6663
|
useTlsForSmtp: boolean;
|
6664
6664
|
imapHost: string;
|
6665
|
-
imapPort:
|
6666
|
-
imapTlsPort:
|
6665
|
+
imapPort: number;
|
6666
|
+
imapTlsPort: number;
|
6667
6667
|
useTlsForImap: boolean;
|
6668
6668
|
};
|
6669
6669
|
};
|
@@ -6748,12 +6748,12 @@ export declare const apiContract: {
|
|
6748
6748
|
createdAt: Date;
|
6749
6749
|
updatedAt: Date;
|
6750
6750
|
deletedAt: Date | null;
|
6751
|
-
|
6752
|
-
|
6753
|
-
|
6754
|
-
|
6755
|
-
|
6756
|
-
|
6751
|
+
extensionName: string;
|
6752
|
+
fileName: string;
|
6753
|
+
fileKey: string;
|
6754
|
+
bucketName: string;
|
6755
|
+
fileSize: number;
|
6756
|
+
fileUrl: string;
|
6757
6757
|
};
|
6758
6758
|
roomId: string;
|
6759
6759
|
messageId: string;
|
@@ -6769,7 +6769,7 @@ export declare const apiContract: {
|
|
6769
6769
|
updatedAt: Date;
|
6770
6770
|
deletedAt: Date | null;
|
6771
6771
|
phone: string | null;
|
6772
|
-
|
6772
|
+
notificationCount: number | null;
|
6773
6773
|
};
|
6774
6774
|
resolved: boolean;
|
6775
6775
|
assigneeId: string | null;
|
@@ -6872,12 +6872,12 @@ export declare const apiContract: {
|
|
6872
6872
|
createdAt: Date;
|
6873
6873
|
updatedAt: Date;
|
6874
6874
|
deletedAt: Date | null;
|
6875
|
-
|
6876
|
-
|
6877
|
-
|
6878
|
-
|
6879
|
-
|
6880
|
-
|
6875
|
+
extensionName: string;
|
6876
|
+
fileName: string;
|
6877
|
+
fileKey: string;
|
6878
|
+
bucketName: string;
|
6879
|
+
fileSize: number;
|
6880
|
+
fileUrl: string;
|
6881
6881
|
};
|
6882
6882
|
roomId: string;
|
6883
6883
|
messageId: string;
|
@@ -6947,12 +6947,12 @@ export declare const apiContract: {
|
|
6947
6947
|
createdAt: Date;
|
6948
6948
|
updatedAt: Date;
|
6949
6949
|
deletedAt: Date | null;
|
6950
|
-
|
6951
|
-
|
6952
|
-
|
6953
|
-
|
6954
|
-
|
6955
|
-
|
6950
|
+
extensionName: string;
|
6951
|
+
fileName: string;
|
6952
|
+
fileKey: string;
|
6953
|
+
bucketName: string;
|
6954
|
+
fileSize: number;
|
6955
|
+
fileUrl: string;
|
6956
6956
|
};
|
6957
6957
|
roomId: string;
|
6958
6958
|
messageId: string;
|
@@ -7022,12 +7022,12 @@ export declare const apiContract: {
|
|
7022
7022
|
createdAt: Date;
|
7023
7023
|
updatedAt: Date;
|
7024
7024
|
deletedAt: Date | null;
|
7025
|
-
|
7026
|
-
|
7027
|
-
|
7028
|
-
|
7029
|
-
|
7030
|
-
|
7025
|
+
extensionName: string;
|
7026
|
+
fileName: string;
|
7027
|
+
fileKey: string;
|
7028
|
+
bucketName: string;
|
7029
|
+
fileSize: number;
|
7030
|
+
fileUrl: string;
|
7031
7031
|
};
|
7032
7032
|
roomId: string;
|
7033
7033
|
messageId: string;
|
@@ -7048,7 +7048,7 @@ export declare const apiContract: {
|
|
7048
7048
|
updatedAt: Date;
|
7049
7049
|
deletedAt: Date | null;
|
7050
7050
|
phone: string | null;
|
7051
|
-
|
7051
|
+
notificationCount: number | null;
|
7052
7052
|
};
|
7053
7053
|
roomId: string;
|
7054
7054
|
actorId: string;
|
@@ -7070,12 +7070,12 @@ export declare const apiContract: {
|
|
7070
7070
|
updatedAt: Date;
|
7071
7071
|
deletedAt: Date | null;
|
7072
7072
|
smtpHost: string;
|
7073
|
-
smtpPort:
|
7074
|
-
smtpTlsPort:
|
7073
|
+
smtpPort: number;
|
7074
|
+
smtpTlsPort: number;
|
7075
7075
|
useTlsForSmtp: boolean;
|
7076
7076
|
imapHost: string;
|
7077
|
-
imapPort:
|
7078
|
-
imapTlsPort:
|
7077
|
+
imapPort: number;
|
7078
|
+
imapTlsPort: number;
|
7079
7079
|
useTlsForImap: boolean;
|
7080
7080
|
};
|
7081
7081
|
};
|
@@ -7161,12 +7161,12 @@ export declare const apiContract: {
|
|
7161
7161
|
createdAt: Date;
|
7162
7162
|
updatedAt: Date;
|
7163
7163
|
deletedAt: Date | null;
|
7164
|
-
|
7165
|
-
|
7166
|
-
|
7167
|
-
|
7168
|
-
|
7169
|
-
|
7164
|
+
extensionName: string;
|
7165
|
+
fileName: string;
|
7166
|
+
fileKey: string;
|
7167
|
+
bucketName: string;
|
7168
|
+
fileSize: number;
|
7169
|
+
fileUrl: string;
|
7170
7170
|
};
|
7171
7171
|
roomId: string;
|
7172
7172
|
messageId: string;
|
@@ -7182,7 +7182,7 @@ export declare const apiContract: {
|
|
7182
7182
|
updatedAt: Date;
|
7183
7183
|
deletedAt: Date | null;
|
7184
7184
|
phone: string | null;
|
7185
|
-
|
7185
|
+
notificationCount: number | null;
|
7186
7186
|
};
|
7187
7187
|
resolved: boolean;
|
7188
7188
|
assigneeId: string | null;
|
@@ -7285,12 +7285,12 @@ export declare const apiContract: {
|
|
7285
7285
|
createdAt: Date;
|
7286
7286
|
updatedAt: Date;
|
7287
7287
|
deletedAt: Date | null;
|
7288
|
-
|
7289
|
-
|
7290
|
-
|
7291
|
-
|
7292
|
-
|
7293
|
-
|
7288
|
+
extensionName: string;
|
7289
|
+
fileName: string;
|
7290
|
+
fileKey: string;
|
7291
|
+
bucketName: string;
|
7292
|
+
fileSize: number;
|
7293
|
+
fileUrl: string;
|
7294
7294
|
};
|
7295
7295
|
roomId: string;
|
7296
7296
|
messageId: string;
|
@@ -7360,12 +7360,12 @@ export declare const apiContract: {
|
|
7360
7360
|
createdAt: Date;
|
7361
7361
|
updatedAt: Date;
|
7362
7362
|
deletedAt: Date | null;
|
7363
|
-
|
7364
|
-
|
7365
|
-
|
7366
|
-
|
7367
|
-
|
7368
|
-
|
7363
|
+
extensionName: string;
|
7364
|
+
fileName: string;
|
7365
|
+
fileKey: string;
|
7366
|
+
bucketName: string;
|
7367
|
+
fileSize: number;
|
7368
|
+
fileUrl: string;
|
7369
7369
|
};
|
7370
7370
|
roomId: string;
|
7371
7371
|
messageId: string;
|
@@ -7435,12 +7435,12 @@ export declare const apiContract: {
|
|
7435
7435
|
createdAt: Date;
|
7436
7436
|
updatedAt: Date;
|
7437
7437
|
deletedAt: Date | null;
|
7438
|
-
|
7439
|
-
|
7440
|
-
|
7441
|
-
|
7442
|
-
|
7443
|
-
|
7438
|
+
extensionName: string;
|
7439
|
+
fileName: string;
|
7440
|
+
fileKey: string;
|
7441
|
+
bucketName: string;
|
7442
|
+
fileSize: number;
|
7443
|
+
fileUrl: string;
|
7444
7444
|
};
|
7445
7445
|
roomId: string;
|
7446
7446
|
messageId: string;
|
@@ -7461,7 +7461,7 @@ export declare const apiContract: {
|
|
7461
7461
|
updatedAt: Date;
|
7462
7462
|
deletedAt: Date | null;
|
7463
7463
|
phone: string | null;
|
7464
|
-
|
7464
|
+
notificationCount: number | null;
|
7465
7465
|
};
|
7466
7466
|
roomId: string;
|
7467
7467
|
actorId: string;
|
@@ -7483,12 +7483,12 @@ export declare const apiContract: {
|
|
7483
7483
|
updatedAt: Date;
|
7484
7484
|
deletedAt: Date | null;
|
7485
7485
|
smtpHost: string;
|
7486
|
-
smtpPort:
|
7487
|
-
smtpTlsPort:
|
7486
|
+
smtpPort: number;
|
7487
|
+
smtpTlsPort: number;
|
7488
7488
|
useTlsForSmtp: boolean;
|
7489
7489
|
imapHost: string;
|
7490
|
-
imapPort:
|
7491
|
-
imapTlsPort:
|
7490
|
+
imapPort: number;
|
7491
|
+
imapTlsPort: number;
|
7492
7492
|
useTlsForImap: boolean;
|
7493
7493
|
};
|
7494
7494
|
};
|
@@ -7766,18 +7766,21 @@ export declare const apiContract: {
|
|
7766
7766
|
note: import("zod").ZodOptional<import("zod").ZodString>;
|
7767
7767
|
tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
7768
7768
|
handover: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodLiteral<"true">, import("zod").ZodLiteral<"false">]>, boolean, "false" | "true">]>>>;
|
7769
|
+
selfAssign: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodLiteral<"true">, import("zod").ZodLiteral<"false">]>, boolean, "false" | "true">]>>>;
|
7769
7770
|
}, "strip", import("zod").ZodTypeAny, {
|
7770
7771
|
resolved?: boolean | null | undefined;
|
7771
7772
|
assigneeId?: string | null | undefined;
|
7772
7773
|
note?: string | undefined;
|
7773
7774
|
tags?: string[] | undefined;
|
7774
7775
|
handover?: boolean | null | undefined;
|
7776
|
+
selfAssign?: boolean | null | undefined;
|
7775
7777
|
}, {
|
7776
7778
|
resolved?: boolean | "false" | "true" | null | undefined;
|
7777
7779
|
assigneeId?: string | null | undefined;
|
7778
7780
|
note?: string | undefined;
|
7779
7781
|
tags?: string[] | undefined;
|
7780
7782
|
handover?: boolean | "false" | "true" | null | undefined;
|
7783
|
+
selfAssign?: boolean | "false" | "true" | null | undefined;
|
7781
7784
|
}>;
|
7782
7785
|
summary: "Update a mail room by id";
|
7783
7786
|
method: "PATCH";
|
@@ -8044,34 +8047,34 @@ export declare const apiContract: {
|
|
8044
8047
|
createdAt: import("zod").ZodDate;
|
8045
8048
|
updatedAt: import("zod").ZodDate;
|
8046
8049
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
8047
|
-
|
8048
|
-
|
8049
|
-
|
8050
|
-
|
8051
|
-
|
8052
|
-
|
8050
|
+
bucketName: import("zod").ZodString;
|
8051
|
+
fileName: import("zod").ZodString;
|
8052
|
+
fileKey: import("zod").ZodString;
|
8053
|
+
fileSize: import("zod").ZodNumber;
|
8054
|
+
fileUrl: import("zod").ZodString;
|
8055
|
+
extensionName: import("zod").ZodString;
|
8053
8056
|
}, "strip", import("zod").ZodTypeAny, {
|
8054
8057
|
id: string;
|
8055
8058
|
createdAt: Date;
|
8056
8059
|
updatedAt: Date;
|
8057
8060
|
deletedAt: Date | null;
|
8058
|
-
|
8059
|
-
|
8060
|
-
|
8061
|
-
|
8062
|
-
|
8063
|
-
|
8061
|
+
extensionName: string;
|
8062
|
+
fileName: string;
|
8063
|
+
fileKey: string;
|
8064
|
+
bucketName: string;
|
8065
|
+
fileSize: number;
|
8066
|
+
fileUrl: string;
|
8064
8067
|
}, {
|
8065
8068
|
id: string;
|
8066
8069
|
createdAt: Date;
|
8067
8070
|
updatedAt: Date;
|
8068
8071
|
deletedAt: Date | null;
|
8069
|
-
|
8070
|
-
|
8071
|
-
|
8072
|
-
|
8073
|
-
|
8074
|
-
|
8072
|
+
extensionName: string;
|
8073
|
+
fileName: string;
|
8074
|
+
fileKey: string;
|
8075
|
+
bucketName: string;
|
8076
|
+
fileSize: number;
|
8077
|
+
fileUrl: string;
|
8075
8078
|
}>;
|
8076
8079
|
}, "strip", import("zod").ZodTypeAny, {
|
8077
8080
|
id: string;
|
@@ -8086,12 +8089,12 @@ export declare const apiContract: {
|
|
8086
8089
|
createdAt: Date;
|
8087
8090
|
updatedAt: Date;
|
8088
8091
|
deletedAt: Date | null;
|
8089
|
-
|
8090
|
-
|
8091
|
-
|
8092
|
-
|
8093
|
-
|
8094
|
-
|
8092
|
+
extensionName: string;
|
8093
|
+
fileName: string;
|
8094
|
+
fileKey: string;
|
8095
|
+
bucketName: string;
|
8096
|
+
fileSize: number;
|
8097
|
+
fileUrl: string;
|
8095
8098
|
};
|
8096
8099
|
roomId: string;
|
8097
8100
|
messageId: string;
|
@@ -8109,12 +8112,12 @@ export declare const apiContract: {
|
|
8109
8112
|
createdAt: Date;
|
8110
8113
|
updatedAt: Date;
|
8111
8114
|
deletedAt: Date | null;
|
8112
|
-
|
8113
|
-
|
8114
|
-
|
8115
|
-
|
8116
|
-
|
8117
|
-
|
8115
|
+
extensionName: string;
|
8116
|
+
fileName: string;
|
8117
|
+
fileKey: string;
|
8118
|
+
bucketName: string;
|
8119
|
+
fileSize: number;
|
8120
|
+
fileUrl: string;
|
8118
8121
|
};
|
8119
8122
|
roomId: string;
|
8120
8123
|
messageId: string;
|
@@ -8183,12 +8186,12 @@ export declare const apiContract: {
|
|
8183
8186
|
createdAt: Date;
|
8184
8187
|
updatedAt: Date;
|
8185
8188
|
deletedAt: Date | null;
|
8186
|
-
|
8187
|
-
|
8188
|
-
|
8189
|
-
|
8190
|
-
|
8191
|
-
|
8189
|
+
extensionName: string;
|
8190
|
+
fileName: string;
|
8191
|
+
fileKey: string;
|
8192
|
+
bucketName: string;
|
8193
|
+
fileSize: number;
|
8194
|
+
fileUrl: string;
|
8192
8195
|
};
|
8193
8196
|
roomId: string;
|
8194
8197
|
messageId: string;
|
@@ -8257,16 +8260,16 @@ export declare const apiContract: {
|
|
8257
8260
|
createdAt: Date;
|
8258
8261
|
updatedAt: Date;
|
8259
8262
|
deletedAt: Date | null;
|
8260
|
-
|
8261
|
-
|
8262
|
-
|
8263
|
-
|
8264
|
-
|
8265
|
-
|
8266
|
-
};
|
8267
|
-
roomId: string;
|
8268
|
-
messageId: string;
|
8269
|
-
emailEngineAttachmentId: string;
|
8263
|
+
extensionName: string;
|
8264
|
+
fileName: string;
|
8265
|
+
fileKey: string;
|
8266
|
+
bucketName: string;
|
8267
|
+
fileSize: number;
|
8268
|
+
fileUrl: string;
|
8269
|
+
};
|
8270
|
+
roomId: string;
|
8271
|
+
messageId: string;
|
8272
|
+
emailEngineAttachmentId: string;
|
8270
8273
|
}[];
|
8271
8274
|
}>;
|
8272
8275
|
lastMessage: import("zod").ZodObject<{
|
@@ -8391,34 +8394,34 @@ export declare const apiContract: {
|
|
8391
8394
|
createdAt: import("zod").ZodDate;
|
8392
8395
|
updatedAt: import("zod").ZodDate;
|
8393
8396
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
8394
|
-
|
8395
|
-
|
8396
|
-
|
8397
|
-
|
8398
|
-
|
8399
|
-
|
8397
|
+
bucketName: import("zod").ZodString;
|
8398
|
+
fileName: import("zod").ZodString;
|
8399
|
+
fileKey: import("zod").ZodString;
|
8400
|
+
fileSize: import("zod").ZodNumber;
|
8401
|
+
fileUrl: import("zod").ZodString;
|
8402
|
+
extensionName: import("zod").ZodString;
|
8400
8403
|
}, "strip", import("zod").ZodTypeAny, {
|
8401
8404
|
id: string;
|
8402
8405
|
createdAt: Date;
|
8403
8406
|
updatedAt: Date;
|
8404
8407
|
deletedAt: Date | null;
|
8405
|
-
|
8406
|
-
|
8407
|
-
|
8408
|
-
|
8409
|
-
|
8410
|
-
|
8408
|
+
extensionName: string;
|
8409
|
+
fileName: string;
|
8410
|
+
fileKey: string;
|
8411
|
+
bucketName: string;
|
8412
|
+
fileSize: number;
|
8413
|
+
fileUrl: string;
|
8411
8414
|
}, {
|
8412
8415
|
id: string;
|
8413
8416
|
createdAt: Date;
|
8414
8417
|
updatedAt: Date;
|
8415
8418
|
deletedAt: Date | null;
|
8416
|
-
|
8417
|
-
|
8418
|
-
|
8419
|
-
|
8420
|
-
|
8421
|
-
|
8419
|
+
extensionName: string;
|
8420
|
+
fileName: string;
|
8421
|
+
fileKey: string;
|
8422
|
+
bucketName: string;
|
8423
|
+
fileSize: number;
|
8424
|
+
fileUrl: string;
|
8422
8425
|
}>;
|
8423
8426
|
}, "strip", import("zod").ZodTypeAny, {
|
8424
8427
|
id: string;
|
@@ -8433,12 +8436,12 @@ export declare const apiContract: {
|
|
8433
8436
|
createdAt: Date;
|
8434
8437
|
updatedAt: Date;
|
8435
8438
|
deletedAt: Date | null;
|
8436
|
-
|
8437
|
-
|
8438
|
-
|
8439
|
-
|
8440
|
-
|
8441
|
-
|
8439
|
+
extensionName: string;
|
8440
|
+
fileName: string;
|
8441
|
+
fileKey: string;
|
8442
|
+
bucketName: string;
|
8443
|
+
fileSize: number;
|
8444
|
+
fileUrl: string;
|
8442
8445
|
};
|
8443
8446
|
roomId: string;
|
8444
8447
|
messageId: string;
|
@@ -8456,12 +8459,12 @@ export declare const apiContract: {
|
|
8456
8459
|
createdAt: Date;
|
8457
8460
|
updatedAt: Date;
|
8458
8461
|
deletedAt: Date | null;
|
8459
|
-
|
8460
|
-
|
8461
|
-
|
8462
|
-
|
8463
|
-
|
8464
|
-
|
8462
|
+
extensionName: string;
|
8463
|
+
fileName: string;
|
8464
|
+
fileKey: string;
|
8465
|
+
bucketName: string;
|
8466
|
+
fileSize: number;
|
8467
|
+
fileUrl: string;
|
8465
8468
|
};
|
8466
8469
|
roomId: string;
|
8467
8470
|
messageId: string;
|
@@ -8530,12 +8533,12 @@ export declare const apiContract: {
|
|
8530
8533
|
createdAt: Date;
|
8531
8534
|
updatedAt: Date;
|
8532
8535
|
deletedAt: Date | null;
|
8533
|
-
|
8534
|
-
|
8535
|
-
|
8536
|
-
|
8537
|
-
|
8538
|
-
|
8536
|
+
extensionName: string;
|
8537
|
+
fileName: string;
|
8538
|
+
fileKey: string;
|
8539
|
+
bucketName: string;
|
8540
|
+
fileSize: number;
|
8541
|
+
fileUrl: string;
|
8539
8542
|
};
|
8540
8543
|
roomId: string;
|
8541
8544
|
messageId: string;
|
@@ -8604,12 +8607,12 @@ export declare const apiContract: {
|
|
8604
8607
|
createdAt: Date;
|
8605
8608
|
updatedAt: Date;
|
8606
8609
|
deletedAt: Date | null;
|
8607
|
-
|
8608
|
-
|
8609
|
-
|
8610
|
-
|
8611
|
-
|
8612
|
-
|
8610
|
+
extensionName: string;
|
8611
|
+
fileName: string;
|
8612
|
+
fileKey: string;
|
8613
|
+
bucketName: string;
|
8614
|
+
fileSize: number;
|
8615
|
+
fileUrl: string;
|
8613
8616
|
};
|
8614
8617
|
roomId: string;
|
8615
8618
|
messageId: string;
|
@@ -8647,7 +8650,7 @@ export declare const apiContract: {
|
|
8647
8650
|
email: import("zod").ZodString;
|
8648
8651
|
address: import("zod").ZodNullable<import("zod").ZodString>;
|
8649
8652
|
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
8650
|
-
|
8653
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
8651
8654
|
}, "strip", import("zod").ZodTypeAny, {
|
8652
8655
|
id: string;
|
8653
8656
|
address: string | null;
|
@@ -8657,7 +8660,7 @@ export declare const apiContract: {
|
|
8657
8660
|
updatedAt: Date;
|
8658
8661
|
deletedAt: Date | null;
|
8659
8662
|
phone: string | null;
|
8660
|
-
|
8663
|
+
notificationCount: number | null;
|
8661
8664
|
}, {
|
8662
8665
|
id: string;
|
8663
8666
|
address: string | null;
|
@@ -8667,7 +8670,7 @@ export declare const apiContract: {
|
|
8667
8670
|
updatedAt: Date;
|
8668
8671
|
deletedAt: Date | null;
|
8669
8672
|
phone: string | null;
|
8670
|
-
|
8673
|
+
notificationCount: number | null;
|
8671
8674
|
}>;
|
8672
8675
|
messages: import("zod").ZodArray<import("zod").ZodObject<{
|
8673
8676
|
id: import("zod").ZodString;
|
@@ -8791,34 +8794,34 @@ export declare const apiContract: {
|
|
8791
8794
|
createdAt: import("zod").ZodDate;
|
8792
8795
|
updatedAt: import("zod").ZodDate;
|
8793
8796
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
8794
|
-
|
8795
|
-
|
8796
|
-
|
8797
|
-
|
8798
|
-
|
8799
|
-
|
8797
|
+
bucketName: import("zod").ZodString;
|
8798
|
+
fileName: import("zod").ZodString;
|
8799
|
+
fileKey: import("zod").ZodString;
|
8800
|
+
fileSize: import("zod").ZodNumber;
|
8801
|
+
fileUrl: import("zod").ZodString;
|
8802
|
+
extensionName: import("zod").ZodString;
|
8800
8803
|
}, "strip", import("zod").ZodTypeAny, {
|
8801
8804
|
id: string;
|
8802
8805
|
createdAt: Date;
|
8803
8806
|
updatedAt: Date;
|
8804
8807
|
deletedAt: Date | null;
|
8805
|
-
|
8806
|
-
|
8807
|
-
|
8808
|
-
|
8809
|
-
|
8810
|
-
|
8808
|
+
extensionName: string;
|
8809
|
+
fileName: string;
|
8810
|
+
fileKey: string;
|
8811
|
+
bucketName: string;
|
8812
|
+
fileSize: number;
|
8813
|
+
fileUrl: string;
|
8811
8814
|
}, {
|
8812
8815
|
id: string;
|
8813
8816
|
createdAt: Date;
|
8814
8817
|
updatedAt: Date;
|
8815
8818
|
deletedAt: Date | null;
|
8816
|
-
|
8817
|
-
|
8818
|
-
|
8819
|
-
|
8820
|
-
|
8821
|
-
|
8819
|
+
extensionName: string;
|
8820
|
+
fileName: string;
|
8821
|
+
fileKey: string;
|
8822
|
+
bucketName: string;
|
8823
|
+
fileSize: number;
|
8824
|
+
fileUrl: string;
|
8822
8825
|
}>;
|
8823
8826
|
}, "strip", import("zod").ZodTypeAny, {
|
8824
8827
|
id: string;
|
@@ -8833,12 +8836,12 @@ export declare const apiContract: {
|
|
8833
8836
|
createdAt: Date;
|
8834
8837
|
updatedAt: Date;
|
8835
8838
|
deletedAt: Date | null;
|
8836
|
-
|
8837
|
-
|
8838
|
-
|
8839
|
-
|
8840
|
-
|
8841
|
-
|
8839
|
+
extensionName: string;
|
8840
|
+
fileName: string;
|
8841
|
+
fileKey: string;
|
8842
|
+
bucketName: string;
|
8843
|
+
fileSize: number;
|
8844
|
+
fileUrl: string;
|
8842
8845
|
};
|
8843
8846
|
roomId: string;
|
8844
8847
|
messageId: string;
|
@@ -8856,12 +8859,12 @@ export declare const apiContract: {
|
|
8856
8859
|
createdAt: Date;
|
8857
8860
|
updatedAt: Date;
|
8858
8861
|
deletedAt: Date | null;
|
8859
|
-
|
8860
|
-
|
8861
|
-
|
8862
|
-
|
8863
|
-
|
8864
|
-
|
8862
|
+
extensionName: string;
|
8863
|
+
fileName: string;
|
8864
|
+
fileKey: string;
|
8865
|
+
bucketName: string;
|
8866
|
+
fileSize: number;
|
8867
|
+
fileUrl: string;
|
8865
8868
|
};
|
8866
8869
|
roomId: string;
|
8867
8870
|
messageId: string;
|
@@ -8930,12 +8933,12 @@ export declare const apiContract: {
|
|
8930
8933
|
createdAt: Date;
|
8931
8934
|
updatedAt: Date;
|
8932
8935
|
deletedAt: Date | null;
|
8933
|
-
|
8934
|
-
|
8935
|
-
|
8936
|
-
|
8937
|
-
|
8938
|
-
|
8936
|
+
extensionName: string;
|
8937
|
+
fileName: string;
|
8938
|
+
fileKey: string;
|
8939
|
+
bucketName: string;
|
8940
|
+
fileSize: number;
|
8941
|
+
fileUrl: string;
|
8939
8942
|
};
|
8940
8943
|
roomId: string;
|
8941
8944
|
messageId: string;
|
@@ -9004,12 +9007,12 @@ export declare const apiContract: {
|
|
9004
9007
|
createdAt: Date;
|
9005
9008
|
updatedAt: Date;
|
9006
9009
|
deletedAt: Date | null;
|
9007
|
-
|
9008
|
-
|
9009
|
-
|
9010
|
-
|
9011
|
-
|
9012
|
-
|
9010
|
+
extensionName: string;
|
9011
|
+
fileName: string;
|
9012
|
+
fileKey: string;
|
9013
|
+
bucketName: string;
|
9014
|
+
fileSize: number;
|
9015
|
+
fileUrl: string;
|
9013
9016
|
};
|
9014
9017
|
roomId: string;
|
9015
9018
|
messageId: string;
|
@@ -9138,34 +9141,34 @@ export declare const apiContract: {
|
|
9138
9141
|
createdAt: import("zod").ZodDate;
|
9139
9142
|
updatedAt: import("zod").ZodDate;
|
9140
9143
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
9141
|
-
|
9142
|
-
|
9143
|
-
|
9144
|
-
|
9145
|
-
|
9146
|
-
|
9144
|
+
bucketName: import("zod").ZodString;
|
9145
|
+
fileName: import("zod").ZodString;
|
9146
|
+
fileKey: import("zod").ZodString;
|
9147
|
+
fileSize: import("zod").ZodNumber;
|
9148
|
+
fileUrl: import("zod").ZodString;
|
9149
|
+
extensionName: import("zod").ZodString;
|
9147
9150
|
}, "strip", import("zod").ZodTypeAny, {
|
9148
9151
|
id: string;
|
9149
9152
|
createdAt: Date;
|
9150
9153
|
updatedAt: Date;
|
9151
9154
|
deletedAt: Date | null;
|
9152
|
-
|
9153
|
-
|
9154
|
-
|
9155
|
-
|
9156
|
-
|
9157
|
-
|
9155
|
+
extensionName: string;
|
9156
|
+
fileName: string;
|
9157
|
+
fileKey: string;
|
9158
|
+
bucketName: string;
|
9159
|
+
fileSize: number;
|
9160
|
+
fileUrl: string;
|
9158
9161
|
}, {
|
9159
9162
|
id: string;
|
9160
9163
|
createdAt: Date;
|
9161
9164
|
updatedAt: Date;
|
9162
9165
|
deletedAt: Date | null;
|
9163
|
-
|
9164
|
-
|
9165
|
-
|
9166
|
-
|
9167
|
-
|
9168
|
-
|
9166
|
+
extensionName: string;
|
9167
|
+
fileName: string;
|
9168
|
+
fileKey: string;
|
9169
|
+
bucketName: string;
|
9170
|
+
fileSize: number;
|
9171
|
+
fileUrl: string;
|
9169
9172
|
}>;
|
9170
9173
|
}, "strip", import("zod").ZodTypeAny, {
|
9171
9174
|
id: string;
|
@@ -9180,12 +9183,12 @@ export declare const apiContract: {
|
|
9180
9183
|
createdAt: Date;
|
9181
9184
|
updatedAt: Date;
|
9182
9185
|
deletedAt: Date | null;
|
9183
|
-
|
9184
|
-
|
9185
|
-
|
9186
|
-
|
9187
|
-
|
9188
|
-
|
9186
|
+
extensionName: string;
|
9187
|
+
fileName: string;
|
9188
|
+
fileKey: string;
|
9189
|
+
bucketName: string;
|
9190
|
+
fileSize: number;
|
9191
|
+
fileUrl: string;
|
9189
9192
|
};
|
9190
9193
|
roomId: string;
|
9191
9194
|
messageId: string;
|
@@ -9203,12 +9206,12 @@ export declare const apiContract: {
|
|
9203
9206
|
createdAt: Date;
|
9204
9207
|
updatedAt: Date;
|
9205
9208
|
deletedAt: Date | null;
|
9206
|
-
|
9207
|
-
|
9208
|
-
|
9209
|
-
|
9210
|
-
|
9211
|
-
|
9209
|
+
extensionName: string;
|
9210
|
+
fileName: string;
|
9211
|
+
fileKey: string;
|
9212
|
+
bucketName: string;
|
9213
|
+
fileSize: number;
|
9214
|
+
fileUrl: string;
|
9212
9215
|
};
|
9213
9216
|
roomId: string;
|
9214
9217
|
messageId: string;
|
@@ -9277,12 +9280,12 @@ export declare const apiContract: {
|
|
9277
9280
|
createdAt: Date;
|
9278
9281
|
updatedAt: Date;
|
9279
9282
|
deletedAt: Date | null;
|
9280
|
-
|
9281
|
-
|
9282
|
-
|
9283
|
-
|
9284
|
-
|
9285
|
-
|
9283
|
+
extensionName: string;
|
9284
|
+
fileName: string;
|
9285
|
+
fileKey: string;
|
9286
|
+
bucketName: string;
|
9287
|
+
fileSize: number;
|
9288
|
+
fileUrl: string;
|
9286
9289
|
};
|
9287
9290
|
roomId: string;
|
9288
9291
|
messageId: string;
|
@@ -9351,12 +9354,12 @@ export declare const apiContract: {
|
|
9351
9354
|
createdAt: Date;
|
9352
9355
|
updatedAt: Date;
|
9353
9356
|
deletedAt: Date | null;
|
9354
|
-
|
9355
|
-
|
9356
|
-
|
9357
|
-
|
9358
|
-
|
9359
|
-
|
9357
|
+
extensionName: string;
|
9358
|
+
fileName: string;
|
9359
|
+
fileKey: string;
|
9360
|
+
bucketName: string;
|
9361
|
+
fileSize: number;
|
9362
|
+
fileUrl: string;
|
9360
9363
|
};
|
9361
9364
|
roomId: string;
|
9362
9365
|
messageId: string;
|
@@ -9379,7 +9382,7 @@ export declare const apiContract: {
|
|
9379
9382
|
email: import("zod").ZodString;
|
9380
9383
|
address: import("zod").ZodNullable<import("zod").ZodString>;
|
9381
9384
|
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
9382
|
-
|
9385
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
9383
9386
|
}, "strip", import("zod").ZodTypeAny, {
|
9384
9387
|
id: string;
|
9385
9388
|
address: string | null;
|
@@ -9389,7 +9392,7 @@ export declare const apiContract: {
|
|
9389
9392
|
updatedAt: Date;
|
9390
9393
|
deletedAt: Date | null;
|
9391
9394
|
phone: string | null;
|
9392
|
-
|
9395
|
+
notificationCount: number | null;
|
9393
9396
|
}, {
|
9394
9397
|
id: string;
|
9395
9398
|
address: string | null;
|
@@ -9399,7 +9402,7 @@ export declare const apiContract: {
|
|
9399
9402
|
updatedAt: Date;
|
9400
9403
|
deletedAt: Date | null;
|
9401
9404
|
phone: string | null;
|
9402
|
-
|
9405
|
+
notificationCount: number | null;
|
9403
9406
|
}>;
|
9404
9407
|
}, "strip", import("zod").ZodTypeAny, {
|
9405
9408
|
id: string;
|
@@ -9416,7 +9419,7 @@ export declare const apiContract: {
|
|
9416
9419
|
updatedAt: Date;
|
9417
9420
|
deletedAt: Date | null;
|
9418
9421
|
phone: string | null;
|
9419
|
-
|
9422
|
+
notificationCount: number | null;
|
9420
9423
|
};
|
9421
9424
|
roomId: string;
|
9422
9425
|
actorId: string;
|
@@ -9435,7 +9438,7 @@ export declare const apiContract: {
|
|
9435
9438
|
updatedAt: Date;
|
9436
9439
|
deletedAt: Date | null;
|
9437
9440
|
phone: string | null;
|
9438
|
-
|
9441
|
+
notificationCount: number | null;
|
9439
9442
|
};
|
9440
9443
|
roomId: string;
|
9441
9444
|
actorId: string;
|
@@ -9456,12 +9459,12 @@ export declare const apiContract: {
|
|
9456
9459
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
9457
9460
|
name: import("zod").ZodString;
|
9458
9461
|
smtpHost: import("zod").ZodString;
|
9459
|
-
smtpPort: import("zod").
|
9460
|
-
smtpTlsPort: import("zod").
|
9462
|
+
smtpPort: import("zod").ZodNumber;
|
9463
|
+
smtpTlsPort: import("zod").ZodNumber;
|
9461
9464
|
useTlsForSmtp: import("zod").ZodBoolean;
|
9462
9465
|
imapHost: import("zod").ZodString;
|
9463
|
-
imapPort: import("zod").
|
9464
|
-
imapTlsPort: import("zod").
|
9466
|
+
imapPort: import("zod").ZodNumber;
|
9467
|
+
imapTlsPort: import("zod").ZodNumber;
|
9465
9468
|
useTlsForImap: import("zod").ZodBoolean;
|
9466
9469
|
}, "strip", import("zod").ZodTypeAny, {
|
9467
9470
|
id: string;
|
@@ -9470,12 +9473,12 @@ export declare const apiContract: {
|
|
9470
9473
|
updatedAt: Date;
|
9471
9474
|
deletedAt: Date | null;
|
9472
9475
|
smtpHost: string;
|
9473
|
-
smtpPort:
|
9474
|
-
smtpTlsPort:
|
9476
|
+
smtpPort: number;
|
9477
|
+
smtpTlsPort: number;
|
9475
9478
|
useTlsForSmtp: boolean;
|
9476
9479
|
imapHost: string;
|
9477
|
-
imapPort:
|
9478
|
-
imapTlsPort:
|
9480
|
+
imapPort: number;
|
9481
|
+
imapTlsPort: number;
|
9479
9482
|
useTlsForImap: boolean;
|
9480
9483
|
}, {
|
9481
9484
|
id: string;
|
@@ -9484,12 +9487,12 @@ export declare const apiContract: {
|
|
9484
9487
|
updatedAt: Date;
|
9485
9488
|
deletedAt: Date | null;
|
9486
9489
|
smtpHost: string;
|
9487
|
-
smtpPort:
|
9488
|
-
smtpTlsPort:
|
9490
|
+
smtpPort: number;
|
9491
|
+
smtpTlsPort: number;
|
9489
9492
|
useTlsForSmtp: boolean;
|
9490
9493
|
imapHost: string;
|
9491
|
-
imapPort:
|
9492
|
-
imapTlsPort:
|
9494
|
+
imapPort: number;
|
9495
|
+
imapTlsPort: number;
|
9493
9496
|
useTlsForImap: boolean;
|
9494
9497
|
}>;
|
9495
9498
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -9510,12 +9513,12 @@ export declare const apiContract: {
|
|
9510
9513
|
updatedAt: Date;
|
9511
9514
|
deletedAt: Date | null;
|
9512
9515
|
smtpHost: string;
|
9513
|
-
smtpPort:
|
9514
|
-
smtpTlsPort:
|
9516
|
+
smtpPort: number;
|
9517
|
+
smtpTlsPort: number;
|
9515
9518
|
useTlsForSmtp: boolean;
|
9516
9519
|
imapHost: string;
|
9517
|
-
imapPort:
|
9518
|
-
imapTlsPort:
|
9520
|
+
imapPort: number;
|
9521
|
+
imapTlsPort: number;
|
9519
9522
|
useTlsForImap: boolean;
|
9520
9523
|
};
|
9521
9524
|
}, {
|
@@ -9535,12 +9538,12 @@ export declare const apiContract: {
|
|
9535
9538
|
updatedAt: Date;
|
9536
9539
|
deletedAt: Date | null;
|
9537
9540
|
smtpHost: string;
|
9538
|
-
smtpPort:
|
9539
|
-
smtpTlsPort:
|
9541
|
+
smtpPort: number;
|
9542
|
+
smtpTlsPort: number;
|
9540
9543
|
useTlsForSmtp: boolean;
|
9541
9544
|
imapHost: string;
|
9542
|
-
imapPort:
|
9543
|
-
imapTlsPort:
|
9545
|
+
imapPort: number;
|
9546
|
+
imapTlsPort: number;
|
9544
9547
|
useTlsForImap: boolean;
|
9545
9548
|
};
|
9546
9549
|
}>;
|
@@ -9623,12 +9626,12 @@ export declare const apiContract: {
|
|
9623
9626
|
createdAt: Date;
|
9624
9627
|
updatedAt: Date;
|
9625
9628
|
deletedAt: Date | null;
|
9626
|
-
|
9627
|
-
|
9628
|
-
|
9629
|
-
|
9630
|
-
|
9631
|
-
|
9629
|
+
extensionName: string;
|
9630
|
+
fileName: string;
|
9631
|
+
fileKey: string;
|
9632
|
+
bucketName: string;
|
9633
|
+
fileSize: number;
|
9634
|
+
fileUrl: string;
|
9632
9635
|
};
|
9633
9636
|
roomId: string;
|
9634
9637
|
messageId: string;
|
@@ -9644,7 +9647,7 @@ export declare const apiContract: {
|
|
9644
9647
|
updatedAt: Date;
|
9645
9648
|
deletedAt: Date | null;
|
9646
9649
|
phone: string | null;
|
9647
|
-
|
9650
|
+
notificationCount: number | null;
|
9648
9651
|
};
|
9649
9652
|
resolved: boolean;
|
9650
9653
|
assigneeId: string | null;
|
@@ -9747,12 +9750,12 @@ export declare const apiContract: {
|
|
9747
9750
|
createdAt: Date;
|
9748
9751
|
updatedAt: Date;
|
9749
9752
|
deletedAt: Date | null;
|
9750
|
-
|
9751
|
-
|
9752
|
-
|
9753
|
-
|
9754
|
-
|
9755
|
-
|
9753
|
+
extensionName: string;
|
9754
|
+
fileName: string;
|
9755
|
+
fileKey: string;
|
9756
|
+
bucketName: string;
|
9757
|
+
fileSize: number;
|
9758
|
+
fileUrl: string;
|
9756
9759
|
};
|
9757
9760
|
roomId: string;
|
9758
9761
|
messageId: string;
|
@@ -9822,12 +9825,12 @@ export declare const apiContract: {
|
|
9822
9825
|
createdAt: Date;
|
9823
9826
|
updatedAt: Date;
|
9824
9827
|
deletedAt: Date | null;
|
9825
|
-
|
9826
|
-
|
9827
|
-
|
9828
|
-
|
9829
|
-
|
9830
|
-
|
9828
|
+
extensionName: string;
|
9829
|
+
fileName: string;
|
9830
|
+
fileKey: string;
|
9831
|
+
bucketName: string;
|
9832
|
+
fileSize: number;
|
9833
|
+
fileUrl: string;
|
9831
9834
|
};
|
9832
9835
|
roomId: string;
|
9833
9836
|
messageId: string;
|
@@ -9897,12 +9900,12 @@ export declare const apiContract: {
|
|
9897
9900
|
createdAt: Date;
|
9898
9901
|
updatedAt: Date;
|
9899
9902
|
deletedAt: Date | null;
|
9900
|
-
|
9901
|
-
|
9902
|
-
|
9903
|
-
|
9904
|
-
|
9905
|
-
|
9903
|
+
extensionName: string;
|
9904
|
+
fileName: string;
|
9905
|
+
fileKey: string;
|
9906
|
+
bucketName: string;
|
9907
|
+
fileSize: number;
|
9908
|
+
fileUrl: string;
|
9906
9909
|
};
|
9907
9910
|
roomId: string;
|
9908
9911
|
messageId: string;
|
@@ -9923,7 +9926,7 @@ export declare const apiContract: {
|
|
9923
9926
|
updatedAt: Date;
|
9924
9927
|
deletedAt: Date | null;
|
9925
9928
|
phone: string | null;
|
9926
|
-
|
9929
|
+
notificationCount: number | null;
|
9927
9930
|
};
|
9928
9931
|
roomId: string;
|
9929
9932
|
actorId: string;
|
@@ -9945,12 +9948,12 @@ export declare const apiContract: {
|
|
9945
9948
|
updatedAt: Date;
|
9946
9949
|
deletedAt: Date | null;
|
9947
9950
|
smtpHost: string;
|
9948
|
-
smtpPort:
|
9949
|
-
smtpTlsPort:
|
9951
|
+
smtpPort: number;
|
9952
|
+
smtpTlsPort: number;
|
9950
9953
|
useTlsForSmtp: boolean;
|
9951
9954
|
imapHost: string;
|
9952
|
-
imapPort:
|
9953
|
-
imapTlsPort:
|
9955
|
+
imapPort: number;
|
9956
|
+
imapTlsPort: number;
|
9954
9957
|
useTlsForImap: boolean;
|
9955
9958
|
};
|
9956
9959
|
};
|
@@ -10033,12 +10036,12 @@ export declare const apiContract: {
|
|
10033
10036
|
createdAt: Date;
|
10034
10037
|
updatedAt: Date;
|
10035
10038
|
deletedAt: Date | null;
|
10036
|
-
|
10037
|
-
|
10038
|
-
|
10039
|
-
|
10040
|
-
|
10041
|
-
|
10039
|
+
extensionName: string;
|
10040
|
+
fileName: string;
|
10041
|
+
fileKey: string;
|
10042
|
+
bucketName: string;
|
10043
|
+
fileSize: number;
|
10044
|
+
fileUrl: string;
|
10042
10045
|
};
|
10043
10046
|
roomId: string;
|
10044
10047
|
messageId: string;
|
@@ -10054,7 +10057,7 @@ export declare const apiContract: {
|
|
10054
10057
|
updatedAt: Date;
|
10055
10058
|
deletedAt: Date | null;
|
10056
10059
|
phone: string | null;
|
10057
|
-
|
10060
|
+
notificationCount: number | null;
|
10058
10061
|
};
|
10059
10062
|
resolved: boolean;
|
10060
10063
|
assigneeId: string | null;
|
@@ -10157,12 +10160,12 @@ export declare const apiContract: {
|
|
10157
10160
|
createdAt: Date;
|
10158
10161
|
updatedAt: Date;
|
10159
10162
|
deletedAt: Date | null;
|
10160
|
-
|
10161
|
-
|
10162
|
-
|
10163
|
-
|
10164
|
-
|
10165
|
-
|
10163
|
+
extensionName: string;
|
10164
|
+
fileName: string;
|
10165
|
+
fileKey: string;
|
10166
|
+
bucketName: string;
|
10167
|
+
fileSize: number;
|
10168
|
+
fileUrl: string;
|
10166
10169
|
};
|
10167
10170
|
roomId: string;
|
10168
10171
|
messageId: string;
|
@@ -10232,12 +10235,12 @@ export declare const apiContract: {
|
|
10232
10235
|
createdAt: Date;
|
10233
10236
|
updatedAt: Date;
|
10234
10237
|
deletedAt: Date | null;
|
10235
|
-
|
10236
|
-
|
10237
|
-
|
10238
|
-
|
10239
|
-
|
10240
|
-
|
10238
|
+
extensionName: string;
|
10239
|
+
fileName: string;
|
10240
|
+
fileKey: string;
|
10241
|
+
bucketName: string;
|
10242
|
+
fileSize: number;
|
10243
|
+
fileUrl: string;
|
10241
10244
|
};
|
10242
10245
|
roomId: string;
|
10243
10246
|
messageId: string;
|
@@ -10307,12 +10310,12 @@ export declare const apiContract: {
|
|
10307
10310
|
createdAt: Date;
|
10308
10311
|
updatedAt: Date;
|
10309
10312
|
deletedAt: Date | null;
|
10310
|
-
|
10311
|
-
|
10312
|
-
|
10313
|
-
|
10314
|
-
|
10315
|
-
|
10313
|
+
extensionName: string;
|
10314
|
+
fileName: string;
|
10315
|
+
fileKey: string;
|
10316
|
+
bucketName: string;
|
10317
|
+
fileSize: number;
|
10318
|
+
fileUrl: string;
|
10316
10319
|
};
|
10317
10320
|
roomId: string;
|
10318
10321
|
messageId: string;
|
@@ -10333,7 +10336,7 @@ export declare const apiContract: {
|
|
10333
10336
|
updatedAt: Date;
|
10334
10337
|
deletedAt: Date | null;
|
10335
10338
|
phone: string | null;
|
10336
|
-
|
10339
|
+
notificationCount: number | null;
|
10337
10340
|
};
|
10338
10341
|
roomId: string;
|
10339
10342
|
actorId: string;
|
@@ -10355,12 +10358,12 @@ export declare const apiContract: {
|
|
10355
10358
|
updatedAt: Date;
|
10356
10359
|
deletedAt: Date | null;
|
10357
10360
|
smtpHost: string;
|
10358
|
-
smtpPort:
|
10359
|
-
smtpTlsPort:
|
10361
|
+
smtpPort: number;
|
10362
|
+
smtpTlsPort: number;
|
10360
10363
|
useTlsForSmtp: boolean;
|
10361
10364
|
imapHost: string;
|
10362
|
-
imapPort:
|
10363
|
-
imapTlsPort:
|
10365
|
+
imapPort: number;
|
10366
|
+
imapTlsPort: number;
|
10364
10367
|
useTlsForImap: boolean;
|
10365
10368
|
};
|
10366
10369
|
};
|
@@ -10445,12 +10448,12 @@ export declare const apiContract: {
|
|
10445
10448
|
createdAt: Date;
|
10446
10449
|
updatedAt: Date;
|
10447
10450
|
deletedAt: Date | null;
|
10448
|
-
|
10449
|
-
|
10450
|
-
|
10451
|
-
|
10452
|
-
|
10453
|
-
|
10451
|
+
extensionName: string;
|
10452
|
+
fileName: string;
|
10453
|
+
fileKey: string;
|
10454
|
+
bucketName: string;
|
10455
|
+
fileSize: number;
|
10456
|
+
fileUrl: string;
|
10454
10457
|
};
|
10455
10458
|
roomId: string;
|
10456
10459
|
messageId: string;
|
@@ -10466,7 +10469,7 @@ export declare const apiContract: {
|
|
10466
10469
|
updatedAt: Date;
|
10467
10470
|
deletedAt: Date | null;
|
10468
10471
|
phone: string | null;
|
10469
|
-
|
10472
|
+
notificationCount: number | null;
|
10470
10473
|
};
|
10471
10474
|
resolved: boolean;
|
10472
10475
|
assigneeId: string | null;
|
@@ -10569,12 +10572,12 @@ export declare const apiContract: {
|
|
10569
10572
|
createdAt: Date;
|
10570
10573
|
updatedAt: Date;
|
10571
10574
|
deletedAt: Date | null;
|
10572
|
-
|
10573
|
-
|
10574
|
-
|
10575
|
-
|
10576
|
-
|
10577
|
-
|
10575
|
+
extensionName: string;
|
10576
|
+
fileName: string;
|
10577
|
+
fileKey: string;
|
10578
|
+
bucketName: string;
|
10579
|
+
fileSize: number;
|
10580
|
+
fileUrl: string;
|
10578
10581
|
};
|
10579
10582
|
roomId: string;
|
10580
10583
|
messageId: string;
|
@@ -10644,12 +10647,12 @@ export declare const apiContract: {
|
|
10644
10647
|
createdAt: Date;
|
10645
10648
|
updatedAt: Date;
|
10646
10649
|
deletedAt: Date | null;
|
10647
|
-
|
10648
|
-
|
10649
|
-
|
10650
|
-
|
10651
|
-
|
10652
|
-
|
10650
|
+
extensionName: string;
|
10651
|
+
fileName: string;
|
10652
|
+
fileKey: string;
|
10653
|
+
bucketName: string;
|
10654
|
+
fileSize: number;
|
10655
|
+
fileUrl: string;
|
10653
10656
|
};
|
10654
10657
|
roomId: string;
|
10655
10658
|
messageId: string;
|
@@ -10719,12 +10722,12 @@ export declare const apiContract: {
|
|
10719
10722
|
createdAt: Date;
|
10720
10723
|
updatedAt: Date;
|
10721
10724
|
deletedAt: Date | null;
|
10722
|
-
|
10723
|
-
|
10724
|
-
|
10725
|
-
|
10726
|
-
|
10727
|
-
|
10725
|
+
extensionName: string;
|
10726
|
+
fileName: string;
|
10727
|
+
fileKey: string;
|
10728
|
+
bucketName: string;
|
10729
|
+
fileSize: number;
|
10730
|
+
fileUrl: string;
|
10728
10731
|
};
|
10729
10732
|
roomId: string;
|
10730
10733
|
messageId: string;
|
@@ -10745,7 +10748,7 @@ export declare const apiContract: {
|
|
10745
10748
|
updatedAt: Date;
|
10746
10749
|
deletedAt: Date | null;
|
10747
10750
|
phone: string | null;
|
10748
|
-
|
10751
|
+
notificationCount: number | null;
|
10749
10752
|
};
|
10750
10753
|
roomId: string;
|
10751
10754
|
actorId: string;
|
@@ -10767,12 +10770,12 @@ export declare const apiContract: {
|
|
10767
10770
|
updatedAt: Date;
|
10768
10771
|
deletedAt: Date | null;
|
10769
10772
|
smtpHost: string;
|
10770
|
-
smtpPort:
|
10771
|
-
smtpTlsPort:
|
10773
|
+
smtpPort: number;
|
10774
|
+
smtpTlsPort: number;
|
10772
10775
|
useTlsForSmtp: boolean;
|
10773
10776
|
imapHost: string;
|
10774
|
-
imapPort:
|
10775
|
-
imapTlsPort:
|
10777
|
+
imapPort: number;
|
10778
|
+
imapTlsPort: number;
|
10776
10779
|
useTlsForImap: boolean;
|
10777
10780
|
};
|
10778
10781
|
};
|
@@ -10858,12 +10861,12 @@ export declare const apiContract: {
|
|
10858
10861
|
createdAt: Date;
|
10859
10862
|
updatedAt: Date;
|
10860
10863
|
deletedAt: Date | null;
|
10861
|
-
|
10862
|
-
|
10863
|
-
|
10864
|
-
|
10865
|
-
|
10866
|
-
|
10864
|
+
extensionName: string;
|
10865
|
+
fileName: string;
|
10866
|
+
fileKey: string;
|
10867
|
+
bucketName: string;
|
10868
|
+
fileSize: number;
|
10869
|
+
fileUrl: string;
|
10867
10870
|
};
|
10868
10871
|
roomId: string;
|
10869
10872
|
messageId: string;
|
@@ -10879,7 +10882,7 @@ export declare const apiContract: {
|
|
10879
10882
|
updatedAt: Date;
|
10880
10883
|
deletedAt: Date | null;
|
10881
10884
|
phone: string | null;
|
10882
|
-
|
10885
|
+
notificationCount: number | null;
|
10883
10886
|
};
|
10884
10887
|
resolved: boolean;
|
10885
10888
|
assigneeId: string | null;
|
@@ -10982,12 +10985,12 @@ export declare const apiContract: {
|
|
10982
10985
|
createdAt: Date;
|
10983
10986
|
updatedAt: Date;
|
10984
10987
|
deletedAt: Date | null;
|
10985
|
-
|
10986
|
-
|
10987
|
-
|
10988
|
-
|
10989
|
-
|
10990
|
-
|
10988
|
+
extensionName: string;
|
10989
|
+
fileName: string;
|
10990
|
+
fileKey: string;
|
10991
|
+
bucketName: string;
|
10992
|
+
fileSize: number;
|
10993
|
+
fileUrl: string;
|
10991
10994
|
};
|
10992
10995
|
roomId: string;
|
10993
10996
|
messageId: string;
|
@@ -11057,12 +11060,12 @@ export declare const apiContract: {
|
|
11057
11060
|
createdAt: Date;
|
11058
11061
|
updatedAt: Date;
|
11059
11062
|
deletedAt: Date | null;
|
11060
|
-
|
11061
|
-
|
11062
|
-
|
11063
|
-
|
11064
|
-
|
11065
|
-
|
11063
|
+
extensionName: string;
|
11064
|
+
fileName: string;
|
11065
|
+
fileKey: string;
|
11066
|
+
bucketName: string;
|
11067
|
+
fileSize: number;
|
11068
|
+
fileUrl: string;
|
11066
11069
|
};
|
11067
11070
|
roomId: string;
|
11068
11071
|
messageId: string;
|
@@ -11132,12 +11135,12 @@ export declare const apiContract: {
|
|
11132
11135
|
createdAt: Date;
|
11133
11136
|
updatedAt: Date;
|
11134
11137
|
deletedAt: Date | null;
|
11135
|
-
|
11136
|
-
|
11137
|
-
|
11138
|
-
|
11139
|
-
|
11140
|
-
|
11138
|
+
extensionName: string;
|
11139
|
+
fileName: string;
|
11140
|
+
fileKey: string;
|
11141
|
+
bucketName: string;
|
11142
|
+
fileSize: number;
|
11143
|
+
fileUrl: string;
|
11141
11144
|
};
|
11142
11145
|
roomId: string;
|
11143
11146
|
messageId: string;
|
@@ -11158,7 +11161,7 @@ export declare const apiContract: {
|
|
11158
11161
|
updatedAt: Date;
|
11159
11162
|
deletedAt: Date | null;
|
11160
11163
|
phone: string | null;
|
11161
|
-
|
11164
|
+
notificationCount: number | null;
|
11162
11165
|
};
|
11163
11166
|
roomId: string;
|
11164
11167
|
actorId: string;
|
@@ -11180,12 +11183,12 @@ export declare const apiContract: {
|
|
11180
11183
|
updatedAt: Date;
|
11181
11184
|
deletedAt: Date | null;
|
11182
11185
|
smtpHost: string;
|
11183
|
-
smtpPort:
|
11184
|
-
smtpTlsPort:
|
11186
|
+
smtpPort: number;
|
11187
|
+
smtpTlsPort: number;
|
11185
11188
|
useTlsForSmtp: boolean;
|
11186
11189
|
imapHost: string;
|
11187
|
-
imapPort:
|
11188
|
-
imapTlsPort:
|
11190
|
+
imapPort: number;
|
11191
|
+
imapTlsPort: number;
|
11189
11192
|
useTlsForImap: boolean;
|
11190
11193
|
};
|
11191
11194
|
};
|
@@ -11640,34 +11643,34 @@ export declare const apiContract: {
|
|
11640
11643
|
createdAt: import("zod").ZodDate;
|
11641
11644
|
updatedAt: import("zod").ZodDate;
|
11642
11645
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
11643
|
-
|
11644
|
-
|
11645
|
-
|
11646
|
-
|
11647
|
-
|
11648
|
-
|
11646
|
+
bucketName: import("zod").ZodString;
|
11647
|
+
fileName: import("zod").ZodString;
|
11648
|
+
fileKey: import("zod").ZodString;
|
11649
|
+
fileSize: import("zod").ZodNumber;
|
11650
|
+
fileUrl: import("zod").ZodString;
|
11651
|
+
extensionName: import("zod").ZodString;
|
11649
11652
|
}, "strip", import("zod").ZodTypeAny, {
|
11650
11653
|
id: string;
|
11651
11654
|
createdAt: Date;
|
11652
11655
|
updatedAt: Date;
|
11653
11656
|
deletedAt: Date | null;
|
11654
|
-
|
11655
|
-
|
11656
|
-
|
11657
|
-
|
11658
|
-
|
11659
|
-
|
11657
|
+
extensionName: string;
|
11658
|
+
fileName: string;
|
11659
|
+
fileKey: string;
|
11660
|
+
bucketName: string;
|
11661
|
+
fileSize: number;
|
11662
|
+
fileUrl: string;
|
11660
11663
|
}, {
|
11661
11664
|
id: string;
|
11662
11665
|
createdAt: Date;
|
11663
11666
|
updatedAt: Date;
|
11664
11667
|
deletedAt: Date | null;
|
11665
|
-
|
11666
|
-
|
11667
|
-
|
11668
|
-
|
11669
|
-
|
11670
|
-
|
11668
|
+
extensionName: string;
|
11669
|
+
fileName: string;
|
11670
|
+
fileKey: string;
|
11671
|
+
bucketName: string;
|
11672
|
+
fileSize: number;
|
11673
|
+
fileUrl: string;
|
11671
11674
|
}>;
|
11672
11675
|
}, "strip", import("zod").ZodTypeAny, {
|
11673
11676
|
id: string;
|
@@ -11682,12 +11685,12 @@ export declare const apiContract: {
|
|
11682
11685
|
createdAt: Date;
|
11683
11686
|
updatedAt: Date;
|
11684
11687
|
deletedAt: Date | null;
|
11685
|
-
|
11686
|
-
|
11687
|
-
|
11688
|
-
|
11689
|
-
|
11690
|
-
|
11688
|
+
extensionName: string;
|
11689
|
+
fileName: string;
|
11690
|
+
fileKey: string;
|
11691
|
+
bucketName: string;
|
11692
|
+
fileSize: number;
|
11693
|
+
fileUrl: string;
|
11691
11694
|
};
|
11692
11695
|
roomId: string;
|
11693
11696
|
messageId: string;
|
@@ -11705,12 +11708,12 @@ export declare const apiContract: {
|
|
11705
11708
|
createdAt: Date;
|
11706
11709
|
updatedAt: Date;
|
11707
11710
|
deletedAt: Date | null;
|
11708
|
-
|
11709
|
-
|
11710
|
-
|
11711
|
-
|
11712
|
-
|
11713
|
-
|
11711
|
+
extensionName: string;
|
11712
|
+
fileName: string;
|
11713
|
+
fileKey: string;
|
11714
|
+
bucketName: string;
|
11715
|
+
fileSize: number;
|
11716
|
+
fileUrl: string;
|
11714
11717
|
};
|
11715
11718
|
roomId: string;
|
11716
11719
|
messageId: string;
|
@@ -11779,12 +11782,12 @@ export declare const apiContract: {
|
|
11779
11782
|
createdAt: Date;
|
11780
11783
|
updatedAt: Date;
|
11781
11784
|
deletedAt: Date | null;
|
11782
|
-
|
11783
|
-
|
11784
|
-
|
11785
|
-
|
11786
|
-
|
11787
|
-
|
11785
|
+
extensionName: string;
|
11786
|
+
fileName: string;
|
11787
|
+
fileKey: string;
|
11788
|
+
bucketName: string;
|
11789
|
+
fileSize: number;
|
11790
|
+
fileUrl: string;
|
11788
11791
|
};
|
11789
11792
|
roomId: string;
|
11790
11793
|
messageId: string;
|
@@ -11853,12 +11856,12 @@ export declare const apiContract: {
|
|
11853
11856
|
createdAt: Date;
|
11854
11857
|
updatedAt: Date;
|
11855
11858
|
deletedAt: Date | null;
|
11856
|
-
|
11857
|
-
|
11858
|
-
|
11859
|
-
|
11860
|
-
|
11861
|
-
|
11859
|
+
extensionName: string;
|
11860
|
+
fileName: string;
|
11861
|
+
fileKey: string;
|
11862
|
+
bucketName: string;
|
11863
|
+
fileSize: number;
|
11864
|
+
fileUrl: string;
|
11862
11865
|
};
|
11863
11866
|
roomId: string;
|
11864
11867
|
messageId: string;
|
@@ -11929,12 +11932,12 @@ export declare const apiContract: {
|
|
11929
11932
|
createdAt: Date;
|
11930
11933
|
updatedAt: Date;
|
11931
11934
|
deletedAt: Date | null;
|
11932
|
-
|
11933
|
-
|
11934
|
-
|
11935
|
-
|
11936
|
-
|
11937
|
-
|
11935
|
+
extensionName: string;
|
11936
|
+
fileName: string;
|
11937
|
+
fileKey: string;
|
11938
|
+
bucketName: string;
|
11939
|
+
fileSize: number;
|
11940
|
+
fileUrl: string;
|
11938
11941
|
};
|
11939
11942
|
roomId: string;
|
11940
11943
|
messageId: string;
|
@@ -12006,12 +12009,12 @@ export declare const apiContract: {
|
|
12006
12009
|
createdAt: Date;
|
12007
12010
|
updatedAt: Date;
|
12008
12011
|
deletedAt: Date | null;
|
12009
|
-
|
12010
|
-
|
12011
|
-
|
12012
|
-
|
12013
|
-
|
12014
|
-
|
12012
|
+
extensionName: string;
|
12013
|
+
fileName: string;
|
12014
|
+
fileKey: string;
|
12015
|
+
bucketName: string;
|
12016
|
+
fileSize: number;
|
12017
|
+
fileUrl: string;
|
12015
12018
|
};
|
12016
12019
|
roomId: string;
|
12017
12020
|
messageId: string;
|
@@ -12184,12 +12187,12 @@ export declare const apiContract: {
|
|
12184
12187
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12185
12188
|
name: import("zod").ZodString;
|
12186
12189
|
smtpHost: import("zod").ZodString;
|
12187
|
-
smtpPort: import("zod").
|
12188
|
-
smtpTlsPort: import("zod").
|
12190
|
+
smtpPort: import("zod").ZodNumber;
|
12191
|
+
smtpTlsPort: import("zod").ZodNumber;
|
12189
12192
|
useTlsForSmtp: import("zod").ZodBoolean;
|
12190
12193
|
imapHost: import("zod").ZodString;
|
12191
|
-
imapPort: import("zod").
|
12192
|
-
imapTlsPort: import("zod").
|
12194
|
+
imapPort: import("zod").ZodNumber;
|
12195
|
+
imapTlsPort: import("zod").ZodNumber;
|
12193
12196
|
useTlsForImap: import("zod").ZodBoolean;
|
12194
12197
|
}, "strip", import("zod").ZodTypeAny, {
|
12195
12198
|
id: string;
|
@@ -12198,12 +12201,12 @@ export declare const apiContract: {
|
|
12198
12201
|
updatedAt: Date;
|
12199
12202
|
deletedAt: Date | null;
|
12200
12203
|
smtpHost: string;
|
12201
|
-
smtpPort:
|
12202
|
-
smtpTlsPort:
|
12204
|
+
smtpPort: number;
|
12205
|
+
smtpTlsPort: number;
|
12203
12206
|
useTlsForSmtp: boolean;
|
12204
12207
|
imapHost: string;
|
12205
|
-
imapPort:
|
12206
|
-
imapTlsPort:
|
12208
|
+
imapPort: number;
|
12209
|
+
imapTlsPort: number;
|
12207
12210
|
useTlsForImap: boolean;
|
12208
12211
|
}, {
|
12209
12212
|
id: string;
|
@@ -12212,12 +12215,12 @@ export declare const apiContract: {
|
|
12212
12215
|
updatedAt: Date;
|
12213
12216
|
deletedAt: Date | null;
|
12214
12217
|
smtpHost: string;
|
12215
|
-
smtpPort:
|
12216
|
-
smtpTlsPort:
|
12218
|
+
smtpPort: number;
|
12219
|
+
smtpTlsPort: number;
|
12217
12220
|
useTlsForSmtp: boolean;
|
12218
12221
|
imapHost: string;
|
12219
|
-
imapPort:
|
12220
|
-
imapTlsPort:
|
12222
|
+
imapPort: number;
|
12223
|
+
imapTlsPort: number;
|
12221
12224
|
useTlsForImap: boolean;
|
12222
12225
|
}>;
|
12223
12226
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -12238,12 +12241,12 @@ export declare const apiContract: {
|
|
12238
12241
|
updatedAt: Date;
|
12239
12242
|
deletedAt: Date | null;
|
12240
12243
|
smtpHost: string;
|
12241
|
-
smtpPort:
|
12242
|
-
smtpTlsPort:
|
12244
|
+
smtpPort: number;
|
12245
|
+
smtpTlsPort: number;
|
12243
12246
|
useTlsForSmtp: boolean;
|
12244
12247
|
imapHost: string;
|
12245
|
-
imapPort:
|
12246
|
-
imapTlsPort:
|
12248
|
+
imapPort: number;
|
12249
|
+
imapTlsPort: number;
|
12247
12250
|
useTlsForImap: boolean;
|
12248
12251
|
};
|
12249
12252
|
}, {
|
@@ -12263,12 +12266,12 @@ export declare const apiContract: {
|
|
12263
12266
|
updatedAt: Date;
|
12264
12267
|
deletedAt: Date | null;
|
12265
12268
|
smtpHost: string;
|
12266
|
-
smtpPort:
|
12267
|
-
smtpTlsPort:
|
12269
|
+
smtpPort: number;
|
12270
|
+
smtpTlsPort: number;
|
12268
12271
|
useTlsForSmtp: boolean;
|
12269
12272
|
imapHost: string;
|
12270
|
-
imapPort:
|
12271
|
-
imapTlsPort:
|
12273
|
+
imapPort: number;
|
12274
|
+
imapTlsPort: number;
|
12272
12275
|
useTlsForImap: boolean;
|
12273
12276
|
};
|
12274
12277
|
}>;
|
@@ -12290,12 +12293,12 @@ export declare const apiContract: {
|
|
12290
12293
|
updatedAt: Date;
|
12291
12294
|
deletedAt: Date | null;
|
12292
12295
|
smtpHost: string;
|
12293
|
-
smtpPort:
|
12294
|
-
smtpTlsPort:
|
12296
|
+
smtpPort: number;
|
12297
|
+
smtpTlsPort: number;
|
12295
12298
|
useTlsForSmtp: boolean;
|
12296
12299
|
imapHost: string;
|
12297
|
-
imapPort:
|
12298
|
-
imapTlsPort:
|
12300
|
+
imapPort: number;
|
12301
|
+
imapTlsPort: number;
|
12299
12302
|
useTlsForImap: boolean;
|
12300
12303
|
};
|
12301
12304
|
};
|
@@ -12318,12 +12321,12 @@ export declare const apiContract: {
|
|
12318
12321
|
updatedAt: Date;
|
12319
12322
|
deletedAt: Date | null;
|
12320
12323
|
smtpHost: string;
|
12321
|
-
smtpPort:
|
12322
|
-
smtpTlsPort:
|
12324
|
+
smtpPort: number;
|
12325
|
+
smtpTlsPort: number;
|
12323
12326
|
useTlsForSmtp: boolean;
|
12324
12327
|
imapHost: string;
|
12325
|
-
imapPort:
|
12326
|
-
imapTlsPort:
|
12328
|
+
imapPort: number;
|
12329
|
+
imapTlsPort: number;
|
12327
12330
|
useTlsForImap: boolean;
|
12328
12331
|
};
|
12329
12332
|
};
|
@@ -12349,7 +12352,7 @@ export declare const apiContract: {
|
|
12349
12352
|
}>>>;
|
12350
12353
|
};
|
12351
12354
|
getAll: {
|
12352
|
-
summary: "Get
|
12355
|
+
summary: "Get all accounts";
|
12353
12356
|
method: "GET";
|
12354
12357
|
responses: {
|
12355
12358
|
401: import("zod").ZodObject<{
|
@@ -12384,13 +12387,166 @@ export declare const apiContract: {
|
|
12384
12387
|
}>;
|
12385
12388
|
200: import("zod").ZodObject<{
|
12386
12389
|
requestId: import("zod").ZodString;
|
12387
|
-
data: import("zod").
|
12390
|
+
data: import("zod").ZodArray<import("zod").ZodObject<{
|
12391
|
+
id: import("zod").ZodString;
|
12392
|
+
createdAt: import("zod").ZodDate;
|
12393
|
+
updatedAt: import("zod").ZodDate;
|
12394
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12395
|
+
name: import("zod").ZodString;
|
12396
|
+
address: import("zod").ZodString;
|
12397
|
+
accountId: import("zod").ZodString;
|
12398
|
+
mailServerId: import("zod").ZodString;
|
12399
|
+
mailServer: import("zod").ZodObject<{
|
12400
|
+
id: import("zod").ZodString;
|
12401
|
+
createdAt: import("zod").ZodDate;
|
12402
|
+
updatedAt: import("zod").ZodDate;
|
12403
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12404
|
+
name: import("zod").ZodString;
|
12405
|
+
smtpHost: import("zod").ZodString;
|
12406
|
+
smtpPort: import("zod").ZodNumber;
|
12407
|
+
smtpTlsPort: import("zod").ZodNumber;
|
12408
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
12409
|
+
imapHost: import("zod").ZodString;
|
12410
|
+
imapPort: import("zod").ZodNumber;
|
12411
|
+
imapTlsPort: import("zod").ZodNumber;
|
12412
|
+
useTlsForImap: import("zod").ZodBoolean;
|
12413
|
+
}, "strip", import("zod").ZodTypeAny, {
|
12414
|
+
id: string;
|
12415
|
+
name: string;
|
12416
|
+
createdAt: Date;
|
12417
|
+
updatedAt: Date;
|
12418
|
+
deletedAt: Date | null;
|
12419
|
+
smtpHost: string;
|
12420
|
+
smtpPort: number;
|
12421
|
+
smtpTlsPort: number;
|
12422
|
+
useTlsForSmtp: boolean;
|
12423
|
+
imapHost: string;
|
12424
|
+
imapPort: number;
|
12425
|
+
imapTlsPort: number;
|
12426
|
+
useTlsForImap: boolean;
|
12427
|
+
}, {
|
12428
|
+
id: string;
|
12429
|
+
name: string;
|
12430
|
+
createdAt: Date;
|
12431
|
+
updatedAt: Date;
|
12432
|
+
deletedAt: Date | null;
|
12433
|
+
smtpHost: string;
|
12434
|
+
smtpPort: number;
|
12435
|
+
smtpTlsPort: number;
|
12436
|
+
useTlsForSmtp: boolean;
|
12437
|
+
imapHost: string;
|
12438
|
+
imapPort: number;
|
12439
|
+
imapTlsPort: number;
|
12440
|
+
useTlsForImap: boolean;
|
12441
|
+
}>;
|
12442
|
+
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
12443
|
+
}, "strip", import("zod").ZodTypeAny, {
|
12444
|
+
id: string;
|
12445
|
+
state: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset";
|
12446
|
+
address: string;
|
12447
|
+
name: string;
|
12448
|
+
createdAt: Date;
|
12449
|
+
updatedAt: Date;
|
12450
|
+
deletedAt: Date | null;
|
12451
|
+
accountId: string;
|
12452
|
+
mailServerId: string;
|
12453
|
+
mailServer: {
|
12454
|
+
id: string;
|
12455
|
+
name: string;
|
12456
|
+
createdAt: Date;
|
12457
|
+
updatedAt: Date;
|
12458
|
+
deletedAt: Date | null;
|
12459
|
+
smtpHost: string;
|
12460
|
+
smtpPort: number;
|
12461
|
+
smtpTlsPort: number;
|
12462
|
+
useTlsForSmtp: boolean;
|
12463
|
+
imapHost: string;
|
12464
|
+
imapPort: number;
|
12465
|
+
imapTlsPort: number;
|
12466
|
+
useTlsForImap: boolean;
|
12467
|
+
};
|
12468
|
+
}, {
|
12469
|
+
id: string;
|
12470
|
+
state: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset";
|
12471
|
+
address: string;
|
12472
|
+
name: string;
|
12473
|
+
createdAt: Date;
|
12474
|
+
updatedAt: Date;
|
12475
|
+
deletedAt: Date | null;
|
12476
|
+
accountId: string;
|
12477
|
+
mailServerId: string;
|
12478
|
+
mailServer: {
|
12479
|
+
id: string;
|
12480
|
+
name: string;
|
12481
|
+
createdAt: Date;
|
12482
|
+
updatedAt: Date;
|
12483
|
+
deletedAt: Date | null;
|
12484
|
+
smtpHost: string;
|
12485
|
+
smtpPort: number;
|
12486
|
+
smtpTlsPort: number;
|
12487
|
+
useTlsForSmtp: boolean;
|
12488
|
+
imapHost: string;
|
12489
|
+
imapPort: number;
|
12490
|
+
imapTlsPort: number;
|
12491
|
+
useTlsForImap: boolean;
|
12492
|
+
};
|
12493
|
+
}>, "many">;
|
12388
12494
|
}, "strip", import("zod").ZodTypeAny, {
|
12495
|
+
data: {
|
12496
|
+
id: string;
|
12497
|
+
state: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset";
|
12498
|
+
address: string;
|
12499
|
+
name: string;
|
12500
|
+
createdAt: Date;
|
12501
|
+
updatedAt: Date;
|
12502
|
+
deletedAt: Date | null;
|
12503
|
+
accountId: string;
|
12504
|
+
mailServerId: string;
|
12505
|
+
mailServer: {
|
12506
|
+
id: string;
|
12507
|
+
name: string;
|
12508
|
+
createdAt: Date;
|
12509
|
+
updatedAt: Date;
|
12510
|
+
deletedAt: Date | null;
|
12511
|
+
smtpHost: string;
|
12512
|
+
smtpPort: number;
|
12513
|
+
smtpTlsPort: number;
|
12514
|
+
useTlsForSmtp: boolean;
|
12515
|
+
imapHost: string;
|
12516
|
+
imapPort: number;
|
12517
|
+
imapTlsPort: number;
|
12518
|
+
useTlsForImap: boolean;
|
12519
|
+
};
|
12520
|
+
}[];
|
12389
12521
|
requestId: string;
|
12390
|
-
data?: any;
|
12391
12522
|
}, {
|
12523
|
+
data: {
|
12524
|
+
id: string;
|
12525
|
+
state: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset";
|
12526
|
+
address: string;
|
12527
|
+
name: string;
|
12528
|
+
createdAt: Date;
|
12529
|
+
updatedAt: Date;
|
12530
|
+
deletedAt: Date | null;
|
12531
|
+
accountId: string;
|
12532
|
+
mailServerId: string;
|
12533
|
+
mailServer: {
|
12534
|
+
id: string;
|
12535
|
+
name: string;
|
12536
|
+
createdAt: Date;
|
12537
|
+
updatedAt: Date;
|
12538
|
+
deletedAt: Date | null;
|
12539
|
+
smtpHost: string;
|
12540
|
+
smtpPort: number;
|
12541
|
+
smtpTlsPort: number;
|
12542
|
+
useTlsForSmtp: boolean;
|
12543
|
+
imapHost: string;
|
12544
|
+
imapPort: number;
|
12545
|
+
imapTlsPort: number;
|
12546
|
+
useTlsForImap: boolean;
|
12547
|
+
};
|
12548
|
+
}[];
|
12392
12549
|
requestId: string;
|
12393
|
-
data?: any;
|
12394
12550
|
}>;
|
12395
12551
|
};
|
12396
12552
|
path: "mail/account";
|
@@ -12428,12 +12584,12 @@ export declare const apiContract: {
|
|
12428
12584
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12429
12585
|
name: import("zod").ZodString;
|
12430
12586
|
smtpHost: import("zod").ZodString;
|
12431
|
-
smtpPort: import("zod").
|
12432
|
-
smtpTlsPort: import("zod").
|
12587
|
+
smtpPort: import("zod").ZodNumber;
|
12588
|
+
smtpTlsPort: import("zod").ZodNumber;
|
12433
12589
|
useTlsForSmtp: import("zod").ZodBoolean;
|
12434
12590
|
imapHost: import("zod").ZodString;
|
12435
|
-
imapPort: import("zod").
|
12436
|
-
imapTlsPort: import("zod").
|
12591
|
+
imapPort: import("zod").ZodNumber;
|
12592
|
+
imapTlsPort: import("zod").ZodNumber;
|
12437
12593
|
useTlsForImap: import("zod").ZodBoolean;
|
12438
12594
|
}, "strip", import("zod").ZodTypeAny, {
|
12439
12595
|
id: string;
|
@@ -12442,12 +12598,12 @@ export declare const apiContract: {
|
|
12442
12598
|
updatedAt: Date;
|
12443
12599
|
deletedAt: Date | null;
|
12444
12600
|
smtpHost: string;
|
12445
|
-
smtpPort:
|
12446
|
-
smtpTlsPort:
|
12601
|
+
smtpPort: number;
|
12602
|
+
smtpTlsPort: number;
|
12447
12603
|
useTlsForSmtp: boolean;
|
12448
12604
|
imapHost: string;
|
12449
|
-
imapPort:
|
12450
|
-
imapTlsPort:
|
12605
|
+
imapPort: number;
|
12606
|
+
imapTlsPort: number;
|
12451
12607
|
useTlsForImap: boolean;
|
12452
12608
|
}, {
|
12453
12609
|
id: string;
|
@@ -12456,12 +12612,12 @@ export declare const apiContract: {
|
|
12456
12612
|
updatedAt: Date;
|
12457
12613
|
deletedAt: Date | null;
|
12458
12614
|
smtpHost: string;
|
12459
|
-
smtpPort:
|
12460
|
-
smtpTlsPort:
|
12615
|
+
smtpPort: number;
|
12616
|
+
smtpTlsPort: number;
|
12461
12617
|
useTlsForSmtp: boolean;
|
12462
12618
|
imapHost: string;
|
12463
|
-
imapPort:
|
12464
|
-
imapTlsPort:
|
12619
|
+
imapPort: number;
|
12620
|
+
imapTlsPort: number;
|
12465
12621
|
useTlsForImap: boolean;
|
12466
12622
|
}>>;
|
12467
12623
|
state: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>>;
|
@@ -12481,12 +12637,12 @@ export declare const apiContract: {
|
|
12481
12637
|
updatedAt: Date;
|
12482
12638
|
deletedAt: Date | null;
|
12483
12639
|
smtpHost: string;
|
12484
|
-
smtpPort:
|
12485
|
-
smtpTlsPort:
|
12640
|
+
smtpPort: number;
|
12641
|
+
smtpTlsPort: number;
|
12486
12642
|
useTlsForSmtp: boolean;
|
12487
12643
|
imapHost: string;
|
12488
|
-
imapPort:
|
12489
|
-
imapTlsPort:
|
12644
|
+
imapPort: number;
|
12645
|
+
imapTlsPort: number;
|
12490
12646
|
useTlsForImap: boolean;
|
12491
12647
|
} | undefined;
|
12492
12648
|
state?: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset" | undefined;
|
@@ -12506,12 +12662,12 @@ export declare const apiContract: {
|
|
12506
12662
|
updatedAt: Date;
|
12507
12663
|
deletedAt: Date | null;
|
12508
12664
|
smtpHost: string;
|
12509
|
-
smtpPort:
|
12510
|
-
smtpTlsPort:
|
12665
|
+
smtpPort: number;
|
12666
|
+
smtpTlsPort: number;
|
12511
12667
|
useTlsForSmtp: boolean;
|
12512
12668
|
imapHost: string;
|
12513
|
-
imapPort:
|
12514
|
-
imapTlsPort:
|
12669
|
+
imapPort: number;
|
12670
|
+
imapTlsPort: number;
|
12515
12671
|
useTlsForImap: boolean;
|
12516
12672
|
} | undefined;
|
12517
12673
|
state?: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset" | undefined;
|
@@ -12574,12 +12730,12 @@ export declare const apiContract: {
|
|
12574
12730
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12575
12731
|
name: import("zod").ZodString;
|
12576
12732
|
smtpHost: import("zod").ZodString;
|
12577
|
-
smtpPort: import("zod").
|
12578
|
-
smtpTlsPort: import("zod").
|
12733
|
+
smtpPort: import("zod").ZodNumber;
|
12734
|
+
smtpTlsPort: import("zod").ZodNumber;
|
12579
12735
|
useTlsForSmtp: import("zod").ZodBoolean;
|
12580
12736
|
imapHost: import("zod").ZodString;
|
12581
|
-
imapPort: import("zod").
|
12582
|
-
imapTlsPort: import("zod").
|
12737
|
+
imapPort: import("zod").ZodNumber;
|
12738
|
+
imapTlsPort: import("zod").ZodNumber;
|
12583
12739
|
useTlsForImap: import("zod").ZodBoolean;
|
12584
12740
|
}, "strip", import("zod").ZodTypeAny, {
|
12585
12741
|
id: string;
|
@@ -12588,12 +12744,12 @@ export declare const apiContract: {
|
|
12588
12744
|
updatedAt: Date;
|
12589
12745
|
deletedAt: Date | null;
|
12590
12746
|
smtpHost: string;
|
12591
|
-
smtpPort:
|
12592
|
-
smtpTlsPort:
|
12747
|
+
smtpPort: number;
|
12748
|
+
smtpTlsPort: number;
|
12593
12749
|
useTlsForSmtp: boolean;
|
12594
12750
|
imapHost: string;
|
12595
|
-
imapPort:
|
12596
|
-
imapTlsPort:
|
12751
|
+
imapPort: number;
|
12752
|
+
imapTlsPort: number;
|
12597
12753
|
useTlsForImap: boolean;
|
12598
12754
|
}, {
|
12599
12755
|
id: string;
|
@@ -12602,12 +12758,12 @@ export declare const apiContract: {
|
|
12602
12758
|
updatedAt: Date;
|
12603
12759
|
deletedAt: Date | null;
|
12604
12760
|
smtpHost: string;
|
12605
|
-
smtpPort:
|
12606
|
-
smtpTlsPort:
|
12761
|
+
smtpPort: number;
|
12762
|
+
smtpTlsPort: number;
|
12607
12763
|
useTlsForSmtp: boolean;
|
12608
12764
|
imapHost: string;
|
12609
|
-
imapPort:
|
12610
|
-
imapTlsPort:
|
12765
|
+
imapPort: number;
|
12766
|
+
imapTlsPort: number;
|
12611
12767
|
useTlsForImap: boolean;
|
12612
12768
|
}>;
|
12613
12769
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -12628,12 +12784,12 @@ export declare const apiContract: {
|
|
12628
12784
|
updatedAt: Date;
|
12629
12785
|
deletedAt: Date | null;
|
12630
12786
|
smtpHost: string;
|
12631
|
-
smtpPort:
|
12632
|
-
smtpTlsPort:
|
12787
|
+
smtpPort: number;
|
12788
|
+
smtpTlsPort: number;
|
12633
12789
|
useTlsForSmtp: boolean;
|
12634
12790
|
imapHost: string;
|
12635
|
-
imapPort:
|
12636
|
-
imapTlsPort:
|
12791
|
+
imapPort: number;
|
12792
|
+
imapTlsPort: number;
|
12637
12793
|
useTlsForImap: boolean;
|
12638
12794
|
};
|
12639
12795
|
}, {
|
@@ -12653,12 +12809,12 @@ export declare const apiContract: {
|
|
12653
12809
|
updatedAt: Date;
|
12654
12810
|
deletedAt: Date | null;
|
12655
12811
|
smtpHost: string;
|
12656
|
-
smtpPort:
|
12657
|
-
smtpTlsPort:
|
12812
|
+
smtpPort: number;
|
12813
|
+
smtpTlsPort: number;
|
12658
12814
|
useTlsForSmtp: boolean;
|
12659
12815
|
imapHost: string;
|
12660
|
-
imapPort:
|
12661
|
-
imapTlsPort:
|
12816
|
+
imapPort: number;
|
12817
|
+
imapTlsPort: number;
|
12662
12818
|
useTlsForImap: boolean;
|
12663
12819
|
};
|
12664
12820
|
}>;
|
@@ -12680,12 +12836,12 @@ export declare const apiContract: {
|
|
12680
12836
|
updatedAt: Date;
|
12681
12837
|
deletedAt: Date | null;
|
12682
12838
|
smtpHost: string;
|
12683
|
-
smtpPort:
|
12684
|
-
smtpTlsPort:
|
12839
|
+
smtpPort: number;
|
12840
|
+
smtpTlsPort: number;
|
12685
12841
|
useTlsForSmtp: boolean;
|
12686
12842
|
imapHost: string;
|
12687
|
-
imapPort:
|
12688
|
-
imapTlsPort:
|
12843
|
+
imapPort: number;
|
12844
|
+
imapTlsPort: number;
|
12689
12845
|
useTlsForImap: boolean;
|
12690
12846
|
};
|
12691
12847
|
};
|
@@ -12708,12 +12864,12 @@ export declare const apiContract: {
|
|
12708
12864
|
updatedAt: Date;
|
12709
12865
|
deletedAt: Date | null;
|
12710
12866
|
smtpHost: string;
|
12711
|
-
smtpPort:
|
12712
|
-
smtpTlsPort:
|
12867
|
+
smtpPort: number;
|
12868
|
+
smtpTlsPort: number;
|
12713
12869
|
useTlsForSmtp: boolean;
|
12714
12870
|
imapHost: string;
|
12715
|
-
imapPort:
|
12716
|
-
imapTlsPort:
|
12871
|
+
imapPort: number;
|
12872
|
+
imapTlsPort: number;
|
12717
12873
|
useTlsForImap: boolean;
|
12718
12874
|
};
|
12719
12875
|
};
|
@@ -12798,12 +12954,12 @@ export declare const apiContract: {
|
|
12798
12954
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
12799
12955
|
name: import("zod").ZodString;
|
12800
12956
|
smtpHost: import("zod").ZodString;
|
12801
|
-
smtpPort: import("zod").
|
12802
|
-
smtpTlsPort: import("zod").
|
12957
|
+
smtpPort: import("zod").ZodNumber;
|
12958
|
+
smtpTlsPort: import("zod").ZodNumber;
|
12803
12959
|
useTlsForSmtp: import("zod").ZodBoolean;
|
12804
12960
|
imapHost: import("zod").ZodString;
|
12805
|
-
imapPort: import("zod").
|
12806
|
-
imapTlsPort: import("zod").
|
12961
|
+
imapPort: import("zod").ZodNumber;
|
12962
|
+
imapTlsPort: import("zod").ZodNumber;
|
12807
12963
|
useTlsForImap: import("zod").ZodBoolean;
|
12808
12964
|
}, "strip", import("zod").ZodTypeAny, {
|
12809
12965
|
id: string;
|
@@ -12812,12 +12968,12 @@ export declare const apiContract: {
|
|
12812
12968
|
updatedAt: Date;
|
12813
12969
|
deletedAt: Date | null;
|
12814
12970
|
smtpHost: string;
|
12815
|
-
smtpPort:
|
12816
|
-
smtpTlsPort:
|
12971
|
+
smtpPort: number;
|
12972
|
+
smtpTlsPort: number;
|
12817
12973
|
useTlsForSmtp: boolean;
|
12818
12974
|
imapHost: string;
|
12819
|
-
imapPort:
|
12820
|
-
imapTlsPort:
|
12975
|
+
imapPort: number;
|
12976
|
+
imapTlsPort: number;
|
12821
12977
|
useTlsForImap: boolean;
|
12822
12978
|
}, {
|
12823
12979
|
id: string;
|
@@ -12826,12 +12982,12 @@ export declare const apiContract: {
|
|
12826
12982
|
updatedAt: Date;
|
12827
12983
|
deletedAt: Date | null;
|
12828
12984
|
smtpHost: string;
|
12829
|
-
smtpPort:
|
12830
|
-
smtpTlsPort:
|
12985
|
+
smtpPort: number;
|
12986
|
+
smtpTlsPort: number;
|
12831
12987
|
useTlsForSmtp: boolean;
|
12832
12988
|
imapHost: string;
|
12833
|
-
imapPort:
|
12834
|
-
imapTlsPort:
|
12989
|
+
imapPort: number;
|
12990
|
+
imapTlsPort: number;
|
12835
12991
|
useTlsForImap: boolean;
|
12836
12992
|
}>;
|
12837
12993
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -12852,12 +13008,12 @@ export declare const apiContract: {
|
|
12852
13008
|
updatedAt: Date;
|
12853
13009
|
deletedAt: Date | null;
|
12854
13010
|
smtpHost: string;
|
12855
|
-
smtpPort:
|
12856
|
-
smtpTlsPort:
|
13011
|
+
smtpPort: number;
|
13012
|
+
smtpTlsPort: number;
|
12857
13013
|
useTlsForSmtp: boolean;
|
12858
13014
|
imapHost: string;
|
12859
|
-
imapPort:
|
12860
|
-
imapTlsPort:
|
13015
|
+
imapPort: number;
|
13016
|
+
imapTlsPort: number;
|
12861
13017
|
useTlsForImap: boolean;
|
12862
13018
|
};
|
12863
13019
|
}, {
|
@@ -12877,12 +13033,12 @@ export declare const apiContract: {
|
|
12877
13033
|
updatedAt: Date;
|
12878
13034
|
deletedAt: Date | null;
|
12879
13035
|
smtpHost: string;
|
12880
|
-
smtpPort:
|
12881
|
-
smtpTlsPort:
|
13036
|
+
smtpPort: number;
|
13037
|
+
smtpTlsPort: number;
|
12882
13038
|
useTlsForSmtp: boolean;
|
12883
13039
|
imapHost: string;
|
12884
|
-
imapPort:
|
12885
|
-
imapTlsPort:
|
13040
|
+
imapPort: number;
|
13041
|
+
imapTlsPort: number;
|
12886
13042
|
useTlsForImap: boolean;
|
12887
13043
|
};
|
12888
13044
|
}>;
|
@@ -12904,12 +13060,12 @@ export declare const apiContract: {
|
|
12904
13060
|
updatedAt: Date;
|
12905
13061
|
deletedAt: Date | null;
|
12906
13062
|
smtpHost: string;
|
12907
|
-
smtpPort:
|
12908
|
-
smtpTlsPort:
|
13063
|
+
smtpPort: number;
|
13064
|
+
smtpTlsPort: number;
|
12909
13065
|
useTlsForSmtp: boolean;
|
12910
13066
|
imapHost: string;
|
12911
|
-
imapPort:
|
12912
|
-
imapTlsPort:
|
13067
|
+
imapPort: number;
|
13068
|
+
imapTlsPort: number;
|
12913
13069
|
useTlsForImap: boolean;
|
12914
13070
|
};
|
12915
13071
|
};
|
@@ -12932,12 +13088,12 @@ export declare const apiContract: {
|
|
12932
13088
|
updatedAt: Date;
|
12933
13089
|
deletedAt: Date | null;
|
12934
13090
|
smtpHost: string;
|
12935
|
-
smtpPort:
|
12936
|
-
smtpTlsPort:
|
13091
|
+
smtpPort: number;
|
13092
|
+
smtpTlsPort: number;
|
12937
13093
|
useTlsForSmtp: boolean;
|
12938
13094
|
imapHost: string;
|
12939
|
-
imapPort:
|
12940
|
-
imapTlsPort:
|
13095
|
+
imapPort: number;
|
13096
|
+
imapTlsPort: number;
|
12941
13097
|
useTlsForImap: boolean;
|
12942
13098
|
};
|
12943
13099
|
};
|
@@ -13022,12 +13178,12 @@ export declare const apiContract: {
|
|
13022
13178
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13023
13179
|
name: import("zod").ZodString;
|
13024
13180
|
smtpHost: import("zod").ZodString;
|
13025
|
-
smtpPort: import("zod").
|
13026
|
-
smtpTlsPort: import("zod").
|
13181
|
+
smtpPort: import("zod").ZodNumber;
|
13182
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13027
13183
|
useTlsForSmtp: import("zod").ZodBoolean;
|
13028
13184
|
imapHost: import("zod").ZodString;
|
13029
|
-
imapPort: import("zod").
|
13030
|
-
imapTlsPort: import("zod").
|
13185
|
+
imapPort: import("zod").ZodNumber;
|
13186
|
+
imapTlsPort: import("zod").ZodNumber;
|
13031
13187
|
useTlsForImap: import("zod").ZodBoolean;
|
13032
13188
|
}, "strip", import("zod").ZodTypeAny, {
|
13033
13189
|
id: string;
|
@@ -13036,12 +13192,12 @@ export declare const apiContract: {
|
|
13036
13192
|
updatedAt: Date;
|
13037
13193
|
deletedAt: Date | null;
|
13038
13194
|
smtpHost: string;
|
13039
|
-
smtpPort:
|
13040
|
-
smtpTlsPort:
|
13195
|
+
smtpPort: number;
|
13196
|
+
smtpTlsPort: number;
|
13041
13197
|
useTlsForSmtp: boolean;
|
13042
13198
|
imapHost: string;
|
13043
|
-
imapPort:
|
13044
|
-
imapTlsPort:
|
13199
|
+
imapPort: number;
|
13200
|
+
imapTlsPort: number;
|
13045
13201
|
useTlsForImap: boolean;
|
13046
13202
|
}, {
|
13047
13203
|
id: string;
|
@@ -13050,12 +13206,12 @@ export declare const apiContract: {
|
|
13050
13206
|
updatedAt: Date;
|
13051
13207
|
deletedAt: Date | null;
|
13052
13208
|
smtpHost: string;
|
13053
|
-
smtpPort:
|
13054
|
-
smtpTlsPort:
|
13209
|
+
smtpPort: number;
|
13210
|
+
smtpTlsPort: number;
|
13055
13211
|
useTlsForSmtp: boolean;
|
13056
13212
|
imapHost: string;
|
13057
|
-
imapPort:
|
13058
|
-
imapTlsPort:
|
13213
|
+
imapPort: number;
|
13214
|
+
imapTlsPort: number;
|
13059
13215
|
useTlsForImap: boolean;
|
13060
13216
|
}>;
|
13061
13217
|
state: import("zod").ZodUnion<[import("zod").ZodLiteral<"init">, import("zod").ZodLiteral<"syncing">, import("zod").ZodLiteral<"connecting">, import("zod").ZodLiteral<"connected">, import("zod").ZodLiteral<"disconnected">, import("zod").ZodLiteral<"authenticationError">, import("zod").ZodLiteral<"connectError">, import("zod").ZodLiteral<"unset">]>;
|
@@ -13076,12 +13232,12 @@ export declare const apiContract: {
|
|
13076
13232
|
updatedAt: Date;
|
13077
13233
|
deletedAt: Date | null;
|
13078
13234
|
smtpHost: string;
|
13079
|
-
smtpPort:
|
13080
|
-
smtpTlsPort:
|
13235
|
+
smtpPort: number;
|
13236
|
+
smtpTlsPort: number;
|
13081
13237
|
useTlsForSmtp: boolean;
|
13082
13238
|
imapHost: string;
|
13083
|
-
imapPort:
|
13084
|
-
imapTlsPort:
|
13239
|
+
imapPort: number;
|
13240
|
+
imapTlsPort: number;
|
13085
13241
|
useTlsForImap: boolean;
|
13086
13242
|
};
|
13087
13243
|
}, {
|
@@ -13101,12 +13257,12 @@ export declare const apiContract: {
|
|
13101
13257
|
updatedAt: Date;
|
13102
13258
|
deletedAt: Date | null;
|
13103
13259
|
smtpHost: string;
|
13104
|
-
smtpPort:
|
13105
|
-
smtpTlsPort:
|
13260
|
+
smtpPort: number;
|
13261
|
+
smtpTlsPort: number;
|
13106
13262
|
useTlsForSmtp: boolean;
|
13107
13263
|
imapHost: string;
|
13108
|
-
imapPort:
|
13109
|
-
imapTlsPort:
|
13264
|
+
imapPort: number;
|
13265
|
+
imapTlsPort: number;
|
13110
13266
|
useTlsForImap: boolean;
|
13111
13267
|
};
|
13112
13268
|
}>;
|
@@ -13128,12 +13284,12 @@ export declare const apiContract: {
|
|
13128
13284
|
updatedAt: Date;
|
13129
13285
|
deletedAt: Date | null;
|
13130
13286
|
smtpHost: string;
|
13131
|
-
smtpPort:
|
13132
|
-
smtpTlsPort:
|
13287
|
+
smtpPort: number;
|
13288
|
+
smtpTlsPort: number;
|
13133
13289
|
useTlsForSmtp: boolean;
|
13134
13290
|
imapHost: string;
|
13135
|
-
imapPort:
|
13136
|
-
imapTlsPort:
|
13291
|
+
imapPort: number;
|
13292
|
+
imapTlsPort: number;
|
13137
13293
|
useTlsForImap: boolean;
|
13138
13294
|
};
|
13139
13295
|
};
|
@@ -13156,12 +13312,12 @@ export declare const apiContract: {
|
|
13156
13312
|
updatedAt: Date;
|
13157
13313
|
deletedAt: Date | null;
|
13158
13314
|
smtpHost: string;
|
13159
|
-
smtpPort:
|
13160
|
-
smtpTlsPort:
|
13315
|
+
smtpPort: number;
|
13316
|
+
smtpTlsPort: number;
|
13161
13317
|
useTlsForSmtp: boolean;
|
13162
13318
|
imapHost: string;
|
13163
|
-
imapPort:
|
13164
|
-
imapTlsPort:
|
13319
|
+
imapPort: number;
|
13320
|
+
imapTlsPort: number;
|
13165
13321
|
useTlsForImap: boolean;
|
13166
13322
|
};
|
13167
13323
|
};
|
@@ -13260,7 +13416,37 @@ export declare const apiContract: {
|
|
13260
13416
|
};
|
13261
13417
|
server: {
|
13262
13418
|
create: {
|
13263
|
-
body:
|
13419
|
+
body: import("zod").ZodObject<{
|
13420
|
+
name: import("zod").ZodString;
|
13421
|
+
smtpHost: import("zod").ZodString;
|
13422
|
+
smtpPort: import("zod").ZodNumber;
|
13423
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13424
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
13425
|
+
imapHost: import("zod").ZodString;
|
13426
|
+
imapPort: import("zod").ZodNumber;
|
13427
|
+
imapTlsPort: import("zod").ZodNumber;
|
13428
|
+
useTlsForImap: import("zod").ZodBoolean;
|
13429
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13430
|
+
name: string;
|
13431
|
+
smtpHost: string;
|
13432
|
+
smtpPort: number;
|
13433
|
+
smtpTlsPort: number;
|
13434
|
+
useTlsForSmtp: boolean;
|
13435
|
+
imapHost: string;
|
13436
|
+
imapPort: number;
|
13437
|
+
imapTlsPort: number;
|
13438
|
+
useTlsForImap: boolean;
|
13439
|
+
}, {
|
13440
|
+
name: string;
|
13441
|
+
smtpHost: string;
|
13442
|
+
smtpPort: number;
|
13443
|
+
smtpTlsPort: number;
|
13444
|
+
useTlsForSmtp: boolean;
|
13445
|
+
imapHost: string;
|
13446
|
+
imapPort: number;
|
13447
|
+
imapTlsPort: number;
|
13448
|
+
useTlsForImap: boolean;
|
13449
|
+
}>;
|
13264
13450
|
summary: "Register a new mail server";
|
13265
13451
|
method: "POST";
|
13266
13452
|
responses: {
|
@@ -13294,20 +13480,90 @@ export declare const apiContract: {
|
|
13294
13480
|
message: string;
|
13295
13481
|
error?: any;
|
13296
13482
|
}>;
|
13297
|
-
|
13483
|
+
201: import("zod").ZodObject<{
|
13298
13484
|
requestId: import("zod").ZodString;
|
13299
|
-
|
13485
|
+
data: import("zod").ZodObject<{
|
13486
|
+
id: import("zod").ZodString;
|
13487
|
+
createdAt: import("zod").ZodDate;
|
13488
|
+
updatedAt: import("zod").ZodDate;
|
13489
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13490
|
+
name: import("zod").ZodString;
|
13491
|
+
smtpHost: import("zod").ZodString;
|
13492
|
+
smtpPort: import("zod").ZodNumber;
|
13493
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13494
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
13495
|
+
imapHost: import("zod").ZodString;
|
13496
|
+
imapPort: import("zod").ZodNumber;
|
13497
|
+
imapTlsPort: import("zod").ZodNumber;
|
13498
|
+
useTlsForImap: import("zod").ZodBoolean;
|
13499
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13500
|
+
id: string;
|
13501
|
+
name: string;
|
13502
|
+
createdAt: Date;
|
13503
|
+
updatedAt: Date;
|
13504
|
+
deletedAt: Date | null;
|
13505
|
+
smtpHost: string;
|
13506
|
+
smtpPort: number;
|
13507
|
+
smtpTlsPort: number;
|
13508
|
+
useTlsForSmtp: boolean;
|
13509
|
+
imapHost: string;
|
13510
|
+
imapPort: number;
|
13511
|
+
imapTlsPort: number;
|
13512
|
+
useTlsForImap: boolean;
|
13513
|
+
}, {
|
13514
|
+
id: string;
|
13515
|
+
name: string;
|
13516
|
+
createdAt: Date;
|
13517
|
+
updatedAt: Date;
|
13518
|
+
deletedAt: Date | null;
|
13519
|
+
smtpHost: string;
|
13520
|
+
smtpPort: number;
|
13521
|
+
smtpTlsPort: number;
|
13522
|
+
useTlsForSmtp: boolean;
|
13523
|
+
imapHost: string;
|
13524
|
+
imapPort: number;
|
13525
|
+
imapTlsPort: number;
|
13526
|
+
useTlsForImap: boolean;
|
13527
|
+
}>;
|
13300
13528
|
}, "strip", import("zod").ZodTypeAny, {
|
13301
|
-
|
13529
|
+
data: {
|
13530
|
+
id: string;
|
13531
|
+
name: string;
|
13532
|
+
createdAt: Date;
|
13533
|
+
updatedAt: Date;
|
13534
|
+
deletedAt: Date | null;
|
13535
|
+
smtpHost: string;
|
13536
|
+
smtpPort: number;
|
13537
|
+
smtpTlsPort: number;
|
13538
|
+
useTlsForSmtp: boolean;
|
13539
|
+
imapHost: string;
|
13540
|
+
imapPort: number;
|
13541
|
+
imapTlsPort: number;
|
13542
|
+
useTlsForImap: boolean;
|
13543
|
+
};
|
13302
13544
|
requestId: string;
|
13303
13545
|
}, {
|
13304
|
-
|
13546
|
+
data: {
|
13547
|
+
id: string;
|
13548
|
+
name: string;
|
13549
|
+
createdAt: Date;
|
13550
|
+
updatedAt: Date;
|
13551
|
+
deletedAt: Date | null;
|
13552
|
+
smtpHost: string;
|
13553
|
+
smtpPort: number;
|
13554
|
+
smtpTlsPort: number;
|
13555
|
+
useTlsForSmtp: boolean;
|
13556
|
+
imapHost: string;
|
13557
|
+
imapPort: number;
|
13558
|
+
imapTlsPort: number;
|
13559
|
+
useTlsForImap: boolean;
|
13560
|
+
};
|
13305
13561
|
requestId: string;
|
13306
13562
|
}>;
|
13307
13563
|
};
|
13308
13564
|
path: "mail/server/";
|
13309
13565
|
};
|
13310
|
-
|
13566
|
+
getById: {
|
13311
13567
|
summary: "Get a mail server by id";
|
13312
13568
|
method: "GET";
|
13313
13569
|
pathParams: import("zod").ZodObject<{
|
@@ -13350,20 +13606,237 @@ export declare const apiContract: {
|
|
13350
13606
|
}>;
|
13351
13607
|
200: import("zod").ZodObject<{
|
13352
13608
|
requestId: import("zod").ZodString;
|
13609
|
+
data: import("zod").ZodObject<{
|
13610
|
+
id: import("zod").ZodString;
|
13611
|
+
createdAt: import("zod").ZodDate;
|
13612
|
+
updatedAt: import("zod").ZodDate;
|
13613
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13614
|
+
name: import("zod").ZodString;
|
13615
|
+
smtpHost: import("zod").ZodString;
|
13616
|
+
smtpPort: import("zod").ZodNumber;
|
13617
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13618
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
13619
|
+
imapHost: import("zod").ZodString;
|
13620
|
+
imapPort: import("zod").ZodNumber;
|
13621
|
+
imapTlsPort: import("zod").ZodNumber;
|
13622
|
+
useTlsForImap: import("zod").ZodBoolean;
|
13623
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13624
|
+
id: string;
|
13625
|
+
name: string;
|
13626
|
+
createdAt: Date;
|
13627
|
+
updatedAt: Date;
|
13628
|
+
deletedAt: Date | null;
|
13629
|
+
smtpHost: string;
|
13630
|
+
smtpPort: number;
|
13631
|
+
smtpTlsPort: number;
|
13632
|
+
useTlsForSmtp: boolean;
|
13633
|
+
imapHost: string;
|
13634
|
+
imapPort: number;
|
13635
|
+
imapTlsPort: number;
|
13636
|
+
useTlsForImap: boolean;
|
13637
|
+
}, {
|
13638
|
+
id: string;
|
13639
|
+
name: string;
|
13640
|
+
createdAt: Date;
|
13641
|
+
updatedAt: Date;
|
13642
|
+
deletedAt: Date | null;
|
13643
|
+
smtpHost: string;
|
13644
|
+
smtpPort: number;
|
13645
|
+
smtpTlsPort: number;
|
13646
|
+
useTlsForSmtp: boolean;
|
13647
|
+
imapHost: string;
|
13648
|
+
imapPort: number;
|
13649
|
+
imapTlsPort: number;
|
13650
|
+
useTlsForImap: boolean;
|
13651
|
+
}>;
|
13652
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13653
|
+
data: {
|
13654
|
+
id: string;
|
13655
|
+
name: string;
|
13656
|
+
createdAt: Date;
|
13657
|
+
updatedAt: Date;
|
13658
|
+
deletedAt: Date | null;
|
13659
|
+
smtpHost: string;
|
13660
|
+
smtpPort: number;
|
13661
|
+
smtpTlsPort: number;
|
13662
|
+
useTlsForSmtp: boolean;
|
13663
|
+
imapHost: string;
|
13664
|
+
imapPort: number;
|
13665
|
+
imapTlsPort: number;
|
13666
|
+
useTlsForImap: boolean;
|
13667
|
+
};
|
13668
|
+
requestId: string;
|
13669
|
+
}, {
|
13670
|
+
data: {
|
13671
|
+
id: string;
|
13672
|
+
name: string;
|
13673
|
+
createdAt: Date;
|
13674
|
+
updatedAt: Date;
|
13675
|
+
deletedAt: Date | null;
|
13676
|
+
smtpHost: string;
|
13677
|
+
smtpPort: number;
|
13678
|
+
smtpTlsPort: number;
|
13679
|
+
useTlsForSmtp: boolean;
|
13680
|
+
imapHost: string;
|
13681
|
+
imapPort: number;
|
13682
|
+
imapTlsPort: number;
|
13683
|
+
useTlsForImap: boolean;
|
13684
|
+
};
|
13685
|
+
requestId: string;
|
13686
|
+
}>;
|
13687
|
+
};
|
13688
|
+
path: "mail/server/:id";
|
13689
|
+
};
|
13690
|
+
getAll: {
|
13691
|
+
summary: "Get all mail servers";
|
13692
|
+
method: "GET";
|
13693
|
+
responses: {
|
13694
|
+
401: import("zod").ZodObject<{
|
13353
13695
|
message: import("zod").ZodString;
|
13696
|
+
error: import("zod").ZodAny;
|
13354
13697
|
}, "strip", import("zod").ZodTypeAny, {
|
13355
13698
|
message: string;
|
13356
|
-
|
13699
|
+
error?: any;
|
13700
|
+
}, {
|
13701
|
+
message: string;
|
13702
|
+
error?: any;
|
13703
|
+
}>;
|
13704
|
+
404: import("zod").ZodObject<{
|
13705
|
+
message: import("zod").ZodString;
|
13706
|
+
error: import("zod").ZodAny;
|
13707
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13708
|
+
message: string;
|
13709
|
+
error?: any;
|
13710
|
+
}, {
|
13711
|
+
message: string;
|
13712
|
+
error?: any;
|
13713
|
+
}>;
|
13714
|
+
422: import("zod").ZodObject<{
|
13715
|
+
message: import("zod").ZodString;
|
13716
|
+
error: import("zod").ZodAny;
|
13717
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13718
|
+
message: string;
|
13719
|
+
error?: any;
|
13357
13720
|
}, {
|
13358
13721
|
message: string;
|
13722
|
+
error?: any;
|
13723
|
+
}>;
|
13724
|
+
200: import("zod").ZodObject<{
|
13725
|
+
requestId: import("zod").ZodString;
|
13726
|
+
data: import("zod").ZodArray<import("zod").ZodObject<{
|
13727
|
+
id: import("zod").ZodString;
|
13728
|
+
createdAt: import("zod").ZodDate;
|
13729
|
+
updatedAt: import("zod").ZodDate;
|
13730
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13731
|
+
name: import("zod").ZodString;
|
13732
|
+
smtpHost: import("zod").ZodString;
|
13733
|
+
smtpPort: import("zod").ZodNumber;
|
13734
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13735
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
13736
|
+
imapHost: import("zod").ZodString;
|
13737
|
+
imapPort: import("zod").ZodNumber;
|
13738
|
+
imapTlsPort: import("zod").ZodNumber;
|
13739
|
+
useTlsForImap: import("zod").ZodBoolean;
|
13740
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13741
|
+
id: string;
|
13742
|
+
name: string;
|
13743
|
+
createdAt: Date;
|
13744
|
+
updatedAt: Date;
|
13745
|
+
deletedAt: Date | null;
|
13746
|
+
smtpHost: string;
|
13747
|
+
smtpPort: number;
|
13748
|
+
smtpTlsPort: number;
|
13749
|
+
useTlsForSmtp: boolean;
|
13750
|
+
imapHost: string;
|
13751
|
+
imapPort: number;
|
13752
|
+
imapTlsPort: number;
|
13753
|
+
useTlsForImap: boolean;
|
13754
|
+
}, {
|
13755
|
+
id: string;
|
13756
|
+
name: string;
|
13757
|
+
createdAt: Date;
|
13758
|
+
updatedAt: Date;
|
13759
|
+
deletedAt: Date | null;
|
13760
|
+
smtpHost: string;
|
13761
|
+
smtpPort: number;
|
13762
|
+
smtpTlsPort: number;
|
13763
|
+
useTlsForSmtp: boolean;
|
13764
|
+
imapHost: string;
|
13765
|
+
imapPort: number;
|
13766
|
+
imapTlsPort: number;
|
13767
|
+
useTlsForImap: boolean;
|
13768
|
+
}>, "many">;
|
13769
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13770
|
+
data: {
|
13771
|
+
id: string;
|
13772
|
+
name: string;
|
13773
|
+
createdAt: Date;
|
13774
|
+
updatedAt: Date;
|
13775
|
+
deletedAt: Date | null;
|
13776
|
+
smtpHost: string;
|
13777
|
+
smtpPort: number;
|
13778
|
+
smtpTlsPort: number;
|
13779
|
+
useTlsForSmtp: boolean;
|
13780
|
+
imapHost: string;
|
13781
|
+
imapPort: number;
|
13782
|
+
imapTlsPort: number;
|
13783
|
+
useTlsForImap: boolean;
|
13784
|
+
}[];
|
13785
|
+
requestId: string;
|
13786
|
+
}, {
|
13787
|
+
data: {
|
13788
|
+
id: string;
|
13789
|
+
name: string;
|
13790
|
+
createdAt: Date;
|
13791
|
+
updatedAt: Date;
|
13792
|
+
deletedAt: Date | null;
|
13793
|
+
smtpHost: string;
|
13794
|
+
smtpPort: number;
|
13795
|
+
smtpTlsPort: number;
|
13796
|
+
useTlsForSmtp: boolean;
|
13797
|
+
imapHost: string;
|
13798
|
+
imapPort: number;
|
13799
|
+
imapTlsPort: number;
|
13800
|
+
useTlsForImap: boolean;
|
13801
|
+
}[];
|
13359
13802
|
requestId: string;
|
13360
13803
|
}>;
|
13361
13804
|
};
|
13362
|
-
path: "mail/server
|
13805
|
+
path: "mail/server/";
|
13363
13806
|
};
|
13364
13807
|
update: {
|
13365
|
-
body:
|
13366
|
-
|
13808
|
+
body: import("zod").ZodObject<{
|
13809
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
13810
|
+
smtpHost: import("zod").ZodOptional<import("zod").ZodString>;
|
13811
|
+
smtpPort: import("zod").ZodOptional<import("zod").ZodNumber>;
|
13812
|
+
smtpTlsPort: import("zod").ZodOptional<import("zod").ZodNumber>;
|
13813
|
+
useTlsForSmtp: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
13814
|
+
imapHost: import("zod").ZodOptional<import("zod").ZodString>;
|
13815
|
+
imapPort: import("zod").ZodOptional<import("zod").ZodNumber>;
|
13816
|
+
imapTlsPort: import("zod").ZodOptional<import("zod").ZodNumber>;
|
13817
|
+
useTlsForImap: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
13818
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13819
|
+
name?: string | undefined;
|
13820
|
+
smtpHost?: string | undefined;
|
13821
|
+
smtpPort?: number | undefined;
|
13822
|
+
smtpTlsPort?: number | undefined;
|
13823
|
+
useTlsForSmtp?: boolean | undefined;
|
13824
|
+
imapHost?: string | undefined;
|
13825
|
+
imapPort?: number | undefined;
|
13826
|
+
imapTlsPort?: number | undefined;
|
13827
|
+
useTlsForImap?: boolean | undefined;
|
13828
|
+
}, {
|
13829
|
+
name?: string | undefined;
|
13830
|
+
smtpHost?: string | undefined;
|
13831
|
+
smtpPort?: number | undefined;
|
13832
|
+
smtpTlsPort?: number | undefined;
|
13833
|
+
useTlsForSmtp?: boolean | undefined;
|
13834
|
+
imapHost?: string | undefined;
|
13835
|
+
imapPort?: number | undefined;
|
13836
|
+
imapTlsPort?: number | undefined;
|
13837
|
+
useTlsForImap?: boolean | undefined;
|
13838
|
+
}>;
|
13839
|
+
summary: "Update a mail server";
|
13367
13840
|
method: "PATCH";
|
13368
13841
|
pathParams: import("zod").ZodObject<{
|
13369
13842
|
id: import("zod").ZodString;
|
@@ -13405,12 +13878,82 @@ export declare const apiContract: {
|
|
13405
13878
|
}>;
|
13406
13879
|
200: import("zod").ZodObject<{
|
13407
13880
|
requestId: import("zod").ZodString;
|
13408
|
-
|
13881
|
+
data: import("zod").ZodObject<{
|
13882
|
+
id: import("zod").ZodString;
|
13883
|
+
createdAt: import("zod").ZodDate;
|
13884
|
+
updatedAt: import("zod").ZodDate;
|
13885
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13886
|
+
name: import("zod").ZodString;
|
13887
|
+
smtpHost: import("zod").ZodString;
|
13888
|
+
smtpPort: import("zod").ZodNumber;
|
13889
|
+
smtpTlsPort: import("zod").ZodNumber;
|
13890
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
13891
|
+
imapHost: import("zod").ZodString;
|
13892
|
+
imapPort: import("zod").ZodNumber;
|
13893
|
+
imapTlsPort: import("zod").ZodNumber;
|
13894
|
+
useTlsForImap: import("zod").ZodBoolean;
|
13895
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13896
|
+
id: string;
|
13897
|
+
name: string;
|
13898
|
+
createdAt: Date;
|
13899
|
+
updatedAt: Date;
|
13900
|
+
deletedAt: Date | null;
|
13901
|
+
smtpHost: string;
|
13902
|
+
smtpPort: number;
|
13903
|
+
smtpTlsPort: number;
|
13904
|
+
useTlsForSmtp: boolean;
|
13905
|
+
imapHost: string;
|
13906
|
+
imapPort: number;
|
13907
|
+
imapTlsPort: number;
|
13908
|
+
useTlsForImap: boolean;
|
13909
|
+
}, {
|
13910
|
+
id: string;
|
13911
|
+
name: string;
|
13912
|
+
createdAt: Date;
|
13913
|
+
updatedAt: Date;
|
13914
|
+
deletedAt: Date | null;
|
13915
|
+
smtpHost: string;
|
13916
|
+
smtpPort: number;
|
13917
|
+
smtpTlsPort: number;
|
13918
|
+
useTlsForSmtp: boolean;
|
13919
|
+
imapHost: string;
|
13920
|
+
imapPort: number;
|
13921
|
+
imapTlsPort: number;
|
13922
|
+
useTlsForImap: boolean;
|
13923
|
+
}>;
|
13409
13924
|
}, "strip", import("zod").ZodTypeAny, {
|
13410
|
-
|
13925
|
+
data: {
|
13926
|
+
id: string;
|
13927
|
+
name: string;
|
13928
|
+
createdAt: Date;
|
13929
|
+
updatedAt: Date;
|
13930
|
+
deletedAt: Date | null;
|
13931
|
+
smtpHost: string;
|
13932
|
+
smtpPort: number;
|
13933
|
+
smtpTlsPort: number;
|
13934
|
+
useTlsForSmtp: boolean;
|
13935
|
+
imapHost: string;
|
13936
|
+
imapPort: number;
|
13937
|
+
imapTlsPort: number;
|
13938
|
+
useTlsForImap: boolean;
|
13939
|
+
};
|
13411
13940
|
requestId: string;
|
13412
13941
|
}, {
|
13413
|
-
|
13942
|
+
data: {
|
13943
|
+
id: string;
|
13944
|
+
name: string;
|
13945
|
+
createdAt: Date;
|
13946
|
+
updatedAt: Date;
|
13947
|
+
deletedAt: Date | null;
|
13948
|
+
smtpHost: string;
|
13949
|
+
smtpPort: number;
|
13950
|
+
smtpTlsPort: number;
|
13951
|
+
useTlsForSmtp: boolean;
|
13952
|
+
imapHost: string;
|
13953
|
+
imapPort: number;
|
13954
|
+
imapTlsPort: number;
|
13955
|
+
useTlsForImap: boolean;
|
13956
|
+
};
|
13414
13957
|
requestId: string;
|
13415
13958
|
}>;
|
13416
13959
|
};
|
@@ -13418,8 +13961,8 @@ export declare const apiContract: {
|
|
13418
13961
|
};
|
13419
13962
|
delete: {
|
13420
13963
|
body: null;
|
13421
|
-
summary: "Delete a mail server
|
13422
|
-
method: "
|
13964
|
+
summary: "Delete a mail server";
|
13965
|
+
method: "DELETE";
|
13423
13966
|
pathParams: import("zod").ZodObject<{
|
13424
13967
|
id: import("zod").ZodString;
|
13425
13968
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -13460,12 +14003,82 @@ export declare const apiContract: {
|
|
13460
14003
|
}>;
|
13461
14004
|
200: import("zod").ZodObject<{
|
13462
14005
|
requestId: import("zod").ZodString;
|
13463
|
-
|
14006
|
+
data: import("zod").ZodObject<{
|
14007
|
+
id: import("zod").ZodString;
|
14008
|
+
createdAt: import("zod").ZodDate;
|
14009
|
+
updatedAt: import("zod").ZodDate;
|
14010
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
14011
|
+
name: import("zod").ZodString;
|
14012
|
+
smtpHost: import("zod").ZodString;
|
14013
|
+
smtpPort: import("zod").ZodNumber;
|
14014
|
+
smtpTlsPort: import("zod").ZodNumber;
|
14015
|
+
useTlsForSmtp: import("zod").ZodBoolean;
|
14016
|
+
imapHost: import("zod").ZodString;
|
14017
|
+
imapPort: import("zod").ZodNumber;
|
14018
|
+
imapTlsPort: import("zod").ZodNumber;
|
14019
|
+
useTlsForImap: import("zod").ZodBoolean;
|
14020
|
+
}, "strip", import("zod").ZodTypeAny, {
|
14021
|
+
id: string;
|
14022
|
+
name: string;
|
14023
|
+
createdAt: Date;
|
14024
|
+
updatedAt: Date;
|
14025
|
+
deletedAt: Date | null;
|
14026
|
+
smtpHost: string;
|
14027
|
+
smtpPort: number;
|
14028
|
+
smtpTlsPort: number;
|
14029
|
+
useTlsForSmtp: boolean;
|
14030
|
+
imapHost: string;
|
14031
|
+
imapPort: number;
|
14032
|
+
imapTlsPort: number;
|
14033
|
+
useTlsForImap: boolean;
|
14034
|
+
}, {
|
14035
|
+
id: string;
|
14036
|
+
name: string;
|
14037
|
+
createdAt: Date;
|
14038
|
+
updatedAt: Date;
|
14039
|
+
deletedAt: Date | null;
|
14040
|
+
smtpHost: string;
|
14041
|
+
smtpPort: number;
|
14042
|
+
smtpTlsPort: number;
|
14043
|
+
useTlsForSmtp: boolean;
|
14044
|
+
imapHost: string;
|
14045
|
+
imapPort: number;
|
14046
|
+
imapTlsPort: number;
|
14047
|
+
useTlsForImap: boolean;
|
14048
|
+
}>;
|
13464
14049
|
}, "strip", import("zod").ZodTypeAny, {
|
13465
|
-
|
14050
|
+
data: {
|
14051
|
+
id: string;
|
14052
|
+
name: string;
|
14053
|
+
createdAt: Date;
|
14054
|
+
updatedAt: Date;
|
14055
|
+
deletedAt: Date | null;
|
14056
|
+
smtpHost: string;
|
14057
|
+
smtpPort: number;
|
14058
|
+
smtpTlsPort: number;
|
14059
|
+
useTlsForSmtp: boolean;
|
14060
|
+
imapHost: string;
|
14061
|
+
imapPort: number;
|
14062
|
+
imapTlsPort: number;
|
14063
|
+
useTlsForImap: boolean;
|
14064
|
+
};
|
13466
14065
|
requestId: string;
|
13467
14066
|
}, {
|
13468
|
-
|
14067
|
+
data: {
|
14068
|
+
id: string;
|
14069
|
+
name: string;
|
14070
|
+
createdAt: Date;
|
14071
|
+
updatedAt: Date;
|
14072
|
+
deletedAt: Date | null;
|
14073
|
+
smtpHost: string;
|
14074
|
+
smtpPort: number;
|
14075
|
+
smtpTlsPort: number;
|
14076
|
+
useTlsForSmtp: boolean;
|
14077
|
+
imapHost: string;
|
14078
|
+
imapPort: number;
|
14079
|
+
imapTlsPort: number;
|
14080
|
+
useTlsForImap: boolean;
|
14081
|
+
};
|
13469
14082
|
requestId: string;
|
13470
14083
|
}>;
|
13471
14084
|
};
|
@@ -25580,7 +26193,7 @@ export declare const apiContract: {
|
|
25580
26193
|
responses: {
|
25581
26194
|
201: import("zod").ZodObject<{
|
25582
26195
|
requestId: import("zod").ZodString;
|
25583
|
-
|
26196
|
+
user: import("zod").ZodObject<{
|
25584
26197
|
id: import("zod").ZodString;
|
25585
26198
|
createdAt: import("zod").ZodDate;
|
25586
26199
|
updatedAt: import("zod").ZodDate;
|
@@ -25785,7 +26398,7 @@ export declare const apiContract: {
|
|
25785
26398
|
};
|
25786
26399
|
}>;
|
25787
26400
|
}, "strip", import("zod").ZodTypeAny, {
|
25788
|
-
|
26401
|
+
user: {
|
25789
26402
|
id: string;
|
25790
26403
|
address: string | null;
|
25791
26404
|
name: string;
|
@@ -25831,7 +26444,7 @@ export declare const apiContract: {
|
|
25831
26444
|
};
|
25832
26445
|
requestId: string;
|
25833
26446
|
}, {
|
25834
|
-
|
26447
|
+
user: {
|
25835
26448
|
id: string;
|
25836
26449
|
address: string | null;
|
25837
26450
|
name: string;
|