@lightsparkdev/lightspark-sdk 1.8.8 → 1.8.9
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 +10 -0
- package/dist/index.cjs +4 -4
- package/dist/index.js +4 -4
- package/package.json +3 -3
- package/src/graphql/IncomingPaymentsForInvoice.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @lightsparkdev/lightspark-sdk
|
|
2
2
|
|
|
3
|
+
## 1.8.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 56d359b: - GraphQL Query Adjustment:
|
|
8
|
+
– In packages/lightspark-sdk/src/graphql/IncomingPaymentsForInvoice.ts, the type for the $invoice_id variable was changed from Hash32! to ID! to better align with schema definitions.
|
|
9
|
+
- Updated dependencies [56d359b]
|
|
10
|
+
- @lightsparkdev/core@1.2.7
|
|
11
|
+
- @lightsparkdev/crypto-wasm@0.1.10
|
|
12
|
+
|
|
3
13
|
## 1.8.8
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
|
@@ -176,7 +176,7 @@ var import_core28 = require("@lightsparkdev/core");
|
|
|
176
176
|
// package.json
|
|
177
177
|
var package_default = {
|
|
178
178
|
name: "@lightsparkdev/lightspark-sdk",
|
|
179
|
-
version: "1.8.
|
|
179
|
+
version: "1.8.9",
|
|
180
180
|
description: "Lightspark JS SDK",
|
|
181
181
|
author: "Lightspark Inc.",
|
|
182
182
|
keywords: [
|
|
@@ -258,8 +258,8 @@ var package_default = {
|
|
|
258
258
|
},
|
|
259
259
|
license: "Apache-2.0",
|
|
260
260
|
dependencies: {
|
|
261
|
-
"@lightsparkdev/core": "1.2.
|
|
262
|
-
"@lightsparkdev/crypto-wasm": "0.1.
|
|
261
|
+
"@lightsparkdev/core": "1.2.7",
|
|
262
|
+
"@lightsparkdev/crypto-wasm": "0.1.10",
|
|
263
263
|
"crypto-browserify": "^3.12.0",
|
|
264
264
|
dayjs: "^1.11.7",
|
|
265
265
|
dotenv: "^16.3.1",
|
|
@@ -3814,7 +3814,7 @@ ${FRAGMENT}
|
|
|
3814
3814
|
// src/graphql/IncomingPaymentsForInvoice.ts
|
|
3815
3815
|
var IncomingPaymentsForInvoice = `
|
|
3816
3816
|
query IncomingPaymentsForInvoice(
|
|
3817
|
-
$invoice_id:
|
|
3817
|
+
$invoice_id: ID!,
|
|
3818
3818
|
$statuses: [TransactionStatus!]
|
|
3819
3819
|
) {
|
|
3820
3820
|
incoming_payments_for_invoice(input: {
|
package/dist/index.js
CHANGED
|
@@ -151,7 +151,7 @@ import {
|
|
|
151
151
|
// package.json
|
|
152
152
|
var package_default = {
|
|
153
153
|
name: "@lightsparkdev/lightspark-sdk",
|
|
154
|
-
version: "1.8.
|
|
154
|
+
version: "1.8.9",
|
|
155
155
|
description: "Lightspark JS SDK",
|
|
156
156
|
author: "Lightspark Inc.",
|
|
157
157
|
keywords: [
|
|
@@ -233,8 +233,8 @@ var package_default = {
|
|
|
233
233
|
},
|
|
234
234
|
license: "Apache-2.0",
|
|
235
235
|
dependencies: {
|
|
236
|
-
"@lightsparkdev/core": "1.2.
|
|
237
|
-
"@lightsparkdev/crypto-wasm": "0.1.
|
|
236
|
+
"@lightsparkdev/core": "1.2.7",
|
|
237
|
+
"@lightsparkdev/crypto-wasm": "0.1.10",
|
|
238
238
|
"crypto-browserify": "^3.12.0",
|
|
239
239
|
dayjs: "^1.11.7",
|
|
240
240
|
dotenv: "^16.3.1",
|
|
@@ -755,7 +755,7 @@ ${FRAGMENT}
|
|
|
755
755
|
// src/graphql/IncomingPaymentsForInvoice.ts
|
|
756
756
|
var IncomingPaymentsForInvoice = `
|
|
757
757
|
query IncomingPaymentsForInvoice(
|
|
758
|
-
$invoice_id:
|
|
758
|
+
$invoice_id: ID!,
|
|
759
759
|
$statuses: [TransactionStatus!]
|
|
760
760
|
) {
|
|
761
761
|
incoming_payments_for_invoice(input: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lightsparkdev/lightspark-sdk",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.9",
|
|
4
4
|
"description": "Lightspark JS SDK",
|
|
5
5
|
"author": "Lightspark Inc.",
|
|
6
6
|
"keywords": [
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
},
|
|
83
83
|
"license": "Apache-2.0",
|
|
84
84
|
"dependencies": {
|
|
85
|
-
"@lightsparkdev/core": "1.2.
|
|
86
|
-
"@lightsparkdev/crypto-wasm": "0.1.
|
|
85
|
+
"@lightsparkdev/core": "1.2.7",
|
|
86
|
+
"@lightsparkdev/crypto-wasm": "0.1.10",
|
|
87
87
|
"crypto-browserify": "^3.12.0",
|
|
88
88
|
"dayjs": "^1.11.7",
|
|
89
89
|
"dotenv": "^16.3.1",
|
|
@@ -4,7 +4,7 @@ import { FRAGMENT as IncomingPaymentFragment } from "../objects/IncomingPayment.
|
|
|
4
4
|
|
|
5
5
|
export const IncomingPaymentsForInvoice = `
|
|
6
6
|
query IncomingPaymentsForInvoice(
|
|
7
|
-
$invoice_id:
|
|
7
|
+
$invoice_id: ID!,
|
|
8
8
|
$statuses: [TransactionStatus!]
|
|
9
9
|
) {
|
|
10
10
|
incoming_payments_for_invoice(input: {
|