@aws-sdk/client-sso 3.387.0 → 3.395.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/SSOClient.js +4 -2
- package/dist-cjs/clientConfiguration.js +2 -0
- package/dist-cjs/runtimeConfig.shared.js +1 -0
- package/dist-cjs/runtimeExtensions.js +16 -0
- package/dist-es/SSOClient.js +4 -2
- package/dist-es/clientConfiguration.js +1 -0
- package/dist-es/runtimeConfig.shared.js +1 -0
- package/dist-es/runtimeExtensions.js +12 -0
- package/dist-types/SSOClient.d.ts +6 -1
- package/dist-types/clientConfiguration.d.ts +6 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/SSOClient.d.ts +3 -0
- package/dist-types/ts3.4/clientConfiguration.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +25 -25
package/dist-cjs/SSOClient.js
CHANGED
|
@@ -13,6 +13,7 @@ const smithy_client_1 = require("@smithy/smithy-client");
|
|
|
13
13
|
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
14
14
|
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
15
15
|
const runtimeConfig_1 = require("./runtimeConfig");
|
|
16
|
+
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
16
17
|
class SSOClient extends smithy_client_1.Client {
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
@@ -22,8 +23,9 @@ class SSOClient extends smithy_client_1.Client {
|
|
|
22
23
|
const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
|
|
23
24
|
const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
|
|
24
25
|
const _config_6 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_5);
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
const _config_7 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_6, configuration?.extensions || []);
|
|
27
|
+
super(_config_7);
|
|
28
|
+
this.config = _config_7;
|
|
27
29
|
this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
@@ -12,6 +12,7 @@ const getRuntimeConfig = (config) => ({
|
|
|
12
12
|
base64Encoder: config?.base64Encoder ?? util_base64_1.toBase64,
|
|
13
13
|
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
14
14
|
endpointProvider: config?.endpointProvider ?? endpointResolver_1.defaultEndpointResolver,
|
|
15
|
+
extensions: config?.extensions ?? [],
|
|
15
16
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
16
17
|
serviceId: config?.serviceId ?? "SSO",
|
|
17
18
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.resolveRuntimeExtensions = void 0;
|
|
4
|
+
const types_1 = require("@smithy/types");
|
|
5
|
+
const asPartial = (t) => t;
|
|
6
|
+
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
7
|
+
const clientConfiguration = {
|
|
8
|
+
...asPartial((0, types_1.getDefaultClientConfiguration)(runtimeConfig)),
|
|
9
|
+
};
|
|
10
|
+
extensions.forEach((extension) => extension.configureClient(clientConfiguration));
|
|
11
|
+
return {
|
|
12
|
+
...runtimeConfig,
|
|
13
|
+
...(0, types_1.resolveDefaultRuntimeConfig)(clientConfiguration),
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
exports.resolveRuntimeExtensions = resolveRuntimeExtensions;
|
package/dist-es/SSOClient.js
CHANGED
|
@@ -9,6 +9,7 @@ import { getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry";
|
|
|
9
9
|
import { Client as __Client, } from "@smithy/smithy-client";
|
|
10
10
|
import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters";
|
|
11
11
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
12
|
+
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
12
13
|
export { __Client };
|
|
13
14
|
export class SSOClient extends __Client {
|
|
14
15
|
constructor(...[configuration]) {
|
|
@@ -19,8 +20,9 @@ export class SSOClient extends __Client {
|
|
|
19
20
|
const _config_4 = resolveRetryConfig(_config_3);
|
|
20
21
|
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
21
22
|
const _config_6 = resolveUserAgentConfig(_config_5);
|
|
22
|
-
|
|
23
|
-
|
|
23
|
+
const _config_7 = resolveRuntimeExtensions(_config_6, configuration?.extensions || []);
|
|
24
|
+
super(_config_7);
|
|
25
|
+
this.config = _config_7;
|
|
24
26
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
25
27
|
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
26
28
|
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -9,6 +9,7 @@ export const getRuntimeConfig = (config) => ({
|
|
|
9
9
|
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
10
10
|
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
11
11
|
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
12
|
+
extensions: config?.extensions ?? [],
|
|
12
13
|
logger: config?.logger ?? new NoOpLogger(),
|
|
13
14
|
serviceId: config?.serviceId ?? "SSO",
|
|
14
15
|
urlParser: config?.urlParser ?? parseUrl,
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { getDefaultClientConfiguration, resolveDefaultRuntimeConfig } from "@smithy/types";
|
|
2
|
+
const asPartial = (t) => t;
|
|
3
|
+
export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
4
|
+
const clientConfiguration = {
|
|
5
|
+
...asPartial(getDefaultClientConfiguration(runtimeConfig)),
|
|
6
|
+
};
|
|
7
|
+
extensions.forEach((extension) => extension.configureClient(clientConfiguration));
|
|
8
|
+
return {
|
|
9
|
+
...runtimeConfig,
|
|
10
|
+
...resolveDefaultRuntimeConfig(clientConfiguration),
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -11,6 +11,7 @@ import { ListAccountRolesCommandInput, ListAccountRolesCommandOutput } from "./c
|
|
|
11
11
|
import { ListAccountsCommandInput, ListAccountsCommandOutput } from "./commands/ListAccountsCommand";
|
|
12
12
|
import { LogoutCommandInput, LogoutCommandOutput } from "./commands/LogoutCommand";
|
|
13
13
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
14
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
14
15
|
export { __Client };
|
|
15
16
|
/**
|
|
16
17
|
* @public
|
|
@@ -113,6 +114,10 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
113
114
|
* Optional logger for logging debug/info/warn/error.
|
|
114
115
|
*/
|
|
115
116
|
logger?: __Logger;
|
|
117
|
+
/**
|
|
118
|
+
* Optional extensions
|
|
119
|
+
*/
|
|
120
|
+
extensions?: RuntimeExtension[];
|
|
116
121
|
/**
|
|
117
122
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
118
123
|
*/
|
|
@@ -132,7 +137,7 @@ export interface SSOClientConfig extends SSOClientConfigType {
|
|
|
132
137
|
/**
|
|
133
138
|
* @public
|
|
134
139
|
*/
|
|
135
|
-
export type SSOClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
140
|
+
export type SSOClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
136
141
|
/**
|
|
137
142
|
* @public
|
|
138
143
|
*
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
25
25
|
disableHostPrefix: boolean;
|
|
26
26
|
serviceId: string;
|
|
27
27
|
logger: import("@smithy/types").Logger;
|
|
28
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
28
29
|
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;
|
|
29
30
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
31
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
25
25
|
disableHostPrefix: boolean;
|
|
26
26
|
serviceId: string;
|
|
27
27
|
logger: import("@smithy/types").Logger;
|
|
28
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
28
29
|
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;
|
|
29
30
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
31
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
23
23
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
24
24
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
25
|
logger: import("@smithy/types").Logger;
|
|
26
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
26
27
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
27
28
|
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;
|
|
28
29
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
@@ -10,6 +10,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger | undefined;
|
|
12
12
|
}) => import("@smithy/types").EndpointV2;
|
|
13
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
13
14
|
logger: import("@smithy/types").Logger;
|
|
14
15
|
serviceId: string;
|
|
15
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SSOClientConfiguration } from "./clientConfiguration";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface RuntimeExtension {
|
|
6
|
+
configureClient(clientConfiguration: SSOClientConfiguration): void;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export interface RuntimeExtensionsConfig {
|
|
12
|
+
extensions: RuntimeExtension[];
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
|
|
@@ -61,6 +61,7 @@ import {
|
|
|
61
61
|
ClientResolvedEndpointParameters,
|
|
62
62
|
EndpointParameters,
|
|
63
63
|
} from "./endpoint/EndpointParameters";
|
|
64
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
64
65
|
export { __Client };
|
|
65
66
|
export type ServiceInputTypes =
|
|
66
67
|
| GetRoleCredentialsCommandInput
|
|
@@ -93,6 +94,7 @@ export interface ClientDefaults
|
|
|
93
94
|
maxAttempts?: number | __Provider<number>;
|
|
94
95
|
retryMode?: string | __Provider<string>;
|
|
95
96
|
logger?: __Logger;
|
|
97
|
+
extensions?: RuntimeExtension[];
|
|
96
98
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
97
99
|
}
|
|
98
100
|
export type SSOClientConfigType = Partial<
|
|
@@ -109,6 +111,7 @@ export interface SSOClientConfig extends SSOClientConfigType {}
|
|
|
109
111
|
export type SSOClientResolvedConfigType =
|
|
110
112
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
111
113
|
Required<ClientDefaults> &
|
|
114
|
+
RuntimeExtensionsConfig &
|
|
112
115
|
RegionResolvedConfig &
|
|
113
116
|
EndpointResolvedConfig<EndpointParameters> &
|
|
114
117
|
RetryResolvedConfig &
|
|
@@ -33,6 +33,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
33
33
|
disableHostPrefix: boolean;
|
|
34
34
|
serviceId: string;
|
|
35
35
|
logger: import("@smithy/types").Logger;
|
|
36
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
36
37
|
endpoint?:
|
|
37
38
|
| ((
|
|
38
39
|
| string
|
|
@@ -33,6 +33,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
33
33
|
disableHostPrefix: boolean;
|
|
34
34
|
serviceId: string;
|
|
35
35
|
logger: import("@smithy/types").Logger;
|
|
36
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
36
37
|
endpoint?:
|
|
37
38
|
| ((
|
|
38
39
|
| string
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
29
29
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
30
30
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
31
31
|
logger: import("@smithy/types").Logger;
|
|
32
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
33
|
defaultsMode:
|
|
33
34
|
| import("@smithy/smithy-client").DefaultsMode
|
|
34
35
|
| import("@smithy/types").Provider<
|
|
@@ -10,6 +10,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
10
10
|
logger?: import("@smithy/types").Logger | undefined;
|
|
11
11
|
}
|
|
12
12
|
) => import("@smithy/types").EndpointV2;
|
|
13
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
13
14
|
logger: import("@smithy/types").Logger;
|
|
14
15
|
serviceId: string;
|
|
15
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SSOClientConfiguration } from "./clientConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configureClient(clientConfiguration: SSOClientConfiguration): void;
|
|
4
|
+
}
|
|
5
|
+
export interface RuntimeExtensionsConfig {
|
|
6
|
+
extensions: RuntimeExtension[];
|
|
7
|
+
}
|
|
8
|
+
export declare const resolveRuntimeExtensions: (
|
|
9
|
+
runtimeConfig: any,
|
|
10
|
+
extensions: RuntimeExtension[]
|
|
11
|
+
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sso",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.395.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,34 +21,34 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
25
|
-
"@aws-sdk/middleware-logger": "3.
|
|
26
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
27
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
-
"@aws-sdk/types": "3.
|
|
29
|
-
"@aws-sdk/util-endpoints": "3.
|
|
30
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
31
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
32
|
-
"@smithy/config-resolver": "^2.0.
|
|
33
|
-
"@smithy/fetch-http-handler": "^2.0.
|
|
34
|
-
"@smithy/hash-node": "^2.0.
|
|
35
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
36
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
37
|
-
"@smithy/middleware-endpoint": "^2.0.
|
|
38
|
-
"@smithy/middleware-retry": "^2.0.
|
|
39
|
-
"@smithy/middleware-serde": "^2.0.
|
|
24
|
+
"@aws-sdk/middleware-host-header": "3.391.0",
|
|
25
|
+
"@aws-sdk/middleware-logger": "3.391.0",
|
|
26
|
+
"@aws-sdk/middleware-recursion-detection": "3.391.0",
|
|
27
|
+
"@aws-sdk/middleware-user-agent": "3.391.0",
|
|
28
|
+
"@aws-sdk/types": "3.391.0",
|
|
29
|
+
"@aws-sdk/util-endpoints": "3.391.0",
|
|
30
|
+
"@aws-sdk/util-user-agent-browser": "3.391.0",
|
|
31
|
+
"@aws-sdk/util-user-agent-node": "3.391.0",
|
|
32
|
+
"@smithy/config-resolver": "^2.0.3",
|
|
33
|
+
"@smithy/fetch-http-handler": "^2.0.3",
|
|
34
|
+
"@smithy/hash-node": "^2.0.3",
|
|
35
|
+
"@smithy/invalid-dependency": "^2.0.3",
|
|
36
|
+
"@smithy/middleware-content-length": "^2.0.3",
|
|
37
|
+
"@smithy/middleware-endpoint": "^2.0.3",
|
|
38
|
+
"@smithy/middleware-retry": "^2.0.3",
|
|
39
|
+
"@smithy/middleware-serde": "^2.0.3",
|
|
40
40
|
"@smithy/middleware-stack": "^2.0.0",
|
|
41
|
-
"@smithy/node-config-provider": "^2.0.
|
|
42
|
-
"@smithy/node-http-handler": "^2.0.
|
|
43
|
-
"@smithy/protocol-http": "^2.0.
|
|
44
|
-
"@smithy/smithy-client": "^2.0.
|
|
45
|
-
"@smithy/types": "^2.
|
|
46
|
-
"@smithy/url-parser": "^2.0.
|
|
41
|
+
"@smithy/node-config-provider": "^2.0.3",
|
|
42
|
+
"@smithy/node-http-handler": "^2.0.3",
|
|
43
|
+
"@smithy/protocol-http": "^2.0.3",
|
|
44
|
+
"@smithy/smithy-client": "^2.0.3",
|
|
45
|
+
"@smithy/types": "^2.2.0",
|
|
46
|
+
"@smithy/url-parser": "^2.0.3",
|
|
47
47
|
"@smithy/util-base64": "^2.0.0",
|
|
48
48
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
49
49
|
"@smithy/util-body-length-node": "^2.0.0",
|
|
50
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
51
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
50
|
+
"@smithy/util-defaults-mode-browser": "^2.0.3",
|
|
51
|
+
"@smithy/util-defaults-mode-node": "^2.0.3",
|
|
52
52
|
"@smithy/util-retry": "^2.0.0",
|
|
53
53
|
"@smithy/util-utf8": "^2.0.0",
|
|
54
54
|
"tslib": "^2.5.0"
|