homey-api 3.0.2 → 3.0.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.
|
@@ -24,10 +24,11 @@ class ManagerInsights extends ManagerInsightsV3 {
|
|
|
24
24
|
});
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
async getLogEntries({ id }) {
|
|
27
|
+
async getLogEntries({ id, resolution }) {
|
|
28
28
|
return this.__super__getLogEntries({
|
|
29
29
|
id: id.split(':').reverse()[0],
|
|
30
30
|
uri: id.split(':', 3).join(':'),
|
|
31
|
+
resolution,
|
|
31
32
|
});
|
|
32
33
|
}
|
|
33
34
|
|
|
@@ -4,7 +4,7 @@ const HomeyAPIV3 = require('./HomeyAPIV3');
|
|
|
4
4
|
const ManagerDevkit = require('./HomeyAPIV3Local/ManagerDevkit');
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
|
-
* This class is returned by {@link AthomCloudAPI.Homey#authenticate} for a Homey with `platform: 'local'` and `platformVersion:
|
|
7
|
+
* This class is returned by {@link AthomCloudAPI.Homey#authenticate} for a Homey with `platform: 'local'` and `platformVersion: 2`.
|
|
8
8
|
*
|
|
9
9
|
* @class
|
|
10
10
|
* @hideconstructor
|