This commit is contained in:
2025-12-23 19:57:14 +01:00
parent b7c8b6d613
commit 495ef7d7d8
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@mtlsz/common", "name": "@mtlsz/common",
"version": "3.4.3", "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;
} }