This commit is contained in:
2025-04-11 12:01:16 +02:00
parent e1397d781c
commit df4ab60ee0
2 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@mtlsz/common",
"version": "3.0.1",
"version": "3.0.2",
"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;
email: string | null;
firstName: string;
lastName: string;
email: string;
phone: string | null;
keycloakUserId: string | null;
}