iobroker.bmw 2.5.2 → 2.5.5
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/README.md +14 -11
- package/io-package.json +134 -133
- package/main.js +538 -509
- package/package.json +56 -57
package/README.md
CHANGED
|
@@ -20,32 +20,35 @@ Adapter for BMW
|
|
|
20
20
|
|
|
21
21
|
bmw.0.VIN.properties
|
|
22
22
|
|
|
23
|
-
**Remote Befehle sind möglich unter**
|
|
23
|
+
**Remote Befehle sind möglich unter**
|
|
24
24
|
|
|
25
25
|
bmw.0.VIN.remotev2
|
|
26
26
|
|
|
27
|
-
|
|
28
27
|
## Changelog
|
|
29
28
|
|
|
29
|
+
### 2.5.5
|
|
30
|
+
|
|
31
|
+
- Fix login
|
|
32
|
+
|
|
30
33
|
### 2.5.0
|
|
31
34
|
|
|
32
|
-
-
|
|
33
|
-
|
|
35
|
+
- Fix login
|
|
36
|
+
|
|
34
37
|
### 2.4.1
|
|
35
38
|
|
|
36
|
-
-
|
|
37
|
-
|
|
39
|
+
- Add support for MINI and force refresh remote
|
|
40
|
+
|
|
38
41
|
### 2.3.0
|
|
39
42
|
|
|
40
|
-
-
|
|
41
|
-
|
|
43
|
+
- Disable v1 Endpoints
|
|
44
|
+
|
|
42
45
|
### 2.1.1
|
|
43
46
|
|
|
44
|
-
-
|
|
45
|
-
|
|
47
|
+
- Upgrade to statusV2 and remoteV2
|
|
48
|
+
|
|
46
49
|
### 2.0.0
|
|
47
50
|
|
|
48
|
-
-
|
|
51
|
+
- (TA2k) initial release
|
|
49
52
|
|
|
50
53
|
## License
|
|
51
54
|
|
package/io-package.json
CHANGED
|
@@ -1,137 +1,138 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"es": "BMW",
|
|
51
|
-
"pl": "BMW",
|
|
52
|
-
"zh-cn": "宝马"
|
|
53
|
-
},
|
|
54
|
-
"desc": {
|
|
55
|
-
"en": "Adapter for BMW",
|
|
56
|
-
"de": "Adapter für BMW",
|
|
57
|
-
"ru": "Адаптер для BMW",
|
|
58
|
-
"pt": "Adaptador para bmw",
|
|
59
|
-
"nl": "Adapter voor BMW",
|
|
60
|
-
"fr": "Adaptateur pour BMW",
|
|
61
|
-
"it": "Adattatore per BMW",
|
|
62
|
-
"es": "Adaptador para BMW",
|
|
63
|
-
"pl": "Adapter do BMW",
|
|
64
|
-
"zh-cn": "宝马适配器"
|
|
65
|
-
},
|
|
66
|
-
"authors": [
|
|
67
|
-
"TA2k <tombox2020@gmail.com>"
|
|
68
|
-
],
|
|
69
|
-
"keywords": [
|
|
70
|
-
"BMW"
|
|
71
|
-
],
|
|
72
|
-
"license": "MIT",
|
|
73
|
-
"platform": "Javascript/Node.js",
|
|
74
|
-
"main": "main.js",
|
|
75
|
-
"icon": "bmw.png",
|
|
76
|
-
"enabled": true,
|
|
77
|
-
"extIcon": "https://raw.githubusercontent.com/TA2k/ioBroker.bmw/master/admin/bmw.png",
|
|
78
|
-
"readme": "https://github.com/TA2k/ioBroker.bmw/blob/master/README.md",
|
|
79
|
-
"loglevel": "info",
|
|
80
|
-
"mode": "daemon",
|
|
81
|
-
"type": "vehicle",
|
|
82
|
-
"compact": true,
|
|
83
|
-
"connectionType": "cloud",
|
|
84
|
-
"dataSource": "poll",
|
|
85
|
-
"materialize": true,
|
|
86
|
-
"plugins": {
|
|
87
|
-
"sentry": {
|
|
88
|
-
"dsn": "https://f976d718acc2489fb0e1991d4c8d26a0@sentry.iobroker.net/148"
|
|
89
|
-
}
|
|
90
|
-
},
|
|
91
|
-
"dependencies": [
|
|
92
|
-
{
|
|
93
|
-
"js-controller": ">=3.0.0"
|
|
94
|
-
}
|
|
95
|
-
],
|
|
96
|
-
"globalDependencies": [
|
|
97
|
-
{
|
|
98
|
-
"admin": ">=4.0.9"
|
|
99
|
-
}
|
|
100
|
-
]
|
|
2
|
+
"common": {
|
|
3
|
+
"name": "bmw",
|
|
4
|
+
"version": "2.5.5",
|
|
5
|
+
"news": {
|
|
6
|
+
"2.5.5": {
|
|
7
|
+
"en": "Fix login"
|
|
8
|
+
},
|
|
9
|
+
"2.5.4": {
|
|
10
|
+
"en": "Fix login"
|
|
11
|
+
},
|
|
12
|
+
"2.5.3": {
|
|
13
|
+
"en": "Fix login"
|
|
14
|
+
},
|
|
15
|
+
"2.5.2": {
|
|
16
|
+
"en": "Bugfixes"
|
|
17
|
+
},
|
|
18
|
+
"2.5.1": {
|
|
19
|
+
"en": "Add login error message",
|
|
20
|
+
"de": "Loginproblem Nachricht hinzugefügt"
|
|
21
|
+
},
|
|
22
|
+
"2.5.0": {
|
|
23
|
+
"en": "Fix Login",
|
|
24
|
+
"de": "Loginproblem behoben"
|
|
25
|
+
},
|
|
26
|
+
"2.4.1": {
|
|
27
|
+
"en": "Add support for MINI and a force refresh remote",
|
|
28
|
+
"de": "Support für MINI hinzugefügt und ein Update erzwingen remote"
|
|
29
|
+
},
|
|
30
|
+
"2.3.0": {
|
|
31
|
+
"en": "Disable v1 Endpoints",
|
|
32
|
+
"de": "Deaktivieren v1 Endpunkte wurden entfernt."
|
|
33
|
+
},
|
|
34
|
+
"2.1.2": {
|
|
35
|
+
"en": "Upgrade to statusV2 and remoteV2",
|
|
36
|
+
"de": "Status und Remote Kontrolle auf v2 der neuen BMW App geupdated"
|
|
37
|
+
},
|
|
38
|
+
"2.0.0": {
|
|
39
|
+
"en": "initial release",
|
|
40
|
+
"de": "Erstveröffentlichung",
|
|
41
|
+
"ru": "Начальная версия",
|
|
42
|
+
"pt": "lançamento inicial",
|
|
43
|
+
"nl": "Eerste uitgave",
|
|
44
|
+
"fr": "Première version",
|
|
45
|
+
"it": "Versione iniziale",
|
|
46
|
+
"es": "Versión inicial",
|
|
47
|
+
"pl": "Pierwsze wydanie",
|
|
48
|
+
"zh-cn": "首次出版"
|
|
49
|
+
}
|
|
101
50
|
},
|
|
102
|
-
"
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
51
|
+
"titleLang": {
|
|
52
|
+
"en": "BMW",
|
|
53
|
+
"de": "BMW",
|
|
54
|
+
"ru": "BMW",
|
|
55
|
+
"pt": "BMW",
|
|
56
|
+
"nl": "BMW",
|
|
57
|
+
"fr": "BMW",
|
|
58
|
+
"it": "BMW",
|
|
59
|
+
"es": "BMW",
|
|
60
|
+
"pl": "BMW",
|
|
61
|
+
"zh-cn": "宝马"
|
|
62
|
+
},
|
|
63
|
+
"desc": {
|
|
64
|
+
"en": "Adapter for BMW",
|
|
65
|
+
"de": "Adapter für BMW",
|
|
66
|
+
"ru": "Адаптер для BMW",
|
|
67
|
+
"pt": "Adaptador para bmw",
|
|
68
|
+
"nl": "Adapter voor BMW",
|
|
69
|
+
"fr": "Adaptateur pour BMW",
|
|
70
|
+
"it": "Adattatore per BMW",
|
|
71
|
+
"es": "Adaptador para BMW",
|
|
72
|
+
"pl": "Adapter do BMW",
|
|
73
|
+
"zh-cn": "宝马适配器"
|
|
112
74
|
},
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
75
|
+
"authors": ["TA2k <tombox2020@gmail.com>"],
|
|
76
|
+
"keywords": ["BMW"],
|
|
77
|
+
"license": "MIT",
|
|
78
|
+
"platform": "Javascript/Node.js",
|
|
79
|
+
"main": "main.js",
|
|
80
|
+
"icon": "bmw.png",
|
|
81
|
+
"enabled": true,
|
|
82
|
+
"extIcon": "https://raw.githubusercontent.com/TA2k/ioBroker.bmw/master/admin/bmw.png",
|
|
83
|
+
"readme": "https://github.com/TA2k/ioBroker.bmw/blob/master/README.md",
|
|
84
|
+
"loglevel": "info",
|
|
85
|
+
"mode": "daemon",
|
|
86
|
+
"type": "vehicle",
|
|
87
|
+
"compact": true,
|
|
88
|
+
"connectionType": "cloud",
|
|
89
|
+
"dataSource": "poll",
|
|
90
|
+
"materialize": true,
|
|
91
|
+
"plugins": {
|
|
92
|
+
"sentry": {
|
|
93
|
+
"dsn": "https://f976d718acc2489fb0e1991d4c8d26a0@sentry.iobroker.net/148"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"dependencies": [
|
|
97
|
+
{
|
|
98
|
+
"js-controller": ">=3.0.0"
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"globalDependencies": [
|
|
102
|
+
{
|
|
103
|
+
"admin": ">=4.0.9"
|
|
104
|
+
}
|
|
136
105
|
]
|
|
137
|
-
}
|
|
106
|
+
},
|
|
107
|
+
"encryptedNative": ["password"],
|
|
108
|
+
"protectedNative": ["password"],
|
|
109
|
+
"native": {
|
|
110
|
+
"username": "",
|
|
111
|
+
"password": "",
|
|
112
|
+
"interval": 5
|
|
113
|
+
},
|
|
114
|
+
"objects": [],
|
|
115
|
+
"instanceObjects": [
|
|
116
|
+
{
|
|
117
|
+
"_id": "info",
|
|
118
|
+
"type": "channel",
|
|
119
|
+
"common": {
|
|
120
|
+
"name": "Information"
|
|
121
|
+
},
|
|
122
|
+
"native": {}
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"_id": "info.connection",
|
|
126
|
+
"type": "state",
|
|
127
|
+
"common": {
|
|
128
|
+
"role": "indicator.connected",
|
|
129
|
+
"name": "Device or service connected",
|
|
130
|
+
"type": "boolean",
|
|
131
|
+
"read": true,
|
|
132
|
+
"write": false,
|
|
133
|
+
"def": false
|
|
134
|
+
},
|
|
135
|
+
"native": {}
|
|
136
|
+
}
|
|
137
|
+
]
|
|
138
|
+
}
|