homey-api 3.14.12 → 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.
|
@@ -498,6 +498,18 @@
|
|
|
498
498
|
}
|
|
499
499
|
}
|
|
500
500
|
},
|
|
501
|
+
"addRoleCertifiedInstaller": {
|
|
502
|
+
"path": "/user/{userId}/role/installer",
|
|
503
|
+
"method": "put",
|
|
504
|
+
"private": true,
|
|
505
|
+
"parameters": {
|
|
506
|
+
"userId": {
|
|
507
|
+
"in": "path",
|
|
508
|
+
"type": "string",
|
|
509
|
+
"required": true
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
},
|
|
501
513
|
"getAuthenticatedUser": {
|
|
502
514
|
"path": "/user/me",
|
|
503
515
|
"method": "get",
|
|
@@ -1273,6 +1285,34 @@
|
|
|
1273
1285
|
}
|
|
1274
1286
|
}
|
|
1275
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
|
+
},
|
|
1276
1316
|
"sendFormattedEmail": {
|
|
1277
1317
|
"path": "/mail/formatted",
|
|
1278
1318
|
"method": "post",
|
|
@@ -3436,6 +3436,8 @@ export class AthomCloudAPI {
|
|
|
3436
3436
|
|
|
3437
3437
|
removeRoleAppDeveloperTrusted(opts: { userId: string }): Promise<any>;
|
|
3438
3438
|
|
|
3439
|
+
addRoleCertifiedInstaller(opts: { userId: string }): Promise<any>;
|
|
3440
|
+
|
|
3439
3441
|
getAuthenticatedUser(opts: { additionalScopes?: string }): Promise<any>;
|
|
3440
3442
|
|
|
3441
3443
|
getAcceptedInvites(): Promise<any>;
|
|
@@ -3752,6 +3754,16 @@ export class AthomCloudAPI {
|
|
|
3752
3754
|
newHomeyId?: string;
|
|
3753
3755
|
}): Promise<any>;
|
|
3754
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
|
+
|
|
3755
3767
|
sendFormattedEmail(opts: {
|
|
3756
3768
|
to?: string;
|
|
3757
3769
|
|
|
@@ -4114,6 +4126,8 @@ export class AthomCloudAPI {
|
|
|
4114
4126
|
|
|
4115
4127
|
removeRoleAppDeveloperTrusted(opts: { userId: string }): Promise<any>;
|
|
4116
4128
|
|
|
4129
|
+
addRoleCertifiedInstaller(opts: { userId: string }): Promise<any>;
|
|
4130
|
+
|
|
4117
4131
|
getAuthenticatedUser(opts: { additionalScopes?: string }): Promise<any>;
|
|
4118
4132
|
|
|
4119
4133
|
getAcceptedInvites(): Promise<any>;
|
|
@@ -4430,6 +4444,16 @@ export class AthomCloudAPI {
|
|
|
4430
4444
|
newHomeyId?: string;
|
|
4431
4445
|
}): Promise<any>;
|
|
4432
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
|
+
|
|
4433
4457
|
sendFormattedEmail(opts: {
|
|
4434
4458
|
to?: string;
|
|
4435
4459
|
|
|
@@ -7078,6 +7102,8 @@ export class AthomCloudAPI {
|
|
|
7078
7102
|
|
|
7079
7103
|
removeRoleAppDeveloperTrusted(opts: { userId: string }): Promise<any>;
|
|
7080
7104
|
|
|
7105
|
+
addRoleCertifiedInstaller(opts: { userId: string }): Promise<any>;
|
|
7106
|
+
|
|
7081
7107
|
getAuthenticatedUser(opts: { additionalScopes?: string }): Promise<any>;
|
|
7082
7108
|
|
|
7083
7109
|
getAcceptedInvites(): Promise<any>;
|
|
@@ -7394,6 +7420,16 @@ export class AthomCloudAPI {
|
|
|
7394
7420
|
newHomeyId?: string;
|
|
7395
7421
|
}): Promise<any>;
|
|
7396
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
|
+
|
|
7397
7433
|
sendFormattedEmail(opts: {
|
|
7398
7434
|
to?: string;
|
|
7399
7435
|
|
|
@@ -7756,6 +7792,8 @@ export class AthomCloudAPI {
|
|
|
7756
7792
|
|
|
7757
7793
|
removeRoleAppDeveloperTrusted(opts: { userId: string }): Promise<any>;
|
|
7758
7794
|
|
|
7795
|
+
addRoleCertifiedInstaller(opts: { userId: string }): Promise<any>;
|
|
7796
|
+
|
|
7759
7797
|
getAuthenticatedUser(opts: { additionalScopes?: string }): Promise<any>;
|
|
7760
7798
|
|
|
7761
7799
|
getAcceptedInvites(): Promise<any>;
|
|
@@ -8072,6 +8110,16 @@ export class AthomCloudAPI {
|
|
|
8072
8110
|
newHomeyId?: string;
|
|
8073
8111
|
}): Promise<any>;
|
|
8074
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
|
+
|
|
8075
8123
|
sendFormattedEmail(opts: {
|
|
8076
8124
|
to?: string;
|
|
8077
8125
|
|