lightning 5.8.2 → 5.8.3

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,9 @@
1
1
  # Versions
2
2
 
3
+ ## 5.8.3
4
+
5
+ - `getInvoice`: Add typescript timeout field on individual payment HTLCs
6
+
3
7
  ## 5.8.2
4
8
 
5
9
  - `getMasterPublicKeys`: Add method to lookup wallet extended public keys
@@ -76,6 +76,8 @@ export type GetInvoiceResult = {
76
76
  mtokens: string;
77
77
  /** Pending Payment Channel HTLC Index */
78
78
  pending_index?: number;
79
+ /** HTLC CLTV Timeout Height Number */
80
+ timeout: number;
79
81
  /** Payment Tokens */
80
82
  tokens: number;
81
83
  }[];
package/package.json CHANGED
@@ -59,5 +59,5 @@
59
59
  "directory": "test/typescript"
60
60
  },
61
61
  "types": "index.d.ts",
62
- "version": "5.8.2"
62
+ "version": "5.8.3"
63
63
  }