Triggered when a contact is updated.
function onContactUpdated(handler: function): void;
handler(event: ContactUpdatedEnvelope): void | Promise<void>
import { contacts } from "@wix/crm";
contacts.onContactUpdated((event) => {
// handle your event here
});