@kl1/contracts 1.0.93 → 1.0.95
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 +777 -753
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +776 -753
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +739 -264
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +6 -6
- package/dist/src/cx-log/validation.d.ts +3 -3
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/mail/account-contract.d.ts +132 -132
- package/dist/src/mail/mail-contract.d.ts +715 -258
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server-contract.d.ts +477 -18
- package/dist/src/mail/mail-server-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +108 -108
- package/dist/src/mail/schemas/account-validation.schema.d.ts +140 -140
- package/dist/src/mail/schemas/account.schema.d.ts +32 -32
- package/dist/src/mail/schemas/room-validation.schema.d.ts +36 -36
- package/dist/src/mail/schemas/room.schema.d.ts +28 -28
- package/dist/src/mail/schemas/servers-validation.schema.d.ts +33 -0
- package/dist/src/mail/schemas/servers-validation.schema.d.ts.map +1 -0
- package/dist/src/telephony-cdr/index.d.ts +18 -0
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/validation.d.ts +12 -0
- package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -42,12 +42,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
42
42
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
43
43
|
name: z.ZodString;
|
44
44
|
smtpHost: z.ZodString;
|
45
|
-
smtpPort: z.
|
46
|
-
smtpTlsPort: z.
|
45
|
+
smtpPort: z.ZodNumber;
|
46
|
+
smtpTlsPort: z.ZodNumber;
|
47
47
|
useTlsForSmtp: z.ZodBoolean;
|
48
48
|
imapHost: z.ZodString;
|
49
|
-
imapPort: z.
|
50
|
-
imapTlsPort: z.
|
49
|
+
imapPort: z.ZodNumber;
|
50
|
+
imapTlsPort: z.ZodNumber;
|
51
51
|
useTlsForImap: z.ZodBoolean;
|
52
52
|
}, "strip", z.ZodTypeAny, {
|
53
53
|
id: string;
|
@@ -56,12 +56,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
56
56
|
updatedAt: Date;
|
57
57
|
deletedAt: Date | null;
|
58
58
|
smtpHost: string;
|
59
|
-
smtpPort:
|
60
|
-
smtpTlsPort:
|
59
|
+
smtpPort: number;
|
60
|
+
smtpTlsPort: number;
|
61
61
|
useTlsForSmtp: boolean;
|
62
62
|
imapHost: string;
|
63
|
-
imapPort:
|
64
|
-
imapTlsPort:
|
63
|
+
imapPort: number;
|
64
|
+
imapTlsPort: number;
|
65
65
|
useTlsForImap: boolean;
|
66
66
|
}, {
|
67
67
|
id: string;
|
@@ -70,12 +70,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
70
70
|
updatedAt: Date;
|
71
71
|
deletedAt: Date | null;
|
72
72
|
smtpHost: string;
|
73
|
-
smtpPort:
|
74
|
-
smtpTlsPort:
|
73
|
+
smtpPort: number;
|
74
|
+
smtpTlsPort: number;
|
75
75
|
useTlsForSmtp: boolean;
|
76
76
|
imapHost: string;
|
77
|
-
imapPort:
|
78
|
-
imapTlsPort:
|
77
|
+
imapPort: number;
|
78
|
+
imapTlsPort: number;
|
79
79
|
useTlsForImap: boolean;
|
80
80
|
}>;
|
81
81
|
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">]>;
|
@@ -96,12 +96,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
96
96
|
updatedAt: Date;
|
97
97
|
deletedAt: Date | null;
|
98
98
|
smtpHost: string;
|
99
|
-
smtpPort:
|
100
|
-
smtpTlsPort:
|
99
|
+
smtpPort: number;
|
100
|
+
smtpTlsPort: number;
|
101
101
|
useTlsForSmtp: boolean;
|
102
102
|
imapHost: string;
|
103
|
-
imapPort:
|
104
|
-
imapTlsPort:
|
103
|
+
imapPort: number;
|
104
|
+
imapTlsPort: number;
|
105
105
|
useTlsForImap: boolean;
|
106
106
|
};
|
107
107
|
}, {
|
@@ -121,12 +121,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
121
121
|
updatedAt: Date;
|
122
122
|
deletedAt: Date | null;
|
123
123
|
smtpHost: string;
|
124
|
-
smtpPort:
|
125
|
-
smtpTlsPort:
|
124
|
+
smtpPort: number;
|
125
|
+
smtpTlsPort: number;
|
126
126
|
useTlsForSmtp: boolean;
|
127
127
|
imapHost: string;
|
128
|
-
imapPort:
|
129
|
-
imapTlsPort:
|
128
|
+
imapPort: number;
|
129
|
+
imapTlsPort: number;
|
130
130
|
useTlsForImap: boolean;
|
131
131
|
};
|
132
132
|
}>;
|
@@ -148,12 +148,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
148
148
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
149
149
|
name: z.ZodString;
|
150
150
|
smtpHost: z.ZodString;
|
151
|
-
smtpPort: z.
|
152
|
-
smtpTlsPort: z.
|
151
|
+
smtpPort: z.ZodNumber;
|
152
|
+
smtpTlsPort: z.ZodNumber;
|
153
153
|
useTlsForSmtp: z.ZodBoolean;
|
154
154
|
imapHost: z.ZodString;
|
155
|
-
imapPort: z.
|
156
|
-
imapTlsPort: z.
|
155
|
+
imapPort: z.ZodNumber;
|
156
|
+
imapTlsPort: z.ZodNumber;
|
157
157
|
useTlsForImap: z.ZodBoolean;
|
158
158
|
}, "strip", z.ZodTypeAny, {
|
159
159
|
id: string;
|
@@ -162,12 +162,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
162
162
|
updatedAt: Date;
|
163
163
|
deletedAt: Date | null;
|
164
164
|
smtpHost: string;
|
165
|
-
smtpPort:
|
166
|
-
smtpTlsPort:
|
165
|
+
smtpPort: number;
|
166
|
+
smtpTlsPort: number;
|
167
167
|
useTlsForSmtp: boolean;
|
168
168
|
imapHost: string;
|
169
|
-
imapPort:
|
170
|
-
imapTlsPort:
|
169
|
+
imapPort: number;
|
170
|
+
imapTlsPort: number;
|
171
171
|
useTlsForImap: boolean;
|
172
172
|
}, {
|
173
173
|
id: string;
|
@@ -176,12 +176,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
176
176
|
updatedAt: Date;
|
177
177
|
deletedAt: Date | null;
|
178
178
|
smtpHost: string;
|
179
|
-
smtpPort:
|
180
|
-
smtpTlsPort:
|
179
|
+
smtpPort: number;
|
180
|
+
smtpTlsPort: number;
|
181
181
|
useTlsForSmtp: boolean;
|
182
182
|
imapHost: string;
|
183
|
-
imapPort:
|
184
|
-
imapTlsPort:
|
183
|
+
imapPort: number;
|
184
|
+
imapTlsPort: number;
|
185
185
|
useTlsForImap: boolean;
|
186
186
|
}>;
|
187
187
|
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">]>;
|
@@ -202,12 +202,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
202
202
|
updatedAt: Date;
|
203
203
|
deletedAt: Date | null;
|
204
204
|
smtpHost: string;
|
205
|
-
smtpPort:
|
206
|
-
smtpTlsPort:
|
205
|
+
smtpPort: number;
|
206
|
+
smtpTlsPort: number;
|
207
207
|
useTlsForSmtp: boolean;
|
208
208
|
imapHost: string;
|
209
|
-
imapPort:
|
210
|
-
imapTlsPort:
|
209
|
+
imapPort: number;
|
210
|
+
imapTlsPort: number;
|
211
211
|
useTlsForImap: boolean;
|
212
212
|
};
|
213
213
|
}, {
|
@@ -227,12 +227,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
227
227
|
updatedAt: Date;
|
228
228
|
deletedAt: Date | null;
|
229
229
|
smtpHost: string;
|
230
|
-
smtpPort:
|
231
|
-
smtpTlsPort:
|
230
|
+
smtpPort: number;
|
231
|
+
smtpTlsPort: number;
|
232
232
|
useTlsForSmtp: boolean;
|
233
233
|
imapHost: string;
|
234
|
-
imapPort:
|
235
|
-
imapTlsPort:
|
234
|
+
imapPort: number;
|
235
|
+
imapTlsPort: number;
|
236
236
|
useTlsForImap: boolean;
|
237
237
|
};
|
238
238
|
}>, "many">;
|
@@ -254,12 +254,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
254
254
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
255
255
|
name: z.ZodString;
|
256
256
|
smtpHost: z.ZodString;
|
257
|
-
smtpPort: z.
|
258
|
-
smtpTlsPort: z.
|
257
|
+
smtpPort: z.ZodNumber;
|
258
|
+
smtpTlsPort: z.ZodNumber;
|
259
259
|
useTlsForSmtp: z.ZodBoolean;
|
260
260
|
imapHost: z.ZodString;
|
261
|
-
imapPort: z.
|
262
|
-
imapTlsPort: z.
|
261
|
+
imapPort: z.ZodNumber;
|
262
|
+
imapTlsPort: z.ZodNumber;
|
263
263
|
useTlsForImap: z.ZodBoolean;
|
264
264
|
}, "strip", z.ZodTypeAny, {
|
265
265
|
id: string;
|
@@ -268,12 +268,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
268
268
|
updatedAt: Date;
|
269
269
|
deletedAt: Date | null;
|
270
270
|
smtpHost: string;
|
271
|
-
smtpPort:
|
272
|
-
smtpTlsPort:
|
271
|
+
smtpPort: number;
|
272
|
+
smtpTlsPort: number;
|
273
273
|
useTlsForSmtp: boolean;
|
274
274
|
imapHost: string;
|
275
|
-
imapPort:
|
276
|
-
imapTlsPort:
|
275
|
+
imapPort: number;
|
276
|
+
imapTlsPort: number;
|
277
277
|
useTlsForImap: boolean;
|
278
278
|
}, {
|
279
279
|
id: string;
|
@@ -282,12 +282,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
282
282
|
updatedAt: Date;
|
283
283
|
deletedAt: Date | null;
|
284
284
|
smtpHost: string;
|
285
|
-
smtpPort:
|
286
|
-
smtpTlsPort:
|
285
|
+
smtpPort: number;
|
286
|
+
smtpTlsPort: number;
|
287
287
|
useTlsForSmtp: boolean;
|
288
288
|
imapHost: string;
|
289
|
-
imapPort:
|
290
|
-
imapTlsPort:
|
289
|
+
imapPort: number;
|
290
|
+
imapTlsPort: number;
|
291
291
|
useTlsForImap: boolean;
|
292
292
|
}>;
|
293
293
|
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">]>;
|
@@ -308,12 +308,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
308
308
|
updatedAt: Date;
|
309
309
|
deletedAt: Date | null;
|
310
310
|
smtpHost: string;
|
311
|
-
smtpPort:
|
312
|
-
smtpTlsPort:
|
311
|
+
smtpPort: number;
|
312
|
+
smtpTlsPort: number;
|
313
313
|
useTlsForSmtp: boolean;
|
314
314
|
imapHost: string;
|
315
|
-
imapPort:
|
316
|
-
imapTlsPort:
|
315
|
+
imapPort: number;
|
316
|
+
imapTlsPort: number;
|
317
317
|
useTlsForImap: boolean;
|
318
318
|
};
|
319
319
|
}, {
|
@@ -333,12 +333,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
333
333
|
updatedAt: Date;
|
334
334
|
deletedAt: Date | null;
|
335
335
|
smtpHost: string;
|
336
|
-
smtpPort:
|
337
|
-
smtpTlsPort:
|
336
|
+
smtpPort: number;
|
337
|
+
smtpTlsPort: number;
|
338
338
|
useTlsForSmtp: boolean;
|
339
339
|
imapHost: string;
|
340
|
-
imapPort:
|
341
|
-
imapTlsPort:
|
340
|
+
imapPort: number;
|
341
|
+
imapTlsPort: number;
|
342
342
|
useTlsForImap: boolean;
|
343
343
|
};
|
344
344
|
}>;
|
@@ -358,12 +358,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
358
358
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
359
359
|
name: z.ZodString;
|
360
360
|
smtpHost: z.ZodString;
|
361
|
-
smtpPort: z.
|
362
|
-
smtpTlsPort: z.
|
361
|
+
smtpPort: z.ZodNumber;
|
362
|
+
smtpTlsPort: z.ZodNumber;
|
363
363
|
useTlsForSmtp: z.ZodBoolean;
|
364
364
|
imapHost: z.ZodString;
|
365
|
-
imapPort: z.
|
366
|
-
imapTlsPort: z.
|
365
|
+
imapPort: z.ZodNumber;
|
366
|
+
imapTlsPort: z.ZodNumber;
|
367
367
|
useTlsForImap: z.ZodBoolean;
|
368
368
|
}, "strip", z.ZodTypeAny, {
|
369
369
|
id: string;
|
@@ -372,12 +372,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
372
372
|
updatedAt: Date;
|
373
373
|
deletedAt: Date | null;
|
374
374
|
smtpHost: string;
|
375
|
-
smtpPort:
|
376
|
-
smtpTlsPort:
|
375
|
+
smtpPort: number;
|
376
|
+
smtpTlsPort: number;
|
377
377
|
useTlsForSmtp: boolean;
|
378
378
|
imapHost: string;
|
379
|
-
imapPort:
|
380
|
-
imapTlsPort:
|
379
|
+
imapPort: number;
|
380
|
+
imapTlsPort: number;
|
381
381
|
useTlsForImap: boolean;
|
382
382
|
}, {
|
383
383
|
id: string;
|
@@ -386,12 +386,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
386
386
|
updatedAt: Date;
|
387
387
|
deletedAt: Date | null;
|
388
388
|
smtpHost: string;
|
389
|
-
smtpPort:
|
390
|
-
smtpTlsPort:
|
389
|
+
smtpPort: number;
|
390
|
+
smtpTlsPort: number;
|
391
391
|
useTlsForSmtp: boolean;
|
392
392
|
imapHost: string;
|
393
|
-
imapPort:
|
394
|
-
imapTlsPort:
|
393
|
+
imapPort: number;
|
394
|
+
imapTlsPort: number;
|
395
395
|
useTlsForImap: boolean;
|
396
396
|
}>;
|
397
397
|
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">]>;
|
@@ -412,12 +412,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
412
412
|
updatedAt: Date;
|
413
413
|
deletedAt: Date | null;
|
414
414
|
smtpHost: string;
|
415
|
-
smtpPort:
|
416
|
-
smtpTlsPort:
|
415
|
+
smtpPort: number;
|
416
|
+
smtpTlsPort: number;
|
417
417
|
useTlsForSmtp: boolean;
|
418
418
|
imapHost: string;
|
419
|
-
imapPort:
|
420
|
-
imapTlsPort:
|
419
|
+
imapPort: number;
|
420
|
+
imapTlsPort: number;
|
421
421
|
useTlsForImap: boolean;
|
422
422
|
};
|
423
423
|
}, {
|
@@ -437,12 +437,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
437
437
|
updatedAt: Date;
|
438
438
|
deletedAt: Date | null;
|
439
439
|
smtpHost: string;
|
440
|
-
smtpPort:
|
441
|
-
smtpTlsPort:
|
440
|
+
smtpPort: number;
|
441
|
+
smtpTlsPort: number;
|
442
442
|
useTlsForSmtp: boolean;
|
443
443
|
imapHost: string;
|
444
|
-
imapPort:
|
445
|
-
imapTlsPort:
|
444
|
+
imapPort: number;
|
445
|
+
imapTlsPort: number;
|
446
446
|
useTlsForImap: boolean;
|
447
447
|
};
|
448
448
|
}>;
|
@@ -471,12 +471,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
471
471
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
472
472
|
name: z.ZodString;
|
473
473
|
smtpHost: z.ZodString;
|
474
|
-
smtpPort: z.
|
475
|
-
smtpTlsPort: z.
|
474
|
+
smtpPort: z.ZodNumber;
|
475
|
+
smtpTlsPort: z.ZodNumber;
|
476
476
|
useTlsForSmtp: z.ZodBoolean;
|
477
477
|
imapHost: z.ZodString;
|
478
|
-
imapPort: z.
|
479
|
-
imapTlsPort: z.
|
478
|
+
imapPort: z.ZodNumber;
|
479
|
+
imapTlsPort: z.ZodNumber;
|
480
480
|
useTlsForImap: z.ZodBoolean;
|
481
481
|
}, "strip", z.ZodTypeAny, {
|
482
482
|
id: string;
|
@@ -485,12 +485,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
485
485
|
updatedAt: Date;
|
486
486
|
deletedAt: Date | null;
|
487
487
|
smtpHost: string;
|
488
|
-
smtpPort:
|
489
|
-
smtpTlsPort:
|
488
|
+
smtpPort: number;
|
489
|
+
smtpTlsPort: number;
|
490
490
|
useTlsForSmtp: boolean;
|
491
491
|
imapHost: string;
|
492
|
-
imapPort:
|
493
|
-
imapTlsPort:
|
492
|
+
imapPort: number;
|
493
|
+
imapTlsPort: number;
|
494
494
|
useTlsForImap: boolean;
|
495
495
|
}, {
|
496
496
|
id: string;
|
@@ -499,12 +499,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
499
499
|
updatedAt: Date;
|
500
500
|
deletedAt: Date | null;
|
501
501
|
smtpHost: string;
|
502
|
-
smtpPort:
|
503
|
-
smtpTlsPort:
|
502
|
+
smtpPort: number;
|
503
|
+
smtpTlsPort: number;
|
504
504
|
useTlsForSmtp: boolean;
|
505
505
|
imapHost: string;
|
506
|
-
imapPort:
|
507
|
-
imapTlsPort:
|
506
|
+
imapPort: number;
|
507
|
+
imapTlsPort: number;
|
508
508
|
useTlsForImap: boolean;
|
509
509
|
}>;
|
510
510
|
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">]>;
|
@@ -525,12 +525,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
525
525
|
updatedAt: Date;
|
526
526
|
deletedAt: Date | null;
|
527
527
|
smtpHost: string;
|
528
|
-
smtpPort:
|
529
|
-
smtpTlsPort:
|
528
|
+
smtpPort: number;
|
529
|
+
smtpTlsPort: number;
|
530
530
|
useTlsForSmtp: boolean;
|
531
531
|
imapHost: string;
|
532
|
-
imapPort:
|
533
|
-
imapTlsPort:
|
532
|
+
imapPort: number;
|
533
|
+
imapTlsPort: number;
|
534
534
|
useTlsForImap: boolean;
|
535
535
|
};
|
536
536
|
}, {
|
@@ -550,12 +550,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
550
550
|
updatedAt: Date;
|
551
551
|
deletedAt: Date | null;
|
552
552
|
smtpHost: string;
|
553
|
-
smtpPort:
|
554
|
-
smtpTlsPort:
|
553
|
+
smtpPort: number;
|
554
|
+
smtpTlsPort: number;
|
555
555
|
useTlsForSmtp: boolean;
|
556
556
|
imapHost: string;
|
557
|
-
imapPort:
|
558
|
-
imapTlsPort:
|
557
|
+
imapPort: number;
|
558
|
+
imapTlsPort: number;
|
559
559
|
useTlsForImap: boolean;
|
560
560
|
};
|
561
561
|
}>;
|
@@ -584,12 +584,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
584
584
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
585
585
|
name: z.ZodString;
|
586
586
|
smtpHost: z.ZodString;
|
587
|
-
smtpPort: z.
|
588
|
-
smtpTlsPort: z.
|
587
|
+
smtpPort: z.ZodNumber;
|
588
|
+
smtpTlsPort: z.ZodNumber;
|
589
589
|
useTlsForSmtp: z.ZodBoolean;
|
590
590
|
imapHost: z.ZodString;
|
591
|
-
imapPort: z.
|
592
|
-
imapTlsPort: z.
|
591
|
+
imapPort: z.ZodNumber;
|
592
|
+
imapTlsPort: z.ZodNumber;
|
593
593
|
useTlsForImap: z.ZodBoolean;
|
594
594
|
}, "strip", z.ZodTypeAny, {
|
595
595
|
id: string;
|
@@ -598,12 +598,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
598
598
|
updatedAt: Date;
|
599
599
|
deletedAt: Date | null;
|
600
600
|
smtpHost: string;
|
601
|
-
smtpPort:
|
602
|
-
smtpTlsPort:
|
601
|
+
smtpPort: number;
|
602
|
+
smtpTlsPort: number;
|
603
603
|
useTlsForSmtp: boolean;
|
604
604
|
imapHost: string;
|
605
|
-
imapPort:
|
606
|
-
imapTlsPort:
|
605
|
+
imapPort: number;
|
606
|
+
imapTlsPort: number;
|
607
607
|
useTlsForImap: boolean;
|
608
608
|
}, {
|
609
609
|
id: string;
|
@@ -612,12 +612,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
612
612
|
updatedAt: Date;
|
613
613
|
deletedAt: Date | null;
|
614
614
|
smtpHost: string;
|
615
|
-
smtpPort:
|
616
|
-
smtpTlsPort:
|
615
|
+
smtpPort: number;
|
616
|
+
smtpTlsPort: number;
|
617
617
|
useTlsForSmtp: boolean;
|
618
618
|
imapHost: string;
|
619
|
-
imapPort:
|
620
|
-
imapTlsPort:
|
619
|
+
imapPort: number;
|
620
|
+
imapTlsPort: number;
|
621
621
|
useTlsForImap: boolean;
|
622
622
|
}>;
|
623
623
|
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">]>;
|
@@ -638,12 +638,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
638
638
|
updatedAt: Date;
|
639
639
|
deletedAt: Date | null;
|
640
640
|
smtpHost: string;
|
641
|
-
smtpPort:
|
642
|
-
smtpTlsPort:
|
641
|
+
smtpPort: number;
|
642
|
+
smtpTlsPort: number;
|
643
643
|
useTlsForSmtp: boolean;
|
644
644
|
imapHost: string;
|
645
|
-
imapPort:
|
646
|
-
imapTlsPort:
|
645
|
+
imapPort: number;
|
646
|
+
imapTlsPort: number;
|
647
647
|
useTlsForImap: boolean;
|
648
648
|
};
|
649
649
|
}, {
|
@@ -663,12 +663,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
663
663
|
updatedAt: Date;
|
664
664
|
deletedAt: Date | null;
|
665
665
|
smtpHost: string;
|
666
|
-
smtpPort:
|
667
|
-
smtpTlsPort:
|
666
|
+
smtpPort: number;
|
667
|
+
smtpTlsPort: number;
|
668
668
|
useTlsForSmtp: boolean;
|
669
669
|
imapHost: string;
|
670
|
-
imapPort:
|
671
|
-
imapTlsPort:
|
670
|
+
imapPort: number;
|
671
|
+
imapTlsPort: number;
|
672
672
|
useTlsForImap: boolean;
|
673
673
|
};
|
674
674
|
}>;
|
@@ -697,12 +697,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
697
697
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
698
698
|
name: z.ZodString;
|
699
699
|
smtpHost: z.ZodString;
|
700
|
-
smtpPort: z.
|
701
|
-
smtpTlsPort: z.
|
700
|
+
smtpPort: z.ZodNumber;
|
701
|
+
smtpTlsPort: z.ZodNumber;
|
702
702
|
useTlsForSmtp: z.ZodBoolean;
|
703
703
|
imapHost: z.ZodString;
|
704
|
-
imapPort: z.
|
705
|
-
imapTlsPort: z.
|
704
|
+
imapPort: z.ZodNumber;
|
705
|
+
imapTlsPort: z.ZodNumber;
|
706
706
|
useTlsForImap: z.ZodBoolean;
|
707
707
|
}, "strip", z.ZodTypeAny, {
|
708
708
|
id: string;
|
@@ -711,12 +711,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
711
711
|
updatedAt: Date;
|
712
712
|
deletedAt: Date | null;
|
713
713
|
smtpHost: string;
|
714
|
-
smtpPort:
|
715
|
-
smtpTlsPort:
|
714
|
+
smtpPort: number;
|
715
|
+
smtpTlsPort: number;
|
716
716
|
useTlsForSmtp: boolean;
|
717
717
|
imapHost: string;
|
718
|
-
imapPort:
|
719
|
-
imapTlsPort:
|
718
|
+
imapPort: number;
|
719
|
+
imapTlsPort: number;
|
720
720
|
useTlsForImap: boolean;
|
721
721
|
}, {
|
722
722
|
id: string;
|
@@ -725,12 +725,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
725
725
|
updatedAt: Date;
|
726
726
|
deletedAt: Date | null;
|
727
727
|
smtpHost: string;
|
728
|
-
smtpPort:
|
729
|
-
smtpTlsPort:
|
728
|
+
smtpPort: number;
|
729
|
+
smtpTlsPort: number;
|
730
730
|
useTlsForSmtp: boolean;
|
731
731
|
imapHost: string;
|
732
|
-
imapPort:
|
733
|
-
imapTlsPort:
|
732
|
+
imapPort: number;
|
733
|
+
imapTlsPort: number;
|
734
734
|
useTlsForImap: boolean;
|
735
735
|
}>;
|
736
736
|
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">]>;
|
@@ -751,12 +751,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
751
751
|
updatedAt: Date;
|
752
752
|
deletedAt: Date | null;
|
753
753
|
smtpHost: string;
|
754
|
-
smtpPort:
|
755
|
-
smtpTlsPort:
|
754
|
+
smtpPort: number;
|
755
|
+
smtpTlsPort: number;
|
756
756
|
useTlsForSmtp: boolean;
|
757
757
|
imapHost: string;
|
758
|
-
imapPort:
|
759
|
-
imapTlsPort:
|
758
|
+
imapPort: number;
|
759
|
+
imapTlsPort: number;
|
760
760
|
useTlsForImap: boolean;
|
761
761
|
};
|
762
762
|
}, {
|
@@ -776,12 +776,12 @@ export declare const AccountContractsValidationSchemas: {
|
|
776
776
|
updatedAt: Date;
|
777
777
|
deletedAt: Date | null;
|
778
778
|
smtpHost: string;
|
779
|
-
smtpPort:
|
780
|
-
smtpTlsPort:
|
779
|
+
smtpPort: number;
|
780
|
+
smtpTlsPort: number;
|
781
781
|
useTlsForSmtp: boolean;
|
782
782
|
imapHost: string;
|
783
|
-
imapPort:
|
784
|
-
imapTlsPort:
|
783
|
+
imapPort: number;
|
784
|
+
imapTlsPort: number;
|
785
785
|
useTlsForImap: boolean;
|
786
786
|
};
|
787
787
|
}>;
|