homey-api 1.7.5 → 1.7.7
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.
|
@@ -105,6 +105,14 @@
|
|
|
105
105
|
"type": "string",
|
|
106
106
|
"in": "body"
|
|
107
107
|
},
|
|
108
|
+
"homeyPlatform": {
|
|
109
|
+
"type": "string",
|
|
110
|
+
"in": "body"
|
|
111
|
+
},
|
|
112
|
+
"homeyPlatformVersion": {
|
|
113
|
+
"type": "number",
|
|
114
|
+
"in": "body"
|
|
115
|
+
},
|
|
108
116
|
"version": {
|
|
109
117
|
"type": "string",
|
|
110
118
|
"in": "body"
|
|
@@ -699,6 +699,9 @@
|
|
|
699
699
|
"ipExternalCountry": {
|
|
700
700
|
"type": "string"
|
|
701
701
|
},
|
|
702
|
+
"ipExternalPort": {
|
|
703
|
+
"type": "Number"
|
|
704
|
+
},
|
|
702
705
|
"localUrl": {
|
|
703
706
|
"type": "string"
|
|
704
707
|
},
|
|
@@ -782,6 +785,9 @@
|
|
|
782
785
|
"ipExternalCountry": {
|
|
783
786
|
"type": "string"
|
|
784
787
|
},
|
|
788
|
+
"ipExternalPort": {
|
|
789
|
+
"type": "Number"
|
|
790
|
+
},
|
|
785
791
|
"localUrl": {
|
|
786
792
|
"type": "string"
|
|
787
793
|
},
|
|
@@ -1220,6 +1220,14 @@
|
|
|
1220
1220
|
|
|
1221
1221
|
|
|
1222
1222
|
|
|
1223
|
+
homeyPlatform: string,
|
|
1224
|
+
|
|
1225
|
+
|
|
1226
|
+
|
|
1227
|
+
homeyPlatformVersion: number,
|
|
1228
|
+
|
|
1229
|
+
|
|
1230
|
+
|
|
1223
1231
|
version: string,
|
|
1224
1232
|
|
|
1225
1233
|
|
|
@@ -2344,6 +2352,10 @@
|
|
|
2344
2352
|
|
|
2345
2353
|
|
|
2346
2354
|
|
|
2355
|
+
ipExternalPort: Number,
|
|
2356
|
+
|
|
2357
|
+
|
|
2358
|
+
|
|
2347
2359
|
localUrl: string,
|
|
2348
2360
|
|
|
2349
2361
|
|
|
@@ -2456,6 +2468,10 @@
|
|
|
2456
2468
|
|
|
2457
2469
|
|
|
2458
2470
|
|
|
2471
|
+
ipExternalPort: Number,
|
|
2472
|
+
|
|
2473
|
+
|
|
2474
|
+
|
|
2459
2475
|
localUrl: string,
|
|
2460
2476
|
|
|
2461
2477
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homey-api",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.7",
|
|
4
4
|
"description": "Homey API",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -14,18 +14,19 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
16
16
|
"lint": "eslint .",
|
|
17
|
-
"serve": "concurrently \"serve
|
|
17
|
+
"serve": "concurrently \"serve jsdoc/\" \"npm run jsdoc:watch\"",
|
|
18
18
|
"build": "npm run build:specs; npm run build:jsdoc; npm run build:types; npm run build:webpack;",
|
|
19
19
|
"build:webpack": "npm run webpack",
|
|
20
20
|
"build:webpack:watch": "npm run webpack:watch",
|
|
21
21
|
"build:types": "npm run generate-types;",
|
|
22
22
|
"build:specs": "npm run generate-specs",
|
|
23
|
+
"build:jsdoc": "npm run jsdoc",
|
|
23
24
|
"webpack": "webpack",
|
|
24
25
|
"webpack:watch": "webpack --watch",
|
|
25
26
|
"jsdoc": "npm run jsdoc:clean; npm run generate-specs; npm run generate-jsdoc; jsdoc --configure ./jsdoc.json --recurse; jsdoc --configure ./jsdoc.json --recurse --private --destination ./jsdoc/private; rm ./jsdoc/*.js.html;",
|
|
26
27
|
"jsdoc:clean": "rm -rf ./build/jsdoc; rm -rf ./build/jsdoc-tmp",
|
|
27
|
-
"jsdoc:watch": "watch \"npm run jsdoc:clean; npm run generate-jsdoc; npm run jsdoc;\" lib \"node_modules/
|
|
28
|
-
"jsdoc:serve": "http-server ./
|
|
28
|
+
"jsdoc:watch": "watch \"npm run jsdoc:clean; npm run generate-jsdoc; npm run jsdoc;\" lib \"node_modules/@athombv/jsdoc-template\" --interval 0.5",
|
|
29
|
+
"jsdoc:serve": "http-server ./jsdoc/",
|
|
29
30
|
"generate-specs": "node tools/generate-specs.js",
|
|
30
31
|
"generate-jsdoc": "node tools/generate-jsdoc.js",
|
|
31
32
|
"generate-types": "node tools/generate-types.js",
|