lightning 5.2.0 → 5.2.1

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,6 +1,6 @@
1
1
  # Versions
2
2
 
3
- ## 5.2.0
3
+ ## 5.2.1
4
4
 
5
5
  - `getPendingChannels`: Add support for channel `capacity`
6
6
 
@@ -3,6 +3,8 @@ import {AuthenticatedLnd} from '../../lnd_grpc';
3
3
 
4
4
  export type GetPendingChannelsResult = {
5
5
  pending_channels: {
6
+ /** Channel Capacity Tokens */
7
+ capacity: number;
6
8
  /** Channel Closing Transaction Id */
7
9
  close_transaction_id?: string;
8
10
  /** Channel Is Active */
package/package.json CHANGED
@@ -57,5 +57,5 @@
57
57
  "directory": "test/typescript"
58
58
  },
59
59
  "types": "index.d.ts",
60
- "version": "5.2.0"
60
+ "version": "5.2.1"
61
61
  }