chore: adjusted to new version of API vehicles data

This commit is contained in:
2024-06-08 20:53:22 +02:00
parent c252213ed9
commit 59a5fbe5ac
6 changed files with 61 additions and 68 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { Status, VehiclesData } from './common';
import { Status, VehicleData } from './common';
export enum APIDataStatus {
OK = 'OK',
@@ -320,7 +320,7 @@ export namespace API {
}
export namespace Vehicles {
export type Response = VehiclesData;
export type Response = VehicleData[];
}
}