homey-api 3.14.12 → 3.14.13
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",
|
|
@@ -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>;
|
|
@@ -4114,6 +4116,8 @@ export class AthomCloudAPI {
|
|
|
4114
4116
|
|
|
4115
4117
|
removeRoleAppDeveloperTrusted(opts: { userId: string }): Promise<any>;
|
|
4116
4118
|
|
|
4119
|
+
addRoleCertifiedInstaller(opts: { userId: string }): Promise<any>;
|
|
4120
|
+
|
|
4117
4121
|
getAuthenticatedUser(opts: { additionalScopes?: string }): Promise<any>;
|
|
4118
4122
|
|
|
4119
4123
|
getAcceptedInvites(): Promise<any>;
|
|
@@ -7078,6 +7082,8 @@ export class AthomCloudAPI {
|
|
|
7078
7082
|
|
|
7079
7083
|
removeRoleAppDeveloperTrusted(opts: { userId: string }): Promise<any>;
|
|
7080
7084
|
|
|
7085
|
+
addRoleCertifiedInstaller(opts: { userId: string }): Promise<any>;
|
|
7086
|
+
|
|
7081
7087
|
getAuthenticatedUser(opts: { additionalScopes?: string }): Promise<any>;
|
|
7082
7088
|
|
|
7083
7089
|
getAcceptedInvites(): Promise<any>;
|
|
@@ -7756,6 +7762,8 @@ export class AthomCloudAPI {
|
|
|
7756
7762
|
|
|
7757
7763
|
removeRoleAppDeveloperTrusted(opts: { userId: string }): Promise<any>;
|
|
7758
7764
|
|
|
7765
|
+
addRoleCertifiedInstaller(opts: { userId: string }): Promise<any>;
|
|
7766
|
+
|
|
7759
7767
|
getAuthenticatedUser(opts: { additionalScopes?: string }): Promise<any>;
|
|
7760
7768
|
|
|
7761
7769
|
getAcceptedInvites(): Promise<any>;
|