homebridge-tasmota-control 1.6.15-beta.30 → 1.6.15-beta.31

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.6.15-beta.30",
4
+ "version": "1.6.15-beta.31",
5
5
  "description": "Homebridge plugin to control Tasmota flashed devices.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",
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: 10000,
35
+ timeout: 15000,
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: 10000,
34
+ timeout: 15000,
35
35
  withCredentials: config.auth,
36
36
  auth: {
37
37
  username: config.user,
package/src/mielhvac.js CHANGED
@@ -123,7 +123,7 @@ class MiElHvac extends EventEmitter {
123
123
  const url = `http://${config.host}/cm?cmnd=`;
124
124
  this.axiosInstance = axios.create({
125
125
  baseURL: url,
126
- timeout: 10000,
126
+ timeout: 15000,
127
127
  withCredentials: config.auth,
128
128
  auth: {
129
129
  username: config.user,
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: 10000,
36
+ timeout: 15000,
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: 10000,
35
+ timeout: 15000,
36
36
  withCredentials: config.auth,
37
37
  auth: {
38
38
  username: config.user,