@kl1/contracts 1.2.66-uat → 1.2.67-uat
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/api-contracts/src/contract.d.ts +354 -119
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/index.d.ts +184 -37
- package/dist/api-contracts/src/dashboard/index.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/schema.d.ts +39 -18
- package/dist/api-contracts/src/dashboard/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/presence-status/index.d.ts +92 -44
- package/dist/api-contracts/src/presence-status/index.d.ts.map +1 -1
- package/dist/api-contracts/src/presence-status/schema.d.ts +13 -10
- package/dist/api-contracts/src/presence-status/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/presence-status/validation.d.ts +18 -6
- package/dist/api-contracts/src/presence-status/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +48 -24
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts +20 -10
- package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/user-presence-status-log/index.d.ts +32 -16
- package/dist/api-contracts/src/user-presence-status-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/user-presence-status-log/schema.d.ts +40 -20
- package/dist/api-contracts/src/user-presence-status-log/schema.d.ts.map +1 -1
- package/dist/index.js +60 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +60 -17
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -12827,31 +12827,26 @@ export declare const apiContract: {
|
|
|
12827
12827
|
200: import("zod").ZodObject<{
|
|
12828
12828
|
requestId: import("zod").ZodString;
|
|
12829
12829
|
incomingMessageCounts: import("zod").ZodArray<import("zod").ZodObject<{
|
|
12830
|
-
|
|
12831
|
-
|
|
12832
|
-
count: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12830
|
+
channelType: import("zod").ZodString;
|
|
12831
|
+
count: import("zod").ZodNumber;
|
|
12833
12832
|
}, "strip", import("zod").ZodTypeAny, {
|
|
12834
|
-
count:
|
|
12835
|
-
channelType: string
|
|
12836
|
-
channelName: string | null;
|
|
12833
|
+
count: number;
|
|
12834
|
+
channelType: string;
|
|
12837
12835
|
}, {
|
|
12838
|
-
count:
|
|
12839
|
-
channelType: string
|
|
12840
|
-
channelName: string | null;
|
|
12836
|
+
count: number;
|
|
12837
|
+
channelType: string;
|
|
12841
12838
|
}>, "many">;
|
|
12842
12839
|
}, "strip", import("zod").ZodTypeAny, {
|
|
12843
12840
|
requestId: string;
|
|
12844
12841
|
incomingMessageCounts: {
|
|
12845
|
-
count:
|
|
12846
|
-
channelType: string
|
|
12847
|
-
channelName: string | null;
|
|
12842
|
+
count: number;
|
|
12843
|
+
channelType: string;
|
|
12848
12844
|
}[];
|
|
12849
12845
|
}, {
|
|
12850
12846
|
requestId: string;
|
|
12851
12847
|
incomingMessageCounts: {
|
|
12852
|
-
count:
|
|
12853
|
-
channelType: string
|
|
12854
|
-
channelName: string | null;
|
|
12848
|
+
count: number;
|
|
12849
|
+
channelType: string;
|
|
12855
12850
|
}[];
|
|
12856
12851
|
}>;
|
|
12857
12852
|
401: import("zod").ZodObject<{
|
|
@@ -13386,27 +13381,27 @@ export declare const apiContract: {
|
|
|
13386
13381
|
openedRoomCount: import("zod").ZodNumber;
|
|
13387
13382
|
holdRoomCount: import("zod").ZodNumber;
|
|
13388
13383
|
closedRoomCount: import("zod").ZodNumber;
|
|
13389
|
-
averageFirstResponseTime: import("zod").
|
|
13390
|
-
averageResolutionTime: import("zod").
|
|
13391
|
-
totalHandledTime: import("zod").
|
|
13384
|
+
averageFirstResponseTime: import("zod").ZodString;
|
|
13385
|
+
averageResolutionTime: import("zod").ZodString;
|
|
13386
|
+
totalHandledTime: import("zod").ZodString;
|
|
13392
13387
|
}, "strip", import("zod").ZodTypeAny, {
|
|
13393
13388
|
name: string;
|
|
13394
13389
|
id: string;
|
|
13395
13390
|
closedRoomCount: number;
|
|
13396
13391
|
holdRoomCount: number;
|
|
13397
13392
|
openedRoomCount: number;
|
|
13398
|
-
averageFirstResponseTime:
|
|
13399
|
-
averageResolutionTime:
|
|
13400
|
-
totalHandledTime:
|
|
13393
|
+
averageFirstResponseTime: string;
|
|
13394
|
+
averageResolutionTime: string;
|
|
13395
|
+
totalHandledTime: string;
|
|
13401
13396
|
}, {
|
|
13402
13397
|
name: string;
|
|
13403
13398
|
id: string;
|
|
13404
13399
|
closedRoomCount: number;
|
|
13405
13400
|
holdRoomCount: number;
|
|
13406
13401
|
openedRoomCount: number;
|
|
13407
|
-
averageFirstResponseTime:
|
|
13408
|
-
averageResolutionTime:
|
|
13409
|
-
totalHandledTime:
|
|
13402
|
+
averageFirstResponseTime: string;
|
|
13403
|
+
averageResolutionTime: string;
|
|
13404
|
+
totalHandledTime: string;
|
|
13410
13405
|
}>, "many">>;
|
|
13411
13406
|
}, "strip", import("zod").ZodTypeAny, {
|
|
13412
13407
|
page: number;
|
|
@@ -13418,9 +13413,9 @@ export declare const apiContract: {
|
|
|
13418
13413
|
closedRoomCount: number;
|
|
13419
13414
|
holdRoomCount: number;
|
|
13420
13415
|
openedRoomCount: number;
|
|
13421
|
-
averageFirstResponseTime:
|
|
13422
|
-
averageResolutionTime:
|
|
13423
|
-
totalHandledTime:
|
|
13416
|
+
averageFirstResponseTime: string;
|
|
13417
|
+
averageResolutionTime: string;
|
|
13418
|
+
totalHandledTime: string;
|
|
13424
13419
|
}[] | null;
|
|
13425
13420
|
}, {
|
|
13426
13421
|
page: number;
|
|
@@ -13432,34 +13427,28 @@ export declare const apiContract: {
|
|
|
13432
13427
|
closedRoomCount: number;
|
|
13433
13428
|
holdRoomCount: number;
|
|
13434
13429
|
openedRoomCount: number;
|
|
13435
|
-
averageFirstResponseTime:
|
|
13436
|
-
averageResolutionTime:
|
|
13437
|
-
totalHandledTime:
|
|
13430
|
+
averageFirstResponseTime: string;
|
|
13431
|
+
averageResolutionTime: string;
|
|
13432
|
+
totalHandledTime: string;
|
|
13438
13433
|
}[] | null;
|
|
13439
13434
|
}>;
|
|
13440
13435
|
};
|
|
13441
13436
|
path: "dashboard/agent-message-statistics";
|
|
13442
13437
|
};
|
|
13443
|
-
|
|
13438
|
+
getUserCheckInLogsWithDays: {
|
|
13444
13439
|
method: "GET";
|
|
13445
13440
|
query: import("zod").ZodObject<{
|
|
13446
13441
|
automationQueueId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13447
|
-
selectedDate: import("zod").ZodString;
|
|
13448
|
-
channelIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
13449
13442
|
page: import("zod").ZodNumber;
|
|
13450
13443
|
pageSize: import("zod").ZodNumber;
|
|
13451
13444
|
}, "strip", import("zod").ZodTypeAny, {
|
|
13452
13445
|
page: number;
|
|
13453
13446
|
pageSize: number;
|
|
13454
|
-
selectedDate: string;
|
|
13455
13447
|
automationQueueId?: string | undefined;
|
|
13456
|
-
channelIds?: string[] | undefined;
|
|
13457
13448
|
}, {
|
|
13458
13449
|
page: number;
|
|
13459
13450
|
pageSize: number;
|
|
13460
|
-
selectedDate: string;
|
|
13461
13451
|
automationQueueId?: string | undefined;
|
|
13462
|
-
channelIds?: string[] | undefined;
|
|
13463
13452
|
}>;
|
|
13464
13453
|
responses: {
|
|
13465
13454
|
200: import("zod").ZodObject<{
|
|
@@ -13474,13 +13463,22 @@ export declare const apiContract: {
|
|
|
13474
13463
|
firstLoginTime: import("zod").ZodString;
|
|
13475
13464
|
lastLogoutTime: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13476
13465
|
totalLoginDuration: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13466
|
+
averageFirstResponseTime: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13467
|
+
averageResolutionTime: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13468
|
+
totalHandledTime: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13477
13469
|
}, "strip", import("zod").ZodTypeAny, {
|
|
13478
13470
|
userId: string;
|
|
13471
|
+
averageFirstResponseTime: string | null;
|
|
13472
|
+
averageResolutionTime: string | null;
|
|
13473
|
+
totalHandledTime: string | null;
|
|
13479
13474
|
firstLoginTime: string;
|
|
13480
13475
|
lastLogoutTime: string | null;
|
|
13481
13476
|
totalLoginDuration: string | null;
|
|
13482
13477
|
}, {
|
|
13483
13478
|
userId: string;
|
|
13479
|
+
averageFirstResponseTime: string | null;
|
|
13480
|
+
averageResolutionTime: string | null;
|
|
13481
|
+
totalHandledTime: string | null;
|
|
13484
13482
|
firstLoginTime: string;
|
|
13485
13483
|
lastLogoutTime: string | null;
|
|
13486
13484
|
totalLoginDuration: string | null;
|
|
@@ -13490,6 +13488,9 @@ export declare const apiContract: {
|
|
|
13490
13488
|
formattedDate: string;
|
|
13491
13489
|
userCheckInLogs: {
|
|
13492
13490
|
userId: string;
|
|
13491
|
+
averageFirstResponseTime: string | null;
|
|
13492
|
+
averageResolutionTime: string | null;
|
|
13493
|
+
totalHandledTime: string | null;
|
|
13493
13494
|
firstLoginTime: string;
|
|
13494
13495
|
lastLogoutTime: string | null;
|
|
13495
13496
|
totalLoginDuration: string | null;
|
|
@@ -13499,6 +13500,9 @@ export declare const apiContract: {
|
|
|
13499
13500
|
formattedDate: string;
|
|
13500
13501
|
userCheckInLogs: {
|
|
13501
13502
|
userId: string;
|
|
13503
|
+
averageFirstResponseTime: string | null;
|
|
13504
|
+
averageResolutionTime: string | null;
|
|
13505
|
+
totalHandledTime: string | null;
|
|
13502
13506
|
firstLoginTime: string;
|
|
13503
13507
|
lastLogoutTime: string | null;
|
|
13504
13508
|
totalLoginDuration: string | null;
|
|
@@ -13513,6 +13517,9 @@ export declare const apiContract: {
|
|
|
13513
13517
|
formattedDate: string;
|
|
13514
13518
|
userCheckInLogs: {
|
|
13515
13519
|
userId: string;
|
|
13520
|
+
averageFirstResponseTime: string | null;
|
|
13521
|
+
averageResolutionTime: string | null;
|
|
13522
|
+
totalHandledTime: string | null;
|
|
13516
13523
|
firstLoginTime: string;
|
|
13517
13524
|
lastLogoutTime: string | null;
|
|
13518
13525
|
totalLoginDuration: string | null;
|
|
@@ -13527,6 +13534,9 @@ export declare const apiContract: {
|
|
|
13527
13534
|
formattedDate: string;
|
|
13528
13535
|
userCheckInLogs: {
|
|
13529
13536
|
userId: string;
|
|
13537
|
+
averageFirstResponseTime: string | null;
|
|
13538
|
+
averageResolutionTime: string | null;
|
|
13539
|
+
totalHandledTime: string | null;
|
|
13530
13540
|
firstLoginTime: string;
|
|
13531
13541
|
lastLogoutTime: string | null;
|
|
13532
13542
|
totalLoginDuration: string | null;
|
|
@@ -13536,6 +13546,143 @@ export declare const apiContract: {
|
|
|
13536
13546
|
};
|
|
13537
13547
|
path: "dashboard/user-check-in-logs-with-days";
|
|
13538
13548
|
};
|
|
13549
|
+
getRoomStatusCountsByUserId: {
|
|
13550
|
+
method: "GET";
|
|
13551
|
+
query: import("zod").ZodObject<{
|
|
13552
|
+
userId: import("zod").ZodString;
|
|
13553
|
+
selectedDate: import("zod").ZodString;
|
|
13554
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
13555
|
+
userId: string;
|
|
13556
|
+
selectedDate: string;
|
|
13557
|
+
}, {
|
|
13558
|
+
userId: string;
|
|
13559
|
+
selectedDate: string;
|
|
13560
|
+
}>;
|
|
13561
|
+
responses: {
|
|
13562
|
+
200: import("zod").ZodObject<{
|
|
13563
|
+
requestId: import("zod").ZodString;
|
|
13564
|
+
assignedRoomCount: import("zod").ZodNumber;
|
|
13565
|
+
holdRoomCount: import("zod").ZodNumber;
|
|
13566
|
+
closedRoomCount: import("zod").ZodNumber;
|
|
13567
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
13568
|
+
requestId: string;
|
|
13569
|
+
closedRoomCount: number;
|
|
13570
|
+
assignedRoomCount: number;
|
|
13571
|
+
holdRoomCount: number;
|
|
13572
|
+
}, {
|
|
13573
|
+
requestId: string;
|
|
13574
|
+
closedRoomCount: number;
|
|
13575
|
+
assignedRoomCount: number;
|
|
13576
|
+
holdRoomCount: number;
|
|
13577
|
+
}>;
|
|
13578
|
+
};
|
|
13579
|
+
path: "dashboard/room-status-counts-by-user-id";
|
|
13580
|
+
};
|
|
13581
|
+
getUserCheckInLogsByUserId: {
|
|
13582
|
+
method: "GET";
|
|
13583
|
+
query: import("zod").ZodObject<{
|
|
13584
|
+
userId: import("zod").ZodString;
|
|
13585
|
+
selectedDate: import("zod").ZodString;
|
|
13586
|
+
pageSize: import("zod").ZodNumber;
|
|
13587
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
13588
|
+
pageSize: number;
|
|
13589
|
+
userId: string;
|
|
13590
|
+
selectedDate: string;
|
|
13591
|
+
}, {
|
|
13592
|
+
pageSize: number;
|
|
13593
|
+
userId: string;
|
|
13594
|
+
selectedDate: string;
|
|
13595
|
+
}>;
|
|
13596
|
+
responses: {
|
|
13597
|
+
200: import("zod").ZodObject<{
|
|
13598
|
+
requestId: import("zod").ZodString;
|
|
13599
|
+
userCheckInLogs: import("zod").ZodArray<import("zod").ZodObject<{
|
|
13600
|
+
formattedDate: import("zod").ZodString;
|
|
13601
|
+
day: import("zod").ZodDate;
|
|
13602
|
+
userCheckInLog: import("zod").ZodObject<{
|
|
13603
|
+
userId: import("zod").ZodString;
|
|
13604
|
+
firstLoginTime: import("zod").ZodString;
|
|
13605
|
+
lastLogoutTime: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13606
|
+
totalLoginDuration: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13607
|
+
averageFirstResponseTime: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13608
|
+
averageResolutionTime: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13609
|
+
totalHandledTime: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13610
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
13611
|
+
userId: string;
|
|
13612
|
+
averageFirstResponseTime: string | null;
|
|
13613
|
+
averageResolutionTime: string | null;
|
|
13614
|
+
totalHandledTime: string | null;
|
|
13615
|
+
firstLoginTime: string;
|
|
13616
|
+
lastLogoutTime: string | null;
|
|
13617
|
+
totalLoginDuration: string | null;
|
|
13618
|
+
}, {
|
|
13619
|
+
userId: string;
|
|
13620
|
+
averageFirstResponseTime: string | null;
|
|
13621
|
+
averageResolutionTime: string | null;
|
|
13622
|
+
totalHandledTime: string | null;
|
|
13623
|
+
firstLoginTime: string;
|
|
13624
|
+
lastLogoutTime: string | null;
|
|
13625
|
+
totalLoginDuration: string | null;
|
|
13626
|
+
}>;
|
|
13627
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
13628
|
+
day: Date;
|
|
13629
|
+
formattedDate: string;
|
|
13630
|
+
userCheckInLog: {
|
|
13631
|
+
userId: string;
|
|
13632
|
+
averageFirstResponseTime: string | null;
|
|
13633
|
+
averageResolutionTime: string | null;
|
|
13634
|
+
totalHandledTime: string | null;
|
|
13635
|
+
firstLoginTime: string;
|
|
13636
|
+
lastLogoutTime: string | null;
|
|
13637
|
+
totalLoginDuration: string | null;
|
|
13638
|
+
};
|
|
13639
|
+
}, {
|
|
13640
|
+
day: Date;
|
|
13641
|
+
formattedDate: string;
|
|
13642
|
+
userCheckInLog: {
|
|
13643
|
+
userId: string;
|
|
13644
|
+
averageFirstResponseTime: string | null;
|
|
13645
|
+
averageResolutionTime: string | null;
|
|
13646
|
+
totalHandledTime: string | null;
|
|
13647
|
+
firstLoginTime: string;
|
|
13648
|
+
lastLogoutTime: string | null;
|
|
13649
|
+
totalLoginDuration: string | null;
|
|
13650
|
+
};
|
|
13651
|
+
}>, "many">;
|
|
13652
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
13653
|
+
requestId: string;
|
|
13654
|
+
userCheckInLogs: {
|
|
13655
|
+
day: Date;
|
|
13656
|
+
formattedDate: string;
|
|
13657
|
+
userCheckInLog: {
|
|
13658
|
+
userId: string;
|
|
13659
|
+
averageFirstResponseTime: string | null;
|
|
13660
|
+
averageResolutionTime: string | null;
|
|
13661
|
+
totalHandledTime: string | null;
|
|
13662
|
+
firstLoginTime: string;
|
|
13663
|
+
lastLogoutTime: string | null;
|
|
13664
|
+
totalLoginDuration: string | null;
|
|
13665
|
+
};
|
|
13666
|
+
}[];
|
|
13667
|
+
}, {
|
|
13668
|
+
requestId: string;
|
|
13669
|
+
userCheckInLogs: {
|
|
13670
|
+
day: Date;
|
|
13671
|
+
formattedDate: string;
|
|
13672
|
+
userCheckInLog: {
|
|
13673
|
+
userId: string;
|
|
13674
|
+
averageFirstResponseTime: string | null;
|
|
13675
|
+
averageResolutionTime: string | null;
|
|
13676
|
+
totalHandledTime: string | null;
|
|
13677
|
+
firstLoginTime: string;
|
|
13678
|
+
lastLogoutTime: string | null;
|
|
13679
|
+
totalLoginDuration: string | null;
|
|
13680
|
+
};
|
|
13681
|
+
}[];
|
|
13682
|
+
}>;
|
|
13683
|
+
};
|
|
13684
|
+
path: "dashboard/user-check-in-logs-by-user-id";
|
|
13685
|
+
};
|
|
13539
13686
|
};
|
|
13540
13687
|
permission: {
|
|
13541
13688
|
getPermissions: {
|
|
@@ -34114,28 +34261,34 @@ export declare const apiContract: {
|
|
|
34114
34261
|
createdAt: import("zod").ZodDate;
|
|
34115
34262
|
updatedAt: import("zod").ZodDate;
|
|
34116
34263
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
34117
|
-
systemName: import("zod").
|
|
34264
|
+
systemName: import("zod").ZodString;
|
|
34118
34265
|
displayName: import("zod").ZodString;
|
|
34266
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
34119
34267
|
position: import("zod").ZodNumber;
|
|
34120
|
-
emoji: import("zod").ZodString
|
|
34268
|
+
emoji: import("zod").ZodNullable<import("zod").ZodString>;
|
|
34269
|
+
presenceStatusOption: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"receive_call">, import("zod").ZodLiteral<"do_not_receive_call">, import("zod").ZodLiteral<"receive_chat_message">, import("zod").ZodLiteral<"do_not_receive_chat_message">]>, "many">;
|
|
34121
34270
|
}, "strip", import("zod").ZodTypeAny, {
|
|
34122
|
-
emoji: string;
|
|
34271
|
+
emoji: string | null;
|
|
34123
34272
|
id: string;
|
|
34124
34273
|
position: number;
|
|
34274
|
+
description: string | null;
|
|
34125
34275
|
createdAt: Date;
|
|
34126
34276
|
updatedAt: Date;
|
|
34127
34277
|
deletedAt: Date | null;
|
|
34128
|
-
systemName:
|
|
34278
|
+
systemName: string;
|
|
34129
34279
|
displayName: string;
|
|
34280
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
34130
34281
|
}, {
|
|
34131
|
-
emoji: string;
|
|
34282
|
+
emoji: string | null;
|
|
34132
34283
|
id: string;
|
|
34133
34284
|
position: number;
|
|
34285
|
+
description: string | null;
|
|
34134
34286
|
createdAt: Date;
|
|
34135
34287
|
updatedAt: Date;
|
|
34136
34288
|
deletedAt: Date | null;
|
|
34137
|
-
systemName:
|
|
34289
|
+
systemName: string;
|
|
34138
34290
|
displayName: string;
|
|
34291
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
34139
34292
|
}>;
|
|
34140
34293
|
}, "strip", import("zod").ZodTypeAny, {
|
|
34141
34294
|
id: string;
|
|
@@ -34187,14 +34340,16 @@ export declare const apiContract: {
|
|
|
34187
34340
|
updatedAt: Date;
|
|
34188
34341
|
deletedAt: Date | null;
|
|
34189
34342
|
presenceStatus: {
|
|
34190
|
-
emoji: string;
|
|
34343
|
+
emoji: string | null;
|
|
34191
34344
|
id: string;
|
|
34192
34345
|
position: number;
|
|
34346
|
+
description: string | null;
|
|
34193
34347
|
createdAt: Date;
|
|
34194
34348
|
updatedAt: Date;
|
|
34195
34349
|
deletedAt: Date | null;
|
|
34196
|
-
systemName:
|
|
34350
|
+
systemName: string;
|
|
34197
34351
|
displayName: string;
|
|
34352
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
34198
34353
|
};
|
|
34199
34354
|
}, {
|
|
34200
34355
|
id: string;
|
|
@@ -34246,14 +34401,16 @@ export declare const apiContract: {
|
|
|
34246
34401
|
updatedAt: Date;
|
|
34247
34402
|
deletedAt: Date | null;
|
|
34248
34403
|
presenceStatus: {
|
|
34249
|
-
emoji: string;
|
|
34404
|
+
emoji: string | null;
|
|
34250
34405
|
id: string;
|
|
34251
34406
|
position: number;
|
|
34407
|
+
description: string | null;
|
|
34252
34408
|
createdAt: Date;
|
|
34253
34409
|
updatedAt: Date;
|
|
34254
34410
|
deletedAt: Date | null;
|
|
34255
|
-
systemName:
|
|
34411
|
+
systemName: string;
|
|
34256
34412
|
displayName: string;
|
|
34413
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
34257
34414
|
};
|
|
34258
34415
|
}>;
|
|
34259
34416
|
400: import("zod").ZodObject<{
|
|
@@ -34535,28 +34692,34 @@ export declare const apiContract: {
|
|
|
34535
34692
|
createdAt: import("zod").ZodDate;
|
|
34536
34693
|
updatedAt: import("zod").ZodDate;
|
|
34537
34694
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
34538
|
-
systemName: import("zod").
|
|
34695
|
+
systemName: import("zod").ZodString;
|
|
34539
34696
|
displayName: import("zod").ZodString;
|
|
34697
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
34540
34698
|
position: import("zod").ZodNumber;
|
|
34541
|
-
emoji: import("zod").ZodString
|
|
34699
|
+
emoji: import("zod").ZodNullable<import("zod").ZodString>;
|
|
34700
|
+
presenceStatusOption: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"receive_call">, import("zod").ZodLiteral<"do_not_receive_call">, import("zod").ZodLiteral<"receive_chat_message">, import("zod").ZodLiteral<"do_not_receive_chat_message">]>, "many">;
|
|
34542
34701
|
}, "strip", import("zod").ZodTypeAny, {
|
|
34543
|
-
emoji: string;
|
|
34702
|
+
emoji: string | null;
|
|
34544
34703
|
id: string;
|
|
34545
34704
|
position: number;
|
|
34705
|
+
description: string | null;
|
|
34546
34706
|
createdAt: Date;
|
|
34547
34707
|
updatedAt: Date;
|
|
34548
34708
|
deletedAt: Date | null;
|
|
34549
|
-
systemName:
|
|
34709
|
+
systemName: string;
|
|
34550
34710
|
displayName: string;
|
|
34711
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
34551
34712
|
}, {
|
|
34552
|
-
emoji: string;
|
|
34713
|
+
emoji: string | null;
|
|
34553
34714
|
id: string;
|
|
34554
34715
|
position: number;
|
|
34716
|
+
description: string | null;
|
|
34555
34717
|
createdAt: Date;
|
|
34556
34718
|
updatedAt: Date;
|
|
34557
34719
|
deletedAt: Date | null;
|
|
34558
|
-
systemName:
|
|
34720
|
+
systemName: string;
|
|
34559
34721
|
displayName: string;
|
|
34722
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
34560
34723
|
}>;
|
|
34561
34724
|
}, "strip", import("zod").ZodTypeAny, {
|
|
34562
34725
|
id: string;
|
|
@@ -34608,14 +34771,16 @@ export declare const apiContract: {
|
|
|
34608
34771
|
updatedAt: Date;
|
|
34609
34772
|
deletedAt: Date | null;
|
|
34610
34773
|
presenceStatus: {
|
|
34611
|
-
emoji: string;
|
|
34774
|
+
emoji: string | null;
|
|
34612
34775
|
id: string;
|
|
34613
34776
|
position: number;
|
|
34777
|
+
description: string | null;
|
|
34614
34778
|
createdAt: Date;
|
|
34615
34779
|
updatedAt: Date;
|
|
34616
34780
|
deletedAt: Date | null;
|
|
34617
|
-
systemName:
|
|
34781
|
+
systemName: string;
|
|
34618
34782
|
displayName: string;
|
|
34783
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
34619
34784
|
};
|
|
34620
34785
|
}, {
|
|
34621
34786
|
id: string;
|
|
@@ -34667,14 +34832,16 @@ export declare const apiContract: {
|
|
|
34667
34832
|
updatedAt: Date;
|
|
34668
34833
|
deletedAt: Date | null;
|
|
34669
34834
|
presenceStatus: {
|
|
34670
|
-
emoji: string;
|
|
34835
|
+
emoji: string | null;
|
|
34671
34836
|
id: string;
|
|
34672
34837
|
position: number;
|
|
34838
|
+
description: string | null;
|
|
34673
34839
|
createdAt: Date;
|
|
34674
34840
|
updatedAt: Date;
|
|
34675
34841
|
deletedAt: Date | null;
|
|
34676
|
-
systemName:
|
|
34842
|
+
systemName: string;
|
|
34677
34843
|
displayName: string;
|
|
34844
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
34678
34845
|
};
|
|
34679
34846
|
}>;
|
|
34680
34847
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -34729,14 +34896,16 @@ export declare const apiContract: {
|
|
|
34729
34896
|
updatedAt: Date;
|
|
34730
34897
|
deletedAt: Date | null;
|
|
34731
34898
|
presenceStatus: {
|
|
34732
|
-
emoji: string;
|
|
34899
|
+
emoji: string | null;
|
|
34733
34900
|
id: string;
|
|
34734
34901
|
position: number;
|
|
34902
|
+
description: string | null;
|
|
34735
34903
|
createdAt: Date;
|
|
34736
34904
|
updatedAt: Date;
|
|
34737
34905
|
deletedAt: Date | null;
|
|
34738
|
-
systemName:
|
|
34906
|
+
systemName: string;
|
|
34739
34907
|
displayName: string;
|
|
34908
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
34740
34909
|
};
|
|
34741
34910
|
};
|
|
34742
34911
|
}, {
|
|
@@ -34791,14 +34960,16 @@ export declare const apiContract: {
|
|
|
34791
34960
|
updatedAt: Date;
|
|
34792
34961
|
deletedAt: Date | null;
|
|
34793
34962
|
presenceStatus: {
|
|
34794
|
-
emoji: string;
|
|
34963
|
+
emoji: string | null;
|
|
34795
34964
|
id: string;
|
|
34796
34965
|
position: number;
|
|
34966
|
+
description: string | null;
|
|
34797
34967
|
createdAt: Date;
|
|
34798
34968
|
updatedAt: Date;
|
|
34799
34969
|
deletedAt: Date | null;
|
|
34800
|
-
systemName:
|
|
34970
|
+
systemName: string;
|
|
34801
34971
|
displayName: string;
|
|
34972
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
34802
34973
|
};
|
|
34803
34974
|
};
|
|
34804
34975
|
}>;
|
|
@@ -34923,24 +35094,28 @@ export declare const apiContract: {
|
|
|
34923
35094
|
updatedAt: Date;
|
|
34924
35095
|
deletedAt: Date | null;
|
|
34925
35096
|
previousPresenceStatus: {
|
|
34926
|
-
emoji: string;
|
|
35097
|
+
emoji: string | null;
|
|
34927
35098
|
id: string;
|
|
34928
35099
|
position: number;
|
|
35100
|
+
description: string | null;
|
|
34929
35101
|
createdAt: Date;
|
|
34930
35102
|
updatedAt: Date;
|
|
34931
35103
|
deletedAt: Date | null;
|
|
34932
|
-
systemName:
|
|
35104
|
+
systemName: string;
|
|
34933
35105
|
displayName: string;
|
|
35106
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
34934
35107
|
};
|
|
34935
35108
|
newPresenceStatus: {
|
|
34936
|
-
emoji: string;
|
|
35109
|
+
emoji: string | null;
|
|
34937
35110
|
id: string;
|
|
34938
35111
|
position: number;
|
|
35112
|
+
description: string | null;
|
|
34939
35113
|
createdAt: Date;
|
|
34940
35114
|
updatedAt: Date;
|
|
34941
35115
|
deletedAt: Date | null;
|
|
34942
|
-
systemName:
|
|
35116
|
+
systemName: string;
|
|
34943
35117
|
displayName: string;
|
|
35118
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
34944
35119
|
};
|
|
34945
35120
|
}, import("zod").ZodTypeDef, {
|
|
34946
35121
|
reason: string;
|
|
@@ -34993,24 +35168,28 @@ export declare const apiContract: {
|
|
|
34993
35168
|
updatedAt: Date;
|
|
34994
35169
|
deletedAt: Date | null;
|
|
34995
35170
|
previousPresenceStatus: {
|
|
34996
|
-
emoji: string;
|
|
35171
|
+
emoji: string | null;
|
|
34997
35172
|
id: string;
|
|
34998
35173
|
position: number;
|
|
35174
|
+
description: string | null;
|
|
34999
35175
|
createdAt: Date;
|
|
35000
35176
|
updatedAt: Date;
|
|
35001
35177
|
deletedAt: Date | null;
|
|
35002
|
-
systemName:
|
|
35178
|
+
systemName: string;
|
|
35003
35179
|
displayName: string;
|
|
35180
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
35004
35181
|
};
|
|
35005
35182
|
newPresenceStatus: {
|
|
35006
|
-
emoji: string;
|
|
35183
|
+
emoji: string | null;
|
|
35007
35184
|
id: string;
|
|
35008
35185
|
position: number;
|
|
35186
|
+
description: string | null;
|
|
35009
35187
|
createdAt: Date;
|
|
35010
35188
|
updatedAt: Date;
|
|
35011
35189
|
deletedAt: Date | null;
|
|
35012
|
-
systemName:
|
|
35190
|
+
systemName: string;
|
|
35013
35191
|
displayName: string;
|
|
35192
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
35014
35193
|
};
|
|
35015
35194
|
}>, "many">;
|
|
35016
35195
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -35065,24 +35244,28 @@ export declare const apiContract: {
|
|
|
35065
35244
|
updatedAt: Date;
|
|
35066
35245
|
deletedAt: Date | null;
|
|
35067
35246
|
previousPresenceStatus: {
|
|
35068
|
-
emoji: string;
|
|
35247
|
+
emoji: string | null;
|
|
35069
35248
|
id: string;
|
|
35070
35249
|
position: number;
|
|
35250
|
+
description: string | null;
|
|
35071
35251
|
createdAt: Date;
|
|
35072
35252
|
updatedAt: Date;
|
|
35073
35253
|
deletedAt: Date | null;
|
|
35074
|
-
systemName:
|
|
35254
|
+
systemName: string;
|
|
35075
35255
|
displayName: string;
|
|
35256
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
35076
35257
|
};
|
|
35077
35258
|
newPresenceStatus: {
|
|
35078
|
-
emoji: string;
|
|
35259
|
+
emoji: string | null;
|
|
35079
35260
|
id: string;
|
|
35080
35261
|
position: number;
|
|
35262
|
+
description: string | null;
|
|
35081
35263
|
createdAt: Date;
|
|
35082
35264
|
updatedAt: Date;
|
|
35083
35265
|
deletedAt: Date | null;
|
|
35084
|
-
systemName:
|
|
35266
|
+
systemName: string;
|
|
35085
35267
|
displayName: string;
|
|
35268
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
35086
35269
|
};
|
|
35087
35270
|
}[];
|
|
35088
35271
|
total: number;
|
|
@@ -35141,24 +35324,28 @@ export declare const apiContract: {
|
|
|
35141
35324
|
updatedAt: Date;
|
|
35142
35325
|
deletedAt: Date | null;
|
|
35143
35326
|
previousPresenceStatus: {
|
|
35144
|
-
emoji: string;
|
|
35327
|
+
emoji: string | null;
|
|
35145
35328
|
id: string;
|
|
35146
35329
|
position: number;
|
|
35330
|
+
description: string | null;
|
|
35147
35331
|
createdAt: Date;
|
|
35148
35332
|
updatedAt: Date;
|
|
35149
35333
|
deletedAt: Date | null;
|
|
35150
|
-
systemName:
|
|
35334
|
+
systemName: string;
|
|
35151
35335
|
displayName: string;
|
|
35336
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
35152
35337
|
};
|
|
35153
35338
|
newPresenceStatus: {
|
|
35154
|
-
emoji: string;
|
|
35339
|
+
emoji: string | null;
|
|
35155
35340
|
id: string;
|
|
35156
35341
|
position: number;
|
|
35342
|
+
description: string | null;
|
|
35157
35343
|
createdAt: Date;
|
|
35158
35344
|
updatedAt: Date;
|
|
35159
35345
|
deletedAt: Date | null;
|
|
35160
|
-
systemName:
|
|
35346
|
+
systemName: string;
|
|
35161
35347
|
displayName: string;
|
|
35348
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
35162
35349
|
};
|
|
35163
35350
|
}[];
|
|
35164
35351
|
total: number;
|
|
@@ -325060,51 +325247,61 @@ export declare const presenceStatusContract: {
|
|
|
325060
325247
|
createdAt: import("zod").ZodDate;
|
|
325061
325248
|
updatedAt: import("zod").ZodDate;
|
|
325062
325249
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
325063
|
-
systemName: import("zod").
|
|
325250
|
+
systemName: import("zod").ZodString;
|
|
325064
325251
|
displayName: import("zod").ZodString;
|
|
325252
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
325065
325253
|
position: import("zod").ZodNumber;
|
|
325066
|
-
emoji: import("zod").ZodString
|
|
325254
|
+
emoji: import("zod").ZodNullable<import("zod").ZodString>;
|
|
325255
|
+
presenceStatusOption: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"receive_call">, import("zod").ZodLiteral<"do_not_receive_call">, import("zod").ZodLiteral<"receive_chat_message">, import("zod").ZodLiteral<"do_not_receive_chat_message">]>, "many">;
|
|
325067
325256
|
}, "strip", import("zod").ZodTypeAny, {
|
|
325068
|
-
emoji: string;
|
|
325257
|
+
emoji: string | null;
|
|
325069
325258
|
id: string;
|
|
325070
325259
|
position: number;
|
|
325260
|
+
description: string | null;
|
|
325071
325261
|
createdAt: Date;
|
|
325072
325262
|
updatedAt: Date;
|
|
325073
325263
|
deletedAt: Date | null;
|
|
325074
|
-
systemName:
|
|
325264
|
+
systemName: string;
|
|
325075
325265
|
displayName: string;
|
|
325266
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325076
325267
|
}, {
|
|
325077
|
-
emoji: string;
|
|
325268
|
+
emoji: string | null;
|
|
325078
325269
|
id: string;
|
|
325079
325270
|
position: number;
|
|
325271
|
+
description: string | null;
|
|
325080
325272
|
createdAt: Date;
|
|
325081
325273
|
updatedAt: Date;
|
|
325082
325274
|
deletedAt: Date | null;
|
|
325083
|
-
systemName:
|
|
325275
|
+
systemName: string;
|
|
325084
325276
|
displayName: string;
|
|
325277
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325085
325278
|
}>, "many">;
|
|
325086
325279
|
}, "strip", import("zod").ZodTypeAny, {
|
|
325087
325280
|
data: {
|
|
325088
|
-
emoji: string;
|
|
325281
|
+
emoji: string | null;
|
|
325089
325282
|
id: string;
|
|
325090
325283
|
position: number;
|
|
325284
|
+
description: string | null;
|
|
325091
325285
|
createdAt: Date;
|
|
325092
325286
|
updatedAt: Date;
|
|
325093
325287
|
deletedAt: Date | null;
|
|
325094
|
-
systemName:
|
|
325288
|
+
systemName: string;
|
|
325095
325289
|
displayName: string;
|
|
325290
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325096
325291
|
}[];
|
|
325097
325292
|
total: number;
|
|
325098
325293
|
}, {
|
|
325099
325294
|
data: {
|
|
325100
|
-
emoji: string;
|
|
325295
|
+
emoji: string | null;
|
|
325101
325296
|
id: string;
|
|
325102
325297
|
position: number;
|
|
325298
|
+
description: string | null;
|
|
325103
325299
|
createdAt: Date;
|
|
325104
325300
|
updatedAt: Date;
|
|
325105
325301
|
deletedAt: Date | null;
|
|
325106
|
-
systemName:
|
|
325302
|
+
systemName: string;
|
|
325107
325303
|
displayName: string;
|
|
325304
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325108
325305
|
}[];
|
|
325109
325306
|
total: number;
|
|
325110
325307
|
}>;
|
|
@@ -325156,20 +325353,26 @@ export declare const presenceStatusContract: {
|
|
|
325156
325353
|
};
|
|
325157
325354
|
createPresenceStatus: {
|
|
325158
325355
|
body: import("zod").ZodObject<{
|
|
325159
|
-
systemName: import("zod").
|
|
325356
|
+
systemName: import("zod").ZodString;
|
|
325160
325357
|
displayName: import("zod").ZodString;
|
|
325358
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
325161
325359
|
position: import("zod").ZodNumber;
|
|
325162
325360
|
emoji: import("zod").ZodString;
|
|
325361
|
+
presenceStatusOption: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"receive_call">, import("zod").ZodLiteral<"do_not_receive_call">, import("zod").ZodLiteral<"receive_chat_message">, import("zod").ZodLiteral<"do_not_receive_chat_message">]>, "many">;
|
|
325163
325362
|
}, "strip", import("zod").ZodTypeAny, {
|
|
325164
325363
|
emoji: string;
|
|
325165
325364
|
position: number;
|
|
325166
|
-
systemName:
|
|
325365
|
+
systemName: string;
|
|
325167
325366
|
displayName: string;
|
|
325367
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325368
|
+
description?: string | undefined;
|
|
325168
325369
|
}, {
|
|
325169
325370
|
emoji: string;
|
|
325170
325371
|
position: number;
|
|
325171
|
-
systemName:
|
|
325372
|
+
systemName: string;
|
|
325172
325373
|
displayName: string;
|
|
325374
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325375
|
+
description?: string | undefined;
|
|
325173
325376
|
}>;
|
|
325174
325377
|
summary: "Create a new presence status.";
|
|
325175
325378
|
method: "POST";
|
|
@@ -325181,52 +325384,62 @@ export declare const presenceStatusContract: {
|
|
|
325181
325384
|
createdAt: import("zod").ZodDate;
|
|
325182
325385
|
updatedAt: import("zod").ZodDate;
|
|
325183
325386
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
325184
|
-
systemName: import("zod").
|
|
325387
|
+
systemName: import("zod").ZodString;
|
|
325185
325388
|
displayName: import("zod").ZodString;
|
|
325389
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
325186
325390
|
position: import("zod").ZodNumber;
|
|
325187
|
-
emoji: import("zod").ZodString
|
|
325391
|
+
emoji: import("zod").ZodNullable<import("zod").ZodString>;
|
|
325392
|
+
presenceStatusOption: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"receive_call">, import("zod").ZodLiteral<"do_not_receive_call">, import("zod").ZodLiteral<"receive_chat_message">, import("zod").ZodLiteral<"do_not_receive_chat_message">]>, "many">;
|
|
325188
325393
|
}, "strip", import("zod").ZodTypeAny, {
|
|
325189
|
-
emoji: string;
|
|
325394
|
+
emoji: string | null;
|
|
325190
325395
|
id: string;
|
|
325191
325396
|
position: number;
|
|
325397
|
+
description: string | null;
|
|
325192
325398
|
createdAt: Date;
|
|
325193
325399
|
updatedAt: Date;
|
|
325194
325400
|
deletedAt: Date | null;
|
|
325195
|
-
systemName:
|
|
325401
|
+
systemName: string;
|
|
325196
325402
|
displayName: string;
|
|
325403
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325197
325404
|
}, {
|
|
325198
|
-
emoji: string;
|
|
325405
|
+
emoji: string | null;
|
|
325199
325406
|
id: string;
|
|
325200
325407
|
position: number;
|
|
325408
|
+
description: string | null;
|
|
325201
325409
|
createdAt: Date;
|
|
325202
325410
|
updatedAt: Date;
|
|
325203
325411
|
deletedAt: Date | null;
|
|
325204
|
-
systemName:
|
|
325412
|
+
systemName: string;
|
|
325205
325413
|
displayName: string;
|
|
325414
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325206
325415
|
}>;
|
|
325207
325416
|
}, "strip", import("zod").ZodTypeAny, {
|
|
325208
325417
|
requestId: string;
|
|
325209
325418
|
presenceStatus: {
|
|
325210
|
-
emoji: string;
|
|
325419
|
+
emoji: string | null;
|
|
325211
325420
|
id: string;
|
|
325212
325421
|
position: number;
|
|
325422
|
+
description: string | null;
|
|
325213
325423
|
createdAt: Date;
|
|
325214
325424
|
updatedAt: Date;
|
|
325215
325425
|
deletedAt: Date | null;
|
|
325216
|
-
systemName:
|
|
325426
|
+
systemName: string;
|
|
325217
325427
|
displayName: string;
|
|
325428
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325218
325429
|
};
|
|
325219
325430
|
}, {
|
|
325220
325431
|
requestId: string;
|
|
325221
325432
|
presenceStatus: {
|
|
325222
|
-
emoji: string;
|
|
325433
|
+
emoji: string | null;
|
|
325223
325434
|
id: string;
|
|
325224
325435
|
position: number;
|
|
325436
|
+
description: string | null;
|
|
325225
325437
|
createdAt: Date;
|
|
325226
325438
|
updatedAt: Date;
|
|
325227
325439
|
deletedAt: Date | null;
|
|
325228
|
-
systemName:
|
|
325440
|
+
systemName: string;
|
|
325229
325441
|
displayName: string;
|
|
325442
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325230
325443
|
};
|
|
325231
325444
|
}>;
|
|
325232
325445
|
400: import("zod").ZodObject<{
|
|
@@ -325311,28 +325524,34 @@ export declare const presenceStatusContract: {
|
|
|
325311
325524
|
createdAt: import("zod").ZodDate;
|
|
325312
325525
|
updatedAt: import("zod").ZodDate;
|
|
325313
325526
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
325314
|
-
systemName: import("zod").
|
|
325527
|
+
systemName: import("zod").ZodString;
|
|
325315
325528
|
displayName: import("zod").ZodString;
|
|
325529
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
325316
325530
|
position: import("zod").ZodNumber;
|
|
325317
|
-
emoji: import("zod").ZodString
|
|
325531
|
+
emoji: import("zod").ZodNullable<import("zod").ZodString>;
|
|
325532
|
+
presenceStatusOption: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"receive_call">, import("zod").ZodLiteral<"do_not_receive_call">, import("zod").ZodLiteral<"receive_chat_message">, import("zod").ZodLiteral<"do_not_receive_chat_message">]>, "many">;
|
|
325318
325533
|
}, "strip", import("zod").ZodTypeAny, {
|
|
325319
|
-
emoji: string;
|
|
325534
|
+
emoji: string | null;
|
|
325320
325535
|
id: string;
|
|
325321
325536
|
position: number;
|
|
325537
|
+
description: string | null;
|
|
325322
325538
|
createdAt: Date;
|
|
325323
325539
|
updatedAt: Date;
|
|
325324
325540
|
deletedAt: Date | null;
|
|
325325
|
-
systemName:
|
|
325541
|
+
systemName: string;
|
|
325326
325542
|
displayName: string;
|
|
325543
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325327
325544
|
}, {
|
|
325328
|
-
emoji: string;
|
|
325545
|
+
emoji: string | null;
|
|
325329
325546
|
id: string;
|
|
325330
325547
|
position: number;
|
|
325548
|
+
description: string | null;
|
|
325331
325549
|
createdAt: Date;
|
|
325332
325550
|
updatedAt: Date;
|
|
325333
325551
|
deletedAt: Date | null;
|
|
325334
|
-
systemName:
|
|
325552
|
+
systemName: string;
|
|
325335
325553
|
displayName: string;
|
|
325554
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325336
325555
|
}>;
|
|
325337
325556
|
400: import("zod").ZodObject<{
|
|
325338
325557
|
message: import("zod").ZodString;
|
|
@@ -325402,20 +325621,26 @@ export declare const presenceStatusContract: {
|
|
|
325402
325621
|
};
|
|
325403
325622
|
updatePresenceStatus: {
|
|
325404
325623
|
body: import("zod").ZodObject<{
|
|
325405
|
-
systemName: import("zod").
|
|
325624
|
+
systemName: import("zod").ZodString;
|
|
325406
325625
|
displayName: import("zod").ZodString;
|
|
325626
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
325407
325627
|
position: import("zod").ZodNumber;
|
|
325408
325628
|
emoji: import("zod").ZodString;
|
|
325629
|
+
presenceStatusOption: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"receive_call">, import("zod").ZodLiteral<"do_not_receive_call">, import("zod").ZodLiteral<"receive_chat_message">, import("zod").ZodLiteral<"do_not_receive_chat_message">]>, "many">;
|
|
325409
325630
|
}, "strip", import("zod").ZodTypeAny, {
|
|
325410
325631
|
emoji: string;
|
|
325411
325632
|
position: number;
|
|
325412
|
-
systemName:
|
|
325633
|
+
systemName: string;
|
|
325413
325634
|
displayName: string;
|
|
325635
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325636
|
+
description?: string | undefined;
|
|
325414
325637
|
}, {
|
|
325415
325638
|
emoji: string;
|
|
325416
325639
|
position: number;
|
|
325417
|
-
systemName:
|
|
325640
|
+
systemName: string;
|
|
325418
325641
|
displayName: string;
|
|
325642
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325643
|
+
description?: string | undefined;
|
|
325419
325644
|
}>;
|
|
325420
325645
|
summary: "Update a presence status.";
|
|
325421
325646
|
method: "PATCH";
|
|
@@ -325434,52 +325659,62 @@ export declare const presenceStatusContract: {
|
|
|
325434
325659
|
createdAt: import("zod").ZodDate;
|
|
325435
325660
|
updatedAt: import("zod").ZodDate;
|
|
325436
325661
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
325437
|
-
systemName: import("zod").
|
|
325662
|
+
systemName: import("zod").ZodString;
|
|
325438
325663
|
displayName: import("zod").ZodString;
|
|
325664
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
325439
325665
|
position: import("zod").ZodNumber;
|
|
325440
|
-
emoji: import("zod").ZodString
|
|
325666
|
+
emoji: import("zod").ZodNullable<import("zod").ZodString>;
|
|
325667
|
+
presenceStatusOption: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"receive_call">, import("zod").ZodLiteral<"do_not_receive_call">, import("zod").ZodLiteral<"receive_chat_message">, import("zod").ZodLiteral<"do_not_receive_chat_message">]>, "many">;
|
|
325441
325668
|
}, "strip", import("zod").ZodTypeAny, {
|
|
325442
|
-
emoji: string;
|
|
325669
|
+
emoji: string | null;
|
|
325443
325670
|
id: string;
|
|
325444
325671
|
position: number;
|
|
325672
|
+
description: string | null;
|
|
325445
325673
|
createdAt: Date;
|
|
325446
325674
|
updatedAt: Date;
|
|
325447
325675
|
deletedAt: Date | null;
|
|
325448
|
-
systemName:
|
|
325676
|
+
systemName: string;
|
|
325449
325677
|
displayName: string;
|
|
325678
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325450
325679
|
}, {
|
|
325451
|
-
emoji: string;
|
|
325680
|
+
emoji: string | null;
|
|
325452
325681
|
id: string;
|
|
325453
325682
|
position: number;
|
|
325683
|
+
description: string | null;
|
|
325454
325684
|
createdAt: Date;
|
|
325455
325685
|
updatedAt: Date;
|
|
325456
325686
|
deletedAt: Date | null;
|
|
325457
|
-
systemName:
|
|
325687
|
+
systemName: string;
|
|
325458
325688
|
displayName: string;
|
|
325689
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325459
325690
|
}>;
|
|
325460
325691
|
}, "strip", import("zod").ZodTypeAny, {
|
|
325461
325692
|
requestId: string;
|
|
325462
325693
|
presenceStatus: {
|
|
325463
|
-
emoji: string;
|
|
325694
|
+
emoji: string | null;
|
|
325464
325695
|
id: string;
|
|
325465
325696
|
position: number;
|
|
325697
|
+
description: string | null;
|
|
325466
325698
|
createdAt: Date;
|
|
325467
325699
|
updatedAt: Date;
|
|
325468
325700
|
deletedAt: Date | null;
|
|
325469
|
-
systemName:
|
|
325701
|
+
systemName: string;
|
|
325470
325702
|
displayName: string;
|
|
325703
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325471
325704
|
};
|
|
325472
325705
|
}, {
|
|
325473
325706
|
requestId: string;
|
|
325474
325707
|
presenceStatus: {
|
|
325475
|
-
emoji: string;
|
|
325708
|
+
emoji: string | null;
|
|
325476
325709
|
id: string;
|
|
325477
325710
|
position: number;
|
|
325711
|
+
description: string | null;
|
|
325478
325712
|
createdAt: Date;
|
|
325479
325713
|
updatedAt: Date;
|
|
325480
325714
|
deletedAt: Date | null;
|
|
325481
|
-
systemName:
|
|
325715
|
+
systemName: string;
|
|
325482
325716
|
displayName: string;
|
|
325717
|
+
presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
|
|
325483
325718
|
};
|
|
325484
325719
|
}>;
|
|
325485
325720
|
400: import("zod").ZodObject<{
|