homey-api 1.7.5 → 1.7.6
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.
|
@@ -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
|
},
|
|
@@ -2344,6 +2344,10 @@
|
|
|
2344
2344
|
|
|
2345
2345
|
|
|
2346
2346
|
|
|
2347
|
+
ipExternalPort: Number,
|
|
2348
|
+
|
|
2349
|
+
|
|
2350
|
+
|
|
2347
2351
|
localUrl: string,
|
|
2348
2352
|
|
|
2349
2353
|
|
|
@@ -2456,6 +2460,10 @@
|
|
|
2456
2460
|
|
|
2457
2461
|
|
|
2458
2462
|
|
|
2463
|
+
ipExternalPort: Number,
|
|
2464
|
+
|
|
2465
|
+
|
|
2466
|
+
|
|
2459
2467
|
localUrl: string,
|
|
2460
2468
|
|
|
2461
2469
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homey-api",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.6",
|
|
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",
|