release: bump version to 0.71.0
Some checks failed
ci / backend (push) Has been cancelled
ci / frontend (push) Has been cancelled
release / images (push) Has been cancelled
ci / delivery (push) Has been cancelled

This commit is contained in:
linkong
2026-06-11 16:47:24 +08:00
parent 8c204717cd
commit 899e3bce43
56 changed files with 4618 additions and 260 deletions

View File

@@ -47,6 +47,10 @@ export function normalizeGestureMessage(raw, fallbackSource = "motion-provider")
seq: Number(raw.seq || 0),
source: raw.source || fallbackSource,
mode: raw.mode || "single",
protocolVersion: raw.protocol_version || raw.protocolVersion || "motion.v1",
cameraId: raw.camera_id || raw.cameraId || "unknown",
inputMode: raw.input_mode || raw.inputMode || raw.mode || "single",
fusion: raw.fusion && typeof raw.fusion === "object" ? raw.fusion : null,
payload: raw.payload && typeof raw.payload === "object" ? raw.payload : {},
};
}