Compare commits

2 Commits

Author SHA1 Message Date
dfb68e99b5 3.2.6 2025-08-01 18:00:52 +02:00
04df85bdbc 3.2.5 2025-08-01 18:00:33 +02:00
3 changed files with 3 additions and 3 deletions

View File

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

View File

@@ -12,7 +12,7 @@ export interface ConfirmationRequest {
firstName: string | null;
email: string | null;
phone: string | null;
keycloakId: string | null;
keycloakUserId: string | null;
entity:
| PlayerConfirmationRequest
| AdultConfirmationRequest

View File

@@ -6,7 +6,7 @@ export interface Player extends GenericUser {
id?: number;
gender: string;
birthDate: string;
birthPlace: string | null;
birthPlace?: string | null;
officialId?: number;
club: Club;
active?: boolean;