ln-service 53.16.0 → 53.16.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,5 +1,11 @@
1
1
  # Versions
2
2
 
3
+ ## 53.16.1
4
+
5
+ - `getFailedPayments`, `getPayments`, `getPendingPayments`: Remove
6
+ `confirmed_at` date when a payment is not confirmed, add `created_at` and
7
+ `failed_at` dates for attempt start and attempt failed dates.
8
+
3
9
  ## 53.16.0
4
10
 
5
11
  - `beginGroupSigningSession`: Add method to start a MuSig2 signing session
package/README.md CHANGED
@@ -1819,7 +1819,9 @@ Requires `offchain:read` permission
1819
1819
  message: <Error Message String>
1820
1820
  }
1821
1821
  [index]: <Payment Add Index Number>
1822
- [confirmed_at]: <Payment Confirmed At ISO 8601 Date String>
1822
+ [confirmed_at]: <Payment Attempt Succeeded At ISO 8601 Date String>
1823
+ created_at: <Attempt Was Started At ISO 8601 Date String>
1824
+ [failed_at]: <Payment Attempt Failed At ISO 8601 Date String>
1823
1825
  is_confirmed: <Payment Attempt Succeeded Bool>
1824
1826
  is_failed: <Payment Attempt Failed Bool>
1825
1827
  is_pending: <Payment Attempt is Waiting For Resolution Bool>
@@ -2602,6 +2604,9 @@ Requires `offchain:read` permission
2602
2604
  }
2603
2605
  message: <Error Message String>
2604
2606
  }
2607
+ [confirmed_at]: <Payment Attempt Succeeded At ISO 8601 Date String>
2608
+ created_at: <Attempt Was Started At ISO 8601 Date String>
2609
+ [failed_at]: <Payment Attempt Failed At ISO 8601 Date String>
2605
2610
  is_confirmed: <Payment Attempt Succeeded Bool>
2606
2611
  is_failed: <Payment Attempt Failed Bool>
2607
2612
  is_pending: <Payment Attempt is Waiting For Resolution Bool>
@@ -2817,7 +2822,9 @@ Requires `offchain:read` permission
2817
2822
  message: <Error Message String>
2818
2823
  }
2819
2824
  [index]: <Payment Add Index Number>
2820
- [confirmed_at]: <Payment Confirmed At ISO 8601 Date String>
2825
+ [confirmed_at]: <Payment Attempt Succeeded At ISO 8601 Date String>
2826
+ created_at: <Attempt Was Started At ISO 8601 Date String>
2827
+ [failed_at]: <Payment Attempt Failed At ISO 8601 Date String>
2821
2828
  is_confirmed: <Payment Attempt Succeeded Bool>
2822
2829
  is_failed: <Payment Attempt Failed Bool>
2823
2830
  is_pending: <Payment Attempt is Waiting For Resolution Bool>
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "cors": "2.8.5",
12
12
  "express": "4.18.1",
13
13
  "invoices": "2.0.6",
14
- "lightning": "5.15.0",
14
+ "lightning": "5.15.1",
15
15
  "macaroon": "3.0.4",
16
16
  "morgan": "1.10.0",
17
17
  "ws": "8.6.0"
@@ -70,5 +70,5 @@
70
70
  "integration-test-0.12.0": "DOCKER_LND_VERSION=v0.12.0-beta npm run test",
71
71
  "test": "echo $DOCKER_LND_VERSION && tap -j 2 --branches=1 --functions=1 --lines=1 --statements=1 -t 200 test/autopilotrpc-integration/*.js test/chainrpc-integration/*.js test/integration/*.js test/invoicesrpc-integration/*.js test/peersrpc-integration/*.js test/routerrpc-integration/*.js test/signerrpc-integration/*.js test/tower_clientrpc-integration/*.js test/tower_serverrpc-integration/*.js test/walletrpc-integration/*.js"
72
72
  },
73
- "version": "53.16.0"
73
+ "version": "53.16.1"
74
74
  }