5 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
78f6673179 3.2.4 2025-08-01 16:06:50 +02:00
60cc76c3c8 3.2.3 2025-08-01 12:28:01 +02:00
4f1f3e26e5 3.2.2 2025-07-24 13:53:55 +02:00
4 changed files with 8 additions and 2 deletions

View File

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

View File

@@ -27,3 +27,4 @@ export * from "./interfaces/confirmation-request/player-confirmation-request";
export * from "./interfaces/confirmation-request/team-admin-confirmation-request";
export * from "./interfaces/confirmation-request/team-manager-confirmation-request";
export * from "./interfaces/confirmation-requests";
export * from "./interfaces/generic-user";

View File

@@ -8,6 +8,11 @@ export interface ConfirmationRequest {
id: number;
status: number;
roleString: string;
lastName: string | null;
firstName: string | null;
email: string | null;
phone: 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;