update entities and schema to include orientation in degrees

This commit is contained in:
2025-03-17 13:15:07 -07:00
parent 217fb065cb
commit d9d11e1b31
2 changed files with 2 additions and 0 deletions

View File

@@ -47,6 +47,7 @@ type ETA {
shuttle: Shuttle shuttle: Shuttle
shuttleId: ID! shuttleId: ID!
secondsRemaining: Float! secondsRemaining: Float!
orientationInDegrees: Float!
} }
type Shuttle { type Shuttle {

View File

@@ -33,6 +33,7 @@ export interface IShuttle extends IEntityWithId, IEntityWithOptionalTimestamp {
name: string; name: string;
routeId: string; routeId: string;
systemId: string; systemId: string;
orientationInDegrees: number;
} }
export interface IEta extends IEntityWithOptionalTimestamp { export interface IEta extends IEntityWithOptionalTimestamp {