Add support for unpairing devices

This commit is contained in:
Adrian Jagielak
2025-07-28 16:12:12 +02:00
parent b034197a93
commit 850fc7fc57
7 changed files with 307 additions and 75 deletions

View File

@@ -3,7 +3,10 @@ export type VinculumPd7Device = {
// User-defined device name
name?: string | null;
} | null;
// FIMP Device ID.
id: number;
// FIMP Thing Address (ID).
thing?: number | null;
// "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;