@aws-sdk/client-bedrock-agentcore 3.940.0 → 3.946.0
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/README.md +8 -0
- package/dist-cjs/index.js +207 -537
- package/dist-cjs/runtimeConfig.browser.js +2 -2
- package/dist-cjs/runtimeConfig.js +3 -4
- package/dist-es/BedrockAgentCore.js +2 -0
- package/dist-es/BedrockAgentCoreClient.js +2 -2
- package/dist-es/commands/EvaluateCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/errors.js +12 -0
- package/dist-es/runtimeConfig.browser.js +2 -2
- package/dist-es/runtimeConfig.js +2 -3
- package/dist-es/schemas/schemas_0.js +183 -538
- package/dist-types/BedrockAgentCore.d.ts +8 -1
- package/dist-types/BedrockAgentCoreClient.d.ts +14 -13
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +2 -2
- package/dist-types/commands/BatchCreateMemoryRecordsCommand.d.ts +3 -3
- package/dist-types/commands/BatchDeleteMemoryRecordsCommand.d.ts +3 -3
- package/dist-types/commands/BatchUpdateMemoryRecordsCommand.d.ts +3 -3
- package/dist-types/commands/CompleteResourceTokenAuthCommand.d.ts +3 -3
- package/dist-types/commands/CreateEventCommand.d.ts +3 -3
- package/dist-types/commands/DeleteEventCommand.d.ts +3 -3
- package/dist-types/commands/DeleteMemoryRecordCommand.d.ts +3 -3
- package/dist-types/commands/EvaluateCommand.d.ts +137 -0
- package/dist-types/commands/GetAgentCardCommand.d.ts +3 -3
- package/dist-types/commands/GetBrowserSessionCommand.d.ts +4 -4
- package/dist-types/commands/GetCodeInterpreterSessionCommand.d.ts +4 -4
- package/dist-types/commands/GetEventCommand.d.ts +3 -3
- package/dist-types/commands/GetMemoryRecordCommand.d.ts +8 -3
- package/dist-types/commands/GetResourceApiKeyCommand.d.ts +3 -3
- package/dist-types/commands/GetResourceOauth2TokenCommand.d.ts +3 -3
- package/dist-types/commands/GetWorkloadAccessTokenCommand.d.ts +3 -3
- package/dist-types/commands/GetWorkloadAccessTokenForJWTCommand.d.ts +3 -3
- package/dist-types/commands/GetWorkloadAccessTokenForUserIdCommand.d.ts +3 -3
- package/dist-types/commands/InvokeAgentRuntimeCommand.d.ts +2 -2
- package/dist-types/commands/InvokeCodeInterpreterCommand.d.ts +4 -4
- package/dist-types/commands/ListActorsCommand.d.ts +3 -3
- package/dist-types/commands/ListBrowserSessionsCommand.d.ts +4 -4
- package/dist-types/commands/ListCodeInterpreterSessionsCommand.d.ts +4 -4
- package/dist-types/commands/ListEventsCommand.d.ts +3 -3
- package/dist-types/commands/ListMemoryExtractionJobsCommand.d.ts +3 -3
- package/dist-types/commands/ListMemoryRecordsCommand.d.ts +8 -3
- package/dist-types/commands/ListSessionsCommand.d.ts +3 -3
- package/dist-types/commands/RetrieveMemoryRecordsCommand.d.ts +21 -3
- package/dist-types/commands/StartBrowserSessionCommand.d.ts +4 -4
- package/dist-types/commands/StartCodeInterpreterSessionCommand.d.ts +4 -4
- package/dist-types/commands/StartMemoryExtractionJobCommand.d.ts +3 -3
- package/dist-types/commands/StopBrowserSessionCommand.d.ts +4 -4
- package/dist-types/commands/StopCodeInterpreterSessionCommand.d.ts +4 -4
- package/dist-types/commands/StopRuntimeSessionCommand.d.ts +3 -3
- package/dist-types/commands/UpdateBrowserStreamCommand.d.ts +3 -3
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +13 -1
- package/dist-types/endpoint/endpointResolver.d.ts +5 -2
- package/dist-types/extensionConfiguration.d.ts +4 -4
- package/dist-types/models/BedrockAgentCoreServiceException.d.ts +1 -1
- package/dist-types/models/errors.d.ts +13 -1
- package/dist-types/models/models_0.d.ts +275 -0
- package/dist-types/pagination/Interfaces.d.ts +1 -1
- package/dist-types/pagination/ListActorsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEventsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMemoryExtractionJobsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMemoryRecordsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListSessionsPaginator.d.ts +1 -1
- package/dist-types/pagination/RetrieveMemoryRecordsPaginator.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +18 -1
- package/dist-types/ts3.4/BedrockAgentCore.d.ts +17 -0
- package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +9 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/commands/EvaluateCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/BedrockAgentCoreServiceException.d.ts +1 -1
- package/dist-types/ts3.4/models/errors.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +96 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/package.json +13 -12
package/README.md
CHANGED
|
@@ -258,6 +258,14 @@ DeleteMemoryRecord
|
|
|
258
258
|
|
|
259
259
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore/command/DeleteMemoryRecordCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore/Interface/DeleteMemoryRecordCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore/Interface/DeleteMemoryRecordCommandOutput/)
|
|
260
260
|
|
|
261
|
+
</details>
|
|
262
|
+
<details>
|
|
263
|
+
<summary>
|
|
264
|
+
Evaluate
|
|
265
|
+
</summary>
|
|
266
|
+
|
|
267
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore/command/EvaluateCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore/Interface/EvaluateCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore/Interface/EvaluateCommandOutput/)
|
|
268
|
+
|
|
261
269
|
</details>
|
|
262
270
|
<details>
|
|
263
271
|
<summary>
|