homey-api 3.11.2 → 3.11.3

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.
@@ -622,7 +622,13 @@
622
622
  "getInstallerInformation": {
623
623
  "path": "/user/{userId}/installer-information",
624
624
  "method": "get",
625
- "parameters": {}
625
+ "parameters": {
626
+ "userId": {
627
+ "in": "path",
628
+ "type": "string",
629
+ "required": true
630
+ }
631
+ }
626
632
  },
627
633
  "getBridges": {
628
634
  "path": "/bridge/",
@@ -1585,7 +1585,7 @@ export class AthomCloudAPI {
1585
1585
 
1586
1586
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
1587
1587
 
1588
- getInstallerInformation(): Promise<any>;
1588
+ getInstallerInformation(opts: { userId: string }): Promise<any>;
1589
1589
 
1590
1590
  isLoggedIn(): Promise<boolean>;
1591
1591
 
@@ -1617,7 +1617,7 @@ export class AthomCloudAPI {
1617
1617
 
1618
1618
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
1619
1619
 
1620
- getInstallerInformation(): Promise<any>;
1620
+ getInstallerInformation(opts: { userId: string }): Promise<any>;
1621
1621
 
1622
1622
  isLoggedIn(): Promise<boolean>;
1623
1623
 
@@ -1769,7 +1769,7 @@ export class AthomCloudAPI {
1769
1769
 
1770
1770
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
1771
1771
 
1772
- getInstallerInformation(): Promise<any>;
1772
+ getInstallerInformation(opts: { userId: string }): Promise<any>;
1773
1773
 
1774
1774
  isLoggedIn(): Promise<boolean>;
1775
1775
 
@@ -1801,7 +1801,7 @@ export class AthomCloudAPI {
1801
1801
 
1802
1802
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
1803
1803
 
1804
- getInstallerInformation(): Promise<any>;
1804
+ getInstallerInformation(opts: { userId: string }): Promise<any>;
1805
1805
 
1806
1806
  isLoggedIn(): Promise<boolean>;
1807
1807
 
@@ -2762,7 +2762,7 @@ export class AthomCloudAPI {
2762
2762
 
2763
2763
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
2764
2764
 
2765
- getInstallerInformation(): Promise<any>;
2765
+ getInstallerInformation(opts: { userId: string }): Promise<any>;
2766
2766
 
2767
2767
  getBridges(opts: {
2768
2768
  serial?: string;
@@ -3348,7 +3348,7 @@ export class AthomCloudAPI {
3348
3348
 
3349
3349
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
3350
3350
 
3351
- getInstallerInformation(): Promise<any>;
3351
+ getInstallerInformation(opts: { userId: string }): Promise<any>;
3352
3352
 
3353
3353
  getBridges(opts: {
3354
3354
  serial?: string;
@@ -6134,7 +6134,7 @@ export class AthomCloudAPI {
6134
6134
 
6135
6135
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
6136
6136
 
6137
- getInstallerInformation(): Promise<any>;
6137
+ getInstallerInformation(opts: { userId: string }): Promise<any>;
6138
6138
 
6139
6139
  getBridges(opts: {
6140
6140
  serial?: string;
@@ -6720,7 +6720,7 @@ export class AthomCloudAPI {
6720
6720
 
6721
6721
  unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
6722
6722
 
6723
- getInstallerInformation(): Promise<any>;
6723
+ getInstallerInformation(opts: { userId: string }): Promise<any>;
6724
6724
 
6725
6725
  getBridges(opts: {
6726
6726
  serial?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-api",
3
- "version": "3.11.2",
3
+ "version": "3.11.3",
4
4
  "description": "Homey API",
5
5
  "main": "index.js",
6
6
  "files": [