@aws-sdk/client-managedblockchain 3.199.0 → 3.201.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 +20 -0
- package/dist-cjs/endpoint/EndpointParameters.js +2 -3
- package/dist-cjs/protocols/Aws_restJson1.js +39 -48
- package/dist-cjs/runtimeConfig.browser.js +16 -16
- package/dist-cjs/runtimeConfig.js +20 -19
- package/dist-cjs/runtimeConfig.native.js +1 -2
- package/dist-cjs/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
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.201.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.200.0...v3.201.0) (2022-11-01)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update client endpoints as of 2022-11-01 ([323e3c5](https://github.com/aws/aws-sdk-js-v3/commit/323e3c5818121c2d7fc1f3bed7fc9c9154540133))
|
|
12
|
+
* end support for Node.js 12.x ([#4123](https://github.com/aws/aws-sdk-js-v3/issues/4123)) ([83f913e](https://github.com/aws/aws-sdk-js-v3/commit/83f913ec2ac3878d8726c6964f585550dc5caf3e))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# [3.200.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.199.0...v3.200.0) (2022-10-31)
|
|
19
|
+
|
|
20
|
+
**Note:** Version bump only for package @aws-sdk/client-managedblockchain
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
6
26
|
# [3.199.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.198.0...v3.199.0) (2022-10-28)
|
|
7
27
|
|
|
8
28
|
**Note:** Version bump only for package @aws-sdk/client-managedblockchain
|
|
@@ -2,11 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveClientEndpointParameters = void 0;
|
|
4
4
|
const resolveClientEndpointParameters = (options) => {
|
|
5
|
-
var _a, _b;
|
|
6
5
|
return {
|
|
7
6
|
...options,
|
|
8
|
-
useDualstackEndpoint:
|
|
9
|
-
useFipsEndpoint:
|
|
7
|
+
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
8
|
+
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
10
9
|
defaultSigningName: "managedblockchain",
|
|
11
10
|
};
|
|
12
11
|
};
|
|
@@ -8,16 +8,15 @@ const uuid_1 = require("uuid");
|
|
|
8
8
|
const ManagedBlockchainServiceException_1 = require("../models/ManagedBlockchainServiceException");
|
|
9
9
|
const models_0_1 = require("../models/models_0");
|
|
10
10
|
const serializeAws_restJson1CreateAccessorCommand = async (input, context) => {
|
|
11
|
-
var _a;
|
|
12
11
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
13
12
|
const headers = {
|
|
14
13
|
"content-type": "application/json",
|
|
15
14
|
};
|
|
16
|
-
const resolvedPath = `${
|
|
15
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/accessors";
|
|
17
16
|
let body;
|
|
18
17
|
body = JSON.stringify({
|
|
19
18
|
...(input.AccessorType != null && { AccessorType: input.AccessorType }),
|
|
20
|
-
ClientRequestToken:
|
|
19
|
+
ClientRequestToken: input.ClientRequestToken ?? (0, uuid_1.v4)(),
|
|
21
20
|
});
|
|
22
21
|
return new protocol_http_1.HttpRequest({
|
|
23
22
|
protocol,
|
|
@@ -31,16 +30,15 @@ const serializeAws_restJson1CreateAccessorCommand = async (input, context) => {
|
|
|
31
30
|
};
|
|
32
31
|
exports.serializeAws_restJson1CreateAccessorCommand = serializeAws_restJson1CreateAccessorCommand;
|
|
33
32
|
const serializeAws_restJson1CreateMemberCommand = async (input, context) => {
|
|
34
|
-
var _a;
|
|
35
33
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
36
34
|
const headers = {
|
|
37
35
|
"content-type": "application/json",
|
|
38
36
|
};
|
|
39
|
-
let resolvedPath = `${
|
|
37
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networks/{NetworkId}/members";
|
|
40
38
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
41
39
|
let body;
|
|
42
40
|
body = JSON.stringify({
|
|
43
|
-
ClientRequestToken:
|
|
41
|
+
ClientRequestToken: input.ClientRequestToken ?? (0, uuid_1.v4)(),
|
|
44
42
|
...(input.InvitationId != null && { InvitationId: input.InvitationId }),
|
|
45
43
|
...(input.MemberConfiguration != null && {
|
|
46
44
|
MemberConfiguration: serializeAws_restJson1MemberConfiguration(input.MemberConfiguration, context),
|
|
@@ -58,15 +56,14 @@ const serializeAws_restJson1CreateMemberCommand = async (input, context) => {
|
|
|
58
56
|
};
|
|
59
57
|
exports.serializeAws_restJson1CreateMemberCommand = serializeAws_restJson1CreateMemberCommand;
|
|
60
58
|
const serializeAws_restJson1CreateNetworkCommand = async (input, context) => {
|
|
61
|
-
var _a;
|
|
62
59
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
63
60
|
const headers = {
|
|
64
61
|
"content-type": "application/json",
|
|
65
62
|
};
|
|
66
|
-
const resolvedPath = `${
|
|
63
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networks";
|
|
67
64
|
let body;
|
|
68
65
|
body = JSON.stringify({
|
|
69
|
-
ClientRequestToken:
|
|
66
|
+
ClientRequestToken: input.ClientRequestToken ?? (0, uuid_1.v4)(),
|
|
70
67
|
...(input.Description != null && { Description: input.Description }),
|
|
71
68
|
...(input.Framework != null && { Framework: input.Framework }),
|
|
72
69
|
...(input.FrameworkConfiguration != null && {
|
|
@@ -94,16 +91,15 @@ const serializeAws_restJson1CreateNetworkCommand = async (input, context) => {
|
|
|
94
91
|
};
|
|
95
92
|
exports.serializeAws_restJson1CreateNetworkCommand = serializeAws_restJson1CreateNetworkCommand;
|
|
96
93
|
const serializeAws_restJson1CreateNodeCommand = async (input, context) => {
|
|
97
|
-
var _a;
|
|
98
94
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
99
95
|
const headers = {
|
|
100
96
|
"content-type": "application/json",
|
|
101
97
|
};
|
|
102
|
-
let resolvedPath = `${
|
|
98
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networks/{NetworkId}/nodes";
|
|
103
99
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
104
100
|
let body;
|
|
105
101
|
body = JSON.stringify({
|
|
106
|
-
ClientRequestToken:
|
|
102
|
+
ClientRequestToken: input.ClientRequestToken ?? (0, uuid_1.v4)(),
|
|
107
103
|
...(input.MemberId != null && { MemberId: input.MemberId }),
|
|
108
104
|
...(input.NodeConfiguration != null && {
|
|
109
105
|
NodeConfiguration: serializeAws_restJson1NodeConfiguration(input.NodeConfiguration, context),
|
|
@@ -122,17 +118,16 @@ const serializeAws_restJson1CreateNodeCommand = async (input, context) => {
|
|
|
122
118
|
};
|
|
123
119
|
exports.serializeAws_restJson1CreateNodeCommand = serializeAws_restJson1CreateNodeCommand;
|
|
124
120
|
const serializeAws_restJson1CreateProposalCommand = async (input, context) => {
|
|
125
|
-
var _a;
|
|
126
121
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
127
122
|
const headers = {
|
|
128
123
|
"content-type": "application/json",
|
|
129
124
|
};
|
|
130
|
-
let resolvedPath = `${
|
|
125
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networks/{NetworkId}/proposals";
|
|
131
126
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
132
127
|
let body;
|
|
133
128
|
body = JSON.stringify({
|
|
134
129
|
...(input.Actions != null && { Actions: serializeAws_restJson1ProposalActions(input.Actions, context) }),
|
|
135
|
-
ClientRequestToken:
|
|
130
|
+
ClientRequestToken: input.ClientRequestToken ?? (0, uuid_1.v4)(),
|
|
136
131
|
...(input.Description != null && { Description: input.Description }),
|
|
137
132
|
...(input.MemberId != null && { MemberId: input.MemberId }),
|
|
138
133
|
...(input.Tags != null && { Tags: serializeAws_restJson1InputTagMap(input.Tags, context) }),
|
|
@@ -151,7 +146,7 @@ exports.serializeAws_restJson1CreateProposalCommand = serializeAws_restJson1Crea
|
|
|
151
146
|
const serializeAws_restJson1DeleteAccessorCommand = async (input, context) => {
|
|
152
147
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
153
148
|
const headers = {};
|
|
154
|
-
let resolvedPath = `${
|
|
149
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/accessors/{AccessorId}";
|
|
155
150
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "AccessorId", () => input.AccessorId, "{AccessorId}", false);
|
|
156
151
|
let body;
|
|
157
152
|
return new protocol_http_1.HttpRequest({
|
|
@@ -168,7 +163,7 @@ exports.serializeAws_restJson1DeleteAccessorCommand = serializeAws_restJson1Dele
|
|
|
168
163
|
const serializeAws_restJson1DeleteMemberCommand = async (input, context) => {
|
|
169
164
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
170
165
|
const headers = {};
|
|
171
|
-
let resolvedPath = `${
|
|
166
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networks/{NetworkId}/members/{MemberId}";
|
|
172
167
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
173
168
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "MemberId", () => input.MemberId, "{MemberId}", false);
|
|
174
169
|
let body;
|
|
@@ -186,7 +181,7 @@ exports.serializeAws_restJson1DeleteMemberCommand = serializeAws_restJson1Delete
|
|
|
186
181
|
const serializeAws_restJson1DeleteNodeCommand = async (input, context) => {
|
|
187
182
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
188
183
|
const headers = {};
|
|
189
|
-
let resolvedPath = `${
|
|
184
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networks/{NetworkId}/nodes/{NodeId}";
|
|
190
185
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
191
186
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NodeId", () => input.NodeId, "{NodeId}", false);
|
|
192
187
|
const query = map({
|
|
@@ -208,7 +203,7 @@ exports.serializeAws_restJson1DeleteNodeCommand = serializeAws_restJson1DeleteNo
|
|
|
208
203
|
const serializeAws_restJson1GetAccessorCommand = async (input, context) => {
|
|
209
204
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
210
205
|
const headers = {};
|
|
211
|
-
let resolvedPath = `${
|
|
206
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/accessors/{AccessorId}";
|
|
212
207
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "AccessorId", () => input.AccessorId, "{AccessorId}", false);
|
|
213
208
|
let body;
|
|
214
209
|
return new protocol_http_1.HttpRequest({
|
|
@@ -225,7 +220,7 @@ exports.serializeAws_restJson1GetAccessorCommand = serializeAws_restJson1GetAcce
|
|
|
225
220
|
const serializeAws_restJson1GetMemberCommand = async (input, context) => {
|
|
226
221
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
227
222
|
const headers = {};
|
|
228
|
-
let resolvedPath = `${
|
|
223
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networks/{NetworkId}/members/{MemberId}";
|
|
229
224
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
230
225
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "MemberId", () => input.MemberId, "{MemberId}", false);
|
|
231
226
|
let body;
|
|
@@ -243,7 +238,7 @@ exports.serializeAws_restJson1GetMemberCommand = serializeAws_restJson1GetMember
|
|
|
243
238
|
const serializeAws_restJson1GetNetworkCommand = async (input, context) => {
|
|
244
239
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
245
240
|
const headers = {};
|
|
246
|
-
let resolvedPath = `${
|
|
241
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networks/{NetworkId}";
|
|
247
242
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
248
243
|
let body;
|
|
249
244
|
return new protocol_http_1.HttpRequest({
|
|
@@ -260,7 +255,7 @@ exports.serializeAws_restJson1GetNetworkCommand = serializeAws_restJson1GetNetwo
|
|
|
260
255
|
const serializeAws_restJson1GetNodeCommand = async (input, context) => {
|
|
261
256
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
262
257
|
const headers = {};
|
|
263
|
-
let resolvedPath = `${
|
|
258
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networks/{NetworkId}/nodes/{NodeId}";
|
|
264
259
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
265
260
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NodeId", () => input.NodeId, "{NodeId}", false);
|
|
266
261
|
const query = map({
|
|
@@ -282,7 +277,7 @@ exports.serializeAws_restJson1GetNodeCommand = serializeAws_restJson1GetNodeComm
|
|
|
282
277
|
const serializeAws_restJson1GetProposalCommand = async (input, context) => {
|
|
283
278
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
284
279
|
const headers = {};
|
|
285
|
-
let resolvedPath = `${
|
|
280
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
286
281
|
"/networks/{NetworkId}/proposals/{ProposalId}";
|
|
287
282
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
288
283
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "ProposalId", () => input.ProposalId, "{ProposalId}", false);
|
|
@@ -301,7 +296,7 @@ exports.serializeAws_restJson1GetProposalCommand = serializeAws_restJson1GetProp
|
|
|
301
296
|
const serializeAws_restJson1ListAccessorsCommand = async (input, context) => {
|
|
302
297
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
303
298
|
const headers = {};
|
|
304
|
-
const resolvedPath = `${
|
|
299
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/accessors";
|
|
305
300
|
const query = map({
|
|
306
301
|
maxResults: [() => input.MaxResults !== void 0, () => input.MaxResults.toString()],
|
|
307
302
|
nextToken: [, input.NextToken],
|
|
@@ -322,7 +317,7 @@ exports.serializeAws_restJson1ListAccessorsCommand = serializeAws_restJson1ListA
|
|
|
322
317
|
const serializeAws_restJson1ListInvitationsCommand = async (input, context) => {
|
|
323
318
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
324
319
|
const headers = {};
|
|
325
|
-
const resolvedPath = `${
|
|
320
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/invitations";
|
|
326
321
|
const query = map({
|
|
327
322
|
maxResults: [() => input.MaxResults !== void 0, () => input.MaxResults.toString()],
|
|
328
323
|
nextToken: [, input.NextToken],
|
|
@@ -343,7 +338,7 @@ exports.serializeAws_restJson1ListInvitationsCommand = serializeAws_restJson1Lis
|
|
|
343
338
|
const serializeAws_restJson1ListMembersCommand = async (input, context) => {
|
|
344
339
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
345
340
|
const headers = {};
|
|
346
|
-
let resolvedPath = `${
|
|
341
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networks/{NetworkId}/members";
|
|
347
342
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
348
343
|
const query = map({
|
|
349
344
|
name: [, input.Name],
|
|
@@ -368,7 +363,7 @@ exports.serializeAws_restJson1ListMembersCommand = serializeAws_restJson1ListMem
|
|
|
368
363
|
const serializeAws_restJson1ListNetworksCommand = async (input, context) => {
|
|
369
364
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
370
365
|
const headers = {};
|
|
371
|
-
const resolvedPath = `${
|
|
366
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networks";
|
|
372
367
|
const query = map({
|
|
373
368
|
name: [, input.Name],
|
|
374
369
|
framework: [, input.Framework],
|
|
@@ -392,7 +387,7 @@ exports.serializeAws_restJson1ListNetworksCommand = serializeAws_restJson1ListNe
|
|
|
392
387
|
const serializeAws_restJson1ListNodesCommand = async (input, context) => {
|
|
393
388
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
394
389
|
const headers = {};
|
|
395
|
-
let resolvedPath = `${
|
|
390
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networks/{NetworkId}/nodes";
|
|
396
391
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
397
392
|
const query = map({
|
|
398
393
|
memberId: [, input.MemberId],
|
|
@@ -416,7 +411,7 @@ exports.serializeAws_restJson1ListNodesCommand = serializeAws_restJson1ListNodes
|
|
|
416
411
|
const serializeAws_restJson1ListProposalsCommand = async (input, context) => {
|
|
417
412
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
418
413
|
const headers = {};
|
|
419
|
-
let resolvedPath = `${
|
|
414
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networks/{NetworkId}/proposals";
|
|
420
415
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
421
416
|
const query = map({
|
|
422
417
|
maxResults: [() => input.MaxResults !== void 0, () => input.MaxResults.toString()],
|
|
@@ -438,7 +433,7 @@ exports.serializeAws_restJson1ListProposalsCommand = serializeAws_restJson1ListP
|
|
|
438
433
|
const serializeAws_restJson1ListProposalVotesCommand = async (input, context) => {
|
|
439
434
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
440
435
|
const headers = {};
|
|
441
|
-
let resolvedPath = `${
|
|
436
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
442
437
|
"/networks/{NetworkId}/proposals/{ProposalId}/votes";
|
|
443
438
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
444
439
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "ProposalId", () => input.ProposalId, "{ProposalId}", false);
|
|
@@ -462,7 +457,7 @@ exports.serializeAws_restJson1ListProposalVotesCommand = serializeAws_restJson1L
|
|
|
462
457
|
const serializeAws_restJson1ListTagsForResourceCommand = async (input, context) => {
|
|
463
458
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
464
459
|
const headers = {};
|
|
465
|
-
let resolvedPath = `${
|
|
460
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/tags/{ResourceArn}";
|
|
466
461
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
467
462
|
let body;
|
|
468
463
|
return new protocol_http_1.HttpRequest({
|
|
@@ -479,7 +474,7 @@ exports.serializeAws_restJson1ListTagsForResourceCommand = serializeAws_restJson
|
|
|
479
474
|
const serializeAws_restJson1RejectInvitationCommand = async (input, context) => {
|
|
480
475
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
481
476
|
const headers = {};
|
|
482
|
-
let resolvedPath = `${
|
|
477
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/invitations/{InvitationId}";
|
|
483
478
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "InvitationId", () => input.InvitationId, "{InvitationId}", false);
|
|
484
479
|
let body;
|
|
485
480
|
return new protocol_http_1.HttpRequest({
|
|
@@ -498,7 +493,7 @@ const serializeAws_restJson1TagResourceCommand = async (input, context) => {
|
|
|
498
493
|
const headers = {
|
|
499
494
|
"content-type": "application/json",
|
|
500
495
|
};
|
|
501
|
-
let resolvedPath = `${
|
|
496
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/tags/{ResourceArn}";
|
|
502
497
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
503
498
|
let body;
|
|
504
499
|
body = JSON.stringify({
|
|
@@ -518,7 +513,7 @@ exports.serializeAws_restJson1TagResourceCommand = serializeAws_restJson1TagReso
|
|
|
518
513
|
const serializeAws_restJson1UntagResourceCommand = async (input, context) => {
|
|
519
514
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
520
515
|
const headers = {};
|
|
521
|
-
let resolvedPath = `${
|
|
516
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/tags/{ResourceArn}";
|
|
522
517
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
523
518
|
const query = map({
|
|
524
519
|
tagKeys: [() => input.TagKeys !== void 0, () => (input.TagKeys || []).map((_entry) => _entry)],
|
|
@@ -541,7 +536,7 @@ const serializeAws_restJson1UpdateMemberCommand = async (input, context) => {
|
|
|
541
536
|
const headers = {
|
|
542
537
|
"content-type": "application/json",
|
|
543
538
|
};
|
|
544
|
-
let resolvedPath = `${
|
|
539
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networks/{NetworkId}/members/{MemberId}";
|
|
545
540
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
546
541
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "MemberId", () => input.MemberId, "{MemberId}", false);
|
|
547
542
|
let body;
|
|
@@ -566,7 +561,7 @@ const serializeAws_restJson1UpdateNodeCommand = async (input, context) => {
|
|
|
566
561
|
const headers = {
|
|
567
562
|
"content-type": "application/json",
|
|
568
563
|
};
|
|
569
|
-
let resolvedPath = `${
|
|
564
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networks/{NetworkId}/nodes/{NodeId}";
|
|
570
565
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
571
566
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NodeId", () => input.NodeId, "{NodeId}", false);
|
|
572
567
|
let body;
|
|
@@ -592,7 +587,7 @@ const serializeAws_restJson1VoteOnProposalCommand = async (input, context) => {
|
|
|
592
587
|
const headers = {
|
|
593
588
|
"content-type": "application/json",
|
|
594
589
|
};
|
|
595
|
-
let resolvedPath = `${
|
|
590
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
596
591
|
"/networks/{NetworkId}/proposals/{ProposalId}/votes";
|
|
597
592
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "NetworkId", () => input.NetworkId, "{NetworkId}", false);
|
|
598
593
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "ProposalId", () => input.ProposalId, "{ProposalId}", false);
|
|
@@ -2529,15 +2524,12 @@ const deserializeAws_restJson1VotingPolicy = (output, context) => {
|
|
|
2529
2524
|
: undefined,
|
|
2530
2525
|
};
|
|
2531
2526
|
};
|
|
2532
|
-
const deserializeMetadata = (output) => {
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
2539
|
-
});
|
|
2540
|
-
};
|
|
2527
|
+
const deserializeMetadata = (output) => ({
|
|
2528
|
+
httpStatusCode: output.statusCode,
|
|
2529
|
+
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
2530
|
+
extendedRequestId: output.headers["x-amz-id-2"],
|
|
2531
|
+
cfId: output.headers["x-amz-cf-id"],
|
|
2532
|
+
});
|
|
2541
2533
|
const collectBody = (streamBody = new Uint8Array(), context) => {
|
|
2542
2534
|
if (streamBody instanceof Uint8Array) {
|
|
2543
2535
|
return Promise.resolve(streamBody);
|
|
@@ -2557,9 +2549,8 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
|
|
|
2557
2549
|
return {};
|
|
2558
2550
|
});
|
|
2559
2551
|
const parseErrorBody = async (errorBody, context) => {
|
|
2560
|
-
var _a;
|
|
2561
2552
|
const value = await parseBody(errorBody, context);
|
|
2562
|
-
value.message =
|
|
2553
|
+
value.message = value.message ?? value.Message;
|
|
2563
2554
|
return value;
|
|
2564
2555
|
};
|
|
2565
2556
|
const loadRestJsonErrorCode = (output, data) => {
|
|
@@ -16,7 +16,6 @@ const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
|
16
16
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
17
17
|
const util_defaults_mode_browser_1 = require("@aws-sdk/util-defaults-mode-browser");
|
|
18
18
|
const getRuntimeConfig = (config) => {
|
|
19
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
20
19
|
const defaultsMode = (0, util_defaults_mode_browser_1.resolveDefaultsModeConfig)(config);
|
|
21
20
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
22
21
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
@@ -25,21 +24,22 @@ const getRuntimeConfig = (config) => {
|
|
|
25
24
|
...config,
|
|
26
25
|
runtime: "browser",
|
|
27
26
|
defaultsMode,
|
|
28
|
-
base64Decoder:
|
|
29
|
-
base64Encoder:
|
|
30
|
-
bodyLengthChecker:
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
defaultUserAgentProvider:
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
27
|
+
base64Decoder: config?.base64Decoder ?? util_base64_browser_1.fromBase64,
|
|
28
|
+
base64Encoder: config?.base64Encoder ?? util_base64_browser_1.toBase64,
|
|
29
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_browser_1.calculateBodyLength,
|
|
30
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
31
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
32
|
+
(0, util_user_agent_browser_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
33
|
+
maxAttempts: config?.maxAttempts ?? middleware_retry_1.DEFAULT_MAX_ATTEMPTS,
|
|
34
|
+
region: config?.region ?? (0, invalid_dependency_1.invalidProvider)("Region is missing"),
|
|
35
|
+
requestHandler: config?.requestHandler ?? new fetch_http_handler_1.FetchHttpHandler(defaultConfigProvider),
|
|
36
|
+
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || middleware_retry_1.DEFAULT_RETRY_MODE),
|
|
37
|
+
sha256: config?.sha256 ?? sha256_browser_1.Sha256,
|
|
38
|
+
streamCollector: config?.streamCollector ?? fetch_http_handler_1.streamCollector,
|
|
39
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
40
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_FIPS_ENDPOINT)),
|
|
41
|
+
utf8Decoder: config?.utf8Decoder ?? util_utf8_browser_1.fromUtf8,
|
|
42
|
+
utf8Encoder: config?.utf8Encoder ?? util_utf8_browser_1.toUtf8,
|
|
43
43
|
};
|
|
44
44
|
};
|
|
45
45
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -19,7 +19,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
19
19
|
const util_defaults_mode_node_1 = require("@aws-sdk/util-defaults-mode-node");
|
|
20
20
|
const smithy_client_2 = require("@aws-sdk/smithy-client");
|
|
21
21
|
const getRuntimeConfig = (config) => {
|
|
22
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
23
22
|
(0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version);
|
|
24
23
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
25
24
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
@@ -29,24 +28,26 @@ const getRuntimeConfig = (config) => {
|
|
|
29
28
|
...config,
|
|
30
29
|
runtime: "node",
|
|
31
30
|
defaultsMode,
|
|
32
|
-
base64Decoder:
|
|
33
|
-
base64Encoder:
|
|
34
|
-
bodyLengthChecker:
|
|
35
|
-
credentialDefaultProvider:
|
|
36
|
-
defaultUserAgentProvider:
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
31
|
+
base64Decoder: config?.base64Decoder ?? util_base64_node_1.fromBase64,
|
|
32
|
+
base64Encoder: config?.base64Encoder ?? util_base64_node_1.toBase64,
|
|
33
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
34
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? (0, client_sts_1.decorateDefaultCredentialProvider)(credential_provider_node_1.defaultProvider),
|
|
35
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
36
|
+
(0, util_user_agent_node_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
37
|
+
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
38
|
+
region: config?.region ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS),
|
|
39
|
+
requestHandler: config?.requestHandler ?? new node_http_handler_1.NodeHttpHandler(defaultConfigProvider),
|
|
40
|
+
retryMode: config?.retryMode ??
|
|
41
|
+
(0, node_config_provider_1.loadConfig)({
|
|
42
|
+
...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
43
|
+
default: async () => (await defaultConfigProvider()).retryMode || middleware_retry_1.DEFAULT_RETRY_MODE,
|
|
44
|
+
}),
|
|
45
|
+
sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
|
|
46
|
+
streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
|
|
47
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
48
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
49
|
+
utf8Decoder: config?.utf8Decoder ?? util_utf8_node_1.fromUtf8,
|
|
50
|
+
utf8Encoder: config?.utf8Encoder ?? util_utf8_node_1.toUtf8,
|
|
50
51
|
};
|
|
51
52
|
};
|
|
52
53
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -4,13 +4,12 @@ exports.getRuntimeConfig = void 0;
|
|
|
4
4
|
const sha256_js_1 = require("@aws-crypto/sha256-js");
|
|
5
5
|
const runtimeConfig_browser_1 = require("./runtimeConfig.browser");
|
|
6
6
|
const getRuntimeConfig = (config) => {
|
|
7
|
-
var _a;
|
|
8
7
|
const browserDefaults = (0, runtimeConfig_browser_1.getRuntimeConfig)(config);
|
|
9
8
|
return {
|
|
10
9
|
...browserDefaults,
|
|
11
10
|
...config,
|
|
12
11
|
runtime: "react-native",
|
|
13
|
-
sha256:
|
|
12
|
+
sha256: config?.sha256 ?? sha256_js_1.Sha256,
|
|
14
13
|
};
|
|
15
14
|
};
|
|
16
15
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -3,15 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const url_parser_1 = require("@aws-sdk/url-parser");
|
|
5
5
|
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
6
|
-
const getRuntimeConfig = (config) => {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
urlParser: (_e = config === null || config === void 0 ? void 0 : config.urlParser) !== null && _e !== void 0 ? _e : url_parser_1.parseUrl,
|
|
15
|
-
});
|
|
16
|
-
};
|
|
6
|
+
const getRuntimeConfig = (config) => ({
|
|
7
|
+
apiVersion: "2018-09-24",
|
|
8
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
9
|
+
endpointProvider: config?.endpointProvider ?? endpointResolver_1.defaultEndpointResolver,
|
|
10
|
+
logger: config?.logger ?? {},
|
|
11
|
+
serviceId: config?.serviceId ?? "ManagedBlockchain",
|
|
12
|
+
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
13
|
+
});
|
|
17
14
|
exports.getRuntimeConfig = getRuntimeConfig;
|
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.201.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",
|
|
@@ -19,45 +19,45 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.201.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.201.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.201.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.201.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.201.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.201.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.201.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.201.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.201.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.201.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.201.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.201.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.201.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.201.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.201.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.201.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.201.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.201.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.201.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.201.0",
|
|
42
|
+
"@aws-sdk/types": "3.201.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.201.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.188.0",
|
|
45
|
-
"@aws-sdk/util-base64-node": "3.
|
|
45
|
+
"@aws-sdk/util-base64-node": "3.201.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.201.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.201.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.201.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.201.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-browser": "3.201.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-node": "3.201.0",
|
|
53
53
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
54
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
54
|
+
"@aws-sdk/util-utf8-node": "3.201.0",
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
56
|
"uuid": "^8.3.2"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@aws-sdk/service-client-documentation-generator": "3.188.0",
|
|
60
|
-
"@tsconfig/
|
|
60
|
+
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^12.7.5",
|
|
62
62
|
"@types/uuid": "^8.3.0",
|
|
63
63
|
"concurrently": "7.0.0",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
}
|
|
73
73
|
},
|
|
74
74
|
"engines": {
|
|
75
|
-
"node": ">=
|
|
75
|
+
"node": ">=14.0.0"
|
|
76
76
|
},
|
|
77
77
|
"typesVersions": {
|
|
78
78
|
"<4.0": {
|