homey 4.0.7 → 4.0.10
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.
package/lib/AppPython.js
CHANGED
package/lib/AthomApi.js
CHANGED
|
@@ -228,7 +228,7 @@ class AthomApi {
|
|
|
228
228
|
const homeyApi = await homey.authenticate({ strategy }).catch((err) => {
|
|
229
229
|
if (err instanceof APIErrorHomeyOffline) {
|
|
230
230
|
throw new Error(
|
|
231
|
-
`${homey.name} (${homey.id}) seems to be offline. Are you sure you're in the same
|
|
231
|
+
`${homey.name} (${homey.id}) seems to be offline. Are you sure you're in the same local network?`,
|
|
232
232
|
);
|
|
233
233
|
}
|
|
234
234
|
throw err;
|
|
@@ -139,7 +139,7 @@ export async function resolveRequestedHomey(homeyId) {
|
|
|
139
139
|
|
|
140
140
|
function normalizeOfflineError(homey) {
|
|
141
141
|
return new Error(
|
|
142
|
-
`${homey.name} (${homey.id}) seems to be offline. Are you sure you're in the same
|
|
142
|
+
`${homey.name} (${homey.id}) seems to be offline. Are you sure you're in the same local network?`,
|
|
143
143
|
);
|
|
144
144
|
}
|
|
145
145
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homey",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.10",
|
|
4
4
|
"description": "Command-line interface and type declarations for Homey Apps",
|
|
5
5
|
"main": "bin/homey.js",
|
|
6
6
|
"files": [
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"filesize": "^6.4.0",
|
|
42
42
|
"fs-extra": "^10.1.0",
|
|
43
43
|
"get-port": "^5.1.1",
|
|
44
|
-
"homey-
|
|
45
|
-
"homey-
|
|
44
|
+
"homey-api": "^3.17.2",
|
|
45
|
+
"homey-lib": "^2.46.1",
|
|
46
46
|
"ignore-walk": "^3.0.3",
|
|
47
47
|
"inquirer": "8.1.2",
|
|
48
48
|
"object-path": "^0.11.4",
|