2 Commits

Author SHA1 Message Date
495ef7d7d8 3.4.4 2025-12-23 19:57:14 +01:00
b7c8b6d613 3.4.3 2025-12-23 14:53:28 +01:00
3 changed files with 3 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@mtlsz/common", "name": "@mtlsz/common",
"version": "3.4.2", "version": "3.4.4",
"description": "MTLSZ frontend packages", "description": "MTLSZ frontend packages",
"main": "dist/index.ts", "main": "dist/index.ts",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",

View File

@@ -3,4 +3,5 @@ import { Club } from "../club";
export interface PlayerConfirmationRequest { export interface PlayerConfirmationRequest {
id?: number; id?: number;
club: Club; club: Club;
gender?: string;
} }

View File

@@ -5,4 +5,5 @@ export interface SingleTournament extends Tournament {
categories: Array<Category>; categories: Array<Category>;
allowedWithoutPartner: boolean; allowedWithoutPartner: boolean;
allowedSimilarEntries: boolean; allowedSimilarEntries: boolean;
isPlayerEntryAllowed: boolean;
} }