homey-api 3.12.2 → 3.12.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.
@@ -26,6 +26,27 @@
26
26
  "type": "string"
27
27
  }
28
28
  }
29
+ },
30
+ "getHourlyWeather": {
31
+ "path": "/forecast/hourly",
32
+ "method": "get",
33
+ "parameters": {
34
+ "latitude": {
35
+ "in": "query",
36
+ "type": "string",
37
+ "required": true
38
+ },
39
+ "longitude": {
40
+ "in": "query",
41
+ "type": "string",
42
+ "required": true
43
+ },
44
+ "homey": {
45
+ "in": "query",
46
+ "type": "string",
47
+ "required": true
48
+ }
49
+ }
29
50
  }
30
51
  }
31
52
  }
@@ -4748,6 +4748,14 @@ export class AthomWeatherAPI {
4748
4748
  language?: string;
4749
4749
  }): Promise<any>;
4750
4750
 
4751
+ getHourlyWeather(opts: {
4752
+ latitude: string;
4753
+
4754
+ longitude: string;
4755
+
4756
+ homey: string;
4757
+ }): Promise<any>;
4758
+
4751
4759
  getWeather(opts: {
4752
4760
  latitude: string;
4753
4761
 
@@ -4757,6 +4765,14 @@ export class AthomWeatherAPI {
4757
4765
 
4758
4766
  language?: string;
4759
4767
  }): Promise<any>;
4768
+
4769
+ getHourlyWeather(opts: {
4770
+ latitude: string;
4771
+
4772
+ longitude: string;
4773
+
4774
+ homey: string;
4775
+ }): Promise<any>;
4760
4776
  }
4761
4777
 
4762
4778
  export class AthomWebhooksAPI {
@@ -8226,6 +8242,14 @@ export class AthomWeatherAPI {
8226
8242
  language?: string;
8227
8243
  }): Promise<any>;
8228
8244
 
8245
+ getHourlyWeather(opts: {
8246
+ latitude: string;
8247
+
8248
+ longitude: string;
8249
+
8250
+ homey: string;
8251
+ }): Promise<any>;
8252
+
8229
8253
  getWeather(opts: {
8230
8254
  latitude: string;
8231
8255
 
@@ -8235,6 +8259,14 @@ export class AthomWeatherAPI {
8235
8259
 
8236
8260
  language?: string;
8237
8261
  }): Promise<any>;
8262
+
8263
+ getHourlyWeather(opts: {
8264
+ latitude: string;
8265
+
8266
+ longitude: string;
8267
+
8268
+ homey: string;
8269
+ }): Promise<any>;
8238
8270
  }
8239
8271
 
8240
8272
  export class AthomWebhooksAPI {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-api",
3
- "version": "3.12.2",
3
+ "version": "3.12.3",
4
4
  "description": "Homey API",
5
5
  "main": "index.js",
6
6
  "files": [