mirror of
https://github.com/BetterCorp/BetterFrame.git
synced 2026-05-26 17:56:34 +00:00
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:
parent
6b31c09e9d
commit
c51d971819
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue