homebridge-tasmota-control 1.7.10 → 1.7.11

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "Tasmota Control",
3
3
  "name": "homebridge-tasmota-control",
4
- "version": "1.7.10",
4
+ "version": "1.7.11",
5
5
  "description": "Homebridge plugin to control Tasmota flashed devices.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",
@@ -30,7 +30,7 @@
30
30
  "LICENSE"
31
31
  ],
32
32
  "engines": {
33
- "homebridge": "^1.9.0 || ^2.0.0 || ^2.0.0-beta.30 || ^2.0.0-alpha.40",
33
+ "homebridge": "^1.8.0 || ^2.0.0 || ^2.0.0-beta.40 || ^2.0.0-alpha.40",
34
34
  "node": "^20 || ^22 || ^24 || ^25"
35
35
  },
36
36
  "dependencies": {
package/src/fans.js CHANGED
@@ -32,7 +32,7 @@ class Fans extends EventEmitter {
32
32
  const url = `http://${config.host}/cm?cmnd=`;
33
33
  this.axiosInstance = axios.create({
34
34
  baseURL: url,
35
- timeout: 15000,
35
+ timeout: 30000,
36
36
  withCredentials: config.auth,
37
37
  auth: {
38
38
  username: config.user,
package/src/lights.js CHANGED
@@ -31,7 +31,7 @@ class Lights extends EventEmitter {
31
31
  const url = `http://${config.host}/cm?cmnd=`;
32
32
  this.axiosInstance = axios.create({
33
33
  baseURL: url,
34
- timeout: 15000,
34
+ timeout: 30000,
35
35
  withCredentials: config.auth,
36
36
  auth: {
37
37
  username: config.user,
package/src/mielhvac.js CHANGED
@@ -91,7 +91,7 @@ class MiElHvac extends EventEmitter {
91
91
  const url = `http://${config.host}/cm?cmnd=`;
92
92
  this.axiosInstance = axios.create({
93
93
  baseURL: url,
94
- timeout: 15000,
94
+ timeout: 30000,
95
95
  withCredentials: config.auth,
96
96
  auth: {
97
97
  username: config.user,
@@ -103,7 +103,7 @@ class MiElHvac extends EventEmitter {
103
103
  if (remoteTemperatureSensorEnable) {
104
104
  this.axiosInstanceRemoteTemp = axios.create({
105
105
  baseURL: remoteTemperatureSensorPath,
106
- timeout: 10000,
106
+ timeout: 20000,
107
107
  withCredentials: remoteTemperatureSensorAuth,
108
108
  auth: {
109
109
  username: remoteTemperatureSensorUser,
package/src/sensors.js CHANGED
@@ -33,7 +33,7 @@ class Sensors extends EventEmitter {
33
33
  const url = `http://${config.host}/cm?cmnd=`;
34
34
  this.axiosInstance = axios.create({
35
35
  baseURL: url,
36
- timeout: 15000,
36
+ timeout: 30000,
37
37
  withCredentials: config.auth,
38
38
  auth: {
39
39
  username: config.user,
package/src/switches.js CHANGED
@@ -32,7 +32,7 @@ class Switches extends EventEmitter {
32
32
  const url = `http://${config.host}/cm?cmnd=`;
33
33
  this.axiosInstance = axios.create({
34
34
  baseURL: url,
35
- timeout: 15000,
35
+ timeout: 30000,
36
36
  withCredentials: config.auth,
37
37
  auth: {
38
38
  username: config.user,