/** * Update an existing visitor. */ export type UpdateVisitorRequest = { id: string; name?: string | undefined; custom_attributes?: Record | undefined; } | { user_id: string; name?: string | undefined; custom_attributes?: Record | undefined; };