update to v2

This commit is contained in:
2025-03-22 14:12:21 +01:00
parent 4092b128bc
commit 0daedc28dc
10 changed files with 88 additions and 51 deletions

View File

@@ -10,8 +10,6 @@ export interface Tournament {
dateTo?: string;
entryDeadline?: string;
entryOpenFrom?: string;
categories: Array<Category>;
teamCategories?: Array<TeamCategory>;
/**
* @deprecated use organizerName instead
*/
@@ -20,12 +18,10 @@ export interface Tournament {
active: boolean;
city?: string;
onlyWithLicence: boolean;
teamChampionship: boolean;
allowedWithoutPartner: boolean;
allowedSimilarEntries: boolean;
entriesChecked?: boolean;
referee: Official | null;
deputyReferee: Official | null;
drawUrl: string | null;
notificationsSentAt?: Date | null;
'@type'?: string;
}