@qtsurfer/api-client
    Preparing search index...

    Type Alias AuthTokenError

    Error envelope returned by POST /auth/token when the API key is rejected.

    type AuthTokenError = {
        code: "invalid_apikey" | "apikey_revoked" | "apikey_expired";
        message: string;
    }
    Index
    code: "invalid_apikey" | "apikey_revoked" | "apikey_expired"

    Machine-readable error reason.

    message: string

    Human-readable description of the failure.