@aws-sdk/client-managedblockchain 3.301.0 → 3.306.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/dist-cjs/models/models_0.js +69 -81
- package/dist-es/models/models_0.js +69 -81
- package/dist-types/models/models_0.d.ts +129 -69
- package/dist-types/ts3.4/models/models_0.d.ts +85 -69
- package/package.json +34 -34
|
@@ -17,21 +17,18 @@ class AccessDeniedException extends ManagedBlockchainServiceException_1.ManagedB
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
exports.AccessDeniedException = AccessDeniedException;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
ThresholdComparator["GREATER_THAN"] = "GREATER_THAN";
|
|
33
|
-
ThresholdComparator["GREATER_THAN_OR_EQUAL_TO"] = "GREATER_THAN_OR_EQUAL_TO";
|
|
34
|
-
})(ThresholdComparator = exports.ThresholdComparator || (exports.ThresholdComparator = {}));
|
|
20
|
+
exports.AccessorStatus = {
|
|
21
|
+
AVAILABLE: "AVAILABLE",
|
|
22
|
+
DELETED: "DELETED",
|
|
23
|
+
PENDING_DELETION: "PENDING_DELETION",
|
|
24
|
+
};
|
|
25
|
+
exports.AccessorType = {
|
|
26
|
+
BILLING_TOKEN: "BILLING_TOKEN",
|
|
27
|
+
};
|
|
28
|
+
exports.ThresholdComparator = {
|
|
29
|
+
GREATER_THAN: "GREATER_THAN",
|
|
30
|
+
GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO",
|
|
31
|
+
};
|
|
35
32
|
class InternalServiceErrorException extends ManagedBlockchainServiceException_1.ManagedBlockchainServiceException {
|
|
36
33
|
constructor(opts) {
|
|
37
34
|
super({
|
|
@@ -144,59 +141,52 @@ class ResourceNotReadyException extends ManagedBlockchainServiceException_1.Mana
|
|
|
144
141
|
}
|
|
145
142
|
}
|
|
146
143
|
exports.ResourceNotReadyException = ResourceNotReadyException;
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
(function (ProposalStatus) {
|
|
194
|
-
ProposalStatus["ACTION_FAILED"] = "ACTION_FAILED";
|
|
195
|
-
ProposalStatus["APPROVED"] = "APPROVED";
|
|
196
|
-
ProposalStatus["EXPIRED"] = "EXPIRED";
|
|
197
|
-
ProposalStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
198
|
-
ProposalStatus["REJECTED"] = "REJECTED";
|
|
199
|
-
})(ProposalStatus = exports.ProposalStatus || (exports.ProposalStatus = {}));
|
|
144
|
+
exports.Framework = {
|
|
145
|
+
ETHEREUM: "ETHEREUM",
|
|
146
|
+
HYPERLEDGER_FABRIC: "HYPERLEDGER_FABRIC",
|
|
147
|
+
};
|
|
148
|
+
exports.Edition = {
|
|
149
|
+
STANDARD: "STANDARD",
|
|
150
|
+
STARTER: "STARTER",
|
|
151
|
+
};
|
|
152
|
+
exports.StateDBType = {
|
|
153
|
+
CouchDB: "CouchDB",
|
|
154
|
+
LevelDB: "LevelDB",
|
|
155
|
+
};
|
|
156
|
+
exports.MemberStatus = {
|
|
157
|
+
AVAILABLE: "AVAILABLE",
|
|
158
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
159
|
+
CREATING: "CREATING",
|
|
160
|
+
DELETED: "DELETED",
|
|
161
|
+
DELETING: "DELETING",
|
|
162
|
+
INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY",
|
|
163
|
+
UPDATING: "UPDATING",
|
|
164
|
+
};
|
|
165
|
+
exports.NetworkStatus = {
|
|
166
|
+
AVAILABLE: "AVAILABLE",
|
|
167
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
168
|
+
CREATING: "CREATING",
|
|
169
|
+
DELETED: "DELETED",
|
|
170
|
+
DELETING: "DELETING",
|
|
171
|
+
};
|
|
172
|
+
exports.NodeStatus = {
|
|
173
|
+
AVAILABLE: "AVAILABLE",
|
|
174
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
175
|
+
CREATING: "CREATING",
|
|
176
|
+
DELETED: "DELETED",
|
|
177
|
+
DELETING: "DELETING",
|
|
178
|
+
FAILED: "FAILED",
|
|
179
|
+
INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY",
|
|
180
|
+
UNHEALTHY: "UNHEALTHY",
|
|
181
|
+
UPDATING: "UPDATING",
|
|
182
|
+
};
|
|
183
|
+
exports.ProposalStatus = {
|
|
184
|
+
ACTION_FAILED: "ACTION_FAILED",
|
|
185
|
+
APPROVED: "APPROVED",
|
|
186
|
+
EXPIRED: "EXPIRED",
|
|
187
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
188
|
+
REJECTED: "REJECTED",
|
|
189
|
+
};
|
|
200
190
|
class IllegalActionException extends ManagedBlockchainServiceException_1.ManagedBlockchainServiceException {
|
|
201
191
|
constructor(opts) {
|
|
202
192
|
super({
|
|
@@ -211,19 +201,17 @@ class IllegalActionException extends ManagedBlockchainServiceException_1.Managed
|
|
|
211
201
|
}
|
|
212
202
|
}
|
|
213
203
|
exports.IllegalActionException = IllegalActionException;
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
VoteValue["YES"] = "YES";
|
|
226
|
-
})(VoteValue = exports.VoteValue || (exports.VoteValue = {}));
|
|
204
|
+
exports.InvitationStatus = {
|
|
205
|
+
ACCEPTED: "ACCEPTED",
|
|
206
|
+
ACCEPTING: "ACCEPTING",
|
|
207
|
+
EXPIRED: "EXPIRED",
|
|
208
|
+
PENDING: "PENDING",
|
|
209
|
+
REJECTED: "REJECTED",
|
|
210
|
+
};
|
|
211
|
+
exports.VoteValue = {
|
|
212
|
+
NO: "NO",
|
|
213
|
+
YES: "YES",
|
|
214
|
+
};
|
|
227
215
|
const MemberFabricConfigurationFilterSensitiveLog = (obj) => ({
|
|
228
216
|
...obj,
|
|
229
217
|
...(obj.AdminPassword && { AdminPassword: smithy_client_1.SENSITIVE_STRING }),
|
|
@@ -13,21 +13,18 @@ export class AccessDeniedException extends __BaseException {
|
|
|
13
13
|
this.Message = opts.Message;
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
-
export
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
ThresholdComparator["GREATER_THAN"] = "GREATER_THAN";
|
|
29
|
-
ThresholdComparator["GREATER_THAN_OR_EQUAL_TO"] = "GREATER_THAN_OR_EQUAL_TO";
|
|
30
|
-
})(ThresholdComparator || (ThresholdComparator = {}));
|
|
16
|
+
export const AccessorStatus = {
|
|
17
|
+
AVAILABLE: "AVAILABLE",
|
|
18
|
+
DELETED: "DELETED",
|
|
19
|
+
PENDING_DELETION: "PENDING_DELETION",
|
|
20
|
+
};
|
|
21
|
+
export const AccessorType = {
|
|
22
|
+
BILLING_TOKEN: "BILLING_TOKEN",
|
|
23
|
+
};
|
|
24
|
+
export const ThresholdComparator = {
|
|
25
|
+
GREATER_THAN: "GREATER_THAN",
|
|
26
|
+
GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO",
|
|
27
|
+
};
|
|
31
28
|
export class InternalServiceErrorException extends __BaseException {
|
|
32
29
|
constructor(opts) {
|
|
33
30
|
super({
|
|
@@ -132,59 +129,52 @@ export class ResourceNotReadyException extends __BaseException {
|
|
|
132
129
|
this.Message = opts.Message;
|
|
133
130
|
}
|
|
134
131
|
}
|
|
135
|
-
export
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
(function (ProposalStatus) {
|
|
182
|
-
ProposalStatus["ACTION_FAILED"] = "ACTION_FAILED";
|
|
183
|
-
ProposalStatus["APPROVED"] = "APPROVED";
|
|
184
|
-
ProposalStatus["EXPIRED"] = "EXPIRED";
|
|
185
|
-
ProposalStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
186
|
-
ProposalStatus["REJECTED"] = "REJECTED";
|
|
187
|
-
})(ProposalStatus || (ProposalStatus = {}));
|
|
132
|
+
export const Framework = {
|
|
133
|
+
ETHEREUM: "ETHEREUM",
|
|
134
|
+
HYPERLEDGER_FABRIC: "HYPERLEDGER_FABRIC",
|
|
135
|
+
};
|
|
136
|
+
export const Edition = {
|
|
137
|
+
STANDARD: "STANDARD",
|
|
138
|
+
STARTER: "STARTER",
|
|
139
|
+
};
|
|
140
|
+
export const StateDBType = {
|
|
141
|
+
CouchDB: "CouchDB",
|
|
142
|
+
LevelDB: "LevelDB",
|
|
143
|
+
};
|
|
144
|
+
export const MemberStatus = {
|
|
145
|
+
AVAILABLE: "AVAILABLE",
|
|
146
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
147
|
+
CREATING: "CREATING",
|
|
148
|
+
DELETED: "DELETED",
|
|
149
|
+
DELETING: "DELETING",
|
|
150
|
+
INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY",
|
|
151
|
+
UPDATING: "UPDATING",
|
|
152
|
+
};
|
|
153
|
+
export const NetworkStatus = {
|
|
154
|
+
AVAILABLE: "AVAILABLE",
|
|
155
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
156
|
+
CREATING: "CREATING",
|
|
157
|
+
DELETED: "DELETED",
|
|
158
|
+
DELETING: "DELETING",
|
|
159
|
+
};
|
|
160
|
+
export const NodeStatus = {
|
|
161
|
+
AVAILABLE: "AVAILABLE",
|
|
162
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
163
|
+
CREATING: "CREATING",
|
|
164
|
+
DELETED: "DELETED",
|
|
165
|
+
DELETING: "DELETING",
|
|
166
|
+
FAILED: "FAILED",
|
|
167
|
+
INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY",
|
|
168
|
+
UNHEALTHY: "UNHEALTHY",
|
|
169
|
+
UPDATING: "UPDATING",
|
|
170
|
+
};
|
|
171
|
+
export const ProposalStatus = {
|
|
172
|
+
ACTION_FAILED: "ACTION_FAILED",
|
|
173
|
+
APPROVED: "APPROVED",
|
|
174
|
+
EXPIRED: "EXPIRED",
|
|
175
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
176
|
+
REJECTED: "REJECTED",
|
|
177
|
+
};
|
|
188
178
|
export class IllegalActionException extends __BaseException {
|
|
189
179
|
constructor(opts) {
|
|
190
180
|
super({
|
|
@@ -198,19 +188,17 @@ export class IllegalActionException extends __BaseException {
|
|
|
198
188
|
this.Message = opts.Message;
|
|
199
189
|
}
|
|
200
190
|
}
|
|
201
|
-
export
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
VoteValue["YES"] = "YES";
|
|
213
|
-
})(VoteValue || (VoteValue = {}));
|
|
191
|
+
export const InvitationStatus = {
|
|
192
|
+
ACCEPTED: "ACCEPTED",
|
|
193
|
+
ACCEPTING: "ACCEPTING",
|
|
194
|
+
EXPIRED: "EXPIRED",
|
|
195
|
+
PENDING: "PENDING",
|
|
196
|
+
REJECTED: "REJECTED",
|
|
197
|
+
};
|
|
198
|
+
export const VoteValue = {
|
|
199
|
+
NO: "NO",
|
|
200
|
+
YES: "YES",
|
|
201
|
+
};
|
|
214
202
|
export const MemberFabricConfigurationFilterSensitiveLog = (obj) => ({
|
|
215
203
|
...obj,
|
|
216
204
|
...(obj.AdminPassword && { AdminPassword: SENSITIVE_STRING }),
|
|
@@ -15,18 +15,28 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* @public
|
|
18
|
+
* @enum
|
|
18
19
|
*/
|
|
19
|
-
export declare
|
|
20
|
-
AVAILABLE
|
|
21
|
-
DELETED
|
|
22
|
-
PENDING_DELETION
|
|
23
|
-
}
|
|
20
|
+
export declare const AccessorStatus: {
|
|
21
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
22
|
+
readonly DELETED: "DELETED";
|
|
23
|
+
readonly PENDING_DELETION: "PENDING_DELETION";
|
|
24
|
+
};
|
|
24
25
|
/**
|
|
25
26
|
* @public
|
|
26
27
|
*/
|
|
27
|
-
export
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
export type AccessorStatus = (typeof AccessorStatus)[keyof typeof AccessorStatus];
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
* @enum
|
|
32
|
+
*/
|
|
33
|
+
export declare const AccessorType: {
|
|
34
|
+
readonly BILLING_TOKEN: "BILLING_TOKEN";
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export type AccessorType = (typeof AccessorType)[keyof typeof AccessorType];
|
|
30
40
|
/**
|
|
31
41
|
* @public
|
|
32
42
|
* <p>The properties of the Accessor.</p>
|
|
@@ -102,11 +112,16 @@ export interface AccessorSummary {
|
|
|
102
112
|
}
|
|
103
113
|
/**
|
|
104
114
|
* @public
|
|
115
|
+
* @enum
|
|
105
116
|
*/
|
|
106
|
-
export declare
|
|
107
|
-
GREATER_THAN
|
|
108
|
-
GREATER_THAN_OR_EQUAL_TO
|
|
109
|
-
}
|
|
117
|
+
export declare const ThresholdComparator: {
|
|
118
|
+
readonly GREATER_THAN: "GREATER_THAN";
|
|
119
|
+
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
120
|
+
};
|
|
121
|
+
/**
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
124
|
+
export type ThresholdComparator = (typeof ThresholdComparator)[keyof typeof ThresholdComparator];
|
|
110
125
|
/**
|
|
111
126
|
* @public
|
|
112
127
|
* <p>A policy type that defines the voting rules for the network. The rules decide if a proposal is approved. Approval may be based on criteria such as the percentage of <code>YES</code> votes and the duration of the proposal. The policy applies to all proposals and is specified when the network is created.</p>
|
|
@@ -426,18 +441,28 @@ export declare class ResourceNotReadyException extends __BaseException {
|
|
|
426
441
|
}
|
|
427
442
|
/**
|
|
428
443
|
* @public
|
|
444
|
+
* @enum
|
|
429
445
|
*/
|
|
430
|
-
export declare
|
|
431
|
-
ETHEREUM
|
|
432
|
-
HYPERLEDGER_FABRIC
|
|
433
|
-
}
|
|
446
|
+
export declare const Framework: {
|
|
447
|
+
readonly ETHEREUM: "ETHEREUM";
|
|
448
|
+
readonly HYPERLEDGER_FABRIC: "HYPERLEDGER_FABRIC";
|
|
449
|
+
};
|
|
434
450
|
/**
|
|
435
451
|
* @public
|
|
436
452
|
*/
|
|
437
|
-
export
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
453
|
+
export type Framework = (typeof Framework)[keyof typeof Framework];
|
|
454
|
+
/**
|
|
455
|
+
* @public
|
|
456
|
+
* @enum
|
|
457
|
+
*/
|
|
458
|
+
export declare const Edition: {
|
|
459
|
+
readonly STANDARD: "STANDARD";
|
|
460
|
+
readonly STARTER: "STARTER";
|
|
461
|
+
};
|
|
462
|
+
/**
|
|
463
|
+
* @public
|
|
464
|
+
*/
|
|
465
|
+
export type Edition = (typeof Edition)[keyof typeof Edition];
|
|
441
466
|
/**
|
|
442
467
|
* @public
|
|
443
468
|
* <p>Hyperledger Fabric configuration properties for the network.</p>
|
|
@@ -567,11 +592,16 @@ export interface NodeLogPublishingConfiguration {
|
|
|
567
592
|
}
|
|
568
593
|
/**
|
|
569
594
|
* @public
|
|
595
|
+
* @enum
|
|
570
596
|
*/
|
|
571
|
-
export declare
|
|
572
|
-
CouchDB
|
|
573
|
-
LevelDB
|
|
574
|
-
}
|
|
597
|
+
export declare const StateDBType: {
|
|
598
|
+
readonly CouchDB: "CouchDB";
|
|
599
|
+
readonly LevelDB: "LevelDB";
|
|
600
|
+
};
|
|
601
|
+
/**
|
|
602
|
+
* @public
|
|
603
|
+
*/
|
|
604
|
+
export type StateDBType = (typeof StateDBType)[keyof typeof StateDBType];
|
|
575
605
|
/**
|
|
576
606
|
* @public
|
|
577
607
|
* <p>Configuration properties of a node.</p>
|
|
@@ -881,16 +911,21 @@ export interface MemberFrameworkAttributes {
|
|
|
881
911
|
}
|
|
882
912
|
/**
|
|
883
913
|
* @public
|
|
914
|
+
* @enum
|
|
884
915
|
*/
|
|
885
|
-
export declare
|
|
886
|
-
AVAILABLE
|
|
887
|
-
CREATE_FAILED
|
|
888
|
-
CREATING
|
|
889
|
-
DELETED
|
|
890
|
-
DELETING
|
|
891
|
-
INACCESSIBLE_ENCRYPTION_KEY
|
|
892
|
-
UPDATING
|
|
893
|
-
}
|
|
916
|
+
export declare const MemberStatus: {
|
|
917
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
918
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
919
|
+
readonly CREATING: "CREATING";
|
|
920
|
+
readonly DELETED: "DELETED";
|
|
921
|
+
readonly DELETING: "DELETING";
|
|
922
|
+
readonly INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY";
|
|
923
|
+
readonly UPDATING: "UPDATING";
|
|
924
|
+
};
|
|
925
|
+
/**
|
|
926
|
+
* @public
|
|
927
|
+
*/
|
|
928
|
+
export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
|
|
894
929
|
/**
|
|
895
930
|
* @public
|
|
896
931
|
* <p>Member configuration properties.</p>
|
|
@@ -1053,14 +1088,19 @@ export interface NetworkFrameworkAttributes {
|
|
|
1053
1088
|
}
|
|
1054
1089
|
/**
|
|
1055
1090
|
* @public
|
|
1091
|
+
* @enum
|
|
1056
1092
|
*/
|
|
1057
|
-
export declare
|
|
1058
|
-
AVAILABLE
|
|
1059
|
-
CREATE_FAILED
|
|
1060
|
-
CREATING
|
|
1061
|
-
DELETED
|
|
1062
|
-
DELETING
|
|
1063
|
-
}
|
|
1093
|
+
export declare const NetworkStatus: {
|
|
1094
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
1095
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1096
|
+
readonly CREATING: "CREATING";
|
|
1097
|
+
readonly DELETED: "DELETED";
|
|
1098
|
+
readonly DELETING: "DELETING";
|
|
1099
|
+
};
|
|
1100
|
+
/**
|
|
1101
|
+
* @public
|
|
1102
|
+
*/
|
|
1103
|
+
export type NetworkStatus = (typeof NetworkStatus)[keyof typeof NetworkStatus];
|
|
1064
1104
|
/**
|
|
1065
1105
|
* @public
|
|
1066
1106
|
* <p>Network configuration properties.</p>
|
|
@@ -1187,18 +1227,23 @@ export interface NodeFrameworkAttributes {
|
|
|
1187
1227
|
}
|
|
1188
1228
|
/**
|
|
1189
1229
|
* @public
|
|
1230
|
+
* @enum
|
|
1190
1231
|
*/
|
|
1191
|
-
export declare
|
|
1192
|
-
AVAILABLE
|
|
1193
|
-
CREATE_FAILED
|
|
1194
|
-
CREATING
|
|
1195
|
-
DELETED
|
|
1196
|
-
DELETING
|
|
1197
|
-
FAILED
|
|
1198
|
-
INACCESSIBLE_ENCRYPTION_KEY
|
|
1199
|
-
UNHEALTHY
|
|
1200
|
-
UPDATING
|
|
1201
|
-
}
|
|
1232
|
+
export declare const NodeStatus: {
|
|
1233
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
1234
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1235
|
+
readonly CREATING: "CREATING";
|
|
1236
|
+
readonly DELETED: "DELETED";
|
|
1237
|
+
readonly DELETING: "DELETING";
|
|
1238
|
+
readonly FAILED: "FAILED";
|
|
1239
|
+
readonly INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY";
|
|
1240
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
1241
|
+
readonly UPDATING: "UPDATING";
|
|
1242
|
+
};
|
|
1243
|
+
/**
|
|
1244
|
+
* @public
|
|
1245
|
+
*/
|
|
1246
|
+
export type NodeStatus = (typeof NodeStatus)[keyof typeof NodeStatus];
|
|
1202
1247
|
/**
|
|
1203
1248
|
* @public
|
|
1204
1249
|
* <p>Configuration properties of a node.</p>
|
|
@@ -1325,14 +1370,19 @@ export interface GetProposalInput {
|
|
|
1325
1370
|
}
|
|
1326
1371
|
/**
|
|
1327
1372
|
* @public
|
|
1373
|
+
* @enum
|
|
1328
1374
|
*/
|
|
1329
|
-
export declare
|
|
1330
|
-
ACTION_FAILED
|
|
1331
|
-
APPROVED
|
|
1332
|
-
EXPIRED
|
|
1333
|
-
IN_PROGRESS
|
|
1334
|
-
REJECTED
|
|
1335
|
-
}
|
|
1375
|
+
export declare const ProposalStatus: {
|
|
1376
|
+
readonly ACTION_FAILED: "ACTION_FAILED";
|
|
1377
|
+
readonly APPROVED: "APPROVED";
|
|
1378
|
+
readonly EXPIRED: "EXPIRED";
|
|
1379
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1380
|
+
readonly REJECTED: "REJECTED";
|
|
1381
|
+
};
|
|
1382
|
+
/**
|
|
1383
|
+
* @public
|
|
1384
|
+
*/
|
|
1385
|
+
export type ProposalStatus = (typeof ProposalStatus)[keyof typeof ProposalStatus];
|
|
1336
1386
|
/**
|
|
1337
1387
|
* @public
|
|
1338
1388
|
* <p>Properties of a proposal on a Managed Blockchain network.</p>
|
|
@@ -1491,14 +1541,19 @@ export interface NetworkSummary {
|
|
|
1491
1541
|
}
|
|
1492
1542
|
/**
|
|
1493
1543
|
* @public
|
|
1544
|
+
* @enum
|
|
1494
1545
|
*/
|
|
1495
|
-
export declare
|
|
1496
|
-
ACCEPTED
|
|
1497
|
-
ACCEPTING
|
|
1498
|
-
EXPIRED
|
|
1499
|
-
PENDING
|
|
1500
|
-
REJECTED
|
|
1501
|
-
}
|
|
1546
|
+
export declare const InvitationStatus: {
|
|
1547
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
1548
|
+
readonly ACCEPTING: "ACCEPTING";
|
|
1549
|
+
readonly EXPIRED: "EXPIRED";
|
|
1550
|
+
readonly PENDING: "PENDING";
|
|
1551
|
+
readonly REJECTED: "REJECTED";
|
|
1552
|
+
};
|
|
1553
|
+
/**
|
|
1554
|
+
* @public
|
|
1555
|
+
*/
|
|
1556
|
+
export type InvitationStatus = (typeof InvitationStatus)[keyof typeof InvitationStatus];
|
|
1502
1557
|
/**
|
|
1503
1558
|
* @public
|
|
1504
1559
|
* <p>An invitation to an Amazon Web Services account to create a member and join the network.</p>
|
|
@@ -1965,11 +2020,16 @@ export interface ListProposalVotesInput {
|
|
|
1965
2020
|
}
|
|
1966
2021
|
/**
|
|
1967
2022
|
* @public
|
|
2023
|
+
* @enum
|
|
1968
2024
|
*/
|
|
1969
|
-
export declare
|
|
1970
|
-
NO
|
|
1971
|
-
YES
|
|
1972
|
-
}
|
|
2025
|
+
export declare const VoteValue: {
|
|
2026
|
+
readonly NO: "NO";
|
|
2027
|
+
readonly YES: "YES";
|
|
2028
|
+
};
|
|
2029
|
+
/**
|
|
2030
|
+
* @public
|
|
2031
|
+
*/
|
|
2032
|
+
export type VoteValue = (typeof VoteValue)[keyof typeof VoteValue];
|
|
1973
2033
|
/**
|
|
1974
2034
|
* @public
|
|
1975
2035
|
* <p>
|
|
@@ -8,14 +8,17 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
10
10
|
}
|
|
11
|
-
export declare
|
|
12
|
-
AVAILABLE
|
|
13
|
-
DELETED
|
|
14
|
-
PENDING_DELETION
|
|
15
|
-
}
|
|
16
|
-
export
|
|
17
|
-
|
|
18
|
-
|
|
11
|
+
export declare const AccessorStatus: {
|
|
12
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
13
|
+
readonly DELETED: "DELETED";
|
|
14
|
+
readonly PENDING_DELETION: "PENDING_DELETION";
|
|
15
|
+
};
|
|
16
|
+
export type AccessorStatus =
|
|
17
|
+
(typeof AccessorStatus)[keyof typeof AccessorStatus];
|
|
18
|
+
export declare const AccessorType: {
|
|
19
|
+
readonly BILLING_TOKEN: "BILLING_TOKEN";
|
|
20
|
+
};
|
|
21
|
+
export type AccessorType = (typeof AccessorType)[keyof typeof AccessorType];
|
|
19
22
|
export interface Accessor {
|
|
20
23
|
Id?: string;
|
|
21
24
|
Type?: AccessorType | string;
|
|
@@ -32,10 +35,12 @@ export interface AccessorSummary {
|
|
|
32
35
|
CreationDate?: Date;
|
|
33
36
|
Arn?: string;
|
|
34
37
|
}
|
|
35
|
-
export declare
|
|
36
|
-
GREATER_THAN
|
|
37
|
-
GREATER_THAN_OR_EQUAL_TO
|
|
38
|
-
}
|
|
38
|
+
export declare const ThresholdComparator: {
|
|
39
|
+
readonly GREATER_THAN: "GREATER_THAN";
|
|
40
|
+
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
41
|
+
};
|
|
42
|
+
export type ThresholdComparator =
|
|
43
|
+
(typeof ThresholdComparator)[keyof typeof ThresholdComparator];
|
|
39
44
|
export interface ApprovalThresholdPolicy {
|
|
40
45
|
ThresholdPercentage?: number;
|
|
41
46
|
ProposalDurationInHours?: number;
|
|
@@ -150,14 +155,16 @@ export declare class ResourceNotReadyException extends __BaseException {
|
|
|
150
155
|
opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>
|
|
151
156
|
);
|
|
152
157
|
}
|
|
153
|
-
export declare
|
|
154
|
-
ETHEREUM
|
|
155
|
-
HYPERLEDGER_FABRIC
|
|
156
|
-
}
|
|
157
|
-
export
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
158
|
+
export declare const Framework: {
|
|
159
|
+
readonly ETHEREUM: "ETHEREUM";
|
|
160
|
+
readonly HYPERLEDGER_FABRIC: "HYPERLEDGER_FABRIC";
|
|
161
|
+
};
|
|
162
|
+
export type Framework = (typeof Framework)[keyof typeof Framework];
|
|
163
|
+
export declare const Edition: {
|
|
164
|
+
readonly STANDARD: "STANDARD";
|
|
165
|
+
readonly STARTER: "STARTER";
|
|
166
|
+
};
|
|
167
|
+
export type Edition = (typeof Edition)[keyof typeof Edition];
|
|
161
168
|
export interface NetworkFabricConfiguration {
|
|
162
169
|
Edition: Edition | string | undefined;
|
|
163
170
|
}
|
|
@@ -189,10 +196,11 @@ export interface NodeFabricLogPublishingConfiguration {
|
|
|
189
196
|
export interface NodeLogPublishingConfiguration {
|
|
190
197
|
Fabric?: NodeFabricLogPublishingConfiguration;
|
|
191
198
|
}
|
|
192
|
-
export declare
|
|
193
|
-
CouchDB
|
|
194
|
-
LevelDB
|
|
195
|
-
}
|
|
199
|
+
export declare const StateDBType: {
|
|
200
|
+
readonly CouchDB: "CouchDB";
|
|
201
|
+
readonly LevelDB: "LevelDB";
|
|
202
|
+
};
|
|
203
|
+
export type StateDBType = (typeof StateDBType)[keyof typeof StateDBType];
|
|
196
204
|
export interface NodeConfiguration {
|
|
197
205
|
InstanceType: string | undefined;
|
|
198
206
|
AvailabilityZone?: string;
|
|
@@ -262,15 +270,16 @@ export interface MemberFabricAttributes {
|
|
|
262
270
|
export interface MemberFrameworkAttributes {
|
|
263
271
|
Fabric?: MemberFabricAttributes;
|
|
264
272
|
}
|
|
265
|
-
export declare
|
|
266
|
-
AVAILABLE
|
|
267
|
-
CREATE_FAILED
|
|
268
|
-
CREATING
|
|
269
|
-
DELETED
|
|
270
|
-
DELETING
|
|
271
|
-
INACCESSIBLE_ENCRYPTION_KEY
|
|
272
|
-
UPDATING
|
|
273
|
-
}
|
|
273
|
+
export declare const MemberStatus: {
|
|
274
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
275
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
276
|
+
readonly CREATING: "CREATING";
|
|
277
|
+
readonly DELETED: "DELETED";
|
|
278
|
+
readonly DELETING: "DELETING";
|
|
279
|
+
readonly INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY";
|
|
280
|
+
readonly UPDATING: "UPDATING";
|
|
281
|
+
};
|
|
282
|
+
export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
|
|
274
283
|
export interface Member {
|
|
275
284
|
NetworkId?: string;
|
|
276
285
|
Id?: string;
|
|
@@ -301,13 +310,14 @@ export interface NetworkFrameworkAttributes {
|
|
|
301
310
|
Fabric?: NetworkFabricAttributes;
|
|
302
311
|
Ethereum?: NetworkEthereumAttributes;
|
|
303
312
|
}
|
|
304
|
-
export declare
|
|
305
|
-
AVAILABLE
|
|
306
|
-
CREATE_FAILED
|
|
307
|
-
CREATING
|
|
308
|
-
DELETED
|
|
309
|
-
DELETING
|
|
310
|
-
}
|
|
313
|
+
export declare const NetworkStatus: {
|
|
314
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
315
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
316
|
+
readonly CREATING: "CREATING";
|
|
317
|
+
readonly DELETED: "DELETED";
|
|
318
|
+
readonly DELETING: "DELETING";
|
|
319
|
+
};
|
|
320
|
+
export type NetworkStatus = (typeof NetworkStatus)[keyof typeof NetworkStatus];
|
|
311
321
|
export interface Network {
|
|
312
322
|
Id?: string;
|
|
313
323
|
Name?: string;
|
|
@@ -342,17 +352,18 @@ export interface NodeFrameworkAttributes {
|
|
|
342
352
|
Fabric?: NodeFabricAttributes;
|
|
343
353
|
Ethereum?: NodeEthereumAttributes;
|
|
344
354
|
}
|
|
345
|
-
export declare
|
|
346
|
-
AVAILABLE
|
|
347
|
-
CREATE_FAILED
|
|
348
|
-
CREATING
|
|
349
|
-
DELETED
|
|
350
|
-
DELETING
|
|
351
|
-
FAILED
|
|
352
|
-
INACCESSIBLE_ENCRYPTION_KEY
|
|
353
|
-
UNHEALTHY
|
|
354
|
-
UPDATING
|
|
355
|
-
}
|
|
355
|
+
export declare const NodeStatus: {
|
|
356
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
357
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
358
|
+
readonly CREATING: "CREATING";
|
|
359
|
+
readonly DELETED: "DELETED";
|
|
360
|
+
readonly DELETING: "DELETING";
|
|
361
|
+
readonly FAILED: "FAILED";
|
|
362
|
+
readonly INACCESSIBLE_ENCRYPTION_KEY: "INACCESSIBLE_ENCRYPTION_KEY";
|
|
363
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
364
|
+
readonly UPDATING: "UPDATING";
|
|
365
|
+
};
|
|
366
|
+
export type NodeStatus = (typeof NodeStatus)[keyof typeof NodeStatus];
|
|
356
367
|
export interface Node {
|
|
357
368
|
NetworkId?: string;
|
|
358
369
|
MemberId?: string;
|
|
@@ -375,13 +386,15 @@ export interface GetProposalInput {
|
|
|
375
386
|
NetworkId: string | undefined;
|
|
376
387
|
ProposalId: string | undefined;
|
|
377
388
|
}
|
|
378
|
-
export declare
|
|
379
|
-
ACTION_FAILED
|
|
380
|
-
APPROVED
|
|
381
|
-
EXPIRED
|
|
382
|
-
IN_PROGRESS
|
|
383
|
-
REJECTED
|
|
384
|
-
}
|
|
389
|
+
export declare const ProposalStatus: {
|
|
390
|
+
readonly ACTION_FAILED: "ACTION_FAILED";
|
|
391
|
+
readonly APPROVED: "APPROVED";
|
|
392
|
+
readonly EXPIRED: "EXPIRED";
|
|
393
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
394
|
+
readonly REJECTED: "REJECTED";
|
|
395
|
+
};
|
|
396
|
+
export type ProposalStatus =
|
|
397
|
+
(typeof ProposalStatus)[keyof typeof ProposalStatus];
|
|
385
398
|
export interface Proposal {
|
|
386
399
|
ProposalId?: string;
|
|
387
400
|
NetworkId?: string;
|
|
@@ -419,13 +432,15 @@ export interface NetworkSummary {
|
|
|
419
432
|
CreationDate?: Date;
|
|
420
433
|
Arn?: string;
|
|
421
434
|
}
|
|
422
|
-
export declare
|
|
423
|
-
ACCEPTED
|
|
424
|
-
ACCEPTING
|
|
425
|
-
EXPIRED
|
|
426
|
-
PENDING
|
|
427
|
-
REJECTED
|
|
428
|
-
}
|
|
435
|
+
export declare const InvitationStatus: {
|
|
436
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
437
|
+
readonly ACCEPTING: "ACCEPTING";
|
|
438
|
+
readonly EXPIRED: "EXPIRED";
|
|
439
|
+
readonly PENDING: "PENDING";
|
|
440
|
+
readonly REJECTED: "REJECTED";
|
|
441
|
+
};
|
|
442
|
+
export type InvitationStatus =
|
|
443
|
+
(typeof InvitationStatus)[keyof typeof InvitationStatus];
|
|
429
444
|
export interface Invitation {
|
|
430
445
|
InvitationId?: string;
|
|
431
446
|
CreationDate?: Date;
|
|
@@ -526,10 +541,11 @@ export interface ListProposalVotesInput {
|
|
|
526
541
|
MaxResults?: number;
|
|
527
542
|
NextToken?: string;
|
|
528
543
|
}
|
|
529
|
-
export declare
|
|
530
|
-
NO
|
|
531
|
-
YES
|
|
532
|
-
}
|
|
544
|
+
export declare const VoteValue: {
|
|
545
|
+
readonly NO: "NO";
|
|
546
|
+
readonly YES: "YES";
|
|
547
|
+
};
|
|
548
|
+
export type VoteValue = (typeof VoteValue)[keyof typeof VoteValue];
|
|
533
549
|
export interface VoteSummary {
|
|
534
550
|
Vote?: VoteValue | string;
|
|
535
551
|
MemberName?: string;
|
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.306.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,43 +21,43 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.306.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.306.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.306.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.306.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.306.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.306.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.306.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.306.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.306.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.306.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.306.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.306.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.306.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.306.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.306.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.306.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.306.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.306.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.306.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.306.0",
|
|
44
|
+
"@aws-sdk/types": "3.306.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.306.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.306.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.306.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.306.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.306.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.306.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.306.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|