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.
@@ -2095,7 +2095,7 @@
2095
2095
 
2096
2096
  export namespace HomeyAPIV3Cloud.ManagerVirtualDevice {
2097
2097
 
2098
- export class VirtualDeviceHomeyBridge {
2098
+ export class VirtualDeviceDummySocket {
2099
2099
 
2100
2100
 
2101
2101
 
@@ -2105,7 +2105,7 @@
2105
2105
 
2106
2106
  }
2107
2107
 
2108
- export class VirtualDeviceInfrared {
2108
+ export class VirtualDeviceHomeyBridge {
2109
2109
 
2110
2110
 
2111
2111
 
@@ -2115,7 +2115,7 @@
2115
2115
 
2116
2116
  }
2117
2117
 
2118
- export class VirtualDeviceVirtualSocket {
2118
+ export class VirtualDeviceInfrared {
2119
2119
 
2120
2120
 
2121
2121
 
@@ -2145,7 +2145,7 @@
2145
2145
 
2146
2146
  }
2147
2147
 
2148
- export class VirtualDriverHomeyBridge {
2148
+ export class VirtualDriverDummySocket {
2149
2149
 
2150
2150
 
2151
2151
 
@@ -2155,7 +2155,7 @@
2155
2155
 
2156
2156
  }
2157
2157
 
2158
- export class VirtualDriverInfrared {
2158
+ export class VirtualDriverHomeyBridge {
2159
2159
 
2160
2160
 
2161
2161
 
@@ -2165,7 +2165,7 @@
2165
2165
 
2166
2166
  }
2167
2167
 
2168
- export class VirtualDriverVirtualSocket {
2168
+ export class VirtualDriverInfrared {
2169
2169
 
2170
2170
 
2171
2171
 
@@ -2739,6 +2739,10 @@
2739
2739
 
2740
2740
 
2741
2741
 
2742
+
2743
+
2744
+
2745
+
2742
2746
  export namespace HomeyAPIV3Local.ManagerSessions {
2743
2747
 
2744
2748
  export class Session {
@@ -2785,6 +2789,16 @@
2785
2789
 
2786
2790
  export namespace HomeyAPIV3Local.ManagerVirtualDevice {
2787
2791
 
2792
+ export class VirtualDeviceDummySocket {
2793
+
2794
+
2795
+
2796
+ id: string;
2797
+
2798
+
2799
+
2800
+ }
2801
+
2788
2802
  export class VirtualDeviceHomeyBridge {
2789
2803
 
2790
2804
 
@@ -2803,6 +2817,26 @@
2803
2817
 
2804
2818
 
2805
2819
 
2820
+ }
2821
+
2822
+ export class VirtualDeviceVirtualButton {
2823
+
2824
+
2825
+
2826
+ id: string;
2827
+
2828
+
2829
+
2830
+ }
2831
+
2832
+ export class VirtualDeviceVirtualIPCamera {
2833
+
2834
+
2835
+
2836
+ id: string;
2837
+
2838
+
2839
+
2806
2840
  }
2807
2841
 
2808
2842
  export class VirtualDeviceVirtualSocket {
@@ -2833,6 +2867,16 @@
2833
2867
 
2834
2868
 
2835
2869
 
2870
+ }
2871
+
2872
+ export class VirtualDriverDummySocket {
2873
+
2874
+
2875
+
2876
+ id: string;
2877
+
2878
+
2879
+
2836
2880
  }
2837
2881
 
2838
2882
  export class VirtualDriverHomeyBridge {
@@ -2853,6 +2897,26 @@
2853
2897
 
2854
2898
 
2855
2899
 
2900
+ }
2901
+
2902
+ export class VirtualDriverVirtualButton {
2903
+
2904
+
2905
+
2906
+ id: string;
2907
+
2908
+
2909
+
2910
+ }
2911
+
2912
+ export class VirtualDriverVirtualIPCamera {
2913
+
2914
+
2915
+
2916
+ id: string;
2917
+
2918
+
2919
+
2856
2920
  }
2857
2921
 
2858
2922
  export class VirtualDriverVirtualSocket {
@@ -2946,6 +3010,18 @@
2946
3010
 
2947
3011
 
2948
3012
 
3013
+
3014
+
3015
+
3016
+
3017
+
3018
+
3019
+
3020
+
3021
+
3022
+
3023
+
3024
+
2949
3025
 
2950
3026
 
2951
3027
 
@@ -3051,6 +3127,25 @@
3051
3127
 
3052
3128
  getApps(
3053
3129
 
3130
+ ):
3131
+ Promise<HomeyAPIV3Cloud.ManagerApps.App>;
3132
+
3133
+ getApp(
3134
+
3135
+
3136
+
3137
+
3138
+ opts: {
3139
+
3140
+
3141
+ id: string,
3142
+
3143
+
3144
+ },
3145
+
3146
+
3147
+
3148
+
3054
3149
  ):
3055
3150
  Promise<HomeyAPIV3Cloud.ManagerApps.App>;
3056
3151
 
@@ -3162,6 +3257,29 @@
3162
3257
 
3163
3258
 
3164
3259
 
3260
+ ):
3261
+ Promise<any>;
3262
+
3263
+ unsetAppSetting(
3264
+
3265
+
3266
+
3267
+
3268
+ opts: {
3269
+
3270
+
3271
+ name: string,
3272
+
3273
+
3274
+
3275
+ id: string,
3276
+
3277
+
3278
+ },
3279
+
3280
+
3281
+
3282
+
3165
3283
  ):
3166
3284
  Promise<any>;
3167
3285
 
@@ -3375,6 +3493,11 @@
3375
3493
 
3376
3494
  getBridges(
3377
3495
 
3496
+ ):
3497
+ Promise<any>;
3498
+
3499
+ getLog(
3500
+
3378
3501
  ):
3379
3502
  Promise<any>;
3380
3503
 
@@ -3581,6 +3704,10 @@
3581
3704
  virtualClass: string,
3582
3705
 
3583
3706
 
3707
+
3708
+ uiIndicator: string,
3709
+
3710
+
3584
3711
  },
3585
3712
 
3586
3713
 
@@ -4438,6 +4565,10 @@
4438
4565
 
4439
4566
 
4440
4567
 
4568
+ state: object,
4569
+
4570
+
4571
+
4441
4572
  droptoken: string,
4442
4573
 
4443
4574
 
@@ -4478,6 +4609,10 @@
4478
4609
 
4479
4610
 
4480
4611
 
4612
+ state: object,
4613
+
4614
+
4615
+
4481
4616
  droptoken: string,
4482
4617
 
4483
4618
 
@@ -4603,6 +4738,25 @@
4603
4738
 
4604
4739
 
4605
4740
 
4741
+ opts: {
4742
+
4743
+
4744
+ id: string,
4745
+
4746
+
4747
+ },
4748
+
4749
+
4750
+
4751
+
4752
+ ):
4753
+ Promise<any>;
4754
+
4755
+ triggerAdvancedFlow(
4756
+
4757
+
4758
+
4759
+
4606
4760
  opts: {
4607
4761
 
4608
4762
 
@@ -4673,12 +4827,12 @@
4673
4827
 
4674
4828
 
4675
4829
 
4676
- getOptionMode(
4830
+ getOptionAddress(
4677
4831
 
4678
4832
  ):
4679
4833
  Promise<any>;
4680
4834
 
4681
- setOptionMode(
4835
+ setOptionAddress(
4682
4836
 
4683
4837
 
4684
4838
 
@@ -4697,7 +4851,7 @@
4697
4851
  ):
4698
4852
  Promise<any>;
4699
4853
 
4700
- unsetOptionMode(
4854
+ unsetOptionAddress(
4701
4855
 
4702
4856
  ):
4703
4857
  Promise<any>;
@@ -4728,6 +4882,35 @@
4728
4882
 
4729
4883
  unsetOptionLocation(
4730
4884
 
4885
+ ):
4886
+ Promise<any>;
4887
+
4888
+ getOptionMode(
4889
+
4890
+ ):
4891
+ Promise<any>;
4892
+
4893
+ setOptionMode(
4894
+
4895
+
4896
+
4897
+
4898
+ opts: {
4899
+
4900
+
4901
+ value: *,
4902
+
4903
+
4904
+ },
4905
+
4906
+
4907
+
4908
+
4909
+ ):
4910
+ Promise<any>;
4911
+
4912
+ unsetOptionMode(
4913
+
4731
4914
  ):
4732
4915
  Promise<any>;
4733
4916
 
@@ -5518,6 +5701,29 @@
5518
5701
 
5519
5702
 
5520
5703
 
5704
+ ):
5705
+ Promise<any>;
5706
+
5707
+ replay(
5708
+
5709
+
5710
+
5711
+
5712
+ opts: {
5713
+
5714
+
5715
+ frequency: string,
5716
+
5717
+
5718
+
5719
+ data: Array<any>,
5720
+
5721
+
5722
+ },
5723
+
5724
+
5725
+
5726
+
5521
5727
  ):
5522
5728
  Promise<any>;
5523
5729
 
@@ -10734,6 +10940,25 @@
10734
10940
 
10735
10941
  getApps(
10736
10942
 
10943
+ ):
10944
+ Promise<HomeyAPIV3Local.ManagerApps.App>;
10945
+
10946
+ getApp(
10947
+
10948
+
10949
+
10950
+
10951
+ opts: {
10952
+
10953
+
10954
+ id: string,
10955
+
10956
+
10957
+ },
10958
+
10959
+
10960
+
10961
+
10737
10962
  ):
10738
10963
  Promise<HomeyAPIV3Local.ManagerApps.App>;
10739
10964
 
@@ -10943,6 +11168,25 @@
10943
11168
 
10944
11169
 
10945
11170
 
11171
+ opts: {
11172
+
11173
+
11174
+ id: string,
11175
+
11176
+
11177
+ },
11178
+
11179
+
11180
+
11181
+
11182
+ ):
11183
+ Promise<any>;
11184
+
11185
+ getAppLocales(
11186
+
11187
+
11188
+
11189
+
10946
11190
  opts: {
10947
11191
 
10948
11192
 
@@ -11185,6 +11429,11 @@
11185
11429
 
11186
11430
  getState(
11187
11431
 
11432
+ ):
11433
+ Promise<any>;
11434
+
11435
+ getBridges(
11436
+
11188
11437
  ):
11189
11438
  Promise<any>;
11190
11439
 
@@ -11391,6 +11640,10 @@
11391
11640
  virtualClass: string,
11392
11641
 
11393
11642
 
11643
+
11644
+ uiIndicator: string,
11645
+
11646
+
11394
11647
  },
11395
11648
 
11396
11649
 
@@ -11546,6 +11799,33 @@
11546
11799
 
11547
11800
 
11548
11801
 
11802
+ ):
11803
+ Promise<any>;
11804
+
11805
+ runApp(
11806
+
11807
+
11808
+
11809
+
11810
+ opts: {
11811
+
11812
+
11813
+ debug: string,
11814
+
11815
+
11816
+
11817
+ env: string,
11818
+
11819
+
11820
+
11821
+ purgeSettings: string,
11822
+
11823
+
11824
+ },
11825
+
11826
+
11827
+
11828
+
11549
11829
  ):
11550
11830
  Promise<any>;
11551
11831
 
@@ -12347,6 +12627,10 @@
12347
12627
 
12348
12628
 
12349
12629
 
12630
+ state: object,
12631
+
12632
+
12633
+
12350
12634
  droptoken: string,
12351
12635
 
12352
12636
 
@@ -12387,6 +12671,10 @@
12387
12671
 
12388
12672
 
12389
12673
 
12674
+ state: object,
12675
+
12676
+
12677
+
12390
12678
  droptoken: string,
12391
12679
 
12392
12680
 
@@ -12512,6 +12800,25 @@
12512
12800
 
12513
12801
 
12514
12802
 
12803
+ opts: {
12804
+
12805
+
12806
+ id: string,
12807
+
12808
+
12809
+ },
12810
+
12811
+
12812
+
12813
+
12814
+ ):
12815
+ Promise<any>;
12816
+
12817
+ triggerAdvancedFlow(
12818
+
12819
+
12820
+
12821
+
12515
12822
  opts: {
12516
12823
 
12517
12824
 
@@ -12582,12 +12889,12 @@
12582
12889
 
12583
12890
 
12584
12891
 
12585
- getOptionMode(
12892
+ getOptionAddress(
12586
12893
 
12587
12894
  ):
12588
12895
  Promise<any>;
12589
12896
 
12590
- setOptionMode(
12897
+ setOptionAddress(
12591
12898
 
12592
12899
 
12593
12900
 
@@ -12606,7 +12913,7 @@
12606
12913
  ):
12607
12914
  Promise<any>;
12608
12915
 
12609
- unsetOptionMode(
12916
+ unsetOptionAddress(
12610
12917
 
12611
12918
  ):
12612
12919
  Promise<any>;
@@ -12966,35 +13273,6 @@
12966
13273
 
12967
13274
  unsetOptionScreensaver(
12968
13275
 
12969
- ):
12970
- Promise<any>;
12971
-
12972
- getOptionBrightness(
12973
-
12974
- ):
12975
- Promise<any>;
12976
-
12977
- setOptionBrightness(
12978
-
12979
-
12980
-
12981
-
12982
- opts: {
12983
-
12984
-
12985
- value: *,
12986
-
12987
-
12988
- },
12989
-
12990
-
12991
-
12992
-
12993
- ):
12994
- Promise<any>;
12995
-
12996
- unsetOptionBrightness(
12997
-
12998
13276
  ):
12999
13277
  Promise<any>;
13000
13278
 
@@ -13484,6 +13762,29 @@
13484
13762
 
13485
13763
 
13486
13764
 
13765
+ ):
13766
+ Promise<any>;
13767
+
13768
+ replay(
13769
+
13770
+
13771
+
13772
+
13773
+ opts: {
13774
+
13775
+
13776
+ frequency: string,
13777
+
13778
+
13779
+
13780
+ data: Array<any>,
13781
+
13782
+
13783
+ },
13784
+
13785
+
13786
+
13787
+
13487
13788
  ):
13488
13789
  Promise<any>;
13489
13790
 
@@ -13573,6 +13874,34 @@
13573
13874
 
13574
13875
 
13575
13876
 
13877
+ ):
13878
+ Promise<any>;
13879
+
13880
+ isConnected(
13881
+
13882
+ ):
13883
+ Boolean;
13884
+
13885
+ connect(
13886
+
13887
+ ):
13888
+ Promise<void>;
13889
+
13890
+ disconnect(
13891
+
13892
+ ):
13893
+ Promise<void>;
13894
+
13895
+ }
13896
+
13897
+ export class ManagerSafety extends HomeyAPIV3Local.Manager {
13898
+
13899
+
13900
+
13901
+
13902
+
13903
+ getState(
13904
+
13576
13905
  ):
13577
13906
  Promise<any>;
13578
13907
 
@@ -13599,6 +13928,34 @@
13599
13928
 
13600
13929
 
13601
13930
 
13931
+ getState(
13932
+
13933
+ ):
13934
+ Promise<any>;
13935
+
13936
+ isConnected(
13937
+
13938
+ ):
13939
+ Boolean;
13940
+
13941
+ connect(
13942
+
13943
+ ):
13944
+ Promise<void>;
13945
+
13946
+ disconnect(
13947
+
13948
+ ):
13949
+ Promise<void>;
13950
+
13951
+ }
13952
+
13953
+ export class ManagerSecurity extends HomeyAPIV3Local.Manager {
13954
+
13955
+
13956
+
13957
+
13958
+
13602
13959
  getState(
13603
13960
 
13604
13961
  ):
@@ -13764,16 +14121,6 @@
13764
14121
 
13765
14122
  rebootOTA(
13766
14123
 
13767
- ):
13768
- Promise<any>;
13769
-
13770
- startBluFi(
13771
-
13772
- ):
13773
- Promise<any>;
13774
-
13775
- stopBluFi(
13776
-
13777
14124
  ):
13778
14125
  Promise<any>;
13779
14126
 
@@ -13916,6 +14263,11 @@
13916
14263
 
13917
14264
 
13918
14265
 
14266
+ ):
14267
+ Promise<any>;
14268
+
14269
+ abortInstallUpdate(
14270
+
13919
14271
  ):
13920
14272
  Promise<any>;
13921
14273