@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,99 +1,99 @@
|
|
1
1
|
import z from 'zod';
|
2
2
|
export declare const CommentSchema: 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
|
activityLogs: z.ZodArray<z.ZodObject<{
|
8
8
|
id: z.ZodString;
|
9
|
-
createdAt: z.
|
10
|
-
updatedAt: z.
|
11
|
-
deletedAt: z.ZodNullable<z.
|
9
|
+
createdAt: z.ZodString;
|
10
|
+
updatedAt: z.ZodString;
|
11
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
12
12
|
actor: z.ZodObject<{
|
13
13
|
id: z.ZodString;
|
14
|
-
createdAt: z.
|
15
|
-
updatedAt: z.
|
16
|
-
deletedAt: z.ZodNullable<z.
|
14
|
+
createdAt: z.ZodString;
|
15
|
+
updatedAt: z.ZodString;
|
16
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
17
17
|
name: z.ZodString;
|
18
18
|
email: z.ZodString;
|
19
|
-
emailVerifiedAt: z.ZodNullable<z.
|
19
|
+
emailVerifiedAt: z.ZodNullable<z.ZodString>;
|
20
20
|
password: z.ZodString;
|
21
21
|
address: z.ZodNullable<z.ZodString>;
|
22
22
|
phone: z.ZodNullable<z.ZodString>;
|
23
23
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
24
24
|
roles: z.ZodArray<z.ZodObject<{
|
25
25
|
id: z.ZodString;
|
26
|
-
createdAt: z.
|
27
|
-
updatedAt: z.
|
28
|
-
deletedAt: z.ZodNullable<z.
|
26
|
+
createdAt: z.ZodString;
|
27
|
+
updatedAt: z.ZodString;
|
28
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
29
29
|
systemName: z.ZodString;
|
30
30
|
displayName: z.ZodString;
|
31
31
|
description: z.ZodNullable<z.ZodString>;
|
32
32
|
permissions: z.ZodArray<z.ZodObject<{
|
33
33
|
id: z.ZodString;
|
34
|
-
createdAt: z.
|
35
|
-
updatedAt: z.
|
36
|
-
deletedAt: z.ZodNullable<z.
|
34
|
+
createdAt: z.ZodString;
|
35
|
+
updatedAt: z.ZodString;
|
36
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
37
37
|
systemName: z.ZodString;
|
38
38
|
displayName: z.ZodString;
|
39
39
|
description: z.ZodNullable<z.ZodString>;
|
40
40
|
}, "strip", z.ZodTypeAny, {
|
41
41
|
id: string;
|
42
42
|
description: string | null;
|
43
|
-
createdAt:
|
44
|
-
updatedAt:
|
45
|
-
deletedAt:
|
43
|
+
createdAt: string;
|
44
|
+
updatedAt: string;
|
45
|
+
deletedAt: string | null;
|
46
46
|
systemName: string;
|
47
47
|
displayName: string;
|
48
48
|
}, {
|
49
49
|
id: string;
|
50
50
|
description: string | null;
|
51
|
-
createdAt:
|
52
|
-
updatedAt:
|
53
|
-
deletedAt:
|
51
|
+
createdAt: string;
|
52
|
+
updatedAt: string;
|
53
|
+
deletedAt: string | null;
|
54
54
|
systemName: string;
|
55
55
|
displayName: string;
|
56
56
|
}>, "many">;
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
58
58
|
id: string;
|
59
59
|
description: string | null;
|
60
|
-
createdAt:
|
61
|
-
updatedAt:
|
62
|
-
deletedAt:
|
60
|
+
createdAt: string;
|
61
|
+
updatedAt: string;
|
62
|
+
deletedAt: string | null;
|
63
63
|
systemName: string;
|
64
64
|
displayName: string;
|
65
65
|
permissions: {
|
66
66
|
id: string;
|
67
67
|
description: string | null;
|
68
|
-
createdAt:
|
69
|
-
updatedAt:
|
70
|
-
deletedAt:
|
68
|
+
createdAt: string;
|
69
|
+
updatedAt: string;
|
70
|
+
deletedAt: string | null;
|
71
71
|
systemName: string;
|
72
72
|
displayName: string;
|
73
73
|
}[];
|
74
74
|
}, {
|
75
75
|
id: string;
|
76
76
|
description: string | null;
|
77
|
-
createdAt:
|
78
|
-
updatedAt:
|
79
|
-
deletedAt:
|
77
|
+
createdAt: string;
|
78
|
+
updatedAt: string;
|
79
|
+
deletedAt: string | null;
|
80
80
|
systemName: string;
|
81
81
|
displayName: string;
|
82
82
|
permissions: {
|
83
83
|
id: string;
|
84
84
|
description: string | null;
|
85
|
-
createdAt:
|
86
|
-
updatedAt:
|
87
|
-
deletedAt:
|
85
|
+
createdAt: string;
|
86
|
+
updatedAt: string;
|
87
|
+
deletedAt: string | null;
|
88
88
|
systemName: string;
|
89
89
|
displayName: string;
|
90
90
|
}[];
|
91
91
|
}>, "many">;
|
92
92
|
extension: z.ZodOptional<z.ZodObject<{
|
93
93
|
id: z.ZodString;
|
94
|
-
createdAt: z.
|
95
|
-
updatedAt: z.
|
96
|
-
deletedAt: z.ZodNullable<z.
|
94
|
+
createdAt: z.ZodString;
|
95
|
+
updatedAt: z.ZodString;
|
96
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
97
97
|
userId: z.ZodNullable<z.ZodString>;
|
98
98
|
sipServerUrl: z.ZodString;
|
99
99
|
sipUserName: z.ZodString;
|
@@ -102,9 +102,9 @@ export declare const CommentSchema: z.ZodObject<{
|
|
102
102
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
104
104
|
id: string;
|
105
|
-
createdAt:
|
106
|
-
updatedAt:
|
107
|
-
deletedAt:
|
105
|
+
createdAt: string;
|
106
|
+
updatedAt: string;
|
107
|
+
deletedAt: string | null;
|
108
108
|
userId: string | null;
|
109
109
|
sipServerUrl: string;
|
110
110
|
sipUserName: string;
|
@@ -113,9 +113,9 @@ export declare const CommentSchema: z.ZodObject<{
|
|
113
113
|
telephonySignature: string | null;
|
114
114
|
}, {
|
115
115
|
id: string;
|
116
|
-
createdAt:
|
117
|
-
updatedAt:
|
118
|
-
deletedAt:
|
116
|
+
createdAt: string;
|
117
|
+
updatedAt: string;
|
118
|
+
deletedAt: string | null;
|
119
119
|
userId: string | null;
|
120
120
|
sipServerUrl: string;
|
121
121
|
sipUserName: string;
|
@@ -128,36 +128,36 @@ export declare const CommentSchema: z.ZodObject<{
|
|
128
128
|
address: string | null;
|
129
129
|
name: string;
|
130
130
|
email: string;
|
131
|
-
createdAt:
|
132
|
-
updatedAt:
|
133
|
-
deletedAt:
|
134
|
-
emailVerifiedAt:
|
131
|
+
createdAt: string;
|
132
|
+
updatedAt: string;
|
133
|
+
deletedAt: string | null;
|
134
|
+
emailVerifiedAt: string | null;
|
135
135
|
password: string;
|
136
136
|
phone: string | null;
|
137
137
|
notificationCount: number | null;
|
138
138
|
roles: {
|
139
139
|
id: string;
|
140
140
|
description: string | null;
|
141
|
-
createdAt:
|
142
|
-
updatedAt:
|
143
|
-
deletedAt:
|
141
|
+
createdAt: string;
|
142
|
+
updatedAt: string;
|
143
|
+
deletedAt: string | null;
|
144
144
|
systemName: string;
|
145
145
|
displayName: string;
|
146
146
|
permissions: {
|
147
147
|
id: string;
|
148
148
|
description: string | null;
|
149
|
-
createdAt:
|
150
|
-
updatedAt:
|
151
|
-
deletedAt:
|
149
|
+
createdAt: string;
|
150
|
+
updatedAt: string;
|
151
|
+
deletedAt: string | null;
|
152
152
|
systemName: string;
|
153
153
|
displayName: string;
|
154
154
|
}[];
|
155
155
|
}[];
|
156
156
|
extension?: {
|
157
157
|
id: string;
|
158
|
-
createdAt:
|
159
|
-
updatedAt:
|
160
|
-
deletedAt:
|
158
|
+
createdAt: string;
|
159
|
+
updatedAt: string;
|
160
|
+
deletedAt: string | null;
|
161
161
|
userId: string | null;
|
162
162
|
sipServerUrl: string;
|
163
163
|
sipUserName: string;
|
@@ -170,36 +170,36 @@ export declare const CommentSchema: z.ZodObject<{
|
|
170
170
|
address: string | null;
|
171
171
|
name: string;
|
172
172
|
email: string;
|
173
|
-
createdAt:
|
174
|
-
updatedAt:
|
175
|
-
deletedAt:
|
176
|
-
emailVerifiedAt:
|
173
|
+
createdAt: string;
|
174
|
+
updatedAt: string;
|
175
|
+
deletedAt: string | null;
|
176
|
+
emailVerifiedAt: string | null;
|
177
177
|
password: string;
|
178
178
|
phone: string | null;
|
179
179
|
notificationCount: number | null;
|
180
180
|
roles: {
|
181
181
|
id: string;
|
182
182
|
description: string | null;
|
183
|
-
createdAt:
|
184
|
-
updatedAt:
|
185
|
-
deletedAt:
|
183
|
+
createdAt: string;
|
184
|
+
updatedAt: string;
|
185
|
+
deletedAt: string | null;
|
186
186
|
systemName: string;
|
187
187
|
displayName: string;
|
188
188
|
permissions: {
|
189
189
|
id: string;
|
190
190
|
description: string | null;
|
191
|
-
createdAt:
|
192
|
-
updatedAt:
|
193
|
-
deletedAt:
|
191
|
+
createdAt: string;
|
192
|
+
updatedAt: string;
|
193
|
+
deletedAt: string | null;
|
194
194
|
systemName: string;
|
195
195
|
displayName: string;
|
196
196
|
}[];
|
197
197
|
}[];
|
198
198
|
extension?: {
|
199
199
|
id: string;
|
200
|
-
createdAt:
|
201
|
-
updatedAt:
|
202
|
-
deletedAt:
|
200
|
+
createdAt: string;
|
201
|
+
updatedAt: string;
|
202
|
+
deletedAt: string | null;
|
203
203
|
userId: string | null;
|
204
204
|
sipServerUrl: string;
|
205
205
|
sipUserName: string;
|
@@ -212,67 +212,67 @@ export declare const CommentSchema: z.ZodObject<{
|
|
212
212
|
description: z.ZodString;
|
213
213
|
entityType: z.ZodObject<{
|
214
214
|
id: z.ZodString;
|
215
|
-
createdAt: z.
|
216
|
-
updatedAt: z.
|
217
|
-
deletedAt: z.ZodNullable<z.
|
215
|
+
createdAt: z.ZodString;
|
216
|
+
updatedAt: z.ZodString;
|
217
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
218
218
|
entity: z.ZodString;
|
219
219
|
description: z.ZodString;
|
220
220
|
}, "strip", z.ZodTypeAny, {
|
221
221
|
id: string;
|
222
222
|
description: string;
|
223
|
-
createdAt:
|
224
|
-
updatedAt:
|
225
|
-
deletedAt:
|
223
|
+
createdAt: string;
|
224
|
+
updatedAt: string;
|
225
|
+
deletedAt: string | null;
|
226
226
|
entity: string;
|
227
227
|
}, {
|
228
228
|
id: string;
|
229
229
|
description: string;
|
230
|
-
createdAt:
|
231
|
-
updatedAt:
|
232
|
-
deletedAt:
|
230
|
+
createdAt: string;
|
231
|
+
updatedAt: string;
|
232
|
+
deletedAt: string | null;
|
233
233
|
entity: string;
|
234
234
|
}>;
|
235
235
|
}, "strip", z.ZodTypeAny, {
|
236
236
|
id: string;
|
237
237
|
description: string;
|
238
|
-
createdAt:
|
239
|
-
updatedAt:
|
240
|
-
deletedAt:
|
238
|
+
createdAt: string;
|
239
|
+
updatedAt: string;
|
240
|
+
deletedAt: string | null;
|
241
241
|
actor: {
|
242
242
|
id: string;
|
243
243
|
address: string | null;
|
244
244
|
name: string;
|
245
245
|
email: string;
|
246
|
-
createdAt:
|
247
|
-
updatedAt:
|
248
|
-
deletedAt:
|
249
|
-
emailVerifiedAt:
|
246
|
+
createdAt: string;
|
247
|
+
updatedAt: string;
|
248
|
+
deletedAt: string | null;
|
249
|
+
emailVerifiedAt: string | null;
|
250
250
|
password: string;
|
251
251
|
phone: string | null;
|
252
252
|
notificationCount: number | null;
|
253
253
|
roles: {
|
254
254
|
id: string;
|
255
255
|
description: string | null;
|
256
|
-
createdAt:
|
257
|
-
updatedAt:
|
258
|
-
deletedAt:
|
256
|
+
createdAt: string;
|
257
|
+
updatedAt: string;
|
258
|
+
deletedAt: string | null;
|
259
259
|
systemName: string;
|
260
260
|
displayName: string;
|
261
261
|
permissions: {
|
262
262
|
id: string;
|
263
263
|
description: string | null;
|
264
|
-
createdAt:
|
265
|
-
updatedAt:
|
266
|
-
deletedAt:
|
264
|
+
createdAt: string;
|
265
|
+
updatedAt: string;
|
266
|
+
deletedAt: string | null;
|
267
267
|
systemName: string;
|
268
268
|
displayName: string;
|
269
269
|
}[];
|
270
270
|
}[];
|
271
271
|
extension?: {
|
272
272
|
id: string;
|
273
|
-
createdAt:
|
274
|
-
updatedAt:
|
275
|
-
deletedAt:
|
273
|
+
createdAt: string;
|
274
|
+
updatedAt: string;
|
275
|
+
deletedAt: string | null;
|
276
276
|
userId: string | null;
|
277
277
|
sipServerUrl: string;
|
278
278
|
sipUserName: string;
|
@@ -285,52 +285,52 @@ export declare const CommentSchema: z.ZodObject<{
|
|
285
285
|
entityType: {
|
286
286
|
id: string;
|
287
287
|
description: string;
|
288
|
-
createdAt:
|
289
|
-
updatedAt:
|
290
|
-
deletedAt:
|
288
|
+
createdAt: string;
|
289
|
+
updatedAt: string;
|
290
|
+
deletedAt: string | null;
|
291
291
|
entity: string;
|
292
292
|
};
|
293
293
|
}, {
|
294
294
|
id: string;
|
295
295
|
description: string;
|
296
|
-
createdAt:
|
297
|
-
updatedAt:
|
298
|
-
deletedAt:
|
296
|
+
createdAt: string;
|
297
|
+
updatedAt: string;
|
298
|
+
deletedAt: string | null;
|
299
299
|
actor: {
|
300
300
|
id: string;
|
301
301
|
address: string | null;
|
302
302
|
name: string;
|
303
303
|
email: string;
|
304
|
-
createdAt:
|
305
|
-
updatedAt:
|
306
|
-
deletedAt:
|
307
|
-
emailVerifiedAt:
|
304
|
+
createdAt: string;
|
305
|
+
updatedAt: string;
|
306
|
+
deletedAt: string | null;
|
307
|
+
emailVerifiedAt: string | null;
|
308
308
|
password: string;
|
309
309
|
phone: string | null;
|
310
310
|
notificationCount: number | null;
|
311
311
|
roles: {
|
312
312
|
id: string;
|
313
313
|
description: string | null;
|
314
|
-
createdAt:
|
315
|
-
updatedAt:
|
316
|
-
deletedAt:
|
314
|
+
createdAt: string;
|
315
|
+
updatedAt: string;
|
316
|
+
deletedAt: string | null;
|
317
317
|
systemName: string;
|
318
318
|
displayName: string;
|
319
319
|
permissions: {
|
320
320
|
id: string;
|
321
321
|
description: string | null;
|
322
|
-
createdAt:
|
323
|
-
updatedAt:
|
324
|
-
deletedAt:
|
322
|
+
createdAt: string;
|
323
|
+
updatedAt: string;
|
324
|
+
deletedAt: string | null;
|
325
325
|
systemName: string;
|
326
326
|
displayName: string;
|
327
327
|
}[];
|
328
328
|
}[];
|
329
329
|
extension?: {
|
330
330
|
id: string;
|
331
|
-
createdAt:
|
332
|
-
updatedAt:
|
333
|
-
deletedAt:
|
331
|
+
createdAt: string;
|
332
|
+
updatedAt: string;
|
333
|
+
deletedAt: string | null;
|
334
334
|
userId: string | null;
|
335
335
|
sipServerUrl: string;
|
336
336
|
sipUserName: string;
|
@@ -343,9 +343,9 @@ export declare const CommentSchema: z.ZodObject<{
|
|
343
343
|
entityType: {
|
344
344
|
id: string;
|
345
345
|
description: string;
|
346
|
-
createdAt:
|
347
|
-
updatedAt:
|
348
|
-
deletedAt:
|
346
|
+
createdAt: string;
|
347
|
+
updatedAt: string;
|
348
|
+
deletedAt: string | null;
|
349
349
|
entity: string;
|
350
350
|
};
|
351
351
|
}>, "many">;
|
@@ -375,7 +375,7 @@ export declare const CommentSchema: z.ZodObject<{
|
|
375
375
|
textValue: z.ZodNullable<z.ZodString>;
|
376
376
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
377
377
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
378
|
-
dateValue: z.ZodNullable<z.
|
378
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
379
379
|
attribute: z.ZodObject<Omit<{
|
380
380
|
id: z.ZodString;
|
381
381
|
createdAt: z.ZodString;
|
@@ -459,9 +459,9 @@ export declare const CommentSchema: z.ZodObject<{
|
|
459
459
|
}>;
|
460
460
|
uploads: z.ZodArray<z.ZodObject<{
|
461
461
|
id: z.ZodString;
|
462
|
-
createdAt: z.
|
463
|
-
updatedAt: z.
|
464
|
-
deletedAt: z.ZodNullable<z.
|
462
|
+
createdAt: z.ZodString;
|
463
|
+
updatedAt: z.ZodString;
|
464
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
465
465
|
customFieldId: z.ZodString;
|
466
466
|
upload: z.ZodObject<{
|
467
467
|
id: z.ZodString;
|
@@ -493,9 +493,9 @@ export declare const CommentSchema: z.ZodObject<{
|
|
493
493
|
}>;
|
494
494
|
}, "strip", z.ZodTypeAny, {
|
495
495
|
id: string;
|
496
|
-
createdAt:
|
497
|
-
updatedAt:
|
498
|
-
deletedAt:
|
496
|
+
createdAt: string;
|
497
|
+
updatedAt: string;
|
498
|
+
deletedAt: string | null;
|
499
499
|
customFieldId: string;
|
500
500
|
upload: {
|
501
501
|
id: string;
|
@@ -509,9 +509,9 @@ export declare const CommentSchema: z.ZodObject<{
|
|
509
509
|
};
|
510
510
|
}, {
|
511
511
|
id: string;
|
512
|
-
createdAt:
|
513
|
-
updatedAt:
|
514
|
-
deletedAt:
|
512
|
+
createdAt: string;
|
513
|
+
updatedAt: string;
|
514
|
+
deletedAt: string | null;
|
515
515
|
customFieldId: string;
|
516
516
|
upload: {
|
517
517
|
id: string;
|
@@ -546,12 +546,12 @@ export declare const CommentSchema: z.ZodObject<{
|
|
546
546
|
textValue: string | null;
|
547
547
|
booleanValue: boolean | null;
|
548
548
|
numberValue: number | null;
|
549
|
-
dateValue:
|
549
|
+
dateValue: string | null;
|
550
550
|
uploads: {
|
551
551
|
id: string;
|
552
|
-
createdAt:
|
553
|
-
updatedAt:
|
554
|
-
deletedAt:
|
552
|
+
createdAt: string;
|
553
|
+
updatedAt: string;
|
554
|
+
deletedAt: string | null;
|
555
555
|
customFieldId: string;
|
556
556
|
upload: {
|
557
557
|
id: string;
|
@@ -586,12 +586,12 @@ export declare const CommentSchema: z.ZodObject<{
|
|
586
586
|
textValue: string | null;
|
587
587
|
booleanValue: boolean | null;
|
588
588
|
numberValue: number | null;
|
589
|
-
dateValue:
|
589
|
+
dateValue: string | null;
|
590
590
|
uploads: {
|
591
591
|
id: string;
|
592
|
-
createdAt:
|
593
|
-
updatedAt:
|
594
|
-
deletedAt:
|
592
|
+
createdAt: string;
|
593
|
+
updatedAt: string;
|
594
|
+
deletedAt: string | null;
|
595
595
|
customFieldId: string;
|
596
596
|
upload: {
|
597
597
|
id: string;
|
@@ -638,12 +638,12 @@ export declare const CommentSchema: z.ZodObject<{
|
|
638
638
|
textValue: string | null;
|
639
639
|
booleanValue: boolean | null;
|
640
640
|
numberValue: number | null;
|
641
|
-
dateValue:
|
641
|
+
dateValue: string | null;
|
642
642
|
uploads: {
|
643
643
|
id: string;
|
644
|
-
createdAt:
|
645
|
-
updatedAt:
|
646
|
-
deletedAt:
|
644
|
+
createdAt: string;
|
645
|
+
updatedAt: string;
|
646
|
+
deletedAt: string | null;
|
647
647
|
customFieldId: string;
|
648
648
|
upload: {
|
649
649
|
id: string;
|
@@ -695,12 +695,12 @@ export declare const CommentSchema: z.ZodObject<{
|
|
695
695
|
textValue: string | null;
|
696
696
|
booleanValue: boolean | null;
|
697
697
|
numberValue: number | null;
|
698
|
-
dateValue:
|
698
|
+
dateValue: string | null;
|
699
699
|
uploads: {
|
700
700
|
id: string;
|
701
|
-
createdAt:
|
702
|
-
updatedAt:
|
703
|
-
deletedAt:
|
701
|
+
createdAt: string;
|
702
|
+
updatedAt: string;
|
703
|
+
deletedAt: string | null;
|
704
704
|
customFieldId: string;
|
705
705
|
upload: {
|
706
706
|
id: string;
|
@@ -722,89 +722,89 @@ export declare const CommentSchema: z.ZodObject<{
|
|
722
722
|
}>;
|
723
723
|
agent: z.ZodObject<{
|
724
724
|
id: z.ZodString;
|
725
|
-
createdAt: z.
|
726
|
-
updatedAt: z.
|
727
|
-
deletedAt: z.ZodNullable<z.
|
725
|
+
createdAt: z.ZodString;
|
726
|
+
updatedAt: z.ZodString;
|
727
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
728
728
|
name: z.ZodString;
|
729
729
|
email: z.ZodString;
|
730
|
-
emailVerifiedAt: z.ZodNullable<z.
|
730
|
+
emailVerifiedAt: z.ZodNullable<z.ZodString>;
|
731
731
|
password: z.ZodString;
|
732
732
|
address: z.ZodNullable<z.ZodString>;
|
733
733
|
phone: z.ZodNullable<z.ZodString>;
|
734
734
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
735
735
|
roles: z.ZodArray<z.ZodObject<{
|
736
736
|
id: z.ZodString;
|
737
|
-
createdAt: z.
|
738
|
-
updatedAt: z.
|
739
|
-
deletedAt: z.ZodNullable<z.
|
737
|
+
createdAt: z.ZodString;
|
738
|
+
updatedAt: z.ZodString;
|
739
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
740
740
|
systemName: z.ZodString;
|
741
741
|
displayName: z.ZodString;
|
742
742
|
description: z.ZodNullable<z.ZodString>;
|
743
743
|
permissions: z.ZodArray<z.ZodObject<{
|
744
744
|
id: z.ZodString;
|
745
|
-
createdAt: z.
|
746
|
-
updatedAt: z.
|
747
|
-
deletedAt: z.ZodNullable<z.
|
745
|
+
createdAt: z.ZodString;
|
746
|
+
updatedAt: z.ZodString;
|
747
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
748
748
|
systemName: z.ZodString;
|
749
749
|
displayName: z.ZodString;
|
750
750
|
description: z.ZodNullable<z.ZodString>;
|
751
751
|
}, "strip", z.ZodTypeAny, {
|
752
752
|
id: string;
|
753
753
|
description: string | null;
|
754
|
-
createdAt:
|
755
|
-
updatedAt:
|
756
|
-
deletedAt:
|
754
|
+
createdAt: string;
|
755
|
+
updatedAt: string;
|
756
|
+
deletedAt: string | null;
|
757
757
|
systemName: string;
|
758
758
|
displayName: string;
|
759
759
|
}, {
|
760
760
|
id: string;
|
761
761
|
description: string | null;
|
762
|
-
createdAt:
|
763
|
-
updatedAt:
|
764
|
-
deletedAt:
|
762
|
+
createdAt: string;
|
763
|
+
updatedAt: string;
|
764
|
+
deletedAt: string | null;
|
765
765
|
systemName: string;
|
766
766
|
displayName: string;
|
767
767
|
}>, "many">;
|
768
768
|
}, "strip", z.ZodTypeAny, {
|
769
769
|
id: string;
|
770
770
|
description: string | null;
|
771
|
-
createdAt:
|
772
|
-
updatedAt:
|
773
|
-
deletedAt:
|
771
|
+
createdAt: string;
|
772
|
+
updatedAt: string;
|
773
|
+
deletedAt: string | null;
|
774
774
|
systemName: string;
|
775
775
|
displayName: string;
|
776
776
|
permissions: {
|
777
777
|
id: string;
|
778
778
|
description: string | null;
|
779
|
-
createdAt:
|
780
|
-
updatedAt:
|
781
|
-
deletedAt:
|
779
|
+
createdAt: string;
|
780
|
+
updatedAt: string;
|
781
|
+
deletedAt: string | null;
|
782
782
|
systemName: string;
|
783
783
|
displayName: string;
|
784
784
|
}[];
|
785
785
|
}, {
|
786
786
|
id: string;
|
787
787
|
description: string | null;
|
788
|
-
createdAt:
|
789
|
-
updatedAt:
|
790
|
-
deletedAt:
|
788
|
+
createdAt: string;
|
789
|
+
updatedAt: string;
|
790
|
+
deletedAt: string | null;
|
791
791
|
systemName: string;
|
792
792
|
displayName: string;
|
793
793
|
permissions: {
|
794
794
|
id: string;
|
795
795
|
description: string | null;
|
796
|
-
createdAt:
|
797
|
-
updatedAt:
|
798
|
-
deletedAt:
|
796
|
+
createdAt: string;
|
797
|
+
updatedAt: string;
|
798
|
+
deletedAt: string | null;
|
799
799
|
systemName: string;
|
800
800
|
displayName: string;
|
801
801
|
}[];
|
802
802
|
}>, "many">;
|
803
803
|
extension: z.ZodOptional<z.ZodObject<{
|
804
804
|
id: z.ZodString;
|
805
|
-
createdAt: z.
|
806
|
-
updatedAt: z.
|
807
|
-
deletedAt: z.ZodNullable<z.
|
805
|
+
createdAt: z.ZodString;
|
806
|
+
updatedAt: z.ZodString;
|
807
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
808
808
|
userId: z.ZodNullable<z.ZodString>;
|
809
809
|
sipServerUrl: z.ZodString;
|
810
810
|
sipUserName: z.ZodString;
|
@@ -813,9 +813,9 @@ export declare const CommentSchema: z.ZodObject<{
|
|
813
813
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
814
814
|
}, "strip", z.ZodTypeAny, {
|
815
815
|
id: string;
|
816
|
-
createdAt:
|
817
|
-
updatedAt:
|
818
|
-
deletedAt:
|
816
|
+
createdAt: string;
|
817
|
+
updatedAt: string;
|
818
|
+
deletedAt: string | null;
|
819
819
|
userId: string | null;
|
820
820
|
sipServerUrl: string;
|
821
821
|
sipUserName: string;
|
@@ -824,9 +824,9 @@ export declare const CommentSchema: z.ZodObject<{
|
|
824
824
|
telephonySignature: string | null;
|
825
825
|
}, {
|
826
826
|
id: string;
|
827
|
-
createdAt:
|
828
|
-
updatedAt:
|
829
|
-
deletedAt:
|
827
|
+
createdAt: string;
|
828
|
+
updatedAt: string;
|
829
|
+
deletedAt: string | null;
|
830
830
|
userId: string | null;
|
831
831
|
sipServerUrl: string;
|
832
832
|
sipUserName: string;
|
@@ -839,36 +839,36 @@ export declare const CommentSchema: z.ZodObject<{
|
|
839
839
|
address: string | null;
|
840
840
|
name: string;
|
841
841
|
email: string;
|
842
|
-
createdAt:
|
843
|
-
updatedAt:
|
844
|
-
deletedAt:
|
845
|
-
emailVerifiedAt:
|
842
|
+
createdAt: string;
|
843
|
+
updatedAt: string;
|
844
|
+
deletedAt: string | null;
|
845
|
+
emailVerifiedAt: string | null;
|
846
846
|
password: string;
|
847
847
|
phone: string | null;
|
848
848
|
notificationCount: number | null;
|
849
849
|
roles: {
|
850
850
|
id: string;
|
851
851
|
description: string | null;
|
852
|
-
createdAt:
|
853
|
-
updatedAt:
|
854
|
-
deletedAt:
|
852
|
+
createdAt: string;
|
853
|
+
updatedAt: string;
|
854
|
+
deletedAt: string | null;
|
855
855
|
systemName: string;
|
856
856
|
displayName: string;
|
857
857
|
permissions: {
|
858
858
|
id: string;
|
859
859
|
description: string | null;
|
860
|
-
createdAt:
|
861
|
-
updatedAt:
|
862
|
-
deletedAt:
|
860
|
+
createdAt: string;
|
861
|
+
updatedAt: string;
|
862
|
+
deletedAt: string | null;
|
863
863
|
systemName: string;
|
864
864
|
displayName: string;
|
865
865
|
}[];
|
866
866
|
}[];
|
867
867
|
extension?: {
|
868
868
|
id: string;
|
869
|
-
createdAt:
|
870
|
-
updatedAt:
|
871
|
-
deletedAt:
|
869
|
+
createdAt: string;
|
870
|
+
updatedAt: string;
|
871
|
+
deletedAt: string | null;
|
872
872
|
userId: string | null;
|
873
873
|
sipServerUrl: string;
|
874
874
|
sipUserName: string;
|
@@ -881,36 +881,36 @@ export declare const CommentSchema: z.ZodObject<{
|
|
881
881
|
address: string | null;
|
882
882
|
name: string;
|
883
883
|
email: string;
|
884
|
-
createdAt:
|
885
|
-
updatedAt:
|
886
|
-
deletedAt:
|
887
|
-
emailVerifiedAt:
|
884
|
+
createdAt: string;
|
885
|
+
updatedAt: string;
|
886
|
+
deletedAt: string | null;
|
887
|
+
emailVerifiedAt: string | null;
|
888
888
|
password: string;
|
889
889
|
phone: string | null;
|
890
890
|
notificationCount: number | null;
|
891
891
|
roles: {
|
892
892
|
id: string;
|
893
893
|
description: string | null;
|
894
|
-
createdAt:
|
895
|
-
updatedAt:
|
896
|
-
deletedAt:
|
894
|
+
createdAt: string;
|
895
|
+
updatedAt: string;
|
896
|
+
deletedAt: string | null;
|
897
897
|
systemName: string;
|
898
898
|
displayName: string;
|
899
899
|
permissions: {
|
900
900
|
id: string;
|
901
901
|
description: string | null;
|
902
|
-
createdAt:
|
903
|
-
updatedAt:
|
904
|
-
deletedAt:
|
902
|
+
createdAt: string;
|
903
|
+
updatedAt: string;
|
904
|
+
deletedAt: string | null;
|
905
905
|
systemName: string;
|
906
906
|
displayName: string;
|
907
907
|
}[];
|
908
908
|
}[];
|
909
909
|
extension?: {
|
910
910
|
id: string;
|
911
|
-
createdAt:
|
912
|
-
updatedAt:
|
913
|
-
deletedAt:
|
911
|
+
createdAt: string;
|
912
|
+
updatedAt: string;
|
913
|
+
deletedAt: string | null;
|
914
914
|
userId: string | null;
|
915
915
|
sipServerUrl: string;
|
916
916
|
sipUserName: string;
|
@@ -921,50 +921,50 @@ export declare const CommentSchema: z.ZodObject<{
|
|
921
921
|
}>;
|
922
922
|
}, "strip", z.ZodTypeAny, {
|
923
923
|
id: string;
|
924
|
-
createdAt:
|
925
|
-
updatedAt:
|
926
|
-
deletedAt:
|
924
|
+
createdAt: string;
|
925
|
+
updatedAt: string;
|
926
|
+
deletedAt: string | null;
|
927
927
|
activityLogs: {
|
928
928
|
id: string;
|
929
929
|
description: string;
|
930
|
-
createdAt:
|
931
|
-
updatedAt:
|
932
|
-
deletedAt:
|
930
|
+
createdAt: string;
|
931
|
+
updatedAt: string;
|
932
|
+
deletedAt: string | null;
|
933
933
|
actor: {
|
934
934
|
id: string;
|
935
935
|
address: string | null;
|
936
936
|
name: string;
|
937
937
|
email: string;
|
938
|
-
createdAt:
|
939
|
-
updatedAt:
|
940
|
-
deletedAt:
|
941
|
-
emailVerifiedAt:
|
938
|
+
createdAt: string;
|
939
|
+
updatedAt: string;
|
940
|
+
deletedAt: string | null;
|
941
|
+
emailVerifiedAt: string | null;
|
942
942
|
password: string;
|
943
943
|
phone: string | null;
|
944
944
|
notificationCount: number | null;
|
945
945
|
roles: {
|
946
946
|
id: string;
|
947
947
|
description: string | null;
|
948
|
-
createdAt:
|
949
|
-
updatedAt:
|
950
|
-
deletedAt:
|
948
|
+
createdAt: string;
|
949
|
+
updatedAt: string;
|
950
|
+
deletedAt: string | null;
|
951
951
|
systemName: string;
|
952
952
|
displayName: string;
|
953
953
|
permissions: {
|
954
954
|
id: string;
|
955
955
|
description: string | null;
|
956
|
-
createdAt:
|
957
|
-
updatedAt:
|
958
|
-
deletedAt:
|
956
|
+
createdAt: string;
|
957
|
+
updatedAt: string;
|
958
|
+
deletedAt: string | null;
|
959
959
|
systemName: string;
|
960
960
|
displayName: string;
|
961
961
|
}[];
|
962
962
|
}[];
|
963
963
|
extension?: {
|
964
964
|
id: string;
|
965
|
-
createdAt:
|
966
|
-
updatedAt:
|
967
|
-
deletedAt:
|
965
|
+
createdAt: string;
|
966
|
+
updatedAt: string;
|
967
|
+
deletedAt: string | null;
|
968
968
|
userId: string | null;
|
969
969
|
sipServerUrl: string;
|
970
970
|
sipUserName: string;
|
@@ -977,9 +977,9 @@ export declare const CommentSchema: z.ZodObject<{
|
|
977
977
|
entityType: {
|
978
978
|
id: string;
|
979
979
|
description: string;
|
980
|
-
createdAt:
|
981
|
-
updatedAt:
|
982
|
-
deletedAt:
|
980
|
+
createdAt: string;
|
981
|
+
updatedAt: string;
|
982
|
+
deletedAt: string | null;
|
983
983
|
entity: string;
|
984
984
|
};
|
985
985
|
}[];
|
@@ -988,36 +988,36 @@ export declare const CommentSchema: z.ZodObject<{
|
|
988
988
|
address: string | null;
|
989
989
|
name: string;
|
990
990
|
email: string;
|
991
|
-
createdAt:
|
992
|
-
updatedAt:
|
993
|
-
deletedAt:
|
994
|
-
emailVerifiedAt:
|
991
|
+
createdAt: string;
|
992
|
+
updatedAt: string;
|
993
|
+
deletedAt: string | null;
|
994
|
+
emailVerifiedAt: string | null;
|
995
995
|
password: string;
|
996
996
|
phone: string | null;
|
997
997
|
notificationCount: number | null;
|
998
998
|
roles: {
|
999
999
|
id: string;
|
1000
1000
|
description: string | null;
|
1001
|
-
createdAt:
|
1002
|
-
updatedAt:
|
1003
|
-
deletedAt:
|
1001
|
+
createdAt: string;
|
1002
|
+
updatedAt: string;
|
1003
|
+
deletedAt: string | null;
|
1004
1004
|
systemName: string;
|
1005
1005
|
displayName: string;
|
1006
1006
|
permissions: {
|
1007
1007
|
id: string;
|
1008
1008
|
description: string | null;
|
1009
|
-
createdAt:
|
1010
|
-
updatedAt:
|
1011
|
-
deletedAt:
|
1009
|
+
createdAt: string;
|
1010
|
+
updatedAt: string;
|
1011
|
+
deletedAt: string | null;
|
1012
1012
|
systemName: string;
|
1013
1013
|
displayName: string;
|
1014
1014
|
}[];
|
1015
1015
|
}[];
|
1016
1016
|
extension?: {
|
1017
1017
|
id: string;
|
1018
|
-
createdAt:
|
1019
|
-
updatedAt:
|
1020
|
-
deletedAt:
|
1018
|
+
createdAt: string;
|
1019
|
+
updatedAt: string;
|
1020
|
+
deletedAt: string | null;
|
1021
1021
|
userId: string | null;
|
1022
1022
|
sipServerUrl: string;
|
1023
1023
|
sipUserName: string;
|
@@ -1059,12 +1059,12 @@ export declare const CommentSchema: z.ZodObject<{
|
|
1059
1059
|
textValue: string | null;
|
1060
1060
|
booleanValue: boolean | null;
|
1061
1061
|
numberValue: number | null;
|
1062
|
-
dateValue:
|
1062
|
+
dateValue: string | null;
|
1063
1063
|
uploads: {
|
1064
1064
|
id: string;
|
1065
|
-
createdAt:
|
1066
|
-
updatedAt:
|
1067
|
-
deletedAt:
|
1065
|
+
createdAt: string;
|
1066
|
+
updatedAt: string;
|
1067
|
+
deletedAt: string | null;
|
1068
1068
|
customFieldId: string;
|
1069
1069
|
upload: {
|
1070
1070
|
id: string;
|
@@ -1088,50 +1088,50 @@ export declare const CommentSchema: z.ZodObject<{
|
|
1088
1088
|
mentions: string[];
|
1089
1089
|
}, {
|
1090
1090
|
id: string;
|
1091
|
-
createdAt:
|
1092
|
-
updatedAt:
|
1093
|
-
deletedAt:
|
1091
|
+
createdAt: string;
|
1092
|
+
updatedAt: string;
|
1093
|
+
deletedAt: string | null;
|
1094
1094
|
activityLogs: {
|
1095
1095
|
id: string;
|
1096
1096
|
description: string;
|
1097
|
-
createdAt:
|
1098
|
-
updatedAt:
|
1099
|
-
deletedAt:
|
1097
|
+
createdAt: string;
|
1098
|
+
updatedAt: string;
|
1099
|
+
deletedAt: string | null;
|
1100
1100
|
actor: {
|
1101
1101
|
id: string;
|
1102
1102
|
address: string | null;
|
1103
1103
|
name: string;
|
1104
1104
|
email: string;
|
1105
|
-
createdAt:
|
1106
|
-
updatedAt:
|
1107
|
-
deletedAt:
|
1108
|
-
emailVerifiedAt:
|
1105
|
+
createdAt: string;
|
1106
|
+
updatedAt: string;
|
1107
|
+
deletedAt: string | null;
|
1108
|
+
emailVerifiedAt: string | null;
|
1109
1109
|
password: string;
|
1110
1110
|
phone: string | null;
|
1111
1111
|
notificationCount: number | null;
|
1112
1112
|
roles: {
|
1113
1113
|
id: string;
|
1114
1114
|
description: string | null;
|
1115
|
-
createdAt:
|
1116
|
-
updatedAt:
|
1117
|
-
deletedAt:
|
1115
|
+
createdAt: string;
|
1116
|
+
updatedAt: string;
|
1117
|
+
deletedAt: string | null;
|
1118
1118
|
systemName: string;
|
1119
1119
|
displayName: string;
|
1120
1120
|
permissions: {
|
1121
1121
|
id: string;
|
1122
1122
|
description: string | null;
|
1123
|
-
createdAt:
|
1124
|
-
updatedAt:
|
1125
|
-
deletedAt:
|
1123
|
+
createdAt: string;
|
1124
|
+
updatedAt: string;
|
1125
|
+
deletedAt: string | null;
|
1126
1126
|
systemName: string;
|
1127
1127
|
displayName: string;
|
1128
1128
|
}[];
|
1129
1129
|
}[];
|
1130
1130
|
extension?: {
|
1131
1131
|
id: string;
|
1132
|
-
createdAt:
|
1133
|
-
updatedAt:
|
1134
|
-
deletedAt:
|
1132
|
+
createdAt: string;
|
1133
|
+
updatedAt: string;
|
1134
|
+
deletedAt: string | null;
|
1135
1135
|
userId: string | null;
|
1136
1136
|
sipServerUrl: string;
|
1137
1137
|
sipUserName: string;
|
@@ -1144,9 +1144,9 @@ export declare const CommentSchema: z.ZodObject<{
|
|
1144
1144
|
entityType: {
|
1145
1145
|
id: string;
|
1146
1146
|
description: string;
|
1147
|
-
createdAt:
|
1148
|
-
updatedAt:
|
1149
|
-
deletedAt:
|
1147
|
+
createdAt: string;
|
1148
|
+
updatedAt: string;
|
1149
|
+
deletedAt: string | null;
|
1150
1150
|
entity: string;
|
1151
1151
|
};
|
1152
1152
|
}[];
|
@@ -1155,36 +1155,36 @@ export declare const CommentSchema: z.ZodObject<{
|
|
1155
1155
|
address: string | null;
|
1156
1156
|
name: string;
|
1157
1157
|
email: string;
|
1158
|
-
createdAt:
|
1159
|
-
updatedAt:
|
1160
|
-
deletedAt:
|
1161
|
-
emailVerifiedAt:
|
1158
|
+
createdAt: string;
|
1159
|
+
updatedAt: string;
|
1160
|
+
deletedAt: string | null;
|
1161
|
+
emailVerifiedAt: string | null;
|
1162
1162
|
password: string;
|
1163
1163
|
phone: string | null;
|
1164
1164
|
notificationCount: number | null;
|
1165
1165
|
roles: {
|
1166
1166
|
id: string;
|
1167
1167
|
description: string | null;
|
1168
|
-
createdAt:
|
1169
|
-
updatedAt:
|
1170
|
-
deletedAt:
|
1168
|
+
createdAt: string;
|
1169
|
+
updatedAt: string;
|
1170
|
+
deletedAt: string | null;
|
1171
1171
|
systemName: string;
|
1172
1172
|
displayName: string;
|
1173
1173
|
permissions: {
|
1174
1174
|
id: string;
|
1175
1175
|
description: string | null;
|
1176
|
-
createdAt:
|
1177
|
-
updatedAt:
|
1178
|
-
deletedAt:
|
1176
|
+
createdAt: string;
|
1177
|
+
updatedAt: string;
|
1178
|
+
deletedAt: string | null;
|
1179
1179
|
systemName: string;
|
1180
1180
|
displayName: string;
|
1181
1181
|
}[];
|
1182
1182
|
}[];
|
1183
1183
|
extension?: {
|
1184
1184
|
id: string;
|
1185
|
-
createdAt:
|
1186
|
-
updatedAt:
|
1187
|
-
deletedAt:
|
1185
|
+
createdAt: string;
|
1186
|
+
updatedAt: string;
|
1187
|
+
deletedAt: string | null;
|
1188
1188
|
userId: string | null;
|
1189
1189
|
sipServerUrl: string;
|
1190
1190
|
sipUserName: string;
|
@@ -1226,12 +1226,12 @@ export declare const CommentSchema: z.ZodObject<{
|
|
1226
1226
|
textValue: string | null;
|
1227
1227
|
booleanValue: boolean | null;
|
1228
1228
|
numberValue: number | null;
|
1229
|
-
dateValue:
|
1229
|
+
dateValue: string | null;
|
1230
1230
|
uploads: {
|
1231
1231
|
id: string;
|
1232
|
-
createdAt:
|
1233
|
-
updatedAt:
|
1234
|
-
deletedAt:
|
1232
|
+
createdAt: string;
|
1233
|
+
updatedAt: string;
|
1234
|
+
deletedAt: string | null;
|
1235
1235
|
customFieldId: string;
|
1236
1236
|
upload: {
|
1237
1237
|
id: string;
|