diff --git a/client/contexts/AuthContext.tsx b/client/contexts/AuthContext.tsx index e493f122..6b7a0316 100644 --- a/client/contexts/AuthContext.tsx +++ b/client/contexts/AuthContext.tsx @@ -17,6 +17,15 @@ import { checkProfileComplete, } from "@/lib/aethex-database-adapter"; +type SupportedOAuthProvider = "github" | "google"; + +interface LinkedProvider { + provider: SupportedOAuthProvider; + identityId?: string; + linkedAt?: string; + lastSignInAt?: string; +} + interface AuthContextType { user: User | null; profile: AethexUserProfile | null;