@aws-sdk/client-bedrock-agentcore 3.890.0 → 3.891.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 (27) hide show
  1. package/dist-types/commands/CreateEventCommand.d.ts +2 -0
  2. package/dist-types/commands/DeleteEventCommand.d.ts +2 -0
  3. package/dist-types/commands/DeleteMemoryRecordCommand.d.ts +2 -0
  4. package/dist-types/commands/GetBrowserSessionCommand.d.ts +2 -0
  5. package/dist-types/commands/GetCodeInterpreterSessionCommand.d.ts +2 -0
  6. package/dist-types/commands/GetEventCommand.d.ts +2 -0
  7. package/dist-types/commands/GetMemoryRecordCommand.d.ts +2 -0
  8. package/dist-types/commands/GetResourceApiKeyCommand.d.ts +2 -0
  9. package/dist-types/commands/GetResourceOauth2TokenCommand.d.ts +2 -0
  10. package/dist-types/commands/GetWorkloadAccessTokenCommand.d.ts +2 -0
  11. package/dist-types/commands/GetWorkloadAccessTokenForJWTCommand.d.ts +2 -0
  12. package/dist-types/commands/GetWorkloadAccessTokenForUserIdCommand.d.ts +2 -0
  13. package/dist-types/commands/InvokeAgentRuntimeCommand.d.ts +2 -0
  14. package/dist-types/commands/InvokeCodeInterpreterCommand.d.ts +2 -0
  15. package/dist-types/commands/ListActorsCommand.d.ts +2 -0
  16. package/dist-types/commands/ListBrowserSessionsCommand.d.ts +2 -0
  17. package/dist-types/commands/ListCodeInterpreterSessionsCommand.d.ts +2 -0
  18. package/dist-types/commands/ListEventsCommand.d.ts +2 -0
  19. package/dist-types/commands/ListMemoryRecordsCommand.d.ts +2 -0
  20. package/dist-types/commands/ListSessionsCommand.d.ts +2 -0
  21. package/dist-types/commands/RetrieveMemoryRecordsCommand.d.ts +2 -0
  22. package/dist-types/commands/StartBrowserSessionCommand.d.ts +2 -0
  23. package/dist-types/commands/StartCodeInterpreterSessionCommand.d.ts +2 -0
  24. package/dist-types/commands/StopBrowserSessionCommand.d.ts +2 -0
  25. package/dist-types/commands/StopCodeInterpreterSessionCommand.d.ts +2 -0
  26. package/dist-types/commands/UpdateBrowserStreamCommand.d.ts +2 -0
  27. package/package.json +10 -10
@@ -33,6 +33,8 @@ declare const CreateEventCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, CreateEventCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, CreateEventCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // CreateEventInput
38
40
  * memoryId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteEventCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, DeleteEventCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, DeleteEventCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // DeleteEventInput
38
40
  * memoryId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteMemoryRecordCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, DeleteMemoryRecordCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, DeleteMemoryRecordCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // DeleteMemoryRecordInput
38
40
  * memoryId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetBrowserSessionCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, GetBrowserSessionCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, GetBrowserSessionCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // GetBrowserSessionRequest
38
40
  * browserIdentifier: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetCodeInterpreterSessionCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, GetCodeInterpreterSessionCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, GetCodeInterpreterSessionCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // GetCodeInterpreterSessionRequest
38
40
  * codeInterpreterIdentifier: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetEventCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, GetEventCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, GetEventCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // GetEventInput
38
40
  * memoryId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetMemoryRecordCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, GetMemoryRecordCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, GetMemoryRecordCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // GetMemoryRecordInput
38
40
  * memoryId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetResourceApiKeyCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, GetResourceApiKeyCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, GetResourceApiKeyCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // GetResourceApiKeyRequest
38
40
  * workloadIdentityToken: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetResourceOauth2TokenCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, GetResourceOauth2TokenCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, GetResourceOauth2TokenCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // GetResourceOauth2TokenRequest
38
40
  * workloadIdentityToken: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetWorkloadAccessTokenCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, GetWorkloadAccessTokenCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, GetWorkloadAccessTokenCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // GetWorkloadAccessTokenRequest
38
40
  * workloadName: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetWorkloadAccessTokenForJWTCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, GetWorkloadAccessTokenForJWTCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, GetWorkloadAccessTokenForJWTCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // GetWorkloadAccessTokenForJWTRequest
38
40
  * workloadName: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetWorkloadAccessTokenForUserIdCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, GetWorkloadAccessTokenForUserIdCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, GetWorkloadAccessTokenForUserIdCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // GetWorkloadAccessTokenForUserIdRequest
38
40
  * workloadName: "STRING_VALUE", // required
@@ -40,6 +40,8 @@ declare const InvokeAgentRuntimeCommand_base: {
40
40
  * ```javascript
41
41
  * import { BedrockAgentCoreClient, InvokeAgentRuntimeCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
42
42
  * // const { BedrockAgentCoreClient, InvokeAgentRuntimeCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
43
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
44
+ * const config = {}; // type is BedrockAgentCoreClientConfig
43
45
  * const client = new BedrockAgentCoreClient(config);
44
46
  * const input = { // InvokeAgentRuntimeRequest
45
47
  * contentType: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const InvokeCodeInterpreterCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, InvokeCodeInterpreterCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, InvokeCodeInterpreterCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // InvokeCodeInterpreterRequest
38
40
  * codeInterpreterIdentifier: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListActorsCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, ListActorsCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, ListActorsCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // ListActorsInput
38
40
  * memoryId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListBrowserSessionsCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, ListBrowserSessionsCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, ListBrowserSessionsCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // ListBrowserSessionsRequest
38
40
  * browserIdentifier: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListCodeInterpreterSessionsCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, ListCodeInterpreterSessionsCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, ListCodeInterpreterSessionsCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // ListCodeInterpreterSessionsRequest
38
40
  * codeInterpreterIdentifier: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListEventsCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, ListEventsCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, ListEventsCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // ListEventsInput
38
40
  * memoryId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListMemoryRecordsCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, ListMemoryRecordsCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, ListMemoryRecordsCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // ListMemoryRecordsInput
38
40
  * memoryId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListSessionsCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, ListSessionsCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, ListSessionsCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // ListSessionsInput
38
40
  * memoryId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const RetrieveMemoryRecordsCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, RetrieveMemoryRecordsCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, RetrieveMemoryRecordsCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // RetrieveMemoryRecordsInput
38
40
  * memoryId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const StartBrowserSessionCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, StartBrowserSessionCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, StartBrowserSessionCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // StartBrowserSessionRequest
38
40
  * browserIdentifier: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const StartCodeInterpreterSessionCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, StartCodeInterpreterSessionCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, StartCodeInterpreterSessionCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // StartCodeInterpreterSessionRequest
38
40
  * codeInterpreterIdentifier: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const StopBrowserSessionCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, StopBrowserSessionCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, StopBrowserSessionCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // StopBrowserSessionRequest
38
40
  * browserIdentifier: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const StopCodeInterpreterSessionCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, StopCodeInterpreterSessionCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, StopCodeInterpreterSessionCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // StopCodeInterpreterSessionRequest
38
40
  * codeInterpreterIdentifier: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateBrowserStreamCommand_base: {
33
33
  * ```javascript
34
34
  * import { BedrockAgentCoreClient, UpdateBrowserStreamCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
35
  * // const { BedrockAgentCoreClient, UpdateBrowserStreamCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
36
38
  * const client = new BedrockAgentCoreClient(config);
37
39
  * const input = { // UpdateBrowserStreamRequest
38
40
  * browserIdentifier: "STRING_VALUE", // required
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-bedrock-agentcore",
3
3
  "description": "AWS SDK for JavaScript Bedrock Agentcore Client for Node.js, Browser and React Native",
4
- "version": "3.890.0",
4
+ "version": "3.891.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,16 +21,16 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.890.0",
24
- "@aws-sdk/credential-provider-node": "3.890.0",
25
- "@aws-sdk/middleware-host-header": "3.887.0",
26
- "@aws-sdk/middleware-logger": "3.887.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.887.0",
28
- "@aws-sdk/middleware-user-agent": "3.890.0",
24
+ "@aws-sdk/credential-provider-node": "3.891.0",
25
+ "@aws-sdk/middleware-host-header": "3.891.0",
26
+ "@aws-sdk/middleware-logger": "3.891.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.891.0",
28
+ "@aws-sdk/middleware-user-agent": "3.891.0",
29
29
  "@aws-sdk/region-config-resolver": "3.890.0",
30
30
  "@aws-sdk/types": "3.887.0",
31
- "@aws-sdk/util-endpoints": "3.890.0",
31
+ "@aws-sdk/util-endpoints": "3.891.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.887.0",
33
- "@aws-sdk/util-user-agent-node": "3.890.0",
33
+ "@aws-sdk/util-user-agent-node": "3.891.0",
34
34
  "@smithy/config-resolver": "^4.2.2",
35
35
  "@smithy/core": "^3.11.0",
36
36
  "@smithy/eventstream-serde-browser": "^4.1.1",
@@ -41,7 +41,7 @@
41
41
  "@smithy/invalid-dependency": "^4.1.1",
42
42
  "@smithy/middleware-content-length": "^4.1.1",
43
43
  "@smithy/middleware-endpoint": "^4.2.2",
44
- "@smithy/middleware-retry": "^4.2.2",
44
+ "@smithy/middleware-retry": "^4.2.3",
45
45
  "@smithy/middleware-serde": "^4.1.1",
46
46
  "@smithy/middleware-stack": "^4.1.1",
47
47
  "@smithy/node-config-provider": "^4.2.2",
@@ -57,7 +57,7 @@
57
57
  "@smithy/util-defaults-mode-node": "^4.1.2",
58
58
  "@smithy/util-endpoints": "^3.1.2",
59
59
  "@smithy/util-middleware": "^4.1.1",
60
- "@smithy/util-retry": "^4.1.1",
60
+ "@smithy/util-retry": "^4.1.2",
61
61
  "@smithy/util-stream": "^4.3.1",
62
62
  "@smithy/util-utf8": "^4.1.0",
63
63
  "@types/uuid": "^9.0.1",