From 4b610c3ba9076e096a1f9de499c457fa9f274dcf Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Mon, 7 Apr 2025 12:09:52 -0700 Subject: [PATCH] add systemId to ordered stop and ETA entities --- src/entities/entities.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/entities/entities.ts b/src/entities/entities.ts index 8d1f0ad..f98faa5 100644 --- a/src/entities/entities.ts +++ b/src/entities/entities.ts @@ -40,6 +40,7 @@ export interface IEta extends IEntityWithOptionalTimestamp { secondsRemaining: number; shuttleId: string; stopId: string; + systemId: string; } export interface IOrderedStop extends IEntityWithOptionalTimestamp { @@ -48,5 +49,6 @@ export interface IOrderedStop extends IEntityWithOptionalTimestamp { routeId: string; stopId: string; position: number; + systemId: string; }