@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.
@@ -1,48 +1,1348 @@
1
1
  import z from 'zod';
2
- export declare const NotificationObjectSchema: z.ZodObject<{
3
- data: z.ZodString;
4
- }, "strip", z.ZodTypeAny, {
5
- data: string;
6
- }, {
7
- data: string;
8
- }>;
9
2
  export declare const NotificationChangeSchema: z.ZodObject<{
3
+ id: z.ZodString;
4
+ createdAt: z.ZodDate;
5
+ updatedAt: z.ZodDate;
6
+ deletedAt: z.ZodNullable<z.ZodDate>;
10
7
  actorId: z.ZodString;
8
+ actor: z.ZodObject<{
9
+ id: z.ZodString;
10
+ createdAt: z.ZodDate;
11
+ updatedAt: z.ZodDate;
12
+ deletedAt: z.ZodNullable<z.ZodDate>;
13
+ name: z.ZodString;
14
+ email: z.ZodString;
15
+ emailVerifiedAt: z.ZodNullable<z.ZodDate>;
16
+ password: z.ZodString;
17
+ address: z.ZodNullable<z.ZodString>;
18
+ phone: z.ZodNullable<z.ZodString>;
19
+ notificationCount: z.ZodNullable<z.ZodNumber>;
20
+ roles: z.ZodArray<z.ZodObject<{
21
+ id: z.ZodString;
22
+ createdAt: z.ZodDate;
23
+ updatedAt: z.ZodDate;
24
+ deletedAt: z.ZodNullable<z.ZodDate>;
25
+ systemName: z.ZodString;
26
+ displayName: z.ZodString;
27
+ description: z.ZodNullable<z.ZodString>;
28
+ permissions: z.ZodArray<z.ZodObject<{
29
+ id: z.ZodString;
30
+ createdAt: z.ZodDate;
31
+ updatedAt: z.ZodDate;
32
+ deletedAt: z.ZodNullable<z.ZodDate>;
33
+ systemName: z.ZodString;
34
+ displayName: z.ZodString;
35
+ description: z.ZodNullable<z.ZodString>;
36
+ }, "strip", z.ZodTypeAny, {
37
+ id: string;
38
+ description: string | null;
39
+ createdAt: Date;
40
+ updatedAt: Date;
41
+ deletedAt: Date | null;
42
+ systemName: string;
43
+ displayName: string;
44
+ }, {
45
+ id: string;
46
+ description: string | null;
47
+ createdAt: Date;
48
+ updatedAt: Date;
49
+ deletedAt: Date | null;
50
+ systemName: string;
51
+ displayName: string;
52
+ }>, "many">;
53
+ }, "strip", z.ZodTypeAny, {
54
+ id: string;
55
+ description: string | null;
56
+ createdAt: Date;
57
+ updatedAt: Date;
58
+ deletedAt: Date | null;
59
+ systemName: string;
60
+ displayName: string;
61
+ permissions: {
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
+ }, {
71
+ id: string;
72
+ description: string | null;
73
+ createdAt: Date;
74
+ updatedAt: Date;
75
+ deletedAt: Date | null;
76
+ systemName: string;
77
+ displayName: string;
78
+ permissions: {
79
+ id: string;
80
+ description: string | null;
81
+ createdAt: Date;
82
+ updatedAt: Date;
83
+ deletedAt: Date | null;
84
+ systemName: string;
85
+ displayName: string;
86
+ }[];
87
+ }>, "many">;
88
+ extension: z.ZodObject<{
89
+ id: z.ZodString;
90
+ createdAt: z.ZodDate;
91
+ updatedAt: z.ZodDate;
92
+ deletedAt: z.ZodNullable<z.ZodDate>;
93
+ userId: z.ZodNullable<z.ZodString>;
94
+ sipServerUrl: z.ZodString;
95
+ sipUserName: z.ZodString;
96
+ webphoneLoginUser: z.ZodString;
97
+ extensionId: z.ZodNullable<z.ZodString>;
98
+ extensionName: z.ZodString;
99
+ telephonySignature: z.ZodNullable<z.ZodString>;
100
+ }, "strip", z.ZodTypeAny, {
101
+ id: string;
102
+ createdAt: Date;
103
+ updatedAt: Date;
104
+ deletedAt: Date | null;
105
+ userId: string | null;
106
+ sipServerUrl: string;
107
+ sipUserName: string;
108
+ webphoneLoginUser: string;
109
+ extensionId: string | null;
110
+ extensionName: string;
111
+ telephonySignature: string | null;
112
+ }, {
113
+ id: string;
114
+ createdAt: Date;
115
+ updatedAt: Date;
116
+ deletedAt: Date | null;
117
+ userId: string | null;
118
+ sipServerUrl: string;
119
+ sipUserName: string;
120
+ webphoneLoginUser: string;
121
+ extensionId: string | null;
122
+ extensionName: string;
123
+ telephonySignature: string | null;
124
+ }>;
125
+ }, "strip", z.ZodTypeAny, {
126
+ id: string;
127
+ address: string | null;
128
+ name: string;
129
+ email: string;
130
+ createdAt: Date;
131
+ updatedAt: Date;
132
+ deletedAt: Date | null;
133
+ emailVerifiedAt: Date | null;
134
+ password: string;
135
+ phone: string | null;
136
+ notificationCount: number | null;
137
+ roles: {
138
+ id: string;
139
+ description: string | null;
140
+ createdAt: Date;
141
+ updatedAt: Date;
142
+ deletedAt: Date | null;
143
+ systemName: string;
144
+ displayName: string;
145
+ permissions: {
146
+ id: string;
147
+ description: string | null;
148
+ createdAt: Date;
149
+ updatedAt: Date;
150
+ deletedAt: Date | null;
151
+ systemName: string;
152
+ displayName: string;
153
+ }[];
154
+ }[];
155
+ extension: {
156
+ id: string;
157
+ createdAt: Date;
158
+ updatedAt: Date;
159
+ deletedAt: Date | null;
160
+ userId: string | null;
161
+ sipServerUrl: string;
162
+ sipUserName: string;
163
+ webphoneLoginUser: string;
164
+ extensionId: string | null;
165
+ extensionName: string;
166
+ telephonySignature: string | null;
167
+ };
168
+ }, {
169
+ id: string;
170
+ address: string | null;
171
+ name: string;
172
+ email: string;
173
+ createdAt: Date;
174
+ updatedAt: Date;
175
+ deletedAt: Date | null;
176
+ emailVerifiedAt: Date | null;
177
+ password: string;
178
+ phone: string | null;
179
+ notificationCount: number | null;
180
+ roles: {
181
+ id: string;
182
+ description: string | null;
183
+ createdAt: Date;
184
+ updatedAt: Date;
185
+ deletedAt: Date | null;
186
+ systemName: string;
187
+ displayName: string;
188
+ permissions: {
189
+ id: string;
190
+ description: string | null;
191
+ createdAt: Date;
192
+ updatedAt: Date;
193
+ deletedAt: Date | null;
194
+ systemName: string;
195
+ displayName: string;
196
+ }[];
197
+ }[];
198
+ extension: {
199
+ id: string;
200
+ createdAt: Date;
201
+ updatedAt: Date;
202
+ deletedAt: Date | null;
203
+ userId: string | null;
204
+ sipServerUrl: string;
205
+ sipUserName: string;
206
+ webphoneLoginUser: string;
207
+ extensionId: string | null;
208
+ extensionName: string;
209
+ telephonySignature: string | null;
210
+ };
211
+ }>;
11
212
  notificationObjectId: z.ZodString;
12
213
  readAt: z.ZodDate;
13
214
  }, "strip", z.ZodTypeAny, {
215
+ id: string;
216
+ createdAt: Date;
217
+ updatedAt: Date;
218
+ deletedAt: Date | null;
219
+ actor: {
220
+ id: string;
221
+ address: string | null;
222
+ name: string;
223
+ email: string;
224
+ createdAt: Date;
225
+ updatedAt: Date;
226
+ deletedAt: Date | null;
227
+ emailVerifiedAt: Date | null;
228
+ password: string;
229
+ phone: string | null;
230
+ notificationCount: number | null;
231
+ roles: {
232
+ id: string;
233
+ description: string | null;
234
+ createdAt: Date;
235
+ updatedAt: Date;
236
+ deletedAt: Date | null;
237
+ systemName: string;
238
+ displayName: string;
239
+ permissions: {
240
+ id: string;
241
+ description: string | null;
242
+ createdAt: Date;
243
+ updatedAt: Date;
244
+ deletedAt: Date | null;
245
+ systemName: string;
246
+ displayName: string;
247
+ }[];
248
+ }[];
249
+ extension: {
250
+ id: string;
251
+ createdAt: Date;
252
+ updatedAt: Date;
253
+ deletedAt: Date | null;
254
+ userId: string | null;
255
+ sipServerUrl: string;
256
+ sipUserName: string;
257
+ webphoneLoginUser: string;
258
+ extensionId: string | null;
259
+ extensionName: string;
260
+ telephonySignature: string | null;
261
+ };
262
+ };
14
263
  readAt: Date;
15
264
  actorId: string;
16
265
  notificationObjectId: string;
17
266
  }, {
267
+ id: string;
268
+ createdAt: Date;
269
+ updatedAt: Date;
270
+ deletedAt: Date | null;
271
+ actor: {
272
+ id: string;
273
+ address: string | null;
274
+ name: string;
275
+ email: string;
276
+ createdAt: Date;
277
+ updatedAt: Date;
278
+ deletedAt: Date | null;
279
+ emailVerifiedAt: Date | null;
280
+ password: string;
281
+ phone: string | null;
282
+ notificationCount: number | null;
283
+ roles: {
284
+ id: string;
285
+ description: string | null;
286
+ createdAt: Date;
287
+ updatedAt: Date;
288
+ deletedAt: Date | null;
289
+ systemName: string;
290
+ displayName: string;
291
+ permissions: {
292
+ id: string;
293
+ description: string | null;
294
+ createdAt: Date;
295
+ updatedAt: Date;
296
+ deletedAt: Date | null;
297
+ systemName: string;
298
+ displayName: string;
299
+ }[];
300
+ }[];
301
+ extension: {
302
+ id: string;
303
+ createdAt: Date;
304
+ updatedAt: Date;
305
+ deletedAt: Date | null;
306
+ userId: string | null;
307
+ sipServerUrl: string;
308
+ sipUserName: string;
309
+ webphoneLoginUser: string;
310
+ extensionId: string | null;
311
+ extensionName: string;
312
+ telephonySignature: string | null;
313
+ };
314
+ };
18
315
  readAt: Date;
19
316
  actorId: string;
20
317
  notificationObjectId: string;
21
318
  }>;
319
+ export declare const NotificationObjectSchema: z.ZodObject<{
320
+ id: z.ZodString;
321
+ createdAt: z.ZodDate;
322
+ updatedAt: z.ZodDate;
323
+ deletedAt: z.ZodNullable<z.ZodDate>;
324
+ data: z.ZodString;
325
+ notificationChange: z.ZodObject<{
326
+ id: z.ZodString;
327
+ createdAt: z.ZodDate;
328
+ updatedAt: z.ZodDate;
329
+ deletedAt: z.ZodNullable<z.ZodDate>;
330
+ actorId: z.ZodString;
331
+ actor: z.ZodObject<{
332
+ id: z.ZodString;
333
+ createdAt: z.ZodDate;
334
+ updatedAt: z.ZodDate;
335
+ deletedAt: z.ZodNullable<z.ZodDate>;
336
+ name: z.ZodString;
337
+ email: z.ZodString;
338
+ emailVerifiedAt: z.ZodNullable<z.ZodDate>;
339
+ password: z.ZodString;
340
+ address: z.ZodNullable<z.ZodString>;
341
+ phone: z.ZodNullable<z.ZodString>;
342
+ notificationCount: z.ZodNullable<z.ZodNumber>;
343
+ roles: z.ZodArray<z.ZodObject<{
344
+ id: z.ZodString;
345
+ createdAt: z.ZodDate;
346
+ updatedAt: z.ZodDate;
347
+ deletedAt: z.ZodNullable<z.ZodDate>;
348
+ systemName: z.ZodString;
349
+ displayName: z.ZodString;
350
+ description: z.ZodNullable<z.ZodString>;
351
+ permissions: z.ZodArray<z.ZodObject<{
352
+ id: z.ZodString;
353
+ createdAt: z.ZodDate;
354
+ updatedAt: z.ZodDate;
355
+ deletedAt: z.ZodNullable<z.ZodDate>;
356
+ systemName: z.ZodString;
357
+ displayName: z.ZodString;
358
+ description: z.ZodNullable<z.ZodString>;
359
+ }, "strip", z.ZodTypeAny, {
360
+ id: string;
361
+ description: string | null;
362
+ createdAt: Date;
363
+ updatedAt: Date;
364
+ deletedAt: Date | null;
365
+ systemName: string;
366
+ displayName: string;
367
+ }, {
368
+ id: string;
369
+ description: string | null;
370
+ createdAt: Date;
371
+ updatedAt: Date;
372
+ deletedAt: Date | null;
373
+ systemName: string;
374
+ displayName: string;
375
+ }>, "many">;
376
+ }, "strip", z.ZodTypeAny, {
377
+ id: string;
378
+ description: string | null;
379
+ createdAt: Date;
380
+ updatedAt: Date;
381
+ deletedAt: Date | null;
382
+ systemName: string;
383
+ displayName: string;
384
+ permissions: {
385
+ id: string;
386
+ description: string | null;
387
+ createdAt: Date;
388
+ updatedAt: Date;
389
+ deletedAt: Date | null;
390
+ systemName: string;
391
+ displayName: string;
392
+ }[];
393
+ }, {
394
+ id: string;
395
+ description: string | null;
396
+ createdAt: Date;
397
+ updatedAt: Date;
398
+ deletedAt: Date | null;
399
+ systemName: string;
400
+ displayName: string;
401
+ permissions: {
402
+ id: string;
403
+ description: string | null;
404
+ createdAt: Date;
405
+ updatedAt: Date;
406
+ deletedAt: Date | null;
407
+ systemName: string;
408
+ displayName: string;
409
+ }[];
410
+ }>, "many">;
411
+ extension: z.ZodObject<{
412
+ id: z.ZodString;
413
+ createdAt: z.ZodDate;
414
+ updatedAt: z.ZodDate;
415
+ deletedAt: z.ZodNullable<z.ZodDate>;
416
+ userId: z.ZodNullable<z.ZodString>;
417
+ sipServerUrl: z.ZodString;
418
+ sipUserName: z.ZodString;
419
+ webphoneLoginUser: z.ZodString;
420
+ extensionId: z.ZodNullable<z.ZodString>;
421
+ extensionName: z.ZodString;
422
+ telephonySignature: z.ZodNullable<z.ZodString>;
423
+ }, "strip", z.ZodTypeAny, {
424
+ id: string;
425
+ createdAt: Date;
426
+ updatedAt: Date;
427
+ deletedAt: Date | null;
428
+ userId: string | null;
429
+ sipServerUrl: string;
430
+ sipUserName: string;
431
+ webphoneLoginUser: string;
432
+ extensionId: string | null;
433
+ extensionName: string;
434
+ telephonySignature: string | null;
435
+ }, {
436
+ id: string;
437
+ createdAt: Date;
438
+ updatedAt: Date;
439
+ deletedAt: Date | null;
440
+ userId: string | null;
441
+ sipServerUrl: string;
442
+ sipUserName: string;
443
+ webphoneLoginUser: string;
444
+ extensionId: string | null;
445
+ extensionName: string;
446
+ telephonySignature: string | null;
447
+ }>;
448
+ }, "strip", z.ZodTypeAny, {
449
+ id: string;
450
+ address: string | null;
451
+ name: string;
452
+ email: string;
453
+ createdAt: Date;
454
+ updatedAt: Date;
455
+ deletedAt: Date | null;
456
+ emailVerifiedAt: Date | null;
457
+ password: string;
458
+ phone: string | null;
459
+ notificationCount: number | null;
460
+ roles: {
461
+ id: string;
462
+ description: string | null;
463
+ createdAt: Date;
464
+ updatedAt: Date;
465
+ deletedAt: Date | null;
466
+ systemName: string;
467
+ displayName: string;
468
+ permissions: {
469
+ id: string;
470
+ description: string | null;
471
+ createdAt: Date;
472
+ updatedAt: Date;
473
+ deletedAt: Date | null;
474
+ systemName: string;
475
+ displayName: string;
476
+ }[];
477
+ }[];
478
+ extension: {
479
+ id: string;
480
+ createdAt: Date;
481
+ updatedAt: Date;
482
+ deletedAt: Date | null;
483
+ userId: string | null;
484
+ sipServerUrl: string;
485
+ sipUserName: string;
486
+ webphoneLoginUser: string;
487
+ extensionId: string | null;
488
+ extensionName: string;
489
+ telephonySignature: string | null;
490
+ };
491
+ }, {
492
+ id: string;
493
+ address: string | null;
494
+ name: string;
495
+ email: string;
496
+ createdAt: Date;
497
+ updatedAt: Date;
498
+ deletedAt: Date | null;
499
+ emailVerifiedAt: Date | null;
500
+ password: string;
501
+ phone: string | null;
502
+ notificationCount: number | null;
503
+ roles: {
504
+ id: string;
505
+ description: string | null;
506
+ createdAt: Date;
507
+ updatedAt: Date;
508
+ deletedAt: Date | null;
509
+ systemName: string;
510
+ displayName: string;
511
+ permissions: {
512
+ id: string;
513
+ description: string | null;
514
+ createdAt: Date;
515
+ updatedAt: Date;
516
+ deletedAt: Date | null;
517
+ systemName: string;
518
+ displayName: string;
519
+ }[];
520
+ }[];
521
+ extension: {
522
+ id: string;
523
+ createdAt: Date;
524
+ updatedAt: Date;
525
+ deletedAt: Date | null;
526
+ userId: string | null;
527
+ sipServerUrl: string;
528
+ sipUserName: string;
529
+ webphoneLoginUser: string;
530
+ extensionId: string | null;
531
+ extensionName: string;
532
+ telephonySignature: string | null;
533
+ };
534
+ }>;
535
+ notificationObjectId: z.ZodString;
536
+ readAt: z.ZodDate;
537
+ }, "strip", z.ZodTypeAny, {
538
+ id: string;
539
+ createdAt: Date;
540
+ updatedAt: Date;
541
+ deletedAt: Date | null;
542
+ actor: {
543
+ id: string;
544
+ address: string | null;
545
+ name: string;
546
+ email: string;
547
+ createdAt: Date;
548
+ updatedAt: Date;
549
+ deletedAt: Date | null;
550
+ emailVerifiedAt: Date | null;
551
+ password: string;
552
+ phone: string | null;
553
+ notificationCount: number | null;
554
+ roles: {
555
+ id: string;
556
+ description: string | null;
557
+ createdAt: Date;
558
+ updatedAt: Date;
559
+ deletedAt: Date | null;
560
+ systemName: string;
561
+ displayName: string;
562
+ permissions: {
563
+ id: string;
564
+ description: string | null;
565
+ createdAt: Date;
566
+ updatedAt: Date;
567
+ deletedAt: Date | null;
568
+ systemName: string;
569
+ displayName: string;
570
+ }[];
571
+ }[];
572
+ extension: {
573
+ id: string;
574
+ createdAt: Date;
575
+ updatedAt: Date;
576
+ deletedAt: Date | null;
577
+ userId: string | null;
578
+ sipServerUrl: string;
579
+ sipUserName: string;
580
+ webphoneLoginUser: string;
581
+ extensionId: string | null;
582
+ extensionName: string;
583
+ telephonySignature: string | null;
584
+ };
585
+ };
586
+ readAt: Date;
587
+ actorId: string;
588
+ notificationObjectId: string;
589
+ }, {
590
+ id: string;
591
+ createdAt: Date;
592
+ updatedAt: Date;
593
+ deletedAt: Date | null;
594
+ actor: {
595
+ id: string;
596
+ address: string | null;
597
+ name: string;
598
+ email: string;
599
+ createdAt: Date;
600
+ updatedAt: Date;
601
+ deletedAt: Date | null;
602
+ emailVerifiedAt: Date | null;
603
+ password: string;
604
+ phone: string | null;
605
+ notificationCount: number | null;
606
+ roles: {
607
+ id: string;
608
+ description: string | null;
609
+ createdAt: Date;
610
+ updatedAt: Date;
611
+ deletedAt: Date | null;
612
+ systemName: string;
613
+ displayName: string;
614
+ permissions: {
615
+ id: string;
616
+ description: string | null;
617
+ createdAt: Date;
618
+ updatedAt: Date;
619
+ deletedAt: Date | null;
620
+ systemName: string;
621
+ displayName: string;
622
+ }[];
623
+ }[];
624
+ extension: {
625
+ id: string;
626
+ createdAt: Date;
627
+ updatedAt: Date;
628
+ deletedAt: Date | null;
629
+ userId: string | null;
630
+ sipServerUrl: string;
631
+ sipUserName: string;
632
+ webphoneLoginUser: string;
633
+ extensionId: string | null;
634
+ extensionName: string;
635
+ telephonySignature: string | null;
636
+ };
637
+ };
638
+ readAt: Date;
639
+ actorId: string;
640
+ notificationObjectId: string;
641
+ }>;
642
+ }, "strip", z.ZodTypeAny, {
643
+ data: string;
644
+ id: string;
645
+ createdAt: Date;
646
+ updatedAt: Date;
647
+ deletedAt: Date | null;
648
+ notificationChange: {
649
+ id: string;
650
+ createdAt: Date;
651
+ updatedAt: Date;
652
+ deletedAt: Date | null;
653
+ actor: {
654
+ id: string;
655
+ address: string | null;
656
+ name: string;
657
+ email: string;
658
+ createdAt: Date;
659
+ updatedAt: Date;
660
+ deletedAt: Date | null;
661
+ emailVerifiedAt: Date | null;
662
+ password: string;
663
+ phone: string | null;
664
+ notificationCount: number | null;
665
+ roles: {
666
+ id: string;
667
+ description: string | null;
668
+ createdAt: Date;
669
+ updatedAt: Date;
670
+ deletedAt: Date | null;
671
+ systemName: string;
672
+ displayName: string;
673
+ permissions: {
674
+ id: string;
675
+ description: string | null;
676
+ createdAt: Date;
677
+ updatedAt: Date;
678
+ deletedAt: Date | null;
679
+ systemName: string;
680
+ displayName: string;
681
+ }[];
682
+ }[];
683
+ extension: {
684
+ id: string;
685
+ createdAt: Date;
686
+ updatedAt: Date;
687
+ deletedAt: Date | null;
688
+ userId: string | null;
689
+ sipServerUrl: string;
690
+ sipUserName: string;
691
+ webphoneLoginUser: string;
692
+ extensionId: string | null;
693
+ extensionName: string;
694
+ telephonySignature: string | null;
695
+ };
696
+ };
697
+ readAt: Date;
698
+ actorId: string;
699
+ notificationObjectId: string;
700
+ };
701
+ }, {
702
+ data: string;
703
+ id: string;
704
+ createdAt: Date;
705
+ updatedAt: Date;
706
+ deletedAt: Date | null;
707
+ notificationChange: {
708
+ id: string;
709
+ createdAt: Date;
710
+ updatedAt: Date;
711
+ deletedAt: Date | null;
712
+ actor: {
713
+ id: string;
714
+ address: string | null;
715
+ name: string;
716
+ email: string;
717
+ createdAt: Date;
718
+ updatedAt: Date;
719
+ deletedAt: Date | null;
720
+ emailVerifiedAt: Date | null;
721
+ password: string;
722
+ phone: string | null;
723
+ notificationCount: number | null;
724
+ roles: {
725
+ id: string;
726
+ description: string | null;
727
+ createdAt: Date;
728
+ updatedAt: Date;
729
+ deletedAt: Date | null;
730
+ systemName: string;
731
+ displayName: string;
732
+ permissions: {
733
+ id: string;
734
+ description: string | null;
735
+ createdAt: Date;
736
+ updatedAt: Date;
737
+ deletedAt: Date | null;
738
+ systemName: string;
739
+ displayName: string;
740
+ }[];
741
+ }[];
742
+ extension: {
743
+ id: string;
744
+ createdAt: Date;
745
+ updatedAt: Date;
746
+ deletedAt: Date | null;
747
+ userId: string | null;
748
+ sipServerUrl: string;
749
+ sipUserName: string;
750
+ webphoneLoginUser: string;
751
+ extensionId: string | null;
752
+ extensionName: string;
753
+ telephonySignature: string | null;
754
+ };
755
+ };
756
+ readAt: Date;
757
+ actorId: string;
758
+ notificationObjectId: string;
759
+ };
760
+ }>;
22
761
  export declare const NotificationSchema: z.ZodObject<{
762
+ id: z.ZodString;
763
+ createdAt: z.ZodDate;
764
+ updatedAt: z.ZodDate;
765
+ deletedAt: z.ZodNullable<z.ZodDate>;
23
766
  notificationObjectId: z.ZodString;
24
767
  notifierId: z.ZodString;
25
768
  notificationObject: z.ZodObject<{
769
+ id: z.ZodString;
770
+ createdAt: z.ZodDate;
771
+ updatedAt: z.ZodDate;
772
+ deletedAt: z.ZodNullable<z.ZodDate>;
26
773
  data: z.ZodString;
774
+ notificationChange: z.ZodObject<{
775
+ id: z.ZodString;
776
+ createdAt: z.ZodDate;
777
+ updatedAt: z.ZodDate;
778
+ deletedAt: z.ZodNullable<z.ZodDate>;
779
+ actorId: z.ZodString;
780
+ actor: z.ZodObject<{
781
+ id: z.ZodString;
782
+ createdAt: z.ZodDate;
783
+ updatedAt: z.ZodDate;
784
+ deletedAt: z.ZodNullable<z.ZodDate>;
785
+ name: z.ZodString;
786
+ email: z.ZodString;
787
+ emailVerifiedAt: z.ZodNullable<z.ZodDate>;
788
+ password: z.ZodString;
789
+ address: z.ZodNullable<z.ZodString>;
790
+ phone: z.ZodNullable<z.ZodString>;
791
+ notificationCount: z.ZodNullable<z.ZodNumber>;
792
+ roles: z.ZodArray<z.ZodObject<{
793
+ id: z.ZodString;
794
+ createdAt: z.ZodDate;
795
+ updatedAt: z.ZodDate;
796
+ deletedAt: z.ZodNullable<z.ZodDate>;
797
+ systemName: z.ZodString;
798
+ displayName: z.ZodString;
799
+ description: z.ZodNullable<z.ZodString>;
800
+ permissions: z.ZodArray<z.ZodObject<{
801
+ id: z.ZodString;
802
+ createdAt: z.ZodDate;
803
+ updatedAt: z.ZodDate;
804
+ deletedAt: z.ZodNullable<z.ZodDate>;
805
+ systemName: z.ZodString;
806
+ displayName: z.ZodString;
807
+ description: z.ZodNullable<z.ZodString>;
808
+ }, "strip", z.ZodTypeAny, {
809
+ id: string;
810
+ description: string | null;
811
+ createdAt: Date;
812
+ updatedAt: Date;
813
+ deletedAt: Date | null;
814
+ systemName: string;
815
+ displayName: string;
816
+ }, {
817
+ id: string;
818
+ description: string | null;
819
+ createdAt: Date;
820
+ updatedAt: Date;
821
+ deletedAt: Date | null;
822
+ systemName: string;
823
+ displayName: string;
824
+ }>, "many">;
825
+ }, "strip", z.ZodTypeAny, {
826
+ id: string;
827
+ description: string | null;
828
+ createdAt: Date;
829
+ updatedAt: Date;
830
+ deletedAt: Date | null;
831
+ systemName: string;
832
+ displayName: string;
833
+ permissions: {
834
+ id: string;
835
+ description: string | null;
836
+ createdAt: Date;
837
+ updatedAt: Date;
838
+ deletedAt: Date | null;
839
+ systemName: string;
840
+ displayName: string;
841
+ }[];
842
+ }, {
843
+ id: string;
844
+ description: string | null;
845
+ createdAt: Date;
846
+ updatedAt: Date;
847
+ deletedAt: Date | null;
848
+ systemName: string;
849
+ displayName: string;
850
+ permissions: {
851
+ id: string;
852
+ description: string | null;
853
+ createdAt: Date;
854
+ updatedAt: Date;
855
+ deletedAt: Date | null;
856
+ systemName: string;
857
+ displayName: string;
858
+ }[];
859
+ }>, "many">;
860
+ extension: z.ZodObject<{
861
+ id: z.ZodString;
862
+ createdAt: z.ZodDate;
863
+ updatedAt: z.ZodDate;
864
+ deletedAt: z.ZodNullable<z.ZodDate>;
865
+ userId: z.ZodNullable<z.ZodString>;
866
+ sipServerUrl: z.ZodString;
867
+ sipUserName: z.ZodString;
868
+ webphoneLoginUser: z.ZodString;
869
+ extensionId: z.ZodNullable<z.ZodString>;
870
+ extensionName: z.ZodString;
871
+ telephonySignature: z.ZodNullable<z.ZodString>;
872
+ }, "strip", z.ZodTypeAny, {
873
+ id: string;
874
+ createdAt: Date;
875
+ updatedAt: Date;
876
+ deletedAt: Date | null;
877
+ userId: string | null;
878
+ sipServerUrl: string;
879
+ sipUserName: string;
880
+ webphoneLoginUser: string;
881
+ extensionId: string | null;
882
+ extensionName: string;
883
+ telephonySignature: string | null;
884
+ }, {
885
+ id: string;
886
+ createdAt: Date;
887
+ updatedAt: Date;
888
+ deletedAt: Date | null;
889
+ userId: string | null;
890
+ sipServerUrl: string;
891
+ sipUserName: string;
892
+ webphoneLoginUser: string;
893
+ extensionId: string | null;
894
+ extensionName: string;
895
+ telephonySignature: string | null;
896
+ }>;
897
+ }, "strip", z.ZodTypeAny, {
898
+ id: string;
899
+ address: string | null;
900
+ name: string;
901
+ email: string;
902
+ createdAt: Date;
903
+ updatedAt: Date;
904
+ deletedAt: Date | null;
905
+ emailVerifiedAt: Date | null;
906
+ password: string;
907
+ phone: string | null;
908
+ notificationCount: number | null;
909
+ roles: {
910
+ id: string;
911
+ description: string | null;
912
+ createdAt: Date;
913
+ updatedAt: Date;
914
+ deletedAt: Date | null;
915
+ systemName: string;
916
+ displayName: string;
917
+ permissions: {
918
+ id: string;
919
+ description: string | null;
920
+ createdAt: Date;
921
+ updatedAt: Date;
922
+ deletedAt: Date | null;
923
+ systemName: string;
924
+ displayName: string;
925
+ }[];
926
+ }[];
927
+ extension: {
928
+ id: string;
929
+ createdAt: Date;
930
+ updatedAt: Date;
931
+ deletedAt: Date | null;
932
+ userId: string | null;
933
+ sipServerUrl: string;
934
+ sipUserName: string;
935
+ webphoneLoginUser: string;
936
+ extensionId: string | null;
937
+ extensionName: string;
938
+ telephonySignature: string | null;
939
+ };
940
+ }, {
941
+ id: string;
942
+ address: string | null;
943
+ name: string;
944
+ email: string;
945
+ createdAt: Date;
946
+ updatedAt: Date;
947
+ deletedAt: Date | null;
948
+ emailVerifiedAt: Date | null;
949
+ password: string;
950
+ phone: string | null;
951
+ notificationCount: number | null;
952
+ roles: {
953
+ id: string;
954
+ description: string | null;
955
+ createdAt: Date;
956
+ updatedAt: Date;
957
+ deletedAt: Date | null;
958
+ systemName: string;
959
+ displayName: string;
960
+ permissions: {
961
+ id: string;
962
+ description: string | null;
963
+ createdAt: Date;
964
+ updatedAt: Date;
965
+ deletedAt: Date | null;
966
+ systemName: string;
967
+ displayName: string;
968
+ }[];
969
+ }[];
970
+ extension: {
971
+ id: string;
972
+ createdAt: Date;
973
+ updatedAt: Date;
974
+ deletedAt: Date | null;
975
+ userId: string | null;
976
+ sipServerUrl: string;
977
+ sipUserName: string;
978
+ webphoneLoginUser: string;
979
+ extensionId: string | null;
980
+ extensionName: string;
981
+ telephonySignature: string | null;
982
+ };
983
+ }>;
984
+ notificationObjectId: z.ZodString;
985
+ readAt: z.ZodDate;
986
+ }, "strip", z.ZodTypeAny, {
987
+ id: string;
988
+ createdAt: Date;
989
+ updatedAt: Date;
990
+ deletedAt: Date | null;
991
+ actor: {
992
+ id: string;
993
+ address: string | null;
994
+ name: string;
995
+ email: string;
996
+ createdAt: Date;
997
+ updatedAt: Date;
998
+ deletedAt: Date | null;
999
+ emailVerifiedAt: Date | null;
1000
+ password: string;
1001
+ phone: string | null;
1002
+ notificationCount: number | null;
1003
+ roles: {
1004
+ id: string;
1005
+ description: string | null;
1006
+ createdAt: Date;
1007
+ updatedAt: Date;
1008
+ deletedAt: Date | null;
1009
+ systemName: string;
1010
+ displayName: string;
1011
+ permissions: {
1012
+ id: string;
1013
+ description: string | null;
1014
+ createdAt: Date;
1015
+ updatedAt: Date;
1016
+ deletedAt: Date | null;
1017
+ systemName: string;
1018
+ displayName: string;
1019
+ }[];
1020
+ }[];
1021
+ extension: {
1022
+ id: string;
1023
+ createdAt: Date;
1024
+ updatedAt: Date;
1025
+ deletedAt: Date | null;
1026
+ userId: string | null;
1027
+ sipServerUrl: string;
1028
+ sipUserName: string;
1029
+ webphoneLoginUser: string;
1030
+ extensionId: string | null;
1031
+ extensionName: string;
1032
+ telephonySignature: string | null;
1033
+ };
1034
+ };
1035
+ readAt: Date;
1036
+ actorId: string;
1037
+ notificationObjectId: string;
1038
+ }, {
1039
+ id: string;
1040
+ createdAt: Date;
1041
+ updatedAt: Date;
1042
+ deletedAt: Date | null;
1043
+ actor: {
1044
+ id: string;
1045
+ address: string | null;
1046
+ name: string;
1047
+ email: string;
1048
+ createdAt: Date;
1049
+ updatedAt: Date;
1050
+ deletedAt: Date | null;
1051
+ emailVerifiedAt: Date | null;
1052
+ password: string;
1053
+ phone: string | null;
1054
+ notificationCount: number | null;
1055
+ roles: {
1056
+ id: string;
1057
+ description: string | null;
1058
+ createdAt: Date;
1059
+ updatedAt: Date;
1060
+ deletedAt: Date | null;
1061
+ systemName: string;
1062
+ displayName: string;
1063
+ permissions: {
1064
+ id: string;
1065
+ description: string | null;
1066
+ createdAt: Date;
1067
+ updatedAt: Date;
1068
+ deletedAt: Date | null;
1069
+ systemName: string;
1070
+ displayName: string;
1071
+ }[];
1072
+ }[];
1073
+ extension: {
1074
+ id: string;
1075
+ createdAt: Date;
1076
+ updatedAt: Date;
1077
+ deletedAt: Date | null;
1078
+ userId: string | null;
1079
+ sipServerUrl: string;
1080
+ sipUserName: string;
1081
+ webphoneLoginUser: string;
1082
+ extensionId: string | null;
1083
+ extensionName: string;
1084
+ telephonySignature: string | null;
1085
+ };
1086
+ };
1087
+ readAt: Date;
1088
+ actorId: string;
1089
+ notificationObjectId: string;
1090
+ }>;
27
1091
  }, "strip", z.ZodTypeAny, {
28
1092
  data: string;
1093
+ id: string;
1094
+ createdAt: Date;
1095
+ updatedAt: Date;
1096
+ deletedAt: Date | null;
1097
+ notificationChange: {
1098
+ id: string;
1099
+ createdAt: Date;
1100
+ updatedAt: Date;
1101
+ deletedAt: Date | null;
1102
+ actor: {
1103
+ id: string;
1104
+ address: string | null;
1105
+ name: string;
1106
+ email: string;
1107
+ createdAt: Date;
1108
+ updatedAt: Date;
1109
+ deletedAt: Date | null;
1110
+ emailVerifiedAt: Date | null;
1111
+ password: string;
1112
+ phone: string | null;
1113
+ notificationCount: number | null;
1114
+ roles: {
1115
+ id: string;
1116
+ description: string | null;
1117
+ createdAt: Date;
1118
+ updatedAt: Date;
1119
+ deletedAt: Date | null;
1120
+ systemName: string;
1121
+ displayName: string;
1122
+ permissions: {
1123
+ id: string;
1124
+ description: string | null;
1125
+ createdAt: Date;
1126
+ updatedAt: Date;
1127
+ deletedAt: Date | null;
1128
+ systemName: string;
1129
+ displayName: string;
1130
+ }[];
1131
+ }[];
1132
+ extension: {
1133
+ id: string;
1134
+ createdAt: Date;
1135
+ updatedAt: Date;
1136
+ deletedAt: Date | null;
1137
+ userId: string | null;
1138
+ sipServerUrl: string;
1139
+ sipUserName: string;
1140
+ webphoneLoginUser: string;
1141
+ extensionId: string | null;
1142
+ extensionName: string;
1143
+ telephonySignature: string | null;
1144
+ };
1145
+ };
1146
+ readAt: Date;
1147
+ actorId: string;
1148
+ notificationObjectId: string;
1149
+ };
29
1150
  }, {
30
1151
  data: string;
1152
+ id: string;
1153
+ createdAt: Date;
1154
+ updatedAt: Date;
1155
+ deletedAt: Date | null;
1156
+ notificationChange: {
1157
+ id: string;
1158
+ createdAt: Date;
1159
+ updatedAt: Date;
1160
+ deletedAt: Date | null;
1161
+ actor: {
1162
+ id: string;
1163
+ address: string | null;
1164
+ name: string;
1165
+ email: string;
1166
+ createdAt: Date;
1167
+ updatedAt: Date;
1168
+ deletedAt: Date | null;
1169
+ emailVerifiedAt: Date | null;
1170
+ password: string;
1171
+ phone: string | null;
1172
+ notificationCount: number | null;
1173
+ roles: {
1174
+ id: string;
1175
+ description: string | null;
1176
+ createdAt: Date;
1177
+ updatedAt: Date;
1178
+ deletedAt: Date | null;
1179
+ systemName: string;
1180
+ displayName: string;
1181
+ permissions: {
1182
+ id: string;
1183
+ description: string | null;
1184
+ createdAt: Date;
1185
+ updatedAt: Date;
1186
+ deletedAt: Date | null;
1187
+ systemName: string;
1188
+ displayName: string;
1189
+ }[];
1190
+ }[];
1191
+ extension: {
1192
+ id: string;
1193
+ createdAt: Date;
1194
+ updatedAt: Date;
1195
+ deletedAt: Date | null;
1196
+ userId: string | null;
1197
+ sipServerUrl: string;
1198
+ sipUserName: string;
1199
+ webphoneLoginUser: string;
1200
+ extensionId: string | null;
1201
+ extensionName: string;
1202
+ telephonySignature: string | null;
1203
+ };
1204
+ };
1205
+ readAt: Date;
1206
+ actorId: string;
1207
+ notificationObjectId: string;
1208
+ };
31
1209
  }>;
32
1210
  readAt: z.ZodDate;
33
1211
  }, "strip", z.ZodTypeAny, {
1212
+ id: string;
1213
+ createdAt: Date;
1214
+ updatedAt: Date;
1215
+ deletedAt: Date | null;
34
1216
  readAt: Date;
35
1217
  notificationObjectId: string;
36
1218
  notifierId: string;
37
1219
  notificationObject: {
38
1220
  data: string;
1221
+ id: string;
1222
+ createdAt: Date;
1223
+ updatedAt: Date;
1224
+ deletedAt: Date | null;
1225
+ notificationChange: {
1226
+ id: string;
1227
+ createdAt: Date;
1228
+ updatedAt: Date;
1229
+ deletedAt: Date | null;
1230
+ actor: {
1231
+ id: string;
1232
+ address: string | null;
1233
+ name: string;
1234
+ email: string;
1235
+ createdAt: Date;
1236
+ updatedAt: Date;
1237
+ deletedAt: Date | null;
1238
+ emailVerifiedAt: Date | null;
1239
+ password: string;
1240
+ phone: string | null;
1241
+ notificationCount: number | null;
1242
+ roles: {
1243
+ id: string;
1244
+ description: string | null;
1245
+ createdAt: Date;
1246
+ updatedAt: Date;
1247
+ deletedAt: Date | null;
1248
+ systemName: string;
1249
+ displayName: string;
1250
+ permissions: {
1251
+ id: string;
1252
+ description: string | null;
1253
+ createdAt: Date;
1254
+ updatedAt: Date;
1255
+ deletedAt: Date | null;
1256
+ systemName: string;
1257
+ displayName: string;
1258
+ }[];
1259
+ }[];
1260
+ extension: {
1261
+ id: string;
1262
+ createdAt: Date;
1263
+ updatedAt: Date;
1264
+ deletedAt: Date | null;
1265
+ userId: string | null;
1266
+ sipServerUrl: string;
1267
+ sipUserName: string;
1268
+ webphoneLoginUser: string;
1269
+ extensionId: string | null;
1270
+ extensionName: string;
1271
+ telephonySignature: string | null;
1272
+ };
1273
+ };
1274
+ readAt: Date;
1275
+ actorId: string;
1276
+ notificationObjectId: string;
1277
+ };
39
1278
  };
40
1279
  }, {
1280
+ id: string;
1281
+ createdAt: Date;
1282
+ updatedAt: Date;
1283
+ deletedAt: Date | null;
41
1284
  readAt: Date;
42
1285
  notificationObjectId: string;
43
1286
  notifierId: string;
44
1287
  notificationObject: {
45
1288
  data: string;
1289
+ id: string;
1290
+ createdAt: Date;
1291
+ updatedAt: Date;
1292
+ deletedAt: Date | null;
1293
+ notificationChange: {
1294
+ id: string;
1295
+ createdAt: Date;
1296
+ updatedAt: Date;
1297
+ deletedAt: Date | null;
1298
+ actor: {
1299
+ id: string;
1300
+ address: string | null;
1301
+ name: string;
1302
+ email: string;
1303
+ createdAt: Date;
1304
+ updatedAt: Date;
1305
+ deletedAt: Date | null;
1306
+ emailVerifiedAt: Date | null;
1307
+ password: string;
1308
+ phone: string | null;
1309
+ notificationCount: number | null;
1310
+ roles: {
1311
+ id: string;
1312
+ description: string | null;
1313
+ createdAt: Date;
1314
+ updatedAt: Date;
1315
+ deletedAt: Date | null;
1316
+ systemName: string;
1317
+ displayName: string;
1318
+ permissions: {
1319
+ id: string;
1320
+ description: string | null;
1321
+ createdAt: Date;
1322
+ updatedAt: Date;
1323
+ deletedAt: Date | null;
1324
+ systemName: string;
1325
+ displayName: string;
1326
+ }[];
1327
+ }[];
1328
+ extension: {
1329
+ id: string;
1330
+ createdAt: Date;
1331
+ updatedAt: Date;
1332
+ deletedAt: Date | null;
1333
+ userId: string | null;
1334
+ sipServerUrl: string;
1335
+ sipUserName: string;
1336
+ webphoneLoginUser: string;
1337
+ extensionId: string | null;
1338
+ extensionName: string;
1339
+ telephonySignature: string | null;
1340
+ };
1341
+ };
1342
+ readAt: Date;
1343
+ actorId: string;
1344
+ notificationObjectId: string;
1345
+ };
46
1346
  };
47
1347
  }>;
48
1348
  //# sourceMappingURL=schema.d.ts.map