@kl1/contracts 1.0.27 → 1.0.29

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 (81) hide show
  1. package/dist/index.js +144 -56
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +143 -56
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/app/index.d.ts +17 -0
  6. package/dist/src/app/index.d.ts.map +1 -0
  7. package/dist/src/attribute/index.d.ts +108 -108
  8. package/dist/src/attribute/schema.d.ts +24 -24
  9. package/dist/src/attribute-option/schema.d.ts +9 -9
  10. package/dist/src/base-contract.d.ts +9 -9
  11. package/dist/src/call-log/schema.d.ts +9 -9
  12. package/dist/src/category/index.d.ts +42 -42
  13. package/dist/src/category/schema.d.ts +9 -9
  14. package/dist/src/channel/index.d.ts +38 -38
  15. package/dist/src/channel/schema.d.ts +9 -9
  16. package/dist/src/chat/index.d.ts +5335 -5335
  17. package/dist/src/chat/schema.d.ts +876 -876
  18. package/dist/src/chat/validation.d.ts +1008 -1008
  19. package/dist/src/comment/index.d.ts +363 -363
  20. package/dist/src/comment/schema.d.ts +105 -105
  21. package/dist/src/company/index.d.ts +288 -288
  22. package/dist/src/company/schema.d.ts +87 -87
  23. package/dist/src/company/validation.d.ts +162 -162
  24. package/dist/src/contact/index.d.ts +1212 -1212
  25. package/dist/src/contact/schema.d.ts +201 -201
  26. package/dist/src/contact/validation.d.ts +997 -997
  27. package/dist/src/contact-email/schema.d.ts +9 -9
  28. package/dist/src/contact-phone/schema.d.ts +9 -9
  29. package/dist/src/contract.d.ts +9737 -9761
  30. package/dist/src/contract.d.ts.map +1 -1
  31. package/dist/src/custom-field/schema.d.ts +9 -9
  32. package/dist/src/custom-field-upload/schema.d.ts +9 -9
  33. package/dist/src/cx-log/index.d.ts +621 -621
  34. package/dist/src/cx-log/schema.d.ts +564 -564
  35. package/dist/src/dashboard/index.d.ts +6 -6
  36. package/dist/src/dashboard/index.d.ts.map +1 -1
  37. package/dist/src/dashboard/schema.d.ts +2 -2
  38. package/dist/src/dashboard/schema.d.ts.map +1 -1
  39. package/dist/src/evaluate-form/index.d.ts +47 -0
  40. package/dist/src/evaluate-form/index.d.ts.map +1 -0
  41. package/dist/src/evaluate-form/schema.d.ts +9 -9
  42. package/dist/src/evaluate-form/validation.d.ts +28 -0
  43. package/dist/src/evaluate-form/validation.d.ts.map +1 -0
  44. package/dist/src/group/schema.d.ts +9 -9
  45. package/dist/src/index.d.ts +1 -0
  46. package/dist/src/index.d.ts.map +1 -1
  47. package/dist/src/log-form/schema.d.ts +9 -9
  48. package/dist/src/mail/mail-contract.d.ts +63 -63
  49. package/dist/src/mail/mail-server.d.ts +216 -0
  50. package/dist/src/mail/mail-server.d.ts.map +1 -0
  51. package/dist/src/mail/room-contract.d.ts +63 -63
  52. package/dist/src/mail/schemas/room-validation.schema.d.ts +14 -14
  53. package/dist/src/mail/schemas/room.schema.d.ts +25 -25
  54. package/dist/src/messenger/index.d.ts +492 -492
  55. package/dist/src/platform-contact/schema.d.ts +30 -0
  56. package/dist/src/platform-contact/schema.d.ts.map +1 -0
  57. package/dist/src/tag/index.d.ts +45 -45
  58. package/dist/src/tag/schema.d.ts +9 -9
  59. package/dist/src/tag-group/schema.d.ts +9 -9
  60. package/dist/src/telephony-agent-presence-status/index.d.ts +93 -93
  61. package/dist/src/telephony-agent-presence-status/schema.d.ts +33 -33
  62. package/dist/src/telephony-cdr/schema.d.ts +9 -9
  63. package/dist/src/telephony-live-queue-call/schema.d.ts +9 -9
  64. package/dist/src/telephony-queue-call-count/schema.d.ts +9 -9
  65. package/dist/src/tenant/schema.d.ts +9 -9
  66. package/dist/src/ticket/index.d.ts +774 -909
  67. package/dist/src/ticket/index.d.ts.map +1 -1
  68. package/dist/src/ticket/schema.d.ts +135 -135
  69. package/dist/src/ticket/validation.d.ts +168 -338
  70. package/dist/src/ticket/validation.d.ts.map +1 -1
  71. package/dist/src/upload/schema.d.ts +9 -9
  72. package/dist/src/user-presence-status-log/index.d.ts +36 -36
  73. package/dist/src/user-presence-status-log/schema.d.ts +39 -39
  74. package/dist/src/widget/index.d.ts +150 -79
  75. package/dist/src/widget/index.d.ts.map +1 -1
  76. package/dist/src/widget/schema.d.ts +9 -9
  77. package/dist/src/widget/validation.d.ts +10 -0
  78. package/dist/src/widget/validation.d.ts.map +1 -1
  79. package/dist/src/wrap-up-form/index.d.ts +96 -96
  80. package/dist/src/wrap-up-form/schema.d.ts +24 -24
  81. package/package.json +10 -4
@@ -0,0 +1,30 @@
1
+ import z from 'zod';
2
+ export declare const PlatformContactSchema: z.ZodObject<{
3
+ id: z.ZodString;
4
+ createdAt: z.ZodDate;
5
+ updatedAt: z.ZodDate;
6
+ deletedAt: z.ZodNullable<z.ZodDate>;
7
+ contactId: z.ZodString;
8
+ channelId: z.ZodString;
9
+ config: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
10
+ type: z.ZodString;
11
+ }, "strip", z.ZodTypeAny, {
12
+ type: string;
13
+ id: string;
14
+ createdAt: Date;
15
+ updatedAt: Date;
16
+ deletedAt: Date | null;
17
+ contactId: string;
18
+ channelId: string;
19
+ config: {};
20
+ }, {
21
+ type: string;
22
+ id: string;
23
+ createdAt: Date;
24
+ updatedAt: Date;
25
+ deletedAt: Date | null;
26
+ contactId: string;
27
+ channelId: string;
28
+ config: {};
29
+ }>;
30
+ //# sourceMappingURL=schema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/platform-contact/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKhC,CAAC"}
@@ -23,40 +23,40 @@ export declare const tagContract: {
23
23
  requestId: z.ZodString;
24
24
  tag: z.ZodObject<{
25
25
  id: z.ZodString;
26
- createdAt: z.ZodString;
27
- updatedAt: z.ZodString;
28
- deletedAt: z.ZodNullable<z.ZodString>;
26
+ createdAt: z.ZodDate;
27
+ updatedAt: z.ZodDate;
28
+ deletedAt: z.ZodNullable<z.ZodDate>;
29
29
  name: z.ZodString;
30
30
  }, "strip", z.ZodTypeAny, {
31
31
  id: string;
32
32
  name: string;
33
- createdAt: string;
34
- updatedAt: string;
35
- deletedAt: string | null;
33
+ createdAt: Date;
34
+ updatedAt: Date;
35
+ deletedAt: Date | null;
36
36
  }, {
37
37
  id: string;
38
38
  name: string;
39
- createdAt: string;
40
- updatedAt: string;
41
- deletedAt: string | null;
39
+ createdAt: Date;
40
+ updatedAt: Date;
41
+ deletedAt: Date | null;
42
42
  }>;
43
43
  }, "strip", z.ZodTypeAny, {
44
44
  requestId: string;
45
45
  tag: {
46
46
  id: string;
47
47
  name: string;
48
- createdAt: string;
49
- updatedAt: string;
50
- deletedAt: string | null;
48
+ createdAt: Date;
49
+ updatedAt: Date;
50
+ deletedAt: Date | null;
51
51
  };
52
52
  }, {
53
53
  requestId: string;
54
54
  tag: {
55
55
  id: string;
56
56
  name: string;
57
- createdAt: string;
58
- updatedAt: string;
59
- deletedAt: string | null;
57
+ createdAt: Date;
58
+ updatedAt: Date;
59
+ deletedAt: Date | null;
60
60
  };
61
61
  }>;
62
62
  500: z.ZodObject<{
@@ -105,40 +105,40 @@ export declare const tagContract: {
105
105
  requestId: z.ZodString;
106
106
  tags: z.ZodArray<z.ZodObject<{
107
107
  id: z.ZodString;
108
- createdAt: z.ZodString;
109
- updatedAt: z.ZodString;
110
- deletedAt: z.ZodNullable<z.ZodString>;
108
+ createdAt: z.ZodDate;
109
+ updatedAt: z.ZodDate;
110
+ deletedAt: z.ZodNullable<z.ZodDate>;
111
111
  name: z.ZodString;
112
112
  }, "strip", z.ZodTypeAny, {
113
113
  id: string;
114
114
  name: string;
115
- createdAt: string;
116
- updatedAt: string;
117
- deletedAt: string | null;
115
+ createdAt: Date;
116
+ updatedAt: Date;
117
+ deletedAt: Date | null;
118
118
  }, {
119
119
  id: string;
120
120
  name: string;
121
- createdAt: string;
122
- updatedAt: string;
123
- deletedAt: string | null;
121
+ createdAt: Date;
122
+ updatedAt: Date;
123
+ deletedAt: Date | null;
124
124
  }>, "many">;
125
125
  }, "strip", z.ZodTypeAny, {
126
126
  requestId: string;
127
127
  tags: {
128
128
  id: string;
129
129
  name: string;
130
- createdAt: string;
131
- updatedAt: string;
132
- deletedAt: string | null;
130
+ createdAt: Date;
131
+ updatedAt: Date;
132
+ deletedAt: Date | null;
133
133
  }[];
134
134
  }, {
135
135
  requestId: string;
136
136
  tags: {
137
137
  id: string;
138
138
  name: string;
139
- createdAt: string;
140
- updatedAt: string;
141
- deletedAt: string | null;
139
+ createdAt: Date;
140
+ updatedAt: Date;
141
+ deletedAt: Date | null;
142
142
  }[];
143
143
  }>;
144
144
  500: z.ZodObject<{
@@ -191,40 +191,40 @@ export declare const tagContract: {
191
191
  requestId: z.ZodString;
192
192
  tag: z.ZodObject<{
193
193
  id: z.ZodString;
194
- createdAt: z.ZodString;
195
- updatedAt: z.ZodString;
196
- deletedAt: z.ZodNullable<z.ZodString>;
194
+ createdAt: z.ZodDate;
195
+ updatedAt: z.ZodDate;
196
+ deletedAt: z.ZodNullable<z.ZodDate>;
197
197
  name: z.ZodString;
198
198
  }, "strip", z.ZodTypeAny, {
199
199
  id: string;
200
200
  name: string;
201
- createdAt: string;
202
- updatedAt: string;
203
- deletedAt: string | null;
201
+ createdAt: Date;
202
+ updatedAt: Date;
203
+ deletedAt: Date | null;
204
204
  }, {
205
205
  id: string;
206
206
  name: string;
207
- createdAt: string;
208
- updatedAt: string;
209
- deletedAt: string | null;
207
+ createdAt: Date;
208
+ updatedAt: Date;
209
+ deletedAt: Date | null;
210
210
  }>;
211
211
  }, "strip", z.ZodTypeAny, {
212
212
  requestId: string;
213
213
  tag: {
214
214
  id: string;
215
215
  name: string;
216
- createdAt: string;
217
- updatedAt: string;
218
- deletedAt: string | null;
216
+ createdAt: Date;
217
+ updatedAt: Date;
218
+ deletedAt: Date | null;
219
219
  };
220
220
  }, {
221
221
  requestId: string;
222
222
  tag: {
223
223
  id: string;
224
224
  name: string;
225
- createdAt: string;
226
- updatedAt: string;
227
- deletedAt: string | null;
225
+ createdAt: Date;
226
+ updatedAt: Date;
227
+ deletedAt: Date | null;
228
228
  };
229
229
  }>;
230
230
  500: z.ZodObject<{
@@ -1,22 +1,22 @@
1
1
  import z from 'zod';
2
2
  export declare const TagSchema: z.ZodObject<{
3
3
  id: z.ZodString;
4
- createdAt: z.ZodString;
5
- updatedAt: z.ZodString;
6
- deletedAt: z.ZodNullable<z.ZodString>;
4
+ createdAt: z.ZodDate;
5
+ updatedAt: z.ZodDate;
6
+ deletedAt: z.ZodNullable<z.ZodDate>;
7
7
  name: z.ZodString;
8
8
  }, "strip", z.ZodTypeAny, {
9
9
  id: string;
10
10
  name: string;
11
- createdAt: string;
12
- updatedAt: string;
13
- deletedAt: string | null;
11
+ createdAt: Date;
12
+ updatedAt: Date;
13
+ deletedAt: Date | null;
14
14
  }, {
15
15
  id: string;
16
16
  name: string;
17
- createdAt: string;
18
- updatedAt: string;
19
- deletedAt: string | null;
17
+ createdAt: Date;
18
+ updatedAt: Date;
19
+ deletedAt: Date | null;
20
20
  }>;
21
21
  export declare const TagGroupSchema: z.ZodUnion<[z.ZodLiteral<"general">, z.ZodLiteral<"contact">]>;
22
22
  //# sourceMappingURL=schema.d.ts.map
@@ -1,23 +1,23 @@
1
1
  import z from 'zod';
2
2
  export declare const TagGroupSchema: z.ZodObject<{
3
3
  id: z.ZodString;
4
- createdAt: z.ZodString;
5
- updatedAt: z.ZodString;
6
- deletedAt: z.ZodNullable<z.ZodString>;
4
+ createdAt: z.ZodDate;
5
+ updatedAt: z.ZodDate;
6
+ deletedAt: z.ZodNullable<z.ZodDate>;
7
7
  systemName: z.ZodString;
8
8
  displayName: z.ZodString;
9
9
  }, "strip", z.ZodTypeAny, {
10
10
  id: string;
11
- createdAt: string;
12
- updatedAt: string;
13
- deletedAt: string | null;
11
+ createdAt: Date;
12
+ updatedAt: Date;
13
+ deletedAt: Date | null;
14
14
  systemName: string;
15
15
  displayName: string;
16
16
  }, {
17
17
  id: string;
18
- createdAt: string;
19
- updatedAt: string;
20
- deletedAt: string | null;
18
+ createdAt: Date;
19
+ updatedAt: Date;
20
+ deletedAt: Date | null;
21
21
  systemName: string;
22
22
  displayName: string;
23
23
  }>;
@@ -8,25 +8,25 @@ export declare const telephonyAgentPresenceStatusContract: {
8
8
  responses: {
9
9
  200: z.ZodArray<z.ZodObject<{
10
10
  id: z.ZodString;
11
- createdAt: z.ZodString;
12
- updatedAt: z.ZodString;
13
- deletedAt: z.ZodNullable<z.ZodString>;
11
+ createdAt: z.ZodDate;
12
+ updatedAt: z.ZodDate;
13
+ deletedAt: z.ZodNullable<z.ZodDate>;
14
14
  status: z.ZodString;
15
15
  description: z.ZodString;
16
16
  }, "strip", z.ZodTypeAny, {
17
17
  id: string;
18
18
  description: string;
19
19
  status: string;
20
- createdAt: string;
21
- updatedAt: string;
22
- deletedAt: string | null;
20
+ createdAt: Date;
21
+ updatedAt: Date;
22
+ deletedAt: Date | null;
23
23
  }, {
24
24
  id: string;
25
25
  description: string;
26
26
  status: string;
27
- createdAt: string;
28
- updatedAt: string;
29
- deletedAt: string | null;
27
+ createdAt: Date;
28
+ updatedAt: Date;
29
+ deletedAt: Date | null;
30
30
  }>, "many">;
31
31
  400: z.ZodObject<{
32
32
  message: z.ZodString;
@@ -80,9 +80,9 @@ export declare const telephonyAgentPresenceStatusContract: {
80
80
  responses: {
81
81
  200: z.ZodArray<z.ZodObject<{
82
82
  id: z.ZodString;
83
- createdAt: z.ZodString;
84
- updatedAt: z.ZodString;
85
- deletedAt: z.ZodNullable<z.ZodString>;
83
+ createdAt: z.ZodDate;
84
+ updatedAt: z.ZodDate;
85
+ deletedAt: z.ZodNullable<z.ZodDate>;
86
86
  user: z.ZodObject<{
87
87
  id: z.ZodString;
88
88
  createdAt: z.ZodDate;
@@ -284,25 +284,25 @@ export declare const telephonyAgentPresenceStatusContract: {
284
284
  }>;
285
285
  presenceStatus: z.ZodObject<{
286
286
  id: z.ZodString;
287
- createdAt: z.ZodString;
288
- updatedAt: z.ZodString;
289
- deletedAt: z.ZodNullable<z.ZodString>;
287
+ createdAt: z.ZodDate;
288
+ updatedAt: z.ZodDate;
289
+ deletedAt: z.ZodNullable<z.ZodDate>;
290
290
  status: z.ZodString;
291
291
  description: z.ZodString;
292
292
  }, "strip", z.ZodTypeAny, {
293
293
  id: string;
294
294
  description: string;
295
295
  status: string;
296
- createdAt: string;
297
- updatedAt: string;
298
- deletedAt: string | null;
296
+ createdAt: Date;
297
+ updatedAt: Date;
298
+ deletedAt: Date | null;
299
299
  }, {
300
300
  id: string;
301
301
  description: string;
302
302
  status: string;
303
- createdAt: string;
304
- updatedAt: string;
305
- deletedAt: string | null;
303
+ createdAt: Date;
304
+ updatedAt: Date;
305
+ deletedAt: Date | null;
306
306
  }>;
307
307
  customPresenceStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
308
308
  }, "strip", z.ZodTypeAny, {
@@ -350,16 +350,16 @@ export declare const telephonyAgentPresenceStatusContract: {
350
350
  telephonySignature: string | null;
351
351
  } | undefined;
352
352
  };
353
- createdAt: string;
354
- updatedAt: string;
355
- deletedAt: string | null;
353
+ createdAt: Date;
354
+ updatedAt: Date;
355
+ deletedAt: Date | null;
356
356
  presenceStatus: {
357
357
  id: string;
358
358
  description: string;
359
359
  status: string;
360
- createdAt: string;
361
- updatedAt: string;
362
- deletedAt: string | null;
360
+ createdAt: Date;
361
+ updatedAt: Date;
362
+ deletedAt: Date | null;
363
363
  };
364
364
  customPresenceStatus?: string | null | undefined;
365
365
  }, {
@@ -407,16 +407,16 @@ export declare const telephonyAgentPresenceStatusContract: {
407
407
  telephonySignature: string | null;
408
408
  } | undefined;
409
409
  };
410
- createdAt: string;
411
- updatedAt: string;
412
- deletedAt: string | null;
410
+ createdAt: Date;
411
+ updatedAt: Date;
412
+ deletedAt: Date | null;
413
413
  presenceStatus: {
414
414
  id: string;
415
415
  description: string;
416
416
  status: string;
417
- createdAt: string;
418
- updatedAt: string;
419
- deletedAt: string | null;
417
+ createdAt: Date;
418
+ updatedAt: Date;
419
+ deletedAt: Date | null;
420
420
  };
421
421
  customPresenceStatus?: string | null | undefined;
422
422
  }>, "many">;
@@ -479,9 +479,9 @@ export declare const telephonyAgentPresenceStatusContract: {
479
479
  responses: {
480
480
  200: z.ZodObject<{
481
481
  id: z.ZodString;
482
- createdAt: z.ZodString;
483
- updatedAt: z.ZodString;
484
- deletedAt: z.ZodNullable<z.ZodString>;
482
+ createdAt: z.ZodDate;
483
+ updatedAt: z.ZodDate;
484
+ deletedAt: z.ZodNullable<z.ZodDate>;
485
485
  user: z.ZodObject<{
486
486
  id: z.ZodString;
487
487
  createdAt: z.ZodDate;
@@ -683,25 +683,25 @@ export declare const telephonyAgentPresenceStatusContract: {
683
683
  }>;
684
684
  presenceStatus: z.ZodObject<{
685
685
  id: z.ZodString;
686
- createdAt: z.ZodString;
687
- updatedAt: z.ZodString;
688
- deletedAt: z.ZodNullable<z.ZodString>;
686
+ createdAt: z.ZodDate;
687
+ updatedAt: z.ZodDate;
688
+ deletedAt: z.ZodNullable<z.ZodDate>;
689
689
  status: z.ZodString;
690
690
  description: z.ZodString;
691
691
  }, "strip", z.ZodTypeAny, {
692
692
  id: string;
693
693
  description: string;
694
694
  status: string;
695
- createdAt: string;
696
- updatedAt: string;
697
- deletedAt: string | null;
695
+ createdAt: Date;
696
+ updatedAt: Date;
697
+ deletedAt: Date | null;
698
698
  }, {
699
699
  id: string;
700
700
  description: string;
701
701
  status: string;
702
- createdAt: string;
703
- updatedAt: string;
704
- deletedAt: string | null;
702
+ createdAt: Date;
703
+ updatedAt: Date;
704
+ deletedAt: Date | null;
705
705
  }>;
706
706
  customPresenceStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
707
707
  }, "strip", z.ZodTypeAny, {
@@ -749,16 +749,16 @@ export declare const telephonyAgentPresenceStatusContract: {
749
749
  telephonySignature: string | null;
750
750
  } | undefined;
751
751
  };
752
- createdAt: string;
753
- updatedAt: string;
754
- deletedAt: string | null;
752
+ createdAt: Date;
753
+ updatedAt: Date;
754
+ deletedAt: Date | null;
755
755
  presenceStatus: {
756
756
  id: string;
757
757
  description: string;
758
758
  status: string;
759
- createdAt: string;
760
- updatedAt: string;
761
- deletedAt: string | null;
759
+ createdAt: Date;
760
+ updatedAt: Date;
761
+ deletedAt: Date | null;
762
762
  };
763
763
  customPresenceStatus?: string | null | undefined;
764
764
  }, {
@@ -806,16 +806,16 @@ export declare const telephonyAgentPresenceStatusContract: {
806
806
  telephonySignature: string | null;
807
807
  } | undefined;
808
808
  };
809
- createdAt: string;
810
- updatedAt: string;
811
- deletedAt: string | null;
809
+ createdAt: Date;
810
+ updatedAt: Date;
811
+ deletedAt: Date | null;
812
812
  presenceStatus: {
813
813
  id: string;
814
814
  description: string;
815
815
  status: string;
816
- createdAt: string;
817
- updatedAt: string;
818
- deletedAt: string | null;
816
+ createdAt: Date;
817
+ updatedAt: Date;
818
+ deletedAt: Date | null;
819
819
  };
820
820
  customPresenceStatus?: string | null | undefined;
821
821
  }>;
@@ -889,9 +889,9 @@ export declare const telephonyAgentPresenceStatusContract: {
889
889
  requestId: z.ZodString;
890
890
  userPresenceStatu: z.ZodObject<{
891
891
  id: z.ZodString;
892
- createdAt: z.ZodString;
893
- updatedAt: z.ZodString;
894
- deletedAt: z.ZodNullable<z.ZodString>;
892
+ createdAt: z.ZodDate;
893
+ updatedAt: z.ZodDate;
894
+ deletedAt: z.ZodNullable<z.ZodDate>;
895
895
  user: z.ZodObject<{
896
896
  id: z.ZodString;
897
897
  createdAt: z.ZodDate;
@@ -1093,25 +1093,25 @@ export declare const telephonyAgentPresenceStatusContract: {
1093
1093
  }>;
1094
1094
  presenceStatus: z.ZodObject<{
1095
1095
  id: z.ZodString;
1096
- createdAt: z.ZodString;
1097
- updatedAt: z.ZodString;
1098
- deletedAt: z.ZodNullable<z.ZodString>;
1096
+ createdAt: z.ZodDate;
1097
+ updatedAt: z.ZodDate;
1098
+ deletedAt: z.ZodNullable<z.ZodDate>;
1099
1099
  status: z.ZodString;
1100
1100
  description: z.ZodString;
1101
1101
  }, "strip", z.ZodTypeAny, {
1102
1102
  id: string;
1103
1103
  description: string;
1104
1104
  status: string;
1105
- createdAt: string;
1106
- updatedAt: string;
1107
- deletedAt: string | null;
1105
+ createdAt: Date;
1106
+ updatedAt: Date;
1107
+ deletedAt: Date | null;
1108
1108
  }, {
1109
1109
  id: string;
1110
1110
  description: string;
1111
1111
  status: string;
1112
- createdAt: string;
1113
- updatedAt: string;
1114
- deletedAt: string | null;
1112
+ createdAt: Date;
1113
+ updatedAt: Date;
1114
+ deletedAt: Date | null;
1115
1115
  }>;
1116
1116
  customPresenceStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1117
1117
  }, "strip", z.ZodTypeAny, {
@@ -1159,16 +1159,16 @@ export declare const telephonyAgentPresenceStatusContract: {
1159
1159
  telephonySignature: string | null;
1160
1160
  } | undefined;
1161
1161
  };
1162
- createdAt: string;
1163
- updatedAt: string;
1164
- deletedAt: string | null;
1162
+ createdAt: Date;
1163
+ updatedAt: Date;
1164
+ deletedAt: Date | null;
1165
1165
  presenceStatus: {
1166
1166
  id: string;
1167
1167
  description: string;
1168
1168
  status: string;
1169
- createdAt: string;
1170
- updatedAt: string;
1171
- deletedAt: string | null;
1169
+ createdAt: Date;
1170
+ updatedAt: Date;
1171
+ deletedAt: Date | null;
1172
1172
  };
1173
1173
  customPresenceStatus?: string | null | undefined;
1174
1174
  }, {
@@ -1216,16 +1216,16 @@ export declare const telephonyAgentPresenceStatusContract: {
1216
1216
  telephonySignature: string | null;
1217
1217
  } | undefined;
1218
1218
  };
1219
- createdAt: string;
1220
- updatedAt: string;
1221
- deletedAt: string | null;
1219
+ createdAt: Date;
1220
+ updatedAt: Date;
1221
+ deletedAt: Date | null;
1222
1222
  presenceStatus: {
1223
1223
  id: string;
1224
1224
  description: string;
1225
1225
  status: string;
1226
- createdAt: string;
1227
- updatedAt: string;
1228
- deletedAt: string | null;
1226
+ createdAt: Date;
1227
+ updatedAt: Date;
1228
+ deletedAt: Date | null;
1229
1229
  };
1230
1230
  customPresenceStatus?: string | null | undefined;
1231
1231
  }>;
@@ -1276,16 +1276,16 @@ export declare const telephonyAgentPresenceStatusContract: {
1276
1276
  telephonySignature: string | null;
1277
1277
  } | undefined;
1278
1278
  };
1279
- createdAt: string;
1280
- updatedAt: string;
1281
- deletedAt: string | null;
1279
+ createdAt: Date;
1280
+ updatedAt: Date;
1281
+ deletedAt: Date | null;
1282
1282
  presenceStatus: {
1283
1283
  id: string;
1284
1284
  description: string;
1285
1285
  status: string;
1286
- createdAt: string;
1287
- updatedAt: string;
1288
- deletedAt: string | null;
1286
+ createdAt: Date;
1287
+ updatedAt: Date;
1288
+ deletedAt: Date | null;
1289
1289
  };
1290
1290
  customPresenceStatus?: string | null | undefined;
1291
1291
  };
@@ -1336,16 +1336,16 @@ export declare const telephonyAgentPresenceStatusContract: {
1336
1336
  telephonySignature: string | null;
1337
1337
  } | undefined;
1338
1338
  };
1339
- createdAt: string;
1340
- updatedAt: string;
1341
- deletedAt: string | null;
1339
+ createdAt: Date;
1340
+ updatedAt: Date;
1341
+ deletedAt: Date | null;
1342
1342
  presenceStatus: {
1343
1343
  id: string;
1344
1344
  description: string;
1345
1345
  status: string;
1346
- createdAt: string;
1347
- updatedAt: string;
1348
- deletedAt: string | null;
1346
+ createdAt: Date;
1347
+ updatedAt: Date;
1348
+ deletedAt: Date | null;
1349
1349
  };
1350
1350
  customPresenceStatus?: string | null | undefined;
1351
1351
  };