/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Shape returned by `POST /persons/merge/`. */ export type PersonMergeResponse = { /** * UUID of the surviving (primary) person. */ primary_id: string; /** * UUIDs of the persons marked inactive by this merge. */ merged_ids: Array; /** * Per-relation counts of related records (deals, activities, tags) re-parented onto the primary. */ reparented: Record; };