fix issues in core

This commit is contained in:
2025-12-23 15:38:50 +01:00
parent df5c20c5cc
commit 120d3bb1a1
125 changed files with 1005 additions and 793 deletions

View File

@@ -12,4 +12,6 @@ export interface AllRacesPageOutputPort {
total: number;
page: number;
limit: number;
}
}
// TODO this code must be resolved into a Result within UseCase, thats not an OutputPort

View File

@@ -9,4 +9,6 @@ export interface ChampionshipStandingsOutputPort {
teamId?: string;
teamName?: string;
}>;
}
}
// TODO this code must be resolved into a Result within UseCase, thats not an OutputPort

View File

@@ -5,4 +5,6 @@ export interface ChampionshipStandingsRowOutputPort {
driverName: string;
teamId?: string;
teamName?: string;
}
}
// TODO this code must be resolved into a Result within UseCase, thats not an OutputPort

View File

@@ -4,4 +4,6 @@ export interface DriverRegistrationStatusOutputPort {
leagueId: string;
registered: boolean;
status: 'registered' | 'withdrawn' | 'pending' | 'not_registered';
}
}
// TODO this code must be resolved into a Result within UseCase, thats not an OutputPort