From 34905bdf4ba5597ea9368a1f9489dc90911a5c80 Mon Sep 17 00:00:00 2001 From: KnorpelSenf Date: Tue, 14 May 2024 15:17:05 +0200 Subject: [PATCH] doc: add missing updates to docs of API constants (#581) --- src/convenience/constants.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/convenience/constants.ts b/src/convenience/constants.ts index 6021fe4d..00a06025 100644 --- a/src/convenience/constants.ts +++ b/src/convenience/constants.ts @@ -31,7 +31,8 @@ const ALL_CHAT_PERMISSIONS = { export interface ApiConstants { /** * List of update types a bot receives by default. Useful if you want to - * receive all update types but `chat_member`. + * receive all update types but `chat_member`, `message_reaction`, and + * `message_reaction_count`. * * ```ts * // Built-in polling: @@ -52,8 +53,9 @@ export interface ApiConstants { * updates from the Bot API, rather than just those that are delivered by * default. * - * The main use case for this is when you want to receive `chat_member` - * updates, as they need to be enabled first. Use it like so: + * The main use case for this is when you want to receive `chat_member`, + * `message_reaction`, and `message_reaction_count` updates, as they need to + * be enabled first. Use it like so: * * ```ts * // Built-in polling: