@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @lightsparkdev/lightspark-sdk
2
2
 
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - fd769cb: Fix fundNode variable reference
8
+
3
9
  ## 1.1.1
4
10
 
5
11
  ### Patch Changes
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.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: $amountMsats }) {
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.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: $amountMsats }) {
437
+ fund_node(input: { node_id: $node_id, amount_sats: $amountSats }) {
438
438
  amount {
439
439
  ...CurrencyAmountFragment
440
440
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightsparkdev/lightspark-sdk",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Lightspark JS SDK",
5
5
  "author": "Lightspark Inc.",
6
6
  "keywords": [
@@ -7,7 +7,7 @@ export const FundNode = `
7
7
  $node_id: ID!,
8
8
  $amountSats: Long
9
9
  ) {
10
- fund_node(input: { node_id: $node_id, amount_sats: $amountMsats }) {
10
+ fund_node(input: { node_id: $node_id, amount_sats: $amountSats }) {
11
11
  amount {
12
12
  ...CurrencyAmountFragment
13
13
  }