@lightsparkdev/lightspark-sdk 1.1.1 → 1.1.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 +6 -0
- package/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/src/graphql/FundNode.ts +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -1938,7 +1938,7 @@ var import_core9 = require("@lightsparkdev/core");
|
|
|
1938
1938
|
// package.json
|
|
1939
1939
|
var package_default = {
|
|
1940
1940
|
name: "@lightsparkdev/lightspark-sdk",
|
|
1941
|
-
version: "1.1.
|
|
1941
|
+
version: "1.1.2",
|
|
1942
1942
|
description: "Lightspark JS SDK",
|
|
1943
1943
|
author: "Lightspark Inc.",
|
|
1944
1944
|
keywords: [
|
|
@@ -4652,7 +4652,7 @@ var FundNode = `
|
|
|
4652
4652
|
$node_id: ID!,
|
|
4653
4653
|
$amountSats: Long
|
|
4654
4654
|
) {
|
|
4655
|
-
fund_node(input: { node_id: $node_id, amount_sats: $
|
|
4655
|
+
fund_node(input: { node_id: $node_id, amount_sats: $amountSats }) {
|
|
4656
4656
|
amount {
|
|
4657
4657
|
...CurrencyAmountFragment
|
|
4658
4658
|
}
|
package/dist/index.js
CHANGED
|
@@ -133,7 +133,7 @@ import {
|
|
|
133
133
|
// package.json
|
|
134
134
|
var package_default = {
|
|
135
135
|
name: "@lightsparkdev/lightspark-sdk",
|
|
136
|
-
version: "1.1.
|
|
136
|
+
version: "1.1.2",
|
|
137
137
|
description: "Lightspark JS SDK",
|
|
138
138
|
author: "Lightspark Inc.",
|
|
139
139
|
keywords: [
|
|
@@ -434,7 +434,7 @@ var FundNode = `
|
|
|
434
434
|
$node_id: ID!,
|
|
435
435
|
$amountSats: Long
|
|
436
436
|
) {
|
|
437
|
-
fund_node(input: { node_id: $node_id, amount_sats: $
|
|
437
|
+
fund_node(input: { node_id: $node_id, amount_sats: $amountSats }) {
|
|
438
438
|
amount {
|
|
439
439
|
...CurrencyAmountFragment
|
|
440
440
|
}
|
package/package.json
CHANGED
package/src/graphql/FundNode.ts
CHANGED