@kl1/contracts 1.4.51 → 1.4.53
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/api-contracts/src/botpress/index.d.ts +9 -9
- package/dist/api-contracts/src/botpress/validation.d.ts +9 -9
- package/dist/api-contracts/src/channel/index.d.ts +0 -64
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +0 -64
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +3 -6
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +0 -3
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/company/index.d.ts +0 -80
- package/dist/api-contracts/src/company/index.d.ts.map +1 -1
- package/dist/api-contracts/src/company/validation.d.ts +0 -40
- package/dist/api-contracts/src/company/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +439 -271
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/index.d.ts +0 -1
- package/dist/api-contracts/src/index.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/account-contract.d.ts +29 -169
- package/dist/api-contracts/src/mail/account-contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/index.d.ts +0 -1
- package/dist/api-contracts/src/mail/index.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/mail-contract.d.ts +41 -181
- package/dist/api-contracts/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/room-contract.d.ts +12 -12
- package/dist/api-contracts/src/mail/schemas/account-validation.schema.d.ts +24 -85
- package/dist/api-contracts/src/mail/schemas/account-validation.schema.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/schemas/account.schema.d.ts +3 -3
- package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts +3 -3
- package/dist/api-contracts/src/mail/schemas/room.schema.d.ts +3 -3
- package/dist/api-contracts/src/subscription/index.d.ts +0 -438
- package/dist/api-contracts/src/subscription/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +430 -0
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts +3 -0
- package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts +3 -0
- package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +0 -54
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +1636 -1733
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1636 -1732
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -5174,6 +5174,9 @@ export declare const roomContract: {
|
|
5174
5174
|
}>]>, "many">;
|
5175
5175
|
mail: z.ZodObject<{
|
5176
5176
|
id: z.ZodString;
|
5177
|
+
createdAt: z.ZodDate;
|
5178
|
+
updatedAt: z.ZodDate;
|
5179
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
5177
5180
|
name: z.ZodString;
|
5178
5181
|
address: z.ZodString;
|
5179
5182
|
accountId: z.ZodString;
|
@@ -5222,9 +5225,6 @@ export declare const roomContract: {
|
|
5222
5225
|
useTlsForImap: boolean;
|
5223
5226
|
}>;
|
5224
5227
|
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">]>;
|
5225
|
-
createdAt: z.ZodDate;
|
5226
|
-
updatedAt: z.ZodDate;
|
5227
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
5228
5228
|
}, "strip", z.ZodTypeAny, {
|
5229
5229
|
name: string;
|
5230
5230
|
id: string;
|
@@ -9761,6 +9761,9 @@ export declare const roomContract: {
|
|
9761
9761
|
channels: z.ZodArray<z.ZodObject<{
|
9762
9762
|
channel: z.ZodObject<{
|
9763
9763
|
id: z.ZodString;
|
9764
|
+
createdAt: z.ZodDate;
|
9765
|
+
updatedAt: z.ZodDate;
|
9766
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
9764
9767
|
name: z.ZodString;
|
9765
9768
|
address: z.ZodString;
|
9766
9769
|
accountId: z.ZodString;
|
@@ -9809,9 +9812,6 @@ export declare const roomContract: {
|
|
9809
9812
|
useTlsForImap: boolean;
|
9810
9813
|
}>;
|
9811
9814
|
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">]>;
|
9812
|
-
createdAt: z.ZodDate;
|
9813
|
-
updatedAt: z.ZodDate;
|
9814
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
9815
9815
|
}, "strip", z.ZodTypeAny, {
|
9816
9816
|
name: string;
|
9817
9817
|
id: string;
|
@@ -15757,6 +15757,9 @@ export declare const roomContract: {
|
|
15757
15757
|
}>]>, "many">;
|
15758
15758
|
mail: z.ZodObject<{
|
15759
15759
|
id: z.ZodString;
|
15760
|
+
createdAt: z.ZodDate;
|
15761
|
+
updatedAt: z.ZodDate;
|
15762
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
15760
15763
|
name: z.ZodString;
|
15761
15764
|
address: z.ZodString;
|
15762
15765
|
accountId: z.ZodString;
|
@@ -15805,9 +15808,6 @@ export declare const roomContract: {
|
|
15805
15808
|
useTlsForImap: boolean;
|
15806
15809
|
}>;
|
15807
15810
|
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">]>;
|
15808
|
-
createdAt: z.ZodDate;
|
15809
|
-
updatedAt: z.ZodDate;
|
15810
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
15811
15811
|
}, "strip", z.ZodTypeAny, {
|
15812
15812
|
name: string;
|
15813
15813
|
id: string;
|
@@ -25420,6 +25420,9 @@ export declare const roomContract: {
|
|
25420
25420
|
}>]>, "many">;
|
25421
25421
|
mail: z.ZodObject<{
|
25422
25422
|
id: z.ZodString;
|
25423
|
+
createdAt: z.ZodDate;
|
25424
|
+
updatedAt: z.ZodDate;
|
25425
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
25423
25426
|
name: z.ZodString;
|
25424
25427
|
address: z.ZodString;
|
25425
25428
|
accountId: z.ZodString;
|
@@ -25468,9 +25471,6 @@ export declare const roomContract: {
|
|
25468
25471
|
useTlsForImap: boolean;
|
25469
25472
|
}>;
|
25470
25473
|
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">]>;
|
25471
|
-
createdAt: z.ZodDate;
|
25472
|
-
updatedAt: z.ZodDate;
|
25473
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
25474
25474
|
}, "strip", z.ZodTypeAny, {
|
25475
25475
|
name: string;
|
25476
25476
|
id: string;
|
@@ -18,67 +18,6 @@ export declare const AccountContractsValidationSchemas: {
|
|
18
18
|
mailServerId: string;
|
19
19
|
}>;
|
20
20
|
};
|
21
|
-
createWithCustomSmtpAndImap: {
|
22
|
-
input: z.ZodObject<{
|
23
|
-
email: z.ZodString;
|
24
|
-
name: z.ZodString;
|
25
|
-
password: z.ZodString;
|
26
|
-
imap: z.ZodObject<{
|
27
|
-
host: z.ZodString;
|
28
|
-
port: z.ZodNumber;
|
29
|
-
secure: z.ZodDefault<z.ZodBoolean>;
|
30
|
-
}, "strip", z.ZodTypeAny, {
|
31
|
-
port: number;
|
32
|
-
host: string;
|
33
|
-
secure: boolean;
|
34
|
-
}, {
|
35
|
-
port: number;
|
36
|
-
host: string;
|
37
|
-
secure?: boolean | undefined;
|
38
|
-
}>;
|
39
|
-
smtp: z.ZodObject<{
|
40
|
-
host: z.ZodString;
|
41
|
-
port: z.ZodNumber;
|
42
|
-
secure: z.ZodDefault<z.ZodBoolean>;
|
43
|
-
}, "strip", z.ZodTypeAny, {
|
44
|
-
port: number;
|
45
|
-
host: string;
|
46
|
-
secure: boolean;
|
47
|
-
}, {
|
48
|
-
port: number;
|
49
|
-
host: string;
|
50
|
-
secure?: boolean | undefined;
|
51
|
-
}>;
|
52
|
-
}, "strip", z.ZodTypeAny, {
|
53
|
-
name: string;
|
54
|
-
email: string;
|
55
|
-
password: string;
|
56
|
-
imap: {
|
57
|
-
port: number;
|
58
|
-
host: string;
|
59
|
-
secure: boolean;
|
60
|
-
};
|
61
|
-
smtp: {
|
62
|
-
port: number;
|
63
|
-
host: string;
|
64
|
-
secure: boolean;
|
65
|
-
};
|
66
|
-
}, {
|
67
|
-
name: string;
|
68
|
-
email: string;
|
69
|
-
password: string;
|
70
|
-
imap: {
|
71
|
-
port: number;
|
72
|
-
host: string;
|
73
|
-
secure?: boolean | undefined;
|
74
|
-
};
|
75
|
-
smtp: {
|
76
|
-
port: number;
|
77
|
-
host: string;
|
78
|
-
secure?: boolean | undefined;
|
79
|
-
};
|
80
|
-
}>;
|
81
|
-
};
|
82
21
|
getById: {
|
83
22
|
input: z.ZodObject<{
|
84
23
|
id: z.ZodString;
|
@@ -89,6 +28,9 @@ export declare const AccountContractsValidationSchemas: {
|
|
89
28
|
}>;
|
90
29
|
output: z.ZodObject<{
|
91
30
|
id: z.ZodString;
|
31
|
+
createdAt: z.ZodDate;
|
32
|
+
updatedAt: z.ZodDate;
|
33
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
92
34
|
name: z.ZodString;
|
93
35
|
address: z.ZodString;
|
94
36
|
accountId: z.ZodString;
|
@@ -137,9 +79,6 @@ export declare const AccountContractsValidationSchemas: {
|
|
137
79
|
useTlsForImap: boolean;
|
138
80
|
}>;
|
139
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">]>;
|
140
|
-
createdAt: z.ZodDate;
|
141
|
-
updatedAt: z.ZodDate;
|
142
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
143
82
|
}, "strip", z.ZodTypeAny, {
|
144
83
|
name: string;
|
145
84
|
id: string;
|
@@ -195,6 +134,9 @@ export declare const AccountContractsValidationSchemas: {
|
|
195
134
|
getAll: {
|
196
135
|
output: z.ZodArray<z.ZodObject<{
|
197
136
|
id: z.ZodString;
|
137
|
+
createdAt: z.ZodDate;
|
138
|
+
updatedAt: z.ZodDate;
|
139
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
198
140
|
name: z.ZodString;
|
199
141
|
address: z.ZodString;
|
200
142
|
accountId: z.ZodString;
|
@@ -243,9 +185,6 @@ export declare const AccountContractsValidationSchemas: {
|
|
243
185
|
useTlsForImap: boolean;
|
244
186
|
}>;
|
245
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">]>;
|
246
|
-
createdAt: z.ZodDate;
|
247
|
-
updatedAt: z.ZodDate;
|
248
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
249
188
|
}, "strip", z.ZodTypeAny, {
|
250
189
|
name: string;
|
251
190
|
id: string;
|
@@ -301,6 +240,9 @@ export declare const AccountContractsValidationSchemas: {
|
|
301
240
|
update: {
|
302
241
|
input: z.ZodObject<{
|
303
242
|
id: z.ZodString;
|
243
|
+
createdAt: z.ZodDate;
|
244
|
+
updatedAt: z.ZodDate;
|
245
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
304
246
|
name: z.ZodString;
|
305
247
|
address: z.ZodString;
|
306
248
|
accountId: z.ZodString;
|
@@ -349,9 +291,6 @@ export declare const AccountContractsValidationSchemas: {
|
|
349
291
|
useTlsForImap: boolean;
|
350
292
|
}>;
|
351
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">]>;
|
352
|
-
createdAt: z.ZodDate;
|
353
|
-
updatedAt: z.ZodDate;
|
354
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
355
294
|
}, "strip", z.ZodTypeAny, {
|
356
295
|
name: string;
|
357
296
|
id: string;
|
@@ -405,6 +344,9 @@ export declare const AccountContractsValidationSchemas: {
|
|
405
344
|
}>;
|
406
345
|
output: z.ZodObject<{
|
407
346
|
id: z.ZodString;
|
347
|
+
createdAt: z.ZodDate;
|
348
|
+
updatedAt: z.ZodDate;
|
349
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
408
350
|
name: z.ZodString;
|
409
351
|
address: z.ZodString;
|
410
352
|
accountId: z.ZodString;
|
@@ -453,9 +395,6 @@ export declare const AccountContractsValidationSchemas: {
|
|
453
395
|
useTlsForImap: boolean;
|
454
396
|
}>;
|
455
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">]>;
|
456
|
-
createdAt: z.ZodDate;
|
457
|
-
updatedAt: z.ZodDate;
|
458
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
459
398
|
}, "strip", z.ZodTypeAny, {
|
460
399
|
name: string;
|
461
400
|
id: string;
|
@@ -518,6 +457,9 @@ export declare const AccountContractsValidationSchemas: {
|
|
518
457
|
}>;
|
519
458
|
output: z.ZodObject<{
|
520
459
|
id: z.ZodString;
|
460
|
+
createdAt: z.ZodDate;
|
461
|
+
updatedAt: z.ZodDate;
|
462
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
521
463
|
name: z.ZodString;
|
522
464
|
address: z.ZodString;
|
523
465
|
accountId: z.ZodString;
|
@@ -566,9 +508,6 @@ export declare const AccountContractsValidationSchemas: {
|
|
566
508
|
useTlsForImap: boolean;
|
567
509
|
}>;
|
568
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">]>;
|
569
|
-
createdAt: z.ZodDate;
|
570
|
-
updatedAt: z.ZodDate;
|
571
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
572
511
|
}, "strip", z.ZodTypeAny, {
|
573
512
|
name: string;
|
574
513
|
id: string;
|
@@ -631,6 +570,9 @@ export declare const AccountContractsValidationSchemas: {
|
|
631
570
|
}>;
|
632
571
|
output: z.ZodObject<{
|
633
572
|
id: z.ZodString;
|
573
|
+
createdAt: z.ZodDate;
|
574
|
+
updatedAt: z.ZodDate;
|
575
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
634
576
|
name: z.ZodString;
|
635
577
|
address: z.ZodString;
|
636
578
|
accountId: z.ZodString;
|
@@ -679,9 +621,6 @@ export declare const AccountContractsValidationSchemas: {
|
|
679
621
|
useTlsForImap: boolean;
|
680
622
|
}>;
|
681
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">]>;
|
682
|
-
createdAt: z.ZodDate;
|
683
|
-
updatedAt: z.ZodDate;
|
684
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
685
624
|
}, "strip", z.ZodTypeAny, {
|
686
625
|
name: string;
|
687
626
|
id: string;
|
@@ -754,6 +693,9 @@ export declare const AccountContractsValidationSchemas: {
|
|
754
693
|
}>;
|
755
694
|
output: z.ZodObject<{
|
756
695
|
id: z.ZodString;
|
696
|
+
createdAt: z.ZodDate;
|
697
|
+
updatedAt: z.ZodDate;
|
698
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
757
699
|
name: z.ZodString;
|
758
700
|
address: z.ZodString;
|
759
701
|
accountId: z.ZodString;
|
@@ -802,9 +744,6 @@ export declare const AccountContractsValidationSchemas: {
|
|
802
744
|
useTlsForImap: boolean;
|
803
745
|
}>;
|
804
746
|
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">]>;
|
805
|
-
createdAt: z.ZodDate;
|
806
|
-
updatedAt: z.ZodDate;
|
807
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
808
747
|
}, "strip", z.ZodTypeAny, {
|
809
748
|
name: string;
|
810
749
|
id: string;
|
@@ -892,6 +831,9 @@ export declare const AccountContractsValidationSchemas: {
|
|
892
831
|
}>;
|
893
832
|
response: z.ZodObject<{
|
894
833
|
id: z.ZodString;
|
834
|
+
createdAt: z.ZodDate;
|
835
|
+
updatedAt: z.ZodDate;
|
836
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
895
837
|
name: z.ZodString;
|
896
838
|
address: z.ZodString;
|
897
839
|
accountId: z.ZodString;
|
@@ -940,9 +882,6 @@ export declare const AccountContractsValidationSchemas: {
|
|
940
882
|
useTlsForImap: boolean;
|
941
883
|
}>;
|
942
884
|
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">]>;
|
943
|
-
createdAt: z.ZodDate;
|
944
|
-
updatedAt: z.ZodDate;
|
945
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
946
885
|
}, "strip", z.ZodTypeAny, {
|
947
886
|
name: string;
|
948
887
|
id: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"account-validation.schema.d.ts","sourceRoot":"","sources":["../../../../../src/mail/schemas/account-validation.schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,iCAAiC
|
1
|
+
{"version":3,"file":"account-validation.schema.d.ts","sourceRoot":"","sources":["../../../../../src/mail/schemas/account-validation.schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkE7C,CAAC;AAEF,MAAM,MAAM,uCAAuC,GAAG,CAAC,CAAC,KAAK,CAC3D,OAAO,iCAAiC,CAAC,gCAAgC,CAAC,IAAI,CAC/E,CAAC;AACF,MAAM,MAAM,wCAAwC,GAAG,CAAC,CAAC,KAAK,CAC5D,OAAO,iCAAiC,CAAC,gCAAgC,CAAC,QAAQ,CACnF,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAC1C,OAAO,iCAAiC,CAAC,eAAe,CAAC,IAAI,CAC9D,CAAC;AACF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAC3C,OAAO,iCAAiC,CAAC,eAAe,CAAC,QAAQ,CAClE,CAAC"}
|
@@ -44,6 +44,9 @@ export declare const MailServerSchema: z.ZodObject<{
|
|
44
44
|
}>;
|
45
45
|
export declare const MailAccountSchema: z.ZodObject<{
|
46
46
|
id: z.ZodString;
|
47
|
+
createdAt: z.ZodDate;
|
48
|
+
updatedAt: z.ZodDate;
|
49
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
47
50
|
name: z.ZodString;
|
48
51
|
address: z.ZodString;
|
49
52
|
accountId: z.ZodString;
|
@@ -92,9 +95,6 @@ export declare const MailAccountSchema: z.ZodObject<{
|
|
92
95
|
useTlsForImap: boolean;
|
93
96
|
}>;
|
94
97
|
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">]>;
|
95
|
-
createdAt: z.ZodDate;
|
96
|
-
updatedAt: z.ZodDate;
|
97
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
98
98
|
}, "strip", z.ZodTypeAny, {
|
99
99
|
name: string;
|
100
100
|
id: string;
|
@@ -5092,6 +5092,9 @@ export declare const RoomContractsValidationSchema: {
|
|
5092
5092
|
}>]>, "many">;
|
5093
5093
|
mail: z.ZodObject<{
|
5094
5094
|
id: z.ZodString;
|
5095
|
+
createdAt: z.ZodDate;
|
5096
|
+
updatedAt: z.ZodDate;
|
5097
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
5095
5098
|
name: z.ZodString;
|
5096
5099
|
address: z.ZodString;
|
5097
5100
|
accountId: z.ZodString;
|
@@ -5140,9 +5143,6 @@ export declare const RoomContractsValidationSchema: {
|
|
5140
5143
|
useTlsForImap: boolean;
|
5141
5144
|
}>;
|
5142
5145
|
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">]>;
|
5143
|
-
createdAt: z.ZodDate;
|
5144
|
-
updatedAt: z.ZodDate;
|
5145
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
5146
5146
|
}, "strip", z.ZodTypeAny, {
|
5147
5147
|
name: string;
|
5148
5148
|
id: string;
|
@@ -6514,6 +6514,9 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
6514
6514
|
}>]>, "many">;
|
6515
6515
|
mail: z.ZodObject<{
|
6516
6516
|
id: z.ZodString;
|
6517
|
+
createdAt: z.ZodDate;
|
6518
|
+
updatedAt: z.ZodDate;
|
6519
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
6517
6520
|
name: z.ZodString;
|
6518
6521
|
address: z.ZodString;
|
6519
6522
|
accountId: z.ZodString;
|
@@ -6562,9 +6565,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
6562
6565
|
useTlsForImap: boolean;
|
6563
6566
|
}>;
|
6564
6567
|
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">]>;
|
6565
|
-
createdAt: z.ZodDate;
|
6566
|
-
updatedAt: z.ZodDate;
|
6567
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
6568
6568
|
}, "strip", z.ZodTypeAny, {
|
6569
6569
|
name: string;
|
6570
6570
|
id: string;
|