homey-api 3.6.5 → 3.6.6

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.
@@ -819,6 +819,21 @@
819
819
  "in": "body"
820
820
  }
821
821
  }
822
+ },
823
+ "createAppSuggestion": {
824
+ "path": "/app/{appId}/suggestion",
825
+ "method": "post",
826
+ "parameters": {
827
+ "appId": {
828
+ "in": "path",
829
+ "type": "string",
830
+ "required": true
831
+ },
832
+ "suggestionText": {
833
+ "type": "string",
834
+ "in": "body"
835
+ }
836
+ }
822
837
  }
823
838
  }
824
839
  }
@@ -1905,6 +1905,12 @@ export class AthomAppsAPI {
1905
1905
  mac?: Array<any>;
1906
1906
  }): Promise<any>;
1907
1907
 
1908
+ createAppSuggestion(opts: {
1909
+ appId: string;
1910
+
1911
+ suggestionText?: string;
1912
+ }): Promise<any>;
1913
+
1908
1914
  updateArchive(opts: {
1909
1915
  archiveId: string;
1910
1916
 
@@ -2212,6 +2218,12 @@ export class AthomAppsAPI {
2212
2218
 
2213
2219
  mac?: Array<any>;
2214
2220
  }): Promise<any>;
2221
+
2222
+ createAppSuggestion(opts: {
2223
+ appId: string;
2224
+
2225
+ suggestionText?: string;
2226
+ }): Promise<any>;
2215
2227
  }
2216
2228
 
2217
2229
  export class AthomBackupAPI {
@@ -5205,6 +5217,12 @@ export class AthomAppsAPI {
5205
5217
  mac?: Array<any>;
5206
5218
  }): Promise<any>;
5207
5219
 
5220
+ createAppSuggestion(opts: {
5221
+ appId: string;
5222
+
5223
+ suggestionText?: string;
5224
+ }): Promise<any>;
5225
+
5208
5226
  updateArchive(opts: {
5209
5227
  archiveId: string;
5210
5228
 
@@ -5512,6 +5530,12 @@ export class AthomAppsAPI {
5512
5530
 
5513
5531
  mac?: Array<any>;
5514
5532
  }): Promise<any>;
5533
+
5534
+ createAppSuggestion(opts: {
5535
+ appId: string;
5536
+
5537
+ suggestionText?: string;
5538
+ }): Promise<any>;
5515
5539
  }
5516
5540
 
5517
5541
  export class AthomBackupAPI {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-api",
3
- "version": "3.6.5",
3
+ "version": "3.6.6",
4
4
  "description": "Homey API",
5
5
  "main": "index.js",
6
6
  "files": [