iobroker.bmw 2.6.2 → 2.6.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.
Files changed (3) hide show
  1. package/io-package.json +5 -1
  2. package/main.js +2 -0
  3. package/package.json +15 -15
package/io-package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "bmw",
4
- "version": "2.6.2",
4
+ "version": "2.6.3",
5
5
  "news": {
6
+ "2.6.3": {
7
+ "en": "Add start and stop charging remotes",
8
+ "de": "Start und Stop Charging Remotes hinzugefügt"
9
+ },
6
10
  "2.6.2": {
7
11
  "en": "Fix Charging response parsing",
8
12
  "de": "Fix Charging Antwort Verarbeitung"
package/main.js CHANGED
@@ -433,6 +433,8 @@ class Bmw extends utils.Adapter {
433
433
  { command: "vehicle-finder" },
434
434
  { command: "climate-now_START" },
435
435
  { command: "climate-now_STOP" },
436
+ { command: "start-charging" },
437
+ { command: "stop-charging" },
436
438
  { command: "force-refresh", name: "Force Refresh" },
437
439
  ];
438
440
  remoteArray.forEach((remote) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.bmw",
3
- "version": "2.6.2",
3
+ "version": "2.6.3",
4
4
  "description": "Adapter for BMW",
5
5
  "author": {
6
6
  "name": "TA2k",
@@ -16,31 +16,31 @@
16
16
  "url": "https://github.com/TA2k/ioBroker.bmw"
17
17
  },
18
18
  "dependencies": {
19
- "@iobroker/adapter-core": "^2.6.8",
20
- "axios": "^1.4.0",
19
+ "@iobroker/adapter-core": "^3.0.4",
20
+ "axios": "^1.5.1",
21
21
  "http-cookie-agent": "^5.0.4",
22
22
  "json-bigint": "^1.0.0",
23
- "json2iob": "^2.4.5",
23
+ "json2iob": "^2.4.8",
24
24
  "qs": "^6.11.2",
25
25
  "tough-cookie": "^4.1.3"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@iobroker/testing": "^4.1.0",
29
- "@types/chai": "^4.3.5",
30
- "@types/chai-as-promised": "^7.1.5",
31
- "@types/mocha": "^10.0.1",
32
- "@types/node": "^18.17.3",
33
- "@types/proxyquire": "^1.3.28",
34
- "@types/sinon": "^10.0.16",
35
- "@types/sinon-chai": "^3.2.9",
36
- "chai": "^4.3.7",
29
+ "@types/chai": "^4.3.9",
30
+ "@types/chai-as-promised": "^7.1.7",
31
+ "@types/mocha": "^10.0.3",
32
+ "@types/node": "^20.8.7",
33
+ "@types/proxyquire": "^1.3.30",
34
+ "@types/sinon": "^10.0.20",
35
+ "@types/sinon-chai": "^3.2.11",
36
+ "chai": "^4.3.10",
37
37
  "chai-as-promised": "^7.1.1",
38
- "eslint": "^8.46.0",
38
+ "eslint": "^8.52.0",
39
39
  "mocha": "^10.2.0",
40
40
  "proxyquire": "^2.1.3",
41
- "sinon": "^15.2.0",
41
+ "sinon": "^17.0.0",
42
42
  "sinon-chai": "^3.7.0",
43
- "typescript": "^5.1.6"
43
+ "typescript": "^5.2.2"
44
44
  },
45
45
  "main": "main.js",
46
46
  "scripts": {