@aws-sdk/client-transcribe-streaming 3.645.0 → 3.650.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/endpoint/endpointResolver.js +6 -2
- package/dist-cjs/index.js +3 -9
- package/dist-es/commands/StartCallAnalyticsStreamTranscriptionCommand.js +1 -3
- package/dist-es/commands/StartMedicalStreamTranscriptionCommand.js +1 -3
- package/dist-es/commands/StartStreamTranscriptionCommand.js +1 -3
- package/dist-es/endpoint/endpointResolver.js +7 -3
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +42 -42
|
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
|
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
6
|
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
7
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
-
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
13
|
endpointParams: endpointParams,
|
|
10
14
|
logger: context.logger,
|
|
11
|
-
});
|
|
15
|
+
}));
|
|
12
16
|
};
|
|
13
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
18
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1293,9 +1293,7 @@ var _xatvn = "x-amzn-transcribe-vocabulary-name";
|
|
|
1293
1293
|
var _xatvn_ = "x-amzn-transcribe-vocabulary-names";
|
|
1294
1294
|
|
|
1295
1295
|
// src/commands/StartCallAnalyticsStreamTranscriptionCommand.ts
|
|
1296
|
-
var _StartCallAnalyticsStreamTranscriptionCommand = class _StartCallAnalyticsStreamTranscriptionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1297
|
-
...commonParams
|
|
1298
|
-
}).m(function(Command, cs, config, o) {
|
|
1296
|
+
var _StartCallAnalyticsStreamTranscriptionCommand = class _StartCallAnalyticsStreamTranscriptionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1299
1297
|
return [
|
|
1300
1298
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1301
1299
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
@@ -1328,9 +1326,7 @@ var StartCallAnalyticsStreamTranscriptionCommand = _StartCallAnalyticsStreamTran
|
|
|
1328
1326
|
|
|
1329
1327
|
|
|
1330
1328
|
|
|
1331
|
-
var _StartMedicalStreamTranscriptionCommand = class _StartMedicalStreamTranscriptionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1332
|
-
...commonParams
|
|
1333
|
-
}).m(function(Command, cs, config, o) {
|
|
1329
|
+
var _StartMedicalStreamTranscriptionCommand = class _StartMedicalStreamTranscriptionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1334
1330
|
return [
|
|
1335
1331
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1336
1332
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
@@ -1363,9 +1359,7 @@ var StartMedicalStreamTranscriptionCommand = _StartMedicalStreamTranscriptionCom
|
|
|
1363
1359
|
|
|
1364
1360
|
|
|
1365
1361
|
|
|
1366
|
-
var _StartStreamTranscriptionCommand = class _StartStreamTranscriptionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1367
|
-
...commonParams
|
|
1368
|
-
}).m(function(Command, cs, config, o) {
|
|
1362
|
+
var _StartStreamTranscriptionCommand = class _StartStreamTranscriptionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1369
1363
|
return [
|
|
1370
1364
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1371
1365
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
@@ -10,9 +10,7 @@ import { de_StartCallAnalyticsStreamTranscriptionCommand, se_StartCallAnalyticsS
|
|
|
10
10
|
export { $Command };
|
|
11
11
|
export class StartCallAnalyticsStreamTranscriptionCommand extends $Command
|
|
12
12
|
.classBuilder()
|
|
13
|
-
.ep(
|
|
14
|
-
...commonParams,
|
|
15
|
-
})
|
|
13
|
+
.ep(commonParams)
|
|
16
14
|
.m(function (Command, cs, config, o) {
|
|
17
15
|
return [
|
|
18
16
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -10,9 +10,7 @@ import { de_StartMedicalStreamTranscriptionCommand, se_StartMedicalStreamTranscr
|
|
|
10
10
|
export { $Command };
|
|
11
11
|
export class StartMedicalStreamTranscriptionCommand extends $Command
|
|
12
12
|
.classBuilder()
|
|
13
|
-
.ep(
|
|
14
|
-
...commonParams,
|
|
15
|
-
})
|
|
13
|
+
.ep(commonParams)
|
|
16
14
|
.m(function (Command, cs, config, o) {
|
|
17
15
|
return [
|
|
18
16
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -10,9 +10,7 @@ import { de_StartStreamTranscriptionCommand, se_StartStreamTranscriptionCommand
|
|
|
10
10
|
export { $Command };
|
|
11
11
|
export class StartStreamTranscriptionCommand extends $Command
|
|
12
12
|
.classBuilder()
|
|
13
|
-
.ep(
|
|
14
|
-
...commonParams,
|
|
15
|
-
})
|
|
13
|
+
.ep(commonParams)
|
|
16
14
|
.m(function (Command, cs, config, o) {
|
|
17
15
|
return [
|
|
18
16
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
-
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints";
|
|
3
3
|
import { ruleSet } from "./ruleset";
|
|
4
|
+
const cache = new EndpointCache({
|
|
5
|
+
size: 50,
|
|
6
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
7
|
+
});
|
|
4
8
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
5
|
-
return resolveEndpoint(ruleSet, {
|
|
9
|
+
return cache.get(endpointParams, () => resolveEndpoint(ruleSet, {
|
|
6
10
|
endpointParams: endpointParams,
|
|
7
11
|
logger: context.logger,
|
|
8
|
-
});
|
|
12
|
+
}));
|
|
9
13
|
};
|
|
10
14
|
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
@@ -20,6 +20,7 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
20
20
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
apiVersion: string;
|
|
23
|
+
cacheMiddleware?: boolean | undefined;
|
|
23
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
24
25
|
base64Decoder: import("@smithy/types").Decoder;
|
|
25
26
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -36,6 +37,7 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
36
37
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
38
|
}) => import("@smithy/types").EndpointV2;
|
|
38
39
|
tls?: boolean | undefined;
|
|
40
|
+
serviceConfiguredEndpoint?: undefined;
|
|
39
41
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
40
42
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
41
43
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -20,6 +20,7 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
20
20
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
apiVersion: string;
|
|
23
|
+
cacheMiddleware?: boolean | undefined;
|
|
23
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
24
25
|
base64Decoder: import("@smithy/types").Decoder;
|
|
25
26
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -36,6 +37,7 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
36
37
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
38
|
}) => import("@smithy/types").EndpointV2;
|
|
38
39
|
tls?: boolean | undefined;
|
|
40
|
+
serviceConfiguredEndpoint?: undefined;
|
|
39
41
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
40
42
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
41
43
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -11,6 +11,7 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
11
11
|
httpHandlerConfigs(): {};
|
|
12
12
|
}) | import("@aws-sdk/middleware-websocket").WebSocketFetchHandler;
|
|
13
13
|
apiVersion: string;
|
|
14
|
+
cacheMiddleware?: boolean | undefined;
|
|
14
15
|
urlParser: import("@smithy/types").UrlParser;
|
|
15
16
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
16
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -38,6 +39,7 @@ export declare const getRuntimeConfig: (config: TranscribeStreamingClientConfig)
|
|
|
38
39
|
logger?: import("@smithy/types").Logger | undefined;
|
|
39
40
|
}) => import("@smithy/types").EndpointV2;
|
|
40
41
|
tls?: boolean | undefined;
|
|
42
|
+
serviceConfiguredEndpoint?: undefined;
|
|
41
43
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
42
44
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
43
45
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (
|
|
|
25
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
26
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
27
|
apiVersion: string;
|
|
28
|
+
cacheMiddleware?: boolean | undefined;
|
|
28
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
29
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
30
31
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -63,6 +64,7 @@ export declare const getRuntimeConfig: (
|
|
|
63
64
|
}
|
|
64
65
|
) => import("@smithy/types").EndpointV2;
|
|
65
66
|
tls?: boolean | undefined;
|
|
67
|
+
serviceConfiguredEndpoint?: undefined;
|
|
66
68
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
67
69
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
68
70
|
credentials?:
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (
|
|
|
31
31
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
32
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
33
33
|
apiVersion: string;
|
|
34
|
+
cacheMiddleware?: boolean | undefined;
|
|
34
35
|
urlParser: import("@smithy/types").UrlParser;
|
|
35
36
|
base64Decoder: import("@smithy/types").Decoder;
|
|
36
37
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -69,6 +70,7 @@ export declare const getRuntimeConfig: (
|
|
|
69
70
|
}
|
|
70
71
|
) => import("@smithy/types").EndpointV2;
|
|
71
72
|
tls?: boolean | undefined;
|
|
73
|
+
serviceConfiguredEndpoint?: undefined;
|
|
72
74
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
73
75
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
74
76
|
credentials?:
|
|
@@ -24,6 +24,7 @@ export declare const getRuntimeConfig: (
|
|
|
24
24
|
})
|
|
25
25
|
| import("@aws-sdk/middleware-websocket").WebSocketFetchHandler;
|
|
26
26
|
apiVersion: string;
|
|
27
|
+
cacheMiddleware?: boolean | undefined;
|
|
27
28
|
urlParser: import("@smithy/types").UrlParser;
|
|
28
29
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
29
30
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -71,6 +72,7 @@ export declare const getRuntimeConfig: (
|
|
|
71
72
|
}
|
|
72
73
|
) => import("@smithy/types").EndpointV2;
|
|
73
74
|
tls?: boolean | undefined;
|
|
75
|
+
serviceConfiguredEndpoint?: undefined;
|
|
74
76
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
75
77
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TranscribeStreamingHttpAuthSchemeProvider;
|
|
76
78
|
credentials?:
|
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.650.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,50 +21,50 @@
|
|
|
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.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-sdk-transcribe-streaming": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/middleware-websocket": "3.
|
|
36
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
37
|
-
"@aws-sdk/types": "3.
|
|
38
|
-
"@aws-sdk/util-endpoints": "3.
|
|
39
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
40
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
41
|
-
"@smithy/config-resolver": "^3.0.
|
|
42
|
-
"@smithy/core": "^2.4.
|
|
43
|
-
"@smithy/eventstream-serde-browser": "^3.0.
|
|
44
|
-
"@smithy/eventstream-serde-config-resolver": "^3.0.
|
|
45
|
-
"@smithy/eventstream-serde-node": "^3.0.
|
|
46
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
47
|
-
"@smithy/hash-node": "^3.0.
|
|
48
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
49
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
50
|
-
"@smithy/middleware-endpoint": "^3.1.
|
|
51
|
-
"@smithy/middleware-retry": "^3.0.
|
|
52
|
-
"@smithy/middleware-serde": "^3.0.
|
|
53
|
-
"@smithy/middleware-stack": "^3.0.
|
|
54
|
-
"@smithy/node-config-provider": "^3.1.
|
|
55
|
-
"@smithy/node-http-handler": "^3.
|
|
56
|
-
"@smithy/protocol-http": "^4.1.
|
|
57
|
-
"@smithy/smithy-client": "^3.
|
|
58
|
-
"@smithy/types": "^3.
|
|
59
|
-
"@smithy/url-parser": "^3.0.
|
|
24
|
+
"@aws-sdk/client-sso-oidc": "3.650.0",
|
|
25
|
+
"@aws-sdk/client-sts": "3.650.0",
|
|
26
|
+
"@aws-sdk/core": "3.649.0",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.650.0",
|
|
28
|
+
"@aws-sdk/eventstream-handler-node": "3.649.0",
|
|
29
|
+
"@aws-sdk/middleware-eventstream": "3.649.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.649.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.649.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.649.0",
|
|
33
|
+
"@aws-sdk/middleware-sdk-transcribe-streaming": "3.649.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.649.0",
|
|
35
|
+
"@aws-sdk/middleware-websocket": "3.649.0",
|
|
36
|
+
"@aws-sdk/region-config-resolver": "3.649.0",
|
|
37
|
+
"@aws-sdk/types": "3.649.0",
|
|
38
|
+
"@aws-sdk/util-endpoints": "3.649.0",
|
|
39
|
+
"@aws-sdk/util-user-agent-browser": "3.649.0",
|
|
40
|
+
"@aws-sdk/util-user-agent-node": "3.649.0",
|
|
41
|
+
"@smithy/config-resolver": "^3.0.6",
|
|
42
|
+
"@smithy/core": "^2.4.1",
|
|
43
|
+
"@smithy/eventstream-serde-browser": "^3.0.7",
|
|
44
|
+
"@smithy/eventstream-serde-config-resolver": "^3.0.4",
|
|
45
|
+
"@smithy/eventstream-serde-node": "^3.0.6",
|
|
46
|
+
"@smithy/fetch-http-handler": "^3.2.5",
|
|
47
|
+
"@smithy/hash-node": "^3.0.4",
|
|
48
|
+
"@smithy/invalid-dependency": "^3.0.4",
|
|
49
|
+
"@smithy/middleware-content-length": "^3.0.6",
|
|
50
|
+
"@smithy/middleware-endpoint": "^3.1.1",
|
|
51
|
+
"@smithy/middleware-retry": "^3.0.16",
|
|
52
|
+
"@smithy/middleware-serde": "^3.0.4",
|
|
53
|
+
"@smithy/middleware-stack": "^3.0.4",
|
|
54
|
+
"@smithy/node-config-provider": "^3.1.5",
|
|
55
|
+
"@smithy/node-http-handler": "^3.2.0",
|
|
56
|
+
"@smithy/protocol-http": "^4.1.1",
|
|
57
|
+
"@smithy/smithy-client": "^3.3.0",
|
|
58
|
+
"@smithy/types": "^3.4.0",
|
|
59
|
+
"@smithy/url-parser": "^3.0.4",
|
|
60
60
|
"@smithy/util-base64": "^3.0.0",
|
|
61
61
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
62
62
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
63
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
64
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
65
|
-
"@smithy/util-endpoints": "^2.0
|
|
66
|
-
"@smithy/util-middleware": "^3.0.
|
|
67
|
-
"@smithy/util-retry": "^3.0.
|
|
63
|
+
"@smithy/util-defaults-mode-browser": "^3.0.16",
|
|
64
|
+
"@smithy/util-defaults-mode-node": "^3.0.16",
|
|
65
|
+
"@smithy/util-endpoints": "^2.1.0",
|
|
66
|
+
"@smithy/util-middleware": "^3.0.4",
|
|
67
|
+
"@smithy/util-retry": "^3.0.4",
|
|
68
68
|
"@smithy/util-utf8": "^3.0.0",
|
|
69
69
|
"tslib": "^2.6.2"
|
|
70
70
|
},
|