add systemId to ordered stop and ETA entities

This commit is contained in:
2025-04-07 12:09:52 -07:00
parent 9c414be8ce
commit 4b610c3ba9

View File

@@ -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;
}