export function getDefaultMetadataForUrl(authorizationServer: URL): IAuthorizationServerMetadata {
issuer: authorizationServer.toString(),
authorization_endpoint: new URL('/authorize', authorizationServer).toString(),
token_endpoint: new URL('/token', authorizationServer).toString(),
registration_endpoint: new URL('/register', authorizationServer).toString(),
// Default values for Dynamic OpenID Providers
// https://openid.net/specs/openid-connect-discovery-1_0.html
response_types_supported: ['code', 'id_token', 'id_token token'],
};
}
/**