tutti-api - v2.1.0
    Preparing search index...

    Interface AuthState

    Authenticated-account state. Empty for anonymous sessions (v1). This is the seam for future login: populate it and every subsequent request is authed.

    interface AuthState {
        accountId?: string;
        expiresAt?: number;
        refreshToken?: string;
        token: string;
    }
    Index

    Properties

    accountId?: string
    expiresAt?: number
    refreshToken?: string
    token: string