team rating

This commit is contained in:
2025-12-30 12:25:45 +01:00
parent ccaa39c39c
commit 83371ea839
93 changed files with 10324 additions and 490 deletions

View File

@@ -0,0 +1,17 @@
/**
* DTO: RecordTeamRaceRatingEventsDto
*
* Input for RecordTeamRaceRatingEventsUseCase
*/
export interface RecordTeamRaceRatingEventsInput {
raceId: string;
}
export interface RecordTeamRaceRatingEventsOutput {
success: boolean;
raceId: string;
eventsCreated: number;
teamsUpdated: string[];
errors: string[];
}