@aws-sdk/client-ivs 3.515.0 → 3.521.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/runtimeConfig.browser.js +1 -1
- package/dist-cjs/runtimeConfig.js +1 -1
- package/dist-es/runtimeConfig.browser.js +1 -1
- package/dist-es/runtimeConfig.js +1 -1
- package/dist-types/IvsClient.d.ts +4 -4
- package/dist-types/models/models_0.d.ts +4 -10
- package/dist-types/runtimeConfig.browser.d.ts +1 -4
- package/dist-types/runtimeConfig.d.ts +1 -4
- package/dist-types/runtimeConfig.native.d.ts +1 -4
- package/dist-types/ts3.4/IvsClient.d.ts +3 -3
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -13
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -14
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -13
- package/package.json +34 -34
|
@@ -28,7 +28,7 @@ const getRuntimeConfig = (config) => {
|
|
|
28
28
|
(0, util_user_agent_browser_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
29
29
|
maxAttempts: config?.maxAttempts ?? util_retry_1.DEFAULT_MAX_ATTEMPTS,
|
|
30
30
|
region: config?.region ?? (0, invalid_dependency_1.invalidProvider)("Region is missing"),
|
|
31
|
-
requestHandler: config?.requestHandler ??
|
|
31
|
+
requestHandler: fetch_http_handler_1.FetchHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
32
32
|
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE),
|
|
33
33
|
sha256: config?.sha256 ?? sha256_browser_1.Sha256,
|
|
34
34
|
streamCollector: config?.streamCollector ?? fetch_http_handler_1.streamCollector,
|
|
@@ -34,7 +34,7 @@ const getRuntimeConfig = (config) => {
|
|
|
34
34
|
(0, util_user_agent_node_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
35
35
|
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
36
36
|
region: config?.region ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS),
|
|
37
|
-
requestHandler: config?.requestHandler ??
|
|
37
|
+
requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
38
38
|
retryMode: config?.retryMode ??
|
|
39
39
|
(0, node_config_provider_1.loadConfig)({
|
|
40
40
|
...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
@@ -24,7 +24,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
24
24
|
defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
25
25
|
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
26
26
|
region: config?.region ?? invalidProvider("Region is missing"),
|
|
27
|
-
requestHandler: config?.requestHandler ??
|
|
27
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
28
28
|
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
|
|
29
29
|
sha256: config?.sha256 ?? Sha256,
|
|
30
30
|
streamCollector: config?.streamCollector ?? streamCollector,
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -30,7 +30,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
30
30
|
defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
31
31
|
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
32
32
|
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS),
|
|
33
|
-
requestHandler: config?.requestHandler ??
|
|
33
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
34
34
|
retryMode: config?.retryMode ??
|
|
35
35
|
loadNodeConfig({
|
|
36
36
|
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
@@ -3,7 +3,7 @@ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middlewa
|
|
|
3
3
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver";
|
|
4
4
|
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-endpoint";
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
|
-
import {
|
|
6
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
8
|
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
@@ -56,11 +56,11 @@ export type ServiceOutputTypes = BatchGetChannelCommandOutput | BatchGetStreamKe
|
|
|
56
56
|
/**
|
|
57
57
|
* @public
|
|
58
58
|
*/
|
|
59
|
-
export interface ClientDefaults extends Partial<
|
|
59
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
60
60
|
/**
|
|
61
|
-
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
61
|
+
* The HTTP handler to use or its constructor options. Fetch in browser and Https in Nodejs.
|
|
62
62
|
*/
|
|
63
|
-
requestHandler?:
|
|
63
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
64
64
|
/**
|
|
65
65
|
* A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
|
|
66
66
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
@@ -84,8 +84,7 @@ export interface Channel {
|
|
|
84
84
|
* @public
|
|
85
85
|
* <p>Channel latency mode. Use <code>NORMAL</code> to broadcast and deliver live video up to
|
|
86
86
|
* Full HD. Use <code>LOW</code> for near-real-time interaction with viewers. Default:
|
|
87
|
-
* <code>LOW</code
|
|
88
|
-
* correspond to Ultra-low and Standard, respectively.)</p>
|
|
87
|
+
* <code>LOW</code>.</p>
|
|
89
88
|
*/
|
|
90
89
|
latencyMode?: ChannelLatencyMode;
|
|
91
90
|
/**
|
|
@@ -371,9 +370,7 @@ export interface CreateChannelRequest {
|
|
|
371
370
|
/**
|
|
372
371
|
* @public
|
|
373
372
|
* <p>Channel latency mode. Use <code>NORMAL</code> to broadcast and deliver live video up to
|
|
374
|
-
* Full HD. Use <code>LOW</code> for near-real-time interaction with viewers.
|
|
375
|
-
* Amazon IVS console, <code>LOW</code> and <code>NORMAL</code> correspond to Ultra-low and
|
|
376
|
-
* Standard, respectively.) Default: <code>LOW</code>.</p>
|
|
373
|
+
* Full HD. Use <code>LOW</code> for near-real-time interaction with viewers. Default: <code>LOW</code>.</p>
|
|
377
374
|
*/
|
|
378
375
|
latencyMode?: ChannelLatencyMode;
|
|
379
376
|
/**
|
|
@@ -1466,8 +1463,7 @@ export interface ChannelSummary {
|
|
|
1466
1463
|
* @public
|
|
1467
1464
|
* <p>Channel latency mode. Use <code>NORMAL</code> to broadcast and deliver live video up to
|
|
1468
1465
|
* Full HD. Use <code>LOW</code> for near-real-time interaction with viewers. Default:
|
|
1469
|
-
* <code>LOW</code
|
|
1470
|
-
* correspond to Ultra-low and Standard, respectively.)</p>
|
|
1466
|
+
* <code>LOW</code>.</p>
|
|
1471
1467
|
*/
|
|
1472
1468
|
latencyMode?: ChannelLatencyMode;
|
|
1473
1469
|
/**
|
|
@@ -2111,9 +2107,7 @@ export interface UpdateChannelRequest {
|
|
|
2111
2107
|
/**
|
|
2112
2108
|
* @public
|
|
2113
2109
|
* <p>Channel latency mode. Use <code>NORMAL</code> to broadcast and deliver live video up to
|
|
2114
|
-
* Full HD. Use <code>LOW</code> for near-real-time interaction with viewers
|
|
2115
|
-
* Amazon IVS console, <code>LOW</code> and <code>NORMAL</code> correspond to Ultra-low and
|
|
2116
|
-
* Standard, respectively.)</p>
|
|
2110
|
+
* Full HD. Use <code>LOW</code> for near-real-time interaction with viewers.</p>
|
|
2117
2111
|
*/
|
|
2118
2112
|
latencyMode?: ChannelLatencyMode;
|
|
2119
2113
|
/**
|
|
@@ -11,10 +11,7 @@ export declare const getRuntimeConfig: (config: IvsClientConfig) => {
|
|
|
11
11
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
-
requestHandler:
|
|
15
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
16
|
-
httpHandlerConfigs(): {};
|
|
17
|
-
}) | RequestHandler;
|
|
14
|
+
requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
|
|
18
15
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
19
16
|
sha256: import("@smithy/types").HashConstructor;
|
|
20
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -11,10 +11,7 @@ export declare const getRuntimeConfig: (config: IvsClientConfig) => {
|
|
|
11
11
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
14
|
-
requestHandler:
|
|
15
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
16
|
-
httpHandlerConfigs(): {};
|
|
17
|
-
}) | RequestHandler;
|
|
14
|
+
requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
|
|
18
15
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
19
16
|
sha256: import("@smithy/types").HashConstructor;
|
|
20
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -5,10 +5,7 @@ import { IvsClientConfig } from "./IvsClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: IvsClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
-
requestHandler:
|
|
9
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
10
|
-
httpHandlerConfigs(): {};
|
|
11
|
-
}) | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
8
|
+
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
12
9
|
apiVersion: string;
|
|
13
10
|
urlParser: import("@smithy/types").UrlParser;
|
|
14
11
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
RetryInputConfig,
|
|
19
19
|
RetryResolvedConfig,
|
|
20
20
|
} from "@smithy/middleware-retry";
|
|
21
|
-
import {
|
|
21
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
22
|
import {
|
|
23
23
|
Client as __Client,
|
|
24
24
|
DefaultsMode as __DefaultsMode,
|
|
@@ -265,8 +265,8 @@ export type ServiceOutputTypes =
|
|
|
265
265
|
| UpdateChannelCommandOutput
|
|
266
266
|
| UpdatePlaybackRestrictionPolicyCommandOutput;
|
|
267
267
|
export interface ClientDefaults
|
|
268
|
-
extends Partial<
|
|
269
|
-
requestHandler?:
|
|
268
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
269
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
270
270
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
271
271
|
urlParser?: __UrlParser;
|
|
272
272
|
bodyLengthChecker?: __BodyLengthCalculator;
|
|
@@ -15,19 +15,7 @@ export declare const getRuntimeConfig: (config: IvsClientConfig) => {
|
|
|
15
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
17
17
|
requestHandler:
|
|
18
|
-
|
|
|
19
|
-
any,
|
|
20
|
-
any,
|
|
21
|
-
import("@smithy/types").HttpHandlerOptions
|
|
22
|
-
> &
|
|
23
|
-
import("@smithy/types").RequestHandler<
|
|
24
|
-
import("@smithy/protocol-http").HttpRequest,
|
|
25
|
-
import("@smithy/protocol-http").HttpResponse,
|
|
26
|
-
import("@smithy/types").HttpHandlerOptions
|
|
27
|
-
> & {
|
|
28
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
29
|
-
httpHandlerConfigs(): {};
|
|
30
|
-
})
|
|
18
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
31
19
|
| RequestHandler;
|
|
32
20
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
33
21
|
sha256: import("@smithy/types").HashConstructor;
|
|
@@ -19,20 +19,8 @@ export declare const getRuntimeConfig: (config: IvsClientConfig) => {
|
|
|
19
19
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
20
|
region: string | import("@smithy/types").Provider<string>;
|
|
21
21
|
requestHandler:
|
|
22
|
-
|
|
|
23
|
-
|
|
24
|
-
any,
|
|
25
|
-
import("@smithy/types").HttpHandlerOptions
|
|
26
|
-
> &
|
|
27
|
-
import("@smithy/types").RequestHandler<
|
|
28
|
-
import("@smithy/protocol-http").HttpRequest,
|
|
29
|
-
import("@smithy/protocol-http").HttpResponse,
|
|
30
|
-
import("@smithy/types").HttpHandlerOptions
|
|
31
|
-
> & {
|
|
32
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
33
|
-
httpHandlerConfigs(): {};
|
|
34
|
-
})
|
|
35
|
-
| RequestHandler;
|
|
22
|
+
| RequestHandler
|
|
23
|
+
| import("@smithy/protocol-http").HttpHandler<any>;
|
|
36
24
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
37
25
|
sha256: import("@smithy/types").HashConstructor;
|
|
38
26
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -3,19 +3,10 @@ export declare const getRuntimeConfig: (config: IvsClientConfig) => {
|
|
|
3
3
|
runtime: string;
|
|
4
4
|
sha256: import("@smithy/types").HashConstructor;
|
|
5
5
|
requestHandler:
|
|
6
|
-
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
> &
|
|
11
|
-
import("@smithy/types").RequestHandler<
|
|
12
|
-
import("@smithy/protocol-http").HttpRequest,
|
|
13
|
-
import("@smithy/protocol-http").HttpResponse,
|
|
14
|
-
import("@smithy/types").HttpHandlerOptions
|
|
15
|
-
> & {
|
|
16
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
17
|
-
httpHandlerConfigs(): {};
|
|
18
|
-
})
|
|
6
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
7
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
8
|
+
| Record<string, unknown>
|
|
9
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
19
10
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
20
11
|
apiVersion: string;
|
|
21
12
|
urlParser: import("@smithy/types").UrlParser;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ivs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ivs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.521.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-ivs",
|
|
@@ -20,42 +20,42 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^2.1.
|
|
36
|
-
"@smithy/core": "^1.3.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.4.
|
|
38
|
-
"@smithy/hash-node": "^2.1.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.1.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.1.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.4.
|
|
42
|
-
"@smithy/middleware-retry": "^2.1.
|
|
43
|
-
"@smithy/middleware-serde": "^2.1.
|
|
44
|
-
"@smithy/middleware-stack": "^2.1.
|
|
45
|
-
"@smithy/node-config-provider": "^2.2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.
|
|
47
|
-
"@smithy/protocol-http": "^3.
|
|
48
|
-
"@smithy/smithy-client": "^2.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.1.
|
|
23
|
+
"@aws-sdk/client-sts": "3.521.0",
|
|
24
|
+
"@aws-sdk/core": "3.521.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.521.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.521.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.521.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.521.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.521.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.521.0",
|
|
31
|
+
"@aws-sdk/types": "3.521.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.521.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.521.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.521.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.1.2",
|
|
36
|
+
"@smithy/core": "^1.3.3",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.4.2",
|
|
38
|
+
"@smithy/hash-node": "^2.1.2",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.1.2",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.1.2",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.4.2",
|
|
42
|
+
"@smithy/middleware-retry": "^2.1.2",
|
|
43
|
+
"@smithy/middleware-serde": "^2.1.2",
|
|
44
|
+
"@smithy/middleware-stack": "^2.1.2",
|
|
45
|
+
"@smithy/node-config-provider": "^2.2.2",
|
|
46
|
+
"@smithy/node-http-handler": "^2.4.0",
|
|
47
|
+
"@smithy/protocol-http": "^3.2.0",
|
|
48
|
+
"@smithy/smithy-client": "^2.4.0",
|
|
49
|
+
"@smithy/types": "^2.10.0",
|
|
50
|
+
"@smithy/url-parser": "^2.1.2",
|
|
51
51
|
"@smithy/util-base64": "^2.1.1",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.1.1",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.1.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.2.
|
|
56
|
-
"@smithy/util-endpoints": "^1.1.
|
|
57
|
-
"@smithy/util-middleware": "^2.1.
|
|
58
|
-
"@smithy/util-retry": "^2.1.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.1.2",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.2.1",
|
|
56
|
+
"@smithy/util-endpoints": "^1.1.2",
|
|
57
|
+
"@smithy/util-middleware": "^2.1.2",
|
|
58
|
+
"@smithy/util-retry": "^2.1.2",
|
|
59
59
|
"@smithy/util-utf8": "^2.1.1",
|
|
60
60
|
"tslib": "^2.5.0"
|
|
61
61
|
},
|