UNPKG

@keycloakify/keycloak-admin-ui

Version:

<p align="center"> <img src="https://github.com/user-attachments/assets/a6aaebbd-8f59-474d-9827-c282f4527aca"> </p> <p align="center"> <i>Repackaged Keycloak Admin UI</i> <br> <br> <a href="https://github.com/keycloakify/keycloak-adm

24 lines (18 loc) 832 B
/* eslint-disable */ // @ts-nocheck import AuthenticationFlowRepresentation from "@keycloak/keycloak-admin-client/lib/defs/authenticationFlowRepresentation"; import RealmRepresentation from "@keycloak/keycloak-admin-client/lib/defs/realmRepresentation"; type UsedBy = "SPECIFIC_CLIENTS" | "SPECIFIC_PROVIDERS" | "DEFAULT"; export type AuthenticationType = AuthenticationFlowRepresentation & { usedBy?: { type?: UsedBy; values: string[] }; realm: RealmRepresentation; }; export const REALM_FLOWS = new Map<string, string>([ ["browserFlow", "browser"], ["registrationFlow", "registration"], ["directGrantFlow", "direct grant"], ["resetCredentialsFlow", "reset credentials"], ["clientAuthenticationFlow", "clients"], ["dockerAuthenticationFlow", "docker auth"], ["firstBrokerLoginFlow", "firstBrokerLogin"], ]);