@kl1/contracts 1.0.80 → 1.0.81

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