fix: add missing fields for mtlsz-public

This commit is contained in:
2025-03-21 16:39:35 +01:00
parent d483a245f8
commit 927e9d4e36
2 changed files with 8 additions and 0 deletions

View File

@@ -8,5 +8,6 @@ export interface Category {
gender: string; gender: string;
class: number; class: number;
age?: string; age?: string;
allowedFrom: number | null;
priority: number; priority: number;
} }

View File

@@ -1,4 +1,5 @@
import { Club } from "./club"; import { Club } from "./club";
import { RankingEntry } from "./ranking-entry";
export interface Player { export interface Player {
id?: number; id?: number;
@@ -6,9 +7,15 @@ export interface Player {
lastName: string; lastName: string;
gender: string; gender: string;
birthDate: string; birthDate: string;
birthPlace: string;
officialId?: number; officialId?: number;
club: Club; club: Club;
email?: string; email?: string;
keycloakUserId?: string; keycloakUserId?: string;
active?: boolean; active?: boolean;
licenceFrom?: string;
licenceTo?: string;
disabledBecauseRanking?: boolean;
disabledBecauseSimilarEntry?: boolean;
rankingEntries?: RankingEntry[];
} }