1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-13 23:48:55 +01:00
fab-manager/app/frontend/src/javascript/models/sso.ts

16 lines
458 B
TypeScript

export interface OpenIdConfiguration {
authorization_endpoint: string,
token_endpoint: string,
userinfo_endpoint: string,
jwks_uri: string,
registration_endpoint: string,
scopes_supported: string[],
response_types_supported: string[],
response_modes_supported: string[],
grant_types_supported: string[],
subject_types_supported: string[],
id_token_signing_alg_values_supported: string[],
code_challenge_methods_supported: string[]
}