@aws-sdk/client-rekognition 3.309.0 → 3.310.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 +16 -0
- package/dist-cjs/Rekognition.js +30 -0
- package/dist-cjs/commands/CreateFaceLivenessSessionCommand.js +45 -0
- package/dist-cjs/commands/GetFaceLivenessSessionResultsCommand.js +46 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/index.js +1 -0
- package/dist-cjs/models/models_0.js +36 -2
- package/dist-cjs/models/models_1.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +193 -3
- package/dist-es/Rekognition.js +30 -0
- package/dist-es/commands/CreateFaceLivenessSessionCommand.js +41 -0
- package/dist-es/commands/GetFaceLivenessSessionResultsCommand.js +42 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +31 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +187 -1
- package/dist-types/Rekognition.d.ts +51 -10
- package/dist-types/RekognitionClient.d.ts +4 -2
- package/dist-types/commands/CopyProjectVersionCommand.d.ts +1 -0
- package/dist-types/commands/CreateFaceLivenessSessionCommand.d.ts +94 -0
- package/dist-types/commands/CreateStreamProcessorCommand.d.ts +17 -7
- package/dist-types/commands/DeleteProjectPolicyCommand.d.ts +1 -0
- package/dist-types/commands/DetectLabelsCommand.d.ts +2 -3
- package/dist-types/commands/GetFaceLivenessSessionResultsCommand.d.ts +88 -0
- package/dist-types/commands/ListProjectPoliciesCommand.d.ts +1 -0
- package/dist-types/commands/PutProjectPolicyCommand.d.ts +1 -0
- package/dist-types/commands/StopProjectVersionCommand.d.ts +1 -0
- package/dist-types/commands/UpdateStreamProcessorCommand.d.ts +4 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +241 -106
- package/dist-types/models/models_1.d.ts +56 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
- package/dist-types/ts3.4/Rekognition.d.ts +34 -0
- package/dist-types/ts3.4/RekognitionClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/CreateFaceLivenessSessionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetFaceLivenessSessionResultsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateStreamProcessorCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +59 -17
- package/dist-types/ts3.4/models/models_1.d.ts +17 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +24 -0
- package/package.json +36 -36
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateFaceLivenessSessionRequest,
|
|
11
|
+
CreateFaceLivenessSessionResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
RekognitionClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../RekognitionClient";
|
|
18
|
+
export interface CreateFaceLivenessSessionCommandInput
|
|
19
|
+
extends CreateFaceLivenessSessionRequest {}
|
|
20
|
+
export interface CreateFaceLivenessSessionCommandOutput
|
|
21
|
+
extends CreateFaceLivenessSessionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateFaceLivenessSessionCommand extends $Command<
|
|
24
|
+
CreateFaceLivenessSessionCommandInput,
|
|
25
|
+
CreateFaceLivenessSessionCommandOutput,
|
|
26
|
+
RekognitionClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateFaceLivenessSessionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateFaceLivenessSessionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: RekognitionClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateFaceLivenessSessionCommandInput,
|
|
37
|
+
CreateFaceLivenessSessionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
GetFaceLivenessSessionResultsRequest,
|
|
11
|
+
GetFaceLivenessSessionResultsResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
RekognitionClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../RekognitionClient";
|
|
18
|
+
export interface GetFaceLivenessSessionResultsCommandInput
|
|
19
|
+
extends GetFaceLivenessSessionResultsRequest {}
|
|
20
|
+
export interface GetFaceLivenessSessionResultsCommandOutput
|
|
21
|
+
extends GetFaceLivenessSessionResultsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetFaceLivenessSessionResultsCommand extends $Command<
|
|
24
|
+
GetFaceLivenessSessionResultsCommandInput,
|
|
25
|
+
GetFaceLivenessSessionResultsCommandOutput,
|
|
26
|
+
RekognitionClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetFaceLivenessSessionResultsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetFaceLivenessSessionResultsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: RekognitionClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetFaceLivenessSessionResultsCommandInput,
|
|
37
|
+
GetFaceLivenessSessionResultsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -2,6 +2,7 @@ export * from "./CompareFacesCommand";
|
|
|
2
2
|
export * from "./CopyProjectVersionCommand";
|
|
3
3
|
export * from "./CreateCollectionCommand";
|
|
4
4
|
export * from "./CreateDatasetCommand";
|
|
5
|
+
export * from "./CreateFaceLivenessSessionCommand";
|
|
5
6
|
export * from "./CreateProjectCommand";
|
|
6
7
|
export * from "./CreateProjectVersionCommand";
|
|
7
8
|
export * from "./CreateStreamProcessorCommand";
|
|
@@ -28,6 +29,7 @@ export * from "./GetCelebrityInfoCommand";
|
|
|
28
29
|
export * from "./GetCelebrityRecognitionCommand";
|
|
29
30
|
export * from "./GetContentModerationCommand";
|
|
30
31
|
export * from "./GetFaceDetectionCommand";
|
|
32
|
+
export * from "./GetFaceLivenessSessionResultsCommand";
|
|
31
33
|
export * from "./GetFaceSearchCommand";
|
|
32
34
|
export * from "./GetLabelDetectionCommand";
|
|
33
35
|
export * from "./GetPersonTrackingCommand";
|
|
@@ -26,7 +26,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
26
26
|
defaultSigningName: string;
|
|
27
27
|
};
|
|
28
28
|
export interface EndpointParameters extends __EndpointParameters {
|
|
29
|
-
Region
|
|
29
|
+
Region?: string;
|
|
30
30
|
UseDualStack?: boolean;
|
|
31
31
|
UseFIPS?: boolean;
|
|
32
32
|
Endpoint?: string;
|
|
@@ -39,6 +39,17 @@ export interface AudioMetadata {
|
|
|
39
39
|
SampleRate?: number;
|
|
40
40
|
NumberOfChannels?: number;
|
|
41
41
|
}
|
|
42
|
+
export interface BoundingBox {
|
|
43
|
+
Width?: number;
|
|
44
|
+
Height?: number;
|
|
45
|
+
Left?: number;
|
|
46
|
+
Top?: number;
|
|
47
|
+
}
|
|
48
|
+
export interface AuditImage {
|
|
49
|
+
Bytes?: Uint8Array;
|
|
50
|
+
S3Object?: S3Object;
|
|
51
|
+
BoundingBox?: BoundingBox;
|
|
52
|
+
}
|
|
42
53
|
export interface Beard {
|
|
43
54
|
Value?: boolean;
|
|
44
55
|
Confidence?: number;
|
|
@@ -54,12 +65,6 @@ export declare const BodyPart: {
|
|
|
54
65
|
readonly RIGHT_HAND: "RIGHT_HAND";
|
|
55
66
|
};
|
|
56
67
|
export type BodyPart = (typeof BodyPart)[keyof typeof BodyPart];
|
|
57
|
-
export interface BoundingBox {
|
|
58
|
-
Width?: number;
|
|
59
|
-
Height?: number;
|
|
60
|
-
Left?: number;
|
|
61
|
-
Top?: number;
|
|
62
|
-
}
|
|
63
68
|
export interface CoversBodyPart {
|
|
64
69
|
Confidence?: number;
|
|
65
70
|
Value?: boolean;
|
|
@@ -477,6 +482,22 @@ export interface CreateDatasetRequest {
|
|
|
477
482
|
export interface CreateDatasetResponse {
|
|
478
483
|
DatasetArn?: string;
|
|
479
484
|
}
|
|
485
|
+
export interface LivenessOutputConfig {
|
|
486
|
+
S3Bucket: string | undefined;
|
|
487
|
+
S3KeyPrefix?: string;
|
|
488
|
+
}
|
|
489
|
+
export interface CreateFaceLivenessSessionRequestSettings {
|
|
490
|
+
OutputConfig?: LivenessOutputConfig;
|
|
491
|
+
AuditImagesLimit?: number;
|
|
492
|
+
}
|
|
493
|
+
export interface CreateFaceLivenessSessionRequest {
|
|
494
|
+
KmsKeyId?: string;
|
|
495
|
+
Settings?: CreateFaceLivenessSessionRequestSettings;
|
|
496
|
+
ClientRequestToken?: string;
|
|
497
|
+
}
|
|
498
|
+
export interface CreateFaceLivenessSessionResponse {
|
|
499
|
+
SessionId: string | undefined;
|
|
500
|
+
}
|
|
480
501
|
export interface CreateProjectRequest {
|
|
481
502
|
ProjectName: string | undefined;
|
|
482
503
|
}
|
|
@@ -1118,6 +1139,34 @@ export interface GetFaceDetectionResponse {
|
|
|
1118
1139
|
NextToken?: string;
|
|
1119
1140
|
Faces?: FaceDetection[];
|
|
1120
1141
|
}
|
|
1142
|
+
export interface GetFaceLivenessSessionResultsRequest {
|
|
1143
|
+
SessionId: string | undefined;
|
|
1144
|
+
}
|
|
1145
|
+
export declare const LivenessSessionStatus: {
|
|
1146
|
+
readonly CREATED: "CREATED";
|
|
1147
|
+
readonly FAILED: "FAILED";
|
|
1148
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1149
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
1150
|
+
};
|
|
1151
|
+
export type LivenessSessionStatus =
|
|
1152
|
+
(typeof LivenessSessionStatus)[keyof typeof LivenessSessionStatus];
|
|
1153
|
+
export interface GetFaceLivenessSessionResultsResponse {
|
|
1154
|
+
SessionId: string | undefined;
|
|
1155
|
+
Status: LivenessSessionStatus | string | undefined;
|
|
1156
|
+
Confidence?: number;
|
|
1157
|
+
ReferenceImage?: AuditImage;
|
|
1158
|
+
AuditImages?: AuditImage[];
|
|
1159
|
+
}
|
|
1160
|
+
export declare class SessionNotFoundException extends __BaseException {
|
|
1161
|
+
readonly name: "SessionNotFoundException";
|
|
1162
|
+
readonly $fault: "client";
|
|
1163
|
+
Message?: string;
|
|
1164
|
+
Code?: string;
|
|
1165
|
+
Logref?: string;
|
|
1166
|
+
constructor(
|
|
1167
|
+
opts: __ExceptionOptionType<SessionNotFoundException, __BaseException>
|
|
1168
|
+
);
|
|
1169
|
+
}
|
|
1121
1170
|
export interface GetFaceSearchRequest {
|
|
1122
1171
|
JobId: string | undefined;
|
|
1123
1172
|
MaxResults?: number;
|
|
@@ -1621,14 +1670,7 @@ export declare const StreamProcessorParameterToDelete: {
|
|
|
1621
1670
|
};
|
|
1622
1671
|
export type StreamProcessorParameterToDelete =
|
|
1623
1672
|
(typeof StreamProcessorParameterToDelete)[keyof typeof StreamProcessorParameterToDelete];
|
|
1624
|
-
export
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
Name: string | undefined;
|
|
1629
|
-
SettingsForUpdate?: StreamProcessorSettingsForUpdate;
|
|
1630
|
-
RegionsOfInterestForUpdate?: RegionOfInterest[];
|
|
1631
|
-
DataSharingPreferenceForUpdate?: StreamProcessorDataSharingPreference;
|
|
1632
|
-
ParametersToDelete?: (StreamProcessorParameterToDelete | string)[];
|
|
1633
|
-
}
|
|
1634
|
-
export interface UpdateStreamProcessorResponse {}
|
|
1673
|
+
export declare const AuditImageFilterSensitiveLog: (obj: AuditImage) => any;
|
|
1674
|
+
export declare const GetFaceLivenessSessionResultsResponseFilterSensitiveLog: (
|
|
1675
|
+
obj: GetFaceLivenessSessionResultsResponse
|
|
1676
|
+
) => any;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ConnectedHomeSettingsForUpdate,
|
|
3
|
+
RegionOfInterest,
|
|
4
|
+
StreamProcessorDataSharingPreference,
|
|
5
|
+
StreamProcessorParameterToDelete,
|
|
6
|
+
} from "./models_0";
|
|
7
|
+
export interface StreamProcessorSettingsForUpdate {
|
|
8
|
+
ConnectedHomeForUpdate?: ConnectedHomeSettingsForUpdate;
|
|
9
|
+
}
|
|
10
|
+
export interface UpdateStreamProcessorRequest {
|
|
11
|
+
Name: string | undefined;
|
|
12
|
+
SettingsForUpdate?: StreamProcessorSettingsForUpdate;
|
|
13
|
+
RegionsOfInterestForUpdate?: RegionOfInterest[];
|
|
14
|
+
DataSharingPreferenceForUpdate?: StreamProcessorDataSharingPreference;
|
|
15
|
+
ParametersToDelete?: (StreamProcessorParameterToDelete | string)[];
|
|
16
|
+
}
|
|
17
|
+
export interface UpdateStreamProcessorResponse {}
|
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
CreateDatasetCommandInput,
|
|
20
20
|
CreateDatasetCommandOutput,
|
|
21
21
|
} from "../commands/CreateDatasetCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateFaceLivenessSessionCommandInput,
|
|
24
|
+
CreateFaceLivenessSessionCommandOutput,
|
|
25
|
+
} from "../commands/CreateFaceLivenessSessionCommand";
|
|
22
26
|
import {
|
|
23
27
|
CreateProjectCommandInput,
|
|
24
28
|
CreateProjectCommandOutput,
|
|
@@ -123,6 +127,10 @@ import {
|
|
|
123
127
|
GetFaceDetectionCommandInput,
|
|
124
128
|
GetFaceDetectionCommandOutput,
|
|
125
129
|
} from "../commands/GetFaceDetectionCommand";
|
|
130
|
+
import {
|
|
131
|
+
GetFaceLivenessSessionResultsCommandInput,
|
|
132
|
+
GetFaceLivenessSessionResultsCommandOutput,
|
|
133
|
+
} from "../commands/GetFaceLivenessSessionResultsCommand";
|
|
126
134
|
import {
|
|
127
135
|
GetFaceSearchCommandInput,
|
|
128
136
|
GetFaceSearchCommandOutput,
|
|
@@ -271,6 +279,10 @@ export declare const se_CreateDatasetCommand: (
|
|
|
271
279
|
input: CreateDatasetCommandInput,
|
|
272
280
|
context: __SerdeContext
|
|
273
281
|
) => Promise<__HttpRequest>;
|
|
282
|
+
export declare const se_CreateFaceLivenessSessionCommand: (
|
|
283
|
+
input: CreateFaceLivenessSessionCommandInput,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<__HttpRequest>;
|
|
274
286
|
export declare const se_CreateProjectCommand: (
|
|
275
287
|
input: CreateProjectCommandInput,
|
|
276
288
|
context: __SerdeContext
|
|
@@ -375,6 +387,10 @@ export declare const se_GetFaceDetectionCommand: (
|
|
|
375
387
|
input: GetFaceDetectionCommandInput,
|
|
376
388
|
context: __SerdeContext
|
|
377
389
|
) => Promise<__HttpRequest>;
|
|
390
|
+
export declare const se_GetFaceLivenessSessionResultsCommand: (
|
|
391
|
+
input: GetFaceLivenessSessionResultsCommandInput,
|
|
392
|
+
context: __SerdeContext
|
|
393
|
+
) => Promise<__HttpRequest>;
|
|
378
394
|
export declare const se_GetFaceSearchCommand: (
|
|
379
395
|
input: GetFaceSearchCommandInput,
|
|
380
396
|
context: __SerdeContext
|
|
@@ -523,6 +539,10 @@ export declare const de_CreateDatasetCommand: (
|
|
|
523
539
|
output: __HttpResponse,
|
|
524
540
|
context: __SerdeContext
|
|
525
541
|
) => Promise<CreateDatasetCommandOutput>;
|
|
542
|
+
export declare const de_CreateFaceLivenessSessionCommand: (
|
|
543
|
+
output: __HttpResponse,
|
|
544
|
+
context: __SerdeContext
|
|
545
|
+
) => Promise<CreateFaceLivenessSessionCommandOutput>;
|
|
526
546
|
export declare const de_CreateProjectCommand: (
|
|
527
547
|
output: __HttpResponse,
|
|
528
548
|
context: __SerdeContext
|
|
@@ -627,6 +647,10 @@ export declare const de_GetFaceDetectionCommand: (
|
|
|
627
647
|
output: __HttpResponse,
|
|
628
648
|
context: __SerdeContext
|
|
629
649
|
) => Promise<GetFaceDetectionCommandOutput>;
|
|
650
|
+
export declare const de_GetFaceLivenessSessionResultsCommand: (
|
|
651
|
+
output: __HttpResponse,
|
|
652
|
+
context: __SerdeContext
|
|
653
|
+
) => Promise<GetFaceLivenessSessionResultsCommandOutput>;
|
|
630
654
|
export declare const de_GetFaceSearchCommand: (
|
|
631
655
|
output: __HttpResponse,
|
|
632
656
|
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.310.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,43 +21,43 @@
|
|
|
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/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
56
|
-
"@aws-sdk/util-waiter": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.310.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.310.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.310.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.310.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.310.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.310.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.310.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.310.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.310.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.310.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.310.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.310.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.310.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.310.0",
|
|
44
|
+
"@aws-sdk/types": "3.310.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.310.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.310.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.310.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.310.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.310.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.310.0",
|
|
56
|
+
"@aws-sdk/util-waiter": "3.310.0",
|
|
57
57
|
"tslib": "^2.5.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.310.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"concurrently": "7.0.0",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
79
|
"files": [
|
|
80
|
-
"dist
|
|
80
|
+
"dist-*/**"
|
|
81
81
|
],
|
|
82
82
|
"author": {
|
|
83
83
|
"name": "AWS SDK for JavaScript Team",
|