@wildix/wilma-agents-client 1.0.1
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 +57 -0
- package/dist-cjs/WilmaAgentsClient.js +49 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
- package/dist-cjs/commands/CompareAgentVersionsCommand.js +20 -0
- package/dist-cjs/commands/CreateAgentApiKeyCommand.js +20 -0
- package/dist-cjs/commands/CreateAgentCommand.js +20 -0
- package/dist-cjs/commands/CreateGuardrailCommand.js +20 -0
- package/dist-cjs/commands/DeleteAgentAliasCommand.js +20 -0
- package/dist-cjs/commands/DeleteAgentApiKeyCommand.js +20 -0
- package/dist-cjs/commands/DeleteAgentCommand.js +20 -0
- package/dist-cjs/commands/DeleteGuardrailCommand.js +20 -0
- package/dist-cjs/commands/ExecuteAgentCommand.js +20 -0
- package/dist-cjs/commands/GetAgentCommand.js +20 -0
- package/dist-cjs/commands/GetAgentVersionCommand.js +20 -0
- package/dist-cjs/commands/GetGuardrailCommand.js +20 -0
- package/dist-cjs/commands/ListAgentAliasesCommand.js +20 -0
- package/dist-cjs/commands/ListAgentApiKeysCommand.js +20 -0
- package/dist-cjs/commands/ListAgentVersionsCommand.js +20 -0
- package/dist-cjs/commands/ListAgentsCommand.js +20 -0
- package/dist-cjs/commands/ListAgentsNamesCommand.js +20 -0
- package/dist-cjs/commands/ListAuditRecordsCommand.js +20 -0
- package/dist-cjs/commands/ListGuardrailsCommand.js +20 -0
- package/dist-cjs/commands/PublishAgentVersionCommand.js +20 -0
- package/dist-cjs/commands/PutAgentAliasCommand.js +20 -0
- package/dist-cjs/commands/UpdateAgentCommand.js +20 -0
- package/dist-cjs/commands/UpdateGuardrailCommand.js +20 -0
- package/dist-cjs/commands/index.js +26 -0
- package/dist-cjs/endpoint/EndpointParameters.js +16 -0
- package/dist-cjs/endpoint/bdd.js +28 -0
- package/dist-cjs/endpoint/endpointResolver.js +16 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +13 -0
- package/dist-cjs/models/WilmaAgentsServiceException.js +12 -0
- package/dist-cjs/models/enums.js +118 -0
- package/dist-cjs/models/errors.js +154 -0
- package/dist-cjs/models/models_0.js +2 -0
- package/dist-cjs/runtimeConfig.browser.js +32 -0
- package/dist-cjs/runtimeConfig.js +41 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +41 -0
- package/dist-cjs/runtimeExtensions.js +12 -0
- package/dist-cjs/schemas/schemas_0.js +1168 -0
- package/dist-es/WilmaAgents.js +53 -0
- package/dist-es/WilmaAgentsClient.js +45 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
- package/dist-es/commands/CompareAgentVersionsCommand.js +16 -0
- package/dist-es/commands/CreateAgentApiKeyCommand.js +16 -0
- package/dist-es/commands/CreateAgentCommand.js +16 -0
- package/dist-es/commands/CreateGuardrailCommand.js +16 -0
- package/dist-es/commands/DeleteAgentAliasCommand.js +16 -0
- package/dist-es/commands/DeleteAgentApiKeyCommand.js +16 -0
- package/dist-es/commands/DeleteAgentCommand.js +16 -0
- package/dist-es/commands/DeleteGuardrailCommand.js +16 -0
- package/dist-es/commands/ExecuteAgentCommand.js +16 -0
- package/dist-es/commands/GetAgentCommand.js +16 -0
- package/dist-es/commands/GetAgentVersionCommand.js +16 -0
- package/dist-es/commands/GetGuardrailCommand.js +16 -0
- package/dist-es/commands/ListAgentAliasesCommand.js +16 -0
- package/dist-es/commands/ListAgentApiKeysCommand.js +16 -0
- package/dist-es/commands/ListAgentVersionsCommand.js +16 -0
- package/dist-es/commands/ListAgentsCommand.js +16 -0
- package/dist-es/commands/ListAgentsNamesCommand.js +16 -0
- package/dist-es/commands/ListAuditRecordsCommand.js +16 -0
- package/dist-es/commands/ListGuardrailsCommand.js +16 -0
- package/dist-es/commands/PublishAgentVersionCommand.js +16 -0
- package/dist-es/commands/PutAgentAliasCommand.js +16 -0
- package/dist-es/commands/UpdateAgentCommand.js +16 -0
- package/dist-es/commands/UpdateGuardrailCommand.js +16 -0
- package/dist-es/commands/index.js +23 -0
- package/dist-es/endpoint/EndpointParameters.js +12 -0
- package/dist-es/endpoint/bdd.js +25 -0
- package/dist-es/endpoint/endpointResolver.js +12 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +8 -0
- package/dist-es/models/WilmaAgentsServiceException.js +8 -0
- package/dist-es/models/enums.js +115 -0
- package/dist-es/models/errors.js +141 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/runtimeConfig.browser.js +27 -0
- package/dist-es/runtimeConfig.js +36 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +37 -0
- package/dist-es/runtimeExtensions.js +8 -0
- package/dist-es/schemas/schemas_0.js +1162 -0
- package/dist-types/WilmaAgents.d.ts +182 -0
- package/dist-types/WilmaAgentsClient.d.ts +192 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
- package/dist-types/commands/CompareAgentVersionsCommand.d.ts +91 -0
- package/dist-types/commands/CreateAgentApiKeyCommand.d.ts +96 -0
- package/dist-types/commands/CreateAgentCommand.d.ts +654 -0
- package/dist-types/commands/CreateGuardrailCommand.d.ts +172 -0
- package/dist-types/commands/DeleteAgentAliasCommand.d.ts +82 -0
- package/dist-types/commands/DeleteAgentApiKeyCommand.d.ts +82 -0
- package/dist-types/commands/DeleteAgentCommand.d.ts +77 -0
- package/dist-types/commands/DeleteGuardrailCommand.d.ts +80 -0
- package/dist-types/commands/ExecuteAgentCommand.d.ts +112 -0
- package/dist-types/commands/GetAgentCommand.d.ts +386 -0
- package/dist-types/commands/GetAgentVersionCommand.d.ts +365 -0
- package/dist-types/commands/GetGuardrailCommand.d.ts +135 -0
- package/dist-types/commands/ListAgentAliasesCommand.d.ts +99 -0
- package/dist-types/commands/ListAgentApiKeysCommand.d.ts +95 -0
- package/dist-types/commands/ListAgentVersionsCommand.d.ts +99 -0
- package/dist-types/commands/ListAgentsCommand.d.ts +391 -0
- package/dist-types/commands/ListAgentsNamesCommand.d.ts +90 -0
- package/dist-types/commands/ListAuditRecordsCommand.d.ts +109 -0
- package/dist-types/commands/ListGuardrailsCommand.d.ts +137 -0
- package/dist-types/commands/PublishAgentVersionCommand.d.ts +370 -0
- package/dist-types/commands/PutAgentAliasCommand.d.ts +107 -0
- package/dist-types/commands/UpdateAgentCommand.d.ts +661 -0
- package/dist-types/commands/UpdateGuardrailCommand.d.ts +175 -0
- package/dist-types/commands/index.d.ts +23 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +8 -0
- package/dist-types/index.d.ts +23 -0
- package/dist-types/models/WilmaAgentsServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +301 -0
- package/dist-types/models/errors.d.ts +129 -0
- package/dist-types/models/models_0.d.ts +2186 -0
- package/dist-types/runtimeConfig.browser.d.ts +55 -0
- package/dist-types/runtimeConfig.d.ts +55 -0
- package/dist-types/runtimeConfig.native.d.ts +54 -0
- package/dist-types/runtimeConfig.shared.d.ts +32 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +160 -0
- package/package.json +57 -0
|
@@ -0,0 +1,1162 @@
|
|
|
1
|
+
const _A = "Actor";
|
|
2
|
+
const _AA = "AgentAccess";
|
|
3
|
+
const _AAK = "AgentApiKey";
|
|
4
|
+
const _AAKL = "AgentApiKeysList";
|
|
5
|
+
const _AAKNFE = "AgentApiKeyNotFoundException";
|
|
6
|
+
const _AAL = "AgentAliasesList";
|
|
7
|
+
const _AANFE = "AgentAliasNotFoundException";
|
|
8
|
+
const _AAR = "AgentAliasRoute";
|
|
9
|
+
const _AARL = "AgentAliasRoutesList";
|
|
10
|
+
const _AAg = "AgentAlias";
|
|
11
|
+
const _AC = "AgentChannels";
|
|
12
|
+
const _ACC = "AgentCallCapability";
|
|
13
|
+
const _ACL = "AgentCapabilitiesList";
|
|
14
|
+
const _ACS = "ApiChannelSettings";
|
|
15
|
+
const _ACSs = "AssistantChannelSettings";
|
|
16
|
+
const _ACg = "AgentCapability";
|
|
17
|
+
const _ADC = "AgentDelegationCapability";
|
|
18
|
+
const _ADS = "AgentDefinitionSnapshot";
|
|
19
|
+
const _AE = "AgentEngine";
|
|
20
|
+
const _AEE = "AgentExecutionError";
|
|
21
|
+
const _AER = "AgentExecutionResult";
|
|
22
|
+
const _AF = "AgentFile";
|
|
23
|
+
const _AFL = "AgentFileList";
|
|
24
|
+
const _AFT = "AgentFunctionTool";
|
|
25
|
+
const _AG = "AgentGrant";
|
|
26
|
+
const _AGL = "AgentGrantList";
|
|
27
|
+
const _AGP = "AgentGrantPrincipal";
|
|
28
|
+
const _AHC = "AgentHandoverCapability";
|
|
29
|
+
const _AI = "AgentInfo";
|
|
30
|
+
const _AIL = "AgentsInfoList";
|
|
31
|
+
const _AKB = "AgentKnowledgeBase";
|
|
32
|
+
const _AL = "AgentsList";
|
|
33
|
+
const _ALE = "AgentLlmEngine";
|
|
34
|
+
const _AMSC = "AgentMcpServerCapability";
|
|
35
|
+
const _ANFE = "AgentNotFoundException";
|
|
36
|
+
const _ANUNE = "AgentNonUniqueNameException";
|
|
37
|
+
const _AR = "AuditRecord";
|
|
38
|
+
const _ARL = "AuditRecordsList";
|
|
39
|
+
const _ASC = "AgentSuggestionsCapability";
|
|
40
|
+
const _ASCg = "AgentSandboxCapability";
|
|
41
|
+
const _ASE = "AgentSqsEngine";
|
|
42
|
+
const _ASSO = "AgentSnapshotSandboxOptions";
|
|
43
|
+
const _AT = "AgentTool";
|
|
44
|
+
const _ATC = "AgentTransferCapability";
|
|
45
|
+
const _ATV = "AgentToolVariable";
|
|
46
|
+
const _ATVAH = "AgentToolVariableAutoHandler";
|
|
47
|
+
const _ATVGH = "AgentToolVariableGuidedHandler";
|
|
48
|
+
const _ATVH = "AgentToolVariableHandler";
|
|
49
|
+
const _ATVL = "AgentToolVariablesList";
|
|
50
|
+
const _ATVPH = "AgentToolVariablePredefinedHandler";
|
|
51
|
+
const _AV = "AgentVariable";
|
|
52
|
+
const _AVC = "AgentVersionChange";
|
|
53
|
+
const _AVCL = "AgentVersionChangesList";
|
|
54
|
+
const _AVI = "AgentVersionInfo";
|
|
55
|
+
const _AVIL = "AgentVersionInfoList";
|
|
56
|
+
const _AVL = "AgentVariablesList";
|
|
57
|
+
const _AVNFE = "AgentVersionNotFoundException";
|
|
58
|
+
const _AVSO = "AgentVercelSandboxOptions";
|
|
59
|
+
const _AVg = "AgentVersion";
|
|
60
|
+
const _AWE = "AgentWebhookEngine";
|
|
61
|
+
const _AWFC = "AgentWebFetchCapability";
|
|
62
|
+
const _AWSC = "AgentWebSearchCapability";
|
|
63
|
+
const _Ag = "Agent";
|
|
64
|
+
const _CA = "CreateAgent";
|
|
65
|
+
const _CAAK = "CreateAgentApiKey";
|
|
66
|
+
const _CAAKI = "CreateAgentApiKeyInput";
|
|
67
|
+
const _CAAKO = "CreateAgentApiKeyOutput";
|
|
68
|
+
const _CAI = "CreateAgentInput";
|
|
69
|
+
const _CAO = "CreateAgentOutput";
|
|
70
|
+
const _CAV = "CompareAgentVersions";
|
|
71
|
+
const _CAVI = "CompareAgentVersionsInput";
|
|
72
|
+
const _CAVO = "CompareAgentVersionsOutput";
|
|
73
|
+
const _CCS = "ChatChannelSettings";
|
|
74
|
+
const _CG = "CreateGuardrail";
|
|
75
|
+
const _CGI = "CreateGuardrailInput";
|
|
76
|
+
const _CGO = "CreateGuardrailOutput";
|
|
77
|
+
const _DA = "DeleteAgent";
|
|
78
|
+
const _DAA = "DeleteAgentAlias";
|
|
79
|
+
const _DAAI = "DeleteAgentAliasInput";
|
|
80
|
+
const _DAAK = "DeleteAgentApiKey";
|
|
81
|
+
const _DAAKI = "DeleteAgentApiKeyInput";
|
|
82
|
+
const _DAAKO = "DeleteAgentApiKeyOutput";
|
|
83
|
+
const _DAAO = "DeleteAgentAliasOutput";
|
|
84
|
+
const _DAI = "DeleteAgentInput";
|
|
85
|
+
const _DAO = "DeleteAgentOutput";
|
|
86
|
+
const _DG = "DeleteGuardrail";
|
|
87
|
+
const _DGI = "DeleteGuardrailInput";
|
|
88
|
+
const _DGO = "DeleteGuardrailOutput";
|
|
89
|
+
const _EA = "ExecuteAgent";
|
|
90
|
+
const _EAI = "ExecuteAgentInput";
|
|
91
|
+
const _EAO = "ExecuteAgentOutput";
|
|
92
|
+
const _FI = "FunctionIntegration";
|
|
93
|
+
const _FWI = "FunctionWebhookIntegration";
|
|
94
|
+
const _G = "Guardrail";
|
|
95
|
+
const _GA = "GetAgent";
|
|
96
|
+
const _GAI = "GetAgentInput";
|
|
97
|
+
const _GAO = "GetAgentOutput";
|
|
98
|
+
const _GAV = "GetAgentVersion";
|
|
99
|
+
const _GAVI = "GetAgentVersionInput";
|
|
100
|
+
const _GAVO = "GetAgentVersionOutput";
|
|
101
|
+
const _GCF = "GuardrailContentFilter";
|
|
102
|
+
const _GCFL = "GuardrailContentFiltersList";
|
|
103
|
+
const _GCP = "GuardrailContentPolicy";
|
|
104
|
+
const _GG = "GetGuardrail";
|
|
105
|
+
const _GGI = "GetGuardrailInput";
|
|
106
|
+
const _GGO = "GetGuardrailOutput";
|
|
107
|
+
const _GIUE = "GuardrailInUseException";
|
|
108
|
+
const _GL = "GuardrailsList";
|
|
109
|
+
const _GNFE = "GuardrailNotFoundException";
|
|
110
|
+
const _GPE = "GuardrailPiiEntity";
|
|
111
|
+
const _GPEL = "GuardrailPiiEntitiesList";
|
|
112
|
+
const _GPP = "GuardrailPiiPolicy";
|
|
113
|
+
const _GT = "GuardrailTopic";
|
|
114
|
+
const _GTL = "GuardrailTopicsList";
|
|
115
|
+
const _GTP = "GuardrailTopicPolicy";
|
|
116
|
+
const _GWP = "GuardrailWordPolicy";
|
|
117
|
+
const _LA = "ListAgents";
|
|
118
|
+
const _LAA = "ListAgentAliases";
|
|
119
|
+
const _LAAI = "ListAgentAliasesInput";
|
|
120
|
+
const _LAAK = "ListAgentApiKeys";
|
|
121
|
+
const _LAAKI = "ListAgentApiKeysInput";
|
|
122
|
+
const _LAAKO = "ListAgentApiKeysOutput";
|
|
123
|
+
const _LAAO = "ListAgentAliasesOutput";
|
|
124
|
+
const _LAI = "ListAgentsInput";
|
|
125
|
+
const _LAN = "ListAgentsNames";
|
|
126
|
+
const _LANI = "ListAgentsNamesInput";
|
|
127
|
+
const _LANO = "ListAgentsNamesOutput";
|
|
128
|
+
const _LAO = "ListAgentsOutput";
|
|
129
|
+
const _LAR = "ListAuditRecords";
|
|
130
|
+
const _LARI = "ListAuditRecordsInput";
|
|
131
|
+
const _LARO = "ListAuditRecordsOutput";
|
|
132
|
+
const _LAV = "ListAgentVersions";
|
|
133
|
+
const _LAVI = "ListAgentVersionsInput";
|
|
134
|
+
const _LAVO = "ListAgentVersionsOutput";
|
|
135
|
+
const _LG = "ListGuardrails";
|
|
136
|
+
const _LGI = "ListGuardrailsInput";
|
|
137
|
+
const _LGO = "ListGuardrailsOutput";
|
|
138
|
+
const _NTPE = "NothingToPublishException";
|
|
139
|
+
const _PAA = "PutAgentAlias";
|
|
140
|
+
const _PAAI = "PutAgentAliasInput";
|
|
141
|
+
const _PAAO = "PutAgentAliasOutput";
|
|
142
|
+
const _PAV = "PublishAgentVersion";
|
|
143
|
+
const _PAVI = "PublishAgentVersionInput";
|
|
144
|
+
const _PAVO = "PublishAgentVersionOutput";
|
|
145
|
+
const _RCE = "RevisionConflictException";
|
|
146
|
+
const _UA = "UpdateAgent";
|
|
147
|
+
const _UAI = "UpdateAgentInput";
|
|
148
|
+
const _UAO = "UpdateAgentOutput";
|
|
149
|
+
const _UG = "UpdateGuardrail";
|
|
150
|
+
const _UGI = "UpdateGuardrailInput";
|
|
151
|
+
const _UGO = "UpdateGuardrailOutput";
|
|
152
|
+
const _VCMS = "VoiceCallerMetadataSettings";
|
|
153
|
+
const _VCS = "VoiceChannelSettings";
|
|
154
|
+
const _VE = "ValidationException";
|
|
155
|
+
const _VECS = "VoiceEndCallSettings";
|
|
156
|
+
const _VIS = "VoiceInterruptionSettings";
|
|
157
|
+
const _VMDS = "VoiceMaxDurationSettings";
|
|
158
|
+
const _VSS = "VoiceSynthesisSettings";
|
|
159
|
+
const _VSTS = "VoiceSilenceTimeoutSettings";
|
|
160
|
+
const _VTA = "VoiceTerminateAction";
|
|
161
|
+
const _VTHA = "VoiceTerminateHangupAction";
|
|
162
|
+
const _VTT = "VoiceTransferTarget";
|
|
163
|
+
const _VTTL = "VoiceTransferTargetsList";
|
|
164
|
+
const _WA = "WebhookAuthorization";
|
|
165
|
+
const _WAB = "WebhookAuthorizationBasic";
|
|
166
|
+
const _WABe = "WebhookAuthorizationBearer";
|
|
167
|
+
const _WAOA = "WebhookAuthorizationOAuth";
|
|
168
|
+
const _WH = "WebhookHeader";
|
|
169
|
+
const _WHL = "WebhookHeadersList";
|
|
170
|
+
const _WSUL = "WebSearchUserLocation";
|
|
171
|
+
const _a = "access";
|
|
172
|
+
const _aD = "allowedDomains";
|
|
173
|
+
const _aI = "agentId";
|
|
174
|
+
const _aIc = "actorId";
|
|
175
|
+
const _aN = "aliasName";
|
|
176
|
+
const _aT = "allowedTools";
|
|
177
|
+
const _ac = "actor";
|
|
178
|
+
const _act = "action";
|
|
179
|
+
const _af = "after";
|
|
180
|
+
const _ag = "agents";
|
|
181
|
+
const _age = "agent";
|
|
182
|
+
const _al = "aliases";
|
|
183
|
+
const _ali = "alias";
|
|
184
|
+
const _ap = "api";
|
|
185
|
+
const _as = "assistant";
|
|
186
|
+
const _asy = "async";
|
|
187
|
+
const _au = "authorization";
|
|
188
|
+
const _aut = "auto";
|
|
189
|
+
const _b = "before";
|
|
190
|
+
const _bIM = "blockedInputMessage";
|
|
191
|
+
const _bOM = "blockedOutputMessage";
|
|
192
|
+
const _bW = "blockedWords";
|
|
193
|
+
const _ba = "basic";
|
|
194
|
+
const _be = "bearer";
|
|
195
|
+
const _c = "client";
|
|
196
|
+
const _cA = "createdAt";
|
|
197
|
+
const _cB = "createdBy";
|
|
198
|
+
const _cC = "callerCompany";
|
|
199
|
+
const _cE = "callerEmail";
|
|
200
|
+
const _cI = "clientId";
|
|
201
|
+
const _cM = "callerMetadata";
|
|
202
|
+
const _cN = "callerName";
|
|
203
|
+
const _cNa = "callerNumber";
|
|
204
|
+
const _cP = "contentPolicy";
|
|
205
|
+
const _cR = "currentRevision";
|
|
206
|
+
const _cS = "contextSize";
|
|
207
|
+
const _cSl = "clientSecret";
|
|
208
|
+
const _cT = "contentType";
|
|
209
|
+
const _ca = "category";
|
|
210
|
+
const _cap = "capabilities";
|
|
211
|
+
const _ch = "channels";
|
|
212
|
+
const _cha = "chat";
|
|
213
|
+
const _chan = "changelog";
|
|
214
|
+
const _chang = "changes";
|
|
215
|
+
const _chann = "channel";
|
|
216
|
+
const _ci = "city";
|
|
217
|
+
const _co = "code";
|
|
218
|
+
const _com = "company";
|
|
219
|
+
const _con = "context";
|
|
220
|
+
const _cou = "country";
|
|
221
|
+
const _d = "description";
|
|
222
|
+
const _de = "definition";
|
|
223
|
+
const _def = "default";
|
|
224
|
+
const _del = "delegation";
|
|
225
|
+
const _di = "discoverable";
|
|
226
|
+
const _e = "error";
|
|
227
|
+
const _eA = "expiresAt";
|
|
228
|
+
const _eC = "endCall";
|
|
229
|
+
const _eT = "entityType";
|
|
230
|
+
const _eU = "endpointUrl";
|
|
231
|
+
const _en = "engine";
|
|
232
|
+
const _ena = "enabled";
|
|
233
|
+
const _ent = "entities";
|
|
234
|
+
const _ex = "examples";
|
|
235
|
+
const _ext = "extension";
|
|
236
|
+
const _f = "files";
|
|
237
|
+
const _fi = "filters";
|
|
238
|
+
const _fr = "from";
|
|
239
|
+
const _fu = "function";
|
|
240
|
+
const _g = "guardrails";
|
|
241
|
+
const _gI = "guardrailId";
|
|
242
|
+
const _gIr = "groupId";
|
|
243
|
+
const _gr = "grants";
|
|
244
|
+
const _gre = "greeting";
|
|
245
|
+
const _gu = "guardrail";
|
|
246
|
+
const _gui = "guided";
|
|
247
|
+
const _h = "handler";
|
|
248
|
+
const _hE = "httpError";
|
|
249
|
+
const _hQ = "httpQuery";
|
|
250
|
+
const _ha = "handover";
|
|
251
|
+
const _han = "hangup";
|
|
252
|
+
const _he = "headers";
|
|
253
|
+
const _ht = "http";
|
|
254
|
+
const _i = "id";
|
|
255
|
+
const _iS = "inputStrength";
|
|
256
|
+
const _in = "instructions";
|
|
257
|
+
const _inp = "input";
|
|
258
|
+
const _int = "integration";
|
|
259
|
+
const _inte = "interruptions";
|
|
260
|
+
const _k = "key";
|
|
261
|
+
const _kBI = "knowledgeBaseId";
|
|
262
|
+
const _kI = "keyId";
|
|
263
|
+
const _kb = "kb";
|
|
264
|
+
const _ke = "keys";
|
|
265
|
+
const _l = "limit";
|
|
266
|
+
const _lUA = "lastUsedAt";
|
|
267
|
+
const _lV = "latestVersion";
|
|
268
|
+
const _la = "language";
|
|
269
|
+
const _ll = "llm";
|
|
270
|
+
const _m = "message";
|
|
271
|
+
const _mD = "maxDuration";
|
|
272
|
+
const _mW = "minWords";
|
|
273
|
+
const _mc = "mcp";
|
|
274
|
+
const _me = "method";
|
|
275
|
+
const _mo = "model";
|
|
276
|
+
const _n = "name";
|
|
277
|
+
const _nT = "nextToken";
|
|
278
|
+
const _ne = "network";
|
|
279
|
+
const _o = "output";
|
|
280
|
+
const _oS = "outputStrength";
|
|
281
|
+
const _oa = "oauth";
|
|
282
|
+
const _op = "optional";
|
|
283
|
+
const _p = "picture";
|
|
284
|
+
const _pA = "publishedAt";
|
|
285
|
+
const _pAI = "parentAgentId";
|
|
286
|
+
const _pB = "publishedBy";
|
|
287
|
+
const _pGI = "pbxGroupId";
|
|
288
|
+
const _pP = "piiPolicy";
|
|
289
|
+
const _pTI = "parentTraceId";
|
|
290
|
+
const _pa = "parameters";
|
|
291
|
+
const _pas = "password";
|
|
292
|
+
const _pat = "path";
|
|
293
|
+
const _patt = "pattern";
|
|
294
|
+
const _pe = "permission";
|
|
295
|
+
const _ph = "phrases";
|
|
296
|
+
const _pr = "prefix";
|
|
297
|
+
const _pre = "predefined";
|
|
298
|
+
const _pri = "principal";
|
|
299
|
+
const _pro = "profanity";
|
|
300
|
+
const _prov = "provider";
|
|
301
|
+
const _r = "revision";
|
|
302
|
+
const _rI = "resourceId";
|
|
303
|
+
const _rIe = "requestId";
|
|
304
|
+
const _rT = "resourceType";
|
|
305
|
+
const _re = "result";
|
|
306
|
+
const _rec = "records";
|
|
307
|
+
const _reg = "region";
|
|
308
|
+
const _ro = "routing";
|
|
309
|
+
const _s = "smithy.ts.sdk.synthetic.wildix.wilma.agents";
|
|
310
|
+
const _sI = "snapshotId";
|
|
311
|
+
const _sIe = "sessionId";
|
|
312
|
+
const _sT = "silenceTimeout";
|
|
313
|
+
const _sa = "sandbox";
|
|
314
|
+
const _sc = "scope";
|
|
315
|
+
const _se = "secret";
|
|
316
|
+
const _sea = "search";
|
|
317
|
+
const _sec = "seconds";
|
|
318
|
+
const _si = "size";
|
|
319
|
+
const _sk = "skills";
|
|
320
|
+
const _sn = "snapshot";
|
|
321
|
+
const _sp = "speed";
|
|
322
|
+
const _sq = "sqs";
|
|
323
|
+
const _st = "status";
|
|
324
|
+
const _su = "suggestions";
|
|
325
|
+
const _sy = "synthesis";
|
|
326
|
+
const _t = "type";
|
|
327
|
+
const _tI = "traceId";
|
|
328
|
+
const _tP = "topicPolicy";
|
|
329
|
+
const _tZ = "timeZone";
|
|
330
|
+
const _ta = "targets";
|
|
331
|
+
const _ti = "timeout";
|
|
332
|
+
const _tim = "timestamp";
|
|
333
|
+
const _time = "time";
|
|
334
|
+
const _timez = "timezone";
|
|
335
|
+
const _to = "to";
|
|
336
|
+
const _tok = "token";
|
|
337
|
+
const _too = "tool";
|
|
338
|
+
const _top = "topics";
|
|
339
|
+
const _tr = "transfer";
|
|
340
|
+
const _u = "url";
|
|
341
|
+
const _uA = "updatedAt";
|
|
342
|
+
const _uB = "updatedBy";
|
|
343
|
+
const _uI = "userId";
|
|
344
|
+
const _uL = "userLocation";
|
|
345
|
+
const _us = "user";
|
|
346
|
+
const _use = "username";
|
|
347
|
+
const _v = "visibility";
|
|
348
|
+
const _vI = "voiceId";
|
|
349
|
+
const _va = "variables";
|
|
350
|
+
const _val = "value";
|
|
351
|
+
const _vc = "vcpus";
|
|
352
|
+
const _ve = "version";
|
|
353
|
+
const _ver = "versions";
|
|
354
|
+
const _verc = "vercel";
|
|
355
|
+
const _vo = "voice";
|
|
356
|
+
const _w = "weight";
|
|
357
|
+
const _wF = "webFetch";
|
|
358
|
+
const _wM = "welcomeMessage";
|
|
359
|
+
const _wP = "wordPolicy";
|
|
360
|
+
const _wS = "webSearch";
|
|
361
|
+
const _we = "webhook";
|
|
362
|
+
const n0 = "smithy.framework";
|
|
363
|
+
const n1 = "wildix.wilma.agents";
|
|
364
|
+
const n2 = "wildix.wilma.sessions";
|
|
365
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
366
|
+
import { AgentAliasNotFoundException, AgentApiKeyNotFoundException, AgentNonUniqueNameException, AgentNotFoundException, AgentVersionNotFoundException, GuardrailInUseException, GuardrailNotFoundException, NothingToPublishException, RevisionConflictException, ValidationException, } from "../models/errors";
|
|
367
|
+
import { WilmaAgentsServiceException } from "../models/WilmaAgentsServiceException";
|
|
368
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
369
|
+
export var WilmaAgentsServiceException$ = [-3, _s, "WilmaAgentsServiceException", 0, [], []];
|
|
370
|
+
_s_registry.registerError(WilmaAgentsServiceException$, WilmaAgentsServiceException);
|
|
371
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
372
|
+
const n1_registry = TypeRegistry.for(n1);
|
|
373
|
+
export var ValidationException$ = [-3, n0, _VE,
|
|
374
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
375
|
+
[_m],
|
|
376
|
+
[0], 1
|
|
377
|
+
];
|
|
378
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
379
|
+
export var AgentAliasNotFoundException$ = [-3, n1, _AANFE,
|
|
380
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
381
|
+
[_m, _t],
|
|
382
|
+
[0, 0], 1
|
|
383
|
+
];
|
|
384
|
+
n1_registry.registerError(AgentAliasNotFoundException$, AgentAliasNotFoundException);
|
|
385
|
+
export var AgentApiKeyNotFoundException$ = [-3, n1, _AAKNFE,
|
|
386
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
387
|
+
[_m, _t],
|
|
388
|
+
[0, 0], 1
|
|
389
|
+
];
|
|
390
|
+
n1_registry.registerError(AgentApiKeyNotFoundException$, AgentApiKeyNotFoundException);
|
|
391
|
+
export var AgentNonUniqueNameException$ = [-3, n1, _ANUNE,
|
|
392
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
393
|
+
[_m, _t],
|
|
394
|
+
[0, 0], 1
|
|
395
|
+
];
|
|
396
|
+
n1_registry.registerError(AgentNonUniqueNameException$, AgentNonUniqueNameException);
|
|
397
|
+
export var AgentNotFoundException$ = [-3, n1, _ANFE,
|
|
398
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
399
|
+
[_m, _t],
|
|
400
|
+
[0, 0], 1
|
|
401
|
+
];
|
|
402
|
+
n1_registry.registerError(AgentNotFoundException$, AgentNotFoundException);
|
|
403
|
+
export var AgentVersionNotFoundException$ = [-3, n1, _AVNFE,
|
|
404
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
405
|
+
[_m, _t],
|
|
406
|
+
[0, 0], 1
|
|
407
|
+
];
|
|
408
|
+
n1_registry.registerError(AgentVersionNotFoundException$, AgentVersionNotFoundException);
|
|
409
|
+
export var GuardrailInUseException$ = [-3, n1, _GIUE,
|
|
410
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
411
|
+
[_m, _t],
|
|
412
|
+
[0, 0], 1
|
|
413
|
+
];
|
|
414
|
+
n1_registry.registerError(GuardrailInUseException$, GuardrailInUseException);
|
|
415
|
+
export var GuardrailNotFoundException$ = [-3, n1, _GNFE,
|
|
416
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
417
|
+
[_m, _t],
|
|
418
|
+
[0, 0], 1
|
|
419
|
+
];
|
|
420
|
+
n1_registry.registerError(GuardrailNotFoundException$, GuardrailNotFoundException);
|
|
421
|
+
export var NothingToPublishException$ = [-3, n1, _NTPE,
|
|
422
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
423
|
+
[_m, _t],
|
|
424
|
+
[0, 0], 1
|
|
425
|
+
];
|
|
426
|
+
n1_registry.registerError(NothingToPublishException$, NothingToPublishException);
|
|
427
|
+
export var RevisionConflictException$ = [-3, n1, _RCE,
|
|
428
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
429
|
+
[_m, _t, _cR],
|
|
430
|
+
[0, 0, 1], 1
|
|
431
|
+
];
|
|
432
|
+
n1_registry.registerError(RevisionConflictException$, RevisionConflictException);
|
|
433
|
+
export const errorTypeRegistries = [
|
|
434
|
+
_s_registry,
|
|
435
|
+
n0_registry,
|
|
436
|
+
n1_registry,
|
|
437
|
+
];
|
|
438
|
+
export var Actor$ = [3, n1, _A,
|
|
439
|
+
0,
|
|
440
|
+
[_t, _i, _n],
|
|
441
|
+
[0, 0, 0], 2
|
|
442
|
+
];
|
|
443
|
+
export var Agent$ = [3, n1, _Ag,
|
|
444
|
+
0,
|
|
445
|
+
[_n, _en, _cA, _cB, _i, _st, _r, _d, _ca, _p, _ch, _g, _a, _uA, _uB, _lV, _al],
|
|
446
|
+
[0, () => AgentEngine$, 0, () => Actor$, 0, 0, 1, 0, 0, 0, () => AgentChannels$, 64 | 0, () => AgentAccess$, 0, () => Actor$, 1, () => AgentAliasesList], 7
|
|
447
|
+
];
|
|
448
|
+
export var AgentAccess$ = [3, n1, _AA,
|
|
449
|
+
0,
|
|
450
|
+
[_v, _gr],
|
|
451
|
+
[0, () => AgentGrantList]
|
|
452
|
+
];
|
|
453
|
+
export var AgentAlias$ = [3, n1, _AAg,
|
|
454
|
+
0,
|
|
455
|
+
[_n, _aI, _ro, _uA, _uB, _d],
|
|
456
|
+
[0, 0, () => AgentAliasRoutesList, 0, () => Actor$, 0], 5
|
|
457
|
+
];
|
|
458
|
+
export var AgentAliasRoute$ = [3, n1, _AAR,
|
|
459
|
+
0,
|
|
460
|
+
[_ve, _w],
|
|
461
|
+
[1, 1], 2
|
|
462
|
+
];
|
|
463
|
+
export var AgentApiKey$ = [3, n1, _AAK,
|
|
464
|
+
0,
|
|
465
|
+
[_i, _pr, _cA, _cB, _n, _eA, _lUA],
|
|
466
|
+
[0, 0, 0, () => Actor$, 0, 0, 0], 4
|
|
467
|
+
];
|
|
468
|
+
export var AgentCallCapability$ = [3, n1, _ACC,
|
|
469
|
+
0,
|
|
470
|
+
[_aI, _va],
|
|
471
|
+
[0, () => AgentToolVariablesList], 1
|
|
472
|
+
];
|
|
473
|
+
export var AgentChannels$ = [3, n1, _AC,
|
|
474
|
+
0,
|
|
475
|
+
[_as, _cha, _vo, _ap],
|
|
476
|
+
[() => AssistantChannelSettings$, () => ChatChannelSettings$, () => VoiceChannelSettings$, () => ApiChannelSettings$]
|
|
477
|
+
];
|
|
478
|
+
export var AgentDefinitionSnapshot$ = [3, n1, _ADS,
|
|
479
|
+
0,
|
|
480
|
+
[_n, _en, _d, _ca, _p, _ch, _g, _a],
|
|
481
|
+
[0, () => AgentEngine$, 0, 0, 0, () => AgentChannels$, 64 | 0, () => AgentAccess$], 2
|
|
482
|
+
];
|
|
483
|
+
export var AgentDelegationCapability$ = [3, n1, _ADC,
|
|
484
|
+
0,
|
|
485
|
+
[_ag, _in],
|
|
486
|
+
[64 | 0, 0]
|
|
487
|
+
];
|
|
488
|
+
export var AgentExecutionError$ = [3, n1, _AEE,
|
|
489
|
+
0,
|
|
490
|
+
[_m, _co],
|
|
491
|
+
[0, 0], 1
|
|
492
|
+
];
|
|
493
|
+
export var AgentExecutionResult$ = [3, n1, _AER,
|
|
494
|
+
0,
|
|
495
|
+
[_o, _e, _f, _tI],
|
|
496
|
+
[15, () => AgentExecutionError$, () => AgentFileList, 0]
|
|
497
|
+
];
|
|
498
|
+
export var AgentFunctionTool$ = [3, n1, _AFT,
|
|
499
|
+
0,
|
|
500
|
+
[_n, _d, _pa, _int],
|
|
501
|
+
[0, 0, 15, () => FunctionIntegration$], 1
|
|
502
|
+
];
|
|
503
|
+
export var AgentGrant$ = [3, n1, _AG,
|
|
504
|
+
0,
|
|
505
|
+
[_pe, _pri],
|
|
506
|
+
[0, () => AgentGrantPrincipal$], 2
|
|
507
|
+
];
|
|
508
|
+
export var AgentHandoverCapability$ = [3, n1, _AHC,
|
|
509
|
+
0,
|
|
510
|
+
[_in, _m],
|
|
511
|
+
[0, 0]
|
|
512
|
+
];
|
|
513
|
+
export var AgentInfo$ = [3, n1, _AI,
|
|
514
|
+
0,
|
|
515
|
+
[_i, _n, _st, _ca, _ch, _lV],
|
|
516
|
+
[0, 0, 0, 0, 64 | 0, 1], 3
|
|
517
|
+
];
|
|
518
|
+
export var AgentKnowledgeBase$ = [3, n1, _AKB,
|
|
519
|
+
0,
|
|
520
|
+
[_kBI, _in],
|
|
521
|
+
[0, 0]
|
|
522
|
+
];
|
|
523
|
+
export var AgentLlmEngine$ = [3, n1, _ALE,
|
|
524
|
+
0,
|
|
525
|
+
[_in, _mo, _sk, _cap, _va],
|
|
526
|
+
[0, 0, 64 | 0, () => AgentCapabilitiesList, () => AgentVariablesList], 1
|
|
527
|
+
];
|
|
528
|
+
export var AgentMcpServerCapability$ = [3, n1, _AMSC,
|
|
529
|
+
0,
|
|
530
|
+
[_u, _au, _aT],
|
|
531
|
+
[0, () => WebhookAuthorization$, 64 | 0], 1
|
|
532
|
+
];
|
|
533
|
+
export var AgentSnapshotSandboxOptions$ = [3, n1, _ASSO,
|
|
534
|
+
0,
|
|
535
|
+
[_sI, _ne, _aD, _vc],
|
|
536
|
+
[0, 0, 64 | 0, 1], 1
|
|
537
|
+
];
|
|
538
|
+
export var AgentSqsEngine$ = [3, n1, _ASE,
|
|
539
|
+
0,
|
|
540
|
+
[_u, _k, _se],
|
|
541
|
+
[0, 0, 0], 3
|
|
542
|
+
];
|
|
543
|
+
export var AgentSuggestionsCapability$ = [3, n1, _ASC,
|
|
544
|
+
0,
|
|
545
|
+
[],
|
|
546
|
+
[]
|
|
547
|
+
];
|
|
548
|
+
export var AgentTool$ = [3, n1, _AT,
|
|
549
|
+
0,
|
|
550
|
+
[_i, _va],
|
|
551
|
+
[0, () => AgentToolVariablesList], 1
|
|
552
|
+
];
|
|
553
|
+
export var AgentToolVariable$ = [3, n1, _ATV,
|
|
554
|
+
0,
|
|
555
|
+
[_n, _h],
|
|
556
|
+
[0, () => AgentToolVariableHandler$], 1
|
|
557
|
+
];
|
|
558
|
+
export var AgentToolVariableAutoHandler$ = [3, n1, _ATVAH,
|
|
559
|
+
0,
|
|
560
|
+
[],
|
|
561
|
+
[]
|
|
562
|
+
];
|
|
563
|
+
export var AgentToolVariableGuidedHandler$ = [3, n1, _ATVGH,
|
|
564
|
+
0,
|
|
565
|
+
[_d],
|
|
566
|
+
[0], 1
|
|
567
|
+
];
|
|
568
|
+
export var AgentToolVariablePredefinedHandler$ = [3, n1, _ATVPH,
|
|
569
|
+
0,
|
|
570
|
+
[_d],
|
|
571
|
+
[0], 1
|
|
572
|
+
];
|
|
573
|
+
export var AgentTransferCapability$ = [3, n1, _ATC,
|
|
574
|
+
0,
|
|
575
|
+
[_ta, _in],
|
|
576
|
+
[() => VoiceTransferTargetsList, 0], 1
|
|
577
|
+
];
|
|
578
|
+
export var AgentVariable$ = [3, n1, _AV,
|
|
579
|
+
0,
|
|
580
|
+
[_n, _t, _op, _d],
|
|
581
|
+
[0, 0, 2, 0], 3
|
|
582
|
+
];
|
|
583
|
+
export var AgentVercelSandboxOptions$ = [3, n1, _AVSO,
|
|
584
|
+
0,
|
|
585
|
+
[_vc, _ne, _aD],
|
|
586
|
+
[1, 0, 64 | 0]
|
|
587
|
+
];
|
|
588
|
+
export var AgentVersion$ = [3, n1, _AVg,
|
|
589
|
+
0,
|
|
590
|
+
[_aI, _ve, _de, _pA, _pB, _chan],
|
|
591
|
+
[0, 1, () => AgentDefinitionSnapshot$, 0, () => Actor$, 0], 5
|
|
592
|
+
];
|
|
593
|
+
export var AgentVersionChange$ = [3, n1, _AVC,
|
|
594
|
+
0,
|
|
595
|
+
[_pat, _b, _af],
|
|
596
|
+
[0, 15, 15], 1
|
|
597
|
+
];
|
|
598
|
+
export var AgentVersionInfo$ = [3, n1, _AVI,
|
|
599
|
+
0,
|
|
600
|
+
[_aI, _ve, _pA, _pB, _chan, _al],
|
|
601
|
+
[0, 1, 0, () => Actor$, 0, 64 | 0], 4
|
|
602
|
+
];
|
|
603
|
+
export var AgentWebFetchCapability$ = [3, n1, _AWFC,
|
|
604
|
+
0,
|
|
605
|
+
[_aD],
|
|
606
|
+
[64 | 0]
|
|
607
|
+
];
|
|
608
|
+
export var AgentWebhookEngine$ = [3, n1, _AWE,
|
|
609
|
+
0,
|
|
610
|
+
[_u, _se, _ti],
|
|
611
|
+
[0, 0, 1], 2
|
|
612
|
+
];
|
|
613
|
+
export var AgentWebSearchCapability$ = [3, n1, _AWSC,
|
|
614
|
+
0,
|
|
615
|
+
[_cS, _aD, _uL],
|
|
616
|
+
[0, 64 | 0, () => WebSearchUserLocation$]
|
|
617
|
+
];
|
|
618
|
+
export var ApiChannelSettings$ = [3, n1, _ACS,
|
|
619
|
+
0,
|
|
620
|
+
[_ena],
|
|
621
|
+
[2], 1
|
|
622
|
+
];
|
|
623
|
+
export var AssistantChannelSettings$ = [3, n1, _ACSs,
|
|
624
|
+
0,
|
|
625
|
+
[_ena, _def],
|
|
626
|
+
[2, 2], 1
|
|
627
|
+
];
|
|
628
|
+
export var AuditRecord$ = [3, n1, _AR,
|
|
629
|
+
0,
|
|
630
|
+
[_i, _tim, _ac, _act, _rT, _rI, _aI, _chang, _rIe],
|
|
631
|
+
[0, 0, () => Actor$, 0, 0, 0, 0, () => AgentVersionChangesList, 0], 6
|
|
632
|
+
];
|
|
633
|
+
export var ChatChannelSettings$ = [3, n1, _CCS,
|
|
634
|
+
0,
|
|
635
|
+
[_ena, _di, _pGI, _wM],
|
|
636
|
+
[2, 2, 0, 0], 1
|
|
637
|
+
];
|
|
638
|
+
export var CompareAgentVersionsInput$ = [3, n1, _CAVI,
|
|
639
|
+
0,
|
|
640
|
+
[_aI, _fr, _to, _com],
|
|
641
|
+
[[0, 1], [1, { [_hQ]: _fr }], [1, { [_hQ]: _to }], [0, { [_hQ]: _com }]], 3
|
|
642
|
+
];
|
|
643
|
+
export var CompareAgentVersionsOutput$ = [3, n1, _CAVO,
|
|
644
|
+
0,
|
|
645
|
+
[_chang],
|
|
646
|
+
[() => AgentVersionChangesList], 1
|
|
647
|
+
];
|
|
648
|
+
export var CreateAgentApiKeyInput$ = [3, n1, _CAAKI,
|
|
649
|
+
0,
|
|
650
|
+
[_aI, _com, _n, _eA],
|
|
651
|
+
[[0, 1], [0, { [_hQ]: _com }], 0, 0], 1
|
|
652
|
+
];
|
|
653
|
+
export var CreateAgentApiKeyOutput$ = [3, n1, _CAAKO,
|
|
654
|
+
0,
|
|
655
|
+
[_k, _se],
|
|
656
|
+
[() => AgentApiKey$, 0], 2
|
|
657
|
+
];
|
|
658
|
+
export var CreateAgentInput$ = [3, n1, _CAI,
|
|
659
|
+
0,
|
|
660
|
+
[_n, _en, _d, _ca, _p, _ch, _g, _a, _com],
|
|
661
|
+
[0, () => AgentEngine$, 0, 0, 0, () => AgentChannels$, 64 | 0, () => AgentAccess$, [0, { [_hQ]: _com }]], 2
|
|
662
|
+
];
|
|
663
|
+
export var CreateAgentOutput$ = [3, n1, _CAO,
|
|
664
|
+
0,
|
|
665
|
+
[_age],
|
|
666
|
+
[() => Agent$], 1
|
|
667
|
+
];
|
|
668
|
+
export var CreateGuardrailInput$ = [3, n1, _CGI,
|
|
669
|
+
0,
|
|
670
|
+
[_n, _d, _tP, _cP, _wP, _pP, _bIM, _bOM, _com],
|
|
671
|
+
[0, 0, () => GuardrailTopicPolicy$, () => GuardrailContentPolicy$, () => GuardrailWordPolicy$, () => GuardrailPiiPolicy$, 0, 0, [0, { [_hQ]: _com }]], 1
|
|
672
|
+
];
|
|
673
|
+
export var CreateGuardrailOutput$ = [3, n1, _CGO,
|
|
674
|
+
0,
|
|
675
|
+
[_gu],
|
|
676
|
+
[() => Guardrail$], 1
|
|
677
|
+
];
|
|
678
|
+
export var DeleteAgentAliasInput$ = [3, n1, _DAAI,
|
|
679
|
+
0,
|
|
680
|
+
[_aI, _aN, _com],
|
|
681
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _com }]], 2
|
|
682
|
+
];
|
|
683
|
+
export var DeleteAgentAliasOutput$ = [3, n1, _DAAO,
|
|
684
|
+
0,
|
|
685
|
+
[],
|
|
686
|
+
[]
|
|
687
|
+
];
|
|
688
|
+
export var DeleteAgentApiKeyInput$ = [3, n1, _DAAKI,
|
|
689
|
+
0,
|
|
690
|
+
[_aI, _kI, _com],
|
|
691
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _com }]], 2
|
|
692
|
+
];
|
|
693
|
+
export var DeleteAgentApiKeyOutput$ = [3, n1, _DAAKO,
|
|
694
|
+
0,
|
|
695
|
+
[],
|
|
696
|
+
[]
|
|
697
|
+
];
|
|
698
|
+
export var DeleteAgentInput$ = [3, n1, _DAI,
|
|
699
|
+
0,
|
|
700
|
+
[_aI, _com],
|
|
701
|
+
[[0, 1], [0, { [_hQ]: _com }]], 1
|
|
702
|
+
];
|
|
703
|
+
export var DeleteAgentOutput$ = [3, n1, _DAO,
|
|
704
|
+
0,
|
|
705
|
+
[],
|
|
706
|
+
[]
|
|
707
|
+
];
|
|
708
|
+
export var DeleteGuardrailInput$ = [3, n1, _DGI,
|
|
709
|
+
0,
|
|
710
|
+
[_gI, _com],
|
|
711
|
+
[[0, 1], [0, { [_hQ]: _com }]], 1
|
|
712
|
+
];
|
|
713
|
+
export var DeleteGuardrailOutput$ = [3, n1, _DGO,
|
|
714
|
+
0,
|
|
715
|
+
[],
|
|
716
|
+
[]
|
|
717
|
+
];
|
|
718
|
+
export var ExecuteAgentInput$ = [3, n1, _EAI,
|
|
719
|
+
0,
|
|
720
|
+
[_aI, _inp, _com, _va, _ali, _ve, _us, _pAI, _pTI, _f],
|
|
721
|
+
[[0, 1], 0, [0, { [_hQ]: _com }], 15, 0, 1, 0, 0, 0, 64 | 0], 2
|
|
722
|
+
];
|
|
723
|
+
export var ExecuteAgentOutput$ = [3, n1, _EAO,
|
|
724
|
+
0,
|
|
725
|
+
[_re],
|
|
726
|
+
[() => AgentExecutionResult$], 1
|
|
727
|
+
];
|
|
728
|
+
export var FunctionWebhookIntegration$ = [3, n1, _FWI,
|
|
729
|
+
0,
|
|
730
|
+
[_u, _me, _asy, _au, _he, _ti, _pa],
|
|
731
|
+
[0, 0, 2, () => WebhookAuthorization$, () => WebhookHeadersList, 1, 15], 1
|
|
732
|
+
];
|
|
733
|
+
export var GetAgentInput$ = [3, n1, _GAI,
|
|
734
|
+
0,
|
|
735
|
+
[_aI, _com],
|
|
736
|
+
[[0, 1], [0, { [_hQ]: _com }]], 1
|
|
737
|
+
];
|
|
738
|
+
export var GetAgentOutput$ = [3, n1, _GAO,
|
|
739
|
+
0,
|
|
740
|
+
[_age],
|
|
741
|
+
[() => Agent$], 1
|
|
742
|
+
];
|
|
743
|
+
export var GetAgentVersionInput$ = [3, n1, _GAVI,
|
|
744
|
+
0,
|
|
745
|
+
[_aI, _ve, _com],
|
|
746
|
+
[[0, 1], [1, 1], [0, { [_hQ]: _com }]], 2
|
|
747
|
+
];
|
|
748
|
+
export var GetAgentVersionOutput$ = [3, n1, _GAVO,
|
|
749
|
+
0,
|
|
750
|
+
[_ve],
|
|
751
|
+
[() => AgentVersion$], 1
|
|
752
|
+
];
|
|
753
|
+
export var GetGuardrailInput$ = [3, n1, _GGI,
|
|
754
|
+
0,
|
|
755
|
+
[_gI, _com],
|
|
756
|
+
[[0, 1], [0, { [_hQ]: _com }]], 1
|
|
757
|
+
];
|
|
758
|
+
export var GetGuardrailOutput$ = [3, n1, _GGO,
|
|
759
|
+
0,
|
|
760
|
+
[_gu],
|
|
761
|
+
[() => Guardrail$], 1
|
|
762
|
+
];
|
|
763
|
+
export var Guardrail$ = [3, n1, _G,
|
|
764
|
+
0,
|
|
765
|
+
[_n, _cA, _cB, _i, _d, _tP, _cP, _wP, _pP, _bIM, _bOM, _uA, _uB],
|
|
766
|
+
[0, 0, () => Actor$, 0, 0, () => GuardrailTopicPolicy$, () => GuardrailContentPolicy$, () => GuardrailWordPolicy$, () => GuardrailPiiPolicy$, 0, 0, 0, () => Actor$], 4
|
|
767
|
+
];
|
|
768
|
+
export var GuardrailContentFilter$ = [3, n1, _GCF,
|
|
769
|
+
0,
|
|
770
|
+
[_ca, _iS, _oS],
|
|
771
|
+
[0, 0, 0], 1
|
|
772
|
+
];
|
|
773
|
+
export var GuardrailContentPolicy$ = [3, n1, _GCP,
|
|
774
|
+
0,
|
|
775
|
+
[_fi],
|
|
776
|
+
[() => GuardrailContentFiltersList], 1
|
|
777
|
+
];
|
|
778
|
+
export var GuardrailPiiEntity$ = [3, n1, _GPE,
|
|
779
|
+
0,
|
|
780
|
+
[_eT, _act, _patt],
|
|
781
|
+
[0, 0, 0], 2
|
|
782
|
+
];
|
|
783
|
+
export var GuardrailPiiPolicy$ = [3, n1, _GPP,
|
|
784
|
+
0,
|
|
785
|
+
[_ent],
|
|
786
|
+
[() => GuardrailPiiEntitiesList], 1
|
|
787
|
+
];
|
|
788
|
+
export var GuardrailTopic$ = [3, n1, _GT,
|
|
789
|
+
0,
|
|
790
|
+
[_n, _de, _act, _ex],
|
|
791
|
+
[0, 0, 0, 64 | 0], 3
|
|
792
|
+
];
|
|
793
|
+
export var GuardrailTopicPolicy$ = [3, n1, _GTP,
|
|
794
|
+
0,
|
|
795
|
+
[_top],
|
|
796
|
+
[() => GuardrailTopicsList], 1
|
|
797
|
+
];
|
|
798
|
+
export var GuardrailWordPolicy$ = [3, n1, _GWP,
|
|
799
|
+
0,
|
|
800
|
+
[_bW, _pro],
|
|
801
|
+
[64 | 0, 2]
|
|
802
|
+
];
|
|
803
|
+
export var ListAgentAliasesInput$ = [3, n1, _LAAI,
|
|
804
|
+
0,
|
|
805
|
+
[_aI, _com],
|
|
806
|
+
[[0, 1], [0, { [_hQ]: _com }]], 1
|
|
807
|
+
];
|
|
808
|
+
export var ListAgentAliasesOutput$ = [3, n1, _LAAO,
|
|
809
|
+
0,
|
|
810
|
+
[_al],
|
|
811
|
+
[() => AgentAliasesList], 1
|
|
812
|
+
];
|
|
813
|
+
export var ListAgentApiKeysInput$ = [3, n1, _LAAKI,
|
|
814
|
+
0,
|
|
815
|
+
[_aI, _com],
|
|
816
|
+
[[0, 1], [0, { [_hQ]: _com }]], 1
|
|
817
|
+
];
|
|
818
|
+
export var ListAgentApiKeysOutput$ = [3, n1, _LAAKO,
|
|
819
|
+
0,
|
|
820
|
+
[_ke],
|
|
821
|
+
[() => AgentApiKeysList], 1
|
|
822
|
+
];
|
|
823
|
+
export var ListAgentsInput$ = [3, n1, _LAI,
|
|
824
|
+
0,
|
|
825
|
+
[_com, _chann, _st, _sea, _l, _nT],
|
|
826
|
+
[[0, { [_hQ]: _com }], [0, { [_hQ]: _chann }], [0, { [_hQ]: _st }], [0, { [_hQ]: _sea }], [1, { [_hQ]: _l }], [0, { [_hQ]: _nT }]]
|
|
827
|
+
];
|
|
828
|
+
export var ListAgentsNamesInput$ = [3, n1, _LANI,
|
|
829
|
+
0,
|
|
830
|
+
[_com, _chann],
|
|
831
|
+
[[0, { [_hQ]: _com }], [0, { [_hQ]: _chann }]]
|
|
832
|
+
];
|
|
833
|
+
export var ListAgentsNamesOutput$ = [3, n1, _LANO,
|
|
834
|
+
0,
|
|
835
|
+
[_ag],
|
|
836
|
+
[() => AgentsInfoList], 1
|
|
837
|
+
];
|
|
838
|
+
export var ListAgentsOutput$ = [3, n1, _LAO,
|
|
839
|
+
0,
|
|
840
|
+
[_ag, _nT],
|
|
841
|
+
[() => AgentsList, 0], 1
|
|
842
|
+
];
|
|
843
|
+
export var ListAgentVersionsInput$ = [3, n1, _LAVI,
|
|
844
|
+
0,
|
|
845
|
+
[_aI, _com, _l, _nT],
|
|
846
|
+
[[0, 1], [0, { [_hQ]: _com }], [1, { [_hQ]: _l }], [0, { [_hQ]: _nT }]], 1
|
|
847
|
+
];
|
|
848
|
+
export var ListAgentVersionsOutput$ = [3, n1, _LAVO,
|
|
849
|
+
0,
|
|
850
|
+
[_ver, _nT],
|
|
851
|
+
[() => AgentVersionInfoList, 0], 1
|
|
852
|
+
];
|
|
853
|
+
export var ListAuditRecordsInput$ = [3, n1, _LARI,
|
|
854
|
+
0,
|
|
855
|
+
[_com, _aI, _rT, _act, _aIc, _fr, _to, _l, _nT],
|
|
856
|
+
[[0, { [_hQ]: _com }], [0, { [_hQ]: _aI }], [0, { [_hQ]: _rT }], [0, { [_hQ]: _act }], [0, { [_hQ]: _aIc }], [0, { [_hQ]: _fr }], [0, { [_hQ]: _to }], [1, { [_hQ]: _l }], [0, { [_hQ]: _nT }]]
|
|
857
|
+
];
|
|
858
|
+
export var ListAuditRecordsOutput$ = [3, n1, _LARO,
|
|
859
|
+
0,
|
|
860
|
+
[_rec, _nT],
|
|
861
|
+
[() => AuditRecordsList, 0], 1
|
|
862
|
+
];
|
|
863
|
+
export var ListGuardrailsInput$ = [3, n1, _LGI,
|
|
864
|
+
0,
|
|
865
|
+
[_com, _l, _nT],
|
|
866
|
+
[[0, { [_hQ]: _com }], [1, { [_hQ]: _l }], [0, { [_hQ]: _nT }]]
|
|
867
|
+
];
|
|
868
|
+
export var ListGuardrailsOutput$ = [3, n1, _LGO,
|
|
869
|
+
0,
|
|
870
|
+
[_g, _nT],
|
|
871
|
+
[() => GuardrailsList, 0], 1
|
|
872
|
+
];
|
|
873
|
+
export var PublishAgentVersionInput$ = [3, n1, _PAVI,
|
|
874
|
+
0,
|
|
875
|
+
[_aI, _com, _chan, _r],
|
|
876
|
+
[[0, 1], [0, { [_hQ]: _com }], 0, 1], 1
|
|
877
|
+
];
|
|
878
|
+
export var PublishAgentVersionOutput$ = [3, n1, _PAVO,
|
|
879
|
+
0,
|
|
880
|
+
[_ve],
|
|
881
|
+
[() => AgentVersion$], 1
|
|
882
|
+
];
|
|
883
|
+
export var PutAgentAliasInput$ = [3, n1, _PAAI,
|
|
884
|
+
0,
|
|
885
|
+
[_aI, _aN, _ro, _com, _d],
|
|
886
|
+
[[0, 1], [0, 1], () => AgentAliasRoutesList, [0, { [_hQ]: _com }], 0], 3
|
|
887
|
+
];
|
|
888
|
+
export var PutAgentAliasOutput$ = [3, n1, _PAAO,
|
|
889
|
+
0,
|
|
890
|
+
[_ali],
|
|
891
|
+
[() => AgentAlias$], 1
|
|
892
|
+
];
|
|
893
|
+
export var UpdateAgentInput$ = [3, n1, _UAI,
|
|
894
|
+
0,
|
|
895
|
+
[_n, _en, _aI, _d, _ca, _p, _ch, _g, _a, _com, _r],
|
|
896
|
+
[0, () => AgentEngine$, [0, 1], 0, 0, 0, () => AgentChannels$, 64 | 0, () => AgentAccess$, [0, { [_hQ]: _com }], 1], 3
|
|
897
|
+
];
|
|
898
|
+
export var UpdateAgentOutput$ = [3, n1, _UAO,
|
|
899
|
+
0,
|
|
900
|
+
[_age],
|
|
901
|
+
[() => Agent$], 1
|
|
902
|
+
];
|
|
903
|
+
export var UpdateGuardrailInput$ = [3, n1, _UGI,
|
|
904
|
+
0,
|
|
905
|
+
[_n, _gI, _d, _tP, _cP, _wP, _pP, _bIM, _bOM, _com],
|
|
906
|
+
[0, [0, 1], 0, () => GuardrailTopicPolicy$, () => GuardrailContentPolicy$, () => GuardrailWordPolicy$, () => GuardrailPiiPolicy$, 0, 0, [0, { [_hQ]: _com }]], 2
|
|
907
|
+
];
|
|
908
|
+
export var UpdateGuardrailOutput$ = [3, n1, _UGO,
|
|
909
|
+
0,
|
|
910
|
+
[_gu],
|
|
911
|
+
[() => Guardrail$], 1
|
|
912
|
+
];
|
|
913
|
+
export var VoiceCallerMetadataSettings$ = [3, n1, _VCMS,
|
|
914
|
+
0,
|
|
915
|
+
[_cN, _cNa, _cE, _cC, _time, _tZ],
|
|
916
|
+
[2, 2, 2, 2, 2, 0]
|
|
917
|
+
];
|
|
918
|
+
export var VoiceChannelSettings$ = [3, n1, _VCS,
|
|
919
|
+
0,
|
|
920
|
+
[_ena, _la, _sy, _gre, _inte, _sT, _mD, _eC, _cM],
|
|
921
|
+
[2, 0, () => VoiceSynthesisSettings$, 0, () => VoiceInterruptionSettings$, () => VoiceSilenceTimeoutSettings$, () => VoiceMaxDurationSettings$, () => VoiceEndCallSettings$, () => VoiceCallerMetadataSettings$], 3
|
|
922
|
+
];
|
|
923
|
+
export var VoiceEndCallSettings$ = [3, n1, _VECS,
|
|
924
|
+
0,
|
|
925
|
+
[_ena, _ph],
|
|
926
|
+
[2, 0], 1
|
|
927
|
+
];
|
|
928
|
+
export var VoiceInterruptionSettings$ = [3, n1, _VIS,
|
|
929
|
+
0,
|
|
930
|
+
[_ena, _mW],
|
|
931
|
+
[2, 1], 1
|
|
932
|
+
];
|
|
933
|
+
export var VoiceMaxDurationSettings$ = [3, n1, _VMDS,
|
|
934
|
+
0,
|
|
935
|
+
[_sec, _act],
|
|
936
|
+
[1, () => VoiceTerminateAction$], 2
|
|
937
|
+
];
|
|
938
|
+
export var VoiceSilenceTimeoutSettings$ = [3, n1, _VSTS,
|
|
939
|
+
0,
|
|
940
|
+
[_sec, _act],
|
|
941
|
+
[1, () => VoiceTerminateAction$], 2
|
|
942
|
+
];
|
|
943
|
+
export var VoiceSynthesisSettings$ = [3, n1, _VSS,
|
|
944
|
+
0,
|
|
945
|
+
[_prov, _vI, _sp],
|
|
946
|
+
[0, 0, 1], 2
|
|
947
|
+
];
|
|
948
|
+
export var VoiceTerminateHangupAction$ = [3, n1, _VTHA,
|
|
949
|
+
0,
|
|
950
|
+
[_m],
|
|
951
|
+
[0]
|
|
952
|
+
];
|
|
953
|
+
export var VoiceTransferTarget$ = [3, n1, _VTT,
|
|
954
|
+
0,
|
|
955
|
+
[_n, _con, _ext, _d],
|
|
956
|
+
[0, 0, 0, 0], 3
|
|
957
|
+
];
|
|
958
|
+
export var WebhookAuthorizationBasic$ = [3, n1, _WAB,
|
|
959
|
+
0,
|
|
960
|
+
[_use, _pas],
|
|
961
|
+
[0, 0], 2
|
|
962
|
+
];
|
|
963
|
+
export var WebhookAuthorizationBearer$ = [3, n1, _WABe,
|
|
964
|
+
0,
|
|
965
|
+
[_tok],
|
|
966
|
+
[0], 1
|
|
967
|
+
];
|
|
968
|
+
export var WebhookAuthorizationOAuth$ = [3, n1, _WAOA,
|
|
969
|
+
0,
|
|
970
|
+
[_cI, _cSl, _eU, _sc],
|
|
971
|
+
[0, 0, 0, 0], 3
|
|
972
|
+
];
|
|
973
|
+
export var WebhookHeader$ = [3, n1, _WH,
|
|
974
|
+
0,
|
|
975
|
+
[_n, _val],
|
|
976
|
+
[0, 0], 2
|
|
977
|
+
];
|
|
978
|
+
export var WebSearchUserLocation$ = [3, n1, _WSUL,
|
|
979
|
+
0,
|
|
980
|
+
[_cou, _reg, _ci, _timez],
|
|
981
|
+
[0, 0, 0, 0]
|
|
982
|
+
];
|
|
983
|
+
export var AgentFile$ = [3, n2, _AF,
|
|
984
|
+
0,
|
|
985
|
+
[_i, _n, _cA, _cT, _si, _sc, _aI, _sIe],
|
|
986
|
+
[0, 0, 0, 0, 1, 0, 0, 0], 3
|
|
987
|
+
];
|
|
988
|
+
var AgentAliasesList = [1, n1, _AAL,
|
|
989
|
+
0, () => AgentAlias$
|
|
990
|
+
];
|
|
991
|
+
var AgentAliasRoutesList = [1, n1, _AARL,
|
|
992
|
+
0, () => AgentAliasRoute$
|
|
993
|
+
];
|
|
994
|
+
var AgentApiKeysList = [1, n1, _AAKL,
|
|
995
|
+
0, () => AgentApiKey$
|
|
996
|
+
];
|
|
997
|
+
var AgentCapabilitiesList = [1, n1, _ACL,
|
|
998
|
+
0, () => AgentCapability$
|
|
999
|
+
];
|
|
1000
|
+
var AgentGrantList = [1, n1, _AGL,
|
|
1001
|
+
0, () => AgentGrant$
|
|
1002
|
+
];
|
|
1003
|
+
var AgentIdList = 64 | 0;
|
|
1004
|
+
var AgentsInfoList = [1, n1, _AIL,
|
|
1005
|
+
0, () => AgentInfo$
|
|
1006
|
+
];
|
|
1007
|
+
var AgentsList = [1, n1, _AL,
|
|
1008
|
+
0, () => Agent$
|
|
1009
|
+
];
|
|
1010
|
+
var AgentToolVariablesList = [1, n1, _ATVL,
|
|
1011
|
+
0, () => AgentToolVariable$
|
|
1012
|
+
];
|
|
1013
|
+
var AgentVariablesList = [1, n1, _AVL,
|
|
1014
|
+
0, () => AgentVariable$
|
|
1015
|
+
];
|
|
1016
|
+
var AgentVersionChangesList = [1, n1, _AVCL,
|
|
1017
|
+
0, () => AgentVersionChange$
|
|
1018
|
+
];
|
|
1019
|
+
var AgentVersionInfoList = [1, n1, _AVIL,
|
|
1020
|
+
0, () => AgentVersionInfo$
|
|
1021
|
+
];
|
|
1022
|
+
var AliasNamesList = 64 | 0;
|
|
1023
|
+
var AuditRecordsList = [1, n1, _ARL,
|
|
1024
|
+
0, () => AuditRecord$
|
|
1025
|
+
];
|
|
1026
|
+
var ChannelTypeList = 64 | 0;
|
|
1027
|
+
var DomainNameList = 64 | 0;
|
|
1028
|
+
var FunctionNameList = 64 | 0;
|
|
1029
|
+
var GuardrailContentFiltersList = [1, n1, _GCFL,
|
|
1030
|
+
0, () => GuardrailContentFilter$
|
|
1031
|
+
];
|
|
1032
|
+
var GuardrailIdList = 64 | 0;
|
|
1033
|
+
var GuardrailPhrasesList = 64 | 0;
|
|
1034
|
+
var GuardrailPiiEntitiesList = [1, n1, _GPEL,
|
|
1035
|
+
0, () => GuardrailPiiEntity$
|
|
1036
|
+
];
|
|
1037
|
+
var GuardrailsList = [1, n1, _GL,
|
|
1038
|
+
0, () => Guardrail$
|
|
1039
|
+
];
|
|
1040
|
+
var GuardrailTopicsList = [1, n1, _GTL,
|
|
1041
|
+
0, () => GuardrailTopic$
|
|
1042
|
+
];
|
|
1043
|
+
var VoiceTransferTargetsList = [1, n1, _VTTL,
|
|
1044
|
+
0, () => VoiceTransferTarget$
|
|
1045
|
+
];
|
|
1046
|
+
var WebhookHeadersList = [1, n1, _WHL,
|
|
1047
|
+
0, () => WebhookHeader$
|
|
1048
|
+
];
|
|
1049
|
+
var AgentFileList = [1, n2, _AFL,
|
|
1050
|
+
0, () => AgentFile$
|
|
1051
|
+
];
|
|
1052
|
+
var FileIdList = 64 | 0;
|
|
1053
|
+
var AgentSkillsList = 64 | 0;
|
|
1054
|
+
export var AgentCapability$ = [4, n1, _ACg,
|
|
1055
|
+
0,
|
|
1056
|
+
[_too, _fu, _kb, _sa, _wS, _wF, _age, _mc, _ha, _del, _tr, _su],
|
|
1057
|
+
[() => AgentTool$, () => AgentFunctionTool$, () => AgentKnowledgeBase$, () => AgentSandboxCapability$, () => AgentWebSearchCapability$, () => AgentWebFetchCapability$, () => AgentCallCapability$, () => AgentMcpServerCapability$, () => AgentHandoverCapability$, () => AgentDelegationCapability$, () => AgentTransferCapability$, () => AgentSuggestionsCapability$]
|
|
1058
|
+
];
|
|
1059
|
+
export var AgentEngine$ = [4, n1, _AE,
|
|
1060
|
+
0,
|
|
1061
|
+
[_ll, _we, _sq],
|
|
1062
|
+
[() => AgentLlmEngine$, () => AgentWebhookEngine$, () => AgentSqsEngine$]
|
|
1063
|
+
];
|
|
1064
|
+
export var AgentGrantPrincipal$ = [4, n1, _AGP,
|
|
1065
|
+
0,
|
|
1066
|
+
[_uI, _gIr],
|
|
1067
|
+
[0, 0]
|
|
1068
|
+
];
|
|
1069
|
+
export var AgentSandboxCapability$ = [4, n1, _ASCg,
|
|
1070
|
+
0,
|
|
1071
|
+
[_verc, _sn],
|
|
1072
|
+
[() => AgentVercelSandboxOptions$, () => AgentSnapshotSandboxOptions$]
|
|
1073
|
+
];
|
|
1074
|
+
export var AgentToolVariableHandler$ = [4, n1, _ATVH,
|
|
1075
|
+
0,
|
|
1076
|
+
[_aut, _gui, _pre],
|
|
1077
|
+
[() => AgentToolVariableAutoHandler$, () => AgentToolVariableGuidedHandler$, () => AgentToolVariablePredefinedHandler$]
|
|
1078
|
+
];
|
|
1079
|
+
export var FunctionIntegration$ = [4, n1, _FI,
|
|
1080
|
+
0,
|
|
1081
|
+
[_we],
|
|
1082
|
+
[() => FunctionWebhookIntegration$]
|
|
1083
|
+
];
|
|
1084
|
+
export var VoiceTerminateAction$ = [4, n1, _VTA,
|
|
1085
|
+
0,
|
|
1086
|
+
[_han, _tr],
|
|
1087
|
+
[() => VoiceTerminateHangupAction$, () => VoiceTransferTarget$]
|
|
1088
|
+
];
|
|
1089
|
+
export var WebhookAuthorization$ = [4, n1, _WA,
|
|
1090
|
+
0,
|
|
1091
|
+
[_be, _ba, _oa],
|
|
1092
|
+
[() => WebhookAuthorizationBearer$, () => WebhookAuthorizationBasic$, () => WebhookAuthorizationOAuth$]
|
|
1093
|
+
];
|
|
1094
|
+
export var CompareAgentVersions$ = [9, n1, _CAV,
|
|
1095
|
+
{ [_ht]: ["GET", "/v1/agents/agents/{agentId}/versions/compare", 200] }, () => CompareAgentVersionsInput$, () => CompareAgentVersionsOutput$
|
|
1096
|
+
];
|
|
1097
|
+
export var CreateAgent$ = [9, n1, _CA,
|
|
1098
|
+
{ [_ht]: ["POST", "/v1/agents/agents", 200] }, () => CreateAgentInput$, () => CreateAgentOutput$
|
|
1099
|
+
];
|
|
1100
|
+
export var CreateAgentApiKey$ = [9, n1, _CAAK,
|
|
1101
|
+
{ [_ht]: ["POST", "/v1/agents/agents/{agentId}/keys", 200] }, () => CreateAgentApiKeyInput$, () => CreateAgentApiKeyOutput$
|
|
1102
|
+
];
|
|
1103
|
+
export var CreateGuardrail$ = [9, n1, _CG,
|
|
1104
|
+
{ [_ht]: ["POST", "/v1/agents/guardrails", 200] }, () => CreateGuardrailInput$, () => CreateGuardrailOutput$
|
|
1105
|
+
];
|
|
1106
|
+
export var DeleteAgent$ = [9, n1, _DA,
|
|
1107
|
+
{ [_ht]: ["DELETE", "/v1/agents/agents/{agentId}", 200] }, () => DeleteAgentInput$, () => DeleteAgentOutput$
|
|
1108
|
+
];
|
|
1109
|
+
export var DeleteAgentAlias$ = [9, n1, _DAA,
|
|
1110
|
+
{ [_ht]: ["DELETE", "/v1/agents/agents/{agentId}/aliases/{aliasName}", 200] }, () => DeleteAgentAliasInput$, () => DeleteAgentAliasOutput$
|
|
1111
|
+
];
|
|
1112
|
+
export var DeleteAgentApiKey$ = [9, n1, _DAAK,
|
|
1113
|
+
{ [_ht]: ["DELETE", "/v1/agents/agents/{agentId}/keys/{keyId}", 200] }, () => DeleteAgentApiKeyInput$, () => DeleteAgentApiKeyOutput$
|
|
1114
|
+
];
|
|
1115
|
+
export var DeleteGuardrail$ = [9, n1, _DG,
|
|
1116
|
+
{ [_ht]: ["DELETE", "/v1/agents/guardrails/{guardrailId}", 200] }, () => DeleteGuardrailInput$, () => DeleteGuardrailOutput$
|
|
1117
|
+
];
|
|
1118
|
+
export var ExecuteAgent$ = [9, n1, _EA,
|
|
1119
|
+
{ [_ht]: ["POST", "/v1/agents/agents/{agentId}/execute", 200] }, () => ExecuteAgentInput$, () => ExecuteAgentOutput$
|
|
1120
|
+
];
|
|
1121
|
+
export var GetAgent$ = [9, n1, _GA,
|
|
1122
|
+
{ [_ht]: ["GET", "/v1/agents/agents/{agentId}", 200] }, () => GetAgentInput$, () => GetAgentOutput$
|
|
1123
|
+
];
|
|
1124
|
+
export var GetAgentVersion$ = [9, n1, _GAV,
|
|
1125
|
+
{ [_ht]: ["GET", "/v1/agents/agents/{agentId}/versions/{version}", 200] }, () => GetAgentVersionInput$, () => GetAgentVersionOutput$
|
|
1126
|
+
];
|
|
1127
|
+
export var GetGuardrail$ = [9, n1, _GG,
|
|
1128
|
+
{ [_ht]: ["GET", "/v1/agents/guardrails/{guardrailId}", 200] }, () => GetGuardrailInput$, () => GetGuardrailOutput$
|
|
1129
|
+
];
|
|
1130
|
+
export var ListAgentAliases$ = [9, n1, _LAA,
|
|
1131
|
+
{ [_ht]: ["GET", "/v1/agents/agents/{agentId}/aliases", 200] }, () => ListAgentAliasesInput$, () => ListAgentAliasesOutput$
|
|
1132
|
+
];
|
|
1133
|
+
export var ListAgentApiKeys$ = [9, n1, _LAAK,
|
|
1134
|
+
{ [_ht]: ["GET", "/v1/agents/agents/{agentId}/keys", 200] }, () => ListAgentApiKeysInput$, () => ListAgentApiKeysOutput$
|
|
1135
|
+
];
|
|
1136
|
+
export var ListAgents$ = [9, n1, _LA,
|
|
1137
|
+
{ [_ht]: ["GET", "/v1/agents/agents", 200] }, () => ListAgentsInput$, () => ListAgentsOutput$
|
|
1138
|
+
];
|
|
1139
|
+
export var ListAgentsNames$ = [9, n1, _LAN,
|
|
1140
|
+
{ [_ht]: ["GET", "/v1/agents/agents-names", 200] }, () => ListAgentsNamesInput$, () => ListAgentsNamesOutput$
|
|
1141
|
+
];
|
|
1142
|
+
export var ListAgentVersions$ = [9, n1, _LAV,
|
|
1143
|
+
{ [_ht]: ["GET", "/v1/agents/agents/{agentId}/versions", 200] }, () => ListAgentVersionsInput$, () => ListAgentVersionsOutput$
|
|
1144
|
+
];
|
|
1145
|
+
export var ListAuditRecords$ = [9, n1, _LAR,
|
|
1146
|
+
{ [_ht]: ["GET", "/v1/agents/audit", 200] }, () => ListAuditRecordsInput$, () => ListAuditRecordsOutput$
|
|
1147
|
+
];
|
|
1148
|
+
export var ListGuardrails$ = [9, n1, _LG,
|
|
1149
|
+
{ [_ht]: ["GET", "/v1/agents/guardrails", 200] }, () => ListGuardrailsInput$, () => ListGuardrailsOutput$
|
|
1150
|
+
];
|
|
1151
|
+
export var PublishAgentVersion$ = [9, n1, _PAV,
|
|
1152
|
+
{ [_ht]: ["POST", "/v1/agents/agents/{agentId}/versions", 200] }, () => PublishAgentVersionInput$, () => PublishAgentVersionOutput$
|
|
1153
|
+
];
|
|
1154
|
+
export var PutAgentAlias$ = [9, n1, _PAA,
|
|
1155
|
+
{ [_ht]: ["PUT", "/v1/agents/agents/{agentId}/aliases/{aliasName}", 200] }, () => PutAgentAliasInput$, () => PutAgentAliasOutput$
|
|
1156
|
+
];
|
|
1157
|
+
export var UpdateAgent$ = [9, n1, _UA,
|
|
1158
|
+
{ [_ht]: ["PUT", "/v1/agents/agents/{agentId}", 200] }, () => UpdateAgentInput$, () => UpdateAgentOutput$
|
|
1159
|
+
];
|
|
1160
|
+
export var UpdateGuardrail$ = [9, n1, _UG,
|
|
1161
|
+
{ [_ht]: ["PUT", "/v1/agents/guardrails/{guardrailId}", 200] }, () => UpdateGuardrailInput$, () => UpdateGuardrailOutput$
|
|
1162
|
+
];
|