@breeztech/breez-sdk-spark 0.12.2-dev1 → 0.12.2-dev2

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.
Files changed (32) hide show
  1. package/README.md +4 -4
  2. package/breez-sdk-spark.tgz +0 -0
  3. package/bundler/breez_sdk_spark_wasm.d.ts +731 -601
  4. package/bundler/breez_sdk_spark_wasm_bg.js +151 -54
  5. package/bundler/breez_sdk_spark_wasm_bg.wasm +0 -0
  6. package/bundler/breez_sdk_spark_wasm_bg.wasm.d.ts +7 -5
  7. package/bundler/storage/index.js +65 -43
  8. package/deno/breez_sdk_spark_wasm.d.ts +731 -601
  9. package/deno/breez_sdk_spark_wasm.js +141 -54
  10. package/deno/breez_sdk_spark_wasm_bg.wasm +0 -0
  11. package/deno/breez_sdk_spark_wasm_bg.wasm.d.ts +7 -5
  12. package/nodejs/breez_sdk_spark_wasm.d.ts +731 -601
  13. package/nodejs/breez_sdk_spark_wasm.js +151 -54
  14. package/nodejs/breez_sdk_spark_wasm_bg.wasm +0 -0
  15. package/nodejs/breez_sdk_spark_wasm_bg.wasm.d.ts +7 -5
  16. package/nodejs/index.js +16 -2
  17. package/nodejs/package.json +1 -0
  18. package/nodejs/postgres-storage/index.cjs +42 -31
  19. package/nodejs/postgres-storage/migrations.cjs +24 -0
  20. package/nodejs/postgres-token-store/errors.cjs +13 -0
  21. package/nodejs/postgres-token-store/index.cjs +857 -0
  22. package/nodejs/postgres-token-store/migrations.cjs +163 -0
  23. package/nodejs/postgres-token-store/package.json +9 -0
  24. package/nodejs/postgres-tree-store/index.cjs +12 -2
  25. package/nodejs/storage/index.cjs +19 -28
  26. package/nodejs/storage/migrations.cjs +18 -0
  27. package/package.json +1 -1
  28. package/web/breez_sdk_spark_wasm.d.ts +738 -606
  29. package/web/breez_sdk_spark_wasm.js +141 -54
  30. package/web/breez_sdk_spark_wasm_bg.wasm +0 -0
  31. package/web/breez_sdk_spark_wasm_bg.wasm.d.ts +7 -5
  32. package/web/storage/index.js +65 -43
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
- # Breez SDK - Nodeless (_Spark Implementation_)
1
+ # Breez SDK - Spark
2
2
 
3
- ## **What Is the Breez SDK?**
3
+ ## **What is the Breez SDK?**
4
4
 
5
5
  The Breez SDK provides developers with an end-to-end solution for integrating self-custodial Lightning into their apps and services. It eliminates the need for third parties, simplifies the complexities of Bitcoin and Lightning, and enables seamless onboarding for billions of users to the future of value transfer.
6
6
 
7
- ## **What Is the Breez SDK - Nodeless _(Spark Implementation)_?**
7
+ ## **What is the Breez SDK - Spark?**
8
8
 
9
9
  It’s a nodeless integration that offers a self-custodial, end-to-end solution for integrating Lightning payments, utilizing Spark with on-chain interoperability and third-party fiat on-ramps.
10
10
 
@@ -24,7 +24,7 @@ yarn add @breeztech/breez-sdk-spark
24
24
 
25
25
  ## Usage
26
26
 
27
- Head over to the Breez SDK - Nodeless _(Spark Implementation)_ [documentation](https://sdk-doc-spark.breez.technology/) to start implementing Lightning in your app.
27
+ Head over to the Breez SDK - Spark [documentation](https://sdk-doc-spark.breez.technology/) to start implementing Lightning in your app.
28
28
 
29
29
  ### Web
30
30
 
Binary file