homey-api 3.0.1 → 3.0.3
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 -300
- package/assets/types/homey-api.private.d.ts +222 -300
- package/lib/HomeyAPI/HomeyAPIV2/Manager.js +1 -0
- package/lib/HomeyAPI/HomeyAPIV2/ManagerDevices.js +2 -2
- package/lib/HomeyAPI/HomeyAPIV2/ManagerFlow.js +2 -2
- package/lib/HomeyAPI/HomeyAPIV2/ManagerInsights.js +2 -1
- 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 +11 -1
- package/lib/HomeyAPI/HomeyAPIV3Local.js +1 -1
- package/package.json +1 -1
|
@@ -267,19 +267,6 @@
|
|
|
267
267
|
):
|
|
268
268
|
string | null;
|
|
269
269
|
|
|
270
|
-
hasRole(
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
roleId: string,
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
):
|
|
281
|
-
any;
|
|
282
|
-
|
|
283
270
|
createAppAPI(
|
|
284
271
|
|
|
285
272
|
|
|
@@ -361,19 +348,6 @@
|
|
|
361
348
|
):
|
|
362
349
|
string | null;
|
|
363
350
|
|
|
364
|
-
hasRole(
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
roleId: string,
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
):
|
|
375
|
-
any;
|
|
376
|
-
|
|
377
351
|
}
|
|
378
352
|
|
|
379
353
|
export class HomeyAPIV2 extends HomeyAPI {
|
|
@@ -405,19 +379,6 @@
|
|
|
405
379
|
):
|
|
406
380
|
string | null;
|
|
407
381
|
|
|
408
|
-
hasRole(
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
roleId: string,
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
):
|
|
419
|
-
any;
|
|
420
|
-
|
|
421
382
|
}
|
|
422
383
|
|
|
423
384
|
export class HomeyAPIV3 extends HomeyAPIV2 {
|
|
@@ -458,19 +419,6 @@
|
|
|
458
419
|
):
|
|
459
420
|
string | null;
|
|
460
421
|
|
|
461
|
-
hasRole(
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
roleId: string,
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
):
|
|
472
|
-
any;
|
|
473
|
-
|
|
474
422
|
}
|
|
475
423
|
|
|
476
424
|
export class HomeyAPIV3Cloud extends HomeyAPIV3 {
|
|
@@ -507,19 +455,6 @@
|
|
|
507
455
|
):
|
|
508
456
|
string | null;
|
|
509
457
|
|
|
510
|
-
hasRole(
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
roleId: string,
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
):
|
|
521
|
-
any;
|
|
522
|
-
|
|
523
458
|
}
|
|
524
459
|
|
|
525
460
|
export class HomeyAPIV3Local extends HomeyAPIV3 {
|
|
@@ -556,19 +491,6 @@
|
|
|
556
491
|
):
|
|
557
492
|
string | null;
|
|
558
493
|
|
|
559
|
-
hasRole(
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
roleId: string,
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
):
|
|
570
|
-
any;
|
|
571
|
-
|
|
572
494
|
}
|
|
573
495
|
|
|
574
496
|
|
|
@@ -791,6 +713,78 @@
|
|
|
791
713
|
|
|
792
714
|
|
|
793
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
|
+
|
|
794
788
|
|
|
795
789
|
|
|
796
790
|
|
|
@@ -828,8 +822,6 @@
|
|
|
828
822
|
|
|
829
823
|
|
|
830
824
|
|
|
831
|
-
|
|
832
|
-
|
|
833
825
|
export namespace HomeyAPIV2.ManagerApps {
|
|
834
826
|
|
|
835
827
|
export class App {
|
|
@@ -995,10 +987,6 @@
|
|
|
995
987
|
|
|
996
988
|
|
|
997
989
|
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
990
|
|
|
1003
991
|
export namespace HomeyAPIV2.ManagerDevices {
|
|
1004
992
|
|
|
@@ -1110,10 +1098,6 @@
|
|
|
1110
1098
|
|
|
1111
1099
|
|
|
1112
1100
|
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
1101
|
export namespace HomeyAPIV2.ManagerDrivers {
|
|
1118
1102
|
|
|
1119
1103
|
export class Driver {
|
|
@@ -1180,10 +1164,6 @@
|
|
|
1180
1164
|
|
|
1181
1165
|
|
|
1182
1166
|
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
1167
|
export namespace HomeyAPIV2.ManagerFlow {
|
|
1188
1168
|
|
|
1189
1169
|
export class AdvancedFlow {
|
|
@@ -1350,18 +1330,6 @@
|
|
|
1350
1330
|
|
|
1351
1331
|
|
|
1352
1332
|
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
1333
|
export namespace HomeyAPIV2.ManagerFlowToken {
|
|
1366
1334
|
|
|
1367
1335
|
export class FlowToken {
|
|
@@ -1394,8 +1362,6 @@
|
|
|
1394
1362
|
|
|
1395
1363
|
|
|
1396
1364
|
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
1365
|
export namespace HomeyAPIV2.ManagerImages {
|
|
1400
1366
|
|
|
1401
1367
|
export class Image {
|
|
@@ -1418,8 +1384,6 @@
|
|
|
1418
1384
|
|
|
1419
1385
|
|
|
1420
1386
|
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
1387
|
export namespace HomeyAPIV2.ManagerInsights {
|
|
1424
1388
|
|
|
1425
1389
|
export class Log {
|
|
@@ -1450,8 +1414,6 @@
|
|
|
1450
1414
|
|
|
1451
1415
|
|
|
1452
1416
|
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
1417
|
export namespace HomeyAPIV2.ManagerLogic {
|
|
1456
1418
|
|
|
1457
1419
|
export class Variable {
|
|
@@ -1476,10 +1438,6 @@
|
|
|
1476
1438
|
|
|
1477
1439
|
|
|
1478
1440
|
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
1441
|
export namespace HomeyAPIV2.ManagerNotifications {
|
|
1484
1442
|
|
|
1485
1443
|
export class Notification {
|
|
@@ -1522,8 +1480,6 @@
|
|
|
1522
1480
|
|
|
1523
1481
|
|
|
1524
1482
|
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
1483
|
export namespace HomeyAPIV2.ManagerSessions {
|
|
1528
1484
|
|
|
1529
1485
|
export class Session {
|
|
@@ -1556,8 +1512,6 @@
|
|
|
1556
1512
|
|
|
1557
1513
|
|
|
1558
1514
|
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
1515
|
export namespace HomeyAPIV2.ManagerSpeechOutput {
|
|
1562
1516
|
|
|
1563
1517
|
export class Voice {
|
|
@@ -1586,8 +1540,6 @@
|
|
|
1586
1540
|
|
|
1587
1541
|
|
|
1588
1542
|
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
1543
|
export namespace HomeyAPIV2.ManagerUsers {
|
|
1592
1544
|
|
|
1593
1545
|
export class User {
|
|
@@ -1624,8 +1576,6 @@
|
|
|
1624
1576
|
|
|
1625
1577
|
|
|
1626
1578
|
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
1579
|
export namespace HomeyAPIV2.ManagerZones {
|
|
1630
1580
|
|
|
1631
1581
|
export class Zone {
|
|
@@ -1658,6 +1608,56 @@
|
|
|
1658
1608
|
|
|
1659
1609
|
|
|
1660
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
|
+
|
|
1661
1661
|
export namespace HomeyAPIV3Cloud.ManagerApps {
|
|
1662
1662
|
|
|
1663
1663
|
export class App {
|
|
@@ -1688,10 +1688,6 @@
|
|
|
1688
1688
|
|
|
1689
1689
|
|
|
1690
1690
|
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
1691
|
export namespace HomeyAPIV3Cloud.ManagerCloud {
|
|
1696
1692
|
|
|
1697
1693
|
export class Webhook {
|
|
@@ -1710,8 +1706,6 @@
|
|
|
1710
1706
|
|
|
1711
1707
|
|
|
1712
1708
|
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
1709
|
export namespace HomeyAPIV3Cloud.ManagerCron {
|
|
1716
1710
|
|
|
1717
1711
|
export class Cronjob {
|
|
@@ -1732,10 +1726,6 @@
|
|
|
1732
1726
|
|
|
1733
1727
|
|
|
1734
1728
|
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
1729
|
export namespace HomeyAPIV3Cloud.ManagerDevices {
|
|
1740
1730
|
|
|
1741
1731
|
export class Capability {
|
|
@@ -1768,10 +1758,6 @@
|
|
|
1768
1758
|
|
|
1769
1759
|
|
|
1770
1760
|
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
1761
|
export namespace HomeyAPIV3Cloud.ManagerDrivers {
|
|
1776
1762
|
|
|
1777
1763
|
export class Driver {
|
|
@@ -1802,10 +1788,6 @@
|
|
|
1802
1788
|
|
|
1803
1789
|
|
|
1804
1790
|
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
1791
|
export namespace HomeyAPIV3Cloud.ManagerFlow {
|
|
1810
1792
|
|
|
1811
1793
|
export class AdvancedFlow {
|
|
@@ -1870,18 +1852,6 @@
|
|
|
1870
1852
|
|
|
1871
1853
|
|
|
1872
1854
|
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
1855
|
export namespace HomeyAPIV3Cloud.ManagerFlowToken {
|
|
1886
1856
|
|
|
1887
1857
|
export class FlowToken {
|
|
@@ -1902,8 +1872,6 @@
|
|
|
1902
1872
|
|
|
1903
1873
|
|
|
1904
1874
|
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
1875
|
export namespace HomeyAPIV3Cloud.ManagerIcons {
|
|
1908
1876
|
|
|
1909
1877
|
export class Icon {
|
|
@@ -1920,8 +1888,6 @@
|
|
|
1920
1888
|
|
|
1921
1889
|
|
|
1922
1890
|
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
1891
|
export namespace HomeyAPIV3Cloud.ManagerImages {
|
|
1926
1892
|
|
|
1927
1893
|
export class Image {
|
|
@@ -1938,8 +1904,6 @@
|
|
|
1938
1904
|
|
|
1939
1905
|
|
|
1940
1906
|
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
1907
|
export namespace HomeyAPIV3Cloud.ManagerInsights {
|
|
1944
1908
|
|
|
1945
1909
|
export class Log {
|
|
@@ -1966,10 +1930,6 @@
|
|
|
1966
1930
|
|
|
1967
1931
|
|
|
1968
1932
|
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
1933
|
export namespace HomeyAPIV3Cloud.ManagerLogic {
|
|
1974
1934
|
|
|
1975
1935
|
export class Variable {
|
|
@@ -1992,8 +1952,6 @@
|
|
|
1992
1952
|
|
|
1993
1953
|
|
|
1994
1954
|
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
1955
|
export namespace HomeyAPIV3Cloud.ManagerNotifications {
|
|
1998
1956
|
|
|
1999
1957
|
export class Notification {
|
|
@@ -2022,8 +1980,6 @@
|
|
|
2022
1980
|
|
|
2023
1981
|
|
|
2024
1982
|
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
1983
|
export namespace HomeyAPIV3Cloud.ManagerRF {
|
|
2028
1984
|
|
|
2029
1985
|
export class Signal {
|
|
@@ -2044,8 +2000,6 @@
|
|
|
2044
2000
|
|
|
2045
2001
|
|
|
2046
2002
|
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
2003
|
export namespace HomeyAPIV3Cloud.ManagerSessions {
|
|
2050
2004
|
|
|
2051
2005
|
export class Session {
|
|
@@ -2070,8 +2024,6 @@
|
|
|
2070
2024
|
|
|
2071
2025
|
|
|
2072
2026
|
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
2027
|
export namespace HomeyAPIV3Cloud.ManagerUsers {
|
|
2076
2028
|
|
|
2077
2029
|
export class User {
|
|
@@ -2088,8 +2040,6 @@
|
|
|
2088
2040
|
|
|
2089
2041
|
|
|
2090
2042
|
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
2043
|
export namespace HomeyAPIV3Cloud.ManagerVirtualDevice {
|
|
2094
2044
|
|
|
2095
2045
|
export class VirtualDeviceDummySocket {
|
|
@@ -2202,6 +2152,28 @@
|
|
|
2202
2152
|
|
|
2203
2153
|
|
|
2204
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
|
+
|
|
2205
2177
|
|
|
2206
2178
|
|
|
2207
2179
|
|
|
@@ -2222,19 +2194,63 @@
|
|
|
2222
2194
|
|
|
2223
2195
|
|
|
2224
2196
|
|
|
2225
|
-
export namespace HomeyAPIV3Cloud.ManagerZones {
|
|
2226
|
-
|
|
2227
|
-
export class Zone {
|
|
2228
|
-
|
|
2229
2197
|
|
|
2230
|
-
|
|
2231
|
-
id: string;
|
|
2232
|
-
|
|
2198
|
+
|
|
2233
2199
|
|
|
2234
|
-
|
|
2235
|
-
|
|
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
|
+
|
|
2236
2253
|
|
|
2237
|
-
}
|
|
2238
2254
|
|
|
2239
2255
|
|
|
2240
2256
|
|
|
@@ -2258,8 +2274,6 @@
|
|
|
2258
2274
|
|
|
2259
2275
|
|
|
2260
2276
|
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
2277
|
export namespace HomeyAPIV3Local.ManagerApps {
|
|
2264
2278
|
|
|
2265
2279
|
export class App {
|
|
@@ -2294,10 +2308,6 @@
|
|
|
2294
2308
|
|
|
2295
2309
|
|
|
2296
2310
|
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
2311
|
export namespace HomeyAPIV3Local.ManagerCloud {
|
|
2302
2312
|
|
|
2303
2313
|
export class Webhook {
|
|
@@ -2316,8 +2326,6 @@
|
|
|
2316
2326
|
|
|
2317
2327
|
|
|
2318
2328
|
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
2329
|
export namespace HomeyAPIV3Local.ManagerCron {
|
|
2322
2330
|
|
|
2323
2331
|
export class Cronjob {
|
|
@@ -2338,10 +2346,6 @@
|
|
|
2338
2346
|
|
|
2339
2347
|
|
|
2340
2348
|
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
2349
|
export namespace HomeyAPIV3Local.ManagerDevices {
|
|
2346
2350
|
|
|
2347
2351
|
export class Capability {
|
|
@@ -2374,10 +2378,6 @@
|
|
|
2374
2378
|
|
|
2375
2379
|
|
|
2376
2380
|
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
2381
|
export namespace HomeyAPIV3Local.ManagerDiscovery {
|
|
2382
2382
|
|
|
2383
2383
|
export class DiscoveryStrategyMAC {
|
|
@@ -2414,12 +2414,6 @@
|
|
|
2414
2414
|
|
|
2415
2415
|
|
|
2416
2416
|
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
2417
|
export namespace HomeyAPIV3Local.ManagerDrivers {
|
|
2424
2418
|
|
|
2425
2419
|
export class Driver {
|
|
@@ -2450,10 +2444,6 @@
|
|
|
2450
2444
|
|
|
2451
2445
|
|
|
2452
2446
|
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
2447
|
export namespace HomeyAPIV3Local.ManagerExperiments {
|
|
2458
2448
|
|
|
2459
2449
|
export class ExperimentHomeKit {
|
|
@@ -2500,14 +2490,6 @@
|
|
|
2500
2490
|
|
|
2501
2491
|
|
|
2502
2492
|
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
2493
|
export namespace HomeyAPIV3Local.ManagerFlow {
|
|
2512
2494
|
|
|
2513
2495
|
export class AdvancedFlow {
|
|
@@ -2572,18 +2554,6 @@
|
|
|
2572
2554
|
|
|
2573
2555
|
|
|
2574
2556
|
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
2557
|
export namespace HomeyAPIV3Local.ManagerFlowToken {
|
|
2588
2558
|
|
|
2589
2559
|
export class FlowToken {
|
|
@@ -2606,8 +2576,6 @@
|
|
|
2606
2576
|
|
|
2607
2577
|
|
|
2608
2578
|
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
2579
|
export namespace HomeyAPIV3Local.ManagerIcons {
|
|
2612
2580
|
|
|
2613
2581
|
export class Icon {
|
|
@@ -2624,8 +2592,6 @@
|
|
|
2624
2592
|
|
|
2625
2593
|
|
|
2626
2594
|
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
2595
|
export namespace HomeyAPIV3Local.ManagerImages {
|
|
2630
2596
|
|
|
2631
2597
|
export class Image {
|
|
@@ -2642,8 +2608,6 @@
|
|
|
2642
2608
|
|
|
2643
2609
|
|
|
2644
2610
|
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
2611
|
export namespace HomeyAPIV3Local.ManagerInsights {
|
|
2648
2612
|
|
|
2649
2613
|
export class Log {
|
|
@@ -2672,10 +2636,6 @@
|
|
|
2672
2636
|
|
|
2673
2637
|
|
|
2674
2638
|
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
2639
|
export namespace HomeyAPIV3Local.ManagerLogic {
|
|
2680
2640
|
|
|
2681
2641
|
export class Variable {
|
|
@@ -2700,8 +2660,6 @@
|
|
|
2700
2660
|
|
|
2701
2661
|
|
|
2702
2662
|
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
2663
|
export namespace HomeyAPIV3Local.ManagerNotifications {
|
|
2706
2664
|
|
|
2707
2665
|
export class Notification {
|
|
@@ -2728,8 +2686,6 @@
|
|
|
2728
2686
|
|
|
2729
2687
|
|
|
2730
2688
|
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
2689
|
export namespace HomeyAPIV3Local.ManagerRF {
|
|
2734
2690
|
|
|
2735
2691
|
export class Signal {
|
|
@@ -2752,8 +2708,6 @@
|
|
|
2752
2708
|
|
|
2753
2709
|
|
|
2754
2710
|
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
2711
|
export namespace HomeyAPIV3Local.ManagerSessions {
|
|
2758
2712
|
|
|
2759
2713
|
export class Session {
|
|
@@ -2782,8 +2736,6 @@
|
|
|
2782
2736
|
|
|
2783
2737
|
|
|
2784
2738
|
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
2739
|
export namespace HomeyAPIV3Local.ManagerUsers {
|
|
2788
2740
|
|
|
2789
2741
|
export class User {
|
|
@@ -2800,8 +2752,6 @@
|
|
|
2800
2752
|
|
|
2801
2753
|
|
|
2802
2754
|
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
2755
|
export namespace HomeyAPIV3Local.ManagerVirtualDevice {
|
|
2806
2756
|
|
|
2807
2757
|
export class VirtualDeviceDummySocket {
|
|
@@ -2974,7 +2924,19 @@
|
|
|
2974
2924
|
|
|
2975
2925
|
|
|
2976
2926
|
|
|
2927
|
+
export namespace HomeyAPIV3Local.ManagerZones {
|
|
2928
|
+
|
|
2929
|
+
export class Zone {
|
|
2930
|
+
|
|
2977
2931
|
|
|
2932
|
+
|
|
2933
|
+
id: string;
|
|
2934
|
+
|
|
2935
|
+
|
|
2936
|
+
|
|
2937
|
+
}
|
|
2938
|
+
|
|
2939
|
+
}
|
|
2978
2940
|
|
|
2979
2941
|
|
|
2980
2942
|
|
|
@@ -3006,19 +2968,21 @@
|
|
|
3006
2968
|
|
|
3007
2969
|
|
|
3008
2970
|
|
|
3009
|
-
export namespace HomeyAPIV3Local.ManagerZones {
|
|
3010
|
-
|
|
3011
|
-
export class Zone {
|
|
3012
|
-
|
|
3013
2971
|
|
|
3014
|
-
|
|
3015
|
-
id: string;
|
|
3016
|
-
|
|
2972
|
+
|
|
3017
2973
|
|
|
3018
|
-
|
|
3019
|
-
|
|
2974
|
+
|
|
2975
|
+
|
|
2976
|
+
|
|
2977
|
+
|
|
2978
|
+
|
|
2979
|
+
|
|
2980
|
+
|
|
2981
|
+
|
|
2982
|
+
|
|
2983
|
+
|
|
2984
|
+
|
|
3020
2985
|
|
|
3021
|
-
}
|
|
3022
2986
|
|
|
3023
2987
|
|
|
3024
2988
|
|
|
@@ -14927,48 +14891,6 @@
|
|
|
14927
14891
|
|
|
14928
14892
|
|
|
14929
14893
|
|
|
14930
|
-
export namespace HomeyAPIV3.ManagerDevices.Device {
|
|
14931
|
-
|
|
14932
|
-
export class DeviceCapability {
|
|
14933
|
-
|
|
14934
|
-
|
|
14935
|
-
|
|
14936
|
-
value: boolean | number | string | null;
|
|
14937
|
-
|
|
14938
|
-
lastChanged: Date | null;
|
|
14939
|
-
|
|
14940
|
-
|
|
14941
|
-
|
|
14942
|
-
destroy(
|
|
14943
|
-
|
|
14944
|
-
|
|
14945
|
-
|
|
14946
|
-
|
|
14947
|
-
|
|
14948
|
-
):
|
|
14949
|
-
any;
|
|
14950
|
-
|
|
14951
|
-
setValue(
|
|
14952
|
-
|
|
14953
|
-
|
|
14954
|
-
|
|
14955
|
-
|
|
14956
|
-
value: boolean | number | string,
|
|
14957
|
-
|
|
14958
|
-
|
|
14959
|
-
|
|
14960
|
-
opts: object,
|
|
14961
|
-
|
|
14962
|
-
|
|
14963
|
-
|
|
14964
|
-
|
|
14965
|
-
):
|
|
14966
|
-
Promise<any>;
|
|
14967
|
-
|
|
14968
|
-
}
|
|
14969
|
-
|
|
14970
|
-
}
|
|
14971
|
-
|
|
14972
14894
|
|
|
14973
14895
|
|
|
14974
14896
|
|