homey-api 3.14.20 → 3.14.21
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.
|
@@ -1245,6 +1245,18 @@
|
|
|
1245
1245
|
"private": true,
|
|
1246
1246
|
"parameters": {}
|
|
1247
1247
|
},
|
|
1248
|
+
"deleteHomeySelfHostedServer": {
|
|
1249
|
+
"path": "/homey/shs/{homeyId}",
|
|
1250
|
+
"method": "delete",
|
|
1251
|
+
"private": true,
|
|
1252
|
+
"parameters": {
|
|
1253
|
+
"homeyId": {
|
|
1254
|
+
"in": "path",
|
|
1255
|
+
"type": "string",
|
|
1256
|
+
"required": true
|
|
1257
|
+
}
|
|
1258
|
+
}
|
|
1259
|
+
},
|
|
1248
1260
|
"updateHomeySelfHostedServerSubscription": {
|
|
1249
1261
|
"path": "/homey/shs/{homeyId}/subscription",
|
|
1250
1262
|
"method": "put",
|
|
@@ -3750,6 +3750,8 @@ export class AthomCloudAPI {
|
|
|
3750
3750
|
|
|
3751
3751
|
createHomeySelfHostedServer(): Promise<any>;
|
|
3752
3752
|
|
|
3753
|
+
deleteHomeySelfHostedServer(opts: { homeyId: string }): Promise<any>;
|
|
3754
|
+
|
|
3753
3755
|
updateHomeySelfHostedServerSubscription(opts: {
|
|
3754
3756
|
homeyId: string;
|
|
3755
3757
|
|
|
@@ -4438,6 +4440,8 @@ export class AthomCloudAPI {
|
|
|
4438
4440
|
|
|
4439
4441
|
createHomeySelfHostedServer(): Promise<any>;
|
|
4440
4442
|
|
|
4443
|
+
deleteHomeySelfHostedServer(opts: { homeyId: string }): Promise<any>;
|
|
4444
|
+
|
|
4441
4445
|
updateHomeySelfHostedServerSubscription(opts: {
|
|
4442
4446
|
homeyId: string;
|
|
4443
4447
|
|
|
@@ -7420,6 +7424,8 @@ export class AthomCloudAPI {
|
|
|
7420
7424
|
|
|
7421
7425
|
createHomeySelfHostedServer(): Promise<any>;
|
|
7422
7426
|
|
|
7427
|
+
deleteHomeySelfHostedServer(opts: { homeyId: string }): Promise<any>;
|
|
7428
|
+
|
|
7423
7429
|
updateHomeySelfHostedServerSubscription(opts: {
|
|
7424
7430
|
homeyId: string;
|
|
7425
7431
|
|
|
@@ -8108,6 +8114,8 @@ export class AthomCloudAPI {
|
|
|
8108
8114
|
|
|
8109
8115
|
createHomeySelfHostedServer(): Promise<any>;
|
|
8110
8116
|
|
|
8117
|
+
deleteHomeySelfHostedServer(opts: { homeyId: string }): Promise<any>;
|
|
8118
|
+
|
|
8111
8119
|
updateHomeySelfHostedServerSubscription(opts: {
|
|
8112
8120
|
homeyId: string;
|
|
8113
8121
|
|