homey-api 1.5.1 → 1.5.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.
@@ -142,6 +142,24 @@
142
142
  }
143
143
  }
144
144
  },
145
+ "getHighlightedAppsV2": {
146
+ "path": "/app/highlight2",
147
+ "method": "get",
148
+ "parameters": {
149
+ "platform": {
150
+ "in": "query",
151
+ "type": "array"
152
+ },
153
+ "language": {
154
+ "in": "query",
155
+ "type": "string"
156
+ },
157
+ "tags": {
158
+ "in": "query",
159
+ "type": "array"
160
+ }
161
+ }
162
+ },
145
163
  "getMyApps": {
146
164
  "path": "/app/me",
147
165
  "method": "get",
@@ -283,6 +283,33 @@
283
283
 
284
284
 
285
285
 
286
+ ):
287
+ Promise<any>;
288
+
289
+ getHighlightedAppsV2(
290
+
291
+
292
+
293
+
294
+ opts: {
295
+
296
+
297
+ platform: Array<any>,
298
+
299
+
300
+
301
+ language: string,
302
+
303
+
304
+
305
+ tags: Array<any>,
306
+
307
+
308
+ },
309
+
310
+
311
+
312
+
286
313
  ):
287
314
  Promise<any>;
288
315
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-api",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "Homey API",
5
5
  "main": "src/index.js",
6
6
  "types": "assets/types/homey-api.d.ts",
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "core-js": "^3.19.1",
42
- "node-fetch": "^2.6.6",
42
+ "node-fetch": "^2.6.7",
43
43
  "regenerator-runtime": "^0.13.9",
44
44
  "socket.io-client": "^1.7.4"
45
45
  },