@aws-sdk/client-cloudhsm-v2 3.51.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/CloudHSMV2ServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +86 -1
- package/dist-cjs/protocols/Aws_json1_1.js +170 -676
- package/dist-es/index.js +1 -0
- package/dist-es/models/CloudHSMV2ServiceException.js +12 -0
- package/dist-es/models/models_0.js +80 -1
- package/dist-es/protocols/Aws_json1_1.js +373 -725
- package/dist-types/CloudHSMV2Client.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CloudHSMV2ServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +44 -19
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/CloudHSMV2Client.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CloudHSMV2ServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -19
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CopyBackupToRegionCommandInput, CopyBackupToRegionCommandOutput } from "./commands/CopyBackupToRegionCommand";
|
|
10
10
|
import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand";
|
|
11
11
|
import { CreateHsmCommandInput, CreateHsmCommandOutput } from "./commands/CreateHsmCommand";
|
|
@@ -43,7 +43,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
43
43
|
* A function that can calculate the length of a request body.
|
|
44
44
|
* @internal
|
|
45
45
|
*/
|
|
46
|
-
bodyLengthChecker?:
|
|
46
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
47
47
|
/**
|
|
48
48
|
* A function that converts a stream into an array of bytes.
|
|
49
49
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from CloudHSMV2 service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class CloudHSMV2ServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CloudHSMV2ServiceException as __BaseException } from "./CloudHSMV2ServiceException";
|
|
2
3
|
export declare enum BackupState {
|
|
3
4
|
CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
|
|
4
5
|
DELETED = "DELETED",
|
|
@@ -118,52 +119,76 @@ export declare namespace BackupRetentionPolicy {
|
|
|
118
119
|
* <p>The request was rejected because the requester does not have permission to perform the
|
|
119
120
|
* requested operation.</p>
|
|
120
121
|
*/
|
|
121
|
-
export
|
|
122
|
-
name: "CloudHsmAccessDeniedException";
|
|
123
|
-
$fault: "client";
|
|
122
|
+
export declare class CloudHsmAccessDeniedException extends __BaseException {
|
|
123
|
+
readonly name: "CloudHsmAccessDeniedException";
|
|
124
|
+
readonly $fault: "client";
|
|
124
125
|
Message?: string;
|
|
126
|
+
/**
|
|
127
|
+
* @internal
|
|
128
|
+
*/
|
|
129
|
+
constructor(opts: __ExceptionOptionType<CloudHsmAccessDeniedException, __BaseException>);
|
|
125
130
|
}
|
|
126
131
|
/**
|
|
127
132
|
* <p>The request was rejected because of an AWS CloudHSM internal failure. The request can
|
|
128
133
|
* be retried.</p>
|
|
129
134
|
*/
|
|
130
|
-
export
|
|
131
|
-
name: "CloudHsmInternalFailureException";
|
|
132
|
-
$fault: "server";
|
|
135
|
+
export declare class CloudHsmInternalFailureException extends __BaseException {
|
|
136
|
+
readonly name: "CloudHsmInternalFailureException";
|
|
137
|
+
readonly $fault: "server";
|
|
133
138
|
Message?: string;
|
|
139
|
+
/**
|
|
140
|
+
* @internal
|
|
141
|
+
*/
|
|
142
|
+
constructor(opts: __ExceptionOptionType<CloudHsmInternalFailureException, __BaseException>);
|
|
134
143
|
}
|
|
135
144
|
/**
|
|
136
145
|
* <p>The request was rejected because it is not a valid request.</p>
|
|
137
146
|
*/
|
|
138
|
-
export
|
|
139
|
-
name: "CloudHsmInvalidRequestException";
|
|
140
|
-
$fault: "client";
|
|
147
|
+
export declare class CloudHsmInvalidRequestException extends __BaseException {
|
|
148
|
+
readonly name: "CloudHsmInvalidRequestException";
|
|
149
|
+
readonly $fault: "client";
|
|
141
150
|
Message?: string;
|
|
151
|
+
/**
|
|
152
|
+
* @internal
|
|
153
|
+
*/
|
|
154
|
+
constructor(opts: __ExceptionOptionType<CloudHsmInvalidRequestException, __BaseException>);
|
|
142
155
|
}
|
|
143
156
|
/**
|
|
144
157
|
* <p>The request was rejected because it refers to a resource that cannot be
|
|
145
158
|
* found.</p>
|
|
146
159
|
*/
|
|
147
|
-
export
|
|
148
|
-
name: "CloudHsmResourceNotFoundException";
|
|
149
|
-
$fault: "client";
|
|
160
|
+
export declare class CloudHsmResourceNotFoundException extends __BaseException {
|
|
161
|
+
readonly name: "CloudHsmResourceNotFoundException";
|
|
162
|
+
readonly $fault: "client";
|
|
150
163
|
Message?: string;
|
|
164
|
+
/**
|
|
165
|
+
* @internal
|
|
166
|
+
*/
|
|
167
|
+
constructor(opts: __ExceptionOptionType<CloudHsmResourceNotFoundException, __BaseException>);
|
|
151
168
|
}
|
|
152
169
|
/**
|
|
153
170
|
* <p>The request was rejected because an error occurred.</p>
|
|
154
171
|
*/
|
|
155
|
-
export
|
|
156
|
-
name: "CloudHsmServiceException";
|
|
157
|
-
$fault: "client";
|
|
172
|
+
export declare class CloudHsmServiceException extends __BaseException {
|
|
173
|
+
readonly name: "CloudHsmServiceException";
|
|
174
|
+
readonly $fault: "client";
|
|
158
175
|
Message?: string;
|
|
176
|
+
/**
|
|
177
|
+
* @internal
|
|
178
|
+
*/
|
|
179
|
+
constructor(opts: __ExceptionOptionType<CloudHsmServiceException, __BaseException>);
|
|
159
180
|
}
|
|
160
181
|
/**
|
|
161
182
|
* <p>The request was rejected because of a tagging failure. Verify the tag conditions in all applicable policies, and then retry the request.</p>
|
|
162
183
|
*/
|
|
163
|
-
export
|
|
164
|
-
name: "CloudHsmTagException";
|
|
165
|
-
$fault: "client";
|
|
184
|
+
export declare class CloudHsmTagException extends __BaseException {
|
|
185
|
+
readonly name: "CloudHsmTagException";
|
|
186
|
+
readonly $fault: "client";
|
|
166
187
|
Message?: string;
|
|
188
|
+
/**
|
|
189
|
+
* @internal
|
|
190
|
+
*/
|
|
191
|
+
constructor(opts: __ExceptionOptionType<CloudHsmTagException, __BaseException>);
|
|
167
192
|
}
|
|
168
193
|
export interface CopyBackupToRegionRequest {
|
|
169
194
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: CloudHSMV2ClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: CloudHSMV2ClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: CloudHSMV2ClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CopyBackupToRegionCommandInput, CopyBackupToRegionCommandOutput } from "./commands/CopyBackupToRegionCommand";
|
|
10
10
|
import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand";
|
|
11
11
|
import { CreateHsmCommandInput, CreateHsmCommandOutput } from "./commands/CreateHsmCommand";
|
|
@@ -31,7 +31,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
31
31
|
|
|
32
32
|
urlParser?: __UrlParser;
|
|
33
33
|
|
|
34
|
-
bodyLengthChecker?:
|
|
34
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
35
35
|
|
|
36
36
|
streamCollector?: __StreamCollector;
|
|
37
37
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class CloudHSMV2ServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CloudHSMV2ServiceException as __BaseException } from "./CloudHSMV2ServiceException";
|
|
2
3
|
export declare enum BackupState {
|
|
3
4
|
CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
|
|
4
5
|
DELETED = "DELETED",
|
|
@@ -63,40 +64,52 @@ export declare namespace BackupRetentionPolicy {
|
|
|
63
64
|
const filterSensitiveLog: (obj: BackupRetentionPolicy) => any;
|
|
64
65
|
}
|
|
65
66
|
|
|
66
|
-
export
|
|
67
|
-
name: "CloudHsmAccessDeniedException";
|
|
68
|
-
$fault: "client";
|
|
67
|
+
export declare class CloudHsmAccessDeniedException extends __BaseException {
|
|
68
|
+
readonly name: "CloudHsmAccessDeniedException";
|
|
69
|
+
readonly $fault: "client";
|
|
69
70
|
Message?: string;
|
|
71
|
+
|
|
72
|
+
constructor(opts: __ExceptionOptionType<CloudHsmAccessDeniedException, __BaseException>);
|
|
70
73
|
}
|
|
71
74
|
|
|
72
|
-
export
|
|
73
|
-
name: "CloudHsmInternalFailureException";
|
|
74
|
-
$fault: "server";
|
|
75
|
+
export declare class CloudHsmInternalFailureException extends __BaseException {
|
|
76
|
+
readonly name: "CloudHsmInternalFailureException";
|
|
77
|
+
readonly $fault: "server";
|
|
75
78
|
Message?: string;
|
|
79
|
+
|
|
80
|
+
constructor(opts: __ExceptionOptionType<CloudHsmInternalFailureException, __BaseException>);
|
|
76
81
|
}
|
|
77
82
|
|
|
78
|
-
export
|
|
79
|
-
name: "CloudHsmInvalidRequestException";
|
|
80
|
-
$fault: "client";
|
|
83
|
+
export declare class CloudHsmInvalidRequestException extends __BaseException {
|
|
84
|
+
readonly name: "CloudHsmInvalidRequestException";
|
|
85
|
+
readonly $fault: "client";
|
|
81
86
|
Message?: string;
|
|
87
|
+
|
|
88
|
+
constructor(opts: __ExceptionOptionType<CloudHsmInvalidRequestException, __BaseException>);
|
|
82
89
|
}
|
|
83
90
|
|
|
84
|
-
export
|
|
85
|
-
name: "CloudHsmResourceNotFoundException";
|
|
86
|
-
$fault: "client";
|
|
91
|
+
export declare class CloudHsmResourceNotFoundException extends __BaseException {
|
|
92
|
+
readonly name: "CloudHsmResourceNotFoundException";
|
|
93
|
+
readonly $fault: "client";
|
|
87
94
|
Message?: string;
|
|
95
|
+
|
|
96
|
+
constructor(opts: __ExceptionOptionType<CloudHsmResourceNotFoundException, __BaseException>);
|
|
88
97
|
}
|
|
89
98
|
|
|
90
|
-
export
|
|
91
|
-
name: "CloudHsmServiceException";
|
|
92
|
-
$fault: "client";
|
|
99
|
+
export declare class CloudHsmServiceException extends __BaseException {
|
|
100
|
+
readonly name: "CloudHsmServiceException";
|
|
101
|
+
readonly $fault: "client";
|
|
93
102
|
Message?: string;
|
|
103
|
+
|
|
104
|
+
constructor(opts: __ExceptionOptionType<CloudHsmServiceException, __BaseException>);
|
|
94
105
|
}
|
|
95
106
|
|
|
96
|
-
export
|
|
97
|
-
name: "CloudHsmTagException";
|
|
98
|
-
$fault: "client";
|
|
107
|
+
export declare class CloudHsmTagException extends __BaseException {
|
|
108
|
+
readonly name: "CloudHsmTagException";
|
|
109
|
+
readonly $fault: "client";
|
|
99
110
|
Message?: string;
|
|
111
|
+
|
|
112
|
+
constructor(opts: __ExceptionOptionType<CloudHsmTagException, __BaseException>);
|
|
100
113
|
}
|
|
101
114
|
export interface CopyBackupToRegionRequest {
|
|
102
115
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: CloudHSMV2ClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: CloudHSMV2ClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: CloudHSMV2ClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudhsm-v2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudhsm V2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.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",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,40 +18,40 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.0",
|
|
39
|
+
"@aws-sdk/types": "3.54.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
55
55
|
"@tsconfig/recommended": "1.0.1",
|
|
56
56
|
"@types/node": "^12.7.5",
|
|
57
57
|
"concurrently": "7.0.0",
|