@kl1/contracts 1.1.82-uat → 1.1.83-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 +609 -107
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/presence-status/index.d.ts +559 -0
- package/dist/api-contracts/src/presence-status/index.d.ts.map +1 -0
- package/dist/api-contracts/src/presence-status/schema.d.ts +31 -0
- package/dist/api-contracts/src/presence-status/schema.d.ts.map +1 -0
- package/dist/api-contracts/src/presence-status/validation.d.ts +28 -0
- package/dist/api-contracts/src/presence-status/validation.d.ts.map +1 -0
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +40 -99
- 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 +12 -31
- package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/api-contracts/src/user-presence-status-log/index.d.ts +16 -8
- 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 +24 -16
- package/dist/api-contracts/src/user-presence-status-log/schema.d.ts.map +1 -1
- package/dist/index.js +1513 -1400
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1512 -1400
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -27520,79 +27520,6 @@ export declare const apiContract: {
|
|
|
27520
27520
|
};
|
|
27521
27521
|
};
|
|
27522
27522
|
agentPresenceStatus: {
|
|
27523
|
-
getAllStatus: {
|
|
27524
|
-
summary: "Get all telephony presence status list.";
|
|
27525
|
-
method: "GET";
|
|
27526
|
-
path: "telephony/presence_status";
|
|
27527
|
-
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
27528
|
-
'x-tenant': import("zod").ZodString;
|
|
27529
|
-
authorization: import("zod").ZodString;
|
|
27530
|
-
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
|
27531
|
-
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
|
27532
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
27533
|
-
'x-tenant': string;
|
|
27534
|
-
authorization: string;
|
|
27535
|
-
'x-client-timezone': string;
|
|
27536
|
-
'x-code'?: string | undefined;
|
|
27537
|
-
}, {
|
|
27538
|
-
'x-tenant': string;
|
|
27539
|
-
authorization: string;
|
|
27540
|
-
'x-code'?: string | undefined;
|
|
27541
|
-
'x-client-timezone'?: string | undefined;
|
|
27542
|
-
}>>>;
|
|
27543
|
-
responses: {
|
|
27544
|
-
200: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
27545
|
-
id: import("zod").ZodString;
|
|
27546
|
-
createdAt: import("zod").ZodDate;
|
|
27547
|
-
updatedAt: import("zod").ZodDate;
|
|
27548
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
27549
|
-
}, {
|
|
27550
|
-
status: import("zod").ZodString;
|
|
27551
|
-
description: import("zod").ZodString;
|
|
27552
|
-
}>, "strip", import("zod").ZodTypeAny, {
|
|
27553
|
-
id: string;
|
|
27554
|
-
description: string;
|
|
27555
|
-
status: string;
|
|
27556
|
-
createdAt: Date;
|
|
27557
|
-
updatedAt: Date;
|
|
27558
|
-
deletedAt: Date | null;
|
|
27559
|
-
}, {
|
|
27560
|
-
id: string;
|
|
27561
|
-
description: string;
|
|
27562
|
-
status: string;
|
|
27563
|
-
createdAt: Date;
|
|
27564
|
-
updatedAt: Date;
|
|
27565
|
-
deletedAt: Date | null;
|
|
27566
|
-
}>, "many">;
|
|
27567
|
-
400: import("zod").ZodObject<{
|
|
27568
|
-
message: import("zod").ZodString;
|
|
27569
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
27570
|
-
message: string;
|
|
27571
|
-
}, {
|
|
27572
|
-
message: string;
|
|
27573
|
-
}>;
|
|
27574
|
-
401: import("zod").ZodObject<{
|
|
27575
|
-
message: import("zod").ZodString;
|
|
27576
|
-
error: import("zod").ZodAny;
|
|
27577
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
27578
|
-
message: string;
|
|
27579
|
-
error?: any;
|
|
27580
|
-
}, {
|
|
27581
|
-
message: string;
|
|
27582
|
-
error?: any;
|
|
27583
|
-
}>;
|
|
27584
|
-
500: import("zod").ZodObject<{
|
|
27585
|
-
message: import("zod").ZodString;
|
|
27586
|
-
error: import("zod").ZodAny;
|
|
27587
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
27588
|
-
message: string;
|
|
27589
|
-
error?: any;
|
|
27590
|
-
}, {
|
|
27591
|
-
message: string;
|
|
27592
|
-
error?: any;
|
|
27593
|
-
}>;
|
|
27594
|
-
};
|
|
27595
|
-
};
|
|
27596
27523
|
getAllAgentStatus: {
|
|
27597
27524
|
summary: "Get all user presence status list.";
|
|
27598
27525
|
method: "GET";
|
|
@@ -27824,24 +27751,26 @@ export declare const apiContract: {
|
|
|
27824
27751
|
telephonySignature: string | null;
|
|
27825
27752
|
};
|
|
27826
27753
|
}>;
|
|
27827
|
-
presenceStatus: import("zod").ZodObject<
|
|
27754
|
+
presenceStatus: import("zod").ZodObject<{
|
|
27828
27755
|
id: import("zod").ZodString;
|
|
27829
27756
|
createdAt: import("zod").ZodDate;
|
|
27830
27757
|
updatedAt: import("zod").ZodDate;
|
|
27831
27758
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
27832
|
-
}, {
|
|
27833
27759
|
status: import("zod").ZodString;
|
|
27834
|
-
description: import("zod").
|
|
27835
|
-
|
|
27760
|
+
description: import("zod").ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
27761
|
+
position: import("zod").ZodNumber;
|
|
27762
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
27836
27763
|
id: string;
|
|
27837
|
-
|
|
27764
|
+
position: number;
|
|
27765
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
27838
27766
|
status: string;
|
|
27839
27767
|
createdAt: Date;
|
|
27840
27768
|
updatedAt: Date;
|
|
27841
27769
|
deletedAt: Date | null;
|
|
27842
27770
|
}, {
|
|
27843
27771
|
id: string;
|
|
27844
|
-
|
|
27772
|
+
position: number;
|
|
27773
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
27845
27774
|
status: string;
|
|
27846
27775
|
createdAt: Date;
|
|
27847
27776
|
updatedAt: Date;
|
|
@@ -27899,7 +27828,8 @@ export declare const apiContract: {
|
|
|
27899
27828
|
deletedAt: Date | null;
|
|
27900
27829
|
presenceStatus: {
|
|
27901
27830
|
id: string;
|
|
27902
|
-
|
|
27831
|
+
position: number;
|
|
27832
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
27903
27833
|
status: string;
|
|
27904
27834
|
createdAt: Date;
|
|
27905
27835
|
updatedAt: Date;
|
|
@@ -27957,7 +27887,8 @@ export declare const apiContract: {
|
|
|
27957
27887
|
deletedAt: Date | null;
|
|
27958
27888
|
presenceStatus: {
|
|
27959
27889
|
id: string;
|
|
27960
|
-
|
|
27890
|
+
position: number;
|
|
27891
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
27961
27892
|
status: string;
|
|
27962
27893
|
createdAt: Date;
|
|
27963
27894
|
updatedAt: Date;
|
|
@@ -28232,24 +28163,26 @@ export declare const apiContract: {
|
|
|
28232
28163
|
telephonySignature: string | null;
|
|
28233
28164
|
};
|
|
28234
28165
|
}>;
|
|
28235
|
-
presenceStatus: import("zod").ZodObject<
|
|
28166
|
+
presenceStatus: import("zod").ZodObject<{
|
|
28236
28167
|
id: import("zod").ZodString;
|
|
28237
28168
|
createdAt: import("zod").ZodDate;
|
|
28238
28169
|
updatedAt: import("zod").ZodDate;
|
|
28239
28170
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
28240
|
-
}, {
|
|
28241
28171
|
status: import("zod").ZodString;
|
|
28242
|
-
description: import("zod").
|
|
28243
|
-
|
|
28172
|
+
description: import("zod").ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
28173
|
+
position: import("zod").ZodNumber;
|
|
28174
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
28244
28175
|
id: string;
|
|
28245
|
-
|
|
28176
|
+
position: number;
|
|
28177
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
28246
28178
|
status: string;
|
|
28247
28179
|
createdAt: Date;
|
|
28248
28180
|
updatedAt: Date;
|
|
28249
28181
|
deletedAt: Date | null;
|
|
28250
28182
|
}, {
|
|
28251
28183
|
id: string;
|
|
28252
|
-
|
|
28184
|
+
position: number;
|
|
28185
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
28253
28186
|
status: string;
|
|
28254
28187
|
createdAt: Date;
|
|
28255
28188
|
updatedAt: Date;
|
|
@@ -28307,7 +28240,8 @@ export declare const apiContract: {
|
|
|
28307
28240
|
deletedAt: Date | null;
|
|
28308
28241
|
presenceStatus: {
|
|
28309
28242
|
id: string;
|
|
28310
|
-
|
|
28243
|
+
position: number;
|
|
28244
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
28311
28245
|
status: string;
|
|
28312
28246
|
createdAt: Date;
|
|
28313
28247
|
updatedAt: Date;
|
|
@@ -28365,7 +28299,8 @@ export declare const apiContract: {
|
|
|
28365
28299
|
deletedAt: Date | null;
|
|
28366
28300
|
presenceStatus: {
|
|
28367
28301
|
id: string;
|
|
28368
|
-
|
|
28302
|
+
position: number;
|
|
28303
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
28369
28304
|
status: string;
|
|
28370
28305
|
createdAt: Date;
|
|
28371
28306
|
updatedAt: Date;
|
|
@@ -28652,24 +28587,26 @@ export declare const apiContract: {
|
|
|
28652
28587
|
telephonySignature: string | null;
|
|
28653
28588
|
};
|
|
28654
28589
|
}>;
|
|
28655
|
-
presenceStatus: import("zod").ZodObject<
|
|
28590
|
+
presenceStatus: import("zod").ZodObject<{
|
|
28656
28591
|
id: import("zod").ZodString;
|
|
28657
28592
|
createdAt: import("zod").ZodDate;
|
|
28658
28593
|
updatedAt: import("zod").ZodDate;
|
|
28659
28594
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
28660
|
-
}, {
|
|
28661
28595
|
status: import("zod").ZodString;
|
|
28662
|
-
description: import("zod").
|
|
28663
|
-
|
|
28596
|
+
description: import("zod").ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
28597
|
+
position: import("zod").ZodNumber;
|
|
28598
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
28664
28599
|
id: string;
|
|
28665
|
-
|
|
28600
|
+
position: number;
|
|
28601
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
28666
28602
|
status: string;
|
|
28667
28603
|
createdAt: Date;
|
|
28668
28604
|
updatedAt: Date;
|
|
28669
28605
|
deletedAt: Date | null;
|
|
28670
28606
|
}, {
|
|
28671
28607
|
id: string;
|
|
28672
|
-
|
|
28608
|
+
position: number;
|
|
28609
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
28673
28610
|
status: string;
|
|
28674
28611
|
createdAt: Date;
|
|
28675
28612
|
updatedAt: Date;
|
|
@@ -28727,7 +28664,8 @@ export declare const apiContract: {
|
|
|
28727
28664
|
deletedAt: Date | null;
|
|
28728
28665
|
presenceStatus: {
|
|
28729
28666
|
id: string;
|
|
28730
|
-
|
|
28667
|
+
position: number;
|
|
28668
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
28731
28669
|
status: string;
|
|
28732
28670
|
createdAt: Date;
|
|
28733
28671
|
updatedAt: Date;
|
|
@@ -28785,7 +28723,8 @@ export declare const apiContract: {
|
|
|
28785
28723
|
deletedAt: Date | null;
|
|
28786
28724
|
presenceStatus: {
|
|
28787
28725
|
id: string;
|
|
28788
|
-
|
|
28726
|
+
position: number;
|
|
28727
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
28789
28728
|
status: string;
|
|
28790
28729
|
createdAt: Date;
|
|
28791
28730
|
updatedAt: Date;
|
|
@@ -28846,7 +28785,8 @@ export declare const apiContract: {
|
|
|
28846
28785
|
deletedAt: Date | null;
|
|
28847
28786
|
presenceStatus: {
|
|
28848
28787
|
id: string;
|
|
28849
|
-
|
|
28788
|
+
position: number;
|
|
28789
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
28850
28790
|
status: string;
|
|
28851
28791
|
createdAt: Date;
|
|
28852
28792
|
updatedAt: Date;
|
|
@@ -28907,7 +28847,8 @@ export declare const apiContract: {
|
|
|
28907
28847
|
deletedAt: Date | null;
|
|
28908
28848
|
presenceStatus: {
|
|
28909
28849
|
id: string;
|
|
28910
|
-
|
|
28850
|
+
position: number;
|
|
28851
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
28911
28852
|
status: string;
|
|
28912
28853
|
createdAt: Date;
|
|
28913
28854
|
updatedAt: Date;
|
|
@@ -29039,7 +28980,8 @@ export declare const apiContract: {
|
|
|
29039
28980
|
deletedAt: Date | null;
|
|
29040
28981
|
previousPresenceStatus: {
|
|
29041
28982
|
id: string;
|
|
29042
|
-
|
|
28983
|
+
position: number;
|
|
28984
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
29043
28985
|
status: string;
|
|
29044
28986
|
createdAt: Date;
|
|
29045
28987
|
updatedAt: Date;
|
|
@@ -29047,7 +28989,8 @@ export declare const apiContract: {
|
|
|
29047
28989
|
};
|
|
29048
28990
|
newPresenceStatus: {
|
|
29049
28991
|
id: string;
|
|
29050
|
-
|
|
28992
|
+
position: number;
|
|
28993
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
29051
28994
|
status: string;
|
|
29052
28995
|
createdAt: Date;
|
|
29053
28996
|
updatedAt: Date;
|
|
@@ -29105,7 +29048,8 @@ export declare const apiContract: {
|
|
|
29105
29048
|
deletedAt: Date | null;
|
|
29106
29049
|
previousPresenceStatus: {
|
|
29107
29050
|
id: string;
|
|
29108
|
-
|
|
29051
|
+
position: number;
|
|
29052
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
29109
29053
|
status: string;
|
|
29110
29054
|
createdAt: Date;
|
|
29111
29055
|
updatedAt: Date;
|
|
@@ -29113,7 +29057,8 @@ export declare const apiContract: {
|
|
|
29113
29057
|
};
|
|
29114
29058
|
newPresenceStatus: {
|
|
29115
29059
|
id: string;
|
|
29116
|
-
|
|
29060
|
+
position: number;
|
|
29061
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
29117
29062
|
status: string;
|
|
29118
29063
|
createdAt: Date;
|
|
29119
29064
|
updatedAt: Date;
|
|
@@ -29173,7 +29118,8 @@ export declare const apiContract: {
|
|
|
29173
29118
|
deletedAt: Date | null;
|
|
29174
29119
|
previousPresenceStatus: {
|
|
29175
29120
|
id: string;
|
|
29176
|
-
|
|
29121
|
+
position: number;
|
|
29122
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
29177
29123
|
status: string;
|
|
29178
29124
|
createdAt: Date;
|
|
29179
29125
|
updatedAt: Date;
|
|
@@ -29181,7 +29127,8 @@ export declare const apiContract: {
|
|
|
29181
29127
|
};
|
|
29182
29128
|
newPresenceStatus: {
|
|
29183
29129
|
id: string;
|
|
29184
|
-
|
|
29130
|
+
position: number;
|
|
29131
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
29185
29132
|
status: string;
|
|
29186
29133
|
createdAt: Date;
|
|
29187
29134
|
updatedAt: Date;
|
|
@@ -29245,7 +29192,8 @@ export declare const apiContract: {
|
|
|
29245
29192
|
deletedAt: Date | null;
|
|
29246
29193
|
previousPresenceStatus: {
|
|
29247
29194
|
id: string;
|
|
29248
|
-
|
|
29195
|
+
position: number;
|
|
29196
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
29249
29197
|
status: string;
|
|
29250
29198
|
createdAt: Date;
|
|
29251
29199
|
updatedAt: Date;
|
|
@@ -29253,7 +29201,8 @@ export declare const apiContract: {
|
|
|
29253
29201
|
};
|
|
29254
29202
|
newPresenceStatus: {
|
|
29255
29203
|
id: string;
|
|
29256
|
-
|
|
29204
|
+
position: number;
|
|
29205
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
29257
29206
|
status: string;
|
|
29258
29207
|
createdAt: Date;
|
|
29259
29208
|
updatedAt: Date;
|
|
@@ -241328,4 +241277,557 @@ export declare const memberSettingContract: {
|
|
|
241328
241277
|
};
|
|
241329
241278
|
};
|
|
241330
241279
|
};
|
|
241280
|
+
export declare const presenceStatusContract: {
|
|
241281
|
+
presenceStatus: {
|
|
241282
|
+
getAllStatus: {
|
|
241283
|
+
summary: "Get all presence status list.";
|
|
241284
|
+
method: "GET";
|
|
241285
|
+
path: "presence_status";
|
|
241286
|
+
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
241287
|
+
'x-tenant': import("zod").ZodString;
|
|
241288
|
+
authorization: import("zod").ZodString;
|
|
241289
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
|
241290
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
|
241291
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241292
|
+
'x-tenant': string;
|
|
241293
|
+
authorization: string;
|
|
241294
|
+
'x-client-timezone': string;
|
|
241295
|
+
'x-code'?: string | undefined;
|
|
241296
|
+
}, {
|
|
241297
|
+
'x-tenant': string;
|
|
241298
|
+
authorization: string;
|
|
241299
|
+
'x-code'?: string | undefined;
|
|
241300
|
+
'x-client-timezone'?: string | undefined;
|
|
241301
|
+
}>>>;
|
|
241302
|
+
responses: {
|
|
241303
|
+
200: import("zod").ZodObject<{
|
|
241304
|
+
total: import("zod").ZodNumber;
|
|
241305
|
+
data: import("zod").ZodArray<import("zod").ZodObject<{
|
|
241306
|
+
id: import("zod").ZodString;
|
|
241307
|
+
createdAt: import("zod").ZodDate;
|
|
241308
|
+
updatedAt: import("zod").ZodDate;
|
|
241309
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
241310
|
+
status: import("zod").ZodString;
|
|
241311
|
+
description: import("zod").ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
241312
|
+
position: import("zod").ZodNumber;
|
|
241313
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241314
|
+
id: string;
|
|
241315
|
+
position: number;
|
|
241316
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241317
|
+
status: string;
|
|
241318
|
+
createdAt: Date;
|
|
241319
|
+
updatedAt: Date;
|
|
241320
|
+
deletedAt: Date | null;
|
|
241321
|
+
}, {
|
|
241322
|
+
id: string;
|
|
241323
|
+
position: number;
|
|
241324
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241325
|
+
status: string;
|
|
241326
|
+
createdAt: Date;
|
|
241327
|
+
updatedAt: Date;
|
|
241328
|
+
deletedAt: Date | null;
|
|
241329
|
+
}>, "many">;
|
|
241330
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241331
|
+
data: {
|
|
241332
|
+
id: string;
|
|
241333
|
+
position: number;
|
|
241334
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241335
|
+
status: string;
|
|
241336
|
+
createdAt: Date;
|
|
241337
|
+
updatedAt: Date;
|
|
241338
|
+
deletedAt: Date | null;
|
|
241339
|
+
}[];
|
|
241340
|
+
total: number;
|
|
241341
|
+
}, {
|
|
241342
|
+
data: {
|
|
241343
|
+
id: string;
|
|
241344
|
+
position: number;
|
|
241345
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241346
|
+
status: string;
|
|
241347
|
+
createdAt: Date;
|
|
241348
|
+
updatedAt: Date;
|
|
241349
|
+
deletedAt: Date | null;
|
|
241350
|
+
}[];
|
|
241351
|
+
total: number;
|
|
241352
|
+
}>;
|
|
241353
|
+
400: import("zod").ZodObject<{
|
|
241354
|
+
message: import("zod").ZodString;
|
|
241355
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241356
|
+
message: string;
|
|
241357
|
+
}, {
|
|
241358
|
+
message: string;
|
|
241359
|
+
}>;
|
|
241360
|
+
401: import("zod").ZodObject<{
|
|
241361
|
+
message: import("zod").ZodString;
|
|
241362
|
+
error: import("zod").ZodAny;
|
|
241363
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241364
|
+
message: string;
|
|
241365
|
+
error?: any;
|
|
241366
|
+
}, {
|
|
241367
|
+
message: string;
|
|
241368
|
+
error?: any;
|
|
241369
|
+
}>;
|
|
241370
|
+
500: import("zod").ZodObject<{
|
|
241371
|
+
message: import("zod").ZodString;
|
|
241372
|
+
error: import("zod").ZodAny;
|
|
241373
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241374
|
+
message: string;
|
|
241375
|
+
error?: any;
|
|
241376
|
+
}, {
|
|
241377
|
+
message: string;
|
|
241378
|
+
error?: any;
|
|
241379
|
+
}>;
|
|
241380
|
+
};
|
|
241381
|
+
};
|
|
241382
|
+
createPresenceStatus: {
|
|
241383
|
+
body: import("zod").ZodObject<{
|
|
241384
|
+
status: import("zod").ZodString;
|
|
241385
|
+
description: import("zod").ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
241386
|
+
position: import("zod").ZodNumber;
|
|
241387
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241388
|
+
position: number;
|
|
241389
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241390
|
+
status: string;
|
|
241391
|
+
}, {
|
|
241392
|
+
position: number;
|
|
241393
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241394
|
+
status: string;
|
|
241395
|
+
}>;
|
|
241396
|
+
summary: "Create a new presence status.";
|
|
241397
|
+
method: "POST";
|
|
241398
|
+
path: "presence_status";
|
|
241399
|
+
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
241400
|
+
'x-tenant': import("zod").ZodString;
|
|
241401
|
+
authorization: import("zod").ZodString;
|
|
241402
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
|
241403
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
|
241404
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241405
|
+
'x-tenant': string;
|
|
241406
|
+
authorization: string;
|
|
241407
|
+
'x-client-timezone': string;
|
|
241408
|
+
'x-code'?: string | undefined;
|
|
241409
|
+
}, {
|
|
241410
|
+
'x-tenant': string;
|
|
241411
|
+
authorization: string;
|
|
241412
|
+
'x-code'?: string | undefined;
|
|
241413
|
+
'x-client-timezone'?: string | undefined;
|
|
241414
|
+
}>>>;
|
|
241415
|
+
responses: {
|
|
241416
|
+
201: import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
241417
|
+
requestId: import("zod").ZodString;
|
|
241418
|
+
}, {
|
|
241419
|
+
presenceStatus: import("zod").ZodObject<{
|
|
241420
|
+
id: import("zod").ZodString;
|
|
241421
|
+
createdAt: import("zod").ZodDate;
|
|
241422
|
+
updatedAt: import("zod").ZodDate;
|
|
241423
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
241424
|
+
status: import("zod").ZodString;
|
|
241425
|
+
description: import("zod").ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
241426
|
+
position: import("zod").ZodNumber;
|
|
241427
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241428
|
+
id: string;
|
|
241429
|
+
position: number;
|
|
241430
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241431
|
+
status: string;
|
|
241432
|
+
createdAt: Date;
|
|
241433
|
+
updatedAt: Date;
|
|
241434
|
+
deletedAt: Date | null;
|
|
241435
|
+
}, {
|
|
241436
|
+
id: string;
|
|
241437
|
+
position: number;
|
|
241438
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241439
|
+
status: string;
|
|
241440
|
+
createdAt: Date;
|
|
241441
|
+
updatedAt: Date;
|
|
241442
|
+
deletedAt: Date | null;
|
|
241443
|
+
}>;
|
|
241444
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
241445
|
+
requestId: string;
|
|
241446
|
+
presenceStatus: {
|
|
241447
|
+
id: string;
|
|
241448
|
+
position: number;
|
|
241449
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241450
|
+
status: string;
|
|
241451
|
+
createdAt: Date;
|
|
241452
|
+
updatedAt: Date;
|
|
241453
|
+
deletedAt: Date | null;
|
|
241454
|
+
};
|
|
241455
|
+
}, {
|
|
241456
|
+
requestId: string;
|
|
241457
|
+
presenceStatus: {
|
|
241458
|
+
id: string;
|
|
241459
|
+
position: number;
|
|
241460
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241461
|
+
status: string;
|
|
241462
|
+
createdAt: Date;
|
|
241463
|
+
updatedAt: Date;
|
|
241464
|
+
deletedAt: Date | null;
|
|
241465
|
+
};
|
|
241466
|
+
}>;
|
|
241467
|
+
400: import("zod").ZodObject<{
|
|
241468
|
+
message: import("zod").ZodString;
|
|
241469
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241470
|
+
message: string;
|
|
241471
|
+
}, {
|
|
241472
|
+
message: string;
|
|
241473
|
+
}>;
|
|
241474
|
+
401: import("zod").ZodObject<{
|
|
241475
|
+
message: import("zod").ZodString;
|
|
241476
|
+
error: import("zod").ZodAny;
|
|
241477
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241478
|
+
message: string;
|
|
241479
|
+
error?: any;
|
|
241480
|
+
}, {
|
|
241481
|
+
message: string;
|
|
241482
|
+
error?: any;
|
|
241483
|
+
}>;
|
|
241484
|
+
404: import("zod").ZodObject<{
|
|
241485
|
+
message: import("zod").ZodString;
|
|
241486
|
+
error: import("zod").ZodAny;
|
|
241487
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241488
|
+
message: string;
|
|
241489
|
+
error?: any;
|
|
241490
|
+
}, {
|
|
241491
|
+
message: string;
|
|
241492
|
+
error?: any;
|
|
241493
|
+
}>;
|
|
241494
|
+
422: import("zod").ZodObject<{
|
|
241495
|
+
message: import("zod").ZodString;
|
|
241496
|
+
error: import("zod").ZodAny;
|
|
241497
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241498
|
+
message: string;
|
|
241499
|
+
error?: any;
|
|
241500
|
+
}, {
|
|
241501
|
+
message: string;
|
|
241502
|
+
error?: any;
|
|
241503
|
+
}>;
|
|
241504
|
+
500: import("zod").ZodObject<{
|
|
241505
|
+
message: import("zod").ZodString;
|
|
241506
|
+
error: import("zod").ZodAny;
|
|
241507
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241508
|
+
message: string;
|
|
241509
|
+
error?: any;
|
|
241510
|
+
}, {
|
|
241511
|
+
message: string;
|
|
241512
|
+
error?: any;
|
|
241513
|
+
}>;
|
|
241514
|
+
};
|
|
241515
|
+
};
|
|
241516
|
+
getPresenceStatusById: {
|
|
241517
|
+
summary: "Get presence status by id";
|
|
241518
|
+
method: "GET";
|
|
241519
|
+
pathParams: import("zod").ZodObject<{
|
|
241520
|
+
id: import("zod").ZodString;
|
|
241521
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241522
|
+
id: string;
|
|
241523
|
+
}, {
|
|
241524
|
+
id: string;
|
|
241525
|
+
}>;
|
|
241526
|
+
path: "presence_status/:id";
|
|
241527
|
+
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
241528
|
+
'x-tenant': import("zod").ZodString;
|
|
241529
|
+
authorization: import("zod").ZodString;
|
|
241530
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
|
241531
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
|
241532
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241533
|
+
'x-tenant': string;
|
|
241534
|
+
authorization: string;
|
|
241535
|
+
'x-client-timezone': string;
|
|
241536
|
+
'x-code'?: string | undefined;
|
|
241537
|
+
}, {
|
|
241538
|
+
'x-tenant': string;
|
|
241539
|
+
authorization: string;
|
|
241540
|
+
'x-code'?: string | undefined;
|
|
241541
|
+
'x-client-timezone'?: string | undefined;
|
|
241542
|
+
}>>>;
|
|
241543
|
+
responses: {
|
|
241544
|
+
200: import("zod").ZodObject<{
|
|
241545
|
+
id: import("zod").ZodString;
|
|
241546
|
+
createdAt: import("zod").ZodDate;
|
|
241547
|
+
updatedAt: import("zod").ZodDate;
|
|
241548
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
241549
|
+
status: import("zod").ZodString;
|
|
241550
|
+
description: import("zod").ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
241551
|
+
position: import("zod").ZodNumber;
|
|
241552
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241553
|
+
id: string;
|
|
241554
|
+
position: number;
|
|
241555
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241556
|
+
status: string;
|
|
241557
|
+
createdAt: Date;
|
|
241558
|
+
updatedAt: Date;
|
|
241559
|
+
deletedAt: Date | null;
|
|
241560
|
+
}, {
|
|
241561
|
+
id: string;
|
|
241562
|
+
position: number;
|
|
241563
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241564
|
+
status: string;
|
|
241565
|
+
createdAt: Date;
|
|
241566
|
+
updatedAt: Date;
|
|
241567
|
+
deletedAt: Date | null;
|
|
241568
|
+
}>;
|
|
241569
|
+
400: import("zod").ZodObject<{
|
|
241570
|
+
message: import("zod").ZodString;
|
|
241571
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241572
|
+
message: string;
|
|
241573
|
+
}, {
|
|
241574
|
+
message: string;
|
|
241575
|
+
}>;
|
|
241576
|
+
401: import("zod").ZodObject<{
|
|
241577
|
+
message: import("zod").ZodString;
|
|
241578
|
+
error: import("zod").ZodAny;
|
|
241579
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241580
|
+
message: string;
|
|
241581
|
+
error?: any;
|
|
241582
|
+
}, {
|
|
241583
|
+
message: string;
|
|
241584
|
+
error?: any;
|
|
241585
|
+
}>;
|
|
241586
|
+
404: import("zod").ZodObject<{
|
|
241587
|
+
message: import("zod").ZodString;
|
|
241588
|
+
error: import("zod").ZodAny;
|
|
241589
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241590
|
+
message: string;
|
|
241591
|
+
error?: any;
|
|
241592
|
+
}, {
|
|
241593
|
+
message: string;
|
|
241594
|
+
error?: any;
|
|
241595
|
+
}>;
|
|
241596
|
+
422: import("zod").ZodObject<{
|
|
241597
|
+
message: import("zod").ZodString;
|
|
241598
|
+
error: import("zod").ZodAny;
|
|
241599
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241600
|
+
message: string;
|
|
241601
|
+
error?: any;
|
|
241602
|
+
}, {
|
|
241603
|
+
message: string;
|
|
241604
|
+
error?: any;
|
|
241605
|
+
}>;
|
|
241606
|
+
500: import("zod").ZodObject<{
|
|
241607
|
+
message: import("zod").ZodString;
|
|
241608
|
+
error: import("zod").ZodAny;
|
|
241609
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241610
|
+
message: string;
|
|
241611
|
+
error?: any;
|
|
241612
|
+
}, {
|
|
241613
|
+
message: string;
|
|
241614
|
+
error?: any;
|
|
241615
|
+
}>;
|
|
241616
|
+
};
|
|
241617
|
+
};
|
|
241618
|
+
updatePresenceStatus: {
|
|
241619
|
+
body: import("zod").ZodObject<{
|
|
241620
|
+
status: import("zod").ZodString;
|
|
241621
|
+
description: import("zod").ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
241622
|
+
position: import("zod").ZodNumber;
|
|
241623
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241624
|
+
position: number;
|
|
241625
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241626
|
+
status: string;
|
|
241627
|
+
}, {
|
|
241628
|
+
position: number;
|
|
241629
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241630
|
+
status: string;
|
|
241631
|
+
}>;
|
|
241632
|
+
summary: "Update a presence status.";
|
|
241633
|
+
method: "PATCH";
|
|
241634
|
+
pathParams: import("zod").ZodObject<{
|
|
241635
|
+
id: import("zod").ZodString;
|
|
241636
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241637
|
+
id: string;
|
|
241638
|
+
}, {
|
|
241639
|
+
id: string;
|
|
241640
|
+
}>;
|
|
241641
|
+
path: "presence_status/:id";
|
|
241642
|
+
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
241643
|
+
'x-tenant': import("zod").ZodString;
|
|
241644
|
+
authorization: import("zod").ZodString;
|
|
241645
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
|
241646
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
|
241647
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241648
|
+
'x-tenant': string;
|
|
241649
|
+
authorization: string;
|
|
241650
|
+
'x-client-timezone': string;
|
|
241651
|
+
'x-code'?: string | undefined;
|
|
241652
|
+
}, {
|
|
241653
|
+
'x-tenant': string;
|
|
241654
|
+
authorization: string;
|
|
241655
|
+
'x-code'?: string | undefined;
|
|
241656
|
+
'x-client-timezone'?: string | undefined;
|
|
241657
|
+
}>>>;
|
|
241658
|
+
responses: {
|
|
241659
|
+
201: import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
241660
|
+
requestId: import("zod").ZodString;
|
|
241661
|
+
}, {
|
|
241662
|
+
presenceStatus: import("zod").ZodObject<{
|
|
241663
|
+
id: import("zod").ZodString;
|
|
241664
|
+
createdAt: import("zod").ZodDate;
|
|
241665
|
+
updatedAt: import("zod").ZodDate;
|
|
241666
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
241667
|
+
status: import("zod").ZodString;
|
|
241668
|
+
description: import("zod").ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
241669
|
+
position: import("zod").ZodNumber;
|
|
241670
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241671
|
+
id: string;
|
|
241672
|
+
position: number;
|
|
241673
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241674
|
+
status: string;
|
|
241675
|
+
createdAt: Date;
|
|
241676
|
+
updatedAt: Date;
|
|
241677
|
+
deletedAt: Date | null;
|
|
241678
|
+
}, {
|
|
241679
|
+
id: string;
|
|
241680
|
+
position: number;
|
|
241681
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241682
|
+
status: string;
|
|
241683
|
+
createdAt: Date;
|
|
241684
|
+
updatedAt: Date;
|
|
241685
|
+
deletedAt: Date | null;
|
|
241686
|
+
}>;
|
|
241687
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
241688
|
+
requestId: string;
|
|
241689
|
+
presenceStatus: {
|
|
241690
|
+
id: string;
|
|
241691
|
+
position: number;
|
|
241692
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241693
|
+
status: string;
|
|
241694
|
+
createdAt: Date;
|
|
241695
|
+
updatedAt: Date;
|
|
241696
|
+
deletedAt: Date | null;
|
|
241697
|
+
};
|
|
241698
|
+
}, {
|
|
241699
|
+
requestId: string;
|
|
241700
|
+
presenceStatus: {
|
|
241701
|
+
id: string;
|
|
241702
|
+
position: number;
|
|
241703
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
241704
|
+
status: string;
|
|
241705
|
+
createdAt: Date;
|
|
241706
|
+
updatedAt: Date;
|
|
241707
|
+
deletedAt: Date | null;
|
|
241708
|
+
};
|
|
241709
|
+
}>;
|
|
241710
|
+
400: import("zod").ZodObject<{
|
|
241711
|
+
message: import("zod").ZodString;
|
|
241712
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241713
|
+
message: string;
|
|
241714
|
+
}, {
|
|
241715
|
+
message: string;
|
|
241716
|
+
}>;
|
|
241717
|
+
401: import("zod").ZodObject<{
|
|
241718
|
+
message: import("zod").ZodString;
|
|
241719
|
+
error: import("zod").ZodAny;
|
|
241720
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241721
|
+
message: string;
|
|
241722
|
+
error?: any;
|
|
241723
|
+
}, {
|
|
241724
|
+
message: string;
|
|
241725
|
+
error?: any;
|
|
241726
|
+
}>;
|
|
241727
|
+
404: import("zod").ZodObject<{
|
|
241728
|
+
message: import("zod").ZodString;
|
|
241729
|
+
error: import("zod").ZodAny;
|
|
241730
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241731
|
+
message: string;
|
|
241732
|
+
error?: any;
|
|
241733
|
+
}, {
|
|
241734
|
+
message: string;
|
|
241735
|
+
error?: any;
|
|
241736
|
+
}>;
|
|
241737
|
+
422: import("zod").ZodObject<{
|
|
241738
|
+
message: import("zod").ZodString;
|
|
241739
|
+
error: import("zod").ZodAny;
|
|
241740
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241741
|
+
message: string;
|
|
241742
|
+
error?: any;
|
|
241743
|
+
}, {
|
|
241744
|
+
message: string;
|
|
241745
|
+
error?: any;
|
|
241746
|
+
}>;
|
|
241747
|
+
500: import("zod").ZodObject<{
|
|
241748
|
+
message: import("zod").ZodString;
|
|
241749
|
+
error: import("zod").ZodAny;
|
|
241750
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241751
|
+
message: string;
|
|
241752
|
+
error?: any;
|
|
241753
|
+
}, {
|
|
241754
|
+
message: string;
|
|
241755
|
+
error?: any;
|
|
241756
|
+
}>;
|
|
241757
|
+
};
|
|
241758
|
+
};
|
|
241759
|
+
deletePresenceStatus: {
|
|
241760
|
+
body: null;
|
|
241761
|
+
summary: "Delete a presence status.";
|
|
241762
|
+
method: "DELETE";
|
|
241763
|
+
pathParams: import("zod").ZodObject<{
|
|
241764
|
+
id: import("zod").ZodString;
|
|
241765
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241766
|
+
id: string;
|
|
241767
|
+
}, {
|
|
241768
|
+
id: string;
|
|
241769
|
+
}>;
|
|
241770
|
+
path: "presence_status/:id";
|
|
241771
|
+
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
241772
|
+
'x-tenant': import("zod").ZodString;
|
|
241773
|
+
authorization: import("zod").ZodString;
|
|
241774
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
|
241775
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
|
241776
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241777
|
+
'x-tenant': string;
|
|
241778
|
+
authorization: string;
|
|
241779
|
+
'x-client-timezone': string;
|
|
241780
|
+
'x-code'?: string | undefined;
|
|
241781
|
+
}, {
|
|
241782
|
+
'x-tenant': string;
|
|
241783
|
+
authorization: string;
|
|
241784
|
+
'x-code'?: string | undefined;
|
|
241785
|
+
'x-client-timezone'?: string | undefined;
|
|
241786
|
+
}>>>;
|
|
241787
|
+
responses: {
|
|
241788
|
+
200: import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
241789
|
+
requestId: import("zod").ZodString;
|
|
241790
|
+
}, {
|
|
241791
|
+
message: import("zod").ZodString;
|
|
241792
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
241793
|
+
message: string;
|
|
241794
|
+
requestId: string;
|
|
241795
|
+
}, {
|
|
241796
|
+
message: string;
|
|
241797
|
+
requestId: string;
|
|
241798
|
+
}>;
|
|
241799
|
+
404: import("zod").ZodObject<{
|
|
241800
|
+
message: import("zod").ZodString;
|
|
241801
|
+
error: import("zod").ZodAny;
|
|
241802
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241803
|
+
message: string;
|
|
241804
|
+
error?: any;
|
|
241805
|
+
}, {
|
|
241806
|
+
message: string;
|
|
241807
|
+
error?: any;
|
|
241808
|
+
}>;
|
|
241809
|
+
422: import("zod").ZodObject<{
|
|
241810
|
+
message: import("zod").ZodString;
|
|
241811
|
+
error: import("zod").ZodAny;
|
|
241812
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241813
|
+
message: string;
|
|
241814
|
+
error?: any;
|
|
241815
|
+
}, {
|
|
241816
|
+
message: string;
|
|
241817
|
+
error?: any;
|
|
241818
|
+
}>;
|
|
241819
|
+
500: import("zod").ZodObject<{
|
|
241820
|
+
message: import("zod").ZodString;
|
|
241821
|
+
error: import("zod").ZodAny;
|
|
241822
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
241823
|
+
message: string;
|
|
241824
|
+
error?: any;
|
|
241825
|
+
}, {
|
|
241826
|
+
message: string;
|
|
241827
|
+
error?: any;
|
|
241828
|
+
}>;
|
|
241829
|
+
};
|
|
241830
|
+
};
|
|
241831
|
+
};
|
|
241832
|
+
};
|
|
241331
241833
|
//# sourceMappingURL=contract.d.ts.map
|