gofelix 1.0.0 → 1.0.1

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 (2) hide show
  1. package/README.md +9 -17
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,17 +1,9 @@
1
- # GoFelix
2
-
3
- The GoFelix API Library for NodeJS provides backend integration with the GoFelix Gateway. It includes 3 API groups User, BI, and Online. Each API group requires its own authentication level, so ensure your package has the correct permissions.
4
-
5
- ---
6
-
7
- ## 🚀 Scripts
8
-
9
- This project includes several npm scripts to build, obfuscate, and prepare the package for publishing.
10
-
11
- ---
12
-
13
- ### 🔧 Build production
14
-
15
- ```bash
16
-
17
- ```
1
+ # GoFelix API
2
+
3
+ ## GoFelix API Library BINodeJS (v1.0)
4
+
5
+ The GoFelix API Library for NodeJS provides backend integration with the GoFelix Gateway. It includes 3 API groups — **User**, **BI**, and **Online**. Each API group requires its own authentication level, so ensure your package has the correct permissions.
6
+
7
+ Please refer to our documentation
8
+
9
+ [GoFelix API](https://www.gofelix.co.uk/Documentation)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gofelix",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "GoFelix Library",
5
5
  "main": "./dist/index.js",
6
6
  "files": [
@@ -42,6 +42,7 @@
42
42
  "dependencies": {
43
43
  "axios": "^0.21.1",
44
44
  "crypto-js": "^4.0.0",
45
- "lodash": "^4.17.21"
45
+ "lodash": "^4.17.21",
46
+ "turndown": "^7.2.4"
46
47
  }
47
48
  }