Type Alias ValidatedIssuerMetadata

ValidatedIssuerMetadata: Partial<OidcMetadata> & Pick<OidcMetadata,
    | "issuer"
    | "authorization_endpoint"
    | "token_endpoint"
    | "registration_endpoint"
    | "revocation_endpoint"
    | "response_types_supported"
    | "grant_types_supported"
    | "code_challenge_methods_supported"
    | "device_authorization_endpoint"> & {
    account_management_actions_supported?: string[];
    account_management_uri?: string;
}

Metadata from OIDC authority discovery With validated properties required in type