@aws-sdk/client-timestream-query 3.388.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/TimestreamQueryClient.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/TimestreamQueryClient.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/TimestreamQueryClient.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/TimestreamQueryClient.d.ts +3 -0
- package/dist-types/ts3.4/clientConfiguration.d.ts +3 -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 +13 -0
- package/package.json +29 -29
|
@@ -16,6 +16,7 @@ Object.defineProperty(exports, "__Client", { enumerable: true, get: function ()
|
|
|
16
16
|
const DescribeEndpointsCommand_1 = require("./commands/DescribeEndpointsCommand");
|
|
17
17
|
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
18
18
|
const runtimeConfig_1 = require("./runtimeConfig");
|
|
19
|
+
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
19
20
|
class TimestreamQueryClient extends smithy_client_1.Client {
|
|
20
21
|
constructor(...[configuration]) {
|
|
21
22
|
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
@@ -29,8 +30,9 @@ class TimestreamQueryClient extends smithy_client_1.Client {
|
|
|
29
30
|
const _config_8 = (0, middleware_endpoint_discovery_1.resolveEndpointDiscoveryConfig)(_config_7, {
|
|
30
31
|
endpointDiscoveryCommandCtor: DescribeEndpointsCommand_1.DescribeEndpointsCommand,
|
|
31
32
|
});
|
|
32
|
-
|
|
33
|
-
|
|
33
|
+
const _config_9 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_8, configuration?.extensions || []);
|
|
34
|
+
super(_config_9);
|
|
35
|
+
this.config = _config_9;
|
|
34
36
|
this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
|
|
35
37
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
36
38
|
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 ?? "Timestream Query",
|
|
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;
|
|
@@ -12,6 +12,7 @@ import { Client as __Client, } from "@smithy/smithy-client";
|
|
|
12
12
|
import { DescribeEndpointsCommand, } from "./commands/DescribeEndpointsCommand";
|
|
13
13
|
import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters";
|
|
14
14
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
15
|
+
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
16
|
export { __Client };
|
|
16
17
|
export class TimestreamQueryClient extends __Client {
|
|
17
18
|
constructor(...[configuration]) {
|
|
@@ -26,8 +27,9 @@ export class TimestreamQueryClient extends __Client {
|
|
|
26
27
|
const _config_8 = resolveEndpointDiscoveryConfig(_config_7, {
|
|
27
28
|
endpointDiscoveryCommandCtor: DescribeEndpointsCommand,
|
|
28
29
|
});
|
|
29
|
-
|
|
30
|
-
|
|
30
|
+
const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
|
|
31
|
+
super(_config_9);
|
|
32
|
+
this.config = _config_9;
|
|
31
33
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
32
34
|
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
33
35
|
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 ?? "Timestream Query",
|
|
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
|
+
};
|
|
@@ -23,6 +23,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
23
23
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
24
24
|
import { UpdateScheduledQueryCommandInput, UpdateScheduledQueryCommandOutput } from "./commands/UpdateScheduledQueryCommand";
|
|
25
25
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
26
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
26
27
|
export { __Client };
|
|
27
28
|
/**
|
|
28
29
|
* @public
|
|
@@ -136,6 +137,10 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
136
137
|
* Optional logger for logging debug/info/warn/error.
|
|
137
138
|
*/
|
|
138
139
|
logger?: __Logger;
|
|
140
|
+
/**
|
|
141
|
+
* Optional extensions
|
|
142
|
+
*/
|
|
143
|
+
extensions?: RuntimeExtension[];
|
|
139
144
|
/**
|
|
140
145
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
141
146
|
*/
|
|
@@ -155,7 +160,7 @@ export interface TimestreamQueryClientConfig extends TimestreamQueryClientConfig
|
|
|
155
160
|
/**
|
|
156
161
|
* @public
|
|
157
162
|
*/
|
|
158
|
-
export type TimestreamQueryClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & EndpointDiscoveryResolvedConfig & ClientResolvedEndpointParameters;
|
|
163
|
+
export type TimestreamQueryClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & EndpointDiscoveryResolvedConfig & ClientResolvedEndpointParameters;
|
|
159
164
|
/**
|
|
160
165
|
* @public
|
|
161
166
|
*
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: TimestreamQueryClientConfig) =>
|
|
|
27
27
|
disableHostPrefix: boolean;
|
|
28
28
|
serviceId: string;
|
|
29
29
|
logger: import("@smithy/types").Logger;
|
|
30
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
31
|
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;
|
|
31
32
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
33
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: TimestreamQueryClientConfig) =>
|
|
|
27
27
|
disableHostPrefix: boolean;
|
|
28
28
|
serviceId: string;
|
|
29
29
|
logger: import("@smithy/types").Logger;
|
|
30
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
31
|
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;
|
|
31
32
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
33
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: TimestreamQueryClientConfig) =>
|
|
|
25
25
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
26
26
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
27
27
|
logger: import("@smithy/types").Logger;
|
|
28
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
28
29
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
29
30
|
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;
|
|
30
31
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
@@ -10,6 +10,7 @@ export declare const getRuntimeConfig: (config: TimestreamQueryClientConfig) =>
|
|
|
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 { TimestreamQueryClientConfiguration } from "./clientConfiguration";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface RuntimeExtension {
|
|
6
|
+
configureClient(clientConfiguration: TimestreamQueryClientConfiguration): 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;
|
|
@@ -103,6 +103,7 @@ import {
|
|
|
103
103
|
ClientResolvedEndpointParameters,
|
|
104
104
|
EndpointParameters,
|
|
105
105
|
} from "./endpoint/EndpointParameters";
|
|
106
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
106
107
|
export { __Client };
|
|
107
108
|
export type ServiceInputTypes =
|
|
108
109
|
| CancelQueryCommandInput
|
|
@@ -155,6 +156,7 @@ export interface ClientDefaults
|
|
|
155
156
|
maxAttempts?: number | __Provider<number>;
|
|
156
157
|
retryMode?: string | __Provider<string>;
|
|
157
158
|
logger?: __Logger;
|
|
159
|
+
extensions?: RuntimeExtension[];
|
|
158
160
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
159
161
|
}
|
|
160
162
|
export type TimestreamQueryClientConfigType = Partial<
|
|
@@ -174,6 +176,7 @@ export interface TimestreamQueryClientConfig
|
|
|
174
176
|
export type TimestreamQueryClientResolvedConfigType =
|
|
175
177
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
176
178
|
Required<ClientDefaults> &
|
|
179
|
+
RuntimeExtensionsConfig &
|
|
177
180
|
RegionResolvedConfig &
|
|
178
181
|
EndpointResolvedConfig<EndpointParameters> &
|
|
179
182
|
RetryResolvedConfig &
|
|
@@ -37,6 +37,7 @@ export declare const getRuntimeConfig: (
|
|
|
37
37
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
38
38
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
41
|
defaultsMode:
|
|
41
42
|
| import("@smithy/smithy-client").DefaultsMode
|
|
42
43
|
| import("@smithy/types").Provider<
|
|
@@ -12,6 +12,7 @@ export declare const getRuntimeConfig: (
|
|
|
12
12
|
logger?: import("@smithy/types").Logger | undefined;
|
|
13
13
|
}
|
|
14
14
|
) => import("@smithy/types").EndpointV2;
|
|
15
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
16
|
logger: import("@smithy/types").Logger;
|
|
16
17
|
serviceId: string;
|
|
17
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { TimestreamQueryClientConfiguration } from "./clientConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configureClient(
|
|
4
|
+
clientConfiguration: TimestreamQueryClientConfiguration
|
|
5
|
+
): void;
|
|
6
|
+
}
|
|
7
|
+
export interface RuntimeExtensionsConfig {
|
|
8
|
+
extensions: RuntimeExtension[];
|
|
9
|
+
}
|
|
10
|
+
export declare const resolveRuntimeExtensions: (
|
|
11
|
+
runtimeConfig: any,
|
|
12
|
+
extensions: RuntimeExtension[]
|
|
13
|
+
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-timestream-query",
|
|
3
3
|
"description": "AWS SDK for JavaScript Timestream Query 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,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-endpoint-discovery": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-signing": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.0.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.0.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.395.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.395.0",
|
|
26
|
+
"@aws-sdk/middleware-endpoint-discovery": "3.391.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.391.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.391.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.391.0",
|
|
30
|
+
"@aws-sdk/middleware-signing": "3.391.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.391.0",
|
|
32
|
+
"@aws-sdk/types": "3.391.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.391.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.391.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.391.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.3",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.0.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.3",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.3",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.3",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.0.3",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.3",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.3",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.0",
|
|
45
|
-
"@smithy/node-config-provider": "^2.0.
|
|
46
|
-
"@smithy/node-http-handler": "^2.0.
|
|
47
|
-
"@smithy/protocol-http": "^2.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.0.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
45
|
+
"@smithy/node-config-provider": "^2.0.3",
|
|
46
|
+
"@smithy/node-http-handler": "^2.0.3",
|
|
47
|
+
"@smithy/protocol-http": "^2.0.3",
|
|
48
|
+
"@smithy/smithy-client": "^2.0.3",
|
|
49
|
+
"@smithy/types": "^2.2.0",
|
|
50
|
+
"@smithy/url-parser": "^2.0.3",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.0.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.3",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.3",
|
|
56
56
|
"@smithy/util-retry": "^2.0.0",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0",
|