Compare commits
3 Commits
d483a245f8
...
4092b128bc
| Author | SHA1 | Date | |
|---|---|---|---|
| 4092b128bc | |||
| 7ee9b2dc24 | |||
| 927e9d4e36 |
@@ -1,12 +1,13 @@
|
||||
{
|
||||
"name": "@mtlsz/common",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.4",
|
||||
"description": "MTLSZ frontend packages",
|
||||
"main": "dist/index.ts",
|
||||
"types": "dist/index.d.ts",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"publish": "npm publish --registry http://registry.trweb.hu"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
||||
@@ -8,5 +8,6 @@ export interface Category {
|
||||
gender: string;
|
||||
class: number;
|
||||
age?: string;
|
||||
allowedFrom: number | null;
|
||||
priority: number;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import { Club } from "./club";
|
||||
import { RankingEntry } from "./ranking-entry";
|
||||
|
||||
export interface Player {
|
||||
id?: number;
|
||||
@@ -6,9 +7,15 @@ export interface Player {
|
||||
lastName: string;
|
||||
gender: string;
|
||||
birthDate: string;
|
||||
birthPlace: string | null;
|
||||
officialId?: number;
|
||||
club: Club;
|
||||
email?: string;
|
||||
keycloakUserId?: string;
|
||||
active?: boolean;
|
||||
licenceFrom?: string;
|
||||
licenceTo?: string;
|
||||
disabledBecauseRanking?: boolean;
|
||||
disabledBecauseSimilarEntry?: boolean;
|
||||
rankingEntries?: RankingEntry[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user