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