homey-api 3.14.6 → 3.14.8

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.
@@ -1204,6 +1204,32 @@
1204
1204
  }
1205
1205
  }
1206
1206
  },
1207
+ "createHomeySelfHostedServer": {
1208
+ "path": "/homey/shs",
1209
+ "method": "post",
1210
+ "private": true,
1211
+ "parameters": {}
1212
+ },
1213
+ "updateHomeySelfHostedServerSubscription": {
1214
+ "path": "/homey/shs/{homeyId}/subscription",
1215
+ "method": "put",
1216
+ "private": true,
1217
+ "parameters": {
1218
+ "homeyId": {
1219
+ "in": "path",
1220
+ "type": "string",
1221
+ "required": true
1222
+ },
1223
+ "type": {
1224
+ "type": "string",
1225
+ "in": "body"
1226
+ },
1227
+ "expiresAt": {
1228
+ "type": "string",
1229
+ "in": "body"
1230
+ }
1231
+ }
1232
+ },
1207
1233
  "sendFormattedEmail": {
1208
1234
  "path": "/mail/formatted",
1209
1235
  "method": "post",
@@ -3716,6 +3716,16 @@ export class AthomCloudAPI {
3716
3716
  email?: boolean;
3717
3717
  }): Promise<any>;
3718
3718
 
3719
+ createHomeySelfHostedServer(): Promise<any>;
3720
+
3721
+ updateHomeySelfHostedServerSubscription(opts: {
3722
+ homeyId: string;
3723
+
3724
+ type?: string;
3725
+
3726
+ expiresAt?: string;
3727
+ }): Promise<any>;
3728
+
3719
3729
  sendFormattedEmail(opts: {
3720
3730
  to?: string;
3721
3731
 
@@ -4366,6 +4376,16 @@ export class AthomCloudAPI {
4366
4376
  email?: boolean;
4367
4377
  }): Promise<any>;
4368
4378
 
4379
+ createHomeySelfHostedServer(): Promise<any>;
4380
+
4381
+ updateHomeySelfHostedServerSubscription(opts: {
4382
+ homeyId: string;
4383
+
4384
+ type?: string;
4385
+
4386
+ expiresAt?: string;
4387
+ }): Promise<any>;
4388
+
4369
4389
  sendFormattedEmail(opts: {
4370
4390
  to?: string;
4371
4391
 
@@ -7294,6 +7314,16 @@ export class AthomCloudAPI {
7294
7314
  email?: boolean;
7295
7315
  }): Promise<any>;
7296
7316
 
7317
+ createHomeySelfHostedServer(): Promise<any>;
7318
+
7319
+ updateHomeySelfHostedServerSubscription(opts: {
7320
+ homeyId: string;
7321
+
7322
+ type?: string;
7323
+
7324
+ expiresAt?: string;
7325
+ }): Promise<any>;
7326
+
7297
7327
  sendFormattedEmail(opts: {
7298
7328
  to?: string;
7299
7329
 
@@ -7944,6 +7974,16 @@ export class AthomCloudAPI {
7944
7974
  email?: boolean;
7945
7975
  }): Promise<any>;
7946
7976
 
7977
+ createHomeySelfHostedServer(): Promise<any>;
7978
+
7979
+ updateHomeySelfHostedServerSubscription(opts: {
7980
+ homeyId: string;
7981
+
7982
+ type?: string;
7983
+
7984
+ expiresAt?: string;
7985
+ }): Promise<any>;
7986
+
7947
7987
  sendFormattedEmail(opts: {
7948
7988
  to?: string;
7949
7989
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-api",
3
- "version": "3.14.6",
3
+ "version": "3.14.8",
4
4
  "description": "Homey API",
5
5
  "main": "index.js",
6
6
  "files": [