chia-agent 16.1.1 → 16.1.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [16.1.2]
4
+ ### Fixed
5
+ - Fixed `TGetCoinRecordsByPuzzleHashRequest` type definition
6
+ - Made `start_height`, `end_height`, and `include_spent_coins` optional parameters
7
+
3
8
  ## [16.1.1]
4
9
  ### Fixed
5
10
  - Fixed incorrect response type for [`get_auto_farming`](./src/api/rpc/full_node/README.md#get_auto_farmingagent)
@@ -198,9 +198,9 @@ export declare const get_coin_records_by_puzzle_hash_command = "get_coin_records
198
198
  export type get_coin_records_by_puzzle_hash_command = typeof get_coin_records_by_puzzle_hash_command;
199
199
  export type TGetCoinRecordsByPuzzleHashRequest = {
200
200
  puzzle_hash: str;
201
- start_height: uint32;
202
- end_height: uint32;
203
- include_spent_coins: bool;
201
+ start_height?: uint32;
202
+ end_height?: uint32;
203
+ include_spent_coins?: bool;
204
204
  };
205
205
  export type TGetCoinRecordsByPuzzleHashResponse = {
206
206
  coin_records: CoinRecordBackwardCompatible[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chia-agent",
3
- "version": "16.1.1",
3
+ "version": "16.1.2",
4
4
  "author": "ChiaMineJP <admin@chiamine.jp>",
5
5
  "description": "chia rpc/websocket client library",
6
6
  "license": "MIT",