@aws-sdk/client-rekognitionstreaming 3.478.0 → 3.481.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/commands/StartFaceLivenessSessionCommand.js +25 -47
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-es/commands/StartFaceLivenessSessionCommand.js +25 -47
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-types/commands/StartFaceLivenessSessionCommand.d.ts +7 -22
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/commands/StartFaceLivenessSessionCommand.d.ts +12 -28
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/package.json +9 -9
|
@@ -7,54 +7,32 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
7
7
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
8
8
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
9
9
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
10
|
-
const
|
|
10
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
11
11
|
const models_0_1 = require("../models/models_0");
|
|
12
12
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
13
|
-
class StartFaceLivenessSessionCommand extends smithy_client_1.Command
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
clientName,
|
|
38
|
-
commandName,
|
|
39
|
-
inputFilterSensitiveLog: models_0_1.StartFaceLivenessSessionRequestFilterSensitiveLog,
|
|
40
|
-
outputFilterSensitiveLog: models_0_1.StartFaceLivenessSessionResponseFilterSensitiveLog,
|
|
41
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
42
|
-
service: "RekognitionStreamingService",
|
|
43
|
-
operation: "StartFaceLivenessSession",
|
|
44
|
-
eventStream: {
|
|
45
|
-
input: true,
|
|
46
|
-
output: true,
|
|
47
|
-
},
|
|
48
|
-
},
|
|
49
|
-
};
|
|
50
|
-
const { requestHandler } = configuration;
|
|
51
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
52
|
-
}
|
|
53
|
-
serialize(input, context) {
|
|
54
|
-
return (0, Aws_restJson1_1.se_StartFaceLivenessSessionCommand)(input, context);
|
|
55
|
-
}
|
|
56
|
-
deserialize(output, context) {
|
|
57
|
-
return (0, Aws_restJson1_1.de_StartFaceLivenessSessionCommand)(output, context);
|
|
58
|
-
}
|
|
13
|
+
class StartFaceLivenessSessionCommand extends smithy_client_1.Command
|
|
14
|
+
.classBuilder()
|
|
15
|
+
.ep({
|
|
16
|
+
...EndpointParameters_1.commonParams,
|
|
17
|
+
})
|
|
18
|
+
.m(function (Command, cs, config, o) {
|
|
19
|
+
return [
|
|
20
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
21
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
22
|
+
(0, middleware_eventstream_1.getEventStreamPlugin)(config),
|
|
23
|
+
(0, middleware_websocket_1.getWebSocketPlugin)(config, { headerPrefix: "x-amz-rekognition-streaming-liveness-" }),
|
|
24
|
+
];
|
|
25
|
+
})
|
|
26
|
+
.s("RekognitionStreamingService", "StartFaceLivenessSession", {
|
|
27
|
+
eventStream: {
|
|
28
|
+
input: true,
|
|
29
|
+
output: true,
|
|
30
|
+
},
|
|
31
|
+
})
|
|
32
|
+
.n("RekognitionStreamingClient", "StartFaceLivenessSessionCommand")
|
|
33
|
+
.f(models_0_1.StartFaceLivenessSessionRequestFilterSensitiveLog, models_0_1.StartFaceLivenessSessionResponseFilterSensitiveLog)
|
|
34
|
+
.ser(Aws_restJson1_1.se_StartFaceLivenessSessionCommand)
|
|
35
|
+
.de(Aws_restJson1_1.de_StartFaceLivenessSessionCommand)
|
|
36
|
+
.build() {
|
|
59
37
|
}
|
|
60
38
|
exports.StartFaceLivenessSessionCommand = StartFaceLivenessSessionCommand;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.resolveClientEndpointParameters = void 0;
|
|
3
|
+
exports.commonParams = exports.resolveClientEndpointParameters = void 0;
|
|
4
4
|
const resolveClientEndpointParameters = (options) => {
|
|
5
5
|
return {
|
|
6
6
|
...options,
|
|
@@ -10,3 +10,9 @@ const resolveClientEndpointParameters = (options) => {
|
|
|
10
10
|
};
|
|
11
11
|
};
|
|
12
12
|
exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
|
|
13
|
+
exports.commonParams = {
|
|
14
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
15
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
16
|
+
Region: { type: "builtInParams", name: "region" },
|
|
17
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
|
+
};
|
|
@@ -3,54 +3,32 @@ import { getWebSocketPlugin } from "@aws-sdk/middleware-websocket";
|
|
|
3
3
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
4
4
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
5
5
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
6
|
-
import {
|
|
6
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
7
7
|
import { StartFaceLivenessSessionRequestFilterSensitiveLog, StartFaceLivenessSessionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
8
8
|
import { de_StartFaceLivenessSessionCommand, se_StartFaceLivenessSessionCommand } from "../protocols/Aws_restJson1";
|
|
9
9
|
export { $Command };
|
|
10
|
-
export class StartFaceLivenessSessionCommand extends $Command
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
clientName,
|
|
35
|
-
commandName,
|
|
36
|
-
inputFilterSensitiveLog: StartFaceLivenessSessionRequestFilterSensitiveLog,
|
|
37
|
-
outputFilterSensitiveLog: StartFaceLivenessSessionResponseFilterSensitiveLog,
|
|
38
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
39
|
-
service: "RekognitionStreamingService",
|
|
40
|
-
operation: "StartFaceLivenessSession",
|
|
41
|
-
eventStream: {
|
|
42
|
-
input: true,
|
|
43
|
-
output: true,
|
|
44
|
-
},
|
|
45
|
-
},
|
|
46
|
-
};
|
|
47
|
-
const { requestHandler } = configuration;
|
|
48
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
49
|
-
}
|
|
50
|
-
serialize(input, context) {
|
|
51
|
-
return se_StartFaceLivenessSessionCommand(input, context);
|
|
52
|
-
}
|
|
53
|
-
deserialize(output, context) {
|
|
54
|
-
return de_StartFaceLivenessSessionCommand(output, context);
|
|
55
|
-
}
|
|
10
|
+
export class StartFaceLivenessSessionCommand extends $Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
18
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
getEventStreamPlugin(config),
|
|
20
|
+
getWebSocketPlugin(config, { headerPrefix: "x-amz-rekognition-streaming-liveness-" }),
|
|
21
|
+
];
|
|
22
|
+
})
|
|
23
|
+
.s("RekognitionStreamingService", "StartFaceLivenessSession", {
|
|
24
|
+
eventStream: {
|
|
25
|
+
input: true,
|
|
26
|
+
output: true,
|
|
27
|
+
},
|
|
28
|
+
})
|
|
29
|
+
.n("RekognitionStreamingClient", "StartFaceLivenessSessionCommand")
|
|
30
|
+
.f(StartFaceLivenessSessionRequestFilterSensitiveLog, StartFaceLivenessSessionResponseFilterSensitiveLog)
|
|
31
|
+
.ser(se_StartFaceLivenessSessionCommand)
|
|
32
|
+
.de(de_StartFaceLivenessSessionCommand)
|
|
33
|
+
.build() {
|
|
56
34
|
}
|
|
@@ -6,3 +6,9 @@ export const resolveClientEndpointParameters = (options) => {
|
|
|
6
6
|
defaultSigningName: "rekognition",
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
|
+
export const commonParams = {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { StartFaceLivenessSessionRequest, StartFaceLivenessSessionResponse } from "../models/models_0";
|
|
5
|
-
import { RekognitionStreamingClientResolvedConfig
|
|
4
|
+
import { RekognitionStreamingClientResolvedConfig } from "../RekognitionStreamingClient";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -21,6 +20,10 @@ export interface StartFaceLivenessSessionCommandInput extends StartFaceLivenessS
|
|
|
21
20
|
*/
|
|
22
21
|
export interface StartFaceLivenessSessionCommandOutput extends StartFaceLivenessSessionResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const StartFaceLivenessSessionCommand_base: {
|
|
24
|
+
new (input: StartFaceLivenessSessionCommandInput): import("@smithy/smithy-client").CommandImpl<StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput, RekognitionStreamingClientResolvedConfig, StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Starts a Face Liveness video stream and liveness detection process for a given
|
|
@@ -202,23 +205,5 @@ export interface StartFaceLivenessSessionCommandOutput extends StartFaceLiveness
|
|
|
202
205
|
* <p>Base exception class for all service exceptions from RekognitionStreaming service.</p>
|
|
203
206
|
*
|
|
204
207
|
*/
|
|
205
|
-
export declare class StartFaceLivenessSessionCommand extends
|
|
206
|
-
readonly input: StartFaceLivenessSessionCommandInput;
|
|
207
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
208
|
-
/**
|
|
209
|
-
* @public
|
|
210
|
-
*/
|
|
211
|
-
constructor(input: StartFaceLivenessSessionCommandInput);
|
|
212
|
-
/**
|
|
213
|
-
* @internal
|
|
214
|
-
*/
|
|
215
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RekognitionStreamingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput>;
|
|
216
|
-
/**
|
|
217
|
-
* @internal
|
|
218
|
-
*/
|
|
219
|
-
private serialize;
|
|
220
|
-
/**
|
|
221
|
-
* @internal
|
|
222
|
-
*/
|
|
223
|
-
private deserialize;
|
|
208
|
+
export declare class StartFaceLivenessSessionCommand extends StartFaceLivenessSessionCommand_base {
|
|
224
209
|
}
|
|
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
15
|
defaultSigningName: string;
|
|
16
16
|
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
17
35
|
export interface EndpointParameters extends __EndpointParameters {
|
|
18
36
|
Region?: string;
|
|
19
37
|
UseDualStack?: boolean;
|
|
@@ -1,42 +1,26 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
StartFaceLivenessSessionRequest,
|
|
11
5
|
StartFaceLivenessSessionResponse,
|
|
12
6
|
} from "../models/models_0";
|
|
13
|
-
import {
|
|
14
|
-
RekognitionStreamingClientResolvedConfig,
|
|
15
|
-
ServiceInputTypes,
|
|
16
|
-
ServiceOutputTypes,
|
|
17
|
-
} from "../RekognitionStreamingClient";
|
|
7
|
+
import { RekognitionStreamingClientResolvedConfig } from "../RekognitionStreamingClient";
|
|
18
8
|
export { __MetadataBearer, $Command };
|
|
19
9
|
export interface StartFaceLivenessSessionCommandInput
|
|
20
10
|
extends StartFaceLivenessSessionRequest {}
|
|
21
11
|
export interface StartFaceLivenessSessionCommandOutput
|
|
22
12
|
extends StartFaceLivenessSessionResponse,
|
|
23
13
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
constructor(input: StartFaceLivenessSessionCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: RekognitionStreamingClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
14
|
+
declare const StartFaceLivenessSessionCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: StartFaceLivenessSessionCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
StartFaceLivenessSessionCommandInput,
|
|
19
|
+
StartFaceLivenessSessionCommandOutput,
|
|
20
|
+
RekognitionStreamingClientResolvedConfig,
|
|
37
21
|
StartFaceLivenessSessionCommandInput,
|
|
38
22
|
StartFaceLivenessSessionCommandOutput
|
|
39
23
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class StartFaceLivenessSessionCommand extends StartFaceLivenessSessionCommand_base {}
|
|
@@ -25,6 +25,24 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
25
25
|
ClientInputEndpointParameters & {
|
|
26
26
|
defaultSigningName: string;
|
|
27
27
|
};
|
|
28
|
+
export declare const commonParams: {
|
|
29
|
+
readonly UseFIPS: {
|
|
30
|
+
readonly type: "builtInParams";
|
|
31
|
+
readonly name: "useFipsEndpoint";
|
|
32
|
+
};
|
|
33
|
+
readonly Endpoint: {
|
|
34
|
+
readonly type: "builtInParams";
|
|
35
|
+
readonly name: "endpoint";
|
|
36
|
+
};
|
|
37
|
+
readonly Region: {
|
|
38
|
+
readonly type: "builtInParams";
|
|
39
|
+
readonly name: "region";
|
|
40
|
+
};
|
|
41
|
+
readonly UseDualStack: {
|
|
42
|
+
readonly type: "builtInParams";
|
|
43
|
+
readonly name: "useDualstackEndpoint";
|
|
44
|
+
};
|
|
45
|
+
};
|
|
28
46
|
export interface EndpointParameters extends __EndpointParameters {
|
|
29
47
|
Region?: string;
|
|
30
48
|
UseDualStack?: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rekognitionstreaming",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rekognitionstreaming Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.481.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",
|
|
@@ -20,9 +20,9 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/client-sts": "3.481.0",
|
|
24
|
+
"@aws-sdk/core": "3.481.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.481.0",
|
|
26
26
|
"@aws-sdk/eventstream-handler-node": "3.468.0",
|
|
27
27
|
"@aws-sdk/middleware-eventstream": "3.468.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@aws-sdk/util-user-agent-browser": "3.468.0",
|
|
38
38
|
"@aws-sdk/util-user-agent-node": "3.470.0",
|
|
39
39
|
"@smithy/config-resolver": "^2.0.21",
|
|
40
|
-
"@smithy/core": "^1.2.
|
|
40
|
+
"@smithy/core": "^1.2.1",
|
|
41
41
|
"@smithy/eventstream-serde-browser": "^2.0.15",
|
|
42
42
|
"@smithy/eventstream-serde-config-resolver": "^2.0.15",
|
|
43
43
|
"@smithy/eventstream-serde-node": "^2.0.15",
|
|
@@ -46,20 +46,20 @@
|
|
|
46
46
|
"@smithy/invalid-dependency": "^2.0.15",
|
|
47
47
|
"@smithy/middleware-content-length": "^2.0.17",
|
|
48
48
|
"@smithy/middleware-endpoint": "^2.2.3",
|
|
49
|
-
"@smithy/middleware-retry": "^2.0.
|
|
49
|
+
"@smithy/middleware-retry": "^2.0.25",
|
|
50
50
|
"@smithy/middleware-serde": "^2.0.15",
|
|
51
51
|
"@smithy/middleware-stack": "^2.0.9",
|
|
52
52
|
"@smithy/node-config-provider": "^2.1.8",
|
|
53
53
|
"@smithy/node-http-handler": "^2.2.1",
|
|
54
54
|
"@smithy/protocol-http": "^3.0.11",
|
|
55
|
-
"@smithy/smithy-client": "^2.
|
|
55
|
+
"@smithy/smithy-client": "^2.2.0",
|
|
56
56
|
"@smithy/types": "^2.7.0",
|
|
57
57
|
"@smithy/url-parser": "^2.0.15",
|
|
58
58
|
"@smithy/util-base64": "^2.0.1",
|
|
59
59
|
"@smithy/util-body-length-browser": "^2.0.1",
|
|
60
60
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
61
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
62
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
61
|
+
"@smithy/util-defaults-mode-browser": "^2.0.23",
|
|
62
|
+
"@smithy/util-defaults-mode-node": "^2.0.30",
|
|
63
63
|
"@smithy/util-endpoints": "^1.0.7",
|
|
64
64
|
"@smithy/util-retry": "^2.0.8",
|
|
65
65
|
"@smithy/util-utf8": "^2.0.2",
|