@aws-sdk/client-rekognitionstreaming 3.928.0 → 3.930.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.
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: RekognitionStreamingClientConfig
31
31
  retryMode: string | import("@smithy/types").Provider<string>;
32
32
  logger: import("@smithy/types").Logger;
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
34
35
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
35
36
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
36
37
  customUserAgent?: string | import("@smithy/types").UserAgent;
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: RekognitionStreamingClientConfig
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RekognitionStreamingHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
17
18
  serviceId: string;
18
19
  urlParser: import("@smithy/types").UrlParser;
19
20
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,37 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var AccessDeniedException: StaticErrorSchema;
3
+ export declare var BoundingBox: StaticStructureSchema;
4
+ export declare var ChallengeConfig: StaticStructureSchema;
5
+ export declare var ChallengeEvent: StaticStructureSchema;
6
+ export declare var ClientSessionInformationEvent: StaticStructureSchema;
7
+ export declare var ColorDisplayed: StaticStructureSchema;
8
+ export declare var ColorSequence: StaticStructureSchema;
9
+ export declare var DisconnectionEvent: StaticStructureSchema;
10
+ export declare var FaceMovementAndLightClientChallenge: StaticStructureSchema;
11
+ export declare var FaceMovementAndLightServerChallenge: StaticStructureSchema;
12
+ export declare var FaceMovementClientChallenge: StaticStructureSchema;
13
+ export declare var FaceMovementServerChallenge: StaticStructureSchema;
14
+ export declare var FreshnessColor: StaticStructureSchema;
15
+ export declare var InitialFace: StaticStructureSchema;
16
+ export declare var InternalServerException: StaticErrorSchema;
17
+ export declare var OvalParameters: StaticStructureSchema;
18
+ export declare var ServerSessionInformationEvent: StaticStructureSchema;
19
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
20
+ export declare var ServiceUnavailableException: StaticErrorSchema;
21
+ export declare var SessionInformation: StaticStructureSchema;
22
+ export declare var SessionNotFoundException: StaticErrorSchema;
23
+ export declare var StartFaceLivenessSessionRequest: StaticStructureSchema;
24
+ export declare var StartFaceLivenessSessionResponse: StaticStructureSchema;
25
+ export declare var TargetFace: StaticStructureSchema;
26
+ export declare var ThrottlingException: StaticErrorSchema;
27
+ export declare var ValidationException: StaticErrorSchema;
28
+ export declare var VideoEvent: StaticStructureSchema;
29
+ export declare var __Unit: "unit";
30
+ export declare var RekognitionStreamingServiceException: StaticErrorSchema;
31
+ export declare var ColorComponentList: number;
32
+ export declare var ColorSequences: StaticListSchema;
33
+ export declare var ClientChallenge: StaticStructureSchema;
34
+ export declare var LivenessRequestStream: StaticStructureSchema;
35
+ export declare var LivenessResponseStream: StaticStructureSchema;
36
+ export declare var ServerChallenge: StaticStructureSchema;
37
+ export declare var StartFaceLivenessSession: StaticOperationSchema;
@@ -43,11 +43,14 @@ import {
43
43
  BodyLengthCalculator as __BodyLengthCalculator,
44
44
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
45
45
  ChecksumConstructor as __ChecksumConstructor,
46
+ ClientProtocol,
46
47
  Decoder as __Decoder,
47
48
  Encoder as __Encoder,
48
49
  EventStreamSerdeProvider as __EventStreamSerdeProvider,
49
50
  HashConstructor as __HashConstructor,
50
51
  HttpHandlerOptions as __HttpHandlerOptions,
52
+ HttpRequest,
53
+ HttpResponse,
51
54
  Logger as __Logger,
52
55
  Provider as __Provider,
53
56
  Provider,
@@ -96,6 +99,7 @@ export interface ClientDefaults
96
99
  retryMode?: string | __Provider<string>;
97
100
  logger?: __Logger;
98
101
  extensions?: RuntimeExtension[];
102
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
99
103
  eventStreamSerdeProvider?: __EventStreamSerdeProvider;
100
104
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
101
105
  eventStreamPayloadHandlerProvider?: __EventStreamPayloadHandlerProvider;
@@ -97,7 +97,6 @@ export declare namespace ClientChallenge {
97
97
  FaceMovementChallenge: (value: FaceMovementClientChallenge) => T;
98
98
  _: (name: string, value: any) => T;
99
99
  }
100
- const visit: <T>(value: ClientChallenge, visitor: Visitor<T>) => T;
101
100
  }
102
101
  export interface ClientSessionInformationEvent {
103
102
  Challenge: ClientChallenge | undefined;
@@ -169,7 +168,6 @@ export declare namespace LivenessRequestStream {
169
168
  ClientSessionInformationEvent: (value: ClientSessionInformationEvent) => T;
170
169
  _: (name: string, value: any) => T;
171
170
  }
172
- const visit: <T>(value: LivenessRequestStream, visitor: Visitor<T>) => T;
173
171
  }
174
172
  export type ServerChallenge =
175
173
  | ServerChallenge.FaceMovementAndLightChallengeMember
@@ -198,7 +196,6 @@ export declare namespace ServerChallenge {
198
196
  FaceMovementChallenge: (value: FaceMovementServerChallenge) => T;
199
197
  _: (name: string, value: any) => T;
200
198
  }
201
- const visit: <T>(value: ServerChallenge, visitor: Visitor<T>) => T;
202
199
  }
203
200
  export interface SessionInformation {
204
201
  Challenge: ServerChallenge | undefined;
@@ -363,7 +360,6 @@ export declare namespace LivenessResponseStream {
363
360
  ServiceUnavailableException: (value: ServiceUnavailableException) => T;
364
361
  _: (name: string, value: any) => T;
365
362
  }
366
- const visit: <T>(value: LivenessResponseStream, visitor: Visitor<T>) => T;
367
363
  }
368
364
  export declare class SessionNotFoundException extends __BaseException {
369
365
  readonly name: "SessionNotFoundException";
@@ -385,15 +381,3 @@ export interface StartFaceLivenessSessionResponse {
385
381
  SessionId: string | undefined;
386
382
  LivenessResponseStream?: AsyncIterable<LivenessResponseStream> | undefined;
387
383
  }
388
- export declare const LivenessRequestStreamFilterSensitiveLog: (
389
- obj: LivenessRequestStream
390
- ) => any;
391
- export declare const LivenessResponseStreamFilterSensitiveLog: (
392
- obj: LivenessResponseStream
393
- ) => any;
394
- export declare const StartFaceLivenessSessionRequestFilterSensitiveLog: (
395
- obj: StartFaceLivenessSessionRequest
396
- ) => any;
397
- export declare const StartFaceLivenessSessionResponseFilterSensitiveLog: (
398
- obj: StartFaceLivenessSessionResponse
399
- ) => any;
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  userAgentAppId?:
45
49
  | string
@@ -42,6 +42,10 @@ export declare const getRuntimeConfig: (
42
42
  profile?: string;
43
43
  logger: import("@smithy/types").Logger;
44
44
  extensions: import("./runtimeExtensions").RuntimeExtension[];
45
+ protocol: import("@smithy/types").ClientProtocol<
46
+ import("@smithy/types").HttpRequest,
47
+ import("@smithy/types").HttpResponse
48
+ >;
45
49
  customUserAgent?: string | import("@smithy/types").UserAgent;
46
50
  retryStrategy?:
47
51
  | import("@smithy/types").RetryStrategy
@@ -52,6 +52,10 @@ export declare const getRuntimeConfig: (
52
52
  retryMode: string | import("@smithy/types").Provider<string>;
53
53
  logger: import("@smithy/types").Logger;
54
54
  extensions: import("./runtimeExtensions").RuntimeExtension[];
55
+ protocol: import("@smithy/types").ClientProtocol<
56
+ import("@smithy/types").HttpRequest,
57
+ import("@smithy/types").HttpResponse
58
+ >;
55
59
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
56
60
  defaultsMode:
57
61
  | import("@smithy/smithy-client").DefaultsMode
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
16
16
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RekognitionStreamingHttpAuthSchemeProvider;
17
17
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
18
18
  logger: import("@smithy/types").Logger;
19
+ protocol: import("@smithy/types").ClientProtocol<
20
+ import("@smithy/types").HttpRequest,
21
+ import("@smithy/types").HttpResponse
22
+ >;
19
23
  serviceId: string;
20
24
  urlParser: import("@smithy/types").UrlParser;
21
25
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,42 @@
1
+ import {
2
+ StaticErrorSchema,
3
+ StaticListSchema,
4
+ StaticOperationSchema,
5
+ StaticStructureSchema,
6
+ } from "@smithy/types";
7
+ export declare var AccessDeniedException: StaticErrorSchema;
8
+ export declare var BoundingBox: StaticStructureSchema;
9
+ export declare var ChallengeConfig: StaticStructureSchema;
10
+ export declare var ChallengeEvent: StaticStructureSchema;
11
+ export declare var ClientSessionInformationEvent: StaticStructureSchema;
12
+ export declare var ColorDisplayed: StaticStructureSchema;
13
+ export declare var ColorSequence: StaticStructureSchema;
14
+ export declare var DisconnectionEvent: StaticStructureSchema;
15
+ export declare var FaceMovementAndLightClientChallenge: StaticStructureSchema;
16
+ export declare var FaceMovementAndLightServerChallenge: StaticStructureSchema;
17
+ export declare var FaceMovementClientChallenge: StaticStructureSchema;
18
+ export declare var FaceMovementServerChallenge: StaticStructureSchema;
19
+ export declare var FreshnessColor: StaticStructureSchema;
20
+ export declare var InitialFace: StaticStructureSchema;
21
+ export declare var InternalServerException: StaticErrorSchema;
22
+ export declare var OvalParameters: StaticStructureSchema;
23
+ export declare var ServerSessionInformationEvent: StaticStructureSchema;
24
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
25
+ export declare var ServiceUnavailableException: StaticErrorSchema;
26
+ export declare var SessionInformation: StaticStructureSchema;
27
+ export declare var SessionNotFoundException: StaticErrorSchema;
28
+ export declare var StartFaceLivenessSessionRequest: StaticStructureSchema;
29
+ export declare var StartFaceLivenessSessionResponse: StaticStructureSchema;
30
+ export declare var TargetFace: StaticStructureSchema;
31
+ export declare var ThrottlingException: StaticErrorSchema;
32
+ export declare var ValidationException: StaticErrorSchema;
33
+ export declare var VideoEvent: StaticStructureSchema;
34
+ export declare var __Unit: "unit";
35
+ export declare var RekognitionStreamingServiceException: StaticErrorSchema;
36
+ export declare var ColorComponentList: number;
37
+ export declare var ColorSequences: StaticListSchema;
38
+ export declare var ClientChallenge: StaticStructureSchema;
39
+ export declare var LivenessRequestStream: StaticStructureSchema;
40
+ export declare var LivenessResponseStream: StaticStructureSchema;
41
+ export declare var ServerChallenge: StaticStructureSchema;
42
+ export declare var StartFaceLivenessSession: StaticOperationSchema;
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.928.0",
4
+ "version": "3.930.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-rekognitionstreaming",
@@ -20,47 +20,47 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.928.0",
24
- "@aws-sdk/credential-provider-node": "3.928.0",
25
- "@aws-sdk/eventstream-handler-node": "3.922.0",
26
- "@aws-sdk/middleware-eventstream": "3.922.0",
27
- "@aws-sdk/middleware-host-header": "3.922.0",
28
- "@aws-sdk/middleware-logger": "3.922.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.922.0",
30
- "@aws-sdk/middleware-user-agent": "3.928.0",
31
- "@aws-sdk/middleware-websocket": "3.922.0",
32
- "@aws-sdk/region-config-resolver": "3.925.0",
33
- "@aws-sdk/types": "3.922.0",
34
- "@aws-sdk/util-endpoints": "3.922.0",
35
- "@aws-sdk/util-user-agent-browser": "3.922.0",
36
- "@aws-sdk/util-user-agent-node": "3.928.0",
37
- "@smithy/config-resolver": "^4.4.2",
38
- "@smithy/core": "^3.17.2",
39
- "@smithy/eventstream-serde-browser": "^4.2.4",
40
- "@smithy/eventstream-serde-config-resolver": "^4.3.4",
41
- "@smithy/eventstream-serde-node": "^4.2.4",
42
- "@smithy/fetch-http-handler": "^5.3.5",
43
- "@smithy/hash-node": "^4.2.4",
44
- "@smithy/invalid-dependency": "^4.2.4",
45
- "@smithy/middleware-content-length": "^4.2.4",
46
- "@smithy/middleware-endpoint": "^4.3.6",
47
- "@smithy/middleware-retry": "^4.4.6",
48
- "@smithy/middleware-serde": "^4.2.4",
49
- "@smithy/middleware-stack": "^4.2.4",
50
- "@smithy/node-config-provider": "^4.3.4",
51
- "@smithy/node-http-handler": "^4.4.4",
52
- "@smithy/protocol-http": "^5.3.4",
53
- "@smithy/smithy-client": "^4.9.2",
54
- "@smithy/types": "^4.8.1",
55
- "@smithy/url-parser": "^4.2.4",
23
+ "@aws-sdk/core": "3.930.0",
24
+ "@aws-sdk/credential-provider-node": "3.930.0",
25
+ "@aws-sdk/eventstream-handler-node": "3.930.0",
26
+ "@aws-sdk/middleware-eventstream": "3.930.0",
27
+ "@aws-sdk/middleware-host-header": "3.930.0",
28
+ "@aws-sdk/middleware-logger": "3.930.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.930.0",
30
+ "@aws-sdk/middleware-user-agent": "3.930.0",
31
+ "@aws-sdk/middleware-websocket": "3.930.0",
32
+ "@aws-sdk/region-config-resolver": "3.930.0",
33
+ "@aws-sdk/types": "3.930.0",
34
+ "@aws-sdk/util-endpoints": "3.930.0",
35
+ "@aws-sdk/util-user-agent-browser": "3.930.0",
36
+ "@aws-sdk/util-user-agent-node": "3.930.0",
37
+ "@smithy/config-resolver": "^4.4.3",
38
+ "@smithy/core": "^3.18.2",
39
+ "@smithy/eventstream-serde-browser": "^4.2.5",
40
+ "@smithy/eventstream-serde-config-resolver": "^4.3.5",
41
+ "@smithy/eventstream-serde-node": "^4.2.5",
42
+ "@smithy/fetch-http-handler": "^5.3.6",
43
+ "@smithy/hash-node": "^4.2.5",
44
+ "@smithy/invalid-dependency": "^4.2.5",
45
+ "@smithy/middleware-content-length": "^4.2.5",
46
+ "@smithy/middleware-endpoint": "^4.3.9",
47
+ "@smithy/middleware-retry": "^4.4.9",
48
+ "@smithy/middleware-serde": "^4.2.5",
49
+ "@smithy/middleware-stack": "^4.2.5",
50
+ "@smithy/node-config-provider": "^4.3.5",
51
+ "@smithy/node-http-handler": "^4.4.5",
52
+ "@smithy/protocol-http": "^5.3.5",
53
+ "@smithy/smithy-client": "^4.9.5",
54
+ "@smithy/types": "^4.9.0",
55
+ "@smithy/url-parser": "^4.2.5",
56
56
  "@smithy/util-base64": "^4.3.0",
57
57
  "@smithy/util-body-length-browser": "^4.2.0",
58
58
  "@smithy/util-body-length-node": "^4.2.1",
59
- "@smithy/util-defaults-mode-browser": "^4.3.5",
60
- "@smithy/util-defaults-mode-node": "^4.2.8",
61
- "@smithy/util-endpoints": "^3.2.4",
62
- "@smithy/util-middleware": "^4.2.4",
63
- "@smithy/util-retry": "^4.2.4",
59
+ "@smithy/util-defaults-mode-browser": "^4.3.8",
60
+ "@smithy/util-defaults-mode-node": "^4.2.11",
61
+ "@smithy/util-endpoints": "^3.2.5",
62
+ "@smithy/util-middleware": "^4.2.5",
63
+ "@smithy/util-retry": "^4.2.5",
64
64
  "@smithy/util-utf8": "^4.2.0",
65
65
  "tslib": "^2.6.2"
66
66
  },