homey-api 3.5.3 → 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",
@@ -514,6 +514,18 @@
514
514
  "private": true,
515
515
  "parameters": {}
516
516
  },
517
+ "getPersonalAccessTokenApps": {
518
+ "path": "/user/me/pat/apps",
519
+ "method": "get",
520
+ "private": true,
521
+ "parameters": {}
522
+ },
523
+ "deletePersonalAccessTokenApps": {
524
+ "path": "/user/me/pat/apps",
525
+ "method": "delete",
526
+ "private": true,
527
+ "parameters": {}
528
+ },
517
529
  "updateAuthenticatedUserPassword": {
518
530
  "path": "/user/me/password",
519
531
  "method": "post",
@@ -1078,6 +1090,26 @@
1078
1090
  }
1079
1091
  }
1080
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
+ },
1081
1113
  "sendFormattedEmail": {
1082
1114
  "path": "/mail/formatted",
1083
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>;
@@ -2539,6 +2543,10 @@ export class AthomCloudAPI {
2539
2543
 
2540
2544
  getAcceptedInvites(): Promise<any>;
2541
2545
 
2546
+ getPersonalAccessTokenApps(): Promise<any>;
2547
+
2548
+ deletePersonalAccessTokenApps(): Promise<any>;
2549
+
2542
2550
  updateAuthenticatedUserPassword(opts: {
2543
2551
  password?: string;
2544
2552
 
@@ -2775,6 +2783,14 @@ export class AthomCloudAPI {
2775
2783
  key: string;
2776
2784
  }): Promise<any>;
2777
2785
 
2786
+ updateHomeySendConnectionNotifications(opts: {
2787
+ homeyId: string;
2788
+
2789
+ push?: boolean;
2790
+
2791
+ email?: boolean;
2792
+ }): Promise<any>;
2793
+
2778
2794
  sendFormattedEmail(opts: {
2779
2795
  to?: string;
2780
2796
 
@@ -3099,6 +3115,10 @@ export class AthomCloudAPI {
3099
3115
 
3100
3116
  getAcceptedInvites(): Promise<any>;
3101
3117
 
3118
+ getPersonalAccessTokenApps(): Promise<any>;
3119
+
3120
+ deletePersonalAccessTokenApps(): Promise<any>;
3121
+
3102
3122
  updateAuthenticatedUserPassword(opts: {
3103
3123
  password?: string;
3104
3124
 
@@ -3335,6 +3355,14 @@ export class AthomCloudAPI {
3335
3355
  key: string;
3336
3356
  }): Promise<any>;
3337
3357
 
3358
+ updateHomeySendConnectionNotifications(opts: {
3359
+ homeyId: string;
3360
+
3361
+ push?: boolean;
3362
+
3363
+ email?: boolean;
3364
+ }): Promise<any>;
3365
+
3338
3366
  sendFormattedEmail(opts: {
3339
3367
  to?: string;
3340
3368
 
@@ -3991,6 +4019,8 @@ export class AthomStoreAPI {
3991
4019
  business_name?: string;
3992
4020
 
3993
4021
  business_vat?: string;
4022
+
4023
+ business_reference?: string;
3994
4024
  }): Promise<any>;
3995
4025
 
3996
4026
  setBusiness(opts: { business?: boolean }): Promise<any>;
@@ -4215,6 +4245,8 @@ export class AthomStoreAPI {
4215
4245
  business_name?: string;
4216
4246
 
4217
4247
  business_vat?: string;
4248
+
4249
+ business_reference?: string;
4218
4250
  }): Promise<any>;
4219
4251
 
4220
4252
  setBusiness(opts: { business?: boolean }): Promise<any>;
@@ -4931,6 +4963,8 @@ export class AthomAppsAPI {
4931
4963
 
4932
4964
  getAllLiveAppIDs(): Promise<any>;
4933
4965
 
4966
+ getAllLiveApps(): Promise<any>;
4967
+
4934
4968
  getReviewApps(): Promise<any>;
4935
4969
 
4936
4970
  getApp(opts: { appId: string }): Promise<any>;
@@ -5235,6 +5269,8 @@ export class AthomAppsAPI {
5235
5269
 
5236
5270
  getAllLiveAppIDs(): Promise<any>;
5237
5271
 
5272
+ getAllLiveApps(): Promise<any>;
5273
+
5238
5274
  getReviewApps(): Promise<any>;
5239
5275
 
5240
5276
  getApp(opts: { appId: string }): Promise<any>;
@@ -5791,6 +5827,10 @@ export class AthomCloudAPI {
5791
5827
 
5792
5828
  getAcceptedInvites(): Promise<any>;
5793
5829
 
5830
+ getPersonalAccessTokenApps(): Promise<any>;
5831
+
5832
+ deletePersonalAccessTokenApps(): Promise<any>;
5833
+
5794
5834
  updateAuthenticatedUserPassword(opts: {
5795
5835
  password?: string;
5796
5836
 
@@ -6027,6 +6067,14 @@ export class AthomCloudAPI {
6027
6067
  key: string;
6028
6068
  }): Promise<any>;
6029
6069
 
6070
+ updateHomeySendConnectionNotifications(opts: {
6071
+ homeyId: string;
6072
+
6073
+ push?: boolean;
6074
+
6075
+ email?: boolean;
6076
+ }): Promise<any>;
6077
+
6030
6078
  sendFormattedEmail(opts: {
6031
6079
  to?: string;
6032
6080
 
@@ -6351,6 +6399,10 @@ export class AthomCloudAPI {
6351
6399
 
6352
6400
  getAcceptedInvites(): Promise<any>;
6353
6401
 
6402
+ getPersonalAccessTokenApps(): Promise<any>;
6403
+
6404
+ deletePersonalAccessTokenApps(): Promise<any>;
6405
+
6354
6406
  updateAuthenticatedUserPassword(opts: {
6355
6407
  password?: string;
6356
6408
 
@@ -6587,6 +6639,14 @@ export class AthomCloudAPI {
6587
6639
  key: string;
6588
6640
  }): Promise<any>;
6589
6641
 
6642
+ updateHomeySendConnectionNotifications(opts: {
6643
+ homeyId: string;
6644
+
6645
+ push?: boolean;
6646
+
6647
+ email?: boolean;
6648
+ }): Promise<any>;
6649
+
6590
6650
  sendFormattedEmail(opts: {
6591
6651
  to?: string;
6592
6652
 
@@ -7243,6 +7303,8 @@ export class AthomStoreAPI {
7243
7303
  business_name?: string;
7244
7304
 
7245
7305
  business_vat?: string;
7306
+
7307
+ business_reference?: string;
7246
7308
  }): Promise<any>;
7247
7309
 
7248
7310
  setBusiness(opts: { business?: boolean }): Promise<any>;
@@ -7467,6 +7529,8 @@ export class AthomStoreAPI {
7467
7529
  business_name?: string;
7468
7530
 
7469
7531
  business_vat?: string;
7532
+
7533
+ business_reference?: string;
7470
7534
  }): Promise<any>;
7471
7535
 
7472
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.5.3",
3
+ "version": "3.6.1",
4
4
  "description": "Homey API",
5
5
  "main": "index.js",
6
6
  "files": [