homey-api 3.14.13 → 3.14.14
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.
|
@@ -1285,6 +1285,34 @@
|
|
|
1285
1285
|
}
|
|
1286
1286
|
}
|
|
1287
1287
|
},
|
|
1288
|
+
"updateHomeySelfHostedServerCustomHostname": {
|
|
1289
|
+
"path": "/homey/shs/{homeyId}/custom-hostname",
|
|
1290
|
+
"method": "put",
|
|
1291
|
+
"private": true,
|
|
1292
|
+
"parameters": {
|
|
1293
|
+
"homeyId": {
|
|
1294
|
+
"in": "path",
|
|
1295
|
+
"type": "string",
|
|
1296
|
+
"required": true
|
|
1297
|
+
},
|
|
1298
|
+
"customHostname": {
|
|
1299
|
+
"type": "string",
|
|
1300
|
+
"in": "body"
|
|
1301
|
+
}
|
|
1302
|
+
}
|
|
1303
|
+
},
|
|
1304
|
+
"deleteHomeySelfHostedServerCustomHostname": {
|
|
1305
|
+
"path": "/homey/shs/{homeyId}/custom-hostname",
|
|
1306
|
+
"method": "delete",
|
|
1307
|
+
"private": true,
|
|
1308
|
+
"parameters": {
|
|
1309
|
+
"homeyId": {
|
|
1310
|
+
"in": "path",
|
|
1311
|
+
"type": "string",
|
|
1312
|
+
"required": true
|
|
1313
|
+
}
|
|
1314
|
+
}
|
|
1315
|
+
},
|
|
1288
1316
|
"sendFormattedEmail": {
|
|
1289
1317
|
"path": "/mail/formatted",
|
|
1290
1318
|
"method": "post",
|
|
@@ -3754,6 +3754,16 @@ export class AthomCloudAPI {
|
|
|
3754
3754
|
newHomeyId?: string;
|
|
3755
3755
|
}): Promise<any>;
|
|
3756
3756
|
|
|
3757
|
+
updateHomeySelfHostedServerCustomHostname(opts: {
|
|
3758
|
+
homeyId: string;
|
|
3759
|
+
|
|
3760
|
+
customHostname?: string;
|
|
3761
|
+
}): Promise<any>;
|
|
3762
|
+
|
|
3763
|
+
deleteHomeySelfHostedServerCustomHostname(opts: {
|
|
3764
|
+
homeyId: string;
|
|
3765
|
+
}): Promise<any>;
|
|
3766
|
+
|
|
3757
3767
|
sendFormattedEmail(opts: {
|
|
3758
3768
|
to?: string;
|
|
3759
3769
|
|
|
@@ -4434,6 +4444,16 @@ export class AthomCloudAPI {
|
|
|
4434
4444
|
newHomeyId?: string;
|
|
4435
4445
|
}): Promise<any>;
|
|
4436
4446
|
|
|
4447
|
+
updateHomeySelfHostedServerCustomHostname(opts: {
|
|
4448
|
+
homeyId: string;
|
|
4449
|
+
|
|
4450
|
+
customHostname?: string;
|
|
4451
|
+
}): Promise<any>;
|
|
4452
|
+
|
|
4453
|
+
deleteHomeySelfHostedServerCustomHostname(opts: {
|
|
4454
|
+
homeyId: string;
|
|
4455
|
+
}): Promise<any>;
|
|
4456
|
+
|
|
4437
4457
|
sendFormattedEmail(opts: {
|
|
4438
4458
|
to?: string;
|
|
4439
4459
|
|
|
@@ -7400,6 +7420,16 @@ export class AthomCloudAPI {
|
|
|
7400
7420
|
newHomeyId?: string;
|
|
7401
7421
|
}): Promise<any>;
|
|
7402
7422
|
|
|
7423
|
+
updateHomeySelfHostedServerCustomHostname(opts: {
|
|
7424
|
+
homeyId: string;
|
|
7425
|
+
|
|
7426
|
+
customHostname?: string;
|
|
7427
|
+
}): Promise<any>;
|
|
7428
|
+
|
|
7429
|
+
deleteHomeySelfHostedServerCustomHostname(opts: {
|
|
7430
|
+
homeyId: string;
|
|
7431
|
+
}): Promise<any>;
|
|
7432
|
+
|
|
7403
7433
|
sendFormattedEmail(opts: {
|
|
7404
7434
|
to?: string;
|
|
7405
7435
|
|
|
@@ -8080,6 +8110,16 @@ export class AthomCloudAPI {
|
|
|
8080
8110
|
newHomeyId?: string;
|
|
8081
8111
|
}): Promise<any>;
|
|
8082
8112
|
|
|
8113
|
+
updateHomeySelfHostedServerCustomHostname(opts: {
|
|
8114
|
+
homeyId: string;
|
|
8115
|
+
|
|
8116
|
+
customHostname?: string;
|
|
8117
|
+
}): Promise<any>;
|
|
8118
|
+
|
|
8119
|
+
deleteHomeySelfHostedServerCustomHostname(opts: {
|
|
8120
|
+
homeyId: string;
|
|
8121
|
+
}): Promise<any>;
|
|
8122
|
+
|
|
8083
8123
|
sendFormattedEmail(opts: {
|
|
8084
8124
|
to?: string;
|
|
8085
8125
|
|