import type { Person } from '../people/types' export type Organization = { id: string name: string | null document: string | null accountId: string createdAt: string updatedAt: string // relationships people?: Person[] } export type OrganizationRelationships = 'people' export type CreateOrganizationPayload = { name: string document?: string } export type UpdateOrganizationPayload = { name?: string document?: string | null }