@aws-sdk/client-managedblockchain 3.52.0 → 3.54.1

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.
@@ -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 { CreateMemberCommandInput, CreateMemberCommandOutput } from "./commands/CreateMemberCommand";
10
10
  import { CreateNetworkCommandInput, CreateNetworkCommandOutput } from "./commands/CreateNetworkCommand";
11
11
  import { CreateNodeCommandInput, CreateNodeCommandOutput } from "./commands/CreateNodeCommand";
@@ -51,7 +51,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
51
51
  * A function that can calculate the length of a request body.
52
52
  * @internal
53
53
  */
54
- bodyLengthChecker?: (body: any) => number | undefined;
54
+ bodyLengthChecker?: __BodyLengthCalculator;
55
55
  /**
56
56
  * A function that converts a stream into an array of bytes.
57
57
  * @internal
@@ -3,3 +3,4 @@ export * from "./ManagedBlockchainClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { ManagedBlockchainServiceException } from "./models/ManagedBlockchainServiceException";
@@ -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 ManagedBlockchain service.
4
+ */
5
+ export declare class ManagedBlockchainServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,11 +1,16 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ManagedBlockchainServiceException as __BaseException } from "./ManagedBlockchainServiceException";
2
3
  /**
3
4
  * <p>You do not have sufficient access to perform this action.</p>
4
5
  */
5
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
6
- name: "AccessDeniedException";
7
- $fault: "client";
6
+ export declare class AccessDeniedException extends __BaseException {
7
+ readonly name: "AccessDeniedException";
8
+ readonly $fault: "client";
8
9
  Message?: string;
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
14
  }
10
15
  export declare enum ThresholdComparator {
11
16
  GREATER_THAN = "GREATER_THAN",
@@ -221,72 +226,104 @@ export declare namespace CreateMemberOutput {
221
226
  /**
222
227
  * <p>The request processing has failed because of an unknown error, exception or failure.</p>
223
228
  */
224
- export interface InternalServiceErrorException extends __SmithyException, $MetadataBearer {
225
- name: "InternalServiceErrorException";
226
- $fault: "server";
229
+ export declare class InternalServiceErrorException extends __BaseException {
230
+ readonly name: "InternalServiceErrorException";
231
+ readonly $fault: "server";
232
+ /**
233
+ * @internal
234
+ */
235
+ constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
227
236
  }
228
237
  /**
229
238
  * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
230
239
  */
231
- export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
232
- name: "InvalidRequestException";
233
- $fault: "client";
240
+ export declare class InvalidRequestException extends __BaseException {
241
+ readonly name: "InvalidRequestException";
242
+ readonly $fault: "client";
234
243
  Message?: string;
244
+ /**
245
+ * @internal
246
+ */
247
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
235
248
  }
236
249
  /**
237
250
  * <p>A resource request is issued for a resource that already exists.</p>
238
251
  */
239
- export interface ResourceAlreadyExistsException extends __SmithyException, $MetadataBearer {
240
- name: "ResourceAlreadyExistsException";
241
- $fault: "client";
252
+ export declare class ResourceAlreadyExistsException extends __BaseException {
253
+ readonly name: "ResourceAlreadyExistsException";
254
+ readonly $fault: "client";
242
255
  Message?: string;
256
+ /**
257
+ * @internal
258
+ */
259
+ constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
243
260
  }
244
261
  /**
245
262
  * <p>The maximum number of resources of that type already exist. Ensure the resources requested are within the boundaries of the service edition and your account limits.</p>
246
263
  */
247
- export interface ResourceLimitExceededException extends __SmithyException, $MetadataBearer {
248
- name: "ResourceLimitExceededException";
249
- $fault: "client";
264
+ export declare class ResourceLimitExceededException extends __BaseException {
265
+ readonly name: "ResourceLimitExceededException";
266
+ readonly $fault: "client";
250
267
  Message?: string;
268
+ /**
269
+ * @internal
270
+ */
271
+ constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
251
272
  }
252
273
  /**
253
274
  * <p>A requested resource does not exist. It may have been deleted or referenced inaccurately.</p>
254
275
  */
255
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
256
- name: "ResourceNotFoundException";
257
- $fault: "client";
276
+ export declare class ResourceNotFoundException extends __BaseException {
277
+ readonly name: "ResourceNotFoundException";
278
+ readonly $fault: "client";
258
279
  Message?: string;
259
280
  /**
260
281
  * <p>A requested resource does not exist. It may have been deleted or referenced inaccurately.</p>
261
282
  */
262
283
  ResourceName?: string;
284
+ /**
285
+ * @internal
286
+ */
287
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
263
288
  }
264
289
  /**
265
290
  * <p>The requested resource exists but is not in a status that can complete the operation.</p>
266
291
  */
267
- export interface ResourceNotReadyException extends __SmithyException, $MetadataBearer {
268
- name: "ResourceNotReadyException";
269
- $fault: "client";
292
+ export declare class ResourceNotReadyException extends __BaseException {
293
+ readonly name: "ResourceNotReadyException";
294
+ readonly $fault: "client";
270
295
  Message?: string;
296
+ /**
297
+ * @internal
298
+ */
299
+ constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
271
300
  }
272
301
  /**
273
302
  * <p>The request or operation could not be performed because a service is throttling requests. The most common source of throttling errors is launching EC2 instances such that your service limit for EC2 instances is exceeded. Request a limit increase or delete unused resources if possible.</p>
274
303
  */
275
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
276
- name: "ThrottlingException";
277
- $fault: "client";
304
+ export declare class ThrottlingException extends __BaseException {
305
+ readonly name: "ThrottlingException";
306
+ readonly $fault: "client";
307
+ /**
308
+ * @internal
309
+ */
310
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
278
311
  }
279
312
  /**
280
313
  * <p></p>
281
314
  */
282
- export interface TooManyTagsException extends __SmithyException, $MetadataBearer {
283
- name: "TooManyTagsException";
284
- $fault: "client";
315
+ export declare class TooManyTagsException extends __BaseException {
316
+ readonly name: "TooManyTagsException";
317
+ readonly $fault: "client";
285
318
  Message?: string;
286
319
  /**
287
320
  * <p></p>
288
321
  */
289
322
  ResourceName?: string;
323
+ /**
324
+ * @internal
325
+ */
326
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
290
327
  }
291
328
  export declare enum Framework {
292
329
  ETHEREUM = "ETHEREUM",
@@ -1396,10 +1433,14 @@ export declare namespace GetProposalOutput {
1396
1433
  /**
1397
1434
  * <p></p>
1398
1435
  */
1399
- export interface IllegalActionException extends __SmithyException, $MetadataBearer {
1400
- name: "IllegalActionException";
1401
- $fault: "client";
1436
+ export declare class IllegalActionException extends __BaseException {
1437
+ readonly name: "IllegalActionException";
1438
+ readonly $fault: "client";
1402
1439
  Message?: string;
1440
+ /**
1441
+ * @internal
1442
+ */
1443
+ constructor(opts: __ExceptionOptionType<IllegalActionException, __BaseException>);
1403
1444
  }
1404
1445
  /**
1405
1446
  * <p>A summary of network configuration properties.</p>
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ManagedBlockchainClientConfig) =
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: (body: any) => number | undefined;
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: ManagedBlockchainClientConfig) =
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: (body: any) => number | undefined;
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: ManagedBlockchainClientConfig) =
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: (body: any) => number | undefined;
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 { CreateMemberCommandInput, CreateMemberCommandOutput } from "./commands/CreateMemberCommand";
10
10
  import { CreateNetworkCommandInput, CreateNetworkCommandOutput } from "./commands/CreateNetworkCommand";
11
11
  import { CreateNodeCommandInput, CreateNodeCommandOutput } from "./commands/CreateNodeCommand";
@@ -39,7 +39,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
39
39
 
40
40
  urlParser?: __UrlParser;
41
41
 
42
- bodyLengthChecker?: (body: any) => number | undefined;
42
+ bodyLengthChecker?: __BodyLengthCalculator;
43
43
 
44
44
  streamCollector?: __StreamCollector;
45
45
 
@@ -3,3 +3,4 @@ export * from "./ManagedBlockchainClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { ManagedBlockchainServiceException } from "./models/ManagedBlockchainServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class ManagedBlockchainServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,9 +1,12 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ManagedBlockchainServiceException as __BaseException } from "./ManagedBlockchainServiceException";
2
3
 
3
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
4
- name: "AccessDeniedException";
5
- $fault: "client";
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
6
7
  Message?: string;
8
+
9
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
7
10
  }
8
11
  export declare enum ThresholdComparator {
9
12
  GREATER_THAN = "GREATER_THAN",
@@ -122,54 +125,70 @@ export declare namespace CreateMemberOutput {
122
125
  const filterSensitiveLog: (obj: CreateMemberOutput) => any;
123
126
  }
124
127
 
125
- export interface InternalServiceErrorException extends __SmithyException, $MetadataBearer {
126
- name: "InternalServiceErrorException";
127
- $fault: "server";
128
+ export declare class InternalServiceErrorException extends __BaseException {
129
+ readonly name: "InternalServiceErrorException";
130
+ readonly $fault: "server";
131
+
132
+ constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
128
133
  }
129
134
 
130
- export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
131
- name: "InvalidRequestException";
132
- $fault: "client";
135
+ export declare class InvalidRequestException extends __BaseException {
136
+ readonly name: "InvalidRequestException";
137
+ readonly $fault: "client";
133
138
  Message?: string;
139
+
140
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
134
141
  }
135
142
 
136
- export interface ResourceAlreadyExistsException extends __SmithyException, $MetadataBearer {
137
- name: "ResourceAlreadyExistsException";
138
- $fault: "client";
143
+ export declare class ResourceAlreadyExistsException extends __BaseException {
144
+ readonly name: "ResourceAlreadyExistsException";
145
+ readonly $fault: "client";
139
146
  Message?: string;
147
+
148
+ constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
140
149
  }
141
150
 
142
- export interface ResourceLimitExceededException extends __SmithyException, $MetadataBearer {
143
- name: "ResourceLimitExceededException";
144
- $fault: "client";
151
+ export declare class ResourceLimitExceededException extends __BaseException {
152
+ readonly name: "ResourceLimitExceededException";
153
+ readonly $fault: "client";
145
154
  Message?: string;
155
+
156
+ constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
146
157
  }
147
158
 
148
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
149
- name: "ResourceNotFoundException";
150
- $fault: "client";
159
+ export declare class ResourceNotFoundException extends __BaseException {
160
+ readonly name: "ResourceNotFoundException";
161
+ readonly $fault: "client";
151
162
  Message?: string;
152
163
 
153
164
  ResourceName?: string;
165
+
166
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
154
167
  }
155
168
 
156
- export interface ResourceNotReadyException extends __SmithyException, $MetadataBearer {
157
- name: "ResourceNotReadyException";
158
- $fault: "client";
169
+ export declare class ResourceNotReadyException extends __BaseException {
170
+ readonly name: "ResourceNotReadyException";
171
+ readonly $fault: "client";
159
172
  Message?: string;
173
+
174
+ constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
160
175
  }
161
176
 
162
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
163
- name: "ThrottlingException";
164
- $fault: "client";
177
+ export declare class ThrottlingException extends __BaseException {
178
+ readonly name: "ThrottlingException";
179
+ readonly $fault: "client";
180
+
181
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
165
182
  }
166
183
 
167
- export interface TooManyTagsException extends __SmithyException, $MetadataBearer {
168
- name: "TooManyTagsException";
169
- $fault: "client";
184
+ export declare class TooManyTagsException extends __BaseException {
185
+ readonly name: "TooManyTagsException";
186
+ readonly $fault: "client";
170
187
  Message?: string;
171
188
 
172
189
  ResourceName?: string;
190
+
191
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
173
192
  }
174
193
  export declare enum Framework {
175
194
  ETHEREUM = "ETHEREUM",
@@ -725,10 +744,12 @@ export declare namespace GetProposalOutput {
725
744
  const filterSensitiveLog: (obj: GetProposalOutput) => any;
726
745
  }
727
746
 
728
- export interface IllegalActionException extends __SmithyException, $MetadataBearer {
729
- name: "IllegalActionException";
730
- $fault: "client";
747
+ export declare class IllegalActionException extends __BaseException {
748
+ readonly name: "IllegalActionException";
749
+ readonly $fault: "client";
731
750
  Message?: string;
751
+
752
+ constructor(opts: __ExceptionOptionType<IllegalActionException, __BaseException>);
732
753
  }
733
754
 
734
755
  export interface NetworkSummary {
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ManagedBlockchainClientConfig) =
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: (body: any) => number | undefined;
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: ManagedBlockchainClientConfig) =
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: (body: any) => number | undefined;
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: ManagedBlockchainClientConfig) =
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: (body: any) => number | undefined;
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-managedblockchain",
3
3
  "description": "AWS SDK for JavaScript Managedblockchain Client for Node.js, Browser and React Native",
4
- "version": "3.52.0",
4
+ "version": "3.54.1",
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",
@@ -18,34 +18,34 @@
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.52.0",
22
- "@aws-sdk/config-resolver": "3.52.0",
23
- "@aws-sdk/credential-provider-node": "3.52.0",
24
- "@aws-sdk/fetch-http-handler": "3.52.0",
25
- "@aws-sdk/hash-node": "3.52.0",
26
- "@aws-sdk/invalid-dependency": "3.52.0",
27
- "@aws-sdk/middleware-content-length": "3.52.0",
28
- "@aws-sdk/middleware-host-header": "3.52.0",
29
- "@aws-sdk/middleware-logger": "3.52.0",
30
- "@aws-sdk/middleware-retry": "3.52.0",
31
- "@aws-sdk/middleware-serde": "3.52.0",
32
- "@aws-sdk/middleware-signing": "3.52.0",
33
- "@aws-sdk/middleware-stack": "3.52.0",
34
- "@aws-sdk/middleware-user-agent": "3.52.0",
35
- "@aws-sdk/node-config-provider": "3.52.0",
36
- "@aws-sdk/node-http-handler": "3.52.0",
37
- "@aws-sdk/protocol-http": "3.52.0",
38
- "@aws-sdk/smithy-client": "3.52.0",
39
- "@aws-sdk/types": "3.52.0",
40
- "@aws-sdk/url-parser": "3.52.0",
21
+ "@aws-sdk/client-sts": "3.54.1",
22
+ "@aws-sdk/config-resolver": "3.54.1",
23
+ "@aws-sdk/credential-provider-node": "3.54.1",
24
+ "@aws-sdk/fetch-http-handler": "3.54.1",
25
+ "@aws-sdk/hash-node": "3.54.1",
26
+ "@aws-sdk/invalid-dependency": "3.54.1",
27
+ "@aws-sdk/middleware-content-length": "3.54.1",
28
+ "@aws-sdk/middleware-host-header": "3.54.1",
29
+ "@aws-sdk/middleware-logger": "3.54.1",
30
+ "@aws-sdk/middleware-retry": "3.54.1",
31
+ "@aws-sdk/middleware-serde": "3.54.1",
32
+ "@aws-sdk/middleware-signing": "3.54.1",
33
+ "@aws-sdk/middleware-stack": "3.54.1",
34
+ "@aws-sdk/middleware-user-agent": "3.54.1",
35
+ "@aws-sdk/node-config-provider": "3.54.1",
36
+ "@aws-sdk/node-http-handler": "3.54.1",
37
+ "@aws-sdk/protocol-http": "3.54.1",
38
+ "@aws-sdk/smithy-client": "3.54.1",
39
+ "@aws-sdk/types": "3.54.1",
40
+ "@aws-sdk/url-parser": "3.54.1",
41
41
  "@aws-sdk/util-base64-browser": "3.52.0",
42
42
  "@aws-sdk/util-base64-node": "3.52.0",
43
- "@aws-sdk/util-body-length-browser": "3.52.0",
44
- "@aws-sdk/util-body-length-node": "3.52.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.52.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.52.0",
47
- "@aws-sdk/util-user-agent-browser": "3.52.0",
48
- "@aws-sdk/util-user-agent-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.1",
46
+ "@aws-sdk/util-defaults-mode-node": "3.54.1",
47
+ "@aws-sdk/util-user-agent-browser": "3.54.1",
48
+ "@aws-sdk/util-user-agent-node": "3.54.1",
49
49
  "@aws-sdk/util-utf8-browser": "3.52.0",
50
50
  "@aws-sdk/util-utf8-node": "3.52.0",
51
51
  "tslib": "^2.3.0",