This commit is contained in:
2025-04-11 12:14:40 +02:00
parent 41478c893e
commit d1c1abaf65
2 changed files with 2 additions and 2 deletions

View File

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

View File

@@ -3,5 +3,5 @@ export interface GenericUser {
lastName: string;
email: string;
phone: string | null;
keycloakUserId: string | null;
keycloakUserId?: string | null;
}