added interceptor and authService to manage log

This commit is contained in:
2026-03-24 19:08:34 +01:00
parent 491c57b061
commit ef2afb0b58
66 changed files with 1815 additions and 777 deletions
@@ -1,22 +1,22 @@
/**
* BeReadyBackend
*
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { GetUserStatsDto } from './get-user-stats-dto';
import {GetUserStatsDto} from './get-user-stats-dto';
export interface GetUserDetailsDto {
export interface GetUserDetailsDto {
id?: number;
firstName?: string | null;
name?: string | null;
username?: string | null;
email?: string | null;
designationId?: number;
designationId?: number | null;
creationDate?: string;
getUserStatsDto?: GetUserStatsDto | null;
}