/** * Shape returned when an active invitation already exists for this email. */ export type PersonInviteConflict = { detail: string; /** * Id of the pre-existing active invitation. */ invitation_id: number; person_id: string; platform_key: string; };