I'm using the SDK for your web messaging/messenger to build a custom UI and I'm trying to listen for the onTypingReceived event but it doesn't seem to get fired. I know this activity is actually happening because I can see the message in the messages list for the websocket and in your UI, I can see the "..." appear, but no event is fired by the SDK. Maybe the docs have the wrong name?
I've added the following code to a simple HTML page with the embed code for my widget. The messageReceived event fires and I get a console log for it, but the onTypingReceived does not.
Genesys("subscribe", "MessagingService.messagesReceived", (event) => {
console.log('[custom] MessagingService.messagesReceived', event);
});
Genesys("subscribe", "MessagingService.onTypingReceived", (event) => {
console.log('[custom] MessagingService.onTypingReceived', event);
});