homey-api 3.0.0 → 3.0.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.
- package/assets/specifications/HomeyAPIV3Local.json +0 -22
- package/assets/types/homey-api.d.ts +222 -222
- package/assets/types/homey-api.private.d.ts +222 -222
- package/lib/AthomCloudAPI/User.js +4 -0
- package/lib/HomeyAPI/HomeyAPI.js +17 -2
- package/lib/HomeyAPI/HomeyAPIV2/Manager.js +1 -0
- package/lib/HomeyAPI/HomeyAPIV2/ManagerDevices.js +2 -2
- package/lib/HomeyAPI/HomeyAPIV2/ManagerDevkit.js +9 -0
- package/lib/HomeyAPI/HomeyAPIV2/ManagerFlow.js +2 -2
- package/lib/HomeyAPI/HomeyAPIV2.js +2 -0
- package/lib/HomeyAPI/HomeyAPIV3/Item.js +43 -4
- package/lib/HomeyAPI/HomeyAPIV3/Manager.js +19 -3
- package/lib/HomeyAPI/HomeyAPIV3/ManagerApps/App.js +14 -4
- package/lib/HomeyAPI/HomeyAPIV3/ManagerDevices/Capability.js +6 -0
- package/lib/HomeyAPI/HomeyAPIV3/ManagerDevices/Device.js +26 -0
- package/lib/HomeyAPI/HomeyAPIV3/ManagerDevices/DeviceCapability.js +1 -0
- package/lib/HomeyAPI/HomeyAPIV3/ManagerDrivers/Driver.js +6 -1
- package/lib/HomeyAPI/HomeyAPIV3/ManagerDrivers/PairSession.js +6 -1
- package/lib/HomeyAPI/HomeyAPIV3/ManagerDrivers.js +6 -0
- package/lib/HomeyAPI/HomeyAPIV3/ManagerFlow/AdvancedFlow.js +10 -0
- package/lib/HomeyAPI/HomeyAPIV3/ManagerFlow/Flow.js +7 -1
- package/lib/HomeyAPI/HomeyAPIV3/ManagerFlow/FlowCard.js +6 -0
- package/lib/HomeyAPI/HomeyAPIV3/ManagerFlow/FlowCardAction.js +6 -0
- package/lib/HomeyAPI/HomeyAPIV3/ManagerFlow/FlowCardCondition.js +6 -0
- package/lib/HomeyAPI/HomeyAPIV3/ManagerFlow/FlowCardTrigger.js +6 -0
- package/lib/HomeyAPI/HomeyAPIV3/ManagerFlowToken/FlowToken.js +6 -0
- package/lib/HomeyAPI/HomeyAPIV3/ManagerInsights/Log.js +6 -0
- package/lib/HomeyAPI/HomeyAPIV3.js +7 -3
- package/lib/HomeyAPI/HomeyAPIV3Cloud/Item.js +6 -0
- package/lib/HomeyAPI/HomeyAPIV3Local/Item.js +6 -0
- package/lib/HomeyAPI/HomeyAPIV3Local/ManagerDevkit.js +12 -2
- package/package.json +1 -1
|
@@ -713,6 +713,78 @@
|
|
|
713
713
|
|
|
714
714
|
|
|
715
715
|
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
export namespace HomeyAPIV2.ManagerDevices.Device {
|
|
738
|
+
|
|
739
|
+
export class DeviceCapability {
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
value: boolean | number | string | null;
|
|
744
|
+
|
|
745
|
+
lastChanged: Date | null;
|
|
746
|
+
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
destroy(
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
):
|
|
756
|
+
any;
|
|
757
|
+
|
|
758
|
+
setValue(
|
|
759
|
+
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
value: boolean | number | string,
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
opts: object,
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
):
|
|
773
|
+
Promise<any>;
|
|
774
|
+
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
|
|
716
788
|
|
|
717
789
|
|
|
718
790
|
|
|
@@ -750,8 +822,6 @@
|
|
|
750
822
|
|
|
751
823
|
|
|
752
824
|
|
|
753
|
-
|
|
754
|
-
|
|
755
825
|
export namespace HomeyAPIV2.ManagerApps {
|
|
756
826
|
|
|
757
827
|
export class App {
|
|
@@ -917,10 +987,6 @@
|
|
|
917
987
|
|
|
918
988
|
|
|
919
989
|
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
990
|
|
|
925
991
|
export namespace HomeyAPIV2.ManagerDevices {
|
|
926
992
|
|
|
@@ -1032,10 +1098,6 @@
|
|
|
1032
1098
|
|
|
1033
1099
|
|
|
1034
1100
|
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
1101
|
export namespace HomeyAPIV2.ManagerDrivers {
|
|
1040
1102
|
|
|
1041
1103
|
export class Driver {
|
|
@@ -1102,10 +1164,6 @@
|
|
|
1102
1164
|
|
|
1103
1165
|
|
|
1104
1166
|
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
1167
|
export namespace HomeyAPIV2.ManagerFlow {
|
|
1110
1168
|
|
|
1111
1169
|
export class AdvancedFlow {
|
|
@@ -1272,18 +1330,6 @@
|
|
|
1272
1330
|
|
|
1273
1331
|
|
|
1274
1332
|
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
1333
|
export namespace HomeyAPIV2.ManagerFlowToken {
|
|
1288
1334
|
|
|
1289
1335
|
export class FlowToken {
|
|
@@ -1316,8 +1362,6 @@
|
|
|
1316
1362
|
|
|
1317
1363
|
|
|
1318
1364
|
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
1365
|
export namespace HomeyAPIV2.ManagerImages {
|
|
1322
1366
|
|
|
1323
1367
|
export class Image {
|
|
@@ -1340,8 +1384,6 @@
|
|
|
1340
1384
|
|
|
1341
1385
|
|
|
1342
1386
|
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
1387
|
export namespace HomeyAPIV2.ManagerInsights {
|
|
1346
1388
|
|
|
1347
1389
|
export class Log {
|
|
@@ -1372,8 +1414,6 @@
|
|
|
1372
1414
|
|
|
1373
1415
|
|
|
1374
1416
|
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
1417
|
export namespace HomeyAPIV2.ManagerLogic {
|
|
1378
1418
|
|
|
1379
1419
|
export class Variable {
|
|
@@ -1398,10 +1438,6 @@
|
|
|
1398
1438
|
|
|
1399
1439
|
|
|
1400
1440
|
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
1441
|
export namespace HomeyAPIV2.ManagerNotifications {
|
|
1406
1442
|
|
|
1407
1443
|
export class Notification {
|
|
@@ -1444,8 +1480,6 @@
|
|
|
1444
1480
|
|
|
1445
1481
|
|
|
1446
1482
|
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
1483
|
export namespace HomeyAPIV2.ManagerSessions {
|
|
1450
1484
|
|
|
1451
1485
|
export class Session {
|
|
@@ -1478,8 +1512,6 @@
|
|
|
1478
1512
|
|
|
1479
1513
|
|
|
1480
1514
|
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
1515
|
export namespace HomeyAPIV2.ManagerSpeechOutput {
|
|
1484
1516
|
|
|
1485
1517
|
export class Voice {
|
|
@@ -1508,8 +1540,6 @@
|
|
|
1508
1540
|
|
|
1509
1541
|
|
|
1510
1542
|
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
1543
|
export namespace HomeyAPIV2.ManagerUsers {
|
|
1514
1544
|
|
|
1515
1545
|
export class User {
|
|
@@ -1546,8 +1576,6 @@
|
|
|
1546
1576
|
|
|
1547
1577
|
|
|
1548
1578
|
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
1579
|
export namespace HomeyAPIV2.ManagerZones {
|
|
1552
1580
|
|
|
1553
1581
|
export class Zone {
|
|
@@ -1580,6 +1608,56 @@
|
|
|
1580
1608
|
|
|
1581
1609
|
|
|
1582
1610
|
|
|
1611
|
+
|
|
1612
|
+
|
|
1613
|
+
|
|
1614
|
+
|
|
1615
|
+
|
|
1616
|
+
|
|
1617
|
+
|
|
1618
|
+
|
|
1619
|
+
|
|
1620
|
+
|
|
1621
|
+
|
|
1622
|
+
|
|
1623
|
+
|
|
1624
|
+
|
|
1625
|
+
|
|
1626
|
+
|
|
1627
|
+
|
|
1628
|
+
|
|
1629
|
+
|
|
1630
|
+
|
|
1631
|
+
|
|
1632
|
+
|
|
1633
|
+
|
|
1634
|
+
|
|
1635
|
+
|
|
1636
|
+
|
|
1637
|
+
|
|
1638
|
+
|
|
1639
|
+
|
|
1640
|
+
|
|
1641
|
+
|
|
1642
|
+
|
|
1643
|
+
|
|
1644
|
+
|
|
1645
|
+
|
|
1646
|
+
|
|
1647
|
+
|
|
1648
|
+
|
|
1649
|
+
|
|
1650
|
+
|
|
1651
|
+
|
|
1652
|
+
|
|
1653
|
+
|
|
1654
|
+
|
|
1655
|
+
|
|
1656
|
+
|
|
1657
|
+
|
|
1658
|
+
|
|
1659
|
+
|
|
1660
|
+
|
|
1583
1661
|
export namespace HomeyAPIV3Cloud.ManagerApps {
|
|
1584
1662
|
|
|
1585
1663
|
export class App {
|
|
@@ -1610,10 +1688,6 @@
|
|
|
1610
1688
|
|
|
1611
1689
|
|
|
1612
1690
|
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
1691
|
export namespace HomeyAPIV3Cloud.ManagerCloud {
|
|
1618
1692
|
|
|
1619
1693
|
export class Webhook {
|
|
@@ -1632,8 +1706,6 @@
|
|
|
1632
1706
|
|
|
1633
1707
|
|
|
1634
1708
|
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
1709
|
export namespace HomeyAPIV3Cloud.ManagerCron {
|
|
1638
1710
|
|
|
1639
1711
|
export class Cronjob {
|
|
@@ -1654,10 +1726,6 @@
|
|
|
1654
1726
|
|
|
1655
1727
|
|
|
1656
1728
|
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
1729
|
export namespace HomeyAPIV3Cloud.ManagerDevices {
|
|
1662
1730
|
|
|
1663
1731
|
export class Capability {
|
|
@@ -1690,10 +1758,6 @@
|
|
|
1690
1758
|
|
|
1691
1759
|
|
|
1692
1760
|
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
1761
|
export namespace HomeyAPIV3Cloud.ManagerDrivers {
|
|
1698
1762
|
|
|
1699
1763
|
export class Driver {
|
|
@@ -1724,10 +1788,6 @@
|
|
|
1724
1788
|
|
|
1725
1789
|
|
|
1726
1790
|
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
1791
|
export namespace HomeyAPIV3Cloud.ManagerFlow {
|
|
1732
1792
|
|
|
1733
1793
|
export class AdvancedFlow {
|
|
@@ -1792,18 +1852,6 @@
|
|
|
1792
1852
|
|
|
1793
1853
|
|
|
1794
1854
|
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
1855
|
export namespace HomeyAPIV3Cloud.ManagerFlowToken {
|
|
1808
1856
|
|
|
1809
1857
|
export class FlowToken {
|
|
@@ -1824,8 +1872,6 @@
|
|
|
1824
1872
|
|
|
1825
1873
|
|
|
1826
1874
|
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
1875
|
export namespace HomeyAPIV3Cloud.ManagerIcons {
|
|
1830
1876
|
|
|
1831
1877
|
export class Icon {
|
|
@@ -1842,8 +1888,6 @@
|
|
|
1842
1888
|
|
|
1843
1889
|
|
|
1844
1890
|
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
1891
|
export namespace HomeyAPIV3Cloud.ManagerImages {
|
|
1848
1892
|
|
|
1849
1893
|
export class Image {
|
|
@@ -1860,8 +1904,6 @@
|
|
|
1860
1904
|
|
|
1861
1905
|
|
|
1862
1906
|
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
1907
|
export namespace HomeyAPIV3Cloud.ManagerInsights {
|
|
1866
1908
|
|
|
1867
1909
|
export class Log {
|
|
@@ -1888,10 +1930,6 @@
|
|
|
1888
1930
|
|
|
1889
1931
|
|
|
1890
1932
|
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
1933
|
export namespace HomeyAPIV3Cloud.ManagerLogic {
|
|
1896
1934
|
|
|
1897
1935
|
export class Variable {
|
|
@@ -1914,8 +1952,6 @@
|
|
|
1914
1952
|
|
|
1915
1953
|
|
|
1916
1954
|
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
1955
|
export namespace HomeyAPIV3Cloud.ManagerNotifications {
|
|
1920
1956
|
|
|
1921
1957
|
export class Notification {
|
|
@@ -1944,8 +1980,6 @@
|
|
|
1944
1980
|
|
|
1945
1981
|
|
|
1946
1982
|
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
1983
|
export namespace HomeyAPIV3Cloud.ManagerRF {
|
|
1950
1984
|
|
|
1951
1985
|
export class Signal {
|
|
@@ -1966,8 +2000,6 @@
|
|
|
1966
2000
|
|
|
1967
2001
|
|
|
1968
2002
|
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
2003
|
export namespace HomeyAPIV3Cloud.ManagerSessions {
|
|
1972
2004
|
|
|
1973
2005
|
export class Session {
|
|
@@ -1992,8 +2024,6 @@
|
|
|
1992
2024
|
|
|
1993
2025
|
|
|
1994
2026
|
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
2027
|
export namespace HomeyAPIV3Cloud.ManagerUsers {
|
|
1998
2028
|
|
|
1999
2029
|
export class User {
|
|
@@ -2010,8 +2040,6 @@
|
|
|
2010
2040
|
|
|
2011
2041
|
|
|
2012
2042
|
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
2043
|
export namespace HomeyAPIV3Cloud.ManagerVirtualDevice {
|
|
2016
2044
|
|
|
2017
2045
|
export class VirtualDeviceDummySocket {
|
|
@@ -2124,6 +2152,28 @@
|
|
|
2124
2152
|
|
|
2125
2153
|
|
|
2126
2154
|
|
|
2155
|
+
export namespace HomeyAPIV3Cloud.ManagerZones {
|
|
2156
|
+
|
|
2157
|
+
export class Zone {
|
|
2158
|
+
|
|
2159
|
+
|
|
2160
|
+
|
|
2161
|
+
id: string;
|
|
2162
|
+
|
|
2163
|
+
|
|
2164
|
+
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
}
|
|
2168
|
+
|
|
2169
|
+
|
|
2170
|
+
|
|
2171
|
+
|
|
2172
|
+
|
|
2173
|
+
|
|
2174
|
+
|
|
2175
|
+
|
|
2176
|
+
|
|
2127
2177
|
|
|
2128
2178
|
|
|
2129
2179
|
|
|
@@ -2144,19 +2194,63 @@
|
|
|
2144
2194
|
|
|
2145
2195
|
|
|
2146
2196
|
|
|
2147
|
-
export namespace HomeyAPIV3Cloud.ManagerZones {
|
|
2148
|
-
|
|
2149
|
-
export class Zone {
|
|
2150
|
-
|
|
2151
2197
|
|
|
2152
|
-
|
|
2153
|
-
id: string;
|
|
2154
|
-
|
|
2198
|
+
|
|
2155
2199
|
|
|
2156
|
-
|
|
2157
|
-
|
|
2200
|
+
|
|
2201
|
+
|
|
2202
|
+
|
|
2203
|
+
|
|
2204
|
+
|
|
2205
|
+
|
|
2206
|
+
|
|
2207
|
+
|
|
2208
|
+
|
|
2209
|
+
|
|
2210
|
+
|
|
2211
|
+
|
|
2212
|
+
|
|
2213
|
+
|
|
2214
|
+
|
|
2215
|
+
|
|
2216
|
+
|
|
2217
|
+
|
|
2218
|
+
|
|
2219
|
+
|
|
2220
|
+
|
|
2221
|
+
|
|
2222
|
+
|
|
2223
|
+
|
|
2224
|
+
|
|
2225
|
+
|
|
2226
|
+
|
|
2227
|
+
|
|
2228
|
+
|
|
2229
|
+
|
|
2230
|
+
|
|
2231
|
+
|
|
2232
|
+
|
|
2233
|
+
|
|
2234
|
+
|
|
2235
|
+
|
|
2236
|
+
|
|
2237
|
+
|
|
2238
|
+
|
|
2239
|
+
|
|
2240
|
+
|
|
2241
|
+
|
|
2242
|
+
|
|
2243
|
+
|
|
2244
|
+
|
|
2245
|
+
|
|
2246
|
+
|
|
2247
|
+
|
|
2248
|
+
|
|
2249
|
+
|
|
2250
|
+
|
|
2251
|
+
|
|
2252
|
+
|
|
2158
2253
|
|
|
2159
|
-
}
|
|
2160
2254
|
|
|
2161
2255
|
|
|
2162
2256
|
|
|
@@ -2180,8 +2274,6 @@
|
|
|
2180
2274
|
|
|
2181
2275
|
|
|
2182
2276
|
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
2277
|
export namespace HomeyAPIV3Local.ManagerApps {
|
|
2186
2278
|
|
|
2187
2279
|
export class App {
|
|
@@ -2216,10 +2308,6 @@
|
|
|
2216
2308
|
|
|
2217
2309
|
|
|
2218
2310
|
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
2311
|
export namespace HomeyAPIV3Local.ManagerCloud {
|
|
2224
2312
|
|
|
2225
2313
|
export class Webhook {
|
|
@@ -2238,8 +2326,6 @@
|
|
|
2238
2326
|
|
|
2239
2327
|
|
|
2240
2328
|
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
2329
|
export namespace HomeyAPIV3Local.ManagerCron {
|
|
2244
2330
|
|
|
2245
2331
|
export class Cronjob {
|
|
@@ -2260,10 +2346,6 @@
|
|
|
2260
2346
|
|
|
2261
2347
|
|
|
2262
2348
|
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
2349
|
export namespace HomeyAPIV3Local.ManagerDevices {
|
|
2268
2350
|
|
|
2269
2351
|
export class Capability {
|
|
@@ -2296,10 +2378,6 @@
|
|
|
2296
2378
|
|
|
2297
2379
|
|
|
2298
2380
|
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
2381
|
export namespace HomeyAPIV3Local.ManagerDiscovery {
|
|
2304
2382
|
|
|
2305
2383
|
export class DiscoveryStrategyMAC {
|
|
@@ -2336,12 +2414,6 @@
|
|
|
2336
2414
|
|
|
2337
2415
|
|
|
2338
2416
|
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
2417
|
export namespace HomeyAPIV3Local.ManagerDrivers {
|
|
2346
2418
|
|
|
2347
2419
|
export class Driver {
|
|
@@ -2372,10 +2444,6 @@
|
|
|
2372
2444
|
|
|
2373
2445
|
|
|
2374
2446
|
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
2447
|
export namespace HomeyAPIV3Local.ManagerExperiments {
|
|
2380
2448
|
|
|
2381
2449
|
export class ExperimentHomeKit {
|
|
@@ -2422,14 +2490,6 @@
|
|
|
2422
2490
|
|
|
2423
2491
|
|
|
2424
2492
|
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
2493
|
export namespace HomeyAPIV3Local.ManagerFlow {
|
|
2434
2494
|
|
|
2435
2495
|
export class AdvancedFlow {
|
|
@@ -2494,18 +2554,6 @@
|
|
|
2494
2554
|
|
|
2495
2555
|
|
|
2496
2556
|
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
2557
|
export namespace HomeyAPIV3Local.ManagerFlowToken {
|
|
2510
2558
|
|
|
2511
2559
|
export class FlowToken {
|
|
@@ -2528,8 +2576,6 @@
|
|
|
2528
2576
|
|
|
2529
2577
|
|
|
2530
2578
|
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
2579
|
export namespace HomeyAPIV3Local.ManagerIcons {
|
|
2534
2580
|
|
|
2535
2581
|
export class Icon {
|
|
@@ -2546,8 +2592,6 @@
|
|
|
2546
2592
|
|
|
2547
2593
|
|
|
2548
2594
|
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
2595
|
export namespace HomeyAPIV3Local.ManagerImages {
|
|
2552
2596
|
|
|
2553
2597
|
export class Image {
|
|
@@ -2564,8 +2608,6 @@
|
|
|
2564
2608
|
|
|
2565
2609
|
|
|
2566
2610
|
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
2611
|
export namespace HomeyAPIV3Local.ManagerInsights {
|
|
2570
2612
|
|
|
2571
2613
|
export class Log {
|
|
@@ -2594,10 +2636,6 @@
|
|
|
2594
2636
|
|
|
2595
2637
|
|
|
2596
2638
|
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
2639
|
export namespace HomeyAPIV3Local.ManagerLogic {
|
|
2602
2640
|
|
|
2603
2641
|
export class Variable {
|
|
@@ -2622,8 +2660,6 @@
|
|
|
2622
2660
|
|
|
2623
2661
|
|
|
2624
2662
|
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
2663
|
export namespace HomeyAPIV3Local.ManagerNotifications {
|
|
2628
2664
|
|
|
2629
2665
|
export class Notification {
|
|
@@ -2650,8 +2686,6 @@
|
|
|
2650
2686
|
|
|
2651
2687
|
|
|
2652
2688
|
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
2689
|
export namespace HomeyAPIV3Local.ManagerRF {
|
|
2656
2690
|
|
|
2657
2691
|
export class Signal {
|
|
@@ -2674,8 +2708,6 @@
|
|
|
2674
2708
|
|
|
2675
2709
|
|
|
2676
2710
|
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
2711
|
export namespace HomeyAPIV3Local.ManagerSessions {
|
|
2680
2712
|
|
|
2681
2713
|
export class Session {
|
|
@@ -2704,8 +2736,6 @@
|
|
|
2704
2736
|
|
|
2705
2737
|
|
|
2706
2738
|
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
2739
|
export namespace HomeyAPIV3Local.ManagerUsers {
|
|
2710
2740
|
|
|
2711
2741
|
export class User {
|
|
@@ -2722,8 +2752,6 @@
|
|
|
2722
2752
|
|
|
2723
2753
|
|
|
2724
2754
|
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
2755
|
export namespace HomeyAPIV3Local.ManagerVirtualDevice {
|
|
2728
2756
|
|
|
2729
2757
|
export class VirtualDeviceDummySocket {
|
|
@@ -2896,7 +2924,19 @@
|
|
|
2896
2924
|
|
|
2897
2925
|
|
|
2898
2926
|
|
|
2927
|
+
export namespace HomeyAPIV3Local.ManagerZones {
|
|
2928
|
+
|
|
2929
|
+
export class Zone {
|
|
2930
|
+
|
|
2899
2931
|
|
|
2932
|
+
|
|
2933
|
+
id: string;
|
|
2934
|
+
|
|
2935
|
+
|
|
2936
|
+
|
|
2937
|
+
}
|
|
2938
|
+
|
|
2939
|
+
}
|
|
2900
2940
|
|
|
2901
2941
|
|
|
2902
2942
|
|
|
@@ -2928,19 +2968,21 @@
|
|
|
2928
2968
|
|
|
2929
2969
|
|
|
2930
2970
|
|
|
2931
|
-
export namespace HomeyAPIV3Local.ManagerZones {
|
|
2932
|
-
|
|
2933
|
-
export class Zone {
|
|
2934
|
-
|
|
2935
2971
|
|
|
2936
|
-
|
|
2937
|
-
id: string;
|
|
2938
|
-
|
|
2972
|
+
|
|
2939
2973
|
|
|
2940
|
-
|
|
2941
|
-
|
|
2974
|
+
|
|
2975
|
+
|
|
2976
|
+
|
|
2977
|
+
|
|
2978
|
+
|
|
2979
|
+
|
|
2980
|
+
|
|
2981
|
+
|
|
2982
|
+
|
|
2983
|
+
|
|
2984
|
+
|
|
2942
2985
|
|
|
2943
|
-
}
|
|
2944
2986
|
|
|
2945
2987
|
|
|
2946
2988
|
|
|
@@ -14849,48 +14891,6 @@
|
|
|
14849
14891
|
|
|
14850
14892
|
|
|
14851
14893
|
|
|
14852
|
-
export namespace HomeyAPIV3.ManagerDevices.Device {
|
|
14853
|
-
|
|
14854
|
-
export class DeviceCapability {
|
|
14855
|
-
|
|
14856
|
-
|
|
14857
|
-
|
|
14858
|
-
value: boolean | number | string | null;
|
|
14859
|
-
|
|
14860
|
-
lastChanged: Date | null;
|
|
14861
|
-
|
|
14862
|
-
|
|
14863
|
-
|
|
14864
|
-
destroy(
|
|
14865
|
-
|
|
14866
|
-
|
|
14867
|
-
|
|
14868
|
-
|
|
14869
|
-
|
|
14870
|
-
):
|
|
14871
|
-
any;
|
|
14872
|
-
|
|
14873
|
-
setValue(
|
|
14874
|
-
|
|
14875
|
-
|
|
14876
|
-
|
|
14877
|
-
|
|
14878
|
-
value: boolean | number | string,
|
|
14879
|
-
|
|
14880
|
-
|
|
14881
|
-
|
|
14882
|
-
opts: object,
|
|
14883
|
-
|
|
14884
|
-
|
|
14885
|
-
|
|
14886
|
-
|
|
14887
|
-
):
|
|
14888
|
-
Promise<any>;
|
|
14889
|
-
|
|
14890
|
-
}
|
|
14891
|
-
|
|
14892
|
-
}
|
|
14893
|
-
|
|
14894
14894
|
|
|
14895
14895
|
|
|
14896
14896
|
|