From c51d971819ffbfffc19d902a5e4c598ff379be7b Mon Sep 17 00:00:00 2001 From: Mitchell R Date: Tue, 26 May 2026 05:31:59 +0200 Subject: [PATCH] fix: add event_source/event_sink to CameraEventSubscription type Mapper referenced these fields but type interface was missing them. Caused tsc failure in Docker build. Co-Authored-By: Claude Opus 4.6 (1M context) --- server/src/shared/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/src/shared/types.ts b/server/src/shared/types.ts index b00b7a8..10cd08a 100644 --- a/server/src/shared/types.ts +++ b/server/src/shared/types.ts @@ -413,6 +413,8 @@ export interface CameraEventSubscription { topic: string; status: EventSubscriptionStatus; subscribed_by_kiosk_id: number | null; + event_source: string | null; + event_sink: string | null; last_event_at: string | null; error_message: string | null; created_at: string;