@kl1/contracts 1.1.0-uat → 1.1.2-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +837 -939
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +837 -938
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +57 -57
- package/dist/src/chat/schema.d.ts +8 -8
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +15 -15
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +1260 -1720
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/index.d.ts +0 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +12 -12
- package/dist/src/line/index.d.ts +12 -12
- package/dist/src/mail/account-contract.d.ts +132 -132
- package/dist/src/mail/index.d.ts +0 -10
- package/dist/src/mail/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +1152 -1612
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server-contract.d.ts +18 -477
- package/dist/src/mail/mail-server-contract.d.ts.map +1 -1
- package/dist/src/mail/message-contract.d.ts +54 -54
- package/dist/src/mail/room-contract.d.ts +948 -951
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/account-validation.schema.d.ts +140 -140
- package/dist/src/mail/schemas/account-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/account.schema.d.ts +32 -32
- package/dist/src/mail/schemas/message.schema.d.ts +42 -42
- package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +316 -319
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +259 -683
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +12 -12
- package/dist/src/user/index.d.ts +3 -3
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +12 -12
- package/package.json +1 -1
@@ -52,7 +52,7 @@ export declare const UserModel: z.ZodObject<{
|
|
52
52
|
email: z.ZodString;
|
53
53
|
address: z.ZodNullable<z.ZodString>;
|
54
54
|
phone: z.ZodNullable<z.ZodString>;
|
55
|
-
|
55
|
+
notification_count: z.ZodNullable<z.ZodNumber>;
|
56
56
|
}, "strip", z.ZodTypeAny, {
|
57
57
|
id: string;
|
58
58
|
address: string | null;
|
@@ -62,7 +62,7 @@ export declare const UserModel: z.ZodObject<{
|
|
62
62
|
updatedAt: Date;
|
63
63
|
deletedAt: Date | null;
|
64
64
|
phone: string | null;
|
65
|
-
|
65
|
+
notification_count: number | null;
|
66
66
|
}, {
|
67
67
|
id: string;
|
68
68
|
address: string | null;
|
@@ -72,432 +72,8 @@ export declare const UserModel: z.ZodObject<{
|
|
72
72
|
updatedAt: Date;
|
73
73
|
deletedAt: Date | null;
|
74
74
|
phone: string | null;
|
75
|
-
|
75
|
+
notification_count: number | null;
|
76
76
|
}>;
|
77
|
-
export declare const MessagesAndLogsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
78
|
-
id: z.ZodString;
|
79
|
-
createdAt: z.ZodDate;
|
80
|
-
updatedAt: z.ZodDate;
|
81
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
82
|
-
roomId: z.ZodString;
|
83
|
-
subject: z.ZodString;
|
84
|
-
textPlain: z.ZodString;
|
85
|
-
textHtml: z.ZodString;
|
86
|
-
textId: z.ZodString;
|
87
|
-
emailEngineEmailId: z.ZodString;
|
88
|
-
emailEngineMessageId: z.ZodString;
|
89
|
-
emailEngineReplyTo: z.ZodNullable<z.ZodString>;
|
90
|
-
direction: z.ZodString;
|
91
|
-
date: z.ZodDate;
|
92
|
-
action: z.ZodString;
|
93
|
-
unseen: z.ZodBoolean;
|
94
|
-
seemsLikeNew: z.ZodBoolean;
|
95
|
-
from: z.ZodArray<z.ZodObject<{
|
96
|
-
id: z.ZodString;
|
97
|
-
createdAt: z.ZodDate;
|
98
|
-
updatedAt: z.ZodDate;
|
99
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
100
|
-
name: z.ZodString;
|
101
|
-
address: z.ZodString;
|
102
|
-
}, "strip", z.ZodTypeAny, {
|
103
|
-
id: string;
|
104
|
-
address: string;
|
105
|
-
name: string;
|
106
|
-
createdAt: Date;
|
107
|
-
updatedAt: Date;
|
108
|
-
deletedAt: Date | null;
|
109
|
-
}, {
|
110
|
-
id: string;
|
111
|
-
address: string;
|
112
|
-
name: string;
|
113
|
-
createdAt: Date;
|
114
|
-
updatedAt: Date;
|
115
|
-
deletedAt: Date | null;
|
116
|
-
}>, "many">;
|
117
|
-
to: z.ZodArray<z.ZodObject<{
|
118
|
-
id: z.ZodString;
|
119
|
-
createdAt: z.ZodDate;
|
120
|
-
updatedAt: z.ZodDate;
|
121
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
122
|
-
name: z.ZodString;
|
123
|
-
address: z.ZodString;
|
124
|
-
}, "strip", z.ZodTypeAny, {
|
125
|
-
id: string;
|
126
|
-
address: string;
|
127
|
-
name: string;
|
128
|
-
createdAt: Date;
|
129
|
-
updatedAt: Date;
|
130
|
-
deletedAt: Date | null;
|
131
|
-
}, {
|
132
|
-
id: string;
|
133
|
-
address: string;
|
134
|
-
name: string;
|
135
|
-
createdAt: Date;
|
136
|
-
updatedAt: Date;
|
137
|
-
deletedAt: Date | null;
|
138
|
-
}>, "many">;
|
139
|
-
cc: z.ZodArray<z.ZodObject<{
|
140
|
-
id: z.ZodString;
|
141
|
-
createdAt: z.ZodDate;
|
142
|
-
updatedAt: z.ZodDate;
|
143
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
144
|
-
name: z.ZodString;
|
145
|
-
address: z.ZodString;
|
146
|
-
}, "strip", z.ZodTypeAny, {
|
147
|
-
id: string;
|
148
|
-
address: string;
|
149
|
-
name: string;
|
150
|
-
createdAt: Date;
|
151
|
-
updatedAt: Date;
|
152
|
-
deletedAt: Date | null;
|
153
|
-
}, {
|
154
|
-
id: string;
|
155
|
-
address: string;
|
156
|
-
name: string;
|
157
|
-
createdAt: Date;
|
158
|
-
updatedAt: Date;
|
159
|
-
deletedAt: Date | null;
|
160
|
-
}>, "many">;
|
161
|
-
bcc: z.ZodArray<z.ZodObject<{
|
162
|
-
id: z.ZodString;
|
163
|
-
createdAt: z.ZodDate;
|
164
|
-
updatedAt: z.ZodDate;
|
165
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
166
|
-
name: z.ZodString;
|
167
|
-
address: z.ZodString;
|
168
|
-
}, "strip", z.ZodTypeAny, {
|
169
|
-
id: string;
|
170
|
-
address: string;
|
171
|
-
name: string;
|
172
|
-
createdAt: Date;
|
173
|
-
updatedAt: Date;
|
174
|
-
deletedAt: Date | null;
|
175
|
-
}, {
|
176
|
-
id: string;
|
177
|
-
address: string;
|
178
|
-
name: string;
|
179
|
-
createdAt: Date;
|
180
|
-
updatedAt: Date;
|
181
|
-
deletedAt: Date | null;
|
182
|
-
}>, "many">;
|
183
|
-
attachments: z.ZodArray<z.ZodObject<{
|
184
|
-
id: z.ZodString;
|
185
|
-
createdAt: z.ZodDate;
|
186
|
-
updatedAt: z.ZodDate;
|
187
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
188
|
-
roomId: z.ZodString;
|
189
|
-
messageId: z.ZodString;
|
190
|
-
fileName: z.ZodString;
|
191
|
-
fileType: z.ZodString;
|
192
|
-
emailEngineAttachmentId: z.ZodString;
|
193
|
-
uploadId: z.ZodString;
|
194
|
-
upload: z.ZodObject<{
|
195
|
-
id: z.ZodString;
|
196
|
-
createdAt: z.ZodDate;
|
197
|
-
updatedAt: z.ZodDate;
|
198
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
199
|
-
bucketName: z.ZodString;
|
200
|
-
fileName: z.ZodString;
|
201
|
-
fileKey: z.ZodString;
|
202
|
-
fileSize: z.ZodNumber;
|
203
|
-
fileUrl: z.ZodString;
|
204
|
-
extensionName: z.ZodString;
|
205
|
-
}, "strip", z.ZodTypeAny, {
|
206
|
-
id: string;
|
207
|
-
createdAt: Date;
|
208
|
-
updatedAt: Date;
|
209
|
-
deletedAt: Date | null;
|
210
|
-
extensionName: string;
|
211
|
-
fileName: string;
|
212
|
-
fileKey: string;
|
213
|
-
bucketName: string;
|
214
|
-
fileSize: number;
|
215
|
-
fileUrl: string;
|
216
|
-
}, {
|
217
|
-
id: string;
|
218
|
-
createdAt: Date;
|
219
|
-
updatedAt: Date;
|
220
|
-
deletedAt: Date | null;
|
221
|
-
extensionName: string;
|
222
|
-
fileName: string;
|
223
|
-
fileKey: string;
|
224
|
-
bucketName: string;
|
225
|
-
fileSize: number;
|
226
|
-
fileUrl: string;
|
227
|
-
}>;
|
228
|
-
}, "strip", z.ZodTypeAny, {
|
229
|
-
id: string;
|
230
|
-
createdAt: Date;
|
231
|
-
updatedAt: Date;
|
232
|
-
deletedAt: Date | null;
|
233
|
-
fileName: string;
|
234
|
-
fileType: string;
|
235
|
-
uploadId: string;
|
236
|
-
upload: {
|
237
|
-
id: string;
|
238
|
-
createdAt: Date;
|
239
|
-
updatedAt: Date;
|
240
|
-
deletedAt: Date | null;
|
241
|
-
extensionName: string;
|
242
|
-
fileName: string;
|
243
|
-
fileKey: string;
|
244
|
-
bucketName: string;
|
245
|
-
fileSize: number;
|
246
|
-
fileUrl: string;
|
247
|
-
};
|
248
|
-
roomId: string;
|
249
|
-
messageId: string;
|
250
|
-
emailEngineAttachmentId: string;
|
251
|
-
}, {
|
252
|
-
id: string;
|
253
|
-
createdAt: Date;
|
254
|
-
updatedAt: Date;
|
255
|
-
deletedAt: Date | null;
|
256
|
-
fileName: string;
|
257
|
-
fileType: string;
|
258
|
-
uploadId: string;
|
259
|
-
upload: {
|
260
|
-
id: string;
|
261
|
-
createdAt: Date;
|
262
|
-
updatedAt: Date;
|
263
|
-
deletedAt: Date | null;
|
264
|
-
extensionName: string;
|
265
|
-
fileName: string;
|
266
|
-
fileKey: string;
|
267
|
-
bucketName: string;
|
268
|
-
fileSize: number;
|
269
|
-
fileUrl: string;
|
270
|
-
};
|
271
|
-
roomId: string;
|
272
|
-
messageId: string;
|
273
|
-
emailEngineAttachmentId: string;
|
274
|
-
}>, "many">;
|
275
|
-
}, "strip", z.ZodTypeAny, {
|
276
|
-
id: string;
|
277
|
-
direction: string;
|
278
|
-
action: string;
|
279
|
-
date: Date;
|
280
|
-
createdAt: Date;
|
281
|
-
updatedAt: Date;
|
282
|
-
deletedAt: Date | null;
|
283
|
-
roomId: string;
|
284
|
-
subject: string;
|
285
|
-
textPlain: string;
|
286
|
-
textHtml: string;
|
287
|
-
textId: string;
|
288
|
-
emailEngineEmailId: string;
|
289
|
-
emailEngineMessageId: string;
|
290
|
-
emailEngineReplyTo: string | null;
|
291
|
-
unseen: boolean;
|
292
|
-
seemsLikeNew: boolean;
|
293
|
-
from: {
|
294
|
-
id: string;
|
295
|
-
address: string;
|
296
|
-
name: string;
|
297
|
-
createdAt: Date;
|
298
|
-
updatedAt: Date;
|
299
|
-
deletedAt: Date | null;
|
300
|
-
}[];
|
301
|
-
to: {
|
302
|
-
id: string;
|
303
|
-
address: string;
|
304
|
-
name: string;
|
305
|
-
createdAt: Date;
|
306
|
-
updatedAt: Date;
|
307
|
-
deletedAt: Date | null;
|
308
|
-
}[];
|
309
|
-
cc: {
|
310
|
-
id: string;
|
311
|
-
address: string;
|
312
|
-
name: string;
|
313
|
-
createdAt: Date;
|
314
|
-
updatedAt: Date;
|
315
|
-
deletedAt: Date | null;
|
316
|
-
}[];
|
317
|
-
bcc: {
|
318
|
-
id: string;
|
319
|
-
address: string;
|
320
|
-
name: string;
|
321
|
-
createdAt: Date;
|
322
|
-
updatedAt: Date;
|
323
|
-
deletedAt: Date | null;
|
324
|
-
}[];
|
325
|
-
attachments: {
|
326
|
-
id: string;
|
327
|
-
createdAt: Date;
|
328
|
-
updatedAt: Date;
|
329
|
-
deletedAt: Date | null;
|
330
|
-
fileName: string;
|
331
|
-
fileType: string;
|
332
|
-
uploadId: string;
|
333
|
-
upload: {
|
334
|
-
id: string;
|
335
|
-
createdAt: Date;
|
336
|
-
updatedAt: Date;
|
337
|
-
deletedAt: Date | null;
|
338
|
-
extensionName: string;
|
339
|
-
fileName: string;
|
340
|
-
fileKey: string;
|
341
|
-
bucketName: string;
|
342
|
-
fileSize: number;
|
343
|
-
fileUrl: string;
|
344
|
-
};
|
345
|
-
roomId: string;
|
346
|
-
messageId: string;
|
347
|
-
emailEngineAttachmentId: string;
|
348
|
-
}[];
|
349
|
-
}, {
|
350
|
-
id: string;
|
351
|
-
direction: string;
|
352
|
-
action: string;
|
353
|
-
date: Date;
|
354
|
-
createdAt: Date;
|
355
|
-
updatedAt: Date;
|
356
|
-
deletedAt: Date | null;
|
357
|
-
roomId: string;
|
358
|
-
subject: string;
|
359
|
-
textPlain: string;
|
360
|
-
textHtml: string;
|
361
|
-
textId: string;
|
362
|
-
emailEngineEmailId: string;
|
363
|
-
emailEngineMessageId: string;
|
364
|
-
emailEngineReplyTo: string | null;
|
365
|
-
unseen: boolean;
|
366
|
-
seemsLikeNew: boolean;
|
367
|
-
from: {
|
368
|
-
id: string;
|
369
|
-
address: string;
|
370
|
-
name: string;
|
371
|
-
createdAt: Date;
|
372
|
-
updatedAt: Date;
|
373
|
-
deletedAt: Date | null;
|
374
|
-
}[];
|
375
|
-
to: {
|
376
|
-
id: string;
|
377
|
-
address: string;
|
378
|
-
name: string;
|
379
|
-
createdAt: Date;
|
380
|
-
updatedAt: Date;
|
381
|
-
deletedAt: Date | null;
|
382
|
-
}[];
|
383
|
-
cc: {
|
384
|
-
id: string;
|
385
|
-
address: string;
|
386
|
-
name: string;
|
387
|
-
createdAt: Date;
|
388
|
-
updatedAt: Date;
|
389
|
-
deletedAt: Date | null;
|
390
|
-
}[];
|
391
|
-
bcc: {
|
392
|
-
id: string;
|
393
|
-
address: string;
|
394
|
-
name: string;
|
395
|
-
createdAt: Date;
|
396
|
-
updatedAt: Date;
|
397
|
-
deletedAt: Date | null;
|
398
|
-
}[];
|
399
|
-
attachments: {
|
400
|
-
id: string;
|
401
|
-
createdAt: Date;
|
402
|
-
updatedAt: Date;
|
403
|
-
deletedAt: Date | null;
|
404
|
-
fileName: string;
|
405
|
-
fileType: string;
|
406
|
-
uploadId: string;
|
407
|
-
upload: {
|
408
|
-
id: string;
|
409
|
-
createdAt: Date;
|
410
|
-
updatedAt: Date;
|
411
|
-
deletedAt: Date | null;
|
412
|
-
extensionName: string;
|
413
|
-
fileName: string;
|
414
|
-
fileKey: string;
|
415
|
-
bucketName: string;
|
416
|
-
fileSize: number;
|
417
|
-
fileUrl: string;
|
418
|
-
};
|
419
|
-
roomId: string;
|
420
|
-
messageId: string;
|
421
|
-
emailEngineAttachmentId: string;
|
422
|
-
}[];
|
423
|
-
}>, z.ZodObject<{
|
424
|
-
id: z.ZodString;
|
425
|
-
createdAt: z.ZodDate;
|
426
|
-
updatedAt: z.ZodDate;
|
427
|
-
deletedAt: z.ZodNullable<z.ZodString>;
|
428
|
-
description: z.ZodString;
|
429
|
-
actorId: z.ZodString;
|
430
|
-
roomId: z.ZodString;
|
431
|
-
actor: z.ZodObject<{
|
432
|
-
id: z.ZodString;
|
433
|
-
createdAt: z.ZodDate;
|
434
|
-
updatedAt: z.ZodDate;
|
435
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
436
|
-
name: z.ZodString;
|
437
|
-
email: z.ZodString;
|
438
|
-
address: z.ZodNullable<z.ZodString>;
|
439
|
-
phone: z.ZodNullable<z.ZodString>;
|
440
|
-
notificationCount: z.ZodNullable<z.ZodNumber>;
|
441
|
-
}, "strip", z.ZodTypeAny, {
|
442
|
-
id: string;
|
443
|
-
address: string | null;
|
444
|
-
name: string;
|
445
|
-
email: string;
|
446
|
-
createdAt: Date;
|
447
|
-
updatedAt: Date;
|
448
|
-
deletedAt: Date | null;
|
449
|
-
phone: string | null;
|
450
|
-
notificationCount: number | null;
|
451
|
-
}, {
|
452
|
-
id: string;
|
453
|
-
address: string | null;
|
454
|
-
name: string;
|
455
|
-
email: string;
|
456
|
-
createdAt: Date;
|
457
|
-
updatedAt: Date;
|
458
|
-
deletedAt: Date | null;
|
459
|
-
phone: string | null;
|
460
|
-
notificationCount: number | null;
|
461
|
-
}>;
|
462
|
-
}, "strip", z.ZodTypeAny, {
|
463
|
-
id: string;
|
464
|
-
description: string;
|
465
|
-
createdAt: Date;
|
466
|
-
updatedAt: Date;
|
467
|
-
deletedAt: string | null;
|
468
|
-
actor: {
|
469
|
-
id: string;
|
470
|
-
address: string | null;
|
471
|
-
name: string;
|
472
|
-
email: string;
|
473
|
-
createdAt: Date;
|
474
|
-
updatedAt: Date;
|
475
|
-
deletedAt: Date | null;
|
476
|
-
phone: string | null;
|
477
|
-
notificationCount: number | null;
|
478
|
-
};
|
479
|
-
roomId: string;
|
480
|
-
actorId: string;
|
481
|
-
}, {
|
482
|
-
id: string;
|
483
|
-
description: string;
|
484
|
-
createdAt: Date;
|
485
|
-
updatedAt: Date;
|
486
|
-
deletedAt: string | null;
|
487
|
-
actor: {
|
488
|
-
id: string;
|
489
|
-
address: string | null;
|
490
|
-
name: string;
|
491
|
-
email: string;
|
492
|
-
createdAt: Date;
|
493
|
-
updatedAt: Date;
|
494
|
-
deletedAt: Date | null;
|
495
|
-
phone: string | null;
|
496
|
-
notificationCount: number | null;
|
497
|
-
};
|
498
|
-
roomId: string;
|
499
|
-
actorId: string;
|
500
|
-
}>]>, "many">;
|
501
77
|
export declare const MailRoomSchema: z.ZodObject<{
|
502
78
|
id: z.ZodString;
|
503
79
|
createdAt: z.ZodDate;
|
@@ -721,34 +297,34 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
721
297
|
createdAt: z.ZodDate;
|
722
298
|
updatedAt: z.ZodDate;
|
723
299
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
300
|
+
bucket_name: z.ZodString;
|
301
|
+
file_name: z.ZodString;
|
302
|
+
file_key: z.ZodString;
|
303
|
+
file_size: z.ZodNumber;
|
304
|
+
file_url: z.ZodString;
|
305
|
+
extension_name: z.ZodString;
|
730
306
|
}, "strip", z.ZodTypeAny, {
|
731
307
|
id: string;
|
732
308
|
createdAt: Date;
|
733
309
|
updatedAt: Date;
|
734
310
|
deletedAt: Date | null;
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
311
|
+
bucket_name: string;
|
312
|
+
file_name: string;
|
313
|
+
file_key: string;
|
314
|
+
file_size: number;
|
315
|
+
file_url: string;
|
316
|
+
extension_name: string;
|
741
317
|
}, {
|
742
318
|
id: string;
|
743
319
|
createdAt: Date;
|
744
320
|
updatedAt: Date;
|
745
321
|
deletedAt: Date | null;
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
322
|
+
bucket_name: string;
|
323
|
+
file_name: string;
|
324
|
+
file_key: string;
|
325
|
+
file_size: number;
|
326
|
+
file_url: string;
|
327
|
+
extension_name: string;
|
752
328
|
}>;
|
753
329
|
}, "strip", z.ZodTypeAny, {
|
754
330
|
id: string;
|
@@ -763,12 +339,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
763
339
|
createdAt: Date;
|
764
340
|
updatedAt: Date;
|
765
341
|
deletedAt: Date | null;
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
342
|
+
bucket_name: string;
|
343
|
+
file_name: string;
|
344
|
+
file_key: string;
|
345
|
+
file_size: number;
|
346
|
+
file_url: string;
|
347
|
+
extension_name: string;
|
772
348
|
};
|
773
349
|
roomId: string;
|
774
350
|
messageId: string;
|
@@ -786,12 +362,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
786
362
|
createdAt: Date;
|
787
363
|
updatedAt: Date;
|
788
364
|
deletedAt: Date | null;
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
365
|
+
bucket_name: string;
|
366
|
+
file_name: string;
|
367
|
+
file_key: string;
|
368
|
+
file_size: number;
|
369
|
+
file_url: string;
|
370
|
+
extension_name: string;
|
795
371
|
};
|
796
372
|
roomId: string;
|
797
373
|
messageId: string;
|
@@ -860,12 +436,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
860
436
|
createdAt: Date;
|
861
437
|
updatedAt: Date;
|
862
438
|
deletedAt: Date | null;
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
439
|
+
bucket_name: string;
|
440
|
+
file_name: string;
|
441
|
+
file_key: string;
|
442
|
+
file_size: number;
|
443
|
+
file_url: string;
|
444
|
+
extension_name: string;
|
869
445
|
};
|
870
446
|
roomId: string;
|
871
447
|
messageId: string;
|
@@ -934,12 +510,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
934
510
|
createdAt: Date;
|
935
511
|
updatedAt: Date;
|
936
512
|
deletedAt: Date | null;
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
513
|
+
bucket_name: string;
|
514
|
+
file_name: string;
|
515
|
+
file_key: string;
|
516
|
+
file_size: number;
|
517
|
+
file_url: string;
|
518
|
+
extension_name: string;
|
943
519
|
};
|
944
520
|
roomId: string;
|
945
521
|
messageId: string;
|
@@ -1068,34 +644,34 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1068
644
|
createdAt: z.ZodDate;
|
1069
645
|
updatedAt: z.ZodDate;
|
1070
646
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
647
|
+
bucket_name: z.ZodString;
|
648
|
+
file_name: z.ZodString;
|
649
|
+
file_key: z.ZodString;
|
650
|
+
file_size: z.ZodNumber;
|
651
|
+
file_url: z.ZodString;
|
652
|
+
extension_name: z.ZodString;
|
1077
653
|
}, "strip", z.ZodTypeAny, {
|
1078
654
|
id: string;
|
1079
655
|
createdAt: Date;
|
1080
656
|
updatedAt: Date;
|
1081
657
|
deletedAt: Date | null;
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
658
|
+
bucket_name: string;
|
659
|
+
file_name: string;
|
660
|
+
file_key: string;
|
661
|
+
file_size: number;
|
662
|
+
file_url: string;
|
663
|
+
extension_name: string;
|
1088
664
|
}, {
|
1089
665
|
id: string;
|
1090
666
|
createdAt: Date;
|
1091
667
|
updatedAt: Date;
|
1092
668
|
deletedAt: Date | null;
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
669
|
+
bucket_name: string;
|
670
|
+
file_name: string;
|
671
|
+
file_key: string;
|
672
|
+
file_size: number;
|
673
|
+
file_url: string;
|
674
|
+
extension_name: string;
|
1099
675
|
}>;
|
1100
676
|
}, "strip", z.ZodTypeAny, {
|
1101
677
|
id: string;
|
@@ -1110,12 +686,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1110
686
|
createdAt: Date;
|
1111
687
|
updatedAt: Date;
|
1112
688
|
deletedAt: Date | null;
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
|
1117
|
-
|
1118
|
-
|
689
|
+
bucket_name: string;
|
690
|
+
file_name: string;
|
691
|
+
file_key: string;
|
692
|
+
file_size: number;
|
693
|
+
file_url: string;
|
694
|
+
extension_name: string;
|
1119
695
|
};
|
1120
696
|
roomId: string;
|
1121
697
|
messageId: string;
|
@@ -1133,12 +709,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1133
709
|
createdAt: Date;
|
1134
710
|
updatedAt: Date;
|
1135
711
|
deletedAt: Date | null;
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
|
712
|
+
bucket_name: string;
|
713
|
+
file_name: string;
|
714
|
+
file_key: string;
|
715
|
+
file_size: number;
|
716
|
+
file_url: string;
|
717
|
+
extension_name: string;
|
1142
718
|
};
|
1143
719
|
roomId: string;
|
1144
720
|
messageId: string;
|
@@ -1207,12 +783,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1207
783
|
createdAt: Date;
|
1208
784
|
updatedAt: Date;
|
1209
785
|
deletedAt: Date | null;
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
786
|
+
bucket_name: string;
|
787
|
+
file_name: string;
|
788
|
+
file_key: string;
|
789
|
+
file_size: number;
|
790
|
+
file_url: string;
|
791
|
+
extension_name: string;
|
1216
792
|
};
|
1217
793
|
roomId: string;
|
1218
794
|
messageId: string;
|
@@ -1281,12 +857,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1281
857
|
createdAt: Date;
|
1282
858
|
updatedAt: Date;
|
1283
859
|
deletedAt: Date | null;
|
1284
|
-
|
1285
|
-
|
1286
|
-
|
1287
|
-
|
1288
|
-
|
1289
|
-
|
860
|
+
bucket_name: string;
|
861
|
+
file_name: string;
|
862
|
+
file_key: string;
|
863
|
+
file_size: number;
|
864
|
+
file_url: string;
|
865
|
+
extension_name: string;
|
1290
866
|
};
|
1291
867
|
roomId: string;
|
1292
868
|
messageId: string;
|
@@ -1324,7 +900,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1324
900
|
email: z.ZodString;
|
1325
901
|
address: z.ZodNullable<z.ZodString>;
|
1326
902
|
phone: z.ZodNullable<z.ZodString>;
|
1327
|
-
|
903
|
+
notification_count: z.ZodNullable<z.ZodNumber>;
|
1328
904
|
}, "strip", z.ZodTypeAny, {
|
1329
905
|
id: string;
|
1330
906
|
address: string | null;
|
@@ -1334,7 +910,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1334
910
|
updatedAt: Date;
|
1335
911
|
deletedAt: Date | null;
|
1336
912
|
phone: string | null;
|
1337
|
-
|
913
|
+
notification_count: number | null;
|
1338
914
|
}, {
|
1339
915
|
id: string;
|
1340
916
|
address: string | null;
|
@@ -1344,7 +920,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1344
920
|
updatedAt: Date;
|
1345
921
|
deletedAt: Date | null;
|
1346
922
|
phone: string | null;
|
1347
|
-
|
923
|
+
notification_count: number | null;
|
1348
924
|
}>;
|
1349
925
|
messages: z.ZodArray<z.ZodObject<{
|
1350
926
|
id: z.ZodString;
|
@@ -1468,34 +1044,34 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1468
1044
|
createdAt: z.ZodDate;
|
1469
1045
|
updatedAt: z.ZodDate;
|
1470
1046
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1471
|
-
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1047
|
+
bucket_name: z.ZodString;
|
1048
|
+
file_name: z.ZodString;
|
1049
|
+
file_key: z.ZodString;
|
1050
|
+
file_size: z.ZodNumber;
|
1051
|
+
file_url: z.ZodString;
|
1052
|
+
extension_name: z.ZodString;
|
1477
1053
|
}, "strip", z.ZodTypeAny, {
|
1478
1054
|
id: string;
|
1479
1055
|
createdAt: Date;
|
1480
1056
|
updatedAt: Date;
|
1481
1057
|
deletedAt: Date | null;
|
1482
|
-
|
1483
|
-
|
1484
|
-
|
1485
|
-
|
1486
|
-
|
1487
|
-
|
1058
|
+
bucket_name: string;
|
1059
|
+
file_name: string;
|
1060
|
+
file_key: string;
|
1061
|
+
file_size: number;
|
1062
|
+
file_url: string;
|
1063
|
+
extension_name: string;
|
1488
1064
|
}, {
|
1489
1065
|
id: string;
|
1490
1066
|
createdAt: Date;
|
1491
1067
|
updatedAt: Date;
|
1492
1068
|
deletedAt: Date | null;
|
1493
|
-
|
1494
|
-
|
1495
|
-
|
1496
|
-
|
1497
|
-
|
1498
|
-
|
1069
|
+
bucket_name: string;
|
1070
|
+
file_name: string;
|
1071
|
+
file_key: string;
|
1072
|
+
file_size: number;
|
1073
|
+
file_url: string;
|
1074
|
+
extension_name: string;
|
1499
1075
|
}>;
|
1500
1076
|
}, "strip", z.ZodTypeAny, {
|
1501
1077
|
id: string;
|
@@ -1510,12 +1086,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1510
1086
|
createdAt: Date;
|
1511
1087
|
updatedAt: Date;
|
1512
1088
|
deletedAt: Date | null;
|
1513
|
-
|
1514
|
-
|
1515
|
-
|
1516
|
-
|
1517
|
-
|
1518
|
-
|
1089
|
+
bucket_name: string;
|
1090
|
+
file_name: string;
|
1091
|
+
file_key: string;
|
1092
|
+
file_size: number;
|
1093
|
+
file_url: string;
|
1094
|
+
extension_name: string;
|
1519
1095
|
};
|
1520
1096
|
roomId: string;
|
1521
1097
|
messageId: string;
|
@@ -1533,12 +1109,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1533
1109
|
createdAt: Date;
|
1534
1110
|
updatedAt: Date;
|
1535
1111
|
deletedAt: Date | null;
|
1536
|
-
|
1537
|
-
|
1538
|
-
|
1539
|
-
|
1540
|
-
|
1541
|
-
|
1112
|
+
bucket_name: string;
|
1113
|
+
file_name: string;
|
1114
|
+
file_key: string;
|
1115
|
+
file_size: number;
|
1116
|
+
file_url: string;
|
1117
|
+
extension_name: string;
|
1542
1118
|
};
|
1543
1119
|
roomId: string;
|
1544
1120
|
messageId: string;
|
@@ -1607,12 +1183,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1607
1183
|
createdAt: Date;
|
1608
1184
|
updatedAt: Date;
|
1609
1185
|
deletedAt: Date | null;
|
1610
|
-
|
1611
|
-
|
1612
|
-
|
1613
|
-
|
1614
|
-
|
1615
|
-
|
1186
|
+
bucket_name: string;
|
1187
|
+
file_name: string;
|
1188
|
+
file_key: string;
|
1189
|
+
file_size: number;
|
1190
|
+
file_url: string;
|
1191
|
+
extension_name: string;
|
1616
1192
|
};
|
1617
1193
|
roomId: string;
|
1618
1194
|
messageId: string;
|
@@ -1681,12 +1257,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1681
1257
|
createdAt: Date;
|
1682
1258
|
updatedAt: Date;
|
1683
1259
|
deletedAt: Date | null;
|
1684
|
-
|
1685
|
-
|
1686
|
-
|
1687
|
-
|
1688
|
-
|
1689
|
-
|
1260
|
+
bucket_name: string;
|
1261
|
+
file_name: string;
|
1262
|
+
file_key: string;
|
1263
|
+
file_size: number;
|
1264
|
+
file_url: string;
|
1265
|
+
extension_name: string;
|
1690
1266
|
};
|
1691
1267
|
roomId: string;
|
1692
1268
|
messageId: string;
|
@@ -1815,34 +1391,34 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1815
1391
|
createdAt: z.ZodDate;
|
1816
1392
|
updatedAt: z.ZodDate;
|
1817
1393
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1818
|
-
|
1819
|
-
|
1820
|
-
|
1821
|
-
|
1822
|
-
|
1823
|
-
|
1394
|
+
bucket_name: z.ZodString;
|
1395
|
+
file_name: z.ZodString;
|
1396
|
+
file_key: z.ZodString;
|
1397
|
+
file_size: z.ZodNumber;
|
1398
|
+
file_url: z.ZodString;
|
1399
|
+
extension_name: z.ZodString;
|
1824
1400
|
}, "strip", z.ZodTypeAny, {
|
1825
1401
|
id: string;
|
1826
1402
|
createdAt: Date;
|
1827
1403
|
updatedAt: Date;
|
1828
1404
|
deletedAt: Date | null;
|
1829
|
-
|
1830
|
-
|
1831
|
-
|
1832
|
-
|
1833
|
-
|
1834
|
-
|
1405
|
+
bucket_name: string;
|
1406
|
+
file_name: string;
|
1407
|
+
file_key: string;
|
1408
|
+
file_size: number;
|
1409
|
+
file_url: string;
|
1410
|
+
extension_name: string;
|
1835
1411
|
}, {
|
1836
1412
|
id: string;
|
1837
1413
|
createdAt: Date;
|
1838
1414
|
updatedAt: Date;
|
1839
1415
|
deletedAt: Date | null;
|
1840
|
-
|
1841
|
-
|
1842
|
-
|
1843
|
-
|
1844
|
-
|
1845
|
-
|
1416
|
+
bucket_name: string;
|
1417
|
+
file_name: string;
|
1418
|
+
file_key: string;
|
1419
|
+
file_size: number;
|
1420
|
+
file_url: string;
|
1421
|
+
extension_name: string;
|
1846
1422
|
}>;
|
1847
1423
|
}, "strip", z.ZodTypeAny, {
|
1848
1424
|
id: string;
|
@@ -1857,12 +1433,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1857
1433
|
createdAt: Date;
|
1858
1434
|
updatedAt: Date;
|
1859
1435
|
deletedAt: Date | null;
|
1860
|
-
|
1861
|
-
|
1862
|
-
|
1863
|
-
|
1864
|
-
|
1865
|
-
|
1436
|
+
bucket_name: string;
|
1437
|
+
file_name: string;
|
1438
|
+
file_key: string;
|
1439
|
+
file_size: number;
|
1440
|
+
file_url: string;
|
1441
|
+
extension_name: string;
|
1866
1442
|
};
|
1867
1443
|
roomId: string;
|
1868
1444
|
messageId: string;
|
@@ -1880,12 +1456,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1880
1456
|
createdAt: Date;
|
1881
1457
|
updatedAt: Date;
|
1882
1458
|
deletedAt: Date | null;
|
1883
|
-
|
1884
|
-
|
1885
|
-
|
1886
|
-
|
1887
|
-
|
1888
|
-
|
1459
|
+
bucket_name: string;
|
1460
|
+
file_name: string;
|
1461
|
+
file_key: string;
|
1462
|
+
file_size: number;
|
1463
|
+
file_url: string;
|
1464
|
+
extension_name: string;
|
1889
1465
|
};
|
1890
1466
|
roomId: string;
|
1891
1467
|
messageId: string;
|
@@ -1954,12 +1530,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1954
1530
|
createdAt: Date;
|
1955
1531
|
updatedAt: Date;
|
1956
1532
|
deletedAt: Date | null;
|
1957
|
-
|
1958
|
-
|
1959
|
-
|
1960
|
-
|
1961
|
-
|
1962
|
-
|
1533
|
+
bucket_name: string;
|
1534
|
+
file_name: string;
|
1535
|
+
file_key: string;
|
1536
|
+
file_size: number;
|
1537
|
+
file_url: string;
|
1538
|
+
extension_name: string;
|
1963
1539
|
};
|
1964
1540
|
roomId: string;
|
1965
1541
|
messageId: string;
|
@@ -2028,12 +1604,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2028
1604
|
createdAt: Date;
|
2029
1605
|
updatedAt: Date;
|
2030
1606
|
deletedAt: Date | null;
|
2031
|
-
|
2032
|
-
|
2033
|
-
|
2034
|
-
|
2035
|
-
|
2036
|
-
|
1607
|
+
bucket_name: string;
|
1608
|
+
file_name: string;
|
1609
|
+
file_key: string;
|
1610
|
+
file_size: number;
|
1611
|
+
file_url: string;
|
1612
|
+
extension_name: string;
|
2037
1613
|
};
|
2038
1614
|
roomId: string;
|
2039
1615
|
messageId: string;
|
@@ -2056,7 +1632,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2056
1632
|
email: z.ZodString;
|
2057
1633
|
address: z.ZodNullable<z.ZodString>;
|
2058
1634
|
phone: z.ZodNullable<z.ZodString>;
|
2059
|
-
|
1635
|
+
notification_count: z.ZodNullable<z.ZodNumber>;
|
2060
1636
|
}, "strip", z.ZodTypeAny, {
|
2061
1637
|
id: string;
|
2062
1638
|
address: string | null;
|
@@ -2066,7 +1642,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2066
1642
|
updatedAt: Date;
|
2067
1643
|
deletedAt: Date | null;
|
2068
1644
|
phone: string | null;
|
2069
|
-
|
1645
|
+
notification_count: number | null;
|
2070
1646
|
}, {
|
2071
1647
|
id: string;
|
2072
1648
|
address: string | null;
|
@@ -2076,7 +1652,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2076
1652
|
updatedAt: Date;
|
2077
1653
|
deletedAt: Date | null;
|
2078
1654
|
phone: string | null;
|
2079
|
-
|
1655
|
+
notification_count: number | null;
|
2080
1656
|
}>;
|
2081
1657
|
}, "strip", z.ZodTypeAny, {
|
2082
1658
|
id: string;
|
@@ -2093,7 +1669,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2093
1669
|
updatedAt: Date;
|
2094
1670
|
deletedAt: Date | null;
|
2095
1671
|
phone: string | null;
|
2096
|
-
|
1672
|
+
notification_count: number | null;
|
2097
1673
|
};
|
2098
1674
|
roomId: string;
|
2099
1675
|
actorId: string;
|
@@ -2112,7 +1688,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2112
1688
|
updatedAt: Date;
|
2113
1689
|
deletedAt: Date | null;
|
2114
1690
|
phone: string | null;
|
2115
|
-
|
1691
|
+
notification_count: number | null;
|
2116
1692
|
};
|
2117
1693
|
roomId: string;
|
2118
1694
|
actorId: string;
|
@@ -2133,12 +1709,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2133
1709
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
2134
1710
|
name: z.ZodString;
|
2135
1711
|
smtpHost: z.ZodString;
|
2136
|
-
smtpPort: z.
|
2137
|
-
smtpTlsPort: z.
|
1712
|
+
smtpPort: z.ZodString;
|
1713
|
+
smtpTlsPort: z.ZodString;
|
2138
1714
|
useTlsForSmtp: z.ZodBoolean;
|
2139
1715
|
imapHost: z.ZodString;
|
2140
|
-
imapPort: z.
|
2141
|
-
imapTlsPort: z.
|
1716
|
+
imapPort: z.ZodString;
|
1717
|
+
imapTlsPort: z.ZodString;
|
2142
1718
|
useTlsForImap: z.ZodBoolean;
|
2143
1719
|
}, "strip", z.ZodTypeAny, {
|
2144
1720
|
id: string;
|
@@ -2147,12 +1723,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2147
1723
|
updatedAt: Date;
|
2148
1724
|
deletedAt: Date | null;
|
2149
1725
|
smtpHost: string;
|
2150
|
-
smtpPort:
|
2151
|
-
smtpTlsPort:
|
1726
|
+
smtpPort: string;
|
1727
|
+
smtpTlsPort: string;
|
2152
1728
|
useTlsForSmtp: boolean;
|
2153
1729
|
imapHost: string;
|
2154
|
-
imapPort:
|
2155
|
-
imapTlsPort:
|
1730
|
+
imapPort: string;
|
1731
|
+
imapTlsPort: string;
|
2156
1732
|
useTlsForImap: boolean;
|
2157
1733
|
}, {
|
2158
1734
|
id: string;
|
@@ -2161,12 +1737,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2161
1737
|
updatedAt: Date;
|
2162
1738
|
deletedAt: Date | null;
|
2163
1739
|
smtpHost: string;
|
2164
|
-
smtpPort:
|
2165
|
-
smtpTlsPort:
|
1740
|
+
smtpPort: string;
|
1741
|
+
smtpTlsPort: string;
|
2166
1742
|
useTlsForSmtp: boolean;
|
2167
1743
|
imapHost: string;
|
2168
|
-
imapPort:
|
2169
|
-
imapTlsPort:
|
1744
|
+
imapPort: string;
|
1745
|
+
imapTlsPort: string;
|
2170
1746
|
useTlsForImap: boolean;
|
2171
1747
|
}>;
|
2172
1748
|
state: z.ZodUnion<[z.ZodLiteral<"init">, z.ZodLiteral<"syncing">, z.ZodLiteral<"connecting">, z.ZodLiteral<"connected">, z.ZodLiteral<"disconnected">, z.ZodLiteral<"authenticationError">, z.ZodLiteral<"connectError">, z.ZodLiteral<"unset">]>;
|
@@ -2187,12 +1763,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2187
1763
|
updatedAt: Date;
|
2188
1764
|
deletedAt: Date | null;
|
2189
1765
|
smtpHost: string;
|
2190
|
-
smtpPort:
|
2191
|
-
smtpTlsPort:
|
1766
|
+
smtpPort: string;
|
1767
|
+
smtpTlsPort: string;
|
2192
1768
|
useTlsForSmtp: boolean;
|
2193
1769
|
imapHost: string;
|
2194
|
-
imapPort:
|
2195
|
-
imapTlsPort:
|
1770
|
+
imapPort: string;
|
1771
|
+
imapTlsPort: string;
|
2196
1772
|
useTlsForImap: boolean;
|
2197
1773
|
};
|
2198
1774
|
}, {
|
@@ -2212,12 +1788,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2212
1788
|
updatedAt: Date;
|
2213
1789
|
deletedAt: Date | null;
|
2214
1790
|
smtpHost: string;
|
2215
|
-
smtpPort:
|
2216
|
-
smtpTlsPort:
|
1791
|
+
smtpPort: string;
|
1792
|
+
smtpTlsPort: string;
|
2217
1793
|
useTlsForSmtp: boolean;
|
2218
1794
|
imapHost: string;
|
2219
|
-
imapPort:
|
2220
|
-
imapTlsPort:
|
1795
|
+
imapPort: string;
|
1796
|
+
imapTlsPort: string;
|
2221
1797
|
useTlsForImap: boolean;
|
2222
1798
|
};
|
2223
1799
|
}>;
|
@@ -2300,12 +1876,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2300
1876
|
createdAt: Date;
|
2301
1877
|
updatedAt: Date;
|
2302
1878
|
deletedAt: Date | null;
|
2303
|
-
|
2304
|
-
|
2305
|
-
|
2306
|
-
|
2307
|
-
|
2308
|
-
|
1879
|
+
bucket_name: string;
|
1880
|
+
file_name: string;
|
1881
|
+
file_key: string;
|
1882
|
+
file_size: number;
|
1883
|
+
file_url: string;
|
1884
|
+
extension_name: string;
|
2309
1885
|
};
|
2310
1886
|
roomId: string;
|
2311
1887
|
messageId: string;
|
@@ -2321,7 +1897,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2321
1897
|
updatedAt: Date;
|
2322
1898
|
deletedAt: Date | null;
|
2323
1899
|
phone: string | null;
|
2324
|
-
|
1900
|
+
notification_count: number | null;
|
2325
1901
|
};
|
2326
1902
|
resolved: boolean;
|
2327
1903
|
assigneeId: string | null;
|
@@ -2424,12 +2000,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2424
2000
|
createdAt: Date;
|
2425
2001
|
updatedAt: Date;
|
2426
2002
|
deletedAt: Date | null;
|
2427
|
-
|
2428
|
-
|
2429
|
-
|
2430
|
-
|
2431
|
-
|
2432
|
-
|
2003
|
+
bucket_name: string;
|
2004
|
+
file_name: string;
|
2005
|
+
file_key: string;
|
2006
|
+
file_size: number;
|
2007
|
+
file_url: string;
|
2008
|
+
extension_name: string;
|
2433
2009
|
};
|
2434
2010
|
roomId: string;
|
2435
2011
|
messageId: string;
|
@@ -2499,12 +2075,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2499
2075
|
createdAt: Date;
|
2500
2076
|
updatedAt: Date;
|
2501
2077
|
deletedAt: Date | null;
|
2502
|
-
|
2503
|
-
|
2504
|
-
|
2505
|
-
|
2506
|
-
|
2507
|
-
|
2078
|
+
bucket_name: string;
|
2079
|
+
file_name: string;
|
2080
|
+
file_key: string;
|
2081
|
+
file_size: number;
|
2082
|
+
file_url: string;
|
2083
|
+
extension_name: string;
|
2508
2084
|
};
|
2509
2085
|
roomId: string;
|
2510
2086
|
messageId: string;
|
@@ -2574,12 +2150,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2574
2150
|
createdAt: Date;
|
2575
2151
|
updatedAt: Date;
|
2576
2152
|
deletedAt: Date | null;
|
2577
|
-
|
2578
|
-
|
2579
|
-
|
2580
|
-
|
2581
|
-
|
2582
|
-
|
2153
|
+
bucket_name: string;
|
2154
|
+
file_name: string;
|
2155
|
+
file_key: string;
|
2156
|
+
file_size: number;
|
2157
|
+
file_url: string;
|
2158
|
+
extension_name: string;
|
2583
2159
|
};
|
2584
2160
|
roomId: string;
|
2585
2161
|
messageId: string;
|
@@ -2600,7 +2176,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2600
2176
|
updatedAt: Date;
|
2601
2177
|
deletedAt: Date | null;
|
2602
2178
|
phone: string | null;
|
2603
|
-
|
2179
|
+
notification_count: number | null;
|
2604
2180
|
};
|
2605
2181
|
roomId: string;
|
2606
2182
|
actorId: string;
|
@@ -2622,12 +2198,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2622
2198
|
updatedAt: Date;
|
2623
2199
|
deletedAt: Date | null;
|
2624
2200
|
smtpHost: string;
|
2625
|
-
smtpPort:
|
2626
|
-
smtpTlsPort:
|
2201
|
+
smtpPort: string;
|
2202
|
+
smtpTlsPort: string;
|
2627
2203
|
useTlsForSmtp: boolean;
|
2628
2204
|
imapHost: string;
|
2629
|
-
imapPort:
|
2630
|
-
imapTlsPort:
|
2205
|
+
imapPort: string;
|
2206
|
+
imapTlsPort: string;
|
2631
2207
|
useTlsForImap: boolean;
|
2632
2208
|
};
|
2633
2209
|
};
|
@@ -2710,12 +2286,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2710
2286
|
createdAt: Date;
|
2711
2287
|
updatedAt: Date;
|
2712
2288
|
deletedAt: Date | null;
|
2713
|
-
|
2714
|
-
|
2715
|
-
|
2716
|
-
|
2717
|
-
|
2718
|
-
|
2289
|
+
bucket_name: string;
|
2290
|
+
file_name: string;
|
2291
|
+
file_key: string;
|
2292
|
+
file_size: number;
|
2293
|
+
file_url: string;
|
2294
|
+
extension_name: string;
|
2719
2295
|
};
|
2720
2296
|
roomId: string;
|
2721
2297
|
messageId: string;
|
@@ -2731,7 +2307,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2731
2307
|
updatedAt: Date;
|
2732
2308
|
deletedAt: Date | null;
|
2733
2309
|
phone: string | null;
|
2734
|
-
|
2310
|
+
notification_count: number | null;
|
2735
2311
|
};
|
2736
2312
|
resolved: boolean;
|
2737
2313
|
assigneeId: string | null;
|
@@ -2834,12 +2410,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2834
2410
|
createdAt: Date;
|
2835
2411
|
updatedAt: Date;
|
2836
2412
|
deletedAt: Date | null;
|
2837
|
-
|
2838
|
-
|
2839
|
-
|
2840
|
-
|
2841
|
-
|
2842
|
-
|
2413
|
+
bucket_name: string;
|
2414
|
+
file_name: string;
|
2415
|
+
file_key: string;
|
2416
|
+
file_size: number;
|
2417
|
+
file_url: string;
|
2418
|
+
extension_name: string;
|
2843
2419
|
};
|
2844
2420
|
roomId: string;
|
2845
2421
|
messageId: string;
|
@@ -2909,12 +2485,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2909
2485
|
createdAt: Date;
|
2910
2486
|
updatedAt: Date;
|
2911
2487
|
deletedAt: Date | null;
|
2912
|
-
|
2913
|
-
|
2914
|
-
|
2915
|
-
|
2916
|
-
|
2917
|
-
|
2488
|
+
bucket_name: string;
|
2489
|
+
file_name: string;
|
2490
|
+
file_key: string;
|
2491
|
+
file_size: number;
|
2492
|
+
file_url: string;
|
2493
|
+
extension_name: string;
|
2918
2494
|
};
|
2919
2495
|
roomId: string;
|
2920
2496
|
messageId: string;
|
@@ -2984,12 +2560,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2984
2560
|
createdAt: Date;
|
2985
2561
|
updatedAt: Date;
|
2986
2562
|
deletedAt: Date | null;
|
2987
|
-
|
2988
|
-
|
2989
|
-
|
2990
|
-
|
2991
|
-
|
2992
|
-
|
2563
|
+
bucket_name: string;
|
2564
|
+
file_name: string;
|
2565
|
+
file_key: string;
|
2566
|
+
file_size: number;
|
2567
|
+
file_url: string;
|
2568
|
+
extension_name: string;
|
2993
2569
|
};
|
2994
2570
|
roomId: string;
|
2995
2571
|
messageId: string;
|
@@ -3010,7 +2586,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
3010
2586
|
updatedAt: Date;
|
3011
2587
|
deletedAt: Date | null;
|
3012
2588
|
phone: string | null;
|
3013
|
-
|
2589
|
+
notification_count: number | null;
|
3014
2590
|
};
|
3015
2591
|
roomId: string;
|
3016
2592
|
actorId: string;
|
@@ -3032,12 +2608,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
3032
2608
|
updatedAt: Date;
|
3033
2609
|
deletedAt: Date | null;
|
3034
2610
|
smtpHost: string;
|
3035
|
-
smtpPort:
|
3036
|
-
smtpTlsPort:
|
2611
|
+
smtpPort: string;
|
2612
|
+
smtpTlsPort: string;
|
3037
2613
|
useTlsForSmtp: boolean;
|
3038
2614
|
imapHost: string;
|
3039
|
-
imapPort:
|
3040
|
-
imapTlsPort:
|
2615
|
+
imapPort: string;
|
2616
|
+
imapTlsPort: string;
|
3041
2617
|
useTlsForImap: boolean;
|
3042
2618
|
};
|
3043
2619
|
};
|