@aws-sdk/client-bedrock-agentcore-control 3.1054.0 → 3.1056.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.
@@ -1,5 +1,69 @@
1
1
  import type { ActorTokenContentType, ClientAuthenticationMethodType, ContentLevel, ContentType, CredentialProviderVendorType, DescriptorType, FilterOperator, FindingType, MemoryStatus, MemoryStrategyStatus, MemoryStrategyType, MemoryView, MetadataValueType, OnBehalfOfTokenExchangeGrantTypeType, OnlineEvaluationConfigStatus, OnlineEvaluationExecutionStatus, OverrideType, PaymentConnectorStatus, PaymentConnectorType, PaymentCredentialProviderVendorType, PaymentManagerStatus, PaymentsAuthorizerType, PolicyEngineStatus, PolicyGenerationStatus, PolicyStatus, PolicyValidationMode, RegistryAuthorizerType, RegistryRecordCredentialProviderType, RegistryRecordOAuthGrantType, RegistryRecordStatus, RegistryStatus, Status, SynchronizationType } from "./enums";
2
- import type { A2aDescriptor, AgentSkillsDescriptor, AuthorizerConfiguration, EpisodicOverrideConsolidationConfigurationInput, EpisodicOverrideExtractionConfigurationInput, IndexedKey, KmsConfiguration, NumberValidation, PrivateEndpoint, PrivateEndpointOverride, Secret, SkillDefinition, SkillMdDefinition, StringListValidation, UpdatedAuthorizerConfiguration, WorkloadIdentityDetails } from "./models_0";
2
+ import type { A2aDescriptor, AgentSkillsDescriptor, AuthorizerConfiguration, IndexedKey, KmsConfiguration, PrivateEndpoint, PrivateEndpointOverride, Secret, SkillDefinition, SkillMdDefinition, UpdatedAuthorizerConfiguration, WorkloadIdentityDetails } from "./models_0";
3
+ /**
4
+ * <p>Configurations for overriding the consolidation step of the episodic memory strategy.</p>
5
+ * @public
6
+ */
7
+ export interface EpisodicOverrideConsolidationConfigurationInput {
8
+ /**
9
+ * <p>The text to append to the prompt for the consolidation step of the episodic memory strategy.</p>
10
+ * @public
11
+ */
12
+ appendToPrompt: string | undefined;
13
+ /**
14
+ * <p>The model ID to use for the consolidation step of the episodic memory strategy.</p>
15
+ * @public
16
+ */
17
+ modelId: string | undefined;
18
+ }
19
+ /**
20
+ * <p>Configurations for overriding the extraction step of the episodic memory strategy.</p>
21
+ * @public
22
+ */
23
+ export interface EpisodicOverrideExtractionConfigurationInput {
24
+ /**
25
+ * <p>The text to append to the prompt for the extraction step of the episodic memory strategy.</p>
26
+ * @public
27
+ */
28
+ appendToPrompt: string | undefined;
29
+ /**
30
+ * <p>The model ID to use for the extraction step of the episodic memory strategy.</p>
31
+ * @public
32
+ */
33
+ modelId: string | undefined;
34
+ }
35
+ /**
36
+ * <p>Validation for NUMBER fields.</p>
37
+ * @public
38
+ */
39
+ export interface NumberValidation {
40
+ /**
41
+ * <p>Minimum allowed value.</p>
42
+ * @public
43
+ */
44
+ minValue?: number | undefined;
45
+ /**
46
+ * <p>Maximum allowed value.</p>
47
+ * @public
48
+ */
49
+ maxValue?: number | undefined;
50
+ }
51
+ /**
52
+ * <p>Validation for STRINGLIST fields.</p>
53
+ * @public
54
+ */
55
+ export interface StringListValidation {
56
+ /**
57
+ * <p>Allowed values for items in this STRINGLIST field.</p>
58
+ * @public
59
+ */
60
+ allowedValues?: string[] | undefined;
61
+ /**
62
+ * <p>Maximum number of items in the string list.</p>
63
+ * @public
64
+ */
65
+ maxItems?: number | undefined;
66
+ }
3
67
  /**
4
68
  * <p>Validation for STRING fields.</p>
5
69
  * @public
@@ -8197,63 +8261,3 @@ export interface DeleteWorkloadIdentityRequest {
8197
8261
  */
8198
8262
  name: string | undefined;
8199
8263
  }
8200
- /**
8201
- * @public
8202
- */
8203
- export interface DeleteWorkloadIdentityResponse {
8204
- }
8205
- /**
8206
- * @public
8207
- */
8208
- export interface GetWorkloadIdentityRequest {
8209
- /**
8210
- * <p>The name of the workload identity to retrieve.</p>
8211
- * @public
8212
- */
8213
- name: string | undefined;
8214
- }
8215
- /**
8216
- * @public
8217
- */
8218
- export interface GetWorkloadIdentityResponse {
8219
- /**
8220
- * <p>The name of the workload identity.</p>
8221
- * @public
8222
- */
8223
- name: string | undefined;
8224
- /**
8225
- * <p>The Amazon Resource Name (ARN) of the workload identity.</p>
8226
- * @public
8227
- */
8228
- workloadIdentityArn: string | undefined;
8229
- /**
8230
- * <p>The list of allowed OAuth2 return URLs for resources associated with this workload identity.</p>
8231
- * @public
8232
- */
8233
- allowedResourceOauth2ReturnUrls?: string[] | undefined;
8234
- /**
8235
- * <p>The timestamp when the workload identity was created.</p>
8236
- * @public
8237
- */
8238
- createdTime: Date | undefined;
8239
- /**
8240
- * <p>The timestamp when the workload identity was last updated.</p>
8241
- * @public
8242
- */
8243
- lastUpdatedTime: Date | undefined;
8244
- }
8245
- /**
8246
- * @public
8247
- */
8248
- export interface ListWorkloadIdentitiesRequest {
8249
- /**
8250
- * <p>Pagination token.</p>
8251
- * @public
8252
- */
8253
- nextToken?: string | undefined;
8254
- /**
8255
- * <p>Maximum number of results to return.</p>
8256
- * @public
8257
- */
8258
- maxResults?: number | undefined;
8259
- }
@@ -1,5 +1,65 @@
1
1
  import type { SchemaType, TargetProtocolType, TargetStatus } from "./enums";
2
2
  import type { ApiGatewayTargetConfiguration, ApiSchemaConfiguration, AuthorizationData, CredentialProviderConfiguration, HttpTargetConfiguration, ManagedResourceDetails, McpServerTargetConfiguration, MetadataConfiguration, PrivateEndpoint, S3Configuration } from "./models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface DeleteWorkloadIdentityResponse {
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface GetWorkloadIdentityRequest {
12
+ /**
13
+ * <p>The name of the workload identity to retrieve.</p>
14
+ * @public
15
+ */
16
+ name: string | undefined;
17
+ }
18
+ /**
19
+ * @public
20
+ */
21
+ export interface GetWorkloadIdentityResponse {
22
+ /**
23
+ * <p>The name of the workload identity.</p>
24
+ * @public
25
+ */
26
+ name: string | undefined;
27
+ /**
28
+ * <p>The Amazon Resource Name (ARN) of the workload identity.</p>
29
+ * @public
30
+ */
31
+ workloadIdentityArn: string | undefined;
32
+ /**
33
+ * <p>The list of allowed OAuth2 return URLs for resources associated with this workload identity.</p>
34
+ * @public
35
+ */
36
+ allowedResourceOauth2ReturnUrls?: string[] | undefined;
37
+ /**
38
+ * <p>The timestamp when the workload identity was created.</p>
39
+ * @public
40
+ */
41
+ createdTime: Date | undefined;
42
+ /**
43
+ * <p>The timestamp when the workload identity was last updated.</p>
44
+ * @public
45
+ */
46
+ lastUpdatedTime: Date | undefined;
47
+ }
48
+ /**
49
+ * @public
50
+ */
51
+ export interface ListWorkloadIdentitiesRequest {
52
+ /**
53
+ * <p>Pagination token.</p>
54
+ * @public
55
+ */
56
+ nextToken?: string | undefined;
57
+ /**
58
+ * <p>Maximum number of results to return.</p>
59
+ * @public
60
+ */
61
+ maxResults?: number | undefined;
62
+ }
3
63
  /**
4
64
  * <p>Contains information about a workload identity.</p>
5
65
  * @public
@@ -271,8 +271,12 @@ export declare var HarnessAgentCoreRuntimeEnvironmentRequest$: StaticStructureSc
271
271
  export declare var HarnessBedrockModelConfig$: StaticStructureSchema;
272
272
  export declare var HarnessGeminiModelConfig$: StaticStructureSchema;
273
273
  export declare var HarnessInlineFunctionConfig$: StaticStructureSchema;
274
+ export declare var HarnessLiteLlmModelConfig$: StaticStructureSchema;
274
275
  export declare var HarnessOpenAiModelConfig$: StaticStructureSchema;
275
276
  export declare var HarnessRemoteMcpConfig$: StaticStructureSchema;
277
+ export declare var HarnessSkillGitAuth$: StaticStructureSchema;
278
+ export declare var HarnessSkillGitSource$: StaticStructureSchema;
279
+ export declare var HarnessSkillS3Source$: StaticStructureSchema;
276
280
  export declare var HarnessSlidingWindowConfiguration$: StaticStructureSchema;
277
281
  export declare var HarnessSummarizationConfiguration$: StaticStructureSchema;
278
282
  export declare var HarnessSummary$: StaticStructureSchema;
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../BedrockAgentCoreControlClient";
8
- import {
9
- DeleteWorkloadIdentityRequest,
10
- DeleteWorkloadIdentityResponse,
11
- } from "../models/models_1";
8
+ import { DeleteWorkloadIdentityRequest } from "../models/models_1";
9
+ import { DeleteWorkloadIdentityResponse } from "../models/models_2";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface DeleteWorkloadIdentityCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  GetWorkloadIdentityRequest,
10
10
  GetWorkloadIdentityResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface GetWorkloadIdentityCommandInput
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../BedrockAgentCoreControlClient";
8
- import { ListWorkloadIdentitiesRequest } from "../models/models_1";
9
- import { ListWorkloadIdentitiesResponse } from "../models/models_2";
8
+ import {
9
+ ListWorkloadIdentitiesRequest,
10
+ ListWorkloadIdentitiesResponse,
11
+ } from "../models/models_2";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface ListWorkloadIdentitiesCommandInput
@@ -315,6 +315,19 @@ export declare const KeyType: {
315
315
  readonly ServiceManagedKey: "ServiceManagedKey";
316
316
  };
317
317
  export type KeyType = (typeof KeyType)[keyof typeof KeyType];
318
+ export declare const HarnessBedrockApiFormat: {
319
+ readonly CHAT_COMPLETIONS: "chat_completions";
320
+ readonly CONVERSE_STREAM: "converse_stream";
321
+ readonly RESPONSES: "responses";
322
+ };
323
+ export type HarnessBedrockApiFormat =
324
+ (typeof HarnessBedrockApiFormat)[keyof typeof HarnessBedrockApiFormat];
325
+ export declare const HarnessOpenAiApiFormat: {
326
+ readonly CHAT_COMPLETIONS: "chat_completions";
327
+ readonly RESPONSES: "responses";
328
+ };
329
+ export type HarnessOpenAiApiFormat =
330
+ (typeof HarnessOpenAiApiFormat)[keyof typeof HarnessOpenAiApiFormat];
318
331
  export declare const HarnessToolType: {
319
332
  readonly AGENTCORE_BROWSER: "agentcore_browser";
320
333
  readonly AGENTCORE_CODE_INTERPRETER: "agentcore_code_interpreter";
@@ -27,6 +27,8 @@ import {
27
27
  GatewayProtocolType,
28
28
  GatewayRuleStatus,
29
29
  GatewayStatus,
30
+ HarnessBedrockApiFormat,
31
+ HarnessOpenAiApiFormat,
30
32
  HarnessStatus,
31
33
  HarnessToolType,
32
34
  HarnessTruncationStrategy,
@@ -1035,6 +1037,7 @@ export interface ConfigurationBundleSummary {
1035
1037
  bundleId: string | undefined;
1036
1038
  bundleName: string | undefined;
1037
1039
  description?: string | undefined;
1040
+ createdAt?: Date | undefined;
1038
1041
  }
1039
1042
  export interface ListConfigurationBundlesResponse {
1040
1043
  bundles: ConfigurationBundleSummary[] | undefined;
@@ -2059,6 +2062,8 @@ export interface HarnessBedrockModelConfig {
2059
2062
  maxTokens?: number | undefined;
2060
2063
  temperature?: number | undefined;
2061
2064
  topP?: number | undefined;
2065
+ apiFormat?: HarnessBedrockApiFormat | undefined;
2066
+ additionalParams?: __DocumentType | undefined;
2062
2067
  }
2063
2068
  export interface HarnessGeminiModelConfig {
2064
2069
  modelId: string | undefined;
@@ -2068,16 +2073,28 @@ export interface HarnessGeminiModelConfig {
2068
2073
  topP?: number | undefined;
2069
2074
  topK?: number | undefined;
2070
2075
  }
2076
+ export interface HarnessLiteLlmModelConfig {
2077
+ modelId: string | undefined;
2078
+ apiKeyArn?: string | undefined;
2079
+ apiBase?: string | undefined;
2080
+ maxTokens?: number | undefined;
2081
+ temperature?: number | undefined;
2082
+ topP?: number | undefined;
2083
+ additionalParams?: __DocumentType | undefined;
2084
+ }
2071
2085
  export interface HarnessOpenAiModelConfig {
2072
2086
  modelId: string | undefined;
2073
2087
  apiKeyArn: string | undefined;
2074
2088
  maxTokens?: number | undefined;
2075
2089
  temperature?: number | undefined;
2076
2090
  topP?: number | undefined;
2091
+ apiFormat?: HarnessOpenAiApiFormat | undefined;
2092
+ additionalParams?: __DocumentType | undefined;
2077
2093
  }
2078
2094
  export type HarnessModelConfiguration =
2079
2095
  | HarnessModelConfiguration.BedrockModelConfigMember
2080
2096
  | HarnessModelConfiguration.GeminiModelConfigMember
2097
+ | HarnessModelConfiguration.LiteLlmModelConfigMember
2081
2098
  | HarnessModelConfiguration.OpenAiModelConfigMember
2082
2099
  | HarnessModelConfiguration.$UnknownMember;
2083
2100
  export declare namespace HarnessModelConfiguration {
@@ -2085,47 +2102,91 @@ export declare namespace HarnessModelConfiguration {
2085
2102
  bedrockModelConfig: HarnessBedrockModelConfig;
2086
2103
  openAiModelConfig?: never;
2087
2104
  geminiModelConfig?: never;
2105
+ liteLlmModelConfig?: never;
2088
2106
  $unknown?: never;
2089
2107
  }
2090
2108
  interface OpenAiModelConfigMember {
2091
2109
  bedrockModelConfig?: never;
2092
2110
  openAiModelConfig: HarnessOpenAiModelConfig;
2093
2111
  geminiModelConfig?: never;
2112
+ liteLlmModelConfig?: never;
2094
2113
  $unknown?: never;
2095
2114
  }
2096
2115
  interface GeminiModelConfigMember {
2097
2116
  bedrockModelConfig?: never;
2098
2117
  openAiModelConfig?: never;
2099
2118
  geminiModelConfig: HarnessGeminiModelConfig;
2119
+ liteLlmModelConfig?: never;
2120
+ $unknown?: never;
2121
+ }
2122
+ interface LiteLlmModelConfigMember {
2123
+ bedrockModelConfig?: never;
2124
+ openAiModelConfig?: never;
2125
+ geminiModelConfig?: never;
2126
+ liteLlmModelConfig: HarnessLiteLlmModelConfig;
2100
2127
  $unknown?: never;
2101
2128
  }
2102
2129
  interface $UnknownMember {
2103
2130
  bedrockModelConfig?: never;
2104
2131
  openAiModelConfig?: never;
2105
2132
  geminiModelConfig?: never;
2133
+ liteLlmModelConfig?: never;
2106
2134
  $unknown: [string, any];
2107
2135
  }
2108
2136
  interface Visitor<T> {
2109
2137
  bedrockModelConfig: (value: HarnessBedrockModelConfig) => T;
2110
2138
  openAiModelConfig: (value: HarnessOpenAiModelConfig) => T;
2111
2139
  geminiModelConfig: (value: HarnessGeminiModelConfig) => T;
2140
+ liteLlmModelConfig: (value: HarnessLiteLlmModelConfig) => T;
2112
2141
  _: (name: string, value: any) => T;
2113
2142
  }
2114
2143
  }
2144
+ export interface HarnessSkillGitAuth {
2145
+ credentialArn: string | undefined;
2146
+ username?: string | undefined;
2147
+ }
2148
+ export interface HarnessSkillGitSource {
2149
+ url: string | undefined;
2150
+ path?: string | undefined;
2151
+ auth?: HarnessSkillGitAuth | undefined;
2152
+ }
2153
+ export interface HarnessSkillS3Source {
2154
+ uri: string | undefined;
2155
+ }
2115
2156
  export type HarnessSkill =
2157
+ | HarnessSkill.GitMember
2116
2158
  | HarnessSkill.PathMember
2159
+ | HarnessSkill.S3Member
2117
2160
  | HarnessSkill.$UnknownMember;
2118
2161
  export declare namespace HarnessSkill {
2119
2162
  interface PathMember {
2120
2163
  path: string;
2164
+ s3?: never;
2165
+ git?: never;
2166
+ $unknown?: never;
2167
+ }
2168
+ interface S3Member {
2169
+ path?: never;
2170
+ s3: HarnessSkillS3Source;
2171
+ git?: never;
2172
+ $unknown?: never;
2173
+ }
2174
+ interface GitMember {
2175
+ path?: never;
2176
+ s3?: never;
2177
+ git: HarnessSkillGitSource;
2121
2178
  $unknown?: never;
2122
2179
  }
2123
2180
  interface $UnknownMember {
2124
2181
  path?: never;
2182
+ s3?: never;
2183
+ git?: never;
2125
2184
  $unknown: [string, any];
2126
2185
  }
2127
2186
  interface Visitor<T> {
2128
2187
  path: (value: string) => T;
2188
+ s3: (value: HarnessSkillS3Source) => T;
2189
+ git: (value: HarnessSkillGitSource) => T;
2129
2190
  _: (name: string, value: any) => T;
2130
2191
  }
2131
2192
  }
@@ -2456,19 +2517,3 @@ export interface IndexedKey {
2456
2517
  key: string | undefined;
2457
2518
  type: MetadataValueType | undefined;
2458
2519
  }
2459
- export interface EpisodicOverrideConsolidationConfigurationInput {
2460
- appendToPrompt: string | undefined;
2461
- modelId: string | undefined;
2462
- }
2463
- export interface EpisodicOverrideExtractionConfigurationInput {
2464
- appendToPrompt: string | undefined;
2465
- modelId: string | undefined;
2466
- }
2467
- export interface NumberValidation {
2468
- minValue?: number | undefined;
2469
- maxValue?: number | undefined;
2470
- }
2471
- export interface StringListValidation {
2472
- allowedValues?: string[] | undefined;
2473
- maxItems?: number | undefined;
2474
- }
@@ -37,20 +37,32 @@ import {
37
37
  A2aDescriptor,
38
38
  AgentSkillsDescriptor,
39
39
  AuthorizerConfiguration,
40
- EpisodicOverrideConsolidationConfigurationInput,
41
- EpisodicOverrideExtractionConfigurationInput,
42
40
  IndexedKey,
43
41
  KmsConfiguration,
44
- NumberValidation,
45
42
  PrivateEndpoint,
46
43
  PrivateEndpointOverride,
47
44
  Secret,
48
45
  SkillDefinition,
49
46
  SkillMdDefinition,
50
- StringListValidation,
51
47
  UpdatedAuthorizerConfiguration,
52
48
  WorkloadIdentityDetails,
53
49
  } from "./models_0";
50
+ export interface EpisodicOverrideConsolidationConfigurationInput {
51
+ appendToPrompt: string | undefined;
52
+ modelId: string | undefined;
53
+ }
54
+ export interface EpisodicOverrideExtractionConfigurationInput {
55
+ appendToPrompt: string | undefined;
56
+ modelId: string | undefined;
57
+ }
58
+ export interface NumberValidation {
59
+ minValue?: number | undefined;
60
+ maxValue?: number | undefined;
61
+ }
62
+ export interface StringListValidation {
63
+ allowedValues?: string[] | undefined;
64
+ maxItems?: number | undefined;
65
+ }
54
66
  export interface StringValidation {
55
67
  allowedValues: string[] | undefined;
56
68
  }
@@ -2782,18 +2794,3 @@ export interface CreateWorkloadIdentityResponse {
2782
2794
  export interface DeleteWorkloadIdentityRequest {
2783
2795
  name: string | undefined;
2784
2796
  }
2785
- export interface DeleteWorkloadIdentityResponse {}
2786
- export interface GetWorkloadIdentityRequest {
2787
- name: string | undefined;
2788
- }
2789
- export interface GetWorkloadIdentityResponse {
2790
- name: string | undefined;
2791
- workloadIdentityArn: string | undefined;
2792
- allowedResourceOauth2ReturnUrls?: string[] | undefined;
2793
- createdTime: Date | undefined;
2794
- lastUpdatedTime: Date | undefined;
2795
- }
2796
- export interface ListWorkloadIdentitiesRequest {
2797
- nextToken?: string | undefined;
2798
- maxResults?: number | undefined;
2799
- }
@@ -11,6 +11,21 @@ import {
11
11
  PrivateEndpoint,
12
12
  S3Configuration,
13
13
  } from "./models_0";
14
+ export interface DeleteWorkloadIdentityResponse {}
15
+ export interface GetWorkloadIdentityRequest {
16
+ name: string | undefined;
17
+ }
18
+ export interface GetWorkloadIdentityResponse {
19
+ name: string | undefined;
20
+ workloadIdentityArn: string | undefined;
21
+ allowedResourceOauth2ReturnUrls?: string[] | undefined;
22
+ createdTime: Date | undefined;
23
+ lastUpdatedTime: Date | undefined;
24
+ }
25
+ export interface ListWorkloadIdentitiesRequest {
26
+ nextToken?: string | undefined;
27
+ maxResults?: number | undefined;
28
+ }
14
29
  export interface WorkloadIdentityType {
15
30
  name: string | undefined;
16
31
  workloadIdentityArn: string | undefined;
@@ -271,8 +271,12 @@ export declare var HarnessAgentCoreRuntimeEnvironmentRequest$: StaticStructureSc
271
271
  export declare var HarnessBedrockModelConfig$: StaticStructureSchema;
272
272
  export declare var HarnessGeminiModelConfig$: StaticStructureSchema;
273
273
  export declare var HarnessInlineFunctionConfig$: StaticStructureSchema;
274
+ export declare var HarnessLiteLlmModelConfig$: StaticStructureSchema;
274
275
  export declare var HarnessOpenAiModelConfig$: StaticStructureSchema;
275
276
  export declare var HarnessRemoteMcpConfig$: StaticStructureSchema;
277
+ export declare var HarnessSkillGitAuth$: StaticStructureSchema;
278
+ export declare var HarnessSkillGitSource$: StaticStructureSchema;
279
+ export declare var HarnessSkillS3Source$: StaticStructureSchema;
276
280
  export declare var HarnessSlidingWindowConfiguration$: StaticStructureSchema;
277
281
  export declare var HarnessSummarizationConfiguration$: StaticStructureSchema;
278
282
  export declare var HarnessSummary$: StaticStructureSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-bedrock-agentcore-control",
3
3
  "description": "AWS SDK for JavaScript Bedrock Agentcore Control Client for Node.js, Browser and React Native",
4
- "version": "3.1054.0",
4
+ "version": "3.1056.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-bedrock-agentcore-control",
@@ -21,12 +21,12 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.974.14",
25
- "@aws-sdk/credential-provider-node": "^3.972.45",
24
+ "@aws-sdk/core": "^3.974.15",
25
+ "@aws-sdk/credential-provider-node": "^3.972.46",
26
26
  "@aws-sdk/types": "^3.973.9",
27
- "@smithy/core": "^3.24.3",
28
- "@smithy/fetch-http-handler": "^5.4.3",
29
- "@smithy/node-http-handler": "^4.7.3",
27
+ "@smithy/core": "^3.24.5",
28
+ "@smithy/fetch-http-handler": "^5.4.5",
29
+ "@smithy/node-http-handler": "^4.7.5",
30
30
  "@smithy/types": "^4.14.2",
31
31
  "tslib": "^2.6.2"
32
32
  },