update property name again and make it required

This commit is contained in:
2025-04-29 16:07:30 -07:00
parent f1dd8650b6
commit fe90ffe911
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
export interface IEntityWithOptionalTimestamp { export interface IEntityWithOptionalTimestamp {
updateTimeMs?: number; updatedTimeMs: number;
} }
export interface IEntityWithId { export interface IEntityWithId {

View File

@@ -221,7 +221,7 @@ export class ApiBasedShuttleRepositoryLoader implements ShuttleRepositoryLoader
secondsRemaining: jsonEta.secondsSpent, secondsRemaining: jsonEta.secondsSpent,
shuttleId: `${shuttleId}`, shuttleId: `${shuttleId}`,
stopId: stopId, stopId: stopId,
updateTimeMs: Date.now(), updatedTimeMs: Date.now(),
systemId: this.systemIdForConstructedData, systemId: this.systemIdForConstructedData,
}; };