this.gui
    Preparing search index...

    Type Alias SeedSessionContextValue

    type SeedSessionContextValue = {
        authenticated: boolean;
        error: Error | null;
        identityHash: string | null;
        me: MeLike | null;
        openedAt: number | null;
        pending: boolean;
        runtime: RuntimeAdapter | null;
        semanticNamespace: string | null;
        session: SeedSession | null;
        status: SeedSessionStatus;
        transportOrigin: string;
        activateSession(session: SeedSession | null): SeedSession | null;
        claim(namespace: string): Promise<MonadClaimResult>;
        claimAndOpen(namespace: string): Promise<MonadOpenResult>;
        clearError(): void;
        loginWithCredentials(
            input: SeedCredentialsLoginInput,
        ): Promise<SeedSession>;
        loginWithSeed(input: SeedSessionLoginInput): Promise<SeedSession>;
        logout(): void;
        open(namespace?: string | null): Promise<MonadOpenResult>;
        read<TValue = unknown>(path: string): TValue | undefined;
        sync(): Promise<MonadOpenResult>;
        write<TValue = unknown>(
            expression: string,
            value: TValue,
            options?: SeedSessionWriteOptions<TValue>,
        ): Promise<MonadWriteResult>;
    }
    Index

    Properties

    authenticated: boolean
    error: Error | null
    identityHash: string | null
    me: MeLike | null
    openedAt: number | null
    pending: boolean
    runtime: RuntimeAdapter | null
    semanticNamespace: string | null
    session: SeedSession | null
    transportOrigin: string

    Methods