@monerium/sdk 2.6.3 → 2.6.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,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.6.5](https://github.com/monerium/sdk/compare/v2.6.4...v2.6.5) (2023-10-18)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * script to manually expand static file sidebar ([7b24240](https://github.com/monerium/sdk/commit/7b24240f642b80e05d2fd67665dbd6fe10f7aca5))
9
+
10
+ ## [2.6.4](https://github.com/monerium/sdk/compare/v2.6.3...v2.6.4) (2023-10-18)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **docs:** add links and fix sidebar not expading ([c8eab4a](https://github.com/monerium/sdk/commit/c8eab4a2006ea7068c442828c7e2e65eaedf8b71))
16
+
3
17
  ## [2.6.3](https://github.com/monerium/sdk/compare/v2.6.2...v2.6.3) (2023-10-18)
4
18
 
5
19
 
package/README.md CHANGED
@@ -3,12 +3,16 @@
3
3
  Everything you need to interact with the [Monerium API](https://monerium.dev/api-docs) - an electronic money issuer.
4
4
 
5
5
  _This package is in development. Please make sure to check if any future updates contain commits
6
- that may change the behavior of your application before you upgrade._
6
+ that may change the behavior of your application before you upgrade. If you find any issues please report them [here](https://github.com/monerium/sdk/issues)._
7
+
8
+ [NPM package](https://www.npmjs.com/package/@monerium/sdk)
7
9
 
8
10
  [Source code](https://github.com/monerium/sdk)
9
11
 
10
12
  [SDK Documentation](https://monerium.github.io/sdk/)
11
13
 
14
+ [SDK JS-Docs](https://monerium.github.io/sdk/)
15
+
12
16
  [Code coverage](https://monerium.github.io/sdk/coverage)
13
17
 
14
18
  ## Installing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monerium/sdk",
3
- "version": "2.6.3",
3
+ "version": "2.6.5",
4
4
  "description": "Everything you need to interact with the Monerium API - an electronic money issuer.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -29,7 +29,7 @@
29
29
  "build": "NODE_OPTIONS=--experimental-fetch yarn build:main",
30
30
  "build:main": "tsc && vite --config ./configs/vite.config.ts build && dts-bundle-generator --config ./configs/dts-bundle-generator.ts",
31
31
  "clean": "rm -rf dist && rm -rf node_modules && rm -rf static",
32
- "docs": "typedoc --options configs/typedoc.json",
32
+ "docs": "typedoc --options configs/typedoc.json --entryPointStrategy expand && node scripts/editStatic.js",
33
33
  "docs:watch": "yarn docs --watch",
34
34
  "format": "prettier . --write --ignore-path ./configs/.prettierignore",
35
35
  "lint": "eslint . -c ./.eslintrc --ext .ts",