homey-api 3.14.8 → 3.14.9

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.
@@ -791,6 +791,10 @@
791
791
  "type": "string",
792
792
  "required": true
793
793
  },
794
+ "appVersion": {
795
+ "type": "string",
796
+ "in": "body"
797
+ },
794
798
  "homeyId": {
795
799
  "type": "string",
796
800
  "in": "body"
@@ -799,7 +803,11 @@
799
803
  "type": "string",
800
804
  "in": "body"
801
805
  },
802
- "appVersion": {
806
+ "homeyModelId": {
807
+ "type": "string",
808
+ "in": "body"
809
+ },
810
+ "homeyModelName": {
803
811
  "type": "string",
804
812
  "in": "body"
805
813
  },
@@ -1230,6 +1230,22 @@
1230
1230
  }
1231
1231
  }
1232
1232
  },
1233
+ "transferHomeySelfHostedServerLifetimeLicense": {
1234
+ "path": "/homey/shs/{homeyId}/transfer-lifetime-license",
1235
+ "method": "post",
1236
+ "private": true,
1237
+ "parameters": {
1238
+ "homeyId": {
1239
+ "in": "path",
1240
+ "type": "string",
1241
+ "required": true
1242
+ },
1243
+ "newHomeyId": {
1244
+ "type": "string",
1245
+ "in": "body"
1246
+ }
1247
+ }
1248
+ },
1233
1249
  "sendFormattedEmail": {
1234
1250
  "path": "/mail/formatted",
1235
1251
  "method": "post",
@@ -2677,11 +2677,15 @@ export class AthomAppsAPI {
2677
2677
  createCrash(opts: {
2678
2678
  appId: string;
2679
2679
 
2680
+ appVersion?: string;
2681
+
2680
2682
  homeyId?: string;
2681
2683
 
2682
2684
  homeyVersion?: string;
2683
2685
 
2684
- appVersion?: string;
2686
+ homeyModelId?: string;
2687
+
2688
+ homeyModelName?: string;
2685
2689
 
2686
2690
  stack?: string;
2687
2691
  }): Promise<any>;
@@ -3011,11 +3015,15 @@ export class AthomAppsAPI {
3011
3015
  createCrash(opts: {
3012
3016
  appId: string;
3013
3017
 
3018
+ appVersion?: string;
3019
+
3014
3020
  homeyId?: string;
3015
3021
 
3016
3022
  homeyVersion?: string;
3017
3023
 
3018
- appVersion?: string;
3024
+ homeyModelId?: string;
3025
+
3026
+ homeyModelName?: string;
3019
3027
 
3020
3028
  stack?: string;
3021
3029
  }): Promise<any>;
@@ -3726,6 +3734,12 @@ export class AthomCloudAPI {
3726
3734
  expiresAt?: string;
3727
3735
  }): Promise<any>;
3728
3736
 
3737
+ transferHomeySelfHostedServerLifetimeLicense(opts: {
3738
+ homeyId: string;
3739
+
3740
+ newHomeyId?: string;
3741
+ }): Promise<any>;
3742
+
3729
3743
  sendFormattedEmail(opts: {
3730
3744
  to?: string;
3731
3745
 
@@ -4386,6 +4400,12 @@ export class AthomCloudAPI {
4386
4400
  expiresAt?: string;
4387
4401
  }): Promise<any>;
4388
4402
 
4403
+ transferHomeySelfHostedServerLifetimeLicense(opts: {
4404
+ homeyId: string;
4405
+
4406
+ newHomeyId?: string;
4407
+ }): Promise<any>;
4408
+
4389
4409
  sendFormattedEmail(opts: {
4390
4410
  to?: string;
4391
4411
 
@@ -6275,11 +6295,15 @@ export class AthomAppsAPI {
6275
6295
  createCrash(opts: {
6276
6296
  appId: string;
6277
6297
 
6298
+ appVersion?: string;
6299
+
6278
6300
  homeyId?: string;
6279
6301
 
6280
6302
  homeyVersion?: string;
6281
6303
 
6282
- appVersion?: string;
6304
+ homeyModelId?: string;
6305
+
6306
+ homeyModelName?: string;
6283
6307
 
6284
6308
  stack?: string;
6285
6309
  }): Promise<any>;
@@ -6609,11 +6633,15 @@ export class AthomAppsAPI {
6609
6633
  createCrash(opts: {
6610
6634
  appId: string;
6611
6635
 
6636
+ appVersion?: string;
6637
+
6612
6638
  homeyId?: string;
6613
6639
 
6614
6640
  homeyVersion?: string;
6615
6641
 
6616
- appVersion?: string;
6642
+ homeyModelId?: string;
6643
+
6644
+ homeyModelName?: string;
6617
6645
 
6618
6646
  stack?: string;
6619
6647
  }): Promise<any>;
@@ -7324,6 +7352,12 @@ export class AthomCloudAPI {
7324
7352
  expiresAt?: string;
7325
7353
  }): Promise<any>;
7326
7354
 
7355
+ transferHomeySelfHostedServerLifetimeLicense(opts: {
7356
+ homeyId: string;
7357
+
7358
+ newHomeyId?: string;
7359
+ }): Promise<any>;
7360
+
7327
7361
  sendFormattedEmail(opts: {
7328
7362
  to?: string;
7329
7363
 
@@ -7984,6 +8018,12 @@ export class AthomCloudAPI {
7984
8018
  expiresAt?: string;
7985
8019
  }): Promise<any>;
7986
8020
 
8021
+ transferHomeySelfHostedServerLifetimeLicense(opts: {
8022
+ homeyId: string;
8023
+
8024
+ newHomeyId?: string;
8025
+ }): Promise<any>;
8026
+
7987
8027
  sendFormattedEmail(opts: {
7988
8028
  to?: string;
7989
8029
 
@@ -800,10 +800,6 @@ class HomeyAPIV3 extends HomeyAPI {
800
800
  this.__socket = SocketIOClient(baseUrl, {
801
801
  autoConnect: false,
802
802
  transports: ['websocket'],
803
- transportOptions: {
804
- pingTimeout: 8000,
805
- pingInterval: 5000,
806
- },
807
803
  reconnection: this.__reconnect,
808
804
  });
809
805
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-api",
3
- "version": "3.14.8",
3
+ "version": "3.14.9",
4
4
  "description": "Homey API",
5
5
  "main": "index.js",
6
6
  "files": [