@lightsparkdev/lightspark-sdk 0.2.4 → 0.2.5

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
+ ## 0.2.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 9491bd4: Bumping to the newest core patch version.
8
+
3
9
  ## 0.2.4
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # The Lightspark JS+TS SDK
2
2
 
3
+ ![npm (scoped)](https://img.shields.io/npm/v/@lightsparkdev/lightspark-sdk)
4
+
3
5
  This is the Lightspark Typescript SDK, which can be used either from a node or browser environment. It's used to manage accounts, nodes, wallets, etc. See the examples directory for some examples of how to use it!
4
6
 
5
7
  ## Getting started
package/dist/index.cjs CHANGED
@@ -35,7 +35,7 @@ var require_package = __commonJS({
35
35
  "package.json"(exports, module2) {
36
36
  module2.exports = {
37
37
  name: "@lightsparkdev/lightspark-sdk",
38
- version: "0.2.3",
38
+ version: "0.2.5",
39
39
  description: "Lightspark JS SDK",
40
40
  author: "Lightspark Inc.",
41
41
  keywords: [
@@ -92,24 +92,25 @@ var require_package = __commonJS({
92
92
  ],
93
93
  scripts: {
94
94
  build: "tsup --entry src/index.ts --entry src/objects/index.ts --format cjs,esm --dts",
95
- "copy-static": "cp ./package.json ./README.md ./LICENSE ./dist/",
96
- dev: "yarn build -- --watch",
97
95
  clean: "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
98
- lint: "npx prettier --check ./src",
96
+ dev: "yarn build -- --watch",
97
+ docs: "typedoc src",
99
98
  format: "npx prettier --write ./src",
99
+ lint: "npx prettier --check ./src",
100
+ postversion: "yarn build",
100
101
  test: "tsc --noEmit --project tsconfig-test.json && jest --no-cache --runInBand --bail",
101
- "type-check": "tsc --noEmit",
102
- postversion: "yarn build"
102
+ "type-check": "tsc --noEmit"
103
103
  },
104
104
  license: "Apache-2.0",
105
105
  dependencies: {
106
- "@lightsparkdev/core": "^0.2.2",
106
+ "@lightsparkdev/core": "^0.2.3",
107
107
  "auto-bind": "^5.0.1",
108
108
  crypto: "^1.0.1",
109
109
  "crypto-browserify": "^3.12.0",
110
110
  dayjs: "^1.11.7",
111
111
  graphql: "^16.6.0",
112
112
  "graphql-ws": "^5.11.3",
113
+ typedoc: "^0.24.7",
113
114
  ws: "^8.12.1",
114
115
  "zen-observable-ts": "^1.1.0"
115
116
  },
@@ -121,8 +122,8 @@ var require_package = __commonJS({
121
122
  "prettier-plugin-organize-imports": "^3.2.2",
122
123
  "ts-jest": "^29.0.5",
123
124
  "ts-node": "^10.9.1",
124
- typescript: "^4.9.5",
125
- tsconfig: "*"
125
+ tsconfig: "*",
126
+ typescript: "^4.9.5"
126
127
  }
127
128
  };
128
129
  }
@@ -3561,9 +3562,9 @@ ${FRAGMENT18}
3561
3562
  };
3562
3563
  };
3563
3564
 
3564
- // src/graphql/SinglesNodeDashboard.ts
3565
- var SinglesNodeDashboard = `
3566
- query SinglesNodeDashboard(
3565
+ // src/graphql/SingleNodeDashboard.ts
3566
+ var SingleNodeDashboard = `
3567
+ query SingleNodeDashboard(
3567
3568
  $network: BitcoinNetwork!,
3568
3569
  $nodeId: ID!,
3569
3570
  $numTransactions: Int,
@@ -5558,7 +5559,7 @@ var LightsparkClient = class {
5558
5559
  };
5559
5560
  }
5560
5561
  /**
5561
- * Gets a basic dashboard for a single node, including recent transactions. See `SinglesNodeDashboard` for which info is
5562
+ * Gets a basic dashboard for a single node, including recent transactions. See `SingleNodeDashboard` for which info is
5562
5563
  * included.
5563
5564
  *
5564
5565
  * @param nodeId The node ID for which to get a dashboard.
@@ -5567,9 +5568,9 @@ var LightsparkClient = class {
5567
5568
  * Defaults to undefined (no limit).
5568
5569
  * @returns A basic dashboard for the given node ID.
5569
5570
  */
5570
- async getSinglesNodeDashboard(nodeId, bitcoinNetwork = BitcoinNetwork_default.MAINNET, transactionsAfterDate = void 0) {
5571
+ async getSingleNodeDashboard(nodeId, bitcoinNetwork = BitcoinNetwork_default.MAINNET, transactionsAfterDate = void 0) {
5571
5572
  const response = await this.requester.makeRawRequest(
5572
- SinglesNodeDashboard,
5573
+ SingleNodeDashboard,
5573
5574
  {
5574
5575
  nodeId,
5575
5576
  network: bitcoinNetwork,
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { AuthProvider } from '@lightsparkdev/core';
2
- export { A as Account, a as AccountToApiTokensConnection, b as AccountToChannelsConnection, c as AccountToNodesConnection, d as AccountToPaymentRequestsConnection, e as AccountToTransactionsConnection, f as AccountToWalletsConnection, g as ApiToken, B as Balances, i as BitcoinNetwork, j as BlockchainBalance, C as Channel, k as ChannelClosingTransaction, m as ChannelFees, n as ChannelOpeningTransaction, p as ChannelStatus, q as ChannelToTransactionsConnection, r as CreateApiTokenInput, s as CreateApiTokenOutput, t as CreateInvoiceInput, u as CreateInvoiceOutput, v as CreateNodeWalletAddressInput, w as CreateNodeWalletAddressOutput, x as CurrencyAmount, y as CurrencyUnit, D as DeleteApiTokenInput, z as DeleteApiTokenOutput, E as Deposit, G as Entity, H as FeeEstimate, I as FundNodeInput, J as FundNodeOutput, K as GraphNode, M as Hop, O as HtlcAttemptFailureCode, P as IncomingPayment, Q as IncomingPaymentAttempt, S as IncomingPaymentAttemptStatus, T as IncomingPaymentToAttemptsConnection, U as Invoice, W as InvoiceData, X as InvoiceType, Y as LightningFeeEstimateForInvoiceInput, Z as LightningFeeEstimateForNodeInput, _ as LightningFeeEstimateOutput, $ as LightningTransaction, L as LightsparkClient, a1 as LightsparkNode, a2 as LightsparkNodePurpose, a3 as LightsparkNodeStatus, a4 as LightsparkNodeToChannelsConnection, a5 as Node, a6 as NodeAddress, a7 as NodeAddressType, a8 as NodeToAddressesConnection, a9 as OnChainTransaction, ab as OutgoingPayment, ac as OutgoingPaymentAttempt, ad as OutgoingPaymentAttemptStatus, ae as OutgoingPaymentAttemptToHopsConnection, af as OutgoingPaymentToAttemptsConnection, ag as PageInfo, ah as PayInvoiceInput, ai as PayInvoiceOutput, aj as PaymentFailureReason, ak as PaymentRequest, am as PaymentRequestData, an as PaymentRequestStatus, ao as Permission, ap as RequestWithdrawalInput, aq as RequestWithdrawalOutput, ar as RichText, as as RoutingTransaction, au as RoutingTransactionFailureReason, av as Secret, aw as SendPaymentInput, ax as SendPaymentOutput, ay as SinglesNodeDashboard, az as Transaction, aB as TransactionFailures, aC as TransactionStatus, aD as TransactionType, aE as TransactionUpdate, aF as Wallet, aG as WebhookEventType, aH as Withdrawal, aJ as WithdrawalMode, aK as WithdrawalRequest, aL as WithdrawalRequestStatus, aM as WithdrawalRequestToChannelClosingTransactionsConnection, aN as WithdrawalRequestToChannelOpeningTransactionsConnection, h as getApiTokenQuery, l as getChannelClosingTransactionQuery, o as getChannelOpeningTransactionQuery, F as getDepositQuery, N as getHopQuery, R as getIncomingPaymentAttemptQuery, V as getInvoiceQuery, a0 as getLightningTransactionQuery, aa as getOnChainTransactionQuery, al as getPaymentRequestQuery, at as getRoutingTransactionQuery, aA as getTransactionQuery, aI as getWithdrawalQuery } from './Withdrawal-f8570ed4.js';
2
+ export { A as Account, a as AccountToApiTokensConnection, b as AccountToChannelsConnection, c as AccountToNodesConnection, d as AccountToPaymentRequestsConnection, e as AccountToTransactionsConnection, f as AccountToWalletsConnection, g as ApiToken, B as Balances, i as BitcoinNetwork, j as BlockchainBalance, C as Channel, k as ChannelClosingTransaction, m as ChannelFees, n as ChannelOpeningTransaction, p as ChannelStatus, q as ChannelToTransactionsConnection, r as CreateApiTokenInput, s as CreateApiTokenOutput, t as CreateInvoiceInput, u as CreateInvoiceOutput, v as CreateNodeWalletAddressInput, w as CreateNodeWalletAddressOutput, x as CurrencyAmount, y as CurrencyUnit, D as DeleteApiTokenInput, z as DeleteApiTokenOutput, E as Deposit, G as Entity, H as FeeEstimate, I as FundNodeInput, J as FundNodeOutput, K as GraphNode, M as Hop, O as HtlcAttemptFailureCode, P as IncomingPayment, Q as IncomingPaymentAttempt, S as IncomingPaymentAttemptStatus, T as IncomingPaymentToAttemptsConnection, U as Invoice, W as InvoiceData, X as InvoiceType, Y as LightningFeeEstimateForInvoiceInput, Z as LightningFeeEstimateForNodeInput, _ as LightningFeeEstimateOutput, $ as LightningTransaction, L as LightsparkClient, a1 as LightsparkNode, a2 as LightsparkNodePurpose, a3 as LightsparkNodeStatus, a4 as LightsparkNodeToChannelsConnection, a5 as Node, a6 as NodeAddress, a7 as NodeAddressType, a8 as NodeToAddressesConnection, a9 as OnChainTransaction, ab as OutgoingPayment, ac as OutgoingPaymentAttempt, ad as OutgoingPaymentAttemptStatus, ae as OutgoingPaymentAttemptToHopsConnection, af as OutgoingPaymentToAttemptsConnection, ag as PageInfo, ah as PayInvoiceInput, ai as PayInvoiceOutput, aj as PaymentFailureReason, ak as PaymentRequest, am as PaymentRequestData, an as PaymentRequestStatus, ao as Permission, ap as RequestWithdrawalInput, aq as RequestWithdrawalOutput, ar as RichText, as as RoutingTransaction, au as RoutingTransactionFailureReason, av as Secret, aw as SendPaymentInput, ax as SendPaymentOutput, ay as SingleNodeDashboard, az as Transaction, aB as TransactionFailures, aC as TransactionStatus, aD as TransactionType, aE as TransactionUpdate, aF as Wallet, aG as WebhookEventType, aH as Withdrawal, aJ as WithdrawalMode, aK as WithdrawalRequest, aL as WithdrawalRequestStatus, aM as WithdrawalRequestToChannelClosingTransactionsConnection, aN as WithdrawalRequestToChannelOpeningTransactionsConnection, h as getApiTokenQuery, l as getChannelClosingTransactionQuery, o as getChannelOpeningTransactionQuery, F as getDepositQuery, N as getHopQuery, R as getIncomingPaymentAttemptQuery, V as getInvoiceQuery, a0 as getLightningTransactionQuery, aa as getOnChainTransactionQuery, al as getPaymentRequestQuery, at as getRoutingTransactionQuery, aA as getTransactionQuery, aI as getWithdrawalQuery } from './Withdrawal-f68ab02c.js';
3
3
  import 'zen-observable';
4
4
 
5
5
  declare class AccountTokenAuthProvider implements AuthProvider {
package/dist/index.js CHANGED
@@ -67,7 +67,7 @@ var require_package = __commonJS({
67
67
  "package.json"(exports, module) {
68
68
  module.exports = {
69
69
  name: "@lightsparkdev/lightspark-sdk",
70
- version: "0.2.3",
70
+ version: "0.2.5",
71
71
  description: "Lightspark JS SDK",
72
72
  author: "Lightspark Inc.",
73
73
  keywords: [
@@ -124,24 +124,25 @@ var require_package = __commonJS({
124
124
  ],
125
125
  scripts: {
126
126
  build: "tsup --entry src/index.ts --entry src/objects/index.ts --format cjs,esm --dts",
127
- "copy-static": "cp ./package.json ./README.md ./LICENSE ./dist/",
128
- dev: "yarn build -- --watch",
129
127
  clean: "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
130
- lint: "npx prettier --check ./src",
128
+ dev: "yarn build -- --watch",
129
+ docs: "typedoc src",
131
130
  format: "npx prettier --write ./src",
131
+ lint: "npx prettier --check ./src",
132
+ postversion: "yarn build",
132
133
  test: "tsc --noEmit --project tsconfig-test.json && jest --no-cache --runInBand --bail",
133
- "type-check": "tsc --noEmit",
134
- postversion: "yarn build"
134
+ "type-check": "tsc --noEmit"
135
135
  },
136
136
  license: "Apache-2.0",
137
137
  dependencies: {
138
- "@lightsparkdev/core": "^0.2.2",
138
+ "@lightsparkdev/core": "^0.2.3",
139
139
  "auto-bind": "^5.0.1",
140
140
  crypto: "^1.0.1",
141
141
  "crypto-browserify": "^3.12.0",
142
142
  dayjs: "^1.11.7",
143
143
  graphql: "^16.6.0",
144
144
  "graphql-ws": "^5.11.3",
145
+ typedoc: "^0.24.7",
145
146
  ws: "^8.12.1",
146
147
  "zen-observable-ts": "^1.1.0"
147
148
  },
@@ -153,8 +154,8 @@ var require_package = __commonJS({
153
154
  "prettier-plugin-organize-imports": "^3.2.2",
154
155
  "ts-jest": "^29.0.5",
155
156
  "ts-node": "^10.9.1",
156
- typescript: "^4.9.5",
157
- tsconfig: "*"
157
+ tsconfig: "*",
158
+ typescript: "^4.9.5"
158
159
  }
159
160
  };
160
161
  }
@@ -514,9 +515,9 @@ var SendPayment = `
514
515
  ${FRAGMENT6}
515
516
  `;
516
517
 
517
- // src/graphql/SinglesNodeDashboard.ts
518
- var SinglesNodeDashboard = `
519
- query SinglesNodeDashboard(
518
+ // src/graphql/SingleNodeDashboard.ts
519
+ var SingleNodeDashboard = `
520
+ query SingleNodeDashboard(
520
521
  $network: BitcoinNetwork!,
521
522
  $nodeId: ID!,
522
523
  $numTransactions: Int,
@@ -845,7 +846,7 @@ var LightsparkClient = class {
845
846
  };
846
847
  }
847
848
  /**
848
- * Gets a basic dashboard for a single node, including recent transactions. See `SinglesNodeDashboard` for which info is
849
+ * Gets a basic dashboard for a single node, including recent transactions. See `SingleNodeDashboard` for which info is
849
850
  * included.
850
851
  *
851
852
  * @param nodeId The node ID for which to get a dashboard.
@@ -854,9 +855,9 @@ var LightsparkClient = class {
854
855
  * Defaults to undefined (no limit).
855
856
  * @returns A basic dashboard for the given node ID.
856
857
  */
857
- async getSinglesNodeDashboard(nodeId, bitcoinNetwork = BitcoinNetwork_default.MAINNET, transactionsAfterDate = void 0) {
858
+ async getSingleNodeDashboard(nodeId, bitcoinNetwork = BitcoinNetwork_default.MAINNET, transactionsAfterDate = void 0) {
858
859
  const response = await this.requester.makeRawRequest(
859
- SinglesNodeDashboard,
860
+ SingleNodeDashboard,
860
861
  {
861
862
  nodeId,
862
863
  network: bitcoinNetwork,
@@ -1,3 +1,3 @@
1
- export { A as Account, a as AccountToApiTokensConnection, b as AccountToChannelsConnection, c as AccountToNodesConnection, d as AccountToPaymentRequestsConnection, e as AccountToTransactionsConnection, f as AccountToWalletsConnection, g as ApiToken, B as Balances, i as BitcoinNetwork, j as BlockchainBalance, C as Channel, k as ChannelClosingTransaction, m as ChannelFees, n as ChannelOpeningTransaction, p as ChannelStatus, q as ChannelToTransactionsConnection, r as CreateApiTokenInput, s as CreateApiTokenOutput, t as CreateInvoiceInput, u as CreateInvoiceOutput, v as CreateNodeWalletAddressInput, w as CreateNodeWalletAddressOutput, x as CurrencyAmount, y as CurrencyUnit, D as DeleteApiTokenInput, z as DeleteApiTokenOutput, E as Deposit, G as Entity, H as FeeEstimate, I as FundNodeInput, J as FundNodeOutput, K as GraphNode, M as Hop, O as HtlcAttemptFailureCode, P as IncomingPayment, Q as IncomingPaymentAttempt, S as IncomingPaymentAttemptStatus, T as IncomingPaymentToAttemptsConnection, U as Invoice, W as InvoiceData, X as InvoiceType, Y as LightningFeeEstimateForInvoiceInput, Z as LightningFeeEstimateForNodeInput, _ as LightningFeeEstimateOutput, $ as LightningTransaction, a1 as LightsparkNode, a2 as LightsparkNodePurpose, a3 as LightsparkNodeStatus, a4 as LightsparkNodeToChannelsConnection, a5 as Node, a6 as NodeAddress, a7 as NodeAddressType, a8 as NodeToAddressesConnection, a9 as OnChainTransaction, ab as OutgoingPayment, ac as OutgoingPaymentAttempt, ad as OutgoingPaymentAttemptStatus, ae as OutgoingPaymentAttemptToHopsConnection, af as OutgoingPaymentToAttemptsConnection, ag as PageInfo, ah as PayInvoiceInput, ai as PayInvoiceOutput, aj as PaymentFailureReason, ak as PaymentRequest, am as PaymentRequestData, an as PaymentRequestStatus, ao as Permission, ap as RequestWithdrawalInput, aq as RequestWithdrawalOutput, ar as RichText, as as RoutingTransaction, au as RoutingTransactionFailureReason, av as Secret, aw as SendPaymentInput, ax as SendPaymentOutput, ay as SinglesNodeDashboard, az as Transaction, aB as TransactionFailures, aC as TransactionStatus, aD as TransactionType, aE as TransactionUpdate, aF as Wallet, aG as WebhookEventType, aH as Withdrawal, aJ as WithdrawalMode, aK as WithdrawalRequest, aL as WithdrawalRequestStatus, aM as WithdrawalRequestToChannelClosingTransactionsConnection, aN as WithdrawalRequestToChannelOpeningTransactionsConnection, h as getApiTokenQuery, l as getChannelClosingTransactionQuery, o as getChannelOpeningTransactionQuery, F as getDepositQuery, N as getHopQuery, R as getIncomingPaymentAttemptQuery, V as getInvoiceQuery, a0 as getLightningTransactionQuery, aa as getOnChainTransactionQuery, al as getPaymentRequestQuery, at as getRoutingTransactionQuery, aA as getTransactionQuery, aI as getWithdrawalQuery } from '../Withdrawal-f8570ed4.js';
1
+ export { A as Account, a as AccountToApiTokensConnection, b as AccountToChannelsConnection, c as AccountToNodesConnection, d as AccountToPaymentRequestsConnection, e as AccountToTransactionsConnection, f as AccountToWalletsConnection, g as ApiToken, B as Balances, i as BitcoinNetwork, j as BlockchainBalance, C as Channel, k as ChannelClosingTransaction, m as ChannelFees, n as ChannelOpeningTransaction, p as ChannelStatus, q as ChannelToTransactionsConnection, r as CreateApiTokenInput, s as CreateApiTokenOutput, t as CreateInvoiceInput, u as CreateInvoiceOutput, v as CreateNodeWalletAddressInput, w as CreateNodeWalletAddressOutput, x as CurrencyAmount, y as CurrencyUnit, D as DeleteApiTokenInput, z as DeleteApiTokenOutput, E as Deposit, G as Entity, H as FeeEstimate, I as FundNodeInput, J as FundNodeOutput, K as GraphNode, M as Hop, O as HtlcAttemptFailureCode, P as IncomingPayment, Q as IncomingPaymentAttempt, S as IncomingPaymentAttemptStatus, T as IncomingPaymentToAttemptsConnection, U as Invoice, W as InvoiceData, X as InvoiceType, Y as LightningFeeEstimateForInvoiceInput, Z as LightningFeeEstimateForNodeInput, _ as LightningFeeEstimateOutput, $ as LightningTransaction, a1 as LightsparkNode, a2 as LightsparkNodePurpose, a3 as LightsparkNodeStatus, a4 as LightsparkNodeToChannelsConnection, a5 as Node, a6 as NodeAddress, a7 as NodeAddressType, a8 as NodeToAddressesConnection, a9 as OnChainTransaction, ab as OutgoingPayment, ac as OutgoingPaymentAttempt, ad as OutgoingPaymentAttemptStatus, ae as OutgoingPaymentAttemptToHopsConnection, af as OutgoingPaymentToAttemptsConnection, ag as PageInfo, ah as PayInvoiceInput, ai as PayInvoiceOutput, aj as PaymentFailureReason, ak as PaymentRequest, am as PaymentRequestData, an as PaymentRequestStatus, ao as Permission, ap as RequestWithdrawalInput, aq as RequestWithdrawalOutput, ar as RichText, as as RoutingTransaction, au as RoutingTransactionFailureReason, av as Secret, aw as SendPaymentInput, ax as SendPaymentOutput, ay as SingleNodeDashboard, az as Transaction, aB as TransactionFailures, aC as TransactionStatus, aD as TransactionType, aE as TransactionUpdate, aF as Wallet, aG as WebhookEventType, aH as Withdrawal, aJ as WithdrawalMode, aK as WithdrawalRequest, aL as WithdrawalRequestStatus, aM as WithdrawalRequestToChannelClosingTransactionsConnection, aN as WithdrawalRequestToChannelOpeningTransactionsConnection, h as getApiTokenQuery, l as getChannelClosingTransactionQuery, o as getChannelOpeningTransactionQuery, F as getDepositQuery, N as getHopQuery, R as getIncomingPaymentAttemptQuery, V as getInvoiceQuery, a0 as getLightningTransactionQuery, aa as getOnChainTransactionQuery, al as getPaymentRequestQuery, at as getRoutingTransactionQuery, aA as getTransactionQuery, aI as getWithdrawalQuery } from '../Withdrawal-f68ab02c.js';
2
2
  import '@lightsparkdev/core';
3
3
  import 'zen-observable';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightsparkdev/lightspark-sdk",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Lightspark JS SDK",
5
5
  "author": "Lightspark Inc.",
6
6
  "keywords": [
@@ -57,24 +57,25 @@
57
57
  ],
58
58
  "scripts": {
59
59
  "build": "tsup --entry src/index.ts --entry src/objects/index.ts --format cjs,esm --dts",
60
- "copy-static": "cp ./package.json ./README.md ./LICENSE ./dist/",
61
- "dev": "yarn build -- --watch",
62
60
  "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
63
- "lint": "npx prettier --check ./src",
61
+ "dev": "yarn build -- --watch",
62
+ "docs": "typedoc src",
64
63
  "format": "npx prettier --write ./src",
64
+ "lint": "npx prettier --check ./src",
65
+ "postversion": "yarn build",
65
66
  "test": "tsc --noEmit --project tsconfig-test.json && jest --no-cache --runInBand --bail",
66
- "type-check": "tsc --noEmit",
67
- "postversion": "yarn build"
67
+ "type-check": "tsc --noEmit"
68
68
  },
69
69
  "license": "Apache-2.0",
70
70
  "dependencies": {
71
- "@lightsparkdev/core": "^0.2.2",
71
+ "@lightsparkdev/core": "^0.2.3",
72
72
  "auto-bind": "^5.0.1",
73
73
  "crypto": "^1.0.1",
74
74
  "crypto-browserify": "^3.12.0",
75
75
  "dayjs": "^1.11.7",
76
76
  "graphql": "^16.6.0",
77
77
  "graphql-ws": "^5.11.3",
78
+ "typedoc": "^0.24.7",
78
79
  "ws": "^8.12.1",
79
80
  "zen-observable-ts": "^1.1.0"
80
81
  },
@@ -86,7 +87,7 @@
86
87
  "prettier-plugin-organize-imports": "^3.2.2",
87
88
  "ts-jest": "^29.0.5",
88
89
  "ts-node": "^10.9.1",
89
- "typescript": "^4.9.5",
90
- "tsconfig": "*"
90
+ "tsconfig": "*",
91
+ "typescript": "^4.9.5"
91
92
  }
92
93
  }
package/dist/.DS_Store DELETED
Binary file