@aws-sdk/client-managedblockchain-query 3.535.0 → 3.538.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/README.md +8 -0
- package/dist-cjs/index.js +121 -15
- package/dist-es/ManagedBlockchainQuery.js +2 -0
- package/dist-es/commands/ListFilteredTransactionEventsCommand.js +24 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +7 -4
- package/dist-es/pagination/ListFilteredTransactionEventsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +74 -2
- package/dist-types/ManagedBlockchainQuery.d.ts +7 -0
- package/dist-types/ManagedBlockchainQueryClient.d.ts +3 -2
- package/dist-types/commands/GetTransactionCommand.d.ts +2 -1
- package/dist-types/commands/ListFilteredTransactionEventsCommand.d.ts +129 -0
- package/dist-types/commands/ListTransactionEventsCommand.d.ts +11 -3
- package/dist-types/commands/ListTransactionsCommand.d.ts +2 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +341 -130
- package/dist-types/pagination/ListFilteredTransactionEventsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/ManagedBlockchainQuery.d.ts +17 -0
- package/dist-types/ts3.4/ManagedBlockchainQueryClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListFilteredTransactionEventsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +73 -31
- package/dist-types/ts3.4/pagination/ListFilteredTransactionEventsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListFilteredTransactionEventsCommandInput, ListFilteredTransactionEventsCommandOutput } from "../commands/ListFilteredTransactionEventsCommand";
|
|
3
|
+
import { ManagedBlockchainQueryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListFilteredTransactionEvents: (config: ManagedBlockchainQueryPaginationConfiguration, input: ListFilteredTransactionEventsCommandInput, ...rest: any[]) => Paginator<ListFilteredTransactionEventsCommandOutput>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListAssetContractsPaginator";
|
|
3
|
+
export * from "./ListFilteredTransactionEventsPaginator";
|
|
3
4
|
export * from "./ListTokenBalancesPaginator";
|
|
4
5
|
export * from "./ListTransactionEventsPaginator";
|
|
5
6
|
export * from "./ListTransactionsPaginator";
|
|
@@ -5,6 +5,7 @@ import { GetAssetContractCommandInput, GetAssetContractCommandOutput } from "../
|
|
|
5
5
|
import { GetTokenBalanceCommandInput, GetTokenBalanceCommandOutput } from "../commands/GetTokenBalanceCommand";
|
|
6
6
|
import { GetTransactionCommandInput, GetTransactionCommandOutput } from "../commands/GetTransactionCommand";
|
|
7
7
|
import { ListAssetContractsCommandInput, ListAssetContractsCommandOutput } from "../commands/ListAssetContractsCommand";
|
|
8
|
+
import { ListFilteredTransactionEventsCommandInput, ListFilteredTransactionEventsCommandOutput } from "../commands/ListFilteredTransactionEventsCommand";
|
|
8
9
|
import { ListTokenBalancesCommandInput, ListTokenBalancesCommandOutput } from "../commands/ListTokenBalancesCommand";
|
|
9
10
|
import { ListTransactionEventsCommandInput, ListTransactionEventsCommandOutput } from "../commands/ListTransactionEventsCommand";
|
|
10
11
|
import { ListTransactionsCommandInput, ListTransactionsCommandOutput } from "../commands/ListTransactionsCommand";
|
|
@@ -28,6 +29,10 @@ export declare const se_GetTransactionCommand: (input: GetTransactionCommandInpu
|
|
|
28
29
|
* serializeAws_restJson1ListAssetContractsCommand
|
|
29
30
|
*/
|
|
30
31
|
export declare const se_ListAssetContractsCommand: (input: ListAssetContractsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
+
/**
|
|
33
|
+
* serializeAws_restJson1ListFilteredTransactionEventsCommand
|
|
34
|
+
*/
|
|
35
|
+
export declare const se_ListFilteredTransactionEventsCommand: (input: ListFilteredTransactionEventsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
36
|
/**
|
|
32
37
|
* serializeAws_restJson1ListTokenBalancesCommand
|
|
33
38
|
*/
|
|
@@ -60,6 +65,10 @@ export declare const de_GetTransactionCommand: (output: __HttpResponse, context:
|
|
|
60
65
|
* deserializeAws_restJson1ListAssetContractsCommand
|
|
61
66
|
*/
|
|
62
67
|
export declare const de_ListAssetContractsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssetContractsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* deserializeAws_restJson1ListFilteredTransactionEventsCommand
|
|
70
|
+
*/
|
|
71
|
+
export declare const de_ListFilteredTransactionEventsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFilteredTransactionEventsCommandOutput>;
|
|
63
72
|
/**
|
|
64
73
|
* deserializeAws_restJson1ListTokenBalancesCommand
|
|
65
74
|
*/
|
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
ListAssetContractsCommandInput,
|
|
20
20
|
ListAssetContractsCommandOutput,
|
|
21
21
|
} from "./commands/ListAssetContractsCommand";
|
|
22
|
+
import {
|
|
23
|
+
ListFilteredTransactionEventsCommandInput,
|
|
24
|
+
ListFilteredTransactionEventsCommandOutput,
|
|
25
|
+
} from "./commands/ListFilteredTransactionEventsCommand";
|
|
22
26
|
import {
|
|
23
27
|
ListTokenBalancesCommandInput,
|
|
24
28
|
ListTokenBalancesCommandOutput,
|
|
@@ -99,6 +103,19 @@ export interface ManagedBlockchainQuery {
|
|
|
99
103
|
options: __HttpHandlerOptions,
|
|
100
104
|
cb: (err: any, data?: ListAssetContractsCommandOutput) => void
|
|
101
105
|
): void;
|
|
106
|
+
listFilteredTransactionEvents(
|
|
107
|
+
args: ListFilteredTransactionEventsCommandInput,
|
|
108
|
+
options?: __HttpHandlerOptions
|
|
109
|
+
): Promise<ListFilteredTransactionEventsCommandOutput>;
|
|
110
|
+
listFilteredTransactionEvents(
|
|
111
|
+
args: ListFilteredTransactionEventsCommandInput,
|
|
112
|
+
cb: (err: any, data?: ListFilteredTransactionEventsCommandOutput) => void
|
|
113
|
+
): void;
|
|
114
|
+
listFilteredTransactionEvents(
|
|
115
|
+
args: ListFilteredTransactionEventsCommandInput,
|
|
116
|
+
options: __HttpHandlerOptions,
|
|
117
|
+
cb: (err: any, data?: ListFilteredTransactionEventsCommandOutput) => void
|
|
118
|
+
): void;
|
|
102
119
|
listTokenBalances(
|
|
103
120
|
args: ListTokenBalancesCommandInput,
|
|
104
121
|
options?: __HttpHandlerOptions
|
|
@@ -65,6 +65,10 @@ import {
|
|
|
65
65
|
ListAssetContractsCommandInput,
|
|
66
66
|
ListAssetContractsCommandOutput,
|
|
67
67
|
} from "./commands/ListAssetContractsCommand";
|
|
68
|
+
import {
|
|
69
|
+
ListFilteredTransactionEventsCommandInput,
|
|
70
|
+
ListFilteredTransactionEventsCommandOutput,
|
|
71
|
+
} from "./commands/ListFilteredTransactionEventsCommand";
|
|
68
72
|
import {
|
|
69
73
|
ListTokenBalancesCommandInput,
|
|
70
74
|
ListTokenBalancesCommandOutput,
|
|
@@ -90,6 +94,7 @@ export type ServiceInputTypes =
|
|
|
90
94
|
| GetTokenBalanceCommandInput
|
|
91
95
|
| GetTransactionCommandInput
|
|
92
96
|
| ListAssetContractsCommandInput
|
|
97
|
+
| ListFilteredTransactionEventsCommandInput
|
|
93
98
|
| ListTokenBalancesCommandInput
|
|
94
99
|
| ListTransactionEventsCommandInput
|
|
95
100
|
| ListTransactionsCommandInput;
|
|
@@ -99,6 +104,7 @@ export type ServiceOutputTypes =
|
|
|
99
104
|
| GetTokenBalanceCommandOutput
|
|
100
105
|
| GetTransactionCommandOutput
|
|
101
106
|
| ListAssetContractsCommandOutput
|
|
107
|
+
| ListFilteredTransactionEventsCommandOutput
|
|
102
108
|
| ListTokenBalancesCommandOutput
|
|
103
109
|
| ListTransactionEventsCommandOutput
|
|
104
110
|
| ListTransactionsCommandOutput;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ManagedBlockchainQueryClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ManagedBlockchainQueryClient";
|
|
8
|
+
import {
|
|
9
|
+
ListFilteredTransactionEventsInput,
|
|
10
|
+
ListFilteredTransactionEventsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface ListFilteredTransactionEventsCommandInput
|
|
14
|
+
extends ListFilteredTransactionEventsInput {}
|
|
15
|
+
export interface ListFilteredTransactionEventsCommandOutput
|
|
16
|
+
extends ListFilteredTransactionEventsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListFilteredTransactionEventsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListFilteredTransactionEventsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListFilteredTransactionEventsCommandInput,
|
|
23
|
+
ListFilteredTransactionEventsCommandOutput,
|
|
24
|
+
ManagedBlockchainQueryClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListFilteredTransactionEventsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListFilteredTransactionEventsCommandInput,
|
|
32
|
+
ListFilteredTransactionEventsCommandOutput,
|
|
33
|
+
ManagedBlockchainQueryClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListFilteredTransactionEventsCommand extends ListFilteredTransactionEventsCommand_base {}
|
|
@@ -3,6 +3,7 @@ export * from "./GetAssetContractCommand";
|
|
|
3
3
|
export * from "./GetTokenBalanceCommand";
|
|
4
4
|
export * from "./GetTransactionCommand";
|
|
5
5
|
export * from "./ListAssetContractsCommand";
|
|
6
|
+
export * from "./ListFilteredTransactionEventsCommand";
|
|
6
7
|
export * from "./ListTokenBalancesCommand";
|
|
7
8
|
export * from "./ListTransactionEventsCommand";
|
|
8
9
|
export * from "./ListTransactionsCommand";
|
|
@@ -7,6 +7,9 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
7
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
8
|
);
|
|
9
9
|
}
|
|
10
|
+
export interface AddressIdentifierFilter {
|
|
11
|
+
transactionEventToAddress: string[] | undefined;
|
|
12
|
+
}
|
|
10
13
|
export declare const QueryNetwork: {
|
|
11
14
|
readonly BITCOIN_MAINNET: "BITCOIN_MAINNET";
|
|
12
15
|
readonly BITCOIN_TESTNET: "BITCOIN_TESTNET";
|
|
@@ -187,7 +190,8 @@ export interface GetTokenBalanceOutput {
|
|
|
187
190
|
lastUpdatedTime?: BlockchainInstant;
|
|
188
191
|
}
|
|
189
192
|
export interface GetTransactionInput {
|
|
190
|
-
transactionHash
|
|
193
|
+
transactionHash?: string;
|
|
194
|
+
transactionId?: string;
|
|
191
195
|
network: QueryNetwork | undefined;
|
|
192
196
|
}
|
|
193
197
|
export interface Transaction {
|
|
@@ -224,34 +228,34 @@ export interface ListAssetContractsOutput {
|
|
|
224
228
|
contracts: AssetContract[] | undefined;
|
|
225
229
|
nextToken?: string;
|
|
226
230
|
}
|
|
227
|
-
export
|
|
228
|
-
|
|
229
|
-
}
|
|
230
|
-
export
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
231
|
+
export declare const ListFilteredTransactionEventsSortBy: {
|
|
232
|
+
readonly blockchainInstant: "blockchainInstant";
|
|
233
|
+
};
|
|
234
|
+
export type ListFilteredTransactionEventsSortBy =
|
|
235
|
+
(typeof ListFilteredTransactionEventsSortBy)[keyof typeof ListFilteredTransactionEventsSortBy];
|
|
236
|
+
export declare const SortOrder: {
|
|
237
|
+
readonly ASCENDING: "ASCENDING";
|
|
238
|
+
readonly DESCENDING: "DESCENDING";
|
|
239
|
+
};
|
|
240
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
241
|
+
export interface ListFilteredTransactionEventsSort {
|
|
242
|
+
sortBy?: ListFilteredTransactionEventsSortBy;
|
|
243
|
+
sortOrder?: SortOrder;
|
|
240
244
|
}
|
|
241
|
-
export interface
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
balance: string | undefined;
|
|
245
|
-
atBlockchainInstant: BlockchainInstant | undefined;
|
|
246
|
-
lastUpdatedTime?: BlockchainInstant;
|
|
245
|
+
export interface TimeFilter {
|
|
246
|
+
from?: BlockchainInstant;
|
|
247
|
+
to?: BlockchainInstant;
|
|
247
248
|
}
|
|
248
|
-
export interface
|
|
249
|
-
|
|
250
|
-
nextToken?: string;
|
|
249
|
+
export interface VoutFilter {
|
|
250
|
+
voutSpent: boolean | undefined;
|
|
251
251
|
}
|
|
252
|
-
export interface
|
|
253
|
-
|
|
254
|
-
|
|
252
|
+
export interface ListFilteredTransactionEventsInput {
|
|
253
|
+
network: string | undefined;
|
|
254
|
+
addressIdentifierFilter: AddressIdentifierFilter | undefined;
|
|
255
|
+
timeFilter?: TimeFilter;
|
|
256
|
+
voutFilter?: VoutFilter;
|
|
257
|
+
confirmationStatusFilter?: ConfirmationStatusFilter;
|
|
258
|
+
sort?: ListFilteredTransactionEventsSort;
|
|
255
259
|
nextToken?: string;
|
|
256
260
|
maxResults?: number;
|
|
257
261
|
}
|
|
@@ -281,6 +285,48 @@ export interface TransactionEvent {
|
|
|
281
285
|
tokenId?: string;
|
|
282
286
|
transactionId?: string;
|
|
283
287
|
voutIndex?: number;
|
|
288
|
+
voutSpent?: boolean;
|
|
289
|
+
spentVoutTransactionId?: string;
|
|
290
|
+
spentVoutTransactionHash?: string;
|
|
291
|
+
spentVoutIndex?: number;
|
|
292
|
+
blockchainInstant?: BlockchainInstant;
|
|
293
|
+
confirmationStatus?: ConfirmationStatus;
|
|
294
|
+
}
|
|
295
|
+
export interface ListFilteredTransactionEventsOutput {
|
|
296
|
+
events: TransactionEvent[] | undefined;
|
|
297
|
+
nextToken?: string;
|
|
298
|
+
}
|
|
299
|
+
export interface OwnerFilter {
|
|
300
|
+
address: string | undefined;
|
|
301
|
+
}
|
|
302
|
+
export interface TokenFilter {
|
|
303
|
+
network: QueryNetwork | undefined;
|
|
304
|
+
contractAddress?: string;
|
|
305
|
+
tokenId?: string;
|
|
306
|
+
}
|
|
307
|
+
export interface ListTokenBalancesInput {
|
|
308
|
+
ownerFilter?: OwnerFilter;
|
|
309
|
+
tokenFilter: TokenFilter | undefined;
|
|
310
|
+
nextToken?: string;
|
|
311
|
+
maxResults?: number;
|
|
312
|
+
}
|
|
313
|
+
export interface TokenBalance {
|
|
314
|
+
ownerIdentifier?: OwnerIdentifier;
|
|
315
|
+
tokenIdentifier?: TokenIdentifier;
|
|
316
|
+
balance: string | undefined;
|
|
317
|
+
atBlockchainInstant: BlockchainInstant | undefined;
|
|
318
|
+
lastUpdatedTime?: BlockchainInstant;
|
|
319
|
+
}
|
|
320
|
+
export interface ListTokenBalancesOutput {
|
|
321
|
+
tokenBalances: TokenBalance[] | undefined;
|
|
322
|
+
nextToken?: string;
|
|
323
|
+
}
|
|
324
|
+
export interface ListTransactionEventsInput {
|
|
325
|
+
transactionHash?: string;
|
|
326
|
+
transactionId?: string;
|
|
327
|
+
network: QueryNetwork | undefined;
|
|
328
|
+
nextToken?: string;
|
|
329
|
+
maxResults?: number;
|
|
284
330
|
}
|
|
285
331
|
export interface ListTransactionEventsOutput {
|
|
286
332
|
events: TransactionEvent[] | undefined;
|
|
@@ -291,11 +337,6 @@ export declare const ListTransactionsSortBy: {
|
|
|
291
337
|
};
|
|
292
338
|
export type ListTransactionsSortBy =
|
|
293
339
|
(typeof ListTransactionsSortBy)[keyof typeof ListTransactionsSortBy];
|
|
294
|
-
export declare const SortOrder: {
|
|
295
|
-
readonly ASCENDING: "ASCENDING";
|
|
296
|
-
readonly DESCENDING: "DESCENDING";
|
|
297
|
-
};
|
|
298
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
299
340
|
export interface ListTransactionsSort {
|
|
300
341
|
sortBy?: ListTransactionsSortBy;
|
|
301
342
|
sortOrder?: SortOrder;
|
|
@@ -312,6 +353,7 @@ export interface ListTransactionsInput {
|
|
|
312
353
|
}
|
|
313
354
|
export interface TransactionOutputItem {
|
|
314
355
|
transactionHash: string | undefined;
|
|
356
|
+
transactionId?: string;
|
|
315
357
|
network: QueryNetwork | undefined;
|
|
316
358
|
transactionTimestamp: Date | undefined;
|
|
317
359
|
confirmationStatus?: ConfirmationStatus;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListFilteredTransactionEventsCommandInput,
|
|
4
|
+
ListFilteredTransactionEventsCommandOutput,
|
|
5
|
+
} from "../commands/ListFilteredTransactionEventsCommand";
|
|
6
|
+
import { ManagedBlockchainQueryPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListFilteredTransactionEvents: (
|
|
8
|
+
config: ManagedBlockchainQueryPaginationConfiguration,
|
|
9
|
+
input: ListFilteredTransactionEventsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListFilteredTransactionEventsCommandOutput>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListAssetContractsPaginator";
|
|
3
|
+
export * from "./ListFilteredTransactionEventsPaginator";
|
|
3
4
|
export * from "./ListTokenBalancesPaginator";
|
|
4
5
|
export * from "./ListTransactionEventsPaginator";
|
|
5
6
|
export * from "./ListTransactionsPaginator";
|
|
@@ -23,6 +23,10 @@ import {
|
|
|
23
23
|
ListAssetContractsCommandInput,
|
|
24
24
|
ListAssetContractsCommandOutput,
|
|
25
25
|
} from "../commands/ListAssetContractsCommand";
|
|
26
|
+
import {
|
|
27
|
+
ListFilteredTransactionEventsCommandInput,
|
|
28
|
+
ListFilteredTransactionEventsCommandOutput,
|
|
29
|
+
} from "../commands/ListFilteredTransactionEventsCommand";
|
|
26
30
|
import {
|
|
27
31
|
ListTokenBalancesCommandInput,
|
|
28
32
|
ListTokenBalancesCommandOutput,
|
|
@@ -55,6 +59,10 @@ export declare const se_ListAssetContractsCommand: (
|
|
|
55
59
|
input: ListAssetContractsCommandInput,
|
|
56
60
|
context: __SerdeContext
|
|
57
61
|
) => Promise<__HttpRequest>;
|
|
62
|
+
export declare const se_ListFilteredTransactionEventsCommand: (
|
|
63
|
+
input: ListFilteredTransactionEventsCommandInput,
|
|
64
|
+
context: __SerdeContext
|
|
65
|
+
) => Promise<__HttpRequest>;
|
|
58
66
|
export declare const se_ListTokenBalancesCommand: (
|
|
59
67
|
input: ListTokenBalancesCommandInput,
|
|
60
68
|
context: __SerdeContext
|
|
@@ -87,6 +95,10 @@ export declare const de_ListAssetContractsCommand: (
|
|
|
87
95
|
output: __HttpResponse,
|
|
88
96
|
context: __SerdeContext
|
|
89
97
|
) => Promise<ListAssetContractsCommandOutput>;
|
|
98
|
+
export declare const de_ListFilteredTransactionEventsCommand: (
|
|
99
|
+
output: __HttpResponse,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<ListFilteredTransactionEventsCommandOutput>;
|
|
90
102
|
export declare const de_ListTokenBalancesCommand: (
|
|
91
103
|
output: __HttpResponse,
|
|
92
104
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-managedblockchain-query",
|
|
3
3
|
"description": "AWS SDK for JavaScript Managedblockchain Query Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.538.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-managedblockchain-query",
|