@wildix/wilma-agents-client 1.0.1

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