homey-api 1.10.11 → 1.10.13

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.
@@ -79,6 +79,14 @@
79
79
  "homeyPlatform": {
80
80
  "in": "query",
81
81
  "type": "string"
82
+ },
83
+ "homeyPlatformVersion": {
84
+ "in": "query",
85
+ "type": "string"
86
+ },
87
+ "homeyModel": {
88
+ "in": "query",
89
+ "type": "string"
82
90
  }
83
91
  }
84
92
  },
@@ -216,6 +216,14 @@
216
216
  homeyPlatform: string,
217
217
 
218
218
 
219
+
220
+ homeyPlatformVersion: string,
221
+
222
+
223
+
224
+ homeyModel: string,
225
+
226
+
219
227
  },
220
228
 
221
229
 
package/index.browser.js CHANGED
@@ -8,3 +8,6 @@ global.AthomCloudAPI = require('./lib/AthomCloudAPI');
8
8
  global.AthomStoreAPI = require('./lib/AthomStoreAPI');
9
9
  global.AthomBackupAPI = require('./lib/AthomBackupAPI');
10
10
  global.HomeyCloudAPI = require('./lib/HomeyCloudAPI');
11
+ global.HomeyAPIV2 = require('./lib/HomeyAPI/HomeyAPIV2');
12
+ global.HomeyAPIV3Local = require('./lib/HomeyAPI/HomeyAPIV3Local');
13
+ global.HomeyAPIV3Cloud = require('./lib/HomeyAPI/HomeyAPIV3Cloud');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-api",
3
- "version": "1.10.11",
3
+ "version": "1.10.13",
4
4
  "description": "Homey API",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -48,7 +48,7 @@
48
48
  "core-js": "^3.19.1",
49
49
  "node-fetch": "^2.6.7",
50
50
  "regenerator-runtime": "^0.13.9",
51
- "socket.io-client": "^1.7.4"
51
+ "socket.io-client": "^2.5.0"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@athombv/jsdoc-template": "^1.6.1",