lightning 10.20.0 → 10.20.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,6 +1,6 @@
1
1
  # Versions
2
2
 
3
- ## 10.20.0
3
+ ## 10.20.2
4
4
 
5
5
  - `payViaPaymentRequest`, `subscribeToPayViaRequest`: Add `index` to response
6
6
  for payment offset number in payments set
@@ -51,6 +51,7 @@
51
51
  "d22b3937eae91d33cd8c035e8fa894e3793e1636": "0.18.2-beta",
52
52
  "d233f61383f2f950aa06f5b09da5b0e78e784fae": "0.12.1-beta",
53
53
  "d62c575f8499a314eb27f12462d20500b6bda2c7": "0.10.3-beta",
54
+ "d72a3aaf261e278fa4aad5be4453df2f74ab50ee": "0.18.3-beta",
54
55
  "df0b82f0165f19bde8832bacd1e35544b0a2990d": "0.14.0-beta",
55
56
  "eecbe99d68384c734b2c91fd0800484e69c5cab2": "0.14.4-beta",
56
57
  "f8211a2c3b3d2112159cd119bd7674743336c661": "0.17.5-beta",
@@ -61,6 +61,8 @@ export type PayViaPaymentRequestResult = {
61
61
  }[];
62
62
  /** Payment Hash Hex */
63
63
  id: string;
64
+ /** Payment Index String */
65
+ index: string;
64
66
  /** Total Millitokens Paid */
65
67
  mtokens: string;
66
68
  paths: {
@@ -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.1",
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",
@@ -22,12 +22,12 @@
22
22
  "invoices": "3.0.0",
23
23
  "psbt": "3.0.0",
24
24
  "tiny-secp256k1": "2.2.3",
25
- "type-fest": "4.26.0"
25
+ "type-fest": "4.26.1"
26
26
  },
27
27
  "description": "Lightning Network client library",
28
28
  "devDependencies": {
29
29
  "tsd": "0.31.2",
30
- "typescript": "5.5.4"
30
+ "typescript": "5.6.2"
31
31
  },
32
32
  "engines": {
33
33
  "node": ">=18"
@@ -53,5 +53,5 @@
53
53
  "directory": "test/typescript"
54
54
  },
55
55
  "types": "index.d.ts",
56
- "version": "10.20.0"
56
+ "version": "10.20.2"
57
57
  }