@aws-sdk/client-managedblockchain 3.100.0 → 3.110.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
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.110.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.109.0...v3.110.0) (2022-06-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-managedblockchain
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-managedblockchain
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-managedblockchain
|
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class ManagedBlockchainClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var ManagedBlockchainClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -159,9 +159,7 @@ export interface MemberConfiguration {
|
|
|
159
159
|
* <p>Tags assigned to the member. Tags consist of a key and optional value. For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
|
|
160
160
|
* <p>When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 tags added to each resource.</p>
|
|
161
161
|
*/
|
|
162
|
-
Tags?:
|
|
163
|
-
[key: string]: string;
|
|
164
|
-
};
|
|
162
|
+
Tags?: Record<string, string>;
|
|
165
163
|
/**
|
|
166
164
|
* <p>The Amazon Resource Name (ARN) of the customer managed key in AWS Key Management Service (AWS KMS) to use for encryption at rest in the member. This parameter is inherited by any nodes that this member creates.</p>
|
|
167
165
|
* <p>Use one of the following options to specify this parameter:</p>
|
|
@@ -427,9 +425,7 @@ export interface CreateNetworkInput {
|
|
|
427
425
|
* <p>When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 tags added to each resource.</p>
|
|
428
426
|
* <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
|
|
429
427
|
*/
|
|
430
|
-
Tags?:
|
|
431
|
-
[key: string]: string;
|
|
432
|
-
};
|
|
428
|
+
Tags?: Record<string, string>;
|
|
433
429
|
}
|
|
434
430
|
export declare namespace CreateNetworkInput {
|
|
435
431
|
/**
|
|
@@ -561,9 +557,7 @@ export interface CreateNodeInput {
|
|
|
561
557
|
* <p>When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 tags added to each resource.</p>
|
|
562
558
|
* <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
|
|
563
559
|
*/
|
|
564
|
-
Tags?:
|
|
565
|
-
[key: string]: string;
|
|
566
|
-
};
|
|
560
|
+
Tags?: Record<string, string>;
|
|
567
561
|
}
|
|
568
562
|
export declare namespace CreateNodeInput {
|
|
569
563
|
/**
|
|
@@ -668,9 +662,7 @@ export interface CreateProposalInput {
|
|
|
668
662
|
* <p>When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 tags added to each resource. If the proposal is for a network invitation, the invitation inherits the tags added to the proposal.</p>
|
|
669
663
|
* <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
|
|
670
664
|
*/
|
|
671
|
-
Tags?:
|
|
672
|
-
[key: string]: string;
|
|
673
|
-
};
|
|
665
|
+
Tags?: Record<string, string>;
|
|
674
666
|
}
|
|
675
667
|
export declare namespace CreateProposalInput {
|
|
676
668
|
/**
|
|
@@ -893,9 +885,7 @@ export interface Member {
|
|
|
893
885
|
/**
|
|
894
886
|
* <p>Tags assigned to the member. Tags consist of a key and optional value. For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
|
|
895
887
|
*/
|
|
896
|
-
Tags?:
|
|
897
|
-
[key: string]: string;
|
|
898
|
-
};
|
|
888
|
+
Tags?: Record<string, string>;
|
|
899
889
|
/**
|
|
900
890
|
* <p>The Amazon Resource Name (ARN) of the member. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>AWS General Reference</i>.</p>
|
|
901
891
|
*/
|
|
@@ -1057,9 +1047,7 @@ export interface Network {
|
|
|
1057
1047
|
* <p>Tags assigned to the network. Each tag consists of a key and optional value.</p>
|
|
1058
1048
|
* <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
|
|
1059
1049
|
*/
|
|
1060
|
-
Tags?:
|
|
1061
|
-
[key: string]: string;
|
|
1062
|
-
};
|
|
1050
|
+
Tags?: Record<string, string>;
|
|
1063
1051
|
/**
|
|
1064
1052
|
* <p>The Amazon Resource Name (ARN) of the network. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>AWS General Reference</i>.</p>
|
|
1065
1053
|
*/
|
|
@@ -1261,9 +1249,7 @@ export interface Node {
|
|
|
1261
1249
|
* <p>Tags assigned to the node. Each tag consists of a key and optional value.</p>
|
|
1262
1250
|
* <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
|
|
1263
1251
|
*/
|
|
1264
|
-
Tags?:
|
|
1265
|
-
[key: string]: string;
|
|
1266
|
-
};
|
|
1252
|
+
Tags?: Record<string, string>;
|
|
1267
1253
|
/**
|
|
1268
1254
|
* <p>The Amazon Resource Name (ARN) of the node. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>AWS General Reference</i>.</p>
|
|
1269
1255
|
*/
|
|
@@ -1404,9 +1390,7 @@ export interface Proposal {
|
|
|
1404
1390
|
* <p>Tags assigned to the proposal. Each tag consists of a key and optional value.</p>
|
|
1405
1391
|
* <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
|
|
1406
1392
|
*/
|
|
1407
|
-
Tags?:
|
|
1408
|
-
[key: string]: string;
|
|
1409
|
-
};
|
|
1393
|
+
Tags?: Record<string, string>;
|
|
1410
1394
|
/**
|
|
1411
1395
|
* <p>The Amazon Resource Name (ARN) of the proposal. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>AWS General Reference</i>.</p>
|
|
1412
1396
|
*/
|
|
@@ -2054,9 +2038,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2054
2038
|
/**
|
|
2055
2039
|
* <p>The tags assigned to the resource.</p>
|
|
2056
2040
|
*/
|
|
2057
|
-
Tags?:
|
|
2058
|
-
[key: string]: string;
|
|
2059
|
-
};
|
|
2041
|
+
Tags?: Record<string, string>;
|
|
2060
2042
|
}
|
|
2061
2043
|
export declare namespace ListTagsForResourceResponse {
|
|
2062
2044
|
/**
|
|
@@ -2092,9 +2074,7 @@ export interface TagResourceRequest {
|
|
|
2092
2074
|
/**
|
|
2093
2075
|
* <p>The tags to assign to the specified resource. Tag values can be empty, for example, <code>"MyTagKey" : ""</code>. You can specify multiple key-value pairs in a single request, with an overall maximum of 50 tags added to each resource.</p>
|
|
2094
2076
|
*/
|
|
2095
|
-
Tags:
|
|
2096
|
-
[key: string]: string;
|
|
2097
|
-
} | undefined;
|
|
2077
|
+
Tags: Record<string, string> | undefined;
|
|
2098
2078
|
}
|
|
2099
2079
|
export declare namespace TagResourceRequest {
|
|
2100
2080
|
/**
|
|
@@ -92,9 +92,7 @@ export interface MemberConfiguration {
|
|
|
92
92
|
|
|
93
93
|
LogPublishingConfiguration?: MemberLogPublishingConfiguration;
|
|
94
94
|
|
|
95
|
-
Tags?:
|
|
96
|
-
[key: string]: string;
|
|
97
|
-
};
|
|
95
|
+
Tags?: Record<string, string>;
|
|
98
96
|
|
|
99
97
|
KmsKeyArn?: string;
|
|
100
98
|
}
|
|
@@ -243,9 +241,7 @@ export interface CreateNetworkInput {
|
|
|
243
241
|
|
|
244
242
|
MemberConfiguration: MemberConfiguration | undefined;
|
|
245
243
|
|
|
246
|
-
Tags?:
|
|
247
|
-
[key: string]: string;
|
|
248
|
-
};
|
|
244
|
+
Tags?: Record<string, string>;
|
|
249
245
|
}
|
|
250
246
|
export declare namespace CreateNetworkInput {
|
|
251
247
|
|
|
@@ -310,9 +306,7 @@ export interface CreateNodeInput {
|
|
|
310
306
|
|
|
311
307
|
NodeConfiguration: NodeConfiguration | undefined;
|
|
312
308
|
|
|
313
|
-
Tags?:
|
|
314
|
-
[key: string]: string;
|
|
315
|
-
};
|
|
309
|
+
Tags?: Record<string, string>;
|
|
316
310
|
}
|
|
317
311
|
export declare namespace CreateNodeInput {
|
|
318
312
|
|
|
@@ -367,9 +361,7 @@ export interface CreateProposalInput {
|
|
|
367
361
|
|
|
368
362
|
Description?: string;
|
|
369
363
|
|
|
370
|
-
Tags?:
|
|
371
|
-
[key: string]: string;
|
|
372
|
-
};
|
|
364
|
+
Tags?: Record<string, string>;
|
|
373
365
|
}
|
|
374
366
|
export declare namespace CreateProposalInput {
|
|
375
367
|
|
|
@@ -475,9 +467,7 @@ export interface Member {
|
|
|
475
467
|
|
|
476
468
|
CreationDate?: Date;
|
|
477
469
|
|
|
478
|
-
Tags?:
|
|
479
|
-
[key: string]: string;
|
|
480
|
-
};
|
|
470
|
+
Tags?: Record<string, string>;
|
|
481
471
|
|
|
482
472
|
Arn?: string;
|
|
483
473
|
|
|
@@ -564,9 +554,7 @@ export interface Network {
|
|
|
564
554
|
|
|
565
555
|
CreationDate?: Date;
|
|
566
556
|
|
|
567
|
-
Tags?:
|
|
568
|
-
[key: string]: string;
|
|
569
|
-
};
|
|
557
|
+
Tags?: Record<string, string>;
|
|
570
558
|
|
|
571
559
|
Arn?: string;
|
|
572
560
|
}
|
|
@@ -661,9 +649,7 @@ export interface Node {
|
|
|
661
649
|
|
|
662
650
|
CreationDate?: Date;
|
|
663
651
|
|
|
664
|
-
Tags?:
|
|
665
|
-
[key: string]: string;
|
|
666
|
-
};
|
|
652
|
+
Tags?: Record<string, string>;
|
|
667
653
|
|
|
668
654
|
Arn?: string;
|
|
669
655
|
|
|
@@ -725,9 +711,7 @@ export interface Proposal {
|
|
|
725
711
|
|
|
726
712
|
OutstandingVoteCount?: number;
|
|
727
713
|
|
|
728
|
-
Tags?:
|
|
729
|
-
[key: string]: string;
|
|
730
|
-
};
|
|
714
|
+
Tags?: Record<string, string>;
|
|
731
715
|
|
|
732
716
|
Arn?: string;
|
|
733
717
|
}
|
|
@@ -1036,9 +1020,7 @@ export declare namespace ListTagsForResourceRequest {
|
|
|
1036
1020
|
}
|
|
1037
1021
|
export interface ListTagsForResourceResponse {
|
|
1038
1022
|
|
|
1039
|
-
Tags?:
|
|
1040
|
-
[key: string]: string;
|
|
1041
|
-
};
|
|
1023
|
+
Tags?: Record<string, string>;
|
|
1042
1024
|
}
|
|
1043
1025
|
export declare namespace ListTagsForResourceResponse {
|
|
1044
1026
|
|
|
@@ -1062,9 +1044,7 @@ export interface TagResourceRequest {
|
|
|
1062
1044
|
|
|
1063
1045
|
ResourceArn: string | undefined;
|
|
1064
1046
|
|
|
1065
|
-
Tags:
|
|
1066
|
-
[key: string]: string;
|
|
1067
|
-
} | undefined;
|
|
1047
|
+
Tags: Record<string, string> | undefined;
|
|
1068
1048
|
}
|
|
1069
1049
|
export declare namespace TagResourceRequest {
|
|
1070
1050
|
|
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.
|
|
4
|
+
"version": "3.110.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",
|
|
@@ -18,36 +18,37 @@
|
|
|
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-
|
|
31
|
-
"@aws-sdk/middleware-
|
|
32
|
-
"@aws-sdk/middleware-
|
|
33
|
-
"@aws-sdk/middleware-
|
|
34
|
-
"@aws-sdk/middleware-
|
|
35
|
-
"@aws-sdk/
|
|
36
|
-
"@aws-sdk/node-
|
|
37
|
-
"@aws-sdk/
|
|
38
|
-
"@aws-sdk/
|
|
39
|
-
"@aws-sdk/
|
|
40
|
-
"@aws-sdk/
|
|
41
|
-
"@aws-sdk/
|
|
21
|
+
"@aws-sdk/client-sts": "3.110.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.110.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.110.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.110.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.110.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.110.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.110.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.110.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.110.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.110.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.110.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.110.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.110.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.110.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.110.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.110.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.110.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.110.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.110.0",
|
|
40
|
+
"@aws-sdk/types": "3.110.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.110.0",
|
|
42
|
+
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
42
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
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.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.110.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.110.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.110.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.110.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
51
52
|
"tslib": "^2.3.1",
|
|
52
53
|
"uuid": "^8.3.2"
|
|
53
54
|
},
|