export interface AuthenticateParams { userId: string; accessToken?: string; } export interface User { isActive: boolean; userId: string; metaData: Record; nickname: string; profileUrl: string; }