@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.
Files changed (28) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +118 -14
  3. package/dist-es/ManagedBlockchainQuery.js +2 -0
  4. package/dist-es/commands/ListFilteredTransactionEventsCommand.js +24 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/models/models_0.js +7 -4
  7. package/dist-es/pagination/ListFilteredTransactionEventsPaginator.js +4 -0
  8. package/dist-es/pagination/index.js +1 -0
  9. package/dist-es/protocols/Aws_restJson1.js +72 -2
  10. package/dist-types/ManagedBlockchainQuery.d.ts +7 -0
  11. package/dist-types/ManagedBlockchainQueryClient.d.ts +3 -2
  12. package/dist-types/commands/ListFilteredTransactionEventsCommand.d.ts +129 -0
  13. package/dist-types/commands/ListTransactionEventsCommand.d.ts +11 -3
  14. package/dist-types/commands/ListTransactionsCommand.d.ts +1 -1
  15. package/dist-types/commands/index.d.ts +1 -0
  16. package/dist-types/models/models_0.d.ts +326 -129
  17. package/dist-types/pagination/ListFilteredTransactionEventsPaginator.d.ts +7 -0
  18. package/dist-types/pagination/index.d.ts +1 -0
  19. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  20. package/dist-types/ts3.4/ManagedBlockchainQuery.d.ts +17 -0
  21. package/dist-types/ts3.4/ManagedBlockchainQueryClient.d.ts +6 -0
  22. package/dist-types/ts3.4/commands/ListFilteredTransactionEventsCommand.d.ts +39 -0
  23. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  24. package/dist-types/ts3.4/models/models_0.d.ts +70 -30
  25. package/dist-types/ts3.4/pagination/ListFilteredTransactionEventsPaginator.d.ts +11 -0
  26. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  27. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  28. 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>An array of <code>TransactionEvent</code> objects. Each object contains details
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", // required
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 of the transactions on a given wallet address or to a specific contract.</p>
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";