iobroker.zeptrion 0.8.5 → 0.8.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.
package/README.md CHANGED
@@ -190,6 +190,9 @@ npm run test:integration # starts a real js-controller (takes longer)
190
190
 
191
191
  ## Changelog
192
192
 
193
+ ### 0.8.6 (2026-07-17)
194
+ - Corrected object role/type mismatches found by the ioBroker store submission's object structure check: calibrate and ntp.per used role 'value', which strictly requires read=true/write=false and does not fit these intentionally writable states - changed to role 'level'. Also added the missing full i18n translation for info.connection.
195
+
193
196
  ### 0.8.5 (2026-07-16)
194
197
  - Enabled automated npm releases via GitHub Actions using npm Trusted Publishing (OIDC) - no more manual publishing, and this and all future tagged releases are automatically signed with npm provenance. No functional/API changes.
195
198
 
@@ -212,74 +215,9 @@ npm run test:integration # starts a real js-controller (takes longer)
212
215
  ### 0.8.0
213
216
  - Fixed orphaned states remaining after a device is removed/replaced (objects are now cleaned up on start), official Feller zeptrion logo as icon (used with permission)
214
217
 
215
- ### 0.7.0 (2026-07-10)
216
- - Scaling for 20+ devices: parallel setup, poll jitter, duplicate detection
217
- - Strict startup validation for every configured device row
218
- - CSV bulk import (dedicated config tab) with row validation and auto-ID
219
- - FIX: position estimate correctly handled after a stop during an end-position run
220
- - FIX: adapter timer cleanup (this.clearTimeout), leading zeros in chdes codes are preserved
221
-
222
- ### 0.6.0 (2026-07-10)
223
- - Auto-ID from host, device test button (reachability + zeptrion verification + channel count check)
224
- - Channel object names taken from the device (chdes), new icon, device icons
225
-
226
- ### 0.5.1 (2026-07-10)
227
- - CRITICAL FIX: the XML parser skipped the payload because of the XML declaration key - all GET values remained null in 0.5.0
228
-
229
- ### 0.5.0 (2026-07-07)
230
- - setPosition: time-based %-approach for shutters (chunked due to the 32s API limit, reference run when position is unknown)
231
- - tiltOpen/tiltClose: slat tilt pulses (configurable pulse duration)
232
- - calibrate: set the position estimate without moving
233
-
234
- ### 0.4.0 (2026-07-07) - Security & quality hardening
235
- - **Locked factory reset**: `system.factoryDefault` now only works within
236
- 30s of setting `system.unlock` - a single accidental setState from a
237
- script/VIS can no longer wipe the device.
238
- - **Crash-safe onStateChange**: the entire handler (including the bulk commands) now
239
- runs inside centralized error handling - unhandled promise rejections are
240
- no longer possible.
241
- - **Input validation**: channel description (32/32/24/4/4 bytes UTF-8), location (32),
242
- NTP URL (32) and NTP interval (0-255) are validated before sending; a clear
243
- error message instead of an HTTP 400 from the device. Umlauts are correctly counted as 2 bytes.
244
- - **Adapter-managed timers** (`this.setTimeout`) used everywhere - automatic cleanup
245
- on unload per the ioBroker guidelines.
246
- - **Connection economy**: as long as the chnotify long-poll is running healthily, the
247
- redundant chscan resync now only runs on every 5th poll (goes easier on the
248
- weak embedded web servers of the flush-mounted actuators).
249
- - **chnotify can be disabled** (Expert tab) for environments with connection issues.
250
- - **New admin UI**: tabs (Devices/Expert), fully EN+DE, input validators
251
- (ID pattern, host pattern), tooltips on every column, security notice.
252
- - Migrated ESLint to flat config (v9), lint runs cleanly; smoke tests for
253
- command validation, byte limits, position math and multicast body.
254
-
255
- ### 0.3.0 (2026-07-07)
256
- - Channel commands for the same device are automatically bundled within a 50ms window
257
- into a single multicast POST to `/zrap/chctrl` instead of being sent sequentially
258
- one by one - `control.closeAllShutters` (hail alert) in particular
259
- benefits massively from this (one request per device instead of one per channel).
260
- - Optional time-based shutter position estimate (`posEstimate`) based on a configurable
261
- motor travel time, since the hardware itself does not report a position.
262
- - Optional Smartfront support (`zapi/smartfront/*`): read temperature/brightness/
263
- humidity, set LED background color.
264
- - Role fix: `level.blind` is now applied to the position estimate instead of the
265
- raw (usually -1) hardware value.
266
-
267
- ### 0.2.0 (2026-07-07)
268
- - Channel states are now primarily updated near real-time via `zrap/chnotify`
269
- (long-poll) instead of only via interval polling; `chscan` polling remains as a
270
- periodic resync/fallback.
271
- - An additional safety net (busy window, 5s) prevents a concurrent
272
- chscan resync from overwriting a just-sent movement command with a stale value.
273
- - mDNS discovery handler hardened against exceptions caused by malformed/unrelated
274
- network packets (try/catch per service event instead of only around the subscription).
275
- - New device field "kind" (Shutter/Light/unknown) controls the default object roles
276
- (`level.blind`, `button.stop`, `button.open.blind`, `button.close.blind` resp.
277
- `level.dimmer`) for better VIS/smart-home integration.
278
- - Structured `native` metadata (host, channel number, kind) on device/channel objects.
279
-
280
- ### 0.1.0 (2026-07-07)
281
- - First version: channel control, channel state/description, device/network info,
282
- system commands, location/NTP/date, bulk commands for hail alerts, mDNS discovery.
218
+ ### 0.7.0 and older
219
+
220
+ Older changelog entries can be found in [CHANGELOG_OLD.md](CHANGELOG_OLD.md).
283
221
 
284
222
  ## License
285
223
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "zeptrion",
4
- "version": "0.8.5",
4
+ "version": "0.8.6",
5
5
  "news": {
6
+ "0.8.6": {
7
+ "en": "Corrected object role/type mismatches found by the ioBroker store submission's object structure check: calibrate and ntp.per used role 'value', which strictly requires read=true/write=false and does not fit these intentionally writable states - changed to role 'level'. Also added the missing full i18n translation for info.connection. No functional/API changes - purely metadata (common.role/common.name) corrections.",
8
+ "de": "Objekt-Rollen-/Typ-Abweichungen behoben, die beim Objektstruktur-Check der ioBroker-Store-Einreichung gefunden wurden: calibrate und ntp.per nutzten die Rolle 'value', die zwingend read=true/write=false erfordert und nicht zu diesen bewusst schreibbaren States passt - auf Rolle 'level' umgestellt. Zusätzlich die fehlende vollständige i18n-Übersetzung für info.connection ergänzt. Keine funktionalen/API-Änderungen - reine Metadaten-Korrekturen (common.role/common.name).",
9
+ "ru": "Исправлены несоответствия ролей/типов объектов, найденных при проверке структуры объектов для подачи в магазин ioBroker: calibrate и ntp.per использовали роль 'value', которая строго требует read=true/write=false и не подходит для этих намеренно записываемых состояний - изменено на роль 'level'. Также добавлен отсутствующий полный перевод i18n для info.connection.",
10
+ "pt": "Corrigidas incompatibilidades de função/tipo de objeto encontradas na verificação da estrutura de objetos da submissão à loja ioBroker: calibrate e ntp.per usavam a função 'value', que exige estritamente read=true/write=false e não se adequa a estes estados intencionalmente graváveis - alterado para a função 'level'. Também foi adicionada a tradução i18n completa em falta para info.connection.",
11
+ "nl": "Object rol/type-mismatches gecorrigeerd die zijn gevonden bij de objectstructuurcontrole van de ioBroker store-inzending: calibrate en ntp.per gebruikten de rol 'value', die strikt read=true/write=false vereist en niet past bij deze bewust schrijfbare states - gewijzigd naar rol 'level'. Ook de ontbrekende volledige i18n-vertaling voor info.connection toegevoegd.",
12
+ "fr": "Correction des incohérences de rôle/type d'objet détectées lors de la vérification de la structure des objets pour la soumission au store ioBroker : calibrate et ntp.per utilisaient le rôle 'value', qui exige strictement read=true/write=false et ne convient pas à ces états volontairement modifiables - changé en rôle 'level'. La traduction i18n complète manquante pour info.connection a également été ajoutée.",
13
+ "it": "Corrette le discrepanze di ruolo/tipo degli oggetti riscontrate durante il controllo della struttura degli oggetti per l'invio allo store ioBroker: calibrate e ntp.per utilizzavano il ruolo 'value', che richiede rigorosamente read=true/write=false e non si adatta a questi stati intenzionalmente scrivibili - cambiato in ruolo 'level'. Aggiunta anche la traduzione i18n completa mancante per info.connection.",
14
+ "es": "Se corrigieron discrepancias de rol/tipo de objeto encontradas en la verificación de estructura de objetos del envío a la tienda ioBroker: calibrate y ntp.per usaban el rol 'value', que requiere estrictamente read=true/write=false y no encaja con estos estados intencionalmente escribibles - cambiado a rol 'level'. También se añadió la traducción i18n completa faltante para info.connection.",
15
+ "pl": "Naprawiono niezgodności ról/typów obiektów wykryte podczas sprawdzania struktury obiektów zgłoszenia do sklepu ioBroker: calibrate i ntp.per używały roli 'value', która wymaga ściśle read=true/write=false i nie pasuje do tych celowo zapisywalnych stanów - zmieniono na rolę 'level'. Dodano również brakujące pełne tłumaczenie i18n dla info.connection.",
16
+ "uk": "Виправлено невідповідності ролей/типів об'єктів, знайдені під час перевірки структури об'єктів для подання до магазину ioBroker: calibrate і ntp.per використовували роль 'value', яка суворо вимагає read=true/write=false і не підходить для цих навмисно записуваних станів - змінено на роль 'level'. Також додано відсутній повний переклад i18n для info.connection.",
17
+ "zh-cn": "修复了在 ioBroker 商店提交的对象结构检查中发现的对象角色/类型不匹配问题:calibrate 和 ntp.per 使用了角色 'value',该角色严格要求 read=true/write=false,不适合这些故意可写的状态——已更改为角色 'level'。同时还补充了 info.connection 缺失的完整 i18n 翻译。"
18
+ },
6
19
  "0.8.5": {
7
20
  "en": "Enabled automated npm releases via GitHub Actions using npm Trusted Publishing (OIDC) - no more manual publishing, and this and all future tagged releases are automatically signed with npm provenance. No functional/API changes.",
8
21
  "de": "Automatisierte npm-Releases über GitHub Actions mittels npm Trusted Publishing (OIDC) aktiviert - kein manuelles Veröffentlichen mehr nötig, dieses und alle künftigen getaggten Releases werden automatisch mit npm-Provenance signiert. Keine funktionalen Änderungen/API-Änderungen.",
@@ -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 {};
package/main.js CHANGED
@@ -123,7 +123,7 @@ class Zeptrion extends utils.Adapter {
123
123
  async onReady() {
124
124
  await this.setStateAsync('info.connection', { val: false, ack: true });
125
125
 
126
- const timeout = parseInt(this.config.requestTimeout, 10) || 4000;
126
+ const timeout = parseInt(String(this.config.requestTimeout), 10) || 4000;
127
127
  this.requestTimeout = Math.min(Math.max(timeout, 500), 30000);
128
128
 
129
129
  const devicesCfg = Array.isArray(this.config.devices) ? this.config.devices : [];
@@ -395,7 +395,22 @@ class Zeptrion extends utils.Adapter {
395
395
 
396
396
  // --- info ---
397
397
  await this.setObjectNotExistsAsync(`${id}.info`, { type: 'channel', common: { name: 'Geräteinformationen' }, native: {} });
398
- await this.ensureState(`${id}.info.connection`, { name: 'Verbindung OK', type: 'boolean', role: 'indicator.reachable', read: true, write: false, def: false });
398
+ await this.ensureState(`${id}.info.connection`, {
399
+ name: {
400
+ en: 'Connection OK',
401
+ de: 'Verbindung OK',
402
+ ru: 'Соединение в порядке',
403
+ pt: 'Ligação OK',
404
+ nl: 'Verbinding OK',
405
+ fr: 'Connexion OK',
406
+ it: 'Connessione OK',
407
+ es: 'Conexión OK',
408
+ pl: 'Połączenie OK',
409
+ uk: "З'єднання в порядку",
410
+ 'zh-cn': '连接正常'
411
+ },
412
+ type: 'boolean', role: 'indicator.reachable', read: true, write: false, def: false
413
+ });
399
414
  await this.ensureState(`${id}.info.lastError`, { name: 'Letzter Fehler', type: 'string', role: 'text', read: true, write: false, def: '' });
400
415
  await this.ensureState(`${id}.info.hw`, { name: 'Hardware-Version', type: 'string', role: 'info.hardware', read: true, write: false });
401
416
  await this.ensureState(`${id}.info.sw`, { name: 'Software-Version', type: 'string', role: 'info.firmware', read: true, write: false });
@@ -435,7 +450,7 @@ class Zeptrion extends utils.Adapter {
435
450
  // --- ntp (zrap/ntp) ---
436
451
  await this.setObjectNotExistsAsync(`${id}.ntp`, { type: 'channel', common: { name: 'NTP' }, native: {} });
437
452
  await this.ensureState(`${id}.ntp.url`, { name: 'NTP-Server (URL/IP, max. 32 Zeichen)', type: 'string', role: 'text', read: true, write: true });
438
- await this.ensureState(`${id}.ntp.per`, { name: 'Abfrageintervall in Stunden (0=deaktiviert)', type: 'number', role: 'value', read: true, write: true, min: 0, max: 255 });
453
+ await this.ensureState(`${id}.ntp.per`, { name: 'Abfrageintervall in Stunden (0=deaktiviert)', type: 'number', role: 'level', read: true, write: true, min: 0, max: 255 });
439
454
 
440
455
  // --- date (zrap/date) ---
441
456
  await this.setObjectNotExistsAsync(`${id}.date`, { type: 'channel', common: { name: 'Datum/Zeit' }, native: {} });
@@ -513,7 +528,7 @@ class Zeptrion extends utils.Adapter {
513
528
  });
514
529
  await this.ensureState(`${ch}.calibrate`, {
515
530
  name: 'Schätzung setzen OHNE Fahrt (z.B. nach manueller Bedienung am Wandtaster): aktuellen Ist-Zustand in % eintragen',
516
- type: 'number', role: 'value', min: 0, max: 100, read: false, write: true
531
+ type: 'number', role: 'level', min: 0, max: 100, read: false, write: true
517
532
  });
518
533
  await this.extendObjectAsync(`${ch}.tiltOpen`, {
519
534
  type: 'state',
@@ -1519,13 +1534,13 @@ class Zeptrion extends utils.Adapter {
1519
1534
  id: candidate,
1520
1535
  name: row.name || row.host,
1521
1536
  host: row.host,
1522
- channels: parseInt(row.channels, 10) || 1,
1537
+ channels: parseInt(String(row.channels), 10) || 1,
1523
1538
  kind: row.kind,
1524
- travelTimeSec: parseInt(row.travelTimeSec, 10) || 0,
1539
+ travelTimeSec: parseInt(String(row.travelTimeSec), 10) || 0,
1525
1540
  travelTimeSecCh: String(row.travelTimeSecCh || '').trim(),
1526
- tiltTimeMs: parseInt(row.tiltTimeMs, 10) || 0,
1541
+ tiltTimeMs: parseInt(String(row.tiltTimeMs), 10) || 0,
1527
1542
  smartfront: row.smartfront,
1528
- pollInterval: parseInt(row.pollInterval, 10) || 30
1543
+ pollInterval: parseInt(String(row.pollInterval), 10) || 30
1529
1544
  });
1530
1545
  existingHosts.add(row.host.toLowerCase());
1531
1546
  existingIds.add(candidate);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.zeptrion",
3
- "version": "0.8.5",
3
+ "version": "0.8.6",
4
4
  "description": "ioBroker Adapter für Feller zeptrion / zApp WLAN-Aktoren (WLAN-Nebenstelle 4K, WLAN-Zwischenmodul 2K) über die zrap Webservice API - inkl. Sammelbefehlen für Hagelalarm und mDNS-Discovery",
5
5
  "author": {
6
6
  "name": "Stefan",
@@ -31,6 +31,7 @@
31
31
  "files": [
32
32
  "admin/",
33
33
  "main.js",
34
+ "lib/",
34
35
  "io-package.json",
35
36
  "LICENSE"
36
37
  ],
@@ -45,7 +46,9 @@
45
46
  },
46
47
  "devDependencies": {
47
48
  "@iobroker/testing": "^5.3.0",
48
- "eslint": "^10.6.0"
49
+ "eslint": "^10.6.0",
50
+ "@tsconfig/node22": "^22.0.5",
51
+ "@types/node": "^22.20.1"
49
52
  },
50
53
  "scripts": {
51
54
  "start": "node main.js",
@@ -55,4 +58,4 @@
55
58
  "test:integration": "mocha test/integration.js --exit --timeout 60000",
56
59
  "test": "npm run test:package && npm run test:unit"
57
60
  }
58
- }
61
+ }