@aws-sdk/client-managedblockchain-query 3.952.0 → 3.954.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/index.js +198 -141
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/BatchGetTokenBalanceCommand.js +2 -2
- package/dist-es/commands/GetAssetContractCommand.js +2 -2
- package/dist-es/commands/GetTokenBalanceCommand.js +2 -2
- package/dist-es/commands/GetTransactionCommand.js +2 -2
- package/dist-es/commands/ListAssetContractsCommand.js +2 -2
- package/dist-es/commands/ListFilteredTransactionEventsCommand.js +2 -2
- package/dist-es/commands/ListTokenBalancesCommand.js +2 -2
- package/dist-es/commands/ListTransactionEventsCommand.js +2 -2
- package/dist-es/commands/ListTransactionsCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +115 -115
- package/dist-types/ManagedBlockchainQueryClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +58 -68
- package/dist-types/ts3.4/ManagedBlockchainQueryClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +57 -68
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.managedblockchainquery",
|
|
32
|
+
version: "2023-05-04",
|
|
33
|
+
serviceTarget: "TietonChainQueryService",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "ManagedBlockchain Query",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchGetTokenBalance } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetTokenBalance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetTokenBalanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchGetTokenBalanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TietonChainQueryService", "BatchGetTokenBalance", {})
|
|
13
13
|
.n("ManagedBlockchainQueryClient", "BatchGetTokenBalanceCommand")
|
|
14
|
-
.sc(BatchGetTokenBalance)
|
|
14
|
+
.sc(BatchGetTokenBalance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAssetContract } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAssetContract$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAssetContractCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAssetContractCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TietonChainQueryService", "GetAssetContract", {})
|
|
13
13
|
.n("ManagedBlockchainQueryClient", "GetAssetContractCommand")
|
|
14
|
-
.sc(GetAssetContract)
|
|
14
|
+
.sc(GetAssetContract$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTokenBalance } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTokenBalance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTokenBalanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTokenBalanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TietonChainQueryService", "GetTokenBalance", {})
|
|
13
13
|
.n("ManagedBlockchainQueryClient", "GetTokenBalanceCommand")
|
|
14
|
-
.sc(GetTokenBalance)
|
|
14
|
+
.sc(GetTokenBalance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTransaction } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTransaction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTransactionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTransactionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TietonChainQueryService", "GetTransaction", {})
|
|
13
13
|
.n("ManagedBlockchainQueryClient", "GetTransactionCommand")
|
|
14
|
-
.sc(GetTransaction)
|
|
14
|
+
.sc(GetTransaction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAssetContracts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAssetContracts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAssetContractsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAssetContractsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TietonChainQueryService", "ListAssetContracts", {})
|
|
13
13
|
.n("ManagedBlockchainQueryClient", "ListAssetContractsCommand")
|
|
14
|
-
.sc(ListAssetContracts)
|
|
14
|
+
.sc(ListAssetContracts$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListFilteredTransactionEvents } from "../schemas/schemas_0";
|
|
4
|
+
import { ListFilteredTransactionEvents$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListFilteredTransactionEventsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListFilteredTransactionEventsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TietonChainQueryService", "ListFilteredTransactionEvents", {})
|
|
13
13
|
.n("ManagedBlockchainQueryClient", "ListFilteredTransactionEventsCommand")
|
|
14
|
-
.sc(ListFilteredTransactionEvents)
|
|
14
|
+
.sc(ListFilteredTransactionEvents$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTokenBalances } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTokenBalances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTokenBalancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTokenBalancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TietonChainQueryService", "ListTokenBalances", {})
|
|
13
13
|
.n("ManagedBlockchainQueryClient", "ListTokenBalancesCommand")
|
|
14
|
-
.sc(ListTokenBalances)
|
|
14
|
+
.sc(ListTokenBalances$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTransactionEvents } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTransactionEvents$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTransactionEventsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTransactionEventsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TietonChainQueryService", "ListTransactionEvents", {})
|
|
13
13
|
.n("ManagedBlockchainQueryClient", "ListTransactionEventsCommand")
|
|
14
|
-
.sc(ListTransactionEvents)
|
|
14
|
+
.sc(ListTransactionEvents$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTransactions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTransactions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTransactionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTransactionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TietonChainQueryService", "ListTransactions", {})
|
|
13
13
|
.n("ManagedBlockchainQueryClient", "ListTransactionsCommand")
|
|
14
|
-
.sc(ListTransactions)
|
|
14
|
+
.sc(ListTransactions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.managedblockchainquery",
|
|
29
|
+
version: "2023-05-04",
|
|
30
|
+
serviceTarget: "TietonChainQueryService",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "ManagedBlockchain Query",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
@@ -149,21 +149,21 @@ const _vI = "voutIndex";
|
|
|
149
149
|
const _vS = "voutSpent";
|
|
150
150
|
const n0 = "com.amazonaws.managedblockchainquery";
|
|
151
151
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
152
|
-
import { AccessDeniedException
|
|
153
|
-
import { ManagedBlockchainQueryServiceException
|
|
154
|
-
export var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
155
|
-
TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
156
|
-
export var AddressIdentifierFilter = [3, n0, _AIF, 0, [_tETA], [64 | 0]];
|
|
157
|
-
export var AssetContract = [3, n0, _AC, 0, [_cI, _tS, _dA], [() => ContractIdentifier
|
|
158
|
-
export var BatchGetTokenBalanceErrorItem = [
|
|
152
|
+
import { AccessDeniedException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
153
|
+
import { ManagedBlockchainQueryServiceException } from "../models/ManagedBlockchainQueryServiceException";
|
|
154
|
+
export var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
155
|
+
TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
156
|
+
export var AddressIdentifierFilter$ = [3, n0, _AIF, 0, [_tETA], [64 | 0]];
|
|
157
|
+
export var AssetContract$ = [3, n0, _AC, 0, [_cI, _tS, _dA], [() => ContractIdentifier$, 0, 0]];
|
|
158
|
+
export var BatchGetTokenBalanceErrorItem$ = [
|
|
159
159
|
3,
|
|
160
160
|
n0,
|
|
161
161
|
_BGTBEI,
|
|
162
162
|
0,
|
|
163
163
|
[_tI, _oI, _aBI, _eC, _eM, _eT],
|
|
164
|
-
[() => TokenIdentifier
|
|
164
|
+
[() => TokenIdentifier$, () => OwnerIdentifier$, () => BlockchainInstant$, 0, 0, 0],
|
|
165
165
|
];
|
|
166
|
-
export var BatchGetTokenBalanceInput = [
|
|
166
|
+
export var BatchGetTokenBalanceInput$ = [
|
|
167
167
|
3,
|
|
168
168
|
n0,
|
|
169
169
|
_BGTBI,
|
|
@@ -171,15 +171,15 @@ export var BatchGetTokenBalanceInput = [
|
|
|
171
171
|
[_gTBI],
|
|
172
172
|
[() => GetTokenBalanceInputList],
|
|
173
173
|
];
|
|
174
|
-
export var BatchGetTokenBalanceInputItem = [
|
|
174
|
+
export var BatchGetTokenBalanceInputItem$ = [
|
|
175
175
|
3,
|
|
176
176
|
n0,
|
|
177
177
|
_BGTBII,
|
|
178
178
|
0,
|
|
179
179
|
[_tI, _oI, _aBI],
|
|
180
|
-
[() => TokenIdentifier
|
|
180
|
+
[() => TokenIdentifier$, () => OwnerIdentifier$, () => BlockchainInstant$],
|
|
181
181
|
];
|
|
182
|
-
export var BatchGetTokenBalanceOutput = [
|
|
182
|
+
export var BatchGetTokenBalanceOutput$ = [
|
|
183
183
|
3,
|
|
184
184
|
n0,
|
|
185
185
|
_BGTBO,
|
|
@@ -187,47 +187,47 @@ export var BatchGetTokenBalanceOutput = [
|
|
|
187
187
|
[_tB, _er],
|
|
188
188
|
[() => BatchGetTokenBalanceOutputList, () => BatchGetTokenBalanceErrors],
|
|
189
189
|
];
|
|
190
|
-
export var BatchGetTokenBalanceOutputItem = [
|
|
190
|
+
export var BatchGetTokenBalanceOutputItem$ = [
|
|
191
191
|
3,
|
|
192
192
|
n0,
|
|
193
193
|
_BGTBOI,
|
|
194
194
|
0,
|
|
195
195
|
[_oI, _tI, _b, _aBI, _lUT],
|
|
196
|
-
[() => OwnerIdentifier
|
|
197
|
-
];
|
|
198
|
-
export var BlockchainInstant = [3, n0, _BI, 0, [_t], [4]];
|
|
199
|
-
export var ConfirmationStatusFilter = [3, n0, _CSF, 0, [_i], [64 | 0]];
|
|
200
|
-
export var ContractFilter = [3, n0, _CF, 0, [_n, _tS, _dA], [0, 0, 0]];
|
|
201
|
-
export var ContractIdentifier = [3, n0, _CI, 0, [_n, _cA], [0, 0]];
|
|
202
|
-
export var ContractMetadata = [3, n0, _CM, 0, [_na, _s, _d], [0, 0, 1]];
|
|
203
|
-
export var GetAssetContractInput = [3, n0, _GACI, 0, [_cI], [() => ContractIdentifier]];
|
|
204
|
-
export var GetAssetContractOutput = [
|
|
196
|
+
[() => OwnerIdentifier$, () => TokenIdentifier$, 0, () => BlockchainInstant$, () => BlockchainInstant$],
|
|
197
|
+
];
|
|
198
|
+
export var BlockchainInstant$ = [3, n0, _BI, 0, [_t], [4]];
|
|
199
|
+
export var ConfirmationStatusFilter$ = [3, n0, _CSF, 0, [_i], [64 | 0]];
|
|
200
|
+
export var ContractFilter$ = [3, n0, _CF, 0, [_n, _tS, _dA], [0, 0, 0]];
|
|
201
|
+
export var ContractIdentifier$ = [3, n0, _CI, 0, [_n, _cA], [0, 0]];
|
|
202
|
+
export var ContractMetadata$ = [3, n0, _CM, 0, [_na, _s, _d], [0, 0, 1]];
|
|
203
|
+
export var GetAssetContractInput$ = [3, n0, _GACI, 0, [_cI], [() => ContractIdentifier$]];
|
|
204
|
+
export var GetAssetContractOutput$ = [
|
|
205
205
|
3,
|
|
206
206
|
n0,
|
|
207
207
|
_GACO,
|
|
208
208
|
0,
|
|
209
209
|
[_cI, _tS, _dA, _me],
|
|
210
|
-
[() => ContractIdentifier
|
|
210
|
+
[() => ContractIdentifier$, 0, 0, () => ContractMetadata$],
|
|
211
211
|
];
|
|
212
|
-
export var GetTokenBalanceInput = [
|
|
212
|
+
export var GetTokenBalanceInput$ = [
|
|
213
213
|
3,
|
|
214
214
|
n0,
|
|
215
215
|
_GTBI,
|
|
216
216
|
0,
|
|
217
217
|
[_tI, _oI, _aBI],
|
|
218
|
-
[() => TokenIdentifier
|
|
218
|
+
[() => TokenIdentifier$, () => OwnerIdentifier$, () => BlockchainInstant$],
|
|
219
219
|
];
|
|
220
|
-
export var GetTokenBalanceOutput = [
|
|
220
|
+
export var GetTokenBalanceOutput$ = [
|
|
221
221
|
3,
|
|
222
222
|
n0,
|
|
223
223
|
_GTBO,
|
|
224
224
|
0,
|
|
225
225
|
[_oI, _tI, _b, _aBI, _lUT],
|
|
226
|
-
[() => OwnerIdentifier
|
|
226
|
+
[() => OwnerIdentifier$, () => TokenIdentifier$, 0, () => BlockchainInstant$, () => BlockchainInstant$],
|
|
227
227
|
];
|
|
228
|
-
export var GetTransactionInput = [3, n0, _GTI, 0, [_tH, _tIr, _n], [0, 0, 0]];
|
|
229
|
-
export var GetTransactionOutput = [3, n0, _GTO, 0, [_tr], [() => Transaction]];
|
|
230
|
-
export var InternalServerException = [
|
|
228
|
+
export var GetTransactionInput$ = [3, n0, _GTI, 0, [_tH, _tIr, _n], [0, 0, 0]];
|
|
229
|
+
export var GetTransactionOutput$ = [3, n0, _GTO, 0, [_tr], [() => Transaction$]];
|
|
230
|
+
export var InternalServerException$ = [
|
|
231
231
|
-3,
|
|
232
232
|
n0,
|
|
233
233
|
_ISE,
|
|
@@ -235,16 +235,16 @@ export var InternalServerException = [
|
|
|
235
235
|
[_m, _rAS],
|
|
236
236
|
[0, [1, { [_hH]: _RA }]],
|
|
237
237
|
];
|
|
238
|
-
TypeRegistry.for(n0).registerError(InternalServerException
|
|
239
|
-
export var ListAssetContractsInput = [
|
|
238
|
+
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
239
|
+
export var ListAssetContractsInput$ = [
|
|
240
240
|
3,
|
|
241
241
|
n0,
|
|
242
242
|
_LACI,
|
|
243
243
|
0,
|
|
244
244
|
[_cF, _nT, _mR],
|
|
245
|
-
[() => ContractFilter
|
|
245
|
+
[() => ContractFilter$, 0, 1],
|
|
246
246
|
];
|
|
247
|
-
export var ListAssetContractsOutput = [
|
|
247
|
+
export var ListAssetContractsOutput$ = [
|
|
248
248
|
3,
|
|
249
249
|
n0,
|
|
250
250
|
_LACO,
|
|
@@ -252,7 +252,7 @@ export var ListAssetContractsOutput = [
|
|
|
252
252
|
[_co, _nT],
|
|
253
253
|
[() => AssetContractList, 0],
|
|
254
254
|
];
|
|
255
|
-
export var ListFilteredTransactionEventsInput = [
|
|
255
|
+
export var ListFilteredTransactionEventsInput$ = [
|
|
256
256
|
3,
|
|
257
257
|
n0,
|
|
258
258
|
_LFTEI,
|
|
@@ -260,16 +260,16 @@ export var ListFilteredTransactionEventsInput = [
|
|
|
260
260
|
[_n, _aIF, _tF, _vF, _cSF, _so, _nT, _mR],
|
|
261
261
|
[
|
|
262
262
|
0,
|
|
263
|
-
() => AddressIdentifierFilter
|
|
264
|
-
() => TimeFilter
|
|
265
|
-
() => VoutFilter
|
|
266
|
-
() => ConfirmationStatusFilter
|
|
267
|
-
() => ListFilteredTransactionEventsSort
|
|
263
|
+
() => AddressIdentifierFilter$,
|
|
264
|
+
() => TimeFilter$,
|
|
265
|
+
() => VoutFilter$,
|
|
266
|
+
() => ConfirmationStatusFilter$,
|
|
267
|
+
() => ListFilteredTransactionEventsSort$,
|
|
268
268
|
0,
|
|
269
269
|
1,
|
|
270
270
|
],
|
|
271
271
|
];
|
|
272
|
-
export var ListFilteredTransactionEventsOutput = [
|
|
272
|
+
export var ListFilteredTransactionEventsOutput$ = [
|
|
273
273
|
3,
|
|
274
274
|
n0,
|
|
275
275
|
_LFTEO,
|
|
@@ -277,17 +277,17 @@ export var ListFilteredTransactionEventsOutput = [
|
|
|
277
277
|
[_ev, _nT],
|
|
278
278
|
[() => TransactionEventList, 0],
|
|
279
279
|
];
|
|
280
|
-
export var ListFilteredTransactionEventsSort = [3, n0, _LFTES, 0, [_sB, _sO], [0, 0]];
|
|
281
|
-
export var ListTokenBalancesInput = [
|
|
280
|
+
export var ListFilteredTransactionEventsSort$ = [3, n0, _LFTES, 0, [_sB, _sO], [0, 0]];
|
|
281
|
+
export var ListTokenBalancesInput$ = [
|
|
282
282
|
3,
|
|
283
283
|
n0,
|
|
284
284
|
_LTBI,
|
|
285
285
|
0,
|
|
286
286
|
[_oF, _tFo, _nT, _mR],
|
|
287
|
-
[() => OwnerFilter
|
|
287
|
+
[() => OwnerFilter$, () => TokenFilter$, 0, 1],
|
|
288
288
|
];
|
|
289
|
-
export var ListTokenBalancesOutput = [3, n0, _LTBO, 0, [_tB, _nT], [() => TokenBalanceList, 0]];
|
|
290
|
-
export var ListTransactionEventsInput = [
|
|
289
|
+
export var ListTokenBalancesOutput$ = [3, n0, _LTBO, 0, [_tB, _nT], [() => TokenBalanceList, 0]];
|
|
290
|
+
export var ListTransactionEventsInput$ = [
|
|
291
291
|
3,
|
|
292
292
|
n0,
|
|
293
293
|
_LTEI,
|
|
@@ -295,7 +295,7 @@ export var ListTransactionEventsInput = [
|
|
|
295
295
|
[_tH, _tIr, _n, _nT, _mR],
|
|
296
296
|
[0, 0, 0, 0, 1],
|
|
297
297
|
];
|
|
298
|
-
export var ListTransactionEventsOutput = [
|
|
298
|
+
export var ListTransactionEventsOutput$ = [
|
|
299
299
|
3,
|
|
300
300
|
n0,
|
|
301
301
|
_LTEO,
|
|
@@ -303,7 +303,7 @@ export var ListTransactionEventsOutput = [
|
|
|
303
303
|
[_ev, _nT],
|
|
304
304
|
[() => TransactionEventList, 0],
|
|
305
305
|
];
|
|
306
|
-
export var ListTransactionsInput = [
|
|
306
|
+
export var ListTransactionsInput$ = [
|
|
307
307
|
3,
|
|
308
308
|
n0,
|
|
309
309
|
_LTI,
|
|
@@ -312,15 +312,15 @@ export var ListTransactionsInput = [
|
|
|
312
312
|
[
|
|
313
313
|
0,
|
|
314
314
|
0,
|
|
315
|
-
() => BlockchainInstant
|
|
316
|
-
() => BlockchainInstant
|
|
317
|
-
() => ListTransactionsSort
|
|
315
|
+
() => BlockchainInstant$,
|
|
316
|
+
() => BlockchainInstant$,
|
|
317
|
+
() => ListTransactionsSort$,
|
|
318
318
|
0,
|
|
319
319
|
1,
|
|
320
|
-
() => ConfirmationStatusFilter
|
|
320
|
+
() => ConfirmationStatusFilter$,
|
|
321
321
|
],
|
|
322
322
|
];
|
|
323
|
-
export var ListTransactionsOutput = [
|
|
323
|
+
export var ListTransactionsOutput$ = [
|
|
324
324
|
3,
|
|
325
325
|
n0,
|
|
326
326
|
_LTO,
|
|
@@ -328,10 +328,10 @@ export var ListTransactionsOutput = [
|
|
|
328
328
|
[_tra, _nT],
|
|
329
329
|
[() => TransactionOutputList, 0],
|
|
330
330
|
];
|
|
331
|
-
export var ListTransactionsSort = [3, n0, _LTS, 0, [_sB, _sO], [0, 0]];
|
|
332
|
-
export var OwnerFilter = [3, n0, _OF, 0, [_a], [0]];
|
|
333
|
-
export var OwnerIdentifier = [3, n0, _OI, 0, [_a], [0]];
|
|
334
|
-
export var ResourceNotFoundException = [
|
|
331
|
+
export var ListTransactionsSort$ = [3, n0, _LTS, 0, [_sB, _sO], [0, 0]];
|
|
332
|
+
export var OwnerFilter$ = [3, n0, _OF, 0, [_a], [0]];
|
|
333
|
+
export var OwnerIdentifier$ = [3, n0, _OI, 0, [_a], [0]];
|
|
334
|
+
export var ResourceNotFoundException$ = [
|
|
335
335
|
-3,
|
|
336
336
|
n0,
|
|
337
337
|
_RNFE,
|
|
@@ -339,8 +339,8 @@ export var ResourceNotFoundException = [
|
|
|
339
339
|
[_m, _rI, _rT],
|
|
340
340
|
[0, 0, 0],
|
|
341
341
|
];
|
|
342
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
343
|
-
export var ServiceQuotaExceededException = [
|
|
342
|
+
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
343
|
+
export var ServiceQuotaExceededException$ = [
|
|
344
344
|
-3,
|
|
345
345
|
n0,
|
|
346
346
|
_SQEE,
|
|
@@ -348,8 +348,8 @@ export var ServiceQuotaExceededException = [
|
|
|
348
348
|
[_m, _rI, _rT, _sC, _qC],
|
|
349
349
|
[0, 0, 0, 0, 0],
|
|
350
350
|
];
|
|
351
|
-
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
352
|
-
export var ThrottlingException = [
|
|
351
|
+
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
352
|
+
export var ThrottlingException$ = [
|
|
353
353
|
-3,
|
|
354
354
|
n0,
|
|
355
355
|
_TE,
|
|
@@ -357,26 +357,26 @@ export var ThrottlingException = [
|
|
|
357
357
|
[_m, _sC, _qC, _rAS],
|
|
358
358
|
[0, 0, 0, [1, { [_hH]: _RA }]],
|
|
359
359
|
];
|
|
360
|
-
TypeRegistry.for(n0).registerError(ThrottlingException
|
|
361
|
-
export var TimeFilter = [
|
|
360
|
+
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
361
|
+
export var TimeFilter$ = [
|
|
362
362
|
3,
|
|
363
363
|
n0,
|
|
364
364
|
_TF,
|
|
365
365
|
0,
|
|
366
366
|
[_f, _to],
|
|
367
|
-
[() => BlockchainInstant
|
|
367
|
+
[() => BlockchainInstant$, () => BlockchainInstant$],
|
|
368
368
|
];
|
|
369
|
-
export var TokenBalance = [
|
|
369
|
+
export var TokenBalance$ = [
|
|
370
370
|
3,
|
|
371
371
|
n0,
|
|
372
372
|
_TB,
|
|
373
373
|
0,
|
|
374
374
|
[_oI, _tI, _b, _aBI, _lUT],
|
|
375
|
-
[() => OwnerIdentifier
|
|
375
|
+
[() => OwnerIdentifier$, () => TokenIdentifier$, 0, () => BlockchainInstant$, () => BlockchainInstant$],
|
|
376
376
|
];
|
|
377
|
-
export var TokenFilter = [3, n0, _TFo, 0, [_n, _cA, _tIo], [0, 0, 0]];
|
|
378
|
-
export var TokenIdentifier = [3, n0, _TI, 0, [_n, _cA, _tIo], [0, 0, 0]];
|
|
379
|
-
export var Transaction = [
|
|
377
|
+
export var TokenFilter$ = [3, n0, _TFo, 0, [_n, _cA, _tIo], [0, 0, 0]];
|
|
378
|
+
export var TokenIdentifier$ = [3, n0, _TI, 0, [_n, _cA, _tIo], [0, 0, 0]];
|
|
379
|
+
export var Transaction$ = [
|
|
380
380
|
3,
|
|
381
381
|
n0,
|
|
382
382
|
_T,
|
|
@@ -384,16 +384,16 @@ export var Transaction = [
|
|
|
384
384
|
[_n, _bH, _tH, _bN, _tT, _tIra, _nOT, _to, _f, _cA, _gU, _cGU, _eGP, _sV, _sR, _sS, _tFr, _tIr, _cS, _eS],
|
|
385
385
|
[0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0],
|
|
386
386
|
];
|
|
387
|
-
export var TransactionEvent = [
|
|
387
|
+
export var TransactionEvent$ = [
|
|
388
388
|
3,
|
|
389
389
|
n0,
|
|
390
390
|
_TEr,
|
|
391
391
|
0,
|
|
392
392
|
[_n, _tH, _eTv, _f, _to, _v, _cA, _tIo, _tIr, _vI, _vS, _sVTI, _sVTH, _sVI, _bI, _cS],
|
|
393
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, () => BlockchainInstant
|
|
393
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, () => BlockchainInstant$, 0],
|
|
394
394
|
];
|
|
395
|
-
export var TransactionOutputItem = [3, n0, _TOI, 0, [_tH, _tIr, _n, _tT, _cS], [0, 0, 0, 4, 0]];
|
|
396
|
-
export var ValidationException = [
|
|
395
|
+
export var TransactionOutputItem$ = [3, n0, _TOI, 0, [_tH, _tIr, _n, _tT, _cS], [0, 0, 0, 4, 0]];
|
|
396
|
+
export var ValidationException$ = [
|
|
397
397
|
-3,
|
|
398
398
|
n0,
|
|
399
399
|
_VE,
|
|
@@ -401,10 +401,10 @@ export var ValidationException = [
|
|
|
401
401
|
[_m, _r, _fL],
|
|
402
402
|
[0, 0, () => ValidationExceptionFieldList],
|
|
403
403
|
];
|
|
404
|
-
TypeRegistry.for(n0).registerError(ValidationException
|
|
405
|
-
export var ValidationExceptionField = [3, n0, _VEF, 0, [_na, _m], [0, 0]];
|
|
406
|
-
export var VoutFilter = [3, n0, _VF, 0, [_vS], [2]];
|
|
407
|
-
export var ManagedBlockchainQueryServiceException = [
|
|
404
|
+
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
405
|
+
export var ValidationExceptionField$ = [3, n0, _VEF, 0, [_na, _m], [0, 0]];
|
|
406
|
+
export var VoutFilter$ = [3, n0, _VF, 0, [_vS], [2]];
|
|
407
|
+
export var ManagedBlockchainQueryServiceException$ = [
|
|
408
408
|
-3,
|
|
409
409
|
_sm,
|
|
410
410
|
"ManagedBlockchainQueryServiceException",
|
|
@@ -412,86 +412,86 @@ export var ManagedBlockchainQueryServiceException = [
|
|
|
412
412
|
[],
|
|
413
413
|
[],
|
|
414
414
|
];
|
|
415
|
-
TypeRegistry.for(_sm).registerError(ManagedBlockchainQueryServiceException
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
export var BatchGetTokenBalance = [
|
|
415
|
+
TypeRegistry.for(_sm).registerError(ManagedBlockchainQueryServiceException$, ManagedBlockchainQueryServiceException);
|
|
416
|
+
var AssetContractList = [1, n0, _ACL, 0, () => AssetContract$];
|
|
417
|
+
var BatchGetTokenBalanceErrors = [1, n0, _BGTBE, 0, () => BatchGetTokenBalanceErrorItem$];
|
|
418
|
+
var BatchGetTokenBalanceOutputList = [1, n0, _BGTBOL, 0, () => BatchGetTokenBalanceOutputItem$];
|
|
419
|
+
var ChainAddresses = 64 | 0;
|
|
420
|
+
var ConfirmationStatusIncludeList = 64 | 0;
|
|
421
|
+
var GetTokenBalanceInputList = [1, n0, _GTBIL, 0, () => BatchGetTokenBalanceInputItem$];
|
|
422
|
+
var TokenBalanceList = [1, n0, _TBL, 0, () => TokenBalance$];
|
|
423
|
+
var TransactionEventList = [1, n0, _TEL, 0, () => TransactionEvent$];
|
|
424
|
+
var TransactionOutputList = [1, n0, _TOL, 0, () => TransactionOutputItem$];
|
|
425
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
|
|
426
|
+
export var BatchGetTokenBalance$ = [
|
|
427
427
|
9,
|
|
428
428
|
n0,
|
|
429
429
|
_BGTB,
|
|
430
430
|
{ [_h]: ["POST", "/batch-get-token-balance", 200] },
|
|
431
|
-
() => BatchGetTokenBalanceInput
|
|
432
|
-
() => BatchGetTokenBalanceOutput
|
|
431
|
+
() => BatchGetTokenBalanceInput$,
|
|
432
|
+
() => BatchGetTokenBalanceOutput$,
|
|
433
433
|
];
|
|
434
|
-
export var GetAssetContract = [
|
|
434
|
+
export var GetAssetContract$ = [
|
|
435
435
|
9,
|
|
436
436
|
n0,
|
|
437
437
|
_GAC,
|
|
438
438
|
{ [_h]: ["POST", "/get-asset-contract", 200] },
|
|
439
|
-
() => GetAssetContractInput
|
|
440
|
-
() => GetAssetContractOutput
|
|
439
|
+
() => GetAssetContractInput$,
|
|
440
|
+
() => GetAssetContractOutput$,
|
|
441
441
|
];
|
|
442
|
-
export var GetTokenBalance = [
|
|
442
|
+
export var GetTokenBalance$ = [
|
|
443
443
|
9,
|
|
444
444
|
n0,
|
|
445
445
|
_GTB,
|
|
446
446
|
{ [_h]: ["POST", "/get-token-balance", 200] },
|
|
447
|
-
() => GetTokenBalanceInput
|
|
448
|
-
() => GetTokenBalanceOutput
|
|
447
|
+
() => GetTokenBalanceInput$,
|
|
448
|
+
() => GetTokenBalanceOutput$,
|
|
449
449
|
];
|
|
450
|
-
export var GetTransaction = [
|
|
450
|
+
export var GetTransaction$ = [
|
|
451
451
|
9,
|
|
452
452
|
n0,
|
|
453
453
|
_GT,
|
|
454
454
|
{ [_h]: ["POST", "/get-transaction", 200] },
|
|
455
|
-
() => GetTransactionInput
|
|
456
|
-
() => GetTransactionOutput
|
|
455
|
+
() => GetTransactionInput$,
|
|
456
|
+
() => GetTransactionOutput$,
|
|
457
457
|
];
|
|
458
|
-
export var ListAssetContracts = [
|
|
458
|
+
export var ListAssetContracts$ = [
|
|
459
459
|
9,
|
|
460
460
|
n0,
|
|
461
461
|
_LAC,
|
|
462
462
|
{ [_h]: ["POST", "/list-asset-contracts", 200] },
|
|
463
|
-
() => ListAssetContractsInput
|
|
464
|
-
() => ListAssetContractsOutput
|
|
463
|
+
() => ListAssetContractsInput$,
|
|
464
|
+
() => ListAssetContractsOutput$,
|
|
465
465
|
];
|
|
466
|
-
export var ListFilteredTransactionEvents = [
|
|
466
|
+
export var ListFilteredTransactionEvents$ = [
|
|
467
467
|
9,
|
|
468
468
|
n0,
|
|
469
469
|
_LFTE,
|
|
470
470
|
{ [_h]: ["POST", "/list-filtered-transaction-events", 200] },
|
|
471
|
-
() => ListFilteredTransactionEventsInput
|
|
472
|
-
() => ListFilteredTransactionEventsOutput
|
|
471
|
+
() => ListFilteredTransactionEventsInput$,
|
|
472
|
+
() => ListFilteredTransactionEventsOutput$,
|
|
473
473
|
];
|
|
474
|
-
export var ListTokenBalances = [
|
|
474
|
+
export var ListTokenBalances$ = [
|
|
475
475
|
9,
|
|
476
476
|
n0,
|
|
477
477
|
_LTB,
|
|
478
478
|
{ [_h]: ["POST", "/list-token-balances", 200] },
|
|
479
|
-
() => ListTokenBalancesInput
|
|
480
|
-
() => ListTokenBalancesOutput
|
|
479
|
+
() => ListTokenBalancesInput$,
|
|
480
|
+
() => ListTokenBalancesOutput$,
|
|
481
481
|
];
|
|
482
|
-
export var ListTransactionEvents = [
|
|
482
|
+
export var ListTransactionEvents$ = [
|
|
483
483
|
9,
|
|
484
484
|
n0,
|
|
485
485
|
_LTE,
|
|
486
486
|
{ [_h]: ["POST", "/list-transaction-events", 200] },
|
|
487
|
-
() => ListTransactionEventsInput
|
|
488
|
-
() => ListTransactionEventsOutput
|
|
487
|
+
() => ListTransactionEventsInput$,
|
|
488
|
+
() => ListTransactionEventsOutput$,
|
|
489
489
|
];
|
|
490
|
-
export var ListTransactions = [
|
|
490
|
+
export var ListTransactions$ = [
|
|
491
491
|
9,
|
|
492
492
|
n0,
|
|
493
493
|
_LT,
|
|
494
494
|
{ [_h]: ["POST", "/list-transactions", 200] },
|
|
495
|
-
() => ListTransactionsInput
|
|
496
|
-
() => ListTransactionsOutput
|
|
495
|
+
() => ListTransactionsInput$,
|
|
496
|
+
() => ListTransactionsOutput$,
|
|
497
497
|
];
|