@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.
Files changed (63) hide show
  1. package/dist/index.js +151 -118
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +151 -118
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/activity-log/index.d.ts +113 -113
  6. package/dist/src/activity-log/schema.d.ts +122 -122
  7. package/dist/src/auth/index.d.ts +89 -89
  8. package/dist/src/channel/index.d.ts +319 -319
  9. package/dist/src/channel/schema.d.ts +89 -92
  10. package/dist/src/channel/schema.d.ts.map +1 -1
  11. package/dist/src/channel/validation.d.ts +89 -89
  12. package/dist/src/chat/index.d.ts +8699 -8699
  13. package/dist/src/chat/schema.d.ts +1486 -1486
  14. package/dist/src/chat/validation.d.ts +2244 -2244
  15. package/dist/src/comment/index.d.ts +1005 -1005
  16. package/dist/src/comment/schema.d.ts +283 -283
  17. package/dist/src/company/index.d.ts +28 -28
  18. package/dist/src/company/schema.d.ts +8 -8
  19. package/dist/src/company/validation.d.ts +15 -15
  20. package/dist/src/contact/index.d.ts +960 -960
  21. package/dist/src/contact/schema.d.ts +161 -161
  22. package/dist/src/contact/validation.d.ts +690 -690
  23. package/dist/src/contract.d.ts +18366 -18196
  24. package/dist/src/contract.d.ts.map +1 -1
  25. package/dist/src/custom-field/schema.d.ts +3 -3
  26. package/dist/src/cx-log/index.d.ts +1023 -1023
  27. package/dist/src/cx-log/schema.d.ts +837 -837
  28. package/dist/src/dashboard/index.d.ts +6 -6
  29. package/dist/src/dashboard/index.d.ts.map +1 -1
  30. package/dist/src/dashboard/schema.d.ts +2 -2
  31. package/dist/src/dashboard/schema.d.ts.map +1 -1
  32. package/dist/src/extension/index.d.ts +115 -115
  33. package/dist/src/extension/schema.d.ts +9 -9
  34. package/dist/src/mail/account-contract.d.ts +168 -168
  35. package/dist/src/mail/mail-contract.d.ts +3336 -3336
  36. package/dist/src/mail/message-contract.d.ts +152 -152
  37. package/dist/src/mail/room-contract.d.ts +3015 -3015
  38. package/dist/src/mail/schemas/account-validation.schema.d.ts +168 -168
  39. package/dist/src/mail/schemas/account.schema.d.ts +33 -33
  40. package/dist/src/mail/schemas/message.schema.d.ts +108 -108
  41. package/dist/src/mail/schemas/room-validation.schema.d.ts +1000 -1000
  42. package/dist/src/mail/schemas/room.schema.d.ts +791 -791
  43. package/dist/src/messenger/index.d.ts +1078 -1078
  44. package/dist/src/permission/index.d.ts +15 -15
  45. package/dist/src/permission/schema.d.ts +9 -9
  46. package/dist/src/role/index.d.ts +96 -96
  47. package/dist/src/role/schema.d.ts +24 -24
  48. package/dist/src/telephony-agent-presence-status/index.d.ts +293 -293
  49. package/dist/src/telephony-agent-presence-status/schema.d.ts +89 -89
  50. package/dist/src/ticket/index.d.ts +288 -187
  51. package/dist/src/ticket/index.d.ts.map +1 -1
  52. package/dist/src/ticket/schema.d.ts +77 -77
  53. package/dist/src/ticket/validation.d.ts +66 -0
  54. package/dist/src/ticket/validation.d.ts.map +1 -1
  55. package/dist/src/user/index.d.ts +293 -293
  56. package/dist/src/user/schema.d.ts +63 -63
  57. package/dist/src/user-presence-status-log/index.d.ts +52 -52
  58. package/dist/src/user-presence-status-log/schema.d.ts +89 -89
  59. package/dist/src/widget/index.d.ts +72 -1
  60. package/dist/src/widget/index.d.ts.map +1 -1
  61. package/dist/src/widget/validation.d.ts +10 -0
  62. package/dist/src/widget/validation.d.ts.map +1 -1
  63. package/package.json +1 -1
@@ -27,99 +27,99 @@ export declare const commentContract: {
27
27
  requestId: z.ZodString;
28
28
  comment: z.ZodObject<{
29
29
  id: z.ZodString;
30
- createdAt: z.ZodDate;
31
- updatedAt: z.ZodDate;
32
- deletedAt: z.ZodNullable<z.ZodDate>;
30
+ createdAt: z.ZodString;
31
+ updatedAt: z.ZodString;
32
+ deletedAt: z.ZodNullable<z.ZodString>;
33
33
  activityLogs: z.ZodArray<z.ZodObject<{
34
34
  id: z.ZodString;
35
- createdAt: z.ZodDate;
36
- updatedAt: z.ZodDate;
37
- deletedAt: z.ZodNullable<z.ZodDate>;
35
+ createdAt: z.ZodString;
36
+ updatedAt: z.ZodString;
37
+ deletedAt: z.ZodNullable<z.ZodString>;
38
38
  actor: z.ZodObject<{
39
39
  id: z.ZodString;
40
- createdAt: z.ZodDate;
41
- updatedAt: z.ZodDate;
42
- deletedAt: z.ZodNullable<z.ZodDate>;
40
+ createdAt: z.ZodString;
41
+ updatedAt: z.ZodString;
42
+ deletedAt: z.ZodNullable<z.ZodString>;
43
43
  name: z.ZodString;
44
44
  email: z.ZodString;
45
- emailVerifiedAt: z.ZodNullable<z.ZodDate>;
45
+ emailVerifiedAt: z.ZodNullable<z.ZodString>;
46
46
  password: z.ZodString;
47
47
  address: z.ZodNullable<z.ZodString>;
48
48
  phone: z.ZodNullable<z.ZodString>;
49
49
  notificationCount: z.ZodNullable<z.ZodNumber>;
50
50
  roles: z.ZodArray<z.ZodObject<{
51
51
  id: z.ZodString;
52
- createdAt: z.ZodDate;
53
- updatedAt: z.ZodDate;
54
- deletedAt: z.ZodNullable<z.ZodDate>;
52
+ createdAt: z.ZodString;
53
+ updatedAt: z.ZodString;
54
+ deletedAt: z.ZodNullable<z.ZodString>;
55
55
  systemName: z.ZodString;
56
56
  displayName: z.ZodString;
57
57
  description: z.ZodNullable<z.ZodString>;
58
58
  permissions: z.ZodArray<z.ZodObject<{
59
59
  id: z.ZodString;
60
- createdAt: z.ZodDate;
61
- updatedAt: z.ZodDate;
62
- deletedAt: z.ZodNullable<z.ZodDate>;
60
+ createdAt: z.ZodString;
61
+ updatedAt: z.ZodString;
62
+ deletedAt: z.ZodNullable<z.ZodString>;
63
63
  systemName: z.ZodString;
64
64
  displayName: z.ZodString;
65
65
  description: z.ZodNullable<z.ZodString>;
66
66
  }, "strip", z.ZodTypeAny, {
67
67
  id: string;
68
68
  description: string | null;
69
- createdAt: Date;
70
- updatedAt: Date;
71
- deletedAt: Date | null;
69
+ createdAt: string;
70
+ updatedAt: string;
71
+ deletedAt: string | null;
72
72
  systemName: string;
73
73
  displayName: string;
74
74
  }, {
75
75
  id: string;
76
76
  description: string | null;
77
- createdAt: Date;
78
- updatedAt: Date;
79
- deletedAt: Date | null;
77
+ createdAt: string;
78
+ updatedAt: string;
79
+ deletedAt: string | null;
80
80
  systemName: string;
81
81
  displayName: string;
82
82
  }>, "many">;
83
83
  }, "strip", z.ZodTypeAny, {
84
84
  id: string;
85
85
  description: string | null;
86
- createdAt: Date;
87
- updatedAt: Date;
88
- deletedAt: Date | null;
86
+ createdAt: string;
87
+ updatedAt: string;
88
+ deletedAt: string | null;
89
89
  systemName: string;
90
90
  displayName: string;
91
91
  permissions: {
92
92
  id: string;
93
93
  description: string | null;
94
- createdAt: Date;
95
- updatedAt: Date;
96
- deletedAt: Date | null;
94
+ createdAt: string;
95
+ updatedAt: string;
96
+ deletedAt: string | null;
97
97
  systemName: string;
98
98
  displayName: string;
99
99
  }[];
100
100
  }, {
101
101
  id: string;
102
102
  description: string | null;
103
- createdAt: Date;
104
- updatedAt: Date;
105
- deletedAt: Date | null;
103
+ createdAt: string;
104
+ updatedAt: string;
105
+ deletedAt: string | null;
106
106
  systemName: string;
107
107
  displayName: string;
108
108
  permissions: {
109
109
  id: string;
110
110
  description: string | null;
111
- createdAt: Date;
112
- updatedAt: Date;
113
- deletedAt: Date | null;
111
+ createdAt: string;
112
+ updatedAt: string;
113
+ deletedAt: string | null;
114
114
  systemName: string;
115
115
  displayName: string;
116
116
  }[];
117
117
  }>, "many">;
118
118
  extension: z.ZodOptional<z.ZodObject<{
119
119
  id: z.ZodString;
120
- createdAt: z.ZodDate;
121
- updatedAt: z.ZodDate;
122
- deletedAt: z.ZodNullable<z.ZodDate>;
120
+ createdAt: z.ZodString;
121
+ updatedAt: z.ZodString;
122
+ deletedAt: z.ZodNullable<z.ZodString>;
123
123
  userId: z.ZodNullable<z.ZodString>;
124
124
  sipServerUrl: z.ZodString;
125
125
  sipUserName: z.ZodString;
@@ -128,9 +128,9 @@ export declare const commentContract: {
128
128
  telephonySignature: z.ZodNullable<z.ZodString>;
129
129
  }, "strip", z.ZodTypeAny, {
130
130
  id: string;
131
- createdAt: Date;
132
- updatedAt: Date;
133
- deletedAt: Date | null;
131
+ createdAt: string;
132
+ updatedAt: string;
133
+ deletedAt: string | null;
134
134
  userId: string | null;
135
135
  sipServerUrl: string;
136
136
  sipUserName: string;
@@ -139,9 +139,9 @@ export declare const commentContract: {
139
139
  telephonySignature: string | null;
140
140
  }, {
141
141
  id: string;
142
- createdAt: Date;
143
- updatedAt: Date;
144
- deletedAt: Date | null;
142
+ createdAt: string;
143
+ updatedAt: string;
144
+ deletedAt: string | null;
145
145
  userId: string | null;
146
146
  sipServerUrl: string;
147
147
  sipUserName: string;
@@ -154,36 +154,36 @@ export declare const commentContract: {
154
154
  address: string | null;
155
155
  name: string;
156
156
  email: string;
157
- createdAt: Date;
158
- updatedAt: Date;
159
- deletedAt: Date | null;
160
- emailVerifiedAt: Date | null;
157
+ createdAt: string;
158
+ updatedAt: string;
159
+ deletedAt: string | null;
160
+ emailVerifiedAt: string | null;
161
161
  password: string;
162
162
  phone: string | null;
163
163
  notificationCount: number | null;
164
164
  roles: {
165
165
  id: string;
166
166
  description: string | null;
167
- createdAt: Date;
168
- updatedAt: Date;
169
- deletedAt: Date | null;
167
+ createdAt: string;
168
+ updatedAt: string;
169
+ deletedAt: string | null;
170
170
  systemName: string;
171
171
  displayName: string;
172
172
  permissions: {
173
173
  id: string;
174
174
  description: string | null;
175
- createdAt: Date;
176
- updatedAt: Date;
177
- deletedAt: Date | null;
175
+ createdAt: string;
176
+ updatedAt: string;
177
+ deletedAt: string | null;
178
178
  systemName: string;
179
179
  displayName: string;
180
180
  }[];
181
181
  }[];
182
182
  extension?: {
183
183
  id: string;
184
- createdAt: Date;
185
- updatedAt: Date;
186
- deletedAt: Date | null;
184
+ createdAt: string;
185
+ updatedAt: string;
186
+ deletedAt: string | null;
187
187
  userId: string | null;
188
188
  sipServerUrl: string;
189
189
  sipUserName: string;
@@ -196,36 +196,36 @@ export declare const commentContract: {
196
196
  address: string | null;
197
197
  name: string;
198
198
  email: string;
199
- createdAt: Date;
200
- updatedAt: Date;
201
- deletedAt: Date | null;
202
- emailVerifiedAt: Date | null;
199
+ createdAt: string;
200
+ updatedAt: string;
201
+ deletedAt: string | null;
202
+ emailVerifiedAt: string | null;
203
203
  password: string;
204
204
  phone: string | null;
205
205
  notificationCount: number | null;
206
206
  roles: {
207
207
  id: string;
208
208
  description: string | null;
209
- createdAt: Date;
210
- updatedAt: Date;
211
- deletedAt: Date | null;
209
+ createdAt: string;
210
+ updatedAt: string;
211
+ deletedAt: string | null;
212
212
  systemName: string;
213
213
  displayName: string;
214
214
  permissions: {
215
215
  id: string;
216
216
  description: string | null;
217
- createdAt: Date;
218
- updatedAt: Date;
219
- deletedAt: Date | null;
217
+ createdAt: string;
218
+ updatedAt: string;
219
+ deletedAt: string | null;
220
220
  systemName: string;
221
221
  displayName: string;
222
222
  }[];
223
223
  }[];
224
224
  extension?: {
225
225
  id: string;
226
- createdAt: Date;
227
- updatedAt: Date;
228
- deletedAt: Date | null;
226
+ createdAt: string;
227
+ updatedAt: string;
228
+ deletedAt: string | null;
229
229
  userId: string | null;
230
230
  sipServerUrl: string;
231
231
  sipUserName: string;
@@ -238,67 +238,67 @@ export declare const commentContract: {
238
238
  description: z.ZodString;
239
239
  entityType: z.ZodObject<{
240
240
  id: z.ZodString;
241
- createdAt: z.ZodDate;
242
- updatedAt: z.ZodDate;
243
- deletedAt: z.ZodNullable<z.ZodDate>;
241
+ createdAt: z.ZodString;
242
+ updatedAt: z.ZodString;
243
+ deletedAt: z.ZodNullable<z.ZodString>;
244
244
  entity: z.ZodString;
245
245
  description: z.ZodString;
246
246
  }, "strip", z.ZodTypeAny, {
247
247
  id: string;
248
248
  description: string;
249
- createdAt: Date;
250
- updatedAt: Date;
251
- deletedAt: Date | null;
249
+ createdAt: string;
250
+ updatedAt: string;
251
+ deletedAt: string | null;
252
252
  entity: string;
253
253
  }, {
254
254
  id: string;
255
255
  description: string;
256
- createdAt: Date;
257
- updatedAt: Date;
258
- deletedAt: Date | null;
256
+ createdAt: string;
257
+ updatedAt: string;
258
+ deletedAt: string | null;
259
259
  entity: string;
260
260
  }>;
261
261
  }, "strip", z.ZodTypeAny, {
262
262
  id: string;
263
263
  description: string;
264
- createdAt: Date;
265
- updatedAt: Date;
266
- deletedAt: Date | null;
264
+ createdAt: string;
265
+ updatedAt: string;
266
+ deletedAt: string | null;
267
267
  actor: {
268
268
  id: string;
269
269
  address: string | null;
270
270
  name: string;
271
271
  email: string;
272
- createdAt: Date;
273
- updatedAt: Date;
274
- deletedAt: Date | null;
275
- emailVerifiedAt: Date | null;
272
+ createdAt: string;
273
+ updatedAt: string;
274
+ deletedAt: string | null;
275
+ emailVerifiedAt: string | null;
276
276
  password: string;
277
277
  phone: string | null;
278
278
  notificationCount: number | null;
279
279
  roles: {
280
280
  id: string;
281
281
  description: string | null;
282
- createdAt: Date;
283
- updatedAt: Date;
284
- deletedAt: Date | null;
282
+ createdAt: string;
283
+ updatedAt: string;
284
+ deletedAt: string | null;
285
285
  systemName: string;
286
286
  displayName: string;
287
287
  permissions: {
288
288
  id: string;
289
289
  description: string | null;
290
- createdAt: Date;
291
- updatedAt: Date;
292
- deletedAt: Date | null;
290
+ createdAt: string;
291
+ updatedAt: string;
292
+ deletedAt: string | null;
293
293
  systemName: string;
294
294
  displayName: string;
295
295
  }[];
296
296
  }[];
297
297
  extension?: {
298
298
  id: string;
299
- createdAt: Date;
300
- updatedAt: Date;
301
- deletedAt: Date | null;
299
+ createdAt: string;
300
+ updatedAt: string;
301
+ deletedAt: string | null;
302
302
  userId: string | null;
303
303
  sipServerUrl: string;
304
304
  sipUserName: string;
@@ -311,52 +311,52 @@ export declare const commentContract: {
311
311
  entityType: {
312
312
  id: string;
313
313
  description: string;
314
- createdAt: Date;
315
- updatedAt: Date;
316
- deletedAt: Date | null;
314
+ createdAt: string;
315
+ updatedAt: string;
316
+ deletedAt: string | null;
317
317
  entity: string;
318
318
  };
319
319
  }, {
320
320
  id: string;
321
321
  description: string;
322
- createdAt: Date;
323
- updatedAt: Date;
324
- deletedAt: Date | null;
322
+ createdAt: string;
323
+ updatedAt: string;
324
+ deletedAt: string | null;
325
325
  actor: {
326
326
  id: string;
327
327
  address: string | null;
328
328
  name: string;
329
329
  email: string;
330
- createdAt: Date;
331
- updatedAt: Date;
332
- deletedAt: Date | null;
333
- emailVerifiedAt: Date | null;
330
+ createdAt: string;
331
+ updatedAt: string;
332
+ deletedAt: string | null;
333
+ emailVerifiedAt: string | null;
334
334
  password: string;
335
335
  phone: string | null;
336
336
  notificationCount: number | null;
337
337
  roles: {
338
338
  id: string;
339
339
  description: string | null;
340
- createdAt: Date;
341
- updatedAt: Date;
342
- deletedAt: Date | null;
340
+ createdAt: string;
341
+ updatedAt: string;
342
+ deletedAt: string | null;
343
343
  systemName: string;
344
344
  displayName: string;
345
345
  permissions: {
346
346
  id: string;
347
347
  description: string | null;
348
- createdAt: Date;
349
- updatedAt: Date;
350
- deletedAt: Date | null;
348
+ createdAt: string;
349
+ updatedAt: string;
350
+ deletedAt: string | null;
351
351
  systemName: string;
352
352
  displayName: string;
353
353
  }[];
354
354
  }[];
355
355
  extension?: {
356
356
  id: string;
357
- createdAt: Date;
358
- updatedAt: Date;
359
- deletedAt: Date | null;
357
+ createdAt: string;
358
+ updatedAt: string;
359
+ deletedAt: string | null;
360
360
  userId: string | null;
361
361
  sipServerUrl: string;
362
362
  sipUserName: string;
@@ -369,9 +369,9 @@ export declare const commentContract: {
369
369
  entityType: {
370
370
  id: string;
371
371
  description: string;
372
- createdAt: Date;
373
- updatedAt: Date;
374
- deletedAt: Date | null;
372
+ createdAt: string;
373
+ updatedAt: string;
374
+ deletedAt: string | null;
375
375
  entity: string;
376
376
  };
377
377
  }>, "many">;
@@ -401,7 +401,7 @@ export declare const commentContract: {
401
401
  textValue: z.ZodNullable<z.ZodString>;
402
402
  booleanValue: z.ZodNullable<z.ZodBoolean>;
403
403
  numberValue: z.ZodNullable<z.ZodNumber>;
404
- dateValue: z.ZodNullable<z.ZodDate>;
404
+ dateValue: z.ZodNullable<z.ZodString>;
405
405
  attribute: z.ZodObject<Omit<{
406
406
  id: z.ZodString;
407
407
  createdAt: z.ZodString;
@@ -485,9 +485,9 @@ export declare const commentContract: {
485
485
  }>;
486
486
  uploads: z.ZodArray<z.ZodObject<{
487
487
  id: z.ZodString;
488
- createdAt: z.ZodDate;
489
- updatedAt: z.ZodDate;
490
- deletedAt: z.ZodNullable<z.ZodDate>;
488
+ createdAt: z.ZodString;
489
+ updatedAt: z.ZodString;
490
+ deletedAt: z.ZodNullable<z.ZodString>;
491
491
  customFieldId: z.ZodString;
492
492
  upload: z.ZodObject<{
493
493
  id: z.ZodString;
@@ -519,9 +519,9 @@ export declare const commentContract: {
519
519
  }>;
520
520
  }, "strip", z.ZodTypeAny, {
521
521
  id: string;
522
- createdAt: Date;
523
- updatedAt: Date;
524
- deletedAt: Date | null;
522
+ createdAt: string;
523
+ updatedAt: string;
524
+ deletedAt: string | null;
525
525
  customFieldId: string;
526
526
  upload: {
527
527
  id: string;
@@ -535,9 +535,9 @@ export declare const commentContract: {
535
535
  };
536
536
  }, {
537
537
  id: string;
538
- createdAt: Date;
539
- updatedAt: Date;
540
- deletedAt: Date | null;
538
+ createdAt: string;
539
+ updatedAt: string;
540
+ deletedAt: string | null;
541
541
  customFieldId: string;
542
542
  upload: {
543
543
  id: string;
@@ -572,12 +572,12 @@ export declare const commentContract: {
572
572
  textValue: string | null;
573
573
  booleanValue: boolean | null;
574
574
  numberValue: number | null;
575
- dateValue: Date | null;
575
+ dateValue: string | null;
576
576
  uploads: {
577
577
  id: string;
578
- createdAt: Date;
579
- updatedAt: Date;
580
- deletedAt: Date | null;
578
+ createdAt: string;
579
+ updatedAt: string;
580
+ deletedAt: string | null;
581
581
  customFieldId: string;
582
582
  upload: {
583
583
  id: string;
@@ -612,12 +612,12 @@ export declare const commentContract: {
612
612
  textValue: string | null;
613
613
  booleanValue: boolean | null;
614
614
  numberValue: number | null;
615
- dateValue: Date | null;
615
+ dateValue: string | null;
616
616
  uploads: {
617
617
  id: string;
618
- createdAt: Date;
619
- updatedAt: Date;
620
- deletedAt: Date | null;
618
+ createdAt: string;
619
+ updatedAt: string;
620
+ deletedAt: string | null;
621
621
  customFieldId: string;
622
622
  upload: {
623
623
  id: string;
@@ -664,12 +664,12 @@ export declare const commentContract: {
664
664
  textValue: string | null;
665
665
  booleanValue: boolean | null;
666
666
  numberValue: number | null;
667
- dateValue: Date | null;
667
+ dateValue: string | null;
668
668
  uploads: {
669
669
  id: string;
670
- createdAt: Date;
671
- updatedAt: Date;
672
- deletedAt: Date | null;
670
+ createdAt: string;
671
+ updatedAt: string;
672
+ deletedAt: string | null;
673
673
  customFieldId: string;
674
674
  upload: {
675
675
  id: string;
@@ -721,12 +721,12 @@ export declare const commentContract: {
721
721
  textValue: string | null;
722
722
  booleanValue: boolean | null;
723
723
  numberValue: number | null;
724
- dateValue: Date | null;
724
+ dateValue: string | null;
725
725
  uploads: {
726
726
  id: string;
727
- createdAt: Date;
728
- updatedAt: Date;
729
- deletedAt: Date | null;
727
+ createdAt: string;
728
+ updatedAt: string;
729
+ deletedAt: string | null;
730
730
  customFieldId: string;
731
731
  upload: {
732
732
  id: string;
@@ -748,89 +748,89 @@ export declare const commentContract: {
748
748
  }>;
749
749
  agent: z.ZodObject<{
750
750
  id: z.ZodString;
751
- createdAt: z.ZodDate;
752
- updatedAt: z.ZodDate;
753
- deletedAt: z.ZodNullable<z.ZodDate>;
751
+ createdAt: z.ZodString;
752
+ updatedAt: z.ZodString;
753
+ deletedAt: z.ZodNullable<z.ZodString>;
754
754
  name: z.ZodString;
755
755
  email: z.ZodString;
756
- emailVerifiedAt: z.ZodNullable<z.ZodDate>;
756
+ emailVerifiedAt: z.ZodNullable<z.ZodString>;
757
757
  password: z.ZodString;
758
758
  address: z.ZodNullable<z.ZodString>;
759
759
  phone: z.ZodNullable<z.ZodString>;
760
760
  notificationCount: z.ZodNullable<z.ZodNumber>;
761
761
  roles: z.ZodArray<z.ZodObject<{
762
762
  id: z.ZodString;
763
- createdAt: z.ZodDate;
764
- updatedAt: z.ZodDate;
765
- deletedAt: z.ZodNullable<z.ZodDate>;
763
+ createdAt: z.ZodString;
764
+ updatedAt: z.ZodString;
765
+ deletedAt: z.ZodNullable<z.ZodString>;
766
766
  systemName: z.ZodString;
767
767
  displayName: z.ZodString;
768
768
  description: z.ZodNullable<z.ZodString>;
769
769
  permissions: z.ZodArray<z.ZodObject<{
770
770
  id: z.ZodString;
771
- createdAt: z.ZodDate;
772
- updatedAt: z.ZodDate;
773
- deletedAt: z.ZodNullable<z.ZodDate>;
771
+ createdAt: z.ZodString;
772
+ updatedAt: z.ZodString;
773
+ deletedAt: z.ZodNullable<z.ZodString>;
774
774
  systemName: z.ZodString;
775
775
  displayName: z.ZodString;
776
776
  description: z.ZodNullable<z.ZodString>;
777
777
  }, "strip", z.ZodTypeAny, {
778
778
  id: string;
779
779
  description: string | null;
780
- createdAt: Date;
781
- updatedAt: Date;
782
- deletedAt: Date | null;
780
+ createdAt: string;
781
+ updatedAt: string;
782
+ deletedAt: string | null;
783
783
  systemName: string;
784
784
  displayName: string;
785
785
  }, {
786
786
  id: string;
787
787
  description: string | null;
788
- createdAt: Date;
789
- updatedAt: Date;
790
- deletedAt: Date | null;
788
+ createdAt: string;
789
+ updatedAt: string;
790
+ deletedAt: string | null;
791
791
  systemName: string;
792
792
  displayName: string;
793
793
  }>, "many">;
794
794
  }, "strip", z.ZodTypeAny, {
795
795
  id: string;
796
796
  description: string | null;
797
- createdAt: Date;
798
- updatedAt: Date;
799
- deletedAt: Date | null;
797
+ createdAt: string;
798
+ updatedAt: string;
799
+ deletedAt: string | null;
800
800
  systemName: string;
801
801
  displayName: string;
802
802
  permissions: {
803
803
  id: string;
804
804
  description: string | null;
805
- createdAt: Date;
806
- updatedAt: Date;
807
- deletedAt: Date | null;
805
+ createdAt: string;
806
+ updatedAt: string;
807
+ deletedAt: string | null;
808
808
  systemName: string;
809
809
  displayName: string;
810
810
  }[];
811
811
  }, {
812
812
  id: string;
813
813
  description: string | null;
814
- createdAt: Date;
815
- updatedAt: Date;
816
- deletedAt: Date | null;
814
+ createdAt: string;
815
+ updatedAt: string;
816
+ deletedAt: string | null;
817
817
  systemName: string;
818
818
  displayName: string;
819
819
  permissions: {
820
820
  id: string;
821
821
  description: string | null;
822
- createdAt: Date;
823
- updatedAt: Date;
824
- deletedAt: Date | null;
822
+ createdAt: string;
823
+ updatedAt: string;
824
+ deletedAt: string | null;
825
825
  systemName: string;
826
826
  displayName: string;
827
827
  }[];
828
828
  }>, "many">;
829
829
  extension: z.ZodOptional<z.ZodObject<{
830
830
  id: z.ZodString;
831
- createdAt: z.ZodDate;
832
- updatedAt: z.ZodDate;
833
- deletedAt: z.ZodNullable<z.ZodDate>;
831
+ createdAt: z.ZodString;
832
+ updatedAt: z.ZodString;
833
+ deletedAt: z.ZodNullable<z.ZodString>;
834
834
  userId: z.ZodNullable<z.ZodString>;
835
835
  sipServerUrl: z.ZodString;
836
836
  sipUserName: z.ZodString;
@@ -839,9 +839,9 @@ export declare const commentContract: {
839
839
  telephonySignature: z.ZodNullable<z.ZodString>;
840
840
  }, "strip", z.ZodTypeAny, {
841
841
  id: string;
842
- createdAt: Date;
843
- updatedAt: Date;
844
- deletedAt: Date | null;
842
+ createdAt: string;
843
+ updatedAt: string;
844
+ deletedAt: string | null;
845
845
  userId: string | null;
846
846
  sipServerUrl: string;
847
847
  sipUserName: string;
@@ -850,9 +850,9 @@ export declare const commentContract: {
850
850
  telephonySignature: string | null;
851
851
  }, {
852
852
  id: string;
853
- createdAt: Date;
854
- updatedAt: Date;
855
- deletedAt: Date | null;
853
+ createdAt: string;
854
+ updatedAt: string;
855
+ deletedAt: string | null;
856
856
  userId: string | null;
857
857
  sipServerUrl: string;
858
858
  sipUserName: string;
@@ -865,36 +865,36 @@ export declare const commentContract: {
865
865
  address: string | null;
866
866
  name: string;
867
867
  email: string;
868
- createdAt: Date;
869
- updatedAt: Date;
870
- deletedAt: Date | null;
871
- emailVerifiedAt: Date | null;
868
+ createdAt: string;
869
+ updatedAt: string;
870
+ deletedAt: string | null;
871
+ emailVerifiedAt: string | null;
872
872
  password: string;
873
873
  phone: string | null;
874
874
  notificationCount: number | null;
875
875
  roles: {
876
876
  id: string;
877
877
  description: string | null;
878
- createdAt: Date;
879
- updatedAt: Date;
880
- deletedAt: Date | null;
878
+ createdAt: string;
879
+ updatedAt: string;
880
+ deletedAt: string | null;
881
881
  systemName: string;
882
882
  displayName: string;
883
883
  permissions: {
884
884
  id: string;
885
885
  description: string | null;
886
- createdAt: Date;
887
- updatedAt: Date;
888
- deletedAt: Date | null;
886
+ createdAt: string;
887
+ updatedAt: string;
888
+ deletedAt: string | null;
889
889
  systemName: string;
890
890
  displayName: string;
891
891
  }[];
892
892
  }[];
893
893
  extension?: {
894
894
  id: string;
895
- createdAt: Date;
896
- updatedAt: Date;
897
- deletedAt: Date | null;
895
+ createdAt: string;
896
+ updatedAt: string;
897
+ deletedAt: string | null;
898
898
  userId: string | null;
899
899
  sipServerUrl: string;
900
900
  sipUserName: string;
@@ -907,36 +907,36 @@ export declare const commentContract: {
907
907
  address: string | null;
908
908
  name: string;
909
909
  email: string;
910
- createdAt: Date;
911
- updatedAt: Date;
912
- deletedAt: Date | null;
913
- emailVerifiedAt: Date | null;
910
+ createdAt: string;
911
+ updatedAt: string;
912
+ deletedAt: string | null;
913
+ emailVerifiedAt: string | null;
914
914
  password: string;
915
915
  phone: string | null;
916
916
  notificationCount: number | null;
917
917
  roles: {
918
918
  id: string;
919
919
  description: string | null;
920
- createdAt: Date;
921
- updatedAt: Date;
922
- deletedAt: Date | null;
920
+ createdAt: string;
921
+ updatedAt: string;
922
+ deletedAt: string | null;
923
923
  systemName: string;
924
924
  displayName: string;
925
925
  permissions: {
926
926
  id: string;
927
927
  description: string | null;
928
- createdAt: Date;
929
- updatedAt: Date;
930
- deletedAt: Date | null;
928
+ createdAt: string;
929
+ updatedAt: string;
930
+ deletedAt: string | null;
931
931
  systemName: string;
932
932
  displayName: string;
933
933
  }[];
934
934
  }[];
935
935
  extension?: {
936
936
  id: string;
937
- createdAt: Date;
938
- updatedAt: Date;
939
- deletedAt: Date | null;
937
+ createdAt: string;
938
+ updatedAt: string;
939
+ deletedAt: string | null;
940
940
  userId: string | null;
941
941
  sipServerUrl: string;
942
942
  sipUserName: string;
@@ -947,50 +947,50 @@ export declare const commentContract: {
947
947
  }>;
948
948
  }, "strip", z.ZodTypeAny, {
949
949
  id: string;
950
- createdAt: Date;
951
- updatedAt: Date;
952
- deletedAt: Date | null;
950
+ createdAt: string;
951
+ updatedAt: string;
952
+ deletedAt: string | null;
953
953
  activityLogs: {
954
954
  id: string;
955
955
  description: string;
956
- createdAt: Date;
957
- updatedAt: Date;
958
- deletedAt: Date | null;
956
+ createdAt: string;
957
+ updatedAt: string;
958
+ deletedAt: string | null;
959
959
  actor: {
960
960
  id: string;
961
961
  address: string | null;
962
962
  name: string;
963
963
  email: string;
964
- createdAt: Date;
965
- updatedAt: Date;
966
- deletedAt: Date | null;
967
- emailVerifiedAt: Date | null;
964
+ createdAt: string;
965
+ updatedAt: string;
966
+ deletedAt: string | null;
967
+ emailVerifiedAt: string | null;
968
968
  password: string;
969
969
  phone: string | null;
970
970
  notificationCount: number | null;
971
971
  roles: {
972
972
  id: string;
973
973
  description: string | null;
974
- createdAt: Date;
975
- updatedAt: Date;
976
- deletedAt: Date | null;
974
+ createdAt: string;
975
+ updatedAt: string;
976
+ deletedAt: string | null;
977
977
  systemName: string;
978
978
  displayName: string;
979
979
  permissions: {
980
980
  id: string;
981
981
  description: string | null;
982
- createdAt: Date;
983
- updatedAt: Date;
984
- deletedAt: Date | null;
982
+ createdAt: string;
983
+ updatedAt: string;
984
+ deletedAt: string | null;
985
985
  systemName: string;
986
986
  displayName: string;
987
987
  }[];
988
988
  }[];
989
989
  extension?: {
990
990
  id: string;
991
- createdAt: Date;
992
- updatedAt: Date;
993
- deletedAt: Date | null;
991
+ createdAt: string;
992
+ updatedAt: string;
993
+ deletedAt: string | null;
994
994
  userId: string | null;
995
995
  sipServerUrl: string;
996
996
  sipUserName: string;
@@ -1003,9 +1003,9 @@ export declare const commentContract: {
1003
1003
  entityType: {
1004
1004
  id: string;
1005
1005
  description: string;
1006
- createdAt: Date;
1007
- updatedAt: Date;
1008
- deletedAt: Date | null;
1006
+ createdAt: string;
1007
+ updatedAt: string;
1008
+ deletedAt: string | null;
1009
1009
  entity: string;
1010
1010
  };
1011
1011
  }[];
@@ -1014,36 +1014,36 @@ export declare const commentContract: {
1014
1014
  address: string | null;
1015
1015
  name: string;
1016
1016
  email: string;
1017
- createdAt: Date;
1018
- updatedAt: Date;
1019
- deletedAt: Date | null;
1020
- emailVerifiedAt: Date | null;
1017
+ createdAt: string;
1018
+ updatedAt: string;
1019
+ deletedAt: string | null;
1020
+ emailVerifiedAt: string | null;
1021
1021
  password: string;
1022
1022
  phone: string | null;
1023
1023
  notificationCount: number | null;
1024
1024
  roles: {
1025
1025
  id: string;
1026
1026
  description: string | null;
1027
- createdAt: Date;
1028
- updatedAt: Date;
1029
- deletedAt: Date | null;
1027
+ createdAt: string;
1028
+ updatedAt: string;
1029
+ deletedAt: string | null;
1030
1030
  systemName: string;
1031
1031
  displayName: string;
1032
1032
  permissions: {
1033
1033
  id: string;
1034
1034
  description: string | null;
1035
- createdAt: Date;
1036
- updatedAt: Date;
1037
- deletedAt: Date | null;
1035
+ createdAt: string;
1036
+ updatedAt: string;
1037
+ deletedAt: string | null;
1038
1038
  systemName: string;
1039
1039
  displayName: string;
1040
1040
  }[];
1041
1041
  }[];
1042
1042
  extension?: {
1043
1043
  id: string;
1044
- createdAt: Date;
1045
- updatedAt: Date;
1046
- deletedAt: Date | null;
1044
+ createdAt: string;
1045
+ updatedAt: string;
1046
+ deletedAt: string | null;
1047
1047
  userId: string | null;
1048
1048
  sipServerUrl: string;
1049
1049
  sipUserName: string;
@@ -1085,12 +1085,12 @@ export declare const commentContract: {
1085
1085
  textValue: string | null;
1086
1086
  booleanValue: boolean | null;
1087
1087
  numberValue: number | null;
1088
- dateValue: Date | null;
1088
+ dateValue: string | null;
1089
1089
  uploads: {
1090
1090
  id: string;
1091
- createdAt: Date;
1092
- updatedAt: Date;
1093
- deletedAt: Date | null;
1091
+ createdAt: string;
1092
+ updatedAt: string;
1093
+ deletedAt: string | null;
1094
1094
  customFieldId: string;
1095
1095
  upload: {
1096
1096
  id: string;
@@ -1114,50 +1114,50 @@ export declare const commentContract: {
1114
1114
  mentions: string[];
1115
1115
  }, {
1116
1116
  id: string;
1117
- createdAt: Date;
1118
- updatedAt: Date;
1119
- deletedAt: Date | null;
1117
+ createdAt: string;
1118
+ updatedAt: string;
1119
+ deletedAt: string | null;
1120
1120
  activityLogs: {
1121
1121
  id: string;
1122
1122
  description: string;
1123
- createdAt: Date;
1124
- updatedAt: Date;
1125
- deletedAt: Date | null;
1123
+ createdAt: string;
1124
+ updatedAt: string;
1125
+ deletedAt: string | null;
1126
1126
  actor: {
1127
1127
  id: string;
1128
1128
  address: string | null;
1129
1129
  name: string;
1130
1130
  email: string;
1131
- createdAt: Date;
1132
- updatedAt: Date;
1133
- deletedAt: Date | null;
1134
- emailVerifiedAt: Date | null;
1131
+ createdAt: string;
1132
+ updatedAt: string;
1133
+ deletedAt: string | null;
1134
+ emailVerifiedAt: string | null;
1135
1135
  password: string;
1136
1136
  phone: string | null;
1137
1137
  notificationCount: number | null;
1138
1138
  roles: {
1139
1139
  id: string;
1140
1140
  description: string | null;
1141
- createdAt: Date;
1142
- updatedAt: Date;
1143
- deletedAt: Date | null;
1141
+ createdAt: string;
1142
+ updatedAt: string;
1143
+ deletedAt: string | null;
1144
1144
  systemName: string;
1145
1145
  displayName: string;
1146
1146
  permissions: {
1147
1147
  id: string;
1148
1148
  description: string | null;
1149
- createdAt: Date;
1150
- updatedAt: Date;
1151
- deletedAt: Date | null;
1149
+ createdAt: string;
1150
+ updatedAt: string;
1151
+ deletedAt: string | null;
1152
1152
  systemName: string;
1153
1153
  displayName: string;
1154
1154
  }[];
1155
1155
  }[];
1156
1156
  extension?: {
1157
1157
  id: string;
1158
- createdAt: Date;
1159
- updatedAt: Date;
1160
- deletedAt: Date | null;
1158
+ createdAt: string;
1159
+ updatedAt: string;
1160
+ deletedAt: string | null;
1161
1161
  userId: string | null;
1162
1162
  sipServerUrl: string;
1163
1163
  sipUserName: string;
@@ -1170,9 +1170,9 @@ export declare const commentContract: {
1170
1170
  entityType: {
1171
1171
  id: string;
1172
1172
  description: string;
1173
- createdAt: Date;
1174
- updatedAt: Date;
1175
- deletedAt: Date | null;
1173
+ createdAt: string;
1174
+ updatedAt: string;
1175
+ deletedAt: string | null;
1176
1176
  entity: string;
1177
1177
  };
1178
1178
  }[];
@@ -1181,36 +1181,36 @@ export declare const commentContract: {
1181
1181
  address: string | null;
1182
1182
  name: string;
1183
1183
  email: string;
1184
- createdAt: Date;
1185
- updatedAt: Date;
1186
- deletedAt: Date | null;
1187
- emailVerifiedAt: Date | null;
1184
+ createdAt: string;
1185
+ updatedAt: string;
1186
+ deletedAt: string | null;
1187
+ emailVerifiedAt: string | null;
1188
1188
  password: string;
1189
1189
  phone: string | null;
1190
1190
  notificationCount: number | null;
1191
1191
  roles: {
1192
1192
  id: string;
1193
1193
  description: string | null;
1194
- createdAt: Date;
1195
- updatedAt: Date;
1196
- deletedAt: Date | null;
1194
+ createdAt: string;
1195
+ updatedAt: string;
1196
+ deletedAt: string | null;
1197
1197
  systemName: string;
1198
1198
  displayName: string;
1199
1199
  permissions: {
1200
1200
  id: string;
1201
1201
  description: string | null;
1202
- createdAt: Date;
1203
- updatedAt: Date;
1204
- deletedAt: Date | null;
1202
+ createdAt: string;
1203
+ updatedAt: string;
1204
+ deletedAt: string | null;
1205
1205
  systemName: string;
1206
1206
  displayName: string;
1207
1207
  }[];
1208
1208
  }[];
1209
1209
  extension?: {
1210
1210
  id: string;
1211
- createdAt: Date;
1212
- updatedAt: Date;
1213
- deletedAt: Date | null;
1211
+ createdAt: string;
1212
+ updatedAt: string;
1213
+ deletedAt: string | null;
1214
1214
  userId: string | null;
1215
1215
  sipServerUrl: string;
1216
1216
  sipUserName: string;
@@ -1252,12 +1252,12 @@ export declare const commentContract: {
1252
1252
  textValue: string | null;
1253
1253
  booleanValue: boolean | null;
1254
1254
  numberValue: number | null;
1255
- dateValue: Date | null;
1255
+ dateValue: string | null;
1256
1256
  uploads: {
1257
1257
  id: string;
1258
- createdAt: Date;
1259
- updatedAt: Date;
1260
- deletedAt: Date | null;
1258
+ createdAt: string;
1259
+ updatedAt: string;
1260
+ deletedAt: string | null;
1261
1261
  customFieldId: string;
1262
1262
  upload: {
1263
1263
  id: string;
@@ -1284,50 +1284,50 @@ export declare const commentContract: {
1284
1284
  requestId: string;
1285
1285
  comment: {
1286
1286
  id: string;
1287
- createdAt: Date;
1288
- updatedAt: Date;
1289
- deletedAt: Date | null;
1287
+ createdAt: string;
1288
+ updatedAt: string;
1289
+ deletedAt: string | null;
1290
1290
  activityLogs: {
1291
1291
  id: string;
1292
1292
  description: string;
1293
- createdAt: Date;
1294
- updatedAt: Date;
1295
- deletedAt: Date | null;
1293
+ createdAt: string;
1294
+ updatedAt: string;
1295
+ deletedAt: string | null;
1296
1296
  actor: {
1297
1297
  id: string;
1298
1298
  address: string | null;
1299
1299
  name: string;
1300
1300
  email: string;
1301
- createdAt: Date;
1302
- updatedAt: Date;
1303
- deletedAt: Date | null;
1304
- emailVerifiedAt: Date | null;
1301
+ createdAt: string;
1302
+ updatedAt: string;
1303
+ deletedAt: string | null;
1304
+ emailVerifiedAt: string | null;
1305
1305
  password: string;
1306
1306
  phone: string | null;
1307
1307
  notificationCount: number | null;
1308
1308
  roles: {
1309
1309
  id: string;
1310
1310
  description: string | null;
1311
- createdAt: Date;
1312
- updatedAt: Date;
1313
- deletedAt: Date | null;
1311
+ createdAt: string;
1312
+ updatedAt: string;
1313
+ deletedAt: string | null;
1314
1314
  systemName: string;
1315
1315
  displayName: string;
1316
1316
  permissions: {
1317
1317
  id: string;
1318
1318
  description: string | null;
1319
- createdAt: Date;
1320
- updatedAt: Date;
1321
- deletedAt: Date | null;
1319
+ createdAt: string;
1320
+ updatedAt: string;
1321
+ deletedAt: string | null;
1322
1322
  systemName: string;
1323
1323
  displayName: string;
1324
1324
  }[];
1325
1325
  }[];
1326
1326
  extension?: {
1327
1327
  id: string;
1328
- createdAt: Date;
1329
- updatedAt: Date;
1330
- deletedAt: Date | null;
1328
+ createdAt: string;
1329
+ updatedAt: string;
1330
+ deletedAt: string | null;
1331
1331
  userId: string | null;
1332
1332
  sipServerUrl: string;
1333
1333
  sipUserName: string;
@@ -1340,9 +1340,9 @@ export declare const commentContract: {
1340
1340
  entityType: {
1341
1341
  id: string;
1342
1342
  description: string;
1343
- createdAt: Date;
1344
- updatedAt: Date;
1345
- deletedAt: Date | null;
1343
+ createdAt: string;
1344
+ updatedAt: string;
1345
+ deletedAt: string | null;
1346
1346
  entity: string;
1347
1347
  };
1348
1348
  }[];
@@ -1351,36 +1351,36 @@ export declare const commentContract: {
1351
1351
  address: string | null;
1352
1352
  name: string;
1353
1353
  email: string;
1354
- createdAt: Date;
1355
- updatedAt: Date;
1356
- deletedAt: Date | null;
1357
- emailVerifiedAt: Date | null;
1354
+ createdAt: string;
1355
+ updatedAt: string;
1356
+ deletedAt: string | null;
1357
+ emailVerifiedAt: string | null;
1358
1358
  password: string;
1359
1359
  phone: string | null;
1360
1360
  notificationCount: number | null;
1361
1361
  roles: {
1362
1362
  id: string;
1363
1363
  description: string | null;
1364
- createdAt: Date;
1365
- updatedAt: Date;
1366
- deletedAt: Date | null;
1364
+ createdAt: string;
1365
+ updatedAt: string;
1366
+ deletedAt: string | null;
1367
1367
  systemName: string;
1368
1368
  displayName: string;
1369
1369
  permissions: {
1370
1370
  id: string;
1371
1371
  description: string | null;
1372
- createdAt: Date;
1373
- updatedAt: Date;
1374
- deletedAt: Date | null;
1372
+ createdAt: string;
1373
+ updatedAt: string;
1374
+ deletedAt: string | null;
1375
1375
  systemName: string;
1376
1376
  displayName: string;
1377
1377
  }[];
1378
1378
  }[];
1379
1379
  extension?: {
1380
1380
  id: string;
1381
- createdAt: Date;
1382
- updatedAt: Date;
1383
- deletedAt: Date | null;
1381
+ createdAt: string;
1382
+ updatedAt: string;
1383
+ deletedAt: string | null;
1384
1384
  userId: string | null;
1385
1385
  sipServerUrl: string;
1386
1386
  sipUserName: string;
@@ -1422,12 +1422,12 @@ export declare const commentContract: {
1422
1422
  textValue: string | null;
1423
1423
  booleanValue: boolean | null;
1424
1424
  numberValue: number | null;
1425
- dateValue: Date | null;
1425
+ dateValue: string | null;
1426
1426
  uploads: {
1427
1427
  id: string;
1428
- createdAt: Date;
1429
- updatedAt: Date;
1430
- deletedAt: Date | null;
1428
+ createdAt: string;
1429
+ updatedAt: string;
1430
+ deletedAt: string | null;
1431
1431
  customFieldId: string;
1432
1432
  upload: {
1433
1433
  id: string;
@@ -1454,50 +1454,50 @@ export declare const commentContract: {
1454
1454
  requestId: string;
1455
1455
  comment: {
1456
1456
  id: string;
1457
- createdAt: Date;
1458
- updatedAt: Date;
1459
- deletedAt: Date | null;
1457
+ createdAt: string;
1458
+ updatedAt: string;
1459
+ deletedAt: string | null;
1460
1460
  activityLogs: {
1461
1461
  id: string;
1462
1462
  description: string;
1463
- createdAt: Date;
1464
- updatedAt: Date;
1465
- deletedAt: Date | null;
1463
+ createdAt: string;
1464
+ updatedAt: string;
1465
+ deletedAt: string | null;
1466
1466
  actor: {
1467
1467
  id: string;
1468
1468
  address: string | null;
1469
1469
  name: string;
1470
1470
  email: string;
1471
- createdAt: Date;
1472
- updatedAt: Date;
1473
- deletedAt: Date | null;
1474
- emailVerifiedAt: Date | null;
1471
+ createdAt: string;
1472
+ updatedAt: string;
1473
+ deletedAt: string | null;
1474
+ emailVerifiedAt: string | null;
1475
1475
  password: string;
1476
1476
  phone: string | null;
1477
1477
  notificationCount: number | null;
1478
1478
  roles: {
1479
1479
  id: string;
1480
1480
  description: string | null;
1481
- createdAt: Date;
1482
- updatedAt: Date;
1483
- deletedAt: Date | null;
1481
+ createdAt: string;
1482
+ updatedAt: string;
1483
+ deletedAt: string | null;
1484
1484
  systemName: string;
1485
1485
  displayName: string;
1486
1486
  permissions: {
1487
1487
  id: string;
1488
1488
  description: string | null;
1489
- createdAt: Date;
1490
- updatedAt: Date;
1491
- deletedAt: Date | null;
1489
+ createdAt: string;
1490
+ updatedAt: string;
1491
+ deletedAt: string | null;
1492
1492
  systemName: string;
1493
1493
  displayName: string;
1494
1494
  }[];
1495
1495
  }[];
1496
1496
  extension?: {
1497
1497
  id: string;
1498
- createdAt: Date;
1499
- updatedAt: Date;
1500
- deletedAt: Date | null;
1498
+ createdAt: string;
1499
+ updatedAt: string;
1500
+ deletedAt: string | null;
1501
1501
  userId: string | null;
1502
1502
  sipServerUrl: string;
1503
1503
  sipUserName: string;
@@ -1510,9 +1510,9 @@ export declare const commentContract: {
1510
1510
  entityType: {
1511
1511
  id: string;
1512
1512
  description: string;
1513
- createdAt: Date;
1514
- updatedAt: Date;
1515
- deletedAt: Date | null;
1513
+ createdAt: string;
1514
+ updatedAt: string;
1515
+ deletedAt: string | null;
1516
1516
  entity: string;
1517
1517
  };
1518
1518
  }[];
@@ -1521,36 +1521,36 @@ export declare const commentContract: {
1521
1521
  address: string | null;
1522
1522
  name: string;
1523
1523
  email: string;
1524
- createdAt: Date;
1525
- updatedAt: Date;
1526
- deletedAt: Date | null;
1527
- emailVerifiedAt: Date | null;
1524
+ createdAt: string;
1525
+ updatedAt: string;
1526
+ deletedAt: string | null;
1527
+ emailVerifiedAt: string | null;
1528
1528
  password: string;
1529
1529
  phone: string | null;
1530
1530
  notificationCount: number | null;
1531
1531
  roles: {
1532
1532
  id: string;
1533
1533
  description: string | null;
1534
- createdAt: Date;
1535
- updatedAt: Date;
1536
- deletedAt: Date | null;
1534
+ createdAt: string;
1535
+ updatedAt: string;
1536
+ deletedAt: string | null;
1537
1537
  systemName: string;
1538
1538
  displayName: string;
1539
1539
  permissions: {
1540
1540
  id: string;
1541
1541
  description: string | null;
1542
- createdAt: Date;
1543
- updatedAt: Date;
1544
- deletedAt: Date | null;
1542
+ createdAt: string;
1543
+ updatedAt: string;
1544
+ deletedAt: string | null;
1545
1545
  systemName: string;
1546
1546
  displayName: string;
1547
1547
  }[];
1548
1548
  }[];
1549
1549
  extension?: {
1550
1550
  id: string;
1551
- createdAt: Date;
1552
- updatedAt: Date;
1553
- deletedAt: Date | null;
1551
+ createdAt: string;
1552
+ updatedAt: string;
1553
+ deletedAt: string | null;
1554
1554
  userId: string | null;
1555
1555
  sipServerUrl: string;
1556
1556
  sipUserName: string;
@@ -1592,12 +1592,12 @@ export declare const commentContract: {
1592
1592
  textValue: string | null;
1593
1593
  booleanValue: boolean | null;
1594
1594
  numberValue: number | null;
1595
- dateValue: Date | null;
1595
+ dateValue: string | null;
1596
1596
  uploads: {
1597
1597
  id: string;
1598
- createdAt: Date;
1599
- updatedAt: Date;
1600
- deletedAt: Date | null;
1598
+ createdAt: string;
1599
+ updatedAt: string;
1600
+ deletedAt: string | null;
1601
1601
  customFieldId: string;
1602
1602
  upload: {
1603
1603
  id: string;
@@ -1683,99 +1683,99 @@ export declare const commentContract: {
1683
1683
  responses: {
1684
1684
  201: z.ZodArray<z.ZodObject<{
1685
1685
  id: z.ZodString;
1686
- createdAt: z.ZodDate;
1687
- updatedAt: z.ZodDate;
1688
- deletedAt: z.ZodNullable<z.ZodDate>;
1686
+ createdAt: z.ZodString;
1687
+ updatedAt: z.ZodString;
1688
+ deletedAt: z.ZodNullable<z.ZodString>;
1689
1689
  activityLogs: z.ZodArray<z.ZodObject<{
1690
1690
  id: z.ZodString;
1691
- createdAt: z.ZodDate;
1692
- updatedAt: z.ZodDate;
1693
- deletedAt: z.ZodNullable<z.ZodDate>;
1691
+ createdAt: z.ZodString;
1692
+ updatedAt: z.ZodString;
1693
+ deletedAt: z.ZodNullable<z.ZodString>;
1694
1694
  actor: z.ZodObject<{
1695
1695
  id: z.ZodString;
1696
- createdAt: z.ZodDate;
1697
- updatedAt: z.ZodDate;
1698
- deletedAt: z.ZodNullable<z.ZodDate>;
1696
+ createdAt: z.ZodString;
1697
+ updatedAt: z.ZodString;
1698
+ deletedAt: z.ZodNullable<z.ZodString>;
1699
1699
  name: z.ZodString;
1700
1700
  email: z.ZodString;
1701
- emailVerifiedAt: z.ZodNullable<z.ZodDate>;
1701
+ emailVerifiedAt: z.ZodNullable<z.ZodString>;
1702
1702
  password: z.ZodString;
1703
1703
  address: z.ZodNullable<z.ZodString>;
1704
1704
  phone: z.ZodNullable<z.ZodString>;
1705
1705
  notificationCount: z.ZodNullable<z.ZodNumber>;
1706
1706
  roles: z.ZodArray<z.ZodObject<{
1707
1707
  id: z.ZodString;
1708
- createdAt: z.ZodDate;
1709
- updatedAt: z.ZodDate;
1710
- deletedAt: z.ZodNullable<z.ZodDate>;
1708
+ createdAt: z.ZodString;
1709
+ updatedAt: z.ZodString;
1710
+ deletedAt: z.ZodNullable<z.ZodString>;
1711
1711
  systemName: z.ZodString;
1712
1712
  displayName: z.ZodString;
1713
1713
  description: z.ZodNullable<z.ZodString>;
1714
1714
  permissions: z.ZodArray<z.ZodObject<{
1715
1715
  id: z.ZodString;
1716
- createdAt: z.ZodDate;
1717
- updatedAt: z.ZodDate;
1718
- deletedAt: z.ZodNullable<z.ZodDate>;
1716
+ createdAt: z.ZodString;
1717
+ updatedAt: z.ZodString;
1718
+ deletedAt: z.ZodNullable<z.ZodString>;
1719
1719
  systemName: z.ZodString;
1720
1720
  displayName: z.ZodString;
1721
1721
  description: z.ZodNullable<z.ZodString>;
1722
1722
  }, "strip", z.ZodTypeAny, {
1723
1723
  id: string;
1724
1724
  description: string | null;
1725
- createdAt: Date;
1726
- updatedAt: Date;
1727
- deletedAt: Date | null;
1725
+ createdAt: string;
1726
+ updatedAt: string;
1727
+ deletedAt: string | null;
1728
1728
  systemName: string;
1729
1729
  displayName: string;
1730
1730
  }, {
1731
1731
  id: string;
1732
1732
  description: string | null;
1733
- createdAt: Date;
1734
- updatedAt: Date;
1735
- deletedAt: Date | null;
1733
+ createdAt: string;
1734
+ updatedAt: string;
1735
+ deletedAt: string | null;
1736
1736
  systemName: string;
1737
1737
  displayName: string;
1738
1738
  }>, "many">;
1739
1739
  }, "strip", z.ZodTypeAny, {
1740
1740
  id: string;
1741
1741
  description: string | null;
1742
- createdAt: Date;
1743
- updatedAt: Date;
1744
- deletedAt: Date | null;
1742
+ createdAt: string;
1743
+ updatedAt: string;
1744
+ deletedAt: string | null;
1745
1745
  systemName: string;
1746
1746
  displayName: string;
1747
1747
  permissions: {
1748
1748
  id: string;
1749
1749
  description: string | null;
1750
- createdAt: Date;
1751
- updatedAt: Date;
1752
- deletedAt: Date | null;
1750
+ createdAt: string;
1751
+ updatedAt: string;
1752
+ deletedAt: string | null;
1753
1753
  systemName: string;
1754
1754
  displayName: string;
1755
1755
  }[];
1756
1756
  }, {
1757
1757
  id: string;
1758
1758
  description: string | null;
1759
- createdAt: Date;
1760
- updatedAt: Date;
1761
- deletedAt: Date | null;
1759
+ createdAt: string;
1760
+ updatedAt: string;
1761
+ deletedAt: string | null;
1762
1762
  systemName: string;
1763
1763
  displayName: string;
1764
1764
  permissions: {
1765
1765
  id: string;
1766
1766
  description: string | null;
1767
- createdAt: Date;
1768
- updatedAt: Date;
1769
- deletedAt: Date | null;
1767
+ createdAt: string;
1768
+ updatedAt: string;
1769
+ deletedAt: string | null;
1770
1770
  systemName: string;
1771
1771
  displayName: string;
1772
1772
  }[];
1773
1773
  }>, "many">;
1774
1774
  extension: z.ZodOptional<z.ZodObject<{
1775
1775
  id: z.ZodString;
1776
- createdAt: z.ZodDate;
1777
- updatedAt: z.ZodDate;
1778
- deletedAt: z.ZodNullable<z.ZodDate>;
1776
+ createdAt: z.ZodString;
1777
+ updatedAt: z.ZodString;
1778
+ deletedAt: z.ZodNullable<z.ZodString>;
1779
1779
  userId: z.ZodNullable<z.ZodString>;
1780
1780
  sipServerUrl: z.ZodString;
1781
1781
  sipUserName: z.ZodString;
@@ -1784,9 +1784,9 @@ export declare const commentContract: {
1784
1784
  telephonySignature: z.ZodNullable<z.ZodString>;
1785
1785
  }, "strip", z.ZodTypeAny, {
1786
1786
  id: string;
1787
- createdAt: Date;
1788
- updatedAt: Date;
1789
- deletedAt: Date | null;
1787
+ createdAt: string;
1788
+ updatedAt: string;
1789
+ deletedAt: string | null;
1790
1790
  userId: string | null;
1791
1791
  sipServerUrl: string;
1792
1792
  sipUserName: string;
@@ -1795,9 +1795,9 @@ export declare const commentContract: {
1795
1795
  telephonySignature: string | null;
1796
1796
  }, {
1797
1797
  id: string;
1798
- createdAt: Date;
1799
- updatedAt: Date;
1800
- deletedAt: Date | null;
1798
+ createdAt: string;
1799
+ updatedAt: string;
1800
+ deletedAt: string | null;
1801
1801
  userId: string | null;
1802
1802
  sipServerUrl: string;
1803
1803
  sipUserName: string;
@@ -1810,36 +1810,36 @@ export declare const commentContract: {
1810
1810
  address: string | null;
1811
1811
  name: string;
1812
1812
  email: string;
1813
- createdAt: Date;
1814
- updatedAt: Date;
1815
- deletedAt: Date | null;
1816
- emailVerifiedAt: Date | null;
1813
+ createdAt: string;
1814
+ updatedAt: string;
1815
+ deletedAt: string | null;
1816
+ emailVerifiedAt: string | null;
1817
1817
  password: string;
1818
1818
  phone: string | null;
1819
1819
  notificationCount: number | null;
1820
1820
  roles: {
1821
1821
  id: string;
1822
1822
  description: string | null;
1823
- createdAt: Date;
1824
- updatedAt: Date;
1825
- deletedAt: Date | null;
1823
+ createdAt: string;
1824
+ updatedAt: string;
1825
+ deletedAt: string | null;
1826
1826
  systemName: string;
1827
1827
  displayName: string;
1828
1828
  permissions: {
1829
1829
  id: string;
1830
1830
  description: string | null;
1831
- createdAt: Date;
1832
- updatedAt: Date;
1833
- deletedAt: Date | null;
1831
+ createdAt: string;
1832
+ updatedAt: string;
1833
+ deletedAt: string | null;
1834
1834
  systemName: string;
1835
1835
  displayName: string;
1836
1836
  }[];
1837
1837
  }[];
1838
1838
  extension?: {
1839
1839
  id: string;
1840
- createdAt: Date;
1841
- updatedAt: Date;
1842
- deletedAt: Date | null;
1840
+ createdAt: string;
1841
+ updatedAt: string;
1842
+ deletedAt: string | null;
1843
1843
  userId: string | null;
1844
1844
  sipServerUrl: string;
1845
1845
  sipUserName: string;
@@ -1852,36 +1852,36 @@ export declare const commentContract: {
1852
1852
  address: string | null;
1853
1853
  name: string;
1854
1854
  email: string;
1855
- createdAt: Date;
1856
- updatedAt: Date;
1857
- deletedAt: Date | null;
1858
- emailVerifiedAt: Date | null;
1855
+ createdAt: string;
1856
+ updatedAt: string;
1857
+ deletedAt: string | null;
1858
+ emailVerifiedAt: string | null;
1859
1859
  password: string;
1860
1860
  phone: string | null;
1861
1861
  notificationCount: number | null;
1862
1862
  roles: {
1863
1863
  id: string;
1864
1864
  description: string | null;
1865
- createdAt: Date;
1866
- updatedAt: Date;
1867
- deletedAt: Date | null;
1865
+ createdAt: string;
1866
+ updatedAt: string;
1867
+ deletedAt: string | null;
1868
1868
  systemName: string;
1869
1869
  displayName: string;
1870
1870
  permissions: {
1871
1871
  id: string;
1872
1872
  description: string | null;
1873
- createdAt: Date;
1874
- updatedAt: Date;
1875
- deletedAt: Date | null;
1873
+ createdAt: string;
1874
+ updatedAt: string;
1875
+ deletedAt: string | null;
1876
1876
  systemName: string;
1877
1877
  displayName: string;
1878
1878
  }[];
1879
1879
  }[];
1880
1880
  extension?: {
1881
1881
  id: string;
1882
- createdAt: Date;
1883
- updatedAt: Date;
1884
- deletedAt: Date | null;
1882
+ createdAt: string;
1883
+ updatedAt: string;
1884
+ deletedAt: string | null;
1885
1885
  userId: string | null;
1886
1886
  sipServerUrl: string;
1887
1887
  sipUserName: string;
@@ -1894,67 +1894,67 @@ export declare const commentContract: {
1894
1894
  description: z.ZodString;
1895
1895
  entityType: z.ZodObject<{
1896
1896
  id: z.ZodString;
1897
- createdAt: z.ZodDate;
1898
- updatedAt: z.ZodDate;
1899
- deletedAt: z.ZodNullable<z.ZodDate>;
1897
+ createdAt: z.ZodString;
1898
+ updatedAt: z.ZodString;
1899
+ deletedAt: z.ZodNullable<z.ZodString>;
1900
1900
  entity: z.ZodString;
1901
1901
  description: z.ZodString;
1902
1902
  }, "strip", z.ZodTypeAny, {
1903
1903
  id: string;
1904
1904
  description: string;
1905
- createdAt: Date;
1906
- updatedAt: Date;
1907
- deletedAt: Date | null;
1905
+ createdAt: string;
1906
+ updatedAt: string;
1907
+ deletedAt: string | null;
1908
1908
  entity: string;
1909
1909
  }, {
1910
1910
  id: string;
1911
1911
  description: string;
1912
- createdAt: Date;
1913
- updatedAt: Date;
1914
- deletedAt: Date | null;
1912
+ createdAt: string;
1913
+ updatedAt: string;
1914
+ deletedAt: string | null;
1915
1915
  entity: string;
1916
1916
  }>;
1917
1917
  }, "strip", z.ZodTypeAny, {
1918
1918
  id: string;
1919
1919
  description: string;
1920
- createdAt: Date;
1921
- updatedAt: Date;
1922
- deletedAt: Date | null;
1920
+ createdAt: string;
1921
+ updatedAt: string;
1922
+ deletedAt: string | null;
1923
1923
  actor: {
1924
1924
  id: string;
1925
1925
  address: string | null;
1926
1926
  name: string;
1927
1927
  email: string;
1928
- createdAt: Date;
1929
- updatedAt: Date;
1930
- deletedAt: Date | null;
1931
- emailVerifiedAt: Date | null;
1928
+ createdAt: string;
1929
+ updatedAt: string;
1930
+ deletedAt: string | null;
1931
+ emailVerifiedAt: string | null;
1932
1932
  password: string;
1933
1933
  phone: string | null;
1934
1934
  notificationCount: number | null;
1935
1935
  roles: {
1936
1936
  id: string;
1937
1937
  description: string | null;
1938
- createdAt: Date;
1939
- updatedAt: Date;
1940
- deletedAt: Date | null;
1938
+ createdAt: string;
1939
+ updatedAt: string;
1940
+ deletedAt: string | null;
1941
1941
  systemName: string;
1942
1942
  displayName: string;
1943
1943
  permissions: {
1944
1944
  id: string;
1945
1945
  description: string | null;
1946
- createdAt: Date;
1947
- updatedAt: Date;
1948
- deletedAt: Date | null;
1946
+ createdAt: string;
1947
+ updatedAt: string;
1948
+ deletedAt: string | null;
1949
1949
  systemName: string;
1950
1950
  displayName: string;
1951
1951
  }[];
1952
1952
  }[];
1953
1953
  extension?: {
1954
1954
  id: string;
1955
- createdAt: Date;
1956
- updatedAt: Date;
1957
- deletedAt: Date | null;
1955
+ createdAt: string;
1956
+ updatedAt: string;
1957
+ deletedAt: string | null;
1958
1958
  userId: string | null;
1959
1959
  sipServerUrl: string;
1960
1960
  sipUserName: string;
@@ -1967,52 +1967,52 @@ export declare const commentContract: {
1967
1967
  entityType: {
1968
1968
  id: string;
1969
1969
  description: string;
1970
- createdAt: Date;
1971
- updatedAt: Date;
1972
- deletedAt: Date | null;
1970
+ createdAt: string;
1971
+ updatedAt: string;
1972
+ deletedAt: string | null;
1973
1973
  entity: string;
1974
1974
  };
1975
1975
  }, {
1976
1976
  id: string;
1977
1977
  description: string;
1978
- createdAt: Date;
1979
- updatedAt: Date;
1980
- deletedAt: Date | null;
1978
+ createdAt: string;
1979
+ updatedAt: string;
1980
+ deletedAt: string | null;
1981
1981
  actor: {
1982
1982
  id: string;
1983
1983
  address: string | null;
1984
1984
  name: string;
1985
1985
  email: string;
1986
- createdAt: Date;
1987
- updatedAt: Date;
1988
- deletedAt: Date | null;
1989
- emailVerifiedAt: Date | null;
1986
+ createdAt: string;
1987
+ updatedAt: string;
1988
+ deletedAt: string | null;
1989
+ emailVerifiedAt: string | null;
1990
1990
  password: string;
1991
1991
  phone: string | null;
1992
1992
  notificationCount: number | null;
1993
1993
  roles: {
1994
1994
  id: string;
1995
1995
  description: string | null;
1996
- createdAt: Date;
1997
- updatedAt: Date;
1998
- deletedAt: Date | null;
1996
+ createdAt: string;
1997
+ updatedAt: string;
1998
+ deletedAt: string | null;
1999
1999
  systemName: string;
2000
2000
  displayName: string;
2001
2001
  permissions: {
2002
2002
  id: string;
2003
2003
  description: string | null;
2004
- createdAt: Date;
2005
- updatedAt: Date;
2006
- deletedAt: Date | null;
2004
+ createdAt: string;
2005
+ updatedAt: string;
2006
+ deletedAt: string | null;
2007
2007
  systemName: string;
2008
2008
  displayName: string;
2009
2009
  }[];
2010
2010
  }[];
2011
2011
  extension?: {
2012
2012
  id: string;
2013
- createdAt: Date;
2014
- updatedAt: Date;
2015
- deletedAt: Date | null;
2013
+ createdAt: string;
2014
+ updatedAt: string;
2015
+ deletedAt: string | null;
2016
2016
  userId: string | null;
2017
2017
  sipServerUrl: string;
2018
2018
  sipUserName: string;
@@ -2025,9 +2025,9 @@ export declare const commentContract: {
2025
2025
  entityType: {
2026
2026
  id: string;
2027
2027
  description: string;
2028
- createdAt: Date;
2029
- updatedAt: Date;
2030
- deletedAt: Date | null;
2028
+ createdAt: string;
2029
+ updatedAt: string;
2030
+ deletedAt: string | null;
2031
2031
  entity: string;
2032
2032
  };
2033
2033
  }>, "many">;
@@ -2057,7 +2057,7 @@ export declare const commentContract: {
2057
2057
  textValue: z.ZodNullable<z.ZodString>;
2058
2058
  booleanValue: z.ZodNullable<z.ZodBoolean>;
2059
2059
  numberValue: z.ZodNullable<z.ZodNumber>;
2060
- dateValue: z.ZodNullable<z.ZodDate>;
2060
+ dateValue: z.ZodNullable<z.ZodString>;
2061
2061
  attribute: z.ZodObject<Omit<{
2062
2062
  id: z.ZodString;
2063
2063
  createdAt: z.ZodString;
@@ -2141,9 +2141,9 @@ export declare const commentContract: {
2141
2141
  }>;
2142
2142
  uploads: z.ZodArray<z.ZodObject<{
2143
2143
  id: z.ZodString;
2144
- createdAt: z.ZodDate;
2145
- updatedAt: z.ZodDate;
2146
- deletedAt: z.ZodNullable<z.ZodDate>;
2144
+ createdAt: z.ZodString;
2145
+ updatedAt: z.ZodString;
2146
+ deletedAt: z.ZodNullable<z.ZodString>;
2147
2147
  customFieldId: z.ZodString;
2148
2148
  upload: z.ZodObject<{
2149
2149
  id: z.ZodString;
@@ -2175,9 +2175,9 @@ export declare const commentContract: {
2175
2175
  }>;
2176
2176
  }, "strip", z.ZodTypeAny, {
2177
2177
  id: string;
2178
- createdAt: Date;
2179
- updatedAt: Date;
2180
- deletedAt: Date | null;
2178
+ createdAt: string;
2179
+ updatedAt: string;
2180
+ deletedAt: string | null;
2181
2181
  customFieldId: string;
2182
2182
  upload: {
2183
2183
  id: string;
@@ -2191,9 +2191,9 @@ export declare const commentContract: {
2191
2191
  };
2192
2192
  }, {
2193
2193
  id: string;
2194
- createdAt: Date;
2195
- updatedAt: Date;
2196
- deletedAt: Date | null;
2194
+ createdAt: string;
2195
+ updatedAt: string;
2196
+ deletedAt: string | null;
2197
2197
  customFieldId: string;
2198
2198
  upload: {
2199
2199
  id: string;
@@ -2228,12 +2228,12 @@ export declare const commentContract: {
2228
2228
  textValue: string | null;
2229
2229
  booleanValue: boolean | null;
2230
2230
  numberValue: number | null;
2231
- dateValue: Date | null;
2231
+ dateValue: string | null;
2232
2232
  uploads: {
2233
2233
  id: string;
2234
- createdAt: Date;
2235
- updatedAt: Date;
2236
- deletedAt: Date | null;
2234
+ createdAt: string;
2235
+ updatedAt: string;
2236
+ deletedAt: string | null;
2237
2237
  customFieldId: string;
2238
2238
  upload: {
2239
2239
  id: string;
@@ -2268,12 +2268,12 @@ export declare const commentContract: {
2268
2268
  textValue: string | null;
2269
2269
  booleanValue: boolean | null;
2270
2270
  numberValue: number | null;
2271
- dateValue: Date | null;
2271
+ dateValue: string | null;
2272
2272
  uploads: {
2273
2273
  id: string;
2274
- createdAt: Date;
2275
- updatedAt: Date;
2276
- deletedAt: Date | null;
2274
+ createdAt: string;
2275
+ updatedAt: string;
2276
+ deletedAt: string | null;
2277
2277
  customFieldId: string;
2278
2278
  upload: {
2279
2279
  id: string;
@@ -2320,12 +2320,12 @@ export declare const commentContract: {
2320
2320
  textValue: string | null;
2321
2321
  booleanValue: boolean | null;
2322
2322
  numberValue: number | null;
2323
- dateValue: Date | null;
2323
+ dateValue: string | null;
2324
2324
  uploads: {
2325
2325
  id: string;
2326
- createdAt: Date;
2327
- updatedAt: Date;
2328
- deletedAt: Date | null;
2326
+ createdAt: string;
2327
+ updatedAt: string;
2328
+ deletedAt: string | null;
2329
2329
  customFieldId: string;
2330
2330
  upload: {
2331
2331
  id: string;
@@ -2377,12 +2377,12 @@ export declare const commentContract: {
2377
2377
  textValue: string | null;
2378
2378
  booleanValue: boolean | null;
2379
2379
  numberValue: number | null;
2380
- dateValue: Date | null;
2380
+ dateValue: string | null;
2381
2381
  uploads: {
2382
2382
  id: string;
2383
- createdAt: Date;
2384
- updatedAt: Date;
2385
- deletedAt: Date | null;
2383
+ createdAt: string;
2384
+ updatedAt: string;
2385
+ deletedAt: string | null;
2386
2386
  customFieldId: string;
2387
2387
  upload: {
2388
2388
  id: string;
@@ -2404,89 +2404,89 @@ export declare const commentContract: {
2404
2404
  }>;
2405
2405
  agent: z.ZodObject<{
2406
2406
  id: z.ZodString;
2407
- createdAt: z.ZodDate;
2408
- updatedAt: z.ZodDate;
2409
- deletedAt: z.ZodNullable<z.ZodDate>;
2407
+ createdAt: z.ZodString;
2408
+ updatedAt: z.ZodString;
2409
+ deletedAt: z.ZodNullable<z.ZodString>;
2410
2410
  name: z.ZodString;
2411
2411
  email: z.ZodString;
2412
- emailVerifiedAt: z.ZodNullable<z.ZodDate>;
2412
+ emailVerifiedAt: z.ZodNullable<z.ZodString>;
2413
2413
  password: z.ZodString;
2414
2414
  address: z.ZodNullable<z.ZodString>;
2415
2415
  phone: z.ZodNullable<z.ZodString>;
2416
2416
  notificationCount: z.ZodNullable<z.ZodNumber>;
2417
2417
  roles: z.ZodArray<z.ZodObject<{
2418
2418
  id: z.ZodString;
2419
- createdAt: z.ZodDate;
2420
- updatedAt: z.ZodDate;
2421
- deletedAt: z.ZodNullable<z.ZodDate>;
2419
+ createdAt: z.ZodString;
2420
+ updatedAt: z.ZodString;
2421
+ deletedAt: z.ZodNullable<z.ZodString>;
2422
2422
  systemName: z.ZodString;
2423
2423
  displayName: z.ZodString;
2424
2424
  description: z.ZodNullable<z.ZodString>;
2425
2425
  permissions: z.ZodArray<z.ZodObject<{
2426
2426
  id: z.ZodString;
2427
- createdAt: z.ZodDate;
2428
- updatedAt: z.ZodDate;
2429
- deletedAt: z.ZodNullable<z.ZodDate>;
2427
+ createdAt: z.ZodString;
2428
+ updatedAt: z.ZodString;
2429
+ deletedAt: z.ZodNullable<z.ZodString>;
2430
2430
  systemName: z.ZodString;
2431
2431
  displayName: z.ZodString;
2432
2432
  description: z.ZodNullable<z.ZodString>;
2433
2433
  }, "strip", z.ZodTypeAny, {
2434
2434
  id: string;
2435
2435
  description: string | null;
2436
- createdAt: Date;
2437
- updatedAt: Date;
2438
- deletedAt: Date | null;
2436
+ createdAt: string;
2437
+ updatedAt: string;
2438
+ deletedAt: string | null;
2439
2439
  systemName: string;
2440
2440
  displayName: string;
2441
2441
  }, {
2442
2442
  id: string;
2443
2443
  description: string | null;
2444
- createdAt: Date;
2445
- updatedAt: Date;
2446
- deletedAt: Date | null;
2444
+ createdAt: string;
2445
+ updatedAt: string;
2446
+ deletedAt: string | null;
2447
2447
  systemName: string;
2448
2448
  displayName: string;
2449
2449
  }>, "many">;
2450
2450
  }, "strip", z.ZodTypeAny, {
2451
2451
  id: string;
2452
2452
  description: string | null;
2453
- createdAt: Date;
2454
- updatedAt: Date;
2455
- deletedAt: Date | null;
2453
+ createdAt: string;
2454
+ updatedAt: string;
2455
+ deletedAt: string | null;
2456
2456
  systemName: string;
2457
2457
  displayName: string;
2458
2458
  permissions: {
2459
2459
  id: string;
2460
2460
  description: string | null;
2461
- createdAt: Date;
2462
- updatedAt: Date;
2463
- deletedAt: Date | null;
2461
+ createdAt: string;
2462
+ updatedAt: string;
2463
+ deletedAt: string | null;
2464
2464
  systemName: string;
2465
2465
  displayName: string;
2466
2466
  }[];
2467
2467
  }, {
2468
2468
  id: string;
2469
2469
  description: string | null;
2470
- createdAt: Date;
2471
- updatedAt: Date;
2472
- deletedAt: Date | null;
2470
+ createdAt: string;
2471
+ updatedAt: string;
2472
+ deletedAt: string | null;
2473
2473
  systemName: string;
2474
2474
  displayName: string;
2475
2475
  permissions: {
2476
2476
  id: string;
2477
2477
  description: string | null;
2478
- createdAt: Date;
2479
- updatedAt: Date;
2480
- deletedAt: Date | null;
2478
+ createdAt: string;
2479
+ updatedAt: string;
2480
+ deletedAt: string | null;
2481
2481
  systemName: string;
2482
2482
  displayName: string;
2483
2483
  }[];
2484
2484
  }>, "many">;
2485
2485
  extension: z.ZodOptional<z.ZodObject<{
2486
2486
  id: z.ZodString;
2487
- createdAt: z.ZodDate;
2488
- updatedAt: z.ZodDate;
2489
- deletedAt: z.ZodNullable<z.ZodDate>;
2487
+ createdAt: z.ZodString;
2488
+ updatedAt: z.ZodString;
2489
+ deletedAt: z.ZodNullable<z.ZodString>;
2490
2490
  userId: z.ZodNullable<z.ZodString>;
2491
2491
  sipServerUrl: z.ZodString;
2492
2492
  sipUserName: z.ZodString;
@@ -2495,9 +2495,9 @@ export declare const commentContract: {
2495
2495
  telephonySignature: z.ZodNullable<z.ZodString>;
2496
2496
  }, "strip", z.ZodTypeAny, {
2497
2497
  id: string;
2498
- createdAt: Date;
2499
- updatedAt: Date;
2500
- deletedAt: Date | null;
2498
+ createdAt: string;
2499
+ updatedAt: string;
2500
+ deletedAt: string | null;
2501
2501
  userId: string | null;
2502
2502
  sipServerUrl: string;
2503
2503
  sipUserName: string;
@@ -2506,9 +2506,9 @@ export declare const commentContract: {
2506
2506
  telephonySignature: string | null;
2507
2507
  }, {
2508
2508
  id: string;
2509
- createdAt: Date;
2510
- updatedAt: Date;
2511
- deletedAt: Date | null;
2509
+ createdAt: string;
2510
+ updatedAt: string;
2511
+ deletedAt: string | null;
2512
2512
  userId: string | null;
2513
2513
  sipServerUrl: string;
2514
2514
  sipUserName: string;
@@ -2521,36 +2521,36 @@ export declare const commentContract: {
2521
2521
  address: string | null;
2522
2522
  name: string;
2523
2523
  email: string;
2524
- createdAt: Date;
2525
- updatedAt: Date;
2526
- deletedAt: Date | null;
2527
- emailVerifiedAt: Date | null;
2524
+ createdAt: string;
2525
+ updatedAt: string;
2526
+ deletedAt: string | null;
2527
+ emailVerifiedAt: string | null;
2528
2528
  password: string;
2529
2529
  phone: string | null;
2530
2530
  notificationCount: number | null;
2531
2531
  roles: {
2532
2532
  id: string;
2533
2533
  description: string | null;
2534
- createdAt: Date;
2535
- updatedAt: Date;
2536
- deletedAt: Date | null;
2534
+ createdAt: string;
2535
+ updatedAt: string;
2536
+ deletedAt: string | null;
2537
2537
  systemName: string;
2538
2538
  displayName: string;
2539
2539
  permissions: {
2540
2540
  id: string;
2541
2541
  description: string | null;
2542
- createdAt: Date;
2543
- updatedAt: Date;
2544
- deletedAt: Date | null;
2542
+ createdAt: string;
2543
+ updatedAt: string;
2544
+ deletedAt: string | null;
2545
2545
  systemName: string;
2546
2546
  displayName: string;
2547
2547
  }[];
2548
2548
  }[];
2549
2549
  extension?: {
2550
2550
  id: string;
2551
- createdAt: Date;
2552
- updatedAt: Date;
2553
- deletedAt: Date | null;
2551
+ createdAt: string;
2552
+ updatedAt: string;
2553
+ deletedAt: string | null;
2554
2554
  userId: string | null;
2555
2555
  sipServerUrl: string;
2556
2556
  sipUserName: string;
@@ -2563,36 +2563,36 @@ export declare const commentContract: {
2563
2563
  address: string | null;
2564
2564
  name: string;
2565
2565
  email: string;
2566
- createdAt: Date;
2567
- updatedAt: Date;
2568
- deletedAt: Date | null;
2569
- emailVerifiedAt: Date | null;
2566
+ createdAt: string;
2567
+ updatedAt: string;
2568
+ deletedAt: string | null;
2569
+ emailVerifiedAt: string | null;
2570
2570
  password: string;
2571
2571
  phone: string | null;
2572
2572
  notificationCount: number | null;
2573
2573
  roles: {
2574
2574
  id: string;
2575
2575
  description: string | null;
2576
- createdAt: Date;
2577
- updatedAt: Date;
2578
- deletedAt: Date | null;
2576
+ createdAt: string;
2577
+ updatedAt: string;
2578
+ deletedAt: string | null;
2579
2579
  systemName: string;
2580
2580
  displayName: string;
2581
2581
  permissions: {
2582
2582
  id: string;
2583
2583
  description: string | null;
2584
- createdAt: Date;
2585
- updatedAt: Date;
2586
- deletedAt: Date | null;
2584
+ createdAt: string;
2585
+ updatedAt: string;
2586
+ deletedAt: string | null;
2587
2587
  systemName: string;
2588
2588
  displayName: string;
2589
2589
  }[];
2590
2590
  }[];
2591
2591
  extension?: {
2592
2592
  id: string;
2593
- createdAt: Date;
2594
- updatedAt: Date;
2595
- deletedAt: Date | null;
2593
+ createdAt: string;
2594
+ updatedAt: string;
2595
+ deletedAt: string | null;
2596
2596
  userId: string | null;
2597
2597
  sipServerUrl: string;
2598
2598
  sipUserName: string;
@@ -2603,50 +2603,50 @@ export declare const commentContract: {
2603
2603
  }>;
2604
2604
  }, "strip", z.ZodTypeAny, {
2605
2605
  id: string;
2606
- createdAt: Date;
2607
- updatedAt: Date;
2608
- deletedAt: Date | null;
2606
+ createdAt: string;
2607
+ updatedAt: string;
2608
+ deletedAt: string | null;
2609
2609
  activityLogs: {
2610
2610
  id: string;
2611
2611
  description: string;
2612
- createdAt: Date;
2613
- updatedAt: Date;
2614
- deletedAt: Date | null;
2612
+ createdAt: string;
2613
+ updatedAt: string;
2614
+ deletedAt: string | null;
2615
2615
  actor: {
2616
2616
  id: string;
2617
2617
  address: string | null;
2618
2618
  name: string;
2619
2619
  email: string;
2620
- createdAt: Date;
2621
- updatedAt: Date;
2622
- deletedAt: Date | null;
2623
- emailVerifiedAt: Date | null;
2620
+ createdAt: string;
2621
+ updatedAt: string;
2622
+ deletedAt: string | null;
2623
+ emailVerifiedAt: string | null;
2624
2624
  password: string;
2625
2625
  phone: string | null;
2626
2626
  notificationCount: number | null;
2627
2627
  roles: {
2628
2628
  id: string;
2629
2629
  description: string | null;
2630
- createdAt: Date;
2631
- updatedAt: Date;
2632
- deletedAt: Date | null;
2630
+ createdAt: string;
2631
+ updatedAt: string;
2632
+ deletedAt: string | null;
2633
2633
  systemName: string;
2634
2634
  displayName: string;
2635
2635
  permissions: {
2636
2636
  id: string;
2637
2637
  description: string | null;
2638
- createdAt: Date;
2639
- updatedAt: Date;
2640
- deletedAt: Date | null;
2638
+ createdAt: string;
2639
+ updatedAt: string;
2640
+ deletedAt: string | null;
2641
2641
  systemName: string;
2642
2642
  displayName: string;
2643
2643
  }[];
2644
2644
  }[];
2645
2645
  extension?: {
2646
2646
  id: string;
2647
- createdAt: Date;
2648
- updatedAt: Date;
2649
- deletedAt: Date | null;
2647
+ createdAt: string;
2648
+ updatedAt: string;
2649
+ deletedAt: string | null;
2650
2650
  userId: string | null;
2651
2651
  sipServerUrl: string;
2652
2652
  sipUserName: string;
@@ -2659,9 +2659,9 @@ export declare const commentContract: {
2659
2659
  entityType: {
2660
2660
  id: string;
2661
2661
  description: string;
2662
- createdAt: Date;
2663
- updatedAt: Date;
2664
- deletedAt: Date | null;
2662
+ createdAt: string;
2663
+ updatedAt: string;
2664
+ deletedAt: string | null;
2665
2665
  entity: string;
2666
2666
  };
2667
2667
  }[];
@@ -2670,36 +2670,36 @@ export declare const commentContract: {
2670
2670
  address: string | null;
2671
2671
  name: string;
2672
2672
  email: string;
2673
- createdAt: Date;
2674
- updatedAt: Date;
2675
- deletedAt: Date | null;
2676
- emailVerifiedAt: Date | null;
2673
+ createdAt: string;
2674
+ updatedAt: string;
2675
+ deletedAt: string | null;
2676
+ emailVerifiedAt: string | null;
2677
2677
  password: string;
2678
2678
  phone: string | null;
2679
2679
  notificationCount: number | null;
2680
2680
  roles: {
2681
2681
  id: string;
2682
2682
  description: string | null;
2683
- createdAt: Date;
2684
- updatedAt: Date;
2685
- deletedAt: Date | null;
2683
+ createdAt: string;
2684
+ updatedAt: string;
2685
+ deletedAt: string | null;
2686
2686
  systemName: string;
2687
2687
  displayName: string;
2688
2688
  permissions: {
2689
2689
  id: string;
2690
2690
  description: string | null;
2691
- createdAt: Date;
2692
- updatedAt: Date;
2693
- deletedAt: Date | null;
2691
+ createdAt: string;
2692
+ updatedAt: string;
2693
+ deletedAt: string | null;
2694
2694
  systemName: string;
2695
2695
  displayName: string;
2696
2696
  }[];
2697
2697
  }[];
2698
2698
  extension?: {
2699
2699
  id: string;
2700
- createdAt: Date;
2701
- updatedAt: Date;
2702
- deletedAt: Date | null;
2700
+ createdAt: string;
2701
+ updatedAt: string;
2702
+ deletedAt: string | null;
2703
2703
  userId: string | null;
2704
2704
  sipServerUrl: string;
2705
2705
  sipUserName: string;
@@ -2741,12 +2741,12 @@ export declare const commentContract: {
2741
2741
  textValue: string | null;
2742
2742
  booleanValue: boolean | null;
2743
2743
  numberValue: number | null;
2744
- dateValue: Date | null;
2744
+ dateValue: string | null;
2745
2745
  uploads: {
2746
2746
  id: string;
2747
- createdAt: Date;
2748
- updatedAt: Date;
2749
- deletedAt: Date | null;
2747
+ createdAt: string;
2748
+ updatedAt: string;
2749
+ deletedAt: string | null;
2750
2750
  customFieldId: string;
2751
2751
  upload: {
2752
2752
  id: string;
@@ -2770,50 +2770,50 @@ export declare const commentContract: {
2770
2770
  mentions: string[];
2771
2771
  }, {
2772
2772
  id: string;
2773
- createdAt: Date;
2774
- updatedAt: Date;
2775
- deletedAt: Date | null;
2773
+ createdAt: string;
2774
+ updatedAt: string;
2775
+ deletedAt: string | null;
2776
2776
  activityLogs: {
2777
2777
  id: string;
2778
2778
  description: string;
2779
- createdAt: Date;
2780
- updatedAt: Date;
2781
- deletedAt: Date | null;
2779
+ createdAt: string;
2780
+ updatedAt: string;
2781
+ deletedAt: string | null;
2782
2782
  actor: {
2783
2783
  id: string;
2784
2784
  address: string | null;
2785
2785
  name: string;
2786
2786
  email: string;
2787
- createdAt: Date;
2788
- updatedAt: Date;
2789
- deletedAt: Date | null;
2790
- emailVerifiedAt: Date | null;
2787
+ createdAt: string;
2788
+ updatedAt: string;
2789
+ deletedAt: string | null;
2790
+ emailVerifiedAt: string | null;
2791
2791
  password: string;
2792
2792
  phone: string | null;
2793
2793
  notificationCount: number | null;
2794
2794
  roles: {
2795
2795
  id: string;
2796
2796
  description: string | null;
2797
- createdAt: Date;
2798
- updatedAt: Date;
2799
- deletedAt: Date | null;
2797
+ createdAt: string;
2798
+ updatedAt: string;
2799
+ deletedAt: string | null;
2800
2800
  systemName: string;
2801
2801
  displayName: string;
2802
2802
  permissions: {
2803
2803
  id: string;
2804
2804
  description: string | null;
2805
- createdAt: Date;
2806
- updatedAt: Date;
2807
- deletedAt: Date | null;
2805
+ createdAt: string;
2806
+ updatedAt: string;
2807
+ deletedAt: string | null;
2808
2808
  systemName: string;
2809
2809
  displayName: string;
2810
2810
  }[];
2811
2811
  }[];
2812
2812
  extension?: {
2813
2813
  id: string;
2814
- createdAt: Date;
2815
- updatedAt: Date;
2816
- deletedAt: Date | null;
2814
+ createdAt: string;
2815
+ updatedAt: string;
2816
+ deletedAt: string | null;
2817
2817
  userId: string | null;
2818
2818
  sipServerUrl: string;
2819
2819
  sipUserName: string;
@@ -2826,9 +2826,9 @@ export declare const commentContract: {
2826
2826
  entityType: {
2827
2827
  id: string;
2828
2828
  description: string;
2829
- createdAt: Date;
2830
- updatedAt: Date;
2831
- deletedAt: Date | null;
2829
+ createdAt: string;
2830
+ updatedAt: string;
2831
+ deletedAt: string | null;
2832
2832
  entity: string;
2833
2833
  };
2834
2834
  }[];
@@ -2837,36 +2837,36 @@ export declare const commentContract: {
2837
2837
  address: string | null;
2838
2838
  name: string;
2839
2839
  email: string;
2840
- createdAt: Date;
2841
- updatedAt: Date;
2842
- deletedAt: Date | null;
2843
- emailVerifiedAt: Date | null;
2840
+ createdAt: string;
2841
+ updatedAt: string;
2842
+ deletedAt: string | null;
2843
+ emailVerifiedAt: string | null;
2844
2844
  password: string;
2845
2845
  phone: string | null;
2846
2846
  notificationCount: number | null;
2847
2847
  roles: {
2848
2848
  id: string;
2849
2849
  description: string | null;
2850
- createdAt: Date;
2851
- updatedAt: Date;
2852
- deletedAt: Date | null;
2850
+ createdAt: string;
2851
+ updatedAt: string;
2852
+ deletedAt: string | null;
2853
2853
  systemName: string;
2854
2854
  displayName: string;
2855
2855
  permissions: {
2856
2856
  id: string;
2857
2857
  description: string | null;
2858
- createdAt: Date;
2859
- updatedAt: Date;
2860
- deletedAt: Date | null;
2858
+ createdAt: string;
2859
+ updatedAt: string;
2860
+ deletedAt: string | null;
2861
2861
  systemName: string;
2862
2862
  displayName: string;
2863
2863
  }[];
2864
2864
  }[];
2865
2865
  extension?: {
2866
2866
  id: string;
2867
- createdAt: Date;
2868
- updatedAt: Date;
2869
- deletedAt: Date | null;
2867
+ createdAt: string;
2868
+ updatedAt: string;
2869
+ deletedAt: string | null;
2870
2870
  userId: string | null;
2871
2871
  sipServerUrl: string;
2872
2872
  sipUserName: string;
@@ -2908,12 +2908,12 @@ export declare const commentContract: {
2908
2908
  textValue: string | null;
2909
2909
  booleanValue: boolean | null;
2910
2910
  numberValue: number | null;
2911
- dateValue: Date | null;
2911
+ dateValue: string | null;
2912
2912
  uploads: {
2913
2913
  id: string;
2914
- createdAt: Date;
2915
- updatedAt: Date;
2916
- deletedAt: Date | null;
2914
+ createdAt: string;
2915
+ updatedAt: string;
2916
+ deletedAt: string | null;
2917
2917
  customFieldId: string;
2918
2918
  upload: {
2919
2919
  id: string;
@@ -3010,99 +3010,99 @@ export declare const commentContract: {
3010
3010
  requestId: z.ZodString;
3011
3011
  comment: z.ZodObject<{
3012
3012
  id: z.ZodString;
3013
- createdAt: z.ZodDate;
3014
- updatedAt: z.ZodDate;
3015
- deletedAt: z.ZodNullable<z.ZodDate>;
3013
+ createdAt: z.ZodString;
3014
+ updatedAt: z.ZodString;
3015
+ deletedAt: z.ZodNullable<z.ZodString>;
3016
3016
  activityLogs: z.ZodArray<z.ZodObject<{
3017
3017
  id: z.ZodString;
3018
- createdAt: z.ZodDate;
3019
- updatedAt: z.ZodDate;
3020
- deletedAt: z.ZodNullable<z.ZodDate>;
3018
+ createdAt: z.ZodString;
3019
+ updatedAt: z.ZodString;
3020
+ deletedAt: z.ZodNullable<z.ZodString>;
3021
3021
  actor: z.ZodObject<{
3022
3022
  id: z.ZodString;
3023
- createdAt: z.ZodDate;
3024
- updatedAt: z.ZodDate;
3025
- deletedAt: z.ZodNullable<z.ZodDate>;
3023
+ createdAt: z.ZodString;
3024
+ updatedAt: z.ZodString;
3025
+ deletedAt: z.ZodNullable<z.ZodString>;
3026
3026
  name: z.ZodString;
3027
3027
  email: z.ZodString;
3028
- emailVerifiedAt: z.ZodNullable<z.ZodDate>;
3028
+ emailVerifiedAt: z.ZodNullable<z.ZodString>;
3029
3029
  password: z.ZodString;
3030
3030
  address: z.ZodNullable<z.ZodString>;
3031
3031
  phone: z.ZodNullable<z.ZodString>;
3032
3032
  notificationCount: z.ZodNullable<z.ZodNumber>;
3033
3033
  roles: z.ZodArray<z.ZodObject<{
3034
3034
  id: z.ZodString;
3035
- createdAt: z.ZodDate;
3036
- updatedAt: z.ZodDate;
3037
- deletedAt: z.ZodNullable<z.ZodDate>;
3035
+ createdAt: z.ZodString;
3036
+ updatedAt: z.ZodString;
3037
+ deletedAt: z.ZodNullable<z.ZodString>;
3038
3038
  systemName: z.ZodString;
3039
3039
  displayName: z.ZodString;
3040
3040
  description: z.ZodNullable<z.ZodString>;
3041
3041
  permissions: z.ZodArray<z.ZodObject<{
3042
3042
  id: z.ZodString;
3043
- createdAt: z.ZodDate;
3044
- updatedAt: z.ZodDate;
3045
- deletedAt: z.ZodNullable<z.ZodDate>;
3043
+ createdAt: z.ZodString;
3044
+ updatedAt: z.ZodString;
3045
+ deletedAt: z.ZodNullable<z.ZodString>;
3046
3046
  systemName: z.ZodString;
3047
3047
  displayName: z.ZodString;
3048
3048
  description: z.ZodNullable<z.ZodString>;
3049
3049
  }, "strip", z.ZodTypeAny, {
3050
3050
  id: string;
3051
3051
  description: string | null;
3052
- createdAt: Date;
3053
- updatedAt: Date;
3054
- deletedAt: Date | null;
3052
+ createdAt: string;
3053
+ updatedAt: string;
3054
+ deletedAt: string | null;
3055
3055
  systemName: string;
3056
3056
  displayName: string;
3057
3057
  }, {
3058
3058
  id: string;
3059
3059
  description: string | null;
3060
- createdAt: Date;
3061
- updatedAt: Date;
3062
- deletedAt: Date | null;
3060
+ createdAt: string;
3061
+ updatedAt: string;
3062
+ deletedAt: string | null;
3063
3063
  systemName: string;
3064
3064
  displayName: string;
3065
3065
  }>, "many">;
3066
3066
  }, "strip", z.ZodTypeAny, {
3067
3067
  id: string;
3068
3068
  description: string | null;
3069
- createdAt: Date;
3070
- updatedAt: Date;
3071
- deletedAt: Date | null;
3069
+ createdAt: string;
3070
+ updatedAt: string;
3071
+ deletedAt: string | null;
3072
3072
  systemName: string;
3073
3073
  displayName: string;
3074
3074
  permissions: {
3075
3075
  id: string;
3076
3076
  description: string | null;
3077
- createdAt: Date;
3078
- updatedAt: Date;
3079
- deletedAt: Date | null;
3077
+ createdAt: string;
3078
+ updatedAt: string;
3079
+ deletedAt: string | null;
3080
3080
  systemName: string;
3081
3081
  displayName: string;
3082
3082
  }[];
3083
3083
  }, {
3084
3084
  id: string;
3085
3085
  description: string | null;
3086
- createdAt: Date;
3087
- updatedAt: Date;
3088
- deletedAt: Date | null;
3086
+ createdAt: string;
3087
+ updatedAt: string;
3088
+ deletedAt: string | null;
3089
3089
  systemName: string;
3090
3090
  displayName: string;
3091
3091
  permissions: {
3092
3092
  id: string;
3093
3093
  description: string | null;
3094
- createdAt: Date;
3095
- updatedAt: Date;
3096
- deletedAt: Date | null;
3094
+ createdAt: string;
3095
+ updatedAt: string;
3096
+ deletedAt: string | null;
3097
3097
  systemName: string;
3098
3098
  displayName: string;
3099
3099
  }[];
3100
3100
  }>, "many">;
3101
3101
  extension: z.ZodOptional<z.ZodObject<{
3102
3102
  id: z.ZodString;
3103
- createdAt: z.ZodDate;
3104
- updatedAt: z.ZodDate;
3105
- deletedAt: z.ZodNullable<z.ZodDate>;
3103
+ createdAt: z.ZodString;
3104
+ updatedAt: z.ZodString;
3105
+ deletedAt: z.ZodNullable<z.ZodString>;
3106
3106
  userId: z.ZodNullable<z.ZodString>;
3107
3107
  sipServerUrl: z.ZodString;
3108
3108
  sipUserName: z.ZodString;
@@ -3111,9 +3111,9 @@ export declare const commentContract: {
3111
3111
  telephonySignature: z.ZodNullable<z.ZodString>;
3112
3112
  }, "strip", z.ZodTypeAny, {
3113
3113
  id: string;
3114
- createdAt: Date;
3115
- updatedAt: Date;
3116
- deletedAt: Date | null;
3114
+ createdAt: string;
3115
+ updatedAt: string;
3116
+ deletedAt: string | null;
3117
3117
  userId: string | null;
3118
3118
  sipServerUrl: string;
3119
3119
  sipUserName: string;
@@ -3122,9 +3122,9 @@ export declare const commentContract: {
3122
3122
  telephonySignature: string | null;
3123
3123
  }, {
3124
3124
  id: string;
3125
- createdAt: Date;
3126
- updatedAt: Date;
3127
- deletedAt: Date | null;
3125
+ createdAt: string;
3126
+ updatedAt: string;
3127
+ deletedAt: string | null;
3128
3128
  userId: string | null;
3129
3129
  sipServerUrl: string;
3130
3130
  sipUserName: string;
@@ -3137,36 +3137,36 @@ export declare const commentContract: {
3137
3137
  address: string | null;
3138
3138
  name: string;
3139
3139
  email: string;
3140
- createdAt: Date;
3141
- updatedAt: Date;
3142
- deletedAt: Date | null;
3143
- emailVerifiedAt: Date | null;
3140
+ createdAt: string;
3141
+ updatedAt: string;
3142
+ deletedAt: string | null;
3143
+ emailVerifiedAt: string | null;
3144
3144
  password: string;
3145
3145
  phone: string | null;
3146
3146
  notificationCount: number | null;
3147
3147
  roles: {
3148
3148
  id: string;
3149
3149
  description: string | null;
3150
- createdAt: Date;
3151
- updatedAt: Date;
3152
- deletedAt: Date | null;
3150
+ createdAt: string;
3151
+ updatedAt: string;
3152
+ deletedAt: string | null;
3153
3153
  systemName: string;
3154
3154
  displayName: string;
3155
3155
  permissions: {
3156
3156
  id: string;
3157
3157
  description: string | null;
3158
- createdAt: Date;
3159
- updatedAt: Date;
3160
- deletedAt: Date | null;
3158
+ createdAt: string;
3159
+ updatedAt: string;
3160
+ deletedAt: string | null;
3161
3161
  systemName: string;
3162
3162
  displayName: string;
3163
3163
  }[];
3164
3164
  }[];
3165
3165
  extension?: {
3166
3166
  id: string;
3167
- createdAt: Date;
3168
- updatedAt: Date;
3169
- deletedAt: Date | null;
3167
+ createdAt: string;
3168
+ updatedAt: string;
3169
+ deletedAt: string | null;
3170
3170
  userId: string | null;
3171
3171
  sipServerUrl: string;
3172
3172
  sipUserName: string;
@@ -3179,36 +3179,36 @@ export declare const commentContract: {
3179
3179
  address: string | null;
3180
3180
  name: string;
3181
3181
  email: string;
3182
- createdAt: Date;
3183
- updatedAt: Date;
3184
- deletedAt: Date | null;
3185
- emailVerifiedAt: Date | null;
3182
+ createdAt: string;
3183
+ updatedAt: string;
3184
+ deletedAt: string | null;
3185
+ emailVerifiedAt: string | null;
3186
3186
  password: string;
3187
3187
  phone: string | null;
3188
3188
  notificationCount: number | null;
3189
3189
  roles: {
3190
3190
  id: string;
3191
3191
  description: string | null;
3192
- createdAt: Date;
3193
- updatedAt: Date;
3194
- deletedAt: Date | null;
3192
+ createdAt: string;
3193
+ updatedAt: string;
3194
+ deletedAt: string | null;
3195
3195
  systemName: string;
3196
3196
  displayName: string;
3197
3197
  permissions: {
3198
3198
  id: string;
3199
3199
  description: string | null;
3200
- createdAt: Date;
3201
- updatedAt: Date;
3202
- deletedAt: Date | null;
3200
+ createdAt: string;
3201
+ updatedAt: string;
3202
+ deletedAt: string | null;
3203
3203
  systemName: string;
3204
3204
  displayName: string;
3205
3205
  }[];
3206
3206
  }[];
3207
3207
  extension?: {
3208
3208
  id: string;
3209
- createdAt: Date;
3210
- updatedAt: Date;
3211
- deletedAt: Date | null;
3209
+ createdAt: string;
3210
+ updatedAt: string;
3211
+ deletedAt: string | null;
3212
3212
  userId: string | null;
3213
3213
  sipServerUrl: string;
3214
3214
  sipUserName: string;
@@ -3221,67 +3221,67 @@ export declare const commentContract: {
3221
3221
  description: z.ZodString;
3222
3222
  entityType: z.ZodObject<{
3223
3223
  id: z.ZodString;
3224
- createdAt: z.ZodDate;
3225
- updatedAt: z.ZodDate;
3226
- deletedAt: z.ZodNullable<z.ZodDate>;
3224
+ createdAt: z.ZodString;
3225
+ updatedAt: z.ZodString;
3226
+ deletedAt: z.ZodNullable<z.ZodString>;
3227
3227
  entity: z.ZodString;
3228
3228
  description: z.ZodString;
3229
3229
  }, "strip", z.ZodTypeAny, {
3230
3230
  id: string;
3231
3231
  description: string;
3232
- createdAt: Date;
3233
- updatedAt: Date;
3234
- deletedAt: Date | null;
3232
+ createdAt: string;
3233
+ updatedAt: string;
3234
+ deletedAt: string | null;
3235
3235
  entity: string;
3236
3236
  }, {
3237
3237
  id: string;
3238
3238
  description: string;
3239
- createdAt: Date;
3240
- updatedAt: Date;
3241
- deletedAt: Date | null;
3239
+ createdAt: string;
3240
+ updatedAt: string;
3241
+ deletedAt: string | null;
3242
3242
  entity: string;
3243
3243
  }>;
3244
3244
  }, "strip", z.ZodTypeAny, {
3245
3245
  id: string;
3246
3246
  description: string;
3247
- createdAt: Date;
3248
- updatedAt: Date;
3249
- deletedAt: Date | null;
3247
+ createdAt: string;
3248
+ updatedAt: string;
3249
+ deletedAt: string | null;
3250
3250
  actor: {
3251
3251
  id: string;
3252
3252
  address: string | null;
3253
3253
  name: string;
3254
3254
  email: string;
3255
- createdAt: Date;
3256
- updatedAt: Date;
3257
- deletedAt: Date | null;
3258
- emailVerifiedAt: Date | null;
3255
+ createdAt: string;
3256
+ updatedAt: string;
3257
+ deletedAt: string | null;
3258
+ emailVerifiedAt: string | null;
3259
3259
  password: string;
3260
3260
  phone: string | null;
3261
3261
  notificationCount: number | null;
3262
3262
  roles: {
3263
3263
  id: string;
3264
3264
  description: string | null;
3265
- createdAt: Date;
3266
- updatedAt: Date;
3267
- deletedAt: Date | null;
3265
+ createdAt: string;
3266
+ updatedAt: string;
3267
+ deletedAt: string | null;
3268
3268
  systemName: string;
3269
3269
  displayName: string;
3270
3270
  permissions: {
3271
3271
  id: string;
3272
3272
  description: string | null;
3273
- createdAt: Date;
3274
- updatedAt: Date;
3275
- deletedAt: Date | null;
3273
+ createdAt: string;
3274
+ updatedAt: string;
3275
+ deletedAt: string | null;
3276
3276
  systemName: string;
3277
3277
  displayName: string;
3278
3278
  }[];
3279
3279
  }[];
3280
3280
  extension?: {
3281
3281
  id: string;
3282
- createdAt: Date;
3283
- updatedAt: Date;
3284
- deletedAt: Date | null;
3282
+ createdAt: string;
3283
+ updatedAt: string;
3284
+ deletedAt: string | null;
3285
3285
  userId: string | null;
3286
3286
  sipServerUrl: string;
3287
3287
  sipUserName: string;
@@ -3294,52 +3294,52 @@ export declare const commentContract: {
3294
3294
  entityType: {
3295
3295
  id: string;
3296
3296
  description: string;
3297
- createdAt: Date;
3298
- updatedAt: Date;
3299
- deletedAt: Date | null;
3297
+ createdAt: string;
3298
+ updatedAt: string;
3299
+ deletedAt: string | null;
3300
3300
  entity: string;
3301
3301
  };
3302
3302
  }, {
3303
3303
  id: string;
3304
3304
  description: string;
3305
- createdAt: Date;
3306
- updatedAt: Date;
3307
- deletedAt: Date | null;
3305
+ createdAt: string;
3306
+ updatedAt: string;
3307
+ deletedAt: string | null;
3308
3308
  actor: {
3309
3309
  id: string;
3310
3310
  address: string | null;
3311
3311
  name: string;
3312
3312
  email: string;
3313
- createdAt: Date;
3314
- updatedAt: Date;
3315
- deletedAt: Date | null;
3316
- emailVerifiedAt: Date | null;
3313
+ createdAt: string;
3314
+ updatedAt: string;
3315
+ deletedAt: string | null;
3316
+ emailVerifiedAt: string | null;
3317
3317
  password: string;
3318
3318
  phone: string | null;
3319
3319
  notificationCount: number | null;
3320
3320
  roles: {
3321
3321
  id: string;
3322
3322
  description: string | null;
3323
- createdAt: Date;
3324
- updatedAt: Date;
3325
- deletedAt: Date | null;
3323
+ createdAt: string;
3324
+ updatedAt: string;
3325
+ deletedAt: string | null;
3326
3326
  systemName: string;
3327
3327
  displayName: string;
3328
3328
  permissions: {
3329
3329
  id: string;
3330
3330
  description: string | null;
3331
- createdAt: Date;
3332
- updatedAt: Date;
3333
- deletedAt: Date | null;
3331
+ createdAt: string;
3332
+ updatedAt: string;
3333
+ deletedAt: string | null;
3334
3334
  systemName: string;
3335
3335
  displayName: string;
3336
3336
  }[];
3337
3337
  }[];
3338
3338
  extension?: {
3339
3339
  id: string;
3340
- createdAt: Date;
3341
- updatedAt: Date;
3342
- deletedAt: Date | null;
3340
+ createdAt: string;
3341
+ updatedAt: string;
3342
+ deletedAt: string | null;
3343
3343
  userId: string | null;
3344
3344
  sipServerUrl: string;
3345
3345
  sipUserName: string;
@@ -3352,9 +3352,9 @@ export declare const commentContract: {
3352
3352
  entityType: {
3353
3353
  id: string;
3354
3354
  description: string;
3355
- createdAt: Date;
3356
- updatedAt: Date;
3357
- deletedAt: Date | null;
3355
+ createdAt: string;
3356
+ updatedAt: string;
3357
+ deletedAt: string | null;
3358
3358
  entity: string;
3359
3359
  };
3360
3360
  }>, "many">;
@@ -3384,7 +3384,7 @@ export declare const commentContract: {
3384
3384
  textValue: z.ZodNullable<z.ZodString>;
3385
3385
  booleanValue: z.ZodNullable<z.ZodBoolean>;
3386
3386
  numberValue: z.ZodNullable<z.ZodNumber>;
3387
- dateValue: z.ZodNullable<z.ZodDate>;
3387
+ dateValue: z.ZodNullable<z.ZodString>;
3388
3388
  attribute: z.ZodObject<Omit<{
3389
3389
  id: z.ZodString;
3390
3390
  createdAt: z.ZodString;
@@ -3468,9 +3468,9 @@ export declare const commentContract: {
3468
3468
  }>;
3469
3469
  uploads: z.ZodArray<z.ZodObject<{
3470
3470
  id: z.ZodString;
3471
- createdAt: z.ZodDate;
3472
- updatedAt: z.ZodDate;
3473
- deletedAt: z.ZodNullable<z.ZodDate>;
3471
+ createdAt: z.ZodString;
3472
+ updatedAt: z.ZodString;
3473
+ deletedAt: z.ZodNullable<z.ZodString>;
3474
3474
  customFieldId: z.ZodString;
3475
3475
  upload: z.ZodObject<{
3476
3476
  id: z.ZodString;
@@ -3502,9 +3502,9 @@ export declare const commentContract: {
3502
3502
  }>;
3503
3503
  }, "strip", z.ZodTypeAny, {
3504
3504
  id: string;
3505
- createdAt: Date;
3506
- updatedAt: Date;
3507
- deletedAt: Date | null;
3505
+ createdAt: string;
3506
+ updatedAt: string;
3507
+ deletedAt: string | null;
3508
3508
  customFieldId: string;
3509
3509
  upload: {
3510
3510
  id: string;
@@ -3518,9 +3518,9 @@ export declare const commentContract: {
3518
3518
  };
3519
3519
  }, {
3520
3520
  id: string;
3521
- createdAt: Date;
3522
- updatedAt: Date;
3523
- deletedAt: Date | null;
3521
+ createdAt: string;
3522
+ updatedAt: string;
3523
+ deletedAt: string | null;
3524
3524
  customFieldId: string;
3525
3525
  upload: {
3526
3526
  id: string;
@@ -3555,12 +3555,12 @@ export declare const commentContract: {
3555
3555
  textValue: string | null;
3556
3556
  booleanValue: boolean | null;
3557
3557
  numberValue: number | null;
3558
- dateValue: Date | null;
3558
+ dateValue: string | null;
3559
3559
  uploads: {
3560
3560
  id: string;
3561
- createdAt: Date;
3562
- updatedAt: Date;
3563
- deletedAt: Date | null;
3561
+ createdAt: string;
3562
+ updatedAt: string;
3563
+ deletedAt: string | null;
3564
3564
  customFieldId: string;
3565
3565
  upload: {
3566
3566
  id: string;
@@ -3595,12 +3595,12 @@ export declare const commentContract: {
3595
3595
  textValue: string | null;
3596
3596
  booleanValue: boolean | null;
3597
3597
  numberValue: number | null;
3598
- dateValue: Date | null;
3598
+ dateValue: string | null;
3599
3599
  uploads: {
3600
3600
  id: string;
3601
- createdAt: Date;
3602
- updatedAt: Date;
3603
- deletedAt: Date | null;
3601
+ createdAt: string;
3602
+ updatedAt: string;
3603
+ deletedAt: string | null;
3604
3604
  customFieldId: string;
3605
3605
  upload: {
3606
3606
  id: string;
@@ -3647,12 +3647,12 @@ export declare const commentContract: {
3647
3647
  textValue: string | null;
3648
3648
  booleanValue: boolean | null;
3649
3649
  numberValue: number | null;
3650
- dateValue: Date | null;
3650
+ dateValue: string | null;
3651
3651
  uploads: {
3652
3652
  id: string;
3653
- createdAt: Date;
3654
- updatedAt: Date;
3655
- deletedAt: Date | null;
3653
+ createdAt: string;
3654
+ updatedAt: string;
3655
+ deletedAt: string | null;
3656
3656
  customFieldId: string;
3657
3657
  upload: {
3658
3658
  id: string;
@@ -3704,12 +3704,12 @@ export declare const commentContract: {
3704
3704
  textValue: string | null;
3705
3705
  booleanValue: boolean | null;
3706
3706
  numberValue: number | null;
3707
- dateValue: Date | null;
3707
+ dateValue: string | null;
3708
3708
  uploads: {
3709
3709
  id: string;
3710
- createdAt: Date;
3711
- updatedAt: Date;
3712
- deletedAt: Date | null;
3710
+ createdAt: string;
3711
+ updatedAt: string;
3712
+ deletedAt: string | null;
3713
3713
  customFieldId: string;
3714
3714
  upload: {
3715
3715
  id: string;
@@ -3731,89 +3731,89 @@ export declare const commentContract: {
3731
3731
  }>;
3732
3732
  agent: z.ZodObject<{
3733
3733
  id: z.ZodString;
3734
- createdAt: z.ZodDate;
3735
- updatedAt: z.ZodDate;
3736
- deletedAt: z.ZodNullable<z.ZodDate>;
3734
+ createdAt: z.ZodString;
3735
+ updatedAt: z.ZodString;
3736
+ deletedAt: z.ZodNullable<z.ZodString>;
3737
3737
  name: z.ZodString;
3738
3738
  email: z.ZodString;
3739
- emailVerifiedAt: z.ZodNullable<z.ZodDate>;
3739
+ emailVerifiedAt: z.ZodNullable<z.ZodString>;
3740
3740
  password: z.ZodString;
3741
3741
  address: z.ZodNullable<z.ZodString>;
3742
3742
  phone: z.ZodNullable<z.ZodString>;
3743
3743
  notificationCount: z.ZodNullable<z.ZodNumber>;
3744
3744
  roles: z.ZodArray<z.ZodObject<{
3745
3745
  id: z.ZodString;
3746
- createdAt: z.ZodDate;
3747
- updatedAt: z.ZodDate;
3748
- deletedAt: z.ZodNullable<z.ZodDate>;
3746
+ createdAt: z.ZodString;
3747
+ updatedAt: z.ZodString;
3748
+ deletedAt: z.ZodNullable<z.ZodString>;
3749
3749
  systemName: z.ZodString;
3750
3750
  displayName: z.ZodString;
3751
3751
  description: z.ZodNullable<z.ZodString>;
3752
3752
  permissions: z.ZodArray<z.ZodObject<{
3753
3753
  id: z.ZodString;
3754
- createdAt: z.ZodDate;
3755
- updatedAt: z.ZodDate;
3756
- deletedAt: z.ZodNullable<z.ZodDate>;
3754
+ createdAt: z.ZodString;
3755
+ updatedAt: z.ZodString;
3756
+ deletedAt: z.ZodNullable<z.ZodString>;
3757
3757
  systemName: z.ZodString;
3758
3758
  displayName: z.ZodString;
3759
3759
  description: z.ZodNullable<z.ZodString>;
3760
3760
  }, "strip", z.ZodTypeAny, {
3761
3761
  id: string;
3762
3762
  description: string | null;
3763
- createdAt: Date;
3764
- updatedAt: Date;
3765
- deletedAt: Date | null;
3763
+ createdAt: string;
3764
+ updatedAt: string;
3765
+ deletedAt: string | null;
3766
3766
  systemName: string;
3767
3767
  displayName: string;
3768
3768
  }, {
3769
3769
  id: string;
3770
3770
  description: string | null;
3771
- createdAt: Date;
3772
- updatedAt: Date;
3773
- deletedAt: Date | null;
3771
+ createdAt: string;
3772
+ updatedAt: string;
3773
+ deletedAt: string | null;
3774
3774
  systemName: string;
3775
3775
  displayName: string;
3776
3776
  }>, "many">;
3777
3777
  }, "strip", z.ZodTypeAny, {
3778
3778
  id: string;
3779
3779
  description: string | null;
3780
- createdAt: Date;
3781
- updatedAt: Date;
3782
- deletedAt: Date | null;
3780
+ createdAt: string;
3781
+ updatedAt: string;
3782
+ deletedAt: string | null;
3783
3783
  systemName: string;
3784
3784
  displayName: string;
3785
3785
  permissions: {
3786
3786
  id: string;
3787
3787
  description: string | null;
3788
- createdAt: Date;
3789
- updatedAt: Date;
3790
- deletedAt: Date | null;
3788
+ createdAt: string;
3789
+ updatedAt: string;
3790
+ deletedAt: string | null;
3791
3791
  systemName: string;
3792
3792
  displayName: string;
3793
3793
  }[];
3794
3794
  }, {
3795
3795
  id: string;
3796
3796
  description: string | null;
3797
- createdAt: Date;
3798
- updatedAt: Date;
3799
- deletedAt: Date | null;
3797
+ createdAt: string;
3798
+ updatedAt: string;
3799
+ deletedAt: string | null;
3800
3800
  systemName: string;
3801
3801
  displayName: string;
3802
3802
  permissions: {
3803
3803
  id: string;
3804
3804
  description: string | null;
3805
- createdAt: Date;
3806
- updatedAt: Date;
3807
- deletedAt: Date | null;
3805
+ createdAt: string;
3806
+ updatedAt: string;
3807
+ deletedAt: string | null;
3808
3808
  systemName: string;
3809
3809
  displayName: string;
3810
3810
  }[];
3811
3811
  }>, "many">;
3812
3812
  extension: z.ZodOptional<z.ZodObject<{
3813
3813
  id: z.ZodString;
3814
- createdAt: z.ZodDate;
3815
- updatedAt: z.ZodDate;
3816
- deletedAt: z.ZodNullable<z.ZodDate>;
3814
+ createdAt: z.ZodString;
3815
+ updatedAt: z.ZodString;
3816
+ deletedAt: z.ZodNullable<z.ZodString>;
3817
3817
  userId: z.ZodNullable<z.ZodString>;
3818
3818
  sipServerUrl: z.ZodString;
3819
3819
  sipUserName: z.ZodString;
@@ -3822,9 +3822,9 @@ export declare const commentContract: {
3822
3822
  telephonySignature: z.ZodNullable<z.ZodString>;
3823
3823
  }, "strip", z.ZodTypeAny, {
3824
3824
  id: string;
3825
- createdAt: Date;
3826
- updatedAt: Date;
3827
- deletedAt: Date | null;
3825
+ createdAt: string;
3826
+ updatedAt: string;
3827
+ deletedAt: string | null;
3828
3828
  userId: string | null;
3829
3829
  sipServerUrl: string;
3830
3830
  sipUserName: string;
@@ -3833,9 +3833,9 @@ export declare const commentContract: {
3833
3833
  telephonySignature: string | null;
3834
3834
  }, {
3835
3835
  id: string;
3836
- createdAt: Date;
3837
- updatedAt: Date;
3838
- deletedAt: Date | null;
3836
+ createdAt: string;
3837
+ updatedAt: string;
3838
+ deletedAt: string | null;
3839
3839
  userId: string | null;
3840
3840
  sipServerUrl: string;
3841
3841
  sipUserName: string;
@@ -3848,36 +3848,36 @@ export declare const commentContract: {
3848
3848
  address: string | null;
3849
3849
  name: string;
3850
3850
  email: string;
3851
- createdAt: Date;
3852
- updatedAt: Date;
3853
- deletedAt: Date | null;
3854
- emailVerifiedAt: Date | null;
3851
+ createdAt: string;
3852
+ updatedAt: string;
3853
+ deletedAt: string | null;
3854
+ emailVerifiedAt: string | null;
3855
3855
  password: string;
3856
3856
  phone: string | null;
3857
3857
  notificationCount: number | null;
3858
3858
  roles: {
3859
3859
  id: string;
3860
3860
  description: string | null;
3861
- createdAt: Date;
3862
- updatedAt: Date;
3863
- deletedAt: Date | null;
3861
+ createdAt: string;
3862
+ updatedAt: string;
3863
+ deletedAt: string | null;
3864
3864
  systemName: string;
3865
3865
  displayName: string;
3866
3866
  permissions: {
3867
3867
  id: string;
3868
3868
  description: string | null;
3869
- createdAt: Date;
3870
- updatedAt: Date;
3871
- deletedAt: Date | null;
3869
+ createdAt: string;
3870
+ updatedAt: string;
3871
+ deletedAt: string | null;
3872
3872
  systemName: string;
3873
3873
  displayName: string;
3874
3874
  }[];
3875
3875
  }[];
3876
3876
  extension?: {
3877
3877
  id: string;
3878
- createdAt: Date;
3879
- updatedAt: Date;
3880
- deletedAt: Date | null;
3878
+ createdAt: string;
3879
+ updatedAt: string;
3880
+ deletedAt: string | null;
3881
3881
  userId: string | null;
3882
3882
  sipServerUrl: string;
3883
3883
  sipUserName: string;
@@ -3890,36 +3890,36 @@ export declare const commentContract: {
3890
3890
  address: string | null;
3891
3891
  name: string;
3892
3892
  email: string;
3893
- createdAt: Date;
3894
- updatedAt: Date;
3895
- deletedAt: Date | null;
3896
- emailVerifiedAt: Date | null;
3893
+ createdAt: string;
3894
+ updatedAt: string;
3895
+ deletedAt: string | null;
3896
+ emailVerifiedAt: string | null;
3897
3897
  password: string;
3898
3898
  phone: string | null;
3899
3899
  notificationCount: number | null;
3900
3900
  roles: {
3901
3901
  id: string;
3902
3902
  description: string | null;
3903
- createdAt: Date;
3904
- updatedAt: Date;
3905
- deletedAt: Date | null;
3903
+ createdAt: string;
3904
+ updatedAt: string;
3905
+ deletedAt: string | null;
3906
3906
  systemName: string;
3907
3907
  displayName: string;
3908
3908
  permissions: {
3909
3909
  id: string;
3910
3910
  description: string | null;
3911
- createdAt: Date;
3912
- updatedAt: Date;
3913
- deletedAt: Date | null;
3911
+ createdAt: string;
3912
+ updatedAt: string;
3913
+ deletedAt: string | null;
3914
3914
  systemName: string;
3915
3915
  displayName: string;
3916
3916
  }[];
3917
3917
  }[];
3918
3918
  extension?: {
3919
3919
  id: string;
3920
- createdAt: Date;
3921
- updatedAt: Date;
3922
- deletedAt: Date | null;
3920
+ createdAt: string;
3921
+ updatedAt: string;
3922
+ deletedAt: string | null;
3923
3923
  userId: string | null;
3924
3924
  sipServerUrl: string;
3925
3925
  sipUserName: string;
@@ -3930,50 +3930,50 @@ export declare const commentContract: {
3930
3930
  }>;
3931
3931
  }, "strip", z.ZodTypeAny, {
3932
3932
  id: string;
3933
- createdAt: Date;
3934
- updatedAt: Date;
3935
- deletedAt: Date | null;
3933
+ createdAt: string;
3934
+ updatedAt: string;
3935
+ deletedAt: string | null;
3936
3936
  activityLogs: {
3937
3937
  id: string;
3938
3938
  description: string;
3939
- createdAt: Date;
3940
- updatedAt: Date;
3941
- deletedAt: Date | null;
3939
+ createdAt: string;
3940
+ updatedAt: string;
3941
+ deletedAt: string | null;
3942
3942
  actor: {
3943
3943
  id: string;
3944
3944
  address: string | null;
3945
3945
  name: string;
3946
3946
  email: string;
3947
- createdAt: Date;
3948
- updatedAt: Date;
3949
- deletedAt: Date | null;
3950
- emailVerifiedAt: Date | null;
3947
+ createdAt: string;
3948
+ updatedAt: string;
3949
+ deletedAt: string | null;
3950
+ emailVerifiedAt: string | null;
3951
3951
  password: string;
3952
3952
  phone: string | null;
3953
3953
  notificationCount: number | null;
3954
3954
  roles: {
3955
3955
  id: string;
3956
3956
  description: string | null;
3957
- createdAt: Date;
3958
- updatedAt: Date;
3959
- deletedAt: Date | null;
3957
+ createdAt: string;
3958
+ updatedAt: string;
3959
+ deletedAt: string | null;
3960
3960
  systemName: string;
3961
3961
  displayName: string;
3962
3962
  permissions: {
3963
3963
  id: string;
3964
3964
  description: string | null;
3965
- createdAt: Date;
3966
- updatedAt: Date;
3967
- deletedAt: Date | null;
3965
+ createdAt: string;
3966
+ updatedAt: string;
3967
+ deletedAt: string | null;
3968
3968
  systemName: string;
3969
3969
  displayName: string;
3970
3970
  }[];
3971
3971
  }[];
3972
3972
  extension?: {
3973
3973
  id: string;
3974
- createdAt: Date;
3975
- updatedAt: Date;
3976
- deletedAt: Date | null;
3974
+ createdAt: string;
3975
+ updatedAt: string;
3976
+ deletedAt: string | null;
3977
3977
  userId: string | null;
3978
3978
  sipServerUrl: string;
3979
3979
  sipUserName: string;
@@ -3986,9 +3986,9 @@ export declare const commentContract: {
3986
3986
  entityType: {
3987
3987
  id: string;
3988
3988
  description: string;
3989
- createdAt: Date;
3990
- updatedAt: Date;
3991
- deletedAt: Date | null;
3989
+ createdAt: string;
3990
+ updatedAt: string;
3991
+ deletedAt: string | null;
3992
3992
  entity: string;
3993
3993
  };
3994
3994
  }[];
@@ -3997,36 +3997,36 @@ export declare const commentContract: {
3997
3997
  address: string | null;
3998
3998
  name: string;
3999
3999
  email: string;
4000
- createdAt: Date;
4001
- updatedAt: Date;
4002
- deletedAt: Date | null;
4003
- emailVerifiedAt: Date | null;
4000
+ createdAt: string;
4001
+ updatedAt: string;
4002
+ deletedAt: string | null;
4003
+ emailVerifiedAt: string | null;
4004
4004
  password: string;
4005
4005
  phone: string | null;
4006
4006
  notificationCount: number | null;
4007
4007
  roles: {
4008
4008
  id: string;
4009
4009
  description: string | null;
4010
- createdAt: Date;
4011
- updatedAt: Date;
4012
- deletedAt: Date | null;
4010
+ createdAt: string;
4011
+ updatedAt: string;
4012
+ deletedAt: string | null;
4013
4013
  systemName: string;
4014
4014
  displayName: string;
4015
4015
  permissions: {
4016
4016
  id: string;
4017
4017
  description: string | null;
4018
- createdAt: Date;
4019
- updatedAt: Date;
4020
- deletedAt: Date | null;
4018
+ createdAt: string;
4019
+ updatedAt: string;
4020
+ deletedAt: string | null;
4021
4021
  systemName: string;
4022
4022
  displayName: string;
4023
4023
  }[];
4024
4024
  }[];
4025
4025
  extension?: {
4026
4026
  id: string;
4027
- createdAt: Date;
4028
- updatedAt: Date;
4029
- deletedAt: Date | null;
4027
+ createdAt: string;
4028
+ updatedAt: string;
4029
+ deletedAt: string | null;
4030
4030
  userId: string | null;
4031
4031
  sipServerUrl: string;
4032
4032
  sipUserName: string;
@@ -4068,12 +4068,12 @@ export declare const commentContract: {
4068
4068
  textValue: string | null;
4069
4069
  booleanValue: boolean | null;
4070
4070
  numberValue: number | null;
4071
- dateValue: Date | null;
4071
+ dateValue: string | null;
4072
4072
  uploads: {
4073
4073
  id: string;
4074
- createdAt: Date;
4075
- updatedAt: Date;
4076
- deletedAt: Date | null;
4074
+ createdAt: string;
4075
+ updatedAt: string;
4076
+ deletedAt: string | null;
4077
4077
  customFieldId: string;
4078
4078
  upload: {
4079
4079
  id: string;
@@ -4097,50 +4097,50 @@ export declare const commentContract: {
4097
4097
  mentions: string[];
4098
4098
  }, {
4099
4099
  id: string;
4100
- createdAt: Date;
4101
- updatedAt: Date;
4102
- deletedAt: Date | null;
4100
+ createdAt: string;
4101
+ updatedAt: string;
4102
+ deletedAt: string | null;
4103
4103
  activityLogs: {
4104
4104
  id: string;
4105
4105
  description: string;
4106
- createdAt: Date;
4107
- updatedAt: Date;
4108
- deletedAt: Date | null;
4106
+ createdAt: string;
4107
+ updatedAt: string;
4108
+ deletedAt: string | null;
4109
4109
  actor: {
4110
4110
  id: string;
4111
4111
  address: string | null;
4112
4112
  name: string;
4113
4113
  email: string;
4114
- createdAt: Date;
4115
- updatedAt: Date;
4116
- deletedAt: Date | null;
4117
- emailVerifiedAt: Date | null;
4114
+ createdAt: string;
4115
+ updatedAt: string;
4116
+ deletedAt: string | null;
4117
+ emailVerifiedAt: string | null;
4118
4118
  password: string;
4119
4119
  phone: string | null;
4120
4120
  notificationCount: number | null;
4121
4121
  roles: {
4122
4122
  id: string;
4123
4123
  description: string | null;
4124
- createdAt: Date;
4125
- updatedAt: Date;
4126
- deletedAt: Date | null;
4124
+ createdAt: string;
4125
+ updatedAt: string;
4126
+ deletedAt: string | null;
4127
4127
  systemName: string;
4128
4128
  displayName: string;
4129
4129
  permissions: {
4130
4130
  id: string;
4131
4131
  description: string | null;
4132
- createdAt: Date;
4133
- updatedAt: Date;
4134
- deletedAt: Date | null;
4132
+ createdAt: string;
4133
+ updatedAt: string;
4134
+ deletedAt: string | null;
4135
4135
  systemName: string;
4136
4136
  displayName: string;
4137
4137
  }[];
4138
4138
  }[];
4139
4139
  extension?: {
4140
4140
  id: string;
4141
- createdAt: Date;
4142
- updatedAt: Date;
4143
- deletedAt: Date | null;
4141
+ createdAt: string;
4142
+ updatedAt: string;
4143
+ deletedAt: string | null;
4144
4144
  userId: string | null;
4145
4145
  sipServerUrl: string;
4146
4146
  sipUserName: string;
@@ -4153,9 +4153,9 @@ export declare const commentContract: {
4153
4153
  entityType: {
4154
4154
  id: string;
4155
4155
  description: string;
4156
- createdAt: Date;
4157
- updatedAt: Date;
4158
- deletedAt: Date | null;
4156
+ createdAt: string;
4157
+ updatedAt: string;
4158
+ deletedAt: string | null;
4159
4159
  entity: string;
4160
4160
  };
4161
4161
  }[];
@@ -4164,36 +4164,36 @@ export declare const commentContract: {
4164
4164
  address: string | null;
4165
4165
  name: string;
4166
4166
  email: string;
4167
- createdAt: Date;
4168
- updatedAt: Date;
4169
- deletedAt: Date | null;
4170
- emailVerifiedAt: Date | null;
4167
+ createdAt: string;
4168
+ updatedAt: string;
4169
+ deletedAt: string | null;
4170
+ emailVerifiedAt: string | null;
4171
4171
  password: string;
4172
4172
  phone: string | null;
4173
4173
  notificationCount: number | null;
4174
4174
  roles: {
4175
4175
  id: string;
4176
4176
  description: string | null;
4177
- createdAt: Date;
4178
- updatedAt: Date;
4179
- deletedAt: Date | null;
4177
+ createdAt: string;
4178
+ updatedAt: string;
4179
+ deletedAt: string | null;
4180
4180
  systemName: string;
4181
4181
  displayName: string;
4182
4182
  permissions: {
4183
4183
  id: string;
4184
4184
  description: string | null;
4185
- createdAt: Date;
4186
- updatedAt: Date;
4187
- deletedAt: Date | null;
4185
+ createdAt: string;
4186
+ updatedAt: string;
4187
+ deletedAt: string | null;
4188
4188
  systemName: string;
4189
4189
  displayName: string;
4190
4190
  }[];
4191
4191
  }[];
4192
4192
  extension?: {
4193
4193
  id: string;
4194
- createdAt: Date;
4195
- updatedAt: Date;
4196
- deletedAt: Date | null;
4194
+ createdAt: string;
4195
+ updatedAt: string;
4196
+ deletedAt: string | null;
4197
4197
  userId: string | null;
4198
4198
  sipServerUrl: string;
4199
4199
  sipUserName: string;
@@ -4235,12 +4235,12 @@ export declare const commentContract: {
4235
4235
  textValue: string | null;
4236
4236
  booleanValue: boolean | null;
4237
4237
  numberValue: number | null;
4238
- dateValue: Date | null;
4238
+ dateValue: string | null;
4239
4239
  uploads: {
4240
4240
  id: string;
4241
- createdAt: Date;
4242
- updatedAt: Date;
4243
- deletedAt: Date | null;
4241
+ createdAt: string;
4242
+ updatedAt: string;
4243
+ deletedAt: string | null;
4244
4244
  customFieldId: string;
4245
4245
  upload: {
4246
4246
  id: string;
@@ -4267,50 +4267,50 @@ export declare const commentContract: {
4267
4267
  requestId: string;
4268
4268
  comment: {
4269
4269
  id: string;
4270
- createdAt: Date;
4271
- updatedAt: Date;
4272
- deletedAt: Date | null;
4270
+ createdAt: string;
4271
+ updatedAt: string;
4272
+ deletedAt: string | null;
4273
4273
  activityLogs: {
4274
4274
  id: string;
4275
4275
  description: string;
4276
- createdAt: Date;
4277
- updatedAt: Date;
4278
- deletedAt: Date | null;
4276
+ createdAt: string;
4277
+ updatedAt: string;
4278
+ deletedAt: string | null;
4279
4279
  actor: {
4280
4280
  id: string;
4281
4281
  address: string | null;
4282
4282
  name: string;
4283
4283
  email: string;
4284
- createdAt: Date;
4285
- updatedAt: Date;
4286
- deletedAt: Date | null;
4287
- emailVerifiedAt: Date | null;
4284
+ createdAt: string;
4285
+ updatedAt: string;
4286
+ deletedAt: string | null;
4287
+ emailVerifiedAt: string | null;
4288
4288
  password: string;
4289
4289
  phone: string | null;
4290
4290
  notificationCount: number | null;
4291
4291
  roles: {
4292
4292
  id: string;
4293
4293
  description: string | null;
4294
- createdAt: Date;
4295
- updatedAt: Date;
4296
- deletedAt: Date | null;
4294
+ createdAt: string;
4295
+ updatedAt: string;
4296
+ deletedAt: string | null;
4297
4297
  systemName: string;
4298
4298
  displayName: string;
4299
4299
  permissions: {
4300
4300
  id: string;
4301
4301
  description: string | null;
4302
- createdAt: Date;
4303
- updatedAt: Date;
4304
- deletedAt: Date | null;
4302
+ createdAt: string;
4303
+ updatedAt: string;
4304
+ deletedAt: string | null;
4305
4305
  systemName: string;
4306
4306
  displayName: string;
4307
4307
  }[];
4308
4308
  }[];
4309
4309
  extension?: {
4310
4310
  id: string;
4311
- createdAt: Date;
4312
- updatedAt: Date;
4313
- deletedAt: Date | null;
4311
+ createdAt: string;
4312
+ updatedAt: string;
4313
+ deletedAt: string | null;
4314
4314
  userId: string | null;
4315
4315
  sipServerUrl: string;
4316
4316
  sipUserName: string;
@@ -4323,9 +4323,9 @@ export declare const commentContract: {
4323
4323
  entityType: {
4324
4324
  id: string;
4325
4325
  description: string;
4326
- createdAt: Date;
4327
- updatedAt: Date;
4328
- deletedAt: Date | null;
4326
+ createdAt: string;
4327
+ updatedAt: string;
4328
+ deletedAt: string | null;
4329
4329
  entity: string;
4330
4330
  };
4331
4331
  }[];
@@ -4334,36 +4334,36 @@ export declare const commentContract: {
4334
4334
  address: string | null;
4335
4335
  name: string;
4336
4336
  email: string;
4337
- createdAt: Date;
4338
- updatedAt: Date;
4339
- deletedAt: Date | null;
4340
- emailVerifiedAt: Date | null;
4337
+ createdAt: string;
4338
+ updatedAt: string;
4339
+ deletedAt: string | null;
4340
+ emailVerifiedAt: string | null;
4341
4341
  password: string;
4342
4342
  phone: string | null;
4343
4343
  notificationCount: number | null;
4344
4344
  roles: {
4345
4345
  id: string;
4346
4346
  description: string | null;
4347
- createdAt: Date;
4348
- updatedAt: Date;
4349
- deletedAt: Date | null;
4347
+ createdAt: string;
4348
+ updatedAt: string;
4349
+ deletedAt: string | null;
4350
4350
  systemName: string;
4351
4351
  displayName: string;
4352
4352
  permissions: {
4353
4353
  id: string;
4354
4354
  description: string | null;
4355
- createdAt: Date;
4356
- updatedAt: Date;
4357
- deletedAt: Date | null;
4355
+ createdAt: string;
4356
+ updatedAt: string;
4357
+ deletedAt: string | null;
4358
4358
  systemName: string;
4359
4359
  displayName: string;
4360
4360
  }[];
4361
4361
  }[];
4362
4362
  extension?: {
4363
4363
  id: string;
4364
- createdAt: Date;
4365
- updatedAt: Date;
4366
- deletedAt: Date | null;
4364
+ createdAt: string;
4365
+ updatedAt: string;
4366
+ deletedAt: string | null;
4367
4367
  userId: string | null;
4368
4368
  sipServerUrl: string;
4369
4369
  sipUserName: string;
@@ -4405,12 +4405,12 @@ export declare const commentContract: {
4405
4405
  textValue: string | null;
4406
4406
  booleanValue: boolean | null;
4407
4407
  numberValue: number | null;
4408
- dateValue: Date | null;
4408
+ dateValue: string | null;
4409
4409
  uploads: {
4410
4410
  id: string;
4411
- createdAt: Date;
4412
- updatedAt: Date;
4413
- deletedAt: Date | null;
4411
+ createdAt: string;
4412
+ updatedAt: string;
4413
+ deletedAt: string | null;
4414
4414
  customFieldId: string;
4415
4415
  upload: {
4416
4416
  id: string;
@@ -4437,50 +4437,50 @@ export declare const commentContract: {
4437
4437
  requestId: string;
4438
4438
  comment: {
4439
4439
  id: string;
4440
- createdAt: Date;
4441
- updatedAt: Date;
4442
- deletedAt: Date | null;
4440
+ createdAt: string;
4441
+ updatedAt: string;
4442
+ deletedAt: string | null;
4443
4443
  activityLogs: {
4444
4444
  id: string;
4445
4445
  description: string;
4446
- createdAt: Date;
4447
- updatedAt: Date;
4448
- deletedAt: Date | null;
4446
+ createdAt: string;
4447
+ updatedAt: string;
4448
+ deletedAt: string | null;
4449
4449
  actor: {
4450
4450
  id: string;
4451
4451
  address: string | null;
4452
4452
  name: string;
4453
4453
  email: string;
4454
- createdAt: Date;
4455
- updatedAt: Date;
4456
- deletedAt: Date | null;
4457
- emailVerifiedAt: Date | null;
4454
+ createdAt: string;
4455
+ updatedAt: string;
4456
+ deletedAt: string | null;
4457
+ emailVerifiedAt: string | null;
4458
4458
  password: string;
4459
4459
  phone: string | null;
4460
4460
  notificationCount: number | null;
4461
4461
  roles: {
4462
4462
  id: string;
4463
4463
  description: string | null;
4464
- createdAt: Date;
4465
- updatedAt: Date;
4466
- deletedAt: Date | null;
4464
+ createdAt: string;
4465
+ updatedAt: string;
4466
+ deletedAt: string | null;
4467
4467
  systemName: string;
4468
4468
  displayName: string;
4469
4469
  permissions: {
4470
4470
  id: string;
4471
4471
  description: string | null;
4472
- createdAt: Date;
4473
- updatedAt: Date;
4474
- deletedAt: Date | null;
4472
+ createdAt: string;
4473
+ updatedAt: string;
4474
+ deletedAt: string | null;
4475
4475
  systemName: string;
4476
4476
  displayName: string;
4477
4477
  }[];
4478
4478
  }[];
4479
4479
  extension?: {
4480
4480
  id: string;
4481
- createdAt: Date;
4482
- updatedAt: Date;
4483
- deletedAt: Date | null;
4481
+ createdAt: string;
4482
+ updatedAt: string;
4483
+ deletedAt: string | null;
4484
4484
  userId: string | null;
4485
4485
  sipServerUrl: string;
4486
4486
  sipUserName: string;
@@ -4493,9 +4493,9 @@ export declare const commentContract: {
4493
4493
  entityType: {
4494
4494
  id: string;
4495
4495
  description: string;
4496
- createdAt: Date;
4497
- updatedAt: Date;
4498
- deletedAt: Date | null;
4496
+ createdAt: string;
4497
+ updatedAt: string;
4498
+ deletedAt: string | null;
4499
4499
  entity: string;
4500
4500
  };
4501
4501
  }[];
@@ -4504,36 +4504,36 @@ export declare const commentContract: {
4504
4504
  address: string | null;
4505
4505
  name: string;
4506
4506
  email: string;
4507
- createdAt: Date;
4508
- updatedAt: Date;
4509
- deletedAt: Date | null;
4510
- emailVerifiedAt: Date | null;
4507
+ createdAt: string;
4508
+ updatedAt: string;
4509
+ deletedAt: string | null;
4510
+ emailVerifiedAt: string | null;
4511
4511
  password: string;
4512
4512
  phone: string | null;
4513
4513
  notificationCount: number | null;
4514
4514
  roles: {
4515
4515
  id: string;
4516
4516
  description: string | null;
4517
- createdAt: Date;
4518
- updatedAt: Date;
4519
- deletedAt: Date | null;
4517
+ createdAt: string;
4518
+ updatedAt: string;
4519
+ deletedAt: string | null;
4520
4520
  systemName: string;
4521
4521
  displayName: string;
4522
4522
  permissions: {
4523
4523
  id: string;
4524
4524
  description: string | null;
4525
- createdAt: Date;
4526
- updatedAt: Date;
4527
- deletedAt: Date | null;
4525
+ createdAt: string;
4526
+ updatedAt: string;
4527
+ deletedAt: string | null;
4528
4528
  systemName: string;
4529
4529
  displayName: string;
4530
4530
  }[];
4531
4531
  }[];
4532
4532
  extension?: {
4533
4533
  id: string;
4534
- createdAt: Date;
4535
- updatedAt: Date;
4536
- deletedAt: Date | null;
4534
+ createdAt: string;
4535
+ updatedAt: string;
4536
+ deletedAt: string | null;
4537
4537
  userId: string | null;
4538
4538
  sipServerUrl: string;
4539
4539
  sipUserName: string;
@@ -4575,12 +4575,12 @@ export declare const commentContract: {
4575
4575
  textValue: string | null;
4576
4576
  booleanValue: boolean | null;
4577
4577
  numberValue: number | null;
4578
- dateValue: Date | null;
4578
+ dateValue: string | null;
4579
4579
  uploads: {
4580
4580
  id: string;
4581
- createdAt: Date;
4582
- updatedAt: Date;
4583
- deletedAt: Date | null;
4581
+ createdAt: string;
4582
+ updatedAt: string;
4583
+ deletedAt: string | null;
4584
4584
  customFieldId: string;
4585
4585
  upload: {
4586
4586
  id: string;