CommonAuthorizationUrlRequest type
Request object passed by user to retrieve a Code from the server (first leg of authorization code grant flow)
type CommonAuthorizationUrlRequest = BaseAuthRequest & {
account?: AccountInfo
codeChallenge?: string
codeChallengeMethod?: string
domainHint?: string
earJwk?: string
extraScopesToConsent?: string[]
loginHint?: string
nonce: string
platformBroker?: boolean
prompt?: string
redirectUri: string
responseMode: ResponseMode
sid?: string
state: string
}