@corvina/device-client 1.0.10 → 1.0.11
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/README.md
CHANGED
|
@@ -11,7 +11,9 @@ yarn install @corvina/device-client
|
|
|
11
11
|
Run the device using the given runner:
|
|
12
12
|
|
|
13
13
|
```ts
|
|
14
|
-
import
|
|
14
|
+
import dotenv from "dotenv"
|
|
15
|
+
dotenv.config()
|
|
16
|
+
|
|
15
17
|
import { DeviceRunnerService, DeviceService } from '@corvina/device-client';
|
|
16
18
|
|
|
17
19
|
const devRunner = new DeviceRunnerService(new DeviceService());
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@corvina/device-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"description": "Corvina NodeJS Device Client",
|
|
5
5
|
"author": "arrigo.zanette@corvina.io",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
],
|
|
11
11
|
"main": "index.js",
|
|
12
12
|
"exports": {
|
|
13
|
-
".": "./dist/index.js",
|
|
14
13
|
"./": "./dist/"
|
|
15
14
|
},
|
|
15
|
+
"types": "index.d.ts",
|
|
16
16
|
"typesVersions": {
|
|
17
17
|
"*": {
|
|
18
18
|
"*": [
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"ts-jest": "^27.0.7",
|
|
84
84
|
"ts-node": "^10.3.0",
|
|
85
85
|
"tsconfig-paths": "^3.11.0",
|
|
86
|
-
"typescript": "^4.
|
|
86
|
+
"typescript": "^4.7.4"
|
|
87
87
|
},
|
|
88
88
|
"jest": {
|
|
89
89
|
"moduleFileExtensions": [
|
|
@@ -99,7 +99,6 @@
|
|
|
99
99
|
"coverageDirectory": "./coverage",
|
|
100
100
|
"testEnvironment": "node"
|
|
101
101
|
},
|
|
102
|
-
"types": "./dist/index.d.ts",
|
|
103
102
|
"homepage": "https://github.com/corvina/corvina-device-sdk#readme",
|
|
104
|
-
"gitHead": "
|
|
103
|
+
"gitHead": "25774fafc43574c1343db89275aa30e343d53ba1"
|
|
105
104
|
}
|