We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 12133ce + 1713423 commit 791b904Copy full SHA for 791b904
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "@webbtc/webln-types",
3
"description": "Type definitions for WebLN",
4
- "version": "2.1.0",
+ "version": "3.0.0",
5
"types": "types/index.d.ts",
6
"repository": {
7
"type": "git",
types/index.d.ts
@@ -77,12 +77,13 @@ interface GetBalanceResponse {
77
}
78
79
interface LookupInvoiceArgs {
80
- invoice?: string;
81
- payment_hash?: string;
+ paymentRequest?: string;
+ paymentHash?: string;
82
83
84
interface LookupInvoiceResponse {
85
paymentRequest: string;
86
+ preimage?: string;
87
paid: boolean;
88
89
0 commit comments