2 Commits

Author SHA1 Message Date
tothbt 495ef7d7d8 3.4.4 2025-12-23 19:57:14 +01:00
tothbt b7c8b6d613 3.4.3 2025-12-23 14:53:28 +01:00
3 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@mtlsz/common",
"version": "3.4.2",
"version": "3.4.4",
"description": "MTLSZ frontend packages",
"main": "dist/index.ts",
"types": "dist/index.d.ts",
@@ -3,4 +3,5 @@ import { Club } from "../club";
export interface PlayerConfirmationRequest {
id?: number;
club: Club;
gender?: string;
}
+1
View File
@@ -5,4 +5,5 @@ export interface SingleTournament extends Tournament {
categories: Array<Category>;
allowedWithoutPartner: boolean;
allowedSimilarEntries: boolean;
isPlayerEntryAllowed: boolean;
}