diff --git a/src/index.ts b/src/index.ts index 92c6952..1aede93 100644 --- a/src/index.ts +++ b/src/index.ts @@ -18,6 +18,7 @@ export * from "./interfaces/tournament"; export * from "./interfaces/guest-player-request"; export * from "./interfaces/single-tournament"; export * from "./interfaces/team-championship"; +export * from "./interfaces/tag"; export * from "./interfaces/role"; export * from "./interfaces/confirmation-request"; export * from "./interfaces/confirmation-request/adult-confirmation-request"; diff --git a/src/interfaces/tag.ts b/src/interfaces/tag.ts new file mode 100644 index 0000000..847b8c6 --- /dev/null +++ b/src/interfaces/tag.ts @@ -0,0 +1,4 @@ +export interface Tag { + id?: number; + label: string; +} diff --git a/src/interfaces/tournament.ts b/src/interfaces/tournament.ts index 5c6231d..33c985f 100644 --- a/src/interfaces/tournament.ts +++ b/src/interfaces/tournament.ts @@ -1,6 +1,7 @@ import { Category } from "./category"; import { Club } from "./club"; import { Official } from "./official"; +import { Tag } from "./tag"; import { TeamCategory } from "./team-category"; export interface Tournament { @@ -24,4 +25,5 @@ export interface Tournament { drawUrl: string | null; notificationsSentAt?: Date | null; '@type'?: string; + tags?: Tag[]; }