@aws-sdk/client-transcribe-streaming 3.614.0 → 3.620.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 +8 -8
- package/dist-es/TranscribeStreamingClient.js +8 -8
- package/dist-types/TranscribeStreamingClient.d.ts +2 -2
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/TranscribeStreamingClient.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
- package/package.json +24 -24
package/dist-cjs/index.js
CHANGED
|
@@ -126,24 +126,24 @@ var _TranscribeStreamingClient = class _TranscribeStreamingClient extends import
|
|
|
126
126
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
127
127
|
const _config_2 = (0, import_config_resolver.resolveRegionConfig)(_config_1);
|
|
128
128
|
const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
|
|
129
|
-
const _config_4 = (0,
|
|
130
|
-
const _config_5 = (0,
|
|
131
|
-
const _config_6 = (0,
|
|
132
|
-
const _config_7 = (0,
|
|
133
|
-
const _config_8 = (0,
|
|
134
|
-
const _config_9 = (0,
|
|
129
|
+
const _config_4 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_3);
|
|
130
|
+
const _config_5 = (0, import_middleware_signing.resolveAwsAuthConfig)(_config_4);
|
|
131
|
+
const _config_6 = (0, import_middleware_eventstream.resolveEventStreamConfig)(_config_5);
|
|
132
|
+
const _config_7 = (0, import_middleware_websocket.resolveWebSocketConfig)(_config_6);
|
|
133
|
+
const _config_8 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_7);
|
|
134
|
+
const _config_9 = (0, import_middleware_retry.resolveRetryConfig)(_config_8);
|
|
135
135
|
const _config_10 = (0, import_eventstream_serde_config_resolver.resolveEventStreamSerdeConfig)(_config_9);
|
|
136
136
|
const _config_11 = resolveRuntimeExtensions(_config_10, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
137
137
|
super(_config_11);
|
|
138
138
|
this.config = _config_11;
|
|
139
|
-
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
140
|
-
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
141
139
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
142
140
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
143
141
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
144
142
|
this.middlewareStack.use((0, import_middleware_signing.getAwsAuthPlugin)(this.config));
|
|
145
143
|
this.middlewareStack.use((0, import_middleware_sdk_transcribe_streaming.getTranscribeStreamingPlugin)(this.config));
|
|
146
144
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
145
|
+
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
146
|
+
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
147
147
|
}
|
|
148
148
|
/**
|
|
149
149
|
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
@@ -22,24 +22,24 @@ export class TranscribeStreamingClient extends __Client {
|
|
|
22
22
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
23
23
|
const _config_2 = resolveRegionConfig(_config_1);
|
|
24
24
|
const _config_3 = resolveEndpointConfig(_config_2);
|
|
25
|
-
const _config_4 =
|
|
26
|
-
const _config_5 =
|
|
27
|
-
const _config_6 =
|
|
28
|
-
const _config_7 =
|
|
29
|
-
const _config_8 =
|
|
30
|
-
const _config_9 =
|
|
25
|
+
const _config_4 = resolveHostHeaderConfig(_config_3);
|
|
26
|
+
const _config_5 = resolveAwsAuthConfig(_config_4);
|
|
27
|
+
const _config_6 = resolveEventStreamConfig(_config_5);
|
|
28
|
+
const _config_7 = resolveWebSocketConfig(_config_6);
|
|
29
|
+
const _config_8 = resolveUserAgentConfig(_config_7);
|
|
30
|
+
const _config_9 = resolveRetryConfig(_config_8);
|
|
31
31
|
const _config_10 = resolveEventStreamSerdeConfig(_config_9);
|
|
32
32
|
const _config_11 = resolveRuntimeExtensions(_config_10, configuration?.extensions || []);
|
|
33
33
|
super(_config_11);
|
|
34
34
|
this.config = _config_11;
|
|
35
|
-
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
36
|
-
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
37
35
|
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
38
36
|
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
39
37
|
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
40
38
|
this.middlewareStack.use(getAwsAuthPlugin(this.config));
|
|
41
39
|
this.middlewareStack.use(getTranscribeStreamingPlugin(this.config));
|
|
42
40
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
41
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
42
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
43
43
|
}
|
|
44
44
|
destroy() {
|
|
45
45
|
super.destroy();
|
|
@@ -146,7 +146,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
146
146
|
/**
|
|
147
147
|
* @public
|
|
148
148
|
*/
|
|
149
|
-
export type TranscribeStreamingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> &
|
|
149
|
+
export type TranscribeStreamingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & HostHeaderInputConfig & AwsAuthInputConfig & EventStreamInputConfig & WebSocketInputConfig & UserAgentInputConfig & RetryInputConfig & EventStreamSerdeInputConfig & ClientInputEndpointParameters;
|
|
150
150
|
/**
|
|
151
151
|
* @public
|
|
152
152
|
*
|
|
@@ -157,7 +157,7 @@ export interface TranscribeStreamingClientConfig extends TranscribeStreamingClie
|
|
|
157
157
|
/**
|
|
158
158
|
* @public
|
|
159
159
|
*/
|
|
160
|
-
export type TranscribeStreamingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> &
|
|
160
|
+
export type TranscribeStreamingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HostHeaderResolvedConfig & AwsAuthResolvedConfig & EventStreamResolvedConfig & WebSocketResolvedConfig & UserAgentResolvedConfig & RetryResolvedConfig & EventStreamSerdeResolvedConfig & ClientResolvedEndpointParameters;
|
|
161
161
|
/**
|
|
162
162
|
* @public
|
|
163
163
|
*
|
|
@@ -34,7 +34,6 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
34
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
35
|
}) => import("@smithy/types").EndpointV2;
|
|
36
36
|
tls?: boolean | undefined;
|
|
37
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
38
37
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
|
|
39
38
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
40
39
|
signingEscapePath?: boolean | undefined;
|
|
@@ -42,4 +41,5 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
42
41
|
signingRegion?: string | undefined;
|
|
43
42
|
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
44
43
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
44
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
45
45
|
};
|
|
@@ -34,7 +34,6 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
34
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
35
|
}) => import("@smithy/types").EndpointV2;
|
|
36
36
|
tls?: boolean | undefined;
|
|
37
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
38
37
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
|
|
39
38
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
40
39
|
signingEscapePath?: boolean | undefined;
|
|
@@ -42,4 +41,5 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
42
41
|
signingRegion?: string | undefined;
|
|
43
42
|
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
44
43
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
44
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
45
45
|
};
|
|
@@ -36,7 +36,6 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
38
38
|
tls?: boolean | undefined;
|
|
39
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
40
39
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
|
|
41
40
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
42
41
|
signingEscapePath?: boolean | undefined;
|
|
@@ -44,4 +43,5 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
44
43
|
signingRegion?: string | undefined;
|
|
45
44
|
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
46
45
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
46
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
47
47
|
};
|
|
@@ -121,12 +121,12 @@ export type TranscribeStreamingClientConfigType = Partial<
|
|
|
121
121
|
ClientDefaults &
|
|
122
122
|
RegionInputConfig &
|
|
123
123
|
EndpointInputConfig<EndpointParameters> &
|
|
124
|
-
RetryInputConfig &
|
|
125
124
|
HostHeaderInputConfig &
|
|
126
125
|
AwsAuthInputConfig &
|
|
127
126
|
EventStreamInputConfig &
|
|
128
127
|
WebSocketInputConfig &
|
|
129
128
|
UserAgentInputConfig &
|
|
129
|
+
RetryInputConfig &
|
|
130
130
|
EventStreamSerdeInputConfig &
|
|
131
131
|
ClientInputEndpointParameters;
|
|
132
132
|
export interface TranscribeStreamingClientConfig
|
|
@@ -137,12 +137,12 @@ export type TranscribeStreamingClientResolvedConfigType =
|
|
|
137
137
|
RuntimeExtensionsConfig &
|
|
138
138
|
RegionResolvedConfig &
|
|
139
139
|
EndpointResolvedConfig<EndpointParameters> &
|
|
140
|
-
RetryResolvedConfig &
|
|
141
140
|
HostHeaderResolvedConfig &
|
|
142
141
|
AwsAuthResolvedConfig &
|
|
143
142
|
EventStreamResolvedConfig &
|
|
144
143
|
WebSocketResolvedConfig &
|
|
145
144
|
UserAgentResolvedConfig &
|
|
145
|
+
RetryResolvedConfig &
|
|
146
146
|
EventStreamSerdeResolvedConfig &
|
|
147
147
|
ClientResolvedEndpointParameters;
|
|
148
148
|
export interface TranscribeStreamingClientResolvedConfig
|
|
@@ -58,10 +58,6 @@ export declare const getRuntimeConfig: (
|
|
|
58
58
|
}
|
|
59
59
|
) => import("@smithy/types").EndpointV2;
|
|
60
60
|
tls?: boolean | undefined;
|
|
61
|
-
retryStrategy?:
|
|
62
|
-
| import("@smithy/types").RetryStrategy
|
|
63
|
-
| import("@smithy/types").RetryStrategyV2
|
|
64
|
-
| undefined;
|
|
65
61
|
credentials?:
|
|
66
62
|
| import("@smithy/types").AwsCredentialIdentity
|
|
67
63
|
| import("@smithy/types").Provider<
|
|
@@ -84,4 +80,8 @@ export declare const getRuntimeConfig: (
|
|
|
84
80
|
) => import("@smithy/types").RequestSigner)
|
|
85
81
|
| undefined;
|
|
86
82
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
83
|
+
retryStrategy?:
|
|
84
|
+
| import("@smithy/types").RetryStrategy
|
|
85
|
+
| import("@smithy/types").RetryStrategyV2
|
|
86
|
+
| undefined;
|
|
87
87
|
};
|
|
@@ -64,10 +64,6 @@ export declare const getRuntimeConfig: (
|
|
|
64
64
|
}
|
|
65
65
|
) => import("@smithy/types").EndpointV2;
|
|
66
66
|
tls?: boolean | undefined;
|
|
67
|
-
retryStrategy?:
|
|
68
|
-
| import("@smithy/types").RetryStrategy
|
|
69
|
-
| import("@smithy/types").RetryStrategyV2
|
|
70
|
-
| undefined;
|
|
71
67
|
credentials?:
|
|
72
68
|
| import("@smithy/types").AwsCredentialIdentity
|
|
73
69
|
| import("@smithy/types").Provider<
|
|
@@ -90,4 +86,8 @@ export declare const getRuntimeConfig: (
|
|
|
90
86
|
) => import("@smithy/types").RequestSigner)
|
|
91
87
|
| undefined;
|
|
92
88
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
89
|
+
retryStrategy?:
|
|
90
|
+
| import("@smithy/types").RetryStrategy
|
|
91
|
+
| import("@smithy/types").RetryStrategyV2
|
|
92
|
+
| undefined;
|
|
93
93
|
};
|
|
@@ -66,10 +66,6 @@ export declare const getRuntimeConfig: (
|
|
|
66
66
|
}
|
|
67
67
|
) => import("@smithy/types").EndpointV2;
|
|
68
68
|
tls?: boolean | undefined;
|
|
69
|
-
retryStrategy?:
|
|
70
|
-
| import("@smithy/types").RetryStrategy
|
|
71
|
-
| import("@smithy/types").RetryStrategyV2
|
|
72
|
-
| undefined;
|
|
73
69
|
credentials?:
|
|
74
70
|
| import("@smithy/types").AwsCredentialIdentity
|
|
75
71
|
| import("@smithy/types").Provider<
|
|
@@ -92,4 +88,8 @@ export declare const getRuntimeConfig: (
|
|
|
92
88
|
) => import("@smithy/types").RequestSigner)
|
|
93
89
|
| undefined;
|
|
94
90
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
91
|
+
retryStrategy?:
|
|
92
|
+
| import("@smithy/types").RetryStrategy
|
|
93
|
+
| import("@smithy/types").RetryStrategyV2
|
|
94
|
+
| undefined;
|
|
95
95
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-transcribe-streaming",
|
|
3
3
|
"description": "AWS SDK for JavaScript Transcribe Streaming Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.620.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-transcribe-streaming",
|
|
@@ -21,48 +21,48 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
25
|
-
"@aws-sdk/client-sts": "3.
|
|
26
|
-
"@aws-sdk/core": "3.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
28
|
-
"@aws-sdk/eventstream-handler-node": "3.
|
|
29
|
-
"@aws-sdk/middleware-eventstream": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sso-oidc": "3.620.0",
|
|
25
|
+
"@aws-sdk/client-sts": "3.620.0",
|
|
26
|
+
"@aws-sdk/core": "3.620.0",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.620.0",
|
|
28
|
+
"@aws-sdk/eventstream-handler-node": "3.620.0",
|
|
29
|
+
"@aws-sdk/middleware-eventstream": "3.620.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
31
31
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-sdk-transcribe-streaming": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/middleware-websocket": "3.
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|
|
33
|
+
"@aws-sdk/middleware-sdk-transcribe-streaming": "3.620.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.620.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.620.0",
|
|
36
|
+
"@aws-sdk/middleware-websocket": "3.620.0",
|
|
37
37
|
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
38
38
|
"@aws-sdk/types": "3.609.0",
|
|
39
39
|
"@aws-sdk/util-endpoints": "3.614.0",
|
|
40
40
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
41
41
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
42
42
|
"@smithy/config-resolver": "^3.0.5",
|
|
43
|
-
"@smithy/core": "^2.
|
|
44
|
-
"@smithy/eventstream-serde-browser": "^3.0.
|
|
43
|
+
"@smithy/core": "^2.3.0",
|
|
44
|
+
"@smithy/eventstream-serde-browser": "^3.0.5",
|
|
45
45
|
"@smithy/eventstream-serde-config-resolver": "^3.0.3",
|
|
46
46
|
"@smithy/eventstream-serde-node": "^3.0.4",
|
|
47
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
47
|
+
"@smithy/fetch-http-handler": "^3.2.3",
|
|
48
48
|
"@smithy/hash-node": "^3.0.3",
|
|
49
49
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
50
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
51
|
-
"@smithy/middleware-endpoint": "^3.0
|
|
52
|
-
"@smithy/middleware-retry": "^3.0.
|
|
50
|
+
"@smithy/middleware-content-length": "^3.0.5",
|
|
51
|
+
"@smithy/middleware-endpoint": "^3.1.0",
|
|
52
|
+
"@smithy/middleware-retry": "^3.0.12",
|
|
53
53
|
"@smithy/middleware-serde": "^3.0.3",
|
|
54
54
|
"@smithy/middleware-stack": "^3.0.3",
|
|
55
55
|
"@smithy/node-config-provider": "^3.1.4",
|
|
56
|
-
"@smithy/node-http-handler": "^3.1.
|
|
57
|
-
"@smithy/protocol-http": "^4.0
|
|
58
|
-
"@smithy/smithy-client": "^3.1.
|
|
56
|
+
"@smithy/node-http-handler": "^3.1.4",
|
|
57
|
+
"@smithy/protocol-http": "^4.1.0",
|
|
58
|
+
"@smithy/smithy-client": "^3.1.10",
|
|
59
59
|
"@smithy/types": "^3.3.0",
|
|
60
60
|
"@smithy/url-parser": "^3.0.3",
|
|
61
61
|
"@smithy/util-base64": "^3.0.0",
|
|
62
62
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
63
63
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
64
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
65
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
64
|
+
"@smithy/util-defaults-mode-browser": "^3.0.12",
|
|
65
|
+
"@smithy/util-defaults-mode-node": "^3.0.12",
|
|
66
66
|
"@smithy/util-endpoints": "^2.0.5",
|
|
67
67
|
"@smithy/util-retry": "^3.0.3",
|
|
68
68
|
"@smithy/util-utf8": "^3.0.0",
|