teletypes
Version:
Half-machine parsed types for the Telegram Bot API
630 lines (629 loc) • 91.3 kB
TypeScript
/** This file was automatically generated by https://github.com/teletypes/js */
import { TelegramTypes as T } from './types';
export namespace TelegramMethods {
/** Use this method to receive incoming updates using long polling (wiki). An Array of {@link T.Update|Update} objects is returned. */
type getUpdates = (a:{
/** 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 {@link getUpdates|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 JSON-serialized 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 {@link T.Update|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 getUpdates, so unwanted updates may be received for a short period of time. */
allowed_updates?: string
}) => T.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 {@link T.Update|Update}. In case of an unsuccessful request, we will 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. */
type setWebhook = (a:{
/** 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 for details. */
certificate?: T.InputFile,
/** 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 JSON-serialized 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 {@link T.Update|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?: string,
/** 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
}) => boolean;
/** Use this method to remove webhook integration if you decide to switch back to {@link getUpdates|getUpdates}. Returns True on success. */
type deleteWebhook = (a:{
/** Pass True to drop all pending updates */
drop_pending_updates?: boolean
}) => boolean;
/** Use this method to get current webhook status. Requires no parameters. On success, returns a {@link T.WebhookInfo|WebhookInfo} object. If the bot is using {@link getUpdates|getUpdates}, will return an object with the url field empty. */
type getWebhookInfo = () => T.WebhookInfo;
/** A simple method for testing your bot's authentication token. Requires no parameters. Returns basic information about the bot in form of a {@link T.User|User} object. */
type getMe = () => T.User;
/** 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. */
type logOut = () => boolean;
/** 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. */
type close = () => boolean;
/** Use this method to send text messages. On success, the sent {@link T.Message|Message} is returned. */
type sendMessage = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** Text of the message to be sent, 1-4096 characters after entities parsing */
text: string,
/** Mode for parsing entities in the message text. See for more details. */
parse_mode?: string,
/** A JSON-serialized list of special entities that appear in message text, which can be specified instead of parse_mode */
entities?: T.MessageEntity,
/** Disables link previews for links in this message */
disable_web_page_preview?: boolean,
/** Sends the message . 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,
/** If the message is a reply, ID of the original message */
reply_to_message_id?: number,
/** Pass True, if the message should be sent even if the specified replied-to message is not found */
allow_sending_without_reply?: boolean,
/** Additional interface options. A JSON-serialized object for an , , instructions to remove reply keyboard or to force a reply from the user. */
reply_markup?: T.InlineKeyboardMarkup | T.ReplyKeyboardMarkup | T.ReplyKeyboardRemove | T.ForceReply
}) => T.Message;
/** Use this method to forward messages of any kind. Service messages can't be forwarded. On success, the sent {@link T.Message|Message} is returned. */
type forwardMessage = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** Unique identifier for the chat where the original message was sent (or channel username in the format @channelusername) */
from_chat_id: number | string,
/** Sends the message . 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
}) => T.Message;
/** Use this method to copy messages of any kind. Service messages and invoice messages can't be copied. The method is analogous to the method {@link forwardMessage|forwardMessage}, but the copied message doesn't have a link to the original message. Returns the {@link T.MessageId|MessageId} of the sent message on success. */
type copyMessage = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** 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 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 for more details. */
parse_mode?: string,
/** A JSON-serialized list of special entities that appear in the new caption, which can be specified instead of parse_mode */
caption_entities?: T.MessageEntity,
/** Sends the message . 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,
/** If the message is a reply, ID of the original message */
reply_to_message_id?: number,
/** Pass True, if the message should be sent even if the specified replied-to message is not found */
allow_sending_without_reply?: boolean,
/** Additional interface options. A JSON-serialized object for an , , instructions to remove reply keyboard or to force a reply from the user. */
reply_markup?: T.InlineKeyboardMarkup | T.ReplyKeyboardMarkup | T.ReplyKeyboardRemove | T.ForceReply
}) => T.MessageId;
/** Use this method to send photos. On success, the sent {@link T.Message|Message} is returned. */
type sendPhoto = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** 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: T.InputFile | 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 for more details. */
parse_mode?: string,
/** A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode */
caption_entities?: T.MessageEntity,
/** Sends the message . 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,
/** If the message is a reply, ID of the original message */
reply_to_message_id?: number,
/** Pass True, if the message should be sent even if the specified replied-to message is not found */
allow_sending_without_reply?: boolean,
/** Additional interface options. A JSON-serialized object for an , , instructions to remove reply keyboard or to force a reply from the user. */
reply_markup?: T.InlineKeyboardMarkup | T.ReplyKeyboardMarkup | T.ReplyKeyboardRemove | T.ForceReply
}) => T.Message;
/** 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 {@link T.Message|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 {@link sendVoice|sendVoice} method instead. */
type sendAudio = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** 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: T.InputFile | string,
/** Audio caption, 0-1024 characters after entities parsing */
caption?: string,
/** Mode for parsing entities in the audio caption. See for more details. */
parse_mode?: string,
/** A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode */
caption_entities?: T.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. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. */
thumb?: T.InputFile | string,
/** Sends the message . 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,
/** If the message is a reply, ID of the original message */
reply_to_message_id?: number,
/** Pass True, if the message should be sent even if the specified replied-to message is not found */
allow_sending_without_reply?: boolean,
/** Additional interface options. A JSON-serialized object for an , , instructions to remove reply keyboard or to force a reply from the user. */
reply_markup?: T.InlineKeyboardMarkup | T.ReplyKeyboardMarkup | T.ReplyKeyboardRemove | T.ForceReply
}) => T.Message;
/** Use this method to send general files. On success, the sent {@link T.Message|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. */
type sendDocument = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** 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: T.InputFile | 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. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. */
thumb?: T.InputFile | string,
/** 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 for more details. */
parse_mode?: string,
/** A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode */
caption_entities?: T.MessageEntity,
/** Disables automatic server-side content type detection for files uploaded using multipart/form-data */
disable_content_type_detection?: boolean,
/** Sends the message . 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,
/** If the message is a reply, ID of the original message */
reply_to_message_id?: number,
/** Pass True, if the message should be sent even if the specified replied-to message is not found */
allow_sending_without_reply?: boolean,
/** Additional interface options. A JSON-serialized object for an , , instructions to remove reply keyboard or to force a reply from the user. */
reply_markup?: T.InlineKeyboardMarkup | T.ReplyKeyboardMarkup | T.ReplyKeyboardRemove | T.ForceReply
}) => T.Message;
/** Use this method to send video files, Telegram clients support MPEG4 videos (other formats may be sent as {@link T.Document|Document}). On success, the sent {@link T.Message|Message} is returned. Bots can currently send video files of up to 50 MB in size, this limit may be changed in the future. */
type sendVideo = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** 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: T.InputFile | 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. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. */
thumb?: T.InputFile | string,
/** 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 for more details. */
parse_mode?: string,
/** A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode */
caption_entities?: T.MessageEntity,
/** Pass True, if the uploaded video is suitable for streaming */
supports_streaming?: boolean,
/** Sends the message . 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,
/** If the message is a reply, ID of the original message */
reply_to_message_id?: number,
/** Pass True, if the message should be sent even if the specified replied-to message is not found */
allow_sending_without_reply?: boolean,
/** Additional interface options. A JSON-serialized object for an , , instructions to remove reply keyboard or to force a reply from the user. */
reply_markup?: T.InlineKeyboardMarkup | T.ReplyKeyboardMarkup | T.ReplyKeyboardRemove | T.ForceReply
}) => T.Message;
/** Use this method to send animation files (GIF or H.264/MPEG-4 AVC video without sound). On success, the sent {@link T.Message|Message} is returned. Bots can currently send animation files of up to 50 MB in size, this limit may be changed in the future. */
type sendAnimation = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** 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: T.InputFile | 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. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. */
thumb?: T.InputFile | string,
/** 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 for more details. */
parse_mode?: string,
/** A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode */
caption_entities?: T.MessageEntity,
/** Sends the message . 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,
/** If the message is a reply, ID of the original message */
reply_to_message_id?: number,
/** Pass True, if the message should be sent even if the specified replied-to message is not found */
allow_sending_without_reply?: boolean,
/** Additional interface options. A JSON-serialized object for an , , instructions to remove reply keyboard or to force a reply from the user. */
reply_markup?: T.InlineKeyboardMarkup | T.ReplyKeyboardMarkup | T.ReplyKeyboardRemove | T.ForceReply
}) => T.Message;
/** 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 (other formats may be sent as {@link T.Audio|Audio} or {@link T.Document|Document}). On success, the sent {@link T.Message|Message} is returned. Bots can currently send voice messages of up to 50 MB in size, this limit may be changed in the future. */
type sendVoice = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** 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: T.InputFile | string,
/** Voice message caption, 0-1024 characters after entities parsing */
caption?: string,
/** Mode for parsing entities in the voice message caption. See for more details. */
parse_mode?: string,
/** A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode */
caption_entities?: T.MessageEntity,
/** Duration of the voice message in seconds */
duration?: number,
/** Sends the message . 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,
/** If the message is a reply, ID of the original message */
reply_to_message_id?: number,
/** Pass True, if the message should be sent even if the specified replied-to message is not found */
allow_sending_without_reply?: boolean,
/** Additional interface options. A JSON-serialized object for an , , instructions to remove reply keyboard or to force a reply from the user. */
reply_markup?: T.InlineKeyboardMarkup | T.ReplyKeyboardMarkup | T.ReplyKeyboardRemove | T.ForceReply
}) => T.Message;
/** As of v.4.0, Telegram clients support rounded square MPEG4 videos of up to 1 minute long. Use this method to send video messages. On success, the sent {@link T.Message|Message} is returned. */
type sendVideoNote = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** 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: T.InputFile | 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. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. */
thumb?: T.InputFile | string,
/** Sends the message . 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,
/** If the message is a reply, ID of the original message */
reply_to_message_id?: number,
/** Pass True, if the message should be sent even if the specified replied-to message is not found */
allow_sending_without_reply?: boolean,
/** Additional interface options. A JSON-serialized object for an , , instructions to remove reply keyboard or to force a reply from the user. */
reply_markup?: T.InlineKeyboardMarkup | T.ReplyKeyboardMarkup | T.ReplyKeyboardRemove | T.ForceReply
}) => T.Message;
/** 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 {@link T.Message|Messages} that were sent is returned. */
type sendMediaGroup = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** A JSON-serialized array describing messages to be sent, must include 2-10 items */
media: Array<T.InputMediaAudio | T.InputMediaDocument | T.InputMediaPhoto | T.InputMediaVideo>,
/** Sends messages . 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,
/** If the messages are a reply, ID of the original message */
reply_to_message_id?: number,
/** Pass True, if the message should be sent even if the specified replied-to message is not found */
allow_sending_without_reply?: boolean
}) => T.Message;
/** Use this method to send point on the map. On success, the sent {@link T.Message|Message} is returned. */
type sendLocation = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** 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 for which the location will be updated (see , should be between 60 and 86400. */
live_period?: number,
/** For live locations, a direction in which the user is moving, in degrees. Must be between 1 and 360 if specified. */
heading?: number,
/** For live locations, a maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified. */
proximity_alert_radius?: number,
/** Sends the message . 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,
/** If the message is a reply, ID of the original message */
reply_to_message_id?: number,
/** Pass True, if the message should be sent even if the specified replied-to message is not found */
allow_sending_without_reply?: boolean,
/** Additional interface options. A JSON-serialized object for an , , instructions to remove reply keyboard or to force a reply from the user. */
reply_markup?: T.InlineKeyboardMarkup | T.ReplyKeyboardMarkup | T.ReplyKeyboardRemove | T.ForceReply
}) => T.Message;
/** Use this method to edit live location messages. A location can be edited until its live_period expires or editing is explicitly disabled by a call to {@link stopMessageLiveLocation|stopMessageLiveLocation}. On success, if the edited message is not an inline message, the edited {@link T.Message|Message} is returned, otherwise True is returned. */
type editMessageLiveLocation = (a:{
/** Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id?: number | string,
/** Required if inline_message_id is not specified. Identifier of the message to edit */
message_id?: number,
/** Required if chat_id and message_id are not specified. Identifier of the inline message */
inline_message_id?: string,
/** Latitude of new location */
latitude: number,
/** Longitude of new location */
longitude: number,
/** The radius of uncertainty for the location, measured in meters; 0-1500 */
horizontal_accuracy?: number,
/** Direction in which the user is moving, in degrees. Must be between 1 and 360 if specified. */
heading?: number,
/** The maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified. */
proximity_alert_radius?: number,
/** A JSON-serialized object for a new . */
reply_markup?: T.InlineKeyboardMarkup
}) => boolean | T.Message;
/** Use this method to stop updating a live location message before live_period expires. On success, if the message is not an inline message, the edited {@link T.Message|Message} is returned, otherwise True is returned. */
type stopMessageLiveLocation = (a:{
/** Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id?: number | string,
/** Required if inline_message_id is not specified. Identifier of the message with live location to stop */
message_id?: number,
/** Required if chat_id and message_id are not specified. Identifier of the inline message */
inline_message_id?: string,
/** A JSON-serialized object for a new . */
reply_markup?: T.InlineKeyboardMarkup
}) => boolean | T.Message;
/** Use this method to send information about a venue. On success, the sent {@link T.Message|Message} is returned. */
type sendVenue = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** 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 .) */
google_place_type?: string,
/** Sends the message . 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,
/** If the message is a reply, ID of the original message */
reply_to_message_id?: number,
/** Pass True, if the message should be sent even if the specified replied-to message is not found */
allow_sending_without_reply?: boolean,
/** Additional interface options. A JSON-serialized object for an , , instructions to remove reply keyboard or to force a reply from the user. */
reply_markup?: T.InlineKeyboardMarkup | T.ReplyKeyboardMarkup | T.ReplyKeyboardRemove | T.ForceReply
}) => T.Message;
/** Use this method to send phone contacts. On success, the sent {@link T.Message|Message} is returned. */
type sendContact = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** 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 , 0-2048 bytes */
vcard?: string,
/** Sends the message . 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,
/** If the message is a reply, ID of the original message */
reply_to_message_id?: number,
/** Pass True, if the message should be sent even if the specified replied-to message is not found */
allow_sending_without_reply?: boolean,
/** Additional interface options. A JSON-serialized object for an , , instructions to remove keyboard or to force a reply from the user. */
reply_markup?: T.InlineKeyboardMarkup | T.ReplyKeyboardMarkup | T.ReplyKeyboardRemove | T.ForceReply
}) => T.Message;
/** Use this method to send a native poll. On success, the sent {@link T.Message|Message} is returned. */
type sendPoll = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** Poll question, 1-300 characters */
question: string,
/** A JSON-serialized list of answer options, 2-10 strings 1-100 characters each */
options: string,
/** True, if the poll needs to be anonymous, defaults to True */
is_anonymous?: boolean,
/** Poll type, “quiz” or “regular”, defaults to “regular” */
type?: string,
/** True, if the poll allows multiple answers, ignored for polls in quiz mode, defaults to False */
allows_multiple_answers?: boolean,
/** 0-based identifier of the correct answer option, required for polls in quiz mode */
correct_option_id?: number,
/** Text that is shown when a user chooses an incorrect answer or taps on the lamp icon in a quiz-style poll, 0-200 characters with at most 2 line feeds after entities parsing */
explanation?: string,
/** Mode for parsing entities in the explanation. See for more details. */
explanation_parse_mode?: string,
/** A JSON-serialized list of special entities that appear in the poll explanation, which can be specified instead of parse_mode */
explanation_entities?: T.MessageEntity,
/** Amount of time in seconds the poll will be active after creation, 5-600. Can't be used together with close_date. */
open_period?: number,
/** Point in time (Unix timestamp) when the poll will be automatically closed. Must be at least 5 and no more than 600 seconds in the future. Can't be used together with open_period. */
close_date?: number,
/** Pass True, if the poll needs to be immediately closed. This can be useful for poll preview. */
is_closed?: boolean,
/** Sends the message . 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,
/** If the message is a reply, ID of the original message */
reply_to_message_id?: number,
/** Pass True, if the message should be sent even if the specified replied-to message is not found */
allow_sending_without_reply?: boolean,
/** Additional interface options. A JSON-serialized object for an , , instructions to remove reply keyboard or to force a reply from the user. */
reply_markup?: T.InlineKeyboardMarkup | T.ReplyKeyboardMarkup | T.ReplyKeyboardRemove | T.ForceReply
}) => T.Message;
/** Use this method to send an animated emoji that will display a random value. On success, the sent {@link T.Message|Message} is returned. */
type sendDice = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** Emoji on which the dice throw animation is based. Currently, must be one of “”, “”, “”, “”, “”, or “”. Dice can have values 1-6 for ���”, “” and “”, values 1-5 for “” and “”, and values 1-64 for “”. Defaults to “” */
emoji?: string,
/** Sends the message . Users will receive a notification with no sound. */
disable_notification?: boolean,
/** Protects the contents of the sent message from forwarding */
protect_content?: boolean,
/** If the message is a reply, ID of the original message */
reply_to_message_id?: number,
/** Pass True, if the message should be sent even if the specified replied-to message is not found */
allow_sending_without_reply?: boolean,
/** Additional interface options. A JSON-serialized object for an , , instructions to remove reply keyboard or to force a reply from the user. */
reply_markup?: T.InlineKeyboardMarkup | T.ReplyKeyboardMarkup | T.ReplyKeyboardRemove | T.ForceReply
}) => T.Message;
/** Use this method when you need to tell the user that something is happening on the bot's side. The status is set for 5 seconds or less (when a message arrives from your bot, Telegram clients clear its typing status). Returns True on success.
Example: The ImageBot needs some time to process a request and upload the image. Instead of sending a text message along the lines of “Retrieving image, please wait…”, the bot may use sendChatAction with action = upload_photo. The user will see a “sending photo” status for the bot.
We only recommend using this method when a response from the bot will take a noticeable amount of time to arrive. */
type sendChatAction = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** Type of action to broadcast. Choose one, depending on what the user is about to receive: typing for {@link sendMessage|text}, upload_photo for {@link sendPhoto|photos}, record_video or upload_video for {@link sendVideo|videos}, record_voice or upload_voice for {@link sendVoice|voice}, upload_document for {@link sendDocument|general}, choose_sticker for {@link sendSticker|stickers}, find_location for {@link sendLocation|location}, record_video_note or upload_video_note for {@link sendVideoNote|video}. */
action: string
}) => boolean;
/** Use this method to get a list of profile pictures for a user. Returns a {@link T.UserProfilePhotos|UserProfilePhotos} object. */
type getUserProfilePhotos = (a:{
/** Unique identifier of the target user */
user_id: number,
/** Sequential number of the first photo to be returned. By default, all photos are returned. */
offset?: number,
/** Limits the number of photos to be retrieved. Values between 1-100 are accepted. Defaults to 100. */
limit?: number
}) => T.UserProfilePhotos;
/** Use this method to get basic information about a file and prepare it for downloading. For the moment, bots can download files of up to 20MB in size. On success, a {@link T.File|File} object is returned. The file can then be downloaded via the link https://api.telegram.org/file/bot<token>/<file_path>, where <file_path> is taken from the response. It is guaranteed that the link will be valid for at least 1 hour. When the link expires, a new one can be requested by calling {@link getFile|getFile} again. */
type getFile = (a:{
/** File identifier to get information about */
file_id: string
}) => T.File;
/** Use this method to ban a user in a group, a supergroup or a channel. In the case of supergroups and channels, the user will not be able to return to the chat on their own using invite links, etc., unless {@link unbanChatMember|unbanned} first. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success. */
type banChatMember = (a:{
/** Unique identifier for the target group or username of the target supergroup or channel (in the format @channelusername) */
chat_id: number | string,
/** Unique identifier of the target user */
user_id: number,
/** Date when the user will be unbanned, unix time. If user is banned for more than 366 days or less than 30 seconds from the current time they are considered to be banned forever. Applied for supergroups and channels only. */
until_date?: number,
/** Pass True to delete all messages from the chat for the user that is being removed. If False, the user will be able to see messages in the group that were sent before the user was removed. Always True for supergroups and channels. */
revoke_messages?: boolean
}) => boolean;
/** Use this method to unban a previously banned user in a supergroup or channel. The user will not return to the group or channel automatically, but will be able to join via link, etc. The bot must be an administrator for this to work. By default, this method guarantees that after the call the user is not a member of the chat, but will be able to join it. So if the user is a member of the chat they will also be removed from the chat. If you don't want this, use the parameter only_if_banned. Returns True on success. */
type unbanChatMember = (a:{
/** Unique identifier for the target group or username of the target supergroup or channel (in the format @channelusername) */
chat_id: number | string,
/** Unique identifier of the target user */
user_id: number,
/** Do nothing if the user is not banned */
only_if_banned?: boolean
}) => boolean;
/** Use this method to restrict a user in a supergroup. The bot must be an administrator in the supergroup for this to work and must have the appropriate administrator rights. Pass True for all permissions to lift restrictions from a user. Returns True on success. */
type restrictChatMember = (a:{
/** Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */
chat_id: number | string,
/** Unique identifier of the target user */
user_id: number,
/** A JSON-serialized object for new user permissions */
permissions: T.ChatPermissions,
/** Date when restrictions will be lifted for the user, unix time. If user is restricted for more than 366 days or less than 30 seconds from the current time, they are considered to be restricted forever */
until_date?: number
}) => boolean;
/** Use this method to promote or demote a user in a supergroup or a channel. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Pass False for all boolean parameters to demote a user. Returns True on success. */
type promoteChatMember = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** Unique identifier of the target user */
user_id: number,
/** Pass True, if the administrator's presence in the chat is hidden */
is_anonymous?: boolean,
/** Pass True, if the administrator can access the chat event log, chat statistics, message statistics in channels, see channel members, see anonymous administrators in supergroups and ignore slow mode. Implied by any other administrator privilege */
can_manage_chat?: boolean,
/** Pass True, if the administrator can create channel posts, channels only */
can_post_messages?: boolean,
/** Pass True, if the administrator can edit messages of other users and can pin messages, channels only */
can_edit_messages?: boolean,
/** Pass True, if the administrator can delete messages of other users */
can_delete_messages?: boolean,
/** Pass True, if the administrator can manage video chats */
can_manage_video_chats?: boolean,
/** Pass True, if the administrator can restrict, ban or unban chat members */
can_restrict_members?: boolean,
/** Pass True, if the administrator can add new administrators with a subset of their own privileges or demote administrators that he has promoted, directly or indirectly (promoted by administrators that were appointed by him) */
can_promote_members?: boolean,
/** Pass True, if the administrator can change chat title, photo and other settings */
can_change_info?: boolean,
/** Pass True, if the administrator can invite new users to the chat */
can_invite_users?: boolean,
/** Pass True, if the administrator can pin messages, supergroups only */
can_pin_messages?: boolean
}) => boolean;
/** Use this method to set a custom title for an administrator in a supergroup promoted by the bot. Returns True on success. */
type setChatAdministratorCustomTitle = (a:{
/** Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */
chat_id: number | string,
/** Unique identifier of the target user */
user_id: number,
/** New custom title for the administrator; 0-16 characters, emoji are not allowed */
custom_title: string
}) => boolean;
/** Use this method to ban a channel chat in a supergroup or a channel. Until the chat is {@link unbanChatSenderChat|unbanned}, the owner of the banned chat won't be able to send messages on behalf of any of their channels. The bot must be an administrator in the supergroup or channel for this to work and must have the appropriate administrator rights. Returns True on success. */
type banChatSenderChat = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** Unique identifier of the target sender chat */
sender_chat_id: number
}) => boolean;
/** Use this method to unban a previously banned channel chat in a supergroup or channel. The bot must be an administrator for this to work and must have the appropriate administrator rights. Returns True on success. */
type unbanChatSenderChat = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** Unique identifier of the target sender chat */
sender_chat_id: number
}) => boolean;
/** Use this method to set default chat permissions for all members. The bot must be an administrator in the group or a supergroup for this to work and must have the can_restrict_members administrator rights. Returns True on success. */
type setChatPermissions = (a:{
/** Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */
chat_id: number | string,
/** A JSON-serialized object for new default chat permissions */
permissions: T.ChatPermissions
}) => boolean;
/** Use this method to generate a new primary invite link for a chat; any previously generated primary link is revoked. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns the new invite link as String on success. */
type exportChatInviteLink = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string
}) => string;
/** Use this method to create an additional invite link for a chat. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. The link can be revoked using the method {@link revokeChatInviteLink|revokeChatInviteLink}. Returns the new invite link as {@link T.ChatInviteLink|ChatInviteLink} object. */
type createChatInviteLink = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** Invite link name; 0-32 characters */
name?: string,
/** Point in time (Unix timestamp) when the link will expire */
expire_date?: number,
/** The maximum number of users that can be members of the chat simultaneously after joining the chat via this invite link; 1-99999 */
member_limit?: number,
/** True, if users joining the chat via the link need to be approved by chat administrators. If True, member_limit can't be specified */
creates_join_request?: boolean
}) => T.ChatInviteLink;
/** Use this method to edit a non-primary invite link created by the bot. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns the edited invite link as a {@link T.ChatInviteLink|ChatInviteLink} object. */
type editChatInviteLink = (a:{
/** Unique identifier for the target chat or username of the target channel (in the format @channelusername) */
chat_id: number | string,
/** The invite link to edit */
invite_link: string,
/** Invite link name; 0-32 characters */
name?: string,
/** Point in time (Unix timestamp) when the link will expire */
expire_date?: number,
/** The maximum number of users that can be members of the chat simultaneously after joining the chat via this invite link; 1-99999 */
member_limit?: number,
/** True, if users joining the chat via the link need to be approved by chat administrators. If True, member_limit can't be specified */
creates_join_request?: boolean
}) => T.ChatInviteLink;
/** Use this method to revoke an invite link created by the bot. If the primary link is revoked, a