@aws-sdk/client-bedrock-agent-runtime 3.662.0 → 3.664.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/dist-cjs/index.js CHANGED
@@ -1130,7 +1130,9 @@ var PostProcessingParsedResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj
1130
1130
  }), "PostProcessingParsedResponseFilterSensitiveLog");
1131
1131
  var PostProcessingModelInvocationOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
1132
1132
  ...obj,
1133
- ...obj.parsedResponse && { parsedResponse: import_smithy_client.SENSITIVE_STRING }
1133
+ ...obj.parsedResponse && { parsedResponse: import_smithy_client.SENSITIVE_STRING },
1134
+ ...obj.rawResponse && { rawResponse: import_smithy_client.SENSITIVE_STRING },
1135
+ ...obj.metadata && { metadata: import_smithy_client.SENSITIVE_STRING }
1134
1136
  }), "PostProcessingModelInvocationOutputFilterSensitiveLog");
1135
1137
  var PostProcessingTraceFilterSensitiveLog = /* @__PURE__ */ __name((obj) => {
1136
1138
  if (obj.modelInvocationInput !== void 0)
@@ -1146,7 +1148,9 @@ var PreProcessingParsedResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj)
1146
1148
  }), "PreProcessingParsedResponseFilterSensitiveLog");
1147
1149
  var PreProcessingModelInvocationOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
1148
1150
  ...obj,
1149
- ...obj.parsedResponse && { parsedResponse: import_smithy_client.SENSITIVE_STRING }
1151
+ ...obj.parsedResponse && { parsedResponse: import_smithy_client.SENSITIVE_STRING },
1152
+ ...obj.rawResponse && { rawResponse: import_smithy_client.SENSITIVE_STRING },
1153
+ ...obj.metadata && { metadata: import_smithy_client.SENSITIVE_STRING }
1150
1154
  }), "PreProcessingModelInvocationOutputFilterSensitiveLog");
1151
1155
  var PreProcessingTraceFilterSensitiveLog = /* @__PURE__ */ __name((obj) => {
1152
1156
  if (obj.modelInvocationInput !== void 0)
@@ -46,6 +46,7 @@ const getRuntimeConfig = (config) => {
46
46
  streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
47
47
  useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
48
48
  useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
49
+ userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS),
49
50
  };
50
51
  };
51
52
  exports.getRuntimeConfig = getRuntimeConfig;
@@ -746,6 +746,8 @@ export const PostProcessingParsedResponseFilterSensitiveLog = (obj) => ({
746
746
  export const PostProcessingModelInvocationOutputFilterSensitiveLog = (obj) => ({
747
747
  ...obj,
748
748
  ...(obj.parsedResponse && { parsedResponse: SENSITIVE_STRING }),
749
+ ...(obj.rawResponse && { rawResponse: SENSITIVE_STRING }),
750
+ ...(obj.metadata && { metadata: SENSITIVE_STRING }),
749
751
  });
750
752
  export const PostProcessingTraceFilterSensitiveLog = (obj) => {
751
753
  if (obj.modelInvocationInput !== undefined)
@@ -762,6 +764,8 @@ export const PreProcessingParsedResponseFilterSensitiveLog = (obj) => ({
762
764
  export const PreProcessingModelInvocationOutputFilterSensitiveLog = (obj) => ({
763
765
  ...obj,
764
766
  ...(obj.parsedResponse && { parsedResponse: SENSITIVE_STRING }),
767
+ ...(obj.rawResponse && { rawResponse: SENSITIVE_STRING }),
768
+ ...(obj.metadata && { metadata: SENSITIVE_STRING }),
765
769
  });
766
770
  export const PreProcessingTraceFilterSensitiveLog = (obj) => {
767
771
  if (obj.modelInvocationInput !== undefined)
@@ -1,7 +1,7 @@
1
1
  import packageInfo from "../package.json";
2
2
  import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core";
3
3
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
4
- import { defaultUserAgent } from "@aws-sdk/util-user-agent-node";
4
+ import { NODE_APP_ID_CONFIG_OPTIONS, defaultUserAgent } from "@aws-sdk/util-user-agent-node";
5
5
  import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
6
6
  import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-node";
7
7
  import { Hash } from "@smithy/hash-node";
@@ -42,5 +42,6 @@ export const getRuntimeConfig = (config) => {
42
42
  streamCollector: config?.streamCollector ?? streamCollector,
43
43
  useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
44
44
  useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
45
+ userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS),
45
46
  };
46
47
  };
@@ -383,6 +383,15 @@ declare const InvokeAgentCommand_base: {
383
383
  * // rationale: "STRING_VALUE",
384
384
  * // isValid: true || false,
385
385
  * // },
386
+ * // rawResponse: { // RawResponse
387
+ * // content: "STRING_VALUE",
388
+ * // },
389
+ * // metadata: { // Metadata
390
+ * // usage: { // Usage
391
+ * // inputTokens: Number("int"),
392
+ * // outputTokens: Number("int"),
393
+ * // },
394
+ * // },
386
395
  * // },
387
396
  * // },
388
397
  * // orchestrationTrace: { // OrchestrationTrace Union: only one key present
@@ -501,11 +510,11 @@ declare const InvokeAgentCommand_base: {
501
510
  * // },
502
511
  * // modelInvocationOutput: { // OrchestrationModelInvocationOutput
503
512
  * // traceId: "STRING_VALUE",
504
- * // rawResponse: { // RawResponse
513
+ * // rawResponse: {
505
514
  * // content: "STRING_VALUE",
506
515
  * // },
507
- * // metadata: { // Metadata
508
- * // usage: { // Usage
516
+ * // metadata: {
517
+ * // usage: {
509
518
  * // inputTokens: Number("int"),
510
519
  * // outputTokens: Number("int"),
511
520
  * // },
@@ -535,6 +544,15 @@ declare const InvokeAgentCommand_base: {
535
544
  * // parsedResponse: { // PostProcessingParsedResponse
536
545
  * // text: "STRING_VALUE",
537
546
  * // },
547
+ * // rawResponse: {
548
+ * // content: "STRING_VALUE",
549
+ * // },
550
+ * // metadata: {
551
+ * // usage: {
552
+ * // inputTokens: Number("int"),
553
+ * // outputTokens: Number("int"),
554
+ * // },
555
+ * // },
538
556
  * // },
539
557
  * // },
540
558
  * // failureTrace: { // FailureTrace
@@ -2532,6 +2532,16 @@ export interface PostProcessingModelInvocationOutput {
2532
2532
  * @public
2533
2533
  */
2534
2534
  parsedResponse?: PostProcessingParsedResponse;
2535
+ /**
2536
+ * <p>Contains the raw output from the foundation model.</p>
2537
+ * @public
2538
+ */
2539
+ rawResponse?: RawResponse;
2540
+ /**
2541
+ * <p>Provides details of the foundation model.</p>
2542
+ * @public
2543
+ */
2544
+ metadata?: Metadata;
2535
2545
  }
2536
2546
  /**
2537
2547
  * <p>Details about the post-processing step, in which the agent shapes the response.</p>
@@ -2617,6 +2627,16 @@ export interface PreProcessingModelInvocationOutput {
2617
2627
  * @public
2618
2628
  */
2619
2629
  parsedResponse?: PreProcessingParsedResponse;
2630
+ /**
2631
+ * <p>Contains the raw output from the foundation model.</p>
2632
+ * @public
2633
+ */
2634
+ rawResponse?: RawResponse;
2635
+ /**
2636
+ * <p>Provides details of the foundation model.</p>
2637
+ * @public
2638
+ */
2639
+ metadata?: Metadata;
2620
2640
  }
2621
2641
  /**
2622
2642
  * <p>Details about the pre-processing step, in which the agent contextualizes and categorizes user inputs.</p>
@@ -3481,22 +3501,22 @@ export interface ExternalSource {
3481
3501
  byteContent?: ByteContentDoc;
3482
3502
  }
3483
3503
  /**
3484
- * <p>The configurations of the external source wrapper object in the retrieveAndGenerate function.</p>
3504
+ * <p>The configurations of the external source wrapper object in the <code>retrieveAndGenerate</code> function.</p>
3485
3505
  * @public
3486
3506
  */
3487
3507
  export interface ExternalSourcesRetrieveAndGenerateConfiguration {
3488
3508
  /**
3489
- * <p>The modelArn used with the external source wrapper object in the retrieveAndGenerate function.</p>
3509
+ * <p>The model Amazon Resource Name (ARN) for the external source wrapper object in the <code>retrieveAndGenerate</code> function.</p>
3490
3510
  * @public
3491
3511
  */
3492
3512
  modelArn: string | undefined;
3493
3513
  /**
3494
- * <p>The document used with the external source wrapper object in the retrieveAndGenerate function.</p>
3514
+ * <p>The document for the external source wrapper object in the <code>retrieveAndGenerate</code> function.</p>
3495
3515
  * @public
3496
3516
  */
3497
3517
  sources: ExternalSource[] | undefined;
3498
3518
  /**
3499
- * <p>The prompt used with the external source wrapper object with the retrieveAndGenerate function.</p>
3519
+ * <p>The prompt used with the external source wrapper object with the <code>retrieveAndGenerate</code> function.</p>
3500
3520
  * @public
3501
3521
  */
3502
3522
  generationConfiguration?: ExternalSourcesGenerationConfiguration;
@@ -4242,17 +4262,18 @@ export interface RetrieveRequest {
4242
4262
  */
4243
4263
  export interface RetrieveAndGenerateConfiguration {
4244
4264
  /**
4245
- * <p>The type of resource that is queried by the request.</p>
4265
+ * <p>The type of resource that contains your data for retrieving information and generating responses.</p>
4266
+ * <p>If you choose ot use <code>EXTERNAL_SOURCES</code>, then currently only Claude 3 Sonnet models for knowledge bases are supported.</p>
4246
4267
  * @public
4247
4268
  */
4248
4269
  type: RetrieveAndGenerateType | undefined;
4249
4270
  /**
4250
- * <p>Contains details about the resource being queried.</p>
4271
+ * <p>Contains details about the knowledge base for retrieving information and generating responses.</p>
4251
4272
  * @public
4252
4273
  */
4253
4274
  knowledgeBaseConfiguration?: KnowledgeBaseRetrieveAndGenerateConfiguration;
4254
4275
  /**
4255
- * <p>The configuration used with the external source wrapper object in the retrieveAndGenerate function.</p>
4276
+ * <p>The configuration for the external source wrapper object in the <code>retrieveAndGenerate</code> function.</p>
4256
4277
  * @public
4257
4278
  */
4258
4279
  externalSourcesConfiguration?: ExternalSourcesRetrieveAndGenerateConfiguration;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig)
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
11
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
11
+ defaultUserAgentProvider: (config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
12
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
13
13
  maxAttempts: number | import("@smithy/types").Provider<number>;
14
14
  region: string | import("@smithy/types").Provider<any>;
@@ -30,6 +30,7 @@ export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig)
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
32
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
33
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
33
34
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
34
35
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
35
36
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig)
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
11
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
12
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
13
13
  maxAttempts: number | import("@smithy/types").Provider<number>;
14
14
  region: string | import("@smithy/types").Provider<string>;
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig)
18
18
  streamCollector: import("@smithy/types").StreamCollector;
19
19
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
20
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
21
22
  apiVersion: string;
22
23
  cacheMiddleware?: boolean | undefined;
23
24
  urlParser: import("@smithy/types").UrlParser;
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig)
20
20
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
21
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
22
  region: string | import("@smithy/types").Provider<any>;
23
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
23
+ defaultUserAgentProvider: (config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
24
24
  credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
25
25
  maxAttempts: number | import("@smithy/types").Provider<number>;
26
26
  retryMode: string | import("@smithy/types").Provider<string>;
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig)
29
29
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
30
30
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
31
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
32
33
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
33
34
  endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
34
35
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
@@ -923,6 +923,8 @@ export interface PostProcessingParsedResponse {
923
923
  export interface PostProcessingModelInvocationOutput {
924
924
  traceId?: string;
925
925
  parsedResponse?: PostProcessingParsedResponse;
926
+ rawResponse?: RawResponse;
927
+ metadata?: Metadata;
926
928
  }
927
929
  export type PostProcessingTrace =
928
930
  | PostProcessingTrace.ModelInvocationInputMember
@@ -958,6 +960,8 @@ export interface PreProcessingParsedResponse {
958
960
  export interface PreProcessingModelInvocationOutput {
959
961
  traceId?: string;
960
962
  parsedResponse?: PreProcessingParsedResponse;
963
+ rawResponse?: RawResponse;
964
+ metadata?: Metadata;
961
965
  }
962
966
  export type PreProcessingTrace =
963
967
  | PreProcessingTrace.ModelInvocationInputMember
@@ -11,9 +11,9 @@ export declare const getRuntimeConfig: (
11
11
  credentialDefaultProvider: (
12
12
  input: any
13
13
  ) => import("@smithy/types").AwsCredentialIdentityProvider;
14
- defaultUserAgentProvider: import("@smithy/types").Provider<
15
- import("@smithy/types").UserAgent
16
- >;
14
+ defaultUserAgentProvider: (
15
+ config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
16
+ ) => Promise<import("@smithy/types").UserAgent>;
17
17
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
18
18
  maxAttempts: number | import("@smithy/types").Provider<number>;
19
19
  region: string | import("@smithy/types").Provider<any>;
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (
37
37
  logger: import("@smithy/types").Logger;
38
38
  extensions: import("./runtimeExtensions").RuntimeExtension[];
39
39
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
40
+ userAgentAppId?:
41
+ | string
42
+ | import("@smithy/types").Provider<string | undefined>
43
+ | undefined;
40
44
  retryStrategy?:
41
45
  | import("@smithy/types").RetryStrategy
42
46
  | import("@smithy/types").RetryStrategyV2
@@ -15,9 +15,11 @@ export declare const getRuntimeConfig: (
15
15
  ) => import("@smithy/types").MemoizedProvider<
16
16
  import("@smithy/types").AwsCredentialIdentity
17
17
  >;
18
- defaultUserAgentProvider: import("@smithy/types").Provider<
19
- import("@smithy/types").UserAgent
20
- >;
18
+ defaultUserAgentProvider: (
19
+ config?:
20
+ | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
21
+ | undefined
22
+ ) => Promise<import("@smithy/types").UserAgent>;
21
23
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
22
24
  maxAttempts: number | import("@smithy/types").Provider<number>;
23
25
  region: string | import("@smithy/types").Provider<string>;
@@ -29,6 +31,7 @@ export declare const getRuntimeConfig: (
29
31
  streamCollector: import("@smithy/types").StreamCollector;
30
32
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
31
33
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
34
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
32
35
  apiVersion: string;
33
36
  cacheMiddleware?: boolean | undefined;
34
37
  urlParser: import("@smithy/types").UrlParser;
@@ -24,9 +24,9 @@ export declare const getRuntimeConfig: (
24
24
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
25
25
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
26
26
  region: string | import("@smithy/types").Provider<any>;
27
- defaultUserAgentProvider: import("@smithy/types").Provider<
28
- import("@smithy/types").UserAgent
29
- >;
27
+ defaultUserAgentProvider: (
28
+ config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
29
+ ) => Promise<import("@smithy/types").UserAgent>;
30
30
  credentialDefaultProvider: (
31
31
  input: any
32
32
  ) => import("@smithy/types").AwsCredentialIdentityProvider;
@@ -41,6 +41,10 @@ export declare const getRuntimeConfig: (
41
41
  import("@smithy/smithy-client").DefaultsMode
42
42
  >;
43
43
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
44
+ userAgentAppId?:
45
+ | string
46
+ | import("@smithy/types").Provider<string | undefined>
47
+ | undefined;
44
48
  retryStrategy?:
45
49
  | import("@smithy/types").RetryStrategy
46
50
  | import("@smithy/types").RetryStrategyV2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-bedrock-agent-runtime",
3
3
  "description": "AWS SDK for JavaScript Bedrock Agent Runtime Client for Node.js, Browser and React Native",
4
- "version": "3.662.0",
4
+ "version": "3.664.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-bedrock-agent-runtime",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.662.0",
24
- "@aws-sdk/client-sts": "3.662.0",
25
- "@aws-sdk/core": "3.662.0",
26
- "@aws-sdk/credential-provider-node": "3.662.0",
27
- "@aws-sdk/middleware-host-header": "3.662.0",
28
- "@aws-sdk/middleware-logger": "3.662.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.662.0",
30
- "@aws-sdk/middleware-user-agent": "3.662.0",
31
- "@aws-sdk/region-config-resolver": "3.662.0",
32
- "@aws-sdk/types": "3.662.0",
33
- "@aws-sdk/util-endpoints": "3.662.0",
34
- "@aws-sdk/util-user-agent-browser": "3.662.0",
35
- "@aws-sdk/util-user-agent-node": "3.662.0",
23
+ "@aws-sdk/client-sso-oidc": "3.664.0",
24
+ "@aws-sdk/client-sts": "3.664.0",
25
+ "@aws-sdk/core": "3.664.0",
26
+ "@aws-sdk/credential-provider-node": "3.664.0",
27
+ "@aws-sdk/middleware-host-header": "3.664.0",
28
+ "@aws-sdk/middleware-logger": "3.664.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.664.0",
30
+ "@aws-sdk/middleware-user-agent": "3.664.0",
31
+ "@aws-sdk/region-config-resolver": "3.664.0",
32
+ "@aws-sdk/types": "3.664.0",
33
+ "@aws-sdk/util-endpoints": "3.664.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.664.0",
35
+ "@aws-sdk/util-user-agent-node": "3.664.0",
36
36
  "@smithy/config-resolver": "^3.0.9",
37
37
  "@smithy/core": "^2.4.7",
38
38
  "@smithy/eventstream-serde-browser": "^3.0.10",