@slickteam/nestjs-keycloak
Version:
Module for Keycloak with Nestjs
21 lines (20 loc) • 395 B
TypeScript
export interface IKeycloakUser {
exp: number;
iat: number;
auth_time: number;
iss: string;
sub: string;
aud: string;
typ: string;
realm_access: {
roles: string[];
};
sid: string;
scope: string;
email_verified: boolean;
email: string;
name: string;
given_name: string;
family_name: string;
preferred_username: string;
}