homey-api 3.14.11 → 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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-api",
3
- "version": "3.14.11",
3
+ "version": "3.14.13",
4
4
  "description": "Homey API",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -51,6 +51,7 @@
51
51
  "dependencies": {
52
52
  "form-data": "^4.0.0",
53
53
  "node-fetch": "^2.6.7",
54
+ "patch-package": "^8.0.1",
54
55
  "socket.io-client": "^2.5.0"
55
56
  },
56
57
  "devDependencies": {
@@ -78,7 +79,6 @@
78
79
  "jsdoc-tsimport-plugin": "^1.0.5",
79
80
  "keypather": "^3.1.0",
80
81
  "niodb": "^0.1.1",
81
- "patch-package": "^8.0.1",
82
82
  "plantuml-cli": "^1.2024.4",
83
83
  "prettier": "^3.2.5",
84
84
  "serve": "^14.0.1",