UNPKG

@telegraf/types

Version:

Type declarations for the Telegram API

598 lines (591 loc) 171 kB
import type { InlineQueryResult, InlineQueryResultsButton } from "./inline.js"; import type { ForceReply, InlineKeyboardMarkup, ReplyKeyboardMarkup, ReplyKeyboardRemove } from "./markup.js"; import type { AcceptedGiftTypes, BotCommand, BusinessConnection, ChatAdministratorRights, ChatFullInfo, ChatInviteLink, ChatMember, ChatMemberAdministrator, ChatMemberOwner, ChatPermissions, File, ForumTopic, Gifts, OwnedGifts, ReactionType, StarAmount, StoryArea, UserChatBoosts, UserFromGetMe, UserProfilePhotos, WebhookInfo } from "./manage.js"; import type { GameHighScore, LinkPreviewOptions, MaskPosition, Message, MessageEntity, MessageId, ParseMode, Poll, PreparedInlineMessage, ReplyParameters, SentWebAppMessage, Sticker, StickerSet, Story } from "./message.js"; import type { PassportElementError } from "./passport.js"; import type { LabeledPrice, ShippingOption, StarTransactions } from "./payment.js"; import type { BotCommandScope, BotDescription, BotName, BotShortDescription, MenuButton } from "./settings.js"; import type { Update } from "./update.js"; import { InputPollOption } from "./message.js"; /** Extracts the parameters of a given method name */ type Params<F, M extends keyof ApiMethods<F>> = Parameters<ApiMethods<F>[M]>; /** Utility type providing the argument type for the given method name or `{}` if the method does not take any parameters */ export type Opts<F> = { [M in keyof ApiMethods<F>]: Params<F, M>[0] extends undefined ? {} : NonNullable<Params<F, M>[0]>; }; export type Ret<F> = { [M in keyof ApiMethods<F>]: ReturnType<ApiMethods<F>[M]>; }; type UnionKeys<T> = T extends T ? keyof T : never; /** Wrapper type to bundle all methods of the Telegram Bot API */ export type ApiMethods<F> = { /** Use this method to receive incoming updates using long polling (wiki). Returns an Array of Update objects. Notes 1. This method will not work if an outgoing webhook is set up. 2. In order to avoid getting duplicate updates, recalculate offset after each server response. */ getUpdates(args?: { /** Identifier of the first update to be returned. Must be greater by one than the highest among the identifiers of previously received updates. By default, updates starting with the earliest unconfirmed update are returned. An update is considered confirmed as soon as getUpdates is called with an offset higher than its update_id. The negative offset can be specified to retrieve updates starting from -offset update from the end of the updates queue. All previous updates will forgotten. */ offset?: number; /** Limits the number of updates to be retrieved. Values between 1-100 are accepted. Defaults to 100. */ limit?: number; /** Timeout in seconds for long polling. Defaults to 0, i.e. usual short polling. Should be positive, short polling should be used for testing purposes only. */ timeout?: number; /** A list of the update types you want your bot to receive. For example, specify ["message", "edited_channel_post", "callback_query"] to only receive updates of these types. See Update for a complete list of available update types. Specify an empty list to receive all update types except chat_member, message_reaction, and message_reaction_count (default). If not specified, the previous setting will be used. Please note that this parameter doesn't affect updates created before the call to getUpdates, so unwanted updates may be received for a short period of time. */ allowed_updates?: ReadonlyArray<Exclude<UnionKeys<Update>, "update_id">>; }): Update[]; /** Use this method to specify a URL and receive incoming updates via an outgoing webhook. Whenever there is an update for the bot, we will send an HTTPS POST request to the specified URL, containing a JSON-serialized Update. In case of an unsuccessful request (a request with response HTTP status code different from 2XY), we will repeat the request and give up after a reasonable amount of attempts. Returns True on success. If you'd like to make sure that the webhook was set by you, you can specify secret data in the parameter secret_token. If specified, the request will contain a header “X-Telegram-Bot-Api-Secret-Token” with the secret token as content. Notes 1. You will not be able to receive updates using getUpdates for as long as an outgoing webhook is set up. 2. To use a self-signed certificate, you need to upload your public key certificate using certificate parameter. Please upload as InputFile, sending a String will not work. 3. Ports currently supported for Webhooks: 443, 80, 88, 8443. If you're having any trouble setting up webhooks, please check out this amazing guide to webhooks. */ setWebhook(args: { /** HTTPS URL to send updates to. Use an empty string to remove webhook integration */ url: string; /** Upload your public key certificate so that the root certificate in use can be checked. See our self-signed guide for details. */ certificate?: F; /** The fixed IP address which will be used to send webhook requests instead of the IP address resolved through DNS */ ip_address?: string; /** The maximum allowed number of simultaneous HTTPS connections to the webhook for update delivery, 1-100. Defaults to 40. Use lower values to limit the load on your bot's server, and higher values to increase your bot's throughput. */ max_connections?: number; /** A list of the update types you want your bot to receive. For example, specify [“message”, “edited_channel_post”, “callback_query”] to only receive updates of these types. See Update for a complete list of available update types. Specify an empty list to receive all update types except chat_member (default). If not specified, the previous setting will be used. Please note that this parameter doesn't affect updates created before the call to the setWebhook, so unwanted updates may be received for a short period of time. */ allowed_updates?: ReadonlyArray<Exclude<UnionKeys<Update>, "update_id">>; /** Pass True to drop all pending updates */ drop_pending_updates?: boolean; /** A secret token to be sent in a header “X-Telegram-Bot-Api-Secret-Token” in every webhook request, 1-256 characters. Only characters A-Z, a-z, 0-9, _ and - are allowed. The header is useful to ensure that the request comes from a webhook set by you. */ secret_token?: string; }): true; /** Use this method to remove webhook integration if you decide to switch back to getUpdates. Returns True on success. */ deleteWebhook(args?: { /** Pass True to drop all pending updates */ drop_pending_updates?: boolean; }): true; /** Use this method to get current webhook status. Requires no parameters. On success, returns a WebhookInfo object. If the bot is using getUpdates, will return an object with the url field empty. */ getWebhookInfo(): WebhookInfo; /** A simple method for testing your bot's authentication token. Requires no parameters. Returns basic information about the bot in form of a User object. */ getMe(): UserFromGetMe; /** Use this method to log out from the cloud Bot API server before launching the bot locally. You must log out the bot before running it locally, otherwise there is no guarantee that the bot will receive updates. After a successful call, you can immediately log in on a local server, but will not be able to log in back to the cloud Bot API server for 10 minutes. Returns True on success. Requires no parameters. */ logOut(): true; /** Use this method to close the bot instance before moving it from one local server to another. You need to delete the webhook before calling this method to ensure that the bot isn't launched again after server restart. The method will return error 429 in the first 10 minutes after the bot is launched. Returns True on success. Requires no parameters. */ close(): true; /** Use this method to send text messages. On success, the sent Message is returned. */ sendMessage(args: { /** Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** Text of the message to be sent, 1-4096 characters after entities parsing */ text: string; /** Mode for parsing entities in the message text. See formatting options for more details. */ parse_mode?: ParseMode; /** A list of special entities that appear in message text, which can be specified instead of parse_mode */ entities?: MessageEntity[]; /** Link preview generation options for the message */ link_preview_options?: LinkPreviewOptions; /** Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance */ allow_paid_broadcast?: boolean; /** Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** Description of the message to reply to */ reply_parameters?: ReplyParameters; /** Additional interface options. A object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply; }): Message.TextMessage & Message.BusinessSentMessage; /** Use this method to forward messages of any kind. Service messages can't be forwarded. On success, the sent Message is returned. */ forwardMessage(args: { /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** Unique identifier for the chat where the original message was sent (or channel username in the format `@channelusername`) */ from_chat_id: number | string; /** New start timestamp for the forwarded video in the message */ video_start_timestamp?: number; /** Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the forwarded message from forwarding and saving */ protect_content?: boolean; /** Message identifier in the chat specified in from_chat_id */ message_id: number; }): Message & Message.BusinessSentMessage; /** Use this method to forward multiple messages of any kind. If some of the specified messages can't be found or forwarded, they are skipped. Service messages and messages with protected content can't be forwarded. Album grouping is kept for forwarded messages. On success, an array of MessageId of the sent messages is returned. */ forwardMessages(args: { /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** Unique identifier for the chat where the original messages were sent (or channel username in the format `@channelusername`) */ from_chat_id: number | string; /** A list of 1-100 identifiers of messages in the chat from_chat_id to forward. The identifiers must be specified in a strictly increasing order. */ message_ids: number[]; /** Sends the messages silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the forwarded messages from forwarding and saving */ protect_content?: boolean; }): MessageId[]; /** Use this method to copy messages of any kind. Service messages, paid media messages, giveaway messages, giveaway winners messages, and invoice messages can't be copied. A quiz poll can be copied only if the value of the field correct_option_id is known to the bot. The method is analogous to the method forwardMessage, but the copied message doesn't have a link to the original message. Returns the MessageId of the sent message on success. */ copyMessage(args: { /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** Unique identifier for the chat where the original message was sent (or channel username in the format `@channelusername`) */ from_chat_id: number | string; /** Message identifier in the chat specified in from_chat_id */ message_id: number; /** New start timestamp for the copied video in the message */ video_start_timestamp?: number; /** New caption for media, 0-1024 characters after entities parsing. If not specified, the original caption is kept */ caption?: string; /** Mode for parsing entities in the new caption. See formatting options for more details. */ parse_mode?: string; /** A list of special entities that appear in the new caption, which can be specified instead of parse_mode */ caption_entities?: MessageEntity[]; /** Pass True, if the caption must be shown above the message media. Ignored if a new caption isn't specified. */ show_caption_above_media?: boolean; /** Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance */ allow_paid_broadcast?: boolean; /** Description of the message to reply to */ reply_parameters?: ReplyParameters; /** Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply; }): MessageId; /** Use this method to copy messages of any kind. If some of the specified messages can't be found or copied, they are skipped. Service messages, paid media messages, giveaway messages, giveaway winners messages, and invoice messages can't be copied. A quiz poll can be copied only if the value of the field correct_option_id is known to the bot. The method is analogous to the method forwardMessages, but the copied messages don't have a link to the original message. Album grouping is kept for copied messages. On success, an array of MessageId of the sent messages is returned. */ copyMessages(args: { /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** Unique identifier for the chat where the original messages were sent (or channel username in the format `@channelusername`) */ from_chat_id: number | string; /** A list of 1-100 identifiers of messages in the chat from_chat_id to copy. The identifiers must be specified in a strictly increasing order. */ message_ids: number[]; /** Sends the messages silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the sent messages from forwarding and saving */ protect_content?: boolean; /** Pass True to copy the messages without their captions */ remove_caption?: boolean; }): MessageId[]; /** Use this method to send photos. On success, the sent Message is returned. */ sendPhoto(args: { /** Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** Photo to send. Pass a file_id as String to send a photo that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a photo from the Internet, or upload a new photo using multipart/form-data. The photo must be at most 10 MB in size. The photo's width and height must not exceed 10000 in total. Width and height ratio must be at most 20. */ photo: F | string; /** Photo caption (may also be used when resending photos by file_id), 0-1024 characters after entities parsing */ caption?: string; /** Mode for parsing entities in the photo caption. See formatting options for more details. */ parse_mode?: ParseMode; /** A list of special entities that appear in the caption, which can be specified instead of parse_mode */ caption_entities?: MessageEntity[]; /** Pass True, if the caption must be shown above the message media */ show_caption_above_media?: boolean; /** Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance */ allow_paid_broadcast?: boolean; /** Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** Description of the message to reply to */ reply_parameters?: ReplyParameters; /** Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply; }): Message.PhotoMessage & Message.BusinessSentMessage; /** Use this method to send audio files, if you want Telegram clients to display them in the music player. Your audio must be in the .MP3 or .M4A format. On success, the sent Message is returned. Bots can currently send audio files of up to 50 MB in size, this limit may be changed in the future. For sending voice messages, use the sendVoice method instead. */ sendAudio(args: { /** Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** Audio file to send. Pass a file_id as String to send an audio file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get an audio file from the Internet, or upload a new one using multipart/form-data. */ audio: F | string; /** Audio caption, 0-1024 characters after entities parsing */ caption?: string; /** Mode for parsing entities in the audio caption. See formatting options for more details. */ parse_mode?: ParseMode; /** A list of special entities that appear in the caption, which can be specified instead of parse_mode */ caption_entities?: MessageEntity[]; /** Duration of the audio in seconds */ duration?: number; /** Performer */ performer?: string; /** Track name */ title?: string; /** Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Thumbnails can't be reused and can be only uploaded as a new file. Use Telegraf's [Input helpers](https://telegraf.js.org/modules/Input.html) to upload a new thumbnail. */ thumbnail?: F; /** Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance */ allow_paid_broadcast?: boolean; /** Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** Description of the message to reply to */ reply_parameters?: ReplyParameters; /** Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply; }): Message.AudioMessage & Message.BusinessSentMessage; /** Use this method to send general files. On success, the sent Message is returned. Bots can currently send files of any type of up to 50 MB in size, this limit may be changed in the future. */ sendDocument(args: { /** Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** File to send. Pass a file_id as String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. */ document: F | string; /** Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Thumbnails can't be reused and can be only uploaded as a new file. Use Telegraf's [Input helpers](https://telegraf.js.org/modules/Input.html) to upload a new thumbnail. */ thumbnail?: F; /** Document caption (may also be used when resending documents by file_id), 0-1024 characters after entities parsing */ caption?: string; /** Mode for parsing entities in the document caption. See formatting options for more details. */ parse_mode?: ParseMode; /** A list of special entities that appear in the caption, which can be specified instead of parse_mode */ caption_entities?: MessageEntity[]; /** Disables automatic server-side content type detection for files uploaded using multipart/form-data. Always true, if the document is sent as part of an album. */ disable_content_type_detection?: boolean; /** Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance */ allow_paid_broadcast?: boolean; /** Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** Description of the message to reply to */ reply_parameters?: ReplyParameters; /** Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply; }): Message.DocumentMessage & Message.BusinessSentMessage; /** Use this method to send video files, Telegram clients support MPEG4 videos (other formats may be sent as Document). On success, the sent Message is returned. Bots can currently send video files of up to 50 MB in size, this limit may be changed in the future. */ sendVideo(args: { /** Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** Video to send. Pass a file_id as String to send a video that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a video from the Internet, or upload a new video using multipart/form-data. */ video: F | string; /** Duration of sent video in seconds */ duration?: number; /** Video width */ width?: number; /** Video height */ height?: number; /** Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Thumbnails can't be reused and can be only uploaded as a new file. Use Telegraf's [Input helpers](https://telegraf.js.org/modules/Input.html) to upload a new thumbnail. */ thumbnail?: F; /** Cover for the video in the message. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or use Telegraf's [Input helpers](https://telegraf.js.org/modules/Input.html) to upload a new one. */ cover?: F | string; /** Start timestamp for the video in the message */ start_timestamp?: number; /** Video caption (may also be used when resending videos by file_id), 0-1024 characters after entities parsing */ caption?: string; /** Mode for parsing entities in the video caption. See formatting options for more details. */ parse_mode?: ParseMode; /** A list of special entities that appear in the caption, which can be specified instead of parse_mode */ caption_entities?: MessageEntity[]; /** Pass True, if the caption must be shown above the message media */ show_caption_above_media?: boolean; /** Pass True if the video needs to be covered with a spoiler animation */ has_spoiler?: boolean; /** Pass True if the uploaded video is suitable for streaming */ supports_streaming?: boolean; /** Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance */ allow_paid_broadcast?: boolean; /** Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** Description of the message to reply to */ reply_parameters?: ReplyParameters; /** Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply; }): Message.VideoMessage & Message.BusinessSentMessage; /** Use this method to send animation files (GIF or H.264/MPEG-4 AVC video without sound). On success, the sent Message is returned. Bots can currently send animation files of up to 50 MB in size, this limit may be changed in the future. */ sendAnimation(args: { /** Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** Animation to send. Pass a file_id as String to send an animation that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get an animation from the Internet, or upload a new animation using multipart/form-data. */ animation: F | string; /** Duration of sent animation in seconds */ duration?: number; /** Animation width */ width?: number; /** Animation height */ height?: number; /** Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Thumbnails can't be reused and can be only uploaded as a new file. Use Telegraf's [Input helpers](https://telegraf.js.org/modules/Input.html) to upload a new thumbnail. */ thumbnail?: F; /** Animation caption (may also be used when resending animation by file_id), 0-1024 characters after entities parsing */ caption?: string; /** Mode for parsing entities in the animation caption. See formatting options for more details. */ parse_mode?: ParseMode; /** A list of special entities that appear in the caption, which can be specified instead of parse_mode */ caption_entities?: MessageEntity[]; /** Pass True, if the caption must be shown above the message media */ show_caption_above_media?: boolean; /** Pass True if the animation needs to be covered with a spoiler animation */ has_spoiler?: boolean; /** Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance */ allow_paid_broadcast?: boolean; /** Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** Description of the message to reply to */ reply_parameters?: ReplyParameters; /** Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply; }): Message.AnimationMessage & Message.BusinessSentMessage; /** Use this method to send audio files, if you want Telegram clients to display the file as a playable voice message. For this to work, your audio must be in an .OGG file encoded with OPUS, or in .MP3 format, or in .M4A format (other formats may be sent as Audio or Document). On success, the sent Message is returned. Bots can currently send voice messages of up to 50 MB in size, this limit may be changed in the future. */ sendVoice(args: { /** Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** Audio file to send. Pass a file_id as String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. */ voice: F | string; /** Voice message caption, 0-1024 characters after entities parsing */ caption?: string; /** Mode for parsing entities in the voice message caption. See formatting options for more details. */ parse_mode?: ParseMode; /** A list of special entities that appear in the caption, which can be specified instead of parse_mode */ caption_entities?: MessageEntity[]; /** Duration of the voice message in seconds */ duration?: number; /** Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance */ allow_paid_broadcast?: boolean; /** Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** Description of the message to reply to */ reply_parameters?: ReplyParameters; /** Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply; }): Message.VoiceMessage & Message.BusinessSentMessage; /** Use this method to send video messages. On success, the sent Message is returned. As of v.4.0, Telegram clients support rounded square MPEG4 videos of up to 1 minute long. */ sendVideoNote(args: { /** Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** Video note to send. Pass a file_id as String to send a video note that exists on the Telegram servers (recommended) or upload a new video using multipart/form-data.. Sending video notes by a URL is currently unsupported */ video_note: F | string; /** Duration of sent video in seconds */ duration?: number; /** Video width and height, i.e. diameter of the video message */ length?: number; /** Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Thumbnails can't be reused and can be only uploaded as a new file. Use Telegraf's [Input helpers](https://telegraf.js.org/modules/Input.html) to upload a new thumbnail. */ thumbnail?: F; /** Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance */ allow_paid_broadcast?: boolean; /** Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** Description of the message to reply to */ reply_parameters?: ReplyParameters; /** Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply; }): Message.VideoNoteMessage & Message.BusinessSentMessage; /** Use this method to send paid media. On success, the sent Message is returned. */ sendPaidMedia(args: { /** Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`). If the chat is a channel, all Telegram Star proceeds from this media will be credited to the chat's balance. Otherwise, they will be credited to the bot's balance. */ chat_id: number | string; /** The number of Telegram Stars that must be paid to buy access to the media; 1-10000 */ star_count: number; /** An array describing the media to be sent; up to 10 items */ media: InputPaidMedia<F>[]; /** Bot-defined paid media payload, 0-128 bytes. This will not be displayed to the user, use it for your internal processes. */ payload?: string; /** Media caption, 0-1024 characters after entities parsing */ caption?: string; /** Mode for parsing entities in the media caption. See formatting options for more details. */ parse_mode?: ParseMode; /** A list of special entities that appear in the caption, which can be specified instead of parse_mode */ caption_entities?: MessageEntity[]; /** Pass True, if the caption must be shown above the message media */ show_caption_above_media?: boolean; /** Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance */ allow_paid_broadcast?: boolean; /** Description of the message to reply to */ reply_parameters?: ReplyParameters; /** Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply; }): Message.PaidMediaMessage & Message.BusinessSentMessage; /** Use this method to send a group of photos, videos, documents or audios as an album. Documents and audio files can be only grouped in an album with messages of the same type. On success, an array of Messages that were sent is returned. */ sendMediaGroup(args: { /** Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** An array describing messages to be sent, must include 2-10 items */ media: ReadonlyArray<InputMediaAudio<F> | InputMediaDocument<F> | InputMediaPhoto<F> | InputMediaVideo<F>>; /** Sends the messages silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the sent messages from forwarding and saving */ protect_content?: boolean; /** Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance */ allow_paid_broadcast?: boolean; /** Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** Description of the message to reply to */ reply_parameters?: ReplyParameters; }): Array<(Message.AudioMessage | Message.DocumentMessage | Message.PhotoMessage | Message.VideoMessage) & Message.BusinessSentMessage>; /** Use this method to send point on the map. On success, the sent Message is returned. */ sendLocation(args: { /** Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** Latitude of the location */ latitude: number; /** Longitude of the location */ longitude: number; /** The radius of uncertainty for the location, measured in meters; 0-1500 */ horizontal_accuracy?: number; /** Period in seconds during which the location will be updated (see Live Locations, should be between 60 and 86400, or 0x7FFFFFFF for live locations that can be edited indefinitely. */ live_period?: number; /** The direction in which user is moving, in degrees; 1-360. For active live locations only. */ heading?: number; /** The maximum distance for proximity alerts about approaching another chat member, in meters. For sent live locations only. */ proximity_alert_radius?: number; /** Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance */ allow_paid_broadcast?: boolean; /** Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** Description of the message to reply to */ reply_parameters?: ReplyParameters; /** Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply; }): Message.LocationMessage & Message.BusinessSentMessage; /** Use this method to send information about a venue. On success, the sent Message is returned. */ sendVenue(args: { /** Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** Latitude of the venue */ latitude: number; /** Longitude of the venue */ longitude: number; /** Name of the venue */ title: string; /** Address of the venue */ address: string; /** Foursquare identifier of the venue */ foursquare_id?: string; /** Foursquare type of the venue, if known. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.) */ foursquare_type?: string; /** Google Places identifier of the venue */ google_place_id?: string; /** Google Places type of the venue. (See supported types.) */ google_place_type?: string; /** Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance */ allow_paid_broadcast?: boolean; /** Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** Description of the message to reply to */ reply_parameters?: ReplyParameters; /** Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply; }): Message.VenueMessage & Message.BusinessSentMessage; /** Use this method to send phone contacts. On success, the sent Message is returned. */ sendContact(args: { /** Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** Contact's phone number */ phone_number: string; /** Contact's first name */ first_name: string; /** Contact's last name */ last_name?: string; /** Additional data about the contact in the form of a vCard, 0-2048 bytes */ vcard?: string; /** Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance */ allow_paid_broadcast?: boolean; /** Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** Description of the message to reply to */ reply_parameters?: ReplyParameters; /** Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: InlineKeyboardMarkup | ReplyKeyboardMarkup | ReplyKeyboardRemove | ForceReply; }): Message.ContactMessage & Message.BusinessSentMessage; /** Use this method to send a native poll. On success, the sent Message is returned. */ sendPoll(args: { /** Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** Unique identifier for the target chat or username of the target channel (in the format `@channelusername`) */ chat_id: number | string; /** Unique identifier for the targe