@aws-sdk/client-rekognition 3.431.0 → 3.434.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/README.md +24 -0
- package/dist-cjs/Rekognition.js +6 -0
- package/dist-cjs/commands/GetMediaAnalysisJobCommand.js +51 -0
- package/dist-cjs/commands/ListMediaAnalysisJobsCommand.js +51 -0
- package/dist-cjs/commands/StartMediaAnalysisJobCommand.js +51 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +35 -1
- package/dist-cjs/pagination/ListMediaAnalysisJobsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +270 -3
- package/dist-es/Rekognition.js +6 -0
- package/dist-es/commands/GetMediaAnalysisJobCommand.js +47 -0
- package/dist-es/commands/ListMediaAnalysisJobsCommand.js +47 -0
- package/dist-es/commands/StartMediaAnalysisJobCommand.js +47 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +33 -0
- package/dist-es/pagination/ListMediaAnalysisJobsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +262 -1
- package/dist-types/Rekognition.d.ts +21 -0
- package/dist-types/RekognitionClient.d.ts +5 -2
- package/dist-types/commands/GetMediaAnalysisJobCommand.d.ts +134 -0
- package/dist-types/commands/ListMediaAnalysisJobsCommand.d.ts +139 -0
- package/dist-types/commands/PutProjectPolicyCommand.d.ts +1 -1
- package/dist-types/commands/RecognizeCelebritiesCommand.d.ts +1 -1
- package/dist-types/commands/SearchFacesByImageCommand.d.ts +1 -1
- package/dist-types/commands/SearchFacesCommand.d.ts +1 -1
- package/dist-types/commands/SearchUsersByImageCommand.d.ts +1 -2
- package/dist-types/commands/SearchUsersCommand.d.ts +1 -1
- package/dist-types/commands/StartMediaAnalysisJobCommand.d.ts +135 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +336 -406
- package/dist-types/models/models_1.d.ts +457 -1
- package/dist-types/pagination/ListMediaAnalysisJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/dist-types/ts3.4/Rekognition.d.ts +51 -0
- package/dist-types/ts3.4/RekognitionClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/GetMediaAnalysisJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListMediaAnalysisJobsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/PutProjectPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RecognizeCelebritiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchFacesByImageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchFacesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchUsersByImageCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchUsersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartMediaAnalysisJobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +95 -74
- package/dist-types/ts3.4/models/models_1.d.ts +96 -2
- package/dist-types/ts3.4/pagination/ListMediaAnalysisJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
- package/package.json +32 -32
|
@@ -155,6 +155,10 @@ import {
|
|
|
155
155
|
GetLabelDetectionCommandInput,
|
|
156
156
|
GetLabelDetectionCommandOutput,
|
|
157
157
|
} from "../commands/GetLabelDetectionCommand";
|
|
158
|
+
import {
|
|
159
|
+
GetMediaAnalysisJobCommandInput,
|
|
160
|
+
GetMediaAnalysisJobCommandOutput,
|
|
161
|
+
} from "../commands/GetMediaAnalysisJobCommand";
|
|
158
162
|
import {
|
|
159
163
|
GetPersonTrackingCommandInput,
|
|
160
164
|
GetPersonTrackingCommandOutput,
|
|
@@ -187,6 +191,10 @@ import {
|
|
|
187
191
|
ListFacesCommandInput,
|
|
188
192
|
ListFacesCommandOutput,
|
|
189
193
|
} from "../commands/ListFacesCommand";
|
|
194
|
+
import {
|
|
195
|
+
ListMediaAnalysisJobsCommandInput,
|
|
196
|
+
ListMediaAnalysisJobsCommandOutput,
|
|
197
|
+
} from "../commands/ListMediaAnalysisJobsCommand";
|
|
190
198
|
import {
|
|
191
199
|
ListProjectPoliciesCommandInput,
|
|
192
200
|
ListProjectPoliciesCommandOutput,
|
|
@@ -247,6 +255,10 @@ import {
|
|
|
247
255
|
StartLabelDetectionCommandInput,
|
|
248
256
|
StartLabelDetectionCommandOutput,
|
|
249
257
|
} from "../commands/StartLabelDetectionCommand";
|
|
258
|
+
import {
|
|
259
|
+
StartMediaAnalysisJobCommandInput,
|
|
260
|
+
StartMediaAnalysisJobCommandOutput,
|
|
261
|
+
} from "../commands/StartMediaAnalysisJobCommand";
|
|
250
262
|
import {
|
|
251
263
|
StartPersonTrackingCommandInput,
|
|
252
264
|
StartPersonTrackingCommandOutput,
|
|
@@ -443,6 +455,10 @@ export declare const se_GetLabelDetectionCommand: (
|
|
|
443
455
|
input: GetLabelDetectionCommandInput,
|
|
444
456
|
context: __SerdeContext
|
|
445
457
|
) => Promise<__HttpRequest>;
|
|
458
|
+
export declare const se_GetMediaAnalysisJobCommand: (
|
|
459
|
+
input: GetMediaAnalysisJobCommandInput,
|
|
460
|
+
context: __SerdeContext
|
|
461
|
+
) => Promise<__HttpRequest>;
|
|
446
462
|
export declare const se_GetPersonTrackingCommand: (
|
|
447
463
|
input: GetPersonTrackingCommandInput,
|
|
448
464
|
context: __SerdeContext
|
|
@@ -475,6 +491,10 @@ export declare const se_ListFacesCommand: (
|
|
|
475
491
|
input: ListFacesCommandInput,
|
|
476
492
|
context: __SerdeContext
|
|
477
493
|
) => Promise<__HttpRequest>;
|
|
494
|
+
export declare const se_ListMediaAnalysisJobsCommand: (
|
|
495
|
+
input: ListMediaAnalysisJobsCommandInput,
|
|
496
|
+
context: __SerdeContext
|
|
497
|
+
) => Promise<__HttpRequest>;
|
|
478
498
|
export declare const se_ListProjectPoliciesCommand: (
|
|
479
499
|
input: ListProjectPoliciesCommandInput,
|
|
480
500
|
context: __SerdeContext
|
|
@@ -535,6 +555,10 @@ export declare const se_StartLabelDetectionCommand: (
|
|
|
535
555
|
input: StartLabelDetectionCommandInput,
|
|
536
556
|
context: __SerdeContext
|
|
537
557
|
) => Promise<__HttpRequest>;
|
|
558
|
+
export declare const se_StartMediaAnalysisJobCommand: (
|
|
559
|
+
input: StartMediaAnalysisJobCommandInput,
|
|
560
|
+
context: __SerdeContext
|
|
561
|
+
) => Promise<__HttpRequest>;
|
|
538
562
|
export declare const se_StartPersonTrackingCommand: (
|
|
539
563
|
input: StartPersonTrackingCommandInput,
|
|
540
564
|
context: __SerdeContext
|
|
@@ -731,6 +755,10 @@ export declare const de_GetLabelDetectionCommand: (
|
|
|
731
755
|
output: __HttpResponse,
|
|
732
756
|
context: __SerdeContext
|
|
733
757
|
) => Promise<GetLabelDetectionCommandOutput>;
|
|
758
|
+
export declare const de_GetMediaAnalysisJobCommand: (
|
|
759
|
+
output: __HttpResponse,
|
|
760
|
+
context: __SerdeContext
|
|
761
|
+
) => Promise<GetMediaAnalysisJobCommandOutput>;
|
|
734
762
|
export declare const de_GetPersonTrackingCommand: (
|
|
735
763
|
output: __HttpResponse,
|
|
736
764
|
context: __SerdeContext
|
|
@@ -763,6 +791,10 @@ export declare const de_ListFacesCommand: (
|
|
|
763
791
|
output: __HttpResponse,
|
|
764
792
|
context: __SerdeContext
|
|
765
793
|
) => Promise<ListFacesCommandOutput>;
|
|
794
|
+
export declare const de_ListMediaAnalysisJobsCommand: (
|
|
795
|
+
output: __HttpResponse,
|
|
796
|
+
context: __SerdeContext
|
|
797
|
+
) => Promise<ListMediaAnalysisJobsCommandOutput>;
|
|
766
798
|
export declare const de_ListProjectPoliciesCommand: (
|
|
767
799
|
output: __HttpResponse,
|
|
768
800
|
context: __SerdeContext
|
|
@@ -823,6 +855,10 @@ export declare const de_StartLabelDetectionCommand: (
|
|
|
823
855
|
output: __HttpResponse,
|
|
824
856
|
context: __SerdeContext
|
|
825
857
|
) => Promise<StartLabelDetectionCommandOutput>;
|
|
858
|
+
export declare const de_StartMediaAnalysisJobCommand: (
|
|
859
|
+
output: __HttpResponse,
|
|
860
|
+
context: __SerdeContext
|
|
861
|
+
) => Promise<StartMediaAnalysisJobCommandOutput>;
|
|
826
862
|
export declare const de_StartPersonTrackingCommand: (
|
|
827
863
|
output: __HttpResponse,
|
|
828
864
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rekognition",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rekognition Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.434.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",
|
|
@@ -21,41 +21,41 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "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-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.1.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.433.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.433.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.433.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.433.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.433.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.433.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.433.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.433.0",
|
|
32
|
+
"@aws-sdk/types": "3.433.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.433.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.433.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.433.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.16",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.4",
|
|
38
|
+
"@smithy/hash-node": "^2.0.12",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.12",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.14",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.3",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.18",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.12",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.6",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.3",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.8",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.8",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.12",
|
|
49
|
+
"@smithy/types": "^2.4.0",
|
|
50
|
+
"@smithy/url-parser": "^2.0.12",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.16",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.21",
|
|
56
|
+
"@smithy/util-retry": "^2.0.5",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
|
-
"@smithy/util-waiter": "^2.0.
|
|
58
|
+
"@smithy/util-waiter": "^2.0.12",
|
|
59
59
|
"tslib": "^2.5.0",
|
|
60
60
|
"uuid": "^8.3.2"
|
|
61
61
|
},
|