homey-api 1.10.17 → 1.10.18
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.
|
@@ -418,25 +418,6 @@
|
|
|
418
418
|
"homey.system.readonly"
|
|
419
419
|
],
|
|
420
420
|
"parameters": {}
|
|
421
|
-
},
|
|
422
|
-
"runCommand": {
|
|
423
|
-
"method": "post",
|
|
424
|
-
"path": "/command",
|
|
425
|
-
"private": false,
|
|
426
|
-
"scopes": [
|
|
427
|
-
"homey.system"
|
|
428
|
-
],
|
|
429
|
-
"parameters": {
|
|
430
|
-
"command": {
|
|
431
|
-
"in": "body",
|
|
432
|
-
"type": "string",
|
|
433
|
-
"required": true
|
|
434
|
-
},
|
|
435
|
-
"opts": {
|
|
436
|
-
"in": "body",
|
|
437
|
-
"type": "object"
|
|
438
|
-
}
|
|
439
|
-
}
|
|
440
421
|
}
|
|
441
422
|
}
|
|
442
423
|
},
|
|
@@ -4401,6 +4382,30 @@
|
|
|
4401
4382
|
"homey.system"
|
|
4402
4383
|
],
|
|
4403
4384
|
"parameters": {}
|
|
4385
|
+
},
|
|
4386
|
+
"getLog": {
|
|
4387
|
+
"method": "get",
|
|
4388
|
+
"path": "/log",
|
|
4389
|
+
"private": false,
|
|
4390
|
+
"scopes": [
|
|
4391
|
+
"homey.system"
|
|
4392
|
+
],
|
|
4393
|
+
"parameters": {}
|
|
4394
|
+
},
|
|
4395
|
+
"setLogEnabled": {
|
|
4396
|
+
"method": "put",
|
|
4397
|
+
"path": "/log",
|
|
4398
|
+
"private": false,
|
|
4399
|
+
"scopes": [
|
|
4400
|
+
"homey.system"
|
|
4401
|
+
],
|
|
4402
|
+
"parameters": {
|
|
4403
|
+
"enabled": {
|
|
4404
|
+
"in": "body",
|
|
4405
|
+
"type": "boolean",
|
|
4406
|
+
"required": true
|
|
4407
|
+
}
|
|
4408
|
+
}
|
|
4404
4409
|
}
|
|
4405
4410
|
}
|
|
4406
4411
|
}
|
|
@@ -11364,29 +11364,6 @@
|
|
|
11364
11364
|
|
|
11365
11365
|
getState(
|
|
11366
11366
|
|
|
11367
|
-
):
|
|
11368
|
-
Promise<any>;
|
|
11369
|
-
|
|
11370
|
-
runCommand(
|
|
11371
|
-
|
|
11372
|
-
|
|
11373
|
-
|
|
11374
|
-
|
|
11375
|
-
opts: {
|
|
11376
|
-
|
|
11377
|
-
|
|
11378
|
-
command: string,
|
|
11379
|
-
|
|
11380
|
-
|
|
11381
|
-
|
|
11382
|
-
opts: object,
|
|
11383
|
-
|
|
11384
|
-
|
|
11385
|
-
},
|
|
11386
|
-
|
|
11387
|
-
|
|
11388
|
-
|
|
11389
|
-
|
|
11390
11367
|
):
|
|
11391
11368
|
Promise<any>;
|
|
11392
11369
|
|
|
@@ -15077,6 +15054,30 @@
|
|
|
15077
15054
|
|
|
15078
15055
|
|
|
15079
15056
|
|
|
15057
|
+
):
|
|
15058
|
+
Promise<any>;
|
|
15059
|
+
|
|
15060
|
+
getLog(
|
|
15061
|
+
|
|
15062
|
+
):
|
|
15063
|
+
Promise<any>;
|
|
15064
|
+
|
|
15065
|
+
setLogEnabled(
|
|
15066
|
+
|
|
15067
|
+
|
|
15068
|
+
|
|
15069
|
+
|
|
15070
|
+
opts: {
|
|
15071
|
+
|
|
15072
|
+
|
|
15073
|
+
enabled: boolean,
|
|
15074
|
+
|
|
15075
|
+
|
|
15076
|
+
},
|
|
15077
|
+
|
|
15078
|
+
|
|
15079
|
+
|
|
15080
|
+
|
|
15080
15081
|
):
|
|
15081
15082
|
Promise<any>;
|
|
15082
15083
|
|
|
@@ -17321,29 +17321,6 @@
|
|
|
17321
17321
|
|
|
17322
17322
|
getState(
|
|
17323
17323
|
|
|
17324
|
-
):
|
|
17325
|
-
Promise<any>;
|
|
17326
|
-
|
|
17327
|
-
runCommand(
|
|
17328
|
-
|
|
17329
|
-
|
|
17330
|
-
|
|
17331
|
-
|
|
17332
|
-
opts: {
|
|
17333
|
-
|
|
17334
|
-
|
|
17335
|
-
command: string,
|
|
17336
|
-
|
|
17337
|
-
|
|
17338
|
-
|
|
17339
|
-
opts: object,
|
|
17340
|
-
|
|
17341
|
-
|
|
17342
|
-
},
|
|
17343
|
-
|
|
17344
|
-
|
|
17345
|
-
|
|
17346
|
-
|
|
17347
17324
|
):
|
|
17348
17325
|
Promise<any>;
|
|
17349
17326
|
|
|
@@ -21185,6 +21162,30 @@
|
|
|
21185
21162
|
|
|
21186
21163
|
flashFirmware(
|
|
21187
21164
|
|
|
21165
|
+
):
|
|
21166
|
+
Promise<any>;
|
|
21167
|
+
|
|
21168
|
+
getLog(
|
|
21169
|
+
|
|
21170
|
+
):
|
|
21171
|
+
Promise<any>;
|
|
21172
|
+
|
|
21173
|
+
setLogEnabled(
|
|
21174
|
+
|
|
21175
|
+
|
|
21176
|
+
|
|
21177
|
+
|
|
21178
|
+
opts: {
|
|
21179
|
+
|
|
21180
|
+
|
|
21181
|
+
enabled: boolean,
|
|
21182
|
+
|
|
21183
|
+
|
|
21184
|
+
},
|
|
21185
|
+
|
|
21186
|
+
|
|
21187
|
+
|
|
21188
|
+
|
|
21188
21189
|
):
|
|
21189
21190
|
Promise<any>;
|
|
21190
21191
|
|