hoffmation-base 3.0.0-alpha.76 → 3.0.0-alpha.77
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/lib/server/devices/device-cluster.js +1 -0
- package/lib/server/devices/deviceType.d.ts +1 -0
- package/lib/server/devices/deviceType.js +1 -0
- package/lib/server/devices/deviceUpdater.js +8 -0
- package/lib/server/devices/devices.d.ts +5 -0
- package/lib/server/devices/devices.js +16 -5
- package/lib/server/devices/index.d.ts +1 -0
- package/lib/server/devices/index.js +1 -0
- package/lib/server/devices/velux/index.d.ts +4 -0
- package/lib/server/devices/velux/index.js +11 -0
- package/lib/server/devices/velux/veluxDevice.d.ts +13 -0
- package/lib/server/devices/velux/veluxDevice.js +43 -0
- package/lib/server/devices/velux/veluxDeviceRegistrationInfo.d.ts +9 -0
- package/lib/server/devices/velux/veluxDeviceRegistrationInfo.js +13 -0
- package/lib/server/devices/velux/veluxService.d.ts +7 -0
- package/lib/server/devices/velux/veluxService.js +44 -0
- package/lib/server/devices/velux/veluxShutter.d.ts +27 -0
- package/lib/server/devices/velux/veluxShutter.js +122 -0
- package/lib/server/services/ShutterService.js +1 -0
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +18 -18
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hoffmation-base",
|
|
3
3
|
"description": "Base Libraries and functions for own Hoffmation projects",
|
|
4
|
-
"version": "3.0.0-alpha.
|
|
4
|
+
"version": "3.0.0-alpha.77",
|
|
5
5
|
"files": [
|
|
6
6
|
"lib/**/*"
|
|
7
7
|
],
|
|
@@ -48,18 +48,18 @@
|
|
|
48
48
|
"manual-test-unifi": "tsc && ts-node ./manualTests/unifi-test.ts"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@iobroker/types": "^6.0.
|
|
51
|
+
"@iobroker/types": "^6.0.10",
|
|
52
52
|
"@svrooij/sonos": "^2.5.0",
|
|
53
53
|
"@types/debug": "^4.1.12",
|
|
54
54
|
"@types/jest": "^29.5.12",
|
|
55
|
-
"@types/lodash": "^4.17.
|
|
56
|
-
"@types/node": "
|
|
55
|
+
"@types/lodash": "^4.17.7",
|
|
56
|
+
"@types/node": "22.2.0",
|
|
57
57
|
"@types/node-telegram-bot-api": "^0.64.7",
|
|
58
58
|
"@types/pg": "^8.11.6",
|
|
59
59
|
"@types/socket.io-client": "^1.4.36",
|
|
60
60
|
"@types/xml2js": "^0.4.14",
|
|
61
|
-
"aws-sdk": "2.
|
|
62
|
-
"axios": "^1.7.
|
|
61
|
+
"aws-sdk": "2.1672.0",
|
|
62
|
+
"axios": "^1.7.3",
|
|
63
63
|
"daikin-controller": "^2.1.0",
|
|
64
64
|
"get-mp3-duration": "^1.0.0",
|
|
65
65
|
"https": "^1.0.0",
|
|
@@ -72,29 +72,29 @@
|
|
|
72
72
|
"pg": "^8.12.0",
|
|
73
73
|
"rss-parser": "^3.13.0",
|
|
74
74
|
"samsung-tv-control": "^1.14.0",
|
|
75
|
-
"socket.io-client": "2.5.
|
|
75
|
+
"socket.io-client": "2.5.0",
|
|
76
76
|
"suncalc": "1.9.0",
|
|
77
77
|
"sunrise-sunset-js": "^2.2.1",
|
|
78
78
|
"tibber-api": "^5.1.11",
|
|
79
|
-
"victron-mqtt-consumer": "^0.1.
|
|
79
|
+
"victron-mqtt-consumer": "^0.1.14"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@alcalzone/release-script": "^3.
|
|
82
|
+
"@alcalzone/release-script": "^3.8.0",
|
|
83
83
|
"@types/node-ssdp": "^4.0.4",
|
|
84
84
|
"@types/suncalc": "^1.9.2",
|
|
85
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
86
|
-
"@typescript-eslint/parser": "^7.
|
|
87
|
-
"autoprefixer": "^10.4.
|
|
85
|
+
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
86
|
+
"@typescript-eslint/parser": "^7.18.0",
|
|
87
|
+
"autoprefixer": "^10.4.20",
|
|
88
88
|
"coveralls": "^3.1.1",
|
|
89
|
-
"eslint": "8.
|
|
89
|
+
"eslint": "8.57.0",
|
|
90
90
|
"eslint-config-prettier": "^9.1.0",
|
|
91
|
-
"eslint-plugin-prettier": "5.1
|
|
91
|
+
"eslint-plugin-prettier": "5.2.1",
|
|
92
92
|
"eslint-plugin-unused-imports": "^3.2.0",
|
|
93
|
-
"eslint-plugin-jsdoc": "^
|
|
93
|
+
"eslint-plugin-jsdoc": "^50.0.1",
|
|
94
94
|
"jest": "^29.7.0",
|
|
95
|
-
"prettier": "^3.3.
|
|
96
|
-
"ts-jest": "^29.
|
|
95
|
+
"prettier": "^3.3.3",
|
|
96
|
+
"ts-jest": "^29.2.4",
|
|
97
97
|
"ts-node": "^10.9.2",
|
|
98
|
-
"typescript": "^5.5.
|
|
98
|
+
"typescript": "^5.5.4"
|
|
99
99
|
}
|
|
100
100
|
}
|