@obelisk/client
Version:
Typescript client to interact with Obelisk on a higher level than the regular ReST API calls.
22 lines (21 loc) • 677 B
TypeScript
/**
* @hidden
*/
export interface Uma2Config {
authorization_endpoint?: string;
end_session_endpoint?: string;
grant_types_supported?: string[];
issuer?: string;
jwks_uri?: string;
permission_endpoint?: string;
policy_endpoint?: string;
registration_endpoint?: string;
resource_registration_endpoint?: string;
response_modes_supported?: string[];
response_types_supported?: string[];
scopes_supported?: string[];
token_endpoint?: string;
token_endpoint_auth_methods_supported?: string[];
token_endpoint_auth_signing_alg_values_supported?: string[];
token_introspection_endpoint?: string;
}