mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
This PR will add a new event chatwoot:on-start-conversation to the chat widget, which you can listen to and trigger custom interactions on your end. Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
5 lines
234 B
JavaScript
5 lines
234 B
JavaScript
export const CHATWOOT_ERROR = 'chatwoot:error';
|
|
export const CHATWOOT_ON_MESSAGE = 'chatwoot:on-message';
|
|
export const CHATWOOT_ON_START_CONVERSATION = 'chatwoot:on-start-conversation';
|
|
export const CHATWOOT_READY = 'chatwoot:ready';
|