orkestral / venom

Venom is a high-performance system developed with JavaScript to create a bot for WhatsApp, support for creating any interaction, such as customer service, media sending, sentence recognition based on artificial intelligence and all types of design architecture for WhatsApp.
https://orkestral.io
Apache License 2.0
6k stars 1.16k forks source link

Message edit and message delete notifications #2781

Closed ghayman closed 2 weeks ago

ghayman commented 1 month ago

WhatsApp users can edit and delete messages. Client apps should be able to subscribe to these events

Describe the solution you'd like Add the two following Events // Listen for messages that have been edited client.onMessageEdit(message => { ... })

// Listen for messages that have been deleted client.onMessageDelete(message => { ... })

Describe alternatives you've considered

Additional context

ghayman commented 1 month ago

I am currently implementing this enhancement