From d1c1abaf6595cb66e840a278265f313bf12d78ca Mon Sep 17 00:00:00 2001 From: Richard Toth Date: Fri, 11 Apr 2025 12:14:40 +0200 Subject: [PATCH] 3.0.3 --- package.json | 2 +- src/interfaces/generic-user.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f06c8e4..1e14382 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/interfaces/generic-user.ts b/src/interfaces/generic-user.ts index 24663ab..9d754c5 100644 --- a/src/interfaces/generic-user.ts +++ b/src/interfaces/generic-user.ts @@ -3,5 +3,5 @@ export interface GenericUser { lastName: string; email: string; phone: string | null; - keycloakUserId: string | null; + keycloakUserId?: string | null; }