@kl1/contracts 1.0.80 → 1.0.82

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.
@@ -11,132 +11,750 @@ export declare const GetNotificationsRequestSchema: z.ZodObject<{
11
11
  }>;
12
12
  export declare const GetNotificationsResponseSchema: z.ZodObject<{
13
13
  notificationCount: z.ZodNumber;
14
- notifications: z.ZodObject<{
15
- data: z.ZodArray<z.ZodObject<{
16
- notificationObjectId: z.ZodString;
17
- notifierId: z.ZodString;
18
- notificationObject: z.ZodObject<{
19
- data: z.ZodString;
14
+ notifications: z.ZodArray<z.ZodObject<{
15
+ id: z.ZodString;
16
+ createdAt: z.ZodDate;
17
+ updatedAt: z.ZodDate;
18
+ deletedAt: z.ZodNullable<z.ZodDate>;
19
+ notificationObjectId: z.ZodString;
20
+ notifierId: z.ZodString;
21
+ notificationObject: z.ZodObject<{
22
+ id: z.ZodString;
23
+ createdAt: z.ZodDate;
24
+ updatedAt: z.ZodDate;
25
+ deletedAt: z.ZodNullable<z.ZodDate>;
26
+ data: z.ZodString;
27
+ notificationChange: z.ZodObject<{
28
+ id: z.ZodString;
29
+ createdAt: z.ZodDate;
30
+ updatedAt: z.ZodDate;
31
+ deletedAt: z.ZodNullable<z.ZodDate>;
32
+ actorId: z.ZodString;
33
+ actor: z.ZodObject<{
34
+ id: z.ZodString;
35
+ createdAt: z.ZodDate;
36
+ updatedAt: z.ZodDate;
37
+ deletedAt: z.ZodNullable<z.ZodDate>;
38
+ name: z.ZodString;
39
+ email: z.ZodString;
40
+ emailVerifiedAt: z.ZodNullable<z.ZodDate>;
41
+ password: z.ZodString;
42
+ address: z.ZodNullable<z.ZodString>;
43
+ phone: z.ZodNullable<z.ZodString>;
44
+ notificationCount: z.ZodNullable<z.ZodNumber>;
45
+ roles: z.ZodArray<z.ZodObject<{
46
+ id: z.ZodString;
47
+ createdAt: z.ZodDate;
48
+ updatedAt: z.ZodDate;
49
+ deletedAt: z.ZodNullable<z.ZodDate>;
50
+ systemName: z.ZodString;
51
+ displayName: z.ZodString;
52
+ description: z.ZodNullable<z.ZodString>;
53
+ permissions: z.ZodArray<z.ZodObject<{
54
+ id: z.ZodString;
55
+ createdAt: z.ZodDate;
56
+ updatedAt: z.ZodDate;
57
+ deletedAt: z.ZodNullable<z.ZodDate>;
58
+ systemName: z.ZodString;
59
+ displayName: z.ZodString;
60
+ description: z.ZodNullable<z.ZodString>;
61
+ }, "strip", z.ZodTypeAny, {
62
+ id: string;
63
+ description: string | null;
64
+ createdAt: Date;
65
+ updatedAt: Date;
66
+ deletedAt: Date | null;
67
+ systemName: string;
68
+ displayName: string;
69
+ }, {
70
+ id: string;
71
+ description: string | null;
72
+ createdAt: Date;
73
+ updatedAt: Date;
74
+ deletedAt: Date | null;
75
+ systemName: string;
76
+ displayName: string;
77
+ }>, "many">;
78
+ }, "strip", z.ZodTypeAny, {
79
+ id: string;
80
+ description: string | null;
81
+ createdAt: Date;
82
+ updatedAt: Date;
83
+ deletedAt: Date | null;
84
+ systemName: string;
85
+ displayName: string;
86
+ permissions: {
87
+ id: string;
88
+ description: string | null;
89
+ createdAt: Date;
90
+ updatedAt: Date;
91
+ deletedAt: Date | null;
92
+ systemName: string;
93
+ displayName: string;
94
+ }[];
95
+ }, {
96
+ id: string;
97
+ description: string | null;
98
+ createdAt: Date;
99
+ updatedAt: Date;
100
+ deletedAt: Date | null;
101
+ systemName: string;
102
+ displayName: string;
103
+ permissions: {
104
+ id: string;
105
+ description: string | null;
106
+ createdAt: Date;
107
+ updatedAt: Date;
108
+ deletedAt: Date | null;
109
+ systemName: string;
110
+ displayName: string;
111
+ }[];
112
+ }>, "many">;
113
+ extension: z.ZodObject<{
114
+ id: z.ZodString;
115
+ createdAt: z.ZodDate;
116
+ updatedAt: z.ZodDate;
117
+ deletedAt: z.ZodNullable<z.ZodDate>;
118
+ userId: z.ZodNullable<z.ZodString>;
119
+ sipServerUrl: z.ZodString;
120
+ sipUserName: z.ZodString;
121
+ webphoneLoginUser: z.ZodString;
122
+ extensionId: z.ZodNullable<z.ZodString>;
123
+ extensionName: z.ZodString;
124
+ telephonySignature: z.ZodNullable<z.ZodString>;
125
+ }, "strip", z.ZodTypeAny, {
126
+ id: string;
127
+ createdAt: Date;
128
+ updatedAt: Date;
129
+ deletedAt: Date | null;
130
+ userId: string | null;
131
+ sipServerUrl: string;
132
+ sipUserName: string;
133
+ webphoneLoginUser: string;
134
+ extensionId: string | null;
135
+ extensionName: string;
136
+ telephonySignature: string | null;
137
+ }, {
138
+ id: string;
139
+ createdAt: Date;
140
+ updatedAt: Date;
141
+ deletedAt: Date | null;
142
+ userId: string | null;
143
+ sipServerUrl: string;
144
+ sipUserName: string;
145
+ webphoneLoginUser: string;
146
+ extensionId: string | null;
147
+ extensionName: string;
148
+ telephonySignature: string | null;
149
+ }>;
150
+ }, "strip", z.ZodTypeAny, {
151
+ id: string;
152
+ address: string | null;
153
+ name: string;
154
+ email: string;
155
+ createdAt: Date;
156
+ updatedAt: Date;
157
+ deletedAt: Date | null;
158
+ emailVerifiedAt: Date | null;
159
+ password: string;
160
+ phone: string | null;
161
+ notificationCount: number | null;
162
+ roles: {
163
+ id: string;
164
+ description: string | null;
165
+ createdAt: Date;
166
+ updatedAt: Date;
167
+ deletedAt: Date | null;
168
+ systemName: string;
169
+ displayName: string;
170
+ permissions: {
171
+ id: string;
172
+ description: string | null;
173
+ createdAt: Date;
174
+ updatedAt: Date;
175
+ deletedAt: Date | null;
176
+ systemName: string;
177
+ displayName: string;
178
+ }[];
179
+ }[];
180
+ extension: {
181
+ id: string;
182
+ createdAt: Date;
183
+ updatedAt: Date;
184
+ deletedAt: Date | null;
185
+ userId: string | null;
186
+ sipServerUrl: string;
187
+ sipUserName: string;
188
+ webphoneLoginUser: string;
189
+ extensionId: string | null;
190
+ extensionName: string;
191
+ telephonySignature: string | null;
192
+ };
193
+ }, {
194
+ id: string;
195
+ address: string | null;
196
+ name: string;
197
+ email: string;
198
+ createdAt: Date;
199
+ updatedAt: Date;
200
+ deletedAt: Date | null;
201
+ emailVerifiedAt: Date | null;
202
+ password: string;
203
+ phone: string | null;
204
+ notificationCount: number | null;
205
+ roles: {
206
+ id: string;
207
+ description: string | null;
208
+ createdAt: Date;
209
+ updatedAt: Date;
210
+ deletedAt: Date | null;
211
+ systemName: string;
212
+ displayName: string;
213
+ permissions: {
214
+ id: string;
215
+ description: string | null;
216
+ createdAt: Date;
217
+ updatedAt: Date;
218
+ deletedAt: Date | null;
219
+ systemName: string;
220
+ displayName: string;
221
+ }[];
222
+ }[];
223
+ extension: {
224
+ id: string;
225
+ createdAt: Date;
226
+ updatedAt: Date;
227
+ deletedAt: Date | null;
228
+ userId: string | null;
229
+ sipServerUrl: string;
230
+ sipUserName: string;
231
+ webphoneLoginUser: string;
232
+ extensionId: string | null;
233
+ extensionName: string;
234
+ telephonySignature: string | null;
235
+ };
236
+ }>;
237
+ notificationObjectId: z.ZodString;
238
+ readAt: z.ZodDate;
20
239
  }, "strip", z.ZodTypeAny, {
21
- data: string;
240
+ id: string;
241
+ createdAt: Date;
242
+ updatedAt: Date;
243
+ deletedAt: Date | null;
244
+ actor: {
245
+ id: string;
246
+ address: string | null;
247
+ name: string;
248
+ email: string;
249
+ createdAt: Date;
250
+ updatedAt: Date;
251
+ deletedAt: Date | null;
252
+ emailVerifiedAt: Date | null;
253
+ password: string;
254
+ phone: string | null;
255
+ notificationCount: number | null;
256
+ roles: {
257
+ id: string;
258
+ description: string | null;
259
+ createdAt: Date;
260
+ updatedAt: Date;
261
+ deletedAt: Date | null;
262
+ systemName: string;
263
+ displayName: string;
264
+ permissions: {
265
+ id: string;
266
+ description: string | null;
267
+ createdAt: Date;
268
+ updatedAt: Date;
269
+ deletedAt: Date | null;
270
+ systemName: string;
271
+ displayName: string;
272
+ }[];
273
+ }[];
274
+ extension: {
275
+ id: string;
276
+ createdAt: Date;
277
+ updatedAt: Date;
278
+ deletedAt: Date | null;
279
+ userId: string | null;
280
+ sipServerUrl: string;
281
+ sipUserName: string;
282
+ webphoneLoginUser: string;
283
+ extensionId: string | null;
284
+ extensionName: string;
285
+ telephonySignature: string | null;
286
+ };
287
+ };
288
+ readAt: Date;
289
+ actorId: string;
290
+ notificationObjectId: string;
22
291
  }, {
23
- data: string;
292
+ id: string;
293
+ createdAt: Date;
294
+ updatedAt: Date;
295
+ deletedAt: Date | null;
296
+ actor: {
297
+ id: string;
298
+ address: string | null;
299
+ name: string;
300
+ email: string;
301
+ createdAt: Date;
302
+ updatedAt: Date;
303
+ deletedAt: Date | null;
304
+ emailVerifiedAt: Date | null;
305
+ password: string;
306
+ phone: string | null;
307
+ notificationCount: number | null;
308
+ roles: {
309
+ id: string;
310
+ description: string | null;
311
+ createdAt: Date;
312
+ updatedAt: Date;
313
+ deletedAt: Date | null;
314
+ systemName: string;
315
+ displayName: string;
316
+ permissions: {
317
+ id: string;
318
+ description: string | null;
319
+ createdAt: Date;
320
+ updatedAt: Date;
321
+ deletedAt: Date | null;
322
+ systemName: string;
323
+ displayName: string;
324
+ }[];
325
+ }[];
326
+ extension: {
327
+ id: string;
328
+ createdAt: Date;
329
+ updatedAt: Date;
330
+ deletedAt: Date | null;
331
+ userId: string | null;
332
+ sipServerUrl: string;
333
+ sipUserName: string;
334
+ webphoneLoginUser: string;
335
+ extensionId: string | null;
336
+ extensionName: string;
337
+ telephonySignature: string | null;
338
+ };
339
+ };
340
+ readAt: Date;
341
+ actorId: string;
342
+ notificationObjectId: string;
24
343
  }>;
25
- readAt: z.ZodDate;
26
344
  }, "strip", z.ZodTypeAny, {
27
- readAt: Date;
28
- notificationObjectId: string;
29
- notifierId: string;
30
- notificationObject: {
31
- data: string;
345
+ data: string;
346
+ id: string;
347
+ createdAt: Date;
348
+ updatedAt: Date;
349
+ deletedAt: Date | null;
350
+ notificationChange: {
351
+ id: string;
352
+ createdAt: Date;
353
+ updatedAt: Date;
354
+ deletedAt: Date | null;
355
+ actor: {
356
+ id: string;
357
+ address: string | null;
358
+ name: string;
359
+ email: string;
360
+ createdAt: Date;
361
+ updatedAt: Date;
362
+ deletedAt: Date | null;
363
+ emailVerifiedAt: Date | null;
364
+ password: string;
365
+ phone: string | null;
366
+ notificationCount: number | null;
367
+ roles: {
368
+ id: string;
369
+ description: string | null;
370
+ createdAt: Date;
371
+ updatedAt: Date;
372
+ deletedAt: Date | null;
373
+ systemName: string;
374
+ displayName: string;
375
+ permissions: {
376
+ id: string;
377
+ description: string | null;
378
+ createdAt: Date;
379
+ updatedAt: Date;
380
+ deletedAt: Date | null;
381
+ systemName: string;
382
+ displayName: string;
383
+ }[];
384
+ }[];
385
+ extension: {
386
+ id: string;
387
+ createdAt: Date;
388
+ updatedAt: Date;
389
+ deletedAt: Date | null;
390
+ userId: string | null;
391
+ sipServerUrl: string;
392
+ sipUserName: string;
393
+ webphoneLoginUser: string;
394
+ extensionId: string | null;
395
+ extensionName: string;
396
+ telephonySignature: string | null;
397
+ };
398
+ };
399
+ readAt: Date;
400
+ actorId: string;
401
+ notificationObjectId: string;
32
402
  };
33
403
  }, {
34
- readAt: Date;
35
- notificationObjectId: string;
36
- notifierId: string;
37
- notificationObject: {
38
- data: string;
404
+ data: string;
405
+ id: string;
406
+ createdAt: Date;
407
+ updatedAt: Date;
408
+ deletedAt: Date | null;
409
+ notificationChange: {
410
+ id: string;
411
+ createdAt: Date;
412
+ updatedAt: Date;
413
+ deletedAt: Date | null;
414
+ actor: {
415
+ id: string;
416
+ address: string | null;
417
+ name: string;
418
+ email: string;
419
+ createdAt: Date;
420
+ updatedAt: Date;
421
+ deletedAt: Date | null;
422
+ emailVerifiedAt: Date | null;
423
+ password: string;
424
+ phone: string | null;
425
+ notificationCount: number | null;
426
+ roles: {
427
+ id: string;
428
+ description: string | null;
429
+ createdAt: Date;
430
+ updatedAt: Date;
431
+ deletedAt: Date | null;
432
+ systemName: string;
433
+ displayName: string;
434
+ permissions: {
435
+ id: string;
436
+ description: string | null;
437
+ createdAt: Date;
438
+ updatedAt: Date;
439
+ deletedAt: Date | null;
440
+ systemName: string;
441
+ displayName: string;
442
+ }[];
443
+ }[];
444
+ extension: {
445
+ id: string;
446
+ createdAt: Date;
447
+ updatedAt: Date;
448
+ deletedAt: Date | null;
449
+ userId: string | null;
450
+ sipServerUrl: string;
451
+ sipUserName: string;
452
+ webphoneLoginUser: string;
453
+ extensionId: string | null;
454
+ extensionName: string;
455
+ telephonySignature: string | null;
456
+ };
457
+ };
458
+ readAt: Date;
459
+ actorId: string;
460
+ notificationObjectId: string;
39
461
  };
40
- }>, "many">;
41
- total: z.ZodNumber;
42
- page: z.ZodNumber;
43
- pageSize: z.ZodNumber;
44
- lastPage: z.ZodNumber;
45
- totalUnreadCount: z.ZodOptional<z.ZodNumber>;
46
- unreadRoomCount: z.ZodOptional<z.ZodNumber>;
47
- unreadCountsByAssigneeList: z.ZodArray<z.ZodObject<{
48
- assigneeId: z.ZodOptional<z.ZodString>;
49
- totalUnreadCount: z.ZodOptional<z.ZodString>;
50
- }, "strip", z.ZodTypeAny, {
51
- assigneeId?: string | undefined;
52
- totalUnreadCount?: string | undefined;
53
- }, {
54
- assigneeId?: string | undefined;
55
- totalUnreadCount?: string | undefined;
56
- }>, "many">;
462
+ }>;
463
+ readAt: z.ZodDate;
57
464
  }, "strip", z.ZodTypeAny, {
58
- data: {
59
- readAt: Date;
60
- notificationObjectId: string;
61
- notifierId: string;
62
- notificationObject: {
63
- data: string;
465
+ id: string;
466
+ createdAt: Date;
467
+ updatedAt: Date;
468
+ deletedAt: Date | null;
469
+ readAt: Date;
470
+ notificationObjectId: string;
471
+ notifierId: string;
472
+ notificationObject: {
473
+ data: string;
474
+ id: string;
475
+ createdAt: Date;
476
+ updatedAt: Date;
477
+ deletedAt: Date | null;
478
+ notificationChange: {
479
+ id: string;
480
+ createdAt: Date;
481
+ updatedAt: Date;
482
+ deletedAt: Date | null;
483
+ actor: {
484
+ id: string;
485
+ address: string | null;
486
+ name: string;
487
+ email: string;
488
+ createdAt: Date;
489
+ updatedAt: Date;
490
+ deletedAt: Date | null;
491
+ emailVerifiedAt: Date | null;
492
+ password: string;
493
+ phone: string | null;
494
+ notificationCount: number | null;
495
+ roles: {
496
+ id: string;
497
+ description: string | null;
498
+ createdAt: Date;
499
+ updatedAt: Date;
500
+ deletedAt: Date | null;
501
+ systemName: string;
502
+ displayName: string;
503
+ permissions: {
504
+ id: string;
505
+ description: string | null;
506
+ createdAt: Date;
507
+ updatedAt: Date;
508
+ deletedAt: Date | null;
509
+ systemName: string;
510
+ displayName: string;
511
+ }[];
512
+ }[];
513
+ extension: {
514
+ id: string;
515
+ createdAt: Date;
516
+ updatedAt: Date;
517
+ deletedAt: Date | null;
518
+ userId: string | null;
519
+ sipServerUrl: string;
520
+ sipUserName: string;
521
+ webphoneLoginUser: string;
522
+ extensionId: string | null;
523
+ extensionName: string;
524
+ telephonySignature: string | null;
525
+ };
526
+ };
527
+ readAt: Date;
528
+ actorId: string;
529
+ notificationObjectId: string;
64
530
  };
65
- }[];
66
- total: number;
67
- page: number;
68
- pageSize: number;
69
- lastPage: number;
70
- unreadCountsByAssigneeList: {
71
- assigneeId?: string | undefined;
72
- totalUnreadCount?: string | undefined;
73
- }[];
74
- totalUnreadCount?: number | undefined;
75
- unreadRoomCount?: number | undefined;
531
+ };
76
532
  }, {
77
- data: {
78
- readAt: Date;
79
- notificationObjectId: string;
80
- notifierId: string;
81
- notificationObject: {
82
- data: string;
533
+ id: string;
534
+ createdAt: Date;
535
+ updatedAt: Date;
536
+ deletedAt: Date | null;
537
+ readAt: Date;
538
+ notificationObjectId: string;
539
+ notifierId: string;
540
+ notificationObject: {
541
+ data: string;
542
+ id: string;
543
+ createdAt: Date;
544
+ updatedAt: Date;
545
+ deletedAt: Date | null;
546
+ notificationChange: {
547
+ id: string;
548
+ createdAt: Date;
549
+ updatedAt: Date;
550
+ deletedAt: Date | null;
551
+ actor: {
552
+ id: string;
553
+ address: string | null;
554
+ name: string;
555
+ email: string;
556
+ createdAt: Date;
557
+ updatedAt: Date;
558
+ deletedAt: Date | null;
559
+ emailVerifiedAt: Date | null;
560
+ password: string;
561
+ phone: string | null;
562
+ notificationCount: number | null;
563
+ roles: {
564
+ id: string;
565
+ description: string | null;
566
+ createdAt: Date;
567
+ updatedAt: Date;
568
+ deletedAt: Date | null;
569
+ systemName: string;
570
+ displayName: string;
571
+ permissions: {
572
+ id: string;
573
+ description: string | null;
574
+ createdAt: Date;
575
+ updatedAt: Date;
576
+ deletedAt: Date | null;
577
+ systemName: string;
578
+ displayName: string;
579
+ }[];
580
+ }[];
581
+ extension: {
582
+ id: string;
583
+ createdAt: Date;
584
+ updatedAt: Date;
585
+ deletedAt: Date | null;
586
+ userId: string | null;
587
+ sipServerUrl: string;
588
+ sipUserName: string;
589
+ webphoneLoginUser: string;
590
+ extensionId: string | null;
591
+ extensionName: string;
592
+ telephonySignature: string | null;
593
+ };
594
+ };
595
+ readAt: Date;
596
+ actorId: string;
597
+ notificationObjectId: string;
83
598
  };
84
- }[];
85
- total: number;
86
- page: number;
87
- pageSize: number;
88
- lastPage: number;
89
- unreadCountsByAssigneeList: {
90
- assigneeId?: string | undefined;
91
- totalUnreadCount?: string | undefined;
92
- }[];
93
- totalUnreadCount?: number | undefined;
94
- unreadRoomCount?: number | undefined;
95
- }>;
599
+ };
600
+ }>, "many">;
601
+ total: z.ZodNumber;
602
+ page: z.ZodNumber;
603
+ pageSize: z.ZodNumber;
604
+ lastPage: z.ZodNumber;
605
+ totalUnreadCount: z.ZodOptional<z.ZodNumber>;
96
606
  }, "strip", z.ZodTypeAny, {
607
+ total: number;
97
608
  notifications: {
98
- data: {
99
- readAt: Date;
100
- notificationObjectId: string;
101
- notifierId: string;
102
- notificationObject: {
103
- data: string;
609
+ id: string;
610
+ createdAt: Date;
611
+ updatedAt: Date;
612
+ deletedAt: Date | null;
613
+ readAt: Date;
614
+ notificationObjectId: string;
615
+ notifierId: string;
616
+ notificationObject: {
617
+ data: string;
618
+ id: string;
619
+ createdAt: Date;
620
+ updatedAt: Date;
621
+ deletedAt: Date | null;
622
+ notificationChange: {
623
+ id: string;
624
+ createdAt: Date;
625
+ updatedAt: Date;
626
+ deletedAt: Date | null;
627
+ actor: {
628
+ id: string;
629
+ address: string | null;
630
+ name: string;
631
+ email: string;
632
+ createdAt: Date;
633
+ updatedAt: Date;
634
+ deletedAt: Date | null;
635
+ emailVerifiedAt: Date | null;
636
+ password: string;
637
+ phone: string | null;
638
+ notificationCount: number | null;
639
+ roles: {
640
+ id: string;
641
+ description: string | null;
642
+ createdAt: Date;
643
+ updatedAt: Date;
644
+ deletedAt: Date | null;
645
+ systemName: string;
646
+ displayName: string;
647
+ permissions: {
648
+ id: string;
649
+ description: string | null;
650
+ createdAt: Date;
651
+ updatedAt: Date;
652
+ deletedAt: Date | null;
653
+ systemName: string;
654
+ displayName: string;
655
+ }[];
656
+ }[];
657
+ extension: {
658
+ id: string;
659
+ createdAt: Date;
660
+ updatedAt: Date;
661
+ deletedAt: Date | null;
662
+ userId: string | null;
663
+ sipServerUrl: string;
664
+ sipUserName: string;
665
+ webphoneLoginUser: string;
666
+ extensionId: string | null;
667
+ extensionName: string;
668
+ telephonySignature: string | null;
669
+ };
670
+ };
671
+ readAt: Date;
672
+ actorId: string;
673
+ notificationObjectId: string;
104
674
  };
105
- }[];
106
- total: number;
107
- page: number;
108
- pageSize: number;
109
- lastPage: number;
110
- unreadCountsByAssigneeList: {
111
- assigneeId?: string | undefined;
112
- totalUnreadCount?: string | undefined;
113
- }[];
114
- totalUnreadCount?: number | undefined;
115
- unreadRoomCount?: number | undefined;
116
- };
675
+ };
676
+ }[];
677
+ page: number;
678
+ pageSize: number;
679
+ lastPage: number;
117
680
  notificationCount: number;
681
+ totalUnreadCount?: number | undefined;
118
682
  }, {
683
+ total: number;
119
684
  notifications: {
120
- data: {
121
- readAt: Date;
122
- notificationObjectId: string;
123
- notifierId: string;
124
- notificationObject: {
125
- data: string;
685
+ id: string;
686
+ createdAt: Date;
687
+ updatedAt: Date;
688
+ deletedAt: Date | null;
689
+ readAt: Date;
690
+ notificationObjectId: string;
691
+ notifierId: string;
692
+ notificationObject: {
693
+ data: string;
694
+ id: string;
695
+ createdAt: Date;
696
+ updatedAt: Date;
697
+ deletedAt: Date | null;
698
+ notificationChange: {
699
+ id: string;
700
+ createdAt: Date;
701
+ updatedAt: Date;
702
+ deletedAt: Date | null;
703
+ actor: {
704
+ id: string;
705
+ address: string | null;
706
+ name: string;
707
+ email: string;
708
+ createdAt: Date;
709
+ updatedAt: Date;
710
+ deletedAt: Date | null;
711
+ emailVerifiedAt: Date | null;
712
+ password: string;
713
+ phone: string | null;
714
+ notificationCount: number | null;
715
+ roles: {
716
+ id: string;
717
+ description: string | null;
718
+ createdAt: Date;
719
+ updatedAt: Date;
720
+ deletedAt: Date | null;
721
+ systemName: string;
722
+ displayName: string;
723
+ permissions: {
724
+ id: string;
725
+ description: string | null;
726
+ createdAt: Date;
727
+ updatedAt: Date;
728
+ deletedAt: Date | null;
729
+ systemName: string;
730
+ displayName: string;
731
+ }[];
732
+ }[];
733
+ extension: {
734
+ id: string;
735
+ createdAt: Date;
736
+ updatedAt: Date;
737
+ deletedAt: Date | null;
738
+ userId: string | null;
739
+ sipServerUrl: string;
740
+ sipUserName: string;
741
+ webphoneLoginUser: string;
742
+ extensionId: string | null;
743
+ extensionName: string;
744
+ telephonySignature: string | null;
745
+ };
746
+ };
747
+ readAt: Date;
748
+ actorId: string;
749
+ notificationObjectId: string;
126
750
  };
127
- }[];
128
- total: number;
129
- page: number;
130
- pageSize: number;
131
- lastPage: number;
132
- unreadCountsByAssigneeList: {
133
- assigneeId?: string | undefined;
134
- totalUnreadCount?: string | undefined;
135
- }[];
136
- totalUnreadCount?: number | undefined;
137
- unreadRoomCount?: number | undefined;
138
- };
751
+ };
752
+ }[];
753
+ page: number;
754
+ pageSize: number;
755
+ lastPage: number;
139
756
  notificationCount: number;
757
+ totalUnreadCount?: number | undefined;
140
758
  }>;
141
759
  export declare const ResetNotificationRequestSchema: z.ZodObject<{
142
760
  userId: z.ZodString;