feat(monitor): retain authorized vehicles without locations
This commit is contained in:
@@ -60,6 +60,8 @@ export interface CustomerUserInput {
|
||||
|
||||
export interface MonitorSummary {
|
||||
totalVehicles: number;
|
||||
locationVehicles?: number;
|
||||
noLocationVehicles?: number;
|
||||
onlineVehicles: number;
|
||||
offlineVehicles: number;
|
||||
drivingVehicles: number;
|
||||
@@ -593,11 +595,17 @@ export interface VehicleRealtimeRow {
|
||||
locationSource?: string;
|
||||
locationConflict?: boolean;
|
||||
conflictDistanceM?: number;
|
||||
locationAvailable?: boolean;
|
||||
longitude: number;
|
||||
latitude: number;
|
||||
speedAvailable?: boolean;
|
||||
speedKmh: number;
|
||||
socAvailable?: boolean;
|
||||
socPercent: number;
|
||||
mileageAvailable?: boolean;
|
||||
totalMileageKm: number;
|
||||
todayMileageAvailable?: boolean;
|
||||
todayMileageKm?: number;
|
||||
lastSeen: string;
|
||||
reportIntervalMs?: number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user