2023-09-01 11:12:30 +00:00
|
|
|
export interface IUser {
|
2023-09-01 15:08:53 +00:00
|
|
|
avatar: string;
|
|
|
|
cover_image: string | null;
|
|
|
|
created_at: Date;
|
|
|
|
created_location: string;
|
|
|
|
date_joined: Date;
|
|
|
|
email: string;
|
|
|
|
display_name: string;
|
2023-09-01 11:12:30 +00:00
|
|
|
first_name: string;
|
2023-09-01 15:08:53 +00:00
|
|
|
id: string;
|
|
|
|
is_email_verified: boolean;
|
|
|
|
is_onboarded: boolean;
|
|
|
|
is_tour_completed: boolean;
|
|
|
|
last_location: string;
|
|
|
|
last_login: Date;
|
|
|
|
last_name: string;
|
|
|
|
mobile_number: string;
|
|
|
|
role: string;
|
2023-12-06 11:12:57 +00:00
|
|
|
is_password_autoset: boolean;
|
|
|
|
onboarding_step: {
|
|
|
|
workspace_join?: boolean;
|
|
|
|
profile_complete?: boolean;
|
|
|
|
workspace_create?: boolean;
|
|
|
|
workspace_invite?: boolean;
|
|
|
|
};
|
2023-09-01 15:08:53 +00:00
|
|
|
token: string;
|
|
|
|
updated_at: Date;
|
|
|
|
username: string;
|
|
|
|
user_timezone: string;
|
2023-09-01 11:12:30 +00:00
|
|
|
}
|