@wildix/wilma-agents-client 1.0.14 → 1.0.16
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-cjs/WilmaAgents.js +4 -8
- package/dist-cjs/commands/{CreateAgentDeploymentCommand.js → PutAgentDeploymentCommand.js} +6 -6
- package/dist-cjs/commands/{ListAgentDeploymentsCommand.js → ResetAgentDeploymentCommand.js} +6 -6
- package/dist-cjs/commands/index.js +2 -4
- package/dist-cjs/models/enums.js +7 -5
- package/dist-cjs/runtimeConfig.native.js +3 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -2
- package/dist-cjs/schemas/schemas_0.js +66 -111
- package/dist-es/WilmaAgents.js +4 -8
- package/dist-es/commands/{ListAgentDeploymentsCommand.js → PutAgentDeploymentCommand.js} +5 -5
- package/dist-es/commands/{CreateAgentDeploymentCommand.js → ResetAgentDeploymentCommand.js} +5 -5
- package/dist-es/commands/index.js +2 -4
- package/dist-es/models/enums.js +6 -4
- package/dist-es/runtimeConfig.native.js +3 -0
- package/dist-es/runtimeConfig.shared.js +2 -2
- package/dist-es/schemas/schemas_0.js +63 -108
- package/dist-types/WilmaAgents.d.ts +19 -38
- package/dist-types/WilmaAgentsClient.d.ts +9 -16
- package/dist-types/commands/CreateAgentCommand.d.ts +13 -38
- package/dist-types/commands/DeleteAgentCommand.d.ts +1 -1
- package/dist-types/commands/GetAgentCommand.d.ts +8 -31
- package/dist-types/commands/GetAgentDeploymentCommand.d.ts +6 -26
- package/dist-types/commands/GetAgentVersionCommand.d.ts +4 -6
- package/dist-types/commands/ListAgentVersionsCommand.d.ts +0 -3
- package/dist-types/commands/ListAgentsCommand.d.ts +8 -31
- package/dist-types/commands/PublishAgentVersionCommand.d.ts +5 -7
- package/dist-types/commands/PutAgentDeploymentCommand.d.ts +90 -0
- package/dist-types/commands/ResetAgentDeploymentCommand.d.ts +87 -0
- package/dist-types/commands/RestoreAgentVersionToDraftCommand.d.ts +9 -32
- package/dist-types/commands/UpdateAgentCommand.d.ts +12 -37
- package/dist-types/commands/index.d.ts +2 -4
- package/dist-types/index.d.ts +5 -10
- package/dist-types/models/enums.d.ts +27 -19
- package/dist-types/models/models_0.d.ts +91 -196
- package/dist-types/runtimeConfig.native.d.ts +2 -1
- package/dist-types/schemas/schemas_0.d.ts +6 -13
- package/package.json +7 -5
- package/dist-cjs/commands/DeleteAgentDeploymentCommand.js +0 -20
- package/dist-cjs/commands/UpdateAgentDeploymentCommand.js +0 -20
- package/dist-es/commands/DeleteAgentDeploymentCommand.js +0 -16
- package/dist-es/commands/UpdateAgentDeploymentCommand.js +0 -16
- package/dist-types/commands/CreateAgentDeploymentCommand.d.ts +0 -115
- package/dist-types/commands/DeleteAgentDeploymentCommand.d.ts +0 -81
- package/dist-types/commands/ListAgentDeploymentsCommand.d.ts +0 -105
- package/dist-types/commands/UpdateAgentDeploymentCommand.d.ts +0 -116
package/dist-es/WilmaAgents.js
CHANGED
|
@@ -2,43 +2,39 @@ import { createAggregatedClient } from "@smithy/core/client";
|
|
|
2
2
|
import { CompareAgentVersionsCommand, } from "./commands/CompareAgentVersionsCommand";
|
|
3
3
|
import { CreateAgentApiKeyCommand, } from "./commands/CreateAgentApiKeyCommand";
|
|
4
4
|
import { CreateAgentCommand, } from "./commands/CreateAgentCommand";
|
|
5
|
-
import { CreateAgentDeploymentCommand, } from "./commands/CreateAgentDeploymentCommand";
|
|
6
5
|
import { DeleteAgentApiKeyCommand, } from "./commands/DeleteAgentApiKeyCommand";
|
|
7
6
|
import { DeleteAgentCommand, } from "./commands/DeleteAgentCommand";
|
|
8
|
-
import { DeleteAgentDeploymentCommand, } from "./commands/DeleteAgentDeploymentCommand";
|
|
9
7
|
import { GetAgentCommand } from "./commands/GetAgentCommand";
|
|
10
8
|
import { GetAgentDeploymentCommand, } from "./commands/GetAgentDeploymentCommand";
|
|
11
9
|
import { GetAgentVersionCommand, } from "./commands/GetAgentVersionCommand";
|
|
12
10
|
import { ListAgentApiKeysCommand, } from "./commands/ListAgentApiKeysCommand";
|
|
13
|
-
import { ListAgentDeploymentsCommand, } from "./commands/ListAgentDeploymentsCommand";
|
|
14
11
|
import { ListAgentsCommand, } from "./commands/ListAgentsCommand";
|
|
15
12
|
import { ListAgentsNamesCommand, } from "./commands/ListAgentsNamesCommand";
|
|
16
13
|
import { ListAgentVersionsCommand, } from "./commands/ListAgentVersionsCommand";
|
|
17
14
|
import { PublishAgentVersionCommand, } from "./commands/PublishAgentVersionCommand";
|
|
15
|
+
import { PutAgentDeploymentCommand, } from "./commands/PutAgentDeploymentCommand";
|
|
16
|
+
import { ResetAgentDeploymentCommand, } from "./commands/ResetAgentDeploymentCommand";
|
|
18
17
|
import { RestoreAgentVersionToDraftCommand, } from "./commands/RestoreAgentVersionToDraftCommand";
|
|
19
18
|
import { UpdateAgentCommand, } from "./commands/UpdateAgentCommand";
|
|
20
|
-
import { UpdateAgentDeploymentCommand, } from "./commands/UpdateAgentDeploymentCommand";
|
|
21
19
|
import { WilmaAgentsClient } from "./WilmaAgentsClient";
|
|
22
20
|
const commands = {
|
|
23
21
|
CompareAgentVersionsCommand,
|
|
24
22
|
CreateAgentCommand,
|
|
25
23
|
CreateAgentApiKeyCommand,
|
|
26
|
-
CreateAgentDeploymentCommand,
|
|
27
24
|
DeleteAgentCommand,
|
|
28
25
|
DeleteAgentApiKeyCommand,
|
|
29
|
-
DeleteAgentDeploymentCommand,
|
|
30
26
|
GetAgentCommand,
|
|
31
27
|
GetAgentDeploymentCommand,
|
|
32
28
|
GetAgentVersionCommand,
|
|
33
29
|
ListAgentApiKeysCommand,
|
|
34
|
-
ListAgentDeploymentsCommand,
|
|
35
30
|
ListAgentsCommand,
|
|
36
31
|
ListAgentsNamesCommand,
|
|
37
32
|
ListAgentVersionsCommand,
|
|
38
33
|
PublishAgentVersionCommand,
|
|
34
|
+
PutAgentDeploymentCommand,
|
|
35
|
+
ResetAgentDeploymentCommand,
|
|
39
36
|
RestoreAgentVersionToDraftCommand,
|
|
40
37
|
UpdateAgentCommand,
|
|
41
|
-
UpdateAgentDeploymentCommand,
|
|
42
38
|
};
|
|
43
39
|
export class WilmaAgents extends WilmaAgentsClient {
|
|
44
40
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import {
|
|
4
|
+
import { PutAgentDeployment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
|
-
export class
|
|
6
|
+
export class PutAgentDeploymentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
8
|
.ep(commonParams)
|
|
9
9
|
.m(function (Command, cs, config, o) {
|
|
10
10
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
11
|
})
|
|
12
|
-
.s("WilmaAgents", "
|
|
13
|
-
.n("WilmaAgentsClient", "
|
|
14
|
-
.sc(
|
|
12
|
+
.s("WilmaAgents", "PutAgentDeployment", {})
|
|
13
|
+
.n("WilmaAgentsClient", "PutAgentDeploymentCommand")
|
|
14
|
+
.sc(PutAgentDeployment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import {
|
|
4
|
+
import { ResetAgentDeployment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
|
-
export class
|
|
6
|
+
export class ResetAgentDeploymentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
8
|
.ep(commonParams)
|
|
9
9
|
.m(function (Command, cs, config, o) {
|
|
10
10
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
11
|
})
|
|
12
|
-
.s("WilmaAgents", "
|
|
13
|
-
.n("WilmaAgentsClient", "
|
|
14
|
-
.sc(
|
|
12
|
+
.s("WilmaAgents", "ResetAgentDeployment", {})
|
|
13
|
+
.n("WilmaAgentsClient", "ResetAgentDeploymentCommand")
|
|
14
|
+
.sc(ResetAgentDeployment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
export * from "./CompareAgentVersionsCommand";
|
|
2
2
|
export * from "./CreateAgentApiKeyCommand";
|
|
3
3
|
export * from "./CreateAgentCommand";
|
|
4
|
-
export * from "./CreateAgentDeploymentCommand";
|
|
5
4
|
export * from "./DeleteAgentApiKeyCommand";
|
|
6
5
|
export * from "./DeleteAgentCommand";
|
|
7
|
-
export * from "./DeleteAgentDeploymentCommand";
|
|
8
6
|
export * from "./GetAgentCommand";
|
|
9
7
|
export * from "./GetAgentDeploymentCommand";
|
|
10
8
|
export * from "./GetAgentVersionCommand";
|
|
11
9
|
export * from "./ListAgentApiKeysCommand";
|
|
12
|
-
export * from "./ListAgentDeploymentsCommand";
|
|
13
10
|
export * from "./ListAgentVersionsCommand";
|
|
14
11
|
export * from "./ListAgentsCommand";
|
|
15
12
|
export * from "./ListAgentsNamesCommand";
|
|
16
13
|
export * from "./PublishAgentVersionCommand";
|
|
14
|
+
export * from "./PutAgentDeploymentCommand";
|
|
15
|
+
export * from "./ResetAgentDeploymentCommand";
|
|
17
16
|
export * from "./RestoreAgentVersionToDraftCommand";
|
|
18
17
|
export * from "./UpdateAgentCommand";
|
|
19
|
-
export * from "./UpdateAgentDeploymentCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -7,10 +7,6 @@ export const ActorType = {
|
|
|
7
7
|
SERVICE: "service",
|
|
8
8
|
USER: "user",
|
|
9
9
|
};
|
|
10
|
-
export const AgentDeploymentStatus = {
|
|
11
|
-
ACTIVE: "active",
|
|
12
|
-
PAUSED: "paused",
|
|
13
|
-
};
|
|
14
10
|
export const AgentToolPipelineType = {
|
|
15
11
|
ASYNC_REQUEST: "async_request",
|
|
16
12
|
ASYNC_REQUEST_GUIDED: "async_request_guided",
|
|
@@ -36,6 +32,12 @@ export const SandboxNetworkAccess = {
|
|
|
36
32
|
ALLOWLIST: "allowlist",
|
|
37
33
|
NONE: "deny-all",
|
|
38
34
|
};
|
|
35
|
+
export const SandboxSize = {
|
|
36
|
+
LARGE: "large",
|
|
37
|
+
MAX: "max",
|
|
38
|
+
MIN: "min",
|
|
39
|
+
SMALL: "small",
|
|
40
|
+
};
|
|
39
41
|
export const AgentTransferPipelineType = {
|
|
40
42
|
REPLY_AND_TRANSFER: "reply_and_transfer",
|
|
41
43
|
REPLY_INSTRUCTED_AND_TRANSFER: "reply_instructed_and_transfer",
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { Sha256 } from "@aws-crypto/sha256-js";
|
|
2
|
+
import { installReactNativeGlobals, XhrHttpHandler as RequestHandler } from "@wildix/smithy-react-native";
|
|
2
3
|
import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser";
|
|
3
4
|
export const getRuntimeConfig = (config) => {
|
|
4
5
|
const browserDefaults = getBrowserRuntimeConfig(config);
|
|
6
|
+
installReactNativeGlobals();
|
|
5
7
|
return {
|
|
6
8
|
...browserDefaults,
|
|
7
9
|
...config,
|
|
8
10
|
runtime: "react-native",
|
|
11
|
+
requestHandler: RequestHandler.create(config?.requestHandler),
|
|
9
12
|
sha256: config?.sha256 ?? Sha256,
|
|
10
13
|
};
|
|
11
14
|
};
|
|
@@ -8,7 +8,7 @@ import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
|
8
8
|
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
9
|
export const getRuntimeConfig = (config) => {
|
|
10
10
|
return {
|
|
11
|
-
apiVersion: "
|
|
11
|
+
apiVersion: "v2",
|
|
12
12
|
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
13
13
|
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
14
14
|
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
@@ -47,7 +47,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
47
47
|
protocolSettings: config?.protocolSettings ?? {
|
|
48
48
|
defaultNamespace: "wildix.wilma.agents",
|
|
49
49
|
errorTypeRegistries,
|
|
50
|
-
version: "
|
|
50
|
+
version: "v2",
|
|
51
51
|
serviceTarget: "WilmaAgents",
|
|
52
52
|
},
|
|
53
53
|
urlParser: config?.urlParser ?? parseUrl,
|
|
@@ -9,9 +9,7 @@ const _ACCg = "AgentConnectorCapability";
|
|
|
9
9
|
const _ACL = "AgentCapabilitiesList";
|
|
10
10
|
const _ACS = "AssistantChannelSettings";
|
|
11
11
|
const _ACg = "AgentCapability";
|
|
12
|
-
const _AD = "AgentDeployment";
|
|
13
12
|
const _ADC = "AgentDelegationCapability";
|
|
14
|
-
const _ADL = "AgentDeploymentsList";
|
|
15
13
|
const _ADR = "AgentDeploymentRoute";
|
|
16
14
|
const _ADRL = "AgentDeploymentRoutesList";
|
|
17
15
|
const _ADS = "AgentDefinitionSnapshot";
|
|
@@ -72,9 +70,6 @@ const _CA = "CreateAgent";
|
|
|
72
70
|
const _CAAK = "CreateAgentApiKey";
|
|
73
71
|
const _CAAKI = "CreateAgentApiKeyInput";
|
|
74
72
|
const _CAAKO = "CreateAgentApiKeyOutput";
|
|
75
|
-
const _CAD = "CreateAgentDeployment";
|
|
76
|
-
const _CADI = "CreateAgentDeploymentInput";
|
|
77
|
-
const _CADO = "CreateAgentDeploymentOutput";
|
|
78
73
|
const _CAI = "CreateAgentInput";
|
|
79
74
|
const _CAO = "CreateAgentOutput";
|
|
80
75
|
const _CAV = "CompareAgentVersions";
|
|
@@ -86,9 +81,6 @@ const _DA = "DeleteAgent";
|
|
|
86
81
|
const _DAAK = "DeleteAgentApiKey";
|
|
87
82
|
const _DAAKI = "DeleteAgentApiKeyInput";
|
|
88
83
|
const _DAAKO = "DeleteAgentApiKeyOutput";
|
|
89
|
-
const _DAD = "DeleteAgentDeployment";
|
|
90
|
-
const _DADI = "DeleteAgentDeploymentInput";
|
|
91
|
-
const _DADO = "DeleteAgentDeploymentOutput";
|
|
92
84
|
const _DAI = "DeleteAgentInput";
|
|
93
85
|
const _DAO = "DeleteAgentOutput";
|
|
94
86
|
const _GA = "GetAgent";
|
|
@@ -104,9 +96,6 @@ const _LA = "ListAgents";
|
|
|
104
96
|
const _LAAK = "ListAgentApiKeys";
|
|
105
97
|
const _LAAKI = "ListAgentApiKeysInput";
|
|
106
98
|
const _LAAKO = "ListAgentApiKeysOutput";
|
|
107
|
-
const _LAD = "ListAgentDeployments";
|
|
108
|
-
const _LADI = "ListAgentDeploymentsInput";
|
|
109
|
-
const _LADO = "ListAgentDeploymentsOutput";
|
|
110
99
|
const _LAI = "ListAgentsInput";
|
|
111
100
|
const _LAN = "ListAgentsNames";
|
|
112
101
|
const _LANI = "ListAgentsNamesInput";
|
|
@@ -117,18 +106,21 @@ const _LAVI = "ListAgentVersionsInput";
|
|
|
117
106
|
const _LAVO = "ListAgentVersionsOutput";
|
|
118
107
|
const _NFE = "NotFoundException";
|
|
119
108
|
const _NTPE = "NothingToPublishException";
|
|
109
|
+
const _PAD = "PutAgentDeployment";
|
|
110
|
+
const _PADI = "PutAgentDeploymentInput";
|
|
111
|
+
const _PADO = "PutAgentDeploymentOutput";
|
|
120
112
|
const _PAV = "PublishAgentVersion";
|
|
121
113
|
const _PAVI = "PublishAgentVersionInput";
|
|
122
114
|
const _PAVO = "PublishAgentVersionOutput";
|
|
115
|
+
const _RAD = "ResetAgentDeployment";
|
|
116
|
+
const _RADI = "ResetAgentDeploymentInput";
|
|
117
|
+
const _RADO = "ResetAgentDeploymentOutput";
|
|
123
118
|
const _RAVTD = "RestoreAgentVersionToDraft";
|
|
124
119
|
const _RAVTDI = "RestoreAgentVersionToDraftInput";
|
|
125
120
|
const _RAVTDO = "RestoreAgentVersionToDraftOutput";
|
|
126
121
|
const _RCE = "RevisionConflictException";
|
|
127
122
|
const _SR = "SecretRef";
|
|
128
123
|
const _UA = "UpdateAgent";
|
|
129
|
-
const _UAD = "UpdateAgentDeployment";
|
|
130
|
-
const _UADI = "UpdateAgentDeploymentInput";
|
|
131
|
-
const _UADO = "UpdateAgentDeploymentOutput";
|
|
132
124
|
const _UAI = "UpdateAgentInput";
|
|
133
125
|
const _UAO = "UpdateAgentOutput";
|
|
134
126
|
const _VCMS = "VoiceCallerMetadataSettings";
|
|
@@ -144,8 +136,7 @@ const _VTT = "VoiceTransferTarget";
|
|
|
144
136
|
const _WCS = "WorkflowChannelSettings";
|
|
145
137
|
const _WSUL = "WebSearchUserLocation";
|
|
146
138
|
const _a = "access";
|
|
147
|
-
const _aD = "
|
|
148
|
-
const _aDl = "allowedDomains";
|
|
139
|
+
const _aD = "allowedDomains";
|
|
149
140
|
const _aI = "agentId";
|
|
150
141
|
const _aOF = "applyOnFailure";
|
|
151
142
|
const _aOS = "applyOnSuccess";
|
|
@@ -188,12 +179,10 @@ const _cou = "country";
|
|
|
188
179
|
const _cu = "cursor";
|
|
189
180
|
const _d = "description";
|
|
190
181
|
const _dBV = "draftBaseVersion";
|
|
191
|
-
const
|
|
192
|
-
const _de = "deployments";
|
|
182
|
+
const _de = "deployment";
|
|
193
183
|
const _def = "definition";
|
|
194
184
|
const _defa = "default";
|
|
195
185
|
const _del = "delegation";
|
|
196
|
-
const _dep = "deployment";
|
|
197
186
|
const _di = "discoverable";
|
|
198
187
|
const _e = "error";
|
|
199
188
|
const _eA = "expiresAt";
|
|
@@ -247,7 +236,6 @@ const _pro = "prompt";
|
|
|
247
236
|
const _r = "revision";
|
|
248
237
|
const _re = "region";
|
|
249
238
|
const _res = "result";
|
|
250
|
-
const _ro = "routing";
|
|
251
239
|
const _s = "smithy.ts.sdk.synthetic.wildix.wilma.agents";
|
|
252
240
|
const _sI = "snapshotId";
|
|
253
241
|
const _sM = "startMessage";
|
|
@@ -260,6 +248,7 @@ const _sec = "secret";
|
|
|
260
248
|
const _seco = "seconds";
|
|
261
249
|
const _ser = "service";
|
|
262
250
|
const _si = "silent";
|
|
251
|
+
const _siz = "size";
|
|
263
252
|
const _sk = "skills";
|
|
264
253
|
const _sn = "snapshot";
|
|
265
254
|
const _sq = "sqs";
|
|
@@ -267,6 +256,7 @@ const _st = "status";
|
|
|
267
256
|
const _su = "suggestions";
|
|
268
257
|
const _t = "type";
|
|
269
258
|
const _tD = "toDraft";
|
|
259
|
+
const _tV = "toolVersion";
|
|
270
260
|
const _tZ = "timeZone";
|
|
271
261
|
const _ta = "tag";
|
|
272
262
|
const _ti = "timeout";
|
|
@@ -345,7 +335,7 @@ export const errorTypeRegistries = [
|
|
|
345
335
|
export var Agent$ = [3, n2, _A,
|
|
346
336
|
0,
|
|
347
337
|
[_n, _ch, _en, _cA, _cB, _i, _st, _r, _d, _ca, _p, _se, _a, _uA, _uB, _lV, _dBV, _de],
|
|
348
|
-
[0, () => AgentChannels$, () => AgentEngine$, 0, () => Actor$, 0, 0, 1, 0, 0, 0, () => AgentSettings$, () => AgentAccess$, 0, () => Actor$, 1, 1, () =>
|
|
338
|
+
[0, () => AgentChannels$, () => AgentEngine$, 0, () => Actor$, 0, 0, 1, 0, 0, 0, () => AgentSettings$, () => AgentAccess$, 0, () => Actor$, 1, 1, () => AgentDeploymentRoutesList], 8
|
|
349
339
|
];
|
|
350
340
|
export var AgentAccess$ = [3, n2, _AA,
|
|
351
341
|
0,
|
|
@@ -354,8 +344,8 @@ export var AgentAccess$ = [3, n2, _AA,
|
|
|
354
344
|
];
|
|
355
345
|
export var AgentAiEngine$ = [3, n2, _AAE,
|
|
356
346
|
0,
|
|
357
|
-
[_in, _mo, _sk, _cap, _va],
|
|
358
|
-
[0, 0, () => AgentSkillsList, () => AgentCapabilitiesList, () => AgentVariablesList], 1
|
|
347
|
+
[_in, _mo, _tZ, _ar, _sk, _cap, _va],
|
|
348
|
+
[0, 0, 0, 2, () => AgentSkillsList, () => AgentCapabilitiesList, () => AgentVariablesList], 1
|
|
359
349
|
];
|
|
360
350
|
export var AgentApiKey$ = [3, n2, _AAK,
|
|
361
351
|
0,
|
|
@@ -364,8 +354,8 @@ export var AgentApiKey$ = [3, n2, _AAK,
|
|
|
364
354
|
];
|
|
365
355
|
export var AgentCallCapability$ = [3, n2, _ACC,
|
|
366
356
|
0,
|
|
367
|
-
[_aI, _aV,
|
|
368
|
-
[0, 1,
|
|
357
|
+
[_aI, _aV, _a, _va],
|
|
358
|
+
[0, 1, () => AgentAccess$, () => AgentToolVariablesList], 1
|
|
369
359
|
];
|
|
370
360
|
export var AgentChannels$ = [3, n2, _AC,
|
|
371
361
|
0,
|
|
@@ -384,13 +374,8 @@ export var AgentDefinitionSnapshot$ = [3, n2, _ADS,
|
|
|
384
374
|
];
|
|
385
375
|
export var AgentDelegationCapability$ = [3, n2, _ADC,
|
|
386
376
|
0,
|
|
387
|
-
[_i, _n, _d, _aV,
|
|
388
|
-
[0, 0, 0, 1,
|
|
389
|
-
];
|
|
390
|
-
export var AgentDeployment$ = [3, n2, _AD,
|
|
391
|
-
0,
|
|
392
|
-
[_cA, _cB, _aI, _n, _st, _ro, _r, _uA, _uB, _d],
|
|
393
|
-
[0, () => Actor$, 0, 0, 0, () => AgentDeploymentRoutesList, 1, 0, () => Actor$, 0], 7
|
|
377
|
+
[_i, _n, _d, _aV, _an],
|
|
378
|
+
[0, 0, 0, 1, () => AgentToolAnnotationsList], 1
|
|
394
379
|
];
|
|
395
380
|
export var AgentDeploymentRoute$ = [3, n2, _ADR,
|
|
396
381
|
0,
|
|
@@ -399,8 +384,8 @@ export var AgentDeploymentRoute$ = [3, n2, _ADR,
|
|
|
399
384
|
];
|
|
400
385
|
export var AgentHandoverCapability$ = [3, n2, _AHC,
|
|
401
386
|
0,
|
|
402
|
-
[_n, _d, _var, _ag, _aV,
|
|
403
|
-
[0, 0, 0, 0, 1, 0,
|
|
387
|
+
[_n, _d, _var, _ag, _aV, _ser, _si, _pi, _an],
|
|
388
|
+
[0, 0, 0, 0, 1, 0, 2, () => AgentHandoverPipeline$, () => AgentToolAnnotationsList]
|
|
404
389
|
];
|
|
405
390
|
export var AgentHandoverPipeline$ = [3, n2, _AHP,
|
|
406
391
|
0,
|
|
@@ -434,8 +419,8 @@ export var AgentSettings$ = [3, n2, _AS,
|
|
|
434
419
|
];
|
|
435
420
|
export var AgentSnapshotSandboxOptions$ = [3, n2, _ASSO,
|
|
436
421
|
0,
|
|
437
|
-
[_sI, _ne,
|
|
438
|
-
[0, 0, 64 | 0,
|
|
422
|
+
[_sI, _ne, _aD, _siz],
|
|
423
|
+
[0, 0, 64 | 0, 0], 1
|
|
439
424
|
];
|
|
440
425
|
export var AgentSqsEngine$ = [3, n2, _ASE,
|
|
441
426
|
0,
|
|
@@ -449,8 +434,8 @@ export var AgentSuggestionsCapability$ = [3, n2, _ASC,
|
|
|
449
434
|
];
|
|
450
435
|
export var AgentTool$ = [3, n2, _AT,
|
|
451
436
|
0,
|
|
452
|
-
[_i, _d, _f, _sM, _pi, _ap, _an],
|
|
453
|
-
[0, 0, () => AgentToolFieldsList, 0, () => AgentToolPipeline$, () => AgentToolApproval$, () => AgentToolAnnotationsList], 1
|
|
437
|
+
[_i, _tV, _d, _f, _sM, _pi, _ap, _an],
|
|
438
|
+
[0, 1, 0, () => AgentToolFieldsList, 0, () => AgentToolPipeline$, () => AgentToolApproval$, () => AgentToolAnnotationsList], 1
|
|
454
439
|
];
|
|
455
440
|
export var AgentToolApproval$ = [3, n2, _ATA,
|
|
456
441
|
0,
|
|
@@ -534,7 +519,7 @@ export var AgentVariable$ = [3, n2, _AV,
|
|
|
534
519
|
];
|
|
535
520
|
export var AgentVercelSandboxOptions$ = [3, n2, _AVSO,
|
|
536
521
|
0,
|
|
537
|
-
[_vc, _ne,
|
|
522
|
+
[_vc, _ne, _aD],
|
|
538
523
|
[1, 0, 64 | 0]
|
|
539
524
|
];
|
|
540
525
|
export var AgentVersion$ = [3, n2, _AVg,
|
|
@@ -549,8 +534,8 @@ export var AgentVersionChange$ = [3, n2, _AVC,
|
|
|
549
534
|
];
|
|
550
535
|
export var AgentVersionInfo$ = [3, n2, _AVI,
|
|
551
536
|
0,
|
|
552
|
-
[_aI, _ve, _pA, _pB, _bOV, _n, _chan
|
|
553
|
-
[0, 1, 0, () => Actor$, 1, 0, 0
|
|
537
|
+
[_aI, _ve, _pA, _pB, _bOV, _n, _chan],
|
|
538
|
+
[0, 1, 0, () => Actor$, 1, 0, 0], 4
|
|
554
539
|
];
|
|
555
540
|
export var AgentWaitCapability$ = [3, n2, _AWC,
|
|
556
541
|
0,
|
|
@@ -559,7 +544,7 @@ export var AgentWaitCapability$ = [3, n2, _AWC,
|
|
|
559
544
|
];
|
|
560
545
|
export var AgentWebFetchCapability$ = [3, n2, _AWFC,
|
|
561
546
|
0,
|
|
562
|
-
[
|
|
547
|
+
[_aD],
|
|
563
548
|
[64 | 0]
|
|
564
549
|
];
|
|
565
550
|
export var AgentWebhookEngine$ = [3, n2, _AWE,
|
|
@@ -569,7 +554,7 @@ export var AgentWebhookEngine$ = [3, n2, _AWE,
|
|
|
569
554
|
];
|
|
570
555
|
export var AgentWebSearchCapability$ = [3, n2, _AWSC,
|
|
571
556
|
0,
|
|
572
|
-
[_cS,
|
|
557
|
+
[_cS, _aD, _uL],
|
|
573
558
|
[0, 64 | 0, () => WebSearchUserLocation$]
|
|
574
559
|
];
|
|
575
560
|
export var AssistantChannelSettings$ = [3, n2, _ACS,
|
|
@@ -579,8 +564,8 @@ export var AssistantChannelSettings$ = [3, n2, _ACS,
|
|
|
579
564
|
];
|
|
580
565
|
export var ChatChannelSettings$ = [3, n2, _CCS,
|
|
581
566
|
0,
|
|
582
|
-
[_di
|
|
583
|
-
[2
|
|
567
|
+
[_di],
|
|
568
|
+
[2]
|
|
584
569
|
];
|
|
585
570
|
export var CompareAgentVersionsInput$ = [3, n2, _CAVI,
|
|
586
571
|
0,
|
|
@@ -602,16 +587,6 @@ export var CreateAgentApiKeyOutput$ = [3, n2, _CAAKO,
|
|
|
602
587
|
[_k, _sec],
|
|
603
588
|
[() => AgentApiKey$, 0], 2
|
|
604
589
|
];
|
|
605
|
-
export var CreateAgentDeploymentInput$ = [3, n2, _CADI,
|
|
606
|
-
0,
|
|
607
|
-
[_aI, _n, _st, _ro, _com, _d],
|
|
608
|
-
[[0, 1], 0, 0, () => AgentDeploymentRoutesList, [0, { [_hQ]: _com }], 0], 4
|
|
609
|
-
];
|
|
610
|
-
export var CreateAgentDeploymentOutput$ = [3, n2, _CADO,
|
|
611
|
-
0,
|
|
612
|
-
[_dep],
|
|
613
|
-
[() => AgentDeployment$], 1
|
|
614
|
-
];
|
|
615
590
|
export var CreateAgentInput$ = [3, n2, _CAI,
|
|
616
591
|
0,
|
|
617
592
|
[_n, _ch, _en, _d, _ca, _p, _se, _a, _com],
|
|
@@ -632,16 +607,6 @@ export var DeleteAgentApiKeyOutput$ = [3, n2, _DAAKO,
|
|
|
632
607
|
[],
|
|
633
608
|
[]
|
|
634
609
|
];
|
|
635
|
-
export var DeleteAgentDeploymentInput$ = [3, n2, _DADI,
|
|
636
|
-
0,
|
|
637
|
-
[_aI, _dN, _com],
|
|
638
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _com }]], 2
|
|
639
|
-
];
|
|
640
|
-
export var DeleteAgentDeploymentOutput$ = [3, n2, _DADO,
|
|
641
|
-
0,
|
|
642
|
-
[],
|
|
643
|
-
[]
|
|
644
|
-
];
|
|
645
610
|
export var DeleteAgentInput$ = [3, n2, _DAI,
|
|
646
611
|
0,
|
|
647
612
|
[_aI, _com],
|
|
@@ -654,13 +619,13 @@ export var DeleteAgentOutput$ = [3, n2, _DAO,
|
|
|
654
619
|
];
|
|
655
620
|
export var GetAgentDeploymentInput$ = [3, n2, _GADI,
|
|
656
621
|
0,
|
|
657
|
-
[_aI,
|
|
658
|
-
[[0, 1], [0,
|
|
622
|
+
[_aI, _com],
|
|
623
|
+
[[0, 1], [0, { [_hQ]: _com }]], 1
|
|
659
624
|
];
|
|
660
625
|
export var GetAgentDeploymentOutput$ = [3, n2, _GADO,
|
|
661
626
|
0,
|
|
662
|
-
[
|
|
663
|
-
[() =>
|
|
627
|
+
[_de],
|
|
628
|
+
[() => AgentDeploymentRoutesList]
|
|
664
629
|
];
|
|
665
630
|
export var GetAgentInput$ = [3, n2, _GAI,
|
|
666
631
|
0,
|
|
@@ -692,16 +657,6 @@ export var ListAgentApiKeysOutput$ = [3, n2, _LAAKO,
|
|
|
692
657
|
[_ke],
|
|
693
658
|
[() => AgentApiKeysList], 1
|
|
694
659
|
];
|
|
695
|
-
export var ListAgentDeploymentsInput$ = [3, n2, _LADI,
|
|
696
|
-
0,
|
|
697
|
-
[_aI, _com],
|
|
698
|
-
[[0, 1], [0, { [_hQ]: _com }]], 1
|
|
699
|
-
];
|
|
700
|
-
export var ListAgentDeploymentsOutput$ = [3, n2, _LADO,
|
|
701
|
-
0,
|
|
702
|
-
[_de],
|
|
703
|
-
[() => AgentDeploymentsList], 1
|
|
704
|
-
];
|
|
705
660
|
export var ListAgentsInput$ = [3, n2, _LAI,
|
|
706
661
|
0,
|
|
707
662
|
[_com, _chann, _st, _sea, _l, _cu],
|
|
@@ -742,6 +697,26 @@ export var PublishAgentVersionOutput$ = [3, n2, _PAVO,
|
|
|
742
697
|
[_ve],
|
|
743
698
|
[() => AgentVersion$], 1
|
|
744
699
|
];
|
|
700
|
+
export var PutAgentDeploymentInput$ = [3, n2, _PADI,
|
|
701
|
+
0,
|
|
702
|
+
[_aI, _de, _com],
|
|
703
|
+
[[0, 1], () => AgentDeploymentRoutesList, [0, { [_hQ]: _com }]], 2
|
|
704
|
+
];
|
|
705
|
+
export var PutAgentDeploymentOutput$ = [3, n2, _PADO,
|
|
706
|
+
0,
|
|
707
|
+
[_de],
|
|
708
|
+
[() => AgentDeploymentRoutesList], 1
|
|
709
|
+
];
|
|
710
|
+
export var ResetAgentDeploymentInput$ = [3, n2, _RADI,
|
|
711
|
+
0,
|
|
712
|
+
[_aI, _com],
|
|
713
|
+
[[0, 1], [0, { [_hQ]: _com }]], 1
|
|
714
|
+
];
|
|
715
|
+
export var ResetAgentDeploymentOutput$ = [3, n2, _RADO,
|
|
716
|
+
0,
|
|
717
|
+
[_de],
|
|
718
|
+
[() => AgentDeploymentRoutesList], 1
|
|
719
|
+
];
|
|
745
720
|
export var RestoreAgentVersionToDraftInput$ = [3, n2, _RAVTDI,
|
|
746
721
|
0,
|
|
747
722
|
[_aI, _ve, _r, _com],
|
|
@@ -752,16 +727,6 @@ export var RestoreAgentVersionToDraftOutput$ = [3, n2, _RAVTDO,
|
|
|
752
727
|
[_ag],
|
|
753
728
|
[() => Agent$], 1
|
|
754
729
|
];
|
|
755
|
-
export var UpdateAgentDeploymentInput$ = [3, n2, _UADI,
|
|
756
|
-
0,
|
|
757
|
-
[_aI, _dN, _st, _ro, _r, _com, _d],
|
|
758
|
-
[[0, 1], [0, 1], 0, () => AgentDeploymentRoutesList, 1, [0, { [_hQ]: _com }], 0], 5
|
|
759
|
-
];
|
|
760
|
-
export var UpdateAgentDeploymentOutput$ = [3, n2, _UADO,
|
|
761
|
-
0,
|
|
762
|
-
[_dep],
|
|
763
|
-
[() => AgentDeployment$], 1
|
|
764
|
-
];
|
|
765
730
|
export var UpdateAgentInput$ = [3, n2, _UAI,
|
|
766
731
|
0,
|
|
767
732
|
[_n, _ch, _en, _aI, _r, _d, _ca, _p, _se, _a, _com],
|
|
@@ -774,8 +739,8 @@ export var UpdateAgentOutput$ = [3, n2, _UAO,
|
|
|
774
739
|
];
|
|
775
740
|
export var VoiceCallerMetadataSettings$ = [3, n2, _VCMS,
|
|
776
741
|
0,
|
|
777
|
-
[_cN, _cNa, _cE, _cC, _tim
|
|
778
|
-
[2, 2, 2, 2, 2
|
|
742
|
+
[_cN, _cNa, _cE, _cC, _tim],
|
|
743
|
+
[2, 2, 2, 2, 2]
|
|
779
744
|
];
|
|
780
745
|
export var VoiceChannelSettings$ = [3, n2, _VCS,
|
|
781
746
|
0,
|
|
@@ -843,13 +808,9 @@ var AgentApiKeysList = [1, n2, _AAKL,
|
|
|
843
808
|
var AgentCapabilitiesList = [1, n2, _ACL,
|
|
844
809
|
0, () => AgentCapability$
|
|
845
810
|
];
|
|
846
|
-
var AgentDeploymentNamesList = 64 | 0;
|
|
847
811
|
var AgentDeploymentRoutesList = [1, n2, _ADRL,
|
|
848
812
|
0, () => AgentDeploymentRoute$
|
|
849
813
|
];
|
|
850
|
-
var AgentDeploymentsList = [1, n2, _ADL,
|
|
851
|
-
0, () => AgentDeployment$
|
|
852
|
-
];
|
|
853
814
|
var AgentGrantPrincipalList = [1, n2, _AGPL,
|
|
854
815
|
0, () => AgentGrantPrincipal$
|
|
855
816
|
];
|
|
@@ -931,23 +892,17 @@ export var CreateAgent$ = [9, n2, _CA,
|
|
|
931
892
|
export var CreateAgentApiKey$ = [9, n2, _CAAK,
|
|
932
893
|
{ [_ht]: ["POST", "/v2/agents/agents/{agentId}/keys", 200] }, () => CreateAgentApiKeyInput$, () => CreateAgentApiKeyOutput$
|
|
933
894
|
];
|
|
934
|
-
export var CreateAgentDeployment$ = [9, n2, _CAD,
|
|
935
|
-
{ [_ht]: ["POST", "/v2/agents/agents/{agentId}/deployments", 200] }, () => CreateAgentDeploymentInput$, () => CreateAgentDeploymentOutput$
|
|
936
|
-
];
|
|
937
895
|
export var DeleteAgent$ = [9, n2, _DA,
|
|
938
896
|
{ [_ht]: ["DELETE", "/v2/agents/agents/{agentId}", 200] }, () => DeleteAgentInput$, () => DeleteAgentOutput$
|
|
939
897
|
];
|
|
940
898
|
export var DeleteAgentApiKey$ = [9, n2, _DAAK,
|
|
941
899
|
{ [_ht]: ["DELETE", "/v2/agents/agents/{agentId}/keys/{keyId}", 200] }, () => DeleteAgentApiKeyInput$, () => DeleteAgentApiKeyOutput$
|
|
942
900
|
];
|
|
943
|
-
export var DeleteAgentDeployment$ = [9, n2, _DAD,
|
|
944
|
-
{ [_ht]: ["DELETE", "/v2/agents/agents/{agentId}/deployments/{deploymentName}", 200] }, () => DeleteAgentDeploymentInput$, () => DeleteAgentDeploymentOutput$
|
|
945
|
-
];
|
|
946
901
|
export var GetAgent$ = [9, n2, _GA,
|
|
947
902
|
{ [_ht]: ["GET", "/v2/agents/agents/{agentId}", 200] }, () => GetAgentInput$, () => GetAgentOutput$
|
|
948
903
|
];
|
|
949
904
|
export var GetAgentDeployment$ = [9, n2, _GAD,
|
|
950
|
-
{ [_ht]: ["GET", "/v2/agents/agents/{agentId}/
|
|
905
|
+
{ [_ht]: ["GET", "/v2/agents/agents/{agentId}/deployment", 200] }, () => GetAgentDeploymentInput$, () => GetAgentDeploymentOutput$
|
|
951
906
|
];
|
|
952
907
|
export var GetAgentVersion$ = [9, n2, _GAV,
|
|
953
908
|
{ [_ht]: ["GET", "/v2/agents/agents/{agentId}/versions/{version}", 200] }, () => GetAgentVersionInput$, () => GetAgentVersionOutput$
|
|
@@ -955,9 +910,6 @@ export var GetAgentVersion$ = [9, n2, _GAV,
|
|
|
955
910
|
export var ListAgentApiKeys$ = [9, n2, _LAAK,
|
|
956
911
|
{ [_ht]: ["GET", "/v2/agents/agents/{agentId}/keys", 200] }, () => ListAgentApiKeysInput$, () => ListAgentApiKeysOutput$
|
|
957
912
|
];
|
|
958
|
-
export var ListAgentDeployments$ = [9, n2, _LAD,
|
|
959
|
-
{ [_ht]: ["GET", "/v2/agents/agents/{agentId}/deployments", 200] }, () => ListAgentDeploymentsInput$, () => ListAgentDeploymentsOutput$
|
|
960
|
-
];
|
|
961
913
|
export var ListAgents$ = [9, n2, _LA,
|
|
962
914
|
{ [_ht]: ["GET", "/v2/agents/agents", 200] }, () => ListAgentsInput$, () => ListAgentsOutput$
|
|
963
915
|
];
|
|
@@ -970,12 +922,15 @@ export var ListAgentVersions$ = [9, n2, _LAV,
|
|
|
970
922
|
export var PublishAgentVersion$ = [9, n2, _PAV,
|
|
971
923
|
{ [_ht]: ["POST", "/v2/agents/agents/{agentId}/versions", 200] }, () => PublishAgentVersionInput$, () => PublishAgentVersionOutput$
|
|
972
924
|
];
|
|
925
|
+
export var PutAgentDeployment$ = [9, n2, _PAD,
|
|
926
|
+
{ [_ht]: ["PUT", "/v2/agents/agents/{agentId}/deployment", 200] }, () => PutAgentDeploymentInput$, () => PutAgentDeploymentOutput$
|
|
927
|
+
];
|
|
928
|
+
export var ResetAgentDeployment$ = [9, n2, _RAD,
|
|
929
|
+
{ [_ht]: ["POST", "/v2/agents/agents/{agentId}/deployment/reset", 200] }, () => ResetAgentDeploymentInput$, () => ResetAgentDeploymentOutput$
|
|
930
|
+
];
|
|
973
931
|
export var RestoreAgentVersionToDraft$ = [9, n2, _RAVTD,
|
|
974
932
|
{ [_ht]: ["POST", "/v2/agents/agents/{agentId}/versions/{version}/draft", 200] }, () => RestoreAgentVersionToDraftInput$, () => RestoreAgentVersionToDraftOutput$
|
|
975
933
|
];
|
|
976
934
|
export var UpdateAgent$ = [9, n2, _UA,
|
|
977
935
|
{ [_ht]: ["PUT", "/v2/agents/agents/{agentId}", 200] }, () => UpdateAgentInput$, () => UpdateAgentOutput$
|
|
978
936
|
];
|
|
979
|
-
export var UpdateAgentDeployment$ = [9, n2, _UAD,
|
|
980
|
-
{ [_ht]: ["PUT", "/v2/agents/agents/{agentId}/deployments/{deploymentName}", 200] }, () => UpdateAgentDeploymentInput$, () => UpdateAgentDeploymentOutput$
|
|
981
|
-
];
|