@aws-sdk/client-managedblockchain-query 3.535.0 → 3.537.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 +118 -14
- 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 +72 -2
- package/dist-types/ManagedBlockchainQuery.d.ts +7 -0
- package/dist-types/ManagedBlockchainQueryClient.d.ts +3 -2
- 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 +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +326 -129
- 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 +70 -30
- 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
|
@@ -26,8 +26,7 @@ declare const ListTransactionEventsCommand_base: {
|
|
|
26
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
27
|
};
|
|
28
28
|
/**
|
|
29
|
-
* <p>
|
|
30
|
-
* about the transaction event.</p>
|
|
29
|
+
* <p>Lists all the transaction events for a transaction </p>
|
|
31
30
|
* <note>
|
|
32
31
|
* <p>This action will return transaction details for all transactions
|
|
33
32
|
* that are <i>confirmed</i> on the blockchain, even if they have not reached
|
|
@@ -41,7 +40,8 @@ declare const ListTransactionEventsCommand_base: {
|
|
|
41
40
|
* // const { ManagedBlockchainQueryClient, ListTransactionEventsCommand } = require("@aws-sdk/client-managedblockchain-query"); // CommonJS import
|
|
42
41
|
* const client = new ManagedBlockchainQueryClient(config);
|
|
43
42
|
* const input = { // ListTransactionEventsInput
|
|
44
|
-
* transactionHash: "STRING_VALUE",
|
|
43
|
+
* transactionHash: "STRING_VALUE",
|
|
44
|
+
* transactionId: "STRING_VALUE",
|
|
45
45
|
* network: "STRING_VALUE", // required
|
|
46
46
|
* nextToken: "STRING_VALUE",
|
|
47
47
|
* maxResults: Number("int"),
|
|
@@ -61,6 +61,14 @@ declare const ListTransactionEventsCommand_base: {
|
|
|
61
61
|
* // tokenId: "STRING_VALUE",
|
|
62
62
|
* // transactionId: "STRING_VALUE",
|
|
63
63
|
* // voutIndex: Number("int"),
|
|
64
|
+
* // voutSpent: true || false,
|
|
65
|
+
* // spentVoutTransactionId: "STRING_VALUE",
|
|
66
|
+
* // spentVoutTransactionHash: "STRING_VALUE",
|
|
67
|
+
* // spentVoutIndex: Number("int"),
|
|
68
|
+
* // blockchainInstant: { // BlockchainInstant
|
|
69
|
+
* // time: new Date("TIMESTAMP"),
|
|
70
|
+
* // },
|
|
71
|
+
* // confirmationStatus: "STRING_VALUE",
|
|
64
72
|
* // },
|
|
65
73
|
* // ],
|
|
66
74
|
* // nextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ declare const ListTransactionsCommand_base: {
|
|
|
26
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
27
|
};
|
|
28
28
|
/**
|
|
29
|
-
* <p>Lists all
|
|
29
|
+
* <p>Lists all the transaction events for a transaction.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
32
|
* ```javascript
|
|
@@ -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";
|