diff options
| author | soryu <soryu@soryu.co> | 2026-01-15 00:07:54 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-01-15 01:30:02 +0000 |
| commit | 1e2a64efe65672cf13c08b6ee36d8273fd0ac937 (patch) | |
| tree | b442b7dc7ea70a31157972eae9a9667947eddb66 /makima | |
| parent | b8035a7bc86dfb40af66f80e0564a41b8c6f7ba8 (diff) | |
| download | soryu-1e2a64efe65672cf13c08b6ee36d8273fd0ac937.tar.gz soryu-1e2a64efe65672cf13c08b6ee36d8273fd0ac937.zip | |
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 <noreply@anthropic.com>
Diffstat (limited to 'makima')
| -rw-r--r-- | makima/frontend/src/types/messages.ts | 2 |
1 files changed, 2 insertions, 0 deletions
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 = { |
