homey-api 3.11.0 → 3.11.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.
@@ -619,6 +619,11 @@
619
619
  "method": "delete",
620
620
  "parameters": {}
621
621
  },
622
+ "getInstallerInformation": {
623
+ "path": "/user/{userId}/installer-information",
624
+ "method": "get",
625
+ "parameters": {}
626
+ },
622
627
  "getBridges": {
623
628
  "path": "/bridge/",
624
629
  "method": "get",
@@ -1485,11 +1485,12 @@
1485
1485
  "parameters": {
1486
1486
  "date": {
1487
1487
  "in": "query",
1488
- "type": "string"
1488
+ "type": "string",
1489
+ "required": true
1489
1490
  },
1490
1491
  "cache": {
1491
1492
  "in": "query",
1492
- "type": "boolean"
1493
+ "type": "string"
1493
1494
  }
1494
1495
  }
1495
1496
  },
@@ -1503,11 +1504,12 @@
1503
1504
  "parameters": {
1504
1505
  "isoWeek": {
1505
1506
  "in": "query",
1506
- "type": "string"
1507
+ "type": "string",
1508
+ "required": true
1507
1509
  },
1508
1510
  "cache": {
1509
1511
  "in": "query",
1510
- "type": "boolean"
1512
+ "type": "string"
1511
1513
  }
1512
1514
  }
1513
1515
  },
@@ -1521,11 +1523,12 @@
1521
1523
  "parameters": {
1522
1524
  "yearMonth": {
1523
1525
  "in": "query",
1524
- "type": "string"
1526
+ "type": "string",
1527
+ "required": true
1525
1528
  },
1526
1529
  "cache": {
1527
1530
  "in": "query",
1528
- "type": "boolean"
1531
+ "type": "string"
1529
1532
  }
1530
1533
  }
1531
1534
  },
@@ -1539,11 +1542,12 @@
1539
1542
  "parameters": {
1540
1543
  "year": {
1541
1544
  "in": "query",
1542
- "type": "string"
1545
+ "type": "string",
1546
+ "required": true
1543
1547
  },
1544
1548
  "cache": {
1545
1549
  "in": "query",
1546
- "type": "boolean"
1550
+ "type": "string"
1547
1551
  }
1548
1552
  }
1549
1553
  },
@@ -1906,11 +1906,12 @@
1906
1906
  "parameters": {
1907
1907
  "date": {
1908
1908
  "in": "query",
1909
- "type": "string"
1909
+ "type": "string",
1910
+ "required": true
1910
1911
  },
1911
1912
  "cache": {
1912
1913
  "in": "query",
1913
- "type": "boolean"
1914
+ "type": "string"
1914
1915
  }
1915
1916
  }
1916
1917
  },
@@ -1924,11 +1925,12 @@
1924
1925
  "parameters": {
1925
1926
  "isoWeek": {
1926
1927
  "in": "query",
1927
- "type": "string"
1928
+ "type": "string",
1929
+ "required": true
1928
1930
  },
1929
1931
  "cache": {
1930
1932
  "in": "query",
1931
- "type": "boolean"
1933
+ "type": "string"
1932
1934
  }
1933
1935
  }
1934
1936
  },
@@ -1942,11 +1944,12 @@
1942
1944
  "parameters": {
1943
1945
  "yearMonth": {
1944
1946
  "in": "query",
1945
- "type": "string"
1947
+ "type": "string",
1948
+ "required": true
1946
1949
  },
1947
1950
  "cache": {
1948
1951
  "in": "query",
1949
- "type": "boolean"
1952
+ "type": "string"
1950
1953
  }
1951
1954
  }
1952
1955
  },
@@ -1960,11 +1963,12 @@
1960
1963
  "parameters": {
1961
1964
  "year": {
1962
1965
  "in": "query",
1963
- "type": "string"
1966
+ "type": "string",
1967
+ "required": true
1964
1968
  },
1965
1969
  "cache": {
1966
1970
  "in": "query",
1967
- "type": "boolean"
1971
+ "type": "string"
1968
1972
  }
1969
1973
  }
1970
1974
  },
@@ -1585,6 +1585,8 @@ export class AthomCloudAPI {
1585
1585
 
1586
1586
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
1587
1587
 
1588
+ getInstallerInformation(): Promise<any>;
1589
+
1588
1590
  isLoggedIn(): Promise<boolean>;
1589
1591
 
1590
1592
  getAuthenticatedUser(opts?: { $cache?: object }): Promise<AthomCloudAPI.User>;
@@ -1615,6 +1617,8 @@ export class AthomCloudAPI {
1615
1617
 
1616
1618
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
1617
1619
 
1620
+ getInstallerInformation(): Promise<any>;
1621
+
1618
1622
  isLoggedIn(): Promise<boolean>;
1619
1623
 
1620
1624
  getAuthenticatedUser(opts?: { $cache?: object }): Promise<AthomCloudAPI.User>;
@@ -1765,6 +1769,8 @@ export class AthomCloudAPI {
1765
1769
 
1766
1770
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
1767
1771
 
1772
+ getInstallerInformation(): Promise<any>;
1773
+
1768
1774
  isLoggedIn(): Promise<boolean>;
1769
1775
 
1770
1776
  getAuthenticatedUser(opts?: { $cache?: object }): Promise<AthomCloudAPI.User>;
@@ -1795,6 +1801,8 @@ export class AthomCloudAPI {
1795
1801
 
1796
1802
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
1797
1803
 
1804
+ getInstallerInformation(): Promise<any>;
1805
+
1798
1806
  isLoggedIn(): Promise<boolean>;
1799
1807
 
1800
1808
  getAuthenticatedUser(opts?: { $cache?: object }): Promise<AthomCloudAPI.User>;
@@ -2201,27 +2209,27 @@ export namespace HomeyAPIV3Cloud {
2201
2209
  getLiveReport(opts: { zone?: string }): Promise<any>;
2202
2210
 
2203
2211
  getReportDay(opts: {
2204
- date?: string;
2212
+ date: string;
2205
2213
 
2206
- cache?: boolean;
2214
+ cache?: string;
2207
2215
  }): Promise<any>;
2208
2216
 
2209
2217
  getReportWeek(opts: {
2210
- isoWeek?: string;
2218
+ isoWeek: string;
2211
2219
 
2212
- cache?: boolean;
2220
+ cache?: string;
2213
2221
  }): Promise<any>;
2214
2222
 
2215
2223
  getReportMonth(opts: {
2216
- yearMonth?: string;
2224
+ yearMonth: string;
2217
2225
 
2218
- cache?: boolean;
2226
+ cache?: string;
2219
2227
  }): Promise<any>;
2220
2228
 
2221
2229
  getReportYear(opts: {
2222
- year?: string;
2230
+ year: string;
2223
2231
 
2224
- cache?: boolean;
2232
+ cache?: string;
2225
2233
  }): Promise<any>;
2226
2234
 
2227
2235
  getReportsAvailable(): Promise<any>;
@@ -3753,27 +3761,27 @@ export namespace HomeyAPIV3Local {
3753
3761
  getLiveReport(opts: { zone?: string }): Promise<any>;
3754
3762
 
3755
3763
  getReportDay(opts: {
3756
- date?: string;
3764
+ date: string;
3757
3765
 
3758
- cache?: boolean;
3766
+ cache?: string;
3759
3767
  }): Promise<any>;
3760
3768
 
3761
3769
  getReportWeek(opts: {
3762
- isoWeek?: string;
3770
+ isoWeek: string;
3763
3771
 
3764
- cache?: boolean;
3772
+ cache?: string;
3765
3773
  }): Promise<any>;
3766
3774
 
3767
3775
  getReportMonth(opts: {
3768
- yearMonth?: string;
3776
+ yearMonth: string;
3769
3777
 
3770
- cache?: boolean;
3778
+ cache?: string;
3771
3779
  }): Promise<any>;
3772
3780
 
3773
3781
  getReportYear(opts: {
3774
- year?: string;
3782
+ year: string;
3775
3783
 
3776
- cache?: boolean;
3784
+ cache?: string;
3777
3785
  }): Promise<any>;
3778
3786
 
3779
3787
  getReportsAvailable(): Promise<any>;
@@ -2762,6 +2762,8 @@ export class AthomCloudAPI {
2762
2762
 
2763
2763
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
2764
2764
 
2765
+ getInstallerInformation(): Promise<any>;
2766
+
2765
2767
  getBridges(opts: {
2766
2768
  serial?: string;
2767
2769
 
@@ -3346,6 +3348,8 @@ export class AthomCloudAPI {
3346
3348
 
3347
3349
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
3348
3350
 
3351
+ getInstallerInformation(): Promise<any>;
3352
+
3349
3353
  getBridges(opts: {
3350
3354
  serial?: string;
3351
3355
 
@@ -6130,6 +6134,8 @@ export class AthomCloudAPI {
6130
6134
 
6131
6135
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
6132
6136
 
6137
+ getInstallerInformation(): Promise<any>;
6138
+
6133
6139
  getBridges(opts: {
6134
6140
  serial?: string;
6135
6141
 
@@ -6714,6 +6720,8 @@ export class AthomCloudAPI {
6714
6720
 
6715
6721
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
6716
6722
 
6723
+ getInstallerInformation(): Promise<any>;
6724
+
6717
6725
  getBridges(opts: {
6718
6726
  serial?: string;
6719
6727
 
@@ -8760,27 +8768,27 @@ export namespace HomeyAPIV3Cloud {
8760
8768
  getLiveReport(opts: { zone?: string }): Promise<any>;
8761
8769
 
8762
8770
  getReportDay(opts: {
8763
- date?: string;
8771
+ date: string;
8764
8772
 
8765
- cache?: boolean;
8773
+ cache?: string;
8766
8774
  }): Promise<any>;
8767
8775
 
8768
8776
  getReportWeek(opts: {
8769
- isoWeek?: string;
8777
+ isoWeek: string;
8770
8778
 
8771
- cache?: boolean;
8779
+ cache?: string;
8772
8780
  }): Promise<any>;
8773
8781
 
8774
8782
  getReportMonth(opts: {
8775
- yearMonth?: string;
8783
+ yearMonth: string;
8776
8784
 
8777
- cache?: boolean;
8785
+ cache?: string;
8778
8786
  }): Promise<any>;
8779
8787
 
8780
8788
  getReportYear(opts: {
8781
- year?: string;
8789
+ year: string;
8782
8790
 
8783
- cache?: boolean;
8791
+ cache?: string;
8784
8792
  }): Promise<any>;
8785
8793
 
8786
8794
  getReportsAvailable(): Promise<any>;
@@ -10520,27 +10528,27 @@ export namespace HomeyAPIV3Local {
10520
10528
  getLiveReport(opts: { zone?: string }): Promise<any>;
10521
10529
 
10522
10530
  getReportDay(opts: {
10523
- date?: string;
10531
+ date: string;
10524
10532
 
10525
- cache?: boolean;
10533
+ cache?: string;
10526
10534
  }): Promise<any>;
10527
10535
 
10528
10536
  getReportWeek(opts: {
10529
- isoWeek?: string;
10537
+ isoWeek: string;
10530
10538
 
10531
- cache?: boolean;
10539
+ cache?: string;
10532
10540
  }): Promise<any>;
10533
10541
 
10534
10542
  getReportMonth(opts: {
10535
- yearMonth?: string;
10543
+ yearMonth: string;
10536
10544
 
10537
- cache?: boolean;
10545
+ cache?: string;
10538
10546
  }): Promise<any>;
10539
10547
 
10540
10548
  getReportYear(opts: {
10541
- year?: string;
10549
+ year: string;
10542
10550
 
10543
- cache?: boolean;
10551
+ cache?: string;
10544
10552
  }): Promise<any>;
10545
10553
 
10546
10554
  getReportsAvailable(): Promise<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-api",
3
- "version": "3.11.0",
3
+ "version": "3.11.2",
4
4
  "description": "Homey API",
5
5
  "main": "index.js",
6
6
  "files": [