integration tests
Some checks failed
Contract Testing / contract-tests (pull_request) Failing after 4m51s
Contract Testing / contract-snapshot (pull_request) Has been skipped

This commit is contained in:
2026-01-22 17:29:06 +01:00
parent f61ebda9b7
commit 597bb48248
68 changed files with 11832 additions and 3498 deletions

View File

@@ -0,0 +1,33 @@
export interface LeagueCreateCommand {
name: string;
description?: string;
visibility: 'public' | 'private';
ownerId: string;
// Structure
maxDrivers?: number;
approvalRequired: boolean;
lateJoinAllowed: boolean;
// Schedule
raceFrequency?: string;
raceDay?: string;
raceTime?: string;
tracks?: string[];
// Scoring
scoringSystem?: any;
bonusPointsEnabled: boolean;
penaltiesEnabled: boolean;
// Stewarding
protestsEnabled: boolean;
appealsEnabled: boolean;
stewardTeam?: string[];
// Tags
gameType?: string;
skillLevel?: string;
category?: string;
tags?: string[];
}