@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.
- package/dist/index.js +20 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -4
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +1795 -185
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/notification/index.d.ts +1619 -5
- package/dist/src/notification/index.d.ts.map +1 -1
- package/dist/src/notification/schema.d.ts +1307 -7
- package/dist/src/notification/schema.d.ts.map +1 -1
- package/dist/src/notification/validation.d.ts +805 -0
- package/dist/src/notification/validation.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -166223,44 +166223,605 @@ export declare const notificationContract: {
|
|
166223
166223
|
responses: {
|
166224
166224
|
201: import("zod").ZodObject<{
|
166225
166225
|
requestId: import("zod").ZodString;
|
166226
|
-
|
166226
|
+
data: import("zod").ZodObject<{
|
166227
166227
|
notificationCount: import("zod").ZodNumber;
|
166228
166228
|
notifications: import("zod").ZodObject<{
|
166229
166229
|
data: import("zod").ZodArray<import("zod").ZodObject<{
|
166230
|
+
id: import("zod").ZodString;
|
166231
|
+
createdAt: import("zod").ZodDate;
|
166232
|
+
updatedAt: import("zod").ZodDate;
|
166233
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
166230
166234
|
notificationObjectId: import("zod").ZodString;
|
166231
166235
|
notifierId: import("zod").ZodString;
|
166232
166236
|
notificationObject: import("zod").ZodObject<{
|
166237
|
+
id: import("zod").ZodString;
|
166238
|
+
createdAt: import("zod").ZodDate;
|
166239
|
+
updatedAt: import("zod").ZodDate;
|
166240
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
166233
166241
|
data: import("zod").ZodString;
|
166242
|
+
notificationChange: import("zod").ZodObject<{
|
166243
|
+
id: import("zod").ZodString;
|
166244
|
+
createdAt: import("zod").ZodDate;
|
166245
|
+
updatedAt: import("zod").ZodDate;
|
166246
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
166247
|
+
actorId: import("zod").ZodString;
|
166248
|
+
actor: import("zod").ZodObject<{
|
166249
|
+
id: import("zod").ZodString;
|
166250
|
+
createdAt: import("zod").ZodDate;
|
166251
|
+
updatedAt: import("zod").ZodDate;
|
166252
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
166253
|
+
name: import("zod").ZodString;
|
166254
|
+
email: import("zod").ZodString;
|
166255
|
+
emailVerifiedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
166256
|
+
password: import("zod").ZodString;
|
166257
|
+
address: import("zod").ZodNullable<import("zod").ZodString>;
|
166258
|
+
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
166259
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
166260
|
+
roles: import("zod").ZodArray<import("zod").ZodObject<{
|
166261
|
+
id: import("zod").ZodString;
|
166262
|
+
createdAt: import("zod").ZodDate;
|
166263
|
+
updatedAt: import("zod").ZodDate;
|
166264
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
166265
|
+
systemName: import("zod").ZodString;
|
166266
|
+
displayName: import("zod").ZodString;
|
166267
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
166268
|
+
permissions: import("zod").ZodArray<import("zod").ZodObject<{
|
166269
|
+
id: import("zod").ZodString;
|
166270
|
+
createdAt: import("zod").ZodDate;
|
166271
|
+
updatedAt: import("zod").ZodDate;
|
166272
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
166273
|
+
systemName: import("zod").ZodString;
|
166274
|
+
displayName: import("zod").ZodString;
|
166275
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
166276
|
+
}, "strip", import("zod").ZodTypeAny, {
|
166277
|
+
id: string;
|
166278
|
+
description: string | null;
|
166279
|
+
createdAt: Date;
|
166280
|
+
updatedAt: Date;
|
166281
|
+
deletedAt: Date | null;
|
166282
|
+
systemName: string;
|
166283
|
+
displayName: string;
|
166284
|
+
}, {
|
166285
|
+
id: string;
|
166286
|
+
description: string | null;
|
166287
|
+
createdAt: Date;
|
166288
|
+
updatedAt: Date;
|
166289
|
+
deletedAt: Date | null;
|
166290
|
+
systemName: string;
|
166291
|
+
displayName: string;
|
166292
|
+
}>, "many">;
|
166293
|
+
}, "strip", import("zod").ZodTypeAny, {
|
166294
|
+
id: string;
|
166295
|
+
description: string | null;
|
166296
|
+
createdAt: Date;
|
166297
|
+
updatedAt: Date;
|
166298
|
+
deletedAt: Date | null;
|
166299
|
+
systemName: string;
|
166300
|
+
displayName: string;
|
166301
|
+
permissions: {
|
166302
|
+
id: string;
|
166303
|
+
description: string | null;
|
166304
|
+
createdAt: Date;
|
166305
|
+
updatedAt: Date;
|
166306
|
+
deletedAt: Date | null;
|
166307
|
+
systemName: string;
|
166308
|
+
displayName: string;
|
166309
|
+
}[];
|
166310
|
+
}, {
|
166311
|
+
id: string;
|
166312
|
+
description: string | null;
|
166313
|
+
createdAt: Date;
|
166314
|
+
updatedAt: Date;
|
166315
|
+
deletedAt: Date | null;
|
166316
|
+
systemName: string;
|
166317
|
+
displayName: string;
|
166318
|
+
permissions: {
|
166319
|
+
id: string;
|
166320
|
+
description: string | null;
|
166321
|
+
createdAt: Date;
|
166322
|
+
updatedAt: Date;
|
166323
|
+
deletedAt: Date | null;
|
166324
|
+
systemName: string;
|
166325
|
+
displayName: string;
|
166326
|
+
}[];
|
166327
|
+
}>, "many">;
|
166328
|
+
extension: import("zod").ZodObject<{
|
166329
|
+
id: import("zod").ZodString;
|
166330
|
+
createdAt: import("zod").ZodDate;
|
166331
|
+
updatedAt: import("zod").ZodDate;
|
166332
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
166333
|
+
userId: import("zod").ZodNullable<import("zod").ZodString>;
|
166334
|
+
sipServerUrl: import("zod").ZodString;
|
166335
|
+
sipUserName: import("zod").ZodString;
|
166336
|
+
webphoneLoginUser: import("zod").ZodString;
|
166337
|
+
extensionId: import("zod").ZodNullable<import("zod").ZodString>;
|
166338
|
+
extensionName: import("zod").ZodString;
|
166339
|
+
telephonySignature: import("zod").ZodNullable<import("zod").ZodString>;
|
166340
|
+
}, "strip", import("zod").ZodTypeAny, {
|
166341
|
+
id: string;
|
166342
|
+
createdAt: Date;
|
166343
|
+
updatedAt: Date;
|
166344
|
+
deletedAt: Date | null;
|
166345
|
+
userId: string | null;
|
166346
|
+
sipServerUrl: string;
|
166347
|
+
sipUserName: string;
|
166348
|
+
webphoneLoginUser: string;
|
166349
|
+
extensionId: string | null;
|
166350
|
+
extensionName: string;
|
166351
|
+
telephonySignature: string | null;
|
166352
|
+
}, {
|
166353
|
+
id: string;
|
166354
|
+
createdAt: Date;
|
166355
|
+
updatedAt: Date;
|
166356
|
+
deletedAt: Date | null;
|
166357
|
+
userId: string | null;
|
166358
|
+
sipServerUrl: string;
|
166359
|
+
sipUserName: string;
|
166360
|
+
webphoneLoginUser: string;
|
166361
|
+
extensionId: string | null;
|
166362
|
+
extensionName: string;
|
166363
|
+
telephonySignature: string | null;
|
166364
|
+
}>;
|
166365
|
+
}, "strip", import("zod").ZodTypeAny, {
|
166366
|
+
id: string;
|
166367
|
+
address: string | null;
|
166368
|
+
name: string;
|
166369
|
+
email: string;
|
166370
|
+
createdAt: Date;
|
166371
|
+
updatedAt: Date;
|
166372
|
+
deletedAt: Date | null;
|
166373
|
+
emailVerifiedAt: Date | null;
|
166374
|
+
password: string;
|
166375
|
+
phone: string | null;
|
166376
|
+
notificationCount: number | null;
|
166377
|
+
roles: {
|
166378
|
+
id: string;
|
166379
|
+
description: string | null;
|
166380
|
+
createdAt: Date;
|
166381
|
+
updatedAt: Date;
|
166382
|
+
deletedAt: Date | null;
|
166383
|
+
systemName: string;
|
166384
|
+
displayName: string;
|
166385
|
+
permissions: {
|
166386
|
+
id: string;
|
166387
|
+
description: string | null;
|
166388
|
+
createdAt: Date;
|
166389
|
+
updatedAt: Date;
|
166390
|
+
deletedAt: Date | null;
|
166391
|
+
systemName: string;
|
166392
|
+
displayName: string;
|
166393
|
+
}[];
|
166394
|
+
}[];
|
166395
|
+
extension: {
|
166396
|
+
id: string;
|
166397
|
+
createdAt: Date;
|
166398
|
+
updatedAt: Date;
|
166399
|
+
deletedAt: Date | null;
|
166400
|
+
userId: string | null;
|
166401
|
+
sipServerUrl: string;
|
166402
|
+
sipUserName: string;
|
166403
|
+
webphoneLoginUser: string;
|
166404
|
+
extensionId: string | null;
|
166405
|
+
extensionName: string;
|
166406
|
+
telephonySignature: string | null;
|
166407
|
+
};
|
166408
|
+
}, {
|
166409
|
+
id: string;
|
166410
|
+
address: string | null;
|
166411
|
+
name: string;
|
166412
|
+
email: string;
|
166413
|
+
createdAt: Date;
|
166414
|
+
updatedAt: Date;
|
166415
|
+
deletedAt: Date | null;
|
166416
|
+
emailVerifiedAt: Date | null;
|
166417
|
+
password: string;
|
166418
|
+
phone: string | null;
|
166419
|
+
notificationCount: number | null;
|
166420
|
+
roles: {
|
166421
|
+
id: string;
|
166422
|
+
description: string | null;
|
166423
|
+
createdAt: Date;
|
166424
|
+
updatedAt: Date;
|
166425
|
+
deletedAt: Date | null;
|
166426
|
+
systemName: string;
|
166427
|
+
displayName: string;
|
166428
|
+
permissions: {
|
166429
|
+
id: string;
|
166430
|
+
description: string | null;
|
166431
|
+
createdAt: Date;
|
166432
|
+
updatedAt: Date;
|
166433
|
+
deletedAt: Date | null;
|
166434
|
+
systemName: string;
|
166435
|
+
displayName: string;
|
166436
|
+
}[];
|
166437
|
+
}[];
|
166438
|
+
extension: {
|
166439
|
+
id: string;
|
166440
|
+
createdAt: Date;
|
166441
|
+
updatedAt: Date;
|
166442
|
+
deletedAt: Date | null;
|
166443
|
+
userId: string | null;
|
166444
|
+
sipServerUrl: string;
|
166445
|
+
sipUserName: string;
|
166446
|
+
webphoneLoginUser: string;
|
166447
|
+
extensionId: string | null;
|
166448
|
+
extensionName: string;
|
166449
|
+
telephonySignature: string | null;
|
166450
|
+
};
|
166451
|
+
}>;
|
166452
|
+
notificationObjectId: import("zod").ZodString;
|
166453
|
+
readAt: import("zod").ZodDate;
|
166454
|
+
}, "strip", import("zod").ZodTypeAny, {
|
166455
|
+
id: string;
|
166456
|
+
createdAt: Date;
|
166457
|
+
updatedAt: Date;
|
166458
|
+
deletedAt: Date | null;
|
166459
|
+
actor: {
|
166460
|
+
id: string;
|
166461
|
+
address: string | null;
|
166462
|
+
name: string;
|
166463
|
+
email: string;
|
166464
|
+
createdAt: Date;
|
166465
|
+
updatedAt: Date;
|
166466
|
+
deletedAt: Date | null;
|
166467
|
+
emailVerifiedAt: Date | null;
|
166468
|
+
password: string;
|
166469
|
+
phone: string | null;
|
166470
|
+
notificationCount: number | null;
|
166471
|
+
roles: {
|
166472
|
+
id: string;
|
166473
|
+
description: string | null;
|
166474
|
+
createdAt: Date;
|
166475
|
+
updatedAt: Date;
|
166476
|
+
deletedAt: Date | null;
|
166477
|
+
systemName: string;
|
166478
|
+
displayName: string;
|
166479
|
+
permissions: {
|
166480
|
+
id: string;
|
166481
|
+
description: string | null;
|
166482
|
+
createdAt: Date;
|
166483
|
+
updatedAt: Date;
|
166484
|
+
deletedAt: Date | null;
|
166485
|
+
systemName: string;
|
166486
|
+
displayName: string;
|
166487
|
+
}[];
|
166488
|
+
}[];
|
166489
|
+
extension: {
|
166490
|
+
id: string;
|
166491
|
+
createdAt: Date;
|
166492
|
+
updatedAt: Date;
|
166493
|
+
deletedAt: Date | null;
|
166494
|
+
userId: string | null;
|
166495
|
+
sipServerUrl: string;
|
166496
|
+
sipUserName: string;
|
166497
|
+
webphoneLoginUser: string;
|
166498
|
+
extensionId: string | null;
|
166499
|
+
extensionName: string;
|
166500
|
+
telephonySignature: string | null;
|
166501
|
+
};
|
166502
|
+
};
|
166503
|
+
readAt: Date;
|
166504
|
+
actorId: string;
|
166505
|
+
notificationObjectId: string;
|
166506
|
+
}, {
|
166507
|
+
id: string;
|
166508
|
+
createdAt: Date;
|
166509
|
+
updatedAt: Date;
|
166510
|
+
deletedAt: Date | null;
|
166511
|
+
actor: {
|
166512
|
+
id: string;
|
166513
|
+
address: string | null;
|
166514
|
+
name: string;
|
166515
|
+
email: string;
|
166516
|
+
createdAt: Date;
|
166517
|
+
updatedAt: Date;
|
166518
|
+
deletedAt: Date | null;
|
166519
|
+
emailVerifiedAt: Date | null;
|
166520
|
+
password: string;
|
166521
|
+
phone: string | null;
|
166522
|
+
notificationCount: number | null;
|
166523
|
+
roles: {
|
166524
|
+
id: string;
|
166525
|
+
description: string | null;
|
166526
|
+
createdAt: Date;
|
166527
|
+
updatedAt: Date;
|
166528
|
+
deletedAt: Date | null;
|
166529
|
+
systemName: string;
|
166530
|
+
displayName: string;
|
166531
|
+
permissions: {
|
166532
|
+
id: string;
|
166533
|
+
description: string | null;
|
166534
|
+
createdAt: Date;
|
166535
|
+
updatedAt: Date;
|
166536
|
+
deletedAt: Date | null;
|
166537
|
+
systemName: string;
|
166538
|
+
displayName: string;
|
166539
|
+
}[];
|
166540
|
+
}[];
|
166541
|
+
extension: {
|
166542
|
+
id: string;
|
166543
|
+
createdAt: Date;
|
166544
|
+
updatedAt: Date;
|
166545
|
+
deletedAt: Date | null;
|
166546
|
+
userId: string | null;
|
166547
|
+
sipServerUrl: string;
|
166548
|
+
sipUserName: string;
|
166549
|
+
webphoneLoginUser: string;
|
166550
|
+
extensionId: string | null;
|
166551
|
+
extensionName: string;
|
166552
|
+
telephonySignature: string | null;
|
166553
|
+
};
|
166554
|
+
};
|
166555
|
+
readAt: Date;
|
166556
|
+
actorId: string;
|
166557
|
+
notificationObjectId: string;
|
166558
|
+
}>;
|
166234
166559
|
}, "strip", import("zod").ZodTypeAny, {
|
166235
166560
|
data: string;
|
166561
|
+
id: string;
|
166562
|
+
createdAt: Date;
|
166563
|
+
updatedAt: Date;
|
166564
|
+
deletedAt: Date | null;
|
166565
|
+
notificationChange: {
|
166566
|
+
id: string;
|
166567
|
+
createdAt: Date;
|
166568
|
+
updatedAt: Date;
|
166569
|
+
deletedAt: Date | null;
|
166570
|
+
actor: {
|
166571
|
+
id: string;
|
166572
|
+
address: string | null;
|
166573
|
+
name: string;
|
166574
|
+
email: string;
|
166575
|
+
createdAt: Date;
|
166576
|
+
updatedAt: Date;
|
166577
|
+
deletedAt: Date | null;
|
166578
|
+
emailVerifiedAt: Date | null;
|
166579
|
+
password: string;
|
166580
|
+
phone: string | null;
|
166581
|
+
notificationCount: number | null;
|
166582
|
+
roles: {
|
166583
|
+
id: string;
|
166584
|
+
description: string | null;
|
166585
|
+
createdAt: Date;
|
166586
|
+
updatedAt: Date;
|
166587
|
+
deletedAt: Date | null;
|
166588
|
+
systemName: string;
|
166589
|
+
displayName: string;
|
166590
|
+
permissions: {
|
166591
|
+
id: string;
|
166592
|
+
description: string | null;
|
166593
|
+
createdAt: Date;
|
166594
|
+
updatedAt: Date;
|
166595
|
+
deletedAt: Date | null;
|
166596
|
+
systemName: string;
|
166597
|
+
displayName: string;
|
166598
|
+
}[];
|
166599
|
+
}[];
|
166600
|
+
extension: {
|
166601
|
+
id: string;
|
166602
|
+
createdAt: Date;
|
166603
|
+
updatedAt: Date;
|
166604
|
+
deletedAt: Date | null;
|
166605
|
+
userId: string | null;
|
166606
|
+
sipServerUrl: string;
|
166607
|
+
sipUserName: string;
|
166608
|
+
webphoneLoginUser: string;
|
166609
|
+
extensionId: string | null;
|
166610
|
+
extensionName: string;
|
166611
|
+
telephonySignature: string | null;
|
166612
|
+
};
|
166613
|
+
};
|
166614
|
+
readAt: Date;
|
166615
|
+
actorId: string;
|
166616
|
+
notificationObjectId: string;
|
166617
|
+
};
|
166236
166618
|
}, {
|
166237
166619
|
data: string;
|
166238
|
-
|
166239
|
-
|
166240
|
-
|
166241
|
-
|
166242
|
-
|
166243
|
-
|
166244
|
-
|
166245
|
-
|
166246
|
-
|
166247
|
-
|
166248
|
-
|
166249
|
-
|
166250
|
-
|
166251
|
-
|
166252
|
-
|
166253
|
-
|
166254
|
-
|
166255
|
-
|
166256
|
-
|
166257
|
-
|
166258
|
-
|
166259
|
-
|
166260
|
-
|
166261
|
-
|
166262
|
-
|
166263
|
-
|
166620
|
+
id: string;
|
166621
|
+
createdAt: Date;
|
166622
|
+
updatedAt: Date;
|
166623
|
+
deletedAt: Date | null;
|
166624
|
+
notificationChange: {
|
166625
|
+
id: string;
|
166626
|
+
createdAt: Date;
|
166627
|
+
updatedAt: Date;
|
166628
|
+
deletedAt: Date | null;
|
166629
|
+
actor: {
|
166630
|
+
id: string;
|
166631
|
+
address: string | null;
|
166632
|
+
name: string;
|
166633
|
+
email: string;
|
166634
|
+
createdAt: Date;
|
166635
|
+
updatedAt: Date;
|
166636
|
+
deletedAt: Date | null;
|
166637
|
+
emailVerifiedAt: Date | null;
|
166638
|
+
password: string;
|
166639
|
+
phone: string | null;
|
166640
|
+
notificationCount: number | null;
|
166641
|
+
roles: {
|
166642
|
+
id: string;
|
166643
|
+
description: string | null;
|
166644
|
+
createdAt: Date;
|
166645
|
+
updatedAt: Date;
|
166646
|
+
deletedAt: Date | null;
|
166647
|
+
systemName: string;
|
166648
|
+
displayName: string;
|
166649
|
+
permissions: {
|
166650
|
+
id: string;
|
166651
|
+
description: string | null;
|
166652
|
+
createdAt: Date;
|
166653
|
+
updatedAt: Date;
|
166654
|
+
deletedAt: Date | null;
|
166655
|
+
systemName: string;
|
166656
|
+
displayName: string;
|
166657
|
+
}[];
|
166658
|
+
}[];
|
166659
|
+
extension: {
|
166660
|
+
id: string;
|
166661
|
+
createdAt: Date;
|
166662
|
+
updatedAt: Date;
|
166663
|
+
deletedAt: Date | null;
|
166664
|
+
userId: string | null;
|
166665
|
+
sipServerUrl: string;
|
166666
|
+
sipUserName: string;
|
166667
|
+
webphoneLoginUser: string;
|
166668
|
+
extensionId: string | null;
|
166669
|
+
extensionName: string;
|
166670
|
+
telephonySignature: string | null;
|
166671
|
+
};
|
166672
|
+
};
|
166673
|
+
readAt: Date;
|
166674
|
+
actorId: string;
|
166675
|
+
notificationObjectId: string;
|
166676
|
+
};
|
166677
|
+
}>;
|
166678
|
+
readAt: import("zod").ZodDate;
|
166679
|
+
}, "strip", import("zod").ZodTypeAny, {
|
166680
|
+
id: string;
|
166681
|
+
createdAt: Date;
|
166682
|
+
updatedAt: Date;
|
166683
|
+
deletedAt: Date | null;
|
166684
|
+
readAt: Date;
|
166685
|
+
notificationObjectId: string;
|
166686
|
+
notifierId: string;
|
166687
|
+
notificationObject: {
|
166688
|
+
data: string;
|
166689
|
+
id: string;
|
166690
|
+
createdAt: Date;
|
166691
|
+
updatedAt: Date;
|
166692
|
+
deletedAt: Date | null;
|
166693
|
+
notificationChange: {
|
166694
|
+
id: string;
|
166695
|
+
createdAt: Date;
|
166696
|
+
updatedAt: Date;
|
166697
|
+
deletedAt: Date | null;
|
166698
|
+
actor: {
|
166699
|
+
id: string;
|
166700
|
+
address: string | null;
|
166701
|
+
name: string;
|
166702
|
+
email: string;
|
166703
|
+
createdAt: Date;
|
166704
|
+
updatedAt: Date;
|
166705
|
+
deletedAt: Date | null;
|
166706
|
+
emailVerifiedAt: Date | null;
|
166707
|
+
password: string;
|
166708
|
+
phone: string | null;
|
166709
|
+
notificationCount: number | null;
|
166710
|
+
roles: {
|
166711
|
+
id: string;
|
166712
|
+
description: string | null;
|
166713
|
+
createdAt: Date;
|
166714
|
+
updatedAt: Date;
|
166715
|
+
deletedAt: Date | null;
|
166716
|
+
systemName: string;
|
166717
|
+
displayName: string;
|
166718
|
+
permissions: {
|
166719
|
+
id: string;
|
166720
|
+
description: string | null;
|
166721
|
+
createdAt: Date;
|
166722
|
+
updatedAt: Date;
|
166723
|
+
deletedAt: Date | null;
|
166724
|
+
systemName: string;
|
166725
|
+
displayName: string;
|
166726
|
+
}[];
|
166727
|
+
}[];
|
166728
|
+
extension: {
|
166729
|
+
id: string;
|
166730
|
+
createdAt: Date;
|
166731
|
+
updatedAt: Date;
|
166732
|
+
deletedAt: Date | null;
|
166733
|
+
userId: string | null;
|
166734
|
+
sipServerUrl: string;
|
166735
|
+
sipUserName: string;
|
166736
|
+
webphoneLoginUser: string;
|
166737
|
+
extensionId: string | null;
|
166738
|
+
extensionName: string;
|
166739
|
+
telephonySignature: string | null;
|
166740
|
+
};
|
166741
|
+
};
|
166742
|
+
readAt: Date;
|
166743
|
+
actorId: string;
|
166744
|
+
notificationObjectId: string;
|
166745
|
+
};
|
166746
|
+
};
|
166747
|
+
}, {
|
166748
|
+
id: string;
|
166749
|
+
createdAt: Date;
|
166750
|
+
updatedAt: Date;
|
166751
|
+
deletedAt: Date | null;
|
166752
|
+
readAt: Date;
|
166753
|
+
notificationObjectId: string;
|
166754
|
+
notifierId: string;
|
166755
|
+
notificationObject: {
|
166756
|
+
data: string;
|
166757
|
+
id: string;
|
166758
|
+
createdAt: Date;
|
166759
|
+
updatedAt: Date;
|
166760
|
+
deletedAt: Date | null;
|
166761
|
+
notificationChange: {
|
166762
|
+
id: string;
|
166763
|
+
createdAt: Date;
|
166764
|
+
updatedAt: Date;
|
166765
|
+
deletedAt: Date | null;
|
166766
|
+
actor: {
|
166767
|
+
id: string;
|
166768
|
+
address: string | null;
|
166769
|
+
name: string;
|
166770
|
+
email: string;
|
166771
|
+
createdAt: Date;
|
166772
|
+
updatedAt: Date;
|
166773
|
+
deletedAt: Date | null;
|
166774
|
+
emailVerifiedAt: Date | null;
|
166775
|
+
password: string;
|
166776
|
+
phone: string | null;
|
166777
|
+
notificationCount: number | null;
|
166778
|
+
roles: {
|
166779
|
+
id: string;
|
166780
|
+
description: string | null;
|
166781
|
+
createdAt: Date;
|
166782
|
+
updatedAt: Date;
|
166783
|
+
deletedAt: Date | null;
|
166784
|
+
systemName: string;
|
166785
|
+
displayName: string;
|
166786
|
+
permissions: {
|
166787
|
+
id: string;
|
166788
|
+
description: string | null;
|
166789
|
+
createdAt: Date;
|
166790
|
+
updatedAt: Date;
|
166791
|
+
deletedAt: Date | null;
|
166792
|
+
systemName: string;
|
166793
|
+
displayName: string;
|
166794
|
+
}[];
|
166795
|
+
}[];
|
166796
|
+
extension: {
|
166797
|
+
id: string;
|
166798
|
+
createdAt: Date;
|
166799
|
+
updatedAt: Date;
|
166800
|
+
deletedAt: Date | null;
|
166801
|
+
userId: string | null;
|
166802
|
+
sipServerUrl: string;
|
166803
|
+
sipUserName: string;
|
166804
|
+
webphoneLoginUser: string;
|
166805
|
+
extensionId: string | null;
|
166806
|
+
extensionName: string;
|
166807
|
+
telephonySignature: string | null;
|
166808
|
+
};
|
166809
|
+
};
|
166810
|
+
readAt: Date;
|
166811
|
+
actorId: string;
|
166812
|
+
notificationObjectId: string;
|
166813
|
+
};
|
166814
|
+
};
|
166815
|
+
}>, "many">;
|
166816
|
+
total: import("zod").ZodNumber;
|
166817
|
+
page: import("zod").ZodNumber;
|
166818
|
+
pageSize: import("zod").ZodNumber;
|
166819
|
+
lastPage: import("zod").ZodNumber;
|
166820
|
+
totalUnreadCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
166821
|
+
unreadRoomCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
166822
|
+
unreadCountsByAssigneeList: import("zod").ZodArray<import("zod").ZodObject<{
|
166823
|
+
assigneeId: import("zod").ZodOptional<import("zod").ZodString>;
|
166824
|
+
totalUnreadCount: import("zod").ZodOptional<import("zod").ZodString>;
|
166264
166825
|
}, "strip", import("zod").ZodTypeAny, {
|
166265
166826
|
assigneeId?: string | undefined;
|
166266
166827
|
totalUnreadCount?: string | undefined;
|
@@ -166270,11 +166831,72 @@ export declare const notificationContract: {
|
|
166270
166831
|
}>, "many">;
|
166271
166832
|
}, "strip", import("zod").ZodTypeAny, {
|
166272
166833
|
data: {
|
166834
|
+
id: string;
|
166835
|
+
createdAt: Date;
|
166836
|
+
updatedAt: Date;
|
166837
|
+
deletedAt: Date | null;
|
166273
166838
|
readAt: Date;
|
166274
166839
|
notificationObjectId: string;
|
166275
166840
|
notifierId: string;
|
166276
166841
|
notificationObject: {
|
166277
166842
|
data: string;
|
166843
|
+
id: string;
|
166844
|
+
createdAt: Date;
|
166845
|
+
updatedAt: Date;
|
166846
|
+
deletedAt: Date | null;
|
166847
|
+
notificationChange: {
|
166848
|
+
id: string;
|
166849
|
+
createdAt: Date;
|
166850
|
+
updatedAt: Date;
|
166851
|
+
deletedAt: Date | null;
|
166852
|
+
actor: {
|
166853
|
+
id: string;
|
166854
|
+
address: string | null;
|
166855
|
+
name: string;
|
166856
|
+
email: string;
|
166857
|
+
createdAt: Date;
|
166858
|
+
updatedAt: Date;
|
166859
|
+
deletedAt: Date | null;
|
166860
|
+
emailVerifiedAt: Date | null;
|
166861
|
+
password: string;
|
166862
|
+
phone: string | null;
|
166863
|
+
notificationCount: number | null;
|
166864
|
+
roles: {
|
166865
|
+
id: string;
|
166866
|
+
description: string | null;
|
166867
|
+
createdAt: Date;
|
166868
|
+
updatedAt: Date;
|
166869
|
+
deletedAt: Date | null;
|
166870
|
+
systemName: string;
|
166871
|
+
displayName: string;
|
166872
|
+
permissions: {
|
166873
|
+
id: string;
|
166874
|
+
description: string | null;
|
166875
|
+
createdAt: Date;
|
166876
|
+
updatedAt: Date;
|
166877
|
+
deletedAt: Date | null;
|
166878
|
+
systemName: string;
|
166879
|
+
displayName: string;
|
166880
|
+
}[];
|
166881
|
+
}[];
|
166882
|
+
extension: {
|
166883
|
+
id: string;
|
166884
|
+
createdAt: Date;
|
166885
|
+
updatedAt: Date;
|
166886
|
+
deletedAt: Date | null;
|
166887
|
+
userId: string | null;
|
166888
|
+
sipServerUrl: string;
|
166889
|
+
sipUserName: string;
|
166890
|
+
webphoneLoginUser: string;
|
166891
|
+
extensionId: string | null;
|
166892
|
+
extensionName: string;
|
166893
|
+
telephonySignature: string | null;
|
166894
|
+
};
|
166895
|
+
};
|
166896
|
+
readAt: Date;
|
166897
|
+
actorId: string;
|
166898
|
+
notificationObjectId: string;
|
166899
|
+
};
|
166278
166900
|
};
|
166279
166901
|
}[];
|
166280
166902
|
total: number;
|
@@ -166289,11 +166911,72 @@ export declare const notificationContract: {
|
|
166289
166911
|
unreadRoomCount?: number | undefined;
|
166290
166912
|
}, {
|
166291
166913
|
data: {
|
166914
|
+
id: string;
|
166915
|
+
createdAt: Date;
|
166916
|
+
updatedAt: Date;
|
166917
|
+
deletedAt: Date | null;
|
166292
166918
|
readAt: Date;
|
166293
166919
|
notificationObjectId: string;
|
166294
166920
|
notifierId: string;
|
166295
166921
|
notificationObject: {
|
166296
166922
|
data: string;
|
166923
|
+
id: string;
|
166924
|
+
createdAt: Date;
|
166925
|
+
updatedAt: Date;
|
166926
|
+
deletedAt: Date | null;
|
166927
|
+
notificationChange: {
|
166928
|
+
id: string;
|
166929
|
+
createdAt: Date;
|
166930
|
+
updatedAt: Date;
|
166931
|
+
deletedAt: Date | null;
|
166932
|
+
actor: {
|
166933
|
+
id: string;
|
166934
|
+
address: string | null;
|
166935
|
+
name: string;
|
166936
|
+
email: string;
|
166937
|
+
createdAt: Date;
|
166938
|
+
updatedAt: Date;
|
166939
|
+
deletedAt: Date | null;
|
166940
|
+
emailVerifiedAt: Date | null;
|
166941
|
+
password: string;
|
166942
|
+
phone: string | null;
|
166943
|
+
notificationCount: number | null;
|
166944
|
+
roles: {
|
166945
|
+
id: string;
|
166946
|
+
description: string | null;
|
166947
|
+
createdAt: Date;
|
166948
|
+
updatedAt: Date;
|
166949
|
+
deletedAt: Date | null;
|
166950
|
+
systemName: string;
|
166951
|
+
displayName: string;
|
166952
|
+
permissions: {
|
166953
|
+
id: string;
|
166954
|
+
description: string | null;
|
166955
|
+
createdAt: Date;
|
166956
|
+
updatedAt: Date;
|
166957
|
+
deletedAt: Date | null;
|
166958
|
+
systemName: string;
|
166959
|
+
displayName: string;
|
166960
|
+
}[];
|
166961
|
+
}[];
|
166962
|
+
extension: {
|
166963
|
+
id: string;
|
166964
|
+
createdAt: Date;
|
166965
|
+
updatedAt: Date;
|
166966
|
+
deletedAt: Date | null;
|
166967
|
+
userId: string | null;
|
166968
|
+
sipServerUrl: string;
|
166969
|
+
sipUserName: string;
|
166970
|
+
webphoneLoginUser: string;
|
166971
|
+
extensionId: string | null;
|
166972
|
+
extensionName: string;
|
166973
|
+
telephonySignature: string | null;
|
166974
|
+
};
|
166975
|
+
};
|
166976
|
+
readAt: Date;
|
166977
|
+
actorId: string;
|
166978
|
+
notificationObjectId: string;
|
166979
|
+
};
|
166297
166980
|
};
|
166298
166981
|
}[];
|
166299
166982
|
total: number;
|
@@ -166310,11 +166993,72 @@ export declare const notificationContract: {
|
|
166310
166993
|
}, "strip", import("zod").ZodTypeAny, {
|
166311
166994
|
notifications: {
|
166312
166995
|
data: {
|
166996
|
+
id: string;
|
166997
|
+
createdAt: Date;
|
166998
|
+
updatedAt: Date;
|
166999
|
+
deletedAt: Date | null;
|
166313
167000
|
readAt: Date;
|
166314
167001
|
notificationObjectId: string;
|
166315
167002
|
notifierId: string;
|
166316
167003
|
notificationObject: {
|
166317
167004
|
data: string;
|
167005
|
+
id: string;
|
167006
|
+
createdAt: Date;
|
167007
|
+
updatedAt: Date;
|
167008
|
+
deletedAt: Date | null;
|
167009
|
+
notificationChange: {
|
167010
|
+
id: string;
|
167011
|
+
createdAt: Date;
|
167012
|
+
updatedAt: Date;
|
167013
|
+
deletedAt: Date | null;
|
167014
|
+
actor: {
|
167015
|
+
id: string;
|
167016
|
+
address: string | null;
|
167017
|
+
name: string;
|
167018
|
+
email: string;
|
167019
|
+
createdAt: Date;
|
167020
|
+
updatedAt: Date;
|
167021
|
+
deletedAt: Date | null;
|
167022
|
+
emailVerifiedAt: Date | null;
|
167023
|
+
password: string;
|
167024
|
+
phone: string | null;
|
167025
|
+
notificationCount: number | null;
|
167026
|
+
roles: {
|
167027
|
+
id: string;
|
167028
|
+
description: string | null;
|
167029
|
+
createdAt: Date;
|
167030
|
+
updatedAt: Date;
|
167031
|
+
deletedAt: Date | null;
|
167032
|
+
systemName: string;
|
167033
|
+
displayName: string;
|
167034
|
+
permissions: {
|
167035
|
+
id: string;
|
167036
|
+
description: string | null;
|
167037
|
+
createdAt: Date;
|
167038
|
+
updatedAt: Date;
|
167039
|
+
deletedAt: Date | null;
|
167040
|
+
systemName: string;
|
167041
|
+
displayName: string;
|
167042
|
+
}[];
|
167043
|
+
}[];
|
167044
|
+
extension: {
|
167045
|
+
id: string;
|
167046
|
+
createdAt: Date;
|
167047
|
+
updatedAt: Date;
|
167048
|
+
deletedAt: Date | null;
|
167049
|
+
userId: string | null;
|
167050
|
+
sipServerUrl: string;
|
167051
|
+
sipUserName: string;
|
167052
|
+
webphoneLoginUser: string;
|
167053
|
+
extensionId: string | null;
|
167054
|
+
extensionName: string;
|
167055
|
+
telephonySignature: string | null;
|
167056
|
+
};
|
167057
|
+
};
|
167058
|
+
readAt: Date;
|
167059
|
+
actorId: string;
|
167060
|
+
notificationObjectId: string;
|
167061
|
+
};
|
166318
167062
|
};
|
166319
167063
|
}[];
|
166320
167064
|
total: number;
|
@@ -166332,19 +167076,80 @@ export declare const notificationContract: {
|
|
166332
167076
|
}, {
|
166333
167077
|
notifications: {
|
166334
167078
|
data: {
|
167079
|
+
id: string;
|
167080
|
+
createdAt: Date;
|
167081
|
+
updatedAt: Date;
|
167082
|
+
deletedAt: Date | null;
|
166335
167083
|
readAt: Date;
|
166336
167084
|
notificationObjectId: string;
|
166337
167085
|
notifierId: string;
|
166338
167086
|
notificationObject: {
|
166339
167087
|
data: string;
|
166340
|
-
|
166341
|
-
|
166342
|
-
|
166343
|
-
|
166344
|
-
|
166345
|
-
|
166346
|
-
|
166347
|
-
|
167088
|
+
id: string;
|
167089
|
+
createdAt: Date;
|
167090
|
+
updatedAt: Date;
|
167091
|
+
deletedAt: Date | null;
|
167092
|
+
notificationChange: {
|
167093
|
+
id: string;
|
167094
|
+
createdAt: Date;
|
167095
|
+
updatedAt: Date;
|
167096
|
+
deletedAt: Date | null;
|
167097
|
+
actor: {
|
167098
|
+
id: string;
|
167099
|
+
address: string | null;
|
167100
|
+
name: string;
|
167101
|
+
email: string;
|
167102
|
+
createdAt: Date;
|
167103
|
+
updatedAt: Date;
|
167104
|
+
deletedAt: Date | null;
|
167105
|
+
emailVerifiedAt: Date | null;
|
167106
|
+
password: string;
|
167107
|
+
phone: string | null;
|
167108
|
+
notificationCount: number | null;
|
167109
|
+
roles: {
|
167110
|
+
id: string;
|
167111
|
+
description: string | null;
|
167112
|
+
createdAt: Date;
|
167113
|
+
updatedAt: Date;
|
167114
|
+
deletedAt: Date | null;
|
167115
|
+
systemName: string;
|
167116
|
+
displayName: string;
|
167117
|
+
permissions: {
|
167118
|
+
id: string;
|
167119
|
+
description: string | null;
|
167120
|
+
createdAt: Date;
|
167121
|
+
updatedAt: Date;
|
167122
|
+
deletedAt: Date | null;
|
167123
|
+
systemName: string;
|
167124
|
+
displayName: string;
|
167125
|
+
}[];
|
167126
|
+
}[];
|
167127
|
+
extension: {
|
167128
|
+
id: string;
|
167129
|
+
createdAt: Date;
|
167130
|
+
updatedAt: Date;
|
167131
|
+
deletedAt: Date | null;
|
167132
|
+
userId: string | null;
|
167133
|
+
sipServerUrl: string;
|
167134
|
+
sipUserName: string;
|
167135
|
+
webphoneLoginUser: string;
|
167136
|
+
extensionId: string | null;
|
167137
|
+
extensionName: string;
|
167138
|
+
telephonySignature: string | null;
|
167139
|
+
};
|
167140
|
+
};
|
167141
|
+
readAt: Date;
|
167142
|
+
actorId: string;
|
167143
|
+
notificationObjectId: string;
|
167144
|
+
};
|
167145
|
+
};
|
167146
|
+
}[];
|
167147
|
+
total: number;
|
167148
|
+
page: number;
|
167149
|
+
pageSize: number;
|
167150
|
+
lastPage: number;
|
167151
|
+
unreadCountsByAssigneeList: {
|
167152
|
+
assigneeId?: string | undefined;
|
166348
167153
|
totalUnreadCount?: string | undefined;
|
166349
167154
|
}[];
|
166350
167155
|
totalUnreadCount?: number | undefined;
|
@@ -166353,15 +167158,75 @@ export declare const notificationContract: {
|
|
166353
167158
|
notificationCount: number;
|
166354
167159
|
}>;
|
166355
167160
|
}, "strip", import("zod").ZodTypeAny, {
|
166356
|
-
|
166357
|
-
GetNotificationsResponseSchema: {
|
167161
|
+
data: {
|
166358
167162
|
notifications: {
|
166359
167163
|
data: {
|
167164
|
+
id: string;
|
167165
|
+
createdAt: Date;
|
167166
|
+
updatedAt: Date;
|
167167
|
+
deletedAt: Date | null;
|
166360
167168
|
readAt: Date;
|
166361
167169
|
notificationObjectId: string;
|
166362
167170
|
notifierId: string;
|
166363
167171
|
notificationObject: {
|
166364
167172
|
data: string;
|
167173
|
+
id: string;
|
167174
|
+
createdAt: Date;
|
167175
|
+
updatedAt: Date;
|
167176
|
+
deletedAt: Date | null;
|
167177
|
+
notificationChange: {
|
167178
|
+
id: string;
|
167179
|
+
createdAt: Date;
|
167180
|
+
updatedAt: Date;
|
167181
|
+
deletedAt: Date | null;
|
167182
|
+
actor: {
|
167183
|
+
id: string;
|
167184
|
+
address: string | null;
|
167185
|
+
name: string;
|
167186
|
+
email: string;
|
167187
|
+
createdAt: Date;
|
167188
|
+
updatedAt: Date;
|
167189
|
+
deletedAt: Date | null;
|
167190
|
+
emailVerifiedAt: Date | null;
|
167191
|
+
password: string;
|
167192
|
+
phone: string | null;
|
167193
|
+
notificationCount: number | null;
|
167194
|
+
roles: {
|
167195
|
+
id: string;
|
167196
|
+
description: string | null;
|
167197
|
+
createdAt: Date;
|
167198
|
+
updatedAt: Date;
|
167199
|
+
deletedAt: Date | null;
|
167200
|
+
systemName: string;
|
167201
|
+
displayName: string;
|
167202
|
+
permissions: {
|
167203
|
+
id: string;
|
167204
|
+
description: string | null;
|
167205
|
+
createdAt: Date;
|
167206
|
+
updatedAt: Date;
|
167207
|
+
deletedAt: Date | null;
|
167208
|
+
systemName: string;
|
167209
|
+
displayName: string;
|
167210
|
+
}[];
|
167211
|
+
}[];
|
167212
|
+
extension: {
|
167213
|
+
id: string;
|
167214
|
+
createdAt: Date;
|
167215
|
+
updatedAt: Date;
|
167216
|
+
deletedAt: Date | null;
|
167217
|
+
userId: string | null;
|
167218
|
+
sipServerUrl: string;
|
167219
|
+
sipUserName: string;
|
167220
|
+
webphoneLoginUser: string;
|
167221
|
+
extensionId: string | null;
|
167222
|
+
extensionName: string;
|
167223
|
+
telephonySignature: string | null;
|
167224
|
+
};
|
167225
|
+
};
|
167226
|
+
readAt: Date;
|
167227
|
+
actorId: string;
|
167228
|
+
notificationObjectId: string;
|
167229
|
+
};
|
166365
167230
|
};
|
166366
167231
|
}[];
|
166367
167232
|
total: number;
|
@@ -166377,16 +167242,77 @@ export declare const notificationContract: {
|
|
166377
167242
|
};
|
166378
167243
|
notificationCount: number;
|
166379
167244
|
};
|
166380
|
-
}, {
|
166381
167245
|
requestId: string;
|
166382
|
-
|
167246
|
+
}, {
|
167247
|
+
data: {
|
166383
167248
|
notifications: {
|
166384
167249
|
data: {
|
167250
|
+
id: string;
|
167251
|
+
createdAt: Date;
|
167252
|
+
updatedAt: Date;
|
167253
|
+
deletedAt: Date | null;
|
166385
167254
|
readAt: Date;
|
166386
167255
|
notificationObjectId: string;
|
166387
167256
|
notifierId: string;
|
166388
167257
|
notificationObject: {
|
166389
167258
|
data: string;
|
167259
|
+
id: string;
|
167260
|
+
createdAt: Date;
|
167261
|
+
updatedAt: Date;
|
167262
|
+
deletedAt: Date | null;
|
167263
|
+
notificationChange: {
|
167264
|
+
id: string;
|
167265
|
+
createdAt: Date;
|
167266
|
+
updatedAt: Date;
|
167267
|
+
deletedAt: Date | null;
|
167268
|
+
actor: {
|
167269
|
+
id: string;
|
167270
|
+
address: string | null;
|
167271
|
+
name: string;
|
167272
|
+
email: string;
|
167273
|
+
createdAt: Date;
|
167274
|
+
updatedAt: Date;
|
167275
|
+
deletedAt: Date | null;
|
167276
|
+
emailVerifiedAt: Date | null;
|
167277
|
+
password: string;
|
167278
|
+
phone: string | null;
|
167279
|
+
notificationCount: number | null;
|
167280
|
+
roles: {
|
167281
|
+
id: string;
|
167282
|
+
description: string | null;
|
167283
|
+
createdAt: Date;
|
167284
|
+
updatedAt: Date;
|
167285
|
+
deletedAt: Date | null;
|
167286
|
+
systemName: string;
|
167287
|
+
displayName: string;
|
167288
|
+
permissions: {
|
167289
|
+
id: string;
|
167290
|
+
description: string | null;
|
167291
|
+
createdAt: Date;
|
167292
|
+
updatedAt: Date;
|
167293
|
+
deletedAt: Date | null;
|
167294
|
+
systemName: string;
|
167295
|
+
displayName: string;
|
167296
|
+
}[];
|
167297
|
+
}[];
|
167298
|
+
extension: {
|
167299
|
+
id: string;
|
167300
|
+
createdAt: Date;
|
167301
|
+
updatedAt: Date;
|
167302
|
+
deletedAt: Date | null;
|
167303
|
+
userId: string | null;
|
167304
|
+
sipServerUrl: string;
|
167305
|
+
sipUserName: string;
|
167306
|
+
webphoneLoginUser: string;
|
167307
|
+
extensionId: string | null;
|
167308
|
+
extensionName: string;
|
167309
|
+
telephonySignature: string | null;
|
167310
|
+
};
|
167311
|
+
};
|
167312
|
+
readAt: Date;
|
167313
|
+
actorId: string;
|
167314
|
+
notificationObjectId: string;
|
167315
|
+
};
|
166390
167316
|
};
|
166391
167317
|
}[];
|
166392
167318
|
total: number;
|
@@ -166402,6 +167328,7 @@ export declare const notificationContract: {
|
|
166402
167328
|
};
|
166403
167329
|
notificationCount: number;
|
166404
167330
|
};
|
167331
|
+
requestId: string;
|
166405
167332
|
}>;
|
166406
167333
|
400: import("zod").ZodObject<{
|
166407
167334
|
message: import("zod").ZodString;
|
@@ -166689,201 +167616,884 @@ export declare const notificationContract: {
|
|
166689
167616
|
notificationCount: number | null;
|
166690
167617
|
roles: {
|
166691
167618
|
id: string;
|
166692
|
-
description: string | null;
|
167619
|
+
description: string | null;
|
167620
|
+
createdAt: Date;
|
167621
|
+
updatedAt: Date;
|
167622
|
+
deletedAt: Date | null;
|
167623
|
+
systemName: string;
|
167624
|
+
displayName: string;
|
167625
|
+
permissions: {
|
167626
|
+
id: string;
|
167627
|
+
description: string | null;
|
167628
|
+
createdAt: Date;
|
167629
|
+
updatedAt: Date;
|
167630
|
+
deletedAt: Date | null;
|
167631
|
+
systemName: string;
|
167632
|
+
displayName: string;
|
167633
|
+
}[];
|
167634
|
+
}[];
|
167635
|
+
extension: {
|
167636
|
+
id: string;
|
167637
|
+
createdAt: Date;
|
167638
|
+
updatedAt: Date;
|
167639
|
+
deletedAt: Date | null;
|
167640
|
+
userId: string | null;
|
167641
|
+
sipServerUrl: string;
|
167642
|
+
sipUserName: string;
|
167643
|
+
webphoneLoginUser: string;
|
167644
|
+
extensionId: string | null;
|
167645
|
+
extensionName: string;
|
167646
|
+
telephonySignature: string | null;
|
167647
|
+
};
|
167648
|
+
};
|
167649
|
+
requestId: string;
|
167650
|
+
}, {
|
167651
|
+
data: {
|
167652
|
+
id: string;
|
167653
|
+
address: string | null;
|
167654
|
+
name: string;
|
167655
|
+
email: string;
|
167656
|
+
createdAt: Date;
|
167657
|
+
updatedAt: Date;
|
167658
|
+
deletedAt: Date | null;
|
167659
|
+
emailVerifiedAt: Date | null;
|
167660
|
+
password: string;
|
167661
|
+
phone: string | null;
|
167662
|
+
notificationCount: number | null;
|
167663
|
+
roles: {
|
167664
|
+
id: string;
|
167665
|
+
description: string | null;
|
167666
|
+
createdAt: Date;
|
167667
|
+
updatedAt: Date;
|
167668
|
+
deletedAt: Date | null;
|
167669
|
+
systemName: string;
|
167670
|
+
displayName: string;
|
167671
|
+
permissions: {
|
167672
|
+
id: string;
|
167673
|
+
description: string | null;
|
167674
|
+
createdAt: Date;
|
167675
|
+
updatedAt: Date;
|
167676
|
+
deletedAt: Date | null;
|
167677
|
+
systemName: string;
|
167678
|
+
displayName: string;
|
167679
|
+
}[];
|
167680
|
+
}[];
|
167681
|
+
extension: {
|
167682
|
+
id: string;
|
167683
|
+
createdAt: Date;
|
167684
|
+
updatedAt: Date;
|
167685
|
+
deletedAt: Date | null;
|
167686
|
+
userId: string | null;
|
167687
|
+
sipServerUrl: string;
|
167688
|
+
sipUserName: string;
|
167689
|
+
webphoneLoginUser: string;
|
167690
|
+
extensionId: string | null;
|
167691
|
+
extensionName: string;
|
167692
|
+
telephonySignature: string | null;
|
167693
|
+
};
|
167694
|
+
};
|
167695
|
+
requestId: string;
|
167696
|
+
}>;
|
167697
|
+
400: import("zod").ZodObject<{
|
167698
|
+
message: import("zod").ZodString;
|
167699
|
+
}, "strip", import("zod").ZodTypeAny, {
|
167700
|
+
message: string;
|
167701
|
+
}, {
|
167702
|
+
message: string;
|
167703
|
+
}>;
|
167704
|
+
409: import("zod").ZodObject<{
|
167705
|
+
message: import("zod").ZodString;
|
167706
|
+
}, "strip", import("zod").ZodTypeAny, {
|
167707
|
+
message: string;
|
167708
|
+
}, {
|
167709
|
+
message: string;
|
167710
|
+
}>;
|
167711
|
+
500: import("zod").ZodObject<{
|
167712
|
+
message: import("zod").ZodString;
|
167713
|
+
}, "strip", import("zod").ZodTypeAny, {
|
167714
|
+
message: string;
|
167715
|
+
}, {
|
167716
|
+
message: string;
|
167717
|
+
}>;
|
167718
|
+
401: import("zod").ZodObject<{
|
167719
|
+
message: import("zod").ZodString;
|
167720
|
+
error: import("zod").ZodAny;
|
167721
|
+
}, "strip", import("zod").ZodTypeAny, {
|
167722
|
+
message: string;
|
167723
|
+
error?: any;
|
167724
|
+
}, {
|
167725
|
+
message: string;
|
167726
|
+
error?: any;
|
167727
|
+
}>;
|
167728
|
+
404: import("zod").ZodObject<{
|
167729
|
+
message: import("zod").ZodString;
|
167730
|
+
error: import("zod").ZodAny;
|
167731
|
+
}, "strip", import("zod").ZodTypeAny, {
|
167732
|
+
message: string;
|
167733
|
+
error?: any;
|
167734
|
+
}, {
|
167735
|
+
message: string;
|
167736
|
+
error?: any;
|
167737
|
+
}>;
|
167738
|
+
422: import("zod").ZodObject<{
|
167739
|
+
message: import("zod").ZodString;
|
167740
|
+
error: import("zod").ZodAny;
|
167741
|
+
}, "strip", import("zod").ZodTypeAny, {
|
167742
|
+
message: string;
|
167743
|
+
error?: any;
|
167744
|
+
}, {
|
167745
|
+
message: string;
|
167746
|
+
error?: any;
|
167747
|
+
}>;
|
167748
|
+
};
|
167749
|
+
path: "notification/reset";
|
167750
|
+
};
|
167751
|
+
readNotification: {
|
167752
|
+
body: import("zod").ZodObject<{
|
167753
|
+
userId: import("zod").ZodString;
|
167754
|
+
}, "strip", import("zod").ZodTypeAny, {
|
167755
|
+
userId: string;
|
167756
|
+
}, {
|
167757
|
+
userId: string;
|
167758
|
+
}>;
|
167759
|
+
summary: "Mark a notification as read";
|
167760
|
+
method: "POST";
|
167761
|
+
pathParams: import("zod").ZodObject<{
|
167762
|
+
id: import("zod").ZodString;
|
167763
|
+
}, "strip", import("zod").ZodTypeAny, {
|
167764
|
+
id: string;
|
167765
|
+
}, {
|
167766
|
+
id: string;
|
167767
|
+
}>;
|
167768
|
+
responses: {
|
167769
|
+
201: import("zod").ZodObject<{
|
167770
|
+
requestId: import("zod").ZodString;
|
167771
|
+
data: import("zod").ZodObject<{
|
167772
|
+
id: import("zod").ZodString;
|
167773
|
+
createdAt: import("zod").ZodDate;
|
167774
|
+
updatedAt: import("zod").ZodDate;
|
167775
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
167776
|
+
notificationObjectId: import("zod").ZodString;
|
167777
|
+
notifierId: import("zod").ZodString;
|
167778
|
+
notificationObject: import("zod").ZodObject<{
|
167779
|
+
id: import("zod").ZodString;
|
167780
|
+
createdAt: import("zod").ZodDate;
|
167781
|
+
updatedAt: import("zod").ZodDate;
|
167782
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
167783
|
+
data: import("zod").ZodString;
|
167784
|
+
notificationChange: import("zod").ZodObject<{
|
167785
|
+
id: import("zod").ZodString;
|
167786
|
+
createdAt: import("zod").ZodDate;
|
167787
|
+
updatedAt: import("zod").ZodDate;
|
167788
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
167789
|
+
actorId: import("zod").ZodString;
|
167790
|
+
actor: import("zod").ZodObject<{
|
167791
|
+
id: import("zod").ZodString;
|
167792
|
+
createdAt: import("zod").ZodDate;
|
167793
|
+
updatedAt: import("zod").ZodDate;
|
167794
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
167795
|
+
name: import("zod").ZodString;
|
167796
|
+
email: import("zod").ZodString;
|
167797
|
+
emailVerifiedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
167798
|
+
password: import("zod").ZodString;
|
167799
|
+
address: import("zod").ZodNullable<import("zod").ZodString>;
|
167800
|
+
phone: import("zod").ZodNullable<import("zod").ZodString>;
|
167801
|
+
notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
167802
|
+
roles: import("zod").ZodArray<import("zod").ZodObject<{
|
167803
|
+
id: import("zod").ZodString;
|
167804
|
+
createdAt: import("zod").ZodDate;
|
167805
|
+
updatedAt: import("zod").ZodDate;
|
167806
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
167807
|
+
systemName: import("zod").ZodString;
|
167808
|
+
displayName: import("zod").ZodString;
|
167809
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
167810
|
+
permissions: import("zod").ZodArray<import("zod").ZodObject<{
|
167811
|
+
id: import("zod").ZodString;
|
167812
|
+
createdAt: import("zod").ZodDate;
|
167813
|
+
updatedAt: import("zod").ZodDate;
|
167814
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
167815
|
+
systemName: import("zod").ZodString;
|
167816
|
+
displayName: import("zod").ZodString;
|
167817
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
167818
|
+
}, "strip", import("zod").ZodTypeAny, {
|
167819
|
+
id: string;
|
167820
|
+
description: string | null;
|
167821
|
+
createdAt: Date;
|
167822
|
+
updatedAt: Date;
|
167823
|
+
deletedAt: Date | null;
|
167824
|
+
systemName: string;
|
167825
|
+
displayName: string;
|
167826
|
+
}, {
|
167827
|
+
id: string;
|
167828
|
+
description: string | null;
|
167829
|
+
createdAt: Date;
|
167830
|
+
updatedAt: Date;
|
167831
|
+
deletedAt: Date | null;
|
167832
|
+
systemName: string;
|
167833
|
+
displayName: string;
|
167834
|
+
}>, "many">;
|
167835
|
+
}, "strip", import("zod").ZodTypeAny, {
|
167836
|
+
id: string;
|
167837
|
+
description: string | null;
|
167838
|
+
createdAt: Date;
|
167839
|
+
updatedAt: Date;
|
167840
|
+
deletedAt: Date | null;
|
167841
|
+
systemName: string;
|
167842
|
+
displayName: string;
|
167843
|
+
permissions: {
|
167844
|
+
id: string;
|
167845
|
+
description: string | null;
|
167846
|
+
createdAt: Date;
|
167847
|
+
updatedAt: Date;
|
167848
|
+
deletedAt: Date | null;
|
167849
|
+
systemName: string;
|
167850
|
+
displayName: string;
|
167851
|
+
}[];
|
167852
|
+
}, {
|
167853
|
+
id: string;
|
167854
|
+
description: string | null;
|
167855
|
+
createdAt: Date;
|
167856
|
+
updatedAt: Date;
|
167857
|
+
deletedAt: Date | null;
|
167858
|
+
systemName: string;
|
167859
|
+
displayName: string;
|
167860
|
+
permissions: {
|
167861
|
+
id: string;
|
167862
|
+
description: string | null;
|
167863
|
+
createdAt: Date;
|
167864
|
+
updatedAt: Date;
|
167865
|
+
deletedAt: Date | null;
|
167866
|
+
systemName: string;
|
167867
|
+
displayName: string;
|
167868
|
+
}[];
|
167869
|
+
}>, "many">;
|
167870
|
+
extension: import("zod").ZodObject<{
|
167871
|
+
id: import("zod").ZodString;
|
167872
|
+
createdAt: import("zod").ZodDate;
|
167873
|
+
updatedAt: import("zod").ZodDate;
|
167874
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
167875
|
+
userId: import("zod").ZodNullable<import("zod").ZodString>;
|
167876
|
+
sipServerUrl: import("zod").ZodString;
|
167877
|
+
sipUserName: import("zod").ZodString;
|
167878
|
+
webphoneLoginUser: import("zod").ZodString;
|
167879
|
+
extensionId: import("zod").ZodNullable<import("zod").ZodString>;
|
167880
|
+
extensionName: import("zod").ZodString;
|
167881
|
+
telephonySignature: import("zod").ZodNullable<import("zod").ZodString>;
|
167882
|
+
}, "strip", import("zod").ZodTypeAny, {
|
167883
|
+
id: string;
|
167884
|
+
createdAt: Date;
|
167885
|
+
updatedAt: Date;
|
167886
|
+
deletedAt: Date | null;
|
167887
|
+
userId: string | null;
|
167888
|
+
sipServerUrl: string;
|
167889
|
+
sipUserName: string;
|
167890
|
+
webphoneLoginUser: string;
|
167891
|
+
extensionId: string | null;
|
167892
|
+
extensionName: string;
|
167893
|
+
telephonySignature: string | null;
|
167894
|
+
}, {
|
167895
|
+
id: string;
|
167896
|
+
createdAt: Date;
|
167897
|
+
updatedAt: Date;
|
167898
|
+
deletedAt: Date | null;
|
167899
|
+
userId: string | null;
|
167900
|
+
sipServerUrl: string;
|
167901
|
+
sipUserName: string;
|
167902
|
+
webphoneLoginUser: string;
|
167903
|
+
extensionId: string | null;
|
167904
|
+
extensionName: string;
|
167905
|
+
telephonySignature: string | null;
|
167906
|
+
}>;
|
167907
|
+
}, "strip", import("zod").ZodTypeAny, {
|
167908
|
+
id: string;
|
167909
|
+
address: string | null;
|
167910
|
+
name: string;
|
167911
|
+
email: string;
|
167912
|
+
createdAt: Date;
|
167913
|
+
updatedAt: Date;
|
167914
|
+
deletedAt: Date | null;
|
167915
|
+
emailVerifiedAt: Date | null;
|
167916
|
+
password: string;
|
167917
|
+
phone: string | null;
|
167918
|
+
notificationCount: number | null;
|
167919
|
+
roles: {
|
167920
|
+
id: string;
|
167921
|
+
description: string | null;
|
167922
|
+
createdAt: Date;
|
167923
|
+
updatedAt: Date;
|
167924
|
+
deletedAt: Date | null;
|
167925
|
+
systemName: string;
|
167926
|
+
displayName: string;
|
167927
|
+
permissions: {
|
167928
|
+
id: string;
|
167929
|
+
description: string | null;
|
167930
|
+
createdAt: Date;
|
167931
|
+
updatedAt: Date;
|
167932
|
+
deletedAt: Date | null;
|
167933
|
+
systemName: string;
|
167934
|
+
displayName: string;
|
167935
|
+
}[];
|
167936
|
+
}[];
|
167937
|
+
extension: {
|
167938
|
+
id: string;
|
167939
|
+
createdAt: Date;
|
167940
|
+
updatedAt: Date;
|
167941
|
+
deletedAt: Date | null;
|
167942
|
+
userId: string | null;
|
167943
|
+
sipServerUrl: string;
|
167944
|
+
sipUserName: string;
|
167945
|
+
webphoneLoginUser: string;
|
167946
|
+
extensionId: string | null;
|
167947
|
+
extensionName: string;
|
167948
|
+
telephonySignature: string | null;
|
167949
|
+
};
|
167950
|
+
}, {
|
167951
|
+
id: string;
|
167952
|
+
address: string | null;
|
167953
|
+
name: string;
|
167954
|
+
email: string;
|
167955
|
+
createdAt: Date;
|
167956
|
+
updatedAt: Date;
|
167957
|
+
deletedAt: Date | null;
|
167958
|
+
emailVerifiedAt: Date | null;
|
167959
|
+
password: string;
|
167960
|
+
phone: string | null;
|
167961
|
+
notificationCount: number | null;
|
167962
|
+
roles: {
|
167963
|
+
id: string;
|
167964
|
+
description: string | null;
|
167965
|
+
createdAt: Date;
|
167966
|
+
updatedAt: Date;
|
167967
|
+
deletedAt: Date | null;
|
167968
|
+
systemName: string;
|
167969
|
+
displayName: string;
|
167970
|
+
permissions: {
|
167971
|
+
id: string;
|
167972
|
+
description: string | null;
|
167973
|
+
createdAt: Date;
|
167974
|
+
updatedAt: Date;
|
167975
|
+
deletedAt: Date | null;
|
167976
|
+
systemName: string;
|
167977
|
+
displayName: string;
|
167978
|
+
}[];
|
167979
|
+
}[];
|
167980
|
+
extension: {
|
167981
|
+
id: string;
|
167982
|
+
createdAt: Date;
|
167983
|
+
updatedAt: Date;
|
167984
|
+
deletedAt: Date | null;
|
167985
|
+
userId: string | null;
|
167986
|
+
sipServerUrl: string;
|
167987
|
+
sipUserName: string;
|
167988
|
+
webphoneLoginUser: string;
|
167989
|
+
extensionId: string | null;
|
167990
|
+
extensionName: string;
|
167991
|
+
telephonySignature: string | null;
|
167992
|
+
};
|
167993
|
+
}>;
|
167994
|
+
notificationObjectId: import("zod").ZodString;
|
167995
|
+
readAt: import("zod").ZodDate;
|
167996
|
+
}, "strip", import("zod").ZodTypeAny, {
|
167997
|
+
id: string;
|
167998
|
+
createdAt: Date;
|
167999
|
+
updatedAt: Date;
|
168000
|
+
deletedAt: Date | null;
|
168001
|
+
actor: {
|
168002
|
+
id: string;
|
168003
|
+
address: string | null;
|
168004
|
+
name: string;
|
168005
|
+
email: string;
|
168006
|
+
createdAt: Date;
|
168007
|
+
updatedAt: Date;
|
168008
|
+
deletedAt: Date | null;
|
168009
|
+
emailVerifiedAt: Date | null;
|
168010
|
+
password: string;
|
168011
|
+
phone: string | null;
|
168012
|
+
notificationCount: number | null;
|
168013
|
+
roles: {
|
168014
|
+
id: string;
|
168015
|
+
description: string | null;
|
168016
|
+
createdAt: Date;
|
168017
|
+
updatedAt: Date;
|
168018
|
+
deletedAt: Date | null;
|
168019
|
+
systemName: string;
|
168020
|
+
displayName: string;
|
168021
|
+
permissions: {
|
168022
|
+
id: string;
|
168023
|
+
description: string | null;
|
168024
|
+
createdAt: Date;
|
168025
|
+
updatedAt: Date;
|
168026
|
+
deletedAt: Date | null;
|
168027
|
+
systemName: string;
|
168028
|
+
displayName: string;
|
168029
|
+
}[];
|
168030
|
+
}[];
|
168031
|
+
extension: {
|
168032
|
+
id: string;
|
168033
|
+
createdAt: Date;
|
168034
|
+
updatedAt: Date;
|
168035
|
+
deletedAt: Date | null;
|
168036
|
+
userId: string | null;
|
168037
|
+
sipServerUrl: string;
|
168038
|
+
sipUserName: string;
|
168039
|
+
webphoneLoginUser: string;
|
168040
|
+
extensionId: string | null;
|
168041
|
+
extensionName: string;
|
168042
|
+
telephonySignature: string | null;
|
168043
|
+
};
|
168044
|
+
};
|
168045
|
+
readAt: Date;
|
168046
|
+
actorId: string;
|
168047
|
+
notificationObjectId: string;
|
168048
|
+
}, {
|
168049
|
+
id: string;
|
168050
|
+
createdAt: Date;
|
168051
|
+
updatedAt: Date;
|
168052
|
+
deletedAt: Date | null;
|
168053
|
+
actor: {
|
168054
|
+
id: string;
|
168055
|
+
address: string | null;
|
168056
|
+
name: string;
|
168057
|
+
email: string;
|
168058
|
+
createdAt: Date;
|
168059
|
+
updatedAt: Date;
|
168060
|
+
deletedAt: Date | null;
|
168061
|
+
emailVerifiedAt: Date | null;
|
168062
|
+
password: string;
|
168063
|
+
phone: string | null;
|
168064
|
+
notificationCount: number | null;
|
168065
|
+
roles: {
|
168066
|
+
id: string;
|
168067
|
+
description: string | null;
|
168068
|
+
createdAt: Date;
|
168069
|
+
updatedAt: Date;
|
168070
|
+
deletedAt: Date | null;
|
168071
|
+
systemName: string;
|
168072
|
+
displayName: string;
|
168073
|
+
permissions: {
|
168074
|
+
id: string;
|
168075
|
+
description: string | null;
|
168076
|
+
createdAt: Date;
|
168077
|
+
updatedAt: Date;
|
168078
|
+
deletedAt: Date | null;
|
168079
|
+
systemName: string;
|
168080
|
+
displayName: string;
|
168081
|
+
}[];
|
168082
|
+
}[];
|
168083
|
+
extension: {
|
168084
|
+
id: string;
|
168085
|
+
createdAt: Date;
|
168086
|
+
updatedAt: Date;
|
168087
|
+
deletedAt: Date | null;
|
168088
|
+
userId: string | null;
|
168089
|
+
sipServerUrl: string;
|
168090
|
+
sipUserName: string;
|
168091
|
+
webphoneLoginUser: string;
|
168092
|
+
extensionId: string | null;
|
168093
|
+
extensionName: string;
|
168094
|
+
telephonySignature: string | null;
|
168095
|
+
};
|
168096
|
+
};
|
168097
|
+
readAt: Date;
|
168098
|
+
actorId: string;
|
168099
|
+
notificationObjectId: string;
|
168100
|
+
}>;
|
168101
|
+
}, "strip", import("zod").ZodTypeAny, {
|
168102
|
+
data: string;
|
168103
|
+
id: string;
|
166693
168104
|
createdAt: Date;
|
166694
168105
|
updatedAt: Date;
|
166695
168106
|
deletedAt: Date | null;
|
166696
|
-
|
166697
|
-
displayName: string;
|
166698
|
-
permissions: {
|
168107
|
+
notificationChange: {
|
166699
168108
|
id: string;
|
166700
|
-
description: string | null;
|
166701
168109
|
createdAt: Date;
|
166702
168110
|
updatedAt: Date;
|
166703
168111
|
deletedAt: Date | null;
|
166704
|
-
|
166705
|
-
|
166706
|
-
|
166707
|
-
|
166708
|
-
|
166709
|
-
|
166710
|
-
|
166711
|
-
|
166712
|
-
|
166713
|
-
|
166714
|
-
|
166715
|
-
|
166716
|
-
|
166717
|
-
|
166718
|
-
|
166719
|
-
|
166720
|
-
|
166721
|
-
|
166722
|
-
|
166723
|
-
|
166724
|
-
|
166725
|
-
|
166726
|
-
|
166727
|
-
|
166728
|
-
|
166729
|
-
|
166730
|
-
|
166731
|
-
|
166732
|
-
|
166733
|
-
|
166734
|
-
|
166735
|
-
|
166736
|
-
|
168112
|
+
actor: {
|
168113
|
+
id: string;
|
168114
|
+
address: string | null;
|
168115
|
+
name: string;
|
168116
|
+
email: string;
|
168117
|
+
createdAt: Date;
|
168118
|
+
updatedAt: Date;
|
168119
|
+
deletedAt: Date | null;
|
168120
|
+
emailVerifiedAt: Date | null;
|
168121
|
+
password: string;
|
168122
|
+
phone: string | null;
|
168123
|
+
notificationCount: number | null;
|
168124
|
+
roles: {
|
168125
|
+
id: string;
|
168126
|
+
description: string | null;
|
168127
|
+
createdAt: Date;
|
168128
|
+
updatedAt: Date;
|
168129
|
+
deletedAt: Date | null;
|
168130
|
+
systemName: string;
|
168131
|
+
displayName: string;
|
168132
|
+
permissions: {
|
168133
|
+
id: string;
|
168134
|
+
description: string | null;
|
168135
|
+
createdAt: Date;
|
168136
|
+
updatedAt: Date;
|
168137
|
+
deletedAt: Date | null;
|
168138
|
+
systemName: string;
|
168139
|
+
displayName: string;
|
168140
|
+
}[];
|
168141
|
+
}[];
|
168142
|
+
extension: {
|
168143
|
+
id: string;
|
168144
|
+
createdAt: Date;
|
168145
|
+
updatedAt: Date;
|
168146
|
+
deletedAt: Date | null;
|
168147
|
+
userId: string | null;
|
168148
|
+
sipServerUrl: string;
|
168149
|
+
sipUserName: string;
|
168150
|
+
webphoneLoginUser: string;
|
168151
|
+
extensionId: string | null;
|
168152
|
+
extensionName: string;
|
168153
|
+
telephonySignature: string | null;
|
168154
|
+
};
|
168155
|
+
};
|
168156
|
+
readAt: Date;
|
168157
|
+
actorId: string;
|
168158
|
+
notificationObjectId: string;
|
168159
|
+
};
|
168160
|
+
}, {
|
168161
|
+
data: string;
|
166737
168162
|
id: string;
|
166738
|
-
description: string | null;
|
166739
168163
|
createdAt: Date;
|
166740
168164
|
updatedAt: Date;
|
166741
168165
|
deletedAt: Date | null;
|
166742
|
-
|
166743
|
-
displayName: string;
|
166744
|
-
permissions: {
|
168166
|
+
notificationChange: {
|
166745
168167
|
id: string;
|
166746
|
-
description: string | null;
|
166747
168168
|
createdAt: Date;
|
166748
168169
|
updatedAt: Date;
|
166749
168170
|
deletedAt: Date | null;
|
166750
|
-
|
166751
|
-
|
166752
|
-
|
166753
|
-
|
166754
|
-
|
166755
|
-
|
166756
|
-
|
166757
|
-
|
166758
|
-
|
166759
|
-
|
166760
|
-
|
166761
|
-
|
166762
|
-
|
166763
|
-
|
166764
|
-
|
166765
|
-
|
166766
|
-
|
166767
|
-
|
166768
|
-
|
166769
|
-
|
166770
|
-
|
166771
|
-
|
166772
|
-
|
166773
|
-
|
166774
|
-
|
166775
|
-
|
166776
|
-
|
166777
|
-
|
166778
|
-
|
166779
|
-
|
166780
|
-
|
166781
|
-
|
166782
|
-
|
166783
|
-
|
166784
|
-
|
166785
|
-
|
166786
|
-
|
166787
|
-
|
166788
|
-
|
166789
|
-
|
166790
|
-
|
166791
|
-
|
166792
|
-
|
166793
|
-
|
166794
|
-
|
166795
|
-
|
166796
|
-
|
166797
|
-
|
166798
|
-
message: string;
|
166799
|
-
error?: any;
|
166800
|
-
}>;
|
166801
|
-
404: import("zod").ZodObject<{
|
166802
|
-
message: import("zod").ZodString;
|
166803
|
-
error: import("zod").ZodAny;
|
166804
|
-
}, "strip", import("zod").ZodTypeAny, {
|
166805
|
-
message: string;
|
166806
|
-
error?: any;
|
166807
|
-
}, {
|
166808
|
-
message: string;
|
166809
|
-
error?: any;
|
166810
|
-
}>;
|
166811
|
-
422: import("zod").ZodObject<{
|
166812
|
-
message: import("zod").ZodString;
|
166813
|
-
error: import("zod").ZodAny;
|
166814
|
-
}, "strip", import("zod").ZodTypeAny, {
|
166815
|
-
message: string;
|
166816
|
-
error?: any;
|
166817
|
-
}, {
|
166818
|
-
message: string;
|
166819
|
-
error?: any;
|
166820
|
-
}>;
|
166821
|
-
};
|
166822
|
-
path: "notification/reset";
|
166823
|
-
};
|
166824
|
-
readNotification: {
|
166825
|
-
body: import("zod").ZodObject<{
|
166826
|
-
userId: import("zod").ZodString;
|
166827
|
-
}, "strip", import("zod").ZodTypeAny, {
|
166828
|
-
userId: string;
|
166829
|
-
}, {
|
166830
|
-
userId: string;
|
166831
|
-
}>;
|
166832
|
-
summary: "Mark a notification as read";
|
166833
|
-
method: "POST";
|
166834
|
-
pathParams: import("zod").ZodObject<{
|
166835
|
-
id: import("zod").ZodString;
|
166836
|
-
}, "strip", import("zod").ZodTypeAny, {
|
166837
|
-
id: string;
|
166838
|
-
}, {
|
166839
|
-
id: string;
|
166840
|
-
}>;
|
166841
|
-
responses: {
|
166842
|
-
201: import("zod").ZodObject<{
|
166843
|
-
requestId: import("zod").ZodString;
|
166844
|
-
data: import("zod").ZodObject<{
|
166845
|
-
notificationObjectId: import("zod").ZodString;
|
166846
|
-
notifierId: import("zod").ZodString;
|
166847
|
-
notificationObject: import("zod").ZodObject<{
|
166848
|
-
data: import("zod").ZodString;
|
166849
|
-
}, "strip", import("zod").ZodTypeAny, {
|
166850
|
-
data: string;
|
166851
|
-
}, {
|
166852
|
-
data: string;
|
168171
|
+
actor: {
|
168172
|
+
id: string;
|
168173
|
+
address: string | null;
|
168174
|
+
name: string;
|
168175
|
+
email: string;
|
168176
|
+
createdAt: Date;
|
168177
|
+
updatedAt: Date;
|
168178
|
+
deletedAt: Date | null;
|
168179
|
+
emailVerifiedAt: Date | null;
|
168180
|
+
password: string;
|
168181
|
+
phone: string | null;
|
168182
|
+
notificationCount: number | null;
|
168183
|
+
roles: {
|
168184
|
+
id: string;
|
168185
|
+
description: string | null;
|
168186
|
+
createdAt: Date;
|
168187
|
+
updatedAt: Date;
|
168188
|
+
deletedAt: Date | null;
|
168189
|
+
systemName: string;
|
168190
|
+
displayName: string;
|
168191
|
+
permissions: {
|
168192
|
+
id: string;
|
168193
|
+
description: string | null;
|
168194
|
+
createdAt: Date;
|
168195
|
+
updatedAt: Date;
|
168196
|
+
deletedAt: Date | null;
|
168197
|
+
systemName: string;
|
168198
|
+
displayName: string;
|
168199
|
+
}[];
|
168200
|
+
}[];
|
168201
|
+
extension: {
|
168202
|
+
id: string;
|
168203
|
+
createdAt: Date;
|
168204
|
+
updatedAt: Date;
|
168205
|
+
deletedAt: Date | null;
|
168206
|
+
userId: string | null;
|
168207
|
+
sipServerUrl: string;
|
168208
|
+
sipUserName: string;
|
168209
|
+
webphoneLoginUser: string;
|
168210
|
+
extensionId: string | null;
|
168211
|
+
extensionName: string;
|
168212
|
+
telephonySignature: string | null;
|
168213
|
+
};
|
168214
|
+
};
|
168215
|
+
readAt: Date;
|
168216
|
+
actorId: string;
|
168217
|
+
notificationObjectId: string;
|
168218
|
+
};
|
166853
168219
|
}>;
|
166854
168220
|
readAt: import("zod").ZodDate;
|
166855
168221
|
}, "strip", import("zod").ZodTypeAny, {
|
168222
|
+
id: string;
|
168223
|
+
createdAt: Date;
|
168224
|
+
updatedAt: Date;
|
168225
|
+
deletedAt: Date | null;
|
166856
168226
|
readAt: Date;
|
166857
168227
|
notificationObjectId: string;
|
166858
168228
|
notifierId: string;
|
166859
168229
|
notificationObject: {
|
166860
168230
|
data: string;
|
168231
|
+
id: string;
|
168232
|
+
createdAt: Date;
|
168233
|
+
updatedAt: Date;
|
168234
|
+
deletedAt: Date | null;
|
168235
|
+
notificationChange: {
|
168236
|
+
id: string;
|
168237
|
+
createdAt: Date;
|
168238
|
+
updatedAt: Date;
|
168239
|
+
deletedAt: Date | null;
|
168240
|
+
actor: {
|
168241
|
+
id: string;
|
168242
|
+
address: string | null;
|
168243
|
+
name: string;
|
168244
|
+
email: string;
|
168245
|
+
createdAt: Date;
|
168246
|
+
updatedAt: Date;
|
168247
|
+
deletedAt: Date | null;
|
168248
|
+
emailVerifiedAt: Date | null;
|
168249
|
+
password: string;
|
168250
|
+
phone: string | null;
|
168251
|
+
notificationCount: number | null;
|
168252
|
+
roles: {
|
168253
|
+
id: string;
|
168254
|
+
description: string | null;
|
168255
|
+
createdAt: Date;
|
168256
|
+
updatedAt: Date;
|
168257
|
+
deletedAt: Date | null;
|
168258
|
+
systemName: string;
|
168259
|
+
displayName: string;
|
168260
|
+
permissions: {
|
168261
|
+
id: string;
|
168262
|
+
description: string | null;
|
168263
|
+
createdAt: Date;
|
168264
|
+
updatedAt: Date;
|
168265
|
+
deletedAt: Date | null;
|
168266
|
+
systemName: string;
|
168267
|
+
displayName: string;
|
168268
|
+
}[];
|
168269
|
+
}[];
|
168270
|
+
extension: {
|
168271
|
+
id: string;
|
168272
|
+
createdAt: Date;
|
168273
|
+
updatedAt: Date;
|
168274
|
+
deletedAt: Date | null;
|
168275
|
+
userId: string | null;
|
168276
|
+
sipServerUrl: string;
|
168277
|
+
sipUserName: string;
|
168278
|
+
webphoneLoginUser: string;
|
168279
|
+
extensionId: string | null;
|
168280
|
+
extensionName: string;
|
168281
|
+
telephonySignature: string | null;
|
168282
|
+
};
|
168283
|
+
};
|
168284
|
+
readAt: Date;
|
168285
|
+
actorId: string;
|
168286
|
+
notificationObjectId: string;
|
168287
|
+
};
|
166861
168288
|
};
|
166862
168289
|
}, {
|
168290
|
+
id: string;
|
168291
|
+
createdAt: Date;
|
168292
|
+
updatedAt: Date;
|
168293
|
+
deletedAt: Date | null;
|
166863
168294
|
readAt: Date;
|
166864
168295
|
notificationObjectId: string;
|
166865
168296
|
notifierId: string;
|
166866
168297
|
notificationObject: {
|
166867
168298
|
data: string;
|
168299
|
+
id: string;
|
168300
|
+
createdAt: Date;
|
168301
|
+
updatedAt: Date;
|
168302
|
+
deletedAt: Date | null;
|
168303
|
+
notificationChange: {
|
168304
|
+
id: string;
|
168305
|
+
createdAt: Date;
|
168306
|
+
updatedAt: Date;
|
168307
|
+
deletedAt: Date | null;
|
168308
|
+
actor: {
|
168309
|
+
id: string;
|
168310
|
+
address: string | null;
|
168311
|
+
name: string;
|
168312
|
+
email: string;
|
168313
|
+
createdAt: Date;
|
168314
|
+
updatedAt: Date;
|
168315
|
+
deletedAt: Date | null;
|
168316
|
+
emailVerifiedAt: Date | null;
|
168317
|
+
password: string;
|
168318
|
+
phone: string | null;
|
168319
|
+
notificationCount: number | null;
|
168320
|
+
roles: {
|
168321
|
+
id: string;
|
168322
|
+
description: string | null;
|
168323
|
+
createdAt: Date;
|
168324
|
+
updatedAt: Date;
|
168325
|
+
deletedAt: Date | null;
|
168326
|
+
systemName: string;
|
168327
|
+
displayName: string;
|
168328
|
+
permissions: {
|
168329
|
+
id: string;
|
168330
|
+
description: string | null;
|
168331
|
+
createdAt: Date;
|
168332
|
+
updatedAt: Date;
|
168333
|
+
deletedAt: Date | null;
|
168334
|
+
systemName: string;
|
168335
|
+
displayName: string;
|
168336
|
+
}[];
|
168337
|
+
}[];
|
168338
|
+
extension: {
|
168339
|
+
id: string;
|
168340
|
+
createdAt: Date;
|
168341
|
+
updatedAt: Date;
|
168342
|
+
deletedAt: Date | null;
|
168343
|
+
userId: string | null;
|
168344
|
+
sipServerUrl: string;
|
168345
|
+
sipUserName: string;
|
168346
|
+
webphoneLoginUser: string;
|
168347
|
+
extensionId: string | null;
|
168348
|
+
extensionName: string;
|
168349
|
+
telephonySignature: string | null;
|
168350
|
+
};
|
168351
|
+
};
|
168352
|
+
readAt: Date;
|
168353
|
+
actorId: string;
|
168354
|
+
notificationObjectId: string;
|
168355
|
+
};
|
166868
168356
|
};
|
166869
168357
|
}>;
|
166870
168358
|
}, "strip", import("zod").ZodTypeAny, {
|
166871
168359
|
data: {
|
168360
|
+
id: string;
|
168361
|
+
createdAt: Date;
|
168362
|
+
updatedAt: Date;
|
168363
|
+
deletedAt: Date | null;
|
166872
168364
|
readAt: Date;
|
166873
168365
|
notificationObjectId: string;
|
166874
168366
|
notifierId: string;
|
166875
168367
|
notificationObject: {
|
166876
168368
|
data: string;
|
168369
|
+
id: string;
|
168370
|
+
createdAt: Date;
|
168371
|
+
updatedAt: Date;
|
168372
|
+
deletedAt: Date | null;
|
168373
|
+
notificationChange: {
|
168374
|
+
id: string;
|
168375
|
+
createdAt: Date;
|
168376
|
+
updatedAt: Date;
|
168377
|
+
deletedAt: Date | null;
|
168378
|
+
actor: {
|
168379
|
+
id: string;
|
168380
|
+
address: string | null;
|
168381
|
+
name: string;
|
168382
|
+
email: string;
|
168383
|
+
createdAt: Date;
|
168384
|
+
updatedAt: Date;
|
168385
|
+
deletedAt: Date | null;
|
168386
|
+
emailVerifiedAt: Date | null;
|
168387
|
+
password: string;
|
168388
|
+
phone: string | null;
|
168389
|
+
notificationCount: number | null;
|
168390
|
+
roles: {
|
168391
|
+
id: string;
|
168392
|
+
description: string | null;
|
168393
|
+
createdAt: Date;
|
168394
|
+
updatedAt: Date;
|
168395
|
+
deletedAt: Date | null;
|
168396
|
+
systemName: string;
|
168397
|
+
displayName: string;
|
168398
|
+
permissions: {
|
168399
|
+
id: string;
|
168400
|
+
description: string | null;
|
168401
|
+
createdAt: Date;
|
168402
|
+
updatedAt: Date;
|
168403
|
+
deletedAt: Date | null;
|
168404
|
+
systemName: string;
|
168405
|
+
displayName: string;
|
168406
|
+
}[];
|
168407
|
+
}[];
|
168408
|
+
extension: {
|
168409
|
+
id: string;
|
168410
|
+
createdAt: Date;
|
168411
|
+
updatedAt: Date;
|
168412
|
+
deletedAt: Date | null;
|
168413
|
+
userId: string | null;
|
168414
|
+
sipServerUrl: string;
|
168415
|
+
sipUserName: string;
|
168416
|
+
webphoneLoginUser: string;
|
168417
|
+
extensionId: string | null;
|
168418
|
+
extensionName: string;
|
168419
|
+
telephonySignature: string | null;
|
168420
|
+
};
|
168421
|
+
};
|
168422
|
+
readAt: Date;
|
168423
|
+
actorId: string;
|
168424
|
+
notificationObjectId: string;
|
168425
|
+
};
|
166877
168426
|
};
|
166878
168427
|
};
|
166879
168428
|
requestId: string;
|
166880
168429
|
}, {
|
166881
168430
|
data: {
|
168431
|
+
id: string;
|
168432
|
+
createdAt: Date;
|
168433
|
+
updatedAt: Date;
|
168434
|
+
deletedAt: Date | null;
|
166882
168435
|
readAt: Date;
|
166883
168436
|
notificationObjectId: string;
|
166884
168437
|
notifierId: string;
|
166885
168438
|
notificationObject: {
|
166886
168439
|
data: string;
|
168440
|
+
id: string;
|
168441
|
+
createdAt: Date;
|
168442
|
+
updatedAt: Date;
|
168443
|
+
deletedAt: Date | null;
|
168444
|
+
notificationChange: {
|
168445
|
+
id: string;
|
168446
|
+
createdAt: Date;
|
168447
|
+
updatedAt: Date;
|
168448
|
+
deletedAt: Date | null;
|
168449
|
+
actor: {
|
168450
|
+
id: string;
|
168451
|
+
address: string | null;
|
168452
|
+
name: string;
|
168453
|
+
email: string;
|
168454
|
+
createdAt: Date;
|
168455
|
+
updatedAt: Date;
|
168456
|
+
deletedAt: Date | null;
|
168457
|
+
emailVerifiedAt: Date | null;
|
168458
|
+
password: string;
|
168459
|
+
phone: string | null;
|
168460
|
+
notificationCount: number | null;
|
168461
|
+
roles: {
|
168462
|
+
id: string;
|
168463
|
+
description: string | null;
|
168464
|
+
createdAt: Date;
|
168465
|
+
updatedAt: Date;
|
168466
|
+
deletedAt: Date | null;
|
168467
|
+
systemName: string;
|
168468
|
+
displayName: string;
|
168469
|
+
permissions: {
|
168470
|
+
id: string;
|
168471
|
+
description: string | null;
|
168472
|
+
createdAt: Date;
|
168473
|
+
updatedAt: Date;
|
168474
|
+
deletedAt: Date | null;
|
168475
|
+
systemName: string;
|
168476
|
+
displayName: string;
|
168477
|
+
}[];
|
168478
|
+
}[];
|
168479
|
+
extension: {
|
168480
|
+
id: string;
|
168481
|
+
createdAt: Date;
|
168482
|
+
updatedAt: Date;
|
168483
|
+
deletedAt: Date | null;
|
168484
|
+
userId: string | null;
|
168485
|
+
sipServerUrl: string;
|
168486
|
+
sipUserName: string;
|
168487
|
+
webphoneLoginUser: string;
|
168488
|
+
extensionId: string | null;
|
168489
|
+
extensionName: string;
|
168490
|
+
telephonySignature: string | null;
|
168491
|
+
};
|
168492
|
+
};
|
168493
|
+
readAt: Date;
|
168494
|
+
actorId: string;
|
168495
|
+
notificationObjectId: string;
|
168496
|
+
};
|
166887
168497
|
};
|
166888
168498
|
};
|
166889
168499
|
requestId: string;
|