merge 3.x

This commit is contained in:
2025-07-23 20:42:10 +02:00
3 changed files with 7 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ export * from "./interfaces/tournament";
export * from "./interfaces/guest-player-request"; export * from "./interfaces/guest-player-request";
export * from "./interfaces/single-tournament"; export * from "./interfaces/single-tournament";
export * from "./interfaces/team-championship"; export * from "./interfaces/team-championship";
export * from "./interfaces/tag";
export * from "./interfaces/role"; export * from "./interfaces/role";
export * from "./interfaces/confirmation-request"; export * from "./interfaces/confirmation-request";
export * from "./interfaces/confirmation-request/adult-confirmation-request"; export * from "./interfaces/confirmation-request/adult-confirmation-request";

4
src/interfaces/tag.ts Normal file
View File

@@ -0,0 +1,4 @@
export interface Tag {
id?: number;
label: string;
}

View File

@@ -1,6 +1,7 @@
import { Category } from "./category"; import { Category } from "./category";
import { Club } from "./club"; import { Club } from "./club";
import { Official } from "./official"; import { Official } from "./official";
import { Tag } from "./tag";
import { TeamCategory } from "./team-category"; import { TeamCategory } from "./team-category";
export interface Tournament { export interface Tournament {
@@ -24,4 +25,5 @@ export interface Tournament {
drawUrl: string | null; drawUrl: string | null;
notificationsSentAt?: Date | null; notificationsSentAt?: Date | null;
'@type'?: string; '@type'?: string;
tags?: Tag[];
} }