iobroker.device-watcher 0.0.6

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.
@@ -0,0 +1,311 @@
1
+ {
2
+ "common": {
3
+ "name": "device-watcher",
4
+ "version": "0.0.6",
5
+ "news": {
6
+ "0.0.1": {
7
+ "en": "initial release",
8
+ "de": "Erstveröffentlichung",
9
+ "ru": "Начальная версия",
10
+ "pt": "lançamento inicial",
11
+ "nl": "Eerste uitgave",
12
+ "fr": "Première version",
13
+ "it": "Versione iniziale",
14
+ "es": "Versión inicial",
15
+ "pl": "Pierwsze wydanie",
16
+ "zh-cn": "首次出版"
17
+ },
18
+ "0.0.2": {
19
+ "en": "Release for testing",
20
+ "de": "Freigabe zum Testen",
21
+ "ru": "Выпуск для тестирования",
22
+ "pt": "Liberação para teste",
23
+ "nl": "Vrijgeven voor testen",
24
+ "fr": "Libération pour test",
25
+ "it": "Rilascio per il test",
26
+ "es": "Liberación para prueba",
27
+ "pl": "Wydanie do testów",
28
+ "zh-cn": "发布测试"
29
+ },
30
+ "0.0.3": {
31
+ "en": "added Shelly and Sonoff Devices",
32
+ "de": "Shelly und Sonoff Geräte hinzugefügt",
33
+ "ru": "добавлены устройства Shelly и Sonoff",
34
+ "pt": "adicionados dispositivos Shelly e Sonoff",
35
+ "nl": "Shelly- en Sonoff-apparaten toegevoegd",
36
+ "fr": "ajout des appareils Shelly et Sonoff",
37
+ "it": "aggiunti dispositivi Shelly e Sonoff",
38
+ "es": "Dispositivos Shelly y Sonoff agregados",
39
+ "pl": "dodano urządzenia Shelly i Sonoff",
40
+ "zh-cn": "添加了 Shelly 和 Sonoff 设备"
41
+ },
42
+ "0.0.5": {
43
+ "en": "added admin translations",
44
+ "de": "Admin-Übersetzungen hinzugefügt",
45
+ "ru": "добавлены переводы администратора",
46
+ "pt": "traduções de administrador adicionadas",
47
+ "nl": "admin-vertalingen toegevoegd",
48
+ "fr": "traductions d'administration ajoutées",
49
+ "it": "aggiunte traduzioni di amministrazione",
50
+ "es": "Traducciones de administrador agregadas",
51
+ "pl": "dodane tłumaczenia administracyjne",
52
+ "zh-cn": "添加了管理员翻译"
53
+ }
54
+ },
55
+ "title": "Device-Watcher",
56
+ "titleLang": {
57
+ "en": "Device-Watcher",
58
+ "de": "Device-Watcher",
59
+ "ru": "Устройство-наблюдатель",
60
+ "pt": "Dispositivo-Observador",
61
+ "nl": "Device-Watcher",
62
+ "fr": "Device-Watcher",
63
+ "it": "Dispositivo di osservazione",
64
+ "es": "Vigilante de dispositivos",
65
+ "pl": "Obserwator urządzeń",
66
+ "zh-cn": "设备观察者"
67
+ },
68
+ "desc": {
69
+ "en": "Watchdog for wireless devices",
70
+ "de": "Watchdog für drahtlose Geräte",
71
+ "ru": "Сторожевой таймер для беспроводных устройств",
72
+ "pt": "Watchdog para dispositivos sem fio",
73
+ "nl": "Watchdog voor draadloze apparaten",
74
+ "fr": "Chien de garde pour les appareils sans fil",
75
+ "it": "Watchdog per dispositivi wireless",
76
+ "es": "Watchdog para dispositivos inalámbricos",
77
+ "pl": "Watchdog dla urządzeń bezprzewodowych",
78
+ "zh-cn": "无线设备看门狗"
79
+ },
80
+ "authors": [
81
+ "Christian Behrends <mail@christian-behrends.de>"
82
+ ],
83
+ "keywords": [
84
+ "watchdog",
85
+ "devices",
86
+ "wireless",
87
+ "watcher"
88
+ ],
89
+ "license": "MIT",
90
+ "platform": "Javascript/Node.js",
91
+ "main": "main.js",
92
+ "icon": "device-watcher.png",
93
+ "enabled": true,
94
+ "extIcon": "https://raw.githubusercontent.com/ciddi89/ioBroker.device-watcher/main/admin/device-watcher.png",
95
+ "readme": "https://github.com/ciddi89/ioBroker.device-watcher/blob/main/README.md",
96
+ "loglevel": "info",
97
+ "mode": "schedule",
98
+ "schedule": "*/60 * * * *",
99
+ "allowInit": true,
100
+ "type": "misc-data",
101
+ "compact": true,
102
+ "connectionType": "local",
103
+ "dataSource": "poll",
104
+ "materialize": true,
105
+ "eraseOnUpload": true,
106
+ "adminUI": {
107
+ "config": "json"
108
+ },
109
+ "dependencies": [
110
+ {
111
+ "js-controller": ">=2.0.0"
112
+ }
113
+ ],
114
+ "globalDependencies": [
115
+ {
116
+ "admin": ">=5.1.28"
117
+ }
118
+ ]
119
+ },
120
+ "native": {
121
+ "zigbeeDevices": false,
122
+ "bleDevices": false,
123
+ "sonoffDevices": false,
124
+ "shellyDevices": false,
125
+ "homematicDevices": false,
126
+ "deconzDevices": false,
127
+ "zwaveDevices": false,
128
+ "trueState": false,
129
+ "maxMinutes": 300,
130
+ "checkSendOfflineMsg": false,
131
+ "checkSendBatteryMsg": false,
132
+ "minWarnBatterie": 35,
133
+ "checkMonday": false,
134
+ "checkTuesday": false,
135
+ "checkWednesday": false,
136
+ "checkThursday": false,
137
+ "checkFriday": false,
138
+ "checkSaturday": false,
139
+ "checkSunday": false,
140
+ "instancePushover": "",
141
+ "titlePushover": "",
142
+ "devicePushover": "",
143
+ "instanceEmail": "",
144
+ "subjectEmail": "",
145
+ "sendToEmail": "",
146
+ "instanceTelegram": "",
147
+ "deviceTelegram": "",
148
+ "instanceJarvis": "",
149
+ "titleJarvis": "Device-Watcher",
150
+ "tableBlacklist": []
151
+ },
152
+ "objects": [],
153
+ "instanceObjects": [
154
+ {
155
+ "_id": "offlineCount",
156
+ "type": "state",
157
+ "common": {
158
+ "name": "Quantity devices offline",
159
+ "type": "number",
160
+ "role": "value",
161
+ "read": true,
162
+ "write": false,
163
+ "def": 0
164
+ },
165
+ "native": {}
166
+ },
167
+ {
168
+ "_id": "offlineList",
169
+ "type": "state",
170
+ "common": {
171
+ "name": "List devices offline",
172
+ "type": "array",
173
+ "role": "json",
174
+ "read": true,
175
+ "write": false,
176
+ "def": "{}"
177
+ },
178
+ "native": {}
179
+ },
180
+ {
181
+ "_id": "listAll",
182
+ "type": "state",
183
+ "common": {
184
+ "name": "List all devices",
185
+ "type": "array",
186
+ "role": "json",
187
+ "read": true,
188
+ "write": false,
189
+ "def": "{}"
190
+ },
191
+ "native": {}
192
+ },
193
+ {
194
+ "_id": "linkQualityList",
195
+ "type": "state",
196
+ "common": {
197
+ "name": "List devices with qualitiy strength",
198
+ "type": "array",
199
+ "role": "json",
200
+ "read": true,
201
+ "write": false,
202
+ "def": "{}"
203
+ },
204
+ "native": {}
205
+ },
206
+ {
207
+ "_id": "countAll",
208
+ "type": "state",
209
+ "common": {
210
+ "name": "Quantity devices all",
211
+ "type": "number",
212
+ "role": "value",
213
+ "read": true,
214
+ "write": false,
215
+ "def": 0
216
+ },
217
+ "native": {}
218
+ },
219
+ {
220
+ "_id": "batteryList",
221
+ "type": "state",
222
+ "common": {
223
+ "name": "List devices with battery state",
224
+ "type": "array",
225
+ "role": "json",
226
+ "read": true,
227
+ "write": false,
228
+ "def": "{}"
229
+ },
230
+ "native": {}
231
+ },
232
+ {
233
+ "_id": "lowBatteryList",
234
+ "type": "state",
235
+ "common": {
236
+ "name": "List devices with low battery state",
237
+ "type": "array",
238
+ "role": "json",
239
+ "read": true,
240
+ "write": false,
241
+ "def": "{}"
242
+ },
243
+ "native": {}
244
+ },
245
+ {
246
+ "_id": "lowBatteryCount",
247
+ "type": "state",
248
+ "common": {
249
+ "name": "Quantity devices with low battery",
250
+ "type": "number",
251
+ "role": "value",
252
+ "read": true,
253
+ "write": false,
254
+ "def": 0
255
+ },
256
+ "native": {}
257
+ },
258
+ {
259
+ "_id": "batteryCount",
260
+ "type": "state",
261
+ "common": {
262
+ "name": "Quantity devices with battery",
263
+ "type": "number",
264
+ "role": "value",
265
+ "read": true,
266
+ "write": false,
267
+ "def": 0
268
+ },
269
+ "native": {}
270
+ },
271
+ {
272
+ "_id": "lastCheck",
273
+ "type": "state",
274
+ "common": {
275
+ "name": "Timestamp of last run",
276
+ "type": "object",
277
+ "role": "indicator",
278
+ "read": true,
279
+ "write": false,
280
+ "def": ""
281
+ },
282
+ "native": {}
283
+ },
284
+ {
285
+ "_id": "lastNotification",
286
+ "type": "state",
287
+ "common": {
288
+ "name": "Last Notification",
289
+ "type": "string",
290
+ "role": "indicator",
291
+ "read": true,
292
+ "write": false,
293
+ "def": ""
294
+ },
295
+ "native": {}
296
+ },
297
+ {
298
+ "_id": "info.lastBatteryNotification",
299
+ "type": "state",
300
+ "common": {
301
+ "name": "Indicator if last battery notification was send today.",
302
+ "type": "boolean",
303
+ "role": "indicator",
304
+ "read": true,
305
+ "write": false,
306
+ "def": false
307
+ },
308
+ "native": {}
309
+ }
310
+ ]
311
+ }
@@ -0,0 +1,19 @@
1
+ // This file extends the AdapterConfig type from "@types/iobroker"
2
+ // using the actual properties present in io-package.json
3
+ // in order to provide typings for adapter.config properties
4
+
5
+ import { native } from '../io-package.json';
6
+
7
+ type _AdapterConfig = typeof native;
8
+
9
+ // Augment the globally declared type ioBroker.AdapterConfig
10
+ declare global {
11
+ namespace ioBroker {
12
+ interface AdapterConfig extends _AdapterConfig {
13
+ // Do not enter anything here!
14
+ }
15
+ }
16
+ }
17
+
18
+ // this is required so the above AdapterConfig is found by TypeScript / type checking
19
+ export {};