@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.
Files changed (81) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +207 -537
  3. package/dist-cjs/runtimeConfig.browser.js +2 -2
  4. package/dist-cjs/runtimeConfig.js +3 -4
  5. package/dist-es/BedrockAgentCore.js +2 -0
  6. package/dist-es/BedrockAgentCoreClient.js +2 -2
  7. package/dist-es/commands/EvaluateCommand.js +16 -0
  8. package/dist-es/commands/index.js +1 -0
  9. package/dist-es/models/errors.js +12 -0
  10. package/dist-es/runtimeConfig.browser.js +2 -2
  11. package/dist-es/runtimeConfig.js +2 -3
  12. package/dist-es/schemas/schemas_0.js +183 -538
  13. package/dist-types/BedrockAgentCore.d.ts +8 -1
  14. package/dist-types/BedrockAgentCoreClient.d.ts +14 -13
  15. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
  16. package/dist-types/auth/httpAuthSchemeProvider.d.ts +2 -2
  17. package/dist-types/commands/BatchCreateMemoryRecordsCommand.d.ts +3 -3
  18. package/dist-types/commands/BatchDeleteMemoryRecordsCommand.d.ts +3 -3
  19. package/dist-types/commands/BatchUpdateMemoryRecordsCommand.d.ts +3 -3
  20. package/dist-types/commands/CompleteResourceTokenAuthCommand.d.ts +3 -3
  21. package/dist-types/commands/CreateEventCommand.d.ts +3 -3
  22. package/dist-types/commands/DeleteEventCommand.d.ts +3 -3
  23. package/dist-types/commands/DeleteMemoryRecordCommand.d.ts +3 -3
  24. package/dist-types/commands/EvaluateCommand.d.ts +137 -0
  25. package/dist-types/commands/GetAgentCardCommand.d.ts +3 -3
  26. package/dist-types/commands/GetBrowserSessionCommand.d.ts +4 -4
  27. package/dist-types/commands/GetCodeInterpreterSessionCommand.d.ts +4 -4
  28. package/dist-types/commands/GetEventCommand.d.ts +3 -3
  29. package/dist-types/commands/GetMemoryRecordCommand.d.ts +8 -3
  30. package/dist-types/commands/GetResourceApiKeyCommand.d.ts +3 -3
  31. package/dist-types/commands/GetResourceOauth2TokenCommand.d.ts +3 -3
  32. package/dist-types/commands/GetWorkloadAccessTokenCommand.d.ts +3 -3
  33. package/dist-types/commands/GetWorkloadAccessTokenForJWTCommand.d.ts +3 -3
  34. package/dist-types/commands/GetWorkloadAccessTokenForUserIdCommand.d.ts +3 -3
  35. package/dist-types/commands/InvokeAgentRuntimeCommand.d.ts +2 -2
  36. package/dist-types/commands/InvokeCodeInterpreterCommand.d.ts +4 -4
  37. package/dist-types/commands/ListActorsCommand.d.ts +3 -3
  38. package/dist-types/commands/ListBrowserSessionsCommand.d.ts +4 -4
  39. package/dist-types/commands/ListCodeInterpreterSessionsCommand.d.ts +4 -4
  40. package/dist-types/commands/ListEventsCommand.d.ts +3 -3
  41. package/dist-types/commands/ListMemoryExtractionJobsCommand.d.ts +3 -3
  42. package/dist-types/commands/ListMemoryRecordsCommand.d.ts +8 -3
  43. package/dist-types/commands/ListSessionsCommand.d.ts +3 -3
  44. package/dist-types/commands/RetrieveMemoryRecordsCommand.d.ts +21 -3
  45. package/dist-types/commands/StartBrowserSessionCommand.d.ts +4 -4
  46. package/dist-types/commands/StartCodeInterpreterSessionCommand.d.ts +4 -4
  47. package/dist-types/commands/StartMemoryExtractionJobCommand.d.ts +3 -3
  48. package/dist-types/commands/StopBrowserSessionCommand.d.ts +4 -4
  49. package/dist-types/commands/StopCodeInterpreterSessionCommand.d.ts +4 -4
  50. package/dist-types/commands/StopRuntimeSessionCommand.d.ts +3 -3
  51. package/dist-types/commands/UpdateBrowserStreamCommand.d.ts +3 -3
  52. package/dist-types/commands/index.d.ts +1 -0
  53. package/dist-types/endpoint/EndpointParameters.d.ts +13 -1
  54. package/dist-types/endpoint/endpointResolver.d.ts +5 -2
  55. package/dist-types/extensionConfiguration.d.ts +4 -4
  56. package/dist-types/models/BedrockAgentCoreServiceException.d.ts +1 -1
  57. package/dist-types/models/errors.d.ts +13 -1
  58. package/dist-types/models/models_0.d.ts +275 -0
  59. package/dist-types/pagination/Interfaces.d.ts +1 -1
  60. package/dist-types/pagination/ListActorsPaginator.d.ts +1 -1
  61. package/dist-types/pagination/ListEventsPaginator.d.ts +1 -1
  62. package/dist-types/pagination/ListMemoryExtractionJobsPaginator.d.ts +1 -1
  63. package/dist-types/pagination/ListMemoryRecordsPaginator.d.ts +1 -1
  64. package/dist-types/pagination/ListSessionsPaginator.d.ts +1 -1
  65. package/dist-types/pagination/RetrieveMemoryRecordsPaginator.d.ts +1 -1
  66. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  67. package/dist-types/runtimeConfig.d.ts +1 -1
  68. package/dist-types/runtimeConfig.native.d.ts +1 -1
  69. package/dist-types/runtimeConfig.shared.d.ts +1 -1
  70. package/dist-types/runtimeExtensions.d.ts +1 -1
  71. package/dist-types/schemas/schemas_0.d.ts +18 -1
  72. package/dist-types/ts3.4/BedrockAgentCore.d.ts +17 -0
  73. package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +9 -3
  74. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  75. package/dist-types/ts3.4/commands/EvaluateCommand.d.ts +47 -0
  76. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  77. package/dist-types/ts3.4/models/BedrockAgentCoreServiceException.d.ts +1 -1
  78. package/dist-types/ts3.4/models/errors.d.ts +7 -0
  79. package/dist-types/ts3.4/models/models_0.d.ts +96 -0
  80. package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
  81. 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>