@aws-sdk/nested-clients 3.983.0 → 3.985.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.
@@ -10,7 +10,7 @@ import { resolveEndpointConfig, } from "@smithy/middleware-endpoint";
10
10
  import { getRetryPlugin, resolveRetryConfig, } from "@smithy/middleware-retry";
11
11
  import { Client as __Client, } from "@smithy/smithy-client";
12
12
  import { defaultSigninHttpAuthSchemeParametersProvider, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider";
13
- import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters";
13
+ import { resolveClientEndpointParameters } from "./endpoint/EndpointParameters";
14
14
  import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
15
15
  import { resolveRuntimeExtensions } from "./runtimeExtensions";
16
16
  export { __Client };
@@ -1,4 +1,4 @@
1
- import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
1
+ import { resolveAwsSdkSigV4Config } from "@aws-sdk/core";
2
2
  import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
3
3
  export const defaultSigninHttpAuthSchemeParametersProvider = async (config, context, input) => {
4
4
  return {
@@ -10,7 +10,7 @@ import { resolveEndpointConfig, } from "@smithy/middleware-endpoint";
10
10
  import { getRetryPlugin, resolveRetryConfig, } from "@smithy/middleware-retry";
11
11
  import { Client as __Client, } from "@smithy/smithy-client";
12
12
  import { defaultSSOOIDCHttpAuthSchemeParametersProvider, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider";
13
- import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters";
13
+ import { resolveClientEndpointParameters } from "./endpoint/EndpointParameters";
14
14
  import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
15
15
  import { resolveRuntimeExtensions } from "./runtimeExtensions";
16
16
  export { __Client };
@@ -1,4 +1,4 @@
1
- import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
1
+ import { resolveAwsSdkSigV4Config } from "@aws-sdk/core";
2
2
  import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
3
3
  export const defaultSSOOIDCHttpAuthSchemeParametersProvider = async (config, context, input) => {
4
4
  return {
@@ -1,6 +1,6 @@
1
1
  import { createAggregatedClient } from "@smithy/smithy-client";
2
2
  import { AssumeRoleCommand } from "./commands/AssumeRoleCommand";
3
- import { AssumeRoleWithWebIdentityCommand, } from "./commands/AssumeRoleWithWebIdentityCommand";
3
+ import { AssumeRoleWithWebIdentityCommand } from "./commands/AssumeRoleWithWebIdentityCommand";
4
4
  import { STSClient } from "./STSClient";
5
5
  const commands = {
6
6
  AssumeRoleCommand,
@@ -10,7 +10,7 @@ import { resolveEndpointConfig, } from "@smithy/middleware-endpoint";
10
10
  import { getRetryPlugin, resolveRetryConfig, } from "@smithy/middleware-retry";
11
11
  import { Client as __Client, } from "@smithy/smithy-client";
12
12
  import { defaultSTSHttpAuthSchemeParametersProvider, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider";
13
- import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters";
13
+ import { resolveClientEndpointParameters } from "./endpoint/EndpointParameters";
14
14
  import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
15
15
  import { resolveRuntimeExtensions } from "./runtimeExtensions";
16
16
  export { __Client };
@@ -1,4 +1,4 @@
1
- import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
1
+ import { resolveAwsSdkSigV4Config } from "@aws-sdk/core";
2
2
  import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
3
3
  import { STSClient } from "../STSClient";
4
4
  export const defaultSTSHttpAuthSchemeParametersProvider = async (config, context, input) => {
@@ -5,10 +5,11 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
5
5
  import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
8
- import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
8
+ import type { AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
9
+ import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser } from "@smithy/types";
9
10
  import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
- import { CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput } from "./commands/CreateOAuth2TokenCommand";
11
- import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
11
+ import type { CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput } from "./commands/CreateOAuth2TokenCommand";
12
+ import type { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
12
13
  import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
13
14
  export { __Client };
14
15
  /**
@@ -1,4 +1,4 @@
1
- import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
1
+ import type { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
2
2
  import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
3
3
  import { type SigninClientResolvedConfig } from "../SigninClient";
4
4
  /**
@@ -1,5 +1,5 @@
1
1
  import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
- import { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand";
2
+ import type { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand";
3
3
  import { SSOOIDCClient } from "./SSOOIDCClient";
4
4
  export interface SSOOIDC {
5
5
  /**
@@ -5,10 +5,11 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
5
5
  import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
8
- import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, Provider, UserAgent as __UserAgent } from "@smithy/types";
8
+ import type { Provider, UserAgent as __UserAgent } from "@smithy/types";
9
+ import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser } from "@smithy/types";
9
10
  import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
- import { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand";
11
- import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
11
+ import type { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand";
12
+ import type { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
12
13
  import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
13
14
  export { __Client };
14
15
  /**
@@ -1,4 +1,4 @@
1
- import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
1
+ import type { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
2
2
  import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
3
3
  import { type SSOOIDCClientResolvedConfig } from "../SSOOIDCClient";
4
4
  /**
@@ -1,6 +1,6 @@
1
1
  import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
- import { AssumeRoleCommandInput, AssumeRoleCommandOutput } from "./commands/AssumeRoleCommand";
3
- import { AssumeRoleWithWebIdentityCommandInput, AssumeRoleWithWebIdentityCommandOutput } from "./commands/AssumeRoleWithWebIdentityCommand";
2
+ import type { AssumeRoleCommandInput, AssumeRoleCommandOutput } from "./commands/AssumeRoleCommand";
3
+ import type { AssumeRoleWithWebIdentityCommandInput, AssumeRoleWithWebIdentityCommandOutput } from "./commands/AssumeRoleWithWebIdentityCommand";
4
4
  import { STSClient } from "./STSClient";
5
5
  export interface STS {
6
6
  /**
@@ -5,11 +5,12 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
5
5
  import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
8
- import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
8
+ import type { AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
9
+ import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser } from "@smithy/types";
9
10
  import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
- import { AssumeRoleCommandInput, AssumeRoleCommandOutput } from "./commands/AssumeRoleCommand";
11
- import { AssumeRoleWithWebIdentityCommandInput, AssumeRoleWithWebIdentityCommandOutput } from "./commands/AssumeRoleWithWebIdentityCommand";
12
- import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
11
+ import type { AssumeRoleCommandInput, AssumeRoleCommandOutput } from "./commands/AssumeRoleCommand";
12
+ import type { AssumeRoleWithWebIdentityCommandInput, AssumeRoleWithWebIdentityCommandOutput } from "./commands/AssumeRoleWithWebIdentityCommand";
13
+ import type { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
13
14
  import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
14
15
  export { __Client };
15
16
  /**
@@ -1,5 +1,6 @@
1
- import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
2
- import { type HandlerExecutionContext, type HttpAuthScheme, type HttpAuthSchemeParameters, type HttpAuthSchemeParametersProvider, type HttpAuthSchemeProvider, type Provider, Client } from "@smithy/types";
1
+ import type { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
2
+ import type { Client } from "@smithy/types";
3
+ import { type HandlerExecutionContext, type HttpAuthScheme, type HttpAuthSchemeParameters, type HttpAuthSchemeParametersProvider, type HttpAuthSchemeProvider, type Provider } from "@smithy/types";
3
4
  import { type STSClientResolvedConfig } from "../STSClient";
4
5
  /**
5
6
  * @internal
@@ -25,6 +25,11 @@ import {
25
25
  SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
26
26
  Client as __Client,
27
27
  } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ Provider,
31
+ UserAgent as __UserAgent,
32
+ } from "@smithy/types";
28
33
  import {
29
34
  BodyLengthCalculator as __BodyLengthCalculator,
30
35
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
@@ -37,9 +42,6 @@ import {
37
42
  Provider as __Provider,
38
43
  StreamCollector as __StreamCollector,
39
44
  UrlParser as __UrlParser,
40
- AwsCredentialIdentityProvider,
41
- Provider,
42
- UserAgent as __UserAgent,
43
45
  } from "@smithy/types";
44
46
  import {
45
47
  HttpAuthSchemeInputConfig,
@@ -25,6 +25,7 @@ import {
25
25
  SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
26
26
  Client as __Client,
27
27
  } from "@smithy/smithy-client";
28
+ import { Provider, UserAgent as __UserAgent } from "@smithy/types";
28
29
  import {
29
30
  BodyLengthCalculator as __BodyLengthCalculator,
30
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
@@ -37,8 +38,6 @@ import {
37
38
  Provider as __Provider,
38
39
  StreamCollector as __StreamCollector,
39
40
  UrlParser as __UrlParser,
40
- Provider,
41
- UserAgent as __UserAgent,
42
41
  } from "@smithy/types";
43
42
  import {
44
43
  HttpAuthSchemeInputConfig,
@@ -25,6 +25,11 @@ import {
25
25
  SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
26
26
  Client as __Client,
27
27
  } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ Provider,
31
+ UserAgent as __UserAgent,
32
+ } from "@smithy/types";
28
33
  import {
29
34
  BodyLengthCalculator as __BodyLengthCalculator,
30
35
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
@@ -37,9 +42,6 @@ import {
37
42
  Provider as __Provider,
38
43
  StreamCollector as __StreamCollector,
39
44
  UrlParser as __UrlParser,
40
- AwsCredentialIdentityProvider,
41
- Provider,
42
- UserAgent as __UserAgent,
43
45
  } from "@smithy/types";
44
46
  import {
45
47
  HttpAuthSchemeInputConfig,
@@ -3,6 +3,7 @@ import {
3
3
  AwsSdkSigV4AuthResolvedConfig,
4
4
  AwsSdkSigV4PreviouslyResolved,
5
5
  } from "@aws-sdk/core";
6
+ import { Client } from "@smithy/types";
6
7
  import {
7
8
  HandlerExecutionContext,
8
9
  HttpAuthScheme,
@@ -10,7 +11,6 @@ import {
10
11
  HttpAuthSchemeParametersProvider,
11
12
  HttpAuthSchemeProvider,
12
13
  Provider,
13
- Client,
14
14
  } from "@smithy/types";
15
15
  import { STSClientResolvedConfig } from "../STSClient";
16
16
  export interface STSHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/nested-clients",
3
- "version": "3.983.0",
3
+ "version": "3.985.0",
4
4
  "description": "Nested clients for AWS SDK packages.",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -29,37 +29,37 @@
29
29
  "dependencies": {
30
30
  "@aws-crypto/sha256-browser": "5.2.0",
31
31
  "@aws-crypto/sha256-js": "5.2.0",
32
- "@aws-sdk/core": "^3.973.6",
32
+ "@aws-sdk/core": "^3.973.7",
33
33
  "@aws-sdk/middleware-host-header": "^3.972.3",
34
34
  "@aws-sdk/middleware-logger": "^3.972.3",
35
35
  "@aws-sdk/middleware-recursion-detection": "^3.972.3",
36
- "@aws-sdk/middleware-user-agent": "^3.972.6",
36
+ "@aws-sdk/middleware-user-agent": "^3.972.7",
37
37
  "@aws-sdk/region-config-resolver": "^3.972.3",
38
38
  "@aws-sdk/types": "^3.973.1",
39
- "@aws-sdk/util-endpoints": "3.983.0",
39
+ "@aws-sdk/util-endpoints": "3.985.0",
40
40
  "@aws-sdk/util-user-agent-browser": "^3.972.3",
41
- "@aws-sdk/util-user-agent-node": "^3.972.4",
41
+ "@aws-sdk/util-user-agent-node": "^3.972.5",
42
42
  "@smithy/config-resolver": "^4.4.6",
43
- "@smithy/core": "^3.22.0",
43
+ "@smithy/core": "^3.22.1",
44
44
  "@smithy/fetch-http-handler": "^5.3.9",
45
45
  "@smithy/hash-node": "^4.2.8",
46
46
  "@smithy/invalid-dependency": "^4.2.8",
47
47
  "@smithy/middleware-content-length": "^4.2.8",
48
- "@smithy/middleware-endpoint": "^4.4.12",
49
- "@smithy/middleware-retry": "^4.4.29",
48
+ "@smithy/middleware-endpoint": "^4.4.13",
49
+ "@smithy/middleware-retry": "^4.4.30",
50
50
  "@smithy/middleware-serde": "^4.2.9",
51
51
  "@smithy/middleware-stack": "^4.2.8",
52
52
  "@smithy/node-config-provider": "^4.3.8",
53
- "@smithy/node-http-handler": "^4.4.8",
53
+ "@smithy/node-http-handler": "^4.4.9",
54
54
  "@smithy/protocol-http": "^5.3.8",
55
- "@smithy/smithy-client": "^4.11.1",
55
+ "@smithy/smithy-client": "^4.11.2",
56
56
  "@smithy/types": "^4.12.0",
57
57
  "@smithy/url-parser": "^4.2.8",
58
58
  "@smithy/util-base64": "^4.3.0",
59
59
  "@smithy/util-body-length-browser": "^4.2.0",
60
60
  "@smithy/util-body-length-node": "^4.2.1",
61
- "@smithy/util-defaults-mode-browser": "^4.3.28",
62
- "@smithy/util-defaults-mode-node": "^4.2.31",
61
+ "@smithy/util-defaults-mode-browser": "^4.3.29",
62
+ "@smithy/util-defaults-mode-node": "^4.2.32",
63
63
  "@smithy/util-endpoints": "^3.2.8",
64
64
  "@smithy/util-middleware": "^4.2.8",
65
65
  "@smithy/util-retry": "^4.2.8",