homey-api 3.10.1 → 3.11.0

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.
@@ -1486,6 +1486,10 @@
1486
1486
  "date": {
1487
1487
  "in": "query",
1488
1488
  "type": "string"
1489
+ },
1490
+ "cache": {
1491
+ "in": "query",
1492
+ "type": "boolean"
1489
1493
  }
1490
1494
  }
1491
1495
  },
@@ -1500,6 +1504,10 @@
1500
1504
  "isoWeek": {
1501
1505
  "in": "query",
1502
1506
  "type": "string"
1507
+ },
1508
+ "cache": {
1509
+ "in": "query",
1510
+ "type": "boolean"
1503
1511
  }
1504
1512
  }
1505
1513
  },
@@ -1514,6 +1522,10 @@
1514
1522
  "yearMonth": {
1515
1523
  "in": "query",
1516
1524
  "type": "string"
1525
+ },
1526
+ "cache": {
1527
+ "in": "query",
1528
+ "type": "boolean"
1517
1529
  }
1518
1530
  }
1519
1531
  },
@@ -1528,6 +1540,10 @@
1528
1540
  "year": {
1529
1541
  "in": "query",
1530
1542
  "type": "string"
1543
+ },
1544
+ "cache": {
1545
+ "in": "query",
1546
+ "type": "boolean"
1531
1547
  }
1532
1548
  }
1533
1549
  },
@@ -1907,6 +1907,10 @@
1907
1907
  "date": {
1908
1908
  "in": "query",
1909
1909
  "type": "string"
1910
+ },
1911
+ "cache": {
1912
+ "in": "query",
1913
+ "type": "boolean"
1910
1914
  }
1911
1915
  }
1912
1916
  },
@@ -1921,6 +1925,10 @@
1921
1925
  "isoWeek": {
1922
1926
  "in": "query",
1923
1927
  "type": "string"
1928
+ },
1929
+ "cache": {
1930
+ "in": "query",
1931
+ "type": "boolean"
1924
1932
  }
1925
1933
  }
1926
1934
  },
@@ -1935,6 +1943,10 @@
1935
1943
  "yearMonth": {
1936
1944
  "in": "query",
1937
1945
  "type": "string"
1946
+ },
1947
+ "cache": {
1948
+ "in": "query",
1949
+ "type": "boolean"
1938
1950
  }
1939
1951
  }
1940
1952
  },
@@ -1949,6 +1961,10 @@
1949
1961
  "year": {
1950
1962
  "in": "query",
1951
1963
  "type": "string"
1964
+ },
1965
+ "cache": {
1966
+ "in": "query",
1967
+ "type": "boolean"
1952
1968
  }
1953
1969
  }
1954
1970
  },
@@ -2200,13 +2200,29 @@ export namespace HomeyAPIV3Cloud {
2200
2200
 
2201
2201
  getLiveReport(opts: { zone?: string }): Promise<any>;
2202
2202
 
2203
- getReportDay(opts: { date?: string }): Promise<any>;
2203
+ getReportDay(opts: {
2204
+ date?: string;
2204
2205
 
2205
- getReportWeek(opts: { isoWeek?: string }): Promise<any>;
2206
+ cache?: boolean;
2207
+ }): Promise<any>;
2208
+
2209
+ getReportWeek(opts: {
2210
+ isoWeek?: string;
2211
+
2212
+ cache?: boolean;
2213
+ }): Promise<any>;
2206
2214
 
2207
- getReportMonth(opts: { yearMonth?: string }): Promise<any>;
2215
+ getReportMonth(opts: {
2216
+ yearMonth?: string;
2208
2217
 
2209
- getReportYear(opts: { year?: string }): Promise<any>;
2218
+ cache?: boolean;
2219
+ }): Promise<any>;
2220
+
2221
+ getReportYear(opts: {
2222
+ year?: string;
2223
+
2224
+ cache?: boolean;
2225
+ }): Promise<any>;
2210
2226
 
2211
2227
  getReportsAvailable(): Promise<any>;
2212
2228
 
@@ -3736,13 +3752,29 @@ export namespace HomeyAPIV3Local {
3736
3752
 
3737
3753
  getLiveReport(opts: { zone?: string }): Promise<any>;
3738
3754
 
3739
- getReportDay(opts: { date?: string }): Promise<any>;
3755
+ getReportDay(opts: {
3756
+ date?: string;
3740
3757
 
3741
- getReportWeek(opts: { isoWeek?: string }): Promise<any>;
3758
+ cache?: boolean;
3759
+ }): Promise<any>;
3760
+
3761
+ getReportWeek(opts: {
3762
+ isoWeek?: string;
3763
+
3764
+ cache?: boolean;
3765
+ }): Promise<any>;
3742
3766
 
3743
- getReportMonth(opts: { yearMonth?: string }): Promise<any>;
3767
+ getReportMonth(opts: {
3768
+ yearMonth?: string;
3744
3769
 
3745
- getReportYear(opts: { year?: string }): Promise<any>;
3770
+ cache?: boolean;
3771
+ }): Promise<any>;
3772
+
3773
+ getReportYear(opts: {
3774
+ year?: string;
3775
+
3776
+ cache?: boolean;
3777
+ }): Promise<any>;
3746
3778
 
3747
3779
  getReportsAvailable(): Promise<any>;
3748
3780
 
@@ -8759,13 +8759,29 @@ export namespace HomeyAPIV3Cloud {
8759
8759
 
8760
8760
  getLiveReport(opts: { zone?: string }): Promise<any>;
8761
8761
 
8762
- getReportDay(opts: { date?: string }): Promise<any>;
8762
+ getReportDay(opts: {
8763
+ date?: string;
8763
8764
 
8764
- getReportWeek(opts: { isoWeek?: string }): Promise<any>;
8765
+ cache?: boolean;
8766
+ }): Promise<any>;
8767
+
8768
+ getReportWeek(opts: {
8769
+ isoWeek?: string;
8770
+
8771
+ cache?: boolean;
8772
+ }): Promise<any>;
8765
8773
 
8766
- getReportMonth(opts: { yearMonth?: string }): Promise<any>;
8774
+ getReportMonth(opts: {
8775
+ yearMonth?: string;
8767
8776
 
8768
- getReportYear(opts: { year?: string }): Promise<any>;
8777
+ cache?: boolean;
8778
+ }): Promise<any>;
8779
+
8780
+ getReportYear(opts: {
8781
+ year?: string;
8782
+
8783
+ cache?: boolean;
8784
+ }): Promise<any>;
8769
8785
 
8770
8786
  getReportsAvailable(): Promise<any>;
8771
8787
 
@@ -10503,13 +10519,29 @@ export namespace HomeyAPIV3Local {
10503
10519
 
10504
10520
  getLiveReport(opts: { zone?: string }): Promise<any>;
10505
10521
 
10506
- getReportDay(opts: { date?: string }): Promise<any>;
10522
+ getReportDay(opts: {
10523
+ date?: string;
10507
10524
 
10508
- getReportWeek(opts: { isoWeek?: string }): Promise<any>;
10525
+ cache?: boolean;
10526
+ }): Promise<any>;
10527
+
10528
+ getReportWeek(opts: {
10529
+ isoWeek?: string;
10530
+
10531
+ cache?: boolean;
10532
+ }): Promise<any>;
10509
10533
 
10510
- getReportMonth(opts: { yearMonth?: string }): Promise<any>;
10534
+ getReportMonth(opts: {
10535
+ yearMonth?: string;
10511
10536
 
10512
- getReportYear(opts: { year?: string }): Promise<any>;
10537
+ cache?: boolean;
10538
+ }): Promise<any>;
10539
+
10540
+ getReportYear(opts: {
10541
+ year?: string;
10542
+
10543
+ cache?: boolean;
10544
+ }): Promise<any>;
10513
10545
 
10514
10546
  getReportsAvailable(): Promise<any>;
10515
10547
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-api",
3
- "version": "3.10.1",
3
+ "version": "3.11.0",
4
4
  "description": "Homey API",
5
5
  "main": "index.js",
6
6
  "files": [