homey-api 3.6.0 → 3.6.1

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.
@@ -294,6 +294,11 @@
294
294
  "method": "get",
295
295
  "parameters": {}
296
296
  },
297
+ "getAllLiveApps": {
298
+ "path": "/app/all",
299
+ "method": "get",
300
+ "parameters": {}
301
+ },
297
302
  "getReviewApps": {
298
303
  "path": "/app/review",
299
304
  "method": "get",
@@ -1090,6 +1090,26 @@
1090
1090
  }
1091
1091
  }
1092
1092
  },
1093
+ "updateHomeySendConnectionNotifications": {
1094
+ "path": "/homey/{homeyId}/send-connection-notifications",
1095
+ "method": "put",
1096
+ "private": true,
1097
+ "parameters": {
1098
+ "homeyId": {
1099
+ "in": "path",
1100
+ "type": "string",
1101
+ "required": true
1102
+ },
1103
+ "push": {
1104
+ "type": "boolean",
1105
+ "in": "body"
1106
+ },
1107
+ "email": {
1108
+ "type": "boolean",
1109
+ "in": "body"
1110
+ }
1111
+ }
1112
+ },
1093
1113
  "sendFormattedEmail": {
1094
1114
  "path": "/mail/formatted",
1095
1115
  "method": "post",
@@ -195,6 +195,10 @@
195
195
  "business_vat": {
196
196
  "type": "string",
197
197
  "in": "body"
198
+ },
199
+ "business_reference": {
200
+ "type": "string",
201
+ "in": "body"
198
202
  }
199
203
  }
200
204
  },
@@ -1679,6 +1679,8 @@ export class AthomAppsAPI {
1679
1679
 
1680
1680
  getAllLiveAppIDs(): Promise<any>;
1681
1681
 
1682
+ getAllLiveApps(): Promise<any>;
1683
+
1682
1684
  getReviewApps(): Promise<any>;
1683
1685
 
1684
1686
  getApp(opts: { appId: string }): Promise<any>;
@@ -1983,6 +1985,8 @@ export class AthomAppsAPI {
1983
1985
 
1984
1986
  getAllLiveAppIDs(): Promise<any>;
1985
1987
 
1988
+ getAllLiveApps(): Promise<any>;
1989
+
1986
1990
  getReviewApps(): Promise<any>;
1987
1991
 
1988
1992
  getApp(opts: { appId: string }): Promise<any>;
@@ -2779,6 +2783,14 @@ export class AthomCloudAPI {
2779
2783
  key: string;
2780
2784
  }): Promise<any>;
2781
2785
 
2786
+ updateHomeySendConnectionNotifications(opts: {
2787
+ homeyId: string;
2788
+
2789
+ push?: boolean;
2790
+
2791
+ email?: boolean;
2792
+ }): Promise<any>;
2793
+
2782
2794
  sendFormattedEmail(opts: {
2783
2795
  to?: string;
2784
2796
 
@@ -3343,6 +3355,14 @@ export class AthomCloudAPI {
3343
3355
  key: string;
3344
3356
  }): Promise<any>;
3345
3357
 
3358
+ updateHomeySendConnectionNotifications(opts: {
3359
+ homeyId: string;
3360
+
3361
+ push?: boolean;
3362
+
3363
+ email?: boolean;
3364
+ }): Promise<any>;
3365
+
3346
3366
  sendFormattedEmail(opts: {
3347
3367
  to?: string;
3348
3368
 
@@ -3999,6 +4019,8 @@ export class AthomStoreAPI {
3999
4019
  business_name?: string;
4000
4020
 
4001
4021
  business_vat?: string;
4022
+
4023
+ business_reference?: string;
4002
4024
  }): Promise<any>;
4003
4025
 
4004
4026
  setBusiness(opts: { business?: boolean }): Promise<any>;
@@ -4223,6 +4245,8 @@ export class AthomStoreAPI {
4223
4245
  business_name?: string;
4224
4246
 
4225
4247
  business_vat?: string;
4248
+
4249
+ business_reference?: string;
4226
4250
  }): Promise<any>;
4227
4251
 
4228
4252
  setBusiness(opts: { business?: boolean }): Promise<any>;
@@ -4939,6 +4963,8 @@ export class AthomAppsAPI {
4939
4963
 
4940
4964
  getAllLiveAppIDs(): Promise<any>;
4941
4965
 
4966
+ getAllLiveApps(): Promise<any>;
4967
+
4942
4968
  getReviewApps(): Promise<any>;
4943
4969
 
4944
4970
  getApp(opts: { appId: string }): Promise<any>;
@@ -5243,6 +5269,8 @@ export class AthomAppsAPI {
5243
5269
 
5244
5270
  getAllLiveAppIDs(): Promise<any>;
5245
5271
 
5272
+ getAllLiveApps(): Promise<any>;
5273
+
5246
5274
  getReviewApps(): Promise<any>;
5247
5275
 
5248
5276
  getApp(opts: { appId: string }): Promise<any>;
@@ -6039,6 +6067,14 @@ export class AthomCloudAPI {
6039
6067
  key: string;
6040
6068
  }): Promise<any>;
6041
6069
 
6070
+ updateHomeySendConnectionNotifications(opts: {
6071
+ homeyId: string;
6072
+
6073
+ push?: boolean;
6074
+
6075
+ email?: boolean;
6076
+ }): Promise<any>;
6077
+
6042
6078
  sendFormattedEmail(opts: {
6043
6079
  to?: string;
6044
6080
 
@@ -6603,6 +6639,14 @@ export class AthomCloudAPI {
6603
6639
  key: string;
6604
6640
  }): Promise<any>;
6605
6641
 
6642
+ updateHomeySendConnectionNotifications(opts: {
6643
+ homeyId: string;
6644
+
6645
+ push?: boolean;
6646
+
6647
+ email?: boolean;
6648
+ }): Promise<any>;
6649
+
6606
6650
  sendFormattedEmail(opts: {
6607
6651
  to?: string;
6608
6652
 
@@ -7259,6 +7303,8 @@ export class AthomStoreAPI {
7259
7303
  business_name?: string;
7260
7304
 
7261
7305
  business_vat?: string;
7306
+
7307
+ business_reference?: string;
7262
7308
  }): Promise<any>;
7263
7309
 
7264
7310
  setBusiness(opts: { business?: boolean }): Promise<any>;
@@ -7483,6 +7529,8 @@ export class AthomStoreAPI {
7483
7529
  business_name?: string;
7484
7530
 
7485
7531
  business_vat?: string;
7532
+
7533
+ business_reference?: string;
7486
7534
  }): Promise<any>;
7487
7535
 
7488
7536
  setBusiness(opts: { business?: boolean }): Promise<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-api",
3
- "version": "3.6.0",
3
+ "version": "3.6.1",
4
4
  "description": "Homey API",
5
5
  "main": "index.js",
6
6
  "files": [