@kl1/contracts 1.0.26 → 1.0.27

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 (76) hide show
  1. package/dist/index.js +1556 -1493
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +1555 -1493
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/attribute/index.d.ts +108 -108
  6. package/dist/src/attribute/schema.d.ts +24 -24
  7. package/dist/src/attribute-option/schema.d.ts +9 -9
  8. package/dist/src/base-contract.d.ts +9 -9
  9. package/dist/src/call-log/schema.d.ts +9 -9
  10. package/dist/src/category/index.d.ts +42 -42
  11. package/dist/src/category/schema.d.ts +9 -9
  12. package/dist/src/channel/index.d.ts +218 -32
  13. package/dist/src/channel/index.d.ts.map +1 -1
  14. package/dist/src/channel/schema.d.ts +9 -9
  15. package/dist/src/chat/index.d.ts +5335 -5335
  16. package/dist/src/chat/schema.d.ts +877 -877
  17. package/dist/src/chat/validation.d.ts +1009 -1009
  18. package/dist/src/comment/index.d.ts +363 -363
  19. package/dist/src/comment/schema.d.ts +105 -105
  20. package/dist/src/company/index.d.ts +296 -293
  21. package/dist/src/company/index.d.ts.map +1 -1
  22. package/dist/src/company/schema.d.ts +191 -54
  23. package/dist/src/company/schema.d.ts.map +1 -1
  24. package/dist/src/company/validation.d.ts +162 -162
  25. package/dist/src/contact/index.d.ts +1213 -1213
  26. package/dist/src/contact/schema.d.ts +201 -201
  27. package/dist/src/contact/validation.d.ts +997 -997
  28. package/dist/src/contact-email/schema.d.ts +9 -9
  29. package/dist/src/contact-phone/schema.d.ts +9 -9
  30. package/dist/src/contract.d.ts +9543 -9231
  31. package/dist/src/contract.d.ts.map +1 -1
  32. package/dist/src/custom-field/schema.d.ts +9 -9
  33. package/dist/src/custom-field-upload/schema.d.ts +9 -9
  34. package/dist/src/cx-log/index.d.ts +621 -621
  35. package/dist/src/cx-log/schema.d.ts +564 -564
  36. package/dist/src/dashboard/index.d.ts +5 -1
  37. package/dist/src/dashboard/index.d.ts.map +1 -1
  38. package/dist/src/dashboard/schema.d.ts +125 -0
  39. package/dist/src/dashboard/schema.d.ts.map +1 -1
  40. package/dist/src/evaluate-form/schema.d.ts +9 -9
  41. package/dist/src/group/schema.d.ts +9 -9
  42. package/dist/src/index.d.ts +1 -0
  43. package/dist/src/index.d.ts.map +1 -1
  44. package/dist/src/log-form/schema.d.ts +9 -9
  45. package/dist/src/mail/mail-contract.d.ts +21 -21
  46. package/dist/src/mail/room-contract.d.ts +21 -21
  47. package/dist/src/mail/schemas/room.schema.d.ts +15 -15
  48. package/dist/src/messenger/index.d.ts +1226 -1096
  49. package/dist/src/messenger/index.d.ts.map +1 -1
  50. package/dist/src/messenger/validation.d.ts +108 -1
  51. package/dist/src/messenger/validation.d.ts.map +1 -1
  52. package/dist/src/tag/index.d.ts +45 -45
  53. package/dist/src/tag/schema.d.ts +9 -9
  54. package/dist/src/tag-group/schema.d.ts +9 -9
  55. package/dist/src/telephony-agent-presence-status/index.d.ts +93 -93
  56. package/dist/src/telephony-agent-presence-status/schema.d.ts +33 -33
  57. package/dist/src/telephony-cdr/schema.d.ts +9 -9
  58. package/dist/src/telephony-live-queue-call/schema.d.ts +9 -9
  59. package/dist/src/telephony-queue-call-count/schema.d.ts +9 -9
  60. package/dist/src/tenant/schema.d.ts +9 -9
  61. package/dist/src/ticket/index.d.ts +570 -570
  62. package/dist/src/ticket/schema.d.ts +135 -135
  63. package/dist/src/upload/schema.d.ts +9 -9
  64. package/dist/src/user-presence-status-log/index.d.ts +36 -36
  65. package/dist/src/user-presence-status-log/schema.d.ts +39 -39
  66. package/dist/src/widget/index.d.ts +78 -78
  67. package/dist/src/widget/schema.d.ts +9 -9
  68. package/dist/src/wrap-up-form/index.d.ts +96 -96
  69. package/dist/src/wrap-up-form/schema.d.ts +24 -24
  70. package/package.json +4 -10
  71. package/dist/src/app/index.d.ts +0 -17
  72. package/dist/src/app/index.d.ts.map +0 -1
  73. package/dist/src/mail/mail-server.d.ts +0 -216
  74. package/dist/src/mail/mail-server.d.ts.map +0 -1
  75. package/dist/src/platform-contact/schema.d.ts +0 -30
  76. package/dist/src/platform-contact/schema.d.ts.map +0 -1
@@ -108,9 +108,9 @@ export declare const cxLogContract: {
108
108
  pageSize: z.ZodNumber;
109
109
  cxLogs: z.ZodArray<z.ZodObject<{
110
110
  id: z.ZodString;
111
- createdAt: z.ZodDate;
112
- updatedAt: z.ZodDate;
113
- deletedAt: z.ZodNullable<z.ZodDate>;
111
+ createdAt: z.ZodString;
112
+ updatedAt: z.ZodString;
113
+ deletedAt: z.ZodNullable<z.ZodString>;
114
114
  caseId: z.ZodNumber;
115
115
  entityId: z.ZodString;
116
116
  entityName: z.ZodString;
@@ -124,69 +124,69 @@ export declare const cxLogContract: {
124
124
  slaMeet: z.ZodNullable<z.ZodString>;
125
125
  evaluateForm: z.ZodNullable<z.ZodObject<{
126
126
  id: z.ZodString;
127
- createdAt: z.ZodDate;
128
- updatedAt: z.ZodDate;
129
- deletedAt: z.ZodNullable<z.ZodDate>;
127
+ createdAt: z.ZodString;
128
+ updatedAt: z.ZodString;
129
+ deletedAt: z.ZodNullable<z.ZodString>;
130
130
  cxLogId: z.ZodString;
131
131
  sentimentScore: z.ZodNullable<z.ZodString>;
132
132
  csatScore: z.ZodNullable<z.ZodString>;
133
133
  }, "strip", z.ZodTypeAny, {
134
134
  id: string;
135
- createdAt: Date;
136
- updatedAt: Date;
137
- deletedAt: Date | null;
135
+ createdAt: string;
136
+ updatedAt: string;
137
+ deletedAt: string | null;
138
138
  cxLogId: string;
139
139
  sentimentScore: string | null;
140
140
  csatScore: string | null;
141
141
  }, {
142
142
  id: string;
143
- createdAt: Date;
144
- updatedAt: Date;
145
- deletedAt: Date | null;
143
+ createdAt: string;
144
+ updatedAt: string;
145
+ deletedAt: string | null;
146
146
  cxLogId: string;
147
147
  sentimentScore: string | null;
148
148
  csatScore: string | null;
149
149
  }>>;
150
150
  wrapUpForm: z.ZodNullable<z.ZodObject<{
151
151
  id: z.ZodString;
152
- createdAt: z.ZodDate;
153
- updatedAt: z.ZodDate;
154
- deletedAt: z.ZodNullable<z.ZodDate>;
152
+ createdAt: z.ZodString;
153
+ updatedAt: z.ZodString;
154
+ deletedAt: z.ZodNullable<z.ZodString>;
155
155
  note: z.ZodNullable<z.ZodString>;
156
156
  disposition: z.ZodNullable<z.ZodString>;
157
157
  callFrom: z.ZodNullable<z.ZodString>;
158
158
  callTo: z.ZodNullable<z.ZodString>;
159
159
  tags: z.ZodArray<z.ZodObject<{
160
160
  id: z.ZodString;
161
- createdAt: z.ZodDate;
162
- updatedAt: z.ZodDate;
163
- deletedAt: z.ZodNullable<z.ZodDate>;
161
+ createdAt: z.ZodString;
162
+ updatedAt: z.ZodString;
163
+ deletedAt: z.ZodNullable<z.ZodString>;
164
164
  name: z.ZodString;
165
165
  }, "strip", z.ZodTypeAny, {
166
166
  id: string;
167
167
  name: string;
168
- createdAt: Date;
169
- updatedAt: Date;
170
- deletedAt: Date | null;
168
+ createdAt: string;
169
+ updatedAt: string;
170
+ deletedAt: string | null;
171
171
  }, {
172
172
  id: string;
173
173
  name: string;
174
- createdAt: Date;
175
- updatedAt: Date;
176
- deletedAt: Date | null;
174
+ createdAt: string;
175
+ updatedAt: string;
176
+ deletedAt: string | null;
177
177
  }>, "many">;
178
178
  }, "strip", z.ZodTypeAny, {
179
179
  id: string;
180
180
  disposition: string | null;
181
- createdAt: Date;
182
- updatedAt: Date;
183
- deletedAt: Date | null;
181
+ createdAt: string;
182
+ updatedAt: string;
183
+ deletedAt: string | null;
184
184
  tags: {
185
185
  id: string;
186
186
  name: string;
187
- createdAt: Date;
188
- updatedAt: Date;
189
- deletedAt: Date | null;
187
+ createdAt: string;
188
+ updatedAt: string;
189
+ deletedAt: string | null;
190
190
  }[];
191
191
  callFrom: string | null;
192
192
  callTo: string | null;
@@ -194,15 +194,15 @@ export declare const cxLogContract: {
194
194
  }, {
195
195
  id: string;
196
196
  disposition: string | null;
197
- createdAt: Date;
198
- updatedAt: Date;
199
- deletedAt: Date | null;
197
+ createdAt: string;
198
+ updatedAt: string;
199
+ deletedAt: string | null;
200
200
  tags: {
201
201
  id: string;
202
202
  name: string;
203
- createdAt: Date;
204
- updatedAt: Date;
205
- deletedAt: Date | null;
203
+ createdAt: string;
204
+ updatedAt: string;
205
+ deletedAt: string | null;
206
206
  }[];
207
207
  callFrom: string | null;
208
208
  callTo: string | null;
@@ -223,9 +223,9 @@ export declare const cxLogContract: {
223
223
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
224
224
  platformContact: z.ZodObject<{
225
225
  id: z.ZodString;
226
- createdAt: z.ZodDate;
227
- updatedAt: z.ZodDate;
228
- deletedAt: z.ZodNullable<z.ZodDate>;
226
+ createdAt: z.ZodString;
227
+ updatedAt: z.ZodString;
228
+ deletedAt: z.ZodNullable<z.ZodString>;
229
229
  channelId: z.ZodString;
230
230
  socialPlatformId: z.ZodString;
231
231
  type: z.ZodEnum<["whatsapp", "messenger", "telegram", "line", "viber", "kakao", "shopee", "lazada", "instagram"]>;
@@ -258,46 +258,46 @@ export declare const cxLogContract: {
258
258
  socialProfileUrl: z.ZodNullable<z.ZodString>;
259
259
  tags: z.ZodArray<z.ZodObject<{
260
260
  id: z.ZodString;
261
- createdAt: z.ZodDate;
262
- updatedAt: z.ZodDate;
263
- deletedAt: z.ZodNullable<z.ZodDate>;
261
+ createdAt: z.ZodString;
262
+ updatedAt: z.ZodString;
263
+ deletedAt: z.ZodNullable<z.ZodString>;
264
264
  name: z.ZodString;
265
265
  }, "strip", z.ZodTypeAny, {
266
266
  id: string;
267
267
  name: string;
268
- createdAt: Date;
269
- updatedAt: Date;
270
- deletedAt: Date | null;
268
+ createdAt: string;
269
+ updatedAt: string;
270
+ deletedAt: string | null;
271
271
  }, {
272
272
  id: string;
273
273
  name: string;
274
- createdAt: Date;
275
- updatedAt: Date;
276
- deletedAt: Date | null;
274
+ createdAt: string;
275
+ updatedAt: string;
276
+ deletedAt: string | null;
277
277
  }>, "many">;
278
278
  company: z.ZodNullable<z.ZodObject<Omit<{
279
279
  id: z.ZodString;
280
- createdAt: z.ZodDate;
281
- updatedAt: z.ZodDate;
282
- deletedAt: z.ZodNullable<z.ZodDate>;
280
+ createdAt: z.ZodString;
281
+ updatedAt: z.ZodString;
282
+ deletedAt: z.ZodNullable<z.ZodString>;
283
283
  name: z.ZodOptional<z.ZodString>;
284
284
  phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
285
285
  address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
286
286
  industry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
287
287
  customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
288
288
  id: z.ZodString;
289
- createdAt: z.ZodDate;
290
- updatedAt: z.ZodDate;
291
- deletedAt: z.ZodNullable<z.ZodDate>;
289
+ createdAt: z.ZodString;
290
+ updatedAt: z.ZodString;
291
+ deletedAt: z.ZodNullable<z.ZodString>;
292
292
  textValue: z.ZodNullable<z.ZodString>;
293
293
  booleanValue: z.ZodNullable<z.ZodBoolean>;
294
294
  numberValue: z.ZodNullable<z.ZodNumber>;
295
295
  dateValue: z.ZodNullable<z.ZodDate>;
296
296
  attribute: z.ZodObject<Omit<{
297
297
  id: z.ZodString;
298
- createdAt: z.ZodDate;
299
- updatedAt: z.ZodDate;
300
- deletedAt: z.ZodNullable<z.ZodDate>;
298
+ createdAt: z.ZodString;
299
+ updatedAt: z.ZodString;
300
+ deletedAt: z.ZodNullable<z.ZodString>;
301
301
  systemName: z.ZodString;
302
302
  displayName: z.ZodString;
303
303
  type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
@@ -327,23 +327,23 @@ export declare const cxLogContract: {
327
327
  }>, "many">;
328
328
  group: z.ZodObject<{
329
329
  id: z.ZodString;
330
- createdAt: z.ZodDate;
331
- updatedAt: z.ZodDate;
332
- deletedAt: z.ZodNullable<z.ZodDate>;
330
+ createdAt: z.ZodString;
331
+ updatedAt: z.ZodString;
332
+ deletedAt: z.ZodNullable<z.ZodString>;
333
333
  systemName: z.ZodString;
334
334
  displayName: z.ZodString;
335
335
  }, "strip", z.ZodTypeAny, {
336
336
  id: string;
337
- createdAt: Date;
338
- updatedAt: Date;
339
- deletedAt: Date | null;
337
+ createdAt: string;
338
+ updatedAt: string;
339
+ deletedAt: string | null;
340
340
  systemName: string;
341
341
  displayName: string;
342
342
  }, {
343
343
  id: string;
344
- createdAt: Date;
345
- updatedAt: Date;
346
- deletedAt: Date | null;
344
+ createdAt: string;
345
+ updatedAt: string;
346
+ deletedAt: string | null;
347
347
  systemName: string;
348
348
  displayName: string;
349
349
  }>;
@@ -351,9 +351,9 @@ export declare const cxLogContract: {
351
351
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
352
352
  id: string;
353
353
  position: number;
354
- createdAt: Date;
355
- updatedAt: Date;
356
- deletedAt: Date | null;
354
+ createdAt: string;
355
+ updatedAt: string;
356
+ deletedAt: string | null;
357
357
  isDefault: boolean;
358
358
  systemName: string;
359
359
  displayName: string;
@@ -364,9 +364,9 @@ export declare const cxLogContract: {
364
364
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
365
365
  id: string;
366
366
  position: number;
367
- createdAt: Date;
368
- updatedAt: Date;
369
- deletedAt: Date | null;
367
+ createdAt: string;
368
+ updatedAt: string;
369
+ deletedAt: string | null;
370
370
  isDefault: boolean;
371
371
  systemName: string;
372
372
  displayName: string;
@@ -376,16 +376,16 @@ export declare const cxLogContract: {
376
376
  }>;
377
377
  }, "strip", z.ZodTypeAny, {
378
378
  id: string;
379
- createdAt: Date;
380
- updatedAt: Date;
381
- deletedAt: Date | null;
379
+ createdAt: string;
380
+ updatedAt: string;
381
+ deletedAt: string | null;
382
382
  attribute: {
383
383
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
384
384
  id: string;
385
385
  position: number;
386
- createdAt: Date;
387
- updatedAt: Date;
388
- deletedAt: Date | null;
386
+ createdAt: string;
387
+ updatedAt: string;
388
+ deletedAt: string | null;
389
389
  isDefault: boolean;
390
390
  systemName: string;
391
391
  displayName: string;
@@ -399,16 +399,16 @@ export declare const cxLogContract: {
399
399
  dateValue: Date | null;
400
400
  }, {
401
401
  id: string;
402
- createdAt: Date;
403
- updatedAt: Date;
404
- deletedAt: Date | null;
402
+ createdAt: string;
403
+ updatedAt: string;
404
+ deletedAt: string | null;
405
405
  attribute: {
406
406
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
407
407
  id: string;
408
408
  position: number;
409
- createdAt: Date;
410
- updatedAt: Date;
411
- deletedAt: Date | null;
409
+ createdAt: string;
410
+ updatedAt: string;
411
+ deletedAt: string | null;
412
412
  isDefault: boolean;
413
413
  systemName: string;
414
414
  displayName: string;
@@ -423,18 +423,18 @@ export declare const cxLogContract: {
423
423
  }>, "many">>;
424
424
  }, "customFields">, "strip", z.ZodTypeAny, {
425
425
  id: string;
426
- createdAt: Date;
427
- updatedAt: Date;
428
- deletedAt: Date | null;
426
+ createdAt: string;
427
+ updatedAt: string;
428
+ deletedAt: string | null;
429
429
  address?: string | null | undefined;
430
430
  name?: string | undefined;
431
431
  phone?: string | null | undefined;
432
432
  industry?: string | null | undefined;
433
433
  }, {
434
434
  id: string;
435
- createdAt: Date;
436
- updatedAt: Date;
437
- deletedAt: Date | null;
435
+ createdAt: string;
436
+ updatedAt: string;
437
+ deletedAt: string | null;
438
438
  address?: string | null | undefined;
439
439
  name?: string | undefined;
440
440
  phone?: string | null | undefined;
@@ -451,9 +451,9 @@ export declare const cxLogContract: {
451
451
  dateValue: z.ZodNullable<z.ZodDate>;
452
452
  attribute: z.ZodObject<Omit<{
453
453
  id: z.ZodString;
454
- createdAt: z.ZodDate;
455
- updatedAt: z.ZodDate;
456
- deletedAt: z.ZodNullable<z.ZodDate>;
454
+ createdAt: z.ZodString;
455
+ updatedAt: z.ZodString;
456
+ deletedAt: z.ZodNullable<z.ZodString>;
457
457
  systemName: z.ZodString;
458
458
  displayName: z.ZodString;
459
459
  type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
@@ -483,23 +483,23 @@ export declare const cxLogContract: {
483
483
  }>, "many">;
484
484
  group: z.ZodObject<{
485
485
  id: z.ZodString;
486
- createdAt: z.ZodDate;
487
- updatedAt: z.ZodDate;
488
- deletedAt: z.ZodNullable<z.ZodDate>;
486
+ createdAt: z.ZodString;
487
+ updatedAt: z.ZodString;
488
+ deletedAt: z.ZodNullable<z.ZodString>;
489
489
  systemName: z.ZodString;
490
490
  displayName: z.ZodString;
491
491
  }, "strip", z.ZodTypeAny, {
492
492
  id: string;
493
- createdAt: Date;
494
- updatedAt: Date;
495
- deletedAt: Date | null;
493
+ createdAt: string;
494
+ updatedAt: string;
495
+ deletedAt: string | null;
496
496
  systemName: string;
497
497
  displayName: string;
498
498
  }, {
499
499
  id: string;
500
- createdAt: Date;
501
- updatedAt: Date;
502
- deletedAt: Date | null;
500
+ createdAt: string;
501
+ updatedAt: string;
502
+ deletedAt: string | null;
503
503
  systemName: string;
504
504
  displayName: string;
505
505
  }>;
@@ -507,9 +507,9 @@ export declare const cxLogContract: {
507
507
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
508
508
  id: string;
509
509
  position: number;
510
- createdAt: Date;
511
- updatedAt: Date;
512
- deletedAt: Date | null;
510
+ createdAt: string;
511
+ updatedAt: string;
512
+ deletedAt: string | null;
513
513
  isDefault: boolean;
514
514
  systemName: string;
515
515
  displayName: string;
@@ -520,9 +520,9 @@ export declare const cxLogContract: {
520
520
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
521
521
  id: string;
522
522
  position: number;
523
- createdAt: Date;
524
- updatedAt: Date;
525
- deletedAt: Date | null;
523
+ createdAt: string;
524
+ updatedAt: string;
525
+ deletedAt: string | null;
526
526
  isDefault: boolean;
527
527
  systemName: string;
528
528
  displayName: string;
@@ -532,33 +532,33 @@ export declare const cxLogContract: {
532
532
  }>;
533
533
  uploads: z.ZodArray<z.ZodObject<{
534
534
  id: z.ZodString;
535
- createdAt: z.ZodDate;
536
- updatedAt: z.ZodDate;
537
- deletedAt: z.ZodNullable<z.ZodDate>;
535
+ createdAt: z.ZodString;
536
+ updatedAt: z.ZodString;
537
+ deletedAt: z.ZodNullable<z.ZodString>;
538
538
  customFieldId: z.ZodString;
539
539
  upload: z.ZodObject<{
540
540
  id: z.ZodString;
541
- createdAt: z.ZodDate;
542
- updatedAt: z.ZodDate;
543
- deletedAt: z.ZodNullable<z.ZodDate>;
541
+ createdAt: z.ZodString;
542
+ updatedAt: z.ZodString;
543
+ deletedAt: z.ZodNullable<z.ZodString>;
544
544
  bucketName: z.ZodString;
545
545
  fileName: z.ZodString;
546
546
  fileSize: z.ZodNumber;
547
547
  fileKey: z.ZodString;
548
548
  }, "strip", z.ZodTypeAny, {
549
549
  id: string;
550
- createdAt: Date;
551
- updatedAt: Date;
552
- deletedAt: Date | null;
550
+ createdAt: string;
551
+ updatedAt: string;
552
+ deletedAt: string | null;
553
553
  fileName: string;
554
554
  fileKey: string;
555
555
  bucketName: string;
556
556
  fileSize: number;
557
557
  }, {
558
558
  id: string;
559
- createdAt: Date;
560
- updatedAt: Date;
561
- deletedAt: Date | null;
559
+ createdAt: string;
560
+ updatedAt: string;
561
+ deletedAt: string | null;
562
562
  fileName: string;
563
563
  fileKey: string;
564
564
  bucketName: string;
@@ -566,15 +566,15 @@ export declare const cxLogContract: {
566
566
  }>;
567
567
  }, "strip", z.ZodTypeAny, {
568
568
  id: string;
569
- createdAt: Date;
570
- updatedAt: Date;
571
- deletedAt: Date | null;
569
+ createdAt: string;
570
+ updatedAt: string;
571
+ deletedAt: string | null;
572
572
  customFieldId: string;
573
573
  upload: {
574
574
  id: string;
575
- createdAt: Date;
576
- updatedAt: Date;
577
- deletedAt: Date | null;
575
+ createdAt: string;
576
+ updatedAt: string;
577
+ deletedAt: string | null;
578
578
  fileName: string;
579
579
  fileKey: string;
580
580
  bucketName: string;
@@ -582,15 +582,15 @@ export declare const cxLogContract: {
582
582
  };
583
583
  }, {
584
584
  id: string;
585
- createdAt: Date;
586
- updatedAt: Date;
587
- deletedAt: Date | null;
585
+ createdAt: string;
586
+ updatedAt: string;
587
+ deletedAt: string | null;
588
588
  customFieldId: string;
589
589
  upload: {
590
590
  id: string;
591
- createdAt: Date;
592
- updatedAt: Date;
593
- deletedAt: Date | null;
591
+ createdAt: string;
592
+ updatedAt: string;
593
+ deletedAt: string | null;
594
594
  fileName: string;
595
595
  fileKey: string;
596
596
  bucketName: string;
@@ -606,9 +606,9 @@ export declare const cxLogContract: {
606
606
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
607
607
  id: string;
608
608
  position: number;
609
- createdAt: Date;
610
- updatedAt: Date;
611
- deletedAt: Date | null;
609
+ createdAt: string;
610
+ updatedAt: string;
611
+ deletedAt: string | null;
612
612
  isDefault: boolean;
613
613
  systemName: string;
614
614
  displayName: string;
@@ -622,15 +622,15 @@ export declare const cxLogContract: {
622
622
  dateValue: Date | null;
623
623
  uploads: {
624
624
  id: string;
625
- createdAt: Date;
626
- updatedAt: Date;
627
- deletedAt: Date | null;
625
+ createdAt: string;
626
+ updatedAt: string;
627
+ deletedAt: string | null;
628
628
  customFieldId: string;
629
629
  upload: {
630
630
  id: string;
631
- createdAt: Date;
632
- updatedAt: Date;
633
- deletedAt: Date | null;
631
+ createdAt: string;
632
+ updatedAt: string;
633
+ deletedAt: string | null;
634
634
  fileName: string;
635
635
  fileKey: string;
636
636
  bucketName: string;
@@ -646,9 +646,9 @@ export declare const cxLogContract: {
646
646
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
647
647
  id: string;
648
648
  position: number;
649
- createdAt: Date;
650
- updatedAt: Date;
651
- deletedAt: Date | null;
649
+ createdAt: string;
650
+ updatedAt: string;
651
+ deletedAt: string | null;
652
652
  isDefault: boolean;
653
653
  systemName: string;
654
654
  displayName: string;
@@ -662,15 +662,15 @@ export declare const cxLogContract: {
662
662
  dateValue: Date | null;
663
663
  uploads: {
664
664
  id: string;
665
- createdAt: Date;
666
- updatedAt: Date;
667
- deletedAt: Date | null;
665
+ createdAt: string;
666
+ updatedAt: string;
667
+ deletedAt: string | null;
668
668
  customFieldId: string;
669
669
  upload: {
670
670
  id: string;
671
- createdAt: Date;
672
- updatedAt: Date;
673
- deletedAt: Date | null;
671
+ createdAt: string;
672
+ updatedAt: string;
673
+ deletedAt: string | null;
674
674
  fileName: string;
675
675
  fileKey: string;
676
676
  bucketName: string;
@@ -799,9 +799,9 @@ export declare const cxLogContract: {
799
799
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
800
800
  id: string;
801
801
  position: number;
802
- createdAt: Date;
803
- updatedAt: Date;
804
- deletedAt: Date | null;
802
+ createdAt: string;
803
+ updatedAt: string;
804
+ deletedAt: string | null;
805
805
  isDefault: boolean;
806
806
  systemName: string;
807
807
  displayName: string;
@@ -815,15 +815,15 @@ export declare const cxLogContract: {
815
815
  dateValue: Date | null;
816
816
  uploads: {
817
817
  id: string;
818
- createdAt: Date;
819
- updatedAt: Date;
820
- deletedAt: Date | null;
818
+ createdAt: string;
819
+ updatedAt: string;
820
+ deletedAt: string | null;
821
821
  customFieldId: string;
822
822
  upload: {
823
823
  id: string;
824
- createdAt: Date;
825
- updatedAt: Date;
826
- deletedAt: Date | null;
824
+ createdAt: string;
825
+ updatedAt: string;
826
+ deletedAt: string | null;
827
827
  fileName: string;
828
828
  fileKey: string;
829
829
  bucketName: string;
@@ -837,15 +837,15 @@ export declare const cxLogContract: {
837
837
  tags: {
838
838
  id: string;
839
839
  name: string;
840
- createdAt: Date;
841
- updatedAt: Date;
842
- deletedAt: Date | null;
840
+ createdAt: string;
841
+ updatedAt: string;
842
+ deletedAt: string | null;
843
843
  }[];
844
844
  company: {
845
845
  id: string;
846
- createdAt: Date;
847
- updatedAt: Date;
848
- deletedAt: Date | null;
846
+ createdAt: string;
847
+ updatedAt: string;
848
+ deletedAt: string | null;
849
849
  address?: string | null | undefined;
850
850
  name?: string | undefined;
851
851
  phone?: string | null | undefined;
@@ -900,9 +900,9 @@ export declare const cxLogContract: {
900
900
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
901
901
  id: string;
902
902
  position: number;
903
- createdAt: Date;
904
- updatedAt: Date;
905
- deletedAt: Date | null;
903
+ createdAt: string;
904
+ updatedAt: string;
905
+ deletedAt: string | null;
906
906
  isDefault: boolean;
907
907
  systemName: string;
908
908
  displayName: string;
@@ -916,15 +916,15 @@ export declare const cxLogContract: {
916
916
  dateValue: Date | null;
917
917
  uploads: {
918
918
  id: string;
919
- createdAt: Date;
920
- updatedAt: Date;
921
- deletedAt: Date | null;
919
+ createdAt: string;
920
+ updatedAt: string;
921
+ deletedAt: string | null;
922
922
  customFieldId: string;
923
923
  upload: {
924
924
  id: string;
925
- createdAt: Date;
926
- updatedAt: Date;
927
- deletedAt: Date | null;
925
+ createdAt: string;
926
+ updatedAt: string;
927
+ deletedAt: string | null;
928
928
  fileName: string;
929
929
  fileKey: string;
930
930
  bucketName: string;
@@ -938,15 +938,15 @@ export declare const cxLogContract: {
938
938
  tags: {
939
939
  id: string;
940
940
  name: string;
941
- createdAt: Date;
942
- updatedAt: Date;
943
- deletedAt: Date | null;
941
+ createdAt: string;
942
+ updatedAt: string;
943
+ deletedAt: string | null;
944
944
  }[];
945
945
  company: {
946
946
  id: string;
947
- createdAt: Date;
948
- updatedAt: Date;
949
- deletedAt: Date | null;
947
+ createdAt: string;
948
+ updatedAt: string;
949
+ deletedAt: string | null;
950
950
  address?: string | null | undefined;
951
951
  name?: string | undefined;
952
952
  phone?: string | null | undefined;
@@ -994,9 +994,9 @@ export declare const cxLogContract: {
994
994
  picture?: string | undefined;
995
995
  additionalCredentials?: any;
996
996
  };
997
- createdAt: Date;
998
- updatedAt: Date;
999
- deletedAt: Date | null;
997
+ createdAt: string;
998
+ updatedAt: string;
999
+ deletedAt: string | null;
1000
1000
  contact: {
1001
1001
  id: string;
1002
1002
  channel: string | null;
@@ -1014,9 +1014,9 @@ export declare const cxLogContract: {
1014
1014
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
1015
1015
  id: string;
1016
1016
  position: number;
1017
- createdAt: Date;
1018
- updatedAt: Date;
1019
- deletedAt: Date | null;
1017
+ createdAt: string;
1018
+ updatedAt: string;
1019
+ deletedAt: string | null;
1020
1020
  isDefault: boolean;
1021
1021
  systemName: string;
1022
1022
  displayName: string;
@@ -1030,15 +1030,15 @@ export declare const cxLogContract: {
1030
1030
  dateValue: Date | null;
1031
1031
  uploads: {
1032
1032
  id: string;
1033
- createdAt: Date;
1034
- updatedAt: Date;
1035
- deletedAt: Date | null;
1033
+ createdAt: string;
1034
+ updatedAt: string;
1035
+ deletedAt: string | null;
1036
1036
  customFieldId: string;
1037
1037
  upload: {
1038
1038
  id: string;
1039
- createdAt: Date;
1040
- updatedAt: Date;
1041
- deletedAt: Date | null;
1039
+ createdAt: string;
1040
+ updatedAt: string;
1041
+ deletedAt: string | null;
1042
1042
  fileName: string;
1043
1043
  fileKey: string;
1044
1044
  bucketName: string;
@@ -1052,15 +1052,15 @@ export declare const cxLogContract: {
1052
1052
  tags: {
1053
1053
  id: string;
1054
1054
  name: string;
1055
- createdAt: Date;
1056
- updatedAt: Date;
1057
- deletedAt: Date | null;
1055
+ createdAt: string;
1056
+ updatedAt: string;
1057
+ deletedAt: string | null;
1058
1058
  }[];
1059
1059
  company: {
1060
1060
  id: string;
1061
- createdAt: Date;
1062
- updatedAt: Date;
1063
- deletedAt: Date | null;
1061
+ createdAt: string;
1062
+ updatedAt: string;
1063
+ deletedAt: string | null;
1064
1064
  address?: string | null | undefined;
1065
1065
  name?: string | undefined;
1066
1066
  phone?: string | null | undefined;
@@ -1110,9 +1110,9 @@ export declare const cxLogContract: {
1110
1110
  picture?: string | undefined;
1111
1111
  additionalCredentials?: any;
1112
1112
  };
1113
- createdAt: Date;
1114
- updatedAt: Date;
1115
- deletedAt: Date | null;
1113
+ createdAt: string;
1114
+ updatedAt: string;
1115
+ deletedAt: string | null;
1116
1116
  contact: {
1117
1117
  id: string;
1118
1118
  channel: string | null;
@@ -1130,9 +1130,9 @@ export declare const cxLogContract: {
1130
1130
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
1131
1131
  id: string;
1132
1132
  position: number;
1133
- createdAt: Date;
1134
- updatedAt: Date;
1135
- deletedAt: Date | null;
1133
+ createdAt: string;
1134
+ updatedAt: string;
1135
+ deletedAt: string | null;
1136
1136
  isDefault: boolean;
1137
1137
  systemName: string;
1138
1138
  displayName: string;
@@ -1146,15 +1146,15 @@ export declare const cxLogContract: {
1146
1146
  dateValue: Date | null;
1147
1147
  uploads: {
1148
1148
  id: string;
1149
- createdAt: Date;
1150
- updatedAt: Date;
1151
- deletedAt: Date | null;
1149
+ createdAt: string;
1150
+ updatedAt: string;
1151
+ deletedAt: string | null;
1152
1152
  customFieldId: string;
1153
1153
  upload: {
1154
1154
  id: string;
1155
- createdAt: Date;
1156
- updatedAt: Date;
1157
- deletedAt: Date | null;
1155
+ createdAt: string;
1156
+ updatedAt: string;
1157
+ deletedAt: string | null;
1158
1158
  fileName: string;
1159
1159
  fileKey: string;
1160
1160
  bucketName: string;
@@ -1168,15 +1168,15 @@ export declare const cxLogContract: {
1168
1168
  tags: {
1169
1169
  id: string;
1170
1170
  name: string;
1171
- createdAt: Date;
1172
- updatedAt: Date;
1173
- deletedAt: Date | null;
1171
+ createdAt: string;
1172
+ updatedAt: string;
1173
+ deletedAt: string | null;
1174
1174
  }[];
1175
1175
  company: {
1176
1176
  id: string;
1177
- createdAt: Date;
1178
- updatedAt: Date;
1179
- deletedAt: Date | null;
1177
+ createdAt: string;
1178
+ updatedAt: string;
1179
+ deletedAt: string | null;
1180
1180
  address?: string | null | undefined;
1181
1181
  name?: string | undefined;
1182
1182
  phone?: string | null | undefined;
@@ -1618,9 +1618,9 @@ export declare const cxLogContract: {
1618
1618
  }>;
1619
1619
  channel: z.ZodOptional<z.ZodObject<{
1620
1620
  id: z.ZodOptional<z.ZodString>;
1621
- createdAt: z.ZodOptional<z.ZodDate>;
1622
- updatedAt: z.ZodOptional<z.ZodDate>;
1623
- deletedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
1621
+ createdAt: z.ZodOptional<z.ZodString>;
1622
+ updatedAt: z.ZodOptional<z.ZodString>;
1623
+ deletedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1624
1624
  name: z.ZodOptional<z.ZodString>;
1625
1625
  type: z.ZodOptional<z.ZodEnum<["whatsapp", "messenger", "telegram", "line", "viber", "kakao", "shopee", "lazada", "instagram"]>>;
1626
1626
  metadata: z.ZodOptional<z.ZodObject<{
@@ -1846,9 +1846,9 @@ export declare const cxLogContract: {
1846
1846
  }>>;
1847
1847
  }, "strip", z.ZodTypeAny, {
1848
1848
  id?: string | undefined;
1849
- createdAt?: Date | undefined;
1850
- updatedAt?: Date | undefined;
1851
- deletedAt?: Date | null | undefined;
1849
+ createdAt?: string | undefined;
1850
+ updatedAt?: string | undefined;
1851
+ deletedAt?: string | null | undefined;
1852
1852
  name?: string | undefined;
1853
1853
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
1854
1854
  metadata?: {
@@ -1908,9 +1908,9 @@ export declare const cxLogContract: {
1908
1908
  } | undefined;
1909
1909
  }, {
1910
1910
  id?: string | undefined;
1911
- createdAt?: Date | undefined;
1912
- updatedAt?: Date | undefined;
1913
- deletedAt?: Date | null | undefined;
1911
+ createdAt?: string | undefined;
1912
+ updatedAt?: string | undefined;
1913
+ deletedAt?: string | null | undefined;
1914
1914
  name?: string | undefined;
1915
1915
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
1916
1916
  metadata?: {
@@ -2034,9 +2034,9 @@ export declare const cxLogContract: {
2034
2034
  picture?: string | undefined;
2035
2035
  additionalCredentials?: any;
2036
2036
  };
2037
- createdAt: Date;
2038
- updatedAt: Date;
2039
- deletedAt: Date | null;
2037
+ createdAt: string;
2038
+ updatedAt: string;
2039
+ deletedAt: string | null;
2040
2040
  contact: {
2041
2041
  id: string;
2042
2042
  channel: string | null;
@@ -2054,9 +2054,9 @@ export declare const cxLogContract: {
2054
2054
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2055
2055
  id: string;
2056
2056
  position: number;
2057
- createdAt: Date;
2058
- updatedAt: Date;
2059
- deletedAt: Date | null;
2057
+ createdAt: string;
2058
+ updatedAt: string;
2059
+ deletedAt: string | null;
2060
2060
  isDefault: boolean;
2061
2061
  systemName: string;
2062
2062
  displayName: string;
@@ -2070,15 +2070,15 @@ export declare const cxLogContract: {
2070
2070
  dateValue: Date | null;
2071
2071
  uploads: {
2072
2072
  id: string;
2073
- createdAt: Date;
2074
- updatedAt: Date;
2075
- deletedAt: Date | null;
2073
+ createdAt: string;
2074
+ updatedAt: string;
2075
+ deletedAt: string | null;
2076
2076
  customFieldId: string;
2077
2077
  upload: {
2078
2078
  id: string;
2079
- createdAt: Date;
2080
- updatedAt: Date;
2081
- deletedAt: Date | null;
2079
+ createdAt: string;
2080
+ updatedAt: string;
2081
+ deletedAt: string | null;
2082
2082
  fileName: string;
2083
2083
  fileKey: string;
2084
2084
  bucketName: string;
@@ -2092,15 +2092,15 @@ export declare const cxLogContract: {
2092
2092
  tags: {
2093
2093
  id: string;
2094
2094
  name: string;
2095
- createdAt: Date;
2096
- updatedAt: Date;
2097
- deletedAt: Date | null;
2095
+ createdAt: string;
2096
+ updatedAt: string;
2097
+ deletedAt: string | null;
2098
2098
  }[];
2099
2099
  company: {
2100
2100
  id: string;
2101
- createdAt: Date;
2102
- updatedAt: Date;
2103
- deletedAt: Date | null;
2101
+ createdAt: string;
2102
+ updatedAt: string;
2103
+ deletedAt: string | null;
2104
2104
  address?: string | null | undefined;
2105
2105
  name?: string | undefined;
2106
2106
  phone?: string | null | undefined;
@@ -2187,9 +2187,9 @@ export declare const cxLogContract: {
2187
2187
  };
2188
2188
  channel?: {
2189
2189
  id?: string | undefined;
2190
- createdAt?: Date | undefined;
2191
- updatedAt?: Date | undefined;
2192
- deletedAt?: Date | null | undefined;
2190
+ createdAt?: string | undefined;
2191
+ updatedAt?: string | undefined;
2192
+ deletedAt?: string | null | undefined;
2193
2193
  name?: string | undefined;
2194
2194
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
2195
2195
  metadata?: {
@@ -2313,9 +2313,9 @@ export declare const cxLogContract: {
2313
2313
  picture?: string | undefined;
2314
2314
  additionalCredentials?: any;
2315
2315
  };
2316
- createdAt: Date;
2317
- updatedAt: Date;
2318
- deletedAt: Date | null;
2316
+ createdAt: string;
2317
+ updatedAt: string;
2318
+ deletedAt: string | null;
2319
2319
  contact: {
2320
2320
  id: string;
2321
2321
  channel: string | null;
@@ -2333,9 +2333,9 @@ export declare const cxLogContract: {
2333
2333
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2334
2334
  id: string;
2335
2335
  position: number;
2336
- createdAt: Date;
2337
- updatedAt: Date;
2338
- deletedAt: Date | null;
2336
+ createdAt: string;
2337
+ updatedAt: string;
2338
+ deletedAt: string | null;
2339
2339
  isDefault: boolean;
2340
2340
  systemName: string;
2341
2341
  displayName: string;
@@ -2349,15 +2349,15 @@ export declare const cxLogContract: {
2349
2349
  dateValue: Date | null;
2350
2350
  uploads: {
2351
2351
  id: string;
2352
- createdAt: Date;
2353
- updatedAt: Date;
2354
- deletedAt: Date | null;
2352
+ createdAt: string;
2353
+ updatedAt: string;
2354
+ deletedAt: string | null;
2355
2355
  customFieldId: string;
2356
2356
  upload: {
2357
2357
  id: string;
2358
- createdAt: Date;
2359
- updatedAt: Date;
2360
- deletedAt: Date | null;
2358
+ createdAt: string;
2359
+ updatedAt: string;
2360
+ deletedAt: string | null;
2361
2361
  fileName: string;
2362
2362
  fileKey: string;
2363
2363
  bucketName: string;
@@ -2371,15 +2371,15 @@ export declare const cxLogContract: {
2371
2371
  tags: {
2372
2372
  id: string;
2373
2373
  name: string;
2374
- createdAt: Date;
2375
- updatedAt: Date;
2376
- deletedAt: Date | null;
2374
+ createdAt: string;
2375
+ updatedAt: string;
2376
+ deletedAt: string | null;
2377
2377
  }[];
2378
2378
  company: {
2379
2379
  id: string;
2380
- createdAt: Date;
2381
- updatedAt: Date;
2382
- deletedAt: Date | null;
2380
+ createdAt: string;
2381
+ updatedAt: string;
2382
+ deletedAt: string | null;
2383
2383
  address?: string | null | undefined;
2384
2384
  name?: string | undefined;
2385
2385
  phone?: string | null | undefined;
@@ -2466,9 +2466,9 @@ export declare const cxLogContract: {
2466
2466
  };
2467
2467
  channel?: {
2468
2468
  id?: string | undefined;
2469
- createdAt?: Date | undefined;
2470
- updatedAt?: Date | undefined;
2471
- deletedAt?: Date | null | undefined;
2469
+ createdAt?: string | undefined;
2470
+ updatedAt?: string | undefined;
2471
+ deletedAt?: string | null | undefined;
2472
2472
  name?: string | undefined;
2473
2473
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
2474
2474
  metadata?: {
@@ -2530,9 +2530,9 @@ export declare const cxLogContract: {
2530
2530
  }>>;
2531
2531
  telephonyCdr: z.ZodNullable<z.ZodObject<{
2532
2532
  id: z.ZodString;
2533
- createdAt: z.ZodDate;
2534
- updatedAt: z.ZodDate;
2535
- deletedAt: z.ZodNullable<z.ZodDate>;
2533
+ createdAt: z.ZodString;
2534
+ updatedAt: z.ZodString;
2535
+ deletedAt: z.ZodNullable<z.ZodString>;
2536
2536
  uniqueCallId: z.ZodString;
2537
2537
  timeStart: z.ZodString;
2538
2538
  callFrom: z.ZodString;
@@ -2557,9 +2557,9 @@ export declare const cxLogContract: {
2557
2557
  id: string;
2558
2558
  recording: string | null;
2559
2559
  status: string;
2560
- createdAt: Date;
2561
- updatedAt: Date;
2562
- deletedAt: Date | null;
2560
+ createdAt: string;
2561
+ updatedAt: string;
2562
+ deletedAt: string | null;
2563
2563
  extensionId: string | null;
2564
2564
  uniqueCallId: string;
2565
2565
  timeStart: string;
@@ -2581,9 +2581,9 @@ export declare const cxLogContract: {
2581
2581
  id: string;
2582
2582
  recording: string | null;
2583
2583
  status: string;
2584
- createdAt: Date;
2585
- updatedAt: Date;
2586
- deletedAt: Date | null;
2584
+ createdAt: string;
2585
+ updatedAt: string;
2586
+ deletedAt: string | null;
2587
2587
  extensionId: string | null;
2588
2588
  uniqueCallId: string;
2589
2589
  timeStart: string;
@@ -2621,46 +2621,46 @@ export declare const cxLogContract: {
2621
2621
  socialProfileUrl: z.ZodNullable<z.ZodString>;
2622
2622
  tags: z.ZodArray<z.ZodObject<{
2623
2623
  id: z.ZodString;
2624
- createdAt: z.ZodDate;
2625
- updatedAt: z.ZodDate;
2626
- deletedAt: z.ZodNullable<z.ZodDate>;
2624
+ createdAt: z.ZodString;
2625
+ updatedAt: z.ZodString;
2626
+ deletedAt: z.ZodNullable<z.ZodString>;
2627
2627
  name: z.ZodString;
2628
2628
  }, "strip", z.ZodTypeAny, {
2629
2629
  id: string;
2630
2630
  name: string;
2631
- createdAt: Date;
2632
- updatedAt: Date;
2633
- deletedAt: Date | null;
2631
+ createdAt: string;
2632
+ updatedAt: string;
2633
+ deletedAt: string | null;
2634
2634
  }, {
2635
2635
  id: string;
2636
2636
  name: string;
2637
- createdAt: Date;
2638
- updatedAt: Date;
2639
- deletedAt: Date | null;
2637
+ createdAt: string;
2638
+ updatedAt: string;
2639
+ deletedAt: string | null;
2640
2640
  }>, "many">;
2641
2641
  company: z.ZodNullable<z.ZodObject<Omit<{
2642
2642
  id: z.ZodString;
2643
- createdAt: z.ZodDate;
2644
- updatedAt: z.ZodDate;
2645
- deletedAt: z.ZodNullable<z.ZodDate>;
2643
+ createdAt: z.ZodString;
2644
+ updatedAt: z.ZodString;
2645
+ deletedAt: z.ZodNullable<z.ZodString>;
2646
2646
  name: z.ZodOptional<z.ZodString>;
2647
2647
  phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2648
2648
  address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2649
2649
  industry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2650
2650
  customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
2651
2651
  id: z.ZodString;
2652
- createdAt: z.ZodDate;
2653
- updatedAt: z.ZodDate;
2654
- deletedAt: z.ZodNullable<z.ZodDate>;
2652
+ createdAt: z.ZodString;
2653
+ updatedAt: z.ZodString;
2654
+ deletedAt: z.ZodNullable<z.ZodString>;
2655
2655
  textValue: z.ZodNullable<z.ZodString>;
2656
2656
  booleanValue: z.ZodNullable<z.ZodBoolean>;
2657
2657
  numberValue: z.ZodNullable<z.ZodNumber>;
2658
2658
  dateValue: z.ZodNullable<z.ZodDate>;
2659
2659
  attribute: z.ZodObject<Omit<{
2660
2660
  id: z.ZodString;
2661
- createdAt: z.ZodDate;
2662
- updatedAt: z.ZodDate;
2663
- deletedAt: z.ZodNullable<z.ZodDate>;
2661
+ createdAt: z.ZodString;
2662
+ updatedAt: z.ZodString;
2663
+ deletedAt: z.ZodNullable<z.ZodString>;
2664
2664
  systemName: z.ZodString;
2665
2665
  displayName: z.ZodString;
2666
2666
  type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
@@ -2690,23 +2690,23 @@ export declare const cxLogContract: {
2690
2690
  }>, "many">;
2691
2691
  group: z.ZodObject<{
2692
2692
  id: z.ZodString;
2693
- createdAt: z.ZodDate;
2694
- updatedAt: z.ZodDate;
2695
- deletedAt: z.ZodNullable<z.ZodDate>;
2693
+ createdAt: z.ZodString;
2694
+ updatedAt: z.ZodString;
2695
+ deletedAt: z.ZodNullable<z.ZodString>;
2696
2696
  systemName: z.ZodString;
2697
2697
  displayName: z.ZodString;
2698
2698
  }, "strip", z.ZodTypeAny, {
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
  systemName: string;
2704
2704
  displayName: string;
2705
2705
  }, {
2706
2706
  id: string;
2707
- createdAt: Date;
2708
- updatedAt: Date;
2709
- deletedAt: Date | null;
2707
+ createdAt: string;
2708
+ updatedAt: string;
2709
+ deletedAt: string | null;
2710
2710
  systemName: string;
2711
2711
  displayName: string;
2712
2712
  }>;
@@ -2714,9 +2714,9 @@ export declare const cxLogContract: {
2714
2714
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2715
2715
  id: string;
2716
2716
  position: number;
2717
- createdAt: Date;
2718
- updatedAt: Date;
2719
- deletedAt: Date | null;
2717
+ createdAt: string;
2718
+ updatedAt: string;
2719
+ deletedAt: string | null;
2720
2720
  isDefault: boolean;
2721
2721
  systemName: string;
2722
2722
  displayName: string;
@@ -2727,9 +2727,9 @@ export declare const cxLogContract: {
2727
2727
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2728
2728
  id: string;
2729
2729
  position: number;
2730
- createdAt: Date;
2731
- updatedAt: Date;
2732
- deletedAt: Date | null;
2730
+ createdAt: string;
2731
+ updatedAt: string;
2732
+ deletedAt: string | null;
2733
2733
  isDefault: boolean;
2734
2734
  systemName: string;
2735
2735
  displayName: string;
@@ -2739,16 +2739,16 @@ export declare const cxLogContract: {
2739
2739
  }>;
2740
2740
  }, "strip", z.ZodTypeAny, {
2741
2741
  id: string;
2742
- createdAt: Date;
2743
- updatedAt: Date;
2744
- deletedAt: Date | null;
2742
+ createdAt: string;
2743
+ updatedAt: string;
2744
+ deletedAt: string | null;
2745
2745
  attribute: {
2746
2746
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2747
2747
  id: string;
2748
2748
  position: number;
2749
- createdAt: Date;
2750
- updatedAt: Date;
2751
- deletedAt: Date | null;
2749
+ createdAt: string;
2750
+ updatedAt: string;
2751
+ deletedAt: string | null;
2752
2752
  isDefault: boolean;
2753
2753
  systemName: string;
2754
2754
  displayName: string;
@@ -2762,16 +2762,16 @@ export declare const cxLogContract: {
2762
2762
  dateValue: Date | null;
2763
2763
  }, {
2764
2764
  id: string;
2765
- createdAt: Date;
2766
- updatedAt: Date;
2767
- deletedAt: Date | null;
2765
+ createdAt: string;
2766
+ updatedAt: string;
2767
+ deletedAt: string | null;
2768
2768
  attribute: {
2769
2769
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2770
2770
  id: string;
2771
2771
  position: number;
2772
- createdAt: Date;
2773
- updatedAt: Date;
2774
- deletedAt: Date | null;
2772
+ createdAt: string;
2773
+ updatedAt: string;
2774
+ deletedAt: string | null;
2775
2775
  isDefault: boolean;
2776
2776
  systemName: string;
2777
2777
  displayName: string;
@@ -2786,18 +2786,18 @@ export declare const cxLogContract: {
2786
2786
  }>, "many">>;
2787
2787
  }, "customFields">, "strip", z.ZodTypeAny, {
2788
2788
  id: string;
2789
- createdAt: Date;
2790
- updatedAt: Date;
2791
- deletedAt: Date | null;
2789
+ createdAt: string;
2790
+ updatedAt: string;
2791
+ deletedAt: string | null;
2792
2792
  address?: string | null | undefined;
2793
2793
  name?: string | undefined;
2794
2794
  phone?: string | null | undefined;
2795
2795
  industry?: string | null | undefined;
2796
2796
  }, {
2797
2797
  id: string;
2798
- createdAt: Date;
2799
- updatedAt: Date;
2800
- deletedAt: Date | null;
2798
+ createdAt: string;
2799
+ updatedAt: string;
2800
+ deletedAt: string | null;
2801
2801
  address?: string | null | undefined;
2802
2802
  name?: string | undefined;
2803
2803
  phone?: string | null | undefined;
@@ -2814,9 +2814,9 @@ export declare const cxLogContract: {
2814
2814
  dateValue: z.ZodNullable<z.ZodDate>;
2815
2815
  attribute: z.ZodObject<Omit<{
2816
2816
  id: z.ZodString;
2817
- createdAt: z.ZodDate;
2818
- updatedAt: z.ZodDate;
2819
- deletedAt: z.ZodNullable<z.ZodDate>;
2817
+ createdAt: z.ZodString;
2818
+ updatedAt: z.ZodString;
2819
+ deletedAt: z.ZodNullable<z.ZodString>;
2820
2820
  systemName: z.ZodString;
2821
2821
  displayName: z.ZodString;
2822
2822
  type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
@@ -2846,23 +2846,23 @@ export declare const cxLogContract: {
2846
2846
  }>, "many">;
2847
2847
  group: z.ZodObject<{
2848
2848
  id: z.ZodString;
2849
- createdAt: z.ZodDate;
2850
- updatedAt: z.ZodDate;
2851
- deletedAt: z.ZodNullable<z.ZodDate>;
2849
+ createdAt: z.ZodString;
2850
+ updatedAt: z.ZodString;
2851
+ deletedAt: z.ZodNullable<z.ZodString>;
2852
2852
  systemName: z.ZodString;
2853
2853
  displayName: z.ZodString;
2854
2854
  }, "strip", z.ZodTypeAny, {
2855
2855
  id: string;
2856
- createdAt: Date;
2857
- updatedAt: Date;
2858
- deletedAt: Date | null;
2856
+ createdAt: string;
2857
+ updatedAt: string;
2858
+ deletedAt: string | null;
2859
2859
  systemName: string;
2860
2860
  displayName: string;
2861
2861
  }, {
2862
2862
  id: string;
2863
- createdAt: Date;
2864
- updatedAt: Date;
2865
- deletedAt: Date | null;
2863
+ createdAt: string;
2864
+ updatedAt: string;
2865
+ deletedAt: string | null;
2866
2866
  systemName: string;
2867
2867
  displayName: string;
2868
2868
  }>;
@@ -2870,9 +2870,9 @@ export declare const cxLogContract: {
2870
2870
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2871
2871
  id: string;
2872
2872
  position: number;
2873
- createdAt: Date;
2874
- updatedAt: Date;
2875
- deletedAt: Date | null;
2873
+ createdAt: string;
2874
+ updatedAt: string;
2875
+ deletedAt: string | null;
2876
2876
  isDefault: boolean;
2877
2877
  systemName: string;
2878
2878
  displayName: string;
@@ -2883,9 +2883,9 @@ export declare const cxLogContract: {
2883
2883
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2884
2884
  id: string;
2885
2885
  position: number;
2886
- createdAt: Date;
2887
- updatedAt: Date;
2888
- deletedAt: Date | null;
2886
+ createdAt: string;
2887
+ updatedAt: string;
2888
+ deletedAt: string | null;
2889
2889
  isDefault: boolean;
2890
2890
  systemName: string;
2891
2891
  displayName: string;
@@ -2895,33 +2895,33 @@ export declare const cxLogContract: {
2895
2895
  }>;
2896
2896
  uploads: z.ZodArray<z.ZodObject<{
2897
2897
  id: z.ZodString;
2898
- createdAt: z.ZodDate;
2899
- updatedAt: z.ZodDate;
2900
- deletedAt: z.ZodNullable<z.ZodDate>;
2898
+ createdAt: z.ZodString;
2899
+ updatedAt: z.ZodString;
2900
+ deletedAt: z.ZodNullable<z.ZodString>;
2901
2901
  customFieldId: z.ZodString;
2902
2902
  upload: z.ZodObject<{
2903
2903
  id: z.ZodString;
2904
- createdAt: z.ZodDate;
2905
- updatedAt: z.ZodDate;
2906
- deletedAt: z.ZodNullable<z.ZodDate>;
2904
+ createdAt: z.ZodString;
2905
+ updatedAt: z.ZodString;
2906
+ deletedAt: z.ZodNullable<z.ZodString>;
2907
2907
  bucketName: z.ZodString;
2908
2908
  fileName: z.ZodString;
2909
2909
  fileSize: z.ZodNumber;
2910
2910
  fileKey: z.ZodString;
2911
2911
  }, "strip", z.ZodTypeAny, {
2912
2912
  id: string;
2913
- createdAt: Date;
2914
- updatedAt: Date;
2915
- deletedAt: Date | null;
2913
+ createdAt: string;
2914
+ updatedAt: string;
2915
+ deletedAt: string | null;
2916
2916
  fileName: string;
2917
2917
  fileKey: string;
2918
2918
  bucketName: string;
2919
2919
  fileSize: number;
2920
2920
  }, {
2921
2921
  id: string;
2922
- createdAt: Date;
2923
- updatedAt: Date;
2924
- deletedAt: Date | null;
2922
+ createdAt: string;
2923
+ updatedAt: string;
2924
+ deletedAt: string | null;
2925
2925
  fileName: string;
2926
2926
  fileKey: string;
2927
2927
  bucketName: string;
@@ -2929,15 +2929,15 @@ export declare const cxLogContract: {
2929
2929
  }>;
2930
2930
  }, "strip", z.ZodTypeAny, {
2931
2931
  id: string;
2932
- createdAt: Date;
2933
- updatedAt: Date;
2934
- deletedAt: Date | null;
2932
+ createdAt: string;
2933
+ updatedAt: string;
2934
+ deletedAt: string | null;
2935
2935
  customFieldId: string;
2936
2936
  upload: {
2937
2937
  id: string;
2938
- createdAt: Date;
2939
- updatedAt: Date;
2940
- deletedAt: Date | null;
2938
+ createdAt: string;
2939
+ updatedAt: string;
2940
+ deletedAt: string | null;
2941
2941
  fileName: string;
2942
2942
  fileKey: string;
2943
2943
  bucketName: string;
@@ -2945,15 +2945,15 @@ export declare const cxLogContract: {
2945
2945
  };
2946
2946
  }, {
2947
2947
  id: string;
2948
- createdAt: Date;
2949
- updatedAt: Date;
2950
- deletedAt: Date | null;
2948
+ createdAt: string;
2949
+ updatedAt: string;
2950
+ deletedAt: string | null;
2951
2951
  customFieldId: string;
2952
2952
  upload: {
2953
2953
  id: string;
2954
- createdAt: Date;
2955
- updatedAt: Date;
2956
- deletedAt: Date | null;
2954
+ createdAt: string;
2955
+ updatedAt: string;
2956
+ deletedAt: string | null;
2957
2957
  fileName: string;
2958
2958
  fileKey: string;
2959
2959
  bucketName: string;
@@ -2969,9 +2969,9 @@ export declare const cxLogContract: {
2969
2969
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2970
2970
  id: string;
2971
2971
  position: number;
2972
- createdAt: Date;
2973
- updatedAt: Date;
2974
- deletedAt: Date | null;
2972
+ createdAt: string;
2973
+ updatedAt: string;
2974
+ deletedAt: string | null;
2975
2975
  isDefault: boolean;
2976
2976
  systemName: string;
2977
2977
  displayName: string;
@@ -2985,15 +2985,15 @@ export declare const cxLogContract: {
2985
2985
  dateValue: Date | null;
2986
2986
  uploads: {
2987
2987
  id: string;
2988
- createdAt: Date;
2989
- updatedAt: Date;
2990
- deletedAt: Date | null;
2988
+ createdAt: string;
2989
+ updatedAt: string;
2990
+ deletedAt: string | null;
2991
2991
  customFieldId: string;
2992
2992
  upload: {
2993
2993
  id: string;
2994
- createdAt: Date;
2995
- updatedAt: Date;
2996
- deletedAt: Date | null;
2994
+ createdAt: string;
2995
+ updatedAt: string;
2996
+ deletedAt: string | null;
2997
2997
  fileName: string;
2998
2998
  fileKey: string;
2999
2999
  bucketName: string;
@@ -3009,9 +3009,9 @@ export declare const cxLogContract: {
3009
3009
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3010
3010
  id: string;
3011
3011
  position: number;
3012
- createdAt: Date;
3013
- updatedAt: Date;
3014
- deletedAt: Date | null;
3012
+ createdAt: string;
3013
+ updatedAt: string;
3014
+ deletedAt: string | null;
3015
3015
  isDefault: boolean;
3016
3016
  systemName: string;
3017
3017
  displayName: string;
@@ -3025,15 +3025,15 @@ export declare const cxLogContract: {
3025
3025
  dateValue: Date | null;
3026
3026
  uploads: {
3027
3027
  id: string;
3028
- createdAt: Date;
3029
- updatedAt: Date;
3030
- deletedAt: Date | null;
3028
+ createdAt: string;
3029
+ updatedAt: string;
3030
+ deletedAt: string | null;
3031
3031
  customFieldId: string;
3032
3032
  upload: {
3033
3033
  id: string;
3034
- createdAt: Date;
3035
- updatedAt: Date;
3036
- deletedAt: Date | null;
3034
+ createdAt: string;
3035
+ updatedAt: string;
3036
+ deletedAt: string | null;
3037
3037
  fileName: string;
3038
3038
  fileKey: string;
3039
3039
  bucketName: string;
@@ -3162,9 +3162,9 @@ export declare const cxLogContract: {
3162
3162
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3163
3163
  id: string;
3164
3164
  position: number;
3165
- createdAt: Date;
3166
- updatedAt: Date;
3167
- deletedAt: Date | null;
3165
+ createdAt: string;
3166
+ updatedAt: string;
3167
+ deletedAt: string | null;
3168
3168
  isDefault: boolean;
3169
3169
  systemName: string;
3170
3170
  displayName: string;
@@ -3178,15 +3178,15 @@ export declare const cxLogContract: {
3178
3178
  dateValue: Date | null;
3179
3179
  uploads: {
3180
3180
  id: string;
3181
- createdAt: Date;
3182
- updatedAt: Date;
3183
- deletedAt: Date | null;
3181
+ createdAt: string;
3182
+ updatedAt: string;
3183
+ deletedAt: string | null;
3184
3184
  customFieldId: string;
3185
3185
  upload: {
3186
3186
  id: string;
3187
- createdAt: Date;
3188
- updatedAt: Date;
3189
- deletedAt: Date | null;
3187
+ createdAt: string;
3188
+ updatedAt: string;
3189
+ deletedAt: string | null;
3190
3190
  fileName: string;
3191
3191
  fileKey: string;
3192
3192
  bucketName: string;
@@ -3200,15 +3200,15 @@ export declare const cxLogContract: {
3200
3200
  tags: {
3201
3201
  id: string;
3202
3202
  name: string;
3203
- createdAt: Date;
3204
- updatedAt: Date;
3205
- deletedAt: Date | null;
3203
+ createdAt: string;
3204
+ updatedAt: string;
3205
+ deletedAt: string | null;
3206
3206
  }[];
3207
3207
  company: {
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
  address?: string | null | undefined;
3213
3213
  name?: string | undefined;
3214
3214
  phone?: string | null | undefined;
@@ -3263,9 +3263,9 @@ export declare const cxLogContract: {
3263
3263
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3264
3264
  id: string;
3265
3265
  position: number;
3266
- createdAt: Date;
3267
- updatedAt: Date;
3268
- deletedAt: Date | null;
3266
+ createdAt: string;
3267
+ updatedAt: string;
3268
+ deletedAt: string | null;
3269
3269
  isDefault: boolean;
3270
3270
  systemName: string;
3271
3271
  displayName: string;
@@ -3279,15 +3279,15 @@ export declare const cxLogContract: {
3279
3279
  dateValue: Date | null;
3280
3280
  uploads: {
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
  customFieldId: string;
3286
3286
  upload: {
3287
3287
  id: string;
3288
- createdAt: Date;
3289
- updatedAt: Date;
3290
- deletedAt: Date | null;
3288
+ createdAt: string;
3289
+ updatedAt: string;
3290
+ deletedAt: string | null;
3291
3291
  fileName: string;
3292
3292
  fileKey: string;
3293
3293
  bucketName: string;
@@ -3301,15 +3301,15 @@ export declare const cxLogContract: {
3301
3301
  tags: {
3302
3302
  id: string;
3303
3303
  name: string;
3304
- createdAt: Date;
3305
- updatedAt: Date;
3306
- deletedAt: Date | null;
3304
+ createdAt: string;
3305
+ updatedAt: string;
3306
+ deletedAt: string | null;
3307
3307
  }[];
3308
3308
  company: {
3309
3309
  id: string;
3310
- createdAt: Date;
3311
- updatedAt: Date;
3312
- deletedAt: Date | null;
3310
+ createdAt: string;
3311
+ updatedAt: string;
3312
+ deletedAt: string | null;
3313
3313
  address?: string | null | undefined;
3314
3314
  name?: string | undefined;
3315
3315
  phone?: string | null | undefined;
@@ -3552,9 +3552,9 @@ export declare const cxLogContract: {
3552
3552
  channel: string | null;
3553
3553
  disposition: string | null;
3554
3554
  direction: string | null;
3555
- createdAt: Date;
3556
- updatedAt: Date;
3557
- deletedAt: Date | null;
3555
+ createdAt: string;
3556
+ updatedAt: string;
3557
+ deletedAt: string | null;
3558
3558
  contact: {
3559
3559
  id: string;
3560
3560
  channel: string | null;
@@ -3572,9 +3572,9 @@ export declare const cxLogContract: {
3572
3572
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3573
3573
  id: string;
3574
3574
  position: number;
3575
- createdAt: Date;
3576
- updatedAt: Date;
3577
- deletedAt: Date | null;
3575
+ createdAt: string;
3576
+ updatedAt: string;
3577
+ deletedAt: string | null;
3578
3578
  isDefault: boolean;
3579
3579
  systemName: string;
3580
3580
  displayName: string;
@@ -3588,15 +3588,15 @@ export declare const cxLogContract: {
3588
3588
  dateValue: Date | null;
3589
3589
  uploads: {
3590
3590
  id: string;
3591
- createdAt: Date;
3592
- updatedAt: Date;
3593
- deletedAt: Date | null;
3591
+ createdAt: string;
3592
+ updatedAt: string;
3593
+ deletedAt: string | null;
3594
3594
  customFieldId: string;
3595
3595
  upload: {
3596
3596
  id: string;
3597
- createdAt: Date;
3598
- updatedAt: Date;
3599
- deletedAt: Date | null;
3597
+ createdAt: string;
3598
+ updatedAt: string;
3599
+ deletedAt: string | null;
3600
3600
  fileName: string;
3601
3601
  fileKey: string;
3602
3602
  bucketName: string;
@@ -3610,15 +3610,15 @@ export declare const cxLogContract: {
3610
3610
  tags: {
3611
3611
  id: string;
3612
3612
  name: string;
3613
- createdAt: Date;
3614
- updatedAt: Date;
3615
- deletedAt: Date | null;
3613
+ createdAt: string;
3614
+ updatedAt: string;
3615
+ deletedAt: string | null;
3616
3616
  }[];
3617
3617
  company: {
3618
3618
  id: string;
3619
- createdAt: Date;
3620
- updatedAt: Date;
3621
- deletedAt: Date | null;
3619
+ createdAt: string;
3620
+ updatedAt: string;
3621
+ deletedAt: string | null;
3622
3622
  address?: string | null | undefined;
3623
3623
  name?: string | undefined;
3624
3624
  phone?: string | null | undefined;
@@ -3666,15 +3666,15 @@ export declare const cxLogContract: {
3666
3666
  wrapUpForm: {
3667
3667
  id: string;
3668
3668
  disposition: string | null;
3669
- createdAt: Date;
3670
- updatedAt: Date;
3671
- deletedAt: Date | null;
3669
+ createdAt: string;
3670
+ updatedAt: string;
3671
+ deletedAt: string | null;
3672
3672
  tags: {
3673
3673
  id: string;
3674
3674
  name: string;
3675
- createdAt: Date;
3676
- updatedAt: Date;
3677
- deletedAt: Date | null;
3675
+ createdAt: string;
3676
+ updatedAt: string;
3677
+ deletedAt: string | null;
3678
3678
  }[];
3679
3679
  callFrom: string | null;
3680
3680
  callTo: string | null;
@@ -3684,9 +3684,9 @@ export declare const cxLogContract: {
3684
3684
  slaMeet: string | null;
3685
3685
  evaluateForm: {
3686
3686
  id: string;
3687
- createdAt: Date;
3688
- updatedAt: Date;
3689
- deletedAt: Date | null;
3687
+ createdAt: string;
3688
+ updatedAt: string;
3689
+ deletedAt: string | null;
3690
3690
  cxLogId: string;
3691
3691
  sentimentScore: string | null;
3692
3692
  csatScore: string | null;
@@ -3756,9 +3756,9 @@ export declare const cxLogContract: {
3756
3756
  picture?: string | undefined;
3757
3757
  additionalCredentials?: any;
3758
3758
  };
3759
- createdAt: Date;
3760
- updatedAt: Date;
3761
- deletedAt: Date | null;
3759
+ createdAt: string;
3760
+ updatedAt: string;
3761
+ deletedAt: string | null;
3762
3762
  contact: {
3763
3763
  id: string;
3764
3764
  channel: string | null;
@@ -3776,9 +3776,9 @@ export declare const cxLogContract: {
3776
3776
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3777
3777
  id: string;
3778
3778
  position: number;
3779
- createdAt: Date;
3780
- updatedAt: Date;
3781
- deletedAt: Date | null;
3779
+ createdAt: string;
3780
+ updatedAt: string;
3781
+ deletedAt: string | null;
3782
3782
  isDefault: boolean;
3783
3783
  systemName: string;
3784
3784
  displayName: string;
@@ -3792,15 +3792,15 @@ export declare const cxLogContract: {
3792
3792
  dateValue: Date | null;
3793
3793
  uploads: {
3794
3794
  id: string;
3795
- createdAt: Date;
3796
- updatedAt: Date;
3797
- deletedAt: Date | null;
3795
+ createdAt: string;
3796
+ updatedAt: string;
3797
+ deletedAt: string | null;
3798
3798
  customFieldId: string;
3799
3799
  upload: {
3800
3800
  id: string;
3801
- createdAt: Date;
3802
- updatedAt: Date;
3803
- deletedAt: Date | null;
3801
+ createdAt: string;
3802
+ updatedAt: string;
3803
+ deletedAt: string | null;
3804
3804
  fileName: string;
3805
3805
  fileKey: string;
3806
3806
  bucketName: string;
@@ -3814,15 +3814,15 @@ export declare const cxLogContract: {
3814
3814
  tags: {
3815
3815
  id: string;
3816
3816
  name: string;
3817
- createdAt: Date;
3818
- updatedAt: Date;
3819
- deletedAt: Date | null;
3817
+ createdAt: string;
3818
+ updatedAt: string;
3819
+ deletedAt: string | null;
3820
3820
  }[];
3821
3821
  company: {
3822
3822
  id: string;
3823
- createdAt: Date;
3824
- updatedAt: Date;
3825
- deletedAt: Date | null;
3823
+ createdAt: string;
3824
+ updatedAt: string;
3825
+ deletedAt: string | null;
3826
3826
  address?: string | null | undefined;
3827
3827
  name?: string | undefined;
3828
3828
  phone?: string | null | undefined;
@@ -3909,9 +3909,9 @@ export declare const cxLogContract: {
3909
3909
  };
3910
3910
  channel?: {
3911
3911
  id?: string | undefined;
3912
- createdAt?: Date | undefined;
3913
- updatedAt?: Date | undefined;
3914
- deletedAt?: Date | null | undefined;
3912
+ createdAt?: string | undefined;
3913
+ updatedAt?: string | undefined;
3914
+ deletedAt?: string | null | undefined;
3915
3915
  name?: string | undefined;
3916
3916
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
3917
3917
  metadata?: {
@@ -3976,9 +3976,9 @@ export declare const cxLogContract: {
3976
3976
  id: string;
3977
3977
  recording: string | null;
3978
3978
  status: string;
3979
- createdAt: Date;
3980
- updatedAt: Date;
3981
- deletedAt: Date | null;
3979
+ createdAt: string;
3980
+ updatedAt: string;
3981
+ deletedAt: string | null;
3982
3982
  extensionId: string | null;
3983
3983
  uniqueCallId: string;
3984
3984
  timeStart: string;
@@ -4047,9 +4047,9 @@ export declare const cxLogContract: {
4047
4047
  channel: string | null;
4048
4048
  disposition: string | null;
4049
4049
  direction: string | null;
4050
- createdAt: Date;
4051
- updatedAt: Date;
4052
- deletedAt: Date | null;
4050
+ createdAt: string;
4051
+ updatedAt: string;
4052
+ deletedAt: string | null;
4053
4053
  contact: {
4054
4054
  id: string;
4055
4055
  channel: string | null;
@@ -4067,9 +4067,9 @@ export declare const cxLogContract: {
4067
4067
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
4068
4068
  id: string;
4069
4069
  position: number;
4070
- createdAt: Date;
4071
- updatedAt: Date;
4072
- deletedAt: Date | null;
4070
+ createdAt: string;
4071
+ updatedAt: string;
4072
+ deletedAt: string | null;
4073
4073
  isDefault: boolean;
4074
4074
  systemName: string;
4075
4075
  displayName: string;
@@ -4083,15 +4083,15 @@ export declare const cxLogContract: {
4083
4083
  dateValue: Date | null;
4084
4084
  uploads: {
4085
4085
  id: string;
4086
- createdAt: Date;
4087
- updatedAt: Date;
4088
- deletedAt: Date | null;
4086
+ createdAt: string;
4087
+ updatedAt: string;
4088
+ deletedAt: string | null;
4089
4089
  customFieldId: string;
4090
4090
  upload: {
4091
4091
  id: string;
4092
- createdAt: Date;
4093
- updatedAt: Date;
4094
- deletedAt: Date | null;
4092
+ createdAt: string;
4093
+ updatedAt: string;
4094
+ deletedAt: string | null;
4095
4095
  fileName: string;
4096
4096
  fileKey: string;
4097
4097
  bucketName: string;
@@ -4105,15 +4105,15 @@ export declare const cxLogContract: {
4105
4105
  tags: {
4106
4106
  id: string;
4107
4107
  name: string;
4108
- createdAt: Date;
4109
- updatedAt: Date;
4110
- deletedAt: Date | null;
4108
+ createdAt: string;
4109
+ updatedAt: string;
4110
+ deletedAt: string | null;
4111
4111
  }[];
4112
4112
  company: {
4113
4113
  id: string;
4114
- createdAt: Date;
4115
- updatedAt: Date;
4116
- deletedAt: Date | null;
4114
+ createdAt: string;
4115
+ updatedAt: string;
4116
+ deletedAt: string | null;
4117
4117
  address?: string | null | undefined;
4118
4118
  name?: string | undefined;
4119
4119
  phone?: string | null | undefined;
@@ -4161,15 +4161,15 @@ export declare const cxLogContract: {
4161
4161
  wrapUpForm: {
4162
4162
  id: string;
4163
4163
  disposition: string | null;
4164
- createdAt: Date;
4165
- updatedAt: Date;
4166
- deletedAt: Date | null;
4164
+ createdAt: string;
4165
+ updatedAt: string;
4166
+ deletedAt: string | null;
4167
4167
  tags: {
4168
4168
  id: string;
4169
4169
  name: string;
4170
- createdAt: Date;
4171
- updatedAt: Date;
4172
- deletedAt: Date | null;
4170
+ createdAt: string;
4171
+ updatedAt: string;
4172
+ deletedAt: string | null;
4173
4173
  }[];
4174
4174
  callFrom: string | null;
4175
4175
  callTo: string | null;
@@ -4179,9 +4179,9 @@ export declare const cxLogContract: {
4179
4179
  slaMeet: string | null;
4180
4180
  evaluateForm: {
4181
4181
  id: string;
4182
- createdAt: Date;
4183
- updatedAt: Date;
4184
- deletedAt: Date | null;
4182
+ createdAt: string;
4183
+ updatedAt: string;
4184
+ deletedAt: string | null;
4185
4185
  cxLogId: string;
4186
4186
  sentimentScore: string | null;
4187
4187
  csatScore: string | null;
@@ -4251,9 +4251,9 @@ export declare const cxLogContract: {
4251
4251
  picture?: string | undefined;
4252
4252
  additionalCredentials?: any;
4253
4253
  };
4254
- createdAt: Date;
4255
- updatedAt: Date;
4256
- deletedAt: Date | null;
4254
+ createdAt: string;
4255
+ updatedAt: string;
4256
+ deletedAt: string | null;
4257
4257
  contact: {
4258
4258
  id: string;
4259
4259
  channel: string | null;
@@ -4271,9 +4271,9 @@ export declare const cxLogContract: {
4271
4271
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
4272
4272
  id: string;
4273
4273
  position: number;
4274
- createdAt: Date;
4275
- updatedAt: Date;
4276
- deletedAt: Date | null;
4274
+ createdAt: string;
4275
+ updatedAt: string;
4276
+ deletedAt: string | null;
4277
4277
  isDefault: boolean;
4278
4278
  systemName: string;
4279
4279
  displayName: string;
@@ -4287,15 +4287,15 @@ export declare const cxLogContract: {
4287
4287
  dateValue: Date | null;
4288
4288
  uploads: {
4289
4289
  id: string;
4290
- createdAt: Date;
4291
- updatedAt: Date;
4292
- deletedAt: Date | null;
4290
+ createdAt: string;
4291
+ updatedAt: string;
4292
+ deletedAt: string | null;
4293
4293
  customFieldId: string;
4294
4294
  upload: {
4295
4295
  id: string;
4296
- createdAt: Date;
4297
- updatedAt: Date;
4298
- deletedAt: Date | null;
4296
+ createdAt: string;
4297
+ updatedAt: string;
4298
+ deletedAt: string | null;
4299
4299
  fileName: string;
4300
4300
  fileKey: string;
4301
4301
  bucketName: string;
@@ -4309,15 +4309,15 @@ export declare const cxLogContract: {
4309
4309
  tags: {
4310
4310
  id: string;
4311
4311
  name: string;
4312
- createdAt: Date;
4313
- updatedAt: Date;
4314
- deletedAt: Date | null;
4312
+ createdAt: string;
4313
+ updatedAt: string;
4314
+ deletedAt: string | null;
4315
4315
  }[];
4316
4316
  company: {
4317
4317
  id: string;
4318
- createdAt: Date;
4319
- updatedAt: Date;
4320
- deletedAt: Date | null;
4318
+ createdAt: string;
4319
+ updatedAt: string;
4320
+ deletedAt: string | null;
4321
4321
  address?: string | null | undefined;
4322
4322
  name?: string | undefined;
4323
4323
  phone?: string | null | undefined;
@@ -4404,9 +4404,9 @@ export declare const cxLogContract: {
4404
4404
  };
4405
4405
  channel?: {
4406
4406
  id?: string | undefined;
4407
- createdAt?: Date | undefined;
4408
- updatedAt?: Date | undefined;
4409
- deletedAt?: Date | null | undefined;
4407
+ createdAt?: string | undefined;
4408
+ updatedAt?: string | undefined;
4409
+ deletedAt?: string | null | undefined;
4410
4410
  name?: string | undefined;
4411
4411
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
4412
4412
  metadata?: {
@@ -4471,9 +4471,9 @@ export declare const cxLogContract: {
4471
4471
  id: string;
4472
4472
  recording: string | null;
4473
4473
  status: string;
4474
- createdAt: Date;
4475
- updatedAt: Date;
4476
- deletedAt: Date | null;
4474
+ createdAt: string;
4475
+ updatedAt: string;
4476
+ deletedAt: string | null;
4477
4477
  extensionId: string | null;
4478
4478
  uniqueCallId: string;
4479
4479
  timeStart: string;
@@ -4548,9 +4548,9 @@ export declare const cxLogContract: {
4548
4548
  channel: string | null;
4549
4549
  disposition: string | null;
4550
4550
  direction: string | null;
4551
- createdAt: Date;
4552
- updatedAt: Date;
4553
- deletedAt: Date | null;
4551
+ createdAt: string;
4552
+ updatedAt: string;
4553
+ deletedAt: string | null;
4554
4554
  contact: {
4555
4555
  id: string;
4556
4556
  channel: string | null;
@@ -4568,9 +4568,9 @@ export declare const cxLogContract: {
4568
4568
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
4569
4569
  id: string;
4570
4570
  position: number;
4571
- createdAt: Date;
4572
- updatedAt: Date;
4573
- deletedAt: Date | null;
4571
+ createdAt: string;
4572
+ updatedAt: string;
4573
+ deletedAt: string | null;
4574
4574
  isDefault: boolean;
4575
4575
  systemName: string;
4576
4576
  displayName: string;
@@ -4584,15 +4584,15 @@ export declare const cxLogContract: {
4584
4584
  dateValue: Date | null;
4585
4585
  uploads: {
4586
4586
  id: string;
4587
- createdAt: Date;
4588
- updatedAt: Date;
4589
- deletedAt: Date | null;
4587
+ createdAt: string;
4588
+ updatedAt: string;
4589
+ deletedAt: string | null;
4590
4590
  customFieldId: string;
4591
4591
  upload: {
4592
4592
  id: string;
4593
- createdAt: Date;
4594
- updatedAt: Date;
4595
- deletedAt: Date | null;
4593
+ createdAt: string;
4594
+ updatedAt: string;
4595
+ deletedAt: string | null;
4596
4596
  fileName: string;
4597
4597
  fileKey: string;
4598
4598
  bucketName: string;
@@ -4606,15 +4606,15 @@ export declare const cxLogContract: {
4606
4606
  tags: {
4607
4607
  id: string;
4608
4608
  name: string;
4609
- createdAt: Date;
4610
- updatedAt: Date;
4611
- deletedAt: Date | null;
4609
+ createdAt: string;
4610
+ updatedAt: string;
4611
+ deletedAt: string | null;
4612
4612
  }[];
4613
4613
  company: {
4614
4614
  id: string;
4615
- createdAt: Date;
4616
- updatedAt: Date;
4617
- deletedAt: Date | null;
4615
+ createdAt: string;
4616
+ updatedAt: string;
4617
+ deletedAt: string | null;
4618
4618
  address?: string | null | undefined;
4619
4619
  name?: string | undefined;
4620
4620
  phone?: string | null | undefined;
@@ -4662,15 +4662,15 @@ export declare const cxLogContract: {
4662
4662
  wrapUpForm: {
4663
4663
  id: string;
4664
4664
  disposition: string | null;
4665
- createdAt: Date;
4666
- updatedAt: Date;
4667
- deletedAt: Date | null;
4665
+ createdAt: string;
4666
+ updatedAt: string;
4667
+ deletedAt: string | null;
4668
4668
  tags: {
4669
4669
  id: string;
4670
4670
  name: string;
4671
- createdAt: Date;
4672
- updatedAt: Date;
4673
- deletedAt: Date | null;
4671
+ createdAt: string;
4672
+ updatedAt: string;
4673
+ deletedAt: string | null;
4674
4674
  }[];
4675
4675
  callFrom: string | null;
4676
4676
  callTo: string | null;
@@ -4680,9 +4680,9 @@ export declare const cxLogContract: {
4680
4680
  slaMeet: string | null;
4681
4681
  evaluateForm: {
4682
4682
  id: string;
4683
- createdAt: Date;
4684
- updatedAt: Date;
4685
- deletedAt: Date | null;
4683
+ createdAt: string;
4684
+ updatedAt: string;
4685
+ deletedAt: string | null;
4686
4686
  cxLogId: string;
4687
4687
  sentimentScore: string | null;
4688
4688
  csatScore: string | null;
@@ -4752,9 +4752,9 @@ export declare const cxLogContract: {
4752
4752
  picture?: string | undefined;
4753
4753
  additionalCredentials?: any;
4754
4754
  };
4755
- createdAt: Date;
4756
- updatedAt: Date;
4757
- deletedAt: Date | null;
4755
+ createdAt: string;
4756
+ updatedAt: string;
4757
+ deletedAt: string | null;
4758
4758
  contact: {
4759
4759
  id: string;
4760
4760
  channel: string | null;
@@ -4772,9 +4772,9 @@ export declare const cxLogContract: {
4772
4772
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
4773
4773
  id: string;
4774
4774
  position: number;
4775
- createdAt: Date;
4776
- updatedAt: Date;
4777
- deletedAt: Date | null;
4775
+ createdAt: string;
4776
+ updatedAt: string;
4777
+ deletedAt: string | null;
4778
4778
  isDefault: boolean;
4779
4779
  systemName: string;
4780
4780
  displayName: string;
@@ -4788,15 +4788,15 @@ export declare const cxLogContract: {
4788
4788
  dateValue: Date | null;
4789
4789
  uploads: {
4790
4790
  id: string;
4791
- createdAt: Date;
4792
- updatedAt: Date;
4793
- deletedAt: Date | null;
4791
+ createdAt: string;
4792
+ updatedAt: string;
4793
+ deletedAt: string | null;
4794
4794
  customFieldId: string;
4795
4795
  upload: {
4796
4796
  id: string;
4797
- createdAt: Date;
4798
- updatedAt: Date;
4799
- deletedAt: Date | null;
4797
+ createdAt: string;
4798
+ updatedAt: string;
4799
+ deletedAt: string | null;
4800
4800
  fileName: string;
4801
4801
  fileKey: string;
4802
4802
  bucketName: string;
@@ -4810,15 +4810,15 @@ export declare const cxLogContract: {
4810
4810
  tags: {
4811
4811
  id: string;
4812
4812
  name: string;
4813
- createdAt: Date;
4814
- updatedAt: Date;
4815
- deletedAt: Date | null;
4813
+ createdAt: string;
4814
+ updatedAt: string;
4815
+ deletedAt: string | null;
4816
4816
  }[];
4817
4817
  company: {
4818
4818
  id: string;
4819
- createdAt: Date;
4820
- updatedAt: Date;
4821
- deletedAt: Date | null;
4819
+ createdAt: string;
4820
+ updatedAt: string;
4821
+ deletedAt: string | null;
4822
4822
  address?: string | null | undefined;
4823
4823
  name?: string | undefined;
4824
4824
  phone?: string | null | undefined;
@@ -4905,9 +4905,9 @@ export declare const cxLogContract: {
4905
4905
  };
4906
4906
  channel?: {
4907
4907
  id?: string | undefined;
4908
- createdAt?: Date | undefined;
4909
- updatedAt?: Date | undefined;
4910
- deletedAt?: Date | null | undefined;
4908
+ createdAt?: string | undefined;
4909
+ updatedAt?: string | undefined;
4910
+ deletedAt?: string | null | undefined;
4911
4911
  name?: string | undefined;
4912
4912
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
4913
4913
  metadata?: {
@@ -4972,9 +4972,9 @@ export declare const cxLogContract: {
4972
4972
  id: string;
4973
4973
  recording: string | null;
4974
4974
  status: string;
4975
- createdAt: Date;
4976
- updatedAt: Date;
4977
- deletedAt: Date | null;
4975
+ createdAt: string;
4976
+ updatedAt: string;
4977
+ deletedAt: string | null;
4978
4978
  extensionId: string | null;
4979
4979
  uniqueCallId: string;
4980
4980
  timeStart: string;
@@ -5049,9 +5049,9 @@ export declare const cxLogContract: {
5049
5049
  channel: string | null;
5050
5050
  disposition: string | null;
5051
5051
  direction: string | null;
5052
- createdAt: Date;
5053
- updatedAt: Date;
5054
- deletedAt: Date | null;
5052
+ createdAt: string;
5053
+ updatedAt: string;
5054
+ deletedAt: string | null;
5055
5055
  contact: {
5056
5056
  id: string;
5057
5057
  channel: string | null;
@@ -5069,9 +5069,9 @@ export declare const cxLogContract: {
5069
5069
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
5070
5070
  id: string;
5071
5071
  position: number;
5072
- createdAt: Date;
5073
- updatedAt: Date;
5074
- deletedAt: Date | null;
5072
+ createdAt: string;
5073
+ updatedAt: string;
5074
+ deletedAt: string | null;
5075
5075
  isDefault: boolean;
5076
5076
  systemName: string;
5077
5077
  displayName: string;
@@ -5085,15 +5085,15 @@ export declare const cxLogContract: {
5085
5085
  dateValue: Date | null;
5086
5086
  uploads: {
5087
5087
  id: string;
5088
- createdAt: Date;
5089
- updatedAt: Date;
5090
- deletedAt: Date | null;
5088
+ createdAt: string;
5089
+ updatedAt: string;
5090
+ deletedAt: string | null;
5091
5091
  customFieldId: string;
5092
5092
  upload: {
5093
5093
  id: string;
5094
- createdAt: Date;
5095
- updatedAt: Date;
5096
- deletedAt: Date | null;
5094
+ createdAt: string;
5095
+ updatedAt: string;
5096
+ deletedAt: string | null;
5097
5097
  fileName: string;
5098
5098
  fileKey: string;
5099
5099
  bucketName: string;
@@ -5107,15 +5107,15 @@ export declare const cxLogContract: {
5107
5107
  tags: {
5108
5108
  id: string;
5109
5109
  name: string;
5110
- createdAt: Date;
5111
- updatedAt: Date;
5112
- deletedAt: Date | null;
5110
+ createdAt: string;
5111
+ updatedAt: string;
5112
+ deletedAt: string | null;
5113
5113
  }[];
5114
5114
  company: {
5115
5115
  id: string;
5116
- createdAt: Date;
5117
- updatedAt: Date;
5118
- deletedAt: Date | null;
5116
+ createdAt: string;
5117
+ updatedAt: string;
5118
+ deletedAt: string | null;
5119
5119
  address?: string | null | undefined;
5120
5120
  name?: string | undefined;
5121
5121
  phone?: string | null | undefined;
@@ -5163,15 +5163,15 @@ export declare const cxLogContract: {
5163
5163
  wrapUpForm: {
5164
5164
  id: string;
5165
5165
  disposition: string | null;
5166
- createdAt: Date;
5167
- updatedAt: Date;
5168
- deletedAt: Date | null;
5166
+ createdAt: string;
5167
+ updatedAt: string;
5168
+ deletedAt: string | null;
5169
5169
  tags: {
5170
5170
  id: string;
5171
5171
  name: string;
5172
- createdAt: Date;
5173
- updatedAt: Date;
5174
- deletedAt: Date | null;
5172
+ createdAt: string;
5173
+ updatedAt: string;
5174
+ deletedAt: string | null;
5175
5175
  }[];
5176
5176
  callFrom: string | null;
5177
5177
  callTo: string | null;
@@ -5181,9 +5181,9 @@ export declare const cxLogContract: {
5181
5181
  slaMeet: string | null;
5182
5182
  evaluateForm: {
5183
5183
  id: string;
5184
- createdAt: Date;
5185
- updatedAt: Date;
5186
- deletedAt: Date | null;
5184
+ createdAt: string;
5185
+ updatedAt: string;
5186
+ deletedAt: string | null;
5187
5187
  cxLogId: string;
5188
5188
  sentimentScore: string | null;
5189
5189
  csatScore: string | null;
@@ -5253,9 +5253,9 @@ export declare const cxLogContract: {
5253
5253
  picture?: string | undefined;
5254
5254
  additionalCredentials?: any;
5255
5255
  };
5256
- createdAt: Date;
5257
- updatedAt: Date;
5258
- deletedAt: Date | null;
5256
+ createdAt: string;
5257
+ updatedAt: string;
5258
+ deletedAt: string | null;
5259
5259
  contact: {
5260
5260
  id: string;
5261
5261
  channel: string | null;
@@ -5273,9 +5273,9 @@ export declare const cxLogContract: {
5273
5273
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
5274
5274
  id: string;
5275
5275
  position: number;
5276
- createdAt: Date;
5277
- updatedAt: Date;
5278
- deletedAt: Date | null;
5276
+ createdAt: string;
5277
+ updatedAt: string;
5278
+ deletedAt: string | null;
5279
5279
  isDefault: boolean;
5280
5280
  systemName: string;
5281
5281
  displayName: string;
@@ -5289,15 +5289,15 @@ export declare const cxLogContract: {
5289
5289
  dateValue: Date | null;
5290
5290
  uploads: {
5291
5291
  id: string;
5292
- createdAt: Date;
5293
- updatedAt: Date;
5294
- deletedAt: Date | null;
5292
+ createdAt: string;
5293
+ updatedAt: string;
5294
+ deletedAt: string | null;
5295
5295
  customFieldId: string;
5296
5296
  upload: {
5297
5297
  id: string;
5298
- createdAt: Date;
5299
- updatedAt: Date;
5300
- deletedAt: Date | null;
5298
+ createdAt: string;
5299
+ updatedAt: string;
5300
+ deletedAt: string | null;
5301
5301
  fileName: string;
5302
5302
  fileKey: string;
5303
5303
  bucketName: string;
@@ -5311,15 +5311,15 @@ export declare const cxLogContract: {
5311
5311
  tags: {
5312
5312
  id: string;
5313
5313
  name: string;
5314
- createdAt: Date;
5315
- updatedAt: Date;
5316
- deletedAt: Date | null;
5314
+ createdAt: string;
5315
+ updatedAt: string;
5316
+ deletedAt: string | null;
5317
5317
  }[];
5318
5318
  company: {
5319
5319
  id: string;
5320
- createdAt: Date;
5321
- updatedAt: Date;
5322
- deletedAt: Date | null;
5320
+ createdAt: string;
5321
+ updatedAt: string;
5322
+ deletedAt: string | null;
5323
5323
  address?: string | null | undefined;
5324
5324
  name?: string | undefined;
5325
5325
  phone?: string | null | undefined;
@@ -5406,9 +5406,9 @@ export declare const cxLogContract: {
5406
5406
  };
5407
5407
  channel?: {
5408
5408
  id?: string | undefined;
5409
- createdAt?: Date | undefined;
5410
- updatedAt?: Date | undefined;
5411
- deletedAt?: Date | null | undefined;
5409
+ createdAt?: string | undefined;
5410
+ updatedAt?: string | undefined;
5411
+ deletedAt?: string | null | undefined;
5412
5412
  name?: string | undefined;
5413
5413
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
5414
5414
  metadata?: {
@@ -5473,9 +5473,9 @@ export declare const cxLogContract: {
5473
5473
  id: string;
5474
5474
  recording: string | null;
5475
5475
  status: string;
5476
- createdAt: Date;
5477
- updatedAt: Date;
5478
- deletedAt: Date | null;
5476
+ createdAt: string;
5477
+ updatedAt: string;
5478
+ deletedAt: string | null;
5479
5479
  extensionId: string | null;
5480
5480
  uniqueCallId: string;
5481
5481
  timeStart: string;