homey-api 1.4.3 → 1.4.4

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.
@@ -140,6 +140,17 @@
140
140
  }
141
141
  }
142
142
  },
143
+ "getAppChangelog": {
144
+ "path": "/app/{appId}/changelog",
145
+ "method": "get",
146
+ "parameters": {
147
+ "appId": {
148
+ "in": "path",
149
+ "type": "string",
150
+ "required": true
151
+ }
152
+ }
153
+ },
143
154
  "updateAppAuthor": {
144
155
  "path": "/app/{appId}/author",
145
156
  "method": "put",
@@ -285,6 +285,8 @@ class HomeyAPIV2 extends HomeyAPI {
285
285
  promises.push(pings[HomeyAPI.DISCOVERY_STRATEGIES.MDNS]);
286
286
  }
287
287
 
288
+ // TODO: Move this to the catch handler to always fallback on cloud
289
+ // Now mdns or local will error first and cloud won't have a chance!!
288
290
  if (pings[HomeyAPI.DISCOVERY_STRATEGIES.CLOUD]) {
289
291
  promises.push(pings[HomeyAPI.DISCOVERY_STRATEGIES.CLOUD]);
290
292
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-api",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "description": "Homey API",
5
5
  "main": "src/index.js",
6
6
  "types": "assets/types/homey-api.d.ts",