@aws-sdk/client-rekognitionstreaming 3.1077.0 → 3.1079.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 +14 -24
- package/dist-es/commandBuilder.js +13 -0
- package/dist-es/commands/StartFaceLivenessSessionCommand.js +2 -27
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/StartFaceLivenessSessionCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartFaceLivenessSessionCommand.d.ts +3 -8
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +11 -11
package/dist-cjs/index.js
CHANGED
|
@@ -2,8 +2,9 @@ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsu
|
|
|
2
2
|
const { resolveEventStreamConfig, getEventStreamPlugin } = require("@aws-sdk/middleware-eventstream");
|
|
3
3
|
const { resolveWebSocketConfig, getWebSocketPlugin } = require("@aws-sdk/middleware-websocket");
|
|
4
4
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
|
|
5
|
-
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client,
|
|
6
|
-
|
|
5
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
|
|
6
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
7
|
+
exports.$Command = $Command;
|
|
7
8
|
exports.__Client = Client;
|
|
8
9
|
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
9
10
|
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
@@ -72,7 +73,7 @@ const commonParams = {
|
|
|
72
73
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
73
74
|
};
|
|
74
75
|
|
|
75
|
-
var version = "3.
|
|
76
|
+
var version = "3.1078.0";
|
|
76
77
|
var packageInfo = {
|
|
77
78
|
version: version};
|
|
78
79
|
|
|
@@ -672,27 +673,16 @@ class RekognitionStreamingClient extends Client {
|
|
|
672
673
|
}
|
|
673
674
|
}
|
|
674
675
|
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
];
|
|
686
|
-
})
|
|
687
|
-
.s("RekognitionStreamingService", "StartFaceLivenessSession", {
|
|
688
|
-
eventStream: {
|
|
689
|
-
input: true,
|
|
690
|
-
output: true,
|
|
691
|
-
},
|
|
692
|
-
})
|
|
693
|
-
.n("RekognitionStreamingClient", "StartFaceLivenessSessionCommand")
|
|
694
|
-
.sc(StartFaceLivenessSession$)
|
|
695
|
-
.build() {
|
|
676
|
+
const command = makeBuilder(commonParams, "RekognitionStreamingService", "RekognitionStreamingClient", getEndpointPlugin);
|
|
677
|
+
const _ep0 = {};
|
|
678
|
+
const _mw0 = (Command, cs, config, o) => [
|
|
679
|
+
getEventStreamPlugin(config),
|
|
680
|
+
getWebSocketPlugin(config, {
|
|
681
|
+
headerPrefix: "x-amz-rekognition-streaming-liveness-",
|
|
682
|
+
}),
|
|
683
|
+
];
|
|
684
|
+
|
|
685
|
+
class StartFaceLivenessSessionCommand extends command(_ep0, _mw0, "StartFaceLivenessSession", StartFaceLivenessSession$) {
|
|
696
686
|
}
|
|
697
687
|
|
|
698
688
|
const commands = {
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream";
|
|
2
|
+
import { getWebSocketPlugin } from "@aws-sdk/middleware-websocket";
|
|
3
|
+
import { makeBuilder } from "@smithy/core/client";
|
|
4
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
5
|
+
import { commonParams } from "./endpoint/EndpointParameters";
|
|
6
|
+
export const command = makeBuilder(commonParams, "RekognitionStreamingService", "RekognitionStreamingClient", getEndpointPlugin);
|
|
7
|
+
export const _ep0 = {};
|
|
8
|
+
export const _mw0 = (Command, cs, config, o) => [
|
|
9
|
+
getEventStreamPlugin(config),
|
|
10
|
+
getWebSocketPlugin(config, {
|
|
11
|
+
headerPrefix: "x-amz-rekognition-streaming-liveness-",
|
|
12
|
+
}),
|
|
13
|
+
];
|
|
@@ -1,29 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getWebSocketPlugin } from "@aws-sdk/middleware-websocket";
|
|
3
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
4
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
5
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
6
2
|
import { StartFaceLivenessSession$ } from "../schemas/schemas_0";
|
|
7
|
-
export
|
|
8
|
-
export class StartFaceLivenessSessionCommand extends $Command
|
|
9
|
-
.classBuilder()
|
|
10
|
-
.ep(commonParams)
|
|
11
|
-
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
getEventStreamPlugin(config),
|
|
15
|
-
getWebSocketPlugin(config, {
|
|
16
|
-
headerPrefix: 'x-amz-rekognition-streaming-liveness-',
|
|
17
|
-
}),
|
|
18
|
-
];
|
|
19
|
-
})
|
|
20
|
-
.s("RekognitionStreamingService", "StartFaceLivenessSession", {
|
|
21
|
-
eventStream: {
|
|
22
|
-
input: true,
|
|
23
|
-
output: true,
|
|
24
|
-
},
|
|
25
|
-
})
|
|
26
|
-
.n("RekognitionStreamingClient", "StartFaceLivenessSessionCommand")
|
|
27
|
-
.sc(StartFaceLivenessSession$)
|
|
28
|
-
.build() {
|
|
3
|
+
export class StartFaceLivenessSessionCommand extends command(_ep0, _mw0, "StartFaceLivenessSession", StartFaceLivenessSession$) {
|
|
29
4
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./RekognitionStreamingClient";
|
|
2
2
|
export * from "./RekognitionStreaming";
|
|
3
3
|
export * from "./commands";
|
|
4
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
4
5
|
export * from "./schemas/schemas_0";
|
|
5
6
|
export * from "./models/enums";
|
|
6
7
|
export * from "./models/errors";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { RekognitionStreamingClientResolvedConfig } from "./RekognitionStreamingClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends import("./commands").StartFaceLivenessSessionCommandInput, O extends import("./commands").StartFaceLivenessSessionCommandOutput>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, RekognitionStreamingClientResolvedConfig, import("./commands").StartFaceLivenessSessionCommandInput, import("./commands").StartFaceLivenessSessionCommandOutput>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, RekognitionStreamingClientResolvedConfig, import("./commands").StartFaceLivenessSessionCommandInput, import("./commands").StartFaceLivenessSessionCommandOutput>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => import("@smithy/types").Pluggable<any, any>[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { StartFaceLivenessSessionRequest, StartFaceLivenessSessionResponse } from "../models/models_0";
|
|
4
|
-
import type { RekognitionStreamingClientResolvedConfig } from "../RekognitionStreamingClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface StartFaceLivenessSessionCommandInput extends StartFaceLivenessS
|
|
|
22
19
|
export interface StartFaceLivenessSessionCommandOutput extends StartFaceLivenessSessionResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const StartFaceLivenessSessionCommand_base: {
|
|
25
|
-
new (input: StartFaceLivenessSessionCommandInput): import("@smithy/core/client").CommandImpl<StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput, RekognitionStreamingClientResolvedConfig, StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput>;
|
|
26
|
-
new (input: StartFaceLivenessSessionCommandInput): import("@smithy/core/client").CommandImpl<StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput, RekognitionStreamingClientResolvedConfig, StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: StartFaceLivenessSessionCommandInput): import("@smithy/core/client").CommandImpl<StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput, import("..").RekognitionStreamingClientResolvedConfig, StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput>;
|
|
23
|
+
new (input: StartFaceLivenessSessionCommandInput): import("@smithy/core/client").CommandImpl<StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput, import("..").RekognitionStreamingClientResolvedConfig, StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Starts a Face Liveness video stream and liveness detection process for a given
|
package/dist-types/index.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
30
30
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
31
31
|
export type { RekognitionStreamingExtensionConfiguration } from "./extensionConfiguration";
|
|
32
32
|
export * from "./commands";
|
|
33
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
33
34
|
export * from "./schemas/schemas_0";
|
|
34
35
|
export * from "./models/enums";
|
|
35
36
|
export * from "./models/errors";
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import { RekognitionStreamingClientResolvedConfig } from "./RekognitionStreamingClient";
|
|
3
|
+
export declare const command: <
|
|
4
|
+
I extends import("./commands").StartFaceLivenessSessionCommandInput,
|
|
5
|
+
O extends import("./commands").StartFaceLivenessSessionCommandOutput
|
|
6
|
+
>(
|
|
7
|
+
added: EndpointParameterInstructions,
|
|
8
|
+
plugins: (
|
|
9
|
+
CommandCtor: any,
|
|
10
|
+
clientStack: any,
|
|
11
|
+
config: any,
|
|
12
|
+
options: any
|
|
13
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
14
|
+
op: string,
|
|
15
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
16
|
+
smithyContext?: Record<string, unknown>
|
|
17
|
+
) => {
|
|
18
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
I,
|
|
20
|
+
O,
|
|
21
|
+
RekognitionStreamingClientResolvedConfig,
|
|
22
|
+
import("./commands").StartFaceLivenessSessionCommandInput,
|
|
23
|
+
import("./commands").StartFaceLivenessSessionCommandOutput
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
I,
|
|
29
|
+
O,
|
|
30
|
+
RekognitionStreamingClientResolvedConfig,
|
|
31
|
+
import("./commands").StartFaceLivenessSessionCommandInput,
|
|
32
|
+
import("./commands").StartFaceLivenessSessionCommandOutput
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
37
|
+
export declare const _mw0: (
|
|
38
|
+
Command: any,
|
|
39
|
+
cs: any,
|
|
40
|
+
config: any,
|
|
41
|
+
o: any
|
|
42
|
+
) => import("@smithy/types").Pluggable<any, any>[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
StartFaceLivenessSessionRequest,
|
|
5
4
|
StartFaceLivenessSessionResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import { RekognitionStreamingClientResolvedConfig } from "../RekognitionStreamingClient";
|
|
8
6
|
export { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
export interface StartFaceLivenessSessionCommandInput
|
|
11
8
|
extends StartFaceLivenessSessionRequest {}
|
|
12
9
|
export interface StartFaceLivenessSessionCommandOutput
|
|
@@ -18,7 +15,7 @@ declare const StartFaceLivenessSessionCommand_base: {
|
|
|
18
15
|
): import("@smithy/core/client").CommandImpl<
|
|
19
16
|
StartFaceLivenessSessionCommandInput,
|
|
20
17
|
StartFaceLivenessSessionCommandOutput,
|
|
21
|
-
RekognitionStreamingClientResolvedConfig,
|
|
18
|
+
import("..").RekognitionStreamingClientResolvedConfig,
|
|
22
19
|
StartFaceLivenessSessionCommandInput,
|
|
23
20
|
StartFaceLivenessSessionCommandOutput
|
|
24
21
|
>;
|
|
@@ -27,13 +24,11 @@ declare const StartFaceLivenessSessionCommand_base: {
|
|
|
27
24
|
): import("@smithy/core/client").CommandImpl<
|
|
28
25
|
StartFaceLivenessSessionCommandInput,
|
|
29
26
|
StartFaceLivenessSessionCommandOutput,
|
|
30
|
-
RekognitionStreamingClientResolvedConfig,
|
|
27
|
+
import("..").RekognitionStreamingClientResolvedConfig,
|
|
31
28
|
StartFaceLivenessSessionCommandInput,
|
|
32
29
|
StartFaceLivenessSessionCommandOutput
|
|
33
30
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
32
|
};
|
|
38
33
|
export declare class StartFaceLivenessSessionCommand extends StartFaceLivenessSessionCommand_base {
|
|
39
34
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { RekognitionStreamingExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
7
8
|
export * from "./schemas/schemas_0";
|
|
8
9
|
export * from "./models/enums";
|
|
9
10
|
export * from "./models/errors";
|
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.1079.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -19,16 +19,16 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.974.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/eventstream-handler-node": "^3.972.
|
|
25
|
-
"@aws-sdk/middleware-eventstream": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-websocket": "^3.972.
|
|
27
|
-
"@aws-sdk/types": "^3.973.
|
|
28
|
-
"@smithy/core": "^3.
|
|
29
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
30
|
-
"@smithy/node-http-handler": "^4.9.
|
|
31
|
-
"@smithy/types": "^4.15.
|
|
22
|
+
"@aws-sdk/core": "^3.974.27",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "^3.972.62",
|
|
24
|
+
"@aws-sdk/eventstream-handler-node": "^3.972.25",
|
|
25
|
+
"@aws-sdk/middleware-eventstream": "^3.972.21",
|
|
26
|
+
"@aws-sdk/middleware-websocket": "^3.972.35",
|
|
27
|
+
"@aws-sdk/types": "^3.973.15",
|
|
28
|
+
"@smithy/core": "^3.29.0",
|
|
29
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
30
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
31
|
+
"@smithy/types": "^4.15.1",
|
|
32
32
|
"tslib": "^2.6.2"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|