From 464ffd23b4149fa05e5463d085569eb76faac44c Mon Sep 17 00:00:00 2001 From: Rafael Garcia Date: Sun, 14 May 2023 13:55:37 -0500 Subject: [PATCH] update README.md, added the events to the Handling Events section --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c0047f7..a5a8821 100644 --- a/README.md +++ b/README.md @@ -240,6 +240,8 @@ export type BaileysEventMap = { 'chats.update': Partial[] /** delete chats with given ID */ 'chats.delete': string[] + 'labels.association': LabelAssociation + 'labels.edit': Label /** presence of contact in a chat updated */ 'presence.update': { id: string, presences: { [participant: string]: PresenceData } }