@wildix/wilma-agents-client 1.0.1 → 1.0.2
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 +358 -539
- 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 +356 -536
- 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 +451 -324
- 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 +237 -170
- package/dist-types/commands/GetAgentDeploymentCommand.d.ts +106 -0
- package/dist-types/commands/GetAgentVersionCommand.d.ts +219 -158
- 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 +8 -7
- package/dist-types/commands/ListAgentsCommand.d.ts +241 -174
- package/dist-types/commands/ListAgentsNamesCommand.d.ts +6 -8
- package/dist-types/commands/PublishAgentVersionCommand.d.ts +221 -159
- package/dist-types/commands/RestoreAgentVersionToDraftCommand.d.ts +460 -0
- package/dist-types/commands/UpdateAgentCommand.d.ts +451 -324
- 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 +695 -741
- package/dist-types/schemas/schemas_0.d.ts +41 -61
- package/package.json +2 -2
- 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,174 @@ 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 _seq = "sequence";
|
|
259
|
+
const _ser = "service";
|
|
260
|
+
const _si = "silent";
|
|
319
261
|
const _sk = "skills";
|
|
320
262
|
const _sn = "snapshot";
|
|
321
|
-
const _sp = "speed";
|
|
322
263
|
const _sq = "sqs";
|
|
323
264
|
const _st = "status";
|
|
324
265
|
const _su = "suggestions";
|
|
325
|
-
const _sy = "synthesis";
|
|
326
266
|
const _t = "type";
|
|
327
|
-
const
|
|
328
|
-
const _tP = "topicPolicy";
|
|
267
|
+
const _tD = "toDraft";
|
|
329
268
|
const _tZ = "timeZone";
|
|
330
|
-
const _ta = "
|
|
269
|
+
const _ta = "tag";
|
|
331
270
|
const _ti = "timeout";
|
|
332
|
-
const _tim = "
|
|
333
|
-
const _time = "
|
|
334
|
-
const _timez = "timezone";
|
|
271
|
+
const _tim = "time";
|
|
272
|
+
const _time = "timezone";
|
|
335
273
|
const _to = "to";
|
|
336
|
-
const _tok = "token";
|
|
337
274
|
const _too = "tool";
|
|
338
|
-
const _top = "topics";
|
|
339
275
|
const _tr = "transfer";
|
|
340
276
|
const _u = "url";
|
|
341
277
|
const _uA = "updatedAt";
|
|
342
278
|
const _uB = "updatedBy";
|
|
343
279
|
const _uI = "userId";
|
|
344
280
|
const _uL = "userLocation";
|
|
345
|
-
const _us = "user";
|
|
346
|
-
const _use = "username";
|
|
347
281
|
const _v = "visibility";
|
|
348
|
-
const _vI = "voiceId";
|
|
349
282
|
const _va = "variables";
|
|
350
283
|
const _val = "value";
|
|
284
|
+
const _var = "variant";
|
|
351
285
|
const _vc = "vcpus";
|
|
352
286
|
const _ve = "version";
|
|
353
287
|
const _ver = "versions";
|
|
354
288
|
const _verc = "vercel";
|
|
355
289
|
const _vo = "voice";
|
|
356
|
-
const _w = "
|
|
290
|
+
const _w = "wait";
|
|
357
291
|
const _wF = "webFetch";
|
|
358
|
-
const _wM = "welcomeMessage";
|
|
359
|
-
const _wP = "wordPolicy";
|
|
360
292
|
const _wS = "webSearch";
|
|
361
293
|
const _we = "webhook";
|
|
362
294
|
const n0 = "smithy.framework";
|
|
363
295
|
const n1 = "wildix.wilma.agents";
|
|
364
|
-
const n2 = "wildix.wilma.
|
|
296
|
+
const n2 = "wildix.wilma.common";
|
|
297
|
+
const n3 = "wildix.wilma.skills";
|
|
365
298
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
366
|
-
import {
|
|
299
|
+
import { AgentApiKeyNotFoundException, AgentDeploymentInUseException, AgentDeploymentNonUniqueNameException, AgentDeploymentNotFoundException, AgentInUseException, AgentNonUniqueNameException, AgentNotFoundException, AgentVersionNotFoundException, NothingToPublishException, RevisionConflictException, ValidationException, } from "../models/errors";
|
|
367
300
|
import { WilmaAgentsServiceException } from "../models/WilmaAgentsServiceException";
|
|
368
301
|
const _s_registry = TypeRegistry.for(_s);
|
|
369
302
|
export var WilmaAgentsServiceException$ = [-3, _s, "WilmaAgentsServiceException", 0, [], []];
|
|
370
303
|
_s_registry.registerError(WilmaAgentsServiceException$, WilmaAgentsServiceException);
|
|
371
304
|
const n0_registry = TypeRegistry.for(n0);
|
|
372
305
|
const n1_registry = TypeRegistry.for(n1);
|
|
306
|
+
const n2_registry = TypeRegistry.for(n2);
|
|
373
307
|
export var ValidationException$ = [-3, n0, _VE,
|
|
374
308
|
{ [_e]: _c, [_hE]: 400 },
|
|
375
309
|
[_m],
|
|
376
310
|
[0], 1
|
|
377
311
|
];
|
|
378
312
|
n0_registry.registerError(ValidationException$, ValidationException);
|
|
379
|
-
export var
|
|
313
|
+
export var AgentApiKeyNotFoundException$ = [-3, n1, _AAKNFE,
|
|
380
314
|
{ [_e]: _c, [_hE]: 404 },
|
|
381
315
|
[_m, _t],
|
|
382
316
|
[0, 0], 1
|
|
383
317
|
];
|
|
384
|
-
n1_registry.registerError(
|
|
385
|
-
export var
|
|
386
|
-
{ [_e]: _c, [_hE]:
|
|
318
|
+
n1_registry.registerError(AgentApiKeyNotFoundException$, AgentApiKeyNotFoundException);
|
|
319
|
+
export var AgentDeploymentInUseException$ = [-3, n1, _ADIUE,
|
|
320
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
387
321
|
[_m, _t],
|
|
388
322
|
[0, 0], 1
|
|
389
323
|
];
|
|
390
|
-
n1_registry.registerError(
|
|
391
|
-
export var
|
|
324
|
+
n1_registry.registerError(AgentDeploymentInUseException$, AgentDeploymentInUseException);
|
|
325
|
+
export var AgentDeploymentNonUniqueNameException$ = [-3, n1, _ADNUNE,
|
|
392
326
|
{ [_e]: _c, [_hE]: 409 },
|
|
393
327
|
[_m, _t],
|
|
394
328
|
[0, 0], 1
|
|
395
329
|
];
|
|
396
|
-
n1_registry.registerError(
|
|
397
|
-
export var
|
|
330
|
+
n1_registry.registerError(AgentDeploymentNonUniqueNameException$, AgentDeploymentNonUniqueNameException);
|
|
331
|
+
export var AgentDeploymentNotFoundException$ = [-3, n1, _ADNFE,
|
|
398
332
|
{ [_e]: _c, [_hE]: 404 },
|
|
399
333
|
[_m, _t],
|
|
400
334
|
[0, 0], 1
|
|
401
335
|
];
|
|
402
|
-
n1_registry.registerError(
|
|
403
|
-
export var
|
|
404
|
-
{ [_e]: _c, [_hE]:
|
|
336
|
+
n1_registry.registerError(AgentDeploymentNotFoundException$, AgentDeploymentNotFoundException);
|
|
337
|
+
export var AgentInUseException$ = [-3, n1, _AIUE,
|
|
338
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
405
339
|
[_m, _t],
|
|
406
340
|
[0, 0], 1
|
|
407
341
|
];
|
|
408
|
-
n1_registry.registerError(
|
|
409
|
-
export var
|
|
342
|
+
n1_registry.registerError(AgentInUseException$, AgentInUseException);
|
|
343
|
+
export var AgentNonUniqueNameException$ = [-3, n1, _ANUNE,
|
|
410
344
|
{ [_e]: _c, [_hE]: 409 },
|
|
411
345
|
[_m, _t],
|
|
412
346
|
[0, 0], 1
|
|
413
347
|
];
|
|
414
|
-
n1_registry.registerError(
|
|
415
|
-
export var
|
|
348
|
+
n1_registry.registerError(AgentNonUniqueNameException$, AgentNonUniqueNameException);
|
|
349
|
+
export var AgentNotFoundException$ = [-3, n1, _ANFE,
|
|
350
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
351
|
+
[_m, _t],
|
|
352
|
+
[0, 0], 1
|
|
353
|
+
];
|
|
354
|
+
n1_registry.registerError(AgentNotFoundException$, AgentNotFoundException);
|
|
355
|
+
export var AgentVersionNotFoundException$ = [-3, n1, _AVNFE,
|
|
416
356
|
{ [_e]: _c, [_hE]: 404 },
|
|
417
357
|
[_m, _t],
|
|
418
358
|
[0, 0], 1
|
|
419
359
|
];
|
|
420
|
-
n1_registry.registerError(
|
|
421
|
-
export var NothingToPublishException$ = [-3,
|
|
360
|
+
n1_registry.registerError(AgentVersionNotFoundException$, AgentVersionNotFoundException);
|
|
361
|
+
export var NothingToPublishException$ = [-3, n2, _NTPE,
|
|
422
362
|
{ [_e]: _c, [_hE]: 409 },
|
|
423
363
|
[_m, _t],
|
|
424
364
|
[0, 0], 1
|
|
425
365
|
];
|
|
426
|
-
|
|
427
|
-
export var RevisionConflictException$ = [-3,
|
|
366
|
+
n2_registry.registerError(NothingToPublishException$, NothingToPublishException);
|
|
367
|
+
export var RevisionConflictException$ = [-3, n2, _RCE,
|
|
428
368
|
{ [_e]: _c, [_hE]: 409 },
|
|
429
369
|
[_m, _t, _cR],
|
|
430
370
|
[0, 0, 1], 1
|
|
431
371
|
];
|
|
432
|
-
|
|
372
|
+
n2_registry.registerError(RevisionConflictException$, RevisionConflictException);
|
|
433
373
|
export const errorTypeRegistries = [
|
|
434
374
|
_s_registry,
|
|
435
375
|
n0_registry,
|
|
436
376
|
n1_registry,
|
|
377
|
+
n2_registry,
|
|
437
378
|
];
|
|
438
|
-
export var
|
|
379
|
+
export var Agent$ = [3, n1, _A,
|
|
439
380
|
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
|
|
381
|
+
[_n, _ch, _en, _cA, _cB, _i, _st, _r, _d, _ca, _p, _se, _a, _uA, _uB, _lV, _dBV, _de],
|
|
382
|
+
[0, () => AgentChannels$, () => AgentEngine$, 0, () => Actor$, 0, 0, 1, 0, 0, 0, () => AgentSettings$, () => AgentAccess$, 0, () => Actor$, 0, 0, () => AgentDeploymentsList], 8
|
|
447
383
|
];
|
|
448
384
|
export var AgentAccess$ = [3, n1, _AA,
|
|
449
385
|
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
|
|
386
|
+
[_v, _g],
|
|
387
|
+
[0, () => AgentGrantPrincipalList]
|
|
457
388
|
];
|
|
458
|
-
export var
|
|
389
|
+
export var AgentAiEngine$ = [3, n1, _AAE,
|
|
459
390
|
0,
|
|
460
|
-
[
|
|
461
|
-
[
|
|
391
|
+
[_in, _mo, _sk, _cap, _va],
|
|
392
|
+
[0, 0, () => AgentSkillsList, () => AgentCapabilitiesList, () => AgentVariablesList], 1
|
|
462
393
|
];
|
|
463
394
|
export var AgentApiKey$ = [3, n1, _AAK,
|
|
464
395
|
0,
|
|
@@ -467,88 +398,113 @@ export var AgentApiKey$ = [3, n1, _AAK,
|
|
|
467
398
|
];
|
|
468
399
|
export var AgentCallCapability$ = [3, n1, _ACC,
|
|
469
400
|
0,
|
|
470
|
-
[_aI, _va],
|
|
471
|
-
[0, () => AgentToolVariablesList], 1
|
|
401
|
+
[_aI, _aV, _aD, _a, _va],
|
|
402
|
+
[0, 0, 0, () => AgentAccess$, () => AgentToolVariablesList], 1
|
|
472
403
|
];
|
|
473
404
|
export var AgentChannels$ = [3, n1, _AC,
|
|
474
405
|
0,
|
|
475
|
-
[
|
|
476
|
-
[() =>
|
|
406
|
+
[_vo, _cha, _as, _au],
|
|
407
|
+
[() => VoiceChannelSettings$, () => ChatChannelSettings$, () => AssistantChannelSettings$, () => AutonomousChannelSettings$]
|
|
477
408
|
];
|
|
478
409
|
export var AgentDefinitionSnapshot$ = [3, n1, _ADS,
|
|
479
410
|
0,
|
|
480
|
-
[_n, _en, _d, _ca, _p,
|
|
481
|
-
[0, () => AgentEngine$, 0, 0, 0, () =>
|
|
411
|
+
[_n, _ch, _en, _d, _ca, _p, _se, _a],
|
|
412
|
+
[0, () => AgentChannels$, () => AgentEngine$, 0, 0, 0, () => AgentSettings$, () => AgentAccess$], 3
|
|
482
413
|
];
|
|
483
414
|
export var AgentDelegationCapability$ = [3, n1, _ADC,
|
|
484
415
|
0,
|
|
485
|
-
[
|
|
486
|
-
[
|
|
416
|
+
[_i, _n, _d, _aV, _aD, _an],
|
|
417
|
+
[0, 0, 0, 0, 0, () => AgentToolAnnotationsList], 1
|
|
487
418
|
];
|
|
488
|
-
export var
|
|
419
|
+
export var AgentDeployment$ = [3, n1, _AD,
|
|
489
420
|
0,
|
|
490
|
-
[
|
|
491
|
-
[0, 0],
|
|
421
|
+
[_cA, _cB, _aI, _n, _st, _ro, _r, _uA, _uB, _d],
|
|
422
|
+
[0, () => Actor$, 0, 0, 0, () => AgentDeploymentRoutesList, 1, 0, () => Actor$, 0], 7
|
|
492
423
|
];
|
|
493
|
-
export var
|
|
424
|
+
export var AgentDeploymentRoute$ = [3, n1, _ADR,
|
|
494
425
|
0,
|
|
495
|
-
[
|
|
496
|
-
[
|
|
426
|
+
[_ve, _pe],
|
|
427
|
+
[0, 1], 2
|
|
497
428
|
];
|
|
498
|
-
export var
|
|
429
|
+
export var AgentHandoverCapability$ = [3, n1, _AHC,
|
|
499
430
|
0,
|
|
500
|
-
[_n, _d,
|
|
501
|
-
[0, 0,
|
|
431
|
+
[_n, _d, _var, _ag, _aV, _aD, _ser, _si, _pi, _an],
|
|
432
|
+
[0, 0, 0, 0, 0, 0, 0, 2, () => AgentHandoverPipeline$, () => AgentToolAnnotationsList]
|
|
502
433
|
];
|
|
503
|
-
export var
|
|
434
|
+
export var AgentHandoverPipeline$ = [3, n1, _AHP,
|
|
504
435
|
0,
|
|
505
|
-
[
|
|
506
|
-
[0,
|
|
436
|
+
[_t, _in],
|
|
437
|
+
[0, 0]
|
|
507
438
|
];
|
|
508
|
-
export var
|
|
439
|
+
export var AgentHangupCapability$ = [3, n1, _AHCg,
|
|
509
440
|
0,
|
|
510
|
-
[
|
|
441
|
+
[_n, _d, _pi, _an],
|
|
442
|
+
[0, 0, () => AgentHangupPipeline$, () => AgentToolAnnotationsList]
|
|
443
|
+
];
|
|
444
|
+
export var AgentHangupPipeline$ = [3, n1, _AHPg,
|
|
445
|
+
0,
|
|
446
|
+
[_t, _in],
|
|
511
447
|
[0, 0]
|
|
512
448
|
];
|
|
513
449
|
export var AgentInfo$ = [3, n1, _AI,
|
|
514
450
|
0,
|
|
515
|
-
[_i, _n, _st,
|
|
516
|
-
[0, 0, 0,
|
|
451
|
+
[_i, _n, _st, _ch, _ca, _lV],
|
|
452
|
+
[0, 0, 0, 64 | 0, 0, 0], 4
|
|
517
453
|
];
|
|
518
454
|
export var AgentKnowledgeBase$ = [3, n1, _AKB,
|
|
519
455
|
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
|
|
456
|
+
[_kBI, _in, _an],
|
|
457
|
+
[0, 0, () => AgentToolAnnotationsList]
|
|
527
458
|
];
|
|
528
|
-
export var
|
|
459
|
+
export var AgentSettings$ = [3, n1, _AS,
|
|
529
460
|
0,
|
|
530
|
-
[
|
|
531
|
-
[0
|
|
461
|
+
[_pGI],
|
|
462
|
+
[0]
|
|
532
463
|
];
|
|
533
464
|
export var AgentSnapshotSandboxOptions$ = [3, n1, _ASSO,
|
|
534
465
|
0,
|
|
535
|
-
[_sI, _ne,
|
|
466
|
+
[_sI, _ne, _aDl, _vc],
|
|
536
467
|
[0, 0, 64 | 0, 1], 1
|
|
537
468
|
];
|
|
538
469
|
export var AgentSqsEngine$ = [3, n1, _ASE,
|
|
539
470
|
0,
|
|
540
|
-
[_u, _k,
|
|
471
|
+
[_u, _k, _sec],
|
|
541
472
|
[0, 0, 0], 3
|
|
542
473
|
];
|
|
543
474
|
export var AgentSuggestionsCapability$ = [3, n1, _ASC,
|
|
475
|
+
0,
|
|
476
|
+
[_n, _an],
|
|
477
|
+
[0, () => AgentToolAnnotationsList]
|
|
478
|
+
];
|
|
479
|
+
export var AgentTool$ = [3, n1, _AT,
|
|
480
|
+
0,
|
|
481
|
+
[_i, _va, _sM, _pi, _ap, _an],
|
|
482
|
+
[0, () => AgentToolVariablesList, 0, () => AgentToolPipeline$, () => AgentToolApproval$, () => AgentToolAnnotationsList], 1
|
|
483
|
+
];
|
|
484
|
+
export var AgentToolApproval$ = [3, n1, _ATA,
|
|
485
|
+
0,
|
|
486
|
+
[_pro],
|
|
487
|
+
[0]
|
|
488
|
+
];
|
|
489
|
+
export var AgentToolCommentAnnotation$ = [3, n1, _ATCA,
|
|
490
|
+
0,
|
|
491
|
+
[_val, _aOS, _aOF],
|
|
492
|
+
[0, 2, 2]
|
|
493
|
+
];
|
|
494
|
+
export var AgentToolPipeline$ = [3, n1, _ATP,
|
|
495
|
+
0,
|
|
496
|
+
[_t, _in],
|
|
497
|
+
[0, 0]
|
|
498
|
+
];
|
|
499
|
+
export var AgentToolResultAnnotation$ = [3, n1, _ATRA,
|
|
544
500
|
0,
|
|
545
501
|
[],
|
|
546
502
|
[]
|
|
547
503
|
];
|
|
548
|
-
export var
|
|
504
|
+
export var AgentToolTagAnnotation$ = [3, n1, _ATTA,
|
|
549
505
|
0,
|
|
550
|
-
[
|
|
551
|
-
[0,
|
|
506
|
+
[_val, _aOS, _aOF],
|
|
507
|
+
[0, 2, 2]
|
|
552
508
|
];
|
|
553
509
|
export var AgentToolVariable$ = [3, n1, _ATV,
|
|
554
510
|
0,
|
|
@@ -567,78 +523,88 @@ export var AgentToolVariableGuidedHandler$ = [3, n1, _ATVGH,
|
|
|
567
523
|
];
|
|
568
524
|
export var AgentToolVariablePredefinedHandler$ = [3, n1, _ATVPH,
|
|
569
525
|
0,
|
|
570
|
-
[
|
|
526
|
+
[_val],
|
|
571
527
|
[0], 1
|
|
572
528
|
];
|
|
529
|
+
export var AgentToolVariablesAnnotation$ = [3, n1, _ATVA,
|
|
530
|
+
0,
|
|
531
|
+
[],
|
|
532
|
+
[]
|
|
533
|
+
];
|
|
573
534
|
export var AgentTransferCapability$ = [3, n1, _ATC,
|
|
574
535
|
0,
|
|
575
|
-
[
|
|
576
|
-
[() =>
|
|
536
|
+
[_n, _d, _var, _co, _ex, _pi, _an],
|
|
537
|
+
[0, 0, 0, 0, 0, () => AgentTransferPipeline$, () => AgentToolAnnotationsList]
|
|
538
|
+
];
|
|
539
|
+
export var AgentTransferPipeline$ = [3, n1, _ATPg,
|
|
540
|
+
0,
|
|
541
|
+
[_t, _in],
|
|
542
|
+
[0, 0]
|
|
577
543
|
];
|
|
578
544
|
export var AgentVariable$ = [3, n1, _AV,
|
|
579
545
|
0,
|
|
580
|
-
[_n, _t,
|
|
546
|
+
[_n, _t, _o, _d],
|
|
581
547
|
[0, 0, 2, 0], 3
|
|
582
548
|
];
|
|
583
549
|
export var AgentVercelSandboxOptions$ = [3, n1, _AVSO,
|
|
584
550
|
0,
|
|
585
|
-
[_vc, _ne,
|
|
551
|
+
[_vc, _ne, _aDl],
|
|
586
552
|
[1, 0, 64 | 0]
|
|
587
553
|
];
|
|
588
554
|
export var AgentVersion$ = [3, n1, _AVg,
|
|
589
555
|
0,
|
|
590
|
-
[_aI, _ve,
|
|
591
|
-
[0, 1, () => AgentDefinitionSnapshot$, 0, () => Actor$, 0],
|
|
556
|
+
[_aI, _ve, _seq, _def, _pA, _pB, _bOV, _n, _chan],
|
|
557
|
+
[0, 0, 1, () => AgentDefinitionSnapshot$, 0, () => Actor$, 0, 0, 0], 6
|
|
592
558
|
];
|
|
593
559
|
export var AgentVersionChange$ = [3, n1, _AVC,
|
|
594
560
|
0,
|
|
595
|
-
[
|
|
561
|
+
[_pa, _b, _af],
|
|
596
562
|
[0, 15, 15], 1
|
|
597
563
|
];
|
|
598
564
|
export var AgentVersionInfo$ = [3, n1, _AVI,
|
|
599
565
|
0,
|
|
600
|
-
[_aI, _ve, _pA, _pB, _chan,
|
|
601
|
-
[0, 1, 0, () => Actor$, 0, 64 | 0],
|
|
566
|
+
[_aI, _ve, _seq, _pA, _pB, _bOV, _n, _chan, _de],
|
|
567
|
+
[0, 0, 1, 0, () => Actor$, 0, 0, 0, 64 | 0], 5
|
|
568
|
+
];
|
|
569
|
+
export var AgentWaitCapability$ = [3, n1, _AWC,
|
|
570
|
+
0,
|
|
571
|
+
[_n, _d, _m, _an],
|
|
572
|
+
[0, 0, 0, () => AgentToolAnnotationsList]
|
|
602
573
|
];
|
|
603
574
|
export var AgentWebFetchCapability$ = [3, n1, _AWFC,
|
|
604
575
|
0,
|
|
605
|
-
[
|
|
576
|
+
[_aDl],
|
|
606
577
|
[64 | 0]
|
|
607
578
|
];
|
|
608
579
|
export var AgentWebhookEngine$ = [3, n1, _AWE,
|
|
609
580
|
0,
|
|
610
|
-
[_u,
|
|
581
|
+
[_u, _sec, _ti],
|
|
611
582
|
[0, 0, 1], 2
|
|
612
583
|
];
|
|
613
584
|
export var AgentWebSearchCapability$ = [3, n1, _AWSC,
|
|
614
585
|
0,
|
|
615
|
-
[_cS,
|
|
586
|
+
[_cS, _aDl, _uL],
|
|
616
587
|
[0, 64 | 0, () => WebSearchUserLocation$]
|
|
617
588
|
];
|
|
618
|
-
export var
|
|
619
|
-
0,
|
|
620
|
-
[_ena],
|
|
621
|
-
[2], 1
|
|
622
|
-
];
|
|
623
|
-
export var AssistantChannelSettings$ = [3, n1, _ACSs,
|
|
589
|
+
export var AssistantChannelSettings$ = [3, n1, _ACS,
|
|
624
590
|
0,
|
|
625
|
-
[
|
|
626
|
-
[2
|
|
591
|
+
[_defa],
|
|
592
|
+
[2]
|
|
627
593
|
];
|
|
628
|
-
export var
|
|
594
|
+
export var AutonomousChannelSettings$ = [3, n1, _ACSu,
|
|
629
595
|
0,
|
|
630
|
-
[
|
|
631
|
-
[
|
|
596
|
+
[],
|
|
597
|
+
[]
|
|
632
598
|
];
|
|
633
599
|
export var ChatChannelSettings$ = [3, n1, _CCS,
|
|
634
600
|
0,
|
|
635
|
-
[
|
|
636
|
-
[2
|
|
601
|
+
[_di],
|
|
602
|
+
[2]
|
|
637
603
|
];
|
|
638
604
|
export var CompareAgentVersionsInput$ = [3, n1, _CAVI,
|
|
639
605
|
0,
|
|
640
|
-
[_aI,
|
|
641
|
-
[[0, 1], [
|
|
606
|
+
[_aI, _com, _f, _fD, _to, _tD],
|
|
607
|
+
[[0, 1], [0, { [_hQ]: _com }], [0, { [_hQ]: _f }], [2, { [_hQ]: _fD }], [0, { [_hQ]: _to }], [2, { [_hQ]: _tD }]], 1
|
|
642
608
|
];
|
|
643
609
|
export var CompareAgentVersionsOutput$ = [3, n1, _CAVO,
|
|
644
610
|
0,
|
|
@@ -652,45 +618,45 @@ export var CreateAgentApiKeyInput$ = [3, n1, _CAAKI,
|
|
|
652
618
|
];
|
|
653
619
|
export var CreateAgentApiKeyOutput$ = [3, n1, _CAAKO,
|
|
654
620
|
0,
|
|
655
|
-
[_k,
|
|
621
|
+
[_k, _sec],
|
|
656
622
|
[() => AgentApiKey$, 0], 2
|
|
657
623
|
];
|
|
658
|
-
export var
|
|
624
|
+
export var CreateAgentDeploymentInput$ = [3, n1, _CADI,
|
|
659
625
|
0,
|
|
660
|
-
[
|
|
661
|
-
[0,
|
|
626
|
+
[_aI, _n, _st, _ro, _com, _d],
|
|
627
|
+
[[0, 1], 0, 0, () => AgentDeploymentRoutesList, [0, { [_hQ]: _com }], 0], 4
|
|
662
628
|
];
|
|
663
|
-
export var
|
|
629
|
+
export var CreateAgentDeploymentOutput$ = [3, n1, _CADO,
|
|
664
630
|
0,
|
|
665
|
-
[
|
|
666
|
-
[() =>
|
|
631
|
+
[_dep],
|
|
632
|
+
[() => AgentDeployment$], 1
|
|
667
633
|
];
|
|
668
|
-
export var
|
|
634
|
+
export var CreateAgentInput$ = [3, n1, _CAI,
|
|
669
635
|
0,
|
|
670
|
-
[_n,
|
|
671
|
-
[0,
|
|
636
|
+
[_n, _ch, _en, _d, _ca, _p, _se, _a, _com],
|
|
637
|
+
[0, () => AgentChannels$, () => AgentEngine$, 0, 0, 0, () => AgentSettings$, () => AgentAccess$, [0, { [_hQ]: _com }]], 3
|
|
672
638
|
];
|
|
673
|
-
export var
|
|
639
|
+
export var CreateAgentOutput$ = [3, n1, _CAO,
|
|
674
640
|
0,
|
|
675
|
-
[
|
|
676
|
-
[() =>
|
|
641
|
+
[_ag],
|
|
642
|
+
[() => Agent$], 1
|
|
677
643
|
];
|
|
678
|
-
export var
|
|
644
|
+
export var DeleteAgentApiKeyInput$ = [3, n1, _DAAKI,
|
|
679
645
|
0,
|
|
680
|
-
[_aI,
|
|
646
|
+
[_aI, _kI, _com],
|
|
681
647
|
[[0, 1], [0, 1], [0, { [_hQ]: _com }]], 2
|
|
682
648
|
];
|
|
683
|
-
export var
|
|
649
|
+
export var DeleteAgentApiKeyOutput$ = [3, n1, _DAAKO,
|
|
684
650
|
0,
|
|
685
651
|
[],
|
|
686
652
|
[]
|
|
687
653
|
];
|
|
688
|
-
export var
|
|
654
|
+
export var DeleteAgentDeploymentInput$ = [3, n1, _DADI,
|
|
689
655
|
0,
|
|
690
|
-
[_aI,
|
|
656
|
+
[_aI, _dN, _com],
|
|
691
657
|
[[0, 1], [0, 1], [0, { [_hQ]: _com }]], 2
|
|
692
658
|
];
|
|
693
|
-
export var
|
|
659
|
+
export var DeleteAgentDeploymentOutput$ = [3, n1, _DADO,
|
|
694
660
|
0,
|
|
695
661
|
[],
|
|
696
662
|
[]
|
|
@@ -705,30 +671,15 @@ export var DeleteAgentOutput$ = [3, n1, _DAO,
|
|
|
705
671
|
[],
|
|
706
672
|
[]
|
|
707
673
|
];
|
|
708
|
-
export var
|
|
709
|
-
0,
|
|
710
|
-
[_gI, _com],
|
|
711
|
-
[[0, 1], [0, { [_hQ]: _com }]], 1
|
|
712
|
-
];
|
|
713
|
-
export var DeleteGuardrailOutput$ = [3, n1, _DGO,
|
|
674
|
+
export var GetAgentDeploymentInput$ = [3, n1, _GADI,
|
|
714
675
|
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
|
|
676
|
+
[_aI, _dN, _com],
|
|
677
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _com }]], 2
|
|
727
678
|
];
|
|
728
|
-
export var
|
|
679
|
+
export var GetAgentDeploymentOutput$ = [3, n1, _GADO,
|
|
729
680
|
0,
|
|
730
|
-
[
|
|
731
|
-
[
|
|
681
|
+
[_dep],
|
|
682
|
+
[() => AgentDeployment$], 1
|
|
732
683
|
];
|
|
733
684
|
export var GetAgentInput$ = [3, n1, _GAI,
|
|
734
685
|
0,
|
|
@@ -737,93 +688,43 @@ export var GetAgentInput$ = [3, n1, _GAI,
|
|
|
737
688
|
];
|
|
738
689
|
export var GetAgentOutput$ = [3, n1, _GAO,
|
|
739
690
|
0,
|
|
740
|
-
[
|
|
691
|
+
[_ag],
|
|
741
692
|
[() => Agent$], 1
|
|
742
693
|
];
|
|
743
694
|
export var GetAgentVersionInput$ = [3, n1, _GAVI,
|
|
744
695
|
0,
|
|
745
696
|
[_aI, _ve, _com],
|
|
746
|
-
[[0, 1], [
|
|
697
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _com }]], 2
|
|
747
698
|
];
|
|
748
699
|
export var GetAgentVersionOutput$ = [3, n1, _GAVO,
|
|
749
700
|
0,
|
|
750
701
|
[_ve],
|
|
751
702
|
[() => AgentVersion$], 1
|
|
752
703
|
];
|
|
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,
|
|
704
|
+
export var ListAgentApiKeysInput$ = [3, n1, _LAAKI,
|
|
804
705
|
0,
|
|
805
706
|
[_aI, _com],
|
|
806
707
|
[[0, 1], [0, { [_hQ]: _com }]], 1
|
|
807
708
|
];
|
|
808
|
-
export var
|
|
709
|
+
export var ListAgentApiKeysOutput$ = [3, n1, _LAAKO,
|
|
809
710
|
0,
|
|
810
|
-
[
|
|
811
|
-
[() =>
|
|
711
|
+
[_ke],
|
|
712
|
+
[() => AgentApiKeysList], 1
|
|
812
713
|
];
|
|
813
|
-
export var
|
|
714
|
+
export var ListAgentDeploymentsInput$ = [3, n1, _LADI,
|
|
814
715
|
0,
|
|
815
716
|
[_aI, _com],
|
|
816
717
|
[[0, 1], [0, { [_hQ]: _com }]], 1
|
|
817
718
|
];
|
|
818
|
-
export var
|
|
719
|
+
export var ListAgentDeploymentsOutput$ = [3, n1, _LADO,
|
|
819
720
|
0,
|
|
820
|
-
[
|
|
821
|
-
[() =>
|
|
721
|
+
[_de],
|
|
722
|
+
[() => AgentDeploymentsList], 1
|
|
822
723
|
];
|
|
823
724
|
export var ListAgentsInput$ = [3, n1, _LAI,
|
|
824
725
|
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]:
|
|
726
|
+
[_com, _chann, _st, _sea, _l, _cu],
|
|
727
|
+
[[0, { [_hQ]: _com }], [0, { [_hQ]: _chann }], [0, { [_hQ]: _st }], [0, { [_hQ]: _sea }], [1, { [_hQ]: _l }], [0, { [_hQ]: _cu }]]
|
|
827
728
|
];
|
|
828
729
|
export var ListAgentsNamesInput$ = [3, n1, _LANI,
|
|
829
730
|
0,
|
|
@@ -832,93 +733,73 @@ export var ListAgentsNamesInput$ = [3, n1, _LANI,
|
|
|
832
733
|
];
|
|
833
734
|
export var ListAgentsNamesOutput$ = [3, n1, _LANO,
|
|
834
735
|
0,
|
|
835
|
-
[
|
|
736
|
+
[_age],
|
|
836
737
|
[() => AgentsInfoList], 1
|
|
837
738
|
];
|
|
838
739
|
export var ListAgentsOutput$ = [3, n1, _LAO,
|
|
839
740
|
0,
|
|
840
|
-
[
|
|
741
|
+
[_age, _nC],
|
|
841
742
|
[() => AgentsList, 0], 1
|
|
842
743
|
];
|
|
843
744
|
export var ListAgentVersionsInput$ = [3, n1, _LAVI,
|
|
844
745
|
0,
|
|
845
|
-
[_aI, _com, _l,
|
|
846
|
-
[[0, 1], [0, { [_hQ]: _com }], [1, { [_hQ]: _l }], [0, { [_hQ]:
|
|
746
|
+
[_aI, _com, _l, _cu],
|
|
747
|
+
[[0, 1], [0, { [_hQ]: _com }], [1, { [_hQ]: _l }], [0, { [_hQ]: _cu }]], 1
|
|
847
748
|
];
|
|
848
749
|
export var ListAgentVersionsOutput$ = [3, n1, _LAVO,
|
|
849
750
|
0,
|
|
850
|
-
[_ver,
|
|
751
|
+
[_ver, _nC],
|
|
851
752
|
[() => AgentVersionInfoList, 0], 1
|
|
852
753
|
];
|
|
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
754
|
export var PublishAgentVersionInput$ = [3, n1, _PAVI,
|
|
874
755
|
0,
|
|
875
|
-
[_aI, _com, _chan,
|
|
876
|
-
[[0, 1], [0, { [_hQ]: _com }], 0,
|
|
756
|
+
[_aI, _r, _com, _chan, _n],
|
|
757
|
+
[[0, 1], 1, [0, { [_hQ]: _com }], 0, 0], 2
|
|
877
758
|
];
|
|
878
759
|
export var PublishAgentVersionOutput$ = [3, n1, _PAVO,
|
|
879
760
|
0,
|
|
880
761
|
[_ve],
|
|
881
762
|
[() => AgentVersion$], 1
|
|
882
763
|
];
|
|
883
|
-
export var
|
|
764
|
+
export var RestoreAgentVersionToDraftInput$ = [3, n1, _RAVTDI,
|
|
884
765
|
0,
|
|
885
|
-
[_aI,
|
|
886
|
-
[[0, 1], [0, 1],
|
|
766
|
+
[_aI, _ve, _r, _com],
|
|
767
|
+
[[0, 1], [0, 1], 1, [0, { [_hQ]: _com }]], 3
|
|
887
768
|
];
|
|
888
|
-
export var
|
|
769
|
+
export var RestoreAgentVersionToDraftOutput$ = [3, n1, _RAVTDO,
|
|
889
770
|
0,
|
|
890
|
-
[
|
|
891
|
-
[() =>
|
|
771
|
+
[_ag],
|
|
772
|
+
[() => Agent$], 1
|
|
892
773
|
];
|
|
893
|
-
export var
|
|
774
|
+
export var UpdateAgentDeploymentInput$ = [3, n1, _UADI,
|
|
894
775
|
0,
|
|
895
|
-
[
|
|
896
|
-
[
|
|
776
|
+
[_aI, _dN, _st, _ro, _r, _com, _d],
|
|
777
|
+
[[0, 1], [0, 1], 0, () => AgentDeploymentRoutesList, 1, [0, { [_hQ]: _com }], 0], 5
|
|
897
778
|
];
|
|
898
|
-
export var
|
|
779
|
+
export var UpdateAgentDeploymentOutput$ = [3, n1, _UADO,
|
|
899
780
|
0,
|
|
900
|
-
[
|
|
901
|
-
[() =>
|
|
781
|
+
[_dep],
|
|
782
|
+
[() => AgentDeployment$], 1
|
|
902
783
|
];
|
|
903
|
-
export var
|
|
784
|
+
export var UpdateAgentInput$ = [3, n1, _UAI,
|
|
904
785
|
0,
|
|
905
|
-
[_n,
|
|
906
|
-
[0,
|
|
786
|
+
[_n, _ch, _en, _aI, _r, _d, _ca, _p, _se, _a, _com],
|
|
787
|
+
[0, () => AgentChannels$, () => AgentEngine$, [0, 1], 1, 0, 0, 0, () => AgentSettings$, () => AgentAccess$, [0, { [_hQ]: _com }]], 5
|
|
907
788
|
];
|
|
908
|
-
export var
|
|
789
|
+
export var UpdateAgentOutput$ = [3, n1, _UAO,
|
|
909
790
|
0,
|
|
910
|
-
[
|
|
911
|
-
[() =>
|
|
791
|
+
[_ag],
|
|
792
|
+
[() => Agent$], 1
|
|
912
793
|
];
|
|
913
794
|
export var VoiceCallerMetadataSettings$ = [3, n1, _VCMS,
|
|
914
795
|
0,
|
|
915
|
-
[_cN, _cNa, _cE, _cC,
|
|
796
|
+
[_cN, _cNa, _cE, _cC, _tim, _tZ],
|
|
916
797
|
[2, 2, 2, 2, 2, 0]
|
|
917
798
|
];
|
|
918
799
|
export var VoiceChannelSettings$ = [3, n1, _VCS,
|
|
919
800
|
0,
|
|
920
|
-
[
|
|
921
|
-
[
|
|
801
|
+
[_gr, _int, _sT, _mD, _eC, _cM],
|
|
802
|
+
[0, () => VoiceInterruptionSettings$, () => VoiceSilenceTimeoutSettings$, () => VoiceMaxDurationSettings$, () => VoiceEndCallSettings$, () => VoiceCallerMetadataSettings$]
|
|
922
803
|
];
|
|
923
804
|
export var VoiceEndCallSettings$ = [3, n1, _VECS,
|
|
924
805
|
0,
|
|
@@ -932,19 +813,14 @@ export var VoiceInterruptionSettings$ = [3, n1, _VIS,
|
|
|
932
813
|
];
|
|
933
814
|
export var VoiceMaxDurationSettings$ = [3, n1, _VMDS,
|
|
934
815
|
0,
|
|
935
|
-
[
|
|
816
|
+
[_seco, _ac],
|
|
936
817
|
[1, () => VoiceTerminateAction$], 2
|
|
937
818
|
];
|
|
938
819
|
export var VoiceSilenceTimeoutSettings$ = [3, n1, _VSTS,
|
|
939
820
|
0,
|
|
940
|
-
[
|
|
821
|
+
[_seco, _ac],
|
|
941
822
|
[1, () => VoiceTerminateAction$], 2
|
|
942
823
|
];
|
|
943
|
-
export var VoiceSynthesisSettings$ = [3, n1, _VSS,
|
|
944
|
-
0,
|
|
945
|
-
[_prov, _vI, _sp],
|
|
946
|
-
[0, 0, 1], 2
|
|
947
|
-
];
|
|
948
824
|
export var VoiceTerminateHangupAction$ = [3, n1, _VTHA,
|
|
949
825
|
0,
|
|
950
826
|
[_m],
|
|
@@ -952,44 +828,23 @@ export var VoiceTerminateHangupAction$ = [3, n1, _VTHA,
|
|
|
952
828
|
];
|
|
953
829
|
export var VoiceTransferTarget$ = [3, n1, _VTT,
|
|
954
830
|
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],
|
|
831
|
+
[_n, _co, _ex, _d],
|
|
971
832
|
[0, 0, 0, 0], 3
|
|
972
833
|
];
|
|
973
|
-
export var WebhookHeader$ = [3, n1, _WH,
|
|
974
|
-
0,
|
|
975
|
-
[_n, _val],
|
|
976
|
-
[0, 0], 2
|
|
977
|
-
];
|
|
978
834
|
export var WebSearchUserLocation$ = [3, n1, _WSUL,
|
|
979
835
|
0,
|
|
980
|
-
[_cou,
|
|
836
|
+
[_cou, _re, _ci, _time],
|
|
981
837
|
[0, 0, 0, 0]
|
|
982
838
|
];
|
|
983
|
-
export var
|
|
839
|
+
export var Actor$ = [3, n2, _Ac,
|
|
984
840
|
0,
|
|
985
|
-
[_i, _n
|
|
986
|
-
[0, 0, 0
|
|
987
|
-
];
|
|
988
|
-
var AgentAliasesList = [1, n1, _AAL,
|
|
989
|
-
0, () => AgentAlias$
|
|
841
|
+
[_t, _i, _n],
|
|
842
|
+
[0, 0, 0], 2
|
|
990
843
|
];
|
|
991
|
-
var
|
|
992
|
-
0,
|
|
844
|
+
export var AgentSkillReference$ = [3, n3, _ASR,
|
|
845
|
+
0,
|
|
846
|
+
[_i, _sV, _a],
|
|
847
|
+
[0, 0, () => AgentAccess$], 1
|
|
993
848
|
];
|
|
994
849
|
var AgentApiKeysList = [1, n1, _AAKL,
|
|
995
850
|
0, () => AgentApiKey$
|
|
@@ -997,16 +852,25 @@ var AgentApiKeysList = [1, n1, _AAKL,
|
|
|
997
852
|
var AgentCapabilitiesList = [1, n1, _ACL,
|
|
998
853
|
0, () => AgentCapability$
|
|
999
854
|
];
|
|
1000
|
-
var
|
|
1001
|
-
|
|
855
|
+
var AgentDeploymentNamesList = 64 | 0;
|
|
856
|
+
var AgentDeploymentRoutesList = [1, n1, _ADRL,
|
|
857
|
+
0, () => AgentDeploymentRoute$
|
|
858
|
+
];
|
|
859
|
+
var AgentDeploymentsList = [1, n1, _ADL,
|
|
860
|
+
0, () => AgentDeployment$
|
|
861
|
+
];
|
|
862
|
+
var AgentGrantPrincipalList = [1, n1, _AGPL,
|
|
863
|
+
0, () => AgentGrantPrincipal$
|
|
1002
864
|
];
|
|
1003
|
-
var AgentIdList = 64 | 0;
|
|
1004
865
|
var AgentsInfoList = [1, n1, _AIL,
|
|
1005
866
|
0, () => AgentInfo$
|
|
1006
867
|
];
|
|
1007
868
|
var AgentsList = [1, n1, _AL,
|
|
1008
869
|
0, () => Agent$
|
|
1009
870
|
];
|
|
871
|
+
var AgentToolAnnotationsList = [1, n1, _ATAL,
|
|
872
|
+
0, () => AgentToolAnnotation$
|
|
873
|
+
];
|
|
1010
874
|
var AgentToolVariablesList = [1, n1, _ATVL,
|
|
1011
875
|
0, () => AgentToolVariable$
|
|
1012
876
|
];
|
|
@@ -1019,51 +883,24 @@ var AgentVersionChangesList = [1, n1, _AVCL,
|
|
|
1019
883
|
var AgentVersionInfoList = [1, n1, _AVIL,
|
|
1020
884
|
0, () => AgentVersionInfo$
|
|
1021
885
|
];
|
|
1022
|
-
var AliasNamesList = 64 | 0;
|
|
1023
|
-
var AuditRecordsList = [1, n1, _ARL,
|
|
1024
|
-
0, () => AuditRecord$
|
|
1025
|
-
];
|
|
1026
886
|
var ChannelTypeList = 64 | 0;
|
|
1027
887
|
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$
|
|
888
|
+
var AgentSkillsList = [1, n3, _ASL,
|
|
889
|
+
0, () => AgentSkillReference$
|
|
1042
890
|
];
|
|
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
891
|
export var AgentCapability$ = [4, n1, _ACg,
|
|
1055
892
|
0,
|
|
1056
|
-
[_too,
|
|
1057
|
-
[() => AgentTool$, () =>
|
|
893
|
+
[_too, _kb, _sa, _wS, _wF, _ag, _ha, _del, _tr, _su, _han, _w],
|
|
894
|
+
[() => AgentTool$, () => AgentKnowledgeBase$, () => AgentSandboxCapability$, () => AgentWebSearchCapability$, () => AgentWebFetchCapability$, () => AgentCallCapability$, () => AgentHandoverCapability$, () => AgentDelegationCapability$, () => AgentTransferCapability$, () => AgentSuggestionsCapability$, () => AgentHangupCapability$, () => AgentWaitCapability$]
|
|
1058
895
|
];
|
|
1059
896
|
export var AgentEngine$ = [4, n1, _AE,
|
|
1060
897
|
0,
|
|
1061
|
-
[
|
|
1062
|
-
[() =>
|
|
898
|
+
[_ai, _we, _sq],
|
|
899
|
+
[() => AgentAiEngine$, () => AgentWebhookEngine$, () => AgentSqsEngine$]
|
|
1063
900
|
];
|
|
1064
901
|
export var AgentGrantPrincipal$ = [4, n1, _AGP,
|
|
1065
902
|
0,
|
|
1066
|
-
[_uI,
|
|
903
|
+
[_uI, _gI],
|
|
1067
904
|
[0, 0]
|
|
1068
905
|
];
|
|
1069
906
|
export var AgentSandboxCapability$ = [4, n1, _ASCg,
|
|
@@ -1071,26 +908,21 @@ export var AgentSandboxCapability$ = [4, n1, _ASCg,
|
|
|
1071
908
|
[_verc, _sn],
|
|
1072
909
|
[() => AgentVercelSandboxOptions$, () => AgentSnapshotSandboxOptions$]
|
|
1073
910
|
];
|
|
1074
|
-
export var
|
|
911
|
+
export var AgentToolAnnotation$ = [4, n1, _ATAg,
|
|
1075
912
|
0,
|
|
1076
|
-
[
|
|
1077
|
-
[() =>
|
|
913
|
+
[_ta, _comm, _va, _res],
|
|
914
|
+
[() => AgentToolTagAnnotation$, () => AgentToolCommentAnnotation$, () => AgentToolVariablesAnnotation$, () => AgentToolResultAnnotation$]
|
|
1078
915
|
];
|
|
1079
|
-
export var
|
|
916
|
+
export var AgentToolVariableHandler$ = [4, n1, _ATVH,
|
|
1080
917
|
0,
|
|
1081
|
-
[
|
|
1082
|
-
[() =>
|
|
918
|
+
[_aut, _gu, _pre],
|
|
919
|
+
[() => AgentToolVariableAutoHandler$, () => AgentToolVariableGuidedHandler$, () => AgentToolVariablePredefinedHandler$]
|
|
1083
920
|
];
|
|
1084
921
|
export var VoiceTerminateAction$ = [4, n1, _VTA,
|
|
1085
922
|
0,
|
|
1086
923
|
[_han, _tr],
|
|
1087
924
|
[() => VoiceTerminateHangupAction$, () => VoiceTransferTarget$]
|
|
1088
925
|
];
|
|
1089
|
-
export var WebhookAuthorization$ = [4, n1, _WA,
|
|
1090
|
-
0,
|
|
1091
|
-
[_be, _ba, _oa],
|
|
1092
|
-
[() => WebhookAuthorizationBearer$, () => WebhookAuthorizationBasic$, () => WebhookAuthorizationOAuth$]
|
|
1093
|
-
];
|
|
1094
926
|
export var CompareAgentVersions$ = [9, n1, _CAV,
|
|
1095
927
|
{ [_ht]: ["GET", "/v1/agents/agents/{agentId}/versions/compare", 200] }, () => CompareAgentVersionsInput$, () => CompareAgentVersionsOutput$
|
|
1096
928
|
];
|
|
@@ -1100,39 +932,33 @@ export var CreateAgent$ = [9, n1, _CA,
|
|
|
1100
932
|
export var CreateAgentApiKey$ = [9, n1, _CAAK,
|
|
1101
933
|
{ [_ht]: ["POST", "/v1/agents/agents/{agentId}/keys", 200] }, () => CreateAgentApiKeyInput$, () => CreateAgentApiKeyOutput$
|
|
1102
934
|
];
|
|
1103
|
-
export var
|
|
1104
|
-
{ [_ht]: ["POST", "/v1/agents/
|
|
935
|
+
export var CreateAgentDeployment$ = [9, n1, _CAD,
|
|
936
|
+
{ [_ht]: ["POST", "/v1/agents/agents/{agentId}/deployments", 200] }, () => CreateAgentDeploymentInput$, () => CreateAgentDeploymentOutput$
|
|
1105
937
|
];
|
|
1106
938
|
export var DeleteAgent$ = [9, n1, _DA,
|
|
1107
939
|
{ [_ht]: ["DELETE", "/v1/agents/agents/{agentId}", 200] }, () => DeleteAgentInput$, () => DeleteAgentOutput$
|
|
1108
940
|
];
|
|
1109
|
-
export var DeleteAgentAlias$ = [9, n1, _DAA,
|
|
1110
|
-
{ [_ht]: ["DELETE", "/v1/agents/agents/{agentId}/aliases/{aliasName}", 200] }, () => DeleteAgentAliasInput$, () => DeleteAgentAliasOutput$
|
|
1111
|
-
];
|
|
1112
941
|
export var DeleteAgentApiKey$ = [9, n1, _DAAK,
|
|
1113
942
|
{ [_ht]: ["DELETE", "/v1/agents/agents/{agentId}/keys/{keyId}", 200] }, () => DeleteAgentApiKeyInput$, () => DeleteAgentApiKeyOutput$
|
|
1114
943
|
];
|
|
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$
|
|
944
|
+
export var DeleteAgentDeployment$ = [9, n1, _DAD,
|
|
945
|
+
{ [_ht]: ["DELETE", "/v1/agents/agents/{agentId}/deployments/{deploymentName}", 200] }, () => DeleteAgentDeploymentInput$, () => DeleteAgentDeploymentOutput$
|
|
1120
946
|
];
|
|
1121
947
|
export var GetAgent$ = [9, n1, _GA,
|
|
1122
948
|
{ [_ht]: ["GET", "/v1/agents/agents/{agentId}", 200] }, () => GetAgentInput$, () => GetAgentOutput$
|
|
1123
949
|
];
|
|
950
|
+
export var GetAgentDeployment$ = [9, n1, _GAD,
|
|
951
|
+
{ [_ht]: ["GET", "/v1/agents/agents/{agentId}/deployments/{deploymentName}", 200] }, () => GetAgentDeploymentInput$, () => GetAgentDeploymentOutput$
|
|
952
|
+
];
|
|
1124
953
|
export var GetAgentVersion$ = [9, n1, _GAV,
|
|
1125
954
|
{ [_ht]: ["GET", "/v1/agents/agents/{agentId}/versions/{version}", 200] }, () => GetAgentVersionInput$, () => GetAgentVersionOutput$
|
|
1126
955
|
];
|
|
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
956
|
export var ListAgentApiKeys$ = [9, n1, _LAAK,
|
|
1134
957
|
{ [_ht]: ["GET", "/v1/agents/agents/{agentId}/keys", 200] }, () => ListAgentApiKeysInput$, () => ListAgentApiKeysOutput$
|
|
1135
958
|
];
|
|
959
|
+
export var ListAgentDeployments$ = [9, n1, _LAD,
|
|
960
|
+
{ [_ht]: ["GET", "/v1/agents/agents/{agentId}/deployments", 200] }, () => ListAgentDeploymentsInput$, () => ListAgentDeploymentsOutput$
|
|
961
|
+
];
|
|
1136
962
|
export var ListAgents$ = [9, n1, _LA,
|
|
1137
963
|
{ [_ht]: ["GET", "/v1/agents/agents", 200] }, () => ListAgentsInput$, () => ListAgentsOutput$
|
|
1138
964
|
];
|
|
@@ -1142,21 +968,15 @@ export var ListAgentsNames$ = [9, n1, _LAN,
|
|
|
1142
968
|
export var ListAgentVersions$ = [9, n1, _LAV,
|
|
1143
969
|
{ [_ht]: ["GET", "/v1/agents/agents/{agentId}/versions", 200] }, () => ListAgentVersionsInput$, () => ListAgentVersionsOutput$
|
|
1144
970
|
];
|
|
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
971
|
export var PublishAgentVersion$ = [9, n1, _PAV,
|
|
1152
972
|
{ [_ht]: ["POST", "/v1/agents/agents/{agentId}/versions", 200] }, () => PublishAgentVersionInput$, () => PublishAgentVersionOutput$
|
|
1153
973
|
];
|
|
1154
|
-
export var
|
|
1155
|
-
{ [_ht]: ["
|
|
974
|
+
export var RestoreAgentVersionToDraft$ = [9, n1, _RAVTD,
|
|
975
|
+
{ [_ht]: ["POST", "/v1/agents/agents/{agentId}/versions/{version}/draft", 200] }, () => RestoreAgentVersionToDraftInput$, () => RestoreAgentVersionToDraftOutput$
|
|
1156
976
|
];
|
|
1157
977
|
export var UpdateAgent$ = [9, n1, _UA,
|
|
1158
978
|
{ [_ht]: ["PUT", "/v1/agents/agents/{agentId}", 200] }, () => UpdateAgentInput$, () => UpdateAgentOutput$
|
|
1159
979
|
];
|
|
1160
|
-
export var
|
|
1161
|
-
{ [_ht]: ["PUT", "/v1/agents/
|
|
980
|
+
export var UpdateAgentDeployment$ = [9, n1, _UAD,
|
|
981
|
+
{ [_ht]: ["PUT", "/v1/agents/agents/{agentId}/deployments/{deploymentName}", 200] }, () => UpdateAgentDeploymentInput$, () => UpdateAgentDeploymentOutput$
|
|
1162
982
|
];
|