From eeb0f6eac1e2c1d130657bfbf63401b538031610 Mon Sep 17 00:00:00 2001 From: LandaMm Date: Sat, 7 Jun 2025 00:13:29 +0200 Subject: [PATCH] feat: user profile verification fields --- web/src/types/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/src/types/index.ts b/web/src/types/index.ts index 086c8f9..0a14b82 100644 --- a/web/src/types/index.ts +++ b/web/src/types/index.ts @@ -2,6 +2,9 @@ export interface UserProfile { id: string; full_name: string; email: string; + email_verified: boolean; + avatar_verified: boolean; + verified: boolean; phone_number: string; is_admin: boolean; last_login: string;