From cfbb3c9e047e8aa41210b8292fbde90522251890 Mon Sep 17 00:00:00 2001 From: stefano-lacorazza <112132737+stefano-lacorazza@users.noreply.github.com> Date: Fri, 23 Aug 2024 18:43:36 -0500 Subject: [PATCH] OV-5: + make token optional in UserSignInResponseDto --- .../src/bundles/users/types/user-sign-in-response-dto.type.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/src/bundles/users/types/user-sign-in-response-dto.type.ts b/shared/src/bundles/users/types/user-sign-in-response-dto.type.ts index c8cd55dcd..27acff435 100644 --- a/shared/src/bundles/users/types/user-sign-in-response-dto.type.ts +++ b/shared/src/bundles/users/types/user-sign-in-response-dto.type.ts @@ -1,7 +1,7 @@ type UserSignInResponseDto = { id: number; email: string; - token: string; + token?: string; }; export { type UserSignInResponseDto };