Compare commits
5 Commits
main
...
dfb68e99b5
| Author | SHA1 | Date | |
|---|---|---|---|
| dfb68e99b5 | |||
| 04df85bdbc | |||
| 78f6673179 | |||
| 60cc76c3c8 | |||
| 4f1f3e26e5 |
@@ -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",
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user