Add extracting device manufacturer name

This commit is contained in:
Adrian Jagielak
2025-07-25 01:04:46 +02:00
parent 58e22e941f
commit 0f103dcb8e
3 changed files with 14 additions and 6 deletions

View File

@@ -4,9 +4,10 @@ export type VinculumPd7Device = {
name?: string | null;
} | null;
id: number;
// "Model", e.g. "zb - _TZ3040_bb6xaihh - TS0202"
// "Model" string, e.g. "zb - _TZ3040_bb6xaihh - TS0202"
// The first one is the adapter, the second one is the manufacturer, the third one is the device model.
model?: string | null;
// "Model alias", e.g. "TS0202"
// Device model, e.g. "TS0202"
modelAlias?: string | null;
functionality?:
| 'appliance'