diff --git a/src/api/models/AuthenticationResponse.ts b/src/api/models/AuthenticationResponse.ts
index e9773225f1c1b7206a2339985029abcfe618971f..47169ae37b90b20523c9be17ff5da7c2b15bcd4a 100644
--- a/src/api/models/AuthenticationResponse.ts
+++ b/src/api/models/AuthenticationResponse.ts
@@ -3,6 +3,9 @@
 /* tslint:disable */
 /* eslint-disable */
 export type AuthenticationResponse = {
+    firstName?: string;
+    lastName?: string;
+    role?: string;
     token?: string;
 };