Datalayer VS Code Extension - v0.0.18
    Preparing search index...

    Interface AgentChatAuthState

    Authentication state pushed from the extension host.

    interface AgentChatAuthState {
        authenticated: boolean;
        user: { email: string; handle: string };
    }
    Index
    authenticated: boolean

    Whether the user is signed in.

    user: { email: string; handle: string }

    User details or null when not authenticated.