homey-api 3.12.1 → 3.12.2

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.
@@ -1255,6 +1255,9 @@
1255
1255
  },
1256
1256
  "uiIndicator": {
1257
1257
  "type": "string"
1258
+ },
1259
+ "hidden": {
1260
+ "type": "boolean"
1258
1261
  }
1259
1262
  }
1260
1263
  }
@@ -1335,6 +1338,101 @@
1335
1338
  "type": "string"
1336
1339
  }
1337
1340
  }
1341
+ },
1342
+ "createGroup": {
1343
+ "method": "post",
1344
+ "path": "/group",
1345
+ "private": false,
1346
+ "scopes": [
1347
+ "homey.device"
1348
+ ],
1349
+ "parameters": {
1350
+ "group": {
1351
+ "in": "body",
1352
+ "type": "object",
1353
+ "root": true,
1354
+ "required": true,
1355
+ "properties": {
1356
+ "name": {
1357
+ "type": "string",
1358
+ "required": true
1359
+ },
1360
+ "class": {
1361
+ "type": "string",
1362
+ "required": true
1363
+ },
1364
+ "zoneId": {
1365
+ "type": "string",
1366
+ "required": true
1367
+ },
1368
+ "deviceIds": {
1369
+ "type": "array",
1370
+ "required": true
1371
+ },
1372
+ "iconOverride": {
1373
+ "type": "string"
1374
+ },
1375
+ "iconDeviceId": {
1376
+ "type": "string"
1377
+ }
1378
+ }
1379
+ }
1380
+ }
1381
+ },
1382
+ "deleteDeviceFromGroup": {
1383
+ "method": "delete",
1384
+ "path": "/group/:groupId/device/:deviceId",
1385
+ "private": false,
1386
+ "scopes": [
1387
+ "homey.device"
1388
+ ],
1389
+ "parameters": {
1390
+ "deviceId": {
1391
+ "in": "path",
1392
+ "type": "string",
1393
+ "required": true
1394
+ },
1395
+ "groupId": {
1396
+ "in": "path",
1397
+ "type": "string",
1398
+ "required": true
1399
+ }
1400
+ }
1401
+ },
1402
+ "updateGroup": {
1403
+ "method": "put",
1404
+ "path": "/group/:id",
1405
+ "private": false,
1406
+ "scopes": [
1407
+ "homey.device"
1408
+ ],
1409
+ "parameters": {
1410
+ "id": {
1411
+ "in": "path",
1412
+ "type": "string",
1413
+ "required": true
1414
+ },
1415
+ "group": {
1416
+ "in": "body",
1417
+ "type": "object",
1418
+ "root": true,
1419
+ "required": true,
1420
+ "properties": {
1421
+ "name": {
1422
+ "type": "string"
1423
+ },
1424
+ "deviceIds": {
1425
+ "type": "array"
1426
+ },
1427
+ "iconOverride": {
1428
+ "type": "string"
1429
+ },
1430
+ "iconDeviceId": {
1431
+ "type": "string"
1432
+ }
1433
+ }
1434
+ }
1435
+ }
1338
1436
  }
1339
1437
  }
1340
1438
  },
@@ -1873,6 +1971,33 @@
1873
1971
  "homey.energy"
1874
1972
  ]
1875
1973
  },
1974
+ "getOptionElectricityPriceDynamicPreferredInterval": {
1975
+ "method": "GET",
1976
+ "path": "/option/electricityPriceDynamicPreferredInterval",
1977
+ "scopes": [
1978
+ "homey.energy.readonly"
1979
+ ]
1980
+ },
1981
+ "setOptionElectricityPriceDynamicPreferredInterval": {
1982
+ "method": "PUT",
1983
+ "path": "/option/electricityPriceDynamicPreferredInterval",
1984
+ "scopes": [
1985
+ "homey.energy"
1986
+ ],
1987
+ "parameters": {
1988
+ "value": {
1989
+ "in": "body",
1990
+ "required": true
1991
+ }
1992
+ }
1993
+ },
1994
+ "unsetOptionElectricityPriceDynamicPreferredInterval": {
1995
+ "method": "DELETE",
1996
+ "path": "/option/electricityPriceDynamicPreferredInterval",
1997
+ "scopes": [
1998
+ "homey.energy"
1999
+ ]
2000
+ },
1876
2001
  "getState": {
1877
2002
  "method": "get",
1878
2003
  "path": "/state",
@@ -2025,6 +2150,129 @@
2025
2150
  }
2026
2151
  }
2027
2152
  },
2153
+ "fetchDynamicElectricityPrices": {
2154
+ "method": "get",
2155
+ "path": "/price/electricity/dynamic",
2156
+ "private": false,
2157
+ "scopes": [
2158
+ "homey.energy.readonly"
2159
+ ],
2160
+ "parameters": {
2161
+ "date": {
2162
+ "in": "query",
2163
+ "type": "string",
2164
+ "required": true
2165
+ }
2166
+ }
2167
+ },
2168
+ "setDynamicElectricityPriceUserCosts": {
2169
+ "method": "put",
2170
+ "path": "/price/electricity/dynamic/user-costs",
2171
+ "private": false,
2172
+ "scopes": [
2173
+ "homey.energy"
2174
+ ],
2175
+ "parameters": {
2176
+ "mathExpression": {
2177
+ "in": "body",
2178
+ "type": "string",
2179
+ "required": true
2180
+ },
2181
+ "type": {
2182
+ "in": "body",
2183
+ "type": "string"
2184
+ }
2185
+ }
2186
+ },
2187
+ "getDynamicElectricityPriceUserCosts": {
2188
+ "method": "get",
2189
+ "path": "/price/electricity/dynamic/user-costs",
2190
+ "private": false,
2191
+ "scopes": [
2192
+ "homey.energy.readonly"
2193
+ ],
2194
+ "parameters": {}
2195
+ },
2196
+ "unsetDynamicElectricityPriceUserCosts": {
2197
+ "method": "delete",
2198
+ "path": "/price/electricity/dynamic/user-costs",
2199
+ "private": false,
2200
+ "scopes": [
2201
+ "homey.energy"
2202
+ ],
2203
+ "parameters": {}
2204
+ },
2205
+ "setElectricityPriceType": {
2206
+ "method": "put",
2207
+ "path": "/price/electricity/:type",
2208
+ "private": false,
2209
+ "scopes": [
2210
+ "homey.energy"
2211
+ ],
2212
+ "parameters": {
2213
+ "type": {
2214
+ "in": "path",
2215
+ "type": "string",
2216
+ "required": true
2217
+ }
2218
+ }
2219
+ },
2220
+ "getElectricityPriceType": {
2221
+ "method": "get",
2222
+ "path": "/price/electricity/type",
2223
+ "private": false,
2224
+ "scopes": [
2225
+ "homey.energy.readonly"
2226
+ ],
2227
+ "parameters": {}
2228
+ },
2229
+ "getDynamicPricesElectricityZones": {
2230
+ "method": "get",
2231
+ "path": "/price/electricity/dynamic/zones",
2232
+ "private": false,
2233
+ "scopes": [
2234
+ "homey.energy.readonly"
2235
+ ],
2236
+ "parameters": {}
2237
+ },
2238
+ "getDynamicPricesElectricityZone": {
2239
+ "method": "get",
2240
+ "path": "/price/electricity/dynamic/zone",
2241
+ "private": false,
2242
+ "scopes": [
2243
+ "homey.energy.readonly"
2244
+ ],
2245
+ "parameters": {}
2246
+ },
2247
+ "setDynamicPricesElectricityZone": {
2248
+ "method": "put",
2249
+ "path": "/price/electricity/dynamic/zone",
2250
+ "private": false,
2251
+ "scopes": [
2252
+ "homey.energy"
2253
+ ],
2254
+ "parameters": {
2255
+ "options": {
2256
+ "in": "body",
2257
+ "type": "object",
2258
+ "required": true,
2259
+ "properties": {
2260
+ "zoneId": {
2261
+ "type": "string"
2262
+ },
2263
+ "zoneVersion": {
2264
+ "type": "string"
2265
+ },
2266
+ "zoneName": {
2267
+ "type": "string"
2268
+ },
2269
+ "zoneCountryKey": {
2270
+ "type": "string"
2271
+ }
2272
+ }
2273
+ }
2274
+ }
2275
+ },
2028
2276
  "enableDummyEnergyReports": {
2029
2277
  "method": "post",
2030
2278
  "path": "/reports/dummy/enable",
@@ -2205,6 +2453,10 @@
2205
2453
  "dataRequestActiveState": {
2206
2454
  "in": "body",
2207
2455
  "type": "string"
2456
+ },
2457
+ "mode": {
2458
+ "in": "body",
2459
+ "type": "string"
2208
2460
  }
2209
2461
  }
2210
2462
  },
@@ -2261,7 +2513,9 @@
2261
2513
  "method": "put",
2262
2514
  "path": "/:deviceId/phase-load",
2263
2515
  "private": true,
2264
- "scopes": [],
2516
+ "scopes": [
2517
+ "homey.device"
2518
+ ],
2265
2519
  "parameters": {
2266
2520
  "deviceId": {
2267
2521
  "in": "path",
@@ -2284,7 +2538,9 @@
2284
2538
  "method": "get",
2285
2539
  "path": "/:deviceId/phase-load",
2286
2540
  "private": true,
2287
- "scopes": [],
2541
+ "scopes": [
2542
+ "homey.device.readonly"
2543
+ ],
2288
2544
  "parameters": {
2289
2545
  "deviceId": {
2290
2546
  "in": "path",
@@ -3965,6 +4221,41 @@
3965
4221
  "type": "boolean"
3966
4222
  }
3967
4223
  }
4224
+ },
4225
+ "getFabrics": {
4226
+ "method": "get",
4227
+ "path": "/fabrics",
4228
+ "private": false,
4229
+ "scopes": [
4230
+ "homey.system.readonly"
4231
+ ],
4232
+ "parameters": {
4233
+ "deviceId": {
4234
+ "in": "query",
4235
+ "type": "string",
4236
+ "required": true
4237
+ }
4238
+ }
4239
+ },
4240
+ "deleteFabric": {
4241
+ "method": "post",
4242
+ "path": "/delete-fabric",
4243
+ "private": false,
4244
+ "scopes": [
4245
+ "homey.system"
4246
+ ],
4247
+ "parameters": {
4248
+ "deviceId": {
4249
+ "in": "body",
4250
+ "type": "string",
4251
+ "required": true
4252
+ },
4253
+ "fabricIndex": {
4254
+ "in": "body",
4255
+ "type": "number",
4256
+ "required": true
4257
+ }
4258
+ }
3968
4259
  }
3969
4260
  }
3970
4261
  },
@@ -4630,6 +4921,44 @@
4630
4921
  "homey.system.readonly"
4631
4922
  ],
4632
4923
  "parameters": {}
4924
+ },
4925
+ "setDebugLogging": {
4926
+ "method": "put",
4927
+ "path": "/debug",
4928
+ "private": true,
4929
+ "scopes": [
4930
+ "homey.system"
4931
+ ],
4932
+ "parameters": {
4933
+ "peripheral": {
4934
+ "in": "body",
4935
+ "type": "string"
4936
+ },
4937
+ "enabled": {
4938
+ "in": "body",
4939
+ "type": "boolean",
4940
+ "required": true
4941
+ },
4942
+ "serial": {
4943
+ "in": "body",
4944
+ "type": "string"
4945
+ }
4946
+ }
4947
+ },
4948
+ "getDebugLog": {
4949
+ "method": "post",
4950
+ "path": "/debug",
4951
+ "private": true,
4952
+ "scopes": [
4953
+ "homey.system"
4954
+ ],
4955
+ "parameters": {
4956
+ "serial": {
4957
+ "in": "body",
4958
+ "type": "string",
4959
+ "required": true
4960
+ }
4961
+ }
4633
4962
  }
4634
4963
  }
4635
4964
  },
@@ -4834,6 +5163,24 @@
4834
5163
  ],
4835
5164
  "parameters": {}
4836
5165
  },
5166
+ "getMemoryInfoTotal": {
5167
+ "method": "get",
5168
+ "path": "/memory/total",
5169
+ "private": false,
5170
+ "scopes": [
5171
+ "homey.system.readonly"
5172
+ ],
5173
+ "parameters": {}
5174
+ },
5175
+ "getStorageInfoTotal": {
5176
+ "method": "get",
5177
+ "path": "/storage/total",
5178
+ "private": false,
5179
+ "scopes": [
5180
+ "homey.system.readonly"
5181
+ ],
5182
+ "parameters": {}
5183
+ },
4837
5184
  "rebootOTA": {
4838
5185
  "method": "post",
4839
5186
  "path": "/reboot-ota",
@@ -4920,12 +5267,27 @@
4920
5267
  "path": "/active-dataset",
4921
5268
  "private": true,
4922
5269
  "scopes": [
4923
- "homey.system"
5270
+ "homey.device"
4924
5271
  ],
4925
5272
  "parameters": {}
4926
5273
  },
5274
+ "setActiveDataset": {
5275
+ "method": "post",
5276
+ "path": "/active-dataset",
5277
+ "private": true,
5278
+ "scopes": [
5279
+ "homey.system"
5280
+ ],
5281
+ "parameters": {
5282
+ "tlvHex": {
5283
+ "in": "body",
5284
+ "type": "string",
5285
+ "required": true
5286
+ }
5287
+ }
5288
+ },
4927
5289
  "apiReset": {
4928
- "method": "get",
5290
+ "method": "post",
4929
5291
  "path": "/reset",
4930
5292
  "private": true,
4931
5293
  "scopes": [
@@ -4977,6 +5339,33 @@
4977
5339
  "homey.system"
4978
5340
  ],
4979
5341
  "parameters": {}
5342
+ },
5343
+ "getNetworkTopology": {
5344
+ "method": "get",
5345
+ "path": "/topology",
5346
+ "private": false,
5347
+ "scopes": [
5348
+ "homey.device.readonly"
5349
+ ],
5350
+ "parameters": {}
5351
+ },
5352
+ "getDiscoveredBorderRouters": {
5353
+ "method": "get",
5354
+ "path": "/discovered-border-routers",
5355
+ "private": true,
5356
+ "scopes": [
5357
+ "homey.device"
5358
+ ],
5359
+ "parameters": {}
5360
+ },
5361
+ "rescanBorderRouters": {
5362
+ "method": "post",
5363
+ "path": "/rescan-border-routers",
5364
+ "private": true,
5365
+ "scopes": [
5366
+ "homey.device"
5367
+ ],
5368
+ "parameters": {}
4980
5369
  }
4981
5370
  }
4982
5371
  },
@@ -5350,6 +5739,51 @@
5350
5739
  "required": true
5351
5740
  }
5352
5741
  }
5742
+ },
5743
+ "grantInstallerAccess": {
5744
+ "method": "post",
5745
+ "path": "/installer/grant",
5746
+ "private": false,
5747
+ "scopes": [],
5748
+ "parameters": {}
5749
+ },
5750
+ "revokeInstallerAccess": {
5751
+ "method": "post",
5752
+ "path": "/installer/revoke",
5753
+ "private": false,
5754
+ "scopes": [],
5755
+ "parameters": {}
5756
+ },
5757
+ "requestInstallerAccess": {
5758
+ "method": "post",
5759
+ "path": "/installer/request",
5760
+ "private": false,
5761
+ "scopes": [],
5762
+ "parameters": {
5763
+ "jwt": {
5764
+ "in": "body",
5765
+ "type": "string",
5766
+ "required": true
5767
+ }
5768
+ }
5769
+ },
5770
+ "swapOwnerInstaller": {
5771
+ "method": "post",
5772
+ "path": "/installer/swap-owner",
5773
+ "private": false,
5774
+ "scopes": [],
5775
+ "parameters": {
5776
+ "newOwnerUserId": {
5777
+ "in": "body",
5778
+ "type": "string",
5779
+ "required": true
5780
+ },
5781
+ "jwt": {
5782
+ "in": "body",
5783
+ "type": "string",
5784
+ "required": true
5785
+ }
5786
+ }
5353
5787
  }
5354
5788
  }
5355
5789
  },
@@ -5445,6 +5879,28 @@
5445
5879
  }
5446
5880
  }
5447
5881
  },
5882
+ "VirtualDriverRF433": {
5883
+ "id": "virtualdriverrf433",
5884
+ "schema": {
5885
+ "type": "object",
5886
+ "properties": {
5887
+ "id": {
5888
+ "type": "string"
5889
+ }
5890
+ }
5891
+ }
5892
+ },
5893
+ "VirtualDeviceRF433": {
5894
+ "id": "virtualdevicerf433",
5895
+ "schema": {
5896
+ "type": "object",
5897
+ "properties": {
5898
+ "id": {
5899
+ "type": "string"
5900
+ }
5901
+ }
5902
+ }
5903
+ },
5448
5904
  "VirtualDriverHomeyBridge": {
5449
5905
  "id": "virtualdriverbridge",
5450
5906
  "schema": {
@@ -5489,6 +5945,28 @@
5489
5945
  }
5490
5946
  }
5491
5947
  },
5948
+ "VirtualDriverGroup": {
5949
+ "id": "virtualdrivergroup",
5950
+ "schema": {
5951
+ "type": "object",
5952
+ "properties": {
5953
+ "id": {
5954
+ "type": "string"
5955
+ }
5956
+ }
5957
+ }
5958
+ },
5959
+ "VirtualDeviceGroup": {
5960
+ "id": "virtualdevicegroup",
5961
+ "schema": {
5962
+ "type": "object",
5963
+ "properties": {
5964
+ "id": {
5965
+ "type": "string"
5966
+ }
5967
+ }
5968
+ }
5969
+ },
5492
5970
  "VirtualDriverVirtualSocket": {
5493
5971
  "id": "virtualdrivervirtualsocket",
5494
5972
  "schema": {
@@ -5884,45 +6362,6 @@
5884
6362
  }
5885
6363
  }
5886
6364
  },
5887
- "getFirmwareVersion": {
5888
- "method": "get",
5889
- "path": "/firmware-version",
5890
- "private": true,
5891
- "scopes": [
5892
- "homey.system"
5893
- ],
5894
- "parameters": {}
5895
- },
5896
- "flashFirmware": {
5897
- "method": "put",
5898
- "path": "/flash-firmware",
5899
- "private": true,
5900
- "scopes": [
5901
- "homey.system"
5902
- ],
5903
- "parameters": {
5904
- "erase": {
5905
- "in": "body",
5906
- "type": "string"
5907
- },
5908
- "downgrade": {
5909
- "in": "body",
5910
- "type": "string"
5911
- },
5912
- "version": {
5913
- "in": "body",
5914
- "type": "string"
5915
- },
5916
- "firmware": {
5917
- "in": "body",
5918
- "type": "string"
5919
- },
5920
- "shasum": {
5921
- "in": "body",
5922
- "type": "string"
5923
- }
5924
- }
5925
- },
5926
6365
  "getLog": {
5927
6366
  "method": "get",
5928
6367
  "path": "/log",
@@ -5946,30 +6385,6 @@
5946
6385
  "required": true
5947
6386
  }
5948
6387
  }
5949
- },
5950
- "setLBTThreshold": {
5951
- "method": "put",
5952
- "path": "/lbt-threshold",
5953
- "private": true,
5954
- "scopes": [
5955
- "homey.system"
5956
- ],
5957
- "parameters": {
5958
- "threshold": {
5959
- "in": "body",
5960
- "type": "number",
5961
- "required": true
5962
- }
5963
- }
5964
- },
5965
- "attemptNvmFix": {
5966
- "method": "put",
5967
- "path": "/attempt-nvm-fix",
5968
- "private": true,
5969
- "scopes": [
5970
- "homey.system"
5971
- ],
5972
- "parameters": {}
5973
6388
  }
5974
6389
  }
5975
6390
  }
@@ -1429,6 +1429,10 @@ export namespace HomeyAPIV3Local.ManagerVirtualDevice {
1429
1429
  id: string;
1430
1430
  }
1431
1431
 
1432
+ export class VirtualDeviceGroup {
1433
+ id: string;
1434
+ }
1435
+
1432
1436
  export class VirtualDeviceHomeyBridge {
1433
1437
  id: string;
1434
1438
  }
@@ -1441,6 +1445,10 @@ export namespace HomeyAPIV3Local.ManagerVirtualDevice {
1441
1445
  id: string;
1442
1446
  }
1443
1447
 
1448
+ export class VirtualDeviceRF433 {
1449
+ id: string;
1450
+ }
1451
+
1444
1452
  export class VirtualDeviceVirtualButton {
1445
1453
  id: string;
1446
1454
  }
@@ -1469,6 +1477,10 @@ export namespace HomeyAPIV3Local.ManagerVirtualDevice {
1469
1477
  id: string;
1470
1478
  }
1471
1479
 
1480
+ export class VirtualDriverGroup {
1481
+ id: string;
1482
+ }
1483
+
1472
1484
  export class VirtualDriverHomeyBridge {
1473
1485
  id: string;
1474
1486
  }
@@ -1481,6 +1493,10 @@ export namespace HomeyAPIV3Local.ManagerVirtualDevice {
1481
1493
  id: string;
1482
1494
  }
1483
1495
 
1496
+ export class VirtualDriverRF433 {
1497
+ id: string;
1498
+ }
1499
+
1484
1500
  export class VirtualDriverVirtualButton {
1485
1501
  id: string;
1486
1502
  }
@@ -3647,6 +3663,8 @@ export namespace HomeyAPIV3Local {
3647
3663
  virtualClass?: string;
3648
3664
 
3649
3665
  uiIndicator?: string;
3666
+
3667
+ hidden?: boolean;
3650
3668
  };
3651
3669
  }): Promise<HomeyAPIV3Local.ManagerDevices.Device>;
3652
3670
 
@@ -3669,6 +3687,42 @@ export namespace HomeyAPIV3Local {
3669
3687
 
3670
3688
  transactionId?: string;
3671
3689
  }): Promise<any>;
3690
+
3691
+ createGroup(opts: {
3692
+ group: {
3693
+ name: string;
3694
+
3695
+ class: string;
3696
+
3697
+ zoneId: string;
3698
+
3699
+ deviceIds: Array<any>;
3700
+
3701
+ iconOverride?: string;
3702
+
3703
+ iconDeviceId?: string;
3704
+ };
3705
+ }): Promise<any>;
3706
+
3707
+ deleteDeviceFromGroup(opts: {
3708
+ deviceId: string;
3709
+
3710
+ groupId: string;
3711
+ }): Promise<any>;
3712
+
3713
+ updateGroup(opts: {
3714
+ id: string;
3715
+
3716
+ group: {
3717
+ name?: string;
3718
+
3719
+ deviceIds?: Array<any>;
3720
+
3721
+ iconOverride?: string;
3722
+
3723
+ iconDeviceId?: string;
3724
+ };
3725
+ }): Promise<any>;
3672
3726
  }
3673
3727
 
3674
3728
  export class ManagerDevkit extends HomeyAPIV3.ManagerDevkit {
@@ -3844,6 +3898,14 @@ export namespace HomeyAPIV3Local {
3844
3898
 
3845
3899
  unsetOptionWaterPriceFixed(): Promise<any>;
3846
3900
 
3901
+ getOptionElectricityPriceDynamicPreferredInterval(): Promise<any>;
3902
+
3903
+ setOptionElectricityPriceDynamicPreferredInterval(opts: {
3904
+ value: any;
3905
+ }): Promise<any>;
3906
+
3907
+ unsetOptionElectricityPriceDynamicPreferredInterval(): Promise<any>;
3908
+
3847
3909
  getState(): Promise<any>;
3848
3910
 
3849
3911
  getLiveReport(opts: { zone?: string }): Promise<any>;
@@ -3887,6 +3949,38 @@ export namespace HomeyAPIV3Local {
3887
3949
  deviceIds?: Array<any>;
3888
3950
  };
3889
3951
  }): Promise<any>;
3952
+
3953
+ fetchDynamicElectricityPrices(opts: { date: string }): Promise<any>;
3954
+
3955
+ setDynamicElectricityPriceUserCosts(opts: {
3956
+ mathExpression: string;
3957
+
3958
+ type?: string;
3959
+ }): Promise<any>;
3960
+
3961
+ getDynamicElectricityPriceUserCosts(): Promise<any>;
3962
+
3963
+ unsetDynamicElectricityPriceUserCosts(): Promise<any>;
3964
+
3965
+ setElectricityPriceType(opts: { type: string }): Promise<any>;
3966
+
3967
+ getElectricityPriceType(): Promise<any>;
3968
+
3969
+ getDynamicPricesElectricityZones(): Promise<any>;
3970
+
3971
+ getDynamicPricesElectricityZone(): Promise<any>;
3972
+
3973
+ setDynamicPricesElectricityZone(opts: {
3974
+ options: {
3975
+ zoneId?: string;
3976
+
3977
+ zoneVersion?: string;
3978
+
3979
+ zoneName?: string;
3980
+
3981
+ zoneCountryKey?: string;
3982
+ };
3983
+ }): Promise<any>;
3890
3984
  }
3891
3985
 
3892
3986
  export class ManagerEnergyDongle extends HomeyAPIV3.ManagerEnergyDongle {
@@ -4251,6 +4345,14 @@ export namespace HomeyAPIV3Local {
4251
4345
  unsetOptionPaaSettings(): Promise<any>;
4252
4346
 
4253
4347
  getState(): Promise<any>;
4348
+
4349
+ getFabrics(opts: { deviceId: string }): Promise<any>;
4350
+
4351
+ deleteFabric(opts: {
4352
+ deviceId: string;
4353
+
4354
+ fabricIndex: number;
4355
+ }): Promise<any>;
4254
4356
  }
4255
4357
 
4256
4358
  export class ManagerMobile extends HomeyAPIV3.ManagerMobile {
@@ -4406,6 +4508,10 @@ export namespace HomeyAPIV3Local {
4406
4508
 
4407
4509
  getStorageInfo(): Promise<any>;
4408
4510
 
4511
+ getMemoryInfoTotal(): Promise<any>;
4512
+
4513
+ getStorageInfoTotal(): Promise<any>;
4514
+
4409
4515
  rebootOTA(): Promise<any>;
4410
4516
 
4411
4517
  setDebug(opts: { namespace: string }): Promise<any>;
@@ -4417,6 +4523,8 @@ export namespace HomeyAPIV3Local {
4417
4523
 
4418
4524
  export class ManagerThread extends HomeyAPIV3.ManagerThread {
4419
4525
  getState(): Promise<any>;
4526
+
4527
+ getNetworkTopology(): Promise<any>;
4420
4528
  }
4421
4529
 
4422
4530
  export class ManagerUpdates extends HomeyAPIV3.ManagerUpdates {
@@ -4497,6 +4605,18 @@ export namespace HomeyAPIV3Local {
4497
4605
  }): Promise<any>;
4498
4606
 
4499
4607
  deletePersonalAccessToken(opts: { id: string }): Promise<any>;
4608
+
4609
+ grantInstallerAccess(): Promise<any>;
4610
+
4611
+ revokeInstallerAccess(): Promise<any>;
4612
+
4613
+ requestInstallerAccess(opts: { jwt: string }): Promise<any>;
4614
+
4615
+ swapOwnerInstaller(opts: {
4616
+ newOwnerUserId: string;
4617
+
4618
+ jwt: string;
4619
+ }): Promise<any>;
4500
4620
  }
4501
4621
 
4502
4622
  export class ManagerVirtualDevice extends HomeyAPIV3.ManagerVirtualDevice {
@@ -1544,6 +1544,10 @@ export namespace HomeyAPIV3Local.ManagerVirtualDevice {
1544
1544
  id: string;
1545
1545
  }
1546
1546
 
1547
+ export class VirtualDeviceGroup {
1548
+ id: string;
1549
+ }
1550
+
1547
1551
  export class VirtualDeviceHomeyBridge {
1548
1552
  id: string;
1549
1553
  }
@@ -1556,6 +1560,10 @@ export namespace HomeyAPIV3Local.ManagerVirtualDevice {
1556
1560
  id: string;
1557
1561
  }
1558
1562
 
1563
+ export class VirtualDeviceRF433 {
1564
+ id: string;
1565
+ }
1566
+
1559
1567
  export class VirtualDeviceVirtualButton {
1560
1568
  id: string;
1561
1569
  }
@@ -1584,6 +1592,10 @@ export namespace HomeyAPIV3Local.ManagerVirtualDevice {
1584
1592
  id: string;
1585
1593
  }
1586
1594
 
1595
+ export class VirtualDriverGroup {
1596
+ id: string;
1597
+ }
1598
+
1587
1599
  export class VirtualDriverHomeyBridge {
1588
1600
  id: string;
1589
1601
  }
@@ -1596,6 +1608,10 @@ export namespace HomeyAPIV3Local.ManagerVirtualDevice {
1596
1608
  id: string;
1597
1609
  }
1598
1610
 
1611
+ export class VirtualDriverRF433 {
1612
+ id: string;
1613
+ }
1614
+
1599
1615
  export class VirtualDriverVirtualButton {
1600
1616
  id: string;
1601
1617
  }
@@ -10538,6 +10554,8 @@ export namespace HomeyAPIV3Local {
10538
10554
  virtualClass?: string;
10539
10555
 
10540
10556
  uiIndicator?: string;
10557
+
10558
+ hidden?: boolean;
10541
10559
  };
10542
10560
  }): Promise<HomeyAPIV3Local.ManagerDevices.Device>;
10543
10561
 
@@ -10560,6 +10578,42 @@ export namespace HomeyAPIV3Local {
10560
10578
 
10561
10579
  transactionId?: string;
10562
10580
  }): Promise<any>;
10581
+
10582
+ createGroup(opts: {
10583
+ group: {
10584
+ name: string;
10585
+
10586
+ class: string;
10587
+
10588
+ zoneId: string;
10589
+
10590
+ deviceIds: Array<any>;
10591
+
10592
+ iconOverride?: string;
10593
+
10594
+ iconDeviceId?: string;
10595
+ };
10596
+ }): Promise<any>;
10597
+
10598
+ deleteDeviceFromGroup(opts: {
10599
+ deviceId: string;
10600
+
10601
+ groupId: string;
10602
+ }): Promise<any>;
10603
+
10604
+ updateGroup(opts: {
10605
+ id: string;
10606
+
10607
+ group: {
10608
+ name?: string;
10609
+
10610
+ deviceIds?: Array<any>;
10611
+
10612
+ iconOverride?: string;
10613
+
10614
+ iconDeviceId?: string;
10615
+ };
10616
+ }): Promise<any>;
10563
10617
  }
10564
10618
 
10565
10619
  export class ManagerDevkit extends HomeyAPIV3.ManagerDevkit {
@@ -10735,6 +10789,14 @@ export namespace HomeyAPIV3Local {
10735
10789
 
10736
10790
  unsetOptionWaterPriceFixed(): Promise<any>;
10737
10791
 
10792
+ getOptionElectricityPriceDynamicPreferredInterval(): Promise<any>;
10793
+
10794
+ setOptionElectricityPriceDynamicPreferredInterval(opts: {
10795
+ value: any;
10796
+ }): Promise<any>;
10797
+
10798
+ unsetOptionElectricityPriceDynamicPreferredInterval(): Promise<any>;
10799
+
10738
10800
  getState(): Promise<any>;
10739
10801
 
10740
10802
  getLiveReport(opts: { zone?: string }): Promise<any>;
@@ -10779,6 +10841,38 @@ export namespace HomeyAPIV3Local {
10779
10841
  };
10780
10842
  }): Promise<any>;
10781
10843
 
10844
+ fetchDynamicElectricityPrices(opts: { date: string }): Promise<any>;
10845
+
10846
+ setDynamicElectricityPriceUserCosts(opts: {
10847
+ mathExpression: string;
10848
+
10849
+ type?: string;
10850
+ }): Promise<any>;
10851
+
10852
+ getDynamicElectricityPriceUserCosts(): Promise<any>;
10853
+
10854
+ unsetDynamicElectricityPriceUserCosts(): Promise<any>;
10855
+
10856
+ setElectricityPriceType(opts: { type: string }): Promise<any>;
10857
+
10858
+ getElectricityPriceType(): Promise<any>;
10859
+
10860
+ getDynamicPricesElectricityZones(): Promise<any>;
10861
+
10862
+ getDynamicPricesElectricityZone(): Promise<any>;
10863
+
10864
+ setDynamicPricesElectricityZone(opts: {
10865
+ options: {
10866
+ zoneId?: string;
10867
+
10868
+ zoneVersion?: string;
10869
+
10870
+ zoneName?: string;
10871
+
10872
+ zoneCountryKey?: string;
10873
+ };
10874
+ }): Promise<any>;
10875
+
10782
10876
  enableDummyEnergyReports(opts: {
10783
10877
  fromDate?: string;
10784
10878
 
@@ -10833,6 +10927,8 @@ export namespace HomeyAPIV3Local {
10833
10927
  persistent?: boolean;
10834
10928
 
10835
10929
  dataRequestActiveState?: string;
10930
+
10931
+ mode?: string;
10836
10932
  }): Promise<any>;
10837
10933
 
10838
10934
  checkFirmwareUpdateAvailable(opts: { deviceId: string }): Promise<any>;
@@ -11226,6 +11322,14 @@ export namespace HomeyAPIV3Local {
11226
11322
 
11227
11323
  revokeExisting?: boolean;
11228
11324
  }): Promise<any>;
11325
+
11326
+ getFabrics(opts: { deviceId: string }): Promise<any>;
11327
+
11328
+ deleteFabric(opts: {
11329
+ deviceId: string;
11330
+
11331
+ fabricIndex: number;
11332
+ }): Promise<any>;
11229
11333
  }
11230
11334
 
11231
11335
  export class ManagerMobile extends HomeyAPIV3.ManagerMobile {
@@ -11378,6 +11482,16 @@ export namespace HomeyAPIV3Local {
11378
11482
 
11379
11483
  export class ManagerSatellites extends HomeyAPIV3.ManagerSatellites {
11380
11484
  getState(): Promise<any>;
11485
+
11486
+ setDebugLogging(opts: {
11487
+ peripheral?: string;
11488
+
11489
+ enabled: boolean;
11490
+
11491
+ serial?: string;
11492
+ }): Promise<any>;
11493
+
11494
+ getDebugLog(opts: { serial: string }): Promise<any>;
11381
11495
  }
11382
11496
 
11383
11497
  export class ManagerSecurity extends HomeyAPIV3.ManagerSecurity {
@@ -11415,6 +11529,10 @@ export namespace HomeyAPIV3Local {
11415
11529
 
11416
11530
  getStorageInfo(): Promise<any>;
11417
11531
 
11532
+ getMemoryInfoTotal(): Promise<any>;
11533
+
11534
+ getStorageInfoTotal(): Promise<any>;
11535
+
11418
11536
  rebootOTA(): Promise<any>;
11419
11537
 
11420
11538
  setDebug(opts: { namespace: string }): Promise<any>;
@@ -11433,6 +11551,8 @@ export namespace HomeyAPIV3Local {
11433
11551
 
11434
11552
  getActiveDataset(): Promise<any>;
11435
11553
 
11554
+ setActiveDataset(opts: { tlvHex: string }): Promise<any>;
11555
+
11436
11556
  apiReset(): Promise<any>;
11437
11557
 
11438
11558
  executeCommand(opts: {
@@ -11448,6 +11568,12 @@ export namespace HomeyAPIV3Local {
11448
11568
  apiDisable(): Promise<any>;
11449
11569
 
11450
11570
  apiEnable(): Promise<any>;
11571
+
11572
+ getNetworkTopology(): Promise<any>;
11573
+
11574
+ getDiscoveredBorderRouters(): Promise<any>;
11575
+
11576
+ rescanBorderRouters(): Promise<any>;
11451
11577
  }
11452
11578
 
11453
11579
  export class ManagerUpdates extends HomeyAPIV3.ManagerUpdates {
@@ -11528,6 +11654,18 @@ export namespace HomeyAPIV3Local {
11528
11654
  }): Promise<any>;
11529
11655
 
11530
11656
  deletePersonalAccessToken(opts: { id: string }): Promise<any>;
11657
+
11658
+ grantInstallerAccess(): Promise<any>;
11659
+
11660
+ revokeInstallerAccess(): Promise<any>;
11661
+
11662
+ requestInstallerAccess(opts: { jwt: string }): Promise<any>;
11663
+
11664
+ swapOwnerInstaller(opts: {
11665
+ newOwnerUserId: string;
11666
+
11667
+ jwt: string;
11668
+ }): Promise<any>;
11531
11669
  }
11532
11670
 
11533
11671
  export class ManagerVirtualDevice extends HomeyAPIV3.ManagerVirtualDevice {
@@ -11603,27 +11741,9 @@ export namespace HomeyAPIV3Local {
11603
11741
  opts?: object;
11604
11742
  }): Promise<any>;
11605
11743
 
11606
- getFirmwareVersion(): Promise<any>;
11607
-
11608
- flashFirmware(opts: {
11609
- erase?: string;
11610
-
11611
- downgrade?: string;
11612
-
11613
- version?: string;
11614
-
11615
- firmware?: string;
11616
-
11617
- shasum?: string;
11618
- }): Promise<any>;
11619
-
11620
11744
  getLog(): Promise<any>;
11621
11745
 
11622
11746
  setLogEnabled(opts: { enabled: boolean }): Promise<any>;
11623
-
11624
- setLBTThreshold(opts: { threshold: number }): Promise<any>;
11625
-
11626
- attemptNvmFix(): Promise<any>;
11627
11747
  }
11628
11748
  }
11629
11749
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-api",
3
- "version": "3.12.1",
3
+ "version": "3.12.2",
4
4
  "description": "Homey API",
5
5
  "main": "index.js",
6
6
  "files": [