From d52f2883cfac56a8b62ed539aaa3ff4774192200 Mon Sep 17 00:00:00 2001 From: link2xt Date: Mon, 24 Jul 2023 18:40:32 +0000 Subject: [PATCH] feat(deltachat-rpc-client): add MSG_DELETED constant --- deltachat-rpc-client/src/deltachat_rpc_client/const.py | 1 + 1 file changed, 1 insertion(+) diff --git a/deltachat-rpc-client/src/deltachat_rpc_client/const.py b/deltachat-rpc-client/src/deltachat_rpc_client/const.py index 3ca606617..c17ca8637 100644 --- a/deltachat-rpc-client/src/deltachat_rpc_client/const.py +++ b/deltachat-rpc-client/src/deltachat_rpc_client/const.py @@ -45,6 +45,7 @@ class EventType(str, Enum): MSG_DELIVERED = "MsgDelivered" MSG_FAILED = "MsgFailed" MSG_READ = "MsgRead" + MSG_DELETED = "MsgDeleted" CHAT_MODIFIED = "ChatModified" CHAT_EPHEMERAL_TIMER_MODIFIED = "ChatEphemeralTimerModified" CONTACTS_CHANGED = "ContactsChanged"