homey-api 3.14.6 → 3.14.7

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,38 @@
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
+ "data": {
1224
+ "in": "body",
1225
+ "type": "object",
1226
+ "required": true,
1227
+ "unpack": true,
1228
+ "properties": {
1229
+ "type": {
1230
+ "type": "string"
1231
+ },
1232
+ "expiresAt": {
1233
+ "type": "string"
1234
+ }
1235
+ }
1236
+ }
1237
+ }
1238
+ },
1207
1239
  "sendFormattedEmail": {
1208
1240
  "path": "/mail/formatted",
1209
1241
  "method": "post",
@@ -3716,6 +3716,18 @@ 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
+ data: {
3725
+ type: string;
3726
+
3727
+ expiresAt: string;
3728
+ };
3729
+ }): Promise<any>;
3730
+
3719
3731
  sendFormattedEmail(opts: {
3720
3732
  to?: string;
3721
3733
 
@@ -4366,6 +4378,18 @@ export class AthomCloudAPI {
4366
4378
  email?: boolean;
4367
4379
  }): Promise<any>;
4368
4380
 
4381
+ createHomeySelfHostedServer(): Promise<any>;
4382
+
4383
+ updateHomeySelfHostedServerSubscription(opts: {
4384
+ homeyId: string;
4385
+
4386
+ data: {
4387
+ type: string;
4388
+
4389
+ expiresAt: string;
4390
+ };
4391
+ }): Promise<any>;
4392
+
4369
4393
  sendFormattedEmail(opts: {
4370
4394
  to?: string;
4371
4395
 
@@ -7294,6 +7318,18 @@ export class AthomCloudAPI {
7294
7318
  email?: boolean;
7295
7319
  }): Promise<any>;
7296
7320
 
7321
+ createHomeySelfHostedServer(): Promise<any>;
7322
+
7323
+ updateHomeySelfHostedServerSubscription(opts: {
7324
+ homeyId: string;
7325
+
7326
+ data: {
7327
+ type: string;
7328
+
7329
+ expiresAt: string;
7330
+ };
7331
+ }): Promise<any>;
7332
+
7297
7333
  sendFormattedEmail(opts: {
7298
7334
  to?: string;
7299
7335
 
@@ -7944,6 +7980,18 @@ export class AthomCloudAPI {
7944
7980
  email?: boolean;
7945
7981
  }): Promise<any>;
7946
7982
 
7983
+ createHomeySelfHostedServer(): Promise<any>;
7984
+
7985
+ updateHomeySelfHostedServerSubscription(opts: {
7986
+ homeyId: string;
7987
+
7988
+ data: {
7989
+ type: string;
7990
+
7991
+ expiresAt: string;
7992
+ };
7993
+ }): Promise<any>;
7994
+
7947
7995
  sendFormattedEmail(opts: {
7948
7996
  to?: string;
7949
7997
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-api",
3
- "version": "3.14.6",
3
+ "version": "3.14.7",
4
4
  "description": "Homey API",
5
5
  "main": "index.js",
6
6
  "files": [