@kl1/contracts 1.0.94 → 1.0.96
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 +780 -747
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +779 -747
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +3 -0
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +8 -0
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +756 -258
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +5 -0
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +5 -0
- package/dist/src/line/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/messenger/index.d.ts +5 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- 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/dist/src/viber/index.d.ts +5 -0
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/src/app/index.d.ts +0 -17
- package/dist/src/app/index.d.ts.map +0 -1
- package/dist/src/chatwoot/index.d.ts +0 -7527
- package/dist/src/chatwoot/index.d.ts.map +0 -1
- package/dist/src/chatwoot/schema.d.ts +0 -79
- package/dist/src/chatwoot/schema.d.ts.map +0 -1
- package/dist/src/chatwoot/validation.d.ts +0 -53
- package/dist/src/chatwoot/validation.d.ts.map +0 -1
- package/dist/src/mail/mail-server.d.ts +0 -216
- package/dist/src/mail/mail-server.d.ts.map +0 -1
- package/dist/src/platform-contact/schema.d.ts +0 -30
- package/dist/src/platform-contact/schema.d.ts.map +0 -1
@@ -6,12 +6,12 @@ export declare const MailServerSchema: z.ZodObject<{
|
|
6
6
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
7
7
|
name: z.ZodString;
|
8
8
|
smtpHost: z.ZodString;
|
9
|
-
smtpPort: z.
|
10
|
-
smtpTlsPort: z.
|
9
|
+
smtpPort: z.ZodNumber;
|
10
|
+
smtpTlsPort: z.ZodNumber;
|
11
11
|
useTlsForSmtp: z.ZodBoolean;
|
12
12
|
imapHost: z.ZodString;
|
13
|
-
imapPort: z.
|
14
|
-
imapTlsPort: z.
|
13
|
+
imapPort: z.ZodNumber;
|
14
|
+
imapTlsPort: z.ZodNumber;
|
15
15
|
useTlsForImap: z.ZodBoolean;
|
16
16
|
}, "strip", z.ZodTypeAny, {
|
17
17
|
id: string;
|
@@ -20,12 +20,12 @@ export declare const MailServerSchema: z.ZodObject<{
|
|
20
20
|
updatedAt: Date;
|
21
21
|
deletedAt: Date | null;
|
22
22
|
smtpHost: string;
|
23
|
-
smtpPort:
|
24
|
-
smtpTlsPort:
|
23
|
+
smtpPort: number;
|
24
|
+
smtpTlsPort: number;
|
25
25
|
useTlsForSmtp: boolean;
|
26
26
|
imapHost: string;
|
27
|
-
imapPort:
|
28
|
-
imapTlsPort:
|
27
|
+
imapPort: number;
|
28
|
+
imapTlsPort: number;
|
29
29
|
useTlsForImap: boolean;
|
30
30
|
}, {
|
31
31
|
id: string;
|
@@ -34,12 +34,12 @@ export declare const MailServerSchema: z.ZodObject<{
|
|
34
34
|
updatedAt: Date;
|
35
35
|
deletedAt: Date | null;
|
36
36
|
smtpHost: string;
|
37
|
-
smtpPort:
|
38
|
-
smtpTlsPort:
|
37
|
+
smtpPort: number;
|
38
|
+
smtpTlsPort: number;
|
39
39
|
useTlsForSmtp: boolean;
|
40
40
|
imapHost: string;
|
41
|
-
imapPort:
|
42
|
-
imapTlsPort:
|
41
|
+
imapPort: number;
|
42
|
+
imapTlsPort: number;
|
43
43
|
useTlsForImap: boolean;
|
44
44
|
}>;
|
45
45
|
export declare const MailAccountSchema: z.ZodObject<{
|
@@ -58,12 +58,12 @@ export declare const MailAccountSchema: z.ZodObject<{
|
|
58
58
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
59
59
|
name: z.ZodString;
|
60
60
|
smtpHost: z.ZodString;
|
61
|
-
smtpPort: z.
|
62
|
-
smtpTlsPort: z.
|
61
|
+
smtpPort: z.ZodNumber;
|
62
|
+
smtpTlsPort: z.ZodNumber;
|
63
63
|
useTlsForSmtp: z.ZodBoolean;
|
64
64
|
imapHost: z.ZodString;
|
65
|
-
imapPort: z.
|
66
|
-
imapTlsPort: z.
|
65
|
+
imapPort: z.ZodNumber;
|
66
|
+
imapTlsPort: z.ZodNumber;
|
67
67
|
useTlsForImap: z.ZodBoolean;
|
68
68
|
}, "strip", z.ZodTypeAny, {
|
69
69
|
id: string;
|
@@ -72,12 +72,12 @@ export declare const MailAccountSchema: z.ZodObject<{
|
|
72
72
|
updatedAt: Date;
|
73
73
|
deletedAt: Date | null;
|
74
74
|
smtpHost: string;
|
75
|
-
smtpPort:
|
76
|
-
smtpTlsPort:
|
75
|
+
smtpPort: number;
|
76
|
+
smtpTlsPort: number;
|
77
77
|
useTlsForSmtp: boolean;
|
78
78
|
imapHost: string;
|
79
|
-
imapPort:
|
80
|
-
imapTlsPort:
|
79
|
+
imapPort: number;
|
80
|
+
imapTlsPort: number;
|
81
81
|
useTlsForImap: boolean;
|
82
82
|
}, {
|
83
83
|
id: string;
|
@@ -86,12 +86,12 @@ export declare const MailAccountSchema: z.ZodObject<{
|
|
86
86
|
updatedAt: Date;
|
87
87
|
deletedAt: Date | null;
|
88
88
|
smtpHost: string;
|
89
|
-
smtpPort:
|
90
|
-
smtpTlsPort:
|
89
|
+
smtpPort: number;
|
90
|
+
smtpTlsPort: number;
|
91
91
|
useTlsForSmtp: boolean;
|
92
92
|
imapHost: string;
|
93
|
-
imapPort:
|
94
|
-
imapTlsPort:
|
93
|
+
imapPort: number;
|
94
|
+
imapTlsPort: number;
|
95
95
|
useTlsForImap: boolean;
|
96
96
|
}>;
|
97
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">]>;
|
@@ -112,12 +112,12 @@ export declare const MailAccountSchema: z.ZodObject<{
|
|
112
112
|
updatedAt: Date;
|
113
113
|
deletedAt: Date | null;
|
114
114
|
smtpHost: string;
|
115
|
-
smtpPort:
|
116
|
-
smtpTlsPort:
|
115
|
+
smtpPort: number;
|
116
|
+
smtpTlsPort: number;
|
117
117
|
useTlsForSmtp: boolean;
|
118
118
|
imapHost: string;
|
119
|
-
imapPort:
|
120
|
-
imapTlsPort:
|
119
|
+
imapPort: number;
|
120
|
+
imapTlsPort: number;
|
121
121
|
useTlsForImap: boolean;
|
122
122
|
};
|
123
123
|
}, {
|
@@ -137,12 +137,12 @@ export declare const MailAccountSchema: z.ZodObject<{
|
|
137
137
|
updatedAt: Date;
|
138
138
|
deletedAt: Date | null;
|
139
139
|
smtpHost: string;
|
140
|
-
smtpPort:
|
141
|
-
smtpTlsPort:
|
140
|
+
smtpPort: number;
|
141
|
+
smtpTlsPort: number;
|
142
142
|
useTlsForSmtp: boolean;
|
143
143
|
imapHost: string;
|
144
|
-
imapPort:
|
145
|
-
imapTlsPort:
|
144
|
+
imapPort: number;
|
145
|
+
imapTlsPort: number;
|
146
146
|
useTlsForImap: boolean;
|
147
147
|
};
|
148
148
|
}>;
|
@@ -1656,12 +1656,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1656
1656
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1657
1657
|
name: z.ZodString;
|
1658
1658
|
smtpHost: z.ZodString;
|
1659
|
-
smtpPort: z.
|
1660
|
-
smtpTlsPort: z.
|
1659
|
+
smtpPort: z.ZodNumber;
|
1660
|
+
smtpTlsPort: z.ZodNumber;
|
1661
1661
|
useTlsForSmtp: z.ZodBoolean;
|
1662
1662
|
imapHost: z.ZodString;
|
1663
|
-
imapPort: z.
|
1664
|
-
imapTlsPort: z.
|
1663
|
+
imapPort: z.ZodNumber;
|
1664
|
+
imapTlsPort: z.ZodNumber;
|
1665
1665
|
useTlsForImap: z.ZodBoolean;
|
1666
1666
|
}, "strip", z.ZodTypeAny, {
|
1667
1667
|
id: string;
|
@@ -1670,12 +1670,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1670
1670
|
updatedAt: Date;
|
1671
1671
|
deletedAt: Date | null;
|
1672
1672
|
smtpHost: string;
|
1673
|
-
smtpPort:
|
1674
|
-
smtpTlsPort:
|
1673
|
+
smtpPort: number;
|
1674
|
+
smtpTlsPort: number;
|
1675
1675
|
useTlsForSmtp: boolean;
|
1676
1676
|
imapHost: string;
|
1677
|
-
imapPort:
|
1678
|
-
imapTlsPort:
|
1677
|
+
imapPort: number;
|
1678
|
+
imapTlsPort: number;
|
1679
1679
|
useTlsForImap: boolean;
|
1680
1680
|
}, {
|
1681
1681
|
id: string;
|
@@ -1684,12 +1684,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1684
1684
|
updatedAt: Date;
|
1685
1685
|
deletedAt: Date | null;
|
1686
1686
|
smtpHost: string;
|
1687
|
-
smtpPort:
|
1688
|
-
smtpTlsPort:
|
1687
|
+
smtpPort: number;
|
1688
|
+
smtpTlsPort: number;
|
1689
1689
|
useTlsForSmtp: boolean;
|
1690
1690
|
imapHost: string;
|
1691
|
-
imapPort:
|
1692
|
-
imapTlsPort:
|
1691
|
+
imapPort: number;
|
1692
|
+
imapTlsPort: number;
|
1693
1693
|
useTlsForImap: boolean;
|
1694
1694
|
}>;
|
1695
1695
|
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">]>;
|
@@ -1710,12 +1710,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1710
1710
|
updatedAt: Date;
|
1711
1711
|
deletedAt: Date | null;
|
1712
1712
|
smtpHost: string;
|
1713
|
-
smtpPort:
|
1714
|
-
smtpTlsPort:
|
1713
|
+
smtpPort: number;
|
1714
|
+
smtpTlsPort: number;
|
1715
1715
|
useTlsForSmtp: boolean;
|
1716
1716
|
imapHost: string;
|
1717
|
-
imapPort:
|
1718
|
-
imapTlsPort:
|
1717
|
+
imapPort: number;
|
1718
|
+
imapTlsPort: number;
|
1719
1719
|
useTlsForImap: boolean;
|
1720
1720
|
};
|
1721
1721
|
}, {
|
@@ -1735,12 +1735,12 @@ export declare const RoomContractsValidationSchema: {
|
|
1735
1735
|
updatedAt: Date;
|
1736
1736
|
deletedAt: Date | null;
|
1737
1737
|
smtpHost: string;
|
1738
|
-
smtpPort:
|
1739
|
-
smtpTlsPort:
|
1738
|
+
smtpPort: number;
|
1739
|
+
smtpTlsPort: number;
|
1740
1740
|
useTlsForSmtp: boolean;
|
1741
1741
|
imapHost: string;
|
1742
|
-
imapPort:
|
1743
|
-
imapTlsPort:
|
1742
|
+
imapPort: number;
|
1743
|
+
imapTlsPort: number;
|
1744
1744
|
useTlsForImap: boolean;
|
1745
1745
|
};
|
1746
1746
|
}>;
|
@@ -2145,12 +2145,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2145
2145
|
updatedAt: Date;
|
2146
2146
|
deletedAt: Date | null;
|
2147
2147
|
smtpHost: string;
|
2148
|
-
smtpPort:
|
2149
|
-
smtpTlsPort:
|
2148
|
+
smtpPort: number;
|
2149
|
+
smtpTlsPort: number;
|
2150
2150
|
useTlsForSmtp: boolean;
|
2151
2151
|
imapHost: string;
|
2152
|
-
imapPort:
|
2153
|
-
imapTlsPort:
|
2152
|
+
imapPort: number;
|
2153
|
+
imapTlsPort: number;
|
2154
2154
|
useTlsForImap: boolean;
|
2155
2155
|
};
|
2156
2156
|
};
|
@@ -2555,12 +2555,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2555
2555
|
updatedAt: Date;
|
2556
2556
|
deletedAt: Date | null;
|
2557
2557
|
smtpHost: string;
|
2558
|
-
smtpPort:
|
2559
|
-
smtpTlsPort:
|
2558
|
+
smtpPort: number;
|
2559
|
+
smtpTlsPort: number;
|
2560
2560
|
useTlsForSmtp: boolean;
|
2561
2561
|
imapHost: string;
|
2562
|
-
imapPort:
|
2563
|
-
imapTlsPort:
|
2562
|
+
imapPort: number;
|
2563
|
+
imapTlsPort: number;
|
2564
2564
|
useTlsForImap: boolean;
|
2565
2565
|
};
|
2566
2566
|
};
|
@@ -2970,12 +2970,12 @@ export declare const RoomContractsValidationSchema: {
|
|
2970
2970
|
updatedAt: Date;
|
2971
2971
|
deletedAt: Date | null;
|
2972
2972
|
smtpHost: string;
|
2973
|
-
smtpPort:
|
2974
|
-
smtpTlsPort:
|
2973
|
+
smtpPort: number;
|
2974
|
+
smtpTlsPort: number;
|
2975
2975
|
useTlsForSmtp: boolean;
|
2976
2976
|
imapHost: string;
|
2977
|
-
imapPort:
|
2978
|
-
imapTlsPort:
|
2977
|
+
imapPort: number;
|
2978
|
+
imapTlsPort: number;
|
2979
2979
|
useTlsForImap: boolean;
|
2980
2980
|
};
|
2981
2981
|
};
|
@@ -3385,12 +3385,12 @@ export declare const RoomContractsValidationSchema: {
|
|
3385
3385
|
updatedAt: Date;
|
3386
3386
|
deletedAt: Date | null;
|
3387
3387
|
smtpHost: string;
|
3388
|
-
smtpPort:
|
3389
|
-
smtpTlsPort:
|
3388
|
+
smtpPort: number;
|
3389
|
+
smtpTlsPort: number;
|
3390
3390
|
useTlsForSmtp: boolean;
|
3391
3391
|
imapHost: string;
|
3392
|
-
imapPort:
|
3393
|
-
imapTlsPort:
|
3392
|
+
imapPort: number;
|
3393
|
+
imapTlsPort: number;
|
3394
3394
|
useTlsForImap: boolean;
|
3395
3395
|
};
|
3396
3396
|
};
|
@@ -1709,12 +1709,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1709
1709
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1710
1710
|
name: z.ZodString;
|
1711
1711
|
smtpHost: z.ZodString;
|
1712
|
-
smtpPort: z.
|
1713
|
-
smtpTlsPort: z.
|
1712
|
+
smtpPort: z.ZodNumber;
|
1713
|
+
smtpTlsPort: z.ZodNumber;
|
1714
1714
|
useTlsForSmtp: z.ZodBoolean;
|
1715
1715
|
imapHost: z.ZodString;
|
1716
|
-
imapPort: z.
|
1717
|
-
imapTlsPort: z.
|
1716
|
+
imapPort: z.ZodNumber;
|
1717
|
+
imapTlsPort: z.ZodNumber;
|
1718
1718
|
useTlsForImap: z.ZodBoolean;
|
1719
1719
|
}, "strip", z.ZodTypeAny, {
|
1720
1720
|
id: string;
|
@@ -1723,12 +1723,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1723
1723
|
updatedAt: Date;
|
1724
1724
|
deletedAt: Date | null;
|
1725
1725
|
smtpHost: string;
|
1726
|
-
smtpPort:
|
1727
|
-
smtpTlsPort:
|
1726
|
+
smtpPort: number;
|
1727
|
+
smtpTlsPort: number;
|
1728
1728
|
useTlsForSmtp: boolean;
|
1729
1729
|
imapHost: string;
|
1730
|
-
imapPort:
|
1731
|
-
imapTlsPort:
|
1730
|
+
imapPort: number;
|
1731
|
+
imapTlsPort: number;
|
1732
1732
|
useTlsForImap: boolean;
|
1733
1733
|
}, {
|
1734
1734
|
id: string;
|
@@ -1737,12 +1737,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1737
1737
|
updatedAt: Date;
|
1738
1738
|
deletedAt: Date | null;
|
1739
1739
|
smtpHost: string;
|
1740
|
-
smtpPort:
|
1741
|
-
smtpTlsPort:
|
1740
|
+
smtpPort: number;
|
1741
|
+
smtpTlsPort: number;
|
1742
1742
|
useTlsForSmtp: boolean;
|
1743
1743
|
imapHost: string;
|
1744
|
-
imapPort:
|
1745
|
-
imapTlsPort:
|
1744
|
+
imapPort: number;
|
1745
|
+
imapTlsPort: number;
|
1746
1746
|
useTlsForImap: boolean;
|
1747
1747
|
}>;
|
1748
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">]>;
|
@@ -1763,12 +1763,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1763
1763
|
updatedAt: Date;
|
1764
1764
|
deletedAt: Date | null;
|
1765
1765
|
smtpHost: string;
|
1766
|
-
smtpPort:
|
1767
|
-
smtpTlsPort:
|
1766
|
+
smtpPort: number;
|
1767
|
+
smtpTlsPort: number;
|
1768
1768
|
useTlsForSmtp: boolean;
|
1769
1769
|
imapHost: string;
|
1770
|
-
imapPort:
|
1771
|
-
imapTlsPort:
|
1770
|
+
imapPort: number;
|
1771
|
+
imapTlsPort: number;
|
1772
1772
|
useTlsForImap: boolean;
|
1773
1773
|
};
|
1774
1774
|
}, {
|
@@ -1788,12 +1788,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1788
1788
|
updatedAt: Date;
|
1789
1789
|
deletedAt: Date | null;
|
1790
1790
|
smtpHost: string;
|
1791
|
-
smtpPort:
|
1792
|
-
smtpTlsPort:
|
1791
|
+
smtpPort: number;
|
1792
|
+
smtpTlsPort: number;
|
1793
1793
|
useTlsForSmtp: boolean;
|
1794
1794
|
imapHost: string;
|
1795
|
-
imapPort:
|
1796
|
-
imapTlsPort:
|
1795
|
+
imapPort: number;
|
1796
|
+
imapTlsPort: number;
|
1797
1797
|
useTlsForImap: boolean;
|
1798
1798
|
};
|
1799
1799
|
}>;
|
@@ -2198,12 +2198,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2198
2198
|
updatedAt: Date;
|
2199
2199
|
deletedAt: Date | null;
|
2200
2200
|
smtpHost: string;
|
2201
|
-
smtpPort:
|
2202
|
-
smtpTlsPort:
|
2201
|
+
smtpPort: number;
|
2202
|
+
smtpTlsPort: number;
|
2203
2203
|
useTlsForSmtp: boolean;
|
2204
2204
|
imapHost: string;
|
2205
|
-
imapPort:
|
2206
|
-
imapTlsPort:
|
2205
|
+
imapPort: number;
|
2206
|
+
imapTlsPort: number;
|
2207
2207
|
useTlsForImap: boolean;
|
2208
2208
|
};
|
2209
2209
|
};
|
@@ -2608,12 +2608,12 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2608
2608
|
updatedAt: Date;
|
2609
2609
|
deletedAt: Date | null;
|
2610
2610
|
smtpHost: string;
|
2611
|
-
smtpPort:
|
2612
|
-
smtpTlsPort:
|
2611
|
+
smtpPort: number;
|
2612
|
+
smtpTlsPort: number;
|
2613
2613
|
useTlsForSmtp: boolean;
|
2614
2614
|
imapHost: string;
|
2615
|
-
imapPort:
|
2616
|
-
imapTlsPort:
|
2615
|
+
imapPort: number;
|
2616
|
+
imapTlsPort: number;
|
2617
2617
|
useTlsForImap: boolean;
|
2618
2618
|
};
|
2619
2619
|
};
|
@@ -0,0 +1,33 @@
|
|
1
|
+
import z from 'zod';
|
2
|
+
export declare const CreateMailServerSchema: z.ZodObject<{
|
3
|
+
name: z.ZodString;
|
4
|
+
smtpHost: z.ZodString;
|
5
|
+
smtpPort: z.ZodNumber;
|
6
|
+
smtpTlsPort: z.ZodNumber;
|
7
|
+
useTlsForSmtp: z.ZodBoolean;
|
8
|
+
imapHost: z.ZodString;
|
9
|
+
imapPort: z.ZodNumber;
|
10
|
+
imapTlsPort: z.ZodNumber;
|
11
|
+
useTlsForImap: z.ZodBoolean;
|
12
|
+
}, "strip", z.ZodTypeAny, {
|
13
|
+
name: string;
|
14
|
+
smtpHost: string;
|
15
|
+
smtpPort: number;
|
16
|
+
smtpTlsPort: number;
|
17
|
+
useTlsForSmtp: boolean;
|
18
|
+
imapHost: string;
|
19
|
+
imapPort: number;
|
20
|
+
imapTlsPort: number;
|
21
|
+
useTlsForImap: boolean;
|
22
|
+
}, {
|
23
|
+
name: string;
|
24
|
+
smtpHost: string;
|
25
|
+
smtpPort: number;
|
26
|
+
smtpTlsPort: number;
|
27
|
+
useTlsForSmtp: boolean;
|
28
|
+
imapHost: string;
|
29
|
+
imapPort: number;
|
30
|
+
imapTlsPort: number;
|
31
|
+
useTlsForImap: boolean;
|
32
|
+
}>;
|
33
|
+
//# sourceMappingURL=servers-validation.schema.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"servers-validation.schema.d.ts","sourceRoot":"","sources":["../../../../src/mail/schemas/servers-validation.schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUjC,CAAC"}
|
@@ -205,6 +205,7 @@ export declare const messengerContract: {
|
|
205
205
|
phone: string | null;
|
206
206
|
} | undefined;
|
207
207
|
}>;
|
208
|
+
status: z.ZodNumber;
|
208
209
|
}, "strip", z.ZodTypeAny, {
|
209
210
|
id: string;
|
210
211
|
channel: {
|
@@ -232,6 +233,7 @@ export declare const messengerContract: {
|
|
232
233
|
} | undefined;
|
233
234
|
};
|
234
235
|
direction: "incoming" | "outgoing" | "system";
|
236
|
+
status: number;
|
235
237
|
createdAt: string;
|
236
238
|
updatedAt: string;
|
237
239
|
actor: {
|
@@ -289,6 +291,7 @@ export declare const messengerContract: {
|
|
289
291
|
} | undefined;
|
290
292
|
};
|
291
293
|
direction: "incoming" | "outgoing" | "system";
|
294
|
+
status: number;
|
292
295
|
createdAt: string;
|
293
296
|
updatedAt: string;
|
294
297
|
actor: {
|
@@ -480,6 +483,7 @@ export declare const messengerContract: {
|
|
480
483
|
} | undefined;
|
481
484
|
};
|
482
485
|
direction: "incoming" | "outgoing" | "system";
|
486
|
+
status: number;
|
483
487
|
createdAt: string;
|
484
488
|
updatedAt: string;
|
485
489
|
actor: {
|
@@ -567,6 +571,7 @@ export declare const messengerContract: {
|
|
567
571
|
} | undefined;
|
568
572
|
};
|
569
573
|
direction: "incoming" | "outgoing" | "system";
|
574
|
+
status: number;
|
570
575
|
createdAt: string;
|
571
576
|
updatedAt: string;
|
572
577
|
actor: {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messenger/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,OAAO,EACL,aAAa,EAKd,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,2BAA2B,EAC3B,sBAAsB,EACtB,wBAAwB,EACzB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC9E,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAChF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACpE,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,wBAAwB,CAChC,CAAC;AAEF,eAAO,MAAM,iBAAiB
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messenger/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,OAAO,EACL,aAAa,EAKd,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,2BAA2B,EAC3B,sBAAsB,EACtB,wBAAwB,EACzB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC9E,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAChF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACpE,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,wBAAwB,CAChC,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiF5B,CAAC"}
|
@@ -41,6 +41,8 @@ export declare const telephonyCdrContract: {
|
|
41
41
|
trunk: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
42
42
|
userId: z.ZodOptional<z.ZodString>;
|
43
43
|
queueStatus: z.ZodOptional<z.ZodString>;
|
44
|
+
agentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
45
|
+
agentCallsOnly: z.ZodOptional<z.ZodBoolean>;
|
44
46
|
}, "strip", z.ZodTypeAny, {
|
45
47
|
page: number;
|
46
48
|
pageSize: number;
|
@@ -52,6 +54,8 @@ export declare const telephonyCdrContract: {
|
|
52
54
|
trunk?: string[] | undefined;
|
53
55
|
userId?: string | undefined;
|
54
56
|
queueStatus?: string | undefined;
|
57
|
+
agentIds?: string[] | undefined;
|
58
|
+
agentCallsOnly?: boolean | undefined;
|
55
59
|
}, {
|
56
60
|
page?: number | undefined;
|
57
61
|
pageSize?: number | undefined;
|
@@ -63,6 +67,8 @@ export declare const telephonyCdrContract: {
|
|
63
67
|
trunk?: string[] | undefined;
|
64
68
|
userId?: string | undefined;
|
65
69
|
queueStatus?: string | undefined;
|
70
|
+
agentIds?: string[] | undefined;
|
71
|
+
agentCallsOnly?: boolean | undefined;
|
66
72
|
}>;
|
67
73
|
responses: {
|
68
74
|
200: z.ZodObject<{
|
@@ -2768,6 +2774,8 @@ export declare const telephonyCdrContract: {
|
|
2768
2774
|
trunk: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2769
2775
|
userId: z.ZodOptional<z.ZodString>;
|
2770
2776
|
queueStatus: z.ZodOptional<z.ZodString>;
|
2777
|
+
agentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2778
|
+
agentCallsOnly: z.ZodOptional<z.ZodBoolean>;
|
2771
2779
|
}, "strip", z.ZodTypeAny, {
|
2772
2780
|
page: number;
|
2773
2781
|
pageSize: number;
|
@@ -2779,6 +2787,8 @@ export declare const telephonyCdrContract: {
|
|
2779
2787
|
trunk?: string[] | undefined;
|
2780
2788
|
userId?: string | undefined;
|
2781
2789
|
queueStatus?: string | undefined;
|
2790
|
+
agentIds?: string[] | undefined;
|
2791
|
+
agentCallsOnly?: boolean | undefined;
|
2782
2792
|
}, {
|
2783
2793
|
page?: number | undefined;
|
2784
2794
|
pageSize?: number | undefined;
|
@@ -2790,6 +2800,8 @@ export declare const telephonyCdrContract: {
|
|
2790
2800
|
trunk?: string[] | undefined;
|
2791
2801
|
userId?: string | undefined;
|
2792
2802
|
queueStatus?: string | undefined;
|
2803
|
+
agentIds?: string[] | undefined;
|
2804
|
+
agentCallsOnly?: boolean | undefined;
|
2793
2805
|
}>;
|
2794
2806
|
responses: {
|
2795
2807
|
200: z.ZodObject<{
|
@@ -8230,8 +8242,10 @@ export declare const telephonyCdrContract: {
|
|
8230
8242
|
callFrom: z.ZodOptional<z.ZodString>;
|
8231
8243
|
callTo: z.ZodOptional<z.ZodString>;
|
8232
8244
|
selectedDate: z.ZodOptional<z.ZodString>;
|
8245
|
+
agentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
8233
8246
|
trunk: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
8234
8247
|
queueStatus: z.ZodOptional<z.ZodString>;
|
8248
|
+
agentCallsOnly: z.ZodOptional<z.ZodBoolean>;
|
8235
8249
|
page: z.ZodOptional<z.ZodNumber>;
|
8236
8250
|
pageSize: z.ZodOptional<z.ZodNumber>;
|
8237
8251
|
}, "strip", z.ZodTypeAny, {
|
@@ -8241,8 +8255,10 @@ export declare const telephonyCdrContract: {
|
|
8241
8255
|
callFrom?: string | undefined;
|
8242
8256
|
callTo?: string | undefined;
|
8243
8257
|
selectedDate?: string | undefined;
|
8258
|
+
agentIds?: string[] | undefined;
|
8244
8259
|
trunk?: string[] | undefined;
|
8245
8260
|
queueStatus?: string | undefined;
|
8261
|
+
agentCallsOnly?: boolean | undefined;
|
8246
8262
|
page?: number | undefined;
|
8247
8263
|
pageSize?: number | undefined;
|
8248
8264
|
}, {
|
@@ -8252,8 +8268,10 @@ export declare const telephonyCdrContract: {
|
|
8252
8268
|
callFrom?: string | undefined;
|
8253
8269
|
callTo?: string | undefined;
|
8254
8270
|
selectedDate?: string | undefined;
|
8271
|
+
agentIds?: string[] | undefined;
|
8255
8272
|
trunk?: string[] | undefined;
|
8256
8273
|
queueStatus?: string | undefined;
|
8274
|
+
agentCallsOnly?: boolean | undefined;
|
8257
8275
|
page?: number | undefined;
|
8258
8276
|
pageSize?: number | undefined;
|
8259
8277
|
}>;
|