Interface AuthRequest

interface AuthRequest {
    grant_type: "password" | "client" | "refresh";
    email?: string;
    password?: string;
    client_id?: string;
    client_secret?: string;
    refresh_token?: string;
}

Properties

grant_type: "password" | "client" | "refresh"
email?: string
password?: string
client_id?: string
client_secret?: string
refresh_token?: string