@kl1/contracts 1.1.24-uat → 1.1.24
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 +2 -56
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -56
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +799 -0
- package/dist/src/business-calendar/index.d.ts.map +1 -0
- package/dist/src/business-calendar/schema.d.ts +172 -0
- package/dist/src/business-calendar/schema.d.ts.map +1 -0
- package/dist/src/business-calendar/validation.d.ts +210 -0
- package/dist/src/business-calendar/validation.d.ts.map +1 -0
- package/dist/src/contract.d.ts +3 -2213
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +3 -2213
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/message-contract.d.ts +1 -2045
- package/dist/src/mail/message-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +2 -170
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/message-validation.schema.d.ts +0 -3
- package/dist/src/mail/schemas/message-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/message.schema.d.ts +0 -6
- package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +2 -58
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +0 -46
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +7295 -0
- package/dist/src/workflow-rule/index.d.ts.map +1 -0
- package/dist/src/workflow-rule/schema.d.ts +27 -0
- package/dist/src/workflow-rule/schema.d.ts.map +1 -0
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -677,7 +677,7 @@ export declare const apiContract: {
|
|
677
677
|
date?: string | undefined;
|
678
678
|
contacts?: string[] | undefined;
|
679
679
|
assignees?: string[] | undefined;
|
680
|
-
level1?: "open" | "close" | "
|
680
|
+
level1?: "open" | "close" | "inbox" | "sent" | "scheduled" | "starred" | undefined;
|
681
681
|
level2?: "all" | "other" | "unassign" | "mine" | undefined;
|
682
682
|
}, {
|
683
683
|
page?: number | undefined;
|
@@ -691,7 +691,7 @@ export declare const apiContract: {
|
|
691
691
|
date?: string | undefined;
|
692
692
|
contacts?: string[] | undefined;
|
693
693
|
assignees?: string[] | undefined;
|
694
|
-
level1?: "open" | "close" | "
|
694
|
+
level1?: "open" | "close" | "inbox" | "sent" | "scheduled" | "starred" | undefined;
|
695
695
|
level2?: "all" | "other" | "unassign" | "mine" | undefined;
|
696
696
|
}>;
|
697
697
|
responses: {
|
@@ -845,8 +845,6 @@ export declare const apiContract: {
|
|
845
845
|
date: import("zod").ZodDate;
|
846
846
|
action: import("zod").ZodString;
|
847
847
|
unseen: import("zod").ZodBoolean;
|
848
|
-
sendAt: import("zod").ZodDate;
|
849
|
-
starred: import("zod").ZodBoolean;
|
850
848
|
seemsLikeNew: import("zod").ZodBoolean;
|
851
849
|
from: import("zod").ZodArray<import("zod").ZodObject<{
|
852
850
|
id: import("zod").ZodString;
|
@@ -1045,8 +1043,6 @@ export declare const apiContract: {
|
|
1045
1043
|
emailEngineMessageId: string;
|
1046
1044
|
emailEngineReplyTo: string | null;
|
1047
1045
|
unseen: boolean;
|
1048
|
-
sendAt: Date;
|
1049
|
-
starred: boolean;
|
1050
1046
|
seemsLikeNew: boolean;
|
1051
1047
|
from: {
|
1052
1048
|
id: string;
|
@@ -1121,8 +1117,6 @@ export declare const apiContract: {
|
|
1121
1117
|
emailEngineMessageId: string;
|
1122
1118
|
emailEngineReplyTo: string | null;
|
1123
1119
|
unseen: boolean;
|
1124
|
-
sendAt: Date;
|
1125
|
-
starred: boolean;
|
1126
1120
|
seemsLikeNew: boolean;
|
1127
1121
|
from: {
|
1128
1122
|
id: string;
|
@@ -1198,8 +1192,6 @@ export declare const apiContract: {
|
|
1198
1192
|
date: import("zod").ZodDate;
|
1199
1193
|
action: import("zod").ZodString;
|
1200
1194
|
unseen: import("zod").ZodBoolean;
|
1201
|
-
sendAt: import("zod").ZodDate;
|
1202
|
-
starred: import("zod").ZodBoolean;
|
1203
1195
|
seemsLikeNew: import("zod").ZodBoolean;
|
1204
1196
|
from: import("zod").ZodArray<import("zod").ZodObject<{
|
1205
1197
|
id: import("zod").ZodString;
|
@@ -1398,8 +1390,6 @@ export declare const apiContract: {
|
|
1398
1390
|
emailEngineMessageId: string;
|
1399
1391
|
emailEngineReplyTo: string | null;
|
1400
1392
|
unseen: boolean;
|
1401
|
-
sendAt: Date;
|
1402
|
-
starred: boolean;
|
1403
1393
|
seemsLikeNew: boolean;
|
1404
1394
|
from: {
|
1405
1395
|
id: string;
|
@@ -1474,8 +1464,6 @@ export declare const apiContract: {
|
|
1474
1464
|
emailEngineMessageId: string;
|
1475
1465
|
emailEngineReplyTo: string | null;
|
1476
1466
|
unseen: boolean;
|
1477
|
-
sendAt: Date;
|
1478
|
-
starred: boolean;
|
1479
1467
|
seemsLikeNew: boolean;
|
1480
1468
|
from: {
|
1481
1469
|
id: string;
|
@@ -1604,8 +1592,6 @@ export declare const apiContract: {
|
|
1604
1592
|
date: import("zod").ZodDate;
|
1605
1593
|
action: import("zod").ZodString;
|
1606
1594
|
unseen: import("zod").ZodBoolean;
|
1607
|
-
sendAt: import("zod").ZodDate;
|
1608
|
-
starred: import("zod").ZodBoolean;
|
1609
1595
|
seemsLikeNew: import("zod").ZodBoolean;
|
1610
1596
|
from: import("zod").ZodArray<import("zod").ZodObject<{
|
1611
1597
|
id: import("zod").ZodString;
|
@@ -1804,8 +1790,6 @@ export declare const apiContract: {
|
|
1804
1790
|
emailEngineMessageId: string;
|
1805
1791
|
emailEngineReplyTo: string | null;
|
1806
1792
|
unseen: boolean;
|
1807
|
-
sendAt: Date;
|
1808
|
-
starred: boolean;
|
1809
1793
|
seemsLikeNew: boolean;
|
1810
1794
|
from: {
|
1811
1795
|
id: string;
|
@@ -1880,8 +1864,6 @@ export declare const apiContract: {
|
|
1880
1864
|
emailEngineMessageId: string;
|
1881
1865
|
emailEngineReplyTo: string | null;
|
1882
1866
|
unseen: boolean;
|
1883
|
-
sendAt: Date;
|
1884
|
-
starred: boolean;
|
1885
1867
|
seemsLikeNew: boolean;
|
1886
1868
|
from: {
|
1887
1869
|
id: string;
|
@@ -1957,8 +1939,6 @@ export declare const apiContract: {
|
|
1957
1939
|
date: import("zod").ZodDate;
|
1958
1940
|
action: import("zod").ZodString;
|
1959
1941
|
unseen: import("zod").ZodBoolean;
|
1960
|
-
sendAt: import("zod").ZodDate;
|
1961
|
-
starred: import("zod").ZodBoolean;
|
1962
1942
|
seemsLikeNew: import("zod").ZodBoolean;
|
1963
1943
|
from: import("zod").ZodArray<import("zod").ZodObject<{
|
1964
1944
|
id: import("zod").ZodString;
|
@@ -2157,8 +2137,6 @@ export declare const apiContract: {
|
|
2157
2137
|
emailEngineMessageId: string;
|
2158
2138
|
emailEngineReplyTo: string | null;
|
2159
2139
|
unseen: boolean;
|
2160
|
-
sendAt: Date;
|
2161
|
-
starred: boolean;
|
2162
2140
|
seemsLikeNew: boolean;
|
2163
2141
|
from: {
|
2164
2142
|
id: string;
|
@@ -2233,8 +2211,6 @@ export declare const apiContract: {
|
|
2233
2211
|
emailEngineMessageId: string;
|
2234
2212
|
emailEngineReplyTo: string | null;
|
2235
2213
|
unseen: boolean;
|
2236
|
-
sendAt: Date;
|
2237
|
-
starred: boolean;
|
2238
2214
|
seemsLikeNew: boolean;
|
2239
2215
|
from: {
|
2240
2216
|
id: string;
|
@@ -2651,8 +2627,6 @@ export declare const apiContract: {
|
|
2651
2627
|
emailEngineMessageId: string;
|
2652
2628
|
emailEngineReplyTo: string | null;
|
2653
2629
|
unseen: boolean;
|
2654
|
-
sendAt: Date;
|
2655
|
-
starred: boolean;
|
2656
2630
|
seemsLikeNew: boolean;
|
2657
2631
|
from: {
|
2658
2632
|
id: string;
|
@@ -2811,8 +2785,6 @@ export declare const apiContract: {
|
|
2811
2785
|
emailEngineMessageId: string;
|
2812
2786
|
emailEngineReplyTo: string | null;
|
2813
2787
|
unseen: boolean;
|
2814
|
-
sendAt: Date;
|
2815
|
-
starred: boolean;
|
2816
2788
|
seemsLikeNew: boolean;
|
2817
2789
|
from: {
|
2818
2790
|
id: string;
|
@@ -2888,8 +2860,6 @@ export declare const apiContract: {
|
|
2888
2860
|
emailEngineMessageId: string;
|
2889
2861
|
emailEngineReplyTo: string | null;
|
2890
2862
|
unseen: boolean;
|
2891
|
-
sendAt: Date;
|
2892
|
-
starred: boolean;
|
2893
2863
|
seemsLikeNew: boolean;
|
2894
2864
|
from: {
|
2895
2865
|
id: string;
|
@@ -2965,8 +2935,6 @@ export declare const apiContract: {
|
|
2965
2935
|
emailEngineMessageId: string;
|
2966
2936
|
emailEngineReplyTo: string | null;
|
2967
2937
|
unseen: boolean;
|
2968
|
-
sendAt: Date;
|
2969
|
-
starred: boolean;
|
2970
2938
|
seemsLikeNew: boolean;
|
2971
2939
|
from: {
|
2972
2940
|
id: string;
|
@@ -3103,8 +3071,6 @@ export declare const apiContract: {
|
|
3103
3071
|
emailEngineMessageId: string;
|
3104
3072
|
emailEngineReplyTo: string | null;
|
3105
3073
|
unseen: boolean;
|
3106
|
-
sendAt: Date;
|
3107
|
-
starred: boolean;
|
3108
3074
|
seemsLikeNew: boolean;
|
3109
3075
|
from: {
|
3110
3076
|
id: string;
|
@@ -3263,8 +3229,6 @@ export declare const apiContract: {
|
|
3263
3229
|
emailEngineMessageId: string;
|
3264
3230
|
emailEngineReplyTo: string | null;
|
3265
3231
|
unseen: boolean;
|
3266
|
-
sendAt: Date;
|
3267
|
-
starred: boolean;
|
3268
3232
|
seemsLikeNew: boolean;
|
3269
3233
|
from: {
|
3270
3234
|
id: string;
|
@@ -3340,8 +3304,6 @@ export declare const apiContract: {
|
|
3340
3304
|
emailEngineMessageId: string;
|
3341
3305
|
emailEngineReplyTo: string | null;
|
3342
3306
|
unseen: boolean;
|
3343
|
-
sendAt: Date;
|
3344
|
-
starred: boolean;
|
3345
3307
|
seemsLikeNew: boolean;
|
3346
3308
|
from: {
|
3347
3309
|
id: string;
|
@@ -3417,8 +3379,6 @@ export declare const apiContract: {
|
|
3417
3379
|
emailEngineMessageId: string;
|
3418
3380
|
emailEngineReplyTo: string | null;
|
3419
3381
|
unseen: boolean;
|
3420
|
-
sendAt: Date;
|
3421
|
-
starred: boolean;
|
3422
3382
|
seemsLikeNew: boolean;
|
3423
3383
|
from: {
|
3424
3384
|
id: string;
|
@@ -3560,8 +3520,6 @@ export declare const apiContract: {
|
|
3560
3520
|
emailEngineMessageId: string;
|
3561
3521
|
emailEngineReplyTo: string | null;
|
3562
3522
|
unseen: boolean;
|
3563
|
-
sendAt: Date;
|
3564
|
-
starred: boolean;
|
3565
3523
|
seemsLikeNew: boolean;
|
3566
3524
|
from: {
|
3567
3525
|
id: string;
|
@@ -3720,8 +3678,6 @@ export declare const apiContract: {
|
|
3720
3678
|
emailEngineMessageId: string;
|
3721
3679
|
emailEngineReplyTo: string | null;
|
3722
3680
|
unseen: boolean;
|
3723
|
-
sendAt: Date;
|
3724
|
-
starred: boolean;
|
3725
3681
|
seemsLikeNew: boolean;
|
3726
3682
|
from: {
|
3727
3683
|
id: string;
|
@@ -3797,8 +3753,6 @@ export declare const apiContract: {
|
|
3797
3753
|
emailEngineMessageId: string;
|
3798
3754
|
emailEngineReplyTo: string | null;
|
3799
3755
|
unseen: boolean;
|
3800
|
-
sendAt: Date;
|
3801
|
-
starred: boolean;
|
3802
3756
|
seemsLikeNew: boolean;
|
3803
3757
|
from: {
|
3804
3758
|
id: string;
|
@@ -3874,8 +3828,6 @@ export declare const apiContract: {
|
|
3874
3828
|
emailEngineMessageId: string;
|
3875
3829
|
emailEngineReplyTo: string | null;
|
3876
3830
|
unseen: boolean;
|
3877
|
-
sendAt: Date;
|
3878
|
-
starred: boolean;
|
3879
3831
|
seemsLikeNew: boolean;
|
3880
3832
|
from: {
|
3881
3833
|
id: string;
|
@@ -4018,8 +3970,6 @@ export declare const apiContract: {
|
|
4018
3970
|
emailEngineMessageId: string;
|
4019
3971
|
emailEngineReplyTo: string | null;
|
4020
3972
|
unseen: boolean;
|
4021
|
-
sendAt: Date;
|
4022
|
-
starred: boolean;
|
4023
3973
|
seemsLikeNew: boolean;
|
4024
3974
|
from: {
|
4025
3975
|
id: string;
|
@@ -4178,8 +4128,6 @@ export declare const apiContract: {
|
|
4178
4128
|
emailEngineMessageId: string;
|
4179
4129
|
emailEngineReplyTo: string | null;
|
4180
4130
|
unseen: boolean;
|
4181
|
-
sendAt: Date;
|
4182
|
-
starred: boolean;
|
4183
4131
|
seemsLikeNew: boolean;
|
4184
4132
|
from: {
|
4185
4133
|
id: string;
|
@@ -4255,8 +4203,6 @@ export declare const apiContract: {
|
|
4255
4203
|
emailEngineMessageId: string;
|
4256
4204
|
emailEngineReplyTo: string | null;
|
4257
4205
|
unseen: boolean;
|
4258
|
-
sendAt: Date;
|
4259
|
-
starred: boolean;
|
4260
4206
|
seemsLikeNew: boolean;
|
4261
4207
|
from: {
|
4262
4208
|
id: string;
|
@@ -4332,8 +4278,6 @@ export declare const apiContract: {
|
|
4332
4278
|
emailEngineMessageId: string;
|
4333
4279
|
emailEngineReplyTo: string | null;
|
4334
4280
|
unseen: boolean;
|
4335
|
-
sendAt: Date;
|
4336
|
-
starred: boolean;
|
4337
4281
|
seemsLikeNew: boolean;
|
4338
4282
|
from: {
|
4339
4283
|
id: string;
|
@@ -5334,8 +5278,6 @@ export declare const apiContract: {
|
|
5334
5278
|
date: import("zod").ZodDate;
|
5335
5279
|
action: import("zod").ZodString;
|
5336
5280
|
unseen: import("zod").ZodBoolean;
|
5337
|
-
sendAt: import("zod").ZodDate;
|
5338
|
-
starred: import("zod").ZodBoolean;
|
5339
5281
|
seemsLikeNew: import("zod").ZodBoolean;
|
5340
5282
|
from: import("zod").ZodArray<import("zod").ZodObject<{
|
5341
5283
|
id: import("zod").ZodString;
|
@@ -5534,8 +5476,6 @@ export declare const apiContract: {
|
|
5534
5476
|
emailEngineMessageId: string;
|
5535
5477
|
emailEngineReplyTo: string | null;
|
5536
5478
|
unseen: boolean;
|
5537
|
-
sendAt: Date;
|
5538
|
-
starred: boolean;
|
5539
5479
|
seemsLikeNew: boolean;
|
5540
5480
|
from: {
|
5541
5481
|
id: string;
|
@@ -5610,8 +5550,6 @@ export declare const apiContract: {
|
|
5610
5550
|
emailEngineMessageId: string;
|
5611
5551
|
emailEngineReplyTo: string | null;
|
5612
5552
|
unseen: boolean;
|
5613
|
-
sendAt: Date;
|
5614
|
-
starred: boolean;
|
5615
5553
|
seemsLikeNew: boolean;
|
5616
5554
|
from: {
|
5617
5555
|
id: string;
|
@@ -5687,8 +5625,6 @@ export declare const apiContract: {
|
|
5687
5625
|
date: import("zod").ZodDate;
|
5688
5626
|
action: import("zod").ZodString;
|
5689
5627
|
unseen: import("zod").ZodBoolean;
|
5690
|
-
sendAt: import("zod").ZodDate;
|
5691
|
-
starred: import("zod").ZodBoolean;
|
5692
5628
|
seemsLikeNew: import("zod").ZodBoolean;
|
5693
5629
|
from: import("zod").ZodArray<import("zod").ZodObject<{
|
5694
5630
|
id: import("zod").ZodString;
|
@@ -5887,8 +5823,6 @@ export declare const apiContract: {
|
|
5887
5823
|
emailEngineMessageId: string;
|
5888
5824
|
emailEngineReplyTo: string | null;
|
5889
5825
|
unseen: boolean;
|
5890
|
-
sendAt: Date;
|
5891
|
-
starred: boolean;
|
5892
5826
|
seemsLikeNew: boolean;
|
5893
5827
|
from: {
|
5894
5828
|
id: string;
|
@@ -5963,8 +5897,6 @@ export declare const apiContract: {
|
|
5963
5897
|
emailEngineMessageId: string;
|
5964
5898
|
emailEngineReplyTo: string | null;
|
5965
5899
|
unseen: boolean;
|
5966
|
-
sendAt: Date;
|
5967
|
-
starred: boolean;
|
5968
5900
|
seemsLikeNew: boolean;
|
5969
5901
|
from: {
|
5970
5902
|
id: string;
|
@@ -6093,8 +6025,6 @@ export declare const apiContract: {
|
|
6093
6025
|
date: import("zod").ZodDate;
|
6094
6026
|
action: import("zod").ZodString;
|
6095
6027
|
unseen: import("zod").ZodBoolean;
|
6096
|
-
sendAt: import("zod").ZodDate;
|
6097
|
-
starred: import("zod").ZodBoolean;
|
6098
6028
|
seemsLikeNew: import("zod").ZodBoolean;
|
6099
6029
|
from: import("zod").ZodArray<import("zod").ZodObject<{
|
6100
6030
|
id: import("zod").ZodString;
|
@@ -6293,8 +6223,6 @@ export declare const apiContract: {
|
|
6293
6223
|
emailEngineMessageId: string;
|
6294
6224
|
emailEngineReplyTo: string | null;
|
6295
6225
|
unseen: boolean;
|
6296
|
-
sendAt: Date;
|
6297
|
-
starred: boolean;
|
6298
6226
|
seemsLikeNew: boolean;
|
6299
6227
|
from: {
|
6300
6228
|
id: string;
|
@@ -6369,8 +6297,6 @@ export declare const apiContract: {
|
|
6369
6297
|
emailEngineMessageId: string;
|
6370
6298
|
emailEngineReplyTo: string | null;
|
6371
6299
|
unseen: boolean;
|
6372
|
-
sendAt: Date;
|
6373
|
-
starred: boolean;
|
6374
6300
|
seemsLikeNew: boolean;
|
6375
6301
|
from: {
|
6376
6302
|
id: string;
|
@@ -6446,8 +6372,6 @@ export declare const apiContract: {
|
|
6446
6372
|
date: import("zod").ZodDate;
|
6447
6373
|
action: import("zod").ZodString;
|
6448
6374
|
unseen: import("zod").ZodBoolean;
|
6449
|
-
sendAt: import("zod").ZodDate;
|
6450
|
-
starred: import("zod").ZodBoolean;
|
6451
6375
|
seemsLikeNew: import("zod").ZodBoolean;
|
6452
6376
|
from: import("zod").ZodArray<import("zod").ZodObject<{
|
6453
6377
|
id: import("zod").ZodString;
|
@@ -6646,8 +6570,6 @@ export declare const apiContract: {
|
|
6646
6570
|
emailEngineMessageId: string;
|
6647
6571
|
emailEngineReplyTo: string | null;
|
6648
6572
|
unseen: boolean;
|
6649
|
-
sendAt: Date;
|
6650
|
-
starred: boolean;
|
6651
6573
|
seemsLikeNew: boolean;
|
6652
6574
|
from: {
|
6653
6575
|
id: string;
|
@@ -6722,8 +6644,6 @@ export declare const apiContract: {
|
|
6722
6644
|
emailEngineMessageId: string;
|
6723
6645
|
emailEngineReplyTo: string | null;
|
6724
6646
|
unseen: boolean;
|
6725
|
-
sendAt: Date;
|
6726
|
-
starred: boolean;
|
6727
6647
|
seemsLikeNew: boolean;
|
6728
6648
|
from: {
|
6729
6649
|
id: string;
|
@@ -7140,8 +7060,6 @@ export declare const apiContract: {
|
|
7140
7060
|
emailEngineMessageId: string;
|
7141
7061
|
emailEngineReplyTo: string | null;
|
7142
7062
|
unseen: boolean;
|
7143
|
-
sendAt: Date;
|
7144
|
-
starred: boolean;
|
7145
7063
|
seemsLikeNew: boolean;
|
7146
7064
|
from: {
|
7147
7065
|
id: string;
|
@@ -7300,8 +7218,6 @@ export declare const apiContract: {
|
|
7300
7218
|
emailEngineMessageId: string;
|
7301
7219
|
emailEngineReplyTo: string | null;
|
7302
7220
|
unseen: boolean;
|
7303
|
-
sendAt: Date;
|
7304
|
-
starred: boolean;
|
7305
7221
|
seemsLikeNew: boolean;
|
7306
7222
|
from: {
|
7307
7223
|
id: string;
|
@@ -7377,8 +7293,6 @@ export declare const apiContract: {
|
|
7377
7293
|
emailEngineMessageId: string;
|
7378
7294
|
emailEngineReplyTo: string | null;
|
7379
7295
|
unseen: boolean;
|
7380
|
-
sendAt: Date;
|
7381
|
-
starred: boolean;
|
7382
7296
|
seemsLikeNew: boolean;
|
7383
7297
|
from: {
|
7384
7298
|
id: string;
|
@@ -7454,8 +7368,6 @@ export declare const apiContract: {
|
|
7454
7368
|
emailEngineMessageId: string;
|
7455
7369
|
emailEngineReplyTo: string | null;
|
7456
7370
|
unseen: boolean;
|
7457
|
-
sendAt: Date;
|
7458
|
-
starred: boolean;
|
7459
7371
|
seemsLikeNew: boolean;
|
7460
7372
|
from: {
|
7461
7373
|
id: string;
|
@@ -7592,8 +7504,6 @@ export declare const apiContract: {
|
|
7592
7504
|
emailEngineMessageId: string;
|
7593
7505
|
emailEngineReplyTo: string | null;
|
7594
7506
|
unseen: boolean;
|
7595
|
-
sendAt: Date;
|
7596
|
-
starred: boolean;
|
7597
7507
|
seemsLikeNew: boolean;
|
7598
7508
|
from: {
|
7599
7509
|
id: string;
|
@@ -7752,8 +7662,6 @@ export declare const apiContract: {
|
|
7752
7662
|
emailEngineMessageId: string;
|
7753
7663
|
emailEngineReplyTo: string | null;
|
7754
7664
|
unseen: boolean;
|
7755
|
-
sendAt: Date;
|
7756
|
-
starred: boolean;
|
7757
7665
|
seemsLikeNew: boolean;
|
7758
7666
|
from: {
|
7759
7667
|
id: string;
|
@@ -7829,8 +7737,6 @@ export declare const apiContract: {
|
|
7829
7737
|
emailEngineMessageId: string;
|
7830
7738
|
emailEngineReplyTo: string | null;
|
7831
7739
|
unseen: boolean;
|
7832
|
-
sendAt: Date;
|
7833
|
-
starred: boolean;
|
7834
7740
|
seemsLikeNew: boolean;
|
7835
7741
|
from: {
|
7836
7742
|
id: string;
|
@@ -7906,8 +7812,6 @@ export declare const apiContract: {
|
|
7906
7812
|
emailEngineMessageId: string;
|
7907
7813
|
emailEngineReplyTo: string | null;
|
7908
7814
|
unseen: boolean;
|
7909
|
-
sendAt: Date;
|
7910
|
-
starred: boolean;
|
7911
7815
|
seemsLikeNew: boolean;
|
7912
7816
|
from: {
|
7913
7817
|
id: string;
|
@@ -8046,8 +7950,6 @@ export declare const apiContract: {
|
|
8046
7950
|
emailEngineMessageId: string;
|
8047
7951
|
emailEngineReplyTo: string | null;
|
8048
7952
|
unseen: boolean;
|
8049
|
-
sendAt: Date;
|
8050
|
-
starred: boolean;
|
8051
7953
|
seemsLikeNew: boolean;
|
8052
7954
|
from: {
|
8053
7955
|
id: string;
|
@@ -8206,8 +8108,6 @@ export declare const apiContract: {
|
|
8206
8108
|
emailEngineMessageId: string;
|
8207
8109
|
emailEngineReplyTo: string | null;
|
8208
8110
|
unseen: boolean;
|
8209
|
-
sendAt: Date;
|
8210
|
-
starred: boolean;
|
8211
8111
|
seemsLikeNew: boolean;
|
8212
8112
|
from: {
|
8213
8113
|
id: string;
|
@@ -8283,8 +8183,6 @@ export declare const apiContract: {
|
|
8283
8183
|
emailEngineMessageId: string;
|
8284
8184
|
emailEngineReplyTo: string | null;
|
8285
8185
|
unseen: boolean;
|
8286
|
-
sendAt: Date;
|
8287
|
-
starred: boolean;
|
8288
8186
|
seemsLikeNew: boolean;
|
8289
8187
|
from: {
|
8290
8188
|
id: string;
|
@@ -8360,8 +8258,6 @@ export declare const apiContract: {
|
|
8360
8258
|
emailEngineMessageId: string;
|
8361
8259
|
emailEngineReplyTo: string | null;
|
8362
8260
|
unseen: boolean;
|
8363
|
-
sendAt: Date;
|
8364
|
-
starred: boolean;
|
8365
8261
|
seemsLikeNew: boolean;
|
8366
8262
|
from: {
|
8367
8263
|
id: string;
|
@@ -8501,8 +8397,6 @@ export declare const apiContract: {
|
|
8501
8397
|
emailEngineMessageId: string;
|
8502
8398
|
emailEngineReplyTo: string | null;
|
8503
8399
|
unseen: boolean;
|
8504
|
-
sendAt: Date;
|
8505
|
-
starred: boolean;
|
8506
8400
|
seemsLikeNew: boolean;
|
8507
8401
|
from: {
|
8508
8402
|
id: string;
|
@@ -8661,8 +8555,6 @@ export declare const apiContract: {
|
|
8661
8555
|
emailEngineMessageId: string;
|
8662
8556
|
emailEngineReplyTo: string | null;
|
8663
8557
|
unseen: boolean;
|
8664
|
-
sendAt: Date;
|
8665
|
-
starred: boolean;
|
8666
8558
|
seemsLikeNew: boolean;
|
8667
8559
|
from: {
|
8668
8560
|
id: string;
|
@@ -8738,8 +8630,6 @@ export declare const apiContract: {
|
|
8738
8630
|
emailEngineMessageId: string;
|
8739
8631
|
emailEngineReplyTo: string | null;
|
8740
8632
|
unseen: boolean;
|
8741
|
-
sendAt: Date;
|
8742
|
-
starred: boolean;
|
8743
8633
|
seemsLikeNew: boolean;
|
8744
8634
|
from: {
|
8745
8635
|
id: string;
|
@@ -8815,8 +8705,6 @@ export declare const apiContract: {
|
|
8815
8705
|
emailEngineMessageId: string;
|
8816
8706
|
emailEngineReplyTo: string | null;
|
8817
8707
|
unseen: boolean;
|
8818
|
-
sendAt: Date;
|
8819
|
-
starred: boolean;
|
8820
8708
|
seemsLikeNew: boolean;
|
8821
8709
|
from: {
|
8822
8710
|
id: string;
|
@@ -9142,8 +9030,6 @@ export declare const apiContract: {
|
|
9142
9030
|
date: import("zod").ZodDate;
|
9143
9031
|
action: import("zod").ZodString;
|
9144
9032
|
unseen: import("zod").ZodBoolean;
|
9145
|
-
sendAt: import("zod").ZodDate;
|
9146
|
-
starred: import("zod").ZodBoolean;
|
9147
9033
|
seemsLikeNew: import("zod").ZodBoolean;
|
9148
9034
|
from: import("zod").ZodArray<import("zod").ZodObject<{
|
9149
9035
|
id: import("zod").ZodString;
|
@@ -9342,8 +9228,6 @@ export declare const apiContract: {
|
|
9342
9228
|
emailEngineMessageId: string;
|
9343
9229
|
emailEngineReplyTo: string | null;
|
9344
9230
|
unseen: boolean;
|
9345
|
-
sendAt: Date;
|
9346
|
-
starred: boolean;
|
9347
9231
|
seemsLikeNew: boolean;
|
9348
9232
|
from: {
|
9349
9233
|
id: string;
|
@@ -9418,8 +9302,6 @@ export declare const apiContract: {
|
|
9418
9302
|
emailEngineMessageId: string;
|
9419
9303
|
emailEngineReplyTo: string | null;
|
9420
9304
|
unseen: boolean;
|
9421
|
-
sendAt: Date;
|
9422
|
-
starred: boolean;
|
9423
9305
|
seemsLikeNew: boolean;
|
9424
9306
|
from: {
|
9425
9307
|
id: string;
|
@@ -9495,8 +9377,6 @@ export declare const apiContract: {
|
|
9495
9377
|
date: import("zod").ZodDate;
|
9496
9378
|
action: import("zod").ZodString;
|
9497
9379
|
unseen: import("zod").ZodBoolean;
|
9498
|
-
sendAt: import("zod").ZodDate;
|
9499
|
-
starred: import("zod").ZodBoolean;
|
9500
9380
|
seemsLikeNew: import("zod").ZodBoolean;
|
9501
9381
|
from: import("zod").ZodArray<import("zod").ZodObject<{
|
9502
9382
|
id: import("zod").ZodString;
|
@@ -9695,8 +9575,6 @@ export declare const apiContract: {
|
|
9695
9575
|
emailEngineMessageId: string;
|
9696
9576
|
emailEngineReplyTo: string | null;
|
9697
9577
|
unseen: boolean;
|
9698
|
-
sendAt: Date;
|
9699
|
-
starred: boolean;
|
9700
9578
|
seemsLikeNew: boolean;
|
9701
9579
|
from: {
|
9702
9580
|
id: string;
|
@@ -9771,8 +9649,6 @@ export declare const apiContract: {
|
|
9771
9649
|
emailEngineMessageId: string;
|
9772
9650
|
emailEngineReplyTo: string | null;
|
9773
9651
|
unseen: boolean;
|
9774
|
-
sendAt: Date;
|
9775
|
-
starred: boolean;
|
9776
9652
|
seemsLikeNew: boolean;
|
9777
9653
|
from: {
|
9778
9654
|
id: string;
|
@@ -9901,8 +9777,6 @@ export declare const apiContract: {
|
|
9901
9777
|
date: import("zod").ZodDate;
|
9902
9778
|
action: import("zod").ZodString;
|
9903
9779
|
unseen: import("zod").ZodBoolean;
|
9904
|
-
sendAt: import("zod").ZodDate;
|
9905
|
-
starred: import("zod").ZodBoolean;
|
9906
9780
|
seemsLikeNew: import("zod").ZodBoolean;
|
9907
9781
|
from: import("zod").ZodArray<import("zod").ZodObject<{
|
9908
9782
|
id: import("zod").ZodString;
|
@@ -10101,8 +9975,6 @@ export declare const apiContract: {
|
|
10101
9975
|
emailEngineMessageId: string;
|
10102
9976
|
emailEngineReplyTo: string | null;
|
10103
9977
|
unseen: boolean;
|
10104
|
-
sendAt: Date;
|
10105
|
-
starred: boolean;
|
10106
9978
|
seemsLikeNew: boolean;
|
10107
9979
|
from: {
|
10108
9980
|
id: string;
|
@@ -10177,8 +10049,6 @@ export declare const apiContract: {
|
|
10177
10049
|
emailEngineMessageId: string;
|
10178
10050
|
emailEngineReplyTo: string | null;
|
10179
10051
|
unseen: boolean;
|
10180
|
-
sendAt: Date;
|
10181
|
-
starred: boolean;
|
10182
10052
|
seemsLikeNew: boolean;
|
10183
10053
|
from: {
|
10184
10054
|
id: string;
|
@@ -10254,8 +10124,6 @@ export declare const apiContract: {
|
|
10254
10124
|
date: import("zod").ZodDate;
|
10255
10125
|
action: import("zod").ZodString;
|
10256
10126
|
unseen: import("zod").ZodBoolean;
|
10257
|
-
sendAt: import("zod").ZodDate;
|
10258
|
-
starred: import("zod").ZodBoolean;
|
10259
10127
|
seemsLikeNew: import("zod").ZodBoolean;
|
10260
10128
|
from: import("zod").ZodArray<import("zod").ZodObject<{
|
10261
10129
|
id: import("zod").ZodString;
|
@@ -10454,8 +10322,6 @@ export declare const apiContract: {
|
|
10454
10322
|
emailEngineMessageId: string;
|
10455
10323
|
emailEngineReplyTo: string | null;
|
10456
10324
|
unseen: boolean;
|
10457
|
-
sendAt: Date;
|
10458
|
-
starred: boolean;
|
10459
10325
|
seemsLikeNew: boolean;
|
10460
10326
|
from: {
|
10461
10327
|
id: string;
|
@@ -10530,8 +10396,6 @@ export declare const apiContract: {
|
|
10530
10396
|
emailEngineMessageId: string;
|
10531
10397
|
emailEngineReplyTo: string | null;
|
10532
10398
|
unseen: boolean;
|
10533
|
-
sendAt: Date;
|
10534
|
-
starred: boolean;
|
10535
10399
|
seemsLikeNew: boolean;
|
10536
10400
|
from: {
|
10537
10401
|
id: string;
|
@@ -10948,8 +10812,6 @@ export declare const apiContract: {
|
|
10948
10812
|
emailEngineMessageId: string;
|
10949
10813
|
emailEngineReplyTo: string | null;
|
10950
10814
|
unseen: boolean;
|
10951
|
-
sendAt: Date;
|
10952
|
-
starred: boolean;
|
10953
10815
|
seemsLikeNew: boolean;
|
10954
10816
|
from: {
|
10955
10817
|
id: string;
|
@@ -11108,8 +10970,6 @@ export declare const apiContract: {
|
|
11108
10970
|
emailEngineMessageId: string;
|
11109
10971
|
emailEngineReplyTo: string | null;
|
11110
10972
|
unseen: boolean;
|
11111
|
-
sendAt: Date;
|
11112
|
-
starred: boolean;
|
11113
10973
|
seemsLikeNew: boolean;
|
11114
10974
|
from: {
|
11115
10975
|
id: string;
|
@@ -11185,8 +11045,6 @@ export declare const apiContract: {
|
|
11185
11045
|
emailEngineMessageId: string;
|
11186
11046
|
emailEngineReplyTo: string | null;
|
11187
11047
|
unseen: boolean;
|
11188
|
-
sendAt: Date;
|
11189
|
-
starred: boolean;
|
11190
11048
|
seemsLikeNew: boolean;
|
11191
11049
|
from: {
|
11192
11050
|
id: string;
|
@@ -11262,8 +11120,6 @@ export declare const apiContract: {
|
|
11262
11120
|
emailEngineMessageId: string;
|
11263
11121
|
emailEngineReplyTo: string | null;
|
11264
11122
|
unseen: boolean;
|
11265
|
-
sendAt: Date;
|
11266
|
-
starred: boolean;
|
11267
11123
|
seemsLikeNew: boolean;
|
11268
11124
|
from: {
|
11269
11125
|
id: string;
|
@@ -11400,8 +11256,6 @@ export declare const apiContract: {
|
|
11400
11256
|
emailEngineMessageId: string;
|
11401
11257
|
emailEngineReplyTo: string | null;
|
11402
11258
|
unseen: boolean;
|
11403
|
-
sendAt: Date;
|
11404
|
-
starred: boolean;
|
11405
11259
|
seemsLikeNew: boolean;
|
11406
11260
|
from: {
|
11407
11261
|
id: string;
|
@@ -11560,8 +11414,6 @@ export declare const apiContract: {
|
|
11560
11414
|
emailEngineMessageId: string;
|
11561
11415
|
emailEngineReplyTo: string | null;
|
11562
11416
|
unseen: boolean;
|
11563
|
-
sendAt: Date;
|
11564
|
-
starred: boolean;
|
11565
11417
|
seemsLikeNew: boolean;
|
11566
11418
|
from: {
|
11567
11419
|
id: string;
|
@@ -11637,8 +11489,6 @@ export declare const apiContract: {
|
|
11637
11489
|
emailEngineMessageId: string;
|
11638
11490
|
emailEngineReplyTo: string | null;
|
11639
11491
|
unseen: boolean;
|
11640
|
-
sendAt: Date;
|
11641
|
-
starred: boolean;
|
11642
11492
|
seemsLikeNew: boolean;
|
11643
11493
|
from: {
|
11644
11494
|
id: string;
|
@@ -11714,8 +11564,6 @@ export declare const apiContract: {
|
|
11714
11564
|
emailEngineMessageId: string;
|
11715
11565
|
emailEngineReplyTo: string | null;
|
11716
11566
|
unseen: boolean;
|
11717
|
-
sendAt: Date;
|
11718
|
-
starred: boolean;
|
11719
11567
|
seemsLikeNew: boolean;
|
11720
11568
|
from: {
|
11721
11569
|
id: string;
|
@@ -11854,8 +11702,6 @@ export declare const apiContract: {
|
|
11854
11702
|
emailEngineMessageId: string;
|
11855
11703
|
emailEngineReplyTo: string | null;
|
11856
11704
|
unseen: boolean;
|
11857
|
-
sendAt: Date;
|
11858
|
-
starred: boolean;
|
11859
11705
|
seemsLikeNew: boolean;
|
11860
11706
|
from: {
|
11861
11707
|
id: string;
|
@@ -12014,8 +11860,6 @@ export declare const apiContract: {
|
|
12014
11860
|
emailEngineMessageId: string;
|
12015
11861
|
emailEngineReplyTo: string | null;
|
12016
11862
|
unseen: boolean;
|
12017
|
-
sendAt: Date;
|
12018
|
-
starred: boolean;
|
12019
11863
|
seemsLikeNew: boolean;
|
12020
11864
|
from: {
|
12021
11865
|
id: string;
|
@@ -12091,8 +11935,6 @@ export declare const apiContract: {
|
|
12091
11935
|
emailEngineMessageId: string;
|
12092
11936
|
emailEngineReplyTo: string | null;
|
12093
11937
|
unseen: boolean;
|
12094
|
-
sendAt: Date;
|
12095
|
-
starred: boolean;
|
12096
11938
|
seemsLikeNew: boolean;
|
12097
11939
|
from: {
|
12098
11940
|
id: string;
|
@@ -12168,8 +12010,6 @@ export declare const apiContract: {
|
|
12168
12010
|
emailEngineMessageId: string;
|
12169
12011
|
emailEngineReplyTo: string | null;
|
12170
12012
|
unseen: boolean;
|
12171
|
-
sendAt: Date;
|
12172
|
-
starred: boolean;
|
12173
12013
|
seemsLikeNew: boolean;
|
12174
12014
|
from: {
|
12175
12015
|
id: string;
|
@@ -12309,8 +12149,6 @@ export declare const apiContract: {
|
|
12309
12149
|
emailEngineMessageId: string;
|
12310
12150
|
emailEngineReplyTo: string | null;
|
12311
12151
|
unseen: boolean;
|
12312
|
-
sendAt: Date;
|
12313
|
-
starred: boolean;
|
12314
12152
|
seemsLikeNew: boolean;
|
12315
12153
|
from: {
|
12316
12154
|
id: string;
|
@@ -12469,8 +12307,6 @@ export declare const apiContract: {
|
|
12469
12307
|
emailEngineMessageId: string;
|
12470
12308
|
emailEngineReplyTo: string | null;
|
12471
12309
|
unseen: boolean;
|
12472
|
-
sendAt: Date;
|
12473
|
-
starred: boolean;
|
12474
12310
|
seemsLikeNew: boolean;
|
12475
12311
|
from: {
|
12476
12312
|
id: string;
|
@@ -12546,8 +12382,6 @@ export declare const apiContract: {
|
|
12546
12382
|
emailEngineMessageId: string;
|
12547
12383
|
emailEngineReplyTo: string | null;
|
12548
12384
|
unseen: boolean;
|
12549
|
-
sendAt: Date;
|
12550
|
-
starred: boolean;
|
12551
12385
|
seemsLikeNew: boolean;
|
12552
12386
|
from: {
|
12553
12387
|
id: string;
|
@@ -12623,8 +12457,6 @@ export declare const apiContract: {
|
|
12623
12457
|
emailEngineMessageId: string;
|
12624
12458
|
emailEngineReplyTo: string | null;
|
12625
12459
|
unseen: boolean;
|
12626
|
-
sendAt: Date;
|
12627
|
-
starred: boolean;
|
12628
12460
|
seemsLikeNew: boolean;
|
12629
12461
|
from: {
|
12630
12462
|
id: string;
|
@@ -12782,7 +12614,6 @@ export declare const apiContract: {
|
|
12782
12614
|
address: string;
|
12783
12615
|
name?: string | undefined;
|
12784
12616
|
}>, "many">>;
|
12785
|
-
sendAt: import("zod").ZodOptional<import("zod").ZodString>;
|
12786
12617
|
reference: import("zod").ZodOptional<import("zod").ZodObject<{
|
12787
12618
|
messageId: import("zod").ZodString;
|
12788
12619
|
action: import("zod").ZodUnion<[import("zod").ZodLiteral<"reply">, import("zod").ZodLiteral<"forward">]>;
|
@@ -12835,7 +12666,6 @@ export declare const apiContract: {
|
|
12835
12666
|
address: string;
|
12836
12667
|
name?: string | undefined;
|
12837
12668
|
}[] | undefined;
|
12838
|
-
sendAt?: string | undefined;
|
12839
12669
|
reference?: {
|
12840
12670
|
action: "forward" | "reply";
|
12841
12671
|
messageId: string;
|
@@ -12868,7 +12698,6 @@ export declare const apiContract: {
|
|
12868
12698
|
address: string;
|
12869
12699
|
name?: string | undefined;
|
12870
12700
|
}[] | undefined;
|
12871
|
-
sendAt?: string | undefined;
|
12872
12701
|
reference?: {
|
12873
12702
|
action: "forward" | "reply";
|
12874
12703
|
messageId: string;
|
@@ -13021,7 +12850,7 @@ export declare const apiContract: {
|
|
13021
12850
|
path: "mail/message/new_message_count";
|
13022
12851
|
};
|
13023
12852
|
getById: {
|
13024
|
-
summary: "Get a message";
|
12853
|
+
summary: "Get a message by id";
|
13025
12854
|
method: "GET";
|
13026
12855
|
pathParams: import("zod").ZodObject<{
|
13027
12856
|
id: import("zod").ZodString;
|
@@ -13080,8 +12909,6 @@ export declare const apiContract: {
|
|
13080
12909
|
date: import("zod").ZodDate;
|
13081
12910
|
action: import("zod").ZodString;
|
13082
12911
|
unseen: import("zod").ZodBoolean;
|
13083
|
-
sendAt: import("zod").ZodDate;
|
13084
|
-
starred: import("zod").ZodBoolean;
|
13085
12912
|
seemsLikeNew: import("zod").ZodBoolean;
|
13086
12913
|
from: import("zod").ZodArray<import("zod").ZodObject<{
|
13087
12914
|
id: import("zod").ZodString;
|
@@ -13280,8 +13107,6 @@ export declare const apiContract: {
|
|
13280
13107
|
emailEngineMessageId: string;
|
13281
13108
|
emailEngineReplyTo: string | null;
|
13282
13109
|
unseen: boolean;
|
13283
|
-
sendAt: Date;
|
13284
|
-
starred: boolean;
|
13285
13110
|
seemsLikeNew: boolean;
|
13286
13111
|
from: {
|
13287
13112
|
id: string;
|
@@ -13356,8 +13181,6 @@ export declare const apiContract: {
|
|
13356
13181
|
emailEngineMessageId: string;
|
13357
13182
|
emailEngineReplyTo: string | null;
|
13358
13183
|
unseen: boolean;
|
13359
|
-
sendAt: Date;
|
13360
|
-
starred: boolean;
|
13361
13184
|
seemsLikeNew: boolean;
|
13362
13185
|
from: {
|
13363
13186
|
id: string;
|
@@ -13434,8 +13257,6 @@ export declare const apiContract: {
|
|
13434
13257
|
emailEngineMessageId: string;
|
13435
13258
|
emailEngineReplyTo: string | null;
|
13436
13259
|
unseen: boolean;
|
13437
|
-
sendAt: Date;
|
13438
|
-
starred: boolean;
|
13439
13260
|
seemsLikeNew: boolean;
|
13440
13261
|
from: {
|
13441
13262
|
id: string;
|
@@ -13513,8 +13334,6 @@ export declare const apiContract: {
|
|
13513
13334
|
emailEngineMessageId: string;
|
13514
13335
|
emailEngineReplyTo: string | null;
|
13515
13336
|
unseen: boolean;
|
13516
|
-
sendAt: Date;
|
13517
|
-
starred: boolean;
|
13518
13337
|
seemsLikeNew: boolean;
|
13519
13338
|
from: {
|
13520
13339
|
id: string;
|
@@ -13578,2035 +13397,6 @@ export declare const apiContract: {
|
|
13578
13397
|
};
|
13579
13398
|
path: "mail/message/:id";
|
13580
13399
|
};
|
13581
|
-
update: {
|
13582
|
-
body: import("zod").ZodObject<{
|
13583
|
-
id: import("zod").ZodOptional<import("zod").ZodString>;
|
13584
|
-
createdAt: import("zod").ZodOptional<import("zod").ZodDate>;
|
13585
|
-
updatedAt: import("zod").ZodOptional<import("zod").ZodDate>;
|
13586
|
-
deletedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodDate>>;
|
13587
|
-
roomId: import("zod").ZodOptional<import("zod").ZodString>;
|
13588
|
-
subject: import("zod").ZodOptional<import("zod").ZodString>;
|
13589
|
-
textPlain: import("zod").ZodOptional<import("zod").ZodString>;
|
13590
|
-
textHtml: import("zod").ZodOptional<import("zod").ZodString>;
|
13591
|
-
textId: import("zod").ZodOptional<import("zod").ZodString>;
|
13592
|
-
emailEngineEmailId: import("zod").ZodOptional<import("zod").ZodString>;
|
13593
|
-
emailEngineMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
13594
|
-
emailEngineReplyTo: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
13595
|
-
direction: import("zod").ZodOptional<import("zod").ZodString>;
|
13596
|
-
date: import("zod").ZodOptional<import("zod").ZodDate>;
|
13597
|
-
action: import("zod").ZodOptional<import("zod").ZodString>;
|
13598
|
-
unseen: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
13599
|
-
sendAt: import("zod").ZodOptional<import("zod").ZodDate>;
|
13600
|
-
starred: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
13601
|
-
seemsLikeNew: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
13602
|
-
from: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
13603
|
-
id: import("zod").ZodString;
|
13604
|
-
createdAt: import("zod").ZodDate;
|
13605
|
-
updatedAt: import("zod").ZodDate;
|
13606
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13607
|
-
name: import("zod").ZodString;
|
13608
|
-
address: import("zod").ZodString;
|
13609
|
-
}, "strip", import("zod").ZodTypeAny, {
|
13610
|
-
id: string;
|
13611
|
-
address: string;
|
13612
|
-
name: string;
|
13613
|
-
createdAt: Date;
|
13614
|
-
updatedAt: Date;
|
13615
|
-
deletedAt: Date | null;
|
13616
|
-
}, {
|
13617
|
-
id: string;
|
13618
|
-
address: string;
|
13619
|
-
name: string;
|
13620
|
-
createdAt: Date;
|
13621
|
-
updatedAt: Date;
|
13622
|
-
deletedAt: Date | null;
|
13623
|
-
}>, "many">>;
|
13624
|
-
to: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
13625
|
-
id: import("zod").ZodString;
|
13626
|
-
createdAt: import("zod").ZodDate;
|
13627
|
-
updatedAt: import("zod").ZodDate;
|
13628
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13629
|
-
name: import("zod").ZodString;
|
13630
|
-
address: import("zod").ZodString;
|
13631
|
-
}, "strip", import("zod").ZodTypeAny, {
|
13632
|
-
id: string;
|
13633
|
-
address: string;
|
13634
|
-
name: string;
|
13635
|
-
createdAt: Date;
|
13636
|
-
updatedAt: Date;
|
13637
|
-
deletedAt: Date | null;
|
13638
|
-
}, {
|
13639
|
-
id: string;
|
13640
|
-
address: string;
|
13641
|
-
name: string;
|
13642
|
-
createdAt: Date;
|
13643
|
-
updatedAt: Date;
|
13644
|
-
deletedAt: Date | null;
|
13645
|
-
}>, "many">>;
|
13646
|
-
cc: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
13647
|
-
id: import("zod").ZodString;
|
13648
|
-
createdAt: import("zod").ZodDate;
|
13649
|
-
updatedAt: import("zod").ZodDate;
|
13650
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13651
|
-
name: import("zod").ZodString;
|
13652
|
-
address: import("zod").ZodString;
|
13653
|
-
}, "strip", import("zod").ZodTypeAny, {
|
13654
|
-
id: string;
|
13655
|
-
address: string;
|
13656
|
-
name: string;
|
13657
|
-
createdAt: Date;
|
13658
|
-
updatedAt: Date;
|
13659
|
-
deletedAt: Date | null;
|
13660
|
-
}, {
|
13661
|
-
id: string;
|
13662
|
-
address: string;
|
13663
|
-
name: string;
|
13664
|
-
createdAt: Date;
|
13665
|
-
updatedAt: Date;
|
13666
|
-
deletedAt: Date | null;
|
13667
|
-
}>, "many">>;
|
13668
|
-
bcc: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
13669
|
-
id: import("zod").ZodString;
|
13670
|
-
createdAt: import("zod").ZodDate;
|
13671
|
-
updatedAt: import("zod").ZodDate;
|
13672
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13673
|
-
name: import("zod").ZodString;
|
13674
|
-
address: import("zod").ZodString;
|
13675
|
-
}, "strip", import("zod").ZodTypeAny, {
|
13676
|
-
id: string;
|
13677
|
-
address: string;
|
13678
|
-
name: string;
|
13679
|
-
createdAt: Date;
|
13680
|
-
updatedAt: Date;
|
13681
|
-
deletedAt: Date | null;
|
13682
|
-
}, {
|
13683
|
-
id: string;
|
13684
|
-
address: string;
|
13685
|
-
name: string;
|
13686
|
-
createdAt: Date;
|
13687
|
-
updatedAt: Date;
|
13688
|
-
deletedAt: Date | null;
|
13689
|
-
}>, "many">>;
|
13690
|
-
attachments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
13691
|
-
id: import("zod").ZodString;
|
13692
|
-
createdAt: import("zod").ZodDate;
|
13693
|
-
updatedAt: import("zod").ZodDate;
|
13694
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13695
|
-
roomId: import("zod").ZodString;
|
13696
|
-
messageId: import("zod").ZodString;
|
13697
|
-
fileName: import("zod").ZodString;
|
13698
|
-
fileType: import("zod").ZodString;
|
13699
|
-
emailEngineAttachmentId: import("zod").ZodString;
|
13700
|
-
uploadId: import("zod").ZodString;
|
13701
|
-
upload: import("zod").ZodObject<{
|
13702
|
-
id: import("zod").ZodString;
|
13703
|
-
createdAt: import("zod").ZodDate;
|
13704
|
-
updatedAt: import("zod").ZodDate;
|
13705
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13706
|
-
bucketName: import("zod").ZodString;
|
13707
|
-
fileName: import("zod").ZodString;
|
13708
|
-
fileKey: import("zod").ZodString;
|
13709
|
-
fileSize: import("zod").ZodNumber;
|
13710
|
-
fileUrl: import("zod").ZodString;
|
13711
|
-
extensionName: import("zod").ZodString;
|
13712
|
-
}, "strip", import("zod").ZodTypeAny, {
|
13713
|
-
id: string;
|
13714
|
-
createdAt: Date;
|
13715
|
-
updatedAt: Date;
|
13716
|
-
deletedAt: Date | null;
|
13717
|
-
extensionName: string;
|
13718
|
-
fileName: string;
|
13719
|
-
fileKey: string;
|
13720
|
-
bucketName: string;
|
13721
|
-
fileSize: number;
|
13722
|
-
fileUrl: string;
|
13723
|
-
}, {
|
13724
|
-
id: string;
|
13725
|
-
createdAt: Date;
|
13726
|
-
updatedAt: Date;
|
13727
|
-
deletedAt: Date | null;
|
13728
|
-
extensionName: string;
|
13729
|
-
fileName: string;
|
13730
|
-
fileKey: string;
|
13731
|
-
bucketName: string;
|
13732
|
-
fileSize: number;
|
13733
|
-
fileUrl: string;
|
13734
|
-
}>;
|
13735
|
-
}, "strip", import("zod").ZodTypeAny, {
|
13736
|
-
id: string;
|
13737
|
-
createdAt: Date;
|
13738
|
-
updatedAt: Date;
|
13739
|
-
deletedAt: Date | null;
|
13740
|
-
fileName: string;
|
13741
|
-
fileType: string;
|
13742
|
-
uploadId: string;
|
13743
|
-
upload: {
|
13744
|
-
id: string;
|
13745
|
-
createdAt: Date;
|
13746
|
-
updatedAt: Date;
|
13747
|
-
deletedAt: Date | null;
|
13748
|
-
extensionName: string;
|
13749
|
-
fileName: string;
|
13750
|
-
fileKey: string;
|
13751
|
-
bucketName: string;
|
13752
|
-
fileSize: number;
|
13753
|
-
fileUrl: string;
|
13754
|
-
};
|
13755
|
-
roomId: string;
|
13756
|
-
messageId: string;
|
13757
|
-
emailEngineAttachmentId: string;
|
13758
|
-
}, {
|
13759
|
-
id: string;
|
13760
|
-
createdAt: Date;
|
13761
|
-
updatedAt: Date;
|
13762
|
-
deletedAt: Date | null;
|
13763
|
-
fileName: string;
|
13764
|
-
fileType: string;
|
13765
|
-
uploadId: string;
|
13766
|
-
upload: {
|
13767
|
-
id: string;
|
13768
|
-
createdAt: Date;
|
13769
|
-
updatedAt: Date;
|
13770
|
-
deletedAt: Date | null;
|
13771
|
-
extensionName: string;
|
13772
|
-
fileName: string;
|
13773
|
-
fileKey: string;
|
13774
|
-
bucketName: string;
|
13775
|
-
fileSize: number;
|
13776
|
-
fileUrl: string;
|
13777
|
-
};
|
13778
|
-
roomId: string;
|
13779
|
-
messageId: string;
|
13780
|
-
emailEngineAttachmentId: string;
|
13781
|
-
}>, "many">>;
|
13782
|
-
}, "strip", import("zod").ZodTypeAny, {
|
13783
|
-
id?: string | undefined;
|
13784
|
-
createdAt?: Date | undefined;
|
13785
|
-
updatedAt?: Date | undefined;
|
13786
|
-
deletedAt?: Date | null | undefined;
|
13787
|
-
roomId?: string | undefined;
|
13788
|
-
subject?: string | undefined;
|
13789
|
-
textPlain?: string | undefined;
|
13790
|
-
textHtml?: string | undefined;
|
13791
|
-
textId?: string | undefined;
|
13792
|
-
emailEngineEmailId?: string | undefined;
|
13793
|
-
emailEngineMessageId?: string | undefined;
|
13794
|
-
emailEngineReplyTo?: string | null | undefined;
|
13795
|
-
direction?: string | undefined;
|
13796
|
-
date?: Date | undefined;
|
13797
|
-
action?: string | undefined;
|
13798
|
-
unseen?: boolean | undefined;
|
13799
|
-
sendAt?: Date | undefined;
|
13800
|
-
starred?: boolean | undefined;
|
13801
|
-
seemsLikeNew?: boolean | undefined;
|
13802
|
-
from?: {
|
13803
|
-
id: string;
|
13804
|
-
address: string;
|
13805
|
-
name: string;
|
13806
|
-
createdAt: Date;
|
13807
|
-
updatedAt: Date;
|
13808
|
-
deletedAt: Date | null;
|
13809
|
-
}[] | undefined;
|
13810
|
-
to?: {
|
13811
|
-
id: string;
|
13812
|
-
address: string;
|
13813
|
-
name: string;
|
13814
|
-
createdAt: Date;
|
13815
|
-
updatedAt: Date;
|
13816
|
-
deletedAt: Date | null;
|
13817
|
-
}[] | undefined;
|
13818
|
-
cc?: {
|
13819
|
-
id: string;
|
13820
|
-
address: string;
|
13821
|
-
name: string;
|
13822
|
-
createdAt: Date;
|
13823
|
-
updatedAt: Date;
|
13824
|
-
deletedAt: Date | null;
|
13825
|
-
}[] | undefined;
|
13826
|
-
bcc?: {
|
13827
|
-
id: string;
|
13828
|
-
address: string;
|
13829
|
-
name: string;
|
13830
|
-
createdAt: Date;
|
13831
|
-
updatedAt: Date;
|
13832
|
-
deletedAt: Date | null;
|
13833
|
-
}[] | undefined;
|
13834
|
-
attachments?: {
|
13835
|
-
id: string;
|
13836
|
-
createdAt: Date;
|
13837
|
-
updatedAt: Date;
|
13838
|
-
deletedAt: Date | null;
|
13839
|
-
fileName: string;
|
13840
|
-
fileType: string;
|
13841
|
-
uploadId: string;
|
13842
|
-
upload: {
|
13843
|
-
id: string;
|
13844
|
-
createdAt: Date;
|
13845
|
-
updatedAt: Date;
|
13846
|
-
deletedAt: Date | null;
|
13847
|
-
extensionName: string;
|
13848
|
-
fileName: string;
|
13849
|
-
fileKey: string;
|
13850
|
-
bucketName: string;
|
13851
|
-
fileSize: number;
|
13852
|
-
fileUrl: string;
|
13853
|
-
};
|
13854
|
-
roomId: string;
|
13855
|
-
messageId: string;
|
13856
|
-
emailEngineAttachmentId: string;
|
13857
|
-
}[] | undefined;
|
13858
|
-
}, {
|
13859
|
-
id?: string | undefined;
|
13860
|
-
createdAt?: Date | undefined;
|
13861
|
-
updatedAt?: Date | undefined;
|
13862
|
-
deletedAt?: Date | null | undefined;
|
13863
|
-
roomId?: string | undefined;
|
13864
|
-
subject?: string | undefined;
|
13865
|
-
textPlain?: string | undefined;
|
13866
|
-
textHtml?: string | undefined;
|
13867
|
-
textId?: string | undefined;
|
13868
|
-
emailEngineEmailId?: string | undefined;
|
13869
|
-
emailEngineMessageId?: string | undefined;
|
13870
|
-
emailEngineReplyTo?: string | null | undefined;
|
13871
|
-
direction?: string | undefined;
|
13872
|
-
date?: Date | undefined;
|
13873
|
-
action?: string | undefined;
|
13874
|
-
unseen?: boolean | undefined;
|
13875
|
-
sendAt?: Date | undefined;
|
13876
|
-
starred?: boolean | undefined;
|
13877
|
-
seemsLikeNew?: boolean | undefined;
|
13878
|
-
from?: {
|
13879
|
-
id: string;
|
13880
|
-
address: string;
|
13881
|
-
name: string;
|
13882
|
-
createdAt: Date;
|
13883
|
-
updatedAt: Date;
|
13884
|
-
deletedAt: Date | null;
|
13885
|
-
}[] | undefined;
|
13886
|
-
to?: {
|
13887
|
-
id: string;
|
13888
|
-
address: string;
|
13889
|
-
name: string;
|
13890
|
-
createdAt: Date;
|
13891
|
-
updatedAt: Date;
|
13892
|
-
deletedAt: Date | null;
|
13893
|
-
}[] | undefined;
|
13894
|
-
cc?: {
|
13895
|
-
id: string;
|
13896
|
-
address: string;
|
13897
|
-
name: string;
|
13898
|
-
createdAt: Date;
|
13899
|
-
updatedAt: Date;
|
13900
|
-
deletedAt: Date | null;
|
13901
|
-
}[] | undefined;
|
13902
|
-
bcc?: {
|
13903
|
-
id: string;
|
13904
|
-
address: string;
|
13905
|
-
name: string;
|
13906
|
-
createdAt: Date;
|
13907
|
-
updatedAt: Date;
|
13908
|
-
deletedAt: Date | null;
|
13909
|
-
}[] | undefined;
|
13910
|
-
attachments?: {
|
13911
|
-
id: string;
|
13912
|
-
createdAt: Date;
|
13913
|
-
updatedAt: Date;
|
13914
|
-
deletedAt: Date | null;
|
13915
|
-
fileName: string;
|
13916
|
-
fileType: string;
|
13917
|
-
uploadId: string;
|
13918
|
-
upload: {
|
13919
|
-
id: string;
|
13920
|
-
createdAt: Date;
|
13921
|
-
updatedAt: Date;
|
13922
|
-
deletedAt: Date | null;
|
13923
|
-
extensionName: string;
|
13924
|
-
fileName: string;
|
13925
|
-
fileKey: string;
|
13926
|
-
bucketName: string;
|
13927
|
-
fileSize: number;
|
13928
|
-
fileUrl: string;
|
13929
|
-
};
|
13930
|
-
roomId: string;
|
13931
|
-
messageId: string;
|
13932
|
-
emailEngineAttachmentId: string;
|
13933
|
-
}[] | undefined;
|
13934
|
-
}>;
|
13935
|
-
summary: "Update a message";
|
13936
|
-
method: "PATCH";
|
13937
|
-
pathParams: import("zod").ZodObject<{
|
13938
|
-
id: import("zod").ZodString;
|
13939
|
-
}, "strip", import("zod").ZodTypeAny, {
|
13940
|
-
id: string;
|
13941
|
-
}, {
|
13942
|
-
id: string;
|
13943
|
-
}>;
|
13944
|
-
responses: {
|
13945
|
-
401: import("zod").ZodObject<{
|
13946
|
-
message: import("zod").ZodString;
|
13947
|
-
error: import("zod").ZodAny;
|
13948
|
-
}, "strip", import("zod").ZodTypeAny, {
|
13949
|
-
message: string;
|
13950
|
-
error?: any;
|
13951
|
-
}, {
|
13952
|
-
message: string;
|
13953
|
-
error?: any;
|
13954
|
-
}>;
|
13955
|
-
404: import("zod").ZodObject<{
|
13956
|
-
message: import("zod").ZodString;
|
13957
|
-
error: import("zod").ZodAny;
|
13958
|
-
}, "strip", import("zod").ZodTypeAny, {
|
13959
|
-
message: string;
|
13960
|
-
error?: any;
|
13961
|
-
}, {
|
13962
|
-
message: string;
|
13963
|
-
error?: any;
|
13964
|
-
}>;
|
13965
|
-
422: import("zod").ZodObject<{
|
13966
|
-
message: import("zod").ZodString;
|
13967
|
-
error: import("zod").ZodAny;
|
13968
|
-
}, "strip", import("zod").ZodTypeAny, {
|
13969
|
-
message: string;
|
13970
|
-
error?: any;
|
13971
|
-
}, {
|
13972
|
-
message: string;
|
13973
|
-
error?: any;
|
13974
|
-
}>;
|
13975
|
-
200: import("zod").ZodObject<{
|
13976
|
-
requestId: import("zod").ZodString;
|
13977
|
-
data: import("zod").ZodObject<{
|
13978
|
-
id: import("zod").ZodString;
|
13979
|
-
createdAt: import("zod").ZodDate;
|
13980
|
-
updatedAt: import("zod").ZodDate;
|
13981
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13982
|
-
roomId: import("zod").ZodString;
|
13983
|
-
subject: import("zod").ZodString;
|
13984
|
-
textPlain: import("zod").ZodString;
|
13985
|
-
textHtml: import("zod").ZodString;
|
13986
|
-
textId: import("zod").ZodString;
|
13987
|
-
emailEngineEmailId: import("zod").ZodString;
|
13988
|
-
emailEngineMessageId: import("zod").ZodString;
|
13989
|
-
emailEngineReplyTo: import("zod").ZodNullable<import("zod").ZodString>;
|
13990
|
-
direction: import("zod").ZodString;
|
13991
|
-
date: import("zod").ZodDate;
|
13992
|
-
action: import("zod").ZodString;
|
13993
|
-
unseen: import("zod").ZodBoolean;
|
13994
|
-
sendAt: import("zod").ZodDate;
|
13995
|
-
starred: import("zod").ZodBoolean;
|
13996
|
-
seemsLikeNew: import("zod").ZodBoolean;
|
13997
|
-
from: import("zod").ZodArray<import("zod").ZodObject<{
|
13998
|
-
id: import("zod").ZodString;
|
13999
|
-
createdAt: import("zod").ZodDate;
|
14000
|
-
updatedAt: import("zod").ZodDate;
|
14001
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
14002
|
-
name: import("zod").ZodString;
|
14003
|
-
address: import("zod").ZodString;
|
14004
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14005
|
-
id: string;
|
14006
|
-
address: string;
|
14007
|
-
name: string;
|
14008
|
-
createdAt: Date;
|
14009
|
-
updatedAt: Date;
|
14010
|
-
deletedAt: Date | null;
|
14011
|
-
}, {
|
14012
|
-
id: string;
|
14013
|
-
address: string;
|
14014
|
-
name: string;
|
14015
|
-
createdAt: Date;
|
14016
|
-
updatedAt: Date;
|
14017
|
-
deletedAt: Date | null;
|
14018
|
-
}>, "many">;
|
14019
|
-
to: import("zod").ZodArray<import("zod").ZodObject<{
|
14020
|
-
id: import("zod").ZodString;
|
14021
|
-
createdAt: import("zod").ZodDate;
|
14022
|
-
updatedAt: import("zod").ZodDate;
|
14023
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
14024
|
-
name: import("zod").ZodString;
|
14025
|
-
address: import("zod").ZodString;
|
14026
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14027
|
-
id: string;
|
14028
|
-
address: string;
|
14029
|
-
name: string;
|
14030
|
-
createdAt: Date;
|
14031
|
-
updatedAt: Date;
|
14032
|
-
deletedAt: Date | null;
|
14033
|
-
}, {
|
14034
|
-
id: string;
|
14035
|
-
address: string;
|
14036
|
-
name: string;
|
14037
|
-
createdAt: Date;
|
14038
|
-
updatedAt: Date;
|
14039
|
-
deletedAt: Date | null;
|
14040
|
-
}>, "many">;
|
14041
|
-
cc: import("zod").ZodArray<import("zod").ZodObject<{
|
14042
|
-
id: import("zod").ZodString;
|
14043
|
-
createdAt: import("zod").ZodDate;
|
14044
|
-
updatedAt: import("zod").ZodDate;
|
14045
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
14046
|
-
name: import("zod").ZodString;
|
14047
|
-
address: import("zod").ZodString;
|
14048
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14049
|
-
id: string;
|
14050
|
-
address: string;
|
14051
|
-
name: string;
|
14052
|
-
createdAt: Date;
|
14053
|
-
updatedAt: Date;
|
14054
|
-
deletedAt: Date | null;
|
14055
|
-
}, {
|
14056
|
-
id: string;
|
14057
|
-
address: string;
|
14058
|
-
name: string;
|
14059
|
-
createdAt: Date;
|
14060
|
-
updatedAt: Date;
|
14061
|
-
deletedAt: Date | null;
|
14062
|
-
}>, "many">;
|
14063
|
-
bcc: import("zod").ZodArray<import("zod").ZodObject<{
|
14064
|
-
id: import("zod").ZodString;
|
14065
|
-
createdAt: import("zod").ZodDate;
|
14066
|
-
updatedAt: import("zod").ZodDate;
|
14067
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
14068
|
-
name: import("zod").ZodString;
|
14069
|
-
address: import("zod").ZodString;
|
14070
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14071
|
-
id: string;
|
14072
|
-
address: string;
|
14073
|
-
name: string;
|
14074
|
-
createdAt: Date;
|
14075
|
-
updatedAt: Date;
|
14076
|
-
deletedAt: Date | null;
|
14077
|
-
}, {
|
14078
|
-
id: string;
|
14079
|
-
address: string;
|
14080
|
-
name: string;
|
14081
|
-
createdAt: Date;
|
14082
|
-
updatedAt: Date;
|
14083
|
-
deletedAt: Date | null;
|
14084
|
-
}>, "many">;
|
14085
|
-
attachments: import("zod").ZodArray<import("zod").ZodObject<{
|
14086
|
-
id: import("zod").ZodString;
|
14087
|
-
createdAt: import("zod").ZodDate;
|
14088
|
-
updatedAt: import("zod").ZodDate;
|
14089
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
14090
|
-
roomId: import("zod").ZodString;
|
14091
|
-
messageId: import("zod").ZodString;
|
14092
|
-
fileName: import("zod").ZodString;
|
14093
|
-
fileType: import("zod").ZodString;
|
14094
|
-
emailEngineAttachmentId: import("zod").ZodString;
|
14095
|
-
uploadId: import("zod").ZodString;
|
14096
|
-
upload: import("zod").ZodObject<{
|
14097
|
-
id: import("zod").ZodString;
|
14098
|
-
createdAt: import("zod").ZodDate;
|
14099
|
-
updatedAt: import("zod").ZodDate;
|
14100
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
14101
|
-
bucketName: import("zod").ZodString;
|
14102
|
-
fileName: import("zod").ZodString;
|
14103
|
-
fileKey: import("zod").ZodString;
|
14104
|
-
fileSize: import("zod").ZodNumber;
|
14105
|
-
fileUrl: import("zod").ZodString;
|
14106
|
-
extensionName: import("zod").ZodString;
|
14107
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14108
|
-
id: string;
|
14109
|
-
createdAt: Date;
|
14110
|
-
updatedAt: Date;
|
14111
|
-
deletedAt: Date | null;
|
14112
|
-
extensionName: string;
|
14113
|
-
fileName: string;
|
14114
|
-
fileKey: string;
|
14115
|
-
bucketName: string;
|
14116
|
-
fileSize: number;
|
14117
|
-
fileUrl: string;
|
14118
|
-
}, {
|
14119
|
-
id: string;
|
14120
|
-
createdAt: Date;
|
14121
|
-
updatedAt: Date;
|
14122
|
-
deletedAt: Date | null;
|
14123
|
-
extensionName: string;
|
14124
|
-
fileName: string;
|
14125
|
-
fileKey: string;
|
14126
|
-
bucketName: string;
|
14127
|
-
fileSize: number;
|
14128
|
-
fileUrl: string;
|
14129
|
-
}>;
|
14130
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14131
|
-
id: string;
|
14132
|
-
createdAt: Date;
|
14133
|
-
updatedAt: Date;
|
14134
|
-
deletedAt: Date | null;
|
14135
|
-
fileName: string;
|
14136
|
-
fileType: string;
|
14137
|
-
uploadId: string;
|
14138
|
-
upload: {
|
14139
|
-
id: string;
|
14140
|
-
createdAt: Date;
|
14141
|
-
updatedAt: Date;
|
14142
|
-
deletedAt: Date | null;
|
14143
|
-
extensionName: string;
|
14144
|
-
fileName: string;
|
14145
|
-
fileKey: string;
|
14146
|
-
bucketName: string;
|
14147
|
-
fileSize: number;
|
14148
|
-
fileUrl: string;
|
14149
|
-
};
|
14150
|
-
roomId: string;
|
14151
|
-
messageId: string;
|
14152
|
-
emailEngineAttachmentId: string;
|
14153
|
-
}, {
|
14154
|
-
id: string;
|
14155
|
-
createdAt: Date;
|
14156
|
-
updatedAt: Date;
|
14157
|
-
deletedAt: Date | null;
|
14158
|
-
fileName: string;
|
14159
|
-
fileType: string;
|
14160
|
-
uploadId: string;
|
14161
|
-
upload: {
|
14162
|
-
id: string;
|
14163
|
-
createdAt: Date;
|
14164
|
-
updatedAt: Date;
|
14165
|
-
deletedAt: Date | null;
|
14166
|
-
extensionName: string;
|
14167
|
-
fileName: string;
|
14168
|
-
fileKey: string;
|
14169
|
-
bucketName: string;
|
14170
|
-
fileSize: number;
|
14171
|
-
fileUrl: string;
|
14172
|
-
};
|
14173
|
-
roomId: string;
|
14174
|
-
messageId: string;
|
14175
|
-
emailEngineAttachmentId: string;
|
14176
|
-
}>, "many">;
|
14177
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14178
|
-
id: string;
|
14179
|
-
direction: string;
|
14180
|
-
action: string;
|
14181
|
-
date: Date;
|
14182
|
-
createdAt: Date;
|
14183
|
-
updatedAt: Date;
|
14184
|
-
deletedAt: Date | null;
|
14185
|
-
roomId: string;
|
14186
|
-
subject: string;
|
14187
|
-
textPlain: string;
|
14188
|
-
textHtml: string;
|
14189
|
-
textId: string;
|
14190
|
-
emailEngineEmailId: string;
|
14191
|
-
emailEngineMessageId: string;
|
14192
|
-
emailEngineReplyTo: string | null;
|
14193
|
-
unseen: boolean;
|
14194
|
-
sendAt: Date;
|
14195
|
-
starred: boolean;
|
14196
|
-
seemsLikeNew: boolean;
|
14197
|
-
from: {
|
14198
|
-
id: string;
|
14199
|
-
address: string;
|
14200
|
-
name: string;
|
14201
|
-
createdAt: Date;
|
14202
|
-
updatedAt: Date;
|
14203
|
-
deletedAt: Date | null;
|
14204
|
-
}[];
|
14205
|
-
to: {
|
14206
|
-
id: string;
|
14207
|
-
address: string;
|
14208
|
-
name: string;
|
14209
|
-
createdAt: Date;
|
14210
|
-
updatedAt: Date;
|
14211
|
-
deletedAt: Date | null;
|
14212
|
-
}[];
|
14213
|
-
cc: {
|
14214
|
-
id: string;
|
14215
|
-
address: string;
|
14216
|
-
name: string;
|
14217
|
-
createdAt: Date;
|
14218
|
-
updatedAt: Date;
|
14219
|
-
deletedAt: Date | null;
|
14220
|
-
}[];
|
14221
|
-
bcc: {
|
14222
|
-
id: string;
|
14223
|
-
address: string;
|
14224
|
-
name: string;
|
14225
|
-
createdAt: Date;
|
14226
|
-
updatedAt: Date;
|
14227
|
-
deletedAt: Date | null;
|
14228
|
-
}[];
|
14229
|
-
attachments: {
|
14230
|
-
id: string;
|
14231
|
-
createdAt: Date;
|
14232
|
-
updatedAt: Date;
|
14233
|
-
deletedAt: Date | null;
|
14234
|
-
fileName: string;
|
14235
|
-
fileType: string;
|
14236
|
-
uploadId: string;
|
14237
|
-
upload: {
|
14238
|
-
id: string;
|
14239
|
-
createdAt: Date;
|
14240
|
-
updatedAt: Date;
|
14241
|
-
deletedAt: Date | null;
|
14242
|
-
extensionName: string;
|
14243
|
-
fileName: string;
|
14244
|
-
fileKey: string;
|
14245
|
-
bucketName: string;
|
14246
|
-
fileSize: number;
|
14247
|
-
fileUrl: string;
|
14248
|
-
};
|
14249
|
-
roomId: string;
|
14250
|
-
messageId: string;
|
14251
|
-
emailEngineAttachmentId: string;
|
14252
|
-
}[];
|
14253
|
-
}, {
|
14254
|
-
id: string;
|
14255
|
-
direction: string;
|
14256
|
-
action: string;
|
14257
|
-
date: Date;
|
14258
|
-
createdAt: Date;
|
14259
|
-
updatedAt: Date;
|
14260
|
-
deletedAt: Date | null;
|
14261
|
-
roomId: string;
|
14262
|
-
subject: string;
|
14263
|
-
textPlain: string;
|
14264
|
-
textHtml: string;
|
14265
|
-
textId: string;
|
14266
|
-
emailEngineEmailId: string;
|
14267
|
-
emailEngineMessageId: string;
|
14268
|
-
emailEngineReplyTo: string | null;
|
14269
|
-
unseen: boolean;
|
14270
|
-
sendAt: Date;
|
14271
|
-
starred: boolean;
|
14272
|
-
seemsLikeNew: boolean;
|
14273
|
-
from: {
|
14274
|
-
id: string;
|
14275
|
-
address: string;
|
14276
|
-
name: string;
|
14277
|
-
createdAt: Date;
|
14278
|
-
updatedAt: Date;
|
14279
|
-
deletedAt: Date | null;
|
14280
|
-
}[];
|
14281
|
-
to: {
|
14282
|
-
id: string;
|
14283
|
-
address: string;
|
14284
|
-
name: string;
|
14285
|
-
createdAt: Date;
|
14286
|
-
updatedAt: Date;
|
14287
|
-
deletedAt: Date | null;
|
14288
|
-
}[];
|
14289
|
-
cc: {
|
14290
|
-
id: string;
|
14291
|
-
address: string;
|
14292
|
-
name: string;
|
14293
|
-
createdAt: Date;
|
14294
|
-
updatedAt: Date;
|
14295
|
-
deletedAt: Date | null;
|
14296
|
-
}[];
|
14297
|
-
bcc: {
|
14298
|
-
id: string;
|
14299
|
-
address: string;
|
14300
|
-
name: string;
|
14301
|
-
createdAt: Date;
|
14302
|
-
updatedAt: Date;
|
14303
|
-
deletedAt: Date | null;
|
14304
|
-
}[];
|
14305
|
-
attachments: {
|
14306
|
-
id: string;
|
14307
|
-
createdAt: Date;
|
14308
|
-
updatedAt: Date;
|
14309
|
-
deletedAt: Date | null;
|
14310
|
-
fileName: string;
|
14311
|
-
fileType: string;
|
14312
|
-
uploadId: string;
|
14313
|
-
upload: {
|
14314
|
-
id: string;
|
14315
|
-
createdAt: Date;
|
14316
|
-
updatedAt: Date;
|
14317
|
-
deletedAt: Date | null;
|
14318
|
-
extensionName: string;
|
14319
|
-
fileName: string;
|
14320
|
-
fileKey: string;
|
14321
|
-
bucketName: string;
|
14322
|
-
fileSize: number;
|
14323
|
-
fileUrl: string;
|
14324
|
-
};
|
14325
|
-
roomId: string;
|
14326
|
-
messageId: string;
|
14327
|
-
emailEngineAttachmentId: string;
|
14328
|
-
}[];
|
14329
|
-
}>;
|
14330
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14331
|
-
data: {
|
14332
|
-
id: string;
|
14333
|
-
direction: string;
|
14334
|
-
action: string;
|
14335
|
-
date: Date;
|
14336
|
-
createdAt: Date;
|
14337
|
-
updatedAt: Date;
|
14338
|
-
deletedAt: Date | null;
|
14339
|
-
roomId: string;
|
14340
|
-
subject: string;
|
14341
|
-
textPlain: string;
|
14342
|
-
textHtml: string;
|
14343
|
-
textId: string;
|
14344
|
-
emailEngineEmailId: string;
|
14345
|
-
emailEngineMessageId: string;
|
14346
|
-
emailEngineReplyTo: string | null;
|
14347
|
-
unseen: boolean;
|
14348
|
-
sendAt: Date;
|
14349
|
-
starred: boolean;
|
14350
|
-
seemsLikeNew: boolean;
|
14351
|
-
from: {
|
14352
|
-
id: string;
|
14353
|
-
address: string;
|
14354
|
-
name: string;
|
14355
|
-
createdAt: Date;
|
14356
|
-
updatedAt: Date;
|
14357
|
-
deletedAt: Date | null;
|
14358
|
-
}[];
|
14359
|
-
to: {
|
14360
|
-
id: string;
|
14361
|
-
address: string;
|
14362
|
-
name: string;
|
14363
|
-
createdAt: Date;
|
14364
|
-
updatedAt: Date;
|
14365
|
-
deletedAt: Date | null;
|
14366
|
-
}[];
|
14367
|
-
cc: {
|
14368
|
-
id: string;
|
14369
|
-
address: string;
|
14370
|
-
name: string;
|
14371
|
-
createdAt: Date;
|
14372
|
-
updatedAt: Date;
|
14373
|
-
deletedAt: Date | null;
|
14374
|
-
}[];
|
14375
|
-
bcc: {
|
14376
|
-
id: string;
|
14377
|
-
address: string;
|
14378
|
-
name: string;
|
14379
|
-
createdAt: Date;
|
14380
|
-
updatedAt: Date;
|
14381
|
-
deletedAt: Date | null;
|
14382
|
-
}[];
|
14383
|
-
attachments: {
|
14384
|
-
id: string;
|
14385
|
-
createdAt: Date;
|
14386
|
-
updatedAt: Date;
|
14387
|
-
deletedAt: Date | null;
|
14388
|
-
fileName: string;
|
14389
|
-
fileType: string;
|
14390
|
-
uploadId: string;
|
14391
|
-
upload: {
|
14392
|
-
id: string;
|
14393
|
-
createdAt: Date;
|
14394
|
-
updatedAt: Date;
|
14395
|
-
deletedAt: Date | null;
|
14396
|
-
extensionName: string;
|
14397
|
-
fileName: string;
|
14398
|
-
fileKey: string;
|
14399
|
-
bucketName: string;
|
14400
|
-
fileSize: number;
|
14401
|
-
fileUrl: string;
|
14402
|
-
};
|
14403
|
-
roomId: string;
|
14404
|
-
messageId: string;
|
14405
|
-
emailEngineAttachmentId: string;
|
14406
|
-
}[];
|
14407
|
-
};
|
14408
|
-
requestId: string;
|
14409
|
-
}, {
|
14410
|
-
data: {
|
14411
|
-
id: string;
|
14412
|
-
direction: string;
|
14413
|
-
action: string;
|
14414
|
-
date: Date;
|
14415
|
-
createdAt: Date;
|
14416
|
-
updatedAt: Date;
|
14417
|
-
deletedAt: Date | null;
|
14418
|
-
roomId: string;
|
14419
|
-
subject: string;
|
14420
|
-
textPlain: string;
|
14421
|
-
textHtml: string;
|
14422
|
-
textId: string;
|
14423
|
-
emailEngineEmailId: string;
|
14424
|
-
emailEngineMessageId: string;
|
14425
|
-
emailEngineReplyTo: string | null;
|
14426
|
-
unseen: boolean;
|
14427
|
-
sendAt: Date;
|
14428
|
-
starred: boolean;
|
14429
|
-
seemsLikeNew: boolean;
|
14430
|
-
from: {
|
14431
|
-
id: string;
|
14432
|
-
address: string;
|
14433
|
-
name: string;
|
14434
|
-
createdAt: Date;
|
14435
|
-
updatedAt: Date;
|
14436
|
-
deletedAt: Date | null;
|
14437
|
-
}[];
|
14438
|
-
to: {
|
14439
|
-
id: string;
|
14440
|
-
address: string;
|
14441
|
-
name: string;
|
14442
|
-
createdAt: Date;
|
14443
|
-
updatedAt: Date;
|
14444
|
-
deletedAt: Date | null;
|
14445
|
-
}[];
|
14446
|
-
cc: {
|
14447
|
-
id: string;
|
14448
|
-
address: string;
|
14449
|
-
name: string;
|
14450
|
-
createdAt: Date;
|
14451
|
-
updatedAt: Date;
|
14452
|
-
deletedAt: Date | null;
|
14453
|
-
}[];
|
14454
|
-
bcc: {
|
14455
|
-
id: string;
|
14456
|
-
address: string;
|
14457
|
-
name: string;
|
14458
|
-
createdAt: Date;
|
14459
|
-
updatedAt: Date;
|
14460
|
-
deletedAt: Date | null;
|
14461
|
-
}[];
|
14462
|
-
attachments: {
|
14463
|
-
id: string;
|
14464
|
-
createdAt: Date;
|
14465
|
-
updatedAt: Date;
|
14466
|
-
deletedAt: Date | null;
|
14467
|
-
fileName: string;
|
14468
|
-
fileType: string;
|
14469
|
-
uploadId: string;
|
14470
|
-
upload: {
|
14471
|
-
id: string;
|
14472
|
-
createdAt: Date;
|
14473
|
-
updatedAt: Date;
|
14474
|
-
deletedAt: Date | null;
|
14475
|
-
extensionName: string;
|
14476
|
-
fileName: string;
|
14477
|
-
fileKey: string;
|
14478
|
-
bucketName: string;
|
14479
|
-
fileSize: number;
|
14480
|
-
fileUrl: string;
|
14481
|
-
};
|
14482
|
-
roomId: string;
|
14483
|
-
messageId: string;
|
14484
|
-
emailEngineAttachmentId: string;
|
14485
|
-
}[];
|
14486
|
-
};
|
14487
|
-
requestId: string;
|
14488
|
-
}>;
|
14489
|
-
};
|
14490
|
-
path: "mail/message/:id";
|
14491
|
-
};
|
14492
|
-
delete: {
|
14493
|
-
body: null;
|
14494
|
-
summary: "Delete a message";
|
14495
|
-
method: "DELETE";
|
14496
|
-
pathParams: import("zod").ZodObject<{
|
14497
|
-
id: import("zod").ZodString;
|
14498
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14499
|
-
id: string;
|
14500
|
-
}, {
|
14501
|
-
id: string;
|
14502
|
-
}>;
|
14503
|
-
responses: {
|
14504
|
-
401: import("zod").ZodObject<{
|
14505
|
-
message: import("zod").ZodString;
|
14506
|
-
error: import("zod").ZodAny;
|
14507
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14508
|
-
message: string;
|
14509
|
-
error?: any;
|
14510
|
-
}, {
|
14511
|
-
message: string;
|
14512
|
-
error?: any;
|
14513
|
-
}>;
|
14514
|
-
404: import("zod").ZodObject<{
|
14515
|
-
message: import("zod").ZodString;
|
14516
|
-
error: import("zod").ZodAny;
|
14517
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14518
|
-
message: string;
|
14519
|
-
error?: any;
|
14520
|
-
}, {
|
14521
|
-
message: string;
|
14522
|
-
error?: any;
|
14523
|
-
}>;
|
14524
|
-
422: import("zod").ZodObject<{
|
14525
|
-
message: import("zod").ZodString;
|
14526
|
-
error: import("zod").ZodAny;
|
14527
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14528
|
-
message: string;
|
14529
|
-
error?: any;
|
14530
|
-
}, {
|
14531
|
-
message: string;
|
14532
|
-
error?: any;
|
14533
|
-
}>;
|
14534
|
-
200: import("zod").ZodObject<{
|
14535
|
-
requestId: import("zod").ZodString;
|
14536
|
-
data: import("zod").ZodObject<{
|
14537
|
-
id: import("zod").ZodString;
|
14538
|
-
createdAt: import("zod").ZodDate;
|
14539
|
-
updatedAt: import("zod").ZodDate;
|
14540
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
14541
|
-
roomId: import("zod").ZodString;
|
14542
|
-
subject: import("zod").ZodString;
|
14543
|
-
textPlain: import("zod").ZodString;
|
14544
|
-
textHtml: import("zod").ZodString;
|
14545
|
-
textId: import("zod").ZodString;
|
14546
|
-
emailEngineEmailId: import("zod").ZodString;
|
14547
|
-
emailEngineMessageId: import("zod").ZodString;
|
14548
|
-
emailEngineReplyTo: import("zod").ZodNullable<import("zod").ZodString>;
|
14549
|
-
direction: import("zod").ZodString;
|
14550
|
-
date: import("zod").ZodDate;
|
14551
|
-
action: import("zod").ZodString;
|
14552
|
-
unseen: import("zod").ZodBoolean;
|
14553
|
-
sendAt: import("zod").ZodDate;
|
14554
|
-
starred: import("zod").ZodBoolean;
|
14555
|
-
seemsLikeNew: import("zod").ZodBoolean;
|
14556
|
-
from: import("zod").ZodArray<import("zod").ZodObject<{
|
14557
|
-
id: import("zod").ZodString;
|
14558
|
-
createdAt: import("zod").ZodDate;
|
14559
|
-
updatedAt: import("zod").ZodDate;
|
14560
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
14561
|
-
name: import("zod").ZodString;
|
14562
|
-
address: import("zod").ZodString;
|
14563
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14564
|
-
id: string;
|
14565
|
-
address: string;
|
14566
|
-
name: string;
|
14567
|
-
createdAt: Date;
|
14568
|
-
updatedAt: Date;
|
14569
|
-
deletedAt: Date | null;
|
14570
|
-
}, {
|
14571
|
-
id: string;
|
14572
|
-
address: string;
|
14573
|
-
name: string;
|
14574
|
-
createdAt: Date;
|
14575
|
-
updatedAt: Date;
|
14576
|
-
deletedAt: Date | null;
|
14577
|
-
}>, "many">;
|
14578
|
-
to: import("zod").ZodArray<import("zod").ZodObject<{
|
14579
|
-
id: import("zod").ZodString;
|
14580
|
-
createdAt: import("zod").ZodDate;
|
14581
|
-
updatedAt: import("zod").ZodDate;
|
14582
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
14583
|
-
name: import("zod").ZodString;
|
14584
|
-
address: import("zod").ZodString;
|
14585
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14586
|
-
id: string;
|
14587
|
-
address: string;
|
14588
|
-
name: string;
|
14589
|
-
createdAt: Date;
|
14590
|
-
updatedAt: Date;
|
14591
|
-
deletedAt: Date | null;
|
14592
|
-
}, {
|
14593
|
-
id: string;
|
14594
|
-
address: string;
|
14595
|
-
name: string;
|
14596
|
-
createdAt: Date;
|
14597
|
-
updatedAt: Date;
|
14598
|
-
deletedAt: Date | null;
|
14599
|
-
}>, "many">;
|
14600
|
-
cc: import("zod").ZodArray<import("zod").ZodObject<{
|
14601
|
-
id: import("zod").ZodString;
|
14602
|
-
createdAt: import("zod").ZodDate;
|
14603
|
-
updatedAt: import("zod").ZodDate;
|
14604
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
14605
|
-
name: import("zod").ZodString;
|
14606
|
-
address: import("zod").ZodString;
|
14607
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14608
|
-
id: string;
|
14609
|
-
address: string;
|
14610
|
-
name: string;
|
14611
|
-
createdAt: Date;
|
14612
|
-
updatedAt: Date;
|
14613
|
-
deletedAt: Date | null;
|
14614
|
-
}, {
|
14615
|
-
id: string;
|
14616
|
-
address: string;
|
14617
|
-
name: string;
|
14618
|
-
createdAt: Date;
|
14619
|
-
updatedAt: Date;
|
14620
|
-
deletedAt: Date | null;
|
14621
|
-
}>, "many">;
|
14622
|
-
bcc: import("zod").ZodArray<import("zod").ZodObject<{
|
14623
|
-
id: import("zod").ZodString;
|
14624
|
-
createdAt: import("zod").ZodDate;
|
14625
|
-
updatedAt: import("zod").ZodDate;
|
14626
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
14627
|
-
name: import("zod").ZodString;
|
14628
|
-
address: import("zod").ZodString;
|
14629
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14630
|
-
id: string;
|
14631
|
-
address: string;
|
14632
|
-
name: string;
|
14633
|
-
createdAt: Date;
|
14634
|
-
updatedAt: Date;
|
14635
|
-
deletedAt: Date | null;
|
14636
|
-
}, {
|
14637
|
-
id: string;
|
14638
|
-
address: string;
|
14639
|
-
name: string;
|
14640
|
-
createdAt: Date;
|
14641
|
-
updatedAt: Date;
|
14642
|
-
deletedAt: Date | null;
|
14643
|
-
}>, "many">;
|
14644
|
-
attachments: import("zod").ZodArray<import("zod").ZodObject<{
|
14645
|
-
id: import("zod").ZodString;
|
14646
|
-
createdAt: import("zod").ZodDate;
|
14647
|
-
updatedAt: import("zod").ZodDate;
|
14648
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
14649
|
-
roomId: import("zod").ZodString;
|
14650
|
-
messageId: import("zod").ZodString;
|
14651
|
-
fileName: import("zod").ZodString;
|
14652
|
-
fileType: import("zod").ZodString;
|
14653
|
-
emailEngineAttachmentId: import("zod").ZodString;
|
14654
|
-
uploadId: import("zod").ZodString;
|
14655
|
-
upload: import("zod").ZodObject<{
|
14656
|
-
id: import("zod").ZodString;
|
14657
|
-
createdAt: import("zod").ZodDate;
|
14658
|
-
updatedAt: import("zod").ZodDate;
|
14659
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
14660
|
-
bucketName: import("zod").ZodString;
|
14661
|
-
fileName: import("zod").ZodString;
|
14662
|
-
fileKey: import("zod").ZodString;
|
14663
|
-
fileSize: import("zod").ZodNumber;
|
14664
|
-
fileUrl: import("zod").ZodString;
|
14665
|
-
extensionName: import("zod").ZodString;
|
14666
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14667
|
-
id: string;
|
14668
|
-
createdAt: Date;
|
14669
|
-
updatedAt: Date;
|
14670
|
-
deletedAt: Date | null;
|
14671
|
-
extensionName: string;
|
14672
|
-
fileName: string;
|
14673
|
-
fileKey: string;
|
14674
|
-
bucketName: string;
|
14675
|
-
fileSize: number;
|
14676
|
-
fileUrl: string;
|
14677
|
-
}, {
|
14678
|
-
id: string;
|
14679
|
-
createdAt: Date;
|
14680
|
-
updatedAt: Date;
|
14681
|
-
deletedAt: Date | null;
|
14682
|
-
extensionName: string;
|
14683
|
-
fileName: string;
|
14684
|
-
fileKey: string;
|
14685
|
-
bucketName: string;
|
14686
|
-
fileSize: number;
|
14687
|
-
fileUrl: string;
|
14688
|
-
}>;
|
14689
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14690
|
-
id: string;
|
14691
|
-
createdAt: Date;
|
14692
|
-
updatedAt: Date;
|
14693
|
-
deletedAt: Date | null;
|
14694
|
-
fileName: string;
|
14695
|
-
fileType: string;
|
14696
|
-
uploadId: string;
|
14697
|
-
upload: {
|
14698
|
-
id: string;
|
14699
|
-
createdAt: Date;
|
14700
|
-
updatedAt: Date;
|
14701
|
-
deletedAt: Date | null;
|
14702
|
-
extensionName: string;
|
14703
|
-
fileName: string;
|
14704
|
-
fileKey: string;
|
14705
|
-
bucketName: string;
|
14706
|
-
fileSize: number;
|
14707
|
-
fileUrl: string;
|
14708
|
-
};
|
14709
|
-
roomId: string;
|
14710
|
-
messageId: string;
|
14711
|
-
emailEngineAttachmentId: string;
|
14712
|
-
}, {
|
14713
|
-
id: string;
|
14714
|
-
createdAt: Date;
|
14715
|
-
updatedAt: Date;
|
14716
|
-
deletedAt: Date | null;
|
14717
|
-
fileName: string;
|
14718
|
-
fileType: string;
|
14719
|
-
uploadId: string;
|
14720
|
-
upload: {
|
14721
|
-
id: string;
|
14722
|
-
createdAt: Date;
|
14723
|
-
updatedAt: Date;
|
14724
|
-
deletedAt: Date | null;
|
14725
|
-
extensionName: string;
|
14726
|
-
fileName: string;
|
14727
|
-
fileKey: string;
|
14728
|
-
bucketName: string;
|
14729
|
-
fileSize: number;
|
14730
|
-
fileUrl: string;
|
14731
|
-
};
|
14732
|
-
roomId: string;
|
14733
|
-
messageId: string;
|
14734
|
-
emailEngineAttachmentId: string;
|
14735
|
-
}>, "many">;
|
14736
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14737
|
-
id: string;
|
14738
|
-
direction: string;
|
14739
|
-
action: string;
|
14740
|
-
date: Date;
|
14741
|
-
createdAt: Date;
|
14742
|
-
updatedAt: Date;
|
14743
|
-
deletedAt: Date | null;
|
14744
|
-
roomId: string;
|
14745
|
-
subject: string;
|
14746
|
-
textPlain: string;
|
14747
|
-
textHtml: string;
|
14748
|
-
textId: string;
|
14749
|
-
emailEngineEmailId: string;
|
14750
|
-
emailEngineMessageId: string;
|
14751
|
-
emailEngineReplyTo: string | null;
|
14752
|
-
unseen: boolean;
|
14753
|
-
sendAt: Date;
|
14754
|
-
starred: boolean;
|
14755
|
-
seemsLikeNew: boolean;
|
14756
|
-
from: {
|
14757
|
-
id: string;
|
14758
|
-
address: string;
|
14759
|
-
name: string;
|
14760
|
-
createdAt: Date;
|
14761
|
-
updatedAt: Date;
|
14762
|
-
deletedAt: Date | null;
|
14763
|
-
}[];
|
14764
|
-
to: {
|
14765
|
-
id: string;
|
14766
|
-
address: string;
|
14767
|
-
name: string;
|
14768
|
-
createdAt: Date;
|
14769
|
-
updatedAt: Date;
|
14770
|
-
deletedAt: Date | null;
|
14771
|
-
}[];
|
14772
|
-
cc: {
|
14773
|
-
id: string;
|
14774
|
-
address: string;
|
14775
|
-
name: string;
|
14776
|
-
createdAt: Date;
|
14777
|
-
updatedAt: Date;
|
14778
|
-
deletedAt: Date | null;
|
14779
|
-
}[];
|
14780
|
-
bcc: {
|
14781
|
-
id: string;
|
14782
|
-
address: string;
|
14783
|
-
name: string;
|
14784
|
-
createdAt: Date;
|
14785
|
-
updatedAt: Date;
|
14786
|
-
deletedAt: Date | null;
|
14787
|
-
}[];
|
14788
|
-
attachments: {
|
14789
|
-
id: string;
|
14790
|
-
createdAt: Date;
|
14791
|
-
updatedAt: Date;
|
14792
|
-
deletedAt: Date | null;
|
14793
|
-
fileName: string;
|
14794
|
-
fileType: string;
|
14795
|
-
uploadId: string;
|
14796
|
-
upload: {
|
14797
|
-
id: string;
|
14798
|
-
createdAt: Date;
|
14799
|
-
updatedAt: Date;
|
14800
|
-
deletedAt: Date | null;
|
14801
|
-
extensionName: string;
|
14802
|
-
fileName: string;
|
14803
|
-
fileKey: string;
|
14804
|
-
bucketName: string;
|
14805
|
-
fileSize: number;
|
14806
|
-
fileUrl: string;
|
14807
|
-
};
|
14808
|
-
roomId: string;
|
14809
|
-
messageId: string;
|
14810
|
-
emailEngineAttachmentId: string;
|
14811
|
-
}[];
|
14812
|
-
}, {
|
14813
|
-
id: string;
|
14814
|
-
direction: string;
|
14815
|
-
action: string;
|
14816
|
-
date: Date;
|
14817
|
-
createdAt: Date;
|
14818
|
-
updatedAt: Date;
|
14819
|
-
deletedAt: Date | null;
|
14820
|
-
roomId: string;
|
14821
|
-
subject: string;
|
14822
|
-
textPlain: string;
|
14823
|
-
textHtml: string;
|
14824
|
-
textId: string;
|
14825
|
-
emailEngineEmailId: string;
|
14826
|
-
emailEngineMessageId: string;
|
14827
|
-
emailEngineReplyTo: string | null;
|
14828
|
-
unseen: boolean;
|
14829
|
-
sendAt: Date;
|
14830
|
-
starred: boolean;
|
14831
|
-
seemsLikeNew: boolean;
|
14832
|
-
from: {
|
14833
|
-
id: string;
|
14834
|
-
address: string;
|
14835
|
-
name: string;
|
14836
|
-
createdAt: Date;
|
14837
|
-
updatedAt: Date;
|
14838
|
-
deletedAt: Date | null;
|
14839
|
-
}[];
|
14840
|
-
to: {
|
14841
|
-
id: string;
|
14842
|
-
address: string;
|
14843
|
-
name: string;
|
14844
|
-
createdAt: Date;
|
14845
|
-
updatedAt: Date;
|
14846
|
-
deletedAt: Date | null;
|
14847
|
-
}[];
|
14848
|
-
cc: {
|
14849
|
-
id: string;
|
14850
|
-
address: string;
|
14851
|
-
name: string;
|
14852
|
-
createdAt: Date;
|
14853
|
-
updatedAt: Date;
|
14854
|
-
deletedAt: Date | null;
|
14855
|
-
}[];
|
14856
|
-
bcc: {
|
14857
|
-
id: string;
|
14858
|
-
address: string;
|
14859
|
-
name: string;
|
14860
|
-
createdAt: Date;
|
14861
|
-
updatedAt: Date;
|
14862
|
-
deletedAt: Date | null;
|
14863
|
-
}[];
|
14864
|
-
attachments: {
|
14865
|
-
id: string;
|
14866
|
-
createdAt: Date;
|
14867
|
-
updatedAt: Date;
|
14868
|
-
deletedAt: Date | null;
|
14869
|
-
fileName: string;
|
14870
|
-
fileType: string;
|
14871
|
-
uploadId: string;
|
14872
|
-
upload: {
|
14873
|
-
id: string;
|
14874
|
-
createdAt: Date;
|
14875
|
-
updatedAt: Date;
|
14876
|
-
deletedAt: Date | null;
|
14877
|
-
extensionName: string;
|
14878
|
-
fileName: string;
|
14879
|
-
fileKey: string;
|
14880
|
-
bucketName: string;
|
14881
|
-
fileSize: number;
|
14882
|
-
fileUrl: string;
|
14883
|
-
};
|
14884
|
-
roomId: string;
|
14885
|
-
messageId: string;
|
14886
|
-
emailEngineAttachmentId: string;
|
14887
|
-
}[];
|
14888
|
-
}>;
|
14889
|
-
}, "strip", import("zod").ZodTypeAny, {
|
14890
|
-
data: {
|
14891
|
-
id: string;
|
14892
|
-
direction: string;
|
14893
|
-
action: string;
|
14894
|
-
date: Date;
|
14895
|
-
createdAt: Date;
|
14896
|
-
updatedAt: Date;
|
14897
|
-
deletedAt: Date | null;
|
14898
|
-
roomId: string;
|
14899
|
-
subject: string;
|
14900
|
-
textPlain: string;
|
14901
|
-
textHtml: string;
|
14902
|
-
textId: string;
|
14903
|
-
emailEngineEmailId: string;
|
14904
|
-
emailEngineMessageId: string;
|
14905
|
-
emailEngineReplyTo: string | null;
|
14906
|
-
unseen: boolean;
|
14907
|
-
sendAt: Date;
|
14908
|
-
starred: boolean;
|
14909
|
-
seemsLikeNew: boolean;
|
14910
|
-
from: {
|
14911
|
-
id: string;
|
14912
|
-
address: string;
|
14913
|
-
name: string;
|
14914
|
-
createdAt: Date;
|
14915
|
-
updatedAt: Date;
|
14916
|
-
deletedAt: Date | null;
|
14917
|
-
}[];
|
14918
|
-
to: {
|
14919
|
-
id: string;
|
14920
|
-
address: string;
|
14921
|
-
name: string;
|
14922
|
-
createdAt: Date;
|
14923
|
-
updatedAt: Date;
|
14924
|
-
deletedAt: Date | null;
|
14925
|
-
}[];
|
14926
|
-
cc: {
|
14927
|
-
id: string;
|
14928
|
-
address: string;
|
14929
|
-
name: string;
|
14930
|
-
createdAt: Date;
|
14931
|
-
updatedAt: Date;
|
14932
|
-
deletedAt: Date | null;
|
14933
|
-
}[];
|
14934
|
-
bcc: {
|
14935
|
-
id: string;
|
14936
|
-
address: string;
|
14937
|
-
name: string;
|
14938
|
-
createdAt: Date;
|
14939
|
-
updatedAt: Date;
|
14940
|
-
deletedAt: Date | null;
|
14941
|
-
}[];
|
14942
|
-
attachments: {
|
14943
|
-
id: string;
|
14944
|
-
createdAt: Date;
|
14945
|
-
updatedAt: Date;
|
14946
|
-
deletedAt: Date | null;
|
14947
|
-
fileName: string;
|
14948
|
-
fileType: string;
|
14949
|
-
uploadId: string;
|
14950
|
-
upload: {
|
14951
|
-
id: string;
|
14952
|
-
createdAt: Date;
|
14953
|
-
updatedAt: Date;
|
14954
|
-
deletedAt: Date | null;
|
14955
|
-
extensionName: string;
|
14956
|
-
fileName: string;
|
14957
|
-
fileKey: string;
|
14958
|
-
bucketName: string;
|
14959
|
-
fileSize: number;
|
14960
|
-
fileUrl: string;
|
14961
|
-
};
|
14962
|
-
roomId: string;
|
14963
|
-
messageId: string;
|
14964
|
-
emailEngineAttachmentId: string;
|
14965
|
-
}[];
|
14966
|
-
};
|
14967
|
-
requestId: string;
|
14968
|
-
}, {
|
14969
|
-
data: {
|
14970
|
-
id: string;
|
14971
|
-
direction: string;
|
14972
|
-
action: string;
|
14973
|
-
date: Date;
|
14974
|
-
createdAt: Date;
|
14975
|
-
updatedAt: Date;
|
14976
|
-
deletedAt: Date | null;
|
14977
|
-
roomId: string;
|
14978
|
-
subject: string;
|
14979
|
-
textPlain: string;
|
14980
|
-
textHtml: string;
|
14981
|
-
textId: string;
|
14982
|
-
emailEngineEmailId: string;
|
14983
|
-
emailEngineMessageId: string;
|
14984
|
-
emailEngineReplyTo: string | null;
|
14985
|
-
unseen: boolean;
|
14986
|
-
sendAt: Date;
|
14987
|
-
starred: boolean;
|
14988
|
-
seemsLikeNew: boolean;
|
14989
|
-
from: {
|
14990
|
-
id: string;
|
14991
|
-
address: string;
|
14992
|
-
name: string;
|
14993
|
-
createdAt: Date;
|
14994
|
-
updatedAt: Date;
|
14995
|
-
deletedAt: Date | null;
|
14996
|
-
}[];
|
14997
|
-
to: {
|
14998
|
-
id: string;
|
14999
|
-
address: string;
|
15000
|
-
name: string;
|
15001
|
-
createdAt: Date;
|
15002
|
-
updatedAt: Date;
|
15003
|
-
deletedAt: Date | null;
|
15004
|
-
}[];
|
15005
|
-
cc: {
|
15006
|
-
id: string;
|
15007
|
-
address: string;
|
15008
|
-
name: string;
|
15009
|
-
createdAt: Date;
|
15010
|
-
updatedAt: Date;
|
15011
|
-
deletedAt: Date | null;
|
15012
|
-
}[];
|
15013
|
-
bcc: {
|
15014
|
-
id: string;
|
15015
|
-
address: string;
|
15016
|
-
name: string;
|
15017
|
-
createdAt: Date;
|
15018
|
-
updatedAt: Date;
|
15019
|
-
deletedAt: Date | null;
|
15020
|
-
}[];
|
15021
|
-
attachments: {
|
15022
|
-
id: string;
|
15023
|
-
createdAt: Date;
|
15024
|
-
updatedAt: Date;
|
15025
|
-
deletedAt: Date | null;
|
15026
|
-
fileName: string;
|
15027
|
-
fileType: string;
|
15028
|
-
uploadId: string;
|
15029
|
-
upload: {
|
15030
|
-
id: string;
|
15031
|
-
createdAt: Date;
|
15032
|
-
updatedAt: Date;
|
15033
|
-
deletedAt: Date | null;
|
15034
|
-
extensionName: string;
|
15035
|
-
fileName: string;
|
15036
|
-
fileKey: string;
|
15037
|
-
bucketName: string;
|
15038
|
-
fileSize: number;
|
15039
|
-
fileUrl: string;
|
15040
|
-
};
|
15041
|
-
roomId: string;
|
15042
|
-
messageId: string;
|
15043
|
-
emailEngineAttachmentId: string;
|
15044
|
-
}[];
|
15045
|
-
};
|
15046
|
-
requestId: string;
|
15047
|
-
}>;
|
15048
|
-
};
|
15049
|
-
path: "mail/message/:id";
|
15050
|
-
};
|
15051
|
-
cancelScheduledMessage: {
|
15052
|
-
body: null;
|
15053
|
-
summary: "Cancel a scheduled message";
|
15054
|
-
method: "DELETE";
|
15055
|
-
pathParams: import("zod").ZodObject<{
|
15056
|
-
id: import("zod").ZodString;
|
15057
|
-
}, "strip", import("zod").ZodTypeAny, {
|
15058
|
-
id: string;
|
15059
|
-
}, {
|
15060
|
-
id: string;
|
15061
|
-
}>;
|
15062
|
-
responses: {
|
15063
|
-
401: import("zod").ZodObject<{
|
15064
|
-
message: import("zod").ZodString;
|
15065
|
-
error: import("zod").ZodAny;
|
15066
|
-
}, "strip", import("zod").ZodTypeAny, {
|
15067
|
-
message: string;
|
15068
|
-
error?: any;
|
15069
|
-
}, {
|
15070
|
-
message: string;
|
15071
|
-
error?: any;
|
15072
|
-
}>;
|
15073
|
-
404: import("zod").ZodObject<{
|
15074
|
-
message: import("zod").ZodString;
|
15075
|
-
error: import("zod").ZodAny;
|
15076
|
-
}, "strip", import("zod").ZodTypeAny, {
|
15077
|
-
message: string;
|
15078
|
-
error?: any;
|
15079
|
-
}, {
|
15080
|
-
message: string;
|
15081
|
-
error?: any;
|
15082
|
-
}>;
|
15083
|
-
422: import("zod").ZodObject<{
|
15084
|
-
message: import("zod").ZodString;
|
15085
|
-
error: import("zod").ZodAny;
|
15086
|
-
}, "strip", import("zod").ZodTypeAny, {
|
15087
|
-
message: string;
|
15088
|
-
error?: any;
|
15089
|
-
}, {
|
15090
|
-
message: string;
|
15091
|
-
error?: any;
|
15092
|
-
}>;
|
15093
|
-
200: import("zod").ZodObject<{
|
15094
|
-
requestId: import("zod").ZodString;
|
15095
|
-
data: import("zod").ZodObject<{
|
15096
|
-
id: import("zod").ZodString;
|
15097
|
-
createdAt: import("zod").ZodDate;
|
15098
|
-
updatedAt: import("zod").ZodDate;
|
15099
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15100
|
-
roomId: import("zod").ZodString;
|
15101
|
-
subject: import("zod").ZodString;
|
15102
|
-
textPlain: import("zod").ZodString;
|
15103
|
-
textHtml: import("zod").ZodString;
|
15104
|
-
textId: import("zod").ZodString;
|
15105
|
-
emailEngineEmailId: import("zod").ZodString;
|
15106
|
-
emailEngineMessageId: import("zod").ZodString;
|
15107
|
-
emailEngineReplyTo: import("zod").ZodNullable<import("zod").ZodString>;
|
15108
|
-
direction: import("zod").ZodString;
|
15109
|
-
date: import("zod").ZodDate;
|
15110
|
-
action: import("zod").ZodString;
|
15111
|
-
unseen: import("zod").ZodBoolean;
|
15112
|
-
sendAt: import("zod").ZodDate;
|
15113
|
-
starred: import("zod").ZodBoolean;
|
15114
|
-
seemsLikeNew: import("zod").ZodBoolean;
|
15115
|
-
from: import("zod").ZodArray<import("zod").ZodObject<{
|
15116
|
-
id: import("zod").ZodString;
|
15117
|
-
createdAt: import("zod").ZodDate;
|
15118
|
-
updatedAt: import("zod").ZodDate;
|
15119
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15120
|
-
name: import("zod").ZodString;
|
15121
|
-
address: import("zod").ZodString;
|
15122
|
-
}, "strip", import("zod").ZodTypeAny, {
|
15123
|
-
id: string;
|
15124
|
-
address: string;
|
15125
|
-
name: string;
|
15126
|
-
createdAt: Date;
|
15127
|
-
updatedAt: Date;
|
15128
|
-
deletedAt: Date | null;
|
15129
|
-
}, {
|
15130
|
-
id: string;
|
15131
|
-
address: string;
|
15132
|
-
name: string;
|
15133
|
-
createdAt: Date;
|
15134
|
-
updatedAt: Date;
|
15135
|
-
deletedAt: Date | null;
|
15136
|
-
}>, "many">;
|
15137
|
-
to: import("zod").ZodArray<import("zod").ZodObject<{
|
15138
|
-
id: import("zod").ZodString;
|
15139
|
-
createdAt: import("zod").ZodDate;
|
15140
|
-
updatedAt: import("zod").ZodDate;
|
15141
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15142
|
-
name: import("zod").ZodString;
|
15143
|
-
address: import("zod").ZodString;
|
15144
|
-
}, "strip", import("zod").ZodTypeAny, {
|
15145
|
-
id: string;
|
15146
|
-
address: string;
|
15147
|
-
name: string;
|
15148
|
-
createdAt: Date;
|
15149
|
-
updatedAt: Date;
|
15150
|
-
deletedAt: Date | null;
|
15151
|
-
}, {
|
15152
|
-
id: string;
|
15153
|
-
address: string;
|
15154
|
-
name: string;
|
15155
|
-
createdAt: Date;
|
15156
|
-
updatedAt: Date;
|
15157
|
-
deletedAt: Date | null;
|
15158
|
-
}>, "many">;
|
15159
|
-
cc: import("zod").ZodArray<import("zod").ZodObject<{
|
15160
|
-
id: import("zod").ZodString;
|
15161
|
-
createdAt: import("zod").ZodDate;
|
15162
|
-
updatedAt: import("zod").ZodDate;
|
15163
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15164
|
-
name: import("zod").ZodString;
|
15165
|
-
address: import("zod").ZodString;
|
15166
|
-
}, "strip", import("zod").ZodTypeAny, {
|
15167
|
-
id: string;
|
15168
|
-
address: string;
|
15169
|
-
name: string;
|
15170
|
-
createdAt: Date;
|
15171
|
-
updatedAt: Date;
|
15172
|
-
deletedAt: Date | null;
|
15173
|
-
}, {
|
15174
|
-
id: string;
|
15175
|
-
address: string;
|
15176
|
-
name: string;
|
15177
|
-
createdAt: Date;
|
15178
|
-
updatedAt: Date;
|
15179
|
-
deletedAt: Date | null;
|
15180
|
-
}>, "many">;
|
15181
|
-
bcc: import("zod").ZodArray<import("zod").ZodObject<{
|
15182
|
-
id: import("zod").ZodString;
|
15183
|
-
createdAt: import("zod").ZodDate;
|
15184
|
-
updatedAt: import("zod").ZodDate;
|
15185
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15186
|
-
name: import("zod").ZodString;
|
15187
|
-
address: import("zod").ZodString;
|
15188
|
-
}, "strip", import("zod").ZodTypeAny, {
|
15189
|
-
id: string;
|
15190
|
-
address: string;
|
15191
|
-
name: string;
|
15192
|
-
createdAt: Date;
|
15193
|
-
updatedAt: Date;
|
15194
|
-
deletedAt: Date | null;
|
15195
|
-
}, {
|
15196
|
-
id: string;
|
15197
|
-
address: string;
|
15198
|
-
name: string;
|
15199
|
-
createdAt: Date;
|
15200
|
-
updatedAt: Date;
|
15201
|
-
deletedAt: Date | null;
|
15202
|
-
}>, "many">;
|
15203
|
-
attachments: import("zod").ZodArray<import("zod").ZodObject<{
|
15204
|
-
id: import("zod").ZodString;
|
15205
|
-
createdAt: import("zod").ZodDate;
|
15206
|
-
updatedAt: import("zod").ZodDate;
|
15207
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15208
|
-
roomId: import("zod").ZodString;
|
15209
|
-
messageId: import("zod").ZodString;
|
15210
|
-
fileName: import("zod").ZodString;
|
15211
|
-
fileType: import("zod").ZodString;
|
15212
|
-
emailEngineAttachmentId: import("zod").ZodString;
|
15213
|
-
uploadId: import("zod").ZodString;
|
15214
|
-
upload: import("zod").ZodObject<{
|
15215
|
-
id: import("zod").ZodString;
|
15216
|
-
createdAt: import("zod").ZodDate;
|
15217
|
-
updatedAt: import("zod").ZodDate;
|
15218
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15219
|
-
bucketName: import("zod").ZodString;
|
15220
|
-
fileName: import("zod").ZodString;
|
15221
|
-
fileKey: import("zod").ZodString;
|
15222
|
-
fileSize: import("zod").ZodNumber;
|
15223
|
-
fileUrl: import("zod").ZodString;
|
15224
|
-
extensionName: import("zod").ZodString;
|
15225
|
-
}, "strip", import("zod").ZodTypeAny, {
|
15226
|
-
id: string;
|
15227
|
-
createdAt: Date;
|
15228
|
-
updatedAt: Date;
|
15229
|
-
deletedAt: Date | null;
|
15230
|
-
extensionName: string;
|
15231
|
-
fileName: string;
|
15232
|
-
fileKey: string;
|
15233
|
-
bucketName: string;
|
15234
|
-
fileSize: number;
|
15235
|
-
fileUrl: string;
|
15236
|
-
}, {
|
15237
|
-
id: string;
|
15238
|
-
createdAt: Date;
|
15239
|
-
updatedAt: Date;
|
15240
|
-
deletedAt: Date | null;
|
15241
|
-
extensionName: string;
|
15242
|
-
fileName: string;
|
15243
|
-
fileKey: string;
|
15244
|
-
bucketName: string;
|
15245
|
-
fileSize: number;
|
15246
|
-
fileUrl: string;
|
15247
|
-
}>;
|
15248
|
-
}, "strip", import("zod").ZodTypeAny, {
|
15249
|
-
id: string;
|
15250
|
-
createdAt: Date;
|
15251
|
-
updatedAt: Date;
|
15252
|
-
deletedAt: Date | null;
|
15253
|
-
fileName: string;
|
15254
|
-
fileType: string;
|
15255
|
-
uploadId: string;
|
15256
|
-
upload: {
|
15257
|
-
id: string;
|
15258
|
-
createdAt: Date;
|
15259
|
-
updatedAt: Date;
|
15260
|
-
deletedAt: Date | null;
|
15261
|
-
extensionName: string;
|
15262
|
-
fileName: string;
|
15263
|
-
fileKey: string;
|
15264
|
-
bucketName: string;
|
15265
|
-
fileSize: number;
|
15266
|
-
fileUrl: string;
|
15267
|
-
};
|
15268
|
-
roomId: string;
|
15269
|
-
messageId: string;
|
15270
|
-
emailEngineAttachmentId: string;
|
15271
|
-
}, {
|
15272
|
-
id: string;
|
15273
|
-
createdAt: Date;
|
15274
|
-
updatedAt: Date;
|
15275
|
-
deletedAt: Date | null;
|
15276
|
-
fileName: string;
|
15277
|
-
fileType: string;
|
15278
|
-
uploadId: string;
|
15279
|
-
upload: {
|
15280
|
-
id: string;
|
15281
|
-
createdAt: Date;
|
15282
|
-
updatedAt: Date;
|
15283
|
-
deletedAt: Date | null;
|
15284
|
-
extensionName: string;
|
15285
|
-
fileName: string;
|
15286
|
-
fileKey: string;
|
15287
|
-
bucketName: string;
|
15288
|
-
fileSize: number;
|
15289
|
-
fileUrl: string;
|
15290
|
-
};
|
15291
|
-
roomId: string;
|
15292
|
-
messageId: string;
|
15293
|
-
emailEngineAttachmentId: string;
|
15294
|
-
}>, "many">;
|
15295
|
-
}, "strip", import("zod").ZodTypeAny, {
|
15296
|
-
id: string;
|
15297
|
-
direction: string;
|
15298
|
-
action: string;
|
15299
|
-
date: Date;
|
15300
|
-
createdAt: Date;
|
15301
|
-
updatedAt: Date;
|
15302
|
-
deletedAt: Date | null;
|
15303
|
-
roomId: string;
|
15304
|
-
subject: string;
|
15305
|
-
textPlain: string;
|
15306
|
-
textHtml: string;
|
15307
|
-
textId: string;
|
15308
|
-
emailEngineEmailId: string;
|
15309
|
-
emailEngineMessageId: string;
|
15310
|
-
emailEngineReplyTo: string | null;
|
15311
|
-
unseen: boolean;
|
15312
|
-
sendAt: Date;
|
15313
|
-
starred: boolean;
|
15314
|
-
seemsLikeNew: boolean;
|
15315
|
-
from: {
|
15316
|
-
id: string;
|
15317
|
-
address: string;
|
15318
|
-
name: string;
|
15319
|
-
createdAt: Date;
|
15320
|
-
updatedAt: Date;
|
15321
|
-
deletedAt: Date | null;
|
15322
|
-
}[];
|
15323
|
-
to: {
|
15324
|
-
id: string;
|
15325
|
-
address: string;
|
15326
|
-
name: string;
|
15327
|
-
createdAt: Date;
|
15328
|
-
updatedAt: Date;
|
15329
|
-
deletedAt: Date | null;
|
15330
|
-
}[];
|
15331
|
-
cc: {
|
15332
|
-
id: string;
|
15333
|
-
address: string;
|
15334
|
-
name: string;
|
15335
|
-
createdAt: Date;
|
15336
|
-
updatedAt: Date;
|
15337
|
-
deletedAt: Date | null;
|
15338
|
-
}[];
|
15339
|
-
bcc: {
|
15340
|
-
id: string;
|
15341
|
-
address: string;
|
15342
|
-
name: string;
|
15343
|
-
createdAt: Date;
|
15344
|
-
updatedAt: Date;
|
15345
|
-
deletedAt: Date | null;
|
15346
|
-
}[];
|
15347
|
-
attachments: {
|
15348
|
-
id: string;
|
15349
|
-
createdAt: Date;
|
15350
|
-
updatedAt: Date;
|
15351
|
-
deletedAt: Date | null;
|
15352
|
-
fileName: string;
|
15353
|
-
fileType: string;
|
15354
|
-
uploadId: string;
|
15355
|
-
upload: {
|
15356
|
-
id: string;
|
15357
|
-
createdAt: Date;
|
15358
|
-
updatedAt: Date;
|
15359
|
-
deletedAt: Date | null;
|
15360
|
-
extensionName: string;
|
15361
|
-
fileName: string;
|
15362
|
-
fileKey: string;
|
15363
|
-
bucketName: string;
|
15364
|
-
fileSize: number;
|
15365
|
-
fileUrl: string;
|
15366
|
-
};
|
15367
|
-
roomId: string;
|
15368
|
-
messageId: string;
|
15369
|
-
emailEngineAttachmentId: string;
|
15370
|
-
}[];
|
15371
|
-
}, {
|
15372
|
-
id: string;
|
15373
|
-
direction: string;
|
15374
|
-
action: string;
|
15375
|
-
date: Date;
|
15376
|
-
createdAt: Date;
|
15377
|
-
updatedAt: Date;
|
15378
|
-
deletedAt: Date | null;
|
15379
|
-
roomId: string;
|
15380
|
-
subject: string;
|
15381
|
-
textPlain: string;
|
15382
|
-
textHtml: string;
|
15383
|
-
textId: string;
|
15384
|
-
emailEngineEmailId: string;
|
15385
|
-
emailEngineMessageId: string;
|
15386
|
-
emailEngineReplyTo: string | null;
|
15387
|
-
unseen: boolean;
|
15388
|
-
sendAt: Date;
|
15389
|
-
starred: boolean;
|
15390
|
-
seemsLikeNew: boolean;
|
15391
|
-
from: {
|
15392
|
-
id: string;
|
15393
|
-
address: string;
|
15394
|
-
name: string;
|
15395
|
-
createdAt: Date;
|
15396
|
-
updatedAt: Date;
|
15397
|
-
deletedAt: Date | null;
|
15398
|
-
}[];
|
15399
|
-
to: {
|
15400
|
-
id: string;
|
15401
|
-
address: string;
|
15402
|
-
name: string;
|
15403
|
-
createdAt: Date;
|
15404
|
-
updatedAt: Date;
|
15405
|
-
deletedAt: Date | null;
|
15406
|
-
}[];
|
15407
|
-
cc: {
|
15408
|
-
id: string;
|
15409
|
-
address: string;
|
15410
|
-
name: string;
|
15411
|
-
createdAt: Date;
|
15412
|
-
updatedAt: Date;
|
15413
|
-
deletedAt: Date | null;
|
15414
|
-
}[];
|
15415
|
-
bcc: {
|
15416
|
-
id: string;
|
15417
|
-
address: string;
|
15418
|
-
name: string;
|
15419
|
-
createdAt: Date;
|
15420
|
-
updatedAt: Date;
|
15421
|
-
deletedAt: Date | null;
|
15422
|
-
}[];
|
15423
|
-
attachments: {
|
15424
|
-
id: string;
|
15425
|
-
createdAt: Date;
|
15426
|
-
updatedAt: Date;
|
15427
|
-
deletedAt: Date | null;
|
15428
|
-
fileName: string;
|
15429
|
-
fileType: string;
|
15430
|
-
uploadId: string;
|
15431
|
-
upload: {
|
15432
|
-
id: string;
|
15433
|
-
createdAt: Date;
|
15434
|
-
updatedAt: Date;
|
15435
|
-
deletedAt: Date | null;
|
15436
|
-
extensionName: string;
|
15437
|
-
fileName: string;
|
15438
|
-
fileKey: string;
|
15439
|
-
bucketName: string;
|
15440
|
-
fileSize: number;
|
15441
|
-
fileUrl: string;
|
15442
|
-
};
|
15443
|
-
roomId: string;
|
15444
|
-
messageId: string;
|
15445
|
-
emailEngineAttachmentId: string;
|
15446
|
-
}[];
|
15447
|
-
}>;
|
15448
|
-
}, "strip", import("zod").ZodTypeAny, {
|
15449
|
-
data: {
|
15450
|
-
id: string;
|
15451
|
-
direction: string;
|
15452
|
-
action: string;
|
15453
|
-
date: Date;
|
15454
|
-
createdAt: Date;
|
15455
|
-
updatedAt: Date;
|
15456
|
-
deletedAt: Date | null;
|
15457
|
-
roomId: string;
|
15458
|
-
subject: string;
|
15459
|
-
textPlain: string;
|
15460
|
-
textHtml: string;
|
15461
|
-
textId: string;
|
15462
|
-
emailEngineEmailId: string;
|
15463
|
-
emailEngineMessageId: string;
|
15464
|
-
emailEngineReplyTo: string | null;
|
15465
|
-
unseen: boolean;
|
15466
|
-
sendAt: Date;
|
15467
|
-
starred: boolean;
|
15468
|
-
seemsLikeNew: boolean;
|
15469
|
-
from: {
|
15470
|
-
id: string;
|
15471
|
-
address: string;
|
15472
|
-
name: string;
|
15473
|
-
createdAt: Date;
|
15474
|
-
updatedAt: Date;
|
15475
|
-
deletedAt: Date | null;
|
15476
|
-
}[];
|
15477
|
-
to: {
|
15478
|
-
id: string;
|
15479
|
-
address: string;
|
15480
|
-
name: string;
|
15481
|
-
createdAt: Date;
|
15482
|
-
updatedAt: Date;
|
15483
|
-
deletedAt: Date | null;
|
15484
|
-
}[];
|
15485
|
-
cc: {
|
15486
|
-
id: string;
|
15487
|
-
address: string;
|
15488
|
-
name: string;
|
15489
|
-
createdAt: Date;
|
15490
|
-
updatedAt: Date;
|
15491
|
-
deletedAt: Date | null;
|
15492
|
-
}[];
|
15493
|
-
bcc: {
|
15494
|
-
id: string;
|
15495
|
-
address: string;
|
15496
|
-
name: string;
|
15497
|
-
createdAt: Date;
|
15498
|
-
updatedAt: Date;
|
15499
|
-
deletedAt: Date | null;
|
15500
|
-
}[];
|
15501
|
-
attachments: {
|
15502
|
-
id: string;
|
15503
|
-
createdAt: Date;
|
15504
|
-
updatedAt: Date;
|
15505
|
-
deletedAt: Date | null;
|
15506
|
-
fileName: string;
|
15507
|
-
fileType: string;
|
15508
|
-
uploadId: string;
|
15509
|
-
upload: {
|
15510
|
-
id: string;
|
15511
|
-
createdAt: Date;
|
15512
|
-
updatedAt: Date;
|
15513
|
-
deletedAt: Date | null;
|
15514
|
-
extensionName: string;
|
15515
|
-
fileName: string;
|
15516
|
-
fileKey: string;
|
15517
|
-
bucketName: string;
|
15518
|
-
fileSize: number;
|
15519
|
-
fileUrl: string;
|
15520
|
-
};
|
15521
|
-
roomId: string;
|
15522
|
-
messageId: string;
|
15523
|
-
emailEngineAttachmentId: string;
|
15524
|
-
}[];
|
15525
|
-
};
|
15526
|
-
requestId: string;
|
15527
|
-
}, {
|
15528
|
-
data: {
|
15529
|
-
id: string;
|
15530
|
-
direction: string;
|
15531
|
-
action: string;
|
15532
|
-
date: Date;
|
15533
|
-
createdAt: Date;
|
15534
|
-
updatedAt: Date;
|
15535
|
-
deletedAt: Date | null;
|
15536
|
-
roomId: string;
|
15537
|
-
subject: string;
|
15538
|
-
textPlain: string;
|
15539
|
-
textHtml: string;
|
15540
|
-
textId: string;
|
15541
|
-
emailEngineEmailId: string;
|
15542
|
-
emailEngineMessageId: string;
|
15543
|
-
emailEngineReplyTo: string | null;
|
15544
|
-
unseen: boolean;
|
15545
|
-
sendAt: Date;
|
15546
|
-
starred: boolean;
|
15547
|
-
seemsLikeNew: boolean;
|
15548
|
-
from: {
|
15549
|
-
id: string;
|
15550
|
-
address: string;
|
15551
|
-
name: string;
|
15552
|
-
createdAt: Date;
|
15553
|
-
updatedAt: Date;
|
15554
|
-
deletedAt: Date | null;
|
15555
|
-
}[];
|
15556
|
-
to: {
|
15557
|
-
id: string;
|
15558
|
-
address: string;
|
15559
|
-
name: string;
|
15560
|
-
createdAt: Date;
|
15561
|
-
updatedAt: Date;
|
15562
|
-
deletedAt: Date | null;
|
15563
|
-
}[];
|
15564
|
-
cc: {
|
15565
|
-
id: string;
|
15566
|
-
address: string;
|
15567
|
-
name: string;
|
15568
|
-
createdAt: Date;
|
15569
|
-
updatedAt: Date;
|
15570
|
-
deletedAt: Date | null;
|
15571
|
-
}[];
|
15572
|
-
bcc: {
|
15573
|
-
id: string;
|
15574
|
-
address: string;
|
15575
|
-
name: string;
|
15576
|
-
createdAt: Date;
|
15577
|
-
updatedAt: Date;
|
15578
|
-
deletedAt: Date | null;
|
15579
|
-
}[];
|
15580
|
-
attachments: {
|
15581
|
-
id: string;
|
15582
|
-
createdAt: Date;
|
15583
|
-
updatedAt: Date;
|
15584
|
-
deletedAt: Date | null;
|
15585
|
-
fileName: string;
|
15586
|
-
fileType: string;
|
15587
|
-
uploadId: string;
|
15588
|
-
upload: {
|
15589
|
-
id: string;
|
15590
|
-
createdAt: Date;
|
15591
|
-
updatedAt: Date;
|
15592
|
-
deletedAt: Date | null;
|
15593
|
-
extensionName: string;
|
15594
|
-
fileName: string;
|
15595
|
-
fileKey: string;
|
15596
|
-
bucketName: string;
|
15597
|
-
fileSize: number;
|
15598
|
-
fileUrl: string;
|
15599
|
-
};
|
15600
|
-
roomId: string;
|
15601
|
-
messageId: string;
|
15602
|
-
emailEngineAttachmentId: string;
|
15603
|
-
}[];
|
15604
|
-
};
|
15605
|
-
requestId: string;
|
15606
|
-
}>;
|
15607
|
-
};
|
15608
|
-
path: "mail/message/scheduled_message/:id";
|
15609
|
-
};
|
15610
13400
|
};
|
15611
13401
|
account: {
|
15612
13402
|
create: {
|