-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathio-package.json
More file actions
108 lines (108 loc) · 4.29 KB
/
Copy pathio-package.json
File metadata and controls
108 lines (108 loc) · 4.29 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"common": {
"name": "viessmannapi",
"version": "1.3.3",
"news": {
"1.3.3": {
"en": "Updated dependencies with security fixes, set default poll intervall to 900s due to rate limiting of the viessmann api",
"de": "Abhägigkeiten aktualisiert (insb. Sicherheitsfixes), Poll Interval auf 900s gesetzt als Reaktion auf das Rate Limiting der Viessmann API"
},
"1.3.2": {
"en": "Fixed a bug preventing the adapter to start",
"de": "Fehler behoben, der den Start des Adapters verhinderte"
},
"1.3.1": {
"en": "Reduced size of adapter package by excluding unused stuff",
"de": "Reduzierung der Package Größe"
},
"1.3.0": {
"en": "Improvements for actions via sendTo, added support for compact mode, small improvements",
"de": "Verbesserung bei der Ausführung von actions via sendTo, Unterstützung für compact mode, kleine Verbesserungen"
},
"1.2.0": {
"en": "Experimental support to execute actions via sendTo",
"de": "Experimenteller support um actions via sendTo auszuführen"
},
"1.1.2": {
"en": "Fixed bug: email & password were not removed from config in existing installations",
"de": "Bugfix: email & password wurden in bestehenden Installationen nicht aus config entfernt"
},
"1.1.1": {
"en": "Fixed a bug preventing certain properties from beeing exposed as state",
"de": "Bugfix: manche Properties wurden nicht als state exportiert"
},
"1.1.0": {
"en": "No longer stores email and password if initial connection was sucessful",
"de": "Email und Password werden nicht mehr gespeichert wenn die Verbindung erstmalig erfolgreich hergestellt wurde"
},
"1.0.0": {
"en": "Initial version - requests data from the viessmann server and writes it into states",
"de": "Initiale Version - Fragt Daten über den Viessmann Server ab und speichert sie in entsprechenden states"
}
},
"title": "Vitoconnect Viessmann API",
"titleLang": {
"en": "Vitoconnect Viessmann API",
"de": "Vitoconnect Viessmann API"
},
"desc": {
"en": "Adapter to communicate with a Viessmann heating system using the Viessmann Vitoconnect Box via the API used by Viessmann Apps",
"de": "Adapter um mit einer Viessmann Heizung, die mit einer Vitoconnect Box ausgestattet ist, über die von den Viessmann Apps genutzte API zu kommunizieren"
},
"authors": [
"Thomas Vidic <theuklid@gmail.com>"
],
"platform": "Javascript/Node.js",
"main": "dist/main.js",
"mode": "daemon",
"icon": "viessmannapi.png",
"extIcon": "https://raw.githubusercontent.com/thovid/ioBroker.viessmannapi/master/admin/viessmannapi.png",
"keywords": [
"viessmann",
"api",
"heating"
],
"readme": "https://github.com/thovid/ioBroker.viessmannapi/blob/master/README.md",
"loglevel": "info",
"type": "climate-control",
"license": "MIT",
"messagebox": true,
"materialize": true,
"enabled": false,
"compact": true,
"dependencies": [
{
"admin": ">=3.0.0"
}
]
},
"native": {
"email": "",
"password": "",
"pollInterval": 60
},
"objects": [],
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": "Adapter-Information"
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"role": "indicator.connected",
"name": "Whether the adapter is connected to the gateway",
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {}
}
]
}