homebridge-tauron-elicznik 0.0.2-beta75 → 0.0.2-beta76

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/index.js CHANGED
@@ -194,7 +194,8 @@ class eLicznikDevice {
194
194
 
195
195
  const response = await this.tauronAuth.request(url);
196
196
 
197
- this.log('11112222', response.data);
197
+ this.log('11112222', this.tauronAuth.request);
198
+ this.log('33333344', response.data);
198
199
  const energyImport = 0;
199
200
  const energyExport = 0;
200
201
  if (this.tauroneLicznikEnergyService) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "Tauron eLicznik",
3
3
  "name": "homebridge-tauron-elicznik",
4
- "version": "0.0.2-beta75",
4
+ "version": "0.0.2-beta76",
5
5
  "description": "Homebridge plugin (https://github.com/homebridge/homebridge) to read data from Tauron eLicznik.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",
package/src/tauronAuth.js CHANGED
@@ -26,7 +26,6 @@ class axiosTauronAuth {
26
26
  };
27
27
  const response = await axios.post(LOGIN_URL, options);
28
28
  const returnUrl = response.data;
29
- console.log('aaaaaaaaa', returnUrl);
30
29
 
31
30
  return returnUrl;
32
31
  } catch (err) {