@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
package/dist/src/user/index.d.ts
CHANGED
@@ -38,89 +38,89 @@ export declare const userContract: {
|
|
38
38
|
requestId: z.ZodString;
|
39
39
|
user: z.ZodObject<{
|
40
40
|
id: z.ZodString;
|
41
|
-
createdAt: z.
|
42
|
-
updatedAt: z.
|
43
|
-
deletedAt: z.ZodNullable<z.
|
41
|
+
createdAt: z.ZodString;
|
42
|
+
updatedAt: z.ZodString;
|
43
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
44
44
|
name: z.ZodString;
|
45
45
|
email: z.ZodString;
|
46
|
-
emailVerifiedAt: z.ZodNullable<z.
|
46
|
+
emailVerifiedAt: z.ZodNullable<z.ZodString>;
|
47
47
|
password: z.ZodString;
|
48
48
|
address: z.ZodNullable<z.ZodString>;
|
49
49
|
phone: z.ZodNullable<z.ZodString>;
|
50
50
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
51
51
|
roles: z.ZodArray<z.ZodObject<{
|
52
52
|
id: z.ZodString;
|
53
|
-
createdAt: z.
|
54
|
-
updatedAt: z.
|
55
|
-
deletedAt: z.ZodNullable<z.
|
53
|
+
createdAt: z.ZodString;
|
54
|
+
updatedAt: z.ZodString;
|
55
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
56
56
|
systemName: z.ZodString;
|
57
57
|
displayName: z.ZodString;
|
58
58
|
description: z.ZodNullable<z.ZodString>;
|
59
59
|
permissions: z.ZodArray<z.ZodObject<{
|
60
60
|
id: z.ZodString;
|
61
|
-
createdAt: z.
|
62
|
-
updatedAt: z.
|
63
|
-
deletedAt: z.ZodNullable<z.
|
61
|
+
createdAt: z.ZodString;
|
62
|
+
updatedAt: z.ZodString;
|
63
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
64
64
|
systemName: z.ZodString;
|
65
65
|
displayName: z.ZodString;
|
66
66
|
description: z.ZodNullable<z.ZodString>;
|
67
67
|
}, "strip", z.ZodTypeAny, {
|
68
68
|
id: string;
|
69
69
|
description: string | null;
|
70
|
-
createdAt:
|
71
|
-
updatedAt:
|
72
|
-
deletedAt:
|
70
|
+
createdAt: string;
|
71
|
+
updatedAt: string;
|
72
|
+
deletedAt: string | null;
|
73
73
|
systemName: string;
|
74
74
|
displayName: string;
|
75
75
|
}, {
|
76
76
|
id: string;
|
77
77
|
description: string | null;
|
78
|
-
createdAt:
|
79
|
-
updatedAt:
|
80
|
-
deletedAt:
|
78
|
+
createdAt: string;
|
79
|
+
updatedAt: string;
|
80
|
+
deletedAt: string | null;
|
81
81
|
systemName: string;
|
82
82
|
displayName: string;
|
83
83
|
}>, "many">;
|
84
84
|
}, "strip", z.ZodTypeAny, {
|
85
85
|
id: string;
|
86
86
|
description: string | null;
|
87
|
-
createdAt:
|
88
|
-
updatedAt:
|
89
|
-
deletedAt:
|
87
|
+
createdAt: string;
|
88
|
+
updatedAt: string;
|
89
|
+
deletedAt: string | null;
|
90
90
|
systemName: string;
|
91
91
|
displayName: string;
|
92
92
|
permissions: {
|
93
93
|
id: string;
|
94
94
|
description: string | null;
|
95
|
-
createdAt:
|
96
|
-
updatedAt:
|
97
|
-
deletedAt:
|
95
|
+
createdAt: string;
|
96
|
+
updatedAt: string;
|
97
|
+
deletedAt: string | null;
|
98
98
|
systemName: string;
|
99
99
|
displayName: string;
|
100
100
|
}[];
|
101
101
|
}, {
|
102
102
|
id: string;
|
103
103
|
description: string | null;
|
104
|
-
createdAt:
|
105
|
-
updatedAt:
|
106
|
-
deletedAt:
|
104
|
+
createdAt: string;
|
105
|
+
updatedAt: string;
|
106
|
+
deletedAt: string | null;
|
107
107
|
systemName: string;
|
108
108
|
displayName: string;
|
109
109
|
permissions: {
|
110
110
|
id: string;
|
111
111
|
description: string | null;
|
112
|
-
createdAt:
|
113
|
-
updatedAt:
|
114
|
-
deletedAt:
|
112
|
+
createdAt: string;
|
113
|
+
updatedAt: string;
|
114
|
+
deletedAt: string | null;
|
115
115
|
systemName: string;
|
116
116
|
displayName: string;
|
117
117
|
}[];
|
118
118
|
}>, "many">;
|
119
119
|
extension: z.ZodOptional<z.ZodObject<{
|
120
120
|
id: z.ZodString;
|
121
|
-
createdAt: z.
|
122
|
-
updatedAt: z.
|
123
|
-
deletedAt: z.ZodNullable<z.
|
121
|
+
createdAt: z.ZodString;
|
122
|
+
updatedAt: z.ZodString;
|
123
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
124
124
|
userId: z.ZodNullable<z.ZodString>;
|
125
125
|
sipServerUrl: z.ZodString;
|
126
126
|
sipUserName: z.ZodString;
|
@@ -129,9 +129,9 @@ export declare const userContract: {
|
|
129
129
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
130
130
|
}, "strip", z.ZodTypeAny, {
|
131
131
|
id: string;
|
132
|
-
createdAt:
|
133
|
-
updatedAt:
|
134
|
-
deletedAt:
|
132
|
+
createdAt: string;
|
133
|
+
updatedAt: string;
|
134
|
+
deletedAt: string | null;
|
135
135
|
userId: string | null;
|
136
136
|
sipServerUrl: string;
|
137
137
|
sipUserName: string;
|
@@ -140,9 +140,9 @@ export declare const userContract: {
|
|
140
140
|
telephonySignature: string | null;
|
141
141
|
}, {
|
142
142
|
id: string;
|
143
|
-
createdAt:
|
144
|
-
updatedAt:
|
145
|
-
deletedAt:
|
143
|
+
createdAt: string;
|
144
|
+
updatedAt: string;
|
145
|
+
deletedAt: string | null;
|
146
146
|
userId: string | null;
|
147
147
|
sipServerUrl: string;
|
148
148
|
sipUserName: string;
|
@@ -155,36 +155,36 @@ export declare const userContract: {
|
|
155
155
|
address: string | null;
|
156
156
|
name: string;
|
157
157
|
email: string;
|
158
|
-
createdAt:
|
159
|
-
updatedAt:
|
160
|
-
deletedAt:
|
161
|
-
emailVerifiedAt:
|
158
|
+
createdAt: string;
|
159
|
+
updatedAt: string;
|
160
|
+
deletedAt: string | null;
|
161
|
+
emailVerifiedAt: string | null;
|
162
162
|
password: string;
|
163
163
|
phone: string | null;
|
164
164
|
notificationCount: number | null;
|
165
165
|
roles: {
|
166
166
|
id: string;
|
167
167
|
description: string | null;
|
168
|
-
createdAt:
|
169
|
-
updatedAt:
|
170
|
-
deletedAt:
|
168
|
+
createdAt: string;
|
169
|
+
updatedAt: string;
|
170
|
+
deletedAt: string | null;
|
171
171
|
systemName: string;
|
172
172
|
displayName: string;
|
173
173
|
permissions: {
|
174
174
|
id: string;
|
175
175
|
description: string | null;
|
176
|
-
createdAt:
|
177
|
-
updatedAt:
|
178
|
-
deletedAt:
|
176
|
+
createdAt: string;
|
177
|
+
updatedAt: string;
|
178
|
+
deletedAt: string | null;
|
179
179
|
systemName: string;
|
180
180
|
displayName: string;
|
181
181
|
}[];
|
182
182
|
}[];
|
183
183
|
extension?: {
|
184
184
|
id: string;
|
185
|
-
createdAt:
|
186
|
-
updatedAt:
|
187
|
-
deletedAt:
|
185
|
+
createdAt: string;
|
186
|
+
updatedAt: string;
|
187
|
+
deletedAt: string | null;
|
188
188
|
userId: string | null;
|
189
189
|
sipServerUrl: string;
|
190
190
|
sipUserName: string;
|
@@ -197,36 +197,36 @@ export declare const userContract: {
|
|
197
197
|
address: string | null;
|
198
198
|
name: string;
|
199
199
|
email: string;
|
200
|
-
createdAt:
|
201
|
-
updatedAt:
|
202
|
-
deletedAt:
|
203
|
-
emailVerifiedAt:
|
200
|
+
createdAt: string;
|
201
|
+
updatedAt: string;
|
202
|
+
deletedAt: string | null;
|
203
|
+
emailVerifiedAt: string | null;
|
204
204
|
password: string;
|
205
205
|
phone: string | null;
|
206
206
|
notificationCount: number | null;
|
207
207
|
roles: {
|
208
208
|
id: string;
|
209
209
|
description: string | null;
|
210
|
-
createdAt:
|
211
|
-
updatedAt:
|
212
|
-
deletedAt:
|
210
|
+
createdAt: string;
|
211
|
+
updatedAt: string;
|
212
|
+
deletedAt: string | null;
|
213
213
|
systemName: string;
|
214
214
|
displayName: string;
|
215
215
|
permissions: {
|
216
216
|
id: string;
|
217
217
|
description: string | null;
|
218
|
-
createdAt:
|
219
|
-
updatedAt:
|
220
|
-
deletedAt:
|
218
|
+
createdAt: string;
|
219
|
+
updatedAt: string;
|
220
|
+
deletedAt: string | null;
|
221
221
|
systemName: string;
|
222
222
|
displayName: string;
|
223
223
|
}[];
|
224
224
|
}[];
|
225
225
|
extension?: {
|
226
226
|
id: string;
|
227
|
-
createdAt:
|
228
|
-
updatedAt:
|
229
|
-
deletedAt:
|
227
|
+
createdAt: string;
|
228
|
+
updatedAt: string;
|
229
|
+
deletedAt: string | null;
|
230
230
|
userId: string | null;
|
231
231
|
sipServerUrl: string;
|
232
232
|
sipUserName: string;
|
@@ -241,36 +241,36 @@ export declare const userContract: {
|
|
241
241
|
address: string | null;
|
242
242
|
name: string;
|
243
243
|
email: string;
|
244
|
-
createdAt:
|
245
|
-
updatedAt:
|
246
|
-
deletedAt:
|
247
|
-
emailVerifiedAt:
|
244
|
+
createdAt: string;
|
245
|
+
updatedAt: string;
|
246
|
+
deletedAt: string | null;
|
247
|
+
emailVerifiedAt: string | null;
|
248
248
|
password: string;
|
249
249
|
phone: string | null;
|
250
250
|
notificationCount: number | null;
|
251
251
|
roles: {
|
252
252
|
id: string;
|
253
253
|
description: string | null;
|
254
|
-
createdAt:
|
255
|
-
updatedAt:
|
256
|
-
deletedAt:
|
254
|
+
createdAt: string;
|
255
|
+
updatedAt: string;
|
256
|
+
deletedAt: string | null;
|
257
257
|
systemName: string;
|
258
258
|
displayName: string;
|
259
259
|
permissions: {
|
260
260
|
id: string;
|
261
261
|
description: string | null;
|
262
|
-
createdAt:
|
263
|
-
updatedAt:
|
264
|
-
deletedAt:
|
262
|
+
createdAt: string;
|
263
|
+
updatedAt: string;
|
264
|
+
deletedAt: string | null;
|
265
265
|
systemName: string;
|
266
266
|
displayName: string;
|
267
267
|
}[];
|
268
268
|
}[];
|
269
269
|
extension?: {
|
270
270
|
id: string;
|
271
|
-
createdAt:
|
272
|
-
updatedAt:
|
273
|
-
deletedAt:
|
271
|
+
createdAt: string;
|
272
|
+
updatedAt: string;
|
273
|
+
deletedAt: string | null;
|
274
274
|
userId: string | null;
|
275
275
|
sipServerUrl: string;
|
276
276
|
sipUserName: string;
|
@@ -286,36 +286,36 @@ export declare const userContract: {
|
|
286
286
|
address: string | null;
|
287
287
|
name: string;
|
288
288
|
email: string;
|
289
|
-
createdAt:
|
290
|
-
updatedAt:
|
291
|
-
deletedAt:
|
292
|
-
emailVerifiedAt:
|
289
|
+
createdAt: string;
|
290
|
+
updatedAt: string;
|
291
|
+
deletedAt: string | null;
|
292
|
+
emailVerifiedAt: string | null;
|
293
293
|
password: string;
|
294
294
|
phone: string | null;
|
295
295
|
notificationCount: number | null;
|
296
296
|
roles: {
|
297
297
|
id: string;
|
298
298
|
description: string | null;
|
299
|
-
createdAt:
|
300
|
-
updatedAt:
|
301
|
-
deletedAt:
|
299
|
+
createdAt: string;
|
300
|
+
updatedAt: string;
|
301
|
+
deletedAt: string | null;
|
302
302
|
systemName: string;
|
303
303
|
displayName: string;
|
304
304
|
permissions: {
|
305
305
|
id: string;
|
306
306
|
description: string | null;
|
307
|
-
createdAt:
|
308
|
-
updatedAt:
|
309
|
-
deletedAt:
|
307
|
+
createdAt: string;
|
308
|
+
updatedAt: string;
|
309
|
+
deletedAt: string | null;
|
310
310
|
systemName: string;
|
311
311
|
displayName: string;
|
312
312
|
}[];
|
313
313
|
}[];
|
314
314
|
extension?: {
|
315
315
|
id: string;
|
316
|
-
createdAt:
|
317
|
-
updatedAt:
|
318
|
-
deletedAt:
|
316
|
+
createdAt: string;
|
317
|
+
updatedAt: string;
|
318
|
+
deletedAt: string | null;
|
319
319
|
userId: string | null;
|
320
320
|
sipServerUrl: string;
|
321
321
|
sipUserName: string;
|
@@ -389,36 +389,36 @@ export declare const userContract: {
|
|
389
389
|
address: string | null;
|
390
390
|
name: string;
|
391
391
|
email: string;
|
392
|
-
createdAt:
|
393
|
-
updatedAt:
|
394
|
-
deletedAt:
|
395
|
-
emailVerifiedAt:
|
392
|
+
createdAt: string;
|
393
|
+
updatedAt: string;
|
394
|
+
deletedAt: string | null;
|
395
|
+
emailVerifiedAt: string | null;
|
396
396
|
password: string;
|
397
397
|
phone: string | null;
|
398
398
|
notificationCount: number | null;
|
399
399
|
roles: {
|
400
400
|
id: string;
|
401
401
|
description: string | null;
|
402
|
-
createdAt:
|
403
|
-
updatedAt:
|
404
|
-
deletedAt:
|
402
|
+
createdAt: string;
|
403
|
+
updatedAt: string;
|
404
|
+
deletedAt: string | null;
|
405
405
|
systemName: string;
|
406
406
|
displayName: string;
|
407
407
|
permissions: {
|
408
408
|
id: string;
|
409
409
|
description: string | null;
|
410
|
-
createdAt:
|
411
|
-
updatedAt:
|
412
|
-
deletedAt:
|
410
|
+
createdAt: string;
|
411
|
+
updatedAt: string;
|
412
|
+
deletedAt: string | null;
|
413
413
|
systemName: string;
|
414
414
|
displayName: string;
|
415
415
|
}[];
|
416
416
|
}[];
|
417
417
|
extension?: {
|
418
418
|
id: string;
|
419
|
-
createdAt:
|
420
|
-
updatedAt:
|
421
|
-
deletedAt:
|
419
|
+
createdAt: string;
|
420
|
+
updatedAt: string;
|
421
|
+
deletedAt: string | null;
|
422
422
|
userId: string | null;
|
423
423
|
sipServerUrl: string;
|
424
424
|
sipUserName: string;
|
@@ -431,36 +431,36 @@ export declare const userContract: {
|
|
431
431
|
address: string | null;
|
432
432
|
name: string;
|
433
433
|
email: string;
|
434
|
-
createdAt:
|
435
|
-
updatedAt:
|
436
|
-
deletedAt:
|
437
|
-
emailVerifiedAt:
|
434
|
+
createdAt: string;
|
435
|
+
updatedAt: string;
|
436
|
+
deletedAt: string | null;
|
437
|
+
emailVerifiedAt: string | null;
|
438
438
|
password: string;
|
439
439
|
phone: string | null;
|
440
440
|
notificationCount: number | null;
|
441
441
|
roles: {
|
442
442
|
id: string;
|
443
443
|
description: string | null;
|
444
|
-
createdAt:
|
445
|
-
updatedAt:
|
446
|
-
deletedAt:
|
444
|
+
createdAt: string;
|
445
|
+
updatedAt: string;
|
446
|
+
deletedAt: string | null;
|
447
447
|
systemName: string;
|
448
448
|
displayName: string;
|
449
449
|
permissions: {
|
450
450
|
id: string;
|
451
451
|
description: string | null;
|
452
|
-
createdAt:
|
453
|
-
updatedAt:
|
454
|
-
deletedAt:
|
452
|
+
createdAt: string;
|
453
|
+
updatedAt: string;
|
454
|
+
deletedAt: string | null;
|
455
455
|
systemName: string;
|
456
456
|
displayName: string;
|
457
457
|
}[];
|
458
458
|
}[];
|
459
459
|
extension?: {
|
460
460
|
id: string;
|
461
|
-
createdAt:
|
462
|
-
updatedAt:
|
463
|
-
deletedAt:
|
461
|
+
createdAt: string;
|
462
|
+
updatedAt: string;
|
463
|
+
deletedAt: string | null;
|
464
464
|
userId: string | null;
|
465
465
|
sipServerUrl: string;
|
466
466
|
sipUserName: string;
|
@@ -475,36 +475,36 @@ export declare const userContract: {
|
|
475
475
|
address: string | null;
|
476
476
|
name: string;
|
477
477
|
email: string;
|
478
|
-
createdAt:
|
479
|
-
updatedAt:
|
480
|
-
deletedAt:
|
481
|
-
emailVerifiedAt:
|
478
|
+
createdAt: string;
|
479
|
+
updatedAt: string;
|
480
|
+
deletedAt: string | null;
|
481
|
+
emailVerifiedAt: string | null;
|
482
482
|
password: string;
|
483
483
|
phone: string | null;
|
484
484
|
notificationCount: number | null;
|
485
485
|
roles: {
|
486
486
|
id: string;
|
487
487
|
description: string | null;
|
488
|
-
createdAt:
|
489
|
-
updatedAt:
|
490
|
-
deletedAt:
|
488
|
+
createdAt: string;
|
489
|
+
updatedAt: string;
|
490
|
+
deletedAt: string | null;
|
491
491
|
systemName: string;
|
492
492
|
displayName: string;
|
493
493
|
permissions: {
|
494
494
|
id: string;
|
495
495
|
description: string | null;
|
496
|
-
createdAt:
|
497
|
-
updatedAt:
|
498
|
-
deletedAt:
|
496
|
+
createdAt: string;
|
497
|
+
updatedAt: string;
|
498
|
+
deletedAt: string | null;
|
499
499
|
systemName: string;
|
500
500
|
displayName: string;
|
501
501
|
}[];
|
502
502
|
}[];
|
503
503
|
extension?: {
|
504
504
|
id: string;
|
505
|
-
createdAt:
|
506
|
-
updatedAt:
|
507
|
-
deletedAt:
|
505
|
+
createdAt: string;
|
506
|
+
updatedAt: string;
|
507
|
+
deletedAt: string | null;
|
508
508
|
userId: string | null;
|
509
509
|
sipServerUrl: string;
|
510
510
|
sipUserName: string;
|
@@ -523,36 +523,36 @@ export declare const userContract: {
|
|
523
523
|
address: string | null;
|
524
524
|
name: string;
|
525
525
|
email: string;
|
526
|
-
createdAt:
|
527
|
-
updatedAt:
|
528
|
-
deletedAt:
|
529
|
-
emailVerifiedAt:
|
526
|
+
createdAt: string;
|
527
|
+
updatedAt: string;
|
528
|
+
deletedAt: string | null;
|
529
|
+
emailVerifiedAt: string | null;
|
530
530
|
password: string;
|
531
531
|
phone: string | null;
|
532
532
|
notificationCount: number | null;
|
533
533
|
roles: {
|
534
534
|
id: string;
|
535
535
|
description: string | null;
|
536
|
-
createdAt:
|
537
|
-
updatedAt:
|
538
|
-
deletedAt:
|
536
|
+
createdAt: string;
|
537
|
+
updatedAt: string;
|
538
|
+
deletedAt: string | null;
|
539
539
|
systemName: string;
|
540
540
|
displayName: string;
|
541
541
|
permissions: {
|
542
542
|
id: string;
|
543
543
|
description: string | null;
|
544
|
-
createdAt:
|
545
|
-
updatedAt:
|
546
|
-
deletedAt:
|
544
|
+
createdAt: string;
|
545
|
+
updatedAt: string;
|
546
|
+
deletedAt: string | null;
|
547
547
|
systemName: string;
|
548
548
|
displayName: string;
|
549
549
|
}[];
|
550
550
|
}[];
|
551
551
|
extension?: {
|
552
552
|
id: string;
|
553
|
-
createdAt:
|
554
|
-
updatedAt:
|
555
|
-
deletedAt:
|
553
|
+
createdAt: string;
|
554
|
+
updatedAt: string;
|
555
|
+
deletedAt: string | null;
|
556
556
|
userId: string | null;
|
557
557
|
sipServerUrl: string;
|
558
558
|
sipUserName: string;
|
@@ -625,89 +625,89 @@ export declare const userContract: {
|
|
625
625
|
responses: {
|
626
626
|
200: z.ZodObject<{
|
627
627
|
id: z.ZodString;
|
628
|
-
createdAt: z.
|
629
|
-
updatedAt: z.
|
630
|
-
deletedAt: z.ZodNullable<z.
|
628
|
+
createdAt: z.ZodString;
|
629
|
+
updatedAt: z.ZodString;
|
630
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
631
631
|
name: z.ZodString;
|
632
632
|
email: z.ZodString;
|
633
|
-
emailVerifiedAt: z.ZodNullable<z.
|
633
|
+
emailVerifiedAt: z.ZodNullable<z.ZodString>;
|
634
634
|
password: z.ZodString;
|
635
635
|
address: z.ZodNullable<z.ZodString>;
|
636
636
|
phone: z.ZodNullable<z.ZodString>;
|
637
637
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
638
638
|
roles: z.ZodArray<z.ZodObject<{
|
639
639
|
id: z.ZodString;
|
640
|
-
createdAt: z.
|
641
|
-
updatedAt: z.
|
642
|
-
deletedAt: z.ZodNullable<z.
|
640
|
+
createdAt: z.ZodString;
|
641
|
+
updatedAt: z.ZodString;
|
642
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
643
643
|
systemName: z.ZodString;
|
644
644
|
displayName: z.ZodString;
|
645
645
|
description: z.ZodNullable<z.ZodString>;
|
646
646
|
permissions: z.ZodArray<z.ZodObject<{
|
647
647
|
id: z.ZodString;
|
648
|
-
createdAt: z.
|
649
|
-
updatedAt: z.
|
650
|
-
deletedAt: z.ZodNullable<z.
|
648
|
+
createdAt: z.ZodString;
|
649
|
+
updatedAt: z.ZodString;
|
650
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
651
651
|
systemName: z.ZodString;
|
652
652
|
displayName: z.ZodString;
|
653
653
|
description: z.ZodNullable<z.ZodString>;
|
654
654
|
}, "strip", z.ZodTypeAny, {
|
655
655
|
id: string;
|
656
656
|
description: string | null;
|
657
|
-
createdAt:
|
658
|
-
updatedAt:
|
659
|
-
deletedAt:
|
657
|
+
createdAt: string;
|
658
|
+
updatedAt: string;
|
659
|
+
deletedAt: string | null;
|
660
660
|
systemName: string;
|
661
661
|
displayName: string;
|
662
662
|
}, {
|
663
663
|
id: string;
|
664
664
|
description: string | null;
|
665
|
-
createdAt:
|
666
|
-
updatedAt:
|
667
|
-
deletedAt:
|
665
|
+
createdAt: string;
|
666
|
+
updatedAt: string;
|
667
|
+
deletedAt: string | null;
|
668
668
|
systemName: string;
|
669
669
|
displayName: string;
|
670
670
|
}>, "many">;
|
671
671
|
}, "strip", z.ZodTypeAny, {
|
672
672
|
id: string;
|
673
673
|
description: string | null;
|
674
|
-
createdAt:
|
675
|
-
updatedAt:
|
676
|
-
deletedAt:
|
674
|
+
createdAt: string;
|
675
|
+
updatedAt: string;
|
676
|
+
deletedAt: string | null;
|
677
677
|
systemName: string;
|
678
678
|
displayName: string;
|
679
679
|
permissions: {
|
680
680
|
id: string;
|
681
681
|
description: string | null;
|
682
|
-
createdAt:
|
683
|
-
updatedAt:
|
684
|
-
deletedAt:
|
682
|
+
createdAt: string;
|
683
|
+
updatedAt: string;
|
684
|
+
deletedAt: string | null;
|
685
685
|
systemName: string;
|
686
686
|
displayName: string;
|
687
687
|
}[];
|
688
688
|
}, {
|
689
689
|
id: string;
|
690
690
|
description: string | null;
|
691
|
-
createdAt:
|
692
|
-
updatedAt:
|
693
|
-
deletedAt:
|
691
|
+
createdAt: string;
|
692
|
+
updatedAt: string;
|
693
|
+
deletedAt: string | null;
|
694
694
|
systemName: string;
|
695
695
|
displayName: string;
|
696
696
|
permissions: {
|
697
697
|
id: string;
|
698
698
|
description: string | null;
|
699
|
-
createdAt:
|
700
|
-
updatedAt:
|
701
|
-
deletedAt:
|
699
|
+
createdAt: string;
|
700
|
+
updatedAt: string;
|
701
|
+
deletedAt: string | null;
|
702
702
|
systemName: string;
|
703
703
|
displayName: string;
|
704
704
|
}[];
|
705
705
|
}>, "many">;
|
706
706
|
extension: z.ZodOptional<z.ZodObject<{
|
707
707
|
id: z.ZodString;
|
708
|
-
createdAt: z.
|
709
|
-
updatedAt: z.
|
710
|
-
deletedAt: z.ZodNullable<z.
|
708
|
+
createdAt: z.ZodString;
|
709
|
+
updatedAt: z.ZodString;
|
710
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
711
711
|
userId: z.ZodNullable<z.ZodString>;
|
712
712
|
sipServerUrl: z.ZodString;
|
713
713
|
sipUserName: z.ZodString;
|
@@ -716,9 +716,9 @@ export declare const userContract: {
|
|
716
716
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
717
717
|
}, "strip", z.ZodTypeAny, {
|
718
718
|
id: string;
|
719
|
-
createdAt:
|
720
|
-
updatedAt:
|
721
|
-
deletedAt:
|
719
|
+
createdAt: string;
|
720
|
+
updatedAt: string;
|
721
|
+
deletedAt: string | null;
|
722
722
|
userId: string | null;
|
723
723
|
sipServerUrl: string;
|
724
724
|
sipUserName: string;
|
@@ -727,9 +727,9 @@ export declare const userContract: {
|
|
727
727
|
telephonySignature: string | null;
|
728
728
|
}, {
|
729
729
|
id: string;
|
730
|
-
createdAt:
|
731
|
-
updatedAt:
|
732
|
-
deletedAt:
|
730
|
+
createdAt: string;
|
731
|
+
updatedAt: string;
|
732
|
+
deletedAt: string | null;
|
733
733
|
userId: string | null;
|
734
734
|
sipServerUrl: string;
|
735
735
|
sipUserName: string;
|
@@ -742,36 +742,36 @@ export declare const userContract: {
|
|
742
742
|
address: string | null;
|
743
743
|
name: string;
|
744
744
|
email: string;
|
745
|
-
createdAt:
|
746
|
-
updatedAt:
|
747
|
-
deletedAt:
|
748
|
-
emailVerifiedAt:
|
745
|
+
createdAt: string;
|
746
|
+
updatedAt: string;
|
747
|
+
deletedAt: string | null;
|
748
|
+
emailVerifiedAt: string | null;
|
749
749
|
password: string;
|
750
750
|
phone: string | null;
|
751
751
|
notificationCount: number | null;
|
752
752
|
roles: {
|
753
753
|
id: string;
|
754
754
|
description: string | null;
|
755
|
-
createdAt:
|
756
|
-
updatedAt:
|
757
|
-
deletedAt:
|
755
|
+
createdAt: string;
|
756
|
+
updatedAt: string;
|
757
|
+
deletedAt: string | null;
|
758
758
|
systemName: string;
|
759
759
|
displayName: string;
|
760
760
|
permissions: {
|
761
761
|
id: string;
|
762
762
|
description: string | null;
|
763
|
-
createdAt:
|
764
|
-
updatedAt:
|
765
|
-
deletedAt:
|
763
|
+
createdAt: string;
|
764
|
+
updatedAt: string;
|
765
|
+
deletedAt: string | null;
|
766
766
|
systemName: string;
|
767
767
|
displayName: string;
|
768
768
|
}[];
|
769
769
|
}[];
|
770
770
|
extension?: {
|
771
771
|
id: string;
|
772
|
-
createdAt:
|
773
|
-
updatedAt:
|
774
|
-
deletedAt:
|
772
|
+
createdAt: string;
|
773
|
+
updatedAt: string;
|
774
|
+
deletedAt: string | null;
|
775
775
|
userId: string | null;
|
776
776
|
sipServerUrl: string;
|
777
777
|
sipUserName: string;
|
@@ -784,36 +784,36 @@ export declare const userContract: {
|
|
784
784
|
address: string | null;
|
785
785
|
name: string;
|
786
786
|
email: string;
|
787
|
-
createdAt:
|
788
|
-
updatedAt:
|
789
|
-
deletedAt:
|
790
|
-
emailVerifiedAt:
|
787
|
+
createdAt: string;
|
788
|
+
updatedAt: string;
|
789
|
+
deletedAt: string | null;
|
790
|
+
emailVerifiedAt: string | null;
|
791
791
|
password: string;
|
792
792
|
phone: string | null;
|
793
793
|
notificationCount: number | null;
|
794
794
|
roles: {
|
795
795
|
id: string;
|
796
796
|
description: string | null;
|
797
|
-
createdAt:
|
798
|
-
updatedAt:
|
799
|
-
deletedAt:
|
797
|
+
createdAt: string;
|
798
|
+
updatedAt: string;
|
799
|
+
deletedAt: string | null;
|
800
800
|
systemName: string;
|
801
801
|
displayName: string;
|
802
802
|
permissions: {
|
803
803
|
id: string;
|
804
804
|
description: string | null;
|
805
|
-
createdAt:
|
806
|
-
updatedAt:
|
807
|
-
deletedAt:
|
805
|
+
createdAt: string;
|
806
|
+
updatedAt: string;
|
807
|
+
deletedAt: string | null;
|
808
808
|
systemName: string;
|
809
809
|
displayName: string;
|
810
810
|
}[];
|
811
811
|
}[];
|
812
812
|
extension?: {
|
813
813
|
id: string;
|
814
|
-
createdAt:
|
815
|
-
updatedAt:
|
816
|
-
deletedAt:
|
814
|
+
createdAt: string;
|
815
|
+
updatedAt: string;
|
816
|
+
deletedAt: string | null;
|
817
817
|
userId: string | null;
|
818
818
|
sipServerUrl: string;
|
819
819
|
sipUserName: string;
|
@@ -901,89 +901,89 @@ export declare const userContract: {
|
|
901
901
|
requestId: z.ZodString;
|
902
902
|
role: z.ZodObject<{
|
903
903
|
id: z.ZodString;
|
904
|
-
createdAt: z.
|
905
|
-
updatedAt: z.
|
906
|
-
deletedAt: z.ZodNullable<z.
|
904
|
+
createdAt: z.ZodString;
|
905
|
+
updatedAt: z.ZodString;
|
906
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
907
907
|
name: z.ZodString;
|
908
908
|
email: z.ZodString;
|
909
|
-
emailVerifiedAt: z.ZodNullable<z.
|
909
|
+
emailVerifiedAt: z.ZodNullable<z.ZodString>;
|
910
910
|
password: z.ZodString;
|
911
911
|
address: z.ZodNullable<z.ZodString>;
|
912
912
|
phone: z.ZodNullable<z.ZodString>;
|
913
913
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
914
914
|
roles: z.ZodArray<z.ZodObject<{
|
915
915
|
id: z.ZodString;
|
916
|
-
createdAt: z.
|
917
|
-
updatedAt: z.
|
918
|
-
deletedAt: z.ZodNullable<z.
|
916
|
+
createdAt: z.ZodString;
|
917
|
+
updatedAt: z.ZodString;
|
918
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
919
919
|
systemName: z.ZodString;
|
920
920
|
displayName: z.ZodString;
|
921
921
|
description: z.ZodNullable<z.ZodString>;
|
922
922
|
permissions: z.ZodArray<z.ZodObject<{
|
923
923
|
id: z.ZodString;
|
924
|
-
createdAt: z.
|
925
|
-
updatedAt: z.
|
926
|
-
deletedAt: z.ZodNullable<z.
|
924
|
+
createdAt: z.ZodString;
|
925
|
+
updatedAt: z.ZodString;
|
926
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
927
927
|
systemName: z.ZodString;
|
928
928
|
displayName: z.ZodString;
|
929
929
|
description: z.ZodNullable<z.ZodString>;
|
930
930
|
}, "strip", z.ZodTypeAny, {
|
931
931
|
id: string;
|
932
932
|
description: string | null;
|
933
|
-
createdAt:
|
934
|
-
updatedAt:
|
935
|
-
deletedAt:
|
933
|
+
createdAt: string;
|
934
|
+
updatedAt: string;
|
935
|
+
deletedAt: string | null;
|
936
936
|
systemName: string;
|
937
937
|
displayName: string;
|
938
938
|
}, {
|
939
939
|
id: string;
|
940
940
|
description: string | null;
|
941
|
-
createdAt:
|
942
|
-
updatedAt:
|
943
|
-
deletedAt:
|
941
|
+
createdAt: string;
|
942
|
+
updatedAt: string;
|
943
|
+
deletedAt: string | null;
|
944
944
|
systemName: string;
|
945
945
|
displayName: string;
|
946
946
|
}>, "many">;
|
947
947
|
}, "strip", z.ZodTypeAny, {
|
948
948
|
id: string;
|
949
949
|
description: string | null;
|
950
|
-
createdAt:
|
951
|
-
updatedAt:
|
952
|
-
deletedAt:
|
950
|
+
createdAt: string;
|
951
|
+
updatedAt: string;
|
952
|
+
deletedAt: string | null;
|
953
953
|
systemName: string;
|
954
954
|
displayName: string;
|
955
955
|
permissions: {
|
956
956
|
id: string;
|
957
957
|
description: string | null;
|
958
|
-
createdAt:
|
959
|
-
updatedAt:
|
960
|
-
deletedAt:
|
958
|
+
createdAt: string;
|
959
|
+
updatedAt: string;
|
960
|
+
deletedAt: string | null;
|
961
961
|
systemName: string;
|
962
962
|
displayName: string;
|
963
963
|
}[];
|
964
964
|
}, {
|
965
965
|
id: string;
|
966
966
|
description: string | null;
|
967
|
-
createdAt:
|
968
|
-
updatedAt:
|
969
|
-
deletedAt:
|
967
|
+
createdAt: string;
|
968
|
+
updatedAt: string;
|
969
|
+
deletedAt: string | null;
|
970
970
|
systemName: string;
|
971
971
|
displayName: string;
|
972
972
|
permissions: {
|
973
973
|
id: string;
|
974
974
|
description: string | null;
|
975
|
-
createdAt:
|
976
|
-
updatedAt:
|
977
|
-
deletedAt:
|
975
|
+
createdAt: string;
|
976
|
+
updatedAt: string;
|
977
|
+
deletedAt: string | null;
|
978
978
|
systemName: string;
|
979
979
|
displayName: string;
|
980
980
|
}[];
|
981
981
|
}>, "many">;
|
982
982
|
extension: z.ZodOptional<z.ZodObject<{
|
983
983
|
id: z.ZodString;
|
984
|
-
createdAt: z.
|
985
|
-
updatedAt: z.
|
986
|
-
deletedAt: z.ZodNullable<z.
|
984
|
+
createdAt: z.ZodString;
|
985
|
+
updatedAt: z.ZodString;
|
986
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
987
987
|
userId: z.ZodNullable<z.ZodString>;
|
988
988
|
sipServerUrl: z.ZodString;
|
989
989
|
sipUserName: z.ZodString;
|
@@ -992,9 +992,9 @@ export declare const userContract: {
|
|
992
992
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
993
993
|
}, "strip", z.ZodTypeAny, {
|
994
994
|
id: string;
|
995
|
-
createdAt:
|
996
|
-
updatedAt:
|
997
|
-
deletedAt:
|
995
|
+
createdAt: string;
|
996
|
+
updatedAt: string;
|
997
|
+
deletedAt: string | null;
|
998
998
|
userId: string | null;
|
999
999
|
sipServerUrl: string;
|
1000
1000
|
sipUserName: string;
|
@@ -1003,9 +1003,9 @@ export declare const userContract: {
|
|
1003
1003
|
telephonySignature: string | null;
|
1004
1004
|
}, {
|
1005
1005
|
id: string;
|
1006
|
-
createdAt:
|
1007
|
-
updatedAt:
|
1008
|
-
deletedAt:
|
1006
|
+
createdAt: string;
|
1007
|
+
updatedAt: string;
|
1008
|
+
deletedAt: string | null;
|
1009
1009
|
userId: string | null;
|
1010
1010
|
sipServerUrl: string;
|
1011
1011
|
sipUserName: string;
|
@@ -1018,36 +1018,36 @@ export declare const userContract: {
|
|
1018
1018
|
address: string | null;
|
1019
1019
|
name: string;
|
1020
1020
|
email: string;
|
1021
|
-
createdAt:
|
1022
|
-
updatedAt:
|
1023
|
-
deletedAt:
|
1024
|
-
emailVerifiedAt:
|
1021
|
+
createdAt: string;
|
1022
|
+
updatedAt: string;
|
1023
|
+
deletedAt: string | null;
|
1024
|
+
emailVerifiedAt: string | null;
|
1025
1025
|
password: string;
|
1026
1026
|
phone: string | null;
|
1027
1027
|
notificationCount: number | null;
|
1028
1028
|
roles: {
|
1029
1029
|
id: string;
|
1030
1030
|
description: string | null;
|
1031
|
-
createdAt:
|
1032
|
-
updatedAt:
|
1033
|
-
deletedAt:
|
1031
|
+
createdAt: string;
|
1032
|
+
updatedAt: string;
|
1033
|
+
deletedAt: string | null;
|
1034
1034
|
systemName: string;
|
1035
1035
|
displayName: string;
|
1036
1036
|
permissions: {
|
1037
1037
|
id: string;
|
1038
1038
|
description: string | null;
|
1039
|
-
createdAt:
|
1040
|
-
updatedAt:
|
1041
|
-
deletedAt:
|
1039
|
+
createdAt: string;
|
1040
|
+
updatedAt: string;
|
1041
|
+
deletedAt: string | null;
|
1042
1042
|
systemName: string;
|
1043
1043
|
displayName: string;
|
1044
1044
|
}[];
|
1045
1045
|
}[];
|
1046
1046
|
extension?: {
|
1047
1047
|
id: string;
|
1048
|
-
createdAt:
|
1049
|
-
updatedAt:
|
1050
|
-
deletedAt:
|
1048
|
+
createdAt: string;
|
1049
|
+
updatedAt: string;
|
1050
|
+
deletedAt: string | null;
|
1051
1051
|
userId: string | null;
|
1052
1052
|
sipServerUrl: string;
|
1053
1053
|
sipUserName: string;
|
@@ -1060,36 +1060,36 @@ export declare const userContract: {
|
|
1060
1060
|
address: string | null;
|
1061
1061
|
name: string;
|
1062
1062
|
email: string;
|
1063
|
-
createdAt:
|
1064
|
-
updatedAt:
|
1065
|
-
deletedAt:
|
1066
|
-
emailVerifiedAt:
|
1063
|
+
createdAt: string;
|
1064
|
+
updatedAt: string;
|
1065
|
+
deletedAt: string | null;
|
1066
|
+
emailVerifiedAt: string | null;
|
1067
1067
|
password: string;
|
1068
1068
|
phone: string | null;
|
1069
1069
|
notificationCount: number | null;
|
1070
1070
|
roles: {
|
1071
1071
|
id: string;
|
1072
1072
|
description: string | null;
|
1073
|
-
createdAt:
|
1074
|
-
updatedAt:
|
1075
|
-
deletedAt:
|
1073
|
+
createdAt: string;
|
1074
|
+
updatedAt: string;
|
1075
|
+
deletedAt: string | null;
|
1076
1076
|
systemName: string;
|
1077
1077
|
displayName: string;
|
1078
1078
|
permissions: {
|
1079
1079
|
id: string;
|
1080
1080
|
description: string | null;
|
1081
|
-
createdAt:
|
1082
|
-
updatedAt:
|
1083
|
-
deletedAt:
|
1081
|
+
createdAt: string;
|
1082
|
+
updatedAt: string;
|
1083
|
+
deletedAt: string | null;
|
1084
1084
|
systemName: string;
|
1085
1085
|
displayName: string;
|
1086
1086
|
}[];
|
1087
1087
|
}[];
|
1088
1088
|
extension?: {
|
1089
1089
|
id: string;
|
1090
|
-
createdAt:
|
1091
|
-
updatedAt:
|
1092
|
-
deletedAt:
|
1090
|
+
createdAt: string;
|
1091
|
+
updatedAt: string;
|
1092
|
+
deletedAt: string | null;
|
1093
1093
|
userId: string | null;
|
1094
1094
|
sipServerUrl: string;
|
1095
1095
|
sipUserName: string;
|
@@ -1104,36 +1104,36 @@ export declare const userContract: {
|
|
1104
1104
|
address: string | null;
|
1105
1105
|
name: string;
|
1106
1106
|
email: string;
|
1107
|
-
createdAt:
|
1108
|
-
updatedAt:
|
1109
|
-
deletedAt:
|
1110
|
-
emailVerifiedAt:
|
1107
|
+
createdAt: string;
|
1108
|
+
updatedAt: string;
|
1109
|
+
deletedAt: string | null;
|
1110
|
+
emailVerifiedAt: string | null;
|
1111
1111
|
password: string;
|
1112
1112
|
phone: string | null;
|
1113
1113
|
notificationCount: number | null;
|
1114
1114
|
roles: {
|
1115
1115
|
id: string;
|
1116
1116
|
description: string | null;
|
1117
|
-
createdAt:
|
1118
|
-
updatedAt:
|
1119
|
-
deletedAt:
|
1117
|
+
createdAt: string;
|
1118
|
+
updatedAt: string;
|
1119
|
+
deletedAt: string | null;
|
1120
1120
|
systemName: string;
|
1121
1121
|
displayName: string;
|
1122
1122
|
permissions: {
|
1123
1123
|
id: string;
|
1124
1124
|
description: string | null;
|
1125
|
-
createdAt:
|
1126
|
-
updatedAt:
|
1127
|
-
deletedAt:
|
1125
|
+
createdAt: string;
|
1126
|
+
updatedAt: string;
|
1127
|
+
deletedAt: string | null;
|
1128
1128
|
systemName: string;
|
1129
1129
|
displayName: string;
|
1130
1130
|
}[];
|
1131
1131
|
}[];
|
1132
1132
|
extension?: {
|
1133
1133
|
id: string;
|
1134
|
-
createdAt:
|
1135
|
-
updatedAt:
|
1136
|
-
deletedAt:
|
1134
|
+
createdAt: string;
|
1135
|
+
updatedAt: string;
|
1136
|
+
deletedAt: string | null;
|
1137
1137
|
userId: string | null;
|
1138
1138
|
sipServerUrl: string;
|
1139
1139
|
sipUserName: string;
|
@@ -1149,36 +1149,36 @@ export declare const userContract: {
|
|
1149
1149
|
address: string | null;
|
1150
1150
|
name: string;
|
1151
1151
|
email: string;
|
1152
|
-
createdAt:
|
1153
|
-
updatedAt:
|
1154
|
-
deletedAt:
|
1155
|
-
emailVerifiedAt:
|
1152
|
+
createdAt: string;
|
1153
|
+
updatedAt: string;
|
1154
|
+
deletedAt: string | null;
|
1155
|
+
emailVerifiedAt: string | null;
|
1156
1156
|
password: string;
|
1157
1157
|
phone: string | null;
|
1158
1158
|
notificationCount: number | null;
|
1159
1159
|
roles: {
|
1160
1160
|
id: string;
|
1161
1161
|
description: string | null;
|
1162
|
-
createdAt:
|
1163
|
-
updatedAt:
|
1164
|
-
deletedAt:
|
1162
|
+
createdAt: string;
|
1163
|
+
updatedAt: string;
|
1164
|
+
deletedAt: string | null;
|
1165
1165
|
systemName: string;
|
1166
1166
|
displayName: string;
|
1167
1167
|
permissions: {
|
1168
1168
|
id: string;
|
1169
1169
|
description: string | null;
|
1170
|
-
createdAt:
|
1171
|
-
updatedAt:
|
1172
|
-
deletedAt:
|
1170
|
+
createdAt: string;
|
1171
|
+
updatedAt: string;
|
1172
|
+
deletedAt: string | null;
|
1173
1173
|
systemName: string;
|
1174
1174
|
displayName: string;
|
1175
1175
|
}[];
|
1176
1176
|
}[];
|
1177
1177
|
extension?: {
|
1178
1178
|
id: string;
|
1179
|
-
createdAt:
|
1180
|
-
updatedAt:
|
1181
|
-
deletedAt:
|
1179
|
+
createdAt: string;
|
1180
|
+
updatedAt: string;
|
1181
|
+
deletedAt: string | null;
|
1182
1182
|
userId: string | null;
|
1183
1183
|
sipServerUrl: string;
|
1184
1184
|
sipUserName: string;
|