ln-service 54.4.1 → 54.5.0

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
+ ## 54.5.0
4
+
5
+ - `getFailedPayments`, `getInvoices`, `getPayments`, `getPendingPayments`: add
6
+ support for date based filtering with `created_after` and `created_before`
7
+ arguments
8
+
3
9
  ## 54.4.1
4
10
 
5
11
  - `subscribeToRpcRequests`: `open_channel_request` add support for
package/README.md CHANGED
@@ -1832,7 +1832,12 @@ Get failed payments made through channels.
1832
1832
 
1833
1833
  Requires `offchain:read` permission
1834
1834
 
1835
+ `created_after` is not supported on LND 0.15.5 and below
1836
+ `created_before` is not supported on LND 0.15.5 and below
1837
+
1835
1838
  {
1839
+ [created_after]: <Creation Date After or Equal to ISO 8601 Date String>
1840
+ [created_before]: <Creation Date Before or Equal to ISO 8601 Date String>
1836
1841
  [limit]: <Page Result Limit Number>
1837
1842
  lnd: <Authenticated LND API Object>
1838
1843
  [token]: <Opaque Paging Token String>
@@ -2176,7 +2181,12 @@ Requires `invoices:read` permission
2176
2181
 
2177
2182
  Invoice `payment` is not supported on LND 0.11.1 and below
2178
2183
 
2184
+ `created_after` is not supported on LND 0.15.5 and below
2185
+ `created_before` is not supported on LND 0.15.5 and below
2186
+
2179
2187
  {
2188
+ [created_after]: <Creation Date After or Equal to ISO 8601 Date String>
2189
+ [created_before]: <Creation Date Before or Equal to ISO 8601 Date String>
2180
2190
  [is_unconfirmed]: <Omit Canceled and Settled Invoices Bool>
2181
2191
  [limit]: <Page Result Limit Number>
2182
2192
  lnd: <Authenticated LND API Object>
@@ -2631,7 +2641,12 @@ Get payments made through channels.
2631
2641
 
2632
2642
  Requires `offchain:read` permission
2633
2643
 
2644
+ `created_after` is not supported on LND 0.15.5 and below
2645
+ `created_before` is not supported on LND 0.15.5 and below
2646
+
2634
2647
  {
2648
+ [created_after]: <Creation Date After or Equal to ISO 8601 Date String>
2649
+ [created_before]: <Creation Date Before or Equal to ISO 8601 Date String>
2635
2650
  [limit]: <Page Result Limit Number>
2636
2651
  lnd: <Authenticated LND API Object>
2637
2652
  [token]: <Opaque Paging Token String>
@@ -2848,7 +2863,12 @@ Get pending payments made through channels.
2848
2863
 
2849
2864
  Requires `offchain:read` permission
2850
2865
 
2866
+ `created_after` is not supported on LND 0.15.5 and below
2867
+ `created_before` is not supported on LND 0.15.5 and below
2868
+
2851
2869
  {
2870
+ [created_after]: <Creation Date After or Equal to ISO 8601 Date String>
2871
+ [created_before]: <Creation Date Before or Equal to ISO 8601 Date String>
2852
2872
  [limit]: <Page Result Limit Number>
2853
2873
  lnd: <Authenticated LND API Object>
2854
2874
  [token]: <Opaque Paging Token String>
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "cors": "2.8.5",
12
12
  "express": "4.18.2",
13
13
  "invoices": "2.2.2",
14
- "lightning": "6.4.1",
14
+ "lightning": "6.5.0",
15
15
  "macaroon": "3.0.4",
16
16
  "morgan": "1.10.0",
17
17
  "ws": "8.11.0"
@@ -28,7 +28,7 @@
28
28
  "bn.js": "5.2.1",
29
29
  "bs58check": "2.1.2",
30
30
  "ecpair": "2.1.0",
31
- "ln-docker-daemons": "4.0.0",
31
+ "ln-docker-daemons": "4.0.1",
32
32
  "p2tr": "1.3.2",
33
33
  "portfinder": "1.0.32",
34
34
  "psbt": "2.7.1",
@@ -64,5 +64,5 @@
64
64
  "integration-test-0.14.4": "DOCKER_LND_VERSION=v0.14.4-beta npm run test",
65
65
  "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"
66
66
  },
67
- "version": "54.4.1"
67
+ "version": "54.5.0"
68
68
  }