feat(interfaces): add isAvailable field to IDbVehicle interface

The IDbVehicle interface has been updated to include an optional `isAvailable` field. This field can be used to check the availability status of a vehicle.

Signed-off-by: Mathis <yidhra@tuta.io>
This commit is contained in:
Mathis H (Avnyr) 2024-05-03 13:17:47 +02:00
parent 5afb6e22bf
commit 6ccc899320
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -4,4 +4,5 @@ export interface IDbVehicle {
model_id: string;
odometer: number;
health_state: number;
isAvailable?: boolean;
}