@kl1/contracts 1.0.27 → 1.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +151 -118
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +151 -118
- package/dist/index.mjs.map +1 -1
- package/dist/src/activity-log/index.d.ts +113 -113
- package/dist/src/activity-log/schema.d.ts +122 -122
- package/dist/src/auth/index.d.ts +89 -89
- package/dist/src/channel/index.d.ts +319 -319
- package/dist/src/channel/schema.d.ts +89 -92
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +89 -89
- package/dist/src/chat/index.d.ts +8699 -8699
- package/dist/src/chat/schema.d.ts +1486 -1486
- package/dist/src/chat/validation.d.ts +2244 -2244
- package/dist/src/comment/index.d.ts +1005 -1005
- package/dist/src/comment/schema.d.ts +283 -283
- package/dist/src/company/index.d.ts +28 -28
- package/dist/src/company/schema.d.ts +8 -8
- package/dist/src/company/validation.d.ts +15 -15
- package/dist/src/contact/index.d.ts +960 -960
- package/dist/src/contact/schema.d.ts +161 -161
- package/dist/src/contact/validation.d.ts +690 -690
- package/dist/src/contract.d.ts +18366 -18196
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/custom-field/schema.d.ts +3 -3
- package/dist/src/cx-log/index.d.ts +1023 -1023
- package/dist/src/cx-log/schema.d.ts +837 -837
- package/dist/src/dashboard/index.d.ts +6 -6
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +2 -2
- package/dist/src/dashboard/schema.d.ts.map +1 -1
- package/dist/src/extension/index.d.ts +115 -115
- package/dist/src/extension/schema.d.ts +9 -9
- package/dist/src/mail/account-contract.d.ts +168 -168
- package/dist/src/mail/mail-contract.d.ts +3336 -3336
- package/dist/src/mail/message-contract.d.ts +152 -152
- package/dist/src/mail/room-contract.d.ts +3015 -3015
- package/dist/src/mail/schemas/account-validation.schema.d.ts +168 -168
- package/dist/src/mail/schemas/account.schema.d.ts +33 -33
- package/dist/src/mail/schemas/message.schema.d.ts +108 -108
- package/dist/src/mail/schemas/room-validation.schema.d.ts +1000 -1000
- package/dist/src/mail/schemas/room.schema.d.ts +791 -791
- package/dist/src/messenger/index.d.ts +1078 -1078
- package/dist/src/permission/index.d.ts +15 -15
- package/dist/src/permission/schema.d.ts +9 -9
- package/dist/src/role/index.d.ts +96 -96
- package/dist/src/role/schema.d.ts +24 -24
- package/dist/src/telephony-agent-presence-status/index.d.ts +293 -293
- package/dist/src/telephony-agent-presence-status/schema.d.ts +89 -89
- package/dist/src/ticket/index.d.ts +288 -187
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +77 -77
- package/dist/src/ticket/validation.d.ts +66 -0
- package/dist/src/ticket/validation.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +293 -293
- package/dist/src/user/schema.d.ts +63 -63
- package/dist/src/user-presence-status-log/index.d.ts +52 -52
- package/dist/src/user-presence-status-log/schema.d.ts +89 -89
- package/dist/src/widget/index.d.ts +72 -1
- package/dist/src/widget/index.d.ts.map +1 -1
- package/dist/src/widget/validation.d.ts +10 -0
- package/dist/src/widget/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -85,89 +85,89 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
85
85
|
deletedAt: z.ZodNullable<z.ZodString>;
|
86
86
|
user: z.ZodObject<{
|
87
87
|
id: z.ZodString;
|
88
|
-
createdAt: z.
|
89
|
-
updatedAt: z.
|
90
|
-
deletedAt: z.ZodNullable<z.
|
88
|
+
createdAt: z.ZodString;
|
89
|
+
updatedAt: z.ZodString;
|
90
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
91
91
|
name: z.ZodString;
|
92
92
|
email: z.ZodString;
|
93
|
-
emailVerifiedAt: z.ZodNullable<z.
|
93
|
+
emailVerifiedAt: z.ZodNullable<z.ZodString>;
|
94
94
|
password: z.ZodString;
|
95
95
|
address: z.ZodNullable<z.ZodString>;
|
96
96
|
phone: z.ZodNullable<z.ZodString>;
|
97
97
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
98
98
|
roles: z.ZodArray<z.ZodObject<{
|
99
99
|
id: z.ZodString;
|
100
|
-
createdAt: z.
|
101
|
-
updatedAt: z.
|
102
|
-
deletedAt: z.ZodNullable<z.
|
100
|
+
createdAt: z.ZodString;
|
101
|
+
updatedAt: z.ZodString;
|
102
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
103
103
|
systemName: z.ZodString;
|
104
104
|
displayName: z.ZodString;
|
105
105
|
description: z.ZodNullable<z.ZodString>;
|
106
106
|
permissions: z.ZodArray<z.ZodObject<{
|
107
107
|
id: z.ZodString;
|
108
|
-
createdAt: z.
|
109
|
-
updatedAt: z.
|
110
|
-
deletedAt: z.ZodNullable<z.
|
108
|
+
createdAt: z.ZodString;
|
109
|
+
updatedAt: z.ZodString;
|
110
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
111
111
|
systemName: z.ZodString;
|
112
112
|
displayName: z.ZodString;
|
113
113
|
description: z.ZodNullable<z.ZodString>;
|
114
114
|
}, "strip", z.ZodTypeAny, {
|
115
115
|
id: string;
|
116
116
|
description: string | null;
|
117
|
-
createdAt:
|
118
|
-
updatedAt:
|
119
|
-
deletedAt:
|
117
|
+
createdAt: string;
|
118
|
+
updatedAt: string;
|
119
|
+
deletedAt: string | null;
|
120
120
|
systemName: string;
|
121
121
|
displayName: string;
|
122
122
|
}, {
|
123
123
|
id: string;
|
124
124
|
description: string | null;
|
125
|
-
createdAt:
|
126
|
-
updatedAt:
|
127
|
-
deletedAt:
|
125
|
+
createdAt: string;
|
126
|
+
updatedAt: string;
|
127
|
+
deletedAt: string | null;
|
128
128
|
systemName: string;
|
129
129
|
displayName: string;
|
130
130
|
}>, "many">;
|
131
131
|
}, "strip", z.ZodTypeAny, {
|
132
132
|
id: string;
|
133
133
|
description: string | null;
|
134
|
-
createdAt:
|
135
|
-
updatedAt:
|
136
|
-
deletedAt:
|
134
|
+
createdAt: string;
|
135
|
+
updatedAt: string;
|
136
|
+
deletedAt: string | null;
|
137
137
|
systemName: string;
|
138
138
|
displayName: string;
|
139
139
|
permissions: {
|
140
140
|
id: string;
|
141
141
|
description: string | null;
|
142
|
-
createdAt:
|
143
|
-
updatedAt:
|
144
|
-
deletedAt:
|
142
|
+
createdAt: string;
|
143
|
+
updatedAt: string;
|
144
|
+
deletedAt: string | null;
|
145
145
|
systemName: string;
|
146
146
|
displayName: string;
|
147
147
|
}[];
|
148
148
|
}, {
|
149
149
|
id: string;
|
150
150
|
description: string | null;
|
151
|
-
createdAt:
|
152
|
-
updatedAt:
|
153
|
-
deletedAt:
|
151
|
+
createdAt: string;
|
152
|
+
updatedAt: string;
|
153
|
+
deletedAt: string | null;
|
154
154
|
systemName: string;
|
155
155
|
displayName: string;
|
156
156
|
permissions: {
|
157
157
|
id: string;
|
158
158
|
description: string | null;
|
159
|
-
createdAt:
|
160
|
-
updatedAt:
|
161
|
-
deletedAt:
|
159
|
+
createdAt: string;
|
160
|
+
updatedAt: string;
|
161
|
+
deletedAt: string | null;
|
162
162
|
systemName: string;
|
163
163
|
displayName: string;
|
164
164
|
}[];
|
165
165
|
}>, "many">;
|
166
166
|
extension: z.ZodOptional<z.ZodObject<{
|
167
167
|
id: z.ZodString;
|
168
|
-
createdAt: z.
|
169
|
-
updatedAt: z.
|
170
|
-
deletedAt: z.ZodNullable<z.
|
168
|
+
createdAt: z.ZodString;
|
169
|
+
updatedAt: z.ZodString;
|
170
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
171
171
|
userId: z.ZodNullable<z.ZodString>;
|
172
172
|
sipServerUrl: z.ZodString;
|
173
173
|
sipUserName: z.ZodString;
|
@@ -176,9 +176,9 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
176
176
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
177
177
|
}, "strip", z.ZodTypeAny, {
|
178
178
|
id: string;
|
179
|
-
createdAt:
|
180
|
-
updatedAt:
|
181
|
-
deletedAt:
|
179
|
+
createdAt: string;
|
180
|
+
updatedAt: string;
|
181
|
+
deletedAt: string | null;
|
182
182
|
userId: string | null;
|
183
183
|
sipServerUrl: string;
|
184
184
|
sipUserName: string;
|
@@ -187,9 +187,9 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
187
187
|
telephonySignature: string | null;
|
188
188
|
}, {
|
189
189
|
id: string;
|
190
|
-
createdAt:
|
191
|
-
updatedAt:
|
192
|
-
deletedAt:
|
190
|
+
createdAt: string;
|
191
|
+
updatedAt: string;
|
192
|
+
deletedAt: string | null;
|
193
193
|
userId: string | null;
|
194
194
|
sipServerUrl: string;
|
195
195
|
sipUserName: string;
|
@@ -202,36 +202,36 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
202
202
|
address: string | null;
|
203
203
|
name: string;
|
204
204
|
email: string;
|
205
|
-
createdAt:
|
206
|
-
updatedAt:
|
207
|
-
deletedAt:
|
208
|
-
emailVerifiedAt:
|
205
|
+
createdAt: string;
|
206
|
+
updatedAt: string;
|
207
|
+
deletedAt: string | null;
|
208
|
+
emailVerifiedAt: string | null;
|
209
209
|
password: string;
|
210
210
|
phone: string | null;
|
211
211
|
notificationCount: number | null;
|
212
212
|
roles: {
|
213
213
|
id: string;
|
214
214
|
description: string | null;
|
215
|
-
createdAt:
|
216
|
-
updatedAt:
|
217
|
-
deletedAt:
|
215
|
+
createdAt: string;
|
216
|
+
updatedAt: string;
|
217
|
+
deletedAt: string | null;
|
218
218
|
systemName: string;
|
219
219
|
displayName: string;
|
220
220
|
permissions: {
|
221
221
|
id: string;
|
222
222
|
description: string | null;
|
223
|
-
createdAt:
|
224
|
-
updatedAt:
|
225
|
-
deletedAt:
|
223
|
+
createdAt: string;
|
224
|
+
updatedAt: string;
|
225
|
+
deletedAt: string | null;
|
226
226
|
systemName: string;
|
227
227
|
displayName: string;
|
228
228
|
}[];
|
229
229
|
}[];
|
230
230
|
extension?: {
|
231
231
|
id: string;
|
232
|
-
createdAt:
|
233
|
-
updatedAt:
|
234
|
-
deletedAt:
|
232
|
+
createdAt: string;
|
233
|
+
updatedAt: string;
|
234
|
+
deletedAt: string | null;
|
235
235
|
userId: string | null;
|
236
236
|
sipServerUrl: string;
|
237
237
|
sipUserName: string;
|
@@ -244,36 +244,36 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
244
244
|
address: string | null;
|
245
245
|
name: string;
|
246
246
|
email: string;
|
247
|
-
createdAt:
|
248
|
-
updatedAt:
|
249
|
-
deletedAt:
|
250
|
-
emailVerifiedAt:
|
247
|
+
createdAt: string;
|
248
|
+
updatedAt: string;
|
249
|
+
deletedAt: string | null;
|
250
|
+
emailVerifiedAt: string | null;
|
251
251
|
password: string;
|
252
252
|
phone: string | null;
|
253
253
|
notificationCount: number | null;
|
254
254
|
roles: {
|
255
255
|
id: string;
|
256
256
|
description: string | null;
|
257
|
-
createdAt:
|
258
|
-
updatedAt:
|
259
|
-
deletedAt:
|
257
|
+
createdAt: string;
|
258
|
+
updatedAt: string;
|
259
|
+
deletedAt: string | null;
|
260
260
|
systemName: string;
|
261
261
|
displayName: string;
|
262
262
|
permissions: {
|
263
263
|
id: string;
|
264
264
|
description: string | null;
|
265
|
-
createdAt:
|
266
|
-
updatedAt:
|
267
|
-
deletedAt:
|
265
|
+
createdAt: string;
|
266
|
+
updatedAt: string;
|
267
|
+
deletedAt: string | null;
|
268
268
|
systemName: string;
|
269
269
|
displayName: string;
|
270
270
|
}[];
|
271
271
|
}[];
|
272
272
|
extension?: {
|
273
273
|
id: string;
|
274
|
-
createdAt:
|
275
|
-
updatedAt:
|
276
|
-
deletedAt:
|
274
|
+
createdAt: string;
|
275
|
+
updatedAt: string;
|
276
|
+
deletedAt: string | null;
|
277
277
|
userId: string | null;
|
278
278
|
sipServerUrl: string;
|
279
279
|
sipUserName: string;
|
@@ -312,36 +312,36 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
312
312
|
address: string | null;
|
313
313
|
name: string;
|
314
314
|
email: string;
|
315
|
-
createdAt:
|
316
|
-
updatedAt:
|
317
|
-
deletedAt:
|
318
|
-
emailVerifiedAt:
|
315
|
+
createdAt: string;
|
316
|
+
updatedAt: string;
|
317
|
+
deletedAt: string | null;
|
318
|
+
emailVerifiedAt: string | null;
|
319
319
|
password: string;
|
320
320
|
phone: string | null;
|
321
321
|
notificationCount: number | null;
|
322
322
|
roles: {
|
323
323
|
id: string;
|
324
324
|
description: string | null;
|
325
|
-
createdAt:
|
326
|
-
updatedAt:
|
327
|
-
deletedAt:
|
325
|
+
createdAt: string;
|
326
|
+
updatedAt: string;
|
327
|
+
deletedAt: string | null;
|
328
328
|
systemName: string;
|
329
329
|
displayName: string;
|
330
330
|
permissions: {
|
331
331
|
id: string;
|
332
332
|
description: string | null;
|
333
|
-
createdAt:
|
334
|
-
updatedAt:
|
335
|
-
deletedAt:
|
333
|
+
createdAt: string;
|
334
|
+
updatedAt: string;
|
335
|
+
deletedAt: string | null;
|
336
336
|
systemName: string;
|
337
337
|
displayName: string;
|
338
338
|
}[];
|
339
339
|
}[];
|
340
340
|
extension?: {
|
341
341
|
id: string;
|
342
|
-
createdAt:
|
343
|
-
updatedAt:
|
344
|
-
deletedAt:
|
342
|
+
createdAt: string;
|
343
|
+
updatedAt: string;
|
344
|
+
deletedAt: string | null;
|
345
345
|
userId: string | null;
|
346
346
|
sipServerUrl: string;
|
347
347
|
sipUserName: string;
|
@@ -369,36 +369,36 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
369
369
|
address: string | null;
|
370
370
|
name: string;
|
371
371
|
email: string;
|
372
|
-
createdAt:
|
373
|
-
updatedAt:
|
374
|
-
deletedAt:
|
375
|
-
emailVerifiedAt:
|
372
|
+
createdAt: string;
|
373
|
+
updatedAt: string;
|
374
|
+
deletedAt: string | null;
|
375
|
+
emailVerifiedAt: string | null;
|
376
376
|
password: string;
|
377
377
|
phone: string | null;
|
378
378
|
notificationCount: number | null;
|
379
379
|
roles: {
|
380
380
|
id: string;
|
381
381
|
description: string | null;
|
382
|
-
createdAt:
|
383
|
-
updatedAt:
|
384
|
-
deletedAt:
|
382
|
+
createdAt: string;
|
383
|
+
updatedAt: string;
|
384
|
+
deletedAt: string | null;
|
385
385
|
systemName: string;
|
386
386
|
displayName: string;
|
387
387
|
permissions: {
|
388
388
|
id: string;
|
389
389
|
description: string | null;
|
390
|
-
createdAt:
|
391
|
-
updatedAt:
|
392
|
-
deletedAt:
|
390
|
+
createdAt: string;
|
391
|
+
updatedAt: string;
|
392
|
+
deletedAt: string | null;
|
393
393
|
systemName: string;
|
394
394
|
displayName: string;
|
395
395
|
}[];
|
396
396
|
}[];
|
397
397
|
extension?: {
|
398
398
|
id: string;
|
399
|
-
createdAt:
|
400
|
-
updatedAt:
|
401
|
-
deletedAt:
|
399
|
+
createdAt: string;
|
400
|
+
updatedAt: string;
|
401
|
+
deletedAt: string | null;
|
402
402
|
userId: string | null;
|
403
403
|
sipServerUrl: string;
|
404
404
|
sipUserName: string;
|
@@ -484,89 +484,89 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
484
484
|
deletedAt: z.ZodNullable<z.ZodString>;
|
485
485
|
user: z.ZodObject<{
|
486
486
|
id: z.ZodString;
|
487
|
-
createdAt: z.
|
488
|
-
updatedAt: z.
|
489
|
-
deletedAt: z.ZodNullable<z.
|
487
|
+
createdAt: z.ZodString;
|
488
|
+
updatedAt: z.ZodString;
|
489
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
490
490
|
name: z.ZodString;
|
491
491
|
email: z.ZodString;
|
492
|
-
emailVerifiedAt: z.ZodNullable<z.
|
492
|
+
emailVerifiedAt: z.ZodNullable<z.ZodString>;
|
493
493
|
password: z.ZodString;
|
494
494
|
address: z.ZodNullable<z.ZodString>;
|
495
495
|
phone: z.ZodNullable<z.ZodString>;
|
496
496
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
497
497
|
roles: z.ZodArray<z.ZodObject<{
|
498
498
|
id: z.ZodString;
|
499
|
-
createdAt: z.
|
500
|
-
updatedAt: z.
|
501
|
-
deletedAt: z.ZodNullable<z.
|
499
|
+
createdAt: z.ZodString;
|
500
|
+
updatedAt: z.ZodString;
|
501
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
502
502
|
systemName: z.ZodString;
|
503
503
|
displayName: z.ZodString;
|
504
504
|
description: z.ZodNullable<z.ZodString>;
|
505
505
|
permissions: z.ZodArray<z.ZodObject<{
|
506
506
|
id: z.ZodString;
|
507
|
-
createdAt: z.
|
508
|
-
updatedAt: z.
|
509
|
-
deletedAt: z.ZodNullable<z.
|
507
|
+
createdAt: z.ZodString;
|
508
|
+
updatedAt: z.ZodString;
|
509
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
510
510
|
systemName: z.ZodString;
|
511
511
|
displayName: z.ZodString;
|
512
512
|
description: z.ZodNullable<z.ZodString>;
|
513
513
|
}, "strip", z.ZodTypeAny, {
|
514
514
|
id: string;
|
515
515
|
description: string | null;
|
516
|
-
createdAt:
|
517
|
-
updatedAt:
|
518
|
-
deletedAt:
|
516
|
+
createdAt: string;
|
517
|
+
updatedAt: string;
|
518
|
+
deletedAt: string | null;
|
519
519
|
systemName: string;
|
520
520
|
displayName: string;
|
521
521
|
}, {
|
522
522
|
id: string;
|
523
523
|
description: string | null;
|
524
|
-
createdAt:
|
525
|
-
updatedAt:
|
526
|
-
deletedAt:
|
524
|
+
createdAt: string;
|
525
|
+
updatedAt: string;
|
526
|
+
deletedAt: string | null;
|
527
527
|
systemName: string;
|
528
528
|
displayName: string;
|
529
529
|
}>, "many">;
|
530
530
|
}, "strip", z.ZodTypeAny, {
|
531
531
|
id: string;
|
532
532
|
description: string | null;
|
533
|
-
createdAt:
|
534
|
-
updatedAt:
|
535
|
-
deletedAt:
|
533
|
+
createdAt: string;
|
534
|
+
updatedAt: string;
|
535
|
+
deletedAt: string | null;
|
536
536
|
systemName: string;
|
537
537
|
displayName: string;
|
538
538
|
permissions: {
|
539
539
|
id: string;
|
540
540
|
description: string | null;
|
541
|
-
createdAt:
|
542
|
-
updatedAt:
|
543
|
-
deletedAt:
|
541
|
+
createdAt: string;
|
542
|
+
updatedAt: string;
|
543
|
+
deletedAt: string | null;
|
544
544
|
systemName: string;
|
545
545
|
displayName: string;
|
546
546
|
}[];
|
547
547
|
}, {
|
548
548
|
id: string;
|
549
549
|
description: string | null;
|
550
|
-
createdAt:
|
551
|
-
updatedAt:
|
552
|
-
deletedAt:
|
550
|
+
createdAt: string;
|
551
|
+
updatedAt: string;
|
552
|
+
deletedAt: string | null;
|
553
553
|
systemName: string;
|
554
554
|
displayName: string;
|
555
555
|
permissions: {
|
556
556
|
id: string;
|
557
557
|
description: string | null;
|
558
|
-
createdAt:
|
559
|
-
updatedAt:
|
560
|
-
deletedAt:
|
558
|
+
createdAt: string;
|
559
|
+
updatedAt: string;
|
560
|
+
deletedAt: string | null;
|
561
561
|
systemName: string;
|
562
562
|
displayName: string;
|
563
563
|
}[];
|
564
564
|
}>, "many">;
|
565
565
|
extension: z.ZodOptional<z.ZodObject<{
|
566
566
|
id: z.ZodString;
|
567
|
-
createdAt: z.
|
568
|
-
updatedAt: z.
|
569
|
-
deletedAt: z.ZodNullable<z.
|
567
|
+
createdAt: z.ZodString;
|
568
|
+
updatedAt: z.ZodString;
|
569
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
570
570
|
userId: z.ZodNullable<z.ZodString>;
|
571
571
|
sipServerUrl: z.ZodString;
|
572
572
|
sipUserName: z.ZodString;
|
@@ -575,9 +575,9 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
575
575
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
576
576
|
}, "strip", z.ZodTypeAny, {
|
577
577
|
id: string;
|
578
|
-
createdAt:
|
579
|
-
updatedAt:
|
580
|
-
deletedAt:
|
578
|
+
createdAt: string;
|
579
|
+
updatedAt: string;
|
580
|
+
deletedAt: string | null;
|
581
581
|
userId: string | null;
|
582
582
|
sipServerUrl: string;
|
583
583
|
sipUserName: string;
|
@@ -586,9 +586,9 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
586
586
|
telephonySignature: string | null;
|
587
587
|
}, {
|
588
588
|
id: string;
|
589
|
-
createdAt:
|
590
|
-
updatedAt:
|
591
|
-
deletedAt:
|
589
|
+
createdAt: string;
|
590
|
+
updatedAt: string;
|
591
|
+
deletedAt: string | null;
|
592
592
|
userId: string | null;
|
593
593
|
sipServerUrl: string;
|
594
594
|
sipUserName: string;
|
@@ -601,36 +601,36 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
601
601
|
address: string | null;
|
602
602
|
name: string;
|
603
603
|
email: string;
|
604
|
-
createdAt:
|
605
|
-
updatedAt:
|
606
|
-
deletedAt:
|
607
|
-
emailVerifiedAt:
|
604
|
+
createdAt: string;
|
605
|
+
updatedAt: string;
|
606
|
+
deletedAt: string | null;
|
607
|
+
emailVerifiedAt: string | null;
|
608
608
|
password: string;
|
609
609
|
phone: string | null;
|
610
610
|
notificationCount: number | null;
|
611
611
|
roles: {
|
612
612
|
id: string;
|
613
613
|
description: string | null;
|
614
|
-
createdAt:
|
615
|
-
updatedAt:
|
616
|
-
deletedAt:
|
614
|
+
createdAt: string;
|
615
|
+
updatedAt: string;
|
616
|
+
deletedAt: string | null;
|
617
617
|
systemName: string;
|
618
618
|
displayName: string;
|
619
619
|
permissions: {
|
620
620
|
id: string;
|
621
621
|
description: string | null;
|
622
|
-
createdAt:
|
623
|
-
updatedAt:
|
624
|
-
deletedAt:
|
622
|
+
createdAt: string;
|
623
|
+
updatedAt: string;
|
624
|
+
deletedAt: string | null;
|
625
625
|
systemName: string;
|
626
626
|
displayName: string;
|
627
627
|
}[];
|
628
628
|
}[];
|
629
629
|
extension?: {
|
630
630
|
id: string;
|
631
|
-
createdAt:
|
632
|
-
updatedAt:
|
633
|
-
deletedAt:
|
631
|
+
createdAt: string;
|
632
|
+
updatedAt: string;
|
633
|
+
deletedAt: string | null;
|
634
634
|
userId: string | null;
|
635
635
|
sipServerUrl: string;
|
636
636
|
sipUserName: string;
|
@@ -643,36 +643,36 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
643
643
|
address: string | null;
|
644
644
|
name: string;
|
645
645
|
email: string;
|
646
|
-
createdAt:
|
647
|
-
updatedAt:
|
648
|
-
deletedAt:
|
649
|
-
emailVerifiedAt:
|
646
|
+
createdAt: string;
|
647
|
+
updatedAt: string;
|
648
|
+
deletedAt: string | null;
|
649
|
+
emailVerifiedAt: string | null;
|
650
650
|
password: string;
|
651
651
|
phone: string | null;
|
652
652
|
notificationCount: number | null;
|
653
653
|
roles: {
|
654
654
|
id: string;
|
655
655
|
description: string | null;
|
656
|
-
createdAt:
|
657
|
-
updatedAt:
|
658
|
-
deletedAt:
|
656
|
+
createdAt: string;
|
657
|
+
updatedAt: string;
|
658
|
+
deletedAt: string | null;
|
659
659
|
systemName: string;
|
660
660
|
displayName: string;
|
661
661
|
permissions: {
|
662
662
|
id: string;
|
663
663
|
description: string | null;
|
664
|
-
createdAt:
|
665
|
-
updatedAt:
|
666
|
-
deletedAt:
|
664
|
+
createdAt: string;
|
665
|
+
updatedAt: string;
|
666
|
+
deletedAt: string | null;
|
667
667
|
systemName: string;
|
668
668
|
displayName: string;
|
669
669
|
}[];
|
670
670
|
}[];
|
671
671
|
extension?: {
|
672
672
|
id: string;
|
673
|
-
createdAt:
|
674
|
-
updatedAt:
|
675
|
-
deletedAt:
|
673
|
+
createdAt: string;
|
674
|
+
updatedAt: string;
|
675
|
+
deletedAt: string | null;
|
676
676
|
userId: string | null;
|
677
677
|
sipServerUrl: string;
|
678
678
|
sipUserName: string;
|
@@ -711,36 +711,36 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
711
711
|
address: string | null;
|
712
712
|
name: string;
|
713
713
|
email: string;
|
714
|
-
createdAt:
|
715
|
-
updatedAt:
|
716
|
-
deletedAt:
|
717
|
-
emailVerifiedAt:
|
714
|
+
createdAt: string;
|
715
|
+
updatedAt: string;
|
716
|
+
deletedAt: string | null;
|
717
|
+
emailVerifiedAt: string | null;
|
718
718
|
password: string;
|
719
719
|
phone: string | null;
|
720
720
|
notificationCount: number | null;
|
721
721
|
roles: {
|
722
722
|
id: string;
|
723
723
|
description: string | null;
|
724
|
-
createdAt:
|
725
|
-
updatedAt:
|
726
|
-
deletedAt:
|
724
|
+
createdAt: string;
|
725
|
+
updatedAt: string;
|
726
|
+
deletedAt: string | null;
|
727
727
|
systemName: string;
|
728
728
|
displayName: string;
|
729
729
|
permissions: {
|
730
730
|
id: string;
|
731
731
|
description: string | null;
|
732
|
-
createdAt:
|
733
|
-
updatedAt:
|
734
|
-
deletedAt:
|
732
|
+
createdAt: string;
|
733
|
+
updatedAt: string;
|
734
|
+
deletedAt: string | null;
|
735
735
|
systemName: string;
|
736
736
|
displayName: string;
|
737
737
|
}[];
|
738
738
|
}[];
|
739
739
|
extension?: {
|
740
740
|
id: string;
|
741
|
-
createdAt:
|
742
|
-
updatedAt:
|
743
|
-
deletedAt:
|
741
|
+
createdAt: string;
|
742
|
+
updatedAt: string;
|
743
|
+
deletedAt: string | null;
|
744
744
|
userId: string | null;
|
745
745
|
sipServerUrl: string;
|
746
746
|
sipUserName: string;
|
@@ -768,36 +768,36 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
768
768
|
address: string | null;
|
769
769
|
name: string;
|
770
770
|
email: string;
|
771
|
-
createdAt:
|
772
|
-
updatedAt:
|
773
|
-
deletedAt:
|
774
|
-
emailVerifiedAt:
|
771
|
+
createdAt: string;
|
772
|
+
updatedAt: string;
|
773
|
+
deletedAt: string | null;
|
774
|
+
emailVerifiedAt: string | null;
|
775
775
|
password: string;
|
776
776
|
phone: string | null;
|
777
777
|
notificationCount: number | null;
|
778
778
|
roles: {
|
779
779
|
id: string;
|
780
780
|
description: string | null;
|
781
|
-
createdAt:
|
782
|
-
updatedAt:
|
783
|
-
deletedAt:
|
781
|
+
createdAt: string;
|
782
|
+
updatedAt: string;
|
783
|
+
deletedAt: string | null;
|
784
784
|
systemName: string;
|
785
785
|
displayName: string;
|
786
786
|
permissions: {
|
787
787
|
id: string;
|
788
788
|
description: string | null;
|
789
|
-
createdAt:
|
790
|
-
updatedAt:
|
791
|
-
deletedAt:
|
789
|
+
createdAt: string;
|
790
|
+
updatedAt: string;
|
791
|
+
deletedAt: string | null;
|
792
792
|
systemName: string;
|
793
793
|
displayName: string;
|
794
794
|
}[];
|
795
795
|
}[];
|
796
796
|
extension?: {
|
797
797
|
id: string;
|
798
|
-
createdAt:
|
799
|
-
updatedAt:
|
800
|
-
deletedAt:
|
798
|
+
createdAt: string;
|
799
|
+
updatedAt: string;
|
800
|
+
deletedAt: string | null;
|
801
801
|
userId: string | null;
|
802
802
|
sipServerUrl: string;
|
803
803
|
sipUserName: string;
|
@@ -894,89 +894,89 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
894
894
|
deletedAt: z.ZodNullable<z.ZodString>;
|
895
895
|
user: z.ZodObject<{
|
896
896
|
id: z.ZodString;
|
897
|
-
createdAt: z.
|
898
|
-
updatedAt: z.
|
899
|
-
deletedAt: z.ZodNullable<z.
|
897
|
+
createdAt: z.ZodString;
|
898
|
+
updatedAt: z.ZodString;
|
899
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
900
900
|
name: z.ZodString;
|
901
901
|
email: z.ZodString;
|
902
|
-
emailVerifiedAt: z.ZodNullable<z.
|
902
|
+
emailVerifiedAt: z.ZodNullable<z.ZodString>;
|
903
903
|
password: z.ZodString;
|
904
904
|
address: z.ZodNullable<z.ZodString>;
|
905
905
|
phone: z.ZodNullable<z.ZodString>;
|
906
906
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
907
907
|
roles: z.ZodArray<z.ZodObject<{
|
908
908
|
id: z.ZodString;
|
909
|
-
createdAt: z.
|
910
|
-
updatedAt: z.
|
911
|
-
deletedAt: z.ZodNullable<z.
|
909
|
+
createdAt: z.ZodString;
|
910
|
+
updatedAt: z.ZodString;
|
911
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
912
912
|
systemName: z.ZodString;
|
913
913
|
displayName: z.ZodString;
|
914
914
|
description: z.ZodNullable<z.ZodString>;
|
915
915
|
permissions: z.ZodArray<z.ZodObject<{
|
916
916
|
id: z.ZodString;
|
917
|
-
createdAt: z.
|
918
|
-
updatedAt: z.
|
919
|
-
deletedAt: z.ZodNullable<z.
|
917
|
+
createdAt: z.ZodString;
|
918
|
+
updatedAt: z.ZodString;
|
919
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
920
920
|
systemName: z.ZodString;
|
921
921
|
displayName: z.ZodString;
|
922
922
|
description: z.ZodNullable<z.ZodString>;
|
923
923
|
}, "strip", z.ZodTypeAny, {
|
924
924
|
id: string;
|
925
925
|
description: string | null;
|
926
|
-
createdAt:
|
927
|
-
updatedAt:
|
928
|
-
deletedAt:
|
926
|
+
createdAt: string;
|
927
|
+
updatedAt: string;
|
928
|
+
deletedAt: string | null;
|
929
929
|
systemName: string;
|
930
930
|
displayName: string;
|
931
931
|
}, {
|
932
932
|
id: string;
|
933
933
|
description: string | null;
|
934
|
-
createdAt:
|
935
|
-
updatedAt:
|
936
|
-
deletedAt:
|
934
|
+
createdAt: string;
|
935
|
+
updatedAt: string;
|
936
|
+
deletedAt: string | null;
|
937
937
|
systemName: string;
|
938
938
|
displayName: string;
|
939
939
|
}>, "many">;
|
940
940
|
}, "strip", z.ZodTypeAny, {
|
941
941
|
id: string;
|
942
942
|
description: string | null;
|
943
|
-
createdAt:
|
944
|
-
updatedAt:
|
945
|
-
deletedAt:
|
943
|
+
createdAt: string;
|
944
|
+
updatedAt: string;
|
945
|
+
deletedAt: string | null;
|
946
946
|
systemName: string;
|
947
947
|
displayName: string;
|
948
948
|
permissions: {
|
949
949
|
id: string;
|
950
950
|
description: string | null;
|
951
|
-
createdAt:
|
952
|
-
updatedAt:
|
953
|
-
deletedAt:
|
951
|
+
createdAt: string;
|
952
|
+
updatedAt: string;
|
953
|
+
deletedAt: string | null;
|
954
954
|
systemName: string;
|
955
955
|
displayName: string;
|
956
956
|
}[];
|
957
957
|
}, {
|
958
958
|
id: string;
|
959
959
|
description: string | null;
|
960
|
-
createdAt:
|
961
|
-
updatedAt:
|
962
|
-
deletedAt:
|
960
|
+
createdAt: string;
|
961
|
+
updatedAt: string;
|
962
|
+
deletedAt: string | null;
|
963
963
|
systemName: string;
|
964
964
|
displayName: string;
|
965
965
|
permissions: {
|
966
966
|
id: string;
|
967
967
|
description: string | null;
|
968
|
-
createdAt:
|
969
|
-
updatedAt:
|
970
|
-
deletedAt:
|
968
|
+
createdAt: string;
|
969
|
+
updatedAt: string;
|
970
|
+
deletedAt: string | null;
|
971
971
|
systemName: string;
|
972
972
|
displayName: string;
|
973
973
|
}[];
|
974
974
|
}>, "many">;
|
975
975
|
extension: z.ZodOptional<z.ZodObject<{
|
976
976
|
id: z.ZodString;
|
977
|
-
createdAt: z.
|
978
|
-
updatedAt: z.
|
979
|
-
deletedAt: z.ZodNullable<z.
|
977
|
+
createdAt: z.ZodString;
|
978
|
+
updatedAt: z.ZodString;
|
979
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
980
980
|
userId: z.ZodNullable<z.ZodString>;
|
981
981
|
sipServerUrl: z.ZodString;
|
982
982
|
sipUserName: z.ZodString;
|
@@ -985,9 +985,9 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
985
985
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
986
986
|
}, "strip", z.ZodTypeAny, {
|
987
987
|
id: string;
|
988
|
-
createdAt:
|
989
|
-
updatedAt:
|
990
|
-
deletedAt:
|
988
|
+
createdAt: string;
|
989
|
+
updatedAt: string;
|
990
|
+
deletedAt: string | null;
|
991
991
|
userId: string | null;
|
992
992
|
sipServerUrl: string;
|
993
993
|
sipUserName: string;
|
@@ -996,9 +996,9 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
996
996
|
telephonySignature: string | null;
|
997
997
|
}, {
|
998
998
|
id: string;
|
999
|
-
createdAt:
|
1000
|
-
updatedAt:
|
1001
|
-
deletedAt:
|
999
|
+
createdAt: string;
|
1000
|
+
updatedAt: string;
|
1001
|
+
deletedAt: string | null;
|
1002
1002
|
userId: string | null;
|
1003
1003
|
sipServerUrl: string;
|
1004
1004
|
sipUserName: string;
|
@@ -1011,36 +1011,36 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
1011
1011
|
address: string | null;
|
1012
1012
|
name: string;
|
1013
1013
|
email: string;
|
1014
|
-
createdAt:
|
1015
|
-
updatedAt:
|
1016
|
-
deletedAt:
|
1017
|
-
emailVerifiedAt:
|
1014
|
+
createdAt: string;
|
1015
|
+
updatedAt: string;
|
1016
|
+
deletedAt: string | null;
|
1017
|
+
emailVerifiedAt: string | null;
|
1018
1018
|
password: string;
|
1019
1019
|
phone: string | null;
|
1020
1020
|
notificationCount: number | null;
|
1021
1021
|
roles: {
|
1022
1022
|
id: string;
|
1023
1023
|
description: string | null;
|
1024
|
-
createdAt:
|
1025
|
-
updatedAt:
|
1026
|
-
deletedAt:
|
1024
|
+
createdAt: string;
|
1025
|
+
updatedAt: string;
|
1026
|
+
deletedAt: string | null;
|
1027
1027
|
systemName: string;
|
1028
1028
|
displayName: string;
|
1029
1029
|
permissions: {
|
1030
1030
|
id: string;
|
1031
1031
|
description: string | null;
|
1032
|
-
createdAt:
|
1033
|
-
updatedAt:
|
1034
|
-
deletedAt:
|
1032
|
+
createdAt: string;
|
1033
|
+
updatedAt: string;
|
1034
|
+
deletedAt: string | null;
|
1035
1035
|
systemName: string;
|
1036
1036
|
displayName: string;
|
1037
1037
|
}[];
|
1038
1038
|
}[];
|
1039
1039
|
extension?: {
|
1040
1040
|
id: string;
|
1041
|
-
createdAt:
|
1042
|
-
updatedAt:
|
1043
|
-
deletedAt:
|
1041
|
+
createdAt: string;
|
1042
|
+
updatedAt: string;
|
1043
|
+
deletedAt: string | null;
|
1044
1044
|
userId: string | null;
|
1045
1045
|
sipServerUrl: string;
|
1046
1046
|
sipUserName: string;
|
@@ -1053,36 +1053,36 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
1053
1053
|
address: string | null;
|
1054
1054
|
name: string;
|
1055
1055
|
email: string;
|
1056
|
-
createdAt:
|
1057
|
-
updatedAt:
|
1058
|
-
deletedAt:
|
1059
|
-
emailVerifiedAt:
|
1056
|
+
createdAt: string;
|
1057
|
+
updatedAt: string;
|
1058
|
+
deletedAt: string | null;
|
1059
|
+
emailVerifiedAt: string | null;
|
1060
1060
|
password: string;
|
1061
1061
|
phone: string | null;
|
1062
1062
|
notificationCount: number | null;
|
1063
1063
|
roles: {
|
1064
1064
|
id: string;
|
1065
1065
|
description: string | null;
|
1066
|
-
createdAt:
|
1067
|
-
updatedAt:
|
1068
|
-
deletedAt:
|
1066
|
+
createdAt: string;
|
1067
|
+
updatedAt: string;
|
1068
|
+
deletedAt: string | null;
|
1069
1069
|
systemName: string;
|
1070
1070
|
displayName: string;
|
1071
1071
|
permissions: {
|
1072
1072
|
id: string;
|
1073
1073
|
description: string | null;
|
1074
|
-
createdAt:
|
1075
|
-
updatedAt:
|
1076
|
-
deletedAt:
|
1074
|
+
createdAt: string;
|
1075
|
+
updatedAt: string;
|
1076
|
+
deletedAt: string | null;
|
1077
1077
|
systemName: string;
|
1078
1078
|
displayName: string;
|
1079
1079
|
}[];
|
1080
1080
|
}[];
|
1081
1081
|
extension?: {
|
1082
1082
|
id: string;
|
1083
|
-
createdAt:
|
1084
|
-
updatedAt:
|
1085
|
-
deletedAt:
|
1083
|
+
createdAt: string;
|
1084
|
+
updatedAt: string;
|
1085
|
+
deletedAt: string | null;
|
1086
1086
|
userId: string | null;
|
1087
1087
|
sipServerUrl: string;
|
1088
1088
|
sipUserName: string;
|
@@ -1121,36 +1121,36 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
1121
1121
|
address: string | null;
|
1122
1122
|
name: string;
|
1123
1123
|
email: string;
|
1124
|
-
createdAt:
|
1125
|
-
updatedAt:
|
1126
|
-
deletedAt:
|
1127
|
-
emailVerifiedAt:
|
1124
|
+
createdAt: string;
|
1125
|
+
updatedAt: string;
|
1126
|
+
deletedAt: string | null;
|
1127
|
+
emailVerifiedAt: string | null;
|
1128
1128
|
password: string;
|
1129
1129
|
phone: string | null;
|
1130
1130
|
notificationCount: number | null;
|
1131
1131
|
roles: {
|
1132
1132
|
id: string;
|
1133
1133
|
description: string | null;
|
1134
|
-
createdAt:
|
1135
|
-
updatedAt:
|
1136
|
-
deletedAt:
|
1134
|
+
createdAt: string;
|
1135
|
+
updatedAt: string;
|
1136
|
+
deletedAt: string | null;
|
1137
1137
|
systemName: string;
|
1138
1138
|
displayName: string;
|
1139
1139
|
permissions: {
|
1140
1140
|
id: string;
|
1141
1141
|
description: string | null;
|
1142
|
-
createdAt:
|
1143
|
-
updatedAt:
|
1144
|
-
deletedAt:
|
1142
|
+
createdAt: string;
|
1143
|
+
updatedAt: string;
|
1144
|
+
deletedAt: string | null;
|
1145
1145
|
systemName: string;
|
1146
1146
|
displayName: string;
|
1147
1147
|
}[];
|
1148
1148
|
}[];
|
1149
1149
|
extension?: {
|
1150
1150
|
id: string;
|
1151
|
-
createdAt:
|
1152
|
-
updatedAt:
|
1153
|
-
deletedAt:
|
1151
|
+
createdAt: string;
|
1152
|
+
updatedAt: string;
|
1153
|
+
deletedAt: string | null;
|
1154
1154
|
userId: string | null;
|
1155
1155
|
sipServerUrl: string;
|
1156
1156
|
sipUserName: string;
|
@@ -1178,36 +1178,36 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
1178
1178
|
address: string | null;
|
1179
1179
|
name: string;
|
1180
1180
|
email: string;
|
1181
|
-
createdAt:
|
1182
|
-
updatedAt:
|
1183
|
-
deletedAt:
|
1184
|
-
emailVerifiedAt:
|
1181
|
+
createdAt: string;
|
1182
|
+
updatedAt: string;
|
1183
|
+
deletedAt: string | null;
|
1184
|
+
emailVerifiedAt: string | null;
|
1185
1185
|
password: string;
|
1186
1186
|
phone: string | null;
|
1187
1187
|
notificationCount: number | null;
|
1188
1188
|
roles: {
|
1189
1189
|
id: string;
|
1190
1190
|
description: string | null;
|
1191
|
-
createdAt:
|
1192
|
-
updatedAt:
|
1193
|
-
deletedAt:
|
1191
|
+
createdAt: string;
|
1192
|
+
updatedAt: string;
|
1193
|
+
deletedAt: string | null;
|
1194
1194
|
systemName: string;
|
1195
1195
|
displayName: string;
|
1196
1196
|
permissions: {
|
1197
1197
|
id: string;
|
1198
1198
|
description: string | null;
|
1199
|
-
createdAt:
|
1200
|
-
updatedAt:
|
1201
|
-
deletedAt:
|
1199
|
+
createdAt: string;
|
1200
|
+
updatedAt: string;
|
1201
|
+
deletedAt: string | null;
|
1202
1202
|
systemName: string;
|
1203
1203
|
displayName: string;
|
1204
1204
|
}[];
|
1205
1205
|
}[];
|
1206
1206
|
extension?: {
|
1207
1207
|
id: string;
|
1208
|
-
createdAt:
|
1209
|
-
updatedAt:
|
1210
|
-
deletedAt:
|
1208
|
+
createdAt: string;
|
1209
|
+
updatedAt: string;
|
1210
|
+
deletedAt: string | null;
|
1211
1211
|
userId: string | null;
|
1212
1212
|
sipServerUrl: string;
|
1213
1213
|
sipUserName: string;
|
@@ -1238,36 +1238,36 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
1238
1238
|
address: string | null;
|
1239
1239
|
name: string;
|
1240
1240
|
email: string;
|
1241
|
-
createdAt:
|
1242
|
-
updatedAt:
|
1243
|
-
deletedAt:
|
1244
|
-
emailVerifiedAt:
|
1241
|
+
createdAt: string;
|
1242
|
+
updatedAt: string;
|
1243
|
+
deletedAt: string | null;
|
1244
|
+
emailVerifiedAt: string | null;
|
1245
1245
|
password: string;
|
1246
1246
|
phone: string | null;
|
1247
1247
|
notificationCount: number | null;
|
1248
1248
|
roles: {
|
1249
1249
|
id: string;
|
1250
1250
|
description: string | null;
|
1251
|
-
createdAt:
|
1252
|
-
updatedAt:
|
1253
|
-
deletedAt:
|
1251
|
+
createdAt: string;
|
1252
|
+
updatedAt: string;
|
1253
|
+
deletedAt: string | null;
|
1254
1254
|
systemName: string;
|
1255
1255
|
displayName: string;
|
1256
1256
|
permissions: {
|
1257
1257
|
id: string;
|
1258
1258
|
description: string | null;
|
1259
|
-
createdAt:
|
1260
|
-
updatedAt:
|
1261
|
-
deletedAt:
|
1259
|
+
createdAt: string;
|
1260
|
+
updatedAt: string;
|
1261
|
+
deletedAt: string | null;
|
1262
1262
|
systemName: string;
|
1263
1263
|
displayName: string;
|
1264
1264
|
}[];
|
1265
1265
|
}[];
|
1266
1266
|
extension?: {
|
1267
1267
|
id: string;
|
1268
|
-
createdAt:
|
1269
|
-
updatedAt:
|
1270
|
-
deletedAt:
|
1268
|
+
createdAt: string;
|
1269
|
+
updatedAt: string;
|
1270
|
+
deletedAt: string | null;
|
1271
1271
|
userId: string | null;
|
1272
1272
|
sipServerUrl: string;
|
1273
1273
|
sipUserName: string;
|
@@ -1298,36 +1298,36 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
1298
1298
|
address: string | null;
|
1299
1299
|
name: string;
|
1300
1300
|
email: string;
|
1301
|
-
createdAt:
|
1302
|
-
updatedAt:
|
1303
|
-
deletedAt:
|
1304
|
-
emailVerifiedAt:
|
1301
|
+
createdAt: string;
|
1302
|
+
updatedAt: string;
|
1303
|
+
deletedAt: string | null;
|
1304
|
+
emailVerifiedAt: string | null;
|
1305
1305
|
password: string;
|
1306
1306
|
phone: string | null;
|
1307
1307
|
notificationCount: number | null;
|
1308
1308
|
roles: {
|
1309
1309
|
id: string;
|
1310
1310
|
description: string | null;
|
1311
|
-
createdAt:
|
1312
|
-
updatedAt:
|
1313
|
-
deletedAt:
|
1311
|
+
createdAt: string;
|
1312
|
+
updatedAt: string;
|
1313
|
+
deletedAt: string | null;
|
1314
1314
|
systemName: string;
|
1315
1315
|
displayName: string;
|
1316
1316
|
permissions: {
|
1317
1317
|
id: string;
|
1318
1318
|
description: string | null;
|
1319
|
-
createdAt:
|
1320
|
-
updatedAt:
|
1321
|
-
deletedAt:
|
1319
|
+
createdAt: string;
|
1320
|
+
updatedAt: string;
|
1321
|
+
deletedAt: string | null;
|
1322
1322
|
systemName: string;
|
1323
1323
|
displayName: string;
|
1324
1324
|
}[];
|
1325
1325
|
}[];
|
1326
1326
|
extension?: {
|
1327
1327
|
id: string;
|
1328
|
-
createdAt:
|
1329
|
-
updatedAt:
|
1330
|
-
deletedAt:
|
1328
|
+
createdAt: string;
|
1329
|
+
updatedAt: string;
|
1330
|
+
deletedAt: string | null;
|
1331
1331
|
userId: string | null;
|
1332
1332
|
sipServerUrl: string;
|
1333
1333
|
sipUserName: string;
|