Compare commits

4 Commits

Author SHA1 Message Date
cc2c4bc8d3 3.0.4 2025-05-06 13:33:58 +02:00
d1c1abaf65 3.0.3 2025-04-11 12:14:40 +02:00
41478c893e 3.0.2 2025-04-11 12:01:16 +02:00
233190f578 3.0.1 2025-04-11 11:55:47 +02:00
3 changed files with 6 additions and 6 deletions

View File

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

View File

@@ -1,7 +1,7 @@
export interface GenericUser {
firstName: string | null;
lastName: string | null;
emai: string | null;
firstName: string;
lastName: string;
email: string;
phone: string | null;
keycloakUserId: string | null;
keycloakUserId?: string | null;
}

View File

@@ -3,7 +3,7 @@ import { GenericUser } from "./generic-user";
export interface Official extends GenericUser {
id?: number;
/** @deprecated since 3.0.0. Use lastName and firstName instead */
name: string;
name?: string;
/** @deprecated Use referee and umpire booleans instead */
type?: number;
referee: boolean;