From 1e2a64efe65672cf13c08b6ee36d8273fd0ac937 Mon Sep 17 00:00:00 2001 From: soryu Date: Thu, 15 Jan 2026 00:07:54 +0000 Subject: fix(types): add missing contractId and authToken to StartMessage type Add optional contractId and authToken fields to the StartMessage TypeScript type to match the backend message structure and fix type checking. Co-Authored-By: Claude Opus 4.5 --- makima/frontend/src/types/messages.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'makima/frontend') diff --git a/makima/frontend/src/types/messages.ts b/makima/frontend/src/types/messages.ts index c227f73..b6c7320 100644 --- a/makima/frontend/src/types/messages.ts +++ b/makima/frontend/src/types/messages.ts @@ -4,6 +4,8 @@ export type StartMessage = { sampleRate: number; channels: number; encoding: "pcm32f" | "pcm16"; + contractId?: string; + authToken?: string; }; export type StopMessage = { -- cgit v1.2.3