frontend/.pnpm-store/v3/files/bc/5ecb5ca23d80e4de2a71759006c3750e5b15a4c21acd25d649453e6ebed40c1e0f57838909fd57e0a25adea0f9d24bc24efc41cb17e4c451f10f8c16b48955

18 lines
363 B
Plaintext

export type User = {
uuid: string;
email: string;
phone?: string;
username: string;
firstname: string;
middlename?: string;
lastname: string;
password: string;
groups?: any;
enabled: boolean;
refreshTokenCount: number;
profilePic: string;
resetRequestedTimestamp?: string;
actions?: any;
id: number;
};