@dypai-ai/client-sdk - v1.12.0
    Preparing search index...

    Interface AuthResponse

    interface AuthResponse {
        confirmationRequired?: boolean;
        expiresAt?: number;
        expiresIn?: number;
        refreshToken?: string;
        sessionToken?: string;
        token: string;
        user: User;
    }
    Index

    Properties

    confirmationRequired?: boolean

    true cuando el usuario fue creado pero necesita confirmar su email antes de poder iniciar sesión

    expiresAt?: number
    expiresIn?: number
    refreshToken?: string
    sessionToken?: string

    better-auth session token for auth operations (get-session, refresh)

    token: string

    JWT token for API calls (Authorization header)

    user: User