homey-api 1.10.5 → 1.10.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.
@@ -7477,7 +7477,7 @@
7477
7477
 
7478
7478
  export namespace HomeyAPIV3Cloud.ManagerVirtualDevice {
7479
7479
 
7480
- export class VirtualDeviceHomeyBridge {
7480
+ export class VirtualDeviceDummySocket {
7481
7481
 
7482
7482
 
7483
7483
 
@@ -7487,7 +7487,7 @@
7487
7487
 
7488
7488
  }
7489
7489
 
7490
- export class VirtualDeviceInfrared {
7490
+ export class VirtualDeviceHomeyBridge {
7491
7491
 
7492
7492
 
7493
7493
 
@@ -7497,7 +7497,7 @@
7497
7497
 
7498
7498
  }
7499
7499
 
7500
- export class VirtualDeviceVirtualSocket {
7500
+ export class VirtualDeviceInfrared {
7501
7501
 
7502
7502
 
7503
7503
 
@@ -7527,7 +7527,7 @@
7527
7527
 
7528
7528
  }
7529
7529
 
7530
- export class VirtualDriverHomeyBridge {
7530
+ export class VirtualDriverDummySocket {
7531
7531
 
7532
7532
 
7533
7533
 
@@ -7537,7 +7537,7 @@
7537
7537
 
7538
7538
  }
7539
7539
 
7540
- export class VirtualDriverInfrared {
7540
+ export class VirtualDriverHomeyBridge {
7541
7541
 
7542
7542
 
7543
7543
 
@@ -7547,7 +7547,7 @@
7547
7547
 
7548
7548
  }
7549
7549
 
7550
- export class VirtualDriverVirtualSocket {
7550
+ export class VirtualDriverInfrared {
7551
7551
 
7552
7552
 
7553
7553
 
@@ -8141,6 +8141,10 @@
8141
8141
 
8142
8142
 
8143
8143
 
8144
+
8145
+
8146
+
8147
+
8144
8148
  export namespace HomeyAPIV3Local.ManagerSessions {
8145
8149
 
8146
8150
  export class Session {
@@ -8187,6 +8191,16 @@
8187
8191
 
8188
8192
  export namespace HomeyAPIV3Local.ManagerVirtualDevice {
8189
8193
 
8194
+ export class VirtualDeviceDummySocket {
8195
+
8196
+
8197
+
8198
+ id: string;
8199
+
8200
+
8201
+
8202
+ }
8203
+
8190
8204
  export class VirtualDeviceHomeyBridge {
8191
8205
 
8192
8206
 
@@ -8205,6 +8219,26 @@
8205
8219
 
8206
8220
 
8207
8221
 
8222
+ }
8223
+
8224
+ export class VirtualDeviceVirtualButton {
8225
+
8226
+
8227
+
8228
+ id: string;
8229
+
8230
+
8231
+
8232
+ }
8233
+
8234
+ export class VirtualDeviceVirtualIPCamera {
8235
+
8236
+
8237
+
8238
+ id: string;
8239
+
8240
+
8241
+
8208
8242
  }
8209
8243
 
8210
8244
  export class VirtualDeviceVirtualSocket {
@@ -8235,6 +8269,16 @@
8235
8269
 
8236
8270
 
8237
8271
 
8272
+ }
8273
+
8274
+ export class VirtualDriverDummySocket {
8275
+
8276
+
8277
+
8278
+ id: string;
8279
+
8280
+
8281
+
8238
8282
  }
8239
8283
 
8240
8284
  export class VirtualDriverHomeyBridge {
@@ -8255,6 +8299,26 @@
8255
8299
 
8256
8300
 
8257
8301
 
8302
+ }
8303
+
8304
+ export class VirtualDriverVirtualButton {
8305
+
8306
+
8307
+
8308
+ id: string;
8309
+
8310
+
8311
+
8312
+ }
8313
+
8314
+ export class VirtualDriverVirtualIPCamera {
8315
+
8316
+
8317
+
8318
+ id: string;
8319
+
8320
+
8321
+
8258
8322
  }
8259
8323
 
8260
8324
  export class VirtualDriverVirtualSocket {
@@ -8348,6 +8412,18 @@
8348
8412
 
8349
8413
 
8350
8414
 
8415
+
8416
+
8417
+
8418
+
8419
+
8420
+
8421
+
8422
+
8423
+
8424
+
8425
+
8426
+
8351
8427
 
8352
8428
 
8353
8429
 
@@ -8453,6 +8529,25 @@
8453
8529
 
8454
8530
  getApps(
8455
8531
 
8532
+ ):
8533
+ Promise<HomeyAPIV3Cloud.ManagerApps.App>;
8534
+
8535
+ getApp(
8536
+
8537
+
8538
+
8539
+
8540
+ opts: {
8541
+
8542
+
8543
+ id: string,
8544
+
8545
+
8546
+ },
8547
+
8548
+
8549
+
8550
+
8456
8551
  ):
8457
8552
  Promise<HomeyAPIV3Cloud.ManagerApps.App>;
8458
8553
 
@@ -8564,6 +8659,29 @@
8564
8659
 
8565
8660
 
8566
8661
 
8662
+ ):
8663
+ Promise<any>;
8664
+
8665
+ unsetAppSetting(
8666
+
8667
+
8668
+
8669
+
8670
+ opts: {
8671
+
8672
+
8673
+ name: string,
8674
+
8675
+
8676
+
8677
+ id: string,
8678
+
8679
+
8680
+ },
8681
+
8682
+
8683
+
8684
+
8567
8685
  ):
8568
8686
  Promise<any>;
8569
8687
 
@@ -8777,6 +8895,11 @@
8777
8895
 
8778
8896
  getBridges(
8779
8897
 
8898
+ ):
8899
+ Promise<any>;
8900
+
8901
+ getLog(
8902
+
8780
8903
  ):
8781
8904
  Promise<any>;
8782
8905
 
@@ -9124,6 +9247,10 @@
9124
9247
  virtualClass: string,
9125
9248
 
9126
9249
 
9250
+
9251
+ uiIndicator: string,
9252
+
9253
+
9127
9254
  },
9128
9255
 
9129
9256
 
@@ -9981,6 +10108,10 @@
9981
10108
 
9982
10109
 
9983
10110
 
10111
+ state: object,
10112
+
10113
+
10114
+
9984
10115
  droptoken: string,
9985
10116
 
9986
10117
 
@@ -10021,6 +10152,10 @@
10021
10152
 
10022
10153
 
10023
10154
 
10155
+ state: object,
10156
+
10157
+
10158
+
10024
10159
  droptoken: string,
10025
10160
 
10026
10161
 
@@ -10146,6 +10281,25 @@
10146
10281
 
10147
10282
 
10148
10283
 
10284
+ opts: {
10285
+
10286
+
10287
+ id: string,
10288
+
10289
+
10290
+ },
10291
+
10292
+
10293
+
10294
+
10295
+ ):
10296
+ Promise<any>;
10297
+
10298
+ triggerAdvancedFlow(
10299
+
10300
+
10301
+
10302
+
10149
10303
  opts: {
10150
10304
 
10151
10305
 
@@ -10216,12 +10370,12 @@
10216
10370
 
10217
10371
 
10218
10372
 
10219
- getOptionMode(
10373
+ getOptionAddress(
10220
10374
 
10221
10375
  ):
10222
10376
  Promise<any>;
10223
10377
 
10224
- setOptionMode(
10378
+ setOptionAddress(
10225
10379
 
10226
10380
 
10227
10381
 
@@ -10240,7 +10394,7 @@
10240
10394
  ):
10241
10395
  Promise<any>;
10242
10396
 
10243
- unsetOptionMode(
10397
+ unsetOptionAddress(
10244
10398
 
10245
10399
  ):
10246
10400
  Promise<any>;
@@ -10271,6 +10425,35 @@
10271
10425
 
10272
10426
  unsetOptionLocation(
10273
10427
 
10428
+ ):
10429
+ Promise<any>;
10430
+
10431
+ getOptionMode(
10432
+
10433
+ ):
10434
+ Promise<any>;
10435
+
10436
+ setOptionMode(
10437
+
10438
+
10439
+
10440
+
10441
+ opts: {
10442
+
10443
+
10444
+ value: *,
10445
+
10446
+
10447
+ },
10448
+
10449
+
10450
+
10451
+
10452
+ ):
10453
+ Promise<any>;
10454
+
10455
+ unsetOptionMode(
10456
+
10274
10457
  ):
10275
10458
  Promise<any>;
10276
10459
 
@@ -11061,6 +11244,29 @@
11061
11244
 
11062
11245
 
11063
11246
 
11247
+ ):
11248
+ Promise<any>;
11249
+
11250
+ replay(
11251
+
11252
+
11253
+
11254
+
11255
+ opts: {
11256
+
11257
+
11258
+ frequency: string,
11259
+
11260
+
11261
+
11262
+ data: Array<any>,
11263
+
11264
+
11265
+ },
11266
+
11267
+
11268
+
11269
+
11064
11270
  ):
11065
11271
  Promise<any>;
11066
11272
 
@@ -16683,6 +16889,25 @@
16683
16889
 
16684
16890
  getApps(
16685
16891
 
16892
+ ):
16893
+ Promise<HomeyAPIV3Local.ManagerApps.App>;
16894
+
16895
+ getApp(
16896
+
16897
+
16898
+
16899
+
16900
+ opts: {
16901
+
16902
+
16903
+ id: string,
16904
+
16905
+
16906
+ },
16907
+
16908
+
16909
+
16910
+
16686
16911
  ):
16687
16912
  Promise<HomeyAPIV3Local.ManagerApps.App>;
16688
16913
 
@@ -16892,6 +17117,25 @@
16892
17117
 
16893
17118
 
16894
17119
 
17120
+ opts: {
17121
+
17122
+
17123
+ id: string,
17124
+
17125
+
17126
+ },
17127
+
17128
+
17129
+
17130
+
17131
+ ):
17132
+ Promise<any>;
17133
+
17134
+ getAppLocales(
17135
+
17136
+
17137
+
17138
+
16895
17139
  opts: {
16896
17140
 
16897
17141
 
@@ -17134,6 +17378,11 @@
17134
17378
 
17135
17379
  getState(
17136
17380
 
17381
+ ):
17382
+ Promise<any>;
17383
+
17384
+ getBridges(
17385
+
17137
17386
  ):
17138
17387
  Promise<any>;
17139
17388
 
@@ -17481,6 +17730,10 @@
17481
17730
  virtualClass: string,
17482
17731
 
17483
17732
 
17733
+
17734
+ uiIndicator: string,
17735
+
17736
+
17484
17737
  },
17485
17738
 
17486
17739
 
@@ -17636,6 +17889,33 @@
17636
17889
 
17637
17890
 
17638
17891
 
17892
+ ):
17893
+ Promise<any>;
17894
+
17895
+ runApp(
17896
+
17897
+
17898
+
17899
+
17900
+ opts: {
17901
+
17902
+
17903
+ debug: string,
17904
+
17905
+
17906
+
17907
+ env: string,
17908
+
17909
+
17910
+
17911
+ purgeSettings: string,
17912
+
17913
+
17914
+ },
17915
+
17916
+
17917
+
17918
+
17639
17919
  ):
17640
17920
  Promise<any>;
17641
17921
 
@@ -18437,6 +18717,10 @@
18437
18717
 
18438
18718
 
18439
18719
 
18720
+ state: object,
18721
+
18722
+
18723
+
18440
18724
  droptoken: string,
18441
18725
 
18442
18726
 
@@ -18477,6 +18761,10 @@
18477
18761
 
18478
18762
 
18479
18763
 
18764
+ state: object,
18765
+
18766
+
18767
+
18480
18768
  droptoken: string,
18481
18769
 
18482
18770
 
@@ -18602,6 +18890,25 @@
18602
18890
 
18603
18891
 
18604
18892
 
18893
+ opts: {
18894
+
18895
+
18896
+ id: string,
18897
+
18898
+
18899
+ },
18900
+
18901
+
18902
+
18903
+
18904
+ ):
18905
+ Promise<any>;
18906
+
18907
+ triggerAdvancedFlow(
18908
+
18909
+
18910
+
18911
+
18605
18912
  opts: {
18606
18913
 
18607
18914
 
@@ -18672,12 +18979,12 @@
18672
18979
 
18673
18980
 
18674
18981
 
18675
- getOptionMode(
18982
+ getOptionAddress(
18676
18983
 
18677
18984
  ):
18678
18985
  Promise<any>;
18679
18986
 
18680
- setOptionMode(
18987
+ setOptionAddress(
18681
18988
 
18682
18989
 
18683
18990
 
@@ -18696,7 +19003,7 @@
18696
19003
  ):
18697
19004
  Promise<any>;
18698
19005
 
18699
- unsetOptionMode(
19006
+ unsetOptionAddress(
18700
19007
 
18701
19008
  ):
18702
19009
  Promise<any>;
@@ -19056,35 +19363,6 @@
19056
19363
 
19057
19364
  unsetOptionScreensaver(
19058
19365
 
19059
- ):
19060
- Promise<any>;
19061
-
19062
- getOptionBrightness(
19063
-
19064
- ):
19065
- Promise<any>;
19066
-
19067
- setOptionBrightness(
19068
-
19069
-
19070
-
19071
-
19072
- opts: {
19073
-
19074
-
19075
- value: *,
19076
-
19077
-
19078
- },
19079
-
19080
-
19081
-
19082
-
19083
- ):
19084
- Promise<any>;
19085
-
19086
- unsetOptionBrightness(
19087
-
19088
19366
  ):
19089
19367
  Promise<any>;
19090
19368
 
@@ -19574,6 +19852,29 @@
19574
19852
 
19575
19853
 
19576
19854
 
19855
+ ):
19856
+ Promise<any>;
19857
+
19858
+ replay(
19859
+
19860
+
19861
+
19862
+
19863
+ opts: {
19864
+
19865
+
19866
+ frequency: string,
19867
+
19868
+
19869
+
19870
+ data: Array<any>,
19871
+
19872
+
19873
+ },
19874
+
19875
+
19876
+
19877
+
19577
19878
  ):
19578
19879
  Promise<any>;
19579
19880
 
@@ -19663,6 +19964,34 @@
19663
19964
 
19664
19965
 
19665
19966
 
19967
+ ):
19968
+ Promise<any>;
19969
+
19970
+ isConnected(
19971
+
19972
+ ):
19973
+ Boolean;
19974
+
19975
+ connect(
19976
+
19977
+ ):
19978
+ Promise<void>;
19979
+
19980
+ disconnect(
19981
+
19982
+ ):
19983
+ Promise<void>;
19984
+
19985
+ }
19986
+
19987
+ export class ManagerSafety extends HomeyAPIV3Local.Manager {
19988
+
19989
+
19990
+
19991
+
19992
+
19993
+ getState(
19994
+
19666
19995
  ):
19667
19996
  Promise<any>;
19668
19997
 
@@ -19689,6 +20018,34 @@
19689
20018
 
19690
20019
 
19691
20020
 
20021
+ getState(
20022
+
20023
+ ):
20024
+ Promise<any>;
20025
+
20026
+ isConnected(
20027
+
20028
+ ):
20029
+ Boolean;
20030
+
20031
+ connect(
20032
+
20033
+ ):
20034
+ Promise<void>;
20035
+
20036
+ disconnect(
20037
+
20038
+ ):
20039
+ Promise<void>;
20040
+
20041
+ }
20042
+
20043
+ export class ManagerSecurity extends HomeyAPIV3Local.Manager {
20044
+
20045
+
20046
+
20047
+
20048
+
19692
20049
  getState(
19693
20050
 
19694
20051
  ):
@@ -19854,16 +20211,6 @@
19854
20211
 
19855
20212
  rebootOTA(
19856
20213
 
19857
- ):
19858
- Promise<any>;
19859
-
19860
- startBluFi(
19861
-
19862
- ):
19863
- Promise<any>;
19864
-
19865
- stopBluFi(
19866
-
19867
20214
  ):
19868
20215
  Promise<any>;
19869
20216
 
@@ -20006,6 +20353,11 @@
20006
20353
 
20007
20354
 
20008
20355
 
20356
+ ):
20357
+ Promise<any>;
20358
+
20359
+ abortInstallUpdate(
20360
+
20009
20361
  ):
20010
20362
  Promise<any>;
20011
20363
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-api",
3
- "version": "1.10.5",
3
+ "version": "1.10.7",
4
4
  "description": "Homey API",
5
5
  "main": "index.js",
6
6
  "files": [