Interface SigninRequestCreateArgs

interface SigninRequestCreateArgs {
    acr_values?: string;
    authority: string;
    client_id: string;
    client_secret?: string;
    disablePKCE?: boolean;
    display?: string;
    extraQueryParams?: Record<string, string | number | boolean>;
    extraTokenParams?: Record<string, unknown>;
    id_token_hint?: string;
    login_hint?: string;
    max_age?: number;
    nonce?: string;
    prompt?: string;
    redirect_uri: string;
    request?: string;
    request_type?: string;
    request_uri?: string;
    resource?: string | string[];
    response_mode?: "query" | "fragment";
    response_type: string;
    scope: string;
    skipUserInfo?: boolean;
    state_data?: unknown;
    ui_locales?: string;
    url: string;
    url_state?: string;
}

Properties

acr_values?: string
authority: string
client_id: string
client_secret?: string
disablePKCE?: boolean
display?: string
extraQueryParams?: Record<string, string | number | boolean>
extraTokenParams?: Record<string, unknown>
id_token_hint?: string
login_hint?: string
max_age?: number
nonce?: string
prompt?: string
redirect_uri: string
request?: string
request_type?: string
request_uri?: string
resource?: string | string[]
response_mode?: "query" | "fragment"
response_type: string
scope: string
skipUserInfo?: boolean
state_data?: unknown

custom "state", which can be used by a caller to have "data" round tripped

ui_locales?: string
url: string
url_state?: string

Generated using TypeDoc