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", "name": "@mtlsz/common",
"version": "3.2.4", "version": "3.2.6",
"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

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

View File

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