window.addEventListener('message', function(e) { if (!e.data) return; // Воронка по action var actions = { 'screen_open_staff': 'yclients_open', 'master_selected': 'yclients_master', 'master_seance_selected': 'yclients_seance', 'screen_open_services': 'yclients_services', 'service_selected': 'yclients_service', 'open_contacts': 'yclients_contacts', 'send_contacts': 'yclients_send_contacts', 'booked': 'yclients_booked' }; if (e.data.action && actions[e.data.action]) { ym(4737235, 'reachGoal', actions[e.data.action]); } // Финальная конверсия if (e.data.type === 'record_created') { ym(4737235, 'reachGoal', 'yclients_record_created'); } });