import type { UserLoginResponse } from './UserLoginResponse'; import type { UserWalletResponse } from './UserWalletResponse'; export type UserProfileResponse = { id: string; /** * Must be unique */ username?: string | null; /** * Display name/nick name, doesn't have to be unique */ displayName?: string | null; hasPassword: boolean; email?: string | null; emailVerified: boolean; registeredAt: string; wallets: Array; roles: Array; logins: Array; };