From b972c1d387293bf5f43e724968cf00421ccc667c Mon Sep 17 00:00:00 2001 From: Laura Beatris <48022589+LauraBeatris@users.noreply.github.com> Date: Tue, 26 Mar 2024 16:45:23 -0300 Subject: [PATCH] Update nullable properties --- .../interfaces/authentication-event.interface.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/user-management/interfaces/authentication-event.interface.ts b/src/user-management/interfaces/authentication-event.interface.ts index 7885b6f4d..ed4b6ac25 100644 --- a/src/user-management/interfaces/authentication-event.interface.ts +++ b/src/user-management/interfaces/authentication-event.interface.ts @@ -22,9 +22,9 @@ export type AuthenticationEvent = { export interface AuthenticationEventResponse { type: AuthenticationEventType; - email?: string | null; + email: string | null; ip_address: string | null; user_agent: string | null; user_id: string | null; - error?: AuthenticationEventError; + error: AuthenticationEventError | null; }