/** * A user the caller can see, serialized from their UserPlatformLink. * * The entity is the user — `id` is the user's id; the link's own id is a * storage artifact and isn't surfaced. */ export type AccessibleUser = { readonly id: number; readonly username: string; readonly email: string; readonly name: string; };