Just wondering if anyone has played around with using a Typebot as a Chatwoot Dashboard application? It passes data via a window event, but I'm not sure how best to get it and if we can really do much with it, given Typebot doesn't allow us to set a variable when execute on client is checked. Any thoughts on this?
window.addEventListener("message", function (event) {
if (!isJSONValid(event.data)) {
return;
}
const eventData = JSON.parse(event.data);
});