retell-sdk 2.2.4 → 2.2.7
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/example.js +19 -4
- package/example.js.map +1 -1
- package/models/components/agent.d.ts +3 -205
- package/models/components/agent.d.ts.map +1 -1
- package/models/components/agent.js +5 -221
- package/models/components/agent.js.map +1 -1
- package/models/components/calldetail.d.ts +33 -22
- package/models/components/calldetail.d.ts.map +1 -1
- package/models/components/calldetail.js +32 -31
- package/models/components/calldetail.js.map +1 -1
- package/models/components/index.d.ts +0 -3
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +0 -3
- package/models/components/index.js.map +1 -1
- package/models/errors/index.d.ts +1 -6
- package/models/errors/index.d.ts.map +1 -1
- package/models/errors/index.js +1 -6
- package/models/errors/index.js.map +1 -1
- package/models/errors/registercall.d.ts +218 -0
- package/models/errors/registercall.d.ts.map +1 -0
- package/models/errors/registercall.js +386 -0
- package/models/errors/registercall.js.map +1 -0
- package/models/operations/createagent.d.ts +3 -16
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +4 -22
- package/models/operations/createagent.js.map +1 -1
- package/models/operations/getcall.d.ts +1 -1
- package/models/operations/index.d.ts +1 -7
- package/models/operations/index.d.ts.map +1 -1
- package/models/operations/index.js +1 -7
- package/models/operations/index.js.map +1 -1
- package/models/operations/listcalls.d.ts +1 -7
- package/models/operations/listcalls.d.ts.map +1 -1
- package/models/operations/listcalls.js +0 -4
- package/models/operations/listcalls.js.map +1 -1
- package/models/operations/registercall.d.ts +74 -0
- package/models/operations/registercall.d.ts.map +1 -0
- package/models/operations/registercall.js +104 -0
- package/models/operations/registercall.js.map +1 -0
- package/models/operations/updateagent.d.ts +3 -16
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +7 -25
- package/models/operations/updateagent.js.map +1 -1
- package/package.json +4 -2
- package/sdk/audioWsClient.d.ts +10 -0
- package/sdk/audioWsClient.d.ts.map +1 -0
- package/sdk/audioWsClient.js +66 -0
- package/sdk/audioWsClient.js.map +1 -0
- package/sdk/index.d.ts +1 -1
- package/sdk/index.d.ts.map +1 -1
- package/sdk/index.js +1 -1
- package/sdk/index.js.map +1 -1
- package/sdk/sdk.d.ts +1 -23
- package/sdk/sdk.d.ts.map +1 -1
- package/sdk/sdk.js +11 -437
- package/sdk/sdk.js.map +1 -1
- package/src/example.ts +26 -4
- package/src/models/components/agent.ts +8 -460
- package/src/models/components/calldetail.ts +47 -42
- package/src/models/components/index.ts +0 -3
- package/src/models/errors/index.ts +1 -6
- package/src/models/errors/{createphonecall.ts → registercall.ts} +60 -60
- package/src/models/operations/createagent.ts +8 -50
- package/src/models/operations/getcall.ts +1 -1
- package/src/models/operations/index.ts +1 -7
- package/src/models/operations/listcalls.ts +1 -11
- package/src/models/operations/registercall.ts +167 -0
- package/src/models/operations/updateagent.ts +11 -58
- package/src/sdk/audioWsClient.ts +68 -0
- package/src/sdk/index.ts +1 -1
- package/src/sdk/sdk.ts +13 -526
- package/src/models/components/agentpromptparams.ts +0 -61
- package/src/models/components/callphonenumber.ts +0 -64
- package/src/models/components/phonenumber.ts +0 -84
- package/src/models/errors/createphonenumber.ts +0 -552
- package/src/models/errors/deletephonenumber.ts +0 -442
- package/src/models/errors/getphonenumber.ts +0 -442
- package/src/models/errors/listphonenumbers.ts +0 -332
- package/src/models/errors/updatephoneagent.ts +0 -442
- package/src/models/operations/createphonecall.ts +0 -353
- package/src/models/operations/createphonenumber.ts +0 -144
- package/src/models/operations/createwebcall.ts +0 -16
- package/src/models/operations/deletephonenumber.ts +0 -119
- package/src/models/operations/getphonenumber.ts +0 -134
- package/src/models/operations/listphonenumbers.ts +0 -88
- package/src/models/operations/updatephoneagent.ts +0 -187
- package/src/sdk/liveClient.ts +0 -113
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
import { AgentPromptParams, AgentPromptParams$ } from "./agentpromptparams";
|
|
2
|
-
import { CallPhoneNumber, CallPhoneNumber$ } from "./callphonenumber";
|
|
3
1
|
import { z } from "zod";
|
|
4
2
|
/**
|
|
5
3
|
* Status of call.
|
|
6
4
|
*/
|
|
7
5
|
export declare enum CallStatus {
|
|
6
|
+
Registered = "registered",
|
|
8
7
|
Ongoing = "ongoing",
|
|
9
8
|
Ended = "ended",
|
|
10
9
|
Error = "error"
|
|
11
10
|
}
|
|
12
11
|
/**
|
|
13
|
-
*
|
|
12
|
+
* The audio encoding of the call.
|
|
14
13
|
*/
|
|
15
|
-
export declare enum
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
14
|
+
export declare enum AudioEncoding {
|
|
15
|
+
S16le = "s16le",
|
|
16
|
+
Mulaw = "mulaw"
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* The protocol how audio websocket read and send audio bytes.
|
|
20
|
+
*/
|
|
21
|
+
export declare enum AudioWebsocketProtocol {
|
|
22
|
+
Web = "web",
|
|
23
|
+
Twilio = "twilio",
|
|
24
|
+
Vonage = "vonage"
|
|
19
25
|
}
|
|
20
26
|
export type CallDetail = {
|
|
21
27
|
/**
|
|
@@ -23,11 +29,7 @@ export type CallDetail = {
|
|
|
23
29
|
*/
|
|
24
30
|
agentId: string;
|
|
25
31
|
/**
|
|
26
|
-
*
|
|
27
|
-
*/
|
|
28
|
-
agentPromptParams?: Array<AgentPromptParams> | undefined;
|
|
29
|
-
/**
|
|
30
|
-
* Unique id of the call.
|
|
32
|
+
* Unique id of the call. Used to identify in LLM websocket and used to authenticate in audio websocket.
|
|
31
33
|
*/
|
|
32
34
|
callId: string;
|
|
33
35
|
/**
|
|
@@ -35,14 +37,21 @@ export type CallDetail = {
|
|
|
35
37
|
*/
|
|
36
38
|
callStatus: CallStatus;
|
|
37
39
|
/**
|
|
38
|
-
*
|
|
40
|
+
* The audio encoding of the call.
|
|
39
41
|
*/
|
|
40
|
-
|
|
42
|
+
audioEncoding: AudioEncoding;
|
|
43
|
+
/**
|
|
44
|
+
* Sample rate of the conversation, the input and output audio bytes will all conform to this rate. Check the audio source, audio format, and voice used for the agent to select one that works.
|
|
45
|
+
*/
|
|
46
|
+
sampleRate: number;
|
|
47
|
+
/**
|
|
48
|
+
* The protocol how audio websocket read and send audio bytes.
|
|
49
|
+
*/
|
|
50
|
+
audioWebsocketProtocol: AudioWebsocketProtocol;
|
|
41
51
|
/**
|
|
42
52
|
* End timestamp (milliseconds since epoch) of the call. Available after call ends.
|
|
43
53
|
*/
|
|
44
54
|
endTimestamp?: number | undefined;
|
|
45
|
-
phoneNumber?: CallPhoneNumber | undefined;
|
|
46
55
|
/**
|
|
47
56
|
* Recording of the call. Available after call ends.
|
|
48
57
|
*/
|
|
@@ -59,17 +68,19 @@ export type CallDetail = {
|
|
|
59
68
|
/** @internal */
|
|
60
69
|
export declare const CallStatus$: z.ZodNativeEnum<typeof CallStatus>;
|
|
61
70
|
/** @internal */
|
|
62
|
-
export declare const
|
|
71
|
+
export declare const AudioWebsocketProtocol$: z.ZodNativeEnum<typeof AudioWebsocketProtocol>;
|
|
72
|
+
/** @internal */
|
|
73
|
+
export declare const AudioEncoding$: z.ZodNativeEnum<typeof AudioEncoding>;
|
|
63
74
|
/** @internal */
|
|
64
75
|
export declare namespace CallDetail$ {
|
|
65
76
|
type Inbound = {
|
|
66
77
|
agent_id: string;
|
|
67
|
-
agent_prompt_params?: Array<AgentPromptParams$.Inbound> | undefined;
|
|
68
78
|
call_id: string;
|
|
69
79
|
call_status: CallStatus;
|
|
70
|
-
|
|
80
|
+
audio_encoding: AudioEncoding;
|
|
81
|
+
sample_rate: number;
|
|
82
|
+
audio_websocket_protocol: AudioWebsocketProtocol;
|
|
71
83
|
end_timestamp?: number | undefined;
|
|
72
|
-
phone_number?: CallPhoneNumber$.Inbound | undefined;
|
|
73
84
|
recording_url?: string | undefined;
|
|
74
85
|
start_timestamp: number;
|
|
75
86
|
transcript?: string | undefined;
|
|
@@ -77,12 +88,12 @@ export declare namespace CallDetail$ {
|
|
|
77
88
|
const inboundSchema: z.ZodType<CallDetail, z.ZodTypeDef, Inbound>;
|
|
78
89
|
type Outbound = {
|
|
79
90
|
agent_id: string;
|
|
80
|
-
agent_prompt_params?: Array<AgentPromptParams$.Outbound> | undefined;
|
|
81
91
|
call_id: string;
|
|
82
92
|
call_status: CallStatus;
|
|
83
|
-
|
|
93
|
+
audio_encoding: AudioEncoding;
|
|
94
|
+
sample_rate: number;
|
|
95
|
+
audio_websocket_protocol: AudioWebsocketProtocol;
|
|
84
96
|
end_timestamp?: number | undefined;
|
|
85
|
-
phone_number?: CallPhoneNumber$.Outbound | undefined;
|
|
86
97
|
recording_url?: string | undefined;
|
|
87
98
|
start_timestamp: number;
|
|
88
99
|
transcript?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"calldetail.d.ts","sourceRoot":"","sources":["../../src/models/components/calldetail.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"calldetail.d.ts","sourceRoot":"","sources":["../../src/models/components/calldetail.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AACH,oBAAY,UAAU;IACpB,UAAU,eAAe;IACzB,OAAO,YAAY;IACnB,KAAK,UAAU;IACf,KAAK,UAAU;CAChB;AAED;;GAEG;AACH,oBAAY,aAAa;IACvB,KAAK,UAAU;IACf,KAAK,UAAU;CAChB;AAED;;GAEG;AACH,oBAAY,sBAAsB;IAChC,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,MAAM,WAAW;CAClB;AAED,MAAM,MAAM,UAAU,GAAG;IACvB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,UAAU,EAAE,UAAU,CAAC;IACvB;;OAEG;IACH,aAAa,EAAE,aAAa,CAAC;IAC7B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,sBAAsB,EAAE,sBAAsB,CAAC;IAC/C;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACjC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,WAAW,oCAA2B,CAAC;AAEpD,gBAAgB;AAChB,eAAO,MAAM,uBAAuB,gDAAuC,CAAC;AAE5E,gBAAgB;AAChB,eAAO,MAAM,cAAc,uCAA8B,CAAC;AAE1D,gBAAgB;AAChB,yBAAiB,WAAW,CAAC;IAC3B,KAAY,OAAO,GAAG;QACpB,QAAQ,EAAE,MAAM,CAAC;QACjB,OAAO,EAAE,MAAM,CAAC;QAChB,WAAW,EAAE,UAAU,CAAC;QACxB,cAAc,EAAE,aAAa,CAAC;QAC9B,WAAW,EAAE,MAAM,CAAC;QACpB,wBAAwB,EAAE,sBAAsB,CAAC;QACjD,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;QACnC,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;QACnC,eAAe,EAAE,MAAM,CAAC;QACxB,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACjC,CAAC;IAEK,MAAM,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC,CAAC,UAAU,EAAE,OAAO,CA8BnE,CAAC;IAEL,KAAY,QAAQ,GAAG;QACrB,QAAQ,EAAE,MAAM,CAAC;QACjB,OAAO,EAAE,MAAM,CAAC;QAChB,WAAW,EAAE,UAAU,CAAC;QACxB,cAAc,EAAE,aAAa,CAAC;QAC9B,WAAW,EAAE,MAAM,CAAC;QACpB,wBAAwB,EAAE,sBAAsB,CAAC;QACjD,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;QACnC,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;QACnC,eAAe,EAAE,MAAM,CAAC;QACxB,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACjC,CAAC;IAEK,MAAM,cAAc,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC,UAAU,EAAE,UAAU,CA8BrE,CAAC;CACN"}
|
|
@@ -3,44 +3,53 @@
|
|
|
3
3
|
* Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
4
4
|
*/
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.CallDetail$ = exports.
|
|
7
|
-
const agentpromptparams_1 = require("./agentpromptparams");
|
|
8
|
-
const callphonenumber_1 = require("./callphonenumber");
|
|
6
|
+
exports.CallDetail$ = exports.AudioEncoding$ = exports.AudioWebsocketProtocol$ = exports.CallStatus$ = exports.AudioWebsocketProtocol = exports.AudioEncoding = exports.CallStatus = void 0;
|
|
9
7
|
const zod_1 = require("zod");
|
|
10
8
|
/**
|
|
11
9
|
* Status of call.
|
|
12
10
|
*/
|
|
13
11
|
var CallStatus;
|
|
14
12
|
(function (CallStatus) {
|
|
13
|
+
CallStatus["Registered"] = "registered";
|
|
15
14
|
CallStatus["Ongoing"] = "ongoing";
|
|
16
15
|
CallStatus["Ended"] = "ended";
|
|
17
16
|
CallStatus["Error"] = "error";
|
|
18
17
|
})(CallStatus || (exports.CallStatus = CallStatus = {}));
|
|
19
18
|
/**
|
|
20
|
-
*
|
|
19
|
+
* The audio encoding of the call.
|
|
21
20
|
*/
|
|
22
|
-
var
|
|
23
|
-
(function (
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
21
|
+
var AudioEncoding;
|
|
22
|
+
(function (AudioEncoding) {
|
|
23
|
+
AudioEncoding["S16le"] = "s16le";
|
|
24
|
+
AudioEncoding["Mulaw"] = "mulaw";
|
|
25
|
+
})(AudioEncoding || (exports.AudioEncoding = AudioEncoding = {}));
|
|
26
|
+
/**
|
|
27
|
+
* The protocol how audio websocket read and send audio bytes.
|
|
28
|
+
*/
|
|
29
|
+
var AudioWebsocketProtocol;
|
|
30
|
+
(function (AudioWebsocketProtocol) {
|
|
31
|
+
AudioWebsocketProtocol["Web"] = "web";
|
|
32
|
+
AudioWebsocketProtocol["Twilio"] = "twilio";
|
|
33
|
+
AudioWebsocketProtocol["Vonage"] = "vonage";
|
|
34
|
+
})(AudioWebsocketProtocol || (exports.AudioWebsocketProtocol = AudioWebsocketProtocol = {}));
|
|
28
35
|
/** @internal */
|
|
29
36
|
exports.CallStatus$ = zod_1.z.nativeEnum(CallStatus);
|
|
30
37
|
/** @internal */
|
|
31
|
-
exports.
|
|
38
|
+
exports.AudioWebsocketProtocol$ = zod_1.z.nativeEnum(AudioWebsocketProtocol);
|
|
39
|
+
/** @internal */
|
|
40
|
+
exports.AudioEncoding$ = zod_1.z.nativeEnum(AudioEncoding);
|
|
32
41
|
/** @internal */
|
|
33
42
|
var CallDetail$;
|
|
34
43
|
(function (CallDetail$) {
|
|
35
44
|
CallDetail$.inboundSchema = zod_1.z
|
|
36
45
|
.object({
|
|
37
46
|
agent_id: zod_1.z.string(),
|
|
38
|
-
agent_prompt_params: zod_1.z.array(agentpromptparams_1.AgentPromptParams$.inboundSchema).optional(),
|
|
39
47
|
call_id: zod_1.z.string(),
|
|
40
48
|
call_status: exports.CallStatus$,
|
|
41
|
-
|
|
49
|
+
audio_encoding: exports.AudioEncoding$,
|
|
50
|
+
sample_rate: zod_1.z.number().int(),
|
|
51
|
+
audio_websocket_protocol: exports.AudioWebsocketProtocol$,
|
|
42
52
|
end_timestamp: zod_1.z.number().int().optional(),
|
|
43
|
-
phone_number: callphonenumber_1.CallPhoneNumber$.inboundSchema.optional(),
|
|
44
53
|
recording_url: zod_1.z.string().optional(),
|
|
45
54
|
start_timestamp: zod_1.z.number().int(),
|
|
46
55
|
transcript: zod_1.z.string().optional(),
|
|
@@ -48,18 +57,14 @@ var CallDetail$;
|
|
|
48
57
|
.transform((v) => {
|
|
49
58
|
return {
|
|
50
59
|
agentId: v.agent_id,
|
|
51
|
-
...(v.agent_prompt_params === undefined
|
|
52
|
-
? null
|
|
53
|
-
: { agentPromptParams: v.agent_prompt_params }),
|
|
54
60
|
callId: v.call_id,
|
|
55
61
|
callStatus: v.call_status,
|
|
56
|
-
|
|
62
|
+
audioEncoding: v.audio_encoding,
|
|
63
|
+
sampleRate: v.sample_rate,
|
|
64
|
+
audioWebsocketProtocol: v.audio_websocket_protocol,
|
|
57
65
|
...(v.end_timestamp === undefined
|
|
58
66
|
? null
|
|
59
67
|
: { endTimestamp: v.end_timestamp }),
|
|
60
|
-
...(v.phone_number === undefined
|
|
61
|
-
? null
|
|
62
|
-
: { phoneNumber: v.phone_number }),
|
|
63
68
|
...(v.recording_url === undefined
|
|
64
69
|
? null
|
|
65
70
|
: { recordingUrl: v.recording_url }),
|
|
@@ -70,12 +75,12 @@ var CallDetail$;
|
|
|
70
75
|
CallDetail$.outboundSchema = zod_1.z
|
|
71
76
|
.object({
|
|
72
77
|
agentId: zod_1.z.string(),
|
|
73
|
-
agentPromptParams: zod_1.z.array(agentpromptparams_1.AgentPromptParams$.outboundSchema).optional(),
|
|
74
78
|
callId: zod_1.z.string(),
|
|
75
79
|
callStatus: exports.CallStatus$,
|
|
76
|
-
|
|
80
|
+
audioEncoding: exports.AudioEncoding$,
|
|
81
|
+
sampleRate: zod_1.z.number().int(),
|
|
82
|
+
audioWebsocketProtocol: exports.AudioWebsocketProtocol$,
|
|
77
83
|
endTimestamp: zod_1.z.number().int().optional(),
|
|
78
|
-
phoneNumber: callphonenumber_1.CallPhoneNumber$.outboundSchema.optional(),
|
|
79
84
|
recordingUrl: zod_1.z.string().optional(),
|
|
80
85
|
startTimestamp: zod_1.z.number().int(),
|
|
81
86
|
transcript: zod_1.z.string().optional(),
|
|
@@ -83,18 +88,14 @@ var CallDetail$;
|
|
|
83
88
|
.transform((v) => {
|
|
84
89
|
return {
|
|
85
90
|
agent_id: v.agentId,
|
|
86
|
-
...(v.agentPromptParams === undefined
|
|
87
|
-
? null
|
|
88
|
-
: { agent_prompt_params: v.agentPromptParams }),
|
|
89
91
|
call_id: v.callId,
|
|
90
92
|
call_status: v.callStatus,
|
|
91
|
-
|
|
93
|
+
audio_encoding: v.audioEncoding,
|
|
94
|
+
sample_rate: v.sampleRate,
|
|
95
|
+
audio_websocket_protocol: v.audioWebsocketProtocol,
|
|
92
96
|
...(v.endTimestamp === undefined
|
|
93
97
|
? null
|
|
94
98
|
: { end_timestamp: v.endTimestamp }),
|
|
95
|
-
...(v.phoneNumber === undefined
|
|
96
|
-
? null
|
|
97
|
-
: { phone_number: v.phoneNumber }),
|
|
98
99
|
...(v.recordingUrl === undefined
|
|
99
100
|
? null
|
|
100
101
|
: { recording_url: v.recordingUrl }),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"calldetail.js","sourceRoot":"","sources":["../../src/models/components/calldetail.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,
|
|
1
|
+
{"version":3,"file":"calldetail.js","sourceRoot":"","sources":["../../src/models/components/calldetail.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/components/index.ts"],"names":[],"mappings":"AAIA,cAAc,SAAS,CAAC;AACxB,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/components/index.ts"],"names":[],"mappings":"AAIA,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC"}
|
|
@@ -18,9 +18,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
18
18
|
};
|
|
19
19
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
20
|
__exportStar(require("./agent"), exports);
|
|
21
|
-
__exportStar(require("./agentpromptparams"), exports);
|
|
22
21
|
__exportStar(require("./calldetail"), exports);
|
|
23
|
-
__exportStar(require("./callphonenumber"), exports);
|
|
24
|
-
__exportStar(require("./phonenumber"), exports);
|
|
25
22
|
__exportStar(require("./security"), exports);
|
|
26
23
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/components/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;AAEH,0CAAwB;AACxB
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/components/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;AAEH,0CAAwB;AACxB,+CAA6B;AAC7B,6CAA2B"}
|
package/models/errors/index.d.ts
CHANGED
|
@@ -1,15 +1,10 @@
|
|
|
1
1
|
export * from "./createagent";
|
|
2
|
-
export * from "./
|
|
3
|
-
export * from "./createphonenumber";
|
|
2
|
+
export * from "./registercall";
|
|
4
3
|
export * from "./deleteagent";
|
|
5
|
-
export * from "./deletephonenumber";
|
|
6
4
|
export * from "./getagent";
|
|
7
5
|
export * from "./getcall";
|
|
8
|
-
export * from "./getphonenumber";
|
|
9
6
|
export * from "./listagents";
|
|
10
7
|
export * from "./listcalls";
|
|
11
|
-
export * from "./listphonenumbers";
|
|
12
8
|
export * from "./sdkerror";
|
|
13
9
|
export * from "./updateagent";
|
|
14
|
-
export * from "./updatephoneagent";
|
|
15
10
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/errors/index.ts"],"names":[],"mappings":"AAIA,cAAc,eAAe,CAAC;AAC9B,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/errors/index.ts"],"names":[],"mappings":"AAIA,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC"}
|
package/models/errors/index.js
CHANGED
|
@@ -18,17 +18,12 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
18
18
|
};
|
|
19
19
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
20
|
__exportStar(require("./createagent"), exports);
|
|
21
|
-
__exportStar(require("./
|
|
22
|
-
__exportStar(require("./createphonenumber"), exports);
|
|
21
|
+
__exportStar(require("./registercall"), exports);
|
|
23
22
|
__exportStar(require("./deleteagent"), exports);
|
|
24
|
-
__exportStar(require("./deletephonenumber"), exports);
|
|
25
23
|
__exportStar(require("./getagent"), exports);
|
|
26
24
|
__exportStar(require("./getcall"), exports);
|
|
27
|
-
__exportStar(require("./getphonenumber"), exports);
|
|
28
25
|
__exportStar(require("./listagents"), exports);
|
|
29
26
|
__exportStar(require("./listcalls"), exports);
|
|
30
|
-
__exportStar(require("./listphonenumbers"), exports);
|
|
31
27
|
__exportStar(require("./sdkerror"), exports);
|
|
32
28
|
__exportStar(require("./updateagent"), exports);
|
|
33
|
-
__exportStar(require("./updatephoneagent"), exports);
|
|
34
29
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/errors/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;AAEH,gDAA8B;AAC9B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/errors/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;AAEH,gDAA8B;AAC9B,iDAA+B;AAC/B,gDAA8B;AAC9B,6CAA2B;AAC3B,4CAA0B;AAC1B,+CAA6B;AAC7B,8CAA4B;AAC5B,6CAA2B;AAC3B,gDAA8B"}
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
/**
|
|
3
|
+
* Internal Server Error
|
|
4
|
+
*/
|
|
5
|
+
export type RegisterCallResponse500ResponseBodyData = {
|
|
6
|
+
/**
|
|
7
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
8
|
+
*/
|
|
9
|
+
rawResponse?: Response | undefined;
|
|
10
|
+
errorMessage?: string | undefined;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* Internal Server Error
|
|
14
|
+
*/
|
|
15
|
+
export declare class RegisterCallResponse500ResponseBody extends Error {
|
|
16
|
+
/**
|
|
17
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
18
|
+
*/
|
|
19
|
+
rawResponse?: Response | undefined;
|
|
20
|
+
errorMessage?: string | undefined;
|
|
21
|
+
/** The original data that was passed to this error instance. */
|
|
22
|
+
data$: RegisterCallResponse500ResponseBodyData;
|
|
23
|
+
constructor(err: RegisterCallResponse500ResponseBodyData, options?: ErrorOptions);
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Too Many Requests
|
|
27
|
+
*/
|
|
28
|
+
export type RegisterCallResponse429ResponseBodyData = {
|
|
29
|
+
/**
|
|
30
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
31
|
+
*/
|
|
32
|
+
rawResponse?: Response | undefined;
|
|
33
|
+
errorMessage?: string | undefined;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Too Many Requests
|
|
37
|
+
*/
|
|
38
|
+
export declare class RegisterCallResponse429ResponseBody extends Error {
|
|
39
|
+
/**
|
|
40
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
41
|
+
*/
|
|
42
|
+
rawResponse?: Response | undefined;
|
|
43
|
+
errorMessage?: string | undefined;
|
|
44
|
+
/** The original data that was passed to this error instance. */
|
|
45
|
+
data$: RegisterCallResponse429ResponseBodyData;
|
|
46
|
+
constructor(err: RegisterCallResponse429ResponseBodyData, options?: ErrorOptions);
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Unprocessable Content
|
|
50
|
+
*/
|
|
51
|
+
export type RegisterCallResponse422ResponseBodyData = {
|
|
52
|
+
/**
|
|
53
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
54
|
+
*/
|
|
55
|
+
rawResponse?: Response | undefined;
|
|
56
|
+
errorMessage?: string | undefined;
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* Unprocessable Content
|
|
60
|
+
*/
|
|
61
|
+
export declare class RegisterCallResponse422ResponseBody extends Error {
|
|
62
|
+
/**
|
|
63
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
64
|
+
*/
|
|
65
|
+
rawResponse?: Response | undefined;
|
|
66
|
+
errorMessage?: string | undefined;
|
|
67
|
+
/** The original data that was passed to this error instance. */
|
|
68
|
+
data$: RegisterCallResponse422ResponseBodyData;
|
|
69
|
+
constructor(err: RegisterCallResponse422ResponseBodyData, options?: ErrorOptions);
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Payment Required
|
|
73
|
+
*/
|
|
74
|
+
export type RegisterCallResponse402ResponseBodyData = {
|
|
75
|
+
/**
|
|
76
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
77
|
+
*/
|
|
78
|
+
rawResponse?: Response | undefined;
|
|
79
|
+
errorMessage?: string | undefined;
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* Payment Required
|
|
83
|
+
*/
|
|
84
|
+
export declare class RegisterCallResponse402ResponseBody extends Error {
|
|
85
|
+
/**
|
|
86
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
87
|
+
*/
|
|
88
|
+
rawResponse?: Response | undefined;
|
|
89
|
+
errorMessage?: string | undefined;
|
|
90
|
+
/** The original data that was passed to this error instance. */
|
|
91
|
+
data$: RegisterCallResponse402ResponseBodyData;
|
|
92
|
+
constructor(err: RegisterCallResponse402ResponseBodyData, options?: ErrorOptions);
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* Unauthorized
|
|
96
|
+
*/
|
|
97
|
+
export type RegisterCallResponseResponseBodyData = {
|
|
98
|
+
/**
|
|
99
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
100
|
+
*/
|
|
101
|
+
rawResponse?: Response | undefined;
|
|
102
|
+
errorMessage?: string | undefined;
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* Unauthorized
|
|
106
|
+
*/
|
|
107
|
+
export declare class RegisterCallResponseResponseBody extends Error {
|
|
108
|
+
/**
|
|
109
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
110
|
+
*/
|
|
111
|
+
rawResponse?: Response | undefined;
|
|
112
|
+
errorMessage?: string | undefined;
|
|
113
|
+
/** The original data that was passed to this error instance. */
|
|
114
|
+
data$: RegisterCallResponseResponseBodyData;
|
|
115
|
+
constructor(err: RegisterCallResponseResponseBodyData, options?: ErrorOptions);
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* Bad Request
|
|
119
|
+
*/
|
|
120
|
+
export type RegisterCallResponseBodyData = {
|
|
121
|
+
/**
|
|
122
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
123
|
+
*/
|
|
124
|
+
rawResponse?: Response | undefined;
|
|
125
|
+
errorMessage?: string | undefined;
|
|
126
|
+
};
|
|
127
|
+
/**
|
|
128
|
+
* Bad Request
|
|
129
|
+
*/
|
|
130
|
+
export declare class RegisterCallResponseBody extends Error {
|
|
131
|
+
/**
|
|
132
|
+
* Raw HTTP response; suitable for custom response parsing
|
|
133
|
+
*/
|
|
134
|
+
rawResponse?: Response | undefined;
|
|
135
|
+
errorMessage?: string | undefined;
|
|
136
|
+
/** The original data that was passed to this error instance. */
|
|
137
|
+
data$: RegisterCallResponseBodyData;
|
|
138
|
+
constructor(err: RegisterCallResponseBodyData, options?: ErrorOptions);
|
|
139
|
+
}
|
|
140
|
+
/** @internal */
|
|
141
|
+
export declare namespace RegisterCallResponse500ResponseBody$ {
|
|
142
|
+
type Inbound = {
|
|
143
|
+
RawResponse?: Response | undefined;
|
|
144
|
+
error_message?: string | undefined;
|
|
145
|
+
};
|
|
146
|
+
const inboundSchema: z.ZodType<RegisterCallResponse500ResponseBody, z.ZodTypeDef, Inbound>;
|
|
147
|
+
type Outbound = {
|
|
148
|
+
RawResponse?: never | undefined;
|
|
149
|
+
error_message?: string | undefined;
|
|
150
|
+
};
|
|
151
|
+
const outboundSchema: z.ZodType<Outbound, z.ZodTypeDef, RegisterCallResponse500ResponseBody>;
|
|
152
|
+
}
|
|
153
|
+
/** @internal */
|
|
154
|
+
export declare namespace RegisterCallResponse429ResponseBody$ {
|
|
155
|
+
type Inbound = {
|
|
156
|
+
RawResponse?: Response | undefined;
|
|
157
|
+
error_message?: string | undefined;
|
|
158
|
+
};
|
|
159
|
+
const inboundSchema: z.ZodType<RegisterCallResponse429ResponseBody, z.ZodTypeDef, Inbound>;
|
|
160
|
+
type Outbound = {
|
|
161
|
+
RawResponse?: never | undefined;
|
|
162
|
+
error_message?: string | undefined;
|
|
163
|
+
};
|
|
164
|
+
const outboundSchema: z.ZodType<Outbound, z.ZodTypeDef, RegisterCallResponse429ResponseBody>;
|
|
165
|
+
}
|
|
166
|
+
/** @internal */
|
|
167
|
+
export declare namespace RegisterCallResponse422ResponseBody$ {
|
|
168
|
+
type Inbound = {
|
|
169
|
+
RawResponse?: Response | undefined;
|
|
170
|
+
error_message?: string | undefined;
|
|
171
|
+
};
|
|
172
|
+
const inboundSchema: z.ZodType<RegisterCallResponse422ResponseBody, z.ZodTypeDef, Inbound>;
|
|
173
|
+
type Outbound = {
|
|
174
|
+
RawResponse?: never | undefined;
|
|
175
|
+
error_message?: string | undefined;
|
|
176
|
+
};
|
|
177
|
+
const outboundSchema: z.ZodType<Outbound, z.ZodTypeDef, RegisterCallResponse422ResponseBody>;
|
|
178
|
+
}
|
|
179
|
+
/** @internal */
|
|
180
|
+
export declare namespace RegisterCallResponse402ResponseBody$ {
|
|
181
|
+
type Inbound = {
|
|
182
|
+
RawResponse?: Response | undefined;
|
|
183
|
+
error_message?: string | undefined;
|
|
184
|
+
};
|
|
185
|
+
const inboundSchema: z.ZodType<RegisterCallResponse402ResponseBody, z.ZodTypeDef, Inbound>;
|
|
186
|
+
type Outbound = {
|
|
187
|
+
RawResponse?: never | undefined;
|
|
188
|
+
error_message?: string | undefined;
|
|
189
|
+
};
|
|
190
|
+
const outboundSchema: z.ZodType<Outbound, z.ZodTypeDef, RegisterCallResponse402ResponseBody>;
|
|
191
|
+
}
|
|
192
|
+
/** @internal */
|
|
193
|
+
export declare namespace RegisterCallResponseResponseBody$ {
|
|
194
|
+
type Inbound = {
|
|
195
|
+
RawResponse?: Response | undefined;
|
|
196
|
+
error_message?: string | undefined;
|
|
197
|
+
};
|
|
198
|
+
const inboundSchema: z.ZodType<RegisterCallResponseResponseBody, z.ZodTypeDef, Inbound>;
|
|
199
|
+
type Outbound = {
|
|
200
|
+
RawResponse?: never | undefined;
|
|
201
|
+
error_message?: string | undefined;
|
|
202
|
+
};
|
|
203
|
+
const outboundSchema: z.ZodType<Outbound, z.ZodTypeDef, RegisterCallResponseResponseBody>;
|
|
204
|
+
}
|
|
205
|
+
/** @internal */
|
|
206
|
+
export declare namespace RegisterCallResponseBody$ {
|
|
207
|
+
type Inbound = {
|
|
208
|
+
RawResponse?: Response | undefined;
|
|
209
|
+
error_message?: string | undefined;
|
|
210
|
+
};
|
|
211
|
+
const inboundSchema: z.ZodType<RegisterCallResponseBody, z.ZodTypeDef, Inbound>;
|
|
212
|
+
type Outbound = {
|
|
213
|
+
RawResponse?: never | undefined;
|
|
214
|
+
error_message?: string | undefined;
|
|
215
|
+
};
|
|
216
|
+
const outboundSchema: z.ZodType<Outbound, z.ZodTypeDef, RegisterCallResponseBody>;
|
|
217
|
+
}
|
|
218
|
+
//# sourceMappingURL=registercall.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"registercall.d.ts","sourceRoot":"","sources":["../../src/models/errors/registercall.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AACH,MAAM,MAAM,uCAAuC,GAAG;IACpD;;OAEG;IACH,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IACnC,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACnC,CAAC;AAEF;;GAEG;AACH,qBAAa,mCAAoC,SAAQ,KAAK;IAC5D;;OAEG;IACH,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IACnC,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAElC,gEAAgE;IAChE,KAAK,EAAE,uCAAuC,CAAC;gBAG7C,GAAG,EAAE,uCAAuC,EAC5C,OAAO,CAAC,EAAE,YAAY;CAoBzB;AAED;;GAEG;AACH,MAAM,MAAM,uCAAuC,GAAG;IACpD;;OAEG;IACH,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IACnC,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACnC,CAAC;AAEF;;GAEG;AACH,qBAAa,mCAAoC,SAAQ,KAAK;IAC5D;;OAEG;IACH,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IACnC,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAElC,gEAAgE;IAChE,KAAK,EAAE,uCAAuC,CAAC;gBAG7C,GAAG,EAAE,uCAAuC,EAC5C,OAAO,CAAC,EAAE,YAAY;CAoBzB;AAED;;GAEG;AACH,MAAM,MAAM,uCAAuC,GAAG;IACpD;;OAEG;IACH,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IACnC,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACnC,CAAC;AAEF;;GAEG;AACH,qBAAa,mCAAoC,SAAQ,KAAK;IAC5D;;OAEG;IACH,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IACnC,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAElC,gEAAgE;IAChE,KAAK,EAAE,uCAAuC,CAAC;gBAG7C,GAAG,EAAE,uCAAuC,EAC5C,OAAO,CAAC,EAAE,YAAY;CAoBzB;AAED;;GAEG;AACH,MAAM,MAAM,uCAAuC,GAAG;IACpD;;OAEG;IACH,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IACnC,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACnC,CAAC;AAEF;;GAEG;AACH,qBAAa,mCAAoC,SAAQ,KAAK;IAC5D;;OAEG;IACH,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IACnC,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAElC,gEAAgE;IAChE,KAAK,EAAE,uCAAuC,CAAC;gBAG7C,GAAG,EAAE,uCAAuC,EAC5C,OAAO,CAAC,EAAE,YAAY;CAoBzB;AAED;;GAEG;AACH,MAAM,MAAM,oCAAoC,GAAG;IACjD;;OAEG;IACH,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IACnC,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACnC,CAAC;AAEF;;GAEG;AACH,qBAAa,gCAAiC,SAAQ,KAAK;IACzD;;OAEG;IACH,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IACnC,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAElC,gEAAgE;IAChE,KAAK,EAAE,oCAAoC,CAAC;gBAG1C,GAAG,EAAE,oCAAoC,EACzC,OAAO,CAAC,EAAE,YAAY;CAoBzB;AAED;;GAEG;AACH,MAAM,MAAM,4BAA4B,GAAG;IACzC;;OAEG;IACH,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IACnC,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACnC,CAAC;AAEF;;GAEG;AACH,qBAAa,wBAAyB,SAAQ,KAAK;IACjD;;OAEG;IACH,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IACnC,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAElC,gEAAgE;IAChE,KAAK,EAAE,4BAA4B,CAAC;gBAExB,GAAG,EAAE,4BAA4B,EAAE,OAAO,CAAC,EAAE,YAAY;CAmBtE;AAED,gBAAgB;AAChB,yBAAiB,oCAAoC,CAAC;IACpD,KAAY,OAAO,GAAG;QACpB,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;QACnC,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACpC,CAAC;IAEK,MAAM,aAAa,EAAE,CAAC,CAAC,OAAO,CACnC,mCAAmC,EACnC,CAAC,CAAC,UAAU,EACZ,OAAO,CAeL,CAAC;IACL,KAAY,QAAQ,GAAG;QACrB,WAAW,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC;QAChC,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACpC,CAAC;IAEK,MAAM,cAAc,EAAE,CAAC,CAAC,OAAO,CACpC,QAAQ,EACR,CAAC,CAAC,UAAU,EACZ,mCAAmC,CAyBlC,CAAC;CACL;AAED,gBAAgB;AAChB,yBAAiB,oCAAoC,CAAC;IACpD,KAAY,OAAO,GAAG;QACpB,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;QACnC,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACpC,CAAC;IAEK,MAAM,aAAa,EAAE,CAAC,CAAC,OAAO,CACnC,mCAAmC,EACnC,CAAC,CAAC,UAAU,EACZ,OAAO,CAeL,CAAC;IACL,KAAY,QAAQ,GAAG;QACrB,WAAW,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC;QAChC,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACpC,CAAC;IAEK,MAAM,cAAc,EAAE,CAAC,CAAC,OAAO,CACpC,QAAQ,EACR,CAAC,CAAC,UAAU,EACZ,mCAAmC,CAyBlC,CAAC;CACL;AAED,gBAAgB;AAChB,yBAAiB,oCAAoC,CAAC;IACpD,KAAY,OAAO,GAAG;QACpB,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;QACnC,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACpC,CAAC;IAEK,MAAM,aAAa,EAAE,CAAC,CAAC,OAAO,CACnC,mCAAmC,EACnC,CAAC,CAAC,UAAU,EACZ,OAAO,CAeL,CAAC;IACL,KAAY,QAAQ,GAAG;QACrB,WAAW,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC;QAChC,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACpC,CAAC;IAEK,MAAM,cAAc,EAAE,CAAC,CAAC,OAAO,CACpC,QAAQ,EACR,CAAC,CAAC,UAAU,EACZ,mCAAmC,CAyBlC,CAAC;CACL;AAED,gBAAgB;AAChB,yBAAiB,oCAAoC,CAAC;IACpD,KAAY,OAAO,GAAG;QACpB,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;QACnC,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACpC,CAAC;IAEK,MAAM,aAAa,EAAE,CAAC,CAAC,OAAO,CACnC,mCAAmC,EACnC,CAAC,CAAC,UAAU,EACZ,OAAO,CAeL,CAAC;IACL,KAAY,QAAQ,GAAG;QACrB,WAAW,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC;QAChC,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACpC,CAAC;IAEK,MAAM,cAAc,EAAE,CAAC,CAAC,OAAO,CACpC,QAAQ,EACR,CAAC,CAAC,UAAU,EACZ,mCAAmC,CAyBlC,CAAC;CACL;AAED,gBAAgB;AAChB,yBAAiB,iCAAiC,CAAC;IACjD,KAAY,OAAO,GAAG;QACpB,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;QACnC,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACpC,CAAC;IAEK,MAAM,aAAa,EAAE,CAAC,CAAC,OAAO,CACnC,gCAAgC,EAChC,CAAC,CAAC,UAAU,EACZ,OAAO,CAeL,CAAC;IACL,KAAY,QAAQ,GAAG;QACrB,WAAW,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC;QAChC,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACpC,CAAC;IAEK,MAAM,cAAc,EAAE,CAAC,CAAC,OAAO,CACpC,QAAQ,EACR,CAAC,CAAC,UAAU,EACZ,gCAAgC,CAyB/B,CAAC;CACL;AAED,gBAAgB;AAChB,yBAAiB,yBAAyB,CAAC;IACzC,KAAY,OAAO,GAAG;QACpB,WAAW,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;QACnC,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACpC,CAAC;IAEK,MAAM,aAAa,EAAE,CAAC,CAAC,OAAO,CACnC,wBAAwB,EACxB,CAAC,CAAC,UAAU,EACZ,OAAO,CAeL,CAAC;IACL,KAAY,QAAQ,GAAG;QACrB,WAAW,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC;QAChC,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACpC,CAAC;IAEK,MAAM,cAAc,EAAE,CAAC,CAAC,OAAO,CACpC,QAAQ,EACR,CAAC,CAAC,UAAU,EACZ,wBAAwB,CAyBvB,CAAC;CACL"}
|