Triggered when one or more source contacts are merged into a target contact.
function onContactMerged(handler: function): void;
handler(event: ContactMergedEnvelope): void | Promise<void>
import { contacts } from "@wix/crm";
contacts.onContactMerged((event) => {
// handle your event here
});