lightning 10.20.0 → 10.20.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
|
@@ -101,6 +101,8 @@ export type SubscribeToPayConfirmedEvent = {
|
|
|
101
101
|
}[];
|
|
102
102
|
/** Payment Hash Hex String> */
|
|
103
103
|
id: string;
|
|
104
|
+
/** Payment Index String */
|
|
105
|
+
index: string;
|
|
104
106
|
/** Total Millitokens Paid String> */
|
|
105
107
|
mtokens: string;
|
|
106
108
|
paths: {
|
|
@@ -193,6 +195,8 @@ export type SubscribeToPayPayingEvent = {
|
|
|
193
195
|
destination: string;
|
|
194
196
|
/** Payment Hash Hex String> */
|
|
195
197
|
id: string;
|
|
198
|
+
/** Payment Index String */
|
|
199
|
+
index: string;
|
|
196
200
|
/** Total Millitokens Pending String> */
|
|
197
201
|
mtokens: string;
|
|
198
202
|
paths: {
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"url": "https://github.com/alexbosworth/lightning/issues"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@grpc/grpc-js": "1.11.
|
|
10
|
+
"@grpc/grpc-js": "1.11.2",
|
|
11
11
|
"@grpc/proto-loader": "0.7.13",
|
|
12
12
|
"@types/node": "22.5.4",
|
|
13
13
|
"@types/request": "2.48.12",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"directory": "test/typescript"
|
|
54
54
|
},
|
|
55
55
|
"types": "index.d.ts",
|
|
56
|
-
"version": "10.20.
|
|
56
|
+
"version": "10.20.1"
|
|
57
57
|
}
|