homey-api 3.11.1 → 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.
|
@@ -619,6 +619,17 @@
|
|
|
619
619
|
"method": "delete",
|
|
620
620
|
"parameters": {}
|
|
621
621
|
},
|
|
622
|
+
"getInstallerInformation": {
|
|
623
|
+
"path": "/user/{userId}/installer-information",
|
|
624
|
+
"method": "get",
|
|
625
|
+
"parameters": {
|
|
626
|
+
"userId": {
|
|
627
|
+
"in": "path",
|
|
628
|
+
"type": "string",
|
|
629
|
+
"required": true
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
},
|
|
622
633
|
"getBridges": {
|
|
623
634
|
"path": "/bridge/",
|
|
624
635
|
"method": "get",
|
|
@@ -1585,6 +1585,8 @@ export class AthomCloudAPI {
|
|
|
1585
1585
|
|
|
1586
1586
|
unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
|
|
1587
1587
|
|
|
1588
|
+
getInstallerInformation(opts: { userId: string }): Promise<any>;
|
|
1589
|
+
|
|
1588
1590
|
isLoggedIn(): Promise<boolean>;
|
|
1589
1591
|
|
|
1590
1592
|
getAuthenticatedUser(opts?: { $cache?: object }): Promise<AthomCloudAPI.User>;
|
|
@@ -1615,6 +1617,8 @@ export class AthomCloudAPI {
|
|
|
1615
1617
|
|
|
1616
1618
|
unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
|
|
1617
1619
|
|
|
1620
|
+
getInstallerInformation(opts: { userId: string }): Promise<any>;
|
|
1621
|
+
|
|
1618
1622
|
isLoggedIn(): Promise<boolean>;
|
|
1619
1623
|
|
|
1620
1624
|
getAuthenticatedUser(opts?: { $cache?: object }): Promise<AthomCloudAPI.User>;
|
|
@@ -1765,6 +1769,8 @@ export class AthomCloudAPI {
|
|
|
1765
1769
|
|
|
1766
1770
|
unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
|
|
1767
1771
|
|
|
1772
|
+
getInstallerInformation(opts: { userId: string }): Promise<any>;
|
|
1773
|
+
|
|
1768
1774
|
isLoggedIn(): Promise<boolean>;
|
|
1769
1775
|
|
|
1770
1776
|
getAuthenticatedUser(opts?: { $cache?: object }): Promise<AthomCloudAPI.User>;
|
|
@@ -1795,6 +1801,8 @@ export class AthomCloudAPI {
|
|
|
1795
1801
|
|
|
1796
1802
|
unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
|
|
1797
1803
|
|
|
1804
|
+
getInstallerInformation(opts: { userId: string }): Promise<any>;
|
|
1805
|
+
|
|
1798
1806
|
isLoggedIn(): Promise<boolean>;
|
|
1799
1807
|
|
|
1800
1808
|
getAuthenticatedUser(opts?: { $cache?: object }): Promise<AthomCloudAPI.User>;
|
|
@@ -2762,6 +2762,8 @@ export class AthomCloudAPI {
|
|
|
2762
2762
|
|
|
2763
2763
|
unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
|
|
2764
2764
|
|
|
2765
|
+
getInstallerInformation(opts: { userId: string }): Promise<any>;
|
|
2766
|
+
|
|
2765
2767
|
getBridges(opts: {
|
|
2766
2768
|
serial?: string;
|
|
2767
2769
|
|
|
@@ -3346,6 +3348,8 @@ export class AthomCloudAPI {
|
|
|
3346
3348
|
|
|
3347
3349
|
unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
|
|
3348
3350
|
|
|
3351
|
+
getInstallerInformation(opts: { userId: string }): Promise<any>;
|
|
3352
|
+
|
|
3349
3353
|
getBridges(opts: {
|
|
3350
3354
|
serial?: string;
|
|
3351
3355
|
|
|
@@ -6130,6 +6134,8 @@ export class AthomCloudAPI {
|
|
|
6130
6134
|
|
|
6131
6135
|
unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
|
|
6132
6136
|
|
|
6137
|
+
getInstallerInformation(opts: { userId: string }): Promise<any>;
|
|
6138
|
+
|
|
6133
6139
|
getBridges(opts: {
|
|
6134
6140
|
serial?: string;
|
|
6135
6141
|
|
|
@@ -6714,6 +6720,8 @@ export class AthomCloudAPI {
|
|
|
6714
6720
|
|
|
6715
6721
|
unsubscribeAuthenticatedUserFromNewsletter(): Promise<any>;
|
|
6716
6722
|
|
|
6723
|
+
getInstallerInformation(opts: { userId: string }): Promise<any>;
|
|
6724
|
+
|
|
6717
6725
|
getBridges(opts: {
|
|
6718
6726
|
serial?: string;
|
|
6719
6727
|
|