@kl1/contracts 1.0.27 → 1.0.28
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 +151 -118
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +151 -118
- package/dist/index.mjs.map +1 -1
- package/dist/src/activity-log/index.d.ts +113 -113
- package/dist/src/activity-log/schema.d.ts +122 -122
- package/dist/src/auth/index.d.ts +89 -89
- package/dist/src/channel/index.d.ts +319 -319
- package/dist/src/channel/schema.d.ts +89 -92
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +89 -89
- package/dist/src/chat/index.d.ts +8699 -8699
- package/dist/src/chat/schema.d.ts +1486 -1486
- package/dist/src/chat/validation.d.ts +2244 -2244
- package/dist/src/comment/index.d.ts +1005 -1005
- package/dist/src/comment/schema.d.ts +283 -283
- package/dist/src/company/index.d.ts +28 -28
- package/dist/src/company/schema.d.ts +8 -8
- package/dist/src/company/validation.d.ts +15 -15
- package/dist/src/contact/index.d.ts +960 -960
- package/dist/src/contact/schema.d.ts +161 -161
- package/dist/src/contact/validation.d.ts +690 -690
- package/dist/src/contract.d.ts +18366 -18196
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/custom-field/schema.d.ts +3 -3
- package/dist/src/cx-log/index.d.ts +1023 -1023
- package/dist/src/cx-log/schema.d.ts +837 -837
- package/dist/src/dashboard/index.d.ts +6 -6
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +2 -2
- package/dist/src/dashboard/schema.d.ts.map +1 -1
- package/dist/src/extension/index.d.ts +115 -115
- package/dist/src/extension/schema.d.ts +9 -9
- package/dist/src/mail/account-contract.d.ts +168 -168
- package/dist/src/mail/mail-contract.d.ts +3336 -3336
- package/dist/src/mail/message-contract.d.ts +152 -152
- package/dist/src/mail/room-contract.d.ts +3015 -3015
- package/dist/src/mail/schemas/account-validation.schema.d.ts +168 -168
- package/dist/src/mail/schemas/account.schema.d.ts +33 -33
- package/dist/src/mail/schemas/message.schema.d.ts +108 -108
- package/dist/src/mail/schemas/room-validation.schema.d.ts +1000 -1000
- package/dist/src/mail/schemas/room.schema.d.ts +791 -791
- package/dist/src/messenger/index.d.ts +1078 -1078
- package/dist/src/permission/index.d.ts +15 -15
- package/dist/src/permission/schema.d.ts +9 -9
- package/dist/src/role/index.d.ts +96 -96
- package/dist/src/role/schema.d.ts +24 -24
- package/dist/src/telephony-agent-presence-status/index.d.ts +293 -293
- package/dist/src/telephony-agent-presence-status/schema.d.ts +89 -89
- package/dist/src/ticket/index.d.ts +288 -187
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +77 -77
- package/dist/src/ticket/validation.d.ts +66 -0
- package/dist/src/ticket/validation.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +293 -293
- package/dist/src/user/schema.d.ts +63 -63
- package/dist/src/user-presence-status-log/index.d.ts +52 -52
- package/dist/src/user-presence-status-log/schema.d.ts +89 -89
- package/dist/src/widget/index.d.ts +72 -1
- package/dist/src/widget/index.d.ts.map +1 -1
- package/dist/src/widget/validation.d.ts +10 -0
- package/dist/src/widget/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -1,9 +1,9 @@
|
|
1
1
|
import z from 'zod';
|
2
2
|
export declare const MailServerSchema: z.ZodObject<{
|
3
3
|
id: z.ZodString;
|
4
|
-
createdAt: z.
|
5
|
-
updatedAt: z.
|
6
|
-
deletedAt: z.ZodNullable<z.
|
4
|
+
createdAt: z.ZodString;
|
5
|
+
updatedAt: z.ZodString;
|
6
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
7
7
|
name: z.ZodString;
|
8
8
|
smtpHost: z.ZodString;
|
9
9
|
smtpPort: z.ZodString;
|
@@ -16,9 +16,9 @@ export declare const MailServerSchema: z.ZodObject<{
|
|
16
16
|
}, "strip", z.ZodTypeAny, {
|
17
17
|
id: string;
|
18
18
|
name: string;
|
19
|
-
createdAt:
|
20
|
-
updatedAt:
|
21
|
-
deletedAt:
|
19
|
+
createdAt: string;
|
20
|
+
updatedAt: string;
|
21
|
+
deletedAt: string | null;
|
22
22
|
smtpHost: string;
|
23
23
|
smtpPort: string;
|
24
24
|
smtpTlsPort: string;
|
@@ -30,9 +30,9 @@ export declare const MailServerSchema: z.ZodObject<{
|
|
30
30
|
}, {
|
31
31
|
id: string;
|
32
32
|
name: string;
|
33
|
-
createdAt:
|
34
|
-
updatedAt:
|
35
|
-
deletedAt:
|
33
|
+
createdAt: string;
|
34
|
+
updatedAt: string;
|
35
|
+
deletedAt: string | null;
|
36
36
|
smtpHost: string;
|
37
37
|
smtpPort: string;
|
38
38
|
smtpTlsPort: string;
|
@@ -44,18 +44,18 @@ export declare const MailServerSchema: z.ZodObject<{
|
|
44
44
|
}>;
|
45
45
|
export declare const MailAccountSchema: z.ZodObject<{
|
46
46
|
id: z.ZodString;
|
47
|
-
createdAt: z.
|
48
|
-
updatedAt: z.
|
49
|
-
deletedAt: z.ZodNullable<z.
|
47
|
+
createdAt: z.ZodString;
|
48
|
+
updatedAt: z.ZodString;
|
49
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
50
50
|
name: z.ZodString;
|
51
51
|
address: z.ZodString;
|
52
52
|
accountId: z.ZodString;
|
53
53
|
mailServerId: z.ZodString;
|
54
54
|
mailServer: z.ZodObject<{
|
55
55
|
id: z.ZodString;
|
56
|
-
createdAt: z.
|
57
|
-
updatedAt: z.
|
58
|
-
deletedAt: z.ZodNullable<z.
|
56
|
+
createdAt: z.ZodString;
|
57
|
+
updatedAt: z.ZodString;
|
58
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
59
59
|
name: z.ZodString;
|
60
60
|
smtpHost: z.ZodString;
|
61
61
|
smtpPort: z.ZodString;
|
@@ -68,9 +68,9 @@ export declare const MailAccountSchema: z.ZodObject<{
|
|
68
68
|
}, "strip", z.ZodTypeAny, {
|
69
69
|
id: string;
|
70
70
|
name: string;
|
71
|
-
createdAt:
|
72
|
-
updatedAt:
|
73
|
-
deletedAt:
|
71
|
+
createdAt: string;
|
72
|
+
updatedAt: string;
|
73
|
+
deletedAt: string | null;
|
74
74
|
smtpHost: string;
|
75
75
|
smtpPort: string;
|
76
76
|
smtpTlsPort: string;
|
@@ -82,9 +82,9 @@ export declare const MailAccountSchema: z.ZodObject<{
|
|
82
82
|
}, {
|
83
83
|
id: string;
|
84
84
|
name: string;
|
85
|
-
createdAt:
|
86
|
-
updatedAt:
|
87
|
-
deletedAt:
|
85
|
+
createdAt: string;
|
86
|
+
updatedAt: string;
|
87
|
+
deletedAt: string | null;
|
88
88
|
smtpHost: string;
|
89
89
|
smtpPort: string;
|
90
90
|
smtpTlsPort: string;
|
@@ -100,17 +100,17 @@ export declare const MailAccountSchema: z.ZodObject<{
|
|
100
100
|
state: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset";
|
101
101
|
address: string;
|
102
102
|
name: string;
|
103
|
-
createdAt:
|
104
|
-
updatedAt:
|
105
|
-
deletedAt:
|
103
|
+
createdAt: string;
|
104
|
+
updatedAt: string;
|
105
|
+
deletedAt: string | null;
|
106
106
|
accountId: string;
|
107
107
|
mailServerId: string;
|
108
108
|
mailServer: {
|
109
109
|
id: string;
|
110
110
|
name: string;
|
111
|
-
createdAt:
|
112
|
-
updatedAt:
|
113
|
-
deletedAt:
|
111
|
+
createdAt: string;
|
112
|
+
updatedAt: string;
|
113
|
+
deletedAt: string | null;
|
114
114
|
smtpHost: string;
|
115
115
|
smtpPort: string;
|
116
116
|
smtpTlsPort: string;
|
@@ -125,17 +125,17 @@ export declare const MailAccountSchema: z.ZodObject<{
|
|
125
125
|
state: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset";
|
126
126
|
address: string;
|
127
127
|
name: string;
|
128
|
-
createdAt:
|
129
|
-
updatedAt:
|
130
|
-
deletedAt:
|
128
|
+
createdAt: string;
|
129
|
+
updatedAt: string;
|
130
|
+
deletedAt: string | null;
|
131
131
|
accountId: string;
|
132
132
|
mailServerId: string;
|
133
133
|
mailServer: {
|
134
134
|
id: string;
|
135
135
|
name: string;
|
136
|
-
createdAt:
|
137
|
-
updatedAt:
|
138
|
-
deletedAt:
|
136
|
+
createdAt: string;
|
137
|
+
updatedAt: string;
|
138
|
+
deletedAt: string | null;
|
139
139
|
smtpHost: string;
|
140
140
|
smtpPort: string;
|
141
141
|
smtpTlsPort: string;
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import z from 'zod';
|
2
2
|
export declare const MessageSchema: z.ZodObject<{
|
3
3
|
id: z.ZodString;
|
4
|
-
createdAt: z.
|
5
|
-
updatedAt: z.
|
6
|
-
deletedAt: z.ZodNullable<z.
|
4
|
+
createdAt: z.ZodString;
|
5
|
+
updatedAt: z.ZodString;
|
6
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
7
7
|
roomId: z.ZodString;
|
8
8
|
subject: z.ZodString;
|
9
9
|
textPlain: z.ZodString;
|
@@ -13,103 +13,103 @@ export declare const MessageSchema: z.ZodObject<{
|
|
13
13
|
emailEngineMessageId: z.ZodString;
|
14
14
|
emailEngineReplyTo: z.ZodNullable<z.ZodString>;
|
15
15
|
direction: z.ZodString;
|
16
|
-
date: z.
|
16
|
+
date: z.ZodString;
|
17
17
|
action: z.ZodString;
|
18
18
|
unseen: z.ZodBoolean;
|
19
19
|
seemsLikeNew: z.ZodBoolean;
|
20
20
|
from: z.ZodArray<z.ZodObject<{
|
21
21
|
id: z.ZodString;
|
22
|
-
createdAt: z.
|
23
|
-
updatedAt: z.
|
24
|
-
deletedAt: z.ZodNullable<z.
|
22
|
+
createdAt: z.ZodString;
|
23
|
+
updatedAt: z.ZodString;
|
24
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
25
25
|
name: z.ZodString;
|
26
26
|
address: z.ZodString;
|
27
27
|
}, "strip", z.ZodTypeAny, {
|
28
28
|
id: string;
|
29
29
|
address: string;
|
30
30
|
name: string;
|
31
|
-
createdAt:
|
32
|
-
updatedAt:
|
33
|
-
deletedAt:
|
31
|
+
createdAt: string;
|
32
|
+
updatedAt: string;
|
33
|
+
deletedAt: string | null;
|
34
34
|
}, {
|
35
35
|
id: string;
|
36
36
|
address: string;
|
37
37
|
name: string;
|
38
|
-
createdAt:
|
39
|
-
updatedAt:
|
40
|
-
deletedAt:
|
38
|
+
createdAt: string;
|
39
|
+
updatedAt: string;
|
40
|
+
deletedAt: string | null;
|
41
41
|
}>, "many">;
|
42
42
|
to: z.ZodArray<z.ZodObject<{
|
43
43
|
id: z.ZodString;
|
44
|
-
createdAt: z.
|
45
|
-
updatedAt: z.
|
46
|
-
deletedAt: z.ZodNullable<z.
|
44
|
+
createdAt: z.ZodString;
|
45
|
+
updatedAt: z.ZodString;
|
46
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
47
47
|
name: z.ZodString;
|
48
48
|
address: z.ZodString;
|
49
49
|
}, "strip", z.ZodTypeAny, {
|
50
50
|
id: string;
|
51
51
|
address: string;
|
52
52
|
name: string;
|
53
|
-
createdAt:
|
54
|
-
updatedAt:
|
55
|
-
deletedAt:
|
53
|
+
createdAt: string;
|
54
|
+
updatedAt: string;
|
55
|
+
deletedAt: string | null;
|
56
56
|
}, {
|
57
57
|
id: string;
|
58
58
|
address: string;
|
59
59
|
name: string;
|
60
|
-
createdAt:
|
61
|
-
updatedAt:
|
62
|
-
deletedAt:
|
60
|
+
createdAt: string;
|
61
|
+
updatedAt: string;
|
62
|
+
deletedAt: string | null;
|
63
63
|
}>, "many">;
|
64
64
|
cc: z.ZodArray<z.ZodObject<{
|
65
65
|
id: z.ZodString;
|
66
|
-
createdAt: z.
|
67
|
-
updatedAt: z.
|
68
|
-
deletedAt: z.ZodNullable<z.
|
66
|
+
createdAt: z.ZodString;
|
67
|
+
updatedAt: z.ZodString;
|
68
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
69
69
|
name: z.ZodString;
|
70
70
|
address: z.ZodString;
|
71
71
|
}, "strip", z.ZodTypeAny, {
|
72
72
|
id: string;
|
73
73
|
address: string;
|
74
74
|
name: string;
|
75
|
-
createdAt:
|
76
|
-
updatedAt:
|
77
|
-
deletedAt:
|
75
|
+
createdAt: string;
|
76
|
+
updatedAt: string;
|
77
|
+
deletedAt: string | null;
|
78
78
|
}, {
|
79
79
|
id: string;
|
80
80
|
address: string;
|
81
81
|
name: string;
|
82
|
-
createdAt:
|
83
|
-
updatedAt:
|
84
|
-
deletedAt:
|
82
|
+
createdAt: string;
|
83
|
+
updatedAt: string;
|
84
|
+
deletedAt: string | null;
|
85
85
|
}>, "many">;
|
86
86
|
bcc: z.ZodArray<z.ZodObject<{
|
87
87
|
id: z.ZodString;
|
88
|
-
createdAt: z.
|
89
|
-
updatedAt: z.
|
90
|
-
deletedAt: z.ZodNullable<z.
|
88
|
+
createdAt: z.ZodString;
|
89
|
+
updatedAt: z.ZodString;
|
90
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
91
91
|
name: z.ZodString;
|
92
92
|
address: z.ZodString;
|
93
93
|
}, "strip", z.ZodTypeAny, {
|
94
94
|
id: string;
|
95
95
|
address: string;
|
96
96
|
name: string;
|
97
|
-
createdAt:
|
98
|
-
updatedAt:
|
99
|
-
deletedAt:
|
97
|
+
createdAt: string;
|
98
|
+
updatedAt: string;
|
99
|
+
deletedAt: string | null;
|
100
100
|
}, {
|
101
101
|
id: string;
|
102
102
|
address: string;
|
103
103
|
name: string;
|
104
|
-
createdAt:
|
105
|
-
updatedAt:
|
106
|
-
deletedAt:
|
104
|
+
createdAt: string;
|
105
|
+
updatedAt: string;
|
106
|
+
deletedAt: string | null;
|
107
107
|
}>, "many">;
|
108
108
|
attachments: z.ZodArray<z.ZodObject<{
|
109
109
|
id: z.ZodString;
|
110
|
-
createdAt: z.
|
111
|
-
updatedAt: z.
|
112
|
-
deletedAt: z.ZodNullable<z.
|
110
|
+
createdAt: z.ZodString;
|
111
|
+
updatedAt: z.ZodString;
|
112
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
113
113
|
roomId: z.ZodString;
|
114
114
|
messageId: z.ZodString;
|
115
115
|
fileName: z.ZodString;
|
@@ -118,9 +118,9 @@ export declare const MessageSchema: z.ZodObject<{
|
|
118
118
|
uploadId: z.ZodString;
|
119
119
|
upload: z.ZodObject<{
|
120
120
|
id: z.ZodString;
|
121
|
-
createdAt: z.
|
122
|
-
updatedAt: z.
|
123
|
-
deletedAt: z.ZodNullable<z.
|
121
|
+
createdAt: z.ZodString;
|
122
|
+
updatedAt: z.ZodString;
|
123
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
124
124
|
bucket_name: z.ZodString;
|
125
125
|
file_name: z.ZodString;
|
126
126
|
file_key: z.ZodString;
|
@@ -129,9 +129,9 @@ export declare const MessageSchema: z.ZodObject<{
|
|
129
129
|
extension_name: z.ZodString;
|
130
130
|
}, "strip", z.ZodTypeAny, {
|
131
131
|
id: string;
|
132
|
-
createdAt:
|
133
|
-
updatedAt:
|
134
|
-
deletedAt:
|
132
|
+
createdAt: string;
|
133
|
+
updatedAt: string;
|
134
|
+
deletedAt: string | null;
|
135
135
|
bucket_name: string;
|
136
136
|
file_name: string;
|
137
137
|
file_key: string;
|
@@ -140,9 +140,9 @@ export declare const MessageSchema: z.ZodObject<{
|
|
140
140
|
extension_name: string;
|
141
141
|
}, {
|
142
142
|
id: string;
|
143
|
-
createdAt:
|
144
|
-
updatedAt:
|
145
|
-
deletedAt:
|
143
|
+
createdAt: string;
|
144
|
+
updatedAt: string;
|
145
|
+
deletedAt: string | null;
|
146
146
|
bucket_name: string;
|
147
147
|
file_name: string;
|
148
148
|
file_key: string;
|
@@ -152,16 +152,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
152
152
|
}>;
|
153
153
|
}, "strip", z.ZodTypeAny, {
|
154
154
|
id: string;
|
155
|
-
createdAt:
|
156
|
-
updatedAt:
|
157
|
-
deletedAt:
|
155
|
+
createdAt: string;
|
156
|
+
updatedAt: string;
|
157
|
+
deletedAt: string | null;
|
158
158
|
fileName: string;
|
159
159
|
fileType: string;
|
160
160
|
upload: {
|
161
161
|
id: string;
|
162
|
-
createdAt:
|
163
|
-
updatedAt:
|
164
|
-
deletedAt:
|
162
|
+
createdAt: string;
|
163
|
+
updatedAt: string;
|
164
|
+
deletedAt: string | null;
|
165
165
|
bucket_name: string;
|
166
166
|
file_name: string;
|
167
167
|
file_key: string;
|
@@ -175,16 +175,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
175
175
|
emailEngineAttachmentId: string;
|
176
176
|
}, {
|
177
177
|
id: string;
|
178
|
-
createdAt:
|
179
|
-
updatedAt:
|
180
|
-
deletedAt:
|
178
|
+
createdAt: string;
|
179
|
+
updatedAt: string;
|
180
|
+
deletedAt: string | null;
|
181
181
|
fileName: string;
|
182
182
|
fileType: string;
|
183
183
|
upload: {
|
184
184
|
id: string;
|
185
|
-
createdAt:
|
186
|
-
updatedAt:
|
187
|
-
deletedAt:
|
185
|
+
createdAt: string;
|
186
|
+
updatedAt: string;
|
187
|
+
deletedAt: string | null;
|
188
188
|
bucket_name: string;
|
189
189
|
file_name: string;
|
190
190
|
file_key: string;
|
@@ -201,23 +201,23 @@ export declare const MessageSchema: z.ZodObject<{
|
|
201
201
|
id: string;
|
202
202
|
direction: string;
|
203
203
|
action: string;
|
204
|
-
date:
|
205
|
-
createdAt:
|
206
|
-
updatedAt:
|
207
|
-
deletedAt:
|
204
|
+
date: string;
|
205
|
+
createdAt: string;
|
206
|
+
updatedAt: string;
|
207
|
+
deletedAt: string | null;
|
208
208
|
roomId: string;
|
209
209
|
attachments: {
|
210
210
|
id: string;
|
211
|
-
createdAt:
|
212
|
-
updatedAt:
|
213
|
-
deletedAt:
|
211
|
+
createdAt: string;
|
212
|
+
updatedAt: string;
|
213
|
+
deletedAt: string | null;
|
214
214
|
fileName: string;
|
215
215
|
fileType: string;
|
216
216
|
upload: {
|
217
217
|
id: string;
|
218
|
-
createdAt:
|
219
|
-
updatedAt:
|
220
|
-
deletedAt:
|
218
|
+
createdAt: string;
|
219
|
+
updatedAt: string;
|
220
|
+
deletedAt: string | null;
|
221
221
|
bucket_name: string;
|
222
222
|
file_name: string;
|
223
223
|
file_key: string;
|
@@ -243,55 +243,55 @@ export declare const MessageSchema: z.ZodObject<{
|
|
243
243
|
id: string;
|
244
244
|
address: string;
|
245
245
|
name: string;
|
246
|
-
createdAt:
|
247
|
-
updatedAt:
|
248
|
-
deletedAt:
|
246
|
+
createdAt: string;
|
247
|
+
updatedAt: string;
|
248
|
+
deletedAt: string | null;
|
249
249
|
}[];
|
250
250
|
to: {
|
251
251
|
id: string;
|
252
252
|
address: string;
|
253
253
|
name: string;
|
254
|
-
createdAt:
|
255
|
-
updatedAt:
|
256
|
-
deletedAt:
|
254
|
+
createdAt: string;
|
255
|
+
updatedAt: string;
|
256
|
+
deletedAt: string | null;
|
257
257
|
}[];
|
258
258
|
cc: {
|
259
259
|
id: string;
|
260
260
|
address: string;
|
261
261
|
name: string;
|
262
|
-
createdAt:
|
263
|
-
updatedAt:
|
264
|
-
deletedAt:
|
262
|
+
createdAt: string;
|
263
|
+
updatedAt: string;
|
264
|
+
deletedAt: string | null;
|
265
265
|
}[];
|
266
266
|
bcc: {
|
267
267
|
id: string;
|
268
268
|
address: string;
|
269
269
|
name: string;
|
270
|
-
createdAt:
|
271
|
-
updatedAt:
|
272
|
-
deletedAt:
|
270
|
+
createdAt: string;
|
271
|
+
updatedAt: string;
|
272
|
+
deletedAt: string | null;
|
273
273
|
}[];
|
274
274
|
}, {
|
275
275
|
id: string;
|
276
276
|
direction: string;
|
277
277
|
action: string;
|
278
|
-
date:
|
279
|
-
createdAt:
|
280
|
-
updatedAt:
|
281
|
-
deletedAt:
|
278
|
+
date: string;
|
279
|
+
createdAt: string;
|
280
|
+
updatedAt: string;
|
281
|
+
deletedAt: string | null;
|
282
282
|
roomId: string;
|
283
283
|
attachments: {
|
284
284
|
id: string;
|
285
|
-
createdAt:
|
286
|
-
updatedAt:
|
287
|
-
deletedAt:
|
285
|
+
createdAt: string;
|
286
|
+
updatedAt: string;
|
287
|
+
deletedAt: string | null;
|
288
288
|
fileName: string;
|
289
289
|
fileType: string;
|
290
290
|
upload: {
|
291
291
|
id: string;
|
292
|
-
createdAt:
|
293
|
-
updatedAt:
|
294
|
-
deletedAt:
|
292
|
+
createdAt: string;
|
293
|
+
updatedAt: string;
|
294
|
+
deletedAt: string | null;
|
295
295
|
bucket_name: string;
|
296
296
|
file_name: string;
|
297
297
|
file_key: string;
|
@@ -317,33 +317,33 @@ export declare const MessageSchema: z.ZodObject<{
|
|
317
317
|
id: string;
|
318
318
|
address: string;
|
319
319
|
name: string;
|
320
|
-
createdAt:
|
321
|
-
updatedAt:
|
322
|
-
deletedAt:
|
320
|
+
createdAt: string;
|
321
|
+
updatedAt: string;
|
322
|
+
deletedAt: string | null;
|
323
323
|
}[];
|
324
324
|
to: {
|
325
325
|
id: string;
|
326
326
|
address: string;
|
327
327
|
name: string;
|
328
|
-
createdAt:
|
329
|
-
updatedAt:
|
330
|
-
deletedAt:
|
328
|
+
createdAt: string;
|
329
|
+
updatedAt: string;
|
330
|
+
deletedAt: string | null;
|
331
331
|
}[];
|
332
332
|
cc: {
|
333
333
|
id: string;
|
334
334
|
address: string;
|
335
335
|
name: string;
|
336
|
-
createdAt:
|
337
|
-
updatedAt:
|
338
|
-
deletedAt:
|
336
|
+
createdAt: string;
|
337
|
+
updatedAt: string;
|
338
|
+
deletedAt: string | null;
|
339
339
|
}[];
|
340
340
|
bcc: {
|
341
341
|
id: string;
|
342
342
|
address: string;
|
343
343
|
name: string;
|
344
|
-
createdAt:
|
345
|
-
updatedAt:
|
346
|
-
deletedAt:
|
344
|
+
createdAt: string;
|
345
|
+
updatedAt: string;
|
346
|
+
deletedAt: string | null;
|
347
347
|
}[];
|
348
348
|
}>;
|
349
349
|
//# sourceMappingURL=message.schema.d.ts.map
|