AuthorizationUrlRequest type
Request object passed by user to retrieve a Code from the server (first leg of authorization code grant flow)
type AuthorizationUrlRequest = Partial<
Omit<
CommonAuthorizationUrlRequest,
| "scopes"
| "redirectUri"
| "resourceRequestMethod"
| "resourceRequestUri"
| "authenticationScheme"
| "storeInCache"
>
> & { redirectUri: string; scopes: string[] }