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) <noreply@anthropic.com>
This commit is contained in:
Mitchell R 2026-05-26 05:31:59 +02:00
parent 6b31c09e9d
commit c51d971819
No known key found for this signature in database

View file

@ -413,6 +413,8 @@ export interface CameraEventSubscription {
topic: string; topic: string;
status: EventSubscriptionStatus; status: EventSubscriptionStatus;
subscribed_by_kiosk_id: number | null; subscribed_by_kiosk_id: number | null;
event_source: string | null;
event_sink: string | null;
last_event_at: string | null; last_event_at: string | null;
error_message: string | null; error_message: string | null;
created_at: string; created_at: string;