From 6a7433c67cb1f2b1d196e5eed7da3963fbfd6588 Mon Sep 17 00:00:00 2001 From: astra Date: Sun, 4 Jun 2023 20:53:18 +0000 Subject: [PATCH] Update to v1.8.0 --- Makefile | 2 +- client/function.go | 1198 ++--------------- client/type.go | 2938 +++++++++-------------------------------- client/unmarshaler.go | 1150 ++++------------ data/td_api.json | 2593 ++++++++---------------------------- data/td_api.tl | 902 ++++--------- 6 files changed, 1771 insertions(+), 7012 deletions(-) diff --git a/Makefile b/Makefile index 4cedd91..8d6428e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -TAG := 8517026415e75a8eec567774072cbbbbb52376c1 +TAG := v1.8.0 schema-update: curl https://raw.githubusercontent.com/tdlib/td/${TAG}/td/generate/scheme/td_api.tl 2>/dev/null > ./data/td_api.tl diff --git a/client/function.go b/client/function.go index 01d6d02..927f3da 100755 --- a/client/function.go +++ b/client/function.go @@ -525,7 +525,7 @@ type SetPasswordRequest struct { NewPassword string `json:"new_password"` // New password hint; may be empty NewHint string `json:"new_hint"` - // Pass true to change also the recovery email address + // Pass true if the recovery email address must be changed SetRecoveryEmailAddress bool `json:"set_recovery_email_address"` // New recovery email address; may be empty NewRecoveryEmailAddress string `json:"new_recovery_email_address"` @@ -1094,7 +1094,7 @@ type GetMessageLocallyRequest struct { MessageId int64 `json:"message_id"` } -// Returns information about a message, if it is available without sending network request. This is an offline request +// Returns information about a message, if it is available locally without sending network request. This is an offline request func (client *Client) GetMessageLocally(req *GetMessageLocallyRequest) (*Message, error) { result, err := client.Send(Request{ meta: meta{ @@ -1872,7 +1872,7 @@ type GetChatHistoryRequest struct { Offset int32 `json:"offset"` // The maximum number of messages to be returned; must be positive and can't be greater than 100. If the offset is negative, the limit must be greater than or equal to -offset. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit Limit int32 `json:"limit"` - // Pass true to get only messages that are available without sending network requests + // If true, returns only messages that are available locally without sending network requests OnlyLocal bool `json:"only_local"` } @@ -1942,7 +1942,7 @@ func (client *Client) GetMessageThreadHistory(req *GetMessageThreadHistoryReques type DeleteChatHistoryRequest struct { // Chat identifier ChatId int64 `json:"chat_id"` - // Pass true to remove the chat from all chat lists + // Pass true if the chat needs to be removed from the chat list RemoveFromChatList bool `json:"remove_from_chat_list"` // Pass true to delete chat history for all users Revoke bool `json:"revoke"` @@ -1976,7 +1976,7 @@ type DeleteChatRequest struct { ChatId int64 `json:"chat_id"` } -// Deletes a chat along with all messages in the corresponding chat for all chat members. For group chats this will release the username and remove all members. Use the field chat.can_be_deleted_for_all_users to find whether the method can be applied to the chat +// Deletes a chat along with all messages in the corresponding chat for all chat members; requires owner privileges. For group chats this will release the username and remove all members. Chats with more than 1000 members can't be deleted using this method func (client *Client) DeleteChat(req *DeleteChatRequest) (*Ok, error) { result, err := client.Send(Request{ meta: meta{ @@ -2057,7 +2057,7 @@ type SearchMessagesRequest struct { OffsetMessageId int64 `json:"offset_message_id"` // The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit Limit int32 `json:"limit"` - // Additional filter for messages to search; pass null to search for all messages. Filters searchMessagesFilterMention, searchMessagesFilterUnreadMention, searchMessagesFilterUnreadReaction, searchMessagesFilterFailedToSend, and searchMessagesFilterPinned are unsupported in this function + // Additional filter for messages to search; pass null to search for all messages. Filters searchMessagesFilterMention, searchMessagesFilterUnreadMention, searchMessagesFilterFailedToSend and searchMessagesFilterPinned are unsupported in this function Filter SearchMessagesFilter `json:"filter"` // If not 0, the minimum date of the messages to return MinDate int32 `json:"min_date"` @@ -2099,7 +2099,7 @@ type SearchSecretMessagesRequest struct { ChatId int64 `json:"chat_id"` // Query to search for. If empty, searchChatMessages must be used instead Query string `json:"query"` - // Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results + // Offset of the first entry to return as received from the previous request; use empty string to get first chunk of results Offset string `json:"offset"` // The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit Limit int32 `json:"limit"` @@ -2137,7 +2137,7 @@ type SearchCallMessagesRequest struct { FromMessageId int64 `json:"from_message_id"` // The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit Limit int32 `json:"limit"` - // Pass true to search only for messages with missed/declined calls + // If true, returns only messages with missed/declined calls OnlyMissed bool `json:"only_missed"` } @@ -2164,35 +2164,6 @@ func (client *Client) SearchCallMessages(req *SearchCallMessagesRequest) (*Messa return UnmarshalMessages(result.Data) } -type SearchOutgoingDocumentMessagesRequest struct { - // Query to search for in document file name and message caption - Query string `json:"query"` - // The maximum number of messages to be returned; up to 100 - Limit int32 `json:"limit"` -} - -// Searches for outgoing messages with content of the type messageDocument in all chats except secret chats. Returns the results in reverse chronological order -func (client *Client) SearchOutgoingDocumentMessages(req *SearchOutgoingDocumentMessagesRequest) (*FoundMessages, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchOutgoingDocumentMessages", - }, - Data: map[string]interface{}{ - "query": req.Query, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalFoundMessages(result.Data) -} - type DeleteAllCallMessagesRequest struct { // Pass true to delete the messages for all users Revoke bool `json:"revoke"` @@ -2299,7 +2270,7 @@ func (client *Client) GetChatMessageByDate(req *GetChatMessageByDateRequest) (*M type GetChatSparseMessagePositionsRequest struct { // Identifier of the chat in which to return information about message positions ChatId int64 `json:"chat_id"` - // Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention, searchMessagesFilterUnreadMention, and searchMessagesFilterUnreadReaction are unsupported in this function + // Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention and searchMessagesFilterUnreadMention are unsupported in this function Filter SearchMessagesFilter `json:"filter"` // The message identifier from which to return information about message positions FromMessageId int64 `json:"from_message_id"` @@ -2334,7 +2305,7 @@ func (client *Client) GetChatSparseMessagePositions(req *GetChatSparseMessagePos type GetChatMessageCalendarRequest struct { // Identifier of the chat in which to return information about messages ChatId int64 `json:"chat_id"` - // Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention, searchMessagesFilterUnreadMention, and searchMessagesFilterUnreadReaction are unsupported in this function + // Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention and searchMessagesFilterUnreadMention are unsupported in this function Filter SearchMessagesFilter `json:"filter"` // The message identifier from which to return information about messages; use 0 to get results from the last message FromMessageId int64 `json:"from_message_id"` @@ -2368,7 +2339,7 @@ type GetChatMessageCountRequest struct { ChatId int64 `json:"chat_id"` // Filter for message content; searchMessagesFilterEmpty is unsupported in this function Filter SearchMessagesFilter `json:"filter"` - // Pass true to get the number of messages without sending network requests, or -1 if the number of messages is unknown locally + // If true, returns count that is available locally without sending network requests, returning -1 if the number of messages is unknown ReturnLocal bool `json:"return_local"` } @@ -2426,7 +2397,7 @@ type GetMessagePublicForwardsRequest struct { ChatId int64 `json:"chat_id"` // Message identifier MessageId int64 `json:"message_id"` - // Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results + // Offset of the first entry to return as received from the previous request; use empty string to get first chunk of results Offset string `json:"offset"` // The maximum number of messages to be returned; must be positive and can't be greater than 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit Limit int32 `json:"limit"` @@ -2636,38 +2607,6 @@ func (client *Client) GetMessageLinkInfo(req *GetMessageLinkInfoRequest) (*Messa return UnmarshalMessageLinkInfo(result.Data) } -type TranslateTextRequest struct { - // Text to translate - Text string `json:"text"` - // A two-letter ISO 639-1 language code of the language from which the message is translated. If empty, the language will be detected automatically - FromLanguageCode string `json:"from_language_code"` - // A two-letter ISO 639-1 language code of the language to which the message is translated - ToLanguageCode string `json:"to_language_code"` -} - -// Translates a text to the given language. Returns a 404 error if the translation can't be performed -func (client *Client) TranslateText(req *TranslateTextRequest) (*Text, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "translateText", - }, - Data: map[string]interface{}{ - "text": req.Text, - "from_language_code": req.FromLanguageCode, - "to_language_code": req.ToLanguageCode, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalText(result.Data) -} - type GetChatAvailableMessageSendersRequest struct { // Chat identifier ChatId int64 `json:"chat_id"` @@ -2728,7 +2667,7 @@ type SendMessageRequest struct { ChatId int64 `json:"chat_id"` // If not 0, a message thread identifier in which the message will be sent MessageThreadId int64 `json:"message_thread_id"` - // Identifier of the replied message; 0 if none + // Identifier of the message to reply to or 0 ReplyToMessageId int64 `json:"reply_to_message_id"` // Options to be used to send the message; pass null to use default options Options *MessageSendOptions `json:"options"` @@ -2769,14 +2708,12 @@ type SendMessageAlbumRequest struct { ChatId int64 `json:"chat_id"` // If not 0, a message thread identifier in which the messages will be sent MessageThreadId int64 `json:"message_thread_id"` - // Identifier of a replied message; 0 if none + // Identifier of a message to reply to or 0 ReplyToMessageId int64 `json:"reply_to_message_id"` // Options to be used to send the messages; pass null to use default options Options *MessageSendOptions `json:"options"` // Contents of messages to be sent. At most 10 messages can be added to an album InputMessageContents []InputMessageContent `json:"input_message_contents"` - // Pass true to get fake messages instead of actually sending them - OnlyPreview bool `json:"only_preview"` } // Sends 2-10 messages grouped together into an album. Currently, only audio, document, photo and video messages can be grouped into an album. Documents and audio files can be only grouped in an album with messages of the same type. Returns sent messages @@ -2791,7 +2728,6 @@ func (client *Client) SendMessageAlbum(req *SendMessageAlbumRequest) (*Messages, "reply_to_message_id": req.ReplyToMessageId, "options": req.Options, "input_message_contents": req.InputMessageContents, - "only_preview": req.OnlyPreview, }, }) if err != nil { @@ -2842,7 +2778,7 @@ type SendInlineQueryResultMessageRequest struct { ChatId int64 `json:"chat_id"` // If not 0, a message thread identifier in which the message will be sent MessageThreadId int64 `json:"message_thread_id"` - // Identifier of a replied message; 0 if none + // Identifier of a message to reply to or 0 ReplyToMessageId int64 `json:"reply_to_message_id"` // Options to be used to send the message; pass null to use default options Options *MessageSendOptions `json:"options"` @@ -2850,7 +2786,7 @@ type SendInlineQueryResultMessageRequest struct { QueryId JsonInt64 `json:"query_id"` // Identifier of the inline result ResultId string `json:"result_id"` - // Pass true to hide the bot, via which the message is sent. Can be used only for bots GetOption("animation_search_bot_username"), GetOption("photo_search_bot_username"), and GetOption("venue_search_bot_username") + // If true, there will be no mention of a bot, via which the message is sent. Can be used only for bots GetOption("animation_search_bot_username"), GetOption("photo_search_bot_username") and GetOption("venue_search_bot_username") HideViaBot bool `json:"hide_via_bot"` } @@ -2890,11 +2826,11 @@ type ForwardMessagesRequest struct { MessageIds []int64 `json:"message_ids"` // Options to be used to send the messages; pass null to use default options Options *MessageSendOptions `json:"options"` - // Pass true to copy content of the messages without reference to the original sender. Always true if the messages are forwarded to a secret chat or are local + // If true, content of the messages will be copied without reference to the original sender. Always true if the messages are forwarded to a secret chat or are local SendCopy bool `json:"send_copy"` - // Pass true to remove media captions of message copies. Ignored if send_copy is false + // If true, media caption of message copies will be removed. Ignored if send_copy is false RemoveCaption bool `json:"remove_caption"` - // Pass true to get fake messages instead of actually forwarding them + // If true, messages will not be forwarded and instead fake messages will be returned OnlyPreview bool `json:"only_preview"` } @@ -2985,7 +2921,7 @@ type AddLocalMessageRequest struct { ChatId int64 `json:"chat_id"` // Identifier of the sender of the message SenderId MessageSender `json:"sender_id"` - // Identifier of the replied message; 0 if none + // Identifier of the message to reply to or 0 ReplyToMessageId int64 `json:"reply_to_message_id"` // Pass true to disable notification for the message DisableNotification bool `json:"disable_notification"` @@ -3487,108 +3423,6 @@ func (client *Client) EditMessageSchedulingState(req *EditMessageSchedulingState return UnmarshalOk(result.Data) } -type GetMessageAvailableReactionsRequest struct { - // Identifier of the chat to which the message belongs - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` -} - -// Returns reactions, which can be added to a message. The list can change after updateReactions, updateChatAvailableReactions for the chat, or updateMessageInteractionInfo for the message -func (client *Client) GetMessageAvailableReactions(req *GetMessageAvailableReactionsRequest) (*AvailableReactions, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessageAvailableReactions", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalAvailableReactions(result.Data) -} - -type SetMessageReactionRequest struct { - // Identifier of the chat to which the message belongs - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` - // Text representation of the new chosen reaction. Can be an empty string or the currently chosen non-big reaction to remove the reaction - Reaction string `json:"reaction"` - // Pass true if the reaction is added with a big animation - IsBig bool `json:"is_big"` -} - -// Changes chosen reaction for a message -func (client *Client) SetMessageReaction(req *SetMessageReactionRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setMessageReaction", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "reaction": req.Reaction, - "is_big": req.IsBig, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalOk(result.Data) -} - -type GetMessageAddedReactionsRequest struct { - // Identifier of the chat to which the message belongs - ChatId int64 `json:"chat_id"` - // Identifier of the message - MessageId int64 `json:"message_id"` - // If non-empty, only added reactions with the specified text representation will be returned - Reaction string `json:"reaction"` - // Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results - Offset string `json:"offset"` - // The maximum number of reactions to be returned; must be positive and can't be greater than 100 - Limit int32 `json:"limit"` -} - -// Returns reactions added for a message, along with their sender -func (client *Client) GetMessageAddedReactions(req *GetMessageAddedReactionsRequest) (*AddedReactions, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMessageAddedReactions", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "message_id": req.MessageId, - "reaction": req.Reaction, - "offset": req.Offset, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalAddedReactions(result.Data) -} - type GetTextEntitiesRequest struct { // The text in which to look for entites Text string `json:"text"` @@ -3622,7 +3456,7 @@ type ParseTextEntitiesRequest struct { ParseMode TextParseMode `json:"parse_mode"` } -// Parses Bold, Italic, Underline, Strikethrough, Spoiler, Code, Pre, PreCode, TextUrl and MentionName entities contained in the text. Can be called synchronously +// Parses Bold, Italic, Underline, Strikethrough, Code, Pre, PreCode, TextUrl and MentionName entities contained in the text. Can be called synchronously func (client *Client) ParseTextEntities(req *ParseTextEntitiesRequest) (*FormattedText, error) { result, err := client.jsonClient.Execute(Request{ meta: meta{ @@ -3645,7 +3479,7 @@ func (client *Client) ParseTextEntities(req *ParseTextEntitiesRequest) (*Formatt } type ParseMarkdownRequest struct { - // The text to parse. For example, "__italic__ ~~strikethrough~~ ||spoiler|| **bold** `code` ```pre``` __[italic__ text_url](telegram.org) __italic**bold italic__bold**" + // The text to parse. For example, "__italic__ ~~strikethrough~~ **bold** `code` ```pre``` __[italic__ text_url](telegram.org) __italic**bold italic__bold**" Text *FormattedText `json:"text"` } @@ -3894,32 +3728,6 @@ func (client *Client) GetJsonString(req *GetJsonStringRequest) (*Text, error) { return UnmarshalText(result.Data) } -type GetThemeParametersJsonStringRequest struct { - // Theme parameters to convert to JSON - Theme *ThemeParameters `json:"theme"` -} - -// Converts a themeParameters object to corresponding JSON-serialized string. Can be called synchronously -func (client *Client) GetThemeParametersJsonString(req *GetThemeParametersJsonStringRequest) (*Text, error) { - result, err := client.jsonClient.Execute(Request{ - meta: meta{ - Type: "getThemeParametersJsonString", - }, - Data: map[string]interface{}{ - "theme": req.Theme, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalText(result.Data) -} - type SetPollAnswerRequest struct { // Identifier of the chat to which the poll belongs ChatId int64 `json:"chat_id"` @@ -4096,7 +3904,7 @@ type GetLoginUrlRequest struct { MessageId int64 `json:"message_id"` // Button identifier ButtonId int64 `json:"button_id"` - // Pass true to allow the bot to send messages to the current user + // True, if the user allowed the bot to send them messages AllowWriteAccess bool `json:"allow_write_access"` } @@ -4165,7 +3973,7 @@ func (client *Client) GetInlineQueryResults(req *GetInlineQueryResultsRequest) ( type AnswerInlineQueryRequest struct { // Identifier of the inline query InlineQueryId JsonInt64 `json:"inline_query_id"` - // Pass true if results may be cached and returned only for the user that sent the query. By default, results may be returned to any user who sends the same query + // True, if the result of the query can be cached for the specified user IsPersonal bool `json:"is_personal"` // The results of the query Results []InputInlineQueryResult `json:"results"` @@ -4206,163 +4014,6 @@ func (client *Client) AnswerInlineQuery(req *AnswerInlineQueryRequest) (*Ok, err return UnmarshalOk(result.Data) } -type GetWebAppUrlRequest struct { - // Identifier of the target bot - BotUserId int64 `json:"bot_user_id"` - // The URL from the keyboardButtonTypeWebApp button - Url string `json:"url"` - // Preferred web app theme; pass null to use the default theme - Theme *ThemeParameters `json:"theme"` -} - -// Returns an HTTPS URL of a web app to open after keyboardButtonTypeWebApp button is pressed -func (client *Client) GetWebAppUrl(req *GetWebAppUrlRequest) (*HttpUrl, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getWebAppUrl", - }, - Data: map[string]interface{}{ - "bot_user_id": req.BotUserId, - "url": req.Url, - "theme": req.Theme, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalHttpUrl(result.Data) -} - -type SendWebAppDataRequest struct { - // Identifier of the target bot - BotUserId int64 `json:"bot_user_id"` - // Text of the keyboardButtonTypeWebApp button, which opened the web app - ButtonText string `json:"button_text"` - // Received data - Data string `json:"data"` -} - -// Sends data received from a keyboardButtonTypeWebApp web app to a bot -func (client *Client) SendWebAppData(req *SendWebAppDataRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "sendWebAppData", - }, - Data: map[string]interface{}{ - "bot_user_id": req.BotUserId, - "button_text": req.ButtonText, - "data": req.Data, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalOk(result.Data) -} - -type OpenWebAppRequest struct { - // Identifier of the chat in which the web app is opened. Web apps can be opened only in private chats for now - ChatId int64 `json:"chat_id"` - // Identifier of the bot, providing the web app - BotUserId int64 `json:"bot_user_id"` - // The URL from an inlineKeyboardButtonTypeWebApp button, a botMenuButton button, or an internalLinkTypeAttachmentMenuBot link, or an empty string otherwise - Url string `json:"url"` - // Preferred web app theme; pass null to use the default theme - Theme *ThemeParameters `json:"theme"` - // Identifier of the replied message for the message sent by the web app; 0 if none - ReplyToMessageId int64 `json:"reply_to_message_id"` -} - -// Informs TDLib that a web app is being opened from attachment menu, a botMenuButton button, an internalLinkTypeAttachmentMenuBot link, or an inlineKeyboardButtonTypeWebApp button. For each bot, a confirmation alert about data sent to the bot must be shown once -func (client *Client) OpenWebApp(req *OpenWebAppRequest) (*WebAppInfo, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "openWebApp", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "bot_user_id": req.BotUserId, - "url": req.Url, - "theme": req.Theme, - "reply_to_message_id": req.ReplyToMessageId, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalWebAppInfo(result.Data) -} - -type CloseWebAppRequest struct { - // Identifier of web app launch, received from openWebApp - WebAppLaunchId JsonInt64 `json:"web_app_launch_id"` -} - -// Informs TDLib that a previously opened web app was closed -func (client *Client) CloseWebApp(req *CloseWebAppRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "closeWebApp", - }, - Data: map[string]interface{}{ - "web_app_launch_id": req.WebAppLaunchId, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalOk(result.Data) -} - -type AnswerWebAppQueryRequest struct { - // Identifier of the web app query - WebAppQueryId string `json:"web_app_query_id"` - // The result of the query - Result InputInlineQueryResult `json:"result"` -} - -// Sets the result of interaction with a web app and sends corresponding message on behalf of the user to the chat from which the query originated; for bots only -func (client *Client) AnswerWebAppQuery(req *AnswerWebAppQueryRequest) (*SentWebAppMessage, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "answerWebAppQuery", - }, - Data: map[string]interface{}{ - "web_app_query_id": req.WebAppQueryId, - "result": req.Result, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalSentWebAppMessage(result.Data) -} - type GetCallbackQueryAnswerRequest struct { // Identifier of the chat with the message ChatId int64 `json:"chat_id"` @@ -4400,7 +4051,7 @@ type AnswerCallbackQueryRequest struct { CallbackQueryId JsonInt64 `json:"callback_query_id"` // Text of the answer Text string `json:"text"` - // Pass true to show an alert to the user instead of a toast notification + // If true, an alert must be shown to the user instead of a toast notification ShowAlert bool `json:"show_alert"` // URL to be opened Url string `json:"url"` @@ -4499,7 +4150,7 @@ type SetGameScoreRequest struct { ChatId int64 `json:"chat_id"` // Identifier of the message MessageId int64 `json:"message_id"` - // Pass true to edit the game message to include the current scoreboard + // True, if the message needs to be edited EditMessage bool `json:"edit_message"` // User identifier UserId int64 `json:"user_id"` @@ -4538,7 +4189,7 @@ func (client *Client) SetGameScore(req *SetGameScoreRequest) (*Message, error) { type SetInlineGameScoreRequest struct { // Inline message identifier InlineMessageId string `json:"inline_message_id"` - // Pass true to edit the game message to include the current scoreboard + // True, if the message needs to be edited EditMessage bool `json:"edit_message"` // User identifier UserId int64 `json:"user_id"` @@ -4754,7 +4405,7 @@ type ViewMessagesRequest struct { MessageThreadId int64 `json:"message_thread_id"` // The identifiers of the messages being viewed MessageIds []int64 `json:"message_ids"` - // Pass true to mark as read the specified messages even the chat is closed + // True, if messages in closed chats must be marked as read by the request ForceRead bool `json:"force_read"` } @@ -4867,9 +4518,6 @@ func (client *Client) GetInternalLinkType(req *GetInternalLinkTypeRequest) (Inte case TypeInternalLinkTypeActiveSessions: return UnmarshalInternalLinkTypeActiveSessions(result.Data) - case TypeInternalLinkTypeAttachmentMenuBot: - return UnmarshalInternalLinkTypeAttachmentMenuBot(result.Data) - case TypeInternalLinkTypeAuthenticationCode: return UnmarshalInternalLinkTypeAuthenticationCode(result.Data) @@ -4882,9 +4530,6 @@ func (client *Client) GetInternalLinkType(req *GetInternalLinkTypeRequest) (Inte case TypeInternalLinkTypeBotStartInGroup: return UnmarshalInternalLinkTypeBotStartInGroup(result.Data) - case TypeInternalLinkTypeBotAddToChannel: - return UnmarshalInternalLinkTypeBotAddToChannel(result.Data) - case TypeInternalLinkTypeChangePhoneNumber: return UnmarshalInternalLinkTypeChangePhoneNumber(result.Data) @@ -4900,9 +4545,6 @@ func (client *Client) GetInternalLinkType(req *GetInternalLinkTypeRequest) (Inte case TypeInternalLinkTypeLanguagePack: return UnmarshalInternalLinkTypeLanguagePack(result.Data) - case TypeInternalLinkTypeLanguageSettings: - return UnmarshalInternalLinkTypeLanguageSettings(result.Data) - case TypeInternalLinkTypeMessage: return UnmarshalInternalLinkTypeMessage(result.Data) @@ -4915,9 +4557,6 @@ func (client *Client) GetInternalLinkType(req *GetInternalLinkTypeRequest) (Inte case TypeInternalLinkTypePhoneNumberConfirmation: return UnmarshalInternalLinkTypePhoneNumberConfirmation(result.Data) - case TypeInternalLinkTypePrivacyAndSecuritySettings: - return UnmarshalInternalLinkTypePrivacyAndSecuritySettings(result.Data) - case TypeInternalLinkTypeProxy: return UnmarshalInternalLinkTypeProxy(result.Data) @@ -4945,9 +4584,6 @@ func (client *Client) GetInternalLinkType(req *GetInternalLinkTypeRequest) (Inte case TypeInternalLinkTypeUnsupportedProxy: return UnmarshalInternalLinkTypeUnsupportedProxy(result.Data) - case TypeInternalLinkTypeUserPhoneNumber: - return UnmarshalInternalLinkTypeUserPhoneNumber(result.Data) - case TypeInternalLinkTypeVideoChat: return UnmarshalInternalLinkTypeVideoChat(result.Data) @@ -4994,7 +4630,7 @@ func (client *Client) GetExternalLinkInfo(req *GetExternalLinkInfoRequest) (Logi type GetExternalLinkRequest struct { // The HTTP link Link string `json:"link"` - // Pass true if the current user allowed the bot, returned in getExternalLinkInfo, to send them messages + // True, if the current user allowed the bot, returned in getExternalLinkInfo, to send them messages AllowWriteAccess bool `json:"allow_write_access"` } @@ -5046,36 +4682,10 @@ func (client *Client) ReadAllChatMentions(req *ReadAllChatMentionsRequest) (*Ok, return UnmarshalOk(result.Data) } -type ReadAllChatReactionsRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` -} - -// Marks all reactions in a chat as read -func (client *Client) ReadAllChatReactions(req *ReadAllChatReactionsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "readAllChatReactions", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalOk(result.Data) -} - type CreatePrivateChatRequest struct { // User identifier UserId int64 `json:"user_id"` - // Pass true to create the chat without a network request. In this case all information about the chat except its type, title and photo can be incorrect + // If true, the chat will be created without network request. In this case all information about the chat except its type, title and photo can be incorrect Force bool `json:"force"` } @@ -5104,7 +4714,7 @@ func (client *Client) CreatePrivateChat(req *CreatePrivateChatRequest) (*Chat, e type CreateBasicGroupChatRequest struct { // Basic group identifier BasicGroupId int64 `json:"basic_group_id"` - // Pass true to create the chat without a network request. In this case all information about the chat except its type, title and photo can be incorrect + // If true, the chat will be created without network request. In this case all information about the chat except its type, title and photo can be incorrect Force bool `json:"force"` } @@ -5133,7 +4743,7 @@ func (client *Client) CreateBasicGroupChat(req *CreateBasicGroupChatRequest) (*C type CreateSupergroupChatRequest struct { // Supergroup or channel identifier SupergroupId int64 `json:"supergroup_id"` - // Pass true to create the chat without a network request. In this case all information about the chat except its type, title and photo can be incorrect + // If true, the chat will be created without network request. In this case all information about the chat except its type, title and photo can be incorrect Force bool `json:"force"` } @@ -5217,13 +4827,13 @@ func (client *Client) CreateNewBasicGroupChat(req *CreateNewBasicGroupChatReques type CreateNewSupergroupChatRequest struct { // Title of the new chat; 1-128 characters Title string `json:"title"` - // Pass true to create a channel chat + // True, if a channel chat needs to be created IsChannel bool `json:"is_channel"` // Chat description; 0-255 characters Description string `json:"description"` // Chat location if a location-based supergroup is being created; pass null to create an ordinary supergroup chat Location *ChatLocation `json:"location"` - // Pass true to create a supergroup for importing messages using importMessage + // True, if the supergroup is created for importing messages using importMessage ForImport bool `json:"for_import"` } @@ -5598,11 +5208,11 @@ func (client *Client) SetChatPhoto(req *SetChatPhotoRequest) (*Ok, error) { type SetChatMessageTtlRequest struct { // Chat identifier ChatId int64 `json:"chat_id"` - // New TTL value, in seconds; unless the chat is secret, it must be from 0 up to 365 * 86400 and be divisible by 86400 + // New TTL value, in seconds; must be one of 0, 86400, 7 * 86400, or 31 * 86400 unless the chat is secret Ttl int32 `json:"ttl"` } -// Changes the message TTL in a chat. Requires can_delete_messages administrator right in basic groups, supergroups and channels Message TTL can't be changed in a chat with the current user (Saved Messages) and the chat 777000 (Telegram). +// Changes the message TTL in a chat. Requires can_delete_messages administrator right in basic groups, supergroups and channels Message TTL can't be changed in a chat with the current user (Saved Messages) and the chat 777000 (Telegram) func (client *Client) SetChatMessageTtl(req *SetChatMessageTtlRequest) (*Ok, error) { result, err := client.Send(Request{ meta: meta{ @@ -5746,7 +5356,7 @@ func (client *Client) SetChatNotificationSettings(req *SetChatNotificationSettin type ToggleChatHasProtectedContentRequest struct { // Chat identifier ChatId int64 `json:"chat_id"` - // New value of has_protected_content + // True, if chat content can't be saved locally, forwarded, or copied HasProtectedContent bool `json:"has_protected_content"` } @@ -5830,35 +5440,6 @@ func (client *Client) ToggleChatDefaultDisableNotification(req *ToggleChatDefaul return UnmarshalOk(result.Data) } -type SetChatAvailableReactionsRequest struct { - // Identifier of the chat - ChatId int64 `json:"chat_id"` - // New list of reactions, available in the chat. All reactions must be active - AvailableReactions []string `json:"available_reactions"` -} - -// Changes reactions, available in a chat. Available for basic groups, supergroups, and channels. Requires can_change_info administrator right -func (client *Client) SetChatAvailableReactions(req *SetChatAvailableReactionsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setChatAvailableReactions", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - "available_reactions": req.AvailableReactions, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalOk(result.Data) -} - type SetChatClientDataRequest struct { // Chat identifier ChatId int64 `json:"chat_id"` @@ -6009,9 +5590,9 @@ type PinChatMessageRequest struct { ChatId int64 `json:"chat_id"` // Identifier of the new pinned message MessageId int64 `json:"message_id"` - // Pass true to disable notification about the pinned message. Notifications are always disabled in channels and private chats + // True, if there must be no notification about the pinned message. Notifications are always disabled in channels and private chats DisableNotification bool `json:"disable_notification"` - // Pass true to pin the message only for self; private chats only + // True, if the message needs to be pinned for one side only; private chats only OnlyForSelf bool `json:"only_for_self"` } @@ -6431,11 +6012,11 @@ func (client *Client) GetChatAdministrators(req *GetChatAdministratorsRequest) ( } type ClearAllDraftMessagesRequest struct { - // Pass true to keep local message drafts in secret chats + // If true, local draft messages in secret chats will not be cleared ExcludeSecretChats bool `json:"exclude_secret_chats"` } -// Clears message drafts in all chats +// Clears draft messages in all chats func (client *Client) ClearAllDraftMessages(req *ClearAllDraftMessagesRequest) (*Ok, error) { result, err := client.Send(Request{ meta: meta{ @@ -6456,107 +6037,10 @@ func (client *Client) ClearAllDraftMessages(req *ClearAllDraftMessagesRequest) ( return UnmarshalOk(result.Data) } -type GetSavedNotificationSoundRequest struct { - // Identifier of the notification sound - NotificationSoundId JsonInt64 `json:"notification_sound_id"` -} - -// Returns saved notification sound by its identifier. Returns a 404 error if there is no saved notification sound with the specified identifier -func (client *Client) GetSavedNotificationSound(req *GetSavedNotificationSoundRequest) (*NotificationSounds, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getSavedNotificationSound", - }, - Data: map[string]interface{}{ - "notification_sound_id": req.NotificationSoundId, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalNotificationSounds(result.Data) -} - -// Returns list of saved notification sounds. If a sound isn't in the list, then default sound needs to be used -func (client *Client) GetSavedNotificationSounds() (*NotificationSounds, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getSavedNotificationSounds", - }, - Data: map[string]interface{}{}, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalNotificationSounds(result.Data) -} - -type AddSavedNotificationSoundRequest struct { - // Notification sound file to add - Sound InputFile `json:"sound"` -} - -// Adds a new notification sound to the list of saved notification sounds. The new notification sound is added to the top of the list. If it is already in the list, it is position isn't changed -func (client *Client) AddSavedNotificationSound(req *AddSavedNotificationSoundRequest) (*NotificationSound, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "addSavedNotificationSound", - }, - Data: map[string]interface{}{ - "sound": req.Sound, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalNotificationSound(result.Data) -} - -type RemoveSavedNotificationSoundRequest struct { - // Identifier of the notification sound - NotificationSoundId JsonInt64 `json:"notification_sound_id"` -} - -// Removes a notification sound from the list of saved notification sounds -func (client *Client) RemoveSavedNotificationSound(req *RemoveSavedNotificationSoundRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeSavedNotificationSound", - }, - Data: map[string]interface{}{ - "notification_sound_id": req.NotificationSoundId, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalOk(result.Data) -} - type GetChatNotificationSettingsExceptionsRequest struct { // If specified, only chats from the scope will be returned; pass null to return chats from all scopes Scope NotificationSettingsScope `json:"scope"` - // Pass true to include in the response chats with only non-default sound + // If true, also chats with non-default sound will be returned CompareSound bool `json:"compare_sound"` } @@ -6637,7 +6121,7 @@ func (client *Client) SetScopeNotificationSettings(req *SetScopeNotificationSett return UnmarshalOk(result.Data) } -// Resets all notification settings to their default values. By default, all chats are unmuted and message previews are shown +// Resets all notification settings to their default values. By default, all chats are unmuted, the sound is set to "default" and message previews are shown func (client *Client) ResetAllNotificationSettings() (*Ok, error) { result, err := client.Send(Request{ meta: meta{ @@ -6661,11 +6145,11 @@ type ToggleChatIsPinnedRequest struct { ChatList ChatList `json:"chat_list"` // Chat identifier ChatId int64 `json:"chat_id"` - // Pass true to pin the chat; pass false to unpin it + // True, if the chat is pinned IsPinned bool `json:"is_pinned"` } -// Changes the pinned state of a chat. There can be up to GetOption("pinned_chat_count_max")/GetOption("pinned_archived_chat_count_max") pinned non-secret chats and the same number of secret chats in the main/archive chat list +// Changes the pinned state of a chat. There can be up to GetOption("pinned_chat_count_max")/GetOption("pinned_archived_chat_count_max") pinned non-secret chats and the same number of secret chats in the main/arhive chat list func (client *Client) ToggleChatIsPinned(req *ToggleChatIsPinnedRequest) (*Ok, error) { result, err := client.Send(Request{ meta: meta{ @@ -6717,71 +6201,16 @@ func (client *Client) SetPinnedChats(req *SetPinnedChatsRequest) (*Ok, error) { return UnmarshalOk(result.Data) } -type GetAttachmentMenuBotRequest struct { - // Bot's user identifier - BotUserId int64 `json:"bot_user_id"` -} - -// Returns information about a bot that can be added to attachment menu -func (client *Client) GetAttachmentMenuBot(req *GetAttachmentMenuBotRequest) (*AttachmentMenuBot, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getAttachmentMenuBot", - }, - Data: map[string]interface{}{ - "bot_user_id": req.BotUserId, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalAttachmentMenuBot(result.Data) -} - -type ToggleBotIsAddedToAttachmentMenuRequest struct { - // Bot's user identifier - BotUserId int64 `json:"bot_user_id"` - // Pass true to add the bot to attachment menu; pass false to remove the bot from attachment menu - IsAdded bool `json:"is_added"` -} - -// Adds or removes a bot to attachment menu. Bot can be added to attachment menu, only if userTypeBot.can_be_added_to_attachment_menu == true -func (client *Client) ToggleBotIsAddedToAttachmentMenu(req *ToggleBotIsAddedToAttachmentMenuRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleBotIsAddedToAttachmentMenu", - }, - Data: map[string]interface{}{ - "bot_user_id": req.BotUserId, - "is_added": req.IsAdded, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalOk(result.Data) -} - type DownloadFileRequest struct { // Identifier of the file to download FileId int32 `json:"file_id"` - // Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile/addFileToDownloads was called will be downloaded first + // Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile was called will be downloaded first Priority int32 `json:"priority"` // The starting position from which the file needs to be downloaded Offset int32 `json:"offset"` // Number of bytes which need to be downloaded starting from the "offset" position before the download will automatically be canceled; use 0 to download without a limit Limit int32 `json:"limit"` - // Pass true to return response only after the file download has succeeded, has failed, has been canceled, or a new downloadFile request with different offset/limit parameters was sent; pass false to return file state immediately, just after the download has been started + // If false, this request returns file state just after the download has been started. If true, this request returns file state only after the download has succeeded, has failed, has been canceled or a new downloadFile request with different offset/limit parameters was sent Synchronous bool `json:"synchronous"` } @@ -7106,195 +6535,6 @@ func (client *Client) DeleteFile(req *DeleteFileRequest) (*Ok, error) { return UnmarshalOk(result.Data) } -type AddFileToDownloadsRequest struct { - // Identifier of the file to download - FileId int32 `json:"file_id"` - // Chat identifier of the message with the file - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` - // Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile/addFileToDownloads was called will be downloaded first - Priority int32 `json:"priority"` -} - -// Adds a file from a message to the list of file downloads. Download progress and completion of the download will be notified through updateFile updates. If message database is used, the list of file downloads is persistent across application restarts. The downloading is independent from download using downloadFile, i.e. it continues if downloadFile is canceled or is used to download a part of the file -func (client *Client) AddFileToDownloads(req *AddFileToDownloadsRequest) (*File, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "addFileToDownloads", - }, - Data: map[string]interface{}{ - "file_id": req.FileId, - "chat_id": req.ChatId, - "message_id": req.MessageId, - "priority": req.Priority, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalFile(result.Data) -} - -type ToggleDownloadIsPausedRequest struct { - // Identifier of the downloaded file - FileId int32 `json:"file_id"` - // Pass true if the download is paused - IsPaused bool `json:"is_paused"` -} - -// Changes pause state of a file in the file download list -func (client *Client) ToggleDownloadIsPaused(req *ToggleDownloadIsPausedRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleDownloadIsPaused", - }, - Data: map[string]interface{}{ - "file_id": req.FileId, - "is_paused": req.IsPaused, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalOk(result.Data) -} - -type ToggleAllDownloadsArePausedRequest struct { - // Pass true to pause all downloads; pass false to unpause them - ArePaused bool `json:"are_paused"` -} - -// Changes pause state of all files in the file download list -func (client *Client) ToggleAllDownloadsArePaused(req *ToggleAllDownloadsArePausedRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "toggleAllDownloadsArePaused", - }, - Data: map[string]interface{}{ - "are_paused": req.ArePaused, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalOk(result.Data) -} - -type RemoveFileFromDownloadsRequest struct { - // Identifier of the downloaded file - FileId int32 `json:"file_id"` - // Pass true to delete the file from the TDLib file cache - DeleteFromCache bool `json:"delete_from_cache"` -} - -// Removes a file from the file download list -func (client *Client) RemoveFileFromDownloads(req *RemoveFileFromDownloadsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeFileFromDownloads", - }, - Data: map[string]interface{}{ - "file_id": req.FileId, - "delete_from_cache": req.DeleteFromCache, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalOk(result.Data) -} - -type RemoveAllFilesFromDownloadsRequest struct { - // Pass true to remove only active downloads, including paused - OnlyActive bool `json:"only_active"` - // Pass true to remove only completed downloads - OnlyCompleted bool `json:"only_completed"` - // Pass true to delete the file from the TDLib file cache - DeleteFromCache bool `json:"delete_from_cache"` -} - -// Removes all files from the file download list -func (client *Client) RemoveAllFilesFromDownloads(req *RemoveAllFilesFromDownloadsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "removeAllFilesFromDownloads", - }, - Data: map[string]interface{}{ - "only_active": req.OnlyActive, - "only_completed": req.OnlyCompleted, - "delete_from_cache": req.DeleteFromCache, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalOk(result.Data) -} - -type SearchFileDownloadsRequest struct { - // Query to search for; may be empty to return all downloaded files - Query string `json:"query"` - // Pass true to search only for active downloads, including paused - OnlyActive bool `json:"only_active"` - // Pass true to search only for completed downloads - OnlyCompleted bool `json:"only_completed"` - // Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results - Offset string `json:"offset"` - // The maximum number of files to be returned - Limit int32 `json:"limit"` -} - -// Searches for files in the file download list or recently downloaded files from the list -func (client *Client) SearchFileDownloads(req *SearchFileDownloadsRequest) (*FoundFileDownloads, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchFileDownloads", - }, - Data: map[string]interface{}{ - "query": req.Query, - "only_active": req.OnlyActive, - "only_completed": req.OnlyCompleted, - "offset": req.Offset, - "limit": req.Limit, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalFoundFileDownloads(result.Data) -} - type GetMessageFileTypeRequest struct { // Beginning of the message file; up to 100 first lines MessageFileHead string `json:"message_file_head"` @@ -7426,7 +6666,7 @@ type CreateChatInviteLinkRequest struct { ExpirationDate int32 `json:"expiration_date"` // The maximum number of chat members that can join the chat via the link simultaneously; 0-99999; pass 0 if not limited MemberLimit int32 `json:"member_limit"` - // Pass true if users joining the chat via the link need to be approved by chat administrators. In this case, member_limit must be 0 + // True, if the link only creates join request. If true, member_limit must not be specified CreatesJoinRequest bool `json:"creates_join_request"` } @@ -7466,7 +6706,7 @@ type EditChatInviteLinkRequest struct { ExpirationDate int32 `json:"expiration_date"` // The maximum number of chat members that can join the chat via the link simultaneously; 0-99999; pass 0 if not limited MemberLimit int32 `json:"member_limit"` - // Pass true if users joining the chat via the link need to be approved by chat administrators. In this case, member_limit must be 0 + // True, if the link only creates join request. If true, member_limit must not be specified CreatesJoinRequest bool `json:"creates_join_request"` } @@ -7809,7 +7049,7 @@ type ProcessChatJoinRequestRequest struct { ChatId int64 `json:"chat_id"` // Identifier of the user that sent the request UserId int64 `json:"user_id"` - // Pass true to approve the request; pass false to decline it + // True, if the request is approved. Otherwise the request is declived Approve bool `json:"approve"` } @@ -7841,7 +7081,7 @@ type ProcessChatJoinRequestsRequest struct { ChatId int64 `json:"chat_id"` // Invite link for which to process join requests. If empty, all join requests will be processed. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links InviteLink string `json:"invite_link"` - // Pass true to approve all requests; pass false to decline them + // True, if the requests are approved. Otherwise the requests are declived Approve bool `json:"approve"` } @@ -7873,7 +7113,7 @@ type CreateCallRequest struct { UserId int64 `json:"user_id"` // The call protocols supported by the application Protocol *CallProtocol `json:"protocol"` - // Pass true to create a video call + // True, if a video call needs to be created IsVideo bool `json:"is_video"` } @@ -7961,11 +7201,11 @@ func (client *Client) SendCallSignalingData(req *SendCallSignalingDataRequest) ( type DiscardCallRequest struct { // Call identifier CallId int32 `json:"call_id"` - // Pass true if the user was disconnected + // True, if the user was disconnected IsDisconnected bool `json:"is_disconnected"` // The call duration, in seconds Duration int32 `json:"duration"` - // Pass true if the call was a video call + // True, if the call was a video call IsVideo bool `json:"is_video"` // Identifier of the connection used during the call ConnectionId JsonInt64 `json:"connection_id"` @@ -8116,14 +7356,12 @@ func (client *Client) SetVideoChatDefaultParticipant(req *SetVideoChatDefaultPar } type CreateVideoChatRequest struct { - // Identifier of a chat in which the video chat will be created + // Chat identifier, in which the video chat will be created ChatId int64 `json:"chat_id"` // Group call title; if empty, chat title will be used Title string `json:"title"` // Point in time (Unix timestamp) when the group call is supposed to be started by an administrator; 0 to start the video chat immediately. The date must be at least 10 seconds and at most 8 days in the future StartDate int32 `json:"start_date"` - // Pass true to create an RTMP stream instead of an ordinary video chat; requires creator privileges - IsRtmpStream bool `json:"is_rtmp_stream"` } // Creates a video chat (a group call bound to a chat). Available only for basic groups, supergroups and channels; requires can_manage_video_chats rights @@ -8133,10 +7371,9 @@ func (client *Client) CreateVideoChat(req *CreateVideoChatRequest) (*GroupCallId Type: "createVideoChat", }, Data: map[string]interface{}{ - "chat_id": req.ChatId, - "title": req.Title, - "start_date": req.StartDate, - "is_rtmp_stream": req.IsRtmpStream, + "chat_id": req.ChatId, + "title": req.Title, + "start_date": req.StartDate, }, }) if err != nil { @@ -8150,58 +7387,6 @@ func (client *Client) CreateVideoChat(req *CreateVideoChatRequest) (*GroupCallId return UnmarshalGroupCallId(result.Data) } -type GetVideoChatRtmpUrlRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` -} - -// Returns RTMP URL for streaming to the chat; requires creator privileges -func (client *Client) GetVideoChatRtmpUrl(req *GetVideoChatRtmpUrlRequest) (*RtmpUrl, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getVideoChatRtmpUrl", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalRtmpUrl(result.Data) -} - -type ReplaceVideoChatRtmpUrlRequest struct { - // Chat identifier - ChatId int64 `json:"chat_id"` -} - -// Replaces the current RTMP URL for streaming to the chat; requires creator privileges -func (client *Client) ReplaceVideoChatRtmpUrl(req *ReplaceVideoChatRtmpUrlRequest) (*RtmpUrl, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "replaceVideoChatRtmpUrl", - }, - Data: map[string]interface{}{ - "chat_id": req.ChatId, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalRtmpUrl(result.Data) -} - type GetGroupCallRequest struct { // Group call identifier GroupCallId int32 `json:"group_call_id"` @@ -8292,9 +7477,9 @@ type JoinGroupCallRequest struct { AudioSourceId int32 `json:"audio_source_id"` // Group call join payload; received from tgcalls Payload string `json:"payload"` - // Pass true to join the call with muted microphone + // True, if the user's microphone is muted IsMuted bool `json:"is_muted"` - // Pass true if the user's video is enabled + // True, if the user's video is enabled IsMyVideoEnabled bool `json:"is_my_video_enabled"` // If non-empty, invite hash to be used to join the group call without being muted by administrators InviteHash string `json:"invite_hash"` @@ -8680,7 +7865,7 @@ type SetGroupCallParticipantIsSpeakingRequest struct { GroupCallId int32 `json:"group_call_id"` // Group call participant's synchronization audio source identifier, or 0 for the current user AudioSource int32 `json:"audio_source"` - // Pass true if the user is speaking + // True, if the user is speaking IsSpeaking bool `json:"is_speaking"` } @@ -8712,7 +7897,7 @@ type ToggleGroupCallParticipantIsMutedRequest struct { GroupCallId int32 `json:"group_call_id"` // Participant identifier ParticipantId MessageSender `json:"participant_id"` - // Pass true to mute the user; pass false to unmute the them + // Pass true if the user must be muted and false otherwise IsMuted bool `json:"is_muted"` } @@ -8884,32 +8069,6 @@ func (client *Client) EndGroupCall(req *EndGroupCallRequest) (*Ok, error) { return UnmarshalOk(result.Data) } -type GetGroupCallStreamsRequest struct { - // Group call identifier - GroupCallId int32 `json:"group_call_id"` -} - -// Returns information about available group call streams -func (client *Client) GetGroupCallStreams(req *GetGroupCallStreamsRequest) (*GroupCallStreams, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getGroupCallStreams", - }, - Data: map[string]interface{}{ - "group_call_id": req.GroupCallId, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalGroupCallStreams(result.Data) -} - type GetGroupCallStreamSegmentRequest struct { // Group call identifier GroupCallId int32 `json:"group_call_id"` @@ -8980,11 +8139,11 @@ func (client *Client) ToggleMessageSenderIsBlocked(req *ToggleMessageSenderIsBlo type BlockMessageSenderFromRepliesRequest struct { // The identifier of an incoming message in the Replies chat MessageId int64 `json:"message_id"` - // Pass true to delete the message + // Pass true if the message must be deleted DeleteMessage bool `json:"delete_message"` - // Pass true to delete all messages from the same sender + // Pass true if all messages from the same sender must be deleted DeleteAllMessages bool `json:"delete_all_messages"` - // Pass true to report the sender to the Telegram moderators + // Pass true if the sender must be reported to the Telegram moderators ReportSpam bool `json:"report_spam"` } @@ -9042,9 +8201,9 @@ func (client *Client) GetBlockedMessageSenders(req *GetBlockedMessageSendersRequ } type AddContactRequest struct { - // The contact to add or edit; phone number may be empty and needs to be specified only if known, vCard is ignored + // The contact to add or edit; phone number can be empty and needs to be specified only if known, vCard is ignored Contact *Contact `json:"contact"` - // Pass true to share the current user's phone number with the new contact. A corresponding rule to userPrivacySettingShowPhoneNumber will be added if needed. Use the field userFullInfo.need_phone_number_privacy_exception to check whether the current user needs to be asked to share their phone number + // True, if the new contact needs to be allowed to see current user's phone number. A corresponding rule to userPrivacySettingShowPhoneNumber will be added if needed. Use the field userFullInfo.need_phone_number_privacy_exception to check whether the current user needs to be asked to share their phone number SharePhoneNumber bool `json:"share_phone_number"` } @@ -9234,32 +8393,6 @@ func (client *Client) ClearImportedContacts() (*Ok, error) { return UnmarshalOk(result.Data) } -type SearchUserByPhoneNumberRequest struct { - // Phone number to search for - PhoneNumber string `json:"phone_number"` -} - -// Searches a user by their phone number -func (client *Client) SearchUserByPhoneNumber(req *SearchUserByPhoneNumberRequest) (*User, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "searchUserByPhoneNumber", - }, - Data: map[string]interface{}{ - "phone_number": req.PhoneNumber, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalUser(result.Data) -} - type SharePhoneNumberRequest struct { // Identifier of the user with whom to share the phone number. The user must be a mutual contact UserId int64 `json:"user_id"` @@ -9896,7 +9029,7 @@ func (client *Client) GetStickerEmojis(req *GetStickerEmojisRequest) (*Emojis, e type SearchEmojisRequest struct { // Text to search for Text string `json:"text"` - // Pass true if only emojis, which exactly match the text, needs to be returned + // True, if only emojis, which exactly match text needs to be returned ExactMatch bool `json:"exact_match"` // List of possible IETF language tags of the user's input language; may be empty if unknown InputLanguageCodes []string `json:"input_language_codes"` @@ -10151,7 +9284,7 @@ func (client *Client) GetWebPagePreview(req *GetWebPagePreviewRequest) (*WebPage type GetWebPageInstantViewRequest struct { // The web page URL Url string `json:"url"` - // Pass true to get full instant view for the web page + // If true, the full instant view for the web page will be returned ForceFull bool `json:"force_full"` } @@ -10413,7 +9546,7 @@ func (client *Client) CheckChangePhoneNumberCode(req *CheckChangePhoneNumberCode type SetCommandsRequest struct { // The scope to which the commands are relevant; pass null to change commands in the default bot command scope Scope BotCommandScope `json:"scope"` - // A two-letter ISO 639-1 language code. If empty, the commands will be applied to all users from the given scope, for which language there are no dedicated commands + // A two-letter ISO 639-1 country code. If empty, the commands will be applied to all users from the given scope, for which language there are no dedicated commands LanguageCode string `json:"language_code"` // List of the bot's commands Commands []*BotCommand `json:"commands"` @@ -10445,7 +9578,7 @@ func (client *Client) SetCommands(req *SetCommandsRequest) (*Ok, error) { type DeleteCommandsRequest struct { // The scope to which the commands are relevant; pass null to delete commands in the default bot command scope Scope BotCommandScope `json:"scope"` - // A two-letter ISO 639-1 language code or an empty string + // A two-letter ISO 639-1 country code or an empty string LanguageCode string `json:"language_code"` } @@ -10474,7 +9607,7 @@ func (client *Client) DeleteCommands(req *DeleteCommandsRequest) (*Ok, error) { type GetCommandsRequest struct { // The scope to which the commands are relevant; pass null to get commands in the default bot command scope Scope BotCommandScope `json:"scope"` - // A two-letter ISO 639-1 language code or an empty string + // A two-letter ISO 639-1 country code or an empty string LanguageCode string `json:"language_code"` } @@ -10500,113 +9633,6 @@ func (client *Client) GetCommands(req *GetCommandsRequest) (*BotCommands, error) return UnmarshalBotCommands(result.Data) } -type SetMenuButtonRequest struct { - // Identifier of the user or 0 to set menu button for all users - UserId int64 `json:"user_id"` - // New menu button - MenuButton *BotMenuButton `json:"menu_button"` -} - -// Sets menu button for the given user or for all users; for bots only -func (client *Client) SetMenuButton(req *SetMenuButtonRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setMenuButton", - }, - Data: map[string]interface{}{ - "user_id": req.UserId, - "menu_button": req.MenuButton, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalOk(result.Data) -} - -type GetMenuButtonRequest struct { - // Identifier of the user or 0 to get the default menu button - UserId int64 `json:"user_id"` -} - -// Returns menu button set by the bot for the given user; for bots only -func (client *Client) GetMenuButton(req *GetMenuButtonRequest) (*BotMenuButton, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "getMenuButton", - }, - Data: map[string]interface{}{ - "user_id": req.UserId, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalBotMenuButton(result.Data) -} - -type SetDefaultGroupAdministratorRightsRequest struct { - // Default administrator rights for adding the bot to basic group and supergroup chats; may be null - DefaultGroupAdministratorRights *ChatAdministratorRights `json:"default_group_administrator_rights"` -} - -// Sets default administrator rights for adding the bot to basic group and supergroup chats; for bots only -func (client *Client) SetDefaultGroupAdministratorRights(req *SetDefaultGroupAdministratorRightsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setDefaultGroupAdministratorRights", - }, - Data: map[string]interface{}{ - "default_group_administrator_rights": req.DefaultGroupAdministratorRights, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalOk(result.Data) -} - -type SetDefaultChannelAdministratorRightsRequest struct { - // Default administrator rights for adding the bot to channels; may be null - DefaultChannelAdministratorRights *ChatAdministratorRights `json:"default_channel_administrator_rights"` -} - -// Sets default administrator rights for adding the bot to channel chats; for bots only -func (client *Client) SetDefaultChannelAdministratorRights(req *SetDefaultChannelAdministratorRightsRequest) (*Ok, error) { - result, err := client.Send(Request{ - meta: meta{ - Type: "setDefaultChannelAdministratorRights", - }, - Data: map[string]interface{}{ - "default_channel_administrator_rights": req.DefaultChannelAdministratorRights, - }, - }) - if err != nil { - return nil, err - } - - if result.Type == "error" { - return nil, buildResponseError(result.Data) - } - - return UnmarshalOk(result.Data) -} - // Returns all active sessions of the current user func (client *Client) GetActiveSessions() (*Sessions, error) { result, err := client.Send(Request{ @@ -10674,7 +9700,7 @@ func (client *Client) TerminateAllOtherSessions() (*Ok, error) { type ToggleSessionCanAcceptCallsRequest struct { // Session identifier SessionId JsonInt64 `json:"session_id"` - // Pass true to allow accepting incoming calls by the session; pass false otherwise + // True, if incoming calls can be accepted by the session CanAcceptCalls bool `json:"can_accept_calls"` } @@ -10703,7 +9729,7 @@ func (client *Client) ToggleSessionCanAcceptCalls(req *ToggleSessionCanAcceptCal type ToggleSessionCanAcceptSecretChatsRequest struct { // Session identifier SessionId JsonInt64 `json:"session_id"` - // Pass true to allow accepring secret chats by the session; pass false otherwise + // True, if incoming secret chats can be accepted by the session CanAcceptSecretChats bool `json:"can_accept_secret_chats"` } @@ -11098,7 +10124,7 @@ type GetPaymentFormRequest struct { // Message identifier MessageId int64 `json:"message_id"` // Preferred payment form theme; pass null to use the default theme - Theme *ThemeParameters `json:"theme"` + Theme *PaymentFormTheme `json:"theme"` } // Returns an invoice payment form. This method must be called when the user presses inlineKeyboardButtonBuy @@ -11131,7 +10157,7 @@ type ValidateOrderInfoRequest struct { MessageId int64 `json:"message_id"` // The order information, provided by the user; pass null if empty OrderInfo *OrderInfo `json:"order_info"` - // Pass true to save the order information + // True, if the order information can be saved AllowSave bool `json:"allow_save"` } @@ -11232,7 +10258,7 @@ func (client *Client) GetPaymentReceipt(req *GetPaymentReceiptRequest) (*Payment return UnmarshalPaymentReceipt(result.Data) } -// Returns saved order information. Returns a 404 error if there is no saved order information +// Returns saved order info, if any func (client *Client) GetSavedOrderInfo() (*OrderInfo, error) { result, err := client.Send(Request{ meta: meta{ @@ -11251,7 +10277,7 @@ func (client *Client) GetSavedOrderInfo() (*OrderInfo, error) { return UnmarshalOrderInfo(result.Data) } -// Deletes saved order information +// Deletes saved order info func (client *Client) DeleteSavedOrderInfo() (*Ok, error) { result, err := client.Send(Request{ meta: meta{ @@ -11309,7 +10335,7 @@ func (client *Client) GetSupportUser() (*User, error) { } type GetBackgroundsRequest struct { - // Pass true to order returned backgrounds for a dark theme + // True, if the backgrounds must be ordered for dark theme ForDarkTheme bool `json:"for_dark_theme"` } @@ -11394,7 +10420,7 @@ type SetBackgroundRequest struct { Background InputBackground `json:"background"` // Background type; pass null to use the default type of the remote background or to remove the current background Type BackgroundType `json:"type"` - // Pass true if the background is changed for a dark theme + // True, if the background is chosen for dark theme ForDarkTheme bool `json:"for_dark_theme"` } @@ -11467,7 +10493,7 @@ func (client *Client) ResetBackgrounds() (*Ok, error) { } type GetLocalizationTargetInfoRequest struct { - // Pass true to get only locally available information without sending network requests + // If true, returns only locally available information without sending network requests OnlyLocal bool `json:"only_local"` } @@ -12041,7 +11067,7 @@ func (client *Client) RemoveChatActionBar(req *RemoveChatActionBarRequest) (*Ok, type ReportChatRequest struct { // Chat identifier ChatId int64 `json:"chat_id"` - // Identifiers of reported messages; may be empty to report the whole chat + // Identifiers of reported messages, if any MessageIds []int64 `json:"message_ids"` // The reason for reporting the chat Reason ChatReportReason `json:"reason"` @@ -12291,7 +11317,7 @@ type OptimizeStorageRequest struct { Size int64 `json:"size"` // Limit on the time that has passed since the last time a file was accessed (or creation time for some filesystems). Pass -1 to use the default limit Ttl int32 `json:"ttl"` - // Limit on the total number of files after deletion. Pass -1 to use the default limit + // Limit on the total count of files after deletion. Pass -1 to use the default limit Count int32 `json:"count"` // The amount of time after the creation of a file during which it can't be deleted, in seconds. Pass -1 to use the default value ImmunityDelay int32 `json:"immunity_delay"` @@ -12363,7 +11389,7 @@ func (client *Client) SetNetworkType(req *SetNetworkTypeRequest) (*Ok, error) { } type GetNetworkStatisticsRequest struct { - // Pass true to get statistics only for the current library launch + // If true, returns only data for the current library launch OnlyCurrent bool `json:"only_current"` } @@ -13104,7 +12130,7 @@ type UploadStickerFileRequest struct { // Sticker file owner; ignored for regular users UserId int64 `json:"user_id"` // Sticker file to upload - Sticker *InputSticker `json:"sticker"` + Sticker InputSticker `json:"sticker"` } // Uploads a file with a sticker; returns the uploaded file @@ -13200,8 +12226,10 @@ type CreateNewStickerSetRequest struct { Title string `json:"title"` // Sticker set name. Can contain only English letters, digits and underscores. Must end with *"_by_"* (** is case insensitive) for bots; 1-64 characters Name string `json:"name"` - // List of stickers to be added to the set; must be non-empty. All stickers must have the same format. For TGS stickers, uploadStickerFile must be used before the sticker is shown - Stickers []*InputSticker `json:"stickers"` + // True, if stickers are masks. Animated stickers can't be masks + IsMasks bool `json:"is_masks"` + // List of stickers to be added to the set; must be non-empty. All stickers must be of the same type. For animated stickers, uploadStickerFile must be used before the sticker is shown + Stickers []InputSticker `json:"stickers"` // Source of the sticker set; may be empty if unknown Source string `json:"source"` } @@ -13216,6 +12244,7 @@ func (client *Client) CreateNewStickerSet(req *CreateNewStickerSetRequest) (*Sti "user_id": req.UserId, "title": req.Title, "name": req.Name, + "is_masks": req.IsMasks, "stickers": req.Stickers, "source": req.Source, }, @@ -13237,7 +12266,7 @@ type AddStickerToSetRequest struct { // Sticker set name Name string `json:"name"` // Sticker to add to the set - Sticker *InputSticker `json:"sticker"` + Sticker InputSticker `json:"sticker"` } // Adds a new sticker to a set; for bots only. Returns the sticker set @@ -13268,7 +12297,7 @@ type SetStickerSetThumbnailRequest struct { UserId int64 `json:"user_id"` // Sticker set name Name string `json:"name"` - // Thumbnail to set in PNG, TGS, or WEBM format; pass null to remove the sticker set thumbnail. Thumbnail format must match the format of stickers in the set + // Thumbnail to set in PNG or TGS format; pass null to remove the sticker set thumbnail. Animated thumbnail must be set for animated sticker sets and only for them Thumbnail InputFile `json:"thumbnail"` } @@ -13361,7 +12390,7 @@ type GetMapThumbnailFileRequest struct { Height int32 `json:"height"` // Map scale; 1-3 Scale int32 `json:"scale"` - // Identifier of a chat in which the thumbnail will be shown. Use 0 if unknown + // Identifier of a chat, in which the thumbnail will be shown. Use 0 if unknown ChatId int64 `json:"chat_id"` } @@ -13566,7 +12595,7 @@ func (client *Client) GetPhoneNumberInfo(req *GetPhoneNumberInfoRequest) (*Phone } type GetPhoneNumberInfoSyncRequest struct { - // A two-letter ISO 639-1 language code for country information localization + // A two-letter ISO 639-1 country code for country information localization LanguageCode string `json:"language_code"` // The phone number prefix PhoneNumberPrefix string `json:"phone_number_prefix"` @@ -13716,7 +12745,7 @@ type AddProxyRequest struct { Server string `json:"server"` // Proxy server port Port int32 `json:"port"` - // Pass true to immediately enable the proxy + // True, if the proxy needs to be enabled Enable bool `json:"enable"` // Proxy type Type ProxyType `json:"type"` @@ -13753,7 +12782,7 @@ type EditProxyRequest struct { Server string `json:"server"` // Proxy server port Port int32 `json:"port"` - // Pass true to immediately enable the proxy + // True, if the proxy needs to be enabled Enable bool `json:"enable"` // Proxy type Type ProxyType `json:"type"` @@ -14358,7 +13387,7 @@ type TestProxyRequest struct { Port int32 `json:"port"` // Proxy type Type ProxyType `json:"type"` - // Identifier of a datacenter with which to test connection + // Identifier of a datacenter, with which to test connection DcId int32 `json:"dc_id"` // The maximum overall timeout for the request Timeout float64 `json:"timeout"` @@ -14458,9 +13487,6 @@ func (client *Client) TestUseUpdate() (Update, error) { case TypeUpdateMessageMentionRead: return UnmarshalUpdateMessageMentionRead(result.Data) - case TypeUpdateMessageUnreadReactions: - return UnmarshalUpdateMessageUnreadReactions(result.Data) - case TypeUpdateMessageLiveLocationViewed: return UnmarshalUpdateMessageLiveLocationViewed(result.Data) @@ -14491,9 +13517,6 @@ func (client *Client) TestUseUpdate() (Update, error) { case TypeUpdateChatActionBar: return UnmarshalUpdateChatActionBar(result.Data) - case TypeUpdateChatAvailableReactions: - return UnmarshalUpdateChatAvailableReactions(result.Data) - case TypeUpdateChatDraftMessage: return UnmarshalUpdateChatDraftMessage(result.Data) @@ -14518,9 +13541,6 @@ func (client *Client) TestUseUpdate() (Update, error) { case TypeUpdateChatUnreadMentionCount: return UnmarshalUpdateChatUnreadMentionCount(result.Data) - case TypeUpdateChatUnreadReactionCount: - return UnmarshalUpdateChatUnreadReactionCount(result.Data) - case TypeUpdateChatVideoChat: return UnmarshalUpdateChatVideoChat(result.Data) @@ -14602,18 +13622,6 @@ func (client *Client) TestUseUpdate() (Update, error) { case TypeUpdateFileGenerationStop: return UnmarshalUpdateFileGenerationStop(result.Data) - case TypeUpdateFileDownloads: - return UnmarshalUpdateFileDownloads(result.Data) - - case TypeUpdateFileAddedToDownloads: - return UnmarshalUpdateFileAddedToDownloads(result.Data) - - case TypeUpdateFileDownload: - return UnmarshalUpdateFileDownload(result.Data) - - case TypeUpdateFileRemovedFromDownloads: - return UnmarshalUpdateFileRemovedFromDownloads(result.Data) - case TypeUpdateCall: return UnmarshalUpdateCall(result.Data) @@ -14656,9 +13664,6 @@ func (client *Client) TestUseUpdate() (Update, error) { case TypeUpdateSavedAnimations: return UnmarshalUpdateSavedAnimations(result.Data) - case TypeUpdateSavedNotificationSounds: - return UnmarshalUpdateSavedNotificationSounds(result.Data) - case TypeUpdateSelectedBackground: return UnmarshalUpdateSelectedBackground(result.Data) @@ -14677,15 +13682,6 @@ func (client *Client) TestUseUpdate() (Update, error) { case TypeUpdateUsersNearby: return UnmarshalUpdateUsersNearby(result.Data) - case TypeUpdateAttachmentMenuBots: - return UnmarshalUpdateAttachmentMenuBots(result.Data) - - case TypeUpdateWebAppMessageSent: - return UnmarshalUpdateWebAppMessageSent(result.Data) - - case TypeUpdateReactions: - return UnmarshalUpdateReactions(result.Data) - case TypeUpdateDiceEmojis: return UnmarshalUpdateDiceEmojis(result.Data) diff --git a/client/type.go b/client/type.go index 16ce0f0..0022c59 100755 --- a/client/type.go +++ b/client/type.go @@ -12,7 +12,6 @@ const ( ClassInputFile = "InputFile" ClassThumbnailFormat = "ThumbnailFormat" ClassMaskPoint = "MaskPoint" - ClassStickerType = "StickerType" ClassPollType = "PollType" ClassUserType = "UserType" ClassInputChatPhoto = "InputChatPhoto" @@ -88,6 +87,7 @@ const ( ClassSuggestedAction = "SuggestedAction" ClassTextParseMode = "TextParseMode" ClassProxyType = "ProxyType" + ClassInputSticker = "InputSticker" ClassStatisticalGraph = "StatisticalGraph" ClassChatStatistics = "ChatStatistics" ClassVectorPathCommand = "VectorPathCommand" @@ -133,19 +133,16 @@ const ( ClassChatPhotoInfo = "ChatPhotoInfo" ClassBotCommand = "BotCommand" ClassBotCommands = "BotCommands" - ClassBotMenuButton = "BotMenuButton" ClassChatLocation = "ChatLocation" ClassAnimatedChatPhoto = "AnimatedChatPhoto" ClassChatPhoto = "ChatPhoto" ClassChatPhotos = "ChatPhotos" - ClassChatPermissions = "ChatPermissions" - ClassChatAdministratorRights = "ChatAdministratorRights" ClassUser = "User" - ClassBotInfo = "BotInfo" ClassUserFullInfo = "UserFullInfo" ClassUsers = "Users" ClassChatAdministrator = "ChatAdministrator" ClassChatAdministrators = "ChatAdministrators" + ClassChatPermissions = "ChatPermissions" ClassChatMember = "ChatMember" ClassChatMembers = "ChatMembers" ClassChatInviteLink = "ChatInviteLink" @@ -166,9 +163,7 @@ const ( ClassMessageSenders = "MessageSenders" ClassMessageForwardInfo = "MessageForwardInfo" ClassMessageReplyInfo = "MessageReplyInfo" - ClassMessageReaction = "MessageReaction" ClassMessageInteractionInfo = "MessageInteractionInfo" - ClassUnreadReaction = "UnreadReaction" ClassMessage = "Message" ClassMessages = "Messages" ClassFoundMessages = "FoundMessages" @@ -177,9 +172,6 @@ const ( ClassMessageCalendarDay = "MessageCalendarDay" ClassMessageCalendar = "MessageCalendar" ClassSponsoredMessage = "SponsoredMessage" - ClassFileDownload = "FileDownload" - ClassDownloadedFileCounts = "DownloadedFileCounts" - ClassFoundFileDownloads = "FoundFileDownloads" ClassChatNotificationSettings = "ChatNotificationSettings" ClassScopeNotificationSettings = "ScopeNotificationSettings" ClassDraftMessage = "DraftMessage" @@ -196,7 +188,6 @@ const ( ClassChatsNearby = "ChatsNearby" ClassKeyboardButton = "KeyboardButton" ClassInlineKeyboardButton = "InlineKeyboardButton" - ClassWebAppInfo = "WebAppInfo" ClassMessageThreadInfo = "MessageThreadInfo" ClassPageBlockCaption = "PageBlockCaption" ClassPageBlockListItem = "PageBlockListItem" @@ -210,13 +201,13 @@ const ( ClassBankCardActionOpenUrl = "BankCardActionOpenUrl" ClassBankCardInfo = "BankCardInfo" ClassAddress = "Address" - ClassThemeParameters = "ThemeParameters" ClassLabeledPricePart = "LabeledPricePart" ClassInvoice = "Invoice" ClassOrderInfo = "OrderInfo" ClassShippingOption = "ShippingOption" ClassSavedCredentials = "SavedCredentials" ClassPaymentsProviderStripe = "PaymentsProviderStripe" + ClassPaymentFormTheme = "PaymentFormTheme" ClassPaymentForm = "PaymentForm" ClassValidatedOrderInfo = "ValidatedOrderInfo" ClassPaymentResult = "PaymentResult" @@ -249,9 +240,6 @@ const ( ClassCallServer = "CallServer" ClassCallId = "CallId" ClassGroupCallId = "GroupCallId" - ClassGroupCallStream = "GroupCallStream" - ClassGroupCallStreams = "GroupCallStreams" - ClassRtmpUrl = "RtmpUrl" ClassGroupCallRecentSpeaker = "GroupCallRecentSpeaker" ClassGroupCall = "GroupCall" ClassGroupCallVideoSourceGroup = "GroupCallVideoSourceGroup" @@ -259,15 +247,8 @@ const ( ClassGroupCallParticipant = "GroupCallParticipant" ClassCall = "Call" ClassPhoneNumberAuthenticationSettings = "PhoneNumberAuthenticationSettings" - ClassAddedReaction = "AddedReaction" - ClassAddedReactions = "AddedReactions" - ClassAvailableReactions = "AvailableReactions" - ClassReaction = "Reaction" ClassAnimations = "Animations" ClassImportedContacts = "ImportedContacts" - ClassAttachmentMenuBotColor = "AttachmentMenuBotColor" - ClassAttachmentMenuBot = "AttachmentMenuBot" - ClassSentWebAppMessage = "SentWebAppMessage" ClassHttpUrl = "HttpUrl" ClassInlineQueryResults = "InlineQueryResults" ClassCallbackQueryAnswer = "CallbackQueryAnswer" @@ -287,8 +268,6 @@ const ( ClassThemeSettings = "ThemeSettings" ClassChatTheme = "ChatTheme" ClassHashtags = "Hashtags" - ClassNotificationSound = "NotificationSound" - ClassNotificationSounds = "NotificationSounds" ClassNotification = "Notification" ClassNotificationGroup = "NotificationGroup" ClassJsonObjectMember = "JsonObjectMember" @@ -317,7 +296,6 @@ const ( ClassDeepLinkInfo = "DeepLinkInfo" ClassProxy = "Proxy" ClassProxies = "Proxies" - ClassInputSticker = "InputSticker" ClassDateRange = "DateRange" ClassStatisticalValue = "StatisticalValue" ClassChatStatisticsMessageInteractionInfo = "ChatStatisticsMessageInteractionInfo" @@ -377,22 +355,17 @@ const ( TypePhotoSize = "photoSize" TypeMinithumbnail = "minithumbnail" TypeThumbnailFormatJpeg = "thumbnailFormatJpeg" - TypeThumbnailFormatGif = "thumbnailFormatGif" - TypeThumbnailFormatMpeg4 = "thumbnailFormatMpeg4" TypeThumbnailFormatPng = "thumbnailFormatPng" - TypeThumbnailFormatTgs = "thumbnailFormatTgs" - TypeThumbnailFormatWebm = "thumbnailFormatWebm" TypeThumbnailFormatWebp = "thumbnailFormatWebp" + TypeThumbnailFormatGif = "thumbnailFormatGif" + TypeThumbnailFormatTgs = "thumbnailFormatTgs" + TypeThumbnailFormatMpeg4 = "thumbnailFormatMpeg4" TypeThumbnail = "thumbnail" TypeMaskPointForehead = "maskPointForehead" TypeMaskPointEyes = "maskPointEyes" TypeMaskPointMouth = "maskPointMouth" TypeMaskPointChin = "maskPointChin" TypeMaskPosition = "maskPosition" - TypeStickerTypeStatic = "stickerTypeStatic" - TypeStickerTypeAnimated = "stickerTypeAnimated" - TypeStickerTypeVideo = "stickerTypeVideo" - TypeStickerTypeMask = "stickerTypeMask" TypeClosedVectorPath = "closedVectorPath" TypePollOption = "pollOption" TypePollTypeRegular = "pollTypeRegular" @@ -419,7 +392,6 @@ const ( TypeUserTypeUnknown = "userTypeUnknown" TypeBotCommand = "botCommand" TypeBotCommands = "botCommands" - TypeBotMenuButton = "botMenuButton" TypeChatLocation = "chatLocation" TypeAnimatedChatPhoto = "animatedChatPhoto" TypeChatPhoto = "chatPhoto" @@ -427,14 +399,12 @@ const ( TypeInputChatPhotoPrevious = "inputChatPhotoPrevious" TypeInputChatPhotoStatic = "inputChatPhotoStatic" TypeInputChatPhotoAnimation = "inputChatPhotoAnimation" - TypeChatPermissions = "chatPermissions" - TypeChatAdministratorRights = "chatAdministratorRights" TypeUser = "user" - TypeBotInfo = "botInfo" TypeUserFullInfo = "userFullInfo" TypeUsers = "users" TypeChatAdministrator = "chatAdministrator" TypeChatAdministrators = "chatAdministrators" + TypeChatPermissions = "chatPermissions" TypeChatMemberStatusCreator = "chatMemberStatusCreator" TypeChatMemberStatusAdministrator = "chatMemberStatusAdministrator" TypeChatMemberStatusMember = "chatMemberStatusMember" @@ -486,9 +456,7 @@ const ( TypeMessageForwardOriginMessageImport = "messageForwardOriginMessageImport" TypeMessageForwardInfo = "messageForwardInfo" TypeMessageReplyInfo = "messageReplyInfo" - TypeMessageReaction = "messageReaction" TypeMessageInteractionInfo = "messageInteractionInfo" - TypeUnreadReaction = "unreadReaction" TypeMessageSendingStatePending = "messageSendingStatePending" TypeMessageSendingStateFailed = "messageSendingStateFailed" TypeMessage = "message" @@ -499,9 +467,6 @@ const ( TypeMessageCalendarDay = "messageCalendarDay" TypeMessageCalendar = "messageCalendar" TypeSponsoredMessage = "sponsoredMessage" - TypeFileDownload = "fileDownload" - TypeDownloadedFileCounts = "downloadedFileCounts" - TypeFoundFileDownloads = "foundFileDownloads" TypeNotificationSettingsScopePrivateChats = "notificationSettingsScopePrivateChats" TypeNotificationSettingsScopeGroupChats = "notificationSettingsScopeGroupChats" TypeNotificationSettingsScopeChannelChats = "notificationSettingsScopeChannelChats" @@ -541,11 +506,9 @@ const ( TypeKeyboardButtonTypeRequestPhoneNumber = "keyboardButtonTypeRequestPhoneNumber" TypeKeyboardButtonTypeRequestLocation = "keyboardButtonTypeRequestLocation" TypeKeyboardButtonTypeRequestPoll = "keyboardButtonTypeRequestPoll" - TypeKeyboardButtonTypeWebApp = "keyboardButtonTypeWebApp" TypeKeyboardButton = "keyboardButton" TypeInlineKeyboardButtonTypeUrl = "inlineKeyboardButtonTypeUrl" TypeInlineKeyboardButtonTypeLoginUrl = "inlineKeyboardButtonTypeLoginUrl" - TypeInlineKeyboardButtonTypeWebApp = "inlineKeyboardButtonTypeWebApp" TypeInlineKeyboardButtonTypeCallback = "inlineKeyboardButtonTypeCallback" TypeInlineKeyboardButtonTypeCallbackWithPassword = "inlineKeyboardButtonTypeCallbackWithPassword" TypeInlineKeyboardButtonTypeCallbackGame = "inlineKeyboardButtonTypeCallbackGame" @@ -559,7 +522,6 @@ const ( TypeReplyMarkupInlineKeyboard = "replyMarkupInlineKeyboard" TypeLoginUrlInfoOpen = "loginUrlInfoOpen" TypeLoginUrlInfoRequestConfirmation = "loginUrlInfoRequestConfirmation" - TypeWebAppInfo = "webAppInfo" TypeMessageThreadInfo = "messageThreadInfo" TypeRichTextPlain = "richTextPlain" TypeRichTextBold = "richTextBold" @@ -625,7 +587,6 @@ const ( TypeBankCardActionOpenUrl = "bankCardActionOpenUrl" TypeBankCardInfo = "bankCardInfo" TypeAddress = "address" - TypeThemeParameters = "themeParameters" TypeLabeledPricePart = "labeledPricePart" TypeInvoice = "invoice" TypeOrderInfo = "orderInfo" @@ -636,6 +597,7 @@ const ( TypeInputCredentialsApplePay = "inputCredentialsApplePay" TypeInputCredentialsGooglePay = "inputCredentialsGooglePay" TypePaymentsProviderStripe = "paymentsProviderStripe" + TypePaymentFormTheme = "paymentFormTheme" TypePaymentForm = "paymentForm" TypeValidatedOrderInfo = "validatedOrderInfo" TypePaymentResult = "paymentResult" @@ -758,8 +720,6 @@ const ( TypeMessagePaymentSuccessfulBot = "messagePaymentSuccessfulBot" TypeMessageContactRegistered = "messageContactRegistered" TypeMessageWebsiteConnected = "messageWebsiteConnected" - TypeMessageWebAppDataSent = "messageWebAppDataSent" - TypeMessageWebAppDataReceived = "messageWebAppDataReceived" TypeMessagePassportDataSent = "messagePassportDataSent" TypeMessagePassportDataReceived = "messagePassportDataReceived" TypeMessageProximityAlertTriggered = "messageProximityAlertTriggered" @@ -776,7 +736,6 @@ const ( TypeTextEntityTypeItalic = "textEntityTypeItalic" TypeTextEntityTypeUnderline = "textEntityTypeUnderline" TypeTextEntityTypeStrikethrough = "textEntityTypeStrikethrough" - TypeTextEntityTypeSpoiler = "textEntityTypeSpoiler" TypeTextEntityTypeCode = "textEntityTypeCode" TypeTextEntityTypePre = "textEntityTypePre" TypeTextEntityTypePreCode = "textEntityTypePreCode" @@ -819,7 +778,6 @@ const ( TypeSearchMessagesFilterVoiceAndVideoNote = "searchMessagesFilterVoiceAndVideoNote" TypeSearchMessagesFilterMention = "searchMessagesFilterMention" TypeSearchMessagesFilterUnreadMention = "searchMessagesFilterUnreadMention" - TypeSearchMessagesFilterUnreadReaction = "searchMessagesFilterUnreadReaction" TypeSearchMessagesFilterFailedToSend = "searchMessagesFilterFailedToSend" TypeSearchMessagesFilterPinned = "searchMessagesFilterPinned" TypeChatActionTyping = "chatActionTyping" @@ -868,9 +826,6 @@ const ( TypeGroupCallVideoQualityThumbnail = "groupCallVideoQualityThumbnail" TypeGroupCallVideoQualityMedium = "groupCallVideoQualityMedium" TypeGroupCallVideoQualityFull = "groupCallVideoQualityFull" - TypeGroupCallStream = "groupCallStream" - TypeGroupCallStreams = "groupCallStreams" - TypeRtmpUrl = "rtmpUrl" TypeGroupCallRecentSpeaker = "groupCallRecentSpeaker" TypeGroupCall = "groupCall" TypeGroupCallVideoSourceGroup = "groupCallVideoSourceGroup" @@ -887,17 +842,10 @@ const ( TypeCallProblemPixelatedVideo = "callProblemPixelatedVideo" TypeCall = "call" TypePhoneNumberAuthenticationSettings = "phoneNumberAuthenticationSettings" - TypeAddedReaction = "addedReaction" - TypeAddedReactions = "addedReactions" - TypeAvailableReactions = "availableReactions" - TypeReaction = "reaction" TypeAnimations = "animations" TypeDiceStickersRegular = "diceStickersRegular" TypeDiceStickersSlotMachine = "diceStickersSlotMachine" TypeImportedContacts = "importedContacts" - TypeAttachmentMenuBotColor = "attachmentMenuBotColor" - TypeAttachmentMenuBot = "attachmentMenuBot" - TypeSentWebAppMessage = "sentWebAppMessage" TypeHttpUrl = "httpUrl" TypeInputInlineQueryResultAnimation = "inputInlineQueryResultAnimation" TypeInputInlineQueryResultArticle = "inputInlineQueryResultArticle" @@ -933,39 +881,38 @@ const ( TypeGameHighScores = "gameHighScores" TypeChatEventMessageEdited = "chatEventMessageEdited" TypeChatEventMessageDeleted = "chatEventMessageDeleted" + TypeChatEventPollStopped = "chatEventPollStopped" TypeChatEventMessagePinned = "chatEventMessagePinned" TypeChatEventMessageUnpinned = "chatEventMessageUnpinned" - TypeChatEventPollStopped = "chatEventPollStopped" TypeChatEventMemberJoined = "chatEventMemberJoined" TypeChatEventMemberJoinedByInviteLink = "chatEventMemberJoinedByInviteLink" TypeChatEventMemberJoinedByRequest = "chatEventMemberJoinedByRequest" - TypeChatEventMemberInvited = "chatEventMemberInvited" TypeChatEventMemberLeft = "chatEventMemberLeft" + TypeChatEventMemberInvited = "chatEventMemberInvited" TypeChatEventMemberPromoted = "chatEventMemberPromoted" TypeChatEventMemberRestricted = "chatEventMemberRestricted" - TypeChatEventAvailableReactionsChanged = "chatEventAvailableReactionsChanged" - TypeChatEventDescriptionChanged = "chatEventDescriptionChanged" - TypeChatEventLinkedChatChanged = "chatEventLinkedChatChanged" - TypeChatEventLocationChanged = "chatEventLocationChanged" - TypeChatEventMessageTtlChanged = "chatEventMessageTtlChanged" - TypeChatEventPermissionsChanged = "chatEventPermissionsChanged" - TypeChatEventPhotoChanged = "chatEventPhotoChanged" - TypeChatEventSlowModeDelayChanged = "chatEventSlowModeDelayChanged" - TypeChatEventStickerSetChanged = "chatEventStickerSetChanged" TypeChatEventTitleChanged = "chatEventTitleChanged" + TypeChatEventPermissionsChanged = "chatEventPermissionsChanged" + TypeChatEventDescriptionChanged = "chatEventDescriptionChanged" TypeChatEventUsernameChanged = "chatEventUsernameChanged" - TypeChatEventHasProtectedContentToggled = "chatEventHasProtectedContentToggled" + TypeChatEventPhotoChanged = "chatEventPhotoChanged" TypeChatEventInvitesToggled = "chatEventInvitesToggled" - TypeChatEventIsAllHistoryAvailableToggled = "chatEventIsAllHistoryAvailableToggled" + TypeChatEventLinkedChatChanged = "chatEventLinkedChatChanged" + TypeChatEventSlowModeDelayChanged = "chatEventSlowModeDelayChanged" + TypeChatEventMessageTtlChanged = "chatEventMessageTtlChanged" TypeChatEventSignMessagesToggled = "chatEventSignMessagesToggled" + TypeChatEventHasProtectedContentToggled = "chatEventHasProtectedContentToggled" + TypeChatEventStickerSetChanged = "chatEventStickerSetChanged" + TypeChatEventLocationChanged = "chatEventLocationChanged" + TypeChatEventIsAllHistoryAvailableToggled = "chatEventIsAllHistoryAvailableToggled" TypeChatEventInviteLinkEdited = "chatEventInviteLinkEdited" TypeChatEventInviteLinkRevoked = "chatEventInviteLinkRevoked" TypeChatEventInviteLinkDeleted = "chatEventInviteLinkDeleted" TypeChatEventVideoChatCreated = "chatEventVideoChatCreated" TypeChatEventVideoChatEnded = "chatEventVideoChatEnded" - TypeChatEventVideoChatMuteNewParticipantsToggled = "chatEventVideoChatMuteNewParticipantsToggled" TypeChatEventVideoChatParticipantIsMutedToggled = "chatEventVideoChatParticipantIsMutedToggled" TypeChatEventVideoChatParticipantVolumeLevelChanged = "chatEventVideoChatParticipantVolumeLevelChanged" + TypeChatEventVideoChatMuteNewParticipantsToggled = "chatEventVideoChatMuteNewParticipantsToggled" TypeChatEvent = "chatEvent" TypeChatEvents = "chatEvents" TypeChatEventLogFilters = "chatEventLogFilters" @@ -1055,8 +1002,6 @@ const ( TypeNotificationGroupTypeMentions = "notificationGroupTypeMentions" TypeNotificationGroupTypeSecretChat = "notificationGroupTypeSecretChat" TypeNotificationGroupTypeCalls = "notificationGroupTypeCalls" - TypeNotificationSound = "notificationSound" - TypeNotificationSounds = "notificationSounds" TypeNotification = "notification" TypeNotificationGroup = "notificationGroup" TypeOptionValueBoolean = "optionValueBoolean" @@ -1099,27 +1044,21 @@ const ( TypeChatReportReasonCopyright = "chatReportReasonCopyright" TypeChatReportReasonUnrelatedLocation = "chatReportReasonUnrelatedLocation" TypeChatReportReasonFake = "chatReportReasonFake" - TypeChatReportReasonIllegalDrugs = "chatReportReasonIllegalDrugs" - TypeChatReportReasonPersonalDetails = "chatReportReasonPersonalDetails" TypeChatReportReasonCustom = "chatReportReasonCustom" TypeInternalLinkTypeActiveSessions = "internalLinkTypeActiveSessions" - TypeInternalLinkTypeAttachmentMenuBot = "internalLinkTypeAttachmentMenuBot" TypeInternalLinkTypeAuthenticationCode = "internalLinkTypeAuthenticationCode" TypeInternalLinkTypeBackground = "internalLinkTypeBackground" TypeInternalLinkTypeBotStart = "internalLinkTypeBotStart" TypeInternalLinkTypeBotStartInGroup = "internalLinkTypeBotStartInGroup" - TypeInternalLinkTypeBotAddToChannel = "internalLinkTypeBotAddToChannel" TypeInternalLinkTypeChangePhoneNumber = "internalLinkTypeChangePhoneNumber" TypeInternalLinkTypeChatInvite = "internalLinkTypeChatInvite" TypeInternalLinkTypeFilterSettings = "internalLinkTypeFilterSettings" TypeInternalLinkTypeGame = "internalLinkTypeGame" TypeInternalLinkTypeLanguagePack = "internalLinkTypeLanguagePack" - TypeInternalLinkTypeLanguageSettings = "internalLinkTypeLanguageSettings" TypeInternalLinkTypeMessage = "internalLinkTypeMessage" TypeInternalLinkTypeMessageDraft = "internalLinkTypeMessageDraft" TypeInternalLinkTypePassportDataRequest = "internalLinkTypePassportDataRequest" TypeInternalLinkTypePhoneNumberConfirmation = "internalLinkTypePhoneNumberConfirmation" - TypeInternalLinkTypePrivacyAndSecuritySettings = "internalLinkTypePrivacyAndSecuritySettings" TypeInternalLinkTypeProxy = "internalLinkTypeProxy" TypeInternalLinkTypePublicChat = "internalLinkTypePublicChat" TypeInternalLinkTypeQrCodeAuthentication = "internalLinkTypeQrCodeAuthentication" @@ -1129,7 +1068,6 @@ const ( TypeInternalLinkTypeThemeSettings = "internalLinkTypeThemeSettings" TypeInternalLinkTypeUnknownDeepLink = "internalLinkTypeUnknownDeepLink" TypeInternalLinkTypeUnsupportedProxy = "internalLinkTypeUnsupportedProxy" - TypeInternalLinkTypeUserPhoneNumber = "internalLinkTypeUserPhoneNumber" TypeInternalLinkTypeVideoChat = "internalLinkTypeVideoChat" TypeMessageLink = "messageLink" TypeMessageLinkInfo = "messageLinkInfo" @@ -1138,7 +1076,6 @@ const ( TypeFileTypeAnimation = "fileTypeAnimation" TypeFileTypeAudio = "fileTypeAudio" TypeFileTypeDocument = "fileTypeDocument" - TypeFileTypeNotificationSound = "fileTypeNotificationSound" TypeFileTypePhoto = "fileTypePhoto" TypeFileTypeProfilePhoto = "fileTypeProfilePhoto" TypeFileTypeSecret = "fileTypeSecret" @@ -1201,7 +1138,8 @@ const ( TypeProxyTypeMtproto = "proxyTypeMtproto" TypeProxy = "proxy" TypeProxies = "proxies" - TypeInputSticker = "inputSticker" + TypeInputStickerStatic = "inputStickerStatic" + TypeInputStickerAnimated = "inputStickerAnimated" TypeDateRange = "dateRange" TypeStatisticalValue = "statisticalValue" TypeStatisticalGraphData = "statisticalGraphData" @@ -1235,7 +1173,6 @@ const ( TypeUpdateMessageInteractionInfo = "updateMessageInteractionInfo" TypeUpdateMessageContentOpened = "updateMessageContentOpened" TypeUpdateMessageMentionRead = "updateMessageMentionRead" - TypeUpdateMessageUnreadReactions = "updateMessageUnreadReactions" TypeUpdateMessageLiveLocationViewed = "updateMessageLiveLocationViewed" TypeUpdateNewChat = "updateNewChat" TypeUpdateChatTitle = "updateChatTitle" @@ -1246,7 +1183,6 @@ const ( TypeUpdateChatReadInbox = "updateChatReadInbox" TypeUpdateChatReadOutbox = "updateChatReadOutbox" TypeUpdateChatActionBar = "updateChatActionBar" - TypeUpdateChatAvailableReactions = "updateChatAvailableReactions" TypeUpdateChatDraftMessage = "updateChatDraftMessage" TypeUpdateChatMessageSender = "updateChatMessageSender" TypeUpdateChatMessageTtl = "updateChatMessageTtl" @@ -1255,7 +1191,6 @@ const ( TypeUpdateChatReplyMarkup = "updateChatReplyMarkup" TypeUpdateChatTheme = "updateChatTheme" TypeUpdateChatUnreadMentionCount = "updateChatUnreadMentionCount" - TypeUpdateChatUnreadReactionCount = "updateChatUnreadReactionCount" TypeUpdateChatVideoChat = "updateChatVideoChat" TypeUpdateChatDefaultDisableNotification = "updateChatDefaultDisableNotification" TypeUpdateChatHasProtectedContent = "updateChatHasProtectedContent" @@ -1283,10 +1218,6 @@ const ( TypeUpdateFile = "updateFile" TypeUpdateFileGenerationStart = "updateFileGenerationStart" TypeUpdateFileGenerationStop = "updateFileGenerationStop" - TypeUpdateFileDownloads = "updateFileDownloads" - TypeUpdateFileAddedToDownloads = "updateFileAddedToDownloads" - TypeUpdateFileDownload = "updateFileDownload" - TypeUpdateFileRemovedFromDownloads = "updateFileRemovedFromDownloads" TypeUpdateCall = "updateCall" TypeUpdateGroupCall = "updateGroupCall" TypeUpdateGroupCallParticipant = "updateGroupCallParticipant" @@ -1301,16 +1232,12 @@ const ( TypeUpdateRecentStickers = "updateRecentStickers" TypeUpdateFavoriteStickers = "updateFavoriteStickers" TypeUpdateSavedAnimations = "updateSavedAnimations" - TypeUpdateSavedNotificationSounds = "updateSavedNotificationSounds" TypeUpdateSelectedBackground = "updateSelectedBackground" TypeUpdateChatThemes = "updateChatThemes" TypeUpdateLanguagePackStrings = "updateLanguagePackStrings" TypeUpdateConnectionState = "updateConnectionState" TypeUpdateTermsOfService = "updateTermsOfService" TypeUpdateUsersNearby = "updateUsersNearby" - TypeUpdateAttachmentMenuBots = "updateAttachmentMenuBots" - TypeUpdateWebAppMessageSent = "updateWebAppMessageSent" - TypeUpdateReactions = "updateReactions" TypeUpdateDiceEmojis = "updateDiceEmojis" TypeUpdateAnimatedEmojiMessageClicked = "updateAnimatedEmojiMessageClicked" TypeUpdateAnimationSearchParameters = "updateAnimationSearchParameters" @@ -1357,7 +1284,7 @@ type InputFile interface { InputFileType() string } -// Describes format of a thumbnail +// Describes format of the thumbnail type ThumbnailFormat interface { ThumbnailFormatType() string } @@ -1367,11 +1294,6 @@ type MaskPoint interface { MaskPointType() string } -// Describes type of a sticker -type StickerType interface { - StickerTypeType() string -} - // Describes the type of a poll type PollType interface { PollTypeType() string @@ -1747,6 +1669,11 @@ type ProxyType interface { ProxyTypeType() string } +// Describes a sticker that needs to be added to a sticker set +type InputSticker interface { + InputStickerType() string +} + // Describes a statistical graph type StatisticalGraph interface { StatisticalGraphType() string @@ -2166,7 +2093,7 @@ type FormattedText struct { meta // The text Text string `json:"text"` - // Entities contained in the text. Entities can be nested, but must not mutually intersect with each other. Pre, Code and PreCode entities can't contain other entities. Bold, Italic, Underline, Strikethrough, and Spoiler entities can contain and to be contained in all other entities. All other entities can't contain each other + // Entities contained in the text. Entities can be nested, but must not mutually intersect with each other. Pre, Code and PreCode entities can't contain other entities. Bold, Italic, Underline and Strikethrough entities can contain and to be contained in all other entities. All other entities can't contain each other Entities []*TextEntity `json:"entities"` } @@ -2191,7 +2118,7 @@ type TermsOfService struct { meta // Text of the terms of service Text *FormattedText `json:"text"` - // The minimum age of a user to be able to accept the terms; 0 if age isn't restricted + // The minimum age of a user to be able to accept the terms; 0 if any MinUserAge int32 `json:"min_user_age"` // True, if a blocking popup with terms of service must be shown to the user ShowPopup bool `json:"show_popup"` @@ -2623,7 +2550,7 @@ func (*LocalFile) GetType() string { // Represents a remote file type RemoteFile struct { meta - // Remote file identifier; may be empty. Can be used by the current user across application restarts or even from other devices. Uniquely identifies a file, but a file can have a lot of different valid identifiers. If the ID starts with "http://" or "https://", it represents the HTTP URL of the file. TDLib is currently unable to download files if only their URL is known. If downloadFile/addFileToDownloads is called on such a file or if it is sent to a secret chat, TDLib starts a file generation process by sending updateFileGenerationStart to the application with the HTTP URL in the original_path and "#url#" as the conversion string. Application must generate the file by downloading it to the specified location + // Remote file identifier; may be empty. Can be used by the current user across application restarts or even from other devices. Uniquely identifies a file, but a file can have a lot of different valid identifiers. If the ID starts with "http://" or "https://", it represents the HTTP URL of the file. TDLib is currently unable to download files if only their URL is known. If downloadFile is called on such a file or if it is sent to a secret chat, TDLib starts a file generation process by sending updateFileGenerationStart to the application with the HTTP URL in the original_path and "#url#" as the conversion string. Application must generate the file by downloading it to the specified location Id string `json:"id"` // Unique file identifier; may be empty if unknown. The unique file identifier which is the same for the same file even for different users and is persistent over time UniqueId string `json:"unique_id"` @@ -2877,56 +2804,6 @@ func (*ThumbnailFormatJpeg) ThumbnailFormatType() string { return TypeThumbnailFormatJpeg } -// The thumbnail is in static GIF format. It will be used only for some bot inline results -type ThumbnailFormatGif struct { - meta -} - -func (entity *ThumbnailFormatGif) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ThumbnailFormatGif - - return json.Marshal((*stub)(entity)) -} - -func (*ThumbnailFormatGif) GetClass() string { - return ClassThumbnailFormat -} - -func (*ThumbnailFormatGif) GetType() string { - return TypeThumbnailFormatGif -} - -func (*ThumbnailFormatGif) ThumbnailFormatType() string { - return TypeThumbnailFormatGif -} - -// The thumbnail is in MPEG4 format. It will be used only for some animations and videos -type ThumbnailFormatMpeg4 struct { - meta -} - -func (entity *ThumbnailFormatMpeg4) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ThumbnailFormatMpeg4 - - return json.Marshal((*stub)(entity)) -} - -func (*ThumbnailFormatMpeg4) GetClass() string { - return ClassThumbnailFormat -} - -func (*ThumbnailFormatMpeg4) GetType() string { - return TypeThumbnailFormatMpeg4 -} - -func (*ThumbnailFormatMpeg4) ThumbnailFormatType() string { - return TypeThumbnailFormatMpeg4 -} - // The thumbnail is in PNG format. It will be used only for background patterns type ThumbnailFormatPng struct { meta @@ -2952,7 +2829,57 @@ func (*ThumbnailFormatPng) ThumbnailFormatType() string { return TypeThumbnailFormatPng } -// The thumbnail is in TGS format. It will be used only for TGS sticker sets +// The thumbnail is in WEBP format. It will be used only for some stickers +type ThumbnailFormatWebp struct { + meta +} + +func (entity *ThumbnailFormatWebp) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub ThumbnailFormatWebp + + return json.Marshal((*stub)(entity)) +} + +func (*ThumbnailFormatWebp) GetClass() string { + return ClassThumbnailFormat +} + +func (*ThumbnailFormatWebp) GetType() string { + return TypeThumbnailFormatWebp +} + +func (*ThumbnailFormatWebp) ThumbnailFormatType() string { + return TypeThumbnailFormatWebp +} + +// The thumbnail is in static GIF format. It will be used only for some bot inline results +type ThumbnailFormatGif struct { + meta +} + +func (entity *ThumbnailFormatGif) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub ThumbnailFormatGif + + return json.Marshal((*stub)(entity)) +} + +func (*ThumbnailFormatGif) GetClass() string { + return ClassThumbnailFormat +} + +func (*ThumbnailFormatGif) GetType() string { + return TypeThumbnailFormatGif +} + +func (*ThumbnailFormatGif) ThumbnailFormatType() string { + return TypeThumbnailFormatGif +} + +// The thumbnail is in TGS format. It will be used only for animated sticker sets type ThumbnailFormatTgs struct { meta } @@ -2977,54 +2904,29 @@ func (*ThumbnailFormatTgs) ThumbnailFormatType() string { return TypeThumbnailFormatTgs } -// The thumbnail is in WEBM format. It will be used only for WEBM sticker sets -type ThumbnailFormatWebm struct { +// The thumbnail is in MPEG4 format. It will be used only for some animations and videos +type ThumbnailFormatMpeg4 struct { meta } -func (entity *ThumbnailFormatWebm) MarshalJSON() ([]byte, error) { +func (entity *ThumbnailFormatMpeg4) MarshalJSON() ([]byte, error) { entity.meta.Type = entity.GetType() - type stub ThumbnailFormatWebm + type stub ThumbnailFormatMpeg4 return json.Marshal((*stub)(entity)) } -func (*ThumbnailFormatWebm) GetClass() string { +func (*ThumbnailFormatMpeg4) GetClass() string { return ClassThumbnailFormat } -func (*ThumbnailFormatWebm) GetType() string { - return TypeThumbnailFormatWebm +func (*ThumbnailFormatMpeg4) GetType() string { + return TypeThumbnailFormatMpeg4 } -func (*ThumbnailFormatWebm) ThumbnailFormatType() string { - return TypeThumbnailFormatWebm -} - -// The thumbnail is in WEBP format. It will be used only for some stickers -type ThumbnailFormatWebp struct { - meta -} - -func (entity *ThumbnailFormatWebp) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ThumbnailFormatWebp - - return json.Marshal((*stub)(entity)) -} - -func (*ThumbnailFormatWebp) GetClass() string { - return ClassThumbnailFormat -} - -func (*ThumbnailFormatWebp) GetType() string { - return TypeThumbnailFormatWebp -} - -func (*ThumbnailFormatWebp) ThumbnailFormatType() string { - return TypeThumbnailFormatWebp +func (*ThumbnailFormatMpeg4) ThumbnailFormatType() string { + return TypeThumbnailFormatMpeg4 } // Represents a thumbnail @@ -3231,108 +3133,6 @@ func (maskPosition *MaskPosition) UnmarshalJSON(data []byte) error { return nil } -// The sticker is an image in WEBP format -type StickerTypeStatic struct { - meta -} - -func (entity *StickerTypeStatic) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub StickerTypeStatic - - return json.Marshal((*stub)(entity)) -} - -func (*StickerTypeStatic) GetClass() string { - return ClassStickerType -} - -func (*StickerTypeStatic) GetType() string { - return TypeStickerTypeStatic -} - -func (*StickerTypeStatic) StickerTypeType() string { - return TypeStickerTypeStatic -} - -// The sticker is an animation in TGS format -type StickerTypeAnimated struct { - meta -} - -func (entity *StickerTypeAnimated) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub StickerTypeAnimated - - return json.Marshal((*stub)(entity)) -} - -func (*StickerTypeAnimated) GetClass() string { - return ClassStickerType -} - -func (*StickerTypeAnimated) GetType() string { - return TypeStickerTypeAnimated -} - -func (*StickerTypeAnimated) StickerTypeType() string { - return TypeStickerTypeAnimated -} - -// The sticker is a video in WEBM format -type StickerTypeVideo struct { - meta -} - -func (entity *StickerTypeVideo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub StickerTypeVideo - - return json.Marshal((*stub)(entity)) -} - -func (*StickerTypeVideo) GetClass() string { - return ClassStickerType -} - -func (*StickerTypeVideo) GetType() string { - return TypeStickerTypeVideo -} - -func (*StickerTypeVideo) StickerTypeType() string { - return TypeStickerTypeVideo -} - -// The sticker is a mask in WEBP format to be placed on photos or videos -type StickerTypeMask struct { - meta - // Position where the mask is placed; may be null - MaskPosition *MaskPosition `json:"mask_position"` -} - -func (entity *StickerTypeMask) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub StickerTypeMask - - return json.Marshal((*stub)(entity)) -} - -func (*StickerTypeMask) GetClass() string { - return ClassStickerType -} - -func (*StickerTypeMask) GetType() string { - return TypeStickerTypeMask -} - -func (*StickerTypeMask) StickerTypeType() string { - return TypeStickerTypeMask -} - // Represents a closed vector path. The path begins at the end point of the last command type ClosedVectorPath struct { meta @@ -3604,8 +3404,12 @@ type Sticker struct { Height int32 `json:"height"` // Emoji corresponding to the sticker Emoji string `json:"emoji"` - // Sticker type - Type StickerType `json:"type"` + // True, if the sticker is an animated sticker in TGS format + IsAnimated bool `json:"is_animated"` + // True, if the sticker is a mask + IsMask bool `json:"is_mask"` + // Position where the mask is placed; may be null + MaskPosition *MaskPosition `json:"mask_position"` // Sticker's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner Outline []*ClosedVectorPath `json:"outline"` // Sticker thumbnail in WEBP or JPEG format; may be null @@ -3630,37 +3434,6 @@ func (*Sticker) GetType() string { return TypeSticker } -func (sticker *Sticker) UnmarshalJSON(data []byte) error { - var tmp struct { - SetId JsonInt64 `json:"set_id"` - Width int32 `json:"width"` - Height int32 `json:"height"` - Emoji string `json:"emoji"` - Type json.RawMessage `json:"type"` - Outline []*ClosedVectorPath `json:"outline"` - Thumbnail *Thumbnail `json:"thumbnail"` - Sticker *File `json:"sticker"` - } - - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } - - sticker.SetId = tmp.SetId - sticker.Width = tmp.Width - sticker.Height = tmp.Height - sticker.Emoji = tmp.Emoji - sticker.Outline = tmp.Outline - sticker.Thumbnail = tmp.Thumbnail - sticker.Sticker = tmp.Sticker - - fieldType, _ := UnmarshalStickerType(tmp.Type) - sticker.Type = fieldType - - return nil -} - // Describes a video file type Video struct { meta @@ -3769,7 +3542,7 @@ type AnimatedEmoji struct { Sticker *Sticker `json:"sticker"` // Emoji modifier fitzpatrick type; 0-6; 0 if none FitzpatrickType int32 `json:"fitzpatrick_type"` - // File containing the sound to be played when the animated emoji is clicked; may be null. The sound is encoded with the Opus codec, and stored inside an OGG container + // File containing the sound to be played when the animated emoji is clicked if any; may be null. The sound is encoded with the Opus codec, and stored inside an OGG container Sound *File `json:"sound"` } @@ -4114,8 +3887,6 @@ type UserTypeBot struct { InlineQueryPlaceholder string `json:"inline_query_placeholder"` // True, if the location of the user is expected to be sent with every inline query to this bot NeedLocation bool `json:"need_location"` - // True, if the bot can be added to attachment menu - CanBeAddedToAttachmentMenu bool `json:"can_be_added_to_attachment_menu"` } func (entity *UserTypeBot) MarshalJSON() ([]byte, error) { @@ -4213,31 +3984,6 @@ func (*BotCommands) GetType() string { return TypeBotCommands } -// Describes a button to be shown instead of bot commands menu button -type BotMenuButton struct { - meta - // Text of the button - Text string `json:"text"` - // URL to be passed to openWebApp - Url string `json:"url"` -} - -func (entity *BotMenuButton) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub BotMenuButton - - return json.Marshal((*stub)(entity)) -} - -func (*BotMenuButton) GetClass() string { - return ClassBotMenuButton -} - -func (*BotMenuButton) GetType() string { - return TypeBotMenuButton -} - // Represents a location to which a chat is connected type ChatLocation struct { meta @@ -4464,86 +4210,6 @@ func (inputChatPhotoAnimation *InputChatPhotoAnimation) UnmarshalJSON(data []byt return nil } -// Describes actions that a user is allowed to take in a chat -type ChatPermissions struct { - meta - // True, if the user can send text messages, contacts, locations, and venues - CanSendMessages bool `json:"can_send_messages"` - // True, if the user can send audio files, documents, photos, videos, video notes, and voice notes. Implies can_send_messages permissions - CanSendMediaMessages bool `json:"can_send_media_messages"` - // True, if the user can send polls. Implies can_send_messages permissions - CanSendPolls bool `json:"can_send_polls"` - // True, if the user can send animations, games, stickers, and dice and use inline bots. Implies can_send_messages permissions - CanSendOtherMessages bool `json:"can_send_other_messages"` - // True, if the user may add a web page preview to their messages. Implies can_send_messages permissions - CanAddWebPagePreviews bool `json:"can_add_web_page_previews"` - // True, if the user can change the chat title, photo, and other settings - CanChangeInfo bool `json:"can_change_info"` - // True, if the user can invite new users to the chat - CanInviteUsers bool `json:"can_invite_users"` - // True, if the user can pin messages - CanPinMessages bool `json:"can_pin_messages"` -} - -func (entity *ChatPermissions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ChatPermissions - - return json.Marshal((*stub)(entity)) -} - -func (*ChatPermissions) GetClass() string { - return ClassChatPermissions -} - -func (*ChatPermissions) GetType() string { - return TypeChatPermissions -} - -// Describes rights of the administrator -type ChatAdministratorRights struct { - meta - // True, if the administrator can get chat event log, get chat statistics, get message statistics in channels, get channel members, see anonymous administrators in supergroups and ignore slow mode. Implied by any other privilege; applicable to supergroups and channels only - CanManageChat bool `json:"can_manage_chat"` - // True, if the administrator can change the chat title, photo, and other settings - CanChangeInfo bool `json:"can_change_info"` - // True, if the administrator can create channel posts; applicable to channels only - CanPostMessages bool `json:"can_post_messages"` - // True, if the administrator can edit messages of other users and pin messages; applicable to channels only - CanEditMessages bool `json:"can_edit_messages"` - // True, if the administrator can delete messages of other users - CanDeleteMessages bool `json:"can_delete_messages"` - // True, if the administrator can invite new users to the chat - CanInviteUsers bool `json:"can_invite_users"` - // True, if the administrator can restrict, ban, or unban chat members; always true for channels - CanRestrictMembers bool `json:"can_restrict_members"` - // True, if the administrator can pin messages; applicable to basic groups and supergroups only - CanPinMessages bool `json:"can_pin_messages"` - // True, if the administrator can add new administrators with a subset of their own privileges or demote administrators that were directly or indirectly promoted by them - CanPromoteMembers bool `json:"can_promote_members"` - // True, if the administrator can manage video chats - CanManageVideoChats bool `json:"can_manage_video_chats"` - // True, if the administrator isn't shown in the chat member list and sends messages anonymously; applicable to supergroups only - IsAnonymous bool `json:"is_anonymous"` -} - -func (entity *ChatAdministratorRights) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ChatAdministratorRights - - return json.Marshal((*stub)(entity)) -} - -func (*ChatAdministratorRights) GetClass() string { - return ClassChatAdministratorRights -} - -func (*ChatAdministratorRights) GetType() string { - return TypeChatAdministratorRights -} - // Represents a user type User struct { meta @@ -4575,7 +4241,7 @@ type User struct { IsScam bool `json:"is_scam"` // True, if many users reported this user as a fake account IsFake bool `json:"is_fake"` - // If false, the user is inaccessible, and the only information known about the user is inside this class. Identifier of the user can't be passed to any method except GetUser + // If false, the user is inaccessible, and the only information known about the user is inside this class. It can't be passed to any method except GetUser HaveAccess bool `json:"have_access"` // Type of the user Type UserType `json:"type"` @@ -4650,39 +4316,6 @@ func (user *User) UnmarshalJSON(data []byte) error { return nil } -// Contains information about a bot -type BotInfo struct { - meta - // The text that is shown on the bot's profile page and is sent together with the link when users share the bot - ShareText string `json:"share_text"` - // The text shown in the chat with the bot if the chat is empty - Description string `json:"description"` - // Information about a button to show instead of the bot commands menu button; may be null if ordinary bot commands menu must be shown - MenuButton *BotMenuButton `json:"menu_button"` - // List of the bot commands - Commands []*BotCommand `json:"commands"` - // Default administrator rights for adding the bot to basic group and supergroup chats; may be null - DefaultGroupAdministratorRights *ChatAdministratorRights `json:"default_group_administrator_rights"` - // Default administrator rights for adding the bot to channels; may be null - DefaultChannelAdministratorRights *ChatAdministratorRights `json:"default_channel_administrator_rights"` -} - -func (entity *BotInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub BotInfo - - return json.Marshal((*stub)(entity)) -} - -func (*BotInfo) GetClass() string { - return ClassBotInfo -} - -func (*BotInfo) GetType() string { - return TypeBotInfo -} - // Contains full information about a user type UserFullInfo struct { meta @@ -4702,10 +4335,14 @@ type UserFullInfo struct { NeedPhoneNumberPrivacyException bool `json:"need_phone_number_privacy_exception"` // A short user bio Bio string `json:"bio"` + // For bots, the text that is shown on the bot's profile page and is sent together with the link when users share the bot + ShareText string `json:"share_text"` + // For bots, the text shown in the chat with the bot if the chat is empty + Description string `json:"description"` // Number of group chats where both the other user and the current user are a member; 0 for the current user GroupInCommonCount int32 `json:"group_in_common_count"` - // For bots, information about the bot; may be null - BotInfo *BotInfo `json:"bot_info"` + // For bots, list of the bot commands + Commands []*BotCommand `json:"commands"` } func (entity *UserFullInfo) MarshalJSON() ([]byte, error) { @@ -4727,7 +4364,7 @@ func (*UserFullInfo) GetType() string { // Represents a list of users type Users struct { meta - // Approximate total number of users found + // Approximate total count of users found TotalCount int32 `json:"total_count"` // A list of user identifiers UserIds []int64 `json:"user_ids"` @@ -4799,6 +4436,43 @@ func (*ChatAdministrators) GetType() string { return TypeChatAdministrators } +// Describes actions that a user is allowed to take in a chat +type ChatPermissions struct { + meta + // True, if the user can send text messages, contacts, locations, and venues + CanSendMessages bool `json:"can_send_messages"` + // True, if the user can send audio files, documents, photos, videos, video notes, and voice notes. Implies can_send_messages permissions + CanSendMediaMessages bool `json:"can_send_media_messages"` + // True, if the user can send polls. Implies can_send_messages permissions + CanSendPolls bool `json:"can_send_polls"` + // True, if the user can send animations, games, stickers, and dice and use inline bots. Implies can_send_messages permissions + CanSendOtherMessages bool `json:"can_send_other_messages"` + // True, if the user may add a web page preview to their messages. Implies can_send_messages permissions + CanAddWebPagePreviews bool `json:"can_add_web_page_previews"` + // True, if the user can change the chat title, photo, and other settings + CanChangeInfo bool `json:"can_change_info"` + // True, if the user can invite new users to the chat + CanInviteUsers bool `json:"can_invite_users"` + // True, if the user can pin messages + CanPinMessages bool `json:"can_pin_messages"` +} + +func (entity *ChatPermissions) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub ChatPermissions + + return json.Marshal((*stub)(entity)) +} + +func (*ChatPermissions) GetClass() string { + return ClassChatPermissions +} + +func (*ChatPermissions) GetType() string { + return TypeChatPermissions +} + // The user is the owner of the chat and has all the administrator privileges type ChatMemberStatusCreator struct { meta @@ -4837,8 +4511,28 @@ type ChatMemberStatusAdministrator struct { CustomTitle string `json:"custom_title"` // True, if the current user can edit the administrator privileges for the called user CanBeEdited bool `json:"can_be_edited"` - // Rights of the administrator - Rights *ChatAdministratorRights `json:"rights"` + // True, if the administrator can get chat event log, get chat statistics, get message statistics in channels, get channel members, see anonymous administrators in supergroups and ignore slow mode. Implied by any other privilege; applicable to supergroups and channels only + CanManageChat bool `json:"can_manage_chat"` + // True, if the administrator can change the chat title, photo, and other settings + CanChangeInfo bool `json:"can_change_info"` + // True, if the administrator can create channel posts; applicable to channels only + CanPostMessages bool `json:"can_post_messages"` + // True, if the administrator can edit messages of other users and pin messages; applicable to channels only + CanEditMessages bool `json:"can_edit_messages"` + // True, if the administrator can delete messages of other users + CanDeleteMessages bool `json:"can_delete_messages"` + // True, if the administrator can invite new users to the chat + CanInviteUsers bool `json:"can_invite_users"` + // True, if the administrator can restrict, ban, or unban chat members; always true for channels + CanRestrictMembers bool `json:"can_restrict_members"` + // True, if the administrator can pin messages; applicable to basic groups and supergroups only + CanPinMessages bool `json:"can_pin_messages"` + // True, if the administrator can add new administrators with a subset of their own privileges or demote administrators that were directly or indirectly promoted by them + CanPromoteMembers bool `json:"can_promote_members"` + // True, if the administrator can manage video chats + CanManageVideoChats bool `json:"can_manage_video_chats"` + // True, if the administrator isn't shown in the chat member list and sends messages anonymously; applicable to supergroups only + IsAnonymous bool `json:"is_anonymous"` } func (entity *ChatMemberStatusAdministrator) MarshalJSON() ([]byte, error) { @@ -5026,7 +4720,7 @@ func (chatMember *ChatMember) UnmarshalJSON(data []byte) error { // Contains a list of chat members type ChatMembers struct { meta - // Approximate total number of chat members found + // Approximate total count of chat members found TotalCount int32 `json:"total_count"` // A list of chat members Members []*ChatMember `json:"members"` @@ -5485,7 +5179,7 @@ func (*ChatInviteLink) GetType() string { // Contains a list of chat invite links type ChatInviteLinks struct { meta - // Approximate total number of chat invite links found + // Approximate total count of chat invite links found TotalCount int32 `json:"total_count"` // List of invite links InviteLinks []*ChatInviteLink `json:"invite_links"` @@ -5587,7 +5281,7 @@ func (*ChatInviteLinkMember) GetType() string { // Contains a list of chat members joined a chat via an invite link type ChatInviteLinkMembers struct { meta - // Approximate total number of chat members found + // Approximate total count of chat members found TotalCount int32 `json:"total_count"` // List of chat members, joined a chat via an invite link Members []*ChatInviteLinkMember `json:"members"` @@ -5715,7 +5409,7 @@ func (*ChatJoinRequest) GetType() string { // Contains a list of requests to join a chat type ChatJoinRequests struct { meta - // Approximate total number of requests found + // Approximate total count of requests found TotalCount int32 `json:"total_count"` // List of the requests Requests []*ChatJoinRequest `json:"requests"` @@ -5984,7 +5678,7 @@ type SupergroupFullInfo struct { StickerSetId JsonInt64 `json:"sticker_set_id"` // Location to which the supergroup is connected; may be null Location *ChatLocation `json:"location"` - // Primary invite link for the chat; may be null. For chat administrators with can_invite_users right only + // Primary invite link for this chat; may be null. For chat administrators with can_invite_users right only InviteLink *ChatInviteLink `json:"invite_link"` // List of commands of bots in the group BotCommands []*BotCommands `json:"bot_commands"` @@ -6202,7 +5896,7 @@ func (*MessageSenderChat) MessageSenderType() string { // Represents a list of message senders type MessageSenders struct { meta - // Approximate total number of messages senders found + // Approximate total count of messages senders found TotalCount int32 `json:"total_count"` // List of message senders Senders []MessageSender `json:"senders"` @@ -6496,58 +6190,6 @@ func (messageReplyInfo *MessageReplyInfo) UnmarshalJSON(data []byte) error { return nil } -// Contains information about a reaction to a message -type MessageReaction struct { - meta - // Text representation of the reaction - Reaction string `json:"reaction"` - // Number of times the reaction was added - TotalCount int32 `json:"total_count"` - // True, if the reaction is chosen by the current user - IsChosen bool `json:"is_chosen"` - // Identifiers of at most 3 recent message senders, added the reaction; available in private, basic group and supergroup chats - RecentSenderIds []MessageSender `json:"recent_sender_ids"` -} - -func (entity *MessageReaction) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub MessageReaction - - return json.Marshal((*stub)(entity)) -} - -func (*MessageReaction) GetClass() string { - return ClassMessageReaction -} - -func (*MessageReaction) GetType() string { - return TypeMessageReaction -} - -func (messageReaction *MessageReaction) UnmarshalJSON(data []byte) error { - var tmp struct { - Reaction string `json:"reaction"` - TotalCount int32 `json:"total_count"` - IsChosen bool `json:"is_chosen"` - RecentSenderIds []json.RawMessage `json:"recent_sender_ids"` - } - - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } - - messageReaction.Reaction = tmp.Reaction - messageReaction.TotalCount = tmp.TotalCount - messageReaction.IsChosen = tmp.IsChosen - - fieldRecentSenderIds, _ := UnmarshalListOfMessageSender(tmp.RecentSenderIds) - messageReaction.RecentSenderIds = fieldRecentSenderIds - - return nil -} - // Contains information about interactions with a message type MessageInteractionInfo struct { meta @@ -6557,8 +6199,6 @@ type MessageInteractionInfo struct { ForwardCount int32 `json:"forward_count"` // Information about direct or indirect replies to the message; may be null. Currently, available only in channels with a discussion supergroup and discussion supergroups for messages, which are not replies itself ReplyInfo *MessageReplyInfo `json:"reply_info"` - // The list of reactions added to the message - Reactions []*MessageReaction `json:"reactions"` } func (entity *MessageInteractionInfo) MarshalJSON() ([]byte, error) { @@ -6577,54 +6217,6 @@ func (*MessageInteractionInfo) GetType() string { return TypeMessageInteractionInfo } -// Contains information about an unread reaction to a message -type UnreadReaction struct { - meta - // Text representation of the reaction - Reaction string `json:"reaction"` - // Identifier of the sender, added the reaction - SenderId MessageSender `json:"sender_id"` - // True, if the reaction was added with a big animation - IsBig bool `json:"is_big"` -} - -func (entity *UnreadReaction) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub UnreadReaction - - return json.Marshal((*stub)(entity)) -} - -func (*UnreadReaction) GetClass() string { - return ClassUnreadReaction -} - -func (*UnreadReaction) GetType() string { - return TypeUnreadReaction -} - -func (unreadReaction *UnreadReaction) UnmarshalJSON(data []byte) error { - var tmp struct { - Reaction string `json:"reaction"` - SenderId json.RawMessage `json:"sender_id"` - IsBig bool `json:"is_big"` - } - - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } - - unreadReaction.Reaction = tmp.Reaction - unreadReaction.IsBig = tmp.IsBig - - fieldSenderId, _ := UnmarshalMessageSender(tmp.SenderId) - unreadReaction.SenderId = fieldSenderId - - return nil -} - // The message is being sent now, but has not yet been delivered to the server type MessageSendingStatePending struct { meta @@ -6712,15 +6304,13 @@ type Message struct { CanBeDeletedOnlyForSelf bool `json:"can_be_deleted_only_for_self"` // True, if the message can be deleted for all users CanBeDeletedForAllUsers bool `json:"can_be_deleted_for_all_users"` - // True, if the list of added reactions is available through getMessageAddedReactions - CanGetAddedReactions bool `json:"can_get_added_reactions"` - // True, if the message statistics are available through getMessageStatistics + // True, if the message statistics are available CanGetStatistics bool `json:"can_get_statistics"` - // True, if information about the message thread is available through getMessageThread + // True, if the message thread info is available CanGetMessageThread bool `json:"can_get_message_thread"` // True, if chat members already viewed the message can be received through getMessageViewers CanGetViewers bool `json:"can_get_viewers"` - // True, if media timestamp links can be generated for media timestamp entities in the message text, caption or web page description through getMessageLink + // True, if media timestamp links can be generated for media timestamp entities in the message text, caption or web page description CanGetMediaTimestampLinks bool `json:"can_get_media_timestamp_links"` // True, if media timestamp entities refers to a media in this message as opposed to a media in the replied message HasTimestampedMedia bool `json:"has_timestamped_media"` @@ -6736,8 +6326,6 @@ type Message struct { ForwardInfo *MessageForwardInfo `json:"forward_info"` // Information about interactions with the message; may be null InteractionInfo *MessageInteractionInfo `json:"interaction_info"` - // Information about unread reactions added to the message - UnreadReactions []*UnreadReaction `json:"unread_reactions"` // If non-zero, the identifier of the chat to which the replied message belongs; Currently, only messages in the Replies chat can have different reply_in_chat_id and chat_id ReplyInChatId int64 `json:"reply_in_chat_id"` // If non-zero, the identifier of the message this message is replying to; can be the identifier of a deleted message @@ -6792,7 +6380,6 @@ func (message *Message) UnmarshalJSON(data []byte) error { CanBeSaved bool `json:"can_be_saved"` CanBeDeletedOnlyForSelf bool `json:"can_be_deleted_only_for_self"` CanBeDeletedForAllUsers bool `json:"can_be_deleted_for_all_users"` - CanGetAddedReactions bool `json:"can_get_added_reactions"` CanGetStatistics bool `json:"can_get_statistics"` CanGetMessageThread bool `json:"can_get_message_thread"` CanGetViewers bool `json:"can_get_viewers"` @@ -6804,7 +6391,6 @@ func (message *Message) UnmarshalJSON(data []byte) error { EditDate int32 `json:"edit_date"` ForwardInfo *MessageForwardInfo `json:"forward_info"` InteractionInfo *MessageInteractionInfo `json:"interaction_info"` - UnreadReactions []*UnreadReaction `json:"unread_reactions"` ReplyInChatId int64 `json:"reply_in_chat_id"` ReplyToMessageId int64 `json:"reply_to_message_id"` MessageThreadId int64 `json:"message_thread_id"` @@ -6832,7 +6418,6 @@ func (message *Message) UnmarshalJSON(data []byte) error { message.CanBeSaved = tmp.CanBeSaved message.CanBeDeletedOnlyForSelf = tmp.CanBeDeletedOnlyForSelf message.CanBeDeletedForAllUsers = tmp.CanBeDeletedForAllUsers - message.CanGetAddedReactions = tmp.CanGetAddedReactions message.CanGetStatistics = tmp.CanGetStatistics message.CanGetMessageThread = tmp.CanGetMessageThread message.CanGetViewers = tmp.CanGetViewers @@ -6844,7 +6429,6 @@ func (message *Message) UnmarshalJSON(data []byte) error { message.EditDate = tmp.EditDate message.ForwardInfo = tmp.ForwardInfo message.InteractionInfo = tmp.InteractionInfo - message.UnreadReactions = tmp.UnreadReactions message.ReplyInChatId = tmp.ReplyInChatId message.ReplyToMessageId = tmp.ReplyToMessageId message.MessageThreadId = tmp.MessageThreadId @@ -6876,7 +6460,7 @@ func (message *Message) UnmarshalJSON(data []byte) error { // Contains a list of messages type Messages struct { meta - // Approximate total number of messages found + // Approximate total count of messages found TotalCount int32 `json:"total_count"` // List of messages; messages may be null Messages []*Message `json:"messages"` @@ -6901,7 +6485,7 @@ func (*Messages) GetType() string { // Contains a list of messages found by a search type FoundMessages struct { meta - // Approximate total number of messages found; -1 if unknown + // Approximate total count of messages found; -1 if unknown TotalCount int32 `json:"total_count"` // List of messages Messages []*Message `json:"messages"` @@ -6955,7 +6539,7 @@ func (*MessagePosition) GetType() string { // Contains a list of message positions type MessagePositions struct { meta - // Total number of messages found + // Total count of messages found TotalCount int32 `json:"total_count"` // List of message positions Positions []*MessagePosition `json:"positions"` @@ -7032,11 +6616,9 @@ type SponsoredMessage struct { meta // Message identifier; unique for the chat to which the sponsored message belongs among both ordinary and sponsored messages MessageId int64 `json:"message_id"` - // Sponsor chat identifier; 0 if the sponsor chat is accessible through an invite link + // Chat identifier SponsorChatId int64 `json:"sponsor_chat_id"` - // Information about the sponsor chat; may be null unless sponsor_chat_id == 0 - SponsorChatInfo *ChatInviteLinkInfo `json:"sponsor_chat_info"` - // An internal link to be opened when the sponsored message is clicked; may be null if the sponsor chat needs to be opened instead + // An internal link to be opened when the sponsored message is clicked; may be null. If null, the sponsor chat needs to be opened instead Link InternalLinkType `json:"link"` // Content of the message. Currently, can be only of the type messageText Content MessageContent `json:"content"` @@ -7060,11 +6642,10 @@ func (*SponsoredMessage) GetType() string { func (sponsoredMessage *SponsoredMessage) UnmarshalJSON(data []byte) error { var tmp struct { - MessageId int64 `json:"message_id"` - SponsorChatId int64 `json:"sponsor_chat_id"` - SponsorChatInfo *ChatInviteLinkInfo `json:"sponsor_chat_info"` - Link json.RawMessage `json:"link"` - Content json.RawMessage `json:"content"` + MessageId int64 `json:"message_id"` + SponsorChatId int64 `json:"sponsor_chat_id"` + Link json.RawMessage `json:"link"` + Content json.RawMessage `json:"content"` } err := json.Unmarshal(data, &tmp) @@ -7074,7 +6655,6 @@ func (sponsoredMessage *SponsoredMessage) UnmarshalJSON(data []byte) error { sponsoredMessage.MessageId = tmp.MessageId sponsoredMessage.SponsorChatId = tmp.SponsorChatId - sponsoredMessage.SponsorChatInfo = tmp.SponsorChatInfo fieldLink, _ := UnmarshalInternalLinkType(tmp.Link) sponsoredMessage.Link = fieldLink @@ -7085,91 +6665,6 @@ func (sponsoredMessage *SponsoredMessage) UnmarshalJSON(data []byte) error { return nil } -// Describes a file added to file download list -type FileDownload struct { - meta - // File identifier - FileId int32 `json:"file_id"` - // The message with the file - Message *Message `json:"message"` - // Point in time (Unix timestamp) when the file was added to the download list - AddDate int32 `json:"add_date"` - // Point in time (Unix timestamp) when the file downloading was completed; 0 if the file downloading isn't completed - CompleteDate int32 `json:"complete_date"` - // True, if downloading of the file is paused - IsPaused bool `json:"is_paused"` -} - -func (entity *FileDownload) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub FileDownload - - return json.Marshal((*stub)(entity)) -} - -func (*FileDownload) GetClass() string { - return ClassFileDownload -} - -func (*FileDownload) GetType() string { - return TypeFileDownload -} - -// Contains number of being downloaded and recently downloaded files found -type DownloadedFileCounts struct { - meta - // Number of active file downloads found, including paused - ActiveCount int32 `json:"active_count"` - // Number of paused file downloads found - PausedCount int32 `json:"paused_count"` - // Number of completed file downloads found - CompletedCount int32 `json:"completed_count"` -} - -func (entity *DownloadedFileCounts) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub DownloadedFileCounts - - return json.Marshal((*stub)(entity)) -} - -func (*DownloadedFileCounts) GetClass() string { - return ClassDownloadedFileCounts -} - -func (*DownloadedFileCounts) GetType() string { - return TypeDownloadedFileCounts -} - -// Contains a list of downloaded files, found by a search -type FoundFileDownloads struct { - meta - // Total number of suitable files, ignoring offset - TotalCounts *DownloadedFileCounts `json:"total_counts"` - // The list of files - Files []*FileDownload `json:"files"` - // The offset for the next request. If empty, there are no more results - NextOffset string `json:"next_offset"` -} - -func (entity *FoundFileDownloads) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub FoundFileDownloads - - return json.Marshal((*stub)(entity)) -} - -func (*FoundFileDownloads) GetClass() string { - return ClassFoundFileDownloads -} - -func (*FoundFileDownloads) GetType() string { - return TypeFoundFileDownloads -} - // Notification settings applied to all private and secret chats when the corresponding chat setting has a default value type NotificationSettingsScopePrivateChats struct { meta @@ -7195,7 +6690,7 @@ func (*NotificationSettingsScopePrivateChats) NotificationSettingsScopeType() st return TypeNotificationSettingsScopePrivateChats } -// Notification settings applied to all basic group and supergroup chats when the corresponding chat setting has a default value +// Notification settings applied to all basic groups and supergroups when the corresponding chat setting has a default value type NotificationSettingsScopeGroupChats struct { meta } @@ -7220,7 +6715,7 @@ func (*NotificationSettingsScopeGroupChats) NotificationSettingsScopeType() stri return TypeNotificationSettingsScopeGroupChats } -// Notification settings applied to all channel chats when the corresponding chat setting has a default value +// Notification settings applied to all channels when the corresponding chat setting has a default value type NotificationSettingsScopeChannelChats struct { meta } @@ -7252,10 +6747,10 @@ type ChatNotificationSettings struct { UseDefaultMuteFor bool `json:"use_default_mute_for"` // Time left before notifications will be unmuted, in seconds MuteFor int32 `json:"mute_for"` - // If true, the value for the relevant type of chat is used instead of sound_id + // If true, sound is ignored and the value for the relevant type of chat is used instead UseDefaultSound bool `json:"use_default_sound"` - // Identifier of the notification sound to be played; 0 if sound is disabled - SoundId JsonInt64 `json:"sound_id"` + // The name of an audio file to be used for notification sounds; only applies to iOS applications + Sound string `json:"sound"` // If true, show_preview is ignored and the value for the relevant type of chat is used instead UseDefaultShowPreview bool `json:"use_default_show_preview"` // True, if message content must be displayed in notifications @@ -7291,8 +6786,8 @@ type ScopeNotificationSettings struct { meta // Time left before notifications will be unmuted, in seconds MuteFor int32 `json:"mute_for"` - // Identifier of the notification sound to be played; 0 if sound is disabled - SoundId JsonInt64 `json:"sound_id"` + // The name of an audio file to be used for notification sounds; only applies to iOS applications + Sound string `json:"sound"` // True, if message content must be displayed in notifications ShowPreview bool `json:"show_preview"` // True, if notifications for incoming pinned messages will be created as for an ordinary unread message @@ -7320,7 +6815,7 @@ func (*ScopeNotificationSettings) GetType() string { // Contains information about a message draft type DraftMessage struct { meta - // Identifier of the replied message; 0 if none + // Identifier of the message to reply to; 0 if none ReplyToMessageId int64 `json:"reply_to_message_id"` // Point in time (Unix timestamp) when the draft was created Date int32 `json:"date"` @@ -7914,12 +7409,8 @@ type Chat struct { LastReadOutboxMessageId int64 `json:"last_read_outbox_message_id"` // Number of unread messages with a mention/reply in the chat UnreadMentionCount int32 `json:"unread_mention_count"` - // Number of messages with unread reactions in the chat - UnreadReactionCount int32 `json:"unread_reaction_count"` - // Notification settings for the chat + // Notification settings for this chat NotificationSettings *ChatNotificationSettings `json:"notification_settings"` - // List of reactions, available in the chat - AvailableReactions []string `json:"available_reactions"` // Current message Time To Live setting (self-destruct timer) for the chat; 0 if not defined. TTL is counted from the time message or its content is viewed in secret chats and from the send date in other chats MessageTtl int32 `json:"message_ttl"` // If non-empty, name of a theme, set for the chat @@ -7976,9 +7467,7 @@ func (chat *Chat) UnmarshalJSON(data []byte) error { LastReadInboxMessageId int64 `json:"last_read_inbox_message_id"` LastReadOutboxMessageId int64 `json:"last_read_outbox_message_id"` UnreadMentionCount int32 `json:"unread_mention_count"` - UnreadReactionCount int32 `json:"unread_reaction_count"` NotificationSettings *ChatNotificationSettings `json:"notification_settings"` - AvailableReactions []string `json:"available_reactions"` MessageTtl int32 `json:"message_ttl"` ThemeName string `json:"theme_name"` ActionBar json.RawMessage `json:"action_bar"` @@ -8012,9 +7501,7 @@ func (chat *Chat) UnmarshalJSON(data []byte) error { chat.LastReadInboxMessageId = tmp.LastReadInboxMessageId chat.LastReadOutboxMessageId = tmp.LastReadOutboxMessageId chat.UnreadMentionCount = tmp.UnreadMentionCount - chat.UnreadReactionCount = tmp.UnreadReactionCount chat.NotificationSettings = tmp.NotificationSettings - chat.AvailableReactions = tmp.AvailableReactions chat.MessageTtl = tmp.MessageTtl chat.ThemeName = tmp.ThemeName chat.VideoChat = tmp.VideoChat @@ -8038,7 +7525,7 @@ func (chat *Chat) UnmarshalJSON(data []byte) error { // Represents a list of chats type Chats struct { meta - // Approximate total number of chats found + // Approximate total count of chats found TotalCount int32 `json:"total_count"` // List of chat identifiers ChatIds []int64 `json:"chat_ids"` @@ -8451,33 +7938,6 @@ func (*KeyboardButtonTypeRequestPoll) KeyboardButtonTypeType() string { return TypeKeyboardButtonTypeRequestPoll } -// A button that opens a web app by calling getWebAppUrl -type KeyboardButtonTypeWebApp struct { - meta - // An HTTP URL to pass to getWebAppUrl - Url string `json:"url"` -} - -func (entity *KeyboardButtonTypeWebApp) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub KeyboardButtonTypeWebApp - - return json.Marshal((*stub)(entity)) -} - -func (*KeyboardButtonTypeWebApp) GetClass() string { - return ClassKeyboardButtonType -} - -func (*KeyboardButtonTypeWebApp) GetType() string { - return TypeKeyboardButtonTypeWebApp -} - -func (*KeyboardButtonTypeWebApp) KeyboardButtonTypeType() string { - return TypeKeyboardButtonTypeWebApp -} - // Represents a single button in a bot keyboard type KeyboardButton struct { meta @@ -8549,10 +8009,10 @@ func (*InlineKeyboardButtonTypeUrl) InlineKeyboardButtonTypeType() string { return TypeInlineKeyboardButtonTypeUrl } -// A button that opens a specified URL and automatically authorize the current user by calling getLoginUrlInfo +// A button that opens a specified URL and automatically authorize the current user if allowed to do so type InlineKeyboardButtonTypeLoginUrl struct { meta - // An HTTP URL to pass to getLoginUrlInfo + // An HTTP URL to open Url string `json:"url"` // Unique button identifier Id int64 `json:"id"` @@ -8580,33 +8040,6 @@ func (*InlineKeyboardButtonTypeLoginUrl) InlineKeyboardButtonTypeType() string { return TypeInlineKeyboardButtonTypeLoginUrl } -// A button that opens a web app by calling openWebApp -type InlineKeyboardButtonTypeWebApp struct { - meta - // An HTTP URL to pass to openWebApp - Url string `json:"url"` -} - -func (entity *InlineKeyboardButtonTypeWebApp) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub InlineKeyboardButtonTypeWebApp - - return json.Marshal((*stub)(entity)) -} - -func (*InlineKeyboardButtonTypeWebApp) GetClass() string { - return ClassInlineKeyboardButtonType -} - -func (*InlineKeyboardButtonTypeWebApp) GetType() string { - return TypeInlineKeyboardButtonTypeWebApp -} - -func (*InlineKeyboardButtonTypeWebApp) InlineKeyboardButtonTypeType() string { - return TypeInlineKeyboardButtonTypeWebApp -} - // A button that sends a callback query to a bot type InlineKeyboardButtonTypeCallback struct { meta @@ -8991,31 +8424,6 @@ func (*LoginUrlInfoRequestConfirmation) LoginUrlInfoType() string { return TypeLoginUrlInfoRequestConfirmation } -// Contains information about a web app -type WebAppInfo struct { - meta - // Unique identifier for the web app launch - LaunchId JsonInt64 `json:"launch_id"` - // A web app URL to open in a web view - Url string `json:"url"` -} - -func (entity *WebAppInfo) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub WebAppInfo - - return json.Marshal((*stub)(entity)) -} - -func (*WebAppInfo) GetClass() string { - return ClassWebAppInfo -} - -func (*WebAppInfo) GetType() string { - return TypeWebAppInfo -} - // Contains information about a message thread type MessageThreadInfo struct { meta @@ -11087,7 +10495,7 @@ type PageBlockChatLink struct { Title string `json:"title"` // Chat photo; may be null Photo *ChatPhotoInfo `json:"photo"` - // Chat username by which all other information about the chat can be resolved + // Chat username, by which all other information about the chat can be resolved Username string `json:"username"` } @@ -11593,39 +11001,6 @@ func (*Address) GetType() string { return TypeAddress } -// Contains parameters of the app theme -type ThemeParameters struct { - meta - // A color of the background in the RGB24 format - BackgroundColor int32 `json:"background_color"` - // A color of text in the RGB24 format - TextColor int32 `json:"text_color"` - // A color of hints in the RGB24 format - HintColor int32 `json:"hint_color"` - // A color of links in the RGB24 format - LinkColor int32 `json:"link_color"` - // A color of the buttons in the RGB24 format - ButtonColor int32 `json:"button_color"` - // A color of text on the buttons in the RGB24 format - ButtonTextColor int32 `json:"button_text_color"` -} - -func (entity *ThemeParameters) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ThemeParameters - - return json.Marshal((*stub)(entity)) -} - -func (*ThemeParameters) GetClass() string { - return ClassThemeParameters -} - -func (*ThemeParameters) GetType() string { - return TypeThemeParameters -} - // Portion of the price of a product (e.g., "delivery cost", "tax amount") type LabeledPricePart struct { meta @@ -11916,6 +11291,39 @@ func (*PaymentsProviderStripe) GetType() string { return TypePaymentsProviderStripe } +// Theme colors for a payment form +type PaymentFormTheme struct { + meta + // A color of the payment form background in the RGB24 format + BackgroundColor int32 `json:"background_color"` + // A color of text in the RGB24 format + TextColor int32 `json:"text_color"` + // A color of hints in the RGB24 format + HintColor int32 `json:"hint_color"` + // A color of links in the RGB24 format + LinkColor int32 `json:"link_color"` + // A color of the buttons in the RGB24 format + ButtonColor int32 `json:"button_color"` + // A color of text on the buttons in the RGB24 format + ButtonTextColor int32 `json:"button_text_color"` +} + +func (entity *PaymentFormTheme) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub PaymentFormTheme + + return json.Marshal((*stub)(entity)) +} + +func (*PaymentFormTheme) GetClass() string { + return ClassPaymentFormTheme +} + +func (*PaymentFormTheme) GetType() string { + return TypePaymentFormTheme +} + // Contains information about an invoice payment form type PaymentForm struct { meta @@ -15542,63 +14950,7 @@ func (*MessageWebsiteConnected) MessageContentType() string { return TypeMessageWebsiteConnected } -// Data from a web app has been sent to a bot -type MessageWebAppDataSent struct { - meta - // Text of the keyboardButtonTypeWebApp button, which opened the web app - ButtonText string `json:"button_text"` -} - -func (entity *MessageWebAppDataSent) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub MessageWebAppDataSent - - return json.Marshal((*stub)(entity)) -} - -func (*MessageWebAppDataSent) GetClass() string { - return ClassMessageContent -} - -func (*MessageWebAppDataSent) GetType() string { - return TypeMessageWebAppDataSent -} - -func (*MessageWebAppDataSent) MessageContentType() string { - return TypeMessageWebAppDataSent -} - -// Data from a web app has been received; for bots only -type MessageWebAppDataReceived struct { - meta - // Text of the keyboardButtonTypeWebApp button, which opened the web app - ButtonText string `json:"button_text"` - // Received data - Data string `json:"data"` -} - -func (entity *MessageWebAppDataReceived) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub MessageWebAppDataReceived - - return json.Marshal((*stub)(entity)) -} - -func (*MessageWebAppDataReceived) GetClass() string { - return ClassMessageContent -} - -func (*MessageWebAppDataReceived) GetType() string { - return TypeMessageWebAppDataReceived -} - -func (*MessageWebAppDataReceived) MessageContentType() string { - return TypeMessageWebAppDataReceived -} - -// Telegram Passport data has been sent to a bot +// Telegram Passport data has been sent type MessagePassportDataSent struct { meta // List of Telegram Passport element types sent @@ -16049,31 +15401,6 @@ func (*TextEntityTypeStrikethrough) TextEntityTypeType() string { return TypeTextEntityTypeStrikethrough } -// A spoiler text. Not supported in secret chats -type TextEntityTypeSpoiler struct { - meta -} - -func (entity *TextEntityTypeSpoiler) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub TextEntityTypeSpoiler - - return json.Marshal((*stub)(entity)) -} - -func (*TextEntityTypeSpoiler) GetClass() string { - return ClassTextEntityType -} - -func (*TextEntityTypeSpoiler) GetType() string { - return TypeTextEntityTypeSpoiler -} - -func (*TextEntityTypeSpoiler) TextEntityTypeType() string { - return TypeTextEntityTypeSpoiler -} - // Text that must be formatted as if inside a code HTML tag type TextEntityTypeCode struct { meta @@ -16339,8 +15666,6 @@ type MessageSendOptions struct { DisableNotification bool `json:"disable_notification"` // Pass true if the message is sent from the background FromBackground bool `json:"from_background"` - // Pass true if the content of the message must be protected from forwarding and saving; for bots only - ProtectContent bool `json:"protect_content"` // Message scheduling state; pass null to send message immediately. Messages sent to a secret chat, live location messages and self-destructing messages can't be scheduled SchedulingState MessageSchedulingState `json:"scheduling_state"` } @@ -16365,7 +15690,6 @@ func (messageSendOptions *MessageSendOptions) UnmarshalJSON(data []byte) error { var tmp struct { DisableNotification bool `json:"disable_notification"` FromBackground bool `json:"from_background"` - ProtectContent bool `json:"protect_content"` SchedulingState json.RawMessage `json:"scheduling_state"` } @@ -16376,7 +15700,6 @@ func (messageSendOptions *MessageSendOptions) UnmarshalJSON(data []byte) error { messageSendOptions.DisableNotification = tmp.DisableNotification messageSendOptions.FromBackground = tmp.FromBackground - messageSendOptions.ProtectContent = tmp.ProtectContent fieldSchedulingState, _ := UnmarshalMessageSchedulingState(tmp.SchedulingState) messageSendOptions.SchedulingState = fieldSchedulingState @@ -16414,7 +15737,7 @@ func (*MessageCopyOptions) GetType() string { // A text message type InputMessageText struct { meta - // Formatted text to be sent; 1-GetOption("message_text_length_max") characters. Only Bold, Italic, Underline, Strikethrough, Spoiler, Code, Pre, PreCode, TextUrl and MentionName entities are allowed to be specified manually + // Formatted text to be sent; 1-GetOption("message_text_length_max") characters. Only Bold, Italic, Underline, Strikethrough, Code, Pre, PreCode, TextUrl and MentionName entities are allowed to be specified manually Text *FormattedText `json:"text"` // True, if rich web page previews for URLs in the message text must be disabled DisableWebPagePreview bool `json:"disable_web_page_preview"` @@ -17589,31 +16912,6 @@ func (*SearchMessagesFilterUnreadMention) SearchMessagesFilterType() string { return TypeSearchMessagesFilterUnreadMention } -// Returns only messages with unread reactions for the current user. When using this filter the results can't be additionally filtered by a query, a message thread or by the sending user -type SearchMessagesFilterUnreadReaction struct { - meta -} - -func (entity *SearchMessagesFilterUnreadReaction) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub SearchMessagesFilterUnreadReaction - - return json.Marshal((*stub)(entity)) -} - -func (*SearchMessagesFilterUnreadReaction) GetClass() string { - return ClassSearchMessagesFilter -} - -func (*SearchMessagesFilterUnreadReaction) GetType() string { - return TypeSearchMessagesFilterUnreadReaction -} - -func (*SearchMessagesFilterUnreadReaction) SearchMessagesFilterType() string { - return TypeSearchMessagesFilterUnreadReaction -} - // Returns only failed to send messages. This filter can be used only if the message database is used type SearchMessagesFilterFailedToSend struct { meta @@ -18260,7 +17558,7 @@ type StickerSet struct { Title string `json:"title"` // Name of the sticker set Name string `json:"name"` - // Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null. The file can be downloaded only before the thumbnail is changed + // Sticker set thumbnail in WEBP or TGS format with width and height 100; may be null. The file can be downloaded only before the thumbnail is changed Thumbnail *Thumbnail `json:"thumbnail"` // Sticker set thumbnail's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner ThumbnailOutline []*ClosedVectorPath `json:"thumbnail_outline"` @@ -18270,8 +17568,10 @@ type StickerSet struct { IsArchived bool `json:"is_archived"` // True, if the sticker set is official IsOfficial bool `json:"is_official"` - // Type of the stickers in the set - StickerType StickerType `json:"sticker_type"` + // True, is the stickers in the set are animated + IsAnimated bool `json:"is_animated"` + // True, if the stickers in the set are masks + IsMasks bool `json:"is_masks"` // True for already viewed trending sticker sets IsViewed bool `json:"is_viewed"` // List of stickers in this set @@ -18296,45 +17596,6 @@ func (*StickerSet) GetType() string { return TypeStickerSet } -func (stickerSet *StickerSet) UnmarshalJSON(data []byte) error { - var tmp struct { - Id JsonInt64 `json:"id"` - Title string `json:"title"` - Name string `json:"name"` - Thumbnail *Thumbnail `json:"thumbnail"` - ThumbnailOutline []*ClosedVectorPath `json:"thumbnail_outline"` - IsInstalled bool `json:"is_installed"` - IsArchived bool `json:"is_archived"` - IsOfficial bool `json:"is_official"` - StickerType json.RawMessage `json:"sticker_type"` - IsViewed bool `json:"is_viewed"` - Stickers []*Sticker `json:"stickers"` - Emojis []*Emojis `json:"emojis"` - } - - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } - - stickerSet.Id = tmp.Id - stickerSet.Title = tmp.Title - stickerSet.Name = tmp.Name - stickerSet.Thumbnail = tmp.Thumbnail - stickerSet.ThumbnailOutline = tmp.ThumbnailOutline - stickerSet.IsInstalled = tmp.IsInstalled - stickerSet.IsArchived = tmp.IsArchived - stickerSet.IsOfficial = tmp.IsOfficial - stickerSet.IsViewed = tmp.IsViewed - stickerSet.Stickers = tmp.Stickers - stickerSet.Emojis = tmp.Emojis - - fieldStickerType, _ := UnmarshalStickerType(tmp.StickerType) - stickerSet.StickerType = fieldStickerType - - return nil -} - // Represents short information about a sticker set type StickerSetInfo struct { meta @@ -18344,7 +17605,7 @@ type StickerSetInfo struct { Title string `json:"title"` // Name of the sticker set Name string `json:"name"` - // Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null + // Sticker set thumbnail in WEBP or TGS format with width and height 100; may be null Thumbnail *Thumbnail `json:"thumbnail"` // Sticker set thumbnail's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner ThumbnailOutline []*ClosedVectorPath `json:"thumbnail_outline"` @@ -18354,8 +17615,10 @@ type StickerSetInfo struct { IsArchived bool `json:"is_archived"` // True, if the sticker set is official IsOfficial bool `json:"is_official"` - // Type of the stickers in the set - StickerType StickerType `json:"sticker_type"` + // True, is the stickers in the set are animated + IsAnimated bool `json:"is_animated"` + // True, if the stickers in the set are masks + IsMasks bool `json:"is_masks"` // True for already viewed trending sticker sets IsViewed bool `json:"is_viewed"` // Total number of stickers in the set @@ -18380,45 +17643,6 @@ func (*StickerSetInfo) GetType() string { return TypeStickerSetInfo } -func (stickerSetInfo *StickerSetInfo) UnmarshalJSON(data []byte) error { - var tmp struct { - Id JsonInt64 `json:"id"` - Title string `json:"title"` - Name string `json:"name"` - Thumbnail *Thumbnail `json:"thumbnail"` - ThumbnailOutline []*ClosedVectorPath `json:"thumbnail_outline"` - IsInstalled bool `json:"is_installed"` - IsArchived bool `json:"is_archived"` - IsOfficial bool `json:"is_official"` - StickerType json.RawMessage `json:"sticker_type"` - IsViewed bool `json:"is_viewed"` - Size int32 `json:"size"` - Covers []*Sticker `json:"covers"` - } - - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } - - stickerSetInfo.Id = tmp.Id - stickerSetInfo.Title = tmp.Title - stickerSetInfo.Name = tmp.Name - stickerSetInfo.Thumbnail = tmp.Thumbnail - stickerSetInfo.ThumbnailOutline = tmp.ThumbnailOutline - stickerSetInfo.IsInstalled = tmp.IsInstalled - stickerSetInfo.IsArchived = tmp.IsArchived - stickerSetInfo.IsOfficial = tmp.IsOfficial - stickerSetInfo.IsViewed = tmp.IsViewed - stickerSetInfo.Size = tmp.Size - stickerSetInfo.Covers = tmp.Covers - - fieldStickerType, _ := UnmarshalStickerType(tmp.StickerType) - stickerSetInfo.StickerType = fieldStickerType - - return nil -} - // Represents a list of sticker sets type StickerSets struct { meta @@ -19032,81 +18256,6 @@ func (*GroupCallVideoQualityFull) GroupCallVideoQualityType() string { return TypeGroupCallVideoQualityFull } -// Describes an available stream in a group call -type GroupCallStream struct { - meta - // Identifier of an audio/video channel - ChannelId int32 `json:"channel_id"` - // Scale of segment durations in the stream. The duration is 1000/(2**scale) milliseconds - Scale int32 `json:"scale"` - // Point in time when the stream currently ends; Unix timestamp in milliseconds - TimeOffset int64 `json:"time_offset"` -} - -func (entity *GroupCallStream) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub GroupCallStream - - return json.Marshal((*stub)(entity)) -} - -func (*GroupCallStream) GetClass() string { - return ClassGroupCallStream -} - -func (*GroupCallStream) GetType() string { - return TypeGroupCallStream -} - -// Represents a list of group call streams -type GroupCallStreams struct { - meta - // A list of group call streams - Streams []*GroupCallStream `json:"streams"` -} - -func (entity *GroupCallStreams) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub GroupCallStreams - - return json.Marshal((*stub)(entity)) -} - -func (*GroupCallStreams) GetClass() string { - return ClassGroupCallStreams -} - -func (*GroupCallStreams) GetType() string { - return TypeGroupCallStreams -} - -// Represents an RTMP url -type RtmpUrl struct { - meta - // The URL - Url string `json:"url"` - // Stream key - StreamKey string `json:"stream_key"` -} - -func (entity *RtmpUrl) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub RtmpUrl - - return json.Marshal((*stub)(entity)) -} - -func (*RtmpUrl) GetClass() string { - return ClassRtmpUrl -} - -func (*RtmpUrl) GetType() string { - return TypeRtmpUrl -} - // Describes a recently speaking participant in a group call type GroupCallRecentSpeaker struct { meta @@ -19164,8 +18313,6 @@ type GroupCall struct { EnabledStartNotification bool `json:"enabled_start_notification"` // True, if the call is active IsActive bool `json:"is_active"` - // True, if the chat is an RTMP stream instead of an ordinary video chat - IsRtmpStream bool `json:"is_rtmp_stream"` // True, if the call is joined IsJoined bool `json:"is_joined"` // True, if user was kicked from the call because of network loss and the call needs to be rejoined @@ -19174,8 +18321,6 @@ type GroupCall struct { CanBeManaged bool `json:"can_be_managed"` // Number of participants in the group call ParticipantCount int32 `json:"participant_count"` - // True, if group call participants, which are muted, aren't returned in participant list - HasHiddenListeners bool `json:"has_hidden_listeners"` // True, if all group call participants are loaded LoadedAllParticipants bool `json:"loaded_all_participants"` // At most 3 recently speaking users in the group call @@ -19686,141 +18831,6 @@ func (*PhoneNumberAuthenticationSettings) GetType() string { return TypePhoneNumberAuthenticationSettings } -// Represents a reaction applied to a message -type AddedReaction struct { - meta - // Text representation of the reaction - Reaction string `json:"reaction"` - // Identifier of the chat member, applied the reaction - SenderId MessageSender `json:"sender_id"` -} - -func (entity *AddedReaction) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub AddedReaction - - return json.Marshal((*stub)(entity)) -} - -func (*AddedReaction) GetClass() string { - return ClassAddedReaction -} - -func (*AddedReaction) GetType() string { - return TypeAddedReaction -} - -func (addedReaction *AddedReaction) UnmarshalJSON(data []byte) error { - var tmp struct { - Reaction string `json:"reaction"` - SenderId json.RawMessage `json:"sender_id"` - } - - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } - - addedReaction.Reaction = tmp.Reaction - - fieldSenderId, _ := UnmarshalMessageSender(tmp.SenderId) - addedReaction.SenderId = fieldSenderId - - return nil -} - -// Represents a list of reactions added to a message -type AddedReactions struct { - meta - // The total number of found reactions - TotalCount int32 `json:"total_count"` - // The list of added reactions - Reactions []*AddedReaction `json:"reactions"` - // The offset for the next request. If empty, there are no more results - NextOffset string `json:"next_offset"` -} - -func (entity *AddedReactions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub AddedReactions - - return json.Marshal((*stub)(entity)) -} - -func (*AddedReactions) GetClass() string { - return ClassAddedReactions -} - -func (*AddedReactions) GetType() string { - return TypeAddedReactions -} - -// Represents a list of available reactions -type AvailableReactions struct { - meta - // List of reactions - Reactions []string `json:"reactions"` -} - -func (entity *AvailableReactions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub AvailableReactions - - return json.Marshal((*stub)(entity)) -} - -func (*AvailableReactions) GetClass() string { - return ClassAvailableReactions -} - -func (*AvailableReactions) GetType() string { - return TypeAvailableReactions -} - -// Contains stickers which must be used for reaction animation rendering -type Reaction struct { - meta - // Text representation of the reaction - Reaction string `json:"reaction"` - // Reaction title - Title string `json:"title"` - // True, if the reaction can be added to new messages and enabled in chats - IsActive bool `json:"is_active"` - // Static icon for the reaction - StaticIcon *Sticker `json:"static_icon"` - // Appear animation for the reaction - AppearAnimation *Sticker `json:"appear_animation"` - // Select animation for the reaction - SelectAnimation *Sticker `json:"select_animation"` - // Activate animation for the reaction - ActivateAnimation *Sticker `json:"activate_animation"` - // Effect animation for the reaction - EffectAnimation *Sticker `json:"effect_animation"` - // Around animation for the reaction; may be null - AroundAnimation *Sticker `json:"around_animation"` - // Center animation for the reaction; may be null - CenterAnimation *Sticker `json:"center_animation"` -} - -func (entity *Reaction) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub Reaction - - return json.Marshal((*stub)(entity)) -} - -func (*Reaction) GetClass() string { - return ClassReaction -} - -func (*Reaction) GetType() string { - return TypeReaction -} - // Represents a list of animations type Animations struct { meta @@ -19931,93 +18941,6 @@ func (*ImportedContacts) GetType() string { return TypeImportedContacts } -// Describes a color to highlight a bot added to attachment menu -type AttachmentMenuBotColor struct { - meta - // Color in the RGB24 format for light themes - LightColor int32 `json:"light_color"` - // Color in the RGB24 format for dark themes - DarkColor int32 `json:"dark_color"` -} - -func (entity *AttachmentMenuBotColor) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub AttachmentMenuBotColor - - return json.Marshal((*stub)(entity)) -} - -func (*AttachmentMenuBotColor) GetClass() string { - return ClassAttachmentMenuBotColor -} - -func (*AttachmentMenuBotColor) GetType() string { - return TypeAttachmentMenuBotColor -} - -// Represents a bot added to attachment menu -type AttachmentMenuBot struct { - meta - // User identifier of the bot added to attachment menu - BotUserId int64 `json:"bot_user_id"` - // Name for the bot in attachment menu - Name string `json:"name"` - // Color to highlight selected name of the bot if appropriate; may be null - NameColor *AttachmentMenuBotColor `json:"name_color"` - // Default attachment menu icon for the bot in SVG format; may be null - DefaultIcon *File `json:"default_icon"` - // Attachment menu icon for the bot in SVG format for the official iOS app; may be null - IosStaticIcon *File `json:"ios_static_icon"` - // Attachment menu icon for the bot in TGS format for the official iOS app; may be null - IosAnimatedIcon *File `json:"ios_animated_icon"` - // Attachment menu icon for the bot in TGS format for the official Android app; may be null - AndroidIcon *File `json:"android_icon"` - // Attachment menu icon for the bot in TGS format for the official native macOS app; may be null - MacosIcon *File `json:"macos_icon"` - // Color to highlight selected icon of the bot if appropriate; may be null - IconColor *AttachmentMenuBotColor `json:"icon_color"` -} - -func (entity *AttachmentMenuBot) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub AttachmentMenuBot - - return json.Marshal((*stub)(entity)) -} - -func (*AttachmentMenuBot) GetClass() string { - return ClassAttachmentMenuBot -} - -func (*AttachmentMenuBot) GetType() string { - return TypeAttachmentMenuBot -} - -// Information about the message sent by answerWebAppQuery -type SentWebAppMessage struct { - meta - // Identifier of the sent inline message, if known - InlineMessageId string `json:"inline_message_id"` -} - -func (entity *SentWebAppMessage) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub SentWebAppMessage - - return json.Marshal((*stub)(entity)) -} - -func (*SentWebAppMessage) GetClass() string { - return ClassSentWebAppMessage -} - -func (*SentWebAppMessage) GetType() string { - return TypeSentWebAppMessage -} - // Contains an HTTP URL type HttpUrl struct { meta @@ -20639,14 +19562,14 @@ func (inputInlineQueryResultPhoto *InputInlineQueryResultPhoto) UnmarshalJSON(da return nil } -// Represents a link to a WEBP, TGS, or WEBM sticker +// Represents a link to a WEBP or TGS sticker type InputInlineQueryResultSticker struct { meta // Unique identifier of the query result Id string `json:"id"` // URL of the sticker thumbnail, if it exists ThumbnailUrl string `json:"thumbnail_url"` - // The URL of the WEBP, TGS, or WEBM sticker (sticker file size must not exceed 5MB) + // The URL of the WEBP or TGS sticker (sticker file size must not exceed 5MB) StickerUrl string `json:"sticker_url"` // Width of the sticker StickerWidth int32 `json:"sticker_width"` @@ -21606,6 +20529,33 @@ func (*ChatEventMessageDeleted) ChatEventActionType() string { return TypeChatEventMessageDeleted } +// A poll in a message was stopped +type ChatEventPollStopped struct { + meta + // The message with the poll + Message *Message `json:"message"` +} + +func (entity *ChatEventPollStopped) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub ChatEventPollStopped + + return json.Marshal((*stub)(entity)) +} + +func (*ChatEventPollStopped) GetClass() string { + return ClassChatEventAction +} + +func (*ChatEventPollStopped) GetType() string { + return TypeChatEventPollStopped +} + +func (*ChatEventPollStopped) ChatEventActionType() string { + return TypeChatEventPollStopped +} + // A message was pinned type ChatEventMessagePinned struct { meta @@ -21660,33 +20610,6 @@ func (*ChatEventMessageUnpinned) ChatEventActionType() string { return TypeChatEventMessageUnpinned } -// A poll in a message was stopped -type ChatEventPollStopped struct { - meta - // The message with the poll - Message *Message `json:"message"` -} - -func (entity *ChatEventPollStopped) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ChatEventPollStopped - - return json.Marshal((*stub)(entity)) -} - -func (*ChatEventPollStopped) GetClass() string { - return ClassChatEventAction -} - -func (*ChatEventPollStopped) GetType() string { - return TypeChatEventPollStopped -} - -func (*ChatEventPollStopped) ChatEventActionType() string { - return TypeChatEventPollStopped -} - // A new member joined the chat type ChatEventMemberJoined struct { meta @@ -21768,6 +20691,31 @@ func (*ChatEventMemberJoinedByRequest) ChatEventActionType() string { return TypeChatEventMemberJoinedByRequest } +// A member left the chat +type ChatEventMemberLeft struct { + meta +} + +func (entity *ChatEventMemberLeft) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub ChatEventMemberLeft + + return json.Marshal((*stub)(entity)) +} + +func (*ChatEventMemberLeft) GetClass() string { + return ClassChatEventAction +} + +func (*ChatEventMemberLeft) GetType() string { + return TypeChatEventMemberLeft +} + +func (*ChatEventMemberLeft) ChatEventActionType() string { + return TypeChatEventMemberLeft +} + // A new chat member was invited type ChatEventMemberInvited struct { meta @@ -21816,31 +20764,6 @@ func (chatEventMemberInvited *ChatEventMemberInvited) UnmarshalJSON(data []byte) return nil } -// A member left the chat -type ChatEventMemberLeft struct { - meta -} - -func (entity *ChatEventMemberLeft) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ChatEventMemberLeft - - return json.Marshal((*stub)(entity)) -} - -func (*ChatEventMemberLeft) GetClass() string { - return ClassChatEventAction -} - -func (*ChatEventMemberLeft) GetType() string { - return TypeChatEventMemberLeft -} - -func (*ChatEventMemberLeft) ChatEventActionType() string { - return TypeChatEventMemberLeft -} - // A chat member has gained/lost administrator status, or the list of their administrator privileges has changed type ChatEventMemberPromoted struct { meta @@ -21950,149 +20873,33 @@ func (chatEventMemberRestricted *ChatEventMemberRestricted) UnmarshalJSON(data [ return nil } -// The chat available reactions were changed -type ChatEventAvailableReactionsChanged struct { +// The chat title was changed +type ChatEventTitleChanged struct { meta - // Previous chat available reactions - OldAvailableReactions []string `json:"old_available_reactions"` - // New chat available reactions - NewAvailableReactions []string `json:"new_available_reactions"` + // Previous chat title + OldTitle string `json:"old_title"` + // New chat title + NewTitle string `json:"new_title"` } -func (entity *ChatEventAvailableReactionsChanged) MarshalJSON() ([]byte, error) { +func (entity *ChatEventTitleChanged) MarshalJSON() ([]byte, error) { entity.meta.Type = entity.GetType() - type stub ChatEventAvailableReactionsChanged + type stub ChatEventTitleChanged return json.Marshal((*stub)(entity)) } -func (*ChatEventAvailableReactionsChanged) GetClass() string { +func (*ChatEventTitleChanged) GetClass() string { return ClassChatEventAction } -func (*ChatEventAvailableReactionsChanged) GetType() string { - return TypeChatEventAvailableReactionsChanged +func (*ChatEventTitleChanged) GetType() string { + return TypeChatEventTitleChanged } -func (*ChatEventAvailableReactionsChanged) ChatEventActionType() string { - return TypeChatEventAvailableReactionsChanged -} - -// The chat description was changed -type ChatEventDescriptionChanged struct { - meta - // Previous chat description - OldDescription string `json:"old_description"` - // New chat description - NewDescription string `json:"new_description"` -} - -func (entity *ChatEventDescriptionChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ChatEventDescriptionChanged - - return json.Marshal((*stub)(entity)) -} - -func (*ChatEventDescriptionChanged) GetClass() string { - return ClassChatEventAction -} - -func (*ChatEventDescriptionChanged) GetType() string { - return TypeChatEventDescriptionChanged -} - -func (*ChatEventDescriptionChanged) ChatEventActionType() string { - return TypeChatEventDescriptionChanged -} - -// The linked chat of a supergroup was changed -type ChatEventLinkedChatChanged struct { - meta - // Previous supergroup linked chat identifier - OldLinkedChatId int64 `json:"old_linked_chat_id"` - // New supergroup linked chat identifier - NewLinkedChatId int64 `json:"new_linked_chat_id"` -} - -func (entity *ChatEventLinkedChatChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ChatEventLinkedChatChanged - - return json.Marshal((*stub)(entity)) -} - -func (*ChatEventLinkedChatChanged) GetClass() string { - return ClassChatEventAction -} - -func (*ChatEventLinkedChatChanged) GetType() string { - return TypeChatEventLinkedChatChanged -} - -func (*ChatEventLinkedChatChanged) ChatEventActionType() string { - return TypeChatEventLinkedChatChanged -} - -// The supergroup location was changed -type ChatEventLocationChanged struct { - meta - // Previous location; may be null - OldLocation *ChatLocation `json:"old_location"` - // New location; may be null - NewLocation *ChatLocation `json:"new_location"` -} - -func (entity *ChatEventLocationChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ChatEventLocationChanged - - return json.Marshal((*stub)(entity)) -} - -func (*ChatEventLocationChanged) GetClass() string { - return ClassChatEventAction -} - -func (*ChatEventLocationChanged) GetType() string { - return TypeChatEventLocationChanged -} - -func (*ChatEventLocationChanged) ChatEventActionType() string { - return TypeChatEventLocationChanged -} - -// The message TTL was changed -type ChatEventMessageTtlChanged struct { - meta - // Previous value of message_ttl - OldMessageTtl int32 `json:"old_message_ttl"` - // New value of message_ttl - NewMessageTtl int32 `json:"new_message_ttl"` -} - -func (entity *ChatEventMessageTtlChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ChatEventMessageTtlChanged - - return json.Marshal((*stub)(entity)) -} - -func (*ChatEventMessageTtlChanged) GetClass() string { - return ClassChatEventAction -} - -func (*ChatEventMessageTtlChanged) GetType() string { - return TypeChatEventMessageTtlChanged -} - -func (*ChatEventMessageTtlChanged) ChatEventActionType() string { - return TypeChatEventMessageTtlChanged +func (*ChatEventTitleChanged) ChatEventActionType() string { + return TypeChatEventTitleChanged } // The chat permissions was changed @@ -22124,120 +20931,33 @@ func (*ChatEventPermissionsChanged) ChatEventActionType() string { return TypeChatEventPermissionsChanged } -// The chat photo was changed -type ChatEventPhotoChanged struct { +// The chat description was changed +type ChatEventDescriptionChanged struct { meta - // Previous chat photo value; may be null - OldPhoto *ChatPhoto `json:"old_photo"` - // New chat photo value; may be null - NewPhoto *ChatPhoto `json:"new_photo"` + // Previous chat description + OldDescription string `json:"old_description"` + // New chat description + NewDescription string `json:"new_description"` } -func (entity *ChatEventPhotoChanged) MarshalJSON() ([]byte, error) { +func (entity *ChatEventDescriptionChanged) MarshalJSON() ([]byte, error) { entity.meta.Type = entity.GetType() - type stub ChatEventPhotoChanged + type stub ChatEventDescriptionChanged return json.Marshal((*stub)(entity)) } -func (*ChatEventPhotoChanged) GetClass() string { +func (*ChatEventDescriptionChanged) GetClass() string { return ClassChatEventAction } -func (*ChatEventPhotoChanged) GetType() string { - return TypeChatEventPhotoChanged +func (*ChatEventDescriptionChanged) GetType() string { + return TypeChatEventDescriptionChanged } -func (*ChatEventPhotoChanged) ChatEventActionType() string { - return TypeChatEventPhotoChanged -} - -// The slow_mode_delay setting of a supergroup was changed -type ChatEventSlowModeDelayChanged struct { - meta - // Previous value of slow_mode_delay, in seconds - OldSlowModeDelay int32 `json:"old_slow_mode_delay"` - // New value of slow_mode_delay, in seconds - NewSlowModeDelay int32 `json:"new_slow_mode_delay"` -} - -func (entity *ChatEventSlowModeDelayChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ChatEventSlowModeDelayChanged - - return json.Marshal((*stub)(entity)) -} - -func (*ChatEventSlowModeDelayChanged) GetClass() string { - return ClassChatEventAction -} - -func (*ChatEventSlowModeDelayChanged) GetType() string { - return TypeChatEventSlowModeDelayChanged -} - -func (*ChatEventSlowModeDelayChanged) ChatEventActionType() string { - return TypeChatEventSlowModeDelayChanged -} - -// The supergroup sticker set was changed -type ChatEventStickerSetChanged struct { - meta - // Previous identifier of the chat sticker set; 0 if none - OldStickerSetId JsonInt64 `json:"old_sticker_set_id"` - // New identifier of the chat sticker set; 0 if none - NewStickerSetId JsonInt64 `json:"new_sticker_set_id"` -} - -func (entity *ChatEventStickerSetChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ChatEventStickerSetChanged - - return json.Marshal((*stub)(entity)) -} - -func (*ChatEventStickerSetChanged) GetClass() string { - return ClassChatEventAction -} - -func (*ChatEventStickerSetChanged) GetType() string { - return TypeChatEventStickerSetChanged -} - -func (*ChatEventStickerSetChanged) ChatEventActionType() string { - return TypeChatEventStickerSetChanged -} - -// The chat title was changed -type ChatEventTitleChanged struct { - meta - // Previous chat title - OldTitle string `json:"old_title"` - // New chat title - NewTitle string `json:"new_title"` -} - -func (entity *ChatEventTitleChanged) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ChatEventTitleChanged - - return json.Marshal((*stub)(entity)) -} - -func (*ChatEventTitleChanged) GetClass() string { - return ClassChatEventAction -} - -func (*ChatEventTitleChanged) GetType() string { - return TypeChatEventTitleChanged -} - -func (*ChatEventTitleChanged) ChatEventActionType() string { - return TypeChatEventTitleChanged +func (*ChatEventDescriptionChanged) ChatEventActionType() string { + return TypeChatEventDescriptionChanged } // The chat username was changed @@ -22269,31 +20989,33 @@ func (*ChatEventUsernameChanged) ChatEventActionType() string { return TypeChatEventUsernameChanged } -// The has_protected_content setting of a channel was toggled -type ChatEventHasProtectedContentToggled struct { +// The chat photo was changed +type ChatEventPhotoChanged struct { meta - // New value of has_protected_content - HasProtectedContent bool `json:"has_protected_content"` + // Previous chat photo value; may be null + OldPhoto *ChatPhoto `json:"old_photo"` + // New chat photo value; may be null + NewPhoto *ChatPhoto `json:"new_photo"` } -func (entity *ChatEventHasProtectedContentToggled) MarshalJSON() ([]byte, error) { +func (entity *ChatEventPhotoChanged) MarshalJSON() ([]byte, error) { entity.meta.Type = entity.GetType() - type stub ChatEventHasProtectedContentToggled + type stub ChatEventPhotoChanged return json.Marshal((*stub)(entity)) } -func (*ChatEventHasProtectedContentToggled) GetClass() string { +func (*ChatEventPhotoChanged) GetClass() string { return ClassChatEventAction } -func (*ChatEventHasProtectedContentToggled) GetType() string { - return TypeChatEventHasProtectedContentToggled +func (*ChatEventPhotoChanged) GetType() string { + return TypeChatEventPhotoChanged } -func (*ChatEventHasProtectedContentToggled) ChatEventActionType() string { - return TypeChatEventHasProtectedContentToggled +func (*ChatEventPhotoChanged) ChatEventActionType() string { + return TypeChatEventPhotoChanged } // The can_invite_users permission of a supergroup chat was toggled @@ -22323,31 +21045,91 @@ func (*ChatEventInvitesToggled) ChatEventActionType() string { return TypeChatEventInvitesToggled } -// The is_all_history_available setting of a supergroup was toggled -type ChatEventIsAllHistoryAvailableToggled struct { +// The linked chat of a supergroup was changed +type ChatEventLinkedChatChanged struct { meta - // New value of is_all_history_available - IsAllHistoryAvailable bool `json:"is_all_history_available"` + // Previous supergroup linked chat identifier + OldLinkedChatId int64 `json:"old_linked_chat_id"` + // New supergroup linked chat identifier + NewLinkedChatId int64 `json:"new_linked_chat_id"` } -func (entity *ChatEventIsAllHistoryAvailableToggled) MarshalJSON() ([]byte, error) { +func (entity *ChatEventLinkedChatChanged) MarshalJSON() ([]byte, error) { entity.meta.Type = entity.GetType() - type stub ChatEventIsAllHistoryAvailableToggled + type stub ChatEventLinkedChatChanged return json.Marshal((*stub)(entity)) } -func (*ChatEventIsAllHistoryAvailableToggled) GetClass() string { +func (*ChatEventLinkedChatChanged) GetClass() string { return ClassChatEventAction } -func (*ChatEventIsAllHistoryAvailableToggled) GetType() string { - return TypeChatEventIsAllHistoryAvailableToggled +func (*ChatEventLinkedChatChanged) GetType() string { + return TypeChatEventLinkedChatChanged } -func (*ChatEventIsAllHistoryAvailableToggled) ChatEventActionType() string { - return TypeChatEventIsAllHistoryAvailableToggled +func (*ChatEventLinkedChatChanged) ChatEventActionType() string { + return TypeChatEventLinkedChatChanged +} + +// The slow_mode_delay setting of a supergroup was changed +type ChatEventSlowModeDelayChanged struct { + meta + // Previous value of slow_mode_delay, in seconds + OldSlowModeDelay int32 `json:"old_slow_mode_delay"` + // New value of slow_mode_delay, in seconds + NewSlowModeDelay int32 `json:"new_slow_mode_delay"` +} + +func (entity *ChatEventSlowModeDelayChanged) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub ChatEventSlowModeDelayChanged + + return json.Marshal((*stub)(entity)) +} + +func (*ChatEventSlowModeDelayChanged) GetClass() string { + return ClassChatEventAction +} + +func (*ChatEventSlowModeDelayChanged) GetType() string { + return TypeChatEventSlowModeDelayChanged +} + +func (*ChatEventSlowModeDelayChanged) ChatEventActionType() string { + return TypeChatEventSlowModeDelayChanged +} + +// The message TTL was changed +type ChatEventMessageTtlChanged struct { + meta + // Previous value of message_ttl + OldMessageTtl int32 `json:"old_message_ttl"` + // New value of message_ttl + NewMessageTtl int32 `json:"new_message_ttl"` +} + +func (entity *ChatEventMessageTtlChanged) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub ChatEventMessageTtlChanged + + return json.Marshal((*stub)(entity)) +} + +func (*ChatEventMessageTtlChanged) GetClass() string { + return ClassChatEventAction +} + +func (*ChatEventMessageTtlChanged) GetType() string { + return TypeChatEventMessageTtlChanged +} + +func (*ChatEventMessageTtlChanged) ChatEventActionType() string { + return TypeChatEventMessageTtlChanged } // The sign_messages setting of a channel was toggled @@ -22377,6 +21159,118 @@ func (*ChatEventSignMessagesToggled) ChatEventActionType() string { return TypeChatEventSignMessagesToggled } +// The has_protected_content setting of a channel was toggled +type ChatEventHasProtectedContentToggled struct { + meta + // New value of has_protected_content + HasProtectedContent bool `json:"has_protected_content"` +} + +func (entity *ChatEventHasProtectedContentToggled) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub ChatEventHasProtectedContentToggled + + return json.Marshal((*stub)(entity)) +} + +func (*ChatEventHasProtectedContentToggled) GetClass() string { + return ClassChatEventAction +} + +func (*ChatEventHasProtectedContentToggled) GetType() string { + return TypeChatEventHasProtectedContentToggled +} + +func (*ChatEventHasProtectedContentToggled) ChatEventActionType() string { + return TypeChatEventHasProtectedContentToggled +} + +// The supergroup sticker set was changed +type ChatEventStickerSetChanged struct { + meta + // Previous identifier of the chat sticker set; 0 if none + OldStickerSetId JsonInt64 `json:"old_sticker_set_id"` + // New identifier of the chat sticker set; 0 if none + NewStickerSetId JsonInt64 `json:"new_sticker_set_id"` +} + +func (entity *ChatEventStickerSetChanged) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub ChatEventStickerSetChanged + + return json.Marshal((*stub)(entity)) +} + +func (*ChatEventStickerSetChanged) GetClass() string { + return ClassChatEventAction +} + +func (*ChatEventStickerSetChanged) GetType() string { + return TypeChatEventStickerSetChanged +} + +func (*ChatEventStickerSetChanged) ChatEventActionType() string { + return TypeChatEventStickerSetChanged +} + +// The supergroup location was changed +type ChatEventLocationChanged struct { + meta + // Previous location; may be null + OldLocation *ChatLocation `json:"old_location"` + // New location; may be null + NewLocation *ChatLocation `json:"new_location"` +} + +func (entity *ChatEventLocationChanged) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub ChatEventLocationChanged + + return json.Marshal((*stub)(entity)) +} + +func (*ChatEventLocationChanged) GetClass() string { + return ClassChatEventAction +} + +func (*ChatEventLocationChanged) GetType() string { + return TypeChatEventLocationChanged +} + +func (*ChatEventLocationChanged) ChatEventActionType() string { + return TypeChatEventLocationChanged +} + +// The is_all_history_available setting of a supergroup was toggled +type ChatEventIsAllHistoryAvailableToggled struct { + meta + // New value of is_all_history_available + IsAllHistoryAvailable bool `json:"is_all_history_available"` +} + +func (entity *ChatEventIsAllHistoryAvailableToggled) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub ChatEventIsAllHistoryAvailableToggled + + return json.Marshal((*stub)(entity)) +} + +func (*ChatEventIsAllHistoryAvailableToggled) GetClass() string { + return ClassChatEventAction +} + +func (*ChatEventIsAllHistoryAvailableToggled) GetType() string { + return TypeChatEventIsAllHistoryAvailableToggled +} + +func (*ChatEventIsAllHistoryAvailableToggled) ChatEventActionType() string { + return TypeChatEventIsAllHistoryAvailableToggled +} + // A chat invite link was edited type ChatEventInviteLinkEdited struct { meta @@ -22514,33 +21408,6 @@ func (*ChatEventVideoChatEnded) ChatEventActionType() string { return TypeChatEventVideoChatEnded } -// The mute_new_participants setting of a video chat was toggled -type ChatEventVideoChatMuteNewParticipantsToggled struct { - meta - // New value of the mute_new_participants setting - MuteNewParticipants bool `json:"mute_new_participants"` -} - -func (entity *ChatEventVideoChatMuteNewParticipantsToggled) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ChatEventVideoChatMuteNewParticipantsToggled - - return json.Marshal((*stub)(entity)) -} - -func (*ChatEventVideoChatMuteNewParticipantsToggled) GetClass() string { - return ClassChatEventAction -} - -func (*ChatEventVideoChatMuteNewParticipantsToggled) GetType() string { - return TypeChatEventVideoChatMuteNewParticipantsToggled -} - -func (*ChatEventVideoChatMuteNewParticipantsToggled) ChatEventActionType() string { - return TypeChatEventVideoChatMuteNewParticipantsToggled -} - // A video chat participant was muted or unmuted type ChatEventVideoChatParticipantIsMutedToggled struct { meta @@ -22637,6 +21504,33 @@ func (chatEventVideoChatParticipantVolumeLevelChanged *ChatEventVideoChatPartici return nil } +// The mute_new_participants setting of a video chat was toggled +type ChatEventVideoChatMuteNewParticipantsToggled struct { + meta + // New value of the mute_new_participants setting + MuteNewParticipants bool `json:"mute_new_participants"` +} + +func (entity *ChatEventVideoChatMuteNewParticipantsToggled) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub ChatEventVideoChatMuteNewParticipantsToggled + + return json.Marshal((*stub)(entity)) +} + +func (*ChatEventVideoChatMuteNewParticipantsToggled) GetClass() string { + return ClassChatEventAction +} + +func (*ChatEventVideoChatMuteNewParticipantsToggled) GetType() string { + return TypeChatEventVideoChatMuteNewParticipantsToggled +} + +func (*ChatEventVideoChatMuteNewParticipantsToggled) ChatEventActionType() string { + return TypeChatEventVideoChatMuteNewParticipantsToggled +} + // Represents a chat event type ChatEvent struct { meta @@ -22786,7 +21680,7 @@ func (*LanguagePackStringValueOrdinary) LanguagePackStringValueType() string { return TypeLanguagePackStringValueOrdinary } -// A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more information +// A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info type LanguagePackStringValuePluralized struct { meta // Value for zero objects @@ -22926,7 +21820,7 @@ type LanguagePackInfo struct { Name string `json:"name"` // Name of the language in that language NativeName string `json:"native_name"` - // A language code to be used to apply plural forms. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more information + // A language code to be used to apply plural forms. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info PluralCode string `json:"plural_code"` // True, if the language pack is official IsOfficial bool `json:"is_official"` @@ -23968,7 +22862,7 @@ func (*CheckChatUsernameResultUsernameOccupied) CheckChatUsernameResultType() st return TypeCheckChatUsernameResultUsernameOccupied } -// The user has too many chats with username, one of them must be made private first +// The user has too much chats with username, one of them must be made private first type CheckChatUsernameResultPublicChatsTooMuch struct { meta } @@ -25298,62 +24192,6 @@ func (*NotificationGroupTypeCalls) NotificationGroupTypeType() string { return TypeNotificationGroupTypeCalls } -// Describes a notification sound in MP3 format -type NotificationSound struct { - meta - // Unique identifier of the notification sound - Id JsonInt64 `json:"id"` - // Duration of the sound, in seconds - Duration int32 `json:"duration"` - // Point in time (Unix timestamp) when the sound was created - Date int32 `json:"date"` - // Title of the notification sound - Title string `json:"title"` - // Arbitrary data, defined while the sound was uploaded - Data string `json:"data"` - // File containing the sound - Sound *File `json:"sound"` -} - -func (entity *NotificationSound) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub NotificationSound - - return json.Marshal((*stub)(entity)) -} - -func (*NotificationSound) GetClass() string { - return ClassNotificationSound -} - -func (*NotificationSound) GetType() string { - return TypeNotificationSound -} - -// Contains a list of notification sounds -type NotificationSounds struct { - meta - // A list of notification sounds - NotificationSounds []*NotificationSound `json:"notification_sounds"` -} - -func (entity *NotificationSounds) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub NotificationSounds - - return json.Marshal((*stub)(entity)) -} - -func (*NotificationSounds) GetClass() string { - return ClassNotificationSounds -} - -func (*NotificationSounds) GetType() string { - return TypeNotificationSounds -} - // Contains information about a notification type Notification struct { meta @@ -25361,8 +24199,8 @@ type Notification struct { Id int32 `json:"id"` // Notification date Date int32 `json:"date"` - // Identifier of the notification sound to be played; 0 if sound is disabled - SoundId JsonInt64 `json:"sound_id"` + // True, if the notification was initially silent + IsSilent bool `json:"is_silent"` // Notification type Type NotificationType `json:"type"` } @@ -25385,10 +24223,10 @@ func (*Notification) GetType() string { func (notification *Notification) UnmarshalJSON(data []byte) error { var tmp struct { - Id int32 `json:"id"` - Date int32 `json:"date"` - SoundId JsonInt64 `json:"sound_id"` - Type json.RawMessage `json:"type"` + Id int32 `json:"id"` + Date int32 `json:"date"` + IsSilent bool `json:"is_silent"` + Type json.RawMessage `json:"type"` } err := json.Unmarshal(data, &tmp) @@ -25398,7 +24236,7 @@ func (notification *Notification) UnmarshalJSON(data []byte) error { notification.Id = tmp.Id notification.Date = tmp.Date - notification.SoundId = tmp.SoundId + notification.IsSilent = tmp.IsSilent fieldType, _ := UnmarshalNotificationType(tmp.Type) notification.Type = fieldType @@ -26357,7 +25195,7 @@ type ConnectedWebsite struct { LastActiveDate int32 `json:"last_active_date"` // IP address from which the user was logged in, in human-readable format Ip string `json:"ip"` - // Human-readable description of a country and a region from which the user was logged in, based on the IP address + // Human-readable description of a country and a region, from which the user was logged in, based on the IP address Location string `json:"location"` } @@ -26575,56 +25413,6 @@ func (*ChatReportReasonFake) ChatReportReasonType() string { return TypeChatReportReasonFake } -// The chat has illegal drugs related content -type ChatReportReasonIllegalDrugs struct { - meta -} - -func (entity *ChatReportReasonIllegalDrugs) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ChatReportReasonIllegalDrugs - - return json.Marshal((*stub)(entity)) -} - -func (*ChatReportReasonIllegalDrugs) GetClass() string { - return ClassChatReportReason -} - -func (*ChatReportReasonIllegalDrugs) GetType() string { - return TypeChatReportReasonIllegalDrugs -} - -func (*ChatReportReasonIllegalDrugs) ChatReportReasonType() string { - return TypeChatReportReasonIllegalDrugs -} - -// The chat contains messages with personal details -type ChatReportReasonPersonalDetails struct { - meta -} - -func (entity *ChatReportReasonPersonalDetails) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub ChatReportReasonPersonalDetails - - return json.Marshal((*stub)(entity)) -} - -func (*ChatReportReasonPersonalDetails) GetClass() string { - return ClassChatReportReason -} - -func (*ChatReportReasonPersonalDetails) GetType() string { - return TypeChatReportReasonPersonalDetails -} - -func (*ChatReportReasonPersonalDetails) ChatReportReasonType() string { - return TypeChatReportReasonPersonalDetails -} - // A custom reason provided by the user type ChatReportReasonCustom struct { meta @@ -26675,58 +25463,6 @@ func (*InternalLinkTypeActiveSessions) InternalLinkTypeType() string { return TypeInternalLinkTypeActiveSessions } -// The link is a link to an attachment menu bot to be opened in the specified chat. Process given chat_link to open corresponding chat. Then call searchPublicChat with the given bot username, check that the user is a bot and can be added to attachment menu. Then use getAttachmentMenuBot to receive information about the bot. If the bot isn't added to attachment menu, then user needs to confirm adding the bot to attachment menu. If user confirms adding, then use toggleBotIsAddedToAttachmentMenu to add it. If attachment menu bots can't be used in the current chat, show an error to the user. If the bot is added to attachment menu, then use openWebApp with the given URL -type InternalLinkTypeAttachmentMenuBot struct { - meta - // An internal link pointing to a chat; may be null if the current chat needs to be kept - ChatLink InternalLinkType `json:"chat_link"` - // Username of the bot - BotUsername string `json:"bot_username"` - // URL to be passed to openWebApp - Url string `json:"url"` -} - -func (entity *InternalLinkTypeAttachmentMenuBot) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub InternalLinkTypeAttachmentMenuBot - - return json.Marshal((*stub)(entity)) -} - -func (*InternalLinkTypeAttachmentMenuBot) GetClass() string { - return ClassInternalLinkType -} - -func (*InternalLinkTypeAttachmentMenuBot) GetType() string { - return TypeInternalLinkTypeAttachmentMenuBot -} - -func (*InternalLinkTypeAttachmentMenuBot) InternalLinkTypeType() string { - return TypeInternalLinkTypeAttachmentMenuBot -} - -func (internalLinkTypeAttachmentMenuBot *InternalLinkTypeAttachmentMenuBot) UnmarshalJSON(data []byte) error { - var tmp struct { - ChatLink json.RawMessage `json:"chat_link"` - BotUsername string `json:"bot_username"` - Url string `json:"url"` - } - - err := json.Unmarshal(data, &tmp) - if err != nil { - return err - } - - internalLinkTypeAttachmentMenuBot.BotUsername = tmp.BotUsername - internalLinkTypeAttachmentMenuBot.Url = tmp.Url - - fieldChatLink, _ := UnmarshalInternalLinkType(tmp.ChatLink) - internalLinkTypeAttachmentMenuBot.ChatLink = fieldChatLink - - return nil -} - // The link contains an authentication code. Call checkAuthenticationCode with the code if the current authorization state is authorizationStateWaitCode type InternalLinkTypeAuthenticationCode struct { meta @@ -26810,15 +25546,13 @@ func (*InternalLinkTypeBotStart) InternalLinkTypeType() string { return TypeInternalLinkTypeBotStart } -// The link is a link to a Telegram bot, which is supposed to be added to a group chat. Call searchPublicChat with the given bot username, check that the user is a bot and can be added to groups, ask the current user to select a basic group or a supergroup chat to add the bot to, taking into account that bots can be added to a public supergroup only by administrators of the supergroup. If administrator rights are provided by the link, call getChatMember to receive the current bot rights in the chat and if the bot already is an administrator, check that the current user can edit its administrator rights, combine received rights with the requested administrator rights, show confirmation box to the user, and call setChatMemberStatus with the chosen chat and confirmed administrator rights. Before call to setChatMemberStatus it may be required to upgrade the chosen basic group chat to a supergroup chat. Then if start_parameter isn't empty, call sendBotStartMessage with the given start parameter and the chosen chat, otherwise just send /start message with bot's username added to the chat. +// The link is a link to a Telegram bot, which is supposed to be added to a group chat. Call searchPublicChat with the given bot username, check that the user is a bot and can be added to groups, ask the current user to select a group to add the bot to, and then call sendBotStartMessage with the given start parameter and the chosen group chat. Bots can be added to a public group only by administrators of the group type InternalLinkTypeBotStartInGroup struct { meta // Username of the bot BotUsername string `json:"bot_username"` // The parameter to be passed to sendBotStartMessage StartParameter string `json:"start_parameter"` - // Expected administrator rights for the bot; may be null - AdministratorRights *ChatAdministratorRights `json:"administrator_rights"` } func (entity *InternalLinkTypeBotStartInGroup) MarshalJSON() ([]byte, error) { @@ -26841,35 +25575,6 @@ func (*InternalLinkTypeBotStartInGroup) InternalLinkTypeType() string { return TypeInternalLinkTypeBotStartInGroup } -// The link is a link to a Telegram bot, which is supposed to be added to a channel chat as an administrator. Call searchPublicChat with the given bot username and check that the user is a bot, ask the current user to select a channel chat to add the bot to as an administrator. Then call getChatMember to receive the current bot rights in the chat and if the bot already is an administrator, check that the current user can edit its administrator rights and combine received rights with the requested administrator rights. Then show confirmation box to the user, and call setChatMemberStatus with the chosen chat and confirmed rights -type InternalLinkTypeBotAddToChannel struct { - meta - // Username of the bot - BotUsername string `json:"bot_username"` - // Expected administrator rights for the bot - AdministratorRights *ChatAdministratorRights `json:"administrator_rights"` -} - -func (entity *InternalLinkTypeBotAddToChannel) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub InternalLinkTypeBotAddToChannel - - return json.Marshal((*stub)(entity)) -} - -func (*InternalLinkTypeBotAddToChannel) GetClass() string { - return ClassInternalLinkType -} - -func (*InternalLinkTypeBotAddToChannel) GetType() string { - return TypeInternalLinkTypeBotAddToChannel -} - -func (*InternalLinkTypeBotAddToChannel) InternalLinkTypeType() string { - return TypeInternalLinkTypeBotAddToChannel -} - // The link is a link to the change phone number section of the app type InternalLinkTypeChangePhoneNumber struct { meta @@ -27003,31 +25708,6 @@ func (*InternalLinkTypeLanguagePack) InternalLinkTypeType() string { return TypeInternalLinkTypeLanguagePack } -// The link is a link to the language settings section of the app -type InternalLinkTypeLanguageSettings struct { - meta -} - -func (entity *InternalLinkTypeLanguageSettings) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub InternalLinkTypeLanguageSettings - - return json.Marshal((*stub)(entity)) -} - -func (*InternalLinkTypeLanguageSettings) GetClass() string { - return ClassInternalLinkType -} - -func (*InternalLinkTypeLanguageSettings) GetType() string { - return TypeInternalLinkTypeLanguageSettings -} - -func (*InternalLinkTypeLanguageSettings) InternalLinkTypeType() string { - return TypeInternalLinkTypeLanguageSettings -} - // The link is a link to a Telegram message. Call getMessageLinkInfo with the given URL to process the link type InternalLinkTypeMessage struct { meta @@ -27148,31 +25828,6 @@ func (*InternalLinkTypePhoneNumberConfirmation) InternalLinkTypeType() string { return TypeInternalLinkTypePhoneNumberConfirmation } -// The link is a link to the privacy and security settings section of the app -type InternalLinkTypePrivacyAndSecuritySettings struct { - meta -} - -func (entity *InternalLinkTypePrivacyAndSecuritySettings) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub InternalLinkTypePrivacyAndSecuritySettings - - return json.Marshal((*stub)(entity)) -} - -func (*InternalLinkTypePrivacyAndSecuritySettings) GetClass() string { - return ClassInternalLinkType -} - -func (*InternalLinkTypePrivacyAndSecuritySettings) GetType() string { - return TypeInternalLinkTypePrivacyAndSecuritySettings -} - -func (*InternalLinkTypePrivacyAndSecuritySettings) InternalLinkTypeType() string { - return TypeInternalLinkTypePrivacyAndSecuritySettings -} - // The link is a link to a proxy. Call addProxy with the given parameters to process the link and add the proxy type InternalLinkTypeProxy struct { meta @@ -27433,34 +26088,7 @@ func (*InternalLinkTypeUnsupportedProxy) InternalLinkTypeType() string { return TypeInternalLinkTypeUnsupportedProxy } -// The link is a link to a user by its phone number. Call searchUserByPhoneNumber with the given phone number to process the link -type InternalLinkTypeUserPhoneNumber struct { - meta - // Phone number of the user - PhoneNumber string `json:"phone_number"` -} - -func (entity *InternalLinkTypeUserPhoneNumber) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub InternalLinkTypeUserPhoneNumber - - return json.Marshal((*stub)(entity)) -} - -func (*InternalLinkTypeUserPhoneNumber) GetClass() string { - return ClassInternalLinkType -} - -func (*InternalLinkTypeUserPhoneNumber) GetType() string { - return TypeInternalLinkTypeUserPhoneNumber -} - -func (*InternalLinkTypeUserPhoneNumber) InternalLinkTypeType() string { - return TypeInternalLinkTypeUserPhoneNumber -} - -// The link is a link to a video chat. Call searchPublicChat with the given chat username, and then joinGroupCall with the given invite hash to process the link +// The link is a link to a video chat. Call searchPublicChat with the given chat username, and then joinGoupCall with the given invite hash to process the link type InternalLinkTypeVideoChat struct { meta // Username of the chat with the video chat @@ -27672,31 +26300,6 @@ func (*FileTypeDocument) FileTypeType() string { return TypeFileTypeDocument } -// The file is a notification sound -type FileTypeNotificationSound struct { - meta -} - -func (entity *FileTypeNotificationSound) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub FileTypeNotificationSound - - return json.Marshal((*stub)(entity)) -} - -func (*FileTypeNotificationSound) GetClass() string { - return ClassFileType -} - -func (*FileTypeNotificationSound) GetType() string { - return TypeFileTypeNotificationSound -} - -func (*FileTypeNotificationSound) FileTypeType() string { - return TypeFileTypeNotificationSound -} - // The file is a photo type FileTypePhoto struct { meta @@ -28859,7 +27462,7 @@ func (*TMeUrlTypeSupergroup) TMeUrlTypeType() string { // A chat invite link type TMeUrlTypeChatInvite struct { meta - // Information about the chat invite link + // Chat invite link info Info *ChatInviteLinkInfo `json:"info"` } @@ -29447,38 +28050,42 @@ func (*Proxies) GetType() string { return TypeProxies } -// A sticker to be added to a sticker set -type InputSticker struct { +// A static sticker in PNG format, which will be converted to WEBP server-side +type InputStickerStatic struct { meta - // File with the sticker; must fit in a 512x512 square. For WEBP stickers and masks the file must be in PNG format, which will be converted to WEBP server-side. Otherwise, the file must be local or uploaded within a week. See https://core.telegram.org/animated_stickers#technical-requirements for technical requirements + // PNG image with the sticker; must be up to 512 KB in size and fit in a 512x512 square Sticker InputFile `json:"sticker"` // Emojis corresponding to the sticker Emojis string `json:"emojis"` - // Sticker type - Type StickerType `json:"type"` + // For masks, position where the mask is placed; pass null if unspecified + MaskPosition *MaskPosition `json:"mask_position"` } -func (entity *InputSticker) MarshalJSON() ([]byte, error) { +func (entity *InputStickerStatic) MarshalJSON() ([]byte, error) { entity.meta.Type = entity.GetType() - type stub InputSticker + type stub InputStickerStatic return json.Marshal((*stub)(entity)) } -func (*InputSticker) GetClass() string { +func (*InputStickerStatic) GetClass() string { return ClassInputSticker } -func (*InputSticker) GetType() string { - return TypeInputSticker +func (*InputStickerStatic) GetType() string { + return TypeInputStickerStatic } -func (inputSticker *InputSticker) UnmarshalJSON(data []byte) error { +func (*InputStickerStatic) InputStickerType() string { + return TypeInputStickerStatic +} + +func (inputStickerStatic *InputStickerStatic) UnmarshalJSON(data []byte) error { var tmp struct { - Sticker json.RawMessage `json:"sticker"` - Emojis string `json:"emojis"` - Type json.RawMessage `json:"type"` + Sticker json.RawMessage `json:"sticker"` + Emojis string `json:"emojis"` + MaskPosition *MaskPosition `json:"mask_position"` } err := json.Unmarshal(data, &tmp) @@ -29486,13 +28093,59 @@ func (inputSticker *InputSticker) UnmarshalJSON(data []byte) error { return err } - inputSticker.Emojis = tmp.Emojis + inputStickerStatic.Emojis = tmp.Emojis + inputStickerStatic.MaskPosition = tmp.MaskPosition fieldSticker, _ := UnmarshalInputFile(tmp.Sticker) - inputSticker.Sticker = fieldSticker + inputStickerStatic.Sticker = fieldSticker - fieldType, _ := UnmarshalStickerType(tmp.Type) - inputSticker.Type = fieldType + return nil +} + +// An animated sticker in TGS format +type InputStickerAnimated struct { + meta + // File with the animated sticker. Only local or uploaded within a week files are supported. See https://core.telegram.org/animated_stickers#technical-requirements for technical requirements + Sticker InputFile `json:"sticker"` + // Emojis corresponding to the sticker + Emojis string `json:"emojis"` +} + +func (entity *InputStickerAnimated) MarshalJSON() ([]byte, error) { + entity.meta.Type = entity.GetType() + + type stub InputStickerAnimated + + return json.Marshal((*stub)(entity)) +} + +func (*InputStickerAnimated) GetClass() string { + return ClassInputSticker +} + +func (*InputStickerAnimated) GetType() string { + return TypeInputStickerAnimated +} + +func (*InputStickerAnimated) InputStickerType() string { + return TypeInputStickerAnimated +} + +func (inputStickerAnimated *InputStickerAnimated) UnmarshalJSON(data []byte) error { + var tmp struct { + Sticker json.RawMessage `json:"sticker"` + Emojis string `json:"emojis"` + } + + err := json.Unmarshal(data, &tmp) + if err != nil { + return err + } + + inputStickerAnimated.Emojis = tmp.Emojis + + fieldSticker, _ := UnmarshalInputFile(tmp.Sticker) + inputStickerAnimated.Sticker = fieldSticker return nil } @@ -30670,39 +29323,6 @@ func (*UpdateMessageMentionRead) UpdateType() string { return TypeUpdateMessageMentionRead } -// The list of unread reactions added to a message was changed -type UpdateMessageUnreadReactions struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // Message identifier - MessageId int64 `json:"message_id"` - // The new list of unread reactions - UnreadReactions []*UnreadReaction `json:"unread_reactions"` - // The new number of messages with unread reactions left in the chat - UnreadReactionCount int32 `json:"unread_reaction_count"` -} - -func (entity *UpdateMessageUnreadReactions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub UpdateMessageUnreadReactions - - return json.Marshal((*stub)(entity)) -} - -func (*UpdateMessageUnreadReactions) GetClass() string { - return ClassUpdate -} - -func (*UpdateMessageUnreadReactions) GetType() string { - return TypeUpdateMessageUnreadReactions -} - -func (*UpdateMessageUnreadReactions) UpdateType() string { - return TypeUpdateMessageUnreadReactions -} - // A message with a live location was viewed. When the update is received, the application is supposed to update the live location type UpdateMessageLiveLocationViewed struct { meta @@ -31014,35 +29634,6 @@ func (updateChatActionBar *UpdateChatActionBar) UnmarshalJSON(data []byte) error return nil } -// The chat available reactions were changed -type UpdateChatAvailableReactions struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The new list of reactions, available in the chat - AvailableReactions []string `json:"available_reactions"` -} - -func (entity *UpdateChatAvailableReactions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub UpdateChatAvailableReactions - - return json.Marshal((*stub)(entity)) -} - -func (*UpdateChatAvailableReactions) GetClass() string { - return ClassUpdate -} - -func (*UpdateChatAvailableReactions) GetType() string { - return TypeUpdateChatAvailableReactions -} - -func (*UpdateChatAvailableReactions) UpdateType() string { - return TypeUpdateChatAvailableReactions -} - // A chat draft has changed. Be aware that the update may come in the currently opened chat but with old content of the draft. If the user has changed the content of the draft, this update mustn't be applied type UpdateChatDraftMessage struct { meta @@ -31296,35 +29887,6 @@ func (*UpdateChatUnreadMentionCount) UpdateType() string { return TypeUpdateChatUnreadMentionCount } -// The chat unread_reaction_count has changed -type UpdateChatUnreadReactionCount struct { - meta - // Chat identifier - ChatId int64 `json:"chat_id"` - // The number of messages with unread reactions left in the chat - UnreadReactionCount int32 `json:"unread_reaction_count"` -} - -func (entity *UpdateChatUnreadReactionCount) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub UpdateChatUnreadReactionCount - - return json.Marshal((*stub)(entity)) -} - -func (*UpdateChatUnreadReactionCount) GetClass() string { - return ClassUpdate -} - -func (*UpdateChatUnreadReactionCount) GetType() string { - return TypeUpdateChatUnreadReactionCount -} - -func (*UpdateChatUnreadReactionCount) UpdateType() string { - return TypeUpdateChatUnreadReactionCount -} - // A chat video chat state has changed type UpdateChatVideoChat struct { meta @@ -31526,7 +30088,7 @@ func (*UpdateChatFilters) UpdateType() string { return TypeUpdateChatFilters } -// The number of online group members has changed. This update with non-zero number of online group members is sent only for currently opened chats. There is no guarantee that it will be sent just after the number of online users has changed +// The number of online group members has changed. This update with non-zero count is sent only for currently opened chats. There is no guarantee that it will be sent just after the count has changed type UpdateChatOnlineMemberCount struct { meta // Identifier of the chat @@ -31643,8 +30205,8 @@ type UpdateNotificationGroup struct { ChatId int64 `json:"chat_id"` // Chat identifier, which notification settings must be applied to the added notifications NotificationSettingsChatId int64 `json:"notification_settings_chat_id"` - // Identifier of the notification sound to be played; 0 if sound is disabled - NotificationSoundId JsonInt64 `json:"notification_sound_id"` + // True, if the notifications must be shown without sound + IsSilent bool `json:"is_silent"` // Total number of unread notifications in the group, can be bigger than number of active notifications TotalCount int32 `json:"total_count"` // List of added group notifications, sorted by notification ID @@ -31679,7 +30241,7 @@ func (updateNotificationGroup *UpdateNotificationGroup) UnmarshalJSON(data []byt Type json.RawMessage `json:"type"` ChatId int64 `json:"chat_id"` NotificationSettingsChatId int64 `json:"notification_settings_chat_id"` - NotificationSoundId JsonInt64 `json:"notification_sound_id"` + IsSilent bool `json:"is_silent"` TotalCount int32 `json:"total_count"` AddedNotifications []*Notification `json:"added_notifications"` RemovedNotificationIds []int32 `json:"removed_notification_ids"` @@ -31693,7 +30255,7 @@ func (updateNotificationGroup *UpdateNotificationGroup) UnmarshalJSON(data []byt updateNotificationGroup.NotificationGroupId = tmp.NotificationGroupId updateNotificationGroup.ChatId = tmp.ChatId updateNotificationGroup.NotificationSettingsChatId = tmp.NotificationSettingsChatId - updateNotificationGroup.NotificationSoundId = tmp.NotificationSoundId + updateNotificationGroup.IsSilent = tmp.IsSilent updateNotificationGroup.TotalCount = tmp.TotalCount updateNotificationGroup.AddedNotifications = tmp.AddedNotifications updateNotificationGroup.RemovedNotificationIds = tmp.RemovedNotificationIds @@ -32229,128 +30791,6 @@ func (*UpdateFileGenerationStop) UpdateType() string { return TypeUpdateFileGenerationStop } -// The state of the file download list has changed -type UpdateFileDownloads struct { - meta - // Total size of files in the file download list, in bytes - TotalSize int64 `json:"total_size"` - // Total number of files in the file download list - TotalCount int32 `json:"total_count"` - // Total downloaded size of files in the file download list, in bytes - DownloadedSize int64 `json:"downloaded_size"` -} - -func (entity *UpdateFileDownloads) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub UpdateFileDownloads - - return json.Marshal((*stub)(entity)) -} - -func (*UpdateFileDownloads) GetClass() string { - return ClassUpdate -} - -func (*UpdateFileDownloads) GetType() string { - return TypeUpdateFileDownloads -} - -func (*UpdateFileDownloads) UpdateType() string { - return TypeUpdateFileDownloads -} - -// A file was added to the file download list. This update is sent only after file download list is loaded for the first time -type UpdateFileAddedToDownloads struct { - meta - // The added file download - FileDownload *FileDownload `json:"file_download"` - // New number of being downloaded and recently downloaded files found - Counts *DownloadedFileCounts `json:"counts"` -} - -func (entity *UpdateFileAddedToDownloads) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub UpdateFileAddedToDownloads - - return json.Marshal((*stub)(entity)) -} - -func (*UpdateFileAddedToDownloads) GetClass() string { - return ClassUpdate -} - -func (*UpdateFileAddedToDownloads) GetType() string { - return TypeUpdateFileAddedToDownloads -} - -func (*UpdateFileAddedToDownloads) UpdateType() string { - return TypeUpdateFileAddedToDownloads -} - -// A file download was changed. This update is sent only after file download list is loaded for the first time -type UpdateFileDownload struct { - meta - // File identifier - FileId int32 `json:"file_id"` - // Point in time (Unix timestamp) when the file downloading was completed; 0 if the file downloading isn't completed - CompleteDate int32 `json:"complete_date"` - // True, if downloading of the file is paused - IsPaused bool `json:"is_paused"` - // New number of being downloaded and recently downloaded files found - Counts *DownloadedFileCounts `json:"counts"` -} - -func (entity *UpdateFileDownload) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub UpdateFileDownload - - return json.Marshal((*stub)(entity)) -} - -func (*UpdateFileDownload) GetClass() string { - return ClassUpdate -} - -func (*UpdateFileDownload) GetType() string { - return TypeUpdateFileDownload -} - -func (*UpdateFileDownload) UpdateType() string { - return TypeUpdateFileDownload -} - -// A file was removed from the file download list. This update is sent only after file download list is loaded for the first time -type UpdateFileRemovedFromDownloads struct { - meta - // File identifier - FileId int32 `json:"file_id"` - // New number of being downloaded and recently downloaded files found - Counts *DownloadedFileCounts `json:"counts"` -} - -func (entity *UpdateFileRemovedFromDownloads) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub UpdateFileRemovedFromDownloads - - return json.Marshal((*stub)(entity)) -} - -func (*UpdateFileRemovedFromDownloads) GetClass() string { - return ClassUpdate -} - -func (*UpdateFileRemovedFromDownloads) GetType() string { - return TypeUpdateFileRemovedFromDownloads -} - -func (*UpdateFileRemovedFromDownloads) UpdateType() string { - return TypeUpdateFileRemovedFromDownloads -} - // New call was created or information about a call was updated type UpdateCall struct { meta @@ -32841,33 +31281,6 @@ func (*UpdateSavedAnimations) UpdateType() string { return TypeUpdateSavedAnimations } -// The list of saved notifications sounds was updated. This update may not be sent until information about a notification sound was requested for the first time -type UpdateSavedNotificationSounds struct { - meta - // The new list of identifiers of saved notification sounds - NotificationSoundIds []JsonInt64 `json:"notification_sound_ids"` -} - -func (entity *UpdateSavedNotificationSounds) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub UpdateSavedNotificationSounds - - return json.Marshal((*stub)(entity)) -} - -func (*UpdateSavedNotificationSounds) GetClass() string { - return ClassUpdate -} - -func (*UpdateSavedNotificationSounds) GetType() string { - return TypeUpdateSavedNotificationSounds -} - -func (*UpdateSavedNotificationSounds) UpdateType() string { - return TypeUpdateSavedNotificationSounds -} - // The selected background has changed type UpdateSelectedBackground struct { meta @@ -33054,87 +31467,6 @@ func (*UpdateUsersNearby) UpdateType() string { return TypeUpdateUsersNearby } -// The list of bots added to attachment menu has changed -type UpdateAttachmentMenuBots struct { - meta - // The new list of bots added to attachment menu. The bots must be shown in attachment menu only in private chats. The bots must not be shown on scheduled messages screen - Bots []*AttachmentMenuBot `json:"bots"` -} - -func (entity *UpdateAttachmentMenuBots) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub UpdateAttachmentMenuBots - - return json.Marshal((*stub)(entity)) -} - -func (*UpdateAttachmentMenuBots) GetClass() string { - return ClassUpdate -} - -func (*UpdateAttachmentMenuBots) GetType() string { - return TypeUpdateAttachmentMenuBots -} - -func (*UpdateAttachmentMenuBots) UpdateType() string { - return TypeUpdateAttachmentMenuBots -} - -// A message was sent by an opened web app, so the web app needs to be closed -type UpdateWebAppMessageSent struct { - meta - // Identifier of web app launch - WebAppLaunchId JsonInt64 `json:"web_app_launch_id"` -} - -func (entity *UpdateWebAppMessageSent) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub UpdateWebAppMessageSent - - return json.Marshal((*stub)(entity)) -} - -func (*UpdateWebAppMessageSent) GetClass() string { - return ClassUpdate -} - -func (*UpdateWebAppMessageSent) GetType() string { - return TypeUpdateWebAppMessageSent -} - -func (*UpdateWebAppMessageSent) UpdateType() string { - return TypeUpdateWebAppMessageSent -} - -// The list of supported reactions has changed -type UpdateReactions struct { - meta - // The new list of supported reactions - Reactions []*Reaction `json:"reactions"` -} - -func (entity *UpdateReactions) MarshalJSON() ([]byte, error) { - entity.meta.Type = entity.GetType() - - type stub UpdateReactions - - return json.Marshal((*stub)(entity)) -} - -func (*UpdateReactions) GetClass() string { - return ClassUpdate -} - -func (*UpdateReactions) GetType() string { - return TypeUpdateReactions -} - -func (*UpdateReactions) UpdateType() string { - return TypeUpdateReactions -} - // The list of supported dice emojis has changed type UpdateDiceEmojis struct { meta @@ -33280,7 +31612,7 @@ type UpdateNewInlineQuery struct { SenderUserId int64 `json:"sender_user_id"` // User location; may be null UserLocation *Location `json:"user_location"` - // The type of the chat from which the query originated; may be null if unknown + // The type of the chat, from which the query originated; may be null if unknown ChatType ChatType `json:"chat_type"` // Text of the query Query string `json:"query"` @@ -33379,7 +31711,7 @@ type UpdateNewCallbackQuery struct { SenderUserId int64 `json:"sender_user_id"` // Identifier of the chat where the query was sent ChatId int64 `json:"chat_id"` - // Identifier of the message from which the query originated + // Identifier of the message, from which the query originated MessageId int64 `json:"message_id"` // Identifier that uniquely corresponds to the chat to which the message was sent ChatInstance JsonInt64 `json:"chat_instance"` @@ -33441,7 +31773,7 @@ type UpdateNewInlineCallbackQuery struct { Id JsonInt64 `json:"id"` // Identifier of the user who sent the query SenderUserId int64 `json:"sender_user_id"` - // Identifier of the inline message from which the query originated + // Identifier of the inline message, from which the query originated InlineMessageId string `json:"inline_message_id"` // An identifier uniquely corresponding to the chat a message was sent to ChatInstance JsonInt64 `json:"chat_instance"` diff --git a/client/unmarshaler.go b/client/unmarshaler.go index bfefaa5..8c5bac0 100755 --- a/client/unmarshaler.go +++ b/client/unmarshaler.go @@ -163,23 +163,20 @@ func UnmarshalThumbnailFormat(data json.RawMessage) (ThumbnailFormat, error) { case TypeThumbnailFormatJpeg: return UnmarshalThumbnailFormatJpeg(data) - case TypeThumbnailFormatGif: - return UnmarshalThumbnailFormatGif(data) - - case TypeThumbnailFormatMpeg4: - return UnmarshalThumbnailFormatMpeg4(data) - case TypeThumbnailFormatPng: return UnmarshalThumbnailFormatPng(data) + case TypeThumbnailFormatWebp: + return UnmarshalThumbnailFormatWebp(data) + + case TypeThumbnailFormatGif: + return UnmarshalThumbnailFormatGif(data) + case TypeThumbnailFormatTgs: return UnmarshalThumbnailFormatTgs(data) - case TypeThumbnailFormatWebm: - return UnmarshalThumbnailFormatWebm(data) - - case TypeThumbnailFormatWebp: - return UnmarshalThumbnailFormatWebp(data) + case TypeThumbnailFormatMpeg4: + return UnmarshalThumbnailFormatMpeg4(data) default: return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) @@ -240,46 +237,6 @@ func UnmarshalListOfMaskPoint(dataList []json.RawMessage) ([]MaskPoint, error) { return list, nil } -func UnmarshalStickerType(data json.RawMessage) (StickerType, error) { - var meta meta - - err := json.Unmarshal(data, &meta) - if err != nil { - return nil, err - } - - switch meta.Type { - case TypeStickerTypeStatic: - return UnmarshalStickerTypeStatic(data) - - case TypeStickerTypeAnimated: - return UnmarshalStickerTypeAnimated(data) - - case TypeStickerTypeVideo: - return UnmarshalStickerTypeVideo(data) - - case TypeStickerTypeMask: - return UnmarshalStickerTypeMask(data) - - default: - return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) - } -} - -func UnmarshalListOfStickerType(dataList []json.RawMessage) ([]StickerType, error) { - list := []StickerType{} - - for _, data := range dataList { - entity, err := UnmarshalStickerType(data) - if err != nil { - return nil, err - } - list = append(list, entity) - } - - return list, nil -} - func UnmarshalPollType(data json.RawMessage) (PollType, error) { var meta meta @@ -938,9 +895,6 @@ func UnmarshalKeyboardButtonType(data json.RawMessage) (KeyboardButtonType, erro case TypeKeyboardButtonTypeRequestPoll: return UnmarshalKeyboardButtonTypeRequestPoll(data) - case TypeKeyboardButtonTypeWebApp: - return UnmarshalKeyboardButtonTypeWebApp(data) - default: return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) } @@ -975,9 +929,6 @@ func UnmarshalInlineKeyboardButtonType(data json.RawMessage) (InlineKeyboardButt case TypeInlineKeyboardButtonTypeLoginUrl: return UnmarshalInlineKeyboardButtonTypeLoginUrl(data) - case TypeInlineKeyboardButtonTypeWebApp: - return UnmarshalInlineKeyboardButtonTypeWebApp(data) - case TypeInlineKeyboardButtonTypeCallback: return UnmarshalInlineKeyboardButtonTypeCallback(data) @@ -1852,12 +1803,6 @@ func UnmarshalMessageContent(data json.RawMessage) (MessageContent, error) { case TypeMessageWebsiteConnected: return UnmarshalMessageWebsiteConnected(data) - case TypeMessageWebAppDataSent: - return UnmarshalMessageWebAppDataSent(data) - - case TypeMessageWebAppDataReceived: - return UnmarshalMessageWebAppDataReceived(data) - case TypeMessagePassportDataSent: return UnmarshalMessagePassportDataSent(data) @@ -1934,9 +1879,6 @@ func UnmarshalTextEntityType(data json.RawMessage) (TextEntityType, error) { case TypeTextEntityTypeStrikethrough: return UnmarshalTextEntityTypeStrikethrough(data) - case TypeTextEntityTypeSpoiler: - return UnmarshalTextEntityTypeSpoiler(data) - case TypeTextEntityTypeCode: return UnmarshalTextEntityTypeCode(data) @@ -2138,9 +2080,6 @@ func UnmarshalSearchMessagesFilter(data json.RawMessage) (SearchMessagesFilter, case TypeSearchMessagesFilterUnreadMention: return UnmarshalSearchMessagesFilterUnreadMention(data) - case TypeSearchMessagesFilterUnreadReaction: - return UnmarshalSearchMessagesFilterUnreadReaction(data) - case TypeSearchMessagesFilterFailedToSend: return UnmarshalSearchMessagesFilterFailedToSend(data) @@ -2714,15 +2653,15 @@ func UnmarshalChatEventAction(data json.RawMessage) (ChatEventAction, error) { case TypeChatEventMessageDeleted: return UnmarshalChatEventMessageDeleted(data) + case TypeChatEventPollStopped: + return UnmarshalChatEventPollStopped(data) + case TypeChatEventMessagePinned: return UnmarshalChatEventMessagePinned(data) case TypeChatEventMessageUnpinned: return UnmarshalChatEventMessageUnpinned(data) - case TypeChatEventPollStopped: - return UnmarshalChatEventPollStopped(data) - case TypeChatEventMemberJoined: return UnmarshalChatEventMemberJoined(data) @@ -2732,63 +2671,60 @@ func UnmarshalChatEventAction(data json.RawMessage) (ChatEventAction, error) { case TypeChatEventMemberJoinedByRequest: return UnmarshalChatEventMemberJoinedByRequest(data) - case TypeChatEventMemberInvited: - return UnmarshalChatEventMemberInvited(data) - case TypeChatEventMemberLeft: return UnmarshalChatEventMemberLeft(data) + case TypeChatEventMemberInvited: + return UnmarshalChatEventMemberInvited(data) + case TypeChatEventMemberPromoted: return UnmarshalChatEventMemberPromoted(data) case TypeChatEventMemberRestricted: return UnmarshalChatEventMemberRestricted(data) - case TypeChatEventAvailableReactionsChanged: - return UnmarshalChatEventAvailableReactionsChanged(data) - - case TypeChatEventDescriptionChanged: - return UnmarshalChatEventDescriptionChanged(data) - - case TypeChatEventLinkedChatChanged: - return UnmarshalChatEventLinkedChatChanged(data) - - case TypeChatEventLocationChanged: - return UnmarshalChatEventLocationChanged(data) - - case TypeChatEventMessageTtlChanged: - return UnmarshalChatEventMessageTtlChanged(data) + case TypeChatEventTitleChanged: + return UnmarshalChatEventTitleChanged(data) case TypeChatEventPermissionsChanged: return UnmarshalChatEventPermissionsChanged(data) - case TypeChatEventPhotoChanged: - return UnmarshalChatEventPhotoChanged(data) - - case TypeChatEventSlowModeDelayChanged: - return UnmarshalChatEventSlowModeDelayChanged(data) - - case TypeChatEventStickerSetChanged: - return UnmarshalChatEventStickerSetChanged(data) - - case TypeChatEventTitleChanged: - return UnmarshalChatEventTitleChanged(data) + case TypeChatEventDescriptionChanged: + return UnmarshalChatEventDescriptionChanged(data) case TypeChatEventUsernameChanged: return UnmarshalChatEventUsernameChanged(data) - case TypeChatEventHasProtectedContentToggled: - return UnmarshalChatEventHasProtectedContentToggled(data) + case TypeChatEventPhotoChanged: + return UnmarshalChatEventPhotoChanged(data) case TypeChatEventInvitesToggled: return UnmarshalChatEventInvitesToggled(data) - case TypeChatEventIsAllHistoryAvailableToggled: - return UnmarshalChatEventIsAllHistoryAvailableToggled(data) + case TypeChatEventLinkedChatChanged: + return UnmarshalChatEventLinkedChatChanged(data) + + case TypeChatEventSlowModeDelayChanged: + return UnmarshalChatEventSlowModeDelayChanged(data) + + case TypeChatEventMessageTtlChanged: + return UnmarshalChatEventMessageTtlChanged(data) case TypeChatEventSignMessagesToggled: return UnmarshalChatEventSignMessagesToggled(data) + case TypeChatEventHasProtectedContentToggled: + return UnmarshalChatEventHasProtectedContentToggled(data) + + case TypeChatEventStickerSetChanged: + return UnmarshalChatEventStickerSetChanged(data) + + case TypeChatEventLocationChanged: + return UnmarshalChatEventLocationChanged(data) + + case TypeChatEventIsAllHistoryAvailableToggled: + return UnmarshalChatEventIsAllHistoryAvailableToggled(data) + case TypeChatEventInviteLinkEdited: return UnmarshalChatEventInviteLinkEdited(data) @@ -2804,15 +2740,15 @@ func UnmarshalChatEventAction(data json.RawMessage) (ChatEventAction, error) { case TypeChatEventVideoChatEnded: return UnmarshalChatEventVideoChatEnded(data) - case TypeChatEventVideoChatMuteNewParticipantsToggled: - return UnmarshalChatEventVideoChatMuteNewParticipantsToggled(data) - case TypeChatEventVideoChatParticipantIsMutedToggled: return UnmarshalChatEventVideoChatParticipantIsMutedToggled(data) case TypeChatEventVideoChatParticipantVolumeLevelChanged: return UnmarshalChatEventVideoChatParticipantVolumeLevelChanged(data) + case TypeChatEventVideoChatMuteNewParticipantsToggled: + return UnmarshalChatEventVideoChatMuteNewParticipantsToggled(data) + default: return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) } @@ -3644,12 +3580,6 @@ func UnmarshalChatReportReason(data json.RawMessage) (ChatReportReason, error) { case TypeChatReportReasonFake: return UnmarshalChatReportReasonFake(data) - case TypeChatReportReasonIllegalDrugs: - return UnmarshalChatReportReasonIllegalDrugs(data) - - case TypeChatReportReasonPersonalDetails: - return UnmarshalChatReportReasonPersonalDetails(data) - case TypeChatReportReasonCustom: return UnmarshalChatReportReasonCustom(data) @@ -3684,9 +3614,6 @@ func UnmarshalInternalLinkType(data json.RawMessage) (InternalLinkType, error) { case TypeInternalLinkTypeActiveSessions: return UnmarshalInternalLinkTypeActiveSessions(data) - case TypeInternalLinkTypeAttachmentMenuBot: - return UnmarshalInternalLinkTypeAttachmentMenuBot(data) - case TypeInternalLinkTypeAuthenticationCode: return UnmarshalInternalLinkTypeAuthenticationCode(data) @@ -3699,9 +3626,6 @@ func UnmarshalInternalLinkType(data json.RawMessage) (InternalLinkType, error) { case TypeInternalLinkTypeBotStartInGroup: return UnmarshalInternalLinkTypeBotStartInGroup(data) - case TypeInternalLinkTypeBotAddToChannel: - return UnmarshalInternalLinkTypeBotAddToChannel(data) - case TypeInternalLinkTypeChangePhoneNumber: return UnmarshalInternalLinkTypeChangePhoneNumber(data) @@ -3717,9 +3641,6 @@ func UnmarshalInternalLinkType(data json.RawMessage) (InternalLinkType, error) { case TypeInternalLinkTypeLanguagePack: return UnmarshalInternalLinkTypeLanguagePack(data) - case TypeInternalLinkTypeLanguageSettings: - return UnmarshalInternalLinkTypeLanguageSettings(data) - case TypeInternalLinkTypeMessage: return UnmarshalInternalLinkTypeMessage(data) @@ -3732,9 +3653,6 @@ func UnmarshalInternalLinkType(data json.RawMessage) (InternalLinkType, error) { case TypeInternalLinkTypePhoneNumberConfirmation: return UnmarshalInternalLinkTypePhoneNumberConfirmation(data) - case TypeInternalLinkTypePrivacyAndSecuritySettings: - return UnmarshalInternalLinkTypePrivacyAndSecuritySettings(data) - case TypeInternalLinkTypeProxy: return UnmarshalInternalLinkTypeProxy(data) @@ -3762,9 +3680,6 @@ func UnmarshalInternalLinkType(data json.RawMessage) (InternalLinkType, error) { case TypeInternalLinkTypeUnsupportedProxy: return UnmarshalInternalLinkTypeUnsupportedProxy(data) - case TypeInternalLinkTypeUserPhoneNumber: - return UnmarshalInternalLinkTypeUserPhoneNumber(data) - case TypeInternalLinkTypeVideoChat: return UnmarshalInternalLinkTypeVideoChat(data) @@ -3808,9 +3723,6 @@ func UnmarshalFileType(data json.RawMessage) (FileType, error) { case TypeFileTypeDocument: return UnmarshalFileTypeDocument(data) - case TypeFileTypeNotificationSound: - return UnmarshalFileTypeNotificationSound(data) - case TypeFileTypePhoto: return UnmarshalFileTypePhoto(data) @@ -4192,6 +4104,40 @@ func UnmarshalListOfProxyType(dataList []json.RawMessage) ([]ProxyType, error) { return list, nil } +func UnmarshalInputSticker(data json.RawMessage) (InputSticker, error) { + var meta meta + + err := json.Unmarshal(data, &meta) + if err != nil { + return nil, err + } + + switch meta.Type { + case TypeInputStickerStatic: + return UnmarshalInputStickerStatic(data) + + case TypeInputStickerAnimated: + return UnmarshalInputStickerAnimated(data) + + default: + return nil, fmt.Errorf("Error unmarshaling. Unknown type: " + meta.Type) + } +} + +func UnmarshalListOfInputSticker(dataList []json.RawMessage) ([]InputSticker, error) { + list := []InputSticker{} + + for _, data := range dataList { + entity, err := UnmarshalInputSticker(data) + if err != nil { + return nil, err + } + list = append(list, entity) + } + + return list, nil +} + func UnmarshalStatisticalGraph(data json.RawMessage) (StatisticalGraph, error) { var meta meta @@ -4388,9 +4334,6 @@ func UnmarshalUpdate(data json.RawMessage) (Update, error) { case TypeUpdateMessageMentionRead: return UnmarshalUpdateMessageMentionRead(data) - case TypeUpdateMessageUnreadReactions: - return UnmarshalUpdateMessageUnreadReactions(data) - case TypeUpdateMessageLiveLocationViewed: return UnmarshalUpdateMessageLiveLocationViewed(data) @@ -4421,9 +4364,6 @@ func UnmarshalUpdate(data json.RawMessage) (Update, error) { case TypeUpdateChatActionBar: return UnmarshalUpdateChatActionBar(data) - case TypeUpdateChatAvailableReactions: - return UnmarshalUpdateChatAvailableReactions(data) - case TypeUpdateChatDraftMessage: return UnmarshalUpdateChatDraftMessage(data) @@ -4448,9 +4388,6 @@ func UnmarshalUpdate(data json.RawMessage) (Update, error) { case TypeUpdateChatUnreadMentionCount: return UnmarshalUpdateChatUnreadMentionCount(data) - case TypeUpdateChatUnreadReactionCount: - return UnmarshalUpdateChatUnreadReactionCount(data) - case TypeUpdateChatVideoChat: return UnmarshalUpdateChatVideoChat(data) @@ -4532,18 +4469,6 @@ func UnmarshalUpdate(data json.RawMessage) (Update, error) { case TypeUpdateFileGenerationStop: return UnmarshalUpdateFileGenerationStop(data) - case TypeUpdateFileDownloads: - return UnmarshalUpdateFileDownloads(data) - - case TypeUpdateFileAddedToDownloads: - return UnmarshalUpdateFileAddedToDownloads(data) - - case TypeUpdateFileDownload: - return UnmarshalUpdateFileDownload(data) - - case TypeUpdateFileRemovedFromDownloads: - return UnmarshalUpdateFileRemovedFromDownloads(data) - case TypeUpdateCall: return UnmarshalUpdateCall(data) @@ -4586,9 +4511,6 @@ func UnmarshalUpdate(data json.RawMessage) (Update, error) { case TypeUpdateSavedAnimations: return UnmarshalUpdateSavedAnimations(data) - case TypeUpdateSavedNotificationSounds: - return UnmarshalUpdateSavedNotificationSounds(data) - case TypeUpdateSelectedBackground: return UnmarshalUpdateSelectedBackground(data) @@ -4607,15 +4529,6 @@ func UnmarshalUpdate(data json.RawMessage) (Update, error) { case TypeUpdateUsersNearby: return UnmarshalUpdateUsersNearby(data) - case TypeUpdateAttachmentMenuBots: - return UnmarshalUpdateAttachmentMenuBots(data) - - case TypeUpdateWebAppMessageSent: - return UnmarshalUpdateWebAppMessageSent(data) - - case TypeUpdateReactions: - return UnmarshalUpdateReactions(data) - case TypeUpdateDiceEmojis: return UnmarshalUpdateDiceEmojis(data) @@ -5024,22 +4937,6 @@ func UnmarshalThumbnailFormatJpeg(data json.RawMessage) (*ThumbnailFormatJpeg, e return &resp, err } -func UnmarshalThumbnailFormatGif(data json.RawMessage) (*ThumbnailFormatGif, error) { - var resp ThumbnailFormatGif - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalThumbnailFormatMpeg4(data json.RawMessage) (*ThumbnailFormatMpeg4, error) { - var resp ThumbnailFormatMpeg4 - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalThumbnailFormatPng(data json.RawMessage) (*ThumbnailFormatPng, error) { var resp ThumbnailFormatPng @@ -5048,6 +4945,22 @@ func UnmarshalThumbnailFormatPng(data json.RawMessage) (*ThumbnailFormatPng, err return &resp, err } +func UnmarshalThumbnailFormatWebp(data json.RawMessage) (*ThumbnailFormatWebp, error) { + var resp ThumbnailFormatWebp + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + +func UnmarshalThumbnailFormatGif(data json.RawMessage) (*ThumbnailFormatGif, error) { + var resp ThumbnailFormatGif + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + func UnmarshalThumbnailFormatTgs(data json.RawMessage) (*ThumbnailFormatTgs, error) { var resp ThumbnailFormatTgs @@ -5056,16 +4969,8 @@ func UnmarshalThumbnailFormatTgs(data json.RawMessage) (*ThumbnailFormatTgs, err return &resp, err } -func UnmarshalThumbnailFormatWebm(data json.RawMessage) (*ThumbnailFormatWebm, error) { - var resp ThumbnailFormatWebm - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalThumbnailFormatWebp(data json.RawMessage) (*ThumbnailFormatWebp, error) { - var resp ThumbnailFormatWebp +func UnmarshalThumbnailFormatMpeg4(data json.RawMessage) (*ThumbnailFormatMpeg4, error) { + var resp ThumbnailFormatMpeg4 err := json.Unmarshal(data, &resp) @@ -5120,38 +5025,6 @@ func UnmarshalMaskPosition(data json.RawMessage) (*MaskPosition, error) { return &resp, err } -func UnmarshalStickerTypeStatic(data json.RawMessage) (*StickerTypeStatic, error) { - var resp StickerTypeStatic - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalStickerTypeAnimated(data json.RawMessage) (*StickerTypeAnimated, error) { - var resp StickerTypeAnimated - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalStickerTypeVideo(data json.RawMessage) (*StickerTypeVideo, error) { - var resp StickerTypeVideo - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalStickerTypeMask(data json.RawMessage) (*StickerTypeMask, error) { - var resp StickerTypeMask - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalClosedVectorPath(data json.RawMessage) (*ClosedVectorPath, error) { var resp ClosedVectorPath @@ -5360,14 +5233,6 @@ func UnmarshalBotCommands(data json.RawMessage) (*BotCommands, error) { return &resp, err } -func UnmarshalBotMenuButton(data json.RawMessage) (*BotMenuButton, error) { - var resp BotMenuButton - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalChatLocation(data json.RawMessage) (*ChatLocation, error) { var resp ChatLocation @@ -5424,22 +5289,6 @@ func UnmarshalInputChatPhotoAnimation(data json.RawMessage) (*InputChatPhotoAnim return &resp, err } -func UnmarshalChatPermissions(data json.RawMessage) (*ChatPermissions, error) { - var resp ChatPermissions - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalChatAdministratorRights(data json.RawMessage) (*ChatAdministratorRights, error) { - var resp ChatAdministratorRights - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalUser(data json.RawMessage) (*User, error) { var resp User @@ -5448,14 +5297,6 @@ func UnmarshalUser(data json.RawMessage) (*User, error) { return &resp, err } -func UnmarshalBotInfo(data json.RawMessage) (*BotInfo, error) { - var resp BotInfo - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalUserFullInfo(data json.RawMessage) (*UserFullInfo, error) { var resp UserFullInfo @@ -5488,6 +5329,14 @@ func UnmarshalChatAdministrators(data json.RawMessage) (*ChatAdministrators, err return &resp, err } +func UnmarshalChatPermissions(data json.RawMessage) (*ChatPermissions, error) { + var resp ChatPermissions + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + func UnmarshalChatMemberStatusCreator(data json.RawMessage) (*ChatMemberStatusCreator, error) { var resp ChatMemberStatusCreator @@ -5896,14 +5745,6 @@ func UnmarshalMessageReplyInfo(data json.RawMessage) (*MessageReplyInfo, error) return &resp, err } -func UnmarshalMessageReaction(data json.RawMessage) (*MessageReaction, error) { - var resp MessageReaction - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalMessageInteractionInfo(data json.RawMessage) (*MessageInteractionInfo, error) { var resp MessageInteractionInfo @@ -5912,14 +5753,6 @@ func UnmarshalMessageInteractionInfo(data json.RawMessage) (*MessageInteractionI return &resp, err } -func UnmarshalUnreadReaction(data json.RawMessage) (*UnreadReaction, error) { - var resp UnreadReaction - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalMessageSendingStatePending(data json.RawMessage) (*MessageSendingStatePending, error) { var resp MessageSendingStatePending @@ -6000,30 +5833,6 @@ func UnmarshalSponsoredMessage(data json.RawMessage) (*SponsoredMessage, error) return &resp, err } -func UnmarshalFileDownload(data json.RawMessage) (*FileDownload, error) { - var resp FileDownload - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalDownloadedFileCounts(data json.RawMessage) (*DownloadedFileCounts, error) { - var resp DownloadedFileCounts - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalFoundFileDownloads(data json.RawMessage) (*FoundFileDownloads, error) { - var resp FoundFileDownloads - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalNotificationSettingsScopePrivateChats(data json.RawMessage) (*NotificationSettingsScopePrivateChats, error) { var resp NotificationSettingsScopePrivateChats @@ -6336,14 +6145,6 @@ func UnmarshalKeyboardButtonTypeRequestPoll(data json.RawMessage) (*KeyboardButt return &resp, err } -func UnmarshalKeyboardButtonTypeWebApp(data json.RawMessage) (*KeyboardButtonTypeWebApp, error) { - var resp KeyboardButtonTypeWebApp - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalKeyboardButton(data json.RawMessage) (*KeyboardButton, error) { var resp KeyboardButton @@ -6368,14 +6169,6 @@ func UnmarshalInlineKeyboardButtonTypeLoginUrl(data json.RawMessage) (*InlineKey return &resp, err } -func UnmarshalInlineKeyboardButtonTypeWebApp(data json.RawMessage) (*InlineKeyboardButtonTypeWebApp, error) { - var resp InlineKeyboardButtonTypeWebApp - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalInlineKeyboardButtonTypeCallback(data json.RawMessage) (*InlineKeyboardButtonTypeCallback, error) { var resp InlineKeyboardButtonTypeCallback @@ -6480,14 +6273,6 @@ func UnmarshalLoginUrlInfoRequestConfirmation(data json.RawMessage) (*LoginUrlIn return &resp, err } -func UnmarshalWebAppInfo(data json.RawMessage) (*WebAppInfo, error) { - var resp WebAppInfo - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalMessageThreadInfo(data json.RawMessage) (*MessageThreadInfo, error) { var resp MessageThreadInfo @@ -7008,14 +6793,6 @@ func UnmarshalAddress(data json.RawMessage) (*Address, error) { return &resp, err } -func UnmarshalThemeParameters(data json.RawMessage) (*ThemeParameters, error) { - var resp ThemeParameters - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalLabeledPricePart(data json.RawMessage) (*LabeledPricePart, error) { var resp LabeledPricePart @@ -7096,6 +6873,14 @@ func UnmarshalPaymentsProviderStripe(data json.RawMessage) (*PaymentsProviderStr return &resp, err } +func UnmarshalPaymentFormTheme(data json.RawMessage) (*PaymentFormTheme, error) { + var resp PaymentFormTheme + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + func UnmarshalPaymentForm(data json.RawMessage) (*PaymentForm, error) { var resp PaymentForm @@ -8072,22 +7857,6 @@ func UnmarshalMessageWebsiteConnected(data json.RawMessage) (*MessageWebsiteConn return &resp, err } -func UnmarshalMessageWebAppDataSent(data json.RawMessage) (*MessageWebAppDataSent, error) { - var resp MessageWebAppDataSent - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalMessageWebAppDataReceived(data json.RawMessage) (*MessageWebAppDataReceived, error) { - var resp MessageWebAppDataReceived - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalMessagePassportDataSent(data json.RawMessage) (*MessagePassportDataSent, error) { var resp MessagePassportDataSent @@ -8216,14 +7985,6 @@ func UnmarshalTextEntityTypeStrikethrough(data json.RawMessage) (*TextEntityType return &resp, err } -func UnmarshalTextEntityTypeSpoiler(data json.RawMessage) (*TextEntityTypeSpoiler, error) { - var resp TextEntityTypeSpoiler - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalTextEntityTypeCode(data json.RawMessage) (*TextEntityTypeCode, error) { var resp TextEntityTypeCode @@ -8560,14 +8321,6 @@ func UnmarshalSearchMessagesFilterUnreadMention(data json.RawMessage) (*SearchMe return &resp, err } -func UnmarshalSearchMessagesFilterUnreadReaction(data json.RawMessage) (*SearchMessagesFilterUnreadReaction, error) { - var resp SearchMessagesFilterUnreadReaction - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalSearchMessagesFilterFailedToSend(data json.RawMessage) (*SearchMessagesFilterFailedToSend, error) { var resp SearchMessagesFilterFailedToSend @@ -8952,30 +8705,6 @@ func UnmarshalGroupCallVideoQualityFull(data json.RawMessage) (*GroupCallVideoQu return &resp, err } -func UnmarshalGroupCallStream(data json.RawMessage) (*GroupCallStream, error) { - var resp GroupCallStream - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalGroupCallStreams(data json.RawMessage) (*GroupCallStreams, error) { - var resp GroupCallStreams - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalRtmpUrl(data json.RawMessage) (*RtmpUrl, error) { - var resp RtmpUrl - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalGroupCallRecentSpeaker(data json.RawMessage) (*GroupCallRecentSpeaker, error) { var resp GroupCallRecentSpeaker @@ -9104,38 +8833,6 @@ func UnmarshalPhoneNumberAuthenticationSettings(data json.RawMessage) (*PhoneNum return &resp, err } -func UnmarshalAddedReaction(data json.RawMessage) (*AddedReaction, error) { - var resp AddedReaction - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalAddedReactions(data json.RawMessage) (*AddedReactions, error) { - var resp AddedReactions - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalAvailableReactions(data json.RawMessage) (*AvailableReactions, error) { - var resp AvailableReactions - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalReaction(data json.RawMessage) (*Reaction, error) { - var resp Reaction - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalAnimations(data json.RawMessage) (*Animations, error) { var resp Animations @@ -9168,30 +8865,6 @@ func UnmarshalImportedContacts(data json.RawMessage) (*ImportedContacts, error) return &resp, err } -func UnmarshalAttachmentMenuBotColor(data json.RawMessage) (*AttachmentMenuBotColor, error) { - var resp AttachmentMenuBotColor - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalAttachmentMenuBot(data json.RawMessage) (*AttachmentMenuBot, error) { - var resp AttachmentMenuBot - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalSentWebAppMessage(data json.RawMessage) (*SentWebAppMessage, error) { - var resp SentWebAppMessage - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalHttpUrl(data json.RawMessage) (*HttpUrl, error) { var resp HttpUrl @@ -9472,6 +9145,14 @@ func UnmarshalChatEventMessageDeleted(data json.RawMessage) (*ChatEventMessageDe return &resp, err } +func UnmarshalChatEventPollStopped(data json.RawMessage) (*ChatEventPollStopped, error) { + var resp ChatEventPollStopped + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + func UnmarshalChatEventMessagePinned(data json.RawMessage) (*ChatEventMessagePinned, error) { var resp ChatEventMessagePinned @@ -9488,14 +9169,6 @@ func UnmarshalChatEventMessageUnpinned(data json.RawMessage) (*ChatEventMessageU return &resp, err } -func UnmarshalChatEventPollStopped(data json.RawMessage) (*ChatEventPollStopped, error) { - var resp ChatEventPollStopped - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalChatEventMemberJoined(data json.RawMessage) (*ChatEventMemberJoined, error) { var resp ChatEventMemberJoined @@ -9520,16 +9193,16 @@ func UnmarshalChatEventMemberJoinedByRequest(data json.RawMessage) (*ChatEventMe return &resp, err } -func UnmarshalChatEventMemberInvited(data json.RawMessage) (*ChatEventMemberInvited, error) { - var resp ChatEventMemberInvited +func UnmarshalChatEventMemberLeft(data json.RawMessage) (*ChatEventMemberLeft, error) { + var resp ChatEventMemberLeft err := json.Unmarshal(data, &resp) return &resp, err } -func UnmarshalChatEventMemberLeft(data json.RawMessage) (*ChatEventMemberLeft, error) { - var resp ChatEventMemberLeft +func UnmarshalChatEventMemberInvited(data json.RawMessage) (*ChatEventMemberInvited, error) { + var resp ChatEventMemberInvited err := json.Unmarshal(data, &resp) @@ -9552,40 +9225,8 @@ func UnmarshalChatEventMemberRestricted(data json.RawMessage) (*ChatEventMemberR return &resp, err } -func UnmarshalChatEventAvailableReactionsChanged(data json.RawMessage) (*ChatEventAvailableReactionsChanged, error) { - var resp ChatEventAvailableReactionsChanged - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalChatEventDescriptionChanged(data json.RawMessage) (*ChatEventDescriptionChanged, error) { - var resp ChatEventDescriptionChanged - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalChatEventLinkedChatChanged(data json.RawMessage) (*ChatEventLinkedChatChanged, error) { - var resp ChatEventLinkedChatChanged - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalChatEventLocationChanged(data json.RawMessage) (*ChatEventLocationChanged, error) { - var resp ChatEventLocationChanged - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalChatEventMessageTtlChanged(data json.RawMessage) (*ChatEventMessageTtlChanged, error) { - var resp ChatEventMessageTtlChanged +func UnmarshalChatEventTitleChanged(data json.RawMessage) (*ChatEventTitleChanged, error) { + var resp ChatEventTitleChanged err := json.Unmarshal(data, &resp) @@ -9600,32 +9241,8 @@ func UnmarshalChatEventPermissionsChanged(data json.RawMessage) (*ChatEventPermi return &resp, err } -func UnmarshalChatEventPhotoChanged(data json.RawMessage) (*ChatEventPhotoChanged, error) { - var resp ChatEventPhotoChanged - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalChatEventSlowModeDelayChanged(data json.RawMessage) (*ChatEventSlowModeDelayChanged, error) { - var resp ChatEventSlowModeDelayChanged - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalChatEventStickerSetChanged(data json.RawMessage) (*ChatEventStickerSetChanged, error) { - var resp ChatEventStickerSetChanged - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalChatEventTitleChanged(data json.RawMessage) (*ChatEventTitleChanged, error) { - var resp ChatEventTitleChanged +func UnmarshalChatEventDescriptionChanged(data json.RawMessage) (*ChatEventDescriptionChanged, error) { + var resp ChatEventDescriptionChanged err := json.Unmarshal(data, &resp) @@ -9640,8 +9257,8 @@ func UnmarshalChatEventUsernameChanged(data json.RawMessage) (*ChatEventUsername return &resp, err } -func UnmarshalChatEventHasProtectedContentToggled(data json.RawMessage) (*ChatEventHasProtectedContentToggled, error) { - var resp ChatEventHasProtectedContentToggled +func UnmarshalChatEventPhotoChanged(data json.RawMessage) (*ChatEventPhotoChanged, error) { + var resp ChatEventPhotoChanged err := json.Unmarshal(data, &resp) @@ -9656,8 +9273,24 @@ func UnmarshalChatEventInvitesToggled(data json.RawMessage) (*ChatEventInvitesTo return &resp, err } -func UnmarshalChatEventIsAllHistoryAvailableToggled(data json.RawMessage) (*ChatEventIsAllHistoryAvailableToggled, error) { - var resp ChatEventIsAllHistoryAvailableToggled +func UnmarshalChatEventLinkedChatChanged(data json.RawMessage) (*ChatEventLinkedChatChanged, error) { + var resp ChatEventLinkedChatChanged + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + +func UnmarshalChatEventSlowModeDelayChanged(data json.RawMessage) (*ChatEventSlowModeDelayChanged, error) { + var resp ChatEventSlowModeDelayChanged + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + +func UnmarshalChatEventMessageTtlChanged(data json.RawMessage) (*ChatEventMessageTtlChanged, error) { + var resp ChatEventMessageTtlChanged err := json.Unmarshal(data, &resp) @@ -9672,6 +9305,38 @@ func UnmarshalChatEventSignMessagesToggled(data json.RawMessage) (*ChatEventSign return &resp, err } +func UnmarshalChatEventHasProtectedContentToggled(data json.RawMessage) (*ChatEventHasProtectedContentToggled, error) { + var resp ChatEventHasProtectedContentToggled + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + +func UnmarshalChatEventStickerSetChanged(data json.RawMessage) (*ChatEventStickerSetChanged, error) { + var resp ChatEventStickerSetChanged + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + +func UnmarshalChatEventLocationChanged(data json.RawMessage) (*ChatEventLocationChanged, error) { + var resp ChatEventLocationChanged + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + +func UnmarshalChatEventIsAllHistoryAvailableToggled(data json.RawMessage) (*ChatEventIsAllHistoryAvailableToggled, error) { + var resp ChatEventIsAllHistoryAvailableToggled + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + func UnmarshalChatEventInviteLinkEdited(data json.RawMessage) (*ChatEventInviteLinkEdited, error) { var resp ChatEventInviteLinkEdited @@ -9712,14 +9377,6 @@ func UnmarshalChatEventVideoChatEnded(data json.RawMessage) (*ChatEventVideoChat return &resp, err } -func UnmarshalChatEventVideoChatMuteNewParticipantsToggled(data json.RawMessage) (*ChatEventVideoChatMuteNewParticipantsToggled, error) { - var resp ChatEventVideoChatMuteNewParticipantsToggled - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalChatEventVideoChatParticipantIsMutedToggled(data json.RawMessage) (*ChatEventVideoChatParticipantIsMutedToggled, error) { var resp ChatEventVideoChatParticipantIsMutedToggled @@ -9736,6 +9393,14 @@ func UnmarshalChatEventVideoChatParticipantVolumeLevelChanged(data json.RawMessa return &resp, err } +func UnmarshalChatEventVideoChatMuteNewParticipantsToggled(data json.RawMessage) (*ChatEventVideoChatMuteNewParticipantsToggled, error) { + var resp ChatEventVideoChatMuteNewParticipantsToggled + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + func UnmarshalChatEvent(data json.RawMessage) (*ChatEvent, error) { var resp ChatEvent @@ -10448,22 +10113,6 @@ func UnmarshalNotificationGroupTypeCalls(data json.RawMessage) (*NotificationGro return &resp, err } -func UnmarshalNotificationSound(data json.RawMessage) (*NotificationSound, error) { - var resp NotificationSound - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalNotificationSounds(data json.RawMessage) (*NotificationSounds, error) { - var resp NotificationSounds - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalNotification(data json.RawMessage) (*Notification, error) { var resp Notification @@ -10800,22 +10449,6 @@ func UnmarshalChatReportReasonFake(data json.RawMessage) (*ChatReportReasonFake, return &resp, err } -func UnmarshalChatReportReasonIllegalDrugs(data json.RawMessage) (*ChatReportReasonIllegalDrugs, error) { - var resp ChatReportReasonIllegalDrugs - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalChatReportReasonPersonalDetails(data json.RawMessage) (*ChatReportReasonPersonalDetails, error) { - var resp ChatReportReasonPersonalDetails - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalChatReportReasonCustom(data json.RawMessage) (*ChatReportReasonCustom, error) { var resp ChatReportReasonCustom @@ -10832,14 +10465,6 @@ func UnmarshalInternalLinkTypeActiveSessions(data json.RawMessage) (*InternalLin return &resp, err } -func UnmarshalInternalLinkTypeAttachmentMenuBot(data json.RawMessage) (*InternalLinkTypeAttachmentMenuBot, error) { - var resp InternalLinkTypeAttachmentMenuBot - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalInternalLinkTypeAuthenticationCode(data json.RawMessage) (*InternalLinkTypeAuthenticationCode, error) { var resp InternalLinkTypeAuthenticationCode @@ -10872,14 +10497,6 @@ func UnmarshalInternalLinkTypeBotStartInGroup(data json.RawMessage) (*InternalLi return &resp, err } -func UnmarshalInternalLinkTypeBotAddToChannel(data json.RawMessage) (*InternalLinkTypeBotAddToChannel, error) { - var resp InternalLinkTypeBotAddToChannel - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalInternalLinkTypeChangePhoneNumber(data json.RawMessage) (*InternalLinkTypeChangePhoneNumber, error) { var resp InternalLinkTypeChangePhoneNumber @@ -10920,14 +10537,6 @@ func UnmarshalInternalLinkTypeLanguagePack(data json.RawMessage) (*InternalLinkT return &resp, err } -func UnmarshalInternalLinkTypeLanguageSettings(data json.RawMessage) (*InternalLinkTypeLanguageSettings, error) { - var resp InternalLinkTypeLanguageSettings - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalInternalLinkTypeMessage(data json.RawMessage) (*InternalLinkTypeMessage, error) { var resp InternalLinkTypeMessage @@ -10960,14 +10569,6 @@ func UnmarshalInternalLinkTypePhoneNumberConfirmation(data json.RawMessage) (*In return &resp, err } -func UnmarshalInternalLinkTypePrivacyAndSecuritySettings(data json.RawMessage) (*InternalLinkTypePrivacyAndSecuritySettings, error) { - var resp InternalLinkTypePrivacyAndSecuritySettings - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalInternalLinkTypeProxy(data json.RawMessage) (*InternalLinkTypeProxy, error) { var resp InternalLinkTypeProxy @@ -11040,14 +10641,6 @@ func UnmarshalInternalLinkTypeUnsupportedProxy(data json.RawMessage) (*InternalL return &resp, err } -func UnmarshalInternalLinkTypeUserPhoneNumber(data json.RawMessage) (*InternalLinkTypeUserPhoneNumber, error) { - var resp InternalLinkTypeUserPhoneNumber - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalInternalLinkTypeVideoChat(data json.RawMessage) (*InternalLinkTypeVideoChat, error) { var resp InternalLinkTypeVideoChat @@ -11112,14 +10705,6 @@ func UnmarshalFileTypeDocument(data json.RawMessage) (*FileTypeDocument, error) return &resp, err } -func UnmarshalFileTypeNotificationSound(data json.RawMessage) (*FileTypeNotificationSound, error) { - var resp FileTypeNotificationSound - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalFileTypePhoto(data json.RawMessage) (*FileTypePhoto, error) { var resp FileTypePhoto @@ -11616,8 +11201,16 @@ func UnmarshalProxies(data json.RawMessage) (*Proxies, error) { return &resp, err } -func UnmarshalInputSticker(data json.RawMessage) (*InputSticker, error) { - var resp InputSticker +func UnmarshalInputStickerStatic(data json.RawMessage) (*InputStickerStatic, error) { + var resp InputStickerStatic + + err := json.Unmarshal(data, &resp) + + return &resp, err +} + +func UnmarshalInputStickerAnimated(data json.RawMessage) (*InputStickerAnimated, error) { + var resp InputStickerAnimated err := json.Unmarshal(data, &resp) @@ -11888,14 +11481,6 @@ func UnmarshalUpdateMessageMentionRead(data json.RawMessage) (*UpdateMessageMent return &resp, err } -func UnmarshalUpdateMessageUnreadReactions(data json.RawMessage) (*UpdateMessageUnreadReactions, error) { - var resp UpdateMessageUnreadReactions - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalUpdateMessageLiveLocationViewed(data json.RawMessage) (*UpdateMessageLiveLocationViewed, error) { var resp UpdateMessageLiveLocationViewed @@ -11976,14 +11561,6 @@ func UnmarshalUpdateChatActionBar(data json.RawMessage) (*UpdateChatActionBar, e return &resp, err } -func UnmarshalUpdateChatAvailableReactions(data json.RawMessage) (*UpdateChatAvailableReactions, error) { - var resp UpdateChatAvailableReactions - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalUpdateChatDraftMessage(data json.RawMessage) (*UpdateChatDraftMessage, error) { var resp UpdateChatDraftMessage @@ -12048,14 +11625,6 @@ func UnmarshalUpdateChatUnreadMentionCount(data json.RawMessage) (*UpdateChatUnr return &resp, err } -func UnmarshalUpdateChatUnreadReactionCount(data json.RawMessage) (*UpdateChatUnreadReactionCount, error) { - var resp UpdateChatUnreadReactionCount - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalUpdateChatVideoChat(data json.RawMessage) (*UpdateChatVideoChat, error) { var resp UpdateChatVideoChat @@ -12272,38 +11841,6 @@ func UnmarshalUpdateFileGenerationStop(data json.RawMessage) (*UpdateFileGenerat return &resp, err } -func UnmarshalUpdateFileDownloads(data json.RawMessage) (*UpdateFileDownloads, error) { - var resp UpdateFileDownloads - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalUpdateFileAddedToDownloads(data json.RawMessage) (*UpdateFileAddedToDownloads, error) { - var resp UpdateFileAddedToDownloads - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalUpdateFileDownload(data json.RawMessage) (*UpdateFileDownload, error) { - var resp UpdateFileDownload - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalUpdateFileRemovedFromDownloads(data json.RawMessage) (*UpdateFileRemovedFromDownloads, error) { - var resp UpdateFileRemovedFromDownloads - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalUpdateCall(data json.RawMessage) (*UpdateCall, error) { var resp UpdateCall @@ -12416,14 +11953,6 @@ func UnmarshalUpdateSavedAnimations(data json.RawMessage) (*UpdateSavedAnimation return &resp, err } -func UnmarshalUpdateSavedNotificationSounds(data json.RawMessage) (*UpdateSavedNotificationSounds, error) { - var resp UpdateSavedNotificationSounds - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalUpdateSelectedBackground(data json.RawMessage) (*UpdateSelectedBackground, error) { var resp UpdateSelectedBackground @@ -12472,30 +12001,6 @@ func UnmarshalUpdateUsersNearby(data json.RawMessage) (*UpdateUsersNearby, error return &resp, err } -func UnmarshalUpdateAttachmentMenuBots(data json.RawMessage) (*UpdateAttachmentMenuBots, error) { - var resp UpdateAttachmentMenuBots - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalUpdateWebAppMessageSent(data json.RawMessage) (*UpdateWebAppMessageSent, error) { - var resp UpdateWebAppMessageSent - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - -func UnmarshalUpdateReactions(data json.RawMessage) (*UpdateReactions, error) { - var resp UpdateReactions - - err := json.Unmarshal(data, &resp) - - return &resp, err -} - func UnmarshalUpdateDiceEmojis(data json.RawMessage) (*UpdateDiceEmojis, error) { var resp UpdateDiceEmojis @@ -12851,23 +12356,20 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeThumbnailFormatJpeg: return UnmarshalThumbnailFormatJpeg(data) - case TypeThumbnailFormatGif: - return UnmarshalThumbnailFormatGif(data) - - case TypeThumbnailFormatMpeg4: - return UnmarshalThumbnailFormatMpeg4(data) - case TypeThumbnailFormatPng: return UnmarshalThumbnailFormatPng(data) + case TypeThumbnailFormatWebp: + return UnmarshalThumbnailFormatWebp(data) + + case TypeThumbnailFormatGif: + return UnmarshalThumbnailFormatGif(data) + case TypeThumbnailFormatTgs: return UnmarshalThumbnailFormatTgs(data) - case TypeThumbnailFormatWebm: - return UnmarshalThumbnailFormatWebm(data) - - case TypeThumbnailFormatWebp: - return UnmarshalThumbnailFormatWebp(data) + case TypeThumbnailFormatMpeg4: + return UnmarshalThumbnailFormatMpeg4(data) case TypeThumbnail: return UnmarshalThumbnail(data) @@ -12887,18 +12389,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeMaskPosition: return UnmarshalMaskPosition(data) - case TypeStickerTypeStatic: - return UnmarshalStickerTypeStatic(data) - - case TypeStickerTypeAnimated: - return UnmarshalStickerTypeAnimated(data) - - case TypeStickerTypeVideo: - return UnmarshalStickerTypeVideo(data) - - case TypeStickerTypeMask: - return UnmarshalStickerTypeMask(data) - case TypeClosedVectorPath: return UnmarshalClosedVectorPath(data) @@ -12977,9 +12467,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeBotCommands: return UnmarshalBotCommands(data) - case TypeBotMenuButton: - return UnmarshalBotMenuButton(data) - case TypeChatLocation: return UnmarshalChatLocation(data) @@ -13001,18 +12488,9 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeInputChatPhotoAnimation: return UnmarshalInputChatPhotoAnimation(data) - case TypeChatPermissions: - return UnmarshalChatPermissions(data) - - case TypeChatAdministratorRights: - return UnmarshalChatAdministratorRights(data) - case TypeUser: return UnmarshalUser(data) - case TypeBotInfo: - return UnmarshalBotInfo(data) - case TypeUserFullInfo: return UnmarshalUserFullInfo(data) @@ -13025,6 +12503,9 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeChatAdministrators: return UnmarshalChatAdministrators(data) + case TypeChatPermissions: + return UnmarshalChatPermissions(data) + case TypeChatMemberStatusCreator: return UnmarshalChatMemberStatusCreator(data) @@ -13178,15 +12659,9 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeMessageReplyInfo: return UnmarshalMessageReplyInfo(data) - case TypeMessageReaction: - return UnmarshalMessageReaction(data) - case TypeMessageInteractionInfo: return UnmarshalMessageInteractionInfo(data) - case TypeUnreadReaction: - return UnmarshalUnreadReaction(data) - case TypeMessageSendingStatePending: return UnmarshalMessageSendingStatePending(data) @@ -13217,15 +12692,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeSponsoredMessage: return UnmarshalSponsoredMessage(data) - case TypeFileDownload: - return UnmarshalFileDownload(data) - - case TypeDownloadedFileCounts: - return UnmarshalDownloadedFileCounts(data) - - case TypeFoundFileDownloads: - return UnmarshalFoundFileDownloads(data) - case TypeNotificationSettingsScopePrivateChats: return UnmarshalNotificationSettingsScopePrivateChats(data) @@ -13343,9 +12809,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeKeyboardButtonTypeRequestPoll: return UnmarshalKeyboardButtonTypeRequestPoll(data) - case TypeKeyboardButtonTypeWebApp: - return UnmarshalKeyboardButtonTypeWebApp(data) - case TypeKeyboardButton: return UnmarshalKeyboardButton(data) @@ -13355,9 +12818,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeInlineKeyboardButtonTypeLoginUrl: return UnmarshalInlineKeyboardButtonTypeLoginUrl(data) - case TypeInlineKeyboardButtonTypeWebApp: - return UnmarshalInlineKeyboardButtonTypeWebApp(data) - case TypeInlineKeyboardButtonTypeCallback: return UnmarshalInlineKeyboardButtonTypeCallback(data) @@ -13397,9 +12857,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeLoginUrlInfoRequestConfirmation: return UnmarshalLoginUrlInfoRequestConfirmation(data) - case TypeWebAppInfo: - return UnmarshalWebAppInfo(data) - case TypeMessageThreadInfo: return UnmarshalMessageThreadInfo(data) @@ -13595,9 +13052,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeAddress: return UnmarshalAddress(data) - case TypeThemeParameters: - return UnmarshalThemeParameters(data) - case TypeLabeledPricePart: return UnmarshalLabeledPricePart(data) @@ -13628,6 +13082,9 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypePaymentsProviderStripe: return UnmarshalPaymentsProviderStripe(data) + case TypePaymentFormTheme: + return UnmarshalPaymentFormTheme(data) + case TypePaymentForm: return UnmarshalPaymentForm(data) @@ -13994,12 +13451,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeMessageWebsiteConnected: return UnmarshalMessageWebsiteConnected(data) - case TypeMessageWebAppDataSent: - return UnmarshalMessageWebAppDataSent(data) - - case TypeMessageWebAppDataReceived: - return UnmarshalMessageWebAppDataReceived(data) - case TypeMessagePassportDataSent: return UnmarshalMessagePassportDataSent(data) @@ -14048,9 +13499,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeTextEntityTypeStrikethrough: return UnmarshalTextEntityTypeStrikethrough(data) - case TypeTextEntityTypeSpoiler: - return UnmarshalTextEntityTypeSpoiler(data) - case TypeTextEntityTypeCode: return UnmarshalTextEntityTypeCode(data) @@ -14177,9 +13625,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeSearchMessagesFilterUnreadMention: return UnmarshalSearchMessagesFilterUnreadMention(data) - case TypeSearchMessagesFilterUnreadReaction: - return UnmarshalSearchMessagesFilterUnreadReaction(data) - case TypeSearchMessagesFilterFailedToSend: return UnmarshalSearchMessagesFilterFailedToSend(data) @@ -14324,15 +13769,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeGroupCallVideoQualityFull: return UnmarshalGroupCallVideoQualityFull(data) - case TypeGroupCallStream: - return UnmarshalGroupCallStream(data) - - case TypeGroupCallStreams: - return UnmarshalGroupCallStreams(data) - - case TypeRtmpUrl: - return UnmarshalRtmpUrl(data) - case TypeGroupCallRecentSpeaker: return UnmarshalGroupCallRecentSpeaker(data) @@ -14381,18 +13817,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypePhoneNumberAuthenticationSettings: return UnmarshalPhoneNumberAuthenticationSettings(data) - case TypeAddedReaction: - return UnmarshalAddedReaction(data) - - case TypeAddedReactions: - return UnmarshalAddedReactions(data) - - case TypeAvailableReactions: - return UnmarshalAvailableReactions(data) - - case TypeReaction: - return UnmarshalReaction(data) - case TypeAnimations: return UnmarshalAnimations(data) @@ -14405,15 +13829,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeImportedContacts: return UnmarshalImportedContacts(data) - case TypeAttachmentMenuBotColor: - return UnmarshalAttachmentMenuBotColor(data) - - case TypeAttachmentMenuBot: - return UnmarshalAttachmentMenuBot(data) - - case TypeSentWebAppMessage: - return UnmarshalSentWebAppMessage(data) - case TypeHttpUrl: return UnmarshalHttpUrl(data) @@ -14519,15 +13934,15 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeChatEventMessageDeleted: return UnmarshalChatEventMessageDeleted(data) + case TypeChatEventPollStopped: + return UnmarshalChatEventPollStopped(data) + case TypeChatEventMessagePinned: return UnmarshalChatEventMessagePinned(data) case TypeChatEventMessageUnpinned: return UnmarshalChatEventMessageUnpinned(data) - case TypeChatEventPollStopped: - return UnmarshalChatEventPollStopped(data) - case TypeChatEventMemberJoined: return UnmarshalChatEventMemberJoined(data) @@ -14537,63 +13952,60 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeChatEventMemberJoinedByRequest: return UnmarshalChatEventMemberJoinedByRequest(data) - case TypeChatEventMemberInvited: - return UnmarshalChatEventMemberInvited(data) - case TypeChatEventMemberLeft: return UnmarshalChatEventMemberLeft(data) + case TypeChatEventMemberInvited: + return UnmarshalChatEventMemberInvited(data) + case TypeChatEventMemberPromoted: return UnmarshalChatEventMemberPromoted(data) case TypeChatEventMemberRestricted: return UnmarshalChatEventMemberRestricted(data) - case TypeChatEventAvailableReactionsChanged: - return UnmarshalChatEventAvailableReactionsChanged(data) - - case TypeChatEventDescriptionChanged: - return UnmarshalChatEventDescriptionChanged(data) - - case TypeChatEventLinkedChatChanged: - return UnmarshalChatEventLinkedChatChanged(data) - - case TypeChatEventLocationChanged: - return UnmarshalChatEventLocationChanged(data) - - case TypeChatEventMessageTtlChanged: - return UnmarshalChatEventMessageTtlChanged(data) + case TypeChatEventTitleChanged: + return UnmarshalChatEventTitleChanged(data) case TypeChatEventPermissionsChanged: return UnmarshalChatEventPermissionsChanged(data) - case TypeChatEventPhotoChanged: - return UnmarshalChatEventPhotoChanged(data) - - case TypeChatEventSlowModeDelayChanged: - return UnmarshalChatEventSlowModeDelayChanged(data) - - case TypeChatEventStickerSetChanged: - return UnmarshalChatEventStickerSetChanged(data) - - case TypeChatEventTitleChanged: - return UnmarshalChatEventTitleChanged(data) + case TypeChatEventDescriptionChanged: + return UnmarshalChatEventDescriptionChanged(data) case TypeChatEventUsernameChanged: return UnmarshalChatEventUsernameChanged(data) - case TypeChatEventHasProtectedContentToggled: - return UnmarshalChatEventHasProtectedContentToggled(data) + case TypeChatEventPhotoChanged: + return UnmarshalChatEventPhotoChanged(data) case TypeChatEventInvitesToggled: return UnmarshalChatEventInvitesToggled(data) - case TypeChatEventIsAllHistoryAvailableToggled: - return UnmarshalChatEventIsAllHistoryAvailableToggled(data) + case TypeChatEventLinkedChatChanged: + return UnmarshalChatEventLinkedChatChanged(data) + + case TypeChatEventSlowModeDelayChanged: + return UnmarshalChatEventSlowModeDelayChanged(data) + + case TypeChatEventMessageTtlChanged: + return UnmarshalChatEventMessageTtlChanged(data) case TypeChatEventSignMessagesToggled: return UnmarshalChatEventSignMessagesToggled(data) + case TypeChatEventHasProtectedContentToggled: + return UnmarshalChatEventHasProtectedContentToggled(data) + + case TypeChatEventStickerSetChanged: + return UnmarshalChatEventStickerSetChanged(data) + + case TypeChatEventLocationChanged: + return UnmarshalChatEventLocationChanged(data) + + case TypeChatEventIsAllHistoryAvailableToggled: + return UnmarshalChatEventIsAllHistoryAvailableToggled(data) + case TypeChatEventInviteLinkEdited: return UnmarshalChatEventInviteLinkEdited(data) @@ -14609,15 +14021,15 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeChatEventVideoChatEnded: return UnmarshalChatEventVideoChatEnded(data) - case TypeChatEventVideoChatMuteNewParticipantsToggled: - return UnmarshalChatEventVideoChatMuteNewParticipantsToggled(data) - case TypeChatEventVideoChatParticipantIsMutedToggled: return UnmarshalChatEventVideoChatParticipantIsMutedToggled(data) case TypeChatEventVideoChatParticipantVolumeLevelChanged: return UnmarshalChatEventVideoChatParticipantVolumeLevelChanged(data) + case TypeChatEventVideoChatMuteNewParticipantsToggled: + return UnmarshalChatEventVideoChatMuteNewParticipantsToggled(data) + case TypeChatEvent: return UnmarshalChatEvent(data) @@ -14885,12 +14297,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeNotificationGroupTypeCalls: return UnmarshalNotificationGroupTypeCalls(data) - case TypeNotificationSound: - return UnmarshalNotificationSound(data) - - case TypeNotificationSounds: - return UnmarshalNotificationSounds(data) - case TypeNotification: return UnmarshalNotification(data) @@ -15017,21 +14423,12 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeChatReportReasonFake: return UnmarshalChatReportReasonFake(data) - case TypeChatReportReasonIllegalDrugs: - return UnmarshalChatReportReasonIllegalDrugs(data) - - case TypeChatReportReasonPersonalDetails: - return UnmarshalChatReportReasonPersonalDetails(data) - case TypeChatReportReasonCustom: return UnmarshalChatReportReasonCustom(data) case TypeInternalLinkTypeActiveSessions: return UnmarshalInternalLinkTypeActiveSessions(data) - case TypeInternalLinkTypeAttachmentMenuBot: - return UnmarshalInternalLinkTypeAttachmentMenuBot(data) - case TypeInternalLinkTypeAuthenticationCode: return UnmarshalInternalLinkTypeAuthenticationCode(data) @@ -15044,9 +14441,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeInternalLinkTypeBotStartInGroup: return UnmarshalInternalLinkTypeBotStartInGroup(data) - case TypeInternalLinkTypeBotAddToChannel: - return UnmarshalInternalLinkTypeBotAddToChannel(data) - case TypeInternalLinkTypeChangePhoneNumber: return UnmarshalInternalLinkTypeChangePhoneNumber(data) @@ -15062,9 +14456,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeInternalLinkTypeLanguagePack: return UnmarshalInternalLinkTypeLanguagePack(data) - case TypeInternalLinkTypeLanguageSettings: - return UnmarshalInternalLinkTypeLanguageSettings(data) - case TypeInternalLinkTypeMessage: return UnmarshalInternalLinkTypeMessage(data) @@ -15077,9 +14468,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeInternalLinkTypePhoneNumberConfirmation: return UnmarshalInternalLinkTypePhoneNumberConfirmation(data) - case TypeInternalLinkTypePrivacyAndSecuritySettings: - return UnmarshalInternalLinkTypePrivacyAndSecuritySettings(data) - case TypeInternalLinkTypeProxy: return UnmarshalInternalLinkTypeProxy(data) @@ -15107,9 +14495,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeInternalLinkTypeUnsupportedProxy: return UnmarshalInternalLinkTypeUnsupportedProxy(data) - case TypeInternalLinkTypeUserPhoneNumber: - return UnmarshalInternalLinkTypeUserPhoneNumber(data) - case TypeInternalLinkTypeVideoChat: return UnmarshalInternalLinkTypeVideoChat(data) @@ -15134,9 +14519,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeFileTypeDocument: return UnmarshalFileTypeDocument(data) - case TypeFileTypeNotificationSound: - return UnmarshalFileTypeNotificationSound(data) - case TypeFileTypePhoto: return UnmarshalFileTypePhoto(data) @@ -15323,8 +14705,11 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeProxies: return UnmarshalProxies(data) - case TypeInputSticker: - return UnmarshalInputSticker(data) + case TypeInputStickerStatic: + return UnmarshalInputStickerStatic(data) + + case TypeInputStickerAnimated: + return UnmarshalInputStickerAnimated(data) case TypeDateRange: return UnmarshalDateRange(data) @@ -15425,9 +14810,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeUpdateMessageMentionRead: return UnmarshalUpdateMessageMentionRead(data) - case TypeUpdateMessageUnreadReactions: - return UnmarshalUpdateMessageUnreadReactions(data) - case TypeUpdateMessageLiveLocationViewed: return UnmarshalUpdateMessageLiveLocationViewed(data) @@ -15458,9 +14840,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeUpdateChatActionBar: return UnmarshalUpdateChatActionBar(data) - case TypeUpdateChatAvailableReactions: - return UnmarshalUpdateChatAvailableReactions(data) - case TypeUpdateChatDraftMessage: return UnmarshalUpdateChatDraftMessage(data) @@ -15485,9 +14864,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeUpdateChatUnreadMentionCount: return UnmarshalUpdateChatUnreadMentionCount(data) - case TypeUpdateChatUnreadReactionCount: - return UnmarshalUpdateChatUnreadReactionCount(data) - case TypeUpdateChatVideoChat: return UnmarshalUpdateChatVideoChat(data) @@ -15569,18 +14945,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeUpdateFileGenerationStop: return UnmarshalUpdateFileGenerationStop(data) - case TypeUpdateFileDownloads: - return UnmarshalUpdateFileDownloads(data) - - case TypeUpdateFileAddedToDownloads: - return UnmarshalUpdateFileAddedToDownloads(data) - - case TypeUpdateFileDownload: - return UnmarshalUpdateFileDownload(data) - - case TypeUpdateFileRemovedFromDownloads: - return UnmarshalUpdateFileRemovedFromDownloads(data) - case TypeUpdateCall: return UnmarshalUpdateCall(data) @@ -15623,9 +14987,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeUpdateSavedAnimations: return UnmarshalUpdateSavedAnimations(data) - case TypeUpdateSavedNotificationSounds: - return UnmarshalUpdateSavedNotificationSounds(data) - case TypeUpdateSelectedBackground: return UnmarshalUpdateSelectedBackground(data) @@ -15644,15 +15005,6 @@ func UnmarshalType(data json.RawMessage) (Type, error) { case TypeUpdateUsersNearby: return UnmarshalUpdateUsersNearby(data) - case TypeUpdateAttachmentMenuBots: - return UnmarshalUpdateAttachmentMenuBots(data) - - case TypeUpdateWebAppMessageSent: - return UnmarshalUpdateWebAppMessageSent(data) - - case TypeUpdateReactions: - return UnmarshalUpdateReactions(data) - case TypeUpdateDiceEmojis: return UnmarshalUpdateDiceEmojis(data) diff --git a/data/td_api.json b/data/td_api.json index 2d04387..fd374de 100755 --- a/data/td_api.json +++ b/data/td_api.json @@ -315,7 +315,7 @@ { "name": "entities", "type": "vector\u003ctextEntity\u003e", - "description": "Entities contained in the text. Entities can be nested, but must not mutually intersect with each other. Pre, Code and PreCode entities can't contain other entities. Bold, Italic, Underline, Strikethrough, and Spoiler entities can contain and to be contained in all other entities. All other entities can't contain each other" + "description": "Entities contained in the text. Entities can be nested, but must not mutually intersect with each other. Pre, Code and PreCode entities can't contain other entities. Bold, Italic, Underline and Strikethrough entities can contain and to be contained in all other entities. All other entities can't contain each other" } ] }, @@ -332,7 +332,7 @@ { "name": "min_user_age", "type": "int32", - "description": "The minimum age of a user to be able to accept the terms; 0 if age isn't restricted" + "description": "The minimum age of a user to be able to accept the terms; 0 if any" }, { "name": "show_popup", @@ -568,7 +568,7 @@ { "name": "id", "type": "string", - "description": "Remote file identifier; may be empty. Can be used by the current user across application restarts or even from other devices. Uniquely identifies a file, but a file can have a lot of different valid identifiers. If the ID starts with \"http://\" or \"https://\", it represents the HTTP URL of the file. TDLib is currently unable to download files if only their URL is known. If downloadFile/addFileToDownloads is called on such a file or if it is sent to a secret chat, TDLib starts a file generation process by sending updateFileGenerationStart to the application with the HTTP URL in the original_path and \"#url#\" as the conversion string. Application must generate the file by downloading it to the specified location" + "description": "Remote file identifier; may be empty. Can be used by the current user across application restarts or even from other devices. Uniquely identifies a file, but a file can have a lot of different valid identifiers. If the ID starts with \"http://\" or \"https://\", it represents the HTTP URL of the file. TDLib is currently unable to download files if only their URL is known. If downloadFile is called on such a file or if it is sent to a secret chat, TDLib starts a file generation process by sending updateFileGenerationStart to the application with the HTTP URL in the original_path and \"#url#\" as the conversion string. Application must generate the file by downloading it to the specified location" }, { "name": "unique_id", @@ -742,42 +742,36 @@ "class": "ThumbnailFormat", "properties": [] }, - { - "name": "thumbnailFormatGif", - "description": "The thumbnail is in static GIF format. It will be used only for some bot inline results", - "class": "ThumbnailFormat", - "properties": [] - }, - { - "name": "thumbnailFormatMpeg4", - "description": "The thumbnail is in MPEG4 format. It will be used only for some animations and videos", - "class": "ThumbnailFormat", - "properties": [] - }, { "name": "thumbnailFormatPng", "description": "The thumbnail is in PNG format. It will be used only for background patterns", "class": "ThumbnailFormat", "properties": [] }, - { - "name": "thumbnailFormatTgs", - "description": "The thumbnail is in TGS format. It will be used only for TGS sticker sets", - "class": "ThumbnailFormat", - "properties": [] - }, - { - "name": "thumbnailFormatWebm", - "description": "The thumbnail is in WEBM format. It will be used only for WEBM sticker sets", - "class": "ThumbnailFormat", - "properties": [] - }, { "name": "thumbnailFormatWebp", "description": "The thumbnail is in WEBP format. It will be used only for some stickers", "class": "ThumbnailFormat", "properties": [] }, + { + "name": "thumbnailFormatGif", + "description": "The thumbnail is in static GIF format. It will be used only for some bot inline results", + "class": "ThumbnailFormat", + "properties": [] + }, + { + "name": "thumbnailFormatTgs", + "description": "The thumbnail is in TGS format. It will be used only for animated sticker sets", + "class": "ThumbnailFormat", + "properties": [] + }, + { + "name": "thumbnailFormatMpeg4", + "description": "The thumbnail is in MPEG4 format. It will be used only for some animations and videos", + "class": "ThumbnailFormat", + "properties": [] + }, { "name": "thumbnail", "description": "Represents a thumbnail", @@ -856,36 +850,6 @@ } ] }, - { - "name": "stickerTypeStatic", - "description": "The sticker is an image in WEBP format", - "class": "StickerType", - "properties": [] - }, - { - "name": "stickerTypeAnimated", - "description": "The sticker is an animation in TGS format", - "class": "StickerType", - "properties": [] - }, - { - "name": "stickerTypeVideo", - "description": "The sticker is a video in WEBM format", - "class": "StickerType", - "properties": [] - }, - { - "name": "stickerTypeMask", - "description": "The sticker is a mask in WEBP format to be placed on photos or videos", - "class": "StickerType", - "properties": [ - { - "name": "mask_position", - "type": "maskPosition", - "description": "Position where the mask is placed; may be null" - } - ] - }, { "name": "closedVectorPath", "description": "Represents a closed vector path. The path begins at the end point of the last command", @@ -1138,9 +1102,19 @@ "description": "Emoji corresponding to the sticker" }, { - "name": "type", - "type": "StickerType", - "description": "Sticker type" + "name": "is_animated", + "type": "Bool", + "description": "True, if the sticker is an animated sticker in TGS format" + }, + { + "name": "is_mask", + "type": "Bool", + "description": "True, if the sticker is a mask" + }, + { + "name": "mask_position", + "type": "maskPosition", + "description": "Position where the mask is placed; may be null" }, { "name": "outline", @@ -1293,7 +1267,7 @@ { "name": "sound", "type": "file", - "description": "File containing the sound to be played when the animated emoji is clicked; may be null. The sound is encoded with the Opus codec, and stored inside an OGG container" + "description": "File containing the sound to be played when the animated emoji is clicked if any; may be null. The sound is encoded with the Opus codec, and stored inside an OGG container" } ] }, @@ -1587,11 +1561,6 @@ "name": "need_location", "type": "Bool", "description": "True, if the location of the user is expected to be sent with every inline query to this bot" - }, - { - "name": "can_be_added_to_attachment_menu", - "type": "Bool", - "description": "True, if the bot can be added to attachment menu" } ] }, @@ -1635,23 +1604,6 @@ } ] }, - { - "name": "botMenuButton", - "description": "Describes a button to be shown instead of bot commands menu button", - "class": "BotMenuButton", - "properties": [ - { - "name": "text", - "type": "string", - "description": "Text of the button" - }, - { - "name": "url", - "type": "string", - "description": "URL to be passed to openWebApp" - } - ] - }, { "name": "chatLocation", "description": "Represents a location to which a chat is connected", @@ -1781,115 +1733,6 @@ } ] }, - { - "name": "chatPermissions", - "description": "Describes actions that a user is allowed to take in a chat", - "class": "ChatPermissions", - "properties": [ - { - "name": "can_send_messages", - "type": "Bool", - "description": "True, if the user can send text messages, contacts, locations, and venues" - }, - { - "name": "can_send_media_messages", - "type": "Bool", - "description": "True, if the user can send audio files, documents, photos, videos, video notes, and voice notes. Implies can_send_messages permissions" - }, - { - "name": "can_send_polls", - "type": "Bool", - "description": "True, if the user can send polls. Implies can_send_messages permissions" - }, - { - "name": "can_send_other_messages", - "type": "Bool", - "description": "True, if the user can send animations, games, stickers, and dice and use inline bots. Implies can_send_messages permissions" - }, - { - "name": "can_add_web_page_previews", - "type": "Bool", - "description": "True, if the user may add a web page preview to their messages. Implies can_send_messages permissions" - }, - { - "name": "can_change_info", - "type": "Bool", - "description": "True, if the user can change the chat title, photo, and other settings" - }, - { - "name": "can_invite_users", - "type": "Bool", - "description": "True, if the user can invite new users to the chat" - }, - { - "name": "can_pin_messages", - "type": "Bool", - "description": "True, if the user can pin messages" - } - ] - }, - { - "name": "chatAdministratorRights", - "description": "Describes rights of the administrator", - "class": "ChatAdministratorRights", - "properties": [ - { - "name": "can_manage_chat", - "type": "Bool", - "description": "True, if the administrator can get chat event log, get chat statistics, get message statistics in channels, get channel members, see anonymous administrators in supergroups and ignore slow mode. Implied by any other privilege; applicable to supergroups and channels only" - }, - { - "name": "can_change_info", - "type": "Bool", - "description": "True, if the administrator can change the chat title, photo, and other settings" - }, - { - "name": "can_post_messages", - "type": "Bool", - "description": "True, if the administrator can create channel posts; applicable to channels only" - }, - { - "name": "can_edit_messages", - "type": "Bool", - "description": "True, if the administrator can edit messages of other users and pin messages; applicable to channels only" - }, - { - "name": "can_delete_messages", - "type": "Bool", - "description": "True, if the administrator can delete messages of other users" - }, - { - "name": "can_invite_users", - "type": "Bool", - "description": "True, if the administrator can invite new users to the chat" - }, - { - "name": "can_restrict_members", - "type": "Bool", - "description": "True, if the administrator can restrict, ban, or unban chat members; always true for channels" - }, - { - "name": "can_pin_messages", - "type": "Bool", - "description": "True, if the administrator can pin messages; applicable to basic groups and supergroups only" - }, - { - "name": "can_promote_members", - "type": "Bool", - "description": "True, if the administrator can add new administrators with a subset of their own privileges or demote administrators that were directly or indirectly promoted by them" - }, - { - "name": "can_manage_video_chats", - "type": "Bool", - "description": "True, if the administrator can manage video chats" - }, - { - "name": "is_anonymous", - "type": "Bool", - "description": "True, if the administrator isn't shown in the chat member list and sends messages anonymously; applicable to supergroups only" - } - ] - }, { "name": "user", "description": "Represents a user", @@ -1968,7 +1811,7 @@ { "name": "have_access", "type": "Bool", - "description": "If false, the user is inaccessible, and the only information known about the user is inside this class. Identifier of the user can't be passed to any method except GetUser" + "description": "If false, the user is inaccessible, and the only information known about the user is inside this class. It can't be passed to any method except GetUser" }, { "name": "type", @@ -1982,43 +1825,6 @@ } ] }, - { - "name": "botInfo", - "description": "Contains information about a bot", - "class": "BotInfo", - "properties": [ - { - "name": "share_text", - "type": "string", - "description": "The text that is shown on the bot's profile page and is sent together with the link when users share the bot" - }, - { - "name": "description", - "type": "string", - "description": "The text shown in the chat with the bot if the chat is empty" - }, - { - "name": "menu_button", - "type": "botMenuButton", - "description": "Information about a button to show instead of the bot commands menu button; may be null if ordinary bot commands menu must be shown" - }, - { - "name": "commands", - "type": "vector\u003cbotCommand\u003e", - "description": "List of the bot commands" - }, - { - "name": "default_group_administrator_rights", - "type": "chatAdministratorRights", - "description": "Default administrator rights for adding the bot to basic group and supergroup chats; may be null" - }, - { - "name": "default_channel_administrator_rights", - "type": "chatAdministratorRights", - "description": "Default administrator rights for adding the bot to channels; may be null" - } - ] - }, { "name": "userFullInfo", "description": "Contains full information about a user", @@ -2064,15 +1870,25 @@ "type": "string", "description": "A short user bio" }, + { + "name": "share_text", + "type": "string", + "description": "For bots, the text that is shown on the bot's profile page and is sent together with the link when users share the bot" + }, + { + "name": "description", + "type": "string", + "description": "For bots, the text shown in the chat with the bot if the chat is empty" + }, { "name": "group_in_common_count", "type": "int32", "description": "Number of group chats where both the other user and the current user are a member; 0 for the current user" }, { - "name": "bot_info", - "type": "botInfo", - "description": "For bots, information about the bot; may be null" + "name": "commands", + "type": "vector\u003cbotCommand\u003e", + "description": "For bots, list of the bot commands" } ] }, @@ -2084,7 +1900,7 @@ { "name": "total_count", "type": "int32", - "description": "Approximate total number of users found" + "description": "Approximate total count of users found" }, { "name": "user_ids", @@ -2127,6 +1943,53 @@ } ] }, + { + "name": "chatPermissions", + "description": "Describes actions that a user is allowed to take in a chat", + "class": "ChatPermissions", + "properties": [ + { + "name": "can_send_messages", + "type": "Bool", + "description": "True, if the user can send text messages, contacts, locations, and venues" + }, + { + "name": "can_send_media_messages", + "type": "Bool", + "description": "True, if the user can send audio files, documents, photos, videos, video notes, and voice notes. Implies can_send_messages permissions" + }, + { + "name": "can_send_polls", + "type": "Bool", + "description": "True, if the user can send polls. Implies can_send_messages permissions" + }, + { + "name": "can_send_other_messages", + "type": "Bool", + "description": "True, if the user can send animations, games, stickers, and dice and use inline bots. Implies can_send_messages permissions" + }, + { + "name": "can_add_web_page_previews", + "type": "Bool", + "description": "True, if the user may add a web page preview to their messages. Implies can_send_messages permissions" + }, + { + "name": "can_change_info", + "type": "Bool", + "description": "True, if the user can change the chat title, photo, and other settings" + }, + { + "name": "can_invite_users", + "type": "Bool", + "description": "True, if the user can invite new users to the chat" + }, + { + "name": "can_pin_messages", + "type": "Bool", + "description": "True, if the user can pin messages" + } + ] + }, { "name": "chatMemberStatusCreator", "description": "The user is the owner of the chat and has all the administrator privileges", @@ -2165,9 +2028,59 @@ "description": "True, if the current user can edit the administrator privileges for the called user" }, { - "name": "rights", - "type": "chatAdministratorRights", - "description": "Rights of the administrator" + "name": "can_manage_chat", + "type": "Bool", + "description": "True, if the administrator can get chat event log, get chat statistics, get message statistics in channels, get channel members, see anonymous administrators in supergroups and ignore slow mode. Implied by any other privilege; applicable to supergroups and channels only" + }, + { + "name": "can_change_info", + "type": "Bool", + "description": "True, if the administrator can change the chat title, photo, and other settings" + }, + { + "name": "can_post_messages", + "type": "Bool", + "description": "True, if the administrator can create channel posts; applicable to channels only" + }, + { + "name": "can_edit_messages", + "type": "Bool", + "description": "True, if the administrator can edit messages of other users and pin messages; applicable to channels only" + }, + { + "name": "can_delete_messages", + "type": "Bool", + "description": "True, if the administrator can delete messages of other users" + }, + { + "name": "can_invite_users", + "type": "Bool", + "description": "True, if the administrator can invite new users to the chat" + }, + { + "name": "can_restrict_members", + "type": "Bool", + "description": "True, if the administrator can restrict, ban, or unban chat members; always true for channels" + }, + { + "name": "can_pin_messages", + "type": "Bool", + "description": "True, if the administrator can pin messages; applicable to basic groups and supergroups only" + }, + { + "name": "can_promote_members", + "type": "Bool", + "description": "True, if the administrator can add new administrators with a subset of their own privileges or demote administrators that were directly or indirectly promoted by them" + }, + { + "name": "can_manage_video_chats", + "type": "Bool", + "description": "True, if the administrator can manage video chats" + }, + { + "name": "is_anonymous", + "type": "Bool", + "description": "True, if the administrator isn't shown in the chat member list and sends messages anonymously; applicable to supergroups only" } ] }, @@ -2252,7 +2165,7 @@ { "name": "total_count", "type": "int32", - "description": "Approximate total number of chat members found" + "description": "Approximate total count of chat members found" }, { "name": "members", @@ -2467,7 +2380,7 @@ { "name": "total_count", "type": "int32", - "description": "Approximate total number of chat invite links found" + "description": "Approximate total count of chat invite links found" }, { "name": "invite_links", @@ -2540,7 +2453,7 @@ { "name": "total_count", "type": "int32", - "description": "Approximate total number of chat members found" + "description": "Approximate total count of chat members found" }, { "name": "members", @@ -2636,7 +2549,7 @@ { "name": "total_count", "type": "int32", - "description": "Approximate total number of requests found" + "description": "Approximate total count of requests found" }, { "name": "requests", @@ -2906,7 +2819,7 @@ { "name": "invite_link", "type": "chatInviteLink", - "description": "Primary invite link for the chat; may be null. For chat administrators with can_invite_users right only" + "description": "Primary invite link for this chat; may be null. For chat administrators with can_invite_users right only" }, { "name": "bot_commands", @@ -3012,7 +2925,7 @@ { "name": "total_count", "type": "int32", - "description": "Approximate total number of messages senders found" + "description": "Approximate total count of messages senders found" }, { "name": "senders", @@ -3160,33 +3073,6 @@ } ] }, - { - "name": "messageReaction", - "description": "Contains information about a reaction to a message", - "class": "MessageReaction", - "properties": [ - { - "name": "reaction", - "type": "string", - "description": "Text representation of the reaction" - }, - { - "name": "total_count", - "type": "int32", - "description": "Number of times the reaction was added" - }, - { - "name": "is_chosen", - "type": "Bool", - "description": "True, if the reaction is chosen by the current user" - }, - { - "name": "recent_sender_ids", - "type": "vector\u003cMessageSender\u003e", - "description": "Identifiers of at most 3 recent message senders, added the reaction; available in private, basic group and supergroup chats" - } - ] - }, { "name": "messageInteractionInfo", "description": "Contains information about interactions with a message", @@ -3206,33 +3092,6 @@ "name": "reply_info", "type": "messageReplyInfo", "description": "Information about direct or indirect replies to the message; may be null. Currently, available only in channels with a discussion supergroup and discussion supergroups for messages, which are not replies itself" - }, - { - "name": "reactions", - "type": "vector\u003cmessageReaction\u003e", - "description": "The list of reactions added to the message" - } - ] - }, - { - "name": "unreadReaction", - "description": "Contains information about an unread reaction to a message", - "class": "UnreadReaction", - "properties": [ - { - "name": "reaction", - "type": "string", - "description": "Text representation of the reaction" - }, - { - "name": "sender_id", - "type": "MessageSender", - "description": "Identifier of the sender, added the reaction" - }, - { - "name": "is_big", - "type": "Bool", - "description": "True, if the reaction was added with a big animation" } ] }, @@ -3339,20 +3198,15 @@ "type": "Bool", "description": "True, if the message can be deleted for all users" }, - { - "name": "can_get_added_reactions", - "type": "Bool", - "description": "True, if the list of added reactions is available through getMessageAddedReactions" - }, { "name": "can_get_statistics", "type": "Bool", - "description": "True, if the message statistics are available through getMessageStatistics" + "description": "True, if the message statistics are available" }, { "name": "can_get_message_thread", "type": "Bool", - "description": "True, if information about the message thread is available through getMessageThread" + "description": "True, if the message thread info is available" }, { "name": "can_get_viewers", @@ -3362,7 +3216,7 @@ { "name": "can_get_media_timestamp_links", "type": "Bool", - "description": "True, if media timestamp links can be generated for media timestamp entities in the message text, caption or web page description through getMessageLink" + "description": "True, if media timestamp links can be generated for media timestamp entities in the message text, caption or web page description" }, { "name": "has_timestamped_media", @@ -3399,11 +3253,6 @@ "type": "messageInteractionInfo", "description": "Information about interactions with the message; may be null" }, - { - "name": "unread_reactions", - "type": "vector\u003cunreadReaction\u003e", - "description": "Information about unread reactions added to the message" - }, { "name": "reply_in_chat_id", "type": "int53", @@ -3469,7 +3318,7 @@ { "name": "total_count", "type": "int32", - "description": "Approximate total number of messages found" + "description": "Approximate total count of messages found" }, { "name": "messages", @@ -3486,7 +3335,7 @@ { "name": "total_count", "type": "int32", - "description": "Approximate total number of messages found; -1 if unknown" + "description": "Approximate total count of messages found; -1 if unknown" }, { "name": "messages", @@ -3530,7 +3379,7 @@ { "name": "total_count", "type": "int32", - "description": "Total number of messages found" + "description": "Total count of messages found" }, { "name": "positions", @@ -3586,17 +3435,12 @@ { "name": "sponsor_chat_id", "type": "int53", - "description": "Sponsor chat identifier; 0 if the sponsor chat is accessible through an invite link" - }, - { - "name": "sponsor_chat_info", - "type": "chatInviteLinkInfo", - "description": "Information about the sponsor chat; may be null unless sponsor_chat_id == 0" + "description": "Chat identifier" }, { "name": "link", "type": "InternalLinkType", - "description": "An internal link to be opened when the sponsored message is clicked; may be null if the sponsor chat needs to be opened instead" + "description": "An internal link to be opened when the sponsored message is clicked; may be null. If null, the sponsor chat needs to be opened instead" }, { "name": "content", @@ -3605,82 +3449,6 @@ } ] }, - { - "name": "fileDownload", - "description": "Describes a file added to file download list", - "class": "FileDownload", - "properties": [ - { - "name": "file_id", - "type": "int32", - "description": "File identifier" - }, - { - "name": "message", - "type": "message", - "description": "The message with the file" - }, - { - "name": "add_date", - "type": "int32", - "description": "Point in time (Unix timestamp) when the file was added to the download list" - }, - { - "name": "complete_date", - "type": "int32", - "description": "Point in time (Unix timestamp) when the file downloading was completed; 0 if the file downloading isn't completed" - }, - { - "name": "is_paused", - "type": "Bool", - "description": "True, if downloading of the file is paused" - } - ] - }, - { - "name": "downloadedFileCounts", - "description": "Contains number of being downloaded and recently downloaded files found", - "class": "DownloadedFileCounts", - "properties": [ - { - "name": "active_count", - "type": "int32", - "description": "Number of active file downloads found, including paused" - }, - { - "name": "paused_count", - "type": "int32", - "description": "Number of paused file downloads found" - }, - { - "name": "completed_count", - "type": "int32", - "description": "Number of completed file downloads found" - } - ] - }, - { - "name": "foundFileDownloads", - "description": "Contains a list of downloaded files, found by a search", - "class": "FoundFileDownloads", - "properties": [ - { - "name": "total_counts", - "type": "downloadedFileCounts", - "description": "Total number of suitable files, ignoring offset" - }, - { - "name": "files", - "type": "vector\u003cfileDownload\u003e", - "description": "The list of files" - }, - { - "name": "next_offset", - "type": "string", - "description": "The offset for the next request. If empty, there are no more results" - } - ] - }, { "name": "notificationSettingsScopePrivateChats", "description": "Notification settings applied to all private and secret chats when the corresponding chat setting has a default value", @@ -3689,13 +3457,13 @@ }, { "name": "notificationSettingsScopeGroupChats", - "description": "Notification settings applied to all basic group and supergroup chats when the corresponding chat setting has a default value", + "description": "Notification settings applied to all basic groups and supergroups when the corresponding chat setting has a default value", "class": "NotificationSettingsScope", "properties": [] }, { "name": "notificationSettingsScopeChannelChats", - "description": "Notification settings applied to all channel chats when the corresponding chat setting has a default value", + "description": "Notification settings applied to all channels when the corresponding chat setting has a default value", "class": "NotificationSettingsScope", "properties": [] }, @@ -3717,12 +3485,12 @@ { "name": "use_default_sound", "type": "Bool", - "description": "If true, the value for the relevant type of chat is used instead of sound_id" + "description": "If true, sound is ignored and the value for the relevant type of chat is used instead" }, { - "name": "sound_id", - "type": "int64", - "description": "Identifier of the notification sound to be played; 0 if sound is disabled" + "name": "sound", + "type": "string", + "description": "The name of an audio file to be used for notification sounds; only applies to iOS applications" }, { "name": "use_default_show_preview", @@ -3767,9 +3535,9 @@ "description": "Time left before notifications will be unmuted, in seconds" }, { - "name": "sound_id", - "type": "int64", - "description": "Identifier of the notification sound to be played; 0 if sound is disabled" + "name": "sound", + "type": "string", + "description": "The name of an audio file to be used for notification sounds; only applies to iOS applications" }, { "name": "show_preview", @@ -3796,7 +3564,7 @@ { "name": "reply_to_message_id", "type": "int53", - "description": "Identifier of the replied message; 0 if none" + "description": "Identifier of the message to reply to; 0 if none" }, { "name": "date", @@ -4204,20 +3972,10 @@ "type": "int32", "description": "Number of unread messages with a mention/reply in the chat" }, - { - "name": "unread_reaction_count", - "type": "int32", - "description": "Number of messages with unread reactions in the chat" - }, { "name": "notification_settings", "type": "chatNotificationSettings", - "description": "Notification settings for the chat" - }, - { - "name": "available_reactions", - "type": "vector\u003cstring\u003e", - "description": "List of reactions, available in the chat" + "description": "Notification settings for this chat" }, { "name": "message_ttl", @@ -4269,7 +4027,7 @@ { "name": "total_count", "type": "int32", - "description": "Approximate total number of chats found" + "description": "Approximate total count of chats found" }, { "name": "chat_ids", @@ -4434,18 +4192,6 @@ } ] }, - { - "name": "keyboardButtonTypeWebApp", - "description": "A button that opens a web app by calling getWebAppUrl", - "class": "KeyboardButtonType", - "properties": [ - { - "name": "url", - "type": "string", - "description": "An HTTP URL to pass to getWebAppUrl" - } - ] - }, { "name": "keyboardButton", "description": "Represents a single button in a bot keyboard", @@ -4477,13 +4223,13 @@ }, { "name": "inlineKeyboardButtonTypeLoginUrl", - "description": "A button that opens a specified URL and automatically authorize the current user by calling getLoginUrlInfo", + "description": "A button that opens a specified URL and automatically authorize the current user if allowed to do so", "class": "InlineKeyboardButtonType", "properties": [ { "name": "url", "type": "string", - "description": "An HTTP URL to pass to getLoginUrlInfo" + "description": "An HTTP URL to open" }, { "name": "id", @@ -4497,18 +4243,6 @@ } ] }, - { - "name": "inlineKeyboardButtonTypeWebApp", - "description": "A button that opens a web app by calling openWebApp", - "class": "InlineKeyboardButtonType", - "properties": [ - { - "name": "url", - "type": "string", - "description": "An HTTP URL to pass to openWebApp" - } - ] - }, { "name": "inlineKeyboardButtonTypeCallback", "description": "A button that sends a callback query to a bot", @@ -4708,23 +4442,6 @@ } ] }, - { - "name": "webAppInfo", - "description": "Contains information about a web app", - "class": "WebAppInfo", - "properties": [ - { - "name": "launch_id", - "type": "int64", - "description": "Unique identifier for the web app launch" - }, - { - "name": "url", - "type": "string", - "description": "A web app URL to open in a web view" - } - ] - }, { "name": "messageThreadInfo", "description": "Contains information about a message thread", @@ -5595,7 +5312,7 @@ { "name": "username", "type": "string", - "description": "Chat username by which all other information about the chat can be resolved" + "description": "Chat username, by which all other information about the chat can be resolved" } ] }, @@ -5983,43 +5700,6 @@ } ] }, - { - "name": "themeParameters", - "description": "Contains parameters of the app theme", - "class": "ThemeParameters", - "properties": [ - { - "name": "background_color", - "type": "int32", - "description": "A color of the background in the RGB24 format" - }, - { - "name": "text_color", - "type": "int32", - "description": "A color of text in the RGB24 format" - }, - { - "name": "hint_color", - "type": "int32", - "description": "A color of hints in the RGB24 format" - }, - { - "name": "link_color", - "type": "int32", - "description": "A color of links in the RGB24 format" - }, - { - "name": "button_color", - "type": "int32", - "description": "A color of the buttons in the RGB24 format" - }, - { - "name": "button_text_color", - "type": "int32", - "description": "A color of text on the buttons in the RGB24 format" - } - ] - }, { "name": "labeledPricePart", "description": "Portion of the price of a product (e.g., \"delivery cost\", \"tax amount\")", @@ -6250,6 +5930,43 @@ } ] }, + { + "name": "paymentFormTheme", + "description": "Theme colors for a payment form", + "class": "PaymentFormTheme", + "properties": [ + { + "name": "background_color", + "type": "int32", + "description": "A color of the payment form background in the RGB24 format" + }, + { + "name": "text_color", + "type": "int32", + "description": "A color of text in the RGB24 format" + }, + { + "name": "hint_color", + "type": "int32", + "description": "A color of hints in the RGB24 format" + }, + { + "name": "link_color", + "type": "int32", + "description": "A color of links in the RGB24 format" + }, + { + "name": "button_color", + "type": "int32", + "description": "A color of the buttons in the RGB24 format" + }, + { + "name": "button_text_color", + "type": "int32", + "description": "A color of text on the buttons in the RGB24 format" + } + ] + }, { "name": "paymentForm", "description": "Contains information about an invoice payment form", @@ -8123,38 +7840,9 @@ } ] }, - { - "name": "messageWebAppDataSent", - "description": "Data from a web app has been sent to a bot", - "class": "MessageContent", - "properties": [ - { - "name": "button_text", - "type": "string", - "description": "Text of the keyboardButtonTypeWebApp button, which opened the web app" - } - ] - }, - { - "name": "messageWebAppDataReceived", - "description": "Data from a web app has been received; for bots only", - "class": "MessageContent", - "properties": [ - { - "name": "button_text", - "type": "string", - "description": "Text of the keyboardButtonTypeWebApp button, which opened the web app" - }, - { - "name": "data", - "type": "string", - "description": "Received data" - } - ] - }, { "name": "messagePassportDataSent", - "description": "Telegram Passport data has been sent to a bot", + "description": "Telegram Passport data has been sent", "class": "MessageContent", "properties": [ { @@ -8281,12 +7969,6 @@ "class": "TextEntityType", "properties": [] }, - { - "name": "textEntityTypeSpoiler", - "description": "A spoiler text. Not supported in secret chats", - "class": "TextEntityType", - "properties": [] - }, { "name": "textEntityTypeCode", "description": "Text that must be formatted as if inside a code HTML tag", @@ -8402,11 +8084,6 @@ "type": "Bool", "description": "Pass true if the message is sent from the background" }, - { - "name": "protect_content", - "type": "Bool", - "description": "Pass true if the content of the message must be protected from forwarding and saving; for bots only" - }, { "name": "scheduling_state", "type": "MessageSchedulingState", @@ -8444,7 +8121,7 @@ { "name": "text", "type": "formattedText", - "description": "Formatted text to be sent; 1-GetOption(\"message_text_length_max\") characters. Only Bold, Italic, Underline, Strikethrough, Spoiler, Code, Pre, PreCode, TextUrl and MentionName entities are allowed to be specified manually" + "description": "Formatted text to be sent; 1-GetOption(\"message_text_length_max\") characters. Only Bold, Italic, Underline, Strikethrough, Code, Pre, PreCode, TextUrl and MentionName entities are allowed to be specified manually" }, { "name": "disable_web_page_preview", @@ -9044,12 +8721,6 @@ "class": "SearchMessagesFilter", "properties": [] }, - { - "name": "searchMessagesFilterUnreadReaction", - "description": "Returns only messages with unread reactions for the current user. When using this filter the results can't be additionally filtered by a query, a message thread or by the sending user", - "class": "SearchMessagesFilter", - "properties": [] - }, { "name": "searchMessagesFilterFailedToSend", "description": "Returns only failed to send messages. This filter can be used only if the message database is used", @@ -9283,7 +8954,7 @@ { "name": "thumbnail", "type": "thumbnail", - "description": "Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null. The file can be downloaded only before the thumbnail is changed" + "description": "Sticker set thumbnail in WEBP or TGS format with width and height 100; may be null. The file can be downloaded only before the thumbnail is changed" }, { "name": "thumbnail_outline", @@ -9306,9 +8977,14 @@ "description": "True, if the sticker set is official" }, { - "name": "sticker_type", - "type": "StickerType", - "description": "Type of the stickers in the set" + "name": "is_animated", + "type": "Bool", + "description": "True, is the stickers in the set are animated" + }, + { + "name": "is_masks", + "type": "Bool", + "description": "True, if the stickers in the set are masks" }, { "name": "is_viewed", @@ -9350,7 +9026,7 @@ { "name": "thumbnail", "type": "thumbnail", - "description": "Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null" + "description": "Sticker set thumbnail in WEBP or TGS format with width and height 100; may be null" }, { "name": "thumbnail_outline", @@ -9373,9 +9049,14 @@ "description": "True, if the sticker set is official" }, { - "name": "sticker_type", - "type": "StickerType", - "description": "Type of the stickers in the set" + "name": "is_animated", + "type": "Bool", + "description": "True, is the stickers in the set are animated" + }, + { + "name": "is_masks", + "type": "Bool", + "description": "True, if the stickers in the set are masks" }, { "name": "is_viewed", @@ -9686,57 +9367,6 @@ "class": "GroupCallVideoQuality", "properties": [] }, - { - "name": "groupCallStream", - "description": "Describes an available stream in a group call", - "class": "GroupCallStream", - "properties": [ - { - "name": "channel_id", - "type": "int32", - "description": "Identifier of an audio/video channel" - }, - { - "name": "scale", - "type": "int32", - "description": "Scale of segment durations in the stream. The duration is 1000/(2**scale) milliseconds" - }, - { - "name": "time_offset", - "type": "int53", - "description": "Point in time when the stream currently ends; Unix timestamp in milliseconds" - } - ] - }, - { - "name": "groupCallStreams", - "description": "Represents a list of group call streams", - "class": "GroupCallStreams", - "properties": [ - { - "name": "streams", - "type": "vector\u003cgroupCallStream\u003e", - "description": "A list of group call streams" - } - ] - }, - { - "name": "rtmpUrl", - "description": "Represents an RTMP url", - "class": "RtmpUrl", - "properties": [ - { - "name": "url", - "type": "string", - "description": "The URL" - }, - { - "name": "stream_key", - "type": "string", - "description": "Stream key" - } - ] - }, { "name": "groupCallRecentSpeaker", "description": "Describes a recently speaking participant in a group call", @@ -9784,11 +9414,6 @@ "type": "Bool", "description": "True, if the call is active" }, - { - "name": "is_rtmp_stream", - "type": "Bool", - "description": "True, if the chat is an RTMP stream instead of an ordinary video chat" - }, { "name": "is_joined", "type": "Bool", @@ -9809,11 +9434,6 @@ "type": "int32", "description": "Number of participants in the group call" }, - { - "name": "has_hidden_listeners", - "type": "Bool", - "description": "True, if group call participants, which are muted, aren't returned in participant list" - }, { "name": "loaded_all_participants", "type": "Bool", @@ -10120,114 +9740,6 @@ } ] }, - { - "name": "addedReaction", - "description": "Represents a reaction applied to a message", - "class": "AddedReaction", - "properties": [ - { - "name": "reaction", - "type": "string", - "description": "Text representation of the reaction" - }, - { - "name": "sender_id", - "type": "MessageSender", - "description": "Identifier of the chat member, applied the reaction" - } - ] - }, - { - "name": "addedReactions", - "description": "Represents a list of reactions added to a message", - "class": "AddedReactions", - "properties": [ - { - "name": "total_count", - "type": "int32", - "description": "The total number of found reactions" - }, - { - "name": "reactions", - "type": "vector\u003caddedReaction\u003e", - "description": "The list of added reactions" - }, - { - "name": "next_offset", - "type": "string", - "description": "The offset for the next request. If empty, there are no more results" - } - ] - }, - { - "name": "availableReactions", - "description": "Represents a list of available reactions", - "class": "AvailableReactions", - "properties": [ - { - "name": "reactions", - "type": "vector\u003cstring\u003e", - "description": "List of reactions" - } - ] - }, - { - "name": "reaction", - "description": "Contains stickers which must be used for reaction animation rendering", - "class": "Reaction", - "properties": [ - { - "name": "reaction", - "type": "string", - "description": "Text representation of the reaction" - }, - { - "name": "title", - "type": "string", - "description": "Reaction title" - }, - { - "name": "is_active", - "type": "Bool", - "description": "True, if the reaction can be added to new messages and enabled in chats" - }, - { - "name": "static_icon", - "type": "sticker", - "description": "Static icon for the reaction" - }, - { - "name": "appear_animation", - "type": "sticker", - "description": "Appear animation for the reaction" - }, - { - "name": "select_animation", - "type": "sticker", - "description": "Select animation for the reaction" - }, - { - "name": "activate_animation", - "type": "sticker", - "description": "Activate animation for the reaction" - }, - { - "name": "effect_animation", - "type": "sticker", - "description": "Effect animation for the reaction" - }, - { - "name": "around_animation", - "type": "sticker", - "description": "Around animation for the reaction; may be null" - }, - { - "name": "center_animation", - "type": "sticker", - "description": "Center animation for the reaction; may be null" - } - ] - }, { "name": "animations", "description": "Represents a list of animations", @@ -10301,87 +9813,6 @@ } ] }, - { - "name": "attachmentMenuBotColor", - "description": "Describes a color to highlight a bot added to attachment menu", - "class": "AttachmentMenuBotColor", - "properties": [ - { - "name": "light_color", - "type": "int32", - "description": "Color in the RGB24 format for light themes" - }, - { - "name": "dark_color", - "type": "int32", - "description": "Color in the RGB24 format for dark themes" - } - ] - }, - { - "name": "attachmentMenuBot", - "description": "Represents a bot added to attachment menu", - "class": "AttachmentMenuBot", - "properties": [ - { - "name": "bot_user_id", - "type": "int53", - "description": "User identifier of the bot added to attachment menu" - }, - { - "name": "name", - "type": "string", - "description": "Name for the bot in attachment menu" - }, - { - "name": "name_color", - "type": "attachmentMenuBotColor", - "description": "Color to highlight selected name of the bot if appropriate; may be null" - }, - { - "name": "default_icon", - "type": "file", - "description": "Default attachment menu icon for the bot in SVG format; may be null" - }, - { - "name": "ios_static_icon", - "type": "file", - "description": "Attachment menu icon for the bot in SVG format for the official iOS app; may be null" - }, - { - "name": "ios_animated_icon", - "type": "file", - "description": "Attachment menu icon for the bot in TGS format for the official iOS app; may be null" - }, - { - "name": "android_icon", - "type": "file", - "description": "Attachment menu icon for the bot in TGS format for the official Android app; may be null" - }, - { - "name": "macos_icon", - "type": "file", - "description": "Attachment menu icon for the bot in TGS format for the official native macOS app; may be null" - }, - { - "name": "icon_color", - "type": "attachmentMenuBotColor", - "description": "Color to highlight selected icon of the bot if appropriate; may be null" - } - ] - }, - { - "name": "sentWebAppMessage", - "description": "Information about the message sent by answerWebAppQuery", - "class": "SentWebAppMessage", - "properties": [ - { - "name": "inline_message_id", - "type": "string", - "description": "Identifier of the sent inline message, if known" - } - ] - }, { "name": "httpUrl", "description": "Contains an HTTP URL", @@ -10782,7 +10213,7 @@ }, { "name": "inputInlineQueryResultSticker", - "description": "Represents a link to a WEBP, TGS, or WEBM sticker", + "description": "Represents a link to a WEBP or TGS sticker", "class": "InputInlineQueryResult", "properties": [ { @@ -10798,7 +10229,7 @@ { "name": "sticker_url", "type": "string", - "description": "The URL of the WEBP, TGS, or WEBM sticker (sticker file size must not exceed 5MB)" + "description": "The URL of the WEBP or TGS sticker (sticker file size must not exceed 5MB)" }, { "name": "sticker_width", @@ -11417,6 +10848,18 @@ } ] }, + { + "name": "chatEventPollStopped", + "description": "A poll in a message was stopped", + "class": "ChatEventAction", + "properties": [ + { + "name": "message", + "type": "message", + "description": "The message with the poll" + } + ] + }, { "name": "chatEventMessagePinned", "description": "A message was pinned", @@ -11441,18 +10884,6 @@ } ] }, - { - "name": "chatEventPollStopped", - "description": "A poll in a message was stopped", - "class": "ChatEventAction", - "properties": [ - { - "name": "message", - "type": "message", - "description": "The message with the poll" - } - ] - }, { "name": "chatEventMemberJoined", "description": "A new member joined the chat", @@ -11488,6 +10919,12 @@ } ] }, + { + "name": "chatEventMemberLeft", + "description": "A member left the chat", + "class": "ChatEventAction", + "properties": [] + }, { "name": "chatEventMemberInvited", "description": "A new chat member was invited", @@ -11505,12 +10942,6 @@ } ] }, - { - "name": "chatEventMemberLeft", - "description": "A member left the chat", - "class": "ChatEventAction", - "properties": [] - }, { "name": "chatEventMemberPromoted", "description": "A chat member has gained/lost administrator status, or the list of their administrator privileges has changed", @@ -11556,87 +10987,19 @@ ] }, { - "name": "chatEventAvailableReactionsChanged", - "description": "The chat available reactions were changed", + "name": "chatEventTitleChanged", + "description": "The chat title was changed", "class": "ChatEventAction", "properties": [ { - "name": "old_available_reactions", - "type": "vector\u003cstring\u003e", - "description": "Previous chat available reactions" - }, - { - "name": "new_available_reactions", - "type": "vector\u003cstring\u003e", - "description": "New chat available reactions" - } - ] - }, - { - "name": "chatEventDescriptionChanged", - "description": "The chat description was changed", - "class": "ChatEventAction", - "properties": [ - { - "name": "old_description", + "name": "old_title", "type": "string", - "description": "Previous chat description" + "description": "Previous chat title" }, { - "name": "new_description", + "name": "new_title", "type": "string", - "description": "New chat description" - } - ] - }, - { - "name": "chatEventLinkedChatChanged", - "description": "The linked chat of a supergroup was changed", - "class": "ChatEventAction", - "properties": [ - { - "name": "old_linked_chat_id", - "type": "int53", - "description": "Previous supergroup linked chat identifier" - }, - { - "name": "new_linked_chat_id", - "type": "int53", - "description": "New supergroup linked chat identifier" - } - ] - }, - { - "name": "chatEventLocationChanged", - "description": "The supergroup location was changed", - "class": "ChatEventAction", - "properties": [ - { - "name": "old_location", - "type": "chatLocation", - "description": "Previous location; may be null" - }, - { - "name": "new_location", - "type": "chatLocation", - "description": "New location; may be null" - } - ] - }, - { - "name": "chatEventMessageTtlChanged", - "description": "The message TTL was changed", - "class": "ChatEventAction", - "properties": [ - { - "name": "old_message_ttl", - "type": "int32", - "description": "Previous value of message_ttl" - }, - { - "name": "new_message_ttl", - "type": "int32", - "description": "New value of message_ttl" + "description": "New chat title" } ] }, @@ -11658,70 +11021,19 @@ ] }, { - "name": "chatEventPhotoChanged", - "description": "The chat photo was changed", + "name": "chatEventDescriptionChanged", + "description": "The chat description was changed", "class": "ChatEventAction", "properties": [ { - "name": "old_photo", - "type": "chatPhoto", - "description": "Previous chat photo value; may be null" - }, - { - "name": "new_photo", - "type": "chatPhoto", - "description": "New chat photo value; may be null" - } - ] - }, - { - "name": "chatEventSlowModeDelayChanged", - "description": "The slow_mode_delay setting of a supergroup was changed", - "class": "ChatEventAction", - "properties": [ - { - "name": "old_slow_mode_delay", - "type": "int32", - "description": "Previous value of slow_mode_delay, in seconds" - }, - { - "name": "new_slow_mode_delay", - "type": "int32", - "description": "New value of slow_mode_delay, in seconds" - } - ] - }, - { - "name": "chatEventStickerSetChanged", - "description": "The supergroup sticker set was changed", - "class": "ChatEventAction", - "properties": [ - { - "name": "old_sticker_set_id", - "type": "int64", - "description": "Previous identifier of the chat sticker set; 0 if none" - }, - { - "name": "new_sticker_set_id", - "type": "int64", - "description": "New identifier of the chat sticker set; 0 if none" - } - ] - }, - { - "name": "chatEventTitleChanged", - "description": "The chat title was changed", - "class": "ChatEventAction", - "properties": [ - { - "name": "old_title", + "name": "old_description", "type": "string", - "description": "Previous chat title" + "description": "Previous chat description" }, { - "name": "new_title", + "name": "new_description", "type": "string", - "description": "New chat title" + "description": "New chat description" } ] }, @@ -11743,14 +11055,19 @@ ] }, { - "name": "chatEventHasProtectedContentToggled", - "description": "The has_protected_content setting of a channel was toggled", + "name": "chatEventPhotoChanged", + "description": "The chat photo was changed", "class": "ChatEventAction", "properties": [ { - "name": "has_protected_content", - "type": "Bool", - "description": "New value of has_protected_content" + "name": "old_photo", + "type": "chatPhoto", + "description": "Previous chat photo value; may be null" + }, + { + "name": "new_photo", + "type": "chatPhoto", + "description": "New chat photo value; may be null" } ] }, @@ -11767,14 +11084,53 @@ ] }, { - "name": "chatEventIsAllHistoryAvailableToggled", - "description": "The is_all_history_available setting of a supergroup was toggled", + "name": "chatEventLinkedChatChanged", + "description": "The linked chat of a supergroup was changed", "class": "ChatEventAction", "properties": [ { - "name": "is_all_history_available", - "type": "Bool", - "description": "New value of is_all_history_available" + "name": "old_linked_chat_id", + "type": "int53", + "description": "Previous supergroup linked chat identifier" + }, + { + "name": "new_linked_chat_id", + "type": "int53", + "description": "New supergroup linked chat identifier" + } + ] + }, + { + "name": "chatEventSlowModeDelayChanged", + "description": "The slow_mode_delay setting of a supergroup was changed", + "class": "ChatEventAction", + "properties": [ + { + "name": "old_slow_mode_delay", + "type": "int32", + "description": "Previous value of slow_mode_delay, in seconds" + }, + { + "name": "new_slow_mode_delay", + "type": "int32", + "description": "New value of slow_mode_delay, in seconds" + } + ] + }, + { + "name": "chatEventMessageTtlChanged", + "description": "The message TTL was changed", + "class": "ChatEventAction", + "properties": [ + { + "name": "old_message_ttl", + "type": "int32", + "description": "Previous value of message_ttl" + }, + { + "name": "new_message_ttl", + "type": "int32", + "description": "New value of message_ttl" } ] }, @@ -11790,6 +11146,64 @@ } ] }, + { + "name": "chatEventHasProtectedContentToggled", + "description": "The has_protected_content setting of a channel was toggled", + "class": "ChatEventAction", + "properties": [ + { + "name": "has_protected_content", + "type": "Bool", + "description": "New value of has_protected_content" + } + ] + }, + { + "name": "chatEventStickerSetChanged", + "description": "The supergroup sticker set was changed", + "class": "ChatEventAction", + "properties": [ + { + "name": "old_sticker_set_id", + "type": "int64", + "description": "Previous identifier of the chat sticker set; 0 if none" + }, + { + "name": "new_sticker_set_id", + "type": "int64", + "description": "New identifier of the chat sticker set; 0 if none" + } + ] + }, + { + "name": "chatEventLocationChanged", + "description": "The supergroup location was changed", + "class": "ChatEventAction", + "properties": [ + { + "name": "old_location", + "type": "chatLocation", + "description": "Previous location; may be null" + }, + { + "name": "new_location", + "type": "chatLocation", + "description": "New location; may be null" + } + ] + }, + { + "name": "chatEventIsAllHistoryAvailableToggled", + "description": "The is_all_history_available setting of a supergroup was toggled", + "class": "ChatEventAction", + "properties": [ + { + "name": "is_all_history_available", + "type": "Bool", + "description": "New value of is_all_history_available" + } + ] + }, { "name": "chatEventInviteLinkEdited", "description": "A chat invite link was edited", @@ -11855,18 +11269,6 @@ } ] }, - { - "name": "chatEventVideoChatMuteNewParticipantsToggled", - "description": "The mute_new_participants setting of a video chat was toggled", - "class": "ChatEventAction", - "properties": [ - { - "name": "mute_new_participants", - "type": "Bool", - "description": "New value of the mute_new_participants setting" - } - ] - }, { "name": "chatEventVideoChatParticipantIsMutedToggled", "description": "A video chat participant was muted or unmuted", @@ -11901,6 +11303,18 @@ } ] }, + { + "name": "chatEventVideoChatMuteNewParticipantsToggled", + "description": "The mute_new_participants setting of a video chat was toggled", + "class": "ChatEventAction", + "properties": [ + { + "name": "mute_new_participants", + "type": "Bool", + "description": "New value of the mute_new_participants setting" + } + ] + }, { "name": "chatEvent", "description": "Represents a chat event", @@ -12021,7 +11435,7 @@ }, { "name": "languagePackStringValuePluralized", - "description": "A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more information", + "description": "A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info", "class": "LanguagePackStringValue", "properties": [ { @@ -12119,7 +11533,7 @@ { "name": "plural_code", "type": "string", - "description": "A language code to be used to apply plural forms. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more information" + "description": "A language code to be used to apply plural forms. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info" }, { "name": "is_official", @@ -12646,7 +12060,7 @@ }, { "name": "checkChatUsernameResultPublicChatsTooMuch", - "description": "The user has too many chats with username, one of them must be made private first", + "description": "The user has too much chats with username, one of them must be made private first", "class": "CheckChatUsernameResult", "properties": [] }, @@ -13275,55 +12689,6 @@ "class": "NotificationGroupType", "properties": [] }, - { - "name": "notificationSound", - "description": "Describes a notification sound in MP3 format", - "class": "NotificationSound", - "properties": [ - { - "name": "id", - "type": "int64", - "description": "Unique identifier of the notification sound" - }, - { - "name": "duration", - "type": "int32", - "description": "Duration of the sound, in seconds" - }, - { - "name": "date", - "type": "int32", - "description": "Point in time (Unix timestamp) when the sound was created" - }, - { - "name": "title", - "type": "string", - "description": "Title of the notification sound" - }, - { - "name": "data", - "type": "string", - "description": "Arbitrary data, defined while the sound was uploaded" - }, - { - "name": "sound", - "type": "file", - "description": "File containing the sound" - } - ] - }, - { - "name": "notificationSounds", - "description": "Contains a list of notification sounds", - "class": "NotificationSounds", - "properties": [ - { - "name": "notification_sounds", - "type": "vector\u003cnotificationSound\u003e", - "description": "A list of notification sounds" - } - ] - }, { "name": "notification", "description": "Contains information about a notification", @@ -13340,9 +12705,9 @@ "description": "Notification date" }, { - "name": "sound_id", - "type": "int64", - "description": "Identifier of the notification sound to be played; 0 if sound is disabled" + "name": "is_silent", + "type": "Bool", + "description": "True, if the notification was initially silent" }, { "name": "type", @@ -13809,7 +13174,7 @@ { "name": "location", "type": "string", - "description": "Human-readable description of a country and a region from which the user was logged in, based on the IP address" + "description": "Human-readable description of a country and a region, from which the user was logged in, based on the IP address" } ] }, @@ -13867,18 +13232,6 @@ "class": "ChatReportReason", "properties": [] }, - { - "name": "chatReportReasonIllegalDrugs", - "description": "The chat has illegal drugs related content", - "class": "ChatReportReason", - "properties": [] - }, - { - "name": "chatReportReasonPersonalDetails", - "description": "The chat contains messages with personal details", - "class": "ChatReportReason", - "properties": [] - }, { "name": "chatReportReasonCustom", "description": "A custom reason provided by the user", @@ -13891,28 +13244,6 @@ "class": "InternalLinkType", "properties": [] }, - { - "name": "internalLinkTypeAttachmentMenuBot", - "description": "The link is a link to an attachment menu bot to be opened in the specified chat. Process given chat_link to open corresponding chat. Then call searchPublicChat with the given bot username, check that the user is a bot and can be added to attachment menu. Then use getAttachmentMenuBot to receive information about the bot. If the bot isn't added to attachment menu, then user needs to confirm adding the bot to attachment menu. If user confirms adding, then use toggleBotIsAddedToAttachmentMenu to add it. If attachment menu bots can't be used in the current chat, show an error to the user. If the bot is added to attachment menu, then use openWebApp with the given URL", - "class": "InternalLinkType", - "properties": [ - { - "name": "chat_link", - "type": "InternalLinkType", - "description": "An internal link pointing to a chat; may be null if the current chat needs to be kept" - }, - { - "name": "bot_username", - "type": "string", - "description": "Username of the bot" - }, - { - "name": "url", - "type": "string", - "description": "URL to be passed to openWebApp" - } - ] - }, { "name": "internalLinkTypeAuthenticationCode", "description": "The link contains an authentication code. Call checkAuthenticationCode with the code if the current authorization state is authorizationStateWaitCode", @@ -13956,7 +13287,7 @@ }, { "name": "internalLinkTypeBotStartInGroup", - "description": "The link is a link to a Telegram bot, which is supposed to be added to a group chat. Call searchPublicChat with the given bot username, check that the user is a bot and can be added to groups, ask the current user to select a basic group or a supergroup chat to add the bot to, taking into account that bots can be added to a public supergroup only by administrators of the supergroup. If administrator rights are provided by the link, call getChatMember to receive the current bot rights in the chat and if the bot already is an administrator, check that the current user can edit its administrator rights, combine received rights with the requested administrator rights, show confirmation box to the user, and call setChatMemberStatus with the chosen chat and confirmed administrator rights. Before call to setChatMemberStatus it may be required to upgrade the chosen basic group chat to a supergroup chat. Then if start_parameter isn't empty, call sendBotStartMessage with the given start parameter and the chosen chat, otherwise just send /start message with bot's username added to the chat.", + "description": "The link is a link to a Telegram bot, which is supposed to be added to a group chat. Call searchPublicChat with the given bot username, check that the user is a bot and can be added to groups, ask the current user to select a group to add the bot to, and then call sendBotStartMessage with the given start parameter and the chosen group chat. Bots can be added to a public group only by administrators of the group", "class": "InternalLinkType", "properties": [ { @@ -13968,28 +13299,6 @@ "name": "start_parameter", "type": "string", "description": "The parameter to be passed to sendBotStartMessage" - }, - { - "name": "administrator_rights", - "type": "chatAdministratorRights", - "description": "Expected administrator rights for the bot; may be null" - } - ] - }, - { - "name": "internalLinkTypeBotAddToChannel", - "description": "The link is a link to a Telegram bot, which is supposed to be added to a channel chat as an administrator. Call searchPublicChat with the given bot username and check that the user is a bot, ask the current user to select a channel chat to add the bot to as an administrator. Then call getChatMember to receive the current bot rights in the chat and if the bot already is an administrator, check that the current user can edit its administrator rights and combine received rights with the requested administrator rights. Then show confirmation box to the user, and call setChatMemberStatus with the chosen chat and confirmed rights", - "class": "InternalLinkType", - "properties": [ - { - "name": "bot_username", - "type": "string", - "description": "Username of the bot" - }, - { - "name": "administrator_rights", - "type": "chatAdministratorRights", - "description": "Expected administrator rights for the bot" } ] }, @@ -14046,12 +13355,6 @@ } ] }, - { - "name": "internalLinkTypeLanguageSettings", - "description": "The link is a link to the language settings section of the app", - "class": "InternalLinkType", - "properties": [] - }, { "name": "internalLinkTypeMessage", "description": "The link is a link to a Telegram message. Call getMessageLinkInfo with the given URL to process the link", @@ -14130,12 +13433,6 @@ } ] }, - { - "name": "internalLinkTypePrivacyAndSecuritySettings", - "description": "The link is a link to the privacy and security settings section of the app", - "class": "InternalLinkType", - "properties": [] - }, { "name": "internalLinkTypeProxy", "description": "The link is a link to a proxy. Call addProxy with the given parameters to process the link and add the proxy", @@ -14230,21 +13527,9 @@ "class": "InternalLinkType", "properties": [] }, - { - "name": "internalLinkTypeUserPhoneNumber", - "description": "The link is a link to a user by its phone number. Call searchUserByPhoneNumber with the given phone number to process the link", - "class": "InternalLinkType", - "properties": [ - { - "name": "phone_number", - "type": "string", - "description": "Phone number of the user" - } - ] - }, { "name": "internalLinkTypeVideoChat", - "description": "The link is a link to a video chat. Call searchPublicChat with the given chat username, and then joinGroupCall with the given invite hash to process the link", + "description": "The link is a link to a video chat. Call searchPublicChat with the given chat username, and then joinGoupCall with the given invite hash to process the link", "class": "InternalLinkType", "properties": [ { @@ -14354,12 +13639,6 @@ "class": "FileType", "properties": [] }, - { - "name": "fileTypeNotificationSound", - "description": "The file is a notification sound", - "class": "FileType", - "properties": [] - }, { "name": "fileTypePhoto", "description": "The file is a photo", @@ -14821,7 +14100,7 @@ { "name": "info", "type": "chatInviteLinkInfo", - "description": "Information about the chat invite link" + "description": "Chat invite link info" } ] }, @@ -15086,14 +14365,14 @@ ] }, { - "name": "inputSticker", - "description": "A sticker to be added to a sticker set", + "name": "inputStickerStatic", + "description": "A static sticker in PNG format, which will be converted to WEBP server-side", "class": "InputSticker", "properties": [ { "name": "sticker", "type": "InputFile", - "description": "File with the sticker; must fit in a 512x512 square. For WEBP stickers and masks the file must be in PNG format, which will be converted to WEBP server-side. Otherwise, the file must be local or uploaded within a week. See https://core.telegram.org/animated_stickers#technical-requirements for technical requirements" + "description": "PNG image with the sticker; must be up to 512 KB in size and fit in a 512x512 square" }, { "name": "emojis", @@ -15101,9 +14380,26 @@ "description": "Emojis corresponding to the sticker" }, { - "name": "type", - "type": "StickerType", - "description": "Sticker type" + "name": "mask_position", + "type": "maskPosition", + "description": "For masks, position where the mask is placed; pass null if unspecified" + } + ] + }, + { + "name": "inputStickerAnimated", + "description": "An animated sticker in TGS format", + "class": "InputSticker", + "properties": [ + { + "name": "sticker", + "type": "InputFile", + "description": "File with the animated sticker. Only local or uploaded within a week files are supported. See https://core.telegram.org/animated_stickers#technical-requirements for technical requirements" + }, + { + "name": "emojis", + "type": "string", + "description": "Emojis corresponding to the sticker" } ] }, @@ -15789,33 +15085,6 @@ } ] }, - { - "name": "updateMessageUnreadReactions", - "description": "The list of unread reactions added to a message was changed", - "class": "Update", - "properties": [ - { - "name": "chat_id", - "type": "int53", - "description": "Chat identifier" - }, - { - "name": "message_id", - "type": "int53", - "description": "Message identifier" - }, - { - "name": "unread_reactions", - "type": "vector\u003cunreadReaction\u003e", - "description": "The new list of unread reactions" - }, - { - "name": "unread_reaction_count", - "type": "int32", - "description": "The new number of messages with unread reactions left in the chat" - } - ] - }, { "name": "updateMessageLiveLocationViewed", "description": "A message with a live location was viewed. When the update is received, the application is supposed to update the live location", @@ -15991,23 +15260,6 @@ } ] }, - { - "name": "updateChatAvailableReactions", - "description": "The chat available reactions were changed", - "class": "Update", - "properties": [ - { - "name": "chat_id", - "type": "int53", - "description": "Chat identifier" - }, - { - "name": "available_reactions", - "type": "vector\u003cstring\u003e", - "description": "The new list of reactions, available in the chat" - } - ] - }, { "name": "updateChatDraftMessage", "description": "A chat draft has changed. Be aware that the update may come in the currently opened chat but with old content of the draft. If the user has changed the content of the draft, this update mustn't be applied", @@ -16149,23 +15401,6 @@ } ] }, - { - "name": "updateChatUnreadReactionCount", - "description": "The chat unread_reaction_count has changed", - "class": "Update", - "properties": [ - { - "name": "chat_id", - "type": "int53", - "description": "Chat identifier" - }, - { - "name": "unread_reaction_count", - "type": "int32", - "description": "The number of messages with unread reactions left in the chat" - } - ] - }, { "name": "updateChatVideoChat", "description": "A chat video chat state has changed", @@ -16282,7 +15517,7 @@ }, { "name": "updateChatOnlineMemberCount", - "description": "The number of online group members has changed. This update with non-zero number of online group members is sent only for currently opened chats. There is no guarantee that it will be sent just after the number of online users has changed", + "description": "The number of online group members has changed. This update with non-zero count is sent only for currently opened chats. There is no guarantee that it will be sent just after the count has changed", "class": "Update", "properties": [ { @@ -16357,9 +15592,9 @@ "description": "Chat identifier, which notification settings must be applied to the added notifications" }, { - "name": "notification_sound_id", - "type": "int64", - "description": "Identifier of the notification sound to be played; 0 if sound is disabled" + "name": "is_silent", + "type": "Bool", + "description": "True, if the notifications must be shown without sound" }, { "name": "total_count", @@ -16645,89 +15880,6 @@ } ] }, - { - "name": "updateFileDownloads", - "description": "The state of the file download list has changed", - "class": "Update", - "properties": [ - { - "name": "total_size", - "type": "int53", - "description": "Total size of files in the file download list, in bytes" - }, - { - "name": "total_count", - "type": "int32", - "description": "Total number of files in the file download list" - }, - { - "name": "downloaded_size", - "type": "int53", - "description": "Total downloaded size of files in the file download list, in bytes" - } - ] - }, - { - "name": "updateFileAddedToDownloads", - "description": "A file was added to the file download list. This update is sent only after file download list is loaded for the first time", - "class": "Update", - "properties": [ - { - "name": "file_download", - "type": "fileDownload", - "description": "The added file download" - }, - { - "name": "counts", - "type": "downloadedFileCounts", - "description": "New number of being downloaded and recently downloaded files found" - } - ] - }, - { - "name": "updateFileDownload", - "description": "A file download was changed. This update is sent only after file download list is loaded for the first time", - "class": "Update", - "properties": [ - { - "name": "file_id", - "type": "int32", - "description": "File identifier" - }, - { - "name": "complete_date", - "type": "int32", - "description": "Point in time (Unix timestamp) when the file downloading was completed; 0 if the file downloading isn't completed" - }, - { - "name": "is_paused", - "type": "Bool", - "description": "True, if downloading of the file is paused" - }, - { - "name": "counts", - "type": "downloadedFileCounts", - "description": "New number of being downloaded and recently downloaded files found" - } - ] - }, - { - "name": "updateFileRemovedFromDownloads", - "description": "A file was removed from the file download list. This update is sent only after file download list is loaded for the first time", - "class": "Update", - "properties": [ - { - "name": "file_id", - "type": "int32", - "description": "File identifier" - }, - { - "name": "counts", - "type": "downloadedFileCounts", - "description": "New number of being downloaded and recently downloaded files found" - } - ] - }, { "name": "updateCall", "description": "New call was created or information about a call was updated", @@ -16961,18 +16113,6 @@ } ] }, - { - "name": "updateSavedNotificationSounds", - "description": "The list of saved notifications sounds was updated. This update may not be sent until information about a notification sound was requested for the first time", - "class": "Update", - "properties": [ - { - "name": "notification_sound_ids", - "type": "vector\u003cint64\u003e", - "description": "The new list of identifiers of saved notification sounds" - } - ] - }, { "name": "updateSelectedBackground", "description": "The selected background has changed", @@ -17065,42 +16205,6 @@ } ] }, - { - "name": "updateAttachmentMenuBots", - "description": "The list of bots added to attachment menu has changed", - "class": "Update", - "properties": [ - { - "name": "bots", - "type": "vector\u003cattachmentMenuBot\u003e", - "description": "The new list of bots added to attachment menu. The bots must be shown in attachment menu only in private chats. The bots must not be shown on scheduled messages screen" - } - ] - }, - { - "name": "updateWebAppMessageSent", - "description": "A message was sent by an opened web app, so the web app needs to be closed", - "class": "Update", - "properties": [ - { - "name": "web_app_launch_id", - "type": "int64", - "description": "Identifier of web app launch" - } - ] - }, - { - "name": "updateReactions", - "description": "The list of supported reactions has changed", - "class": "Update", - "properties": [ - { - "name": "reactions", - "type": "vector\u003creaction\u003e", - "description": "The new list of supported reactions" - } - ] - }, { "name": "updateDiceEmojis", "description": "The list of supported dice emojis has changed", @@ -17192,7 +16296,7 @@ { "name": "chat_type", "type": "ChatType", - "description": "The type of the chat from which the query originated; may be null if unknown" + "description": "The type of the chat, from which the query originated; may be null if unknown" }, { "name": "query", @@ -17261,7 +16365,7 @@ { "name": "message_id", "type": "int53", - "description": "Identifier of the message from which the query originated" + "description": "Identifier of the message, from which the query originated" }, { "name": "chat_instance", @@ -17293,7 +16397,7 @@ { "name": "inline_message_id", "type": "string", - "description": "Identifier of the inline message from which the query originated" + "description": "Identifier of the inline message, from which the query originated" }, { "name": "chat_instance", @@ -17673,16 +16777,12 @@ }, { "name": "ThumbnailFormat", - "description": "Describes format of a thumbnail" + "description": "Describes format of the thumbnail" }, { "name": "MaskPoint", "description": "Part of the face, relative to which a mask is placed" }, - { - "name": "StickerType", - "description": "Describes type of a sticker" - }, { "name": "PollType", "description": "Describes the type of a poll" @@ -17983,6 +17083,10 @@ "name": "ProxyType", "description": "Describes the type of a proxy server" }, + { + "name": "InputSticker", + "description": "Describes a sticker that needs to be added to a sticker set" + }, { "name": "StatisticalGraph", "description": "Describes a statistical graph" @@ -18284,7 +17388,7 @@ { "name": "set_recovery_email_address", "type": "Bool", - "description": "Pass true to change also the recovery email address" + "description": "Pass true if the recovery email address must be changed" }, { "name": "new_recovery_email_address", @@ -18580,7 +17684,7 @@ }, { "name": "getMessageLocally", - "description": "Returns information about a message, if it is available without sending network request. This is an offline request", + "description": "Returns information about a message, if it is available locally without sending network request. This is an offline request", "class": "Message", "properties": [ { @@ -19065,7 +18169,7 @@ { "name": "only_local", "type": "Bool", - "description": "Pass true to get only messages that are available without sending network requests" + "description": "If true, returns only messages that are available locally without sending network requests" } ], "is_synchronous": false, @@ -19118,7 +18222,7 @@ { "name": "remove_from_chat_list", "type": "Bool", - "description": "Pass true to remove the chat from all chat lists" + "description": "Pass true if the chat needs to be removed from the chat list" }, { "name": "revoke", @@ -19131,7 +18235,7 @@ }, { "name": "deleteChat", - "description": "Deletes a chat along with all messages in the corresponding chat for all chat members. For group chats this will release the username and remove all members. Use the field chat.can_be_deleted_for_all_users to find whether the method can be applied to the chat", + "description": "Deletes a chat along with all messages in the corresponding chat for all chat members; requires owner privileges. For group chats this will release the username and remove all members. Chats with more than 1000 members can't be deleted using this method", "class": "Ok", "properties": [ { @@ -19230,7 +18334,7 @@ { "name": "filter", "type": "SearchMessagesFilter", - "description": "Additional filter for messages to search; pass null to search for all messages. Filters searchMessagesFilterMention, searchMessagesFilterUnreadMention, searchMessagesFilterUnreadReaction, searchMessagesFilterFailedToSend, and searchMessagesFilterPinned are unsupported in this function" + "description": "Additional filter for messages to search; pass null to search for all messages. Filters searchMessagesFilterMention, searchMessagesFilterUnreadMention, searchMessagesFilterFailedToSend and searchMessagesFilterPinned are unsupported in this function" }, { "name": "min_date", @@ -19264,7 +18368,7 @@ { "name": "offset", "type": "string", - "description": "Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results" + "description": "Offset of the first entry to return as received from the previous request; use empty string to get first chunk of results" }, { "name": "limit", @@ -19298,26 +18402,7 @@ { "name": "only_missed", "type": "Bool", - "description": "Pass true to search only for messages with missed/declined calls" - } - ], - "is_synchronous": false, - "type": 2 - }, - { - "name": "searchOutgoingDocumentMessages", - "description": "Searches for outgoing messages with content of the type messageDocument in all chats except secret chats. Returns the results in reverse chronological order", - "class": "FoundMessages", - "properties": [ - { - "name": "query", - "type": "string", - "description": "Query to search for in document file name and message caption" - }, - { - "name": "limit", - "type": "int32", - "description": "The maximum number of messages to be returned; up to 100" + "description": "If true, returns only messages with missed/declined calls" } ], "is_synchronous": false, @@ -19396,7 +18481,7 @@ { "name": "filter", "type": "SearchMessagesFilter", - "description": "Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention, searchMessagesFilterUnreadMention, and searchMessagesFilterUnreadReaction are unsupported in this function" + "description": "Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention and searchMessagesFilterUnreadMention are unsupported in this function" }, { "name": "from_message_id", @@ -19425,7 +18510,7 @@ { "name": "filter", "type": "SearchMessagesFilter", - "description": "Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention, searchMessagesFilterUnreadMention, and searchMessagesFilterUnreadReaction are unsupported in this function" + "description": "Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention and searchMessagesFilterUnreadMention are unsupported in this function" }, { "name": "from_message_id", @@ -19454,7 +18539,7 @@ { "name": "return_local", "type": "Bool", - "description": "Pass true to get the number of messages without sending network requests, or -1 if the number of messages is unknown locally" + "description": "If true, returns count that is available locally without sending network requests, returning -1 if the number of messages is unknown" } ], "is_synchronous": false, @@ -19492,7 +18577,7 @@ { "name": "offset", "type": "string", - "description": "Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results" + "description": "Offset of the first entry to return as received from the previous request; use empty string to get first chunk of results" }, { "name": "limit", @@ -19627,30 +18712,6 @@ "is_synchronous": false, "type": 1 }, - { - "name": "translateText", - "description": "Translates a text to the given language. Returns a 404 error if the translation can't be performed", - "class": "Text", - "properties": [ - { - "name": "text", - "type": "string", - "description": "Text to translate" - }, - { - "name": "from_language_code", - "type": "string", - "description": "A two-letter ISO 639-1 language code of the language from which the message is translated. If empty, the language will be detected automatically" - }, - { - "name": "to_language_code", - "type": "string", - "description": "A two-letter ISO 639-1 language code of the language to which the message is translated" - } - ], - "is_synchronous": false, - "type": 2 - }, { "name": "getChatAvailableMessageSenders", "description": "Returns list of message sender identifiers, which can be used to send messages in a chat", @@ -19702,7 +18763,7 @@ { "name": "reply_to_message_id", "type": "int53", - "description": "Identifier of the replied message; 0 if none" + "description": "Identifier of the message to reply to or 0" }, { "name": "options", @@ -19741,7 +18802,7 @@ { "name": "reply_to_message_id", "type": "int53", - "description": "Identifier of a replied message; 0 if none" + "description": "Identifier of a message to reply to or 0" }, { "name": "options", @@ -19752,11 +18813,6 @@ "name": "input_message_contents", "type": "vector\u003cInputMessageContent\u003e", "description": "Contents of messages to be sent. At most 10 messages can be added to an album" - }, - { - "name": "only_preview", - "type": "Bool", - "description": "Pass true to get fake messages instead of actually sending them" } ], "is_synchronous": false, @@ -19804,7 +18860,7 @@ { "name": "reply_to_message_id", "type": "int53", - "description": "Identifier of a replied message; 0 if none" + "description": "Identifier of a message to reply to or 0" }, { "name": "options", @@ -19824,7 +18880,7 @@ { "name": "hide_via_bot", "type": "Bool", - "description": "Pass true to hide the bot, via which the message is sent. Can be used only for bots GetOption(\"animation_search_bot_username\"), GetOption(\"photo_search_bot_username\"), and GetOption(\"venue_search_bot_username\")" + "description": "If true, there will be no mention of a bot, via which the message is sent. Can be used only for bots GetOption(\"animation_search_bot_username\"), GetOption(\"photo_search_bot_username\") and GetOption(\"venue_search_bot_username\")" } ], "is_synchronous": false, @@ -19858,17 +18914,17 @@ { "name": "send_copy", "type": "Bool", - "description": "Pass true to copy content of the messages without reference to the original sender. Always true if the messages are forwarded to a secret chat or are local" + "description": "If true, content of the messages will be copied without reference to the original sender. Always true if the messages are forwarded to a secret chat or are local" }, { "name": "remove_caption", "type": "Bool", - "description": "Pass true to remove media captions of message copies. Ignored if send_copy is false" + "description": "If true, media caption of message copies will be removed. Ignored if send_copy is false" }, { "name": "only_preview", "type": "Bool", - "description": "Pass true to get fake messages instead of actually forwarding them" + "description": "If true, messages will not be forwarded and instead fake messages will be returned" } ], "is_synchronous": false, @@ -19925,7 +18981,7 @@ { "name": "reply_to_message_id", "type": "int53", - "description": "Identifier of the replied message; 0 if none" + "description": "Identifier of the message to reply to or 0" }, { "name": "disable_notification", @@ -20312,88 +19368,6 @@ "is_synchronous": false, "type": 2 }, - { - "name": "getMessageAvailableReactions", - "description": "Returns reactions, which can be added to a message. The list can change after updateReactions, updateChatAvailableReactions for the chat, or updateMessageInteractionInfo for the message", - "class": "AvailableReactions", - "properties": [ - { - "name": "chat_id", - "type": "int53", - "description": "Identifier of the chat to which the message belongs" - }, - { - "name": "message_id", - "type": "int53", - "description": "Identifier of the message" - } - ], - "is_synchronous": false, - "type": 2 - }, - { - "name": "setMessageReaction", - "description": "Changes chosen reaction for a message", - "class": "Ok", - "properties": [ - { - "name": "chat_id", - "type": "int53", - "description": "Identifier of the chat to which the message belongs" - }, - { - "name": "message_id", - "type": "int53", - "description": "Identifier of the message" - }, - { - "name": "reaction", - "type": "string", - "description": "Text representation of the new chosen reaction. Can be an empty string or the currently chosen non-big reaction to remove the reaction" - }, - { - "name": "is_big", - "type": "Bool", - "description": "Pass true if the reaction is added with a big animation" - } - ], - "is_synchronous": false, - "type": 2 - }, - { - "name": "getMessageAddedReactions", - "description": "Returns reactions added for a message, along with their sender", - "class": "AddedReactions", - "properties": [ - { - "name": "chat_id", - "type": "int53", - "description": "Identifier of the chat to which the message belongs" - }, - { - "name": "message_id", - "type": "int53", - "description": "Identifier of the message" - }, - { - "name": "reaction", - "type": "string", - "description": "If non-empty, only added reactions with the specified text representation will be returned" - }, - { - "name": "offset", - "type": "string", - "description": "Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results" - }, - { - "name": "limit", - "type": "int32", - "description": "The maximum number of reactions to be returned; must be positive and can't be greater than 100" - } - ], - "is_synchronous": false, - "type": 2 - }, { "name": "getTextEntities", "description": "Returns all entities (mentions, hashtags, cashtags, bot commands, bank card numbers, URLs, and email addresses) contained in the text. Can be called synchronously", @@ -20410,7 +19384,7 @@ }, { "name": "parseTextEntities", - "description": "Parses Bold, Italic, Underline, Strikethrough, Spoiler, Code, Pre, PreCode, TextUrl and MentionName entities contained in the text. Can be called synchronously", + "description": "Parses Bold, Italic, Underline, Strikethrough, Code, Pre, PreCode, TextUrl and MentionName entities contained in the text. Can be called synchronously", "class": "FormattedText", "properties": [ { @@ -20435,7 +19409,7 @@ { "name": "text", "type": "formattedText", - "description": "The text to parse. For example, \"__italic__ ~~strikethrough~~ ||spoiler|| **bold** `code` ```pre``` __[italic__ text_url](telegram.org) __italic**bold italic__bold**\"" + "description": "The text to parse. For example, \"__italic__ ~~strikethrough~~ **bold** `code` ```pre``` __[italic__ text_url](telegram.org) __italic**bold italic__bold**\"" } ], "is_synchronous": true, @@ -20554,20 +19528,6 @@ "is_synchronous": true, "type": 1 }, - { - "name": "getThemeParametersJsonString", - "description": "Converts a themeParameters object to corresponding JSON-serialized string. Can be called synchronously", - "class": "Text", - "properties": [ - { - "name": "theme", - "type": "themeParameters", - "description": "Theme parameters to convert to JSON" - } - ], - "is_synchronous": true, - "type": 1 - }, { "name": "setPollAnswer", "description": "Changes the user answer to a poll. A poll in quiz mode can be answered only once", @@ -20711,7 +19671,7 @@ { "name": "allow_write_access", "type": "Bool", - "description": "Pass true to allow the bot to send messages to the current user" + "description": "True, if the user allowed the bot to send them messages" } ], "is_synchronous": false, @@ -20764,7 +19724,7 @@ { "name": "is_personal", "type": "Bool", - "description": "Pass true if results may be cached and returned only for the user that sent the query. By default, results may be returned to any user who sends the same query" + "description": "True, if the result of the query can be cached for the specified user" }, { "name": "results", @@ -20795,121 +19755,6 @@ "is_synchronous": false, "type": 3 }, - { - "name": "getWebAppUrl", - "description": "Returns an HTTPS URL of a web app to open after keyboardButtonTypeWebApp button is pressed", - "class": "HttpUrl", - "properties": [ - { - "name": "bot_user_id", - "type": "int53", - "description": "Identifier of the target bot" - }, - { - "name": "url", - "type": "string", - "description": "The URL from the keyboardButtonTypeWebApp button" - }, - { - "name": "theme", - "type": "themeParameters", - "description": "Preferred web app theme; pass null to use the default theme" - } - ], - "is_synchronous": false, - "type": 2 - }, - { - "name": "sendWebAppData", - "description": "Sends data received from a keyboardButtonTypeWebApp web app to a bot", - "class": "Ok", - "properties": [ - { - "name": "bot_user_id", - "type": "int53", - "description": "Identifier of the target bot" - }, - { - "name": "button_text", - "type": "string", - "description": "Text of the keyboardButtonTypeWebApp button, which opened the web app" - }, - { - "name": "data", - "type": "string", - "description": "Received data" - } - ], - "is_synchronous": false, - "type": 2 - }, - { - "name": "openWebApp", - "description": "Informs TDLib that a web app is being opened from attachment menu, a botMenuButton button, an internalLinkTypeAttachmentMenuBot link, or an inlineKeyboardButtonTypeWebApp button. For each bot, a confirmation alert about data sent to the bot must be shown once", - "class": "WebAppInfo", - "properties": [ - { - "name": "chat_id", - "type": "int53", - "description": "Identifier of the chat in which the web app is opened. Web apps can be opened only in private chats for now" - }, - { - "name": "bot_user_id", - "type": "int53", - "description": "Identifier of the bot, providing the web app" - }, - { - "name": "url", - "type": "string", - "description": "The URL from an inlineKeyboardButtonTypeWebApp button, a botMenuButton button, or an internalLinkTypeAttachmentMenuBot link, or an empty string otherwise" - }, - { - "name": "theme", - "type": "themeParameters", - "description": "Preferred web app theme; pass null to use the default theme" - }, - { - "name": "reply_to_message_id", - "type": "int53", - "description": "Identifier of the replied message for the message sent by the web app; 0 if none" - } - ], - "is_synchronous": false, - "type": 2 - }, - { - "name": "closeWebApp", - "description": "Informs TDLib that a previously opened web app was closed", - "class": "Ok", - "properties": [ - { - "name": "web_app_launch_id", - "type": "int64", - "description": "Identifier of web app launch, received from openWebApp" - } - ], - "is_synchronous": false, - "type": 2 - }, - { - "name": "answerWebAppQuery", - "description": "Sets the result of interaction with a web app and sends corresponding message on behalf of the user to the chat from which the query originated; for bots only", - "class": "SentWebAppMessage", - "properties": [ - { - "name": "web_app_query_id", - "type": "string", - "description": "Identifier of the web app query" - }, - { - "name": "result", - "type": "InputInlineQueryResult", - "description": "The result of the query" - } - ], - "is_synchronous": false, - "type": 3 - }, { "name": "getCallbackQueryAnswer", "description": "Sends a callback query to a bot and returns an answer. Returns an error with code 502 if the bot fails to answer the query before the query timeout expires", @@ -20952,7 +19797,7 @@ { "name": "show_alert", "type": "Bool", - "description": "Pass true to show an alert to the user instead of a toast notification" + "description": "If true, an alert must be shown to the user instead of a toast notification" }, { "name": "url", @@ -21029,7 +19874,7 @@ { "name": "edit_message", "type": "Bool", - "description": "Pass true to edit the game message to include the current scoreboard" + "description": "True, if the message needs to be edited" }, { "name": "user_id", @@ -21063,7 +19908,7 @@ { "name": "edit_message", "type": "Bool", - "description": "Pass true to edit the game message to include the current scoreboard" + "description": "True, if the message needs to be edited" }, { "name": "user_id", @@ -21221,7 +20066,7 @@ { "name": "force_read", "type": "Bool", - "description": "Pass true to mark as read the specified messages even the chat is closed" + "description": "True, if messages in closed chats must be marked as read by the request" } ], "is_synchronous": false, @@ -21306,7 +20151,7 @@ { "name": "allow_write_access", "type": "Bool", - "description": "Pass true if the current user allowed the bot, returned in getExternalLinkInfo, to send them messages" + "description": "True, if the current user allowed the bot, returned in getExternalLinkInfo, to send them messages" } ], "is_synchronous": false, @@ -21326,20 +20171,6 @@ "is_synchronous": false, "type": 2 }, - { - "name": "readAllChatReactions", - "description": "Marks all reactions in a chat as read", - "class": "Ok", - "properties": [ - { - "name": "chat_id", - "type": "int53", - "description": "Chat identifier" - } - ], - "is_synchronous": false, - "type": 2 - }, { "name": "createPrivateChat", "description": "Returns an existing chat corresponding to a given user", @@ -21353,7 +20184,7 @@ { "name": "force", "type": "Bool", - "description": "Pass true to create the chat without a network request. In this case all information about the chat except its type, title and photo can be incorrect" + "description": "If true, the chat will be created without network request. In this case all information about the chat except its type, title and photo can be incorrect" } ], "is_synchronous": false, @@ -21372,7 +20203,7 @@ { "name": "force", "type": "Bool", - "description": "Pass true to create the chat without a network request. In this case all information about the chat except its type, title and photo can be incorrect" + "description": "If true, the chat will be created without network request. In this case all information about the chat except its type, title and photo can be incorrect" } ], "is_synchronous": false, @@ -21391,7 +20222,7 @@ { "name": "force", "type": "Bool", - "description": "Pass true to create the chat without a network request. In this case all information about the chat except its type, title and photo can be incorrect" + "description": "If true, the chat will be created without network request. In this case all information about the chat except its type, title and photo can be incorrect" } ], "is_synchronous": false, @@ -21443,7 +20274,7 @@ { "name": "is_channel", "type": "Bool", - "description": "Pass true to create a channel chat" + "description": "True, if a channel chat needs to be created" }, { "name": "description", @@ -21458,7 +20289,7 @@ { "name": "for_import", "type": "Bool", - "description": "Pass true to create a supergroup for importing messages using importMessage" + "description": "True, if the supergroup is created for importing messages using importMessage" } ], "is_synchronous": false, @@ -21662,7 +20493,7 @@ }, { "name": "setChatMessageTtl", - "description": "Changes the message TTL in a chat. Requires can_delete_messages administrator right in basic groups, supergroups and channels Message TTL can't be changed in a chat with the current user (Saved Messages) and the chat 777000 (Telegram).", + "description": "Changes the message TTL in a chat. Requires can_delete_messages administrator right in basic groups, supergroups and channels Message TTL can't be changed in a chat with the current user (Saved Messages) and the chat 777000 (Telegram)", "class": "Ok", "properties": [ { @@ -21673,7 +20504,7 @@ { "name": "ttl", "type": "int32", - "description": "New TTL value, in seconds; unless the chat is secret, it must be from 0 up to 365 * 86400 and be divisible by 86400" + "description": "New TTL value, in seconds; must be one of 0, 86400, 7 * 86400, or 31 * 86400 unless the chat is secret" } ], "is_synchronous": false, @@ -21773,7 +20604,7 @@ { "name": "has_protected_content", "type": "Bool", - "description": "New value of has_protected_content" + "description": "True, if chat content can't be saved locally, forwarded, or copied" } ], "is_synchronous": false, @@ -21817,25 +20648,6 @@ "is_synchronous": false, "type": 2 }, - { - "name": "setChatAvailableReactions", - "description": "Changes reactions, available in a chat. Available for basic groups, supergroups, and channels. Requires can_change_info administrator right", - "class": "Ok", - "properties": [ - { - "name": "chat_id", - "type": "int53", - "description": "Identifier of the chat" - }, - { - "name": "available_reactions", - "type": "vector\u003cstring\u003e", - "description": "New list of reactions, available in the chat. All reactions must be active" - } - ], - "is_synchronous": false, - "type": 1 - }, { "name": "setChatClientData", "description": "Changes application-specific data associated with a chat", @@ -21949,12 +20761,12 @@ { "name": "disable_notification", "type": "Bool", - "description": "Pass true to disable notification about the pinned message. Notifications are always disabled in channels and private chats" + "description": "True, if there must be no notification about the pinned message. Notifications are always disabled in channels and private chats" }, { "name": "only_for_self", "type": "Bool", - "description": "Pass true to pin the message only for self; private chats only" + "description": "True, if the message needs to be pinned for one side only; private chats only" } ], "is_synchronous": false, @@ -22213,63 +21025,13 @@ }, { "name": "clearAllDraftMessages", - "description": "Clears message drafts in all chats", + "description": "Clears draft messages in all chats", "class": "Ok", "properties": [ { "name": "exclude_secret_chats", "type": "Bool", - "description": "Pass true to keep local message drafts in secret chats" - } - ], - "is_synchronous": false, - "type": 2 - }, - { - "name": "getSavedNotificationSound", - "description": "Returns saved notification sound by its identifier. Returns a 404 error if there is no saved notification sound with the specified identifier", - "class": "NotificationSounds", - "properties": [ - { - "name": "notification_sound_id", - "type": "int64", - "description": "Identifier of the notification sound" - } - ], - "is_synchronous": false, - "type": 2 - }, - { - "name": "getSavedNotificationSounds", - "description": "Returns list of saved notification sounds. If a sound isn't in the list, then default sound needs to be used", - "class": "NotificationSounds", - "properties": [], - "is_synchronous": false, - "type": 2 - }, - { - "name": "addSavedNotificationSound", - "description": "Adds a new notification sound to the list of saved notification sounds. The new notification sound is added to the top of the list. If it is already in the list, it is position isn't changed", - "class": "NotificationSound", - "properties": [ - { - "name": "sound", - "type": "InputFile", - "description": "Notification sound file to add" - } - ], - "is_synchronous": false, - "type": 2 - }, - { - "name": "removeSavedNotificationSound", - "description": "Removes a notification sound from the list of saved notification sounds", - "class": "Ok", - "properties": [ - { - "name": "notification_sound_id", - "type": "int64", - "description": "Identifier of the notification sound" + "description": "If true, local draft messages in secret chats will not be cleared" } ], "is_synchronous": false, @@ -22288,7 +21050,7 @@ { "name": "compare_sound", "type": "Bool", - "description": "Pass true to include in the response chats with only non-default sound" + "description": "If true, also chats with non-default sound will be returned" } ], "is_synchronous": false, @@ -22329,7 +21091,7 @@ }, { "name": "resetAllNotificationSettings", - "description": "Resets all notification settings to their default values. By default, all chats are unmuted and message previews are shown", + "description": "Resets all notification settings to their default values. By default, all chats are unmuted, the sound is set to \"default\" and message previews are shown", "class": "Ok", "properties": [], "is_synchronous": false, @@ -22337,7 +21099,7 @@ }, { "name": "toggleChatIsPinned", - "description": "Changes the pinned state of a chat. There can be up to GetOption(\"pinned_chat_count_max\")/GetOption(\"pinned_archived_chat_count_max\") pinned non-secret chats and the same number of secret chats in the main/archive chat list", + "description": "Changes the pinned state of a chat. There can be up to GetOption(\"pinned_chat_count_max\")/GetOption(\"pinned_archived_chat_count_max\") pinned non-secret chats and the same number of secret chats in the main/arhive chat list", "class": "Ok", "properties": [ { @@ -22353,7 +21115,7 @@ { "name": "is_pinned", "type": "Bool", - "description": "Pass true to pin the chat; pass false to unpin it" + "description": "True, if the chat is pinned" } ], "is_synchronous": false, @@ -22378,39 +21140,6 @@ "is_synchronous": false, "type": 2 }, - { - "name": "getAttachmentMenuBot", - "description": "Returns information about a bot that can be added to attachment menu", - "class": "AttachmentMenuBot", - "properties": [ - { - "name": "bot_user_id", - "type": "int53", - "description": "Bot's user identifier" - } - ], - "is_synchronous": false, - "type": 2 - }, - { - "name": "toggleBotIsAddedToAttachmentMenu", - "description": "Adds or removes a bot to attachment menu. Bot can be added to attachment menu, only if userTypeBot.can_be_added_to_attachment_menu == true", - "class": "Ok", - "properties": [ - { - "name": "bot_user_id", - "type": "int53", - "description": "Bot's user identifier" - }, - { - "name": "is_added", - "type": "Bool", - "description": "Pass true to add the bot to attachment menu; pass false to remove the bot from attachment menu" - } - ], - "is_synchronous": false, - "type": 2 - }, { "name": "downloadFile", "description": "Downloads a file from the cloud. Download progress and completion of the download will be notified through updateFile updates", @@ -22424,7 +21153,7 @@ { "name": "priority", "type": "int32", - "description": "Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile/addFileToDownloads was called will be downloaded first" + "description": "Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile was called will be downloaded first" }, { "name": "offset", @@ -22439,7 +21168,7 @@ { "name": "synchronous", "type": "Bool", - "description": "Pass true to return response only after the file download has succeeded, has failed, has been canceled, or a new downloadFile request with different offset/limit parameters was sent; pass false to return file state immediately, just after the download has been started" + "description": "If false, this request returns file state just after the download has been started. If true, this request returns file state only after the download has succeeded, has failed, has been canceled or a new downloadFile request with different offset/limit parameters was sent" } ], "is_synchronous": false, @@ -22645,145 +21374,6 @@ "is_synchronous": false, "type": 1 }, - { - "name": "addFileToDownloads", - "description": "Adds a file from a message to the list of file downloads. Download progress and completion of the download will be notified through updateFile updates. If message database is used, the list of file downloads is persistent across application restarts. The downloading is independent from download using downloadFile, i.e. it continues if downloadFile is canceled or is used to download a part of the file", - "class": "File", - "properties": [ - { - "name": "file_id", - "type": "int32", - "description": "Identifier of the file to download" - }, - { - "name": "chat_id", - "type": "int53", - "description": "Chat identifier of the message with the file" - }, - { - "name": "message_id", - "type": "int53", - "description": "Message identifier" - }, - { - "name": "priority", - "type": "int32", - "description": "Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile/addFileToDownloads was called will be downloaded first" - } - ], - "is_synchronous": false, - "type": 1 - }, - { - "name": "toggleDownloadIsPaused", - "description": "Changes pause state of a file in the file download list", - "class": "Ok", - "properties": [ - { - "name": "file_id", - "type": "int32", - "description": "Identifier of the downloaded file" - }, - { - "name": "is_paused", - "type": "Bool", - "description": "Pass true if the download is paused" - } - ], - "is_synchronous": false, - "type": 1 - }, - { - "name": "toggleAllDownloadsArePaused", - "description": "Changes pause state of all files in the file download list", - "class": "Ok", - "properties": [ - { - "name": "are_paused", - "type": "Bool", - "description": "Pass true to pause all downloads; pass false to unpause them" - } - ], - "is_synchronous": false, - "type": 1 - }, - { - "name": "removeFileFromDownloads", - "description": "Removes a file from the file download list", - "class": "Ok", - "properties": [ - { - "name": "file_id", - "type": "int32", - "description": "Identifier of the downloaded file" - }, - { - "name": "delete_from_cache", - "type": "Bool", - "description": "Pass true to delete the file from the TDLib file cache" - } - ], - "is_synchronous": false, - "type": 1 - }, - { - "name": "removeAllFilesFromDownloads", - "description": "Removes all files from the file download list", - "class": "Ok", - "properties": [ - { - "name": "only_active", - "type": "Bool", - "description": "Pass true to remove only active downloads, including paused" - }, - { - "name": "only_completed", - "type": "Bool", - "description": "Pass true to remove only completed downloads" - }, - { - "name": "delete_from_cache", - "type": "Bool", - "description": "Pass true to delete the file from the TDLib file cache" - } - ], - "is_synchronous": false, - "type": 1 - }, - { - "name": "searchFileDownloads", - "description": "Searches for files in the file download list or recently downloaded files from the list", - "class": "FoundFileDownloads", - "properties": [ - { - "name": "query", - "type": "string", - "description": "Query to search for; may be empty to return all downloaded files" - }, - { - "name": "only_active", - "type": "Bool", - "description": "Pass true to search only for active downloads, including paused" - }, - { - "name": "only_completed", - "type": "Bool", - "description": "Pass true to search only for completed downloads" - }, - { - "name": "offset", - "type": "string", - "description": "Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results" - }, - { - "name": "limit", - "type": "int32", - "description": "The maximum number of files to be returned" - } - ], - "is_synchronous": false, - "type": 1 - }, { "name": "getMessageFileType", "description": "Returns information about a file with messages exported from another app", @@ -22878,7 +21468,7 @@ { "name": "creates_join_request", "type": "Bool", - "description": "Pass true if users joining the chat via the link need to be approved by chat administrators. In this case, member_limit must be 0" + "description": "True, if the link only creates join request. If true, member_limit must not be specified" } ], "is_synchronous": false, @@ -22917,7 +21507,7 @@ { "name": "creates_join_request", "type": "Bool", - "description": "Pass true if users joining the chat via the link need to be approved by chat administrators. In this case, member_limit must be 0" + "description": "True, if the link only creates join request. If true, member_limit must not be specified" } ], "is_synchronous": false, @@ -23161,7 +21751,7 @@ { "name": "approve", "type": "Bool", - "description": "Pass true to approve the request; pass false to decline it" + "description": "True, if the request is approved. Otherwise the request is declived" } ], "is_synchronous": false, @@ -23185,7 +21775,7 @@ { "name": "approve", "type": "Bool", - "description": "Pass true to approve all requests; pass false to decline them" + "description": "True, if the requests are approved. Otherwise the requests are declived" } ], "is_synchronous": false, @@ -23209,7 +21799,7 @@ { "name": "is_video", "type": "Bool", - "description": "Pass true to create a video call" + "description": "True, if a video call needs to be created" } ], "is_synchronous": false, @@ -23266,7 +21856,7 @@ { "name": "is_disconnected", "type": "Bool", - "description": "Pass true if the user was disconnected" + "description": "True, if the user was disconnected" }, { "name": "duration", @@ -23276,7 +21866,7 @@ { "name": "is_video", "type": "Bool", - "description": "Pass true if the call was a video call" + "description": "True, if the call was a video call" }, { "name": "connection_id", @@ -23376,7 +21966,7 @@ { "name": "chat_id", "type": "int53", - "description": "Identifier of a chat in which the video chat will be created" + "description": "Chat identifier, in which the video chat will be created" }, { "name": "title", @@ -23387,39 +21977,6 @@ "name": "start_date", "type": "int32", "description": "Point in time (Unix timestamp) when the group call is supposed to be started by an administrator; 0 to start the video chat immediately. The date must be at least 10 seconds and at most 8 days in the future" - }, - { - "name": "is_rtmp_stream", - "type": "Bool", - "description": "Pass true to create an RTMP stream instead of an ordinary video chat; requires creator privileges" - } - ], - "is_synchronous": false, - "type": 2 - }, - { - "name": "getVideoChatRtmpUrl", - "description": "Returns RTMP URL for streaming to the chat; requires creator privileges", - "class": "RtmpUrl", - "properties": [ - { - "name": "chat_id", - "type": "int53", - "description": "Chat identifier" - } - ], - "is_synchronous": false, - "type": 2 - }, - { - "name": "replaceVideoChatRtmpUrl", - "description": "Replaces the current RTMP URL for streaming to the chat; requires creator privileges", - "class": "RtmpUrl", - "properties": [ - { - "name": "chat_id", - "type": "int53", - "description": "Chat identifier" } ], "is_synchronous": false, @@ -23500,12 +22057,12 @@ { "name": "is_muted", "type": "Bool", - "description": "Pass true to join the call with muted microphone" + "description": "True, if the user's microphone is muted" }, { "name": "is_my_video_enabled", "type": "Bool", - "description": "Pass true if the user's video is enabled" + "description": "True, if the user's video is enabled" }, { "name": "invite_hash", @@ -23762,7 +22319,7 @@ { "name": "is_speaking", "type": "Bool", - "description": "Pass true if the user is speaking" + "description": "True, if the user is speaking" } ], "is_synchronous": false, @@ -23786,7 +22343,7 @@ { "name": "is_muted", "type": "Bool", - "description": "Pass true to mute the user; pass false to unmute the them" + "description": "Pass true if the user must be muted and false otherwise" } ], "is_synchronous": false, @@ -23887,20 +22444,6 @@ "is_synchronous": false, "type": 2 }, - { - "name": "getGroupCallStreams", - "description": "Returns information about available group call streams", - "class": "GroupCallStreams", - "properties": [ - { - "name": "group_call_id", - "type": "int32", - "description": "Group call identifier" - } - ], - "is_synchronous": false, - "type": 2 - }, { "name": "getGroupCallStreamSegment", "description": "Returns a file with a segment of a group call stream in a modified OGG format for audio or MPEG-4 format for video", @@ -23967,17 +22510,17 @@ { "name": "delete_message", "type": "Bool", - "description": "Pass true to delete the message" + "description": "Pass true if the message must be deleted" }, { "name": "delete_all_messages", "type": "Bool", - "description": "Pass true to delete all messages from the same sender" + "description": "Pass true if all messages from the same sender must be deleted" }, { "name": "report_spam", "type": "Bool", - "description": "Pass true to report the sender to the Telegram moderators" + "description": "Pass true if the sender must be reported to the Telegram moderators" } ], "is_synchronous": false, @@ -24010,12 +22553,12 @@ { "name": "contact", "type": "contact", - "description": "The contact to add or edit; phone number may be empty and needs to be specified only if known, vCard is ignored" + "description": "The contact to add or edit; phone number can be empty and needs to be specified only if known, vCard is ignored" }, { "name": "share_phone_number", "type": "Bool", - "description": "Pass true to share the current user's phone number with the new contact. A corresponding rule to userPrivacySettingShowPhoneNumber will be added if needed. Use the field userFullInfo.need_phone_number_privacy_exception to check whether the current user needs to be asked to share their phone number" + "description": "True, if the new contact needs to be allowed to see current user's phone number. A corresponding rule to userPrivacySettingShowPhoneNumber will be added if needed. Use the field userFullInfo.need_phone_number_privacy_exception to check whether the current user needs to be asked to share their phone number" } ], "is_synchronous": false, @@ -24106,20 +22649,6 @@ "is_synchronous": false, "type": 2 }, - { - "name": "searchUserByPhoneNumber", - "description": "Searches a user by their phone number", - "class": "User", - "properties": [ - { - "name": "phone_number", - "type": "string", - "description": "Phone number to search for" - } - ], - "is_synchronous": false, - "type": 2 - }, { "name": "sharePhoneNumber", "description": "Shares the phone number of the current user with a mutual contact. Supposed to be called when the user clicks on chatActionBarSharePhoneNumber", @@ -24519,7 +23048,7 @@ { "name": "exact_match", "type": "Bool", - "description": "Pass true if only emojis, which exactly match the text, needs to be returned" + "description": "True, if only emojis, which exactly match text needs to be returned" }, { "name": "input_language_codes", @@ -24662,7 +23191,7 @@ { "name": "force_full", "type": "Bool", - "description": "Pass true to get full instant view for the web page" + "description": "If true, the full instant view for the web page will be returned" } ], "is_synchronous": false, @@ -24811,7 +23340,7 @@ { "name": "language_code", "type": "string", - "description": "A two-letter ISO 639-1 language code. If empty, the commands will be applied to all users from the given scope, for which language there are no dedicated commands" + "description": "A two-letter ISO 639-1 country code. If empty, the commands will be applied to all users from the given scope, for which language there are no dedicated commands" }, { "name": "commands", @@ -24835,7 +23364,7 @@ { "name": "language_code", "type": "string", - "description": "A two-letter ISO 639-1 language code or an empty string" + "description": "A two-letter ISO 639-1 country code or an empty string" } ], "is_synchronous": false, @@ -24854,68 +23383,7 @@ { "name": "language_code", "type": "string", - "description": "A two-letter ISO 639-1 language code or an empty string" - } - ], - "is_synchronous": false, - "type": 3 - }, - { - "name": "setMenuButton", - "description": "Sets menu button for the given user or for all users; for bots only", - "class": "Ok", - "properties": [ - { - "name": "user_id", - "type": "int53", - "description": "Identifier of the user or 0 to set menu button for all users" - }, - { - "name": "menu_button", - "type": "botMenuButton", - "description": "New menu button" - } - ], - "is_synchronous": false, - "type": 3 - }, - { - "name": "getMenuButton", - "description": "Returns menu button set by the bot for the given user; for bots only", - "class": "BotMenuButton", - "properties": [ - { - "name": "user_id", - "type": "int53", - "description": "Identifier of the user or 0 to get the default menu button" - } - ], - "is_synchronous": false, - "type": 3 - }, - { - "name": "setDefaultGroupAdministratorRights", - "description": "Sets default administrator rights for adding the bot to basic group and supergroup chats; for bots only", - "class": "Ok", - "properties": [ - { - "name": "default_group_administrator_rights", - "type": "chatAdministratorRights", - "description": "Default administrator rights for adding the bot to basic group and supergroup chats; may be null" - } - ], - "is_synchronous": false, - "type": 3 - }, - { - "name": "setDefaultChannelAdministratorRights", - "description": "Sets default administrator rights for adding the bot to channel chats; for bots only", - "class": "Ok", - "properties": [ - { - "name": "default_channel_administrator_rights", - "type": "chatAdministratorRights", - "description": "Default administrator rights for adding the bot to channels; may be null" + "description": "A two-letter ISO 639-1 country code or an empty string" } ], "is_synchronous": false, @@ -24964,7 +23432,7 @@ { "name": "can_accept_calls", "type": "Bool", - "description": "Pass true to allow accepting incoming calls by the session; pass false otherwise" + "description": "True, if incoming calls can be accepted by the session" } ], "is_synchronous": false, @@ -24983,7 +23451,7 @@ { "name": "can_accept_secret_chats", "type": "Bool", - "description": "Pass true to allow accepring secret chats by the session; pass false otherwise" + "description": "True, if incoming secret chats can be accepted by the session" } ], "is_synchronous": false, @@ -25241,7 +23709,7 @@ }, { "name": "theme", - "type": "themeParameters", + "type": "paymentFormTheme", "description": "Preferred payment form theme; pass null to use the default theme" } ], @@ -25271,7 +23739,7 @@ { "name": "allow_save", "type": "Bool", - "description": "Pass true to save the order information" + "description": "True, if the order information can be saved" } ], "is_synchronous": false, @@ -25342,7 +23810,7 @@ }, { "name": "getSavedOrderInfo", - "description": "Returns saved order information. Returns a 404 error if there is no saved order information", + "description": "Returns saved order info, if any", "class": "OrderInfo", "properties": [], "is_synchronous": false, @@ -25350,7 +23818,7 @@ }, { "name": "deleteSavedOrderInfo", - "description": "Deletes saved order information", + "description": "Deletes saved order info", "class": "Ok", "properties": [], "is_synchronous": false, @@ -25380,7 +23848,7 @@ { "name": "for_dark_theme", "type": "Bool", - "description": "Pass true to order returned backgrounds for a dark theme" + "description": "True, if the backgrounds must be ordered for dark theme" } ], "is_synchronous": false, @@ -25437,7 +23905,7 @@ { "name": "for_dark_theme", "type": "Bool", - "description": "Pass true if the background is changed for a dark theme" + "description": "True, if the background is chosen for dark theme" } ], "is_synchronous": false, @@ -25473,7 +23941,7 @@ { "name": "only_local", "type": "Bool", - "description": "Pass true to get only locally available information without sending network requests" + "description": "If true, returns only locally available information without sending network requests" } ], "is_synchronous": false, @@ -25796,7 +24264,7 @@ { "name": "message_ids", "type": "vector\u003cint53\u003e", - "description": "Identifiers of reported messages; may be empty to report the whole chat" + "description": "Identifiers of reported messages, if any" }, { "name": "reason", @@ -25956,7 +24424,7 @@ { "name": "count", "type": "int32", - "description": "Limit on the total number of files after deletion. Pass -1 to use the default limit" + "description": "Limit on the total count of files after deletion. Pass -1 to use the default limit" }, { "name": "immunity_delay", @@ -26014,7 +24482,7 @@ { "name": "only_current", "type": "Bool", - "description": "Pass true to get statistics only for the current library launch" + "description": "If true, returns only data for the current library launch" } ], "is_synchronous": false, @@ -26403,7 +24871,7 @@ }, { "name": "sticker", - "type": "inputSticker", + "type": "InputSticker", "description": "Sticker file to upload" } ], @@ -26458,10 +24926,15 @@ "type": "string", "description": "Sticker set name. Can contain only English letters, digits and underscores. Must end with *\"_by_\u003cbot username\u003e\"* (*\u003cbot_username\u003e* is case insensitive) for bots; 1-64 characters" }, + { + "name": "is_masks", + "type": "Bool", + "description": "True, if stickers are masks. Animated stickers can't be masks" + }, { "name": "stickers", - "type": "vector\u003cinputSticker\u003e", - "description": "List of stickers to be added to the set; must be non-empty. All stickers must have the same format. For TGS stickers, uploadStickerFile must be used before the sticker is shown" + "type": "vector\u003cInputSticker\u003e", + "description": "List of stickers to be added to the set; must be non-empty. All stickers must be of the same type. For animated stickers, uploadStickerFile must be used before the sticker is shown" }, { "name": "source", @@ -26489,7 +24962,7 @@ }, { "name": "sticker", - "type": "inputSticker", + "type": "InputSticker", "description": "Sticker to add to the set" } ], @@ -26514,7 +24987,7 @@ { "name": "thumbnail", "type": "InputFile", - "description": "Thumbnail to set in PNG, TGS, or WEBM format; pass null to remove the sticker set thumbnail. Thumbnail format must match the format of stickers in the set" + "description": "Thumbnail to set in PNG or TGS format; pass null to remove the sticker set thumbnail. Animated thumbnail must be set for animated sticker sets and only for them" } ], "is_synchronous": false, @@ -26586,7 +25059,7 @@ { "name": "chat_id", "type": "int53", - "description": "Identifier of a chat in which the thumbnail will be shown. Use 0 if unknown" + "description": "Identifier of a chat, in which the thumbnail will be shown. Use 0 if unknown" } ], "is_synchronous": false, @@ -26696,7 +25169,7 @@ { "name": "language_code", "type": "string", - "description": "A two-letter ISO 639-1 language code for country information localization" + "description": "A two-letter ISO 639-1 country code for country information localization" }, { "name": "phone_number_prefix", @@ -26779,7 +25252,7 @@ { "name": "enable", "type": "Bool", - "description": "Pass true to immediately enable the proxy" + "description": "True, if the proxy needs to be enabled" }, { "name": "type", @@ -26813,7 +25286,7 @@ { "name": "enable", "type": "Bool", - "description": "Pass true to immediately enable the proxy" + "description": "True, if the proxy needs to be enabled" }, { "name": "type", @@ -27137,7 +25610,7 @@ { "name": "dc_id", "type": "int32", - "description": "Identifier of a datacenter with which to test connection" + "description": "Identifier of a datacenter, with which to test connection" }, { "name": "timeout", diff --git a/data/td_api.tl b/data/td_api.tl index 0621bb6..d973c2b 100644 --- a/data/td_api.tl +++ b/data/td_api.tl @@ -73,11 +73,11 @@ textEntity offset:int32 length:int32 type:TextEntityType = TextEntity; textEntities entities:vector = TextEntities; //@description A text with some entities @text The text @entities Entities contained in the text. Entities can be nested, but must not mutually intersect with each other. -//-Pre, Code and PreCode entities can't contain other entities. Bold, Italic, Underline, Strikethrough, and Spoiler entities can contain and to be contained in all other entities. All other entities can't contain each other +//-Pre, Code and PreCode entities can't contain other entities. Bold, Italic, Underline and Strikethrough entities can contain and to be contained in all other entities. All other entities can't contain each other formattedText text:string entities:vector = FormattedText; -//@description Contains Telegram terms of service @text Text of the terms of service @min_user_age The minimum age of a user to be able to accept the terms; 0 if age isn't restricted @show_popup True, if a blocking popup with terms of service must be shown to the user +//@description Contains Telegram terms of service @text Text of the terms of service @min_user_age The minimum age of a user to be able to accept the terms; 0 if any @show_popup True, if a blocking popup with terms of service must be shown to the user termsOfService text:formattedText min_user_age:int32 show_popup:Bool = TermsOfService; @@ -147,7 +147,7 @@ localFile path:string can_be_downloaded:Bool can_be_deleted:Bool is_downloading_ //@description Represents a remote file //@id Remote file identifier; may be empty. Can be used by the current user across application restarts or even from other devices. Uniquely identifies a file, but a file can have a lot of different valid identifiers. //-If the ID starts with "http://" or "https://", it represents the HTTP URL of the file. TDLib is currently unable to download files if only their URL is known. -//-If downloadFile/addFileToDownloads is called on such a file or if it is sent to a secret chat, TDLib starts a file generation process by sending updateFileGenerationStart to the application with the HTTP URL in the original_path and "#url#" as the conversion string. Application must generate the file by downloading it to the specified location +//-If downloadFile is called on such a file or if it is sent to a secret chat, TDLib starts a file generation process by sending updateFileGenerationStart to the application with the HTTP URL in the original_path and "#url#" as the conversion string. Application must generate the file by downloading it to the specified location //@unique_id Unique file identifier; may be empty if unknown. The unique file identifier which is the same for the same file even for different users and is persistent over time //@is_uploading_active True, if the file is currently being uploaded (or a remote copy is being generated by some other means) //@is_uploading_completed True, if a remote copy is fully available @@ -191,29 +191,26 @@ photoSize type:string photo:file width:int32 height:int32 progressive_sizes:vect minithumbnail width:int32 height:int32 data:bytes = Minithumbnail; -//@class ThumbnailFormat @description Describes format of a thumbnail +//@class ThumbnailFormat @description Describes format of the thumbnail //@description The thumbnail is in JPEG format thumbnailFormatJpeg = ThumbnailFormat; -//@description The thumbnail is in static GIF format. It will be used only for some bot inline results -thumbnailFormatGif = ThumbnailFormat; - -//@description The thumbnail is in MPEG4 format. It will be used only for some animations and videos -thumbnailFormatMpeg4 = ThumbnailFormat; - //@description The thumbnail is in PNG format. It will be used only for background patterns thumbnailFormatPng = ThumbnailFormat; -//@description The thumbnail is in TGS format. It will be used only for TGS sticker sets -thumbnailFormatTgs = ThumbnailFormat; - -//@description The thumbnail is in WEBM format. It will be used only for WEBM sticker sets -thumbnailFormatWebm = ThumbnailFormat; - //@description The thumbnail is in WEBP format. It will be used only for some stickers thumbnailFormatWebp = ThumbnailFormat; +//@description The thumbnail is in static GIF format. It will be used only for some bot inline results +thumbnailFormatGif = ThumbnailFormat; + +//@description The thumbnail is in TGS format. It will be used only for animated sticker sets +thumbnailFormatTgs = ThumbnailFormat; + +//@description The thumbnail is in MPEG4 format. It will be used only for some animations and videos +thumbnailFormatMpeg4 = ThumbnailFormat; + //@description Represents a thumbnail @format Thumbnail format @width Thumbnail width @height Thumbnail height @file The thumbnail thumbnail format:ThumbnailFormat width:int32 height:int32 file:file = Thumbnail; @@ -240,21 +237,6 @@ maskPointChin = MaskPoint; maskPosition point:MaskPoint x_shift:double y_shift:double scale:double = MaskPosition; -//@class StickerType @description Describes type of a sticker - -//@description The sticker is an image in WEBP format -stickerTypeStatic = StickerType; - -//@description The sticker is an animation in TGS format -stickerTypeAnimated = StickerType; - -//@description The sticker is a video in WEBM format -stickerTypeVideo = StickerType; - -//@description The sticker is a mask in WEBP format to be placed on photos or videos @mask_position Position where the mask is placed; may be null -stickerTypeMask mask_position:maskPosition = StickerType; - - //@description Represents a closed vector path. The path begins at the end point of the last command @commands List of vector path commands closedVectorPath commands:vector = ClosedVectorPath; @@ -295,9 +277,9 @@ document file_name:string mime_type:string minithumbnail:minithumbnail thumbnail photo has_stickers:Bool minithumbnail:minithumbnail sizes:vector = Photo; //@description Describes a sticker @set_id The identifier of the sticker set to which the sticker belongs; 0 if none @width Sticker width; as defined by the sender @height Sticker height; as defined by the sender -//@emoji Emoji corresponding to the sticker @type Sticker type @outline Sticker's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner -//@thumbnail Sticker thumbnail in WEBP or JPEG format; may be null @sticker File containing the sticker -sticker set_id:int64 width:int32 height:int32 emoji:string type:StickerType outline:vector thumbnail:thumbnail sticker:file = Sticker; +//@emoji Emoji corresponding to the sticker @is_animated True, if the sticker is an animated sticker in TGS format @is_mask True, if the sticker is a mask @mask_position Position where the mask is placed; may be null +//@outline Sticker's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner @thumbnail Sticker thumbnail in WEBP or JPEG format; may be null @sticker File containing the sticker +sticker set_id:int64 width:int32 height:int32 emoji:string is_animated:Bool is_mask:Bool mask_position:maskPosition outline:vector thumbnail:thumbnail sticker:file = Sticker; //@description Describes a video file @duration Duration of the video, in seconds; as defined by the sender @width Video width; as defined by the sender @height Video height; as defined by the sender //@file_name Original name of the file; as defined by the sender @mime_type MIME type of the file; as defined by the sender @@ -318,7 +300,7 @@ voiceNote duration:int32 waveform:bytes mime_type:string voice:file = VoiceNote; //@description Describes an animated representation of an emoji //@sticker Animated sticker for the emoji //@fitzpatrick_type Emoji modifier fitzpatrick type; 0-6; 0 if none -//@sound File containing the sound to be played when the animated emoji is clicked; may be null. The sound is encoded with the Opus codec, and stored inside an OGG container +//@sound File containing the sound to be played when the animated emoji is clicked if any; may be null. The sound is encoded with the Opus codec, and stored inside an OGG container animatedEmoji sticker:sticker fitzpatrick_type:int32 sound:file = AnimatedEmoji; //@description Describes a user contact @phone_number Phone number of the user @first_name First name of the user; 1-255 characters in length @last_name Last name of the user @vcard Additional data about the user in a form of vCard; 0-2048 bytes in length @user_id Identifier of the user, if known; otherwise 0 @@ -366,14 +348,10 @@ userTypeRegular = UserType; //@description A deleted user or deleted bot. No information on the user besides the user identifier is available. It is not possible to perform any active actions on this type of user userTypeDeleted = UserType; -//@description A bot (see https://core.telegram.org/bots) -//@can_join_groups True, if the bot can be invited to basic group and supergroup chats +//@description A bot (see https://core.telegram.org/bots) @can_join_groups True, if the bot can be invited to basic group and supergroup chats //@can_read_all_group_messages True, if the bot can read all messages in basic group or supergroup chats and not just those addressed to the bot. In private and channel chats a bot can always read all messages -//@is_inline True, if the bot supports inline queries -//@inline_query_placeholder Placeholder for inline queries (displayed on the application input field) -//@need_location True, if the location of the user is expected to be sent with every inline query to this bot -//@can_be_added_to_attachment_menu True, if the bot can be added to attachment menu -userTypeBot can_join_groups:Bool can_read_all_group_messages:Bool is_inline:Bool inline_query_placeholder:string need_location:Bool can_be_added_to_attachment_menu:Bool = UserType; +//@is_inline True, if the bot supports inline queries @inline_query_placeholder Placeholder for inline queries (displayed on the application input field) @need_location True, if the location of the user is expected to be sent with every inline query to this bot +userTypeBot can_join_groups:Bool can_read_all_group_messages:Bool is_inline:Bool inline_query_placeholder:string need_location:Bool = UserType; //@description No information on the user besides the user identifier is available, yet this user has not been deleted. This object is extremely rare and must be handled like a deleted user. It is not possible to perform any actions on users of this type userTypeUnknown = UserType; @@ -385,9 +363,6 @@ botCommand command:string description:string = BotCommand; //@description Contains a list of bot commands @bot_user_id Bot's user identifier @commands List of bot commands botCommands bot_user_id:int53 commands:vector = BotCommands; -//@description Describes a button to be shown instead of bot commands menu button @text Text of the button @url URL to be passed to openWebApp -botMenuButton text:string url:string = BotMenuButton; - //@description Represents a location to which a chat is connected @location The location @address Location address; 1-64 characters, as defined by the chat owner chatLocation location:location address:string = ChatLocation; @@ -426,32 +401,6 @@ inputChatPhotoStatic photo:InputFile = InputChatPhoto; inputChatPhotoAnimation animation:InputFile main_frame_timestamp:double = InputChatPhoto; -//@description Describes actions that a user is allowed to take in a chat -//@can_send_messages True, if the user can send text messages, contacts, locations, and venues -//@can_send_media_messages True, if the user can send audio files, documents, photos, videos, video notes, and voice notes. Implies can_send_messages permissions -//@can_send_polls True, if the user can send polls. Implies can_send_messages permissions -//@can_send_other_messages True, if the user can send animations, games, stickers, and dice and use inline bots. Implies can_send_messages permissions -//@can_add_web_page_previews True, if the user may add a web page preview to their messages. Implies can_send_messages permissions -//@can_change_info True, if the user can change the chat title, photo, and other settings -//@can_invite_users True, if the user can invite new users to the chat -//@can_pin_messages True, if the user can pin messages -chatPermissions can_send_messages:Bool can_send_media_messages:Bool can_send_polls:Bool can_send_other_messages:Bool can_add_web_page_previews:Bool can_change_info:Bool can_invite_users:Bool can_pin_messages:Bool = ChatPermissions; - -//@description Describes rights of the administrator -//@can_manage_chat True, if the administrator can get chat event log, get chat statistics, get message statistics in channels, get channel members, see anonymous administrators in supergroups and ignore slow mode. Implied by any other privilege; applicable to supergroups and channels only -//@can_change_info True, if the administrator can change the chat title, photo, and other settings -//@can_post_messages True, if the administrator can create channel posts; applicable to channels only -//@can_edit_messages True, if the administrator can edit messages of other users and pin messages; applicable to channels only -//@can_delete_messages True, if the administrator can delete messages of other users -//@can_invite_users True, if the administrator can invite new users to the chat -//@can_restrict_members True, if the administrator can restrict, ban, or unban chat members; always true for channels -//@can_pin_messages True, if the administrator can pin messages; applicable to basic groups and supergroups only -//@can_promote_members True, if the administrator can add new administrators with a subset of their own privileges or demote administrators that were directly or indirectly promoted by them -//@can_manage_video_chats True, if the administrator can manage video chats -//@is_anonymous True, if the administrator isn't shown in the chat member list and sends messages anonymously; applicable to supergroups only -chatAdministratorRights can_manage_chat:Bool can_change_info:Bool can_post_messages:Bool can_edit_messages:Bool can_delete_messages:Bool can_invite_users:Bool can_restrict_members:Bool can_pin_messages:Bool can_promote_members:Bool can_manage_video_chats:Bool is_anonymous:Bool = ChatAdministratorRights; - - //@description Represents a user //@id User identifier //@first_name First name of the user @@ -467,20 +416,11 @@ chatAdministratorRights can_manage_chat:Bool can_change_info:Bool can_post_messa //@restriction_reason If non-empty, it contains a human-readable description of the reason why access to this user must be restricted //@is_scam True, if many users reported this user as a scam //@is_fake True, if many users reported this user as a fake account -//@have_access If false, the user is inaccessible, and the only information known about the user is inside this class. Identifier of the user can't be passed to any method except GetUser +//@have_access If false, the user is inaccessible, and the only information known about the user is inside this class. It can't be passed to any method except GetUser //@type Type of the user //@language_code IETF language tag of the user's language; only available to bots user id:int53 first_name:string last_name:string username:string phone_number:string status:UserStatus profile_photo:profilePhoto is_contact:Bool is_mutual_contact:Bool is_verified:Bool is_support:Bool restriction_reason:string is_scam:Bool is_fake:Bool have_access:Bool type:UserType language_code:string = User; -//@description Contains information about a bot -//@share_text The text that is shown on the bot's profile page and is sent together with the link when users share the bot -//@param_description The text shown in the chat with the bot if the chat is empty -//@menu_button Information about a button to show instead of the bot commands menu button; may be null if ordinary bot commands menu must be shown -//@commands List of the bot commands -//@default_group_administrator_rights Default administrator rights for adding the bot to basic group and supergroup chats; may be null -//@default_channel_administrator_rights Default administrator rights for adding the bot to channels; may be null -botInfo share_text:string description:string menu_button:botMenuButton commands:vector default_group_administrator_rights:chatAdministratorRights default_channel_administrator_rights:chatAdministratorRights = BotInfo; - //@description Contains full information about a user //@photo User profile photo; may be null //@is_blocked True, if the user is blocked by the current user @@ -490,11 +430,13 @@ botInfo share_text:string description:string menu_button:botMenuButton commands: //@has_private_forwards True, if the user can't be linked in forwarded messages due to their privacy settings //@need_phone_number_privacy_exception True, if the current user needs to explicitly allow to share their phone number with the user when the method addContact is used //@bio A short user bio +//@share_text For bots, the text that is shown on the bot's profile page and is sent together with the link when users share the bot +//@param_description For bots, the text shown in the chat with the bot if the chat is empty //@group_in_common_count Number of group chats where both the other user and the current user are a member; 0 for the current user -//@bot_info For bots, information about the bot; may be null -userFullInfo photo:chatPhoto is_blocked:Bool can_be_called:Bool supports_video_calls:Bool has_private_calls:Bool has_private_forwards:Bool need_phone_number_privacy_exception:Bool bio:string group_in_common_count:int32 bot_info:botInfo = UserFullInfo; +//@commands For bots, list of the bot commands +userFullInfo photo:chatPhoto is_blocked:Bool can_be_called:Bool supports_video_calls:Bool has_private_calls:Bool has_private_forwards:Bool need_phone_number_privacy_exception:Bool bio:string share_text:string description:string group_in_common_count:int32 commands:vector = UserFullInfo; -//@description Represents a list of users @total_count Approximate total number of users found @user_ids A list of user identifiers +//@description Represents a list of users @total_count Approximate total count of users found @user_ids A list of user identifiers users total_count:int32 user_ids:vector = Users; @@ -505,6 +447,18 @@ chatAdministrator user_id:int53 custom_title:string is_owner:Bool = ChatAdminist chatAdministrators administrators:vector = ChatAdministrators; +//@description Describes actions that a user is allowed to take in a chat +//@can_send_messages True, if the user can send text messages, contacts, locations, and venues +//@can_send_media_messages True, if the user can send audio files, documents, photos, videos, video notes, and voice notes. Implies can_send_messages permissions +//@can_send_polls True, if the user can send polls. Implies can_send_messages permissions +//@can_send_other_messages True, if the user can send animations, games, stickers, and dice and use inline bots. Implies can_send_messages permissions +//@can_add_web_page_previews True, if the user may add a web page preview to their messages. Implies can_send_messages permissions +//@can_change_info True, if the user can change the chat title, photo, and other settings +//@can_invite_users True, if the user can invite new users to the chat +//@can_pin_messages True, if the user can pin messages +chatPermissions can_send_messages:Bool can_send_media_messages:Bool can_send_polls:Bool can_send_other_messages:Bool can_add_web_page_previews:Bool can_change_info:Bool can_invite_users:Bool can_pin_messages:Bool = ChatPermissions; + + //@class ChatMemberStatus @description Provides information about the status of a member in a chat //@description The user is the owner of the chat and has all the administrator privileges @@ -516,8 +470,18 @@ chatMemberStatusCreator custom_title:string is_anonymous:Bool is_member:Bool = C //@description The user is a member of the chat and has some additional privileges. In basic groups, administrators can edit and delete messages sent by others, add new members, ban unprivileged members, and manage video chats. In supergroups and channels, there are more detailed options for administrator privileges //@custom_title A custom title of the administrator; 0-16 characters without emojis; applicable to supergroups only //@can_be_edited True, if the current user can edit the administrator privileges for the called user -//@rights Rights of the administrator -chatMemberStatusAdministrator custom_title:string can_be_edited:Bool rights:chatAdministratorRights = ChatMemberStatus; +//@can_manage_chat True, if the administrator can get chat event log, get chat statistics, get message statistics in channels, get channel members, see anonymous administrators in supergroups and ignore slow mode. Implied by any other privilege; applicable to supergroups and channels only +//@can_change_info True, if the administrator can change the chat title, photo, and other settings +//@can_post_messages True, if the administrator can create channel posts; applicable to channels only +//@can_edit_messages True, if the administrator can edit messages of other users and pin messages; applicable to channels only +//@can_delete_messages True, if the administrator can delete messages of other users +//@can_invite_users True, if the administrator can invite new users to the chat +//@can_restrict_members True, if the administrator can restrict, ban, or unban chat members; always true for channels +//@can_pin_messages True, if the administrator can pin messages; applicable to basic groups and supergroups only +//@can_promote_members True, if the administrator can add new administrators with a subset of their own privileges or demote administrators that were directly or indirectly promoted by them +//@can_manage_video_chats True, if the administrator can manage video chats +//@is_anonymous True, if the administrator isn't shown in the chat member list and sends messages anonymously; applicable to supergroups only +chatMemberStatusAdministrator custom_title:string can_be_edited:Bool can_manage_chat:Bool can_change_info:Bool can_post_messages:Bool can_edit_messages:Bool can_delete_messages:Bool can_invite_users:Bool can_restrict_members:Bool can_pin_messages:Bool can_promote_members:Bool can_manage_video_chats:Bool is_anonymous:Bool = ChatMemberStatus; //@description The user is a member of the chat, without any additional privileges or restrictions chatMemberStatusMember = ChatMemberStatus; @@ -543,7 +507,7 @@ chatMemberStatusBanned banned_until_date:int32 = ChatMemberStatus; //@status Status of the member in the chat chatMember member_id:MessageSender inviter_user_id:int53 joined_chat_date:int32 status:ChatMemberStatus = ChatMember; -//@description Contains a list of chat members @total_count Approximate total number of chat members found @members A list of chat members +//@description Contains a list of chat members @total_count Approximate total count of chat members found @members A list of chat members chatMembers total_count:int32 members:vector = ChatMembers; @@ -613,7 +577,7 @@ supergroupMembersFilterBots = SupergroupMembersFilter; //@is_revoked True, if the link was revoked chatInviteLink invite_link:string name:string creator_user_id:int53 date:int32 edit_date:int32 expiration_date:int32 member_limit:int32 member_count:int32 pending_join_request_count:int32 creates_join_request:Bool is_primary:Bool is_revoked:Bool = ChatInviteLink; -//@description Contains a list of chat invite links @total_count Approximate total number of chat invite links found @invite_links List of invite links +//@description Contains a list of chat invite links @total_count Approximate total count of chat invite links found @invite_links List of invite links chatInviteLinks total_count:int32 invite_links:vector = ChatInviteLinks; //@description Describes a chat administrator with a number of active and revoked chat invite links @@ -628,7 +592,7 @@ chatInviteLinkCounts invite_link_counts:vector = ChatInvite //@description Describes a chat member joined a chat via an invite link @user_id User identifier @joined_chat_date Point in time (Unix timestamp) when the user joined the chat @approver_user_id User identifier of the chat administrator, approved user join request chatInviteLinkMember user_id:int53 joined_chat_date:int32 approver_user_id:int53 = ChatInviteLinkMember; -//@description Contains a list of chat members joined a chat via an invite link @total_count Approximate total number of chat members found @members List of chat members, joined a chat via an invite link +//@description Contains a list of chat members joined a chat via an invite link @total_count Approximate total count of chat members found @members List of chat members, joined a chat via an invite link chatInviteLinkMembers total_count:int32 members:vector = ChatInviteLinkMembers; //@description Contains information about a chat invite link @@ -647,7 +611,7 @@ chatInviteLinkInfo chat_id:int53 accessible_for:int32 type:ChatType title:string //@description Describes a user that sent a join request and waits for administrator approval @user_id User identifier @date Point in time (Unix timestamp) when the user sent the join request @bio A short bio of the user chatJoinRequest user_id:int53 date:int32 bio:string = ChatJoinRequest; -//@description Contains a list of requests to join a chat @total_count Approximate total number of requests found @requests List of the requests +//@description Contains a list of requests to join a chat @total_count Approximate total count of requests found @requests List of the requests chatJoinRequests total_count:int32 requests:vector = ChatJoinRequests; //@description Contains information about pending join requests for a chat @total_count Total number of pending join requests @user_ids Identifiers of at most 3 users sent the newest pending join requests @@ -708,7 +672,7 @@ supergroup id:int53 username:string date:int32 status:ChatMemberStatus member_co //@is_all_history_available True, if new chat members will have access to old messages. In public or discussion groups and both public and private channels, old messages are always available, so this option affects only private supergroups without a linked chat. The value of this field is only available for chat administrators //@sticker_set_id Identifier of the supergroup sticker set; 0 if none //@location Location to which the supergroup is connected; may be null -//@invite_link Primary invite link for the chat; may be null. For chat administrators with can_invite_users right only +//@invite_link Primary invite link for this chat; may be null. For chat administrators with can_invite_users right only //@bot_commands List of commands of bots in the group //@upgraded_from_basic_group_id Identifier of the basic group from which supergroup was upgraded; 0 if none //@upgraded_from_max_message_id Identifier of the last message in the basic group from which supergroup was upgraded; 0 if none @@ -747,7 +711,7 @@ messageSenderUser user_id:int53 = MessageSender; messageSenderChat chat_id:int53 = MessageSender; -//@description Represents a list of message senders @total_count Approximate total number of messages senders found @senders List of message senders +//@description Represents a list of message senders @total_count Approximate total count of messages senders found @senders List of message senders messageSenders total_count:int32 senders:vector = MessageSenders; @@ -790,25 +754,11 @@ messageForwardInfo origin:MessageForwardOrigin date:int32 public_service_announc //@last_message_id Identifier of the last reply to the message messageReplyInfo reply_count:int32 recent_replier_ids:vector last_read_inbox_message_id:int53 last_read_outbox_message_id:int53 last_message_id:int53 = MessageReplyInfo; -//@description Contains information about a reaction to a message -//@reaction Text representation of the reaction -//@total_count Number of times the reaction was added -//@is_chosen True, if the reaction is chosen by the current user -//@recent_sender_ids Identifiers of at most 3 recent message senders, added the reaction; available in private, basic group and supergroup chats -messageReaction reaction:string total_count:int32 is_chosen:Bool recent_sender_ids:vector = MessageReaction; - //@description Contains information about interactions with a message //@view_count Number of times the message was viewed //@forward_count Number of times the message was forwarded //@reply_info Information about direct or indirect replies to the message; may be null. Currently, available only in channels with a discussion supergroup and discussion supergroups for messages, which are not replies itself -//@reactions The list of reactions added to the message -messageInteractionInfo view_count:int32 forward_count:int32 reply_info:messageReplyInfo reactions:vector = MessageInteractionInfo; - -//@description Contains information about an unread reaction to a message -//@reaction Text representation of the reaction -//@sender_id Identifier of the sender, added the reaction -//@is_big True, if the reaction was added with a big animation -unreadReaction reaction:string sender_id:MessageSender is_big:Bool = UnreadReaction; +messageInteractionInfo view_count:int32 forward_count:int32 reply_info:messageReplyInfo = MessageInteractionInfo; //@class MessageSendingState @description Contains information about the sending state of the message @@ -836,11 +786,10 @@ messageSendingStateFailed error_code:int32 error_message:string can_retry:Bool n //@can_be_saved True, if content of the message can be saved locally or copied //@can_be_deleted_only_for_self True, if the message can be deleted only for the current user while other users will continue to see it //@can_be_deleted_for_all_users True, if the message can be deleted for all users -//@can_get_added_reactions True, if the list of added reactions is available through getMessageAddedReactions -//@can_get_statistics True, if the message statistics are available through getMessageStatistics -//@can_get_message_thread True, if information about the message thread is available through getMessageThread +//@can_get_statistics True, if the message statistics are available +//@can_get_message_thread True, if the message thread info is available //@can_get_viewers True, if chat members already viewed the message can be received through getMessageViewers -//@can_get_media_timestamp_links True, if media timestamp links can be generated for media timestamp entities in the message text, caption or web page description through getMessageLink +//@can_get_media_timestamp_links True, if media timestamp links can be generated for media timestamp entities in the message text, caption or web page description //@has_timestamped_media True, if media timestamp entities refers to a media in this message as opposed to a media in the replied message //@is_channel_post True, if the message is a channel post. All messages to channels are channel posts, all other messages are not channel posts //@contains_unread_mention True, if the message contains an unread mention for the current user @@ -848,7 +797,6 @@ messageSendingStateFailed error_code:int32 error_message:string can_retry:Bool n //@edit_date Point in time (Unix timestamp) when the message was last edited //@forward_info Information about the initial message sender; may be null //@interaction_info Information about interactions with the message; may be null -//@unread_reactions Information about unread reactions added to the message //@reply_in_chat_id If non-zero, the identifier of the chat to which the replied message belongs; Currently, only messages in the Replies chat can have different reply_in_chat_id and chat_id //@reply_to_message_id If non-zero, the identifier of the message this message is replying to; can be the identifier of a deleted message //@message_thread_id If non-zero, the identifier of the message thread the message belongs to; unique within the chat to which the message belongs @@ -860,18 +808,18 @@ messageSendingStateFailed error_code:int32 error_message:string can_retry:Bool n //@restriction_reason If non-empty, contains a human-readable description of the reason why access to this message must be restricted //@content Content of the message //@reply_markup Reply markup for the message; may be null -message id:int53 sender_id:MessageSender chat_id:int53 sending_state:MessageSendingState scheduling_state:MessageSchedulingState is_outgoing:Bool is_pinned:Bool can_be_edited:Bool can_be_forwarded:Bool can_be_saved:Bool can_be_deleted_only_for_self:Bool can_be_deleted_for_all_users:Bool can_get_added_reactions:Bool can_get_statistics:Bool can_get_message_thread:Bool can_get_viewers:Bool can_get_media_timestamp_links:Bool has_timestamped_media:Bool is_channel_post:Bool contains_unread_mention:Bool date:int32 edit_date:int32 forward_info:messageForwardInfo interaction_info:messageInteractionInfo unread_reactions:vector reply_in_chat_id:int53 reply_to_message_id:int53 message_thread_id:int53 ttl:int32 ttl_expires_in:double via_bot_user_id:int53 author_signature:string media_album_id:int64 restriction_reason:string content:MessageContent reply_markup:ReplyMarkup = Message; +message id:int53 sender_id:MessageSender chat_id:int53 sending_state:MessageSendingState scheduling_state:MessageSchedulingState is_outgoing:Bool is_pinned:Bool can_be_edited:Bool can_be_forwarded:Bool can_be_saved:Bool can_be_deleted_only_for_self:Bool can_be_deleted_for_all_users:Bool can_get_statistics:Bool can_get_message_thread:Bool can_get_viewers:Bool can_get_media_timestamp_links:Bool has_timestamped_media:Bool is_channel_post:Bool contains_unread_mention:Bool date:int32 edit_date:int32 forward_info:messageForwardInfo interaction_info:messageInteractionInfo reply_in_chat_id:int53 reply_to_message_id:int53 message_thread_id:int53 ttl:int32 ttl_expires_in:double via_bot_user_id:int53 author_signature:string media_album_id:int64 restriction_reason:string content:MessageContent reply_markup:ReplyMarkup = Message; -//@description Contains a list of messages @total_count Approximate total number of messages found @messages List of messages; messages may be null +//@description Contains a list of messages @total_count Approximate total count of messages found @messages List of messages; messages may be null messages total_count:int32 messages:vector = Messages; -//@description Contains a list of messages found by a search @total_count Approximate total number of messages found; -1 if unknown @messages List of messages @next_offset The offset for the next request. If empty, there are no more results +//@description Contains a list of messages found by a search @total_count Approximate total count of messages found; -1 if unknown @messages List of messages @next_offset The offset for the next request. If empty, there are no more results foundMessages total_count:int32 messages:vector next_offset:string = FoundMessages; //@description Contains information about a message in a specific position @position 0-based message position in the full list of suitable messages @message_id Message identifier @date Point in time (Unix timestamp) when the message was sent messagePosition position:int32 message_id:int53 date:int32 = MessagePosition; -//@description Contains a list of message positions @total_count Total number of messages found @positions List of message positions +//@description Contains a list of message positions @total_count Total count of messages found @positions List of message positions messagePositions total_count:int32 positions:vector = MessagePositions; //@description Contains information about found messages sent on a specific day @total_count Total number of found messages sent on the day @message First message sent on the day @@ -883,32 +831,10 @@ messageCalendar total_count:int32 days:vector = MessageCalen //@description Describes a sponsored message //@message_id Message identifier; unique for the chat to which the sponsored message belongs among both ordinary and sponsored messages -//@sponsor_chat_id Sponsor chat identifier; 0 if the sponsor chat is accessible through an invite link -//@sponsor_chat_info Information about the sponsor chat; may be null unless sponsor_chat_id == 0 -//@link An internal link to be opened when the sponsored message is clicked; may be null if the sponsor chat needs to be opened instead +//@sponsor_chat_id Chat identifier +//@link An internal link to be opened when the sponsored message is clicked; may be null. If null, the sponsor chat needs to be opened instead //@content Content of the message. Currently, can be only of the type messageText -sponsoredMessage message_id:int53 sponsor_chat_id:int53 sponsor_chat_info:chatInviteLinkInfo link:InternalLinkType content:MessageContent = SponsoredMessage; - - -//@description Describes a file added to file download list -//@file_id File identifier -//@message The message with the file -//@add_date Point in time (Unix timestamp) when the file was added to the download list -//@complete_date Point in time (Unix timestamp) when the file downloading was completed; 0 if the file downloading isn't completed -//@is_paused True, if downloading of the file is paused -fileDownload file_id:int32 message:message add_date:int32 complete_date:int32 is_paused:Bool = FileDownload; - -//@description Contains number of being downloaded and recently downloaded files found -//@active_count Number of active file downloads found, including paused -//@paused_count Number of paused file downloads found -//@completed_count Number of completed file downloads found -downloadedFileCounts active_count:int32 paused_count:int32 completed_count:int32 = DownloadedFileCounts; - -//@description Contains a list of downloaded files, found by a search -//@total_counts Total number of suitable files, ignoring offset -//@files The list of files -//@next_offset The offset for the next request. If empty, there are no more results -foundFileDownloads total_counts:downloadedFileCounts files:vector next_offset:string = FoundFileDownloads; +sponsoredMessage message_id:int53 sponsor_chat_id:int53 link:InternalLinkType content:MessageContent = SponsoredMessage; //@class NotificationSettingsScope @description Describes the types of chats to which notification settings are relevant @@ -916,32 +842,32 @@ foundFileDownloads total_counts:downloadedFileCounts files:vector //@description Notification settings applied to all private and secret chats when the corresponding chat setting has a default value notificationSettingsScopePrivateChats = NotificationSettingsScope; -//@description Notification settings applied to all basic group and supergroup chats when the corresponding chat setting has a default value +//@description Notification settings applied to all basic groups and supergroups when the corresponding chat setting has a default value notificationSettingsScopeGroupChats = NotificationSettingsScope; -//@description Notification settings applied to all channel chats when the corresponding chat setting has a default value +//@description Notification settings applied to all channels when the corresponding chat setting has a default value notificationSettingsScopeChannelChats = NotificationSettingsScope; //@description Contains information about notification settings for a chat //@use_default_mute_for If true, mute_for is ignored and the value for the relevant type of chat is used instead @mute_for Time left before notifications will be unmuted, in seconds -//@use_default_sound If true, the value for the relevant type of chat is used instead of sound_id @sound_id Identifier of the notification sound to be played; 0 if sound is disabled +//@use_default_sound If true, sound is ignored and the value for the relevant type of chat is used instead @sound The name of an audio file to be used for notification sounds; only applies to iOS applications //@use_default_show_preview If true, show_preview is ignored and the value for the relevant type of chat is used instead @show_preview True, if message content must be displayed in notifications //@use_default_disable_pinned_message_notifications If true, disable_pinned_message_notifications is ignored and the value for the relevant type of chat is used instead @disable_pinned_message_notifications If true, notifications for incoming pinned messages will be created as for an ordinary unread message //@use_default_disable_mention_notifications If true, disable_mention_notifications is ignored and the value for the relevant type of chat is used instead @disable_mention_notifications If true, notifications for messages with mentions will be created as for an ordinary unread message -chatNotificationSettings use_default_mute_for:Bool mute_for:int32 use_default_sound:Bool sound_id:int64 use_default_show_preview:Bool show_preview:Bool use_default_disable_pinned_message_notifications:Bool disable_pinned_message_notifications:Bool use_default_disable_mention_notifications:Bool disable_mention_notifications:Bool = ChatNotificationSettings; +chatNotificationSettings use_default_mute_for:Bool mute_for:int32 use_default_sound:Bool sound:string use_default_show_preview:Bool show_preview:Bool use_default_disable_pinned_message_notifications:Bool disable_pinned_message_notifications:Bool use_default_disable_mention_notifications:Bool disable_mention_notifications:Bool = ChatNotificationSettings; //@description Contains information about notification settings for several chats //@mute_for Time left before notifications will be unmuted, in seconds -//@sound_id Identifier of the notification sound to be played; 0 if sound is disabled +//@sound The name of an audio file to be used for notification sounds; only applies to iOS applications //@show_preview True, if message content must be displayed in notifications //@disable_pinned_message_notifications True, if notifications for incoming pinned messages will be created as for an ordinary unread message //@disable_mention_notifications True, if notifications for messages with mentions will be created as for an ordinary unread message -scopeNotificationSettings mute_for:int32 sound_id:int64 show_preview:Bool disable_pinned_message_notifications:Bool disable_mention_notifications:Bool = ScopeNotificationSettings; +scopeNotificationSettings mute_for:int32 sound:string show_preview:Bool disable_pinned_message_notifications:Bool disable_mention_notifications:Bool = ScopeNotificationSettings; //@description Contains information about a message draft -//@reply_to_message_id Identifier of the replied message; 0 if none +//@reply_to_message_id Identifier of the message to reply to; 0 if none //@date Point in time (Unix timestamp) when the draft was created //@input_message_text Content of the message draft; must be of the type inputMessageText draftMessage reply_to_message_id:int53 date:int32 input_message_text:InputMessageContent = DraftMessage; @@ -1052,9 +978,7 @@ videoChat group_call_id:int32 has_participants:Bool default_participant_id:Messa //@last_read_inbox_message_id Identifier of the last read incoming message //@last_read_outbox_message_id Identifier of the last read outgoing message //@unread_mention_count Number of unread messages with a mention/reply in the chat -//@unread_reaction_count Number of messages with unread reactions in the chat -//@notification_settings Notification settings for the chat -//@available_reactions List of reactions, available in the chat +//@notification_settings Notification settings for this chat //@message_ttl Current message Time To Live setting (self-destruct timer) for the chat; 0 if not defined. TTL is counted from the time message or its content is viewed in secret chats and from the send date in other chats //@theme_name If non-empty, name of a theme, set for the chat //@action_bar Information about actions which must be possible to do through the chat action bar; may be null @@ -1063,9 +987,9 @@ videoChat group_call_id:int32 has_participants:Bool default_participant_id:Messa //@reply_markup_message_id Identifier of the message from which reply markup needs to be used; 0 if there is no default custom reply markup in the chat //@draft_message A draft of a message in the chat; may be null //@client_data Application-specific data associated with the chat. (For example, the chat scroll position or local chat notification settings can be stored here.) Persistent if the message database is used -chat id:int53 type:ChatType title:string photo:chatPhotoInfo permissions:chatPermissions last_message:message positions:vector message_sender_id:MessageSender has_protected_content:Bool is_marked_as_unread:Bool is_blocked:Bool has_scheduled_messages:Bool can_be_deleted_only_for_self:Bool can_be_deleted_for_all_users:Bool can_be_reported:Bool default_disable_notification:Bool unread_count:int32 last_read_inbox_message_id:int53 last_read_outbox_message_id:int53 unread_mention_count:int32 unread_reaction_count:int32 notification_settings:chatNotificationSettings available_reactions:vector message_ttl:int32 theme_name:string action_bar:ChatActionBar video_chat:videoChat pending_join_requests:chatJoinRequestsInfo reply_markup_message_id:int53 draft_message:draftMessage client_data:string = Chat; +chat id:int53 type:ChatType title:string photo:chatPhotoInfo permissions:chatPermissions last_message:message positions:vector message_sender_id:MessageSender has_protected_content:Bool is_marked_as_unread:Bool is_blocked:Bool has_scheduled_messages:Bool can_be_deleted_only_for_self:Bool can_be_deleted_for_all_users:Bool can_be_reported:Bool default_disable_notification:Bool unread_count:int32 last_read_inbox_message_id:int53 last_read_outbox_message_id:int53 unread_mention_count:int32 notification_settings:chatNotificationSettings message_ttl:int32 theme_name:string action_bar:ChatActionBar video_chat:videoChat pending_join_requests:chatJoinRequestsInfo reply_markup_message_id:int53 draft_message:draftMessage client_data:string = Chat; -//@description Represents a list of chats @total_count Approximate total number of chats found @chat_ids List of chat identifiers +//@description Represents a list of chats @total_count Approximate total count of chats found @chat_ids List of chat identifiers chats total_count:int32 chat_ids:vector = Chats; @@ -1129,9 +1053,6 @@ keyboardButtonTypeRequestLocation = KeyboardButtonType; //@description A button that allows the user to create and send a poll when pressed; available only in private chats @force_regular If true, only regular polls must be allowed to create @force_quiz If true, only polls in quiz mode must be allowed to create keyboardButtonTypeRequestPoll force_regular:Bool force_quiz:Bool = KeyboardButtonType; -//@description A button that opens a web app by calling getWebAppUrl @url An HTTP URL to pass to getWebAppUrl -keyboardButtonTypeWebApp url:string = KeyboardButtonType; - //@description Represents a single button in a bot keyboard @text Text of the button @type Type of the button keyboardButton text:string type:KeyboardButtonType = KeyboardButton; @@ -1142,12 +1063,9 @@ keyboardButton text:string type:KeyboardButtonType = KeyboardButton; //@description A button that opens a specified URL @url HTTP or tg:// URL to open inlineKeyboardButtonTypeUrl url:string = InlineKeyboardButtonType; -//@description A button that opens a specified URL and automatically authorize the current user by calling getLoginUrlInfo @url An HTTP URL to pass to getLoginUrlInfo @id Unique button identifier @forward_text If non-empty, new text of the button in forwarded messages +//@description A button that opens a specified URL and automatically authorize the current user if allowed to do so @url An HTTP URL to open @id Unique button identifier @forward_text If non-empty, new text of the button in forwarded messages inlineKeyboardButtonTypeLoginUrl url:string id:int53 forward_text:string = InlineKeyboardButtonType; -//@description A button that opens a web app by calling openWebApp @url An HTTP URL to pass to openWebApp -inlineKeyboardButtonTypeWebApp url:string = InlineKeyboardButtonType; - //@description A button that sends a callback query to a bot @data Data to be sent to the bot via a callback query inlineKeyboardButtonTypeCallback data:bytes = InlineKeyboardButtonType; @@ -1205,10 +1123,6 @@ loginUrlInfoOpen url:string skip_confirm:Bool = LoginUrlInfo; loginUrlInfoRequestConfirmation url:string domain:string bot_user_id:int53 request_write_access:Bool = LoginUrlInfo; -//@description Contains information about a web app @launch_id Unique identifier for the web app launch @url A web app URL to open in a web view -webAppInfo launch_id:int64 url:string = WebAppInfo; - - //@description Contains information about a message thread //@chat_id Identifier of the chat to which the message thread belongs //@message_thread_id Message thread identifier, unique within the chat @@ -1387,7 +1301,7 @@ pageBlockCollage page_blocks:vector caption:pageBlockCaption = PageBl //@description A slideshow @page_blocks Slideshow item contents @caption Block caption pageBlockSlideshow page_blocks:vector caption:pageBlockCaption = PageBlock; -//@description A link to a chat @title Chat title @photo Chat photo; may be null @username Chat username by which all other information about the chat can be resolved +//@description A link to a chat @title Chat title @photo Chat photo; may be null @username Chat username, by which all other information about the chat can be resolved pageBlockChatLink title:string photo:chatPhotoInfo username:string = PageBlock; //@description A table @caption Table caption @cells Table cells @is_bordered True, if the table is bordered @is_striped True, if the table is striped @@ -1467,12 +1381,6 @@ bankCardInfo title:string actions:vector = BankCardInfo; address country_code:string state:string city:string street_line1:string street_line2:string postal_code:string = Address; -//@description Contains parameters of the app theme @background_color A color of the background in the RGB24 format @text_color A color of text in the RGB24 format -//@hint_color A color of hints in the RGB24 format @link_color A color of links in the RGB24 format @button_color A color of the buttons in the RGB24 format -//@button_text_color A color of text on the buttons in the RGB24 format -themeParameters background_color:int32 text_color:int32 hint_color:int32 link_color:int32 button_color:int32 button_text_color:int32 = ThemeParameters; - - //@description Portion of the price of a product (e.g., "delivery cost", "tax amount") @label Label for this portion of the product price @amount Currency amount in the smallest units of the currency labeledPricePart label:string amount:int53 = LabeledPricePart; @@ -1516,6 +1424,11 @@ inputCredentialsGooglePay data:string = InputCredentials; //@description Stripe payment provider @publishable_key Stripe API publishable key @need_country True, if the user country must be provided @need_postal_code True, if the user ZIP/postal code must be provided @need_cardholder_name True, if the cardholder name must be provided paymentsProviderStripe publishable_key:string need_country:Bool need_postal_code:Bool need_cardholder_name:Bool = PaymentsProviderStripe; +//@description Theme colors for a payment form @background_color A color of the payment form background in the RGB24 format @text_color A color of text in the RGB24 format +//@hint_color A color of hints in the RGB24 format @link_color A color of links in the RGB24 format @button_color A color of the buttons in the RGB24 format +//@button_text_color A color of text on the buttons in the RGB24 format +paymentFormTheme background_color:int32 text_color:int32 hint_color:int32 link_color:int32 button_color:int32 button_text_color:int32 = PaymentFormTheme; + //@description Contains information about an invoice payment form //@id The payment form identifier //@invoice Full information of the invoice @@ -1949,13 +1862,7 @@ messageContactRegistered = MessageContent; //@description The current user has connected a website by logging in using Telegram Login Widget on it @domain_name Domain name of the connected website messageWebsiteConnected domain_name:string = MessageContent; -//@description Data from a web app has been sent to a bot @button_text Text of the keyboardButtonTypeWebApp button, which opened the web app -messageWebAppDataSent button_text:string = MessageContent; - -//@description Data from a web app has been received; for bots only @button_text Text of the keyboardButtonTypeWebApp button, which opened the web app @data Received data -messageWebAppDataReceived button_text:string data:string = MessageContent; - -//@description Telegram Passport data has been sent to a bot @types List of Telegram Passport element types sent +//@description Telegram Passport data has been sent @types List of Telegram Passport element types sent messagePassportDataSent types:vector = MessageContent; //@description Telegram Passport data has been received; for bots only @elements List of received Telegram Passport elements @credentials Encrypted data credentials @@ -2006,9 +1913,6 @@ textEntityTypeUnderline = TextEntityType; //@description A strikethrough text textEntityTypeStrikethrough = TextEntityType; -//@description A spoiler text. Not supported in secret chats -textEntityTypeSpoiler = TextEntityType; - //@description Text that must be formatted as if inside a code HTML tag textEntityTypeCode = TextEntityType; @@ -2047,9 +1951,8 @@ messageSchedulingStateSendWhenOnline = MessageSchedulingState; //@description Options to be used when a message is sent //@disable_notification Pass true to disable notification for the message //@from_background Pass true if the message is sent from the background -//@protect_content Pass true if the content of the message must be protected from forwarding and saving; for bots only //@scheduling_state Message scheduling state; pass null to send message immediately. Messages sent to a secret chat, live location messages and self-destructing messages can't be scheduled -messageSendOptions disable_notification:Bool from_background:Bool protect_content:Bool scheduling_state:MessageSchedulingState = MessageSendOptions; +messageSendOptions disable_notification:Bool from_background:Bool scheduling_state:MessageSchedulingState = MessageSendOptions; //@description Options to be used when a message content is copied without reference to the original sender. Service messages and messageInvoice can't be copied //@send_copy True, if content of the message needs to be copied without reference to the original sender. Always true if the message is forwarded to a secret chat or is local @@ -2060,7 +1963,7 @@ messageCopyOptions send_copy:Bool replace_caption:Bool new_caption:formattedText //@class InputMessageContent @description The content of a message to send -//@description A text message @text Formatted text to be sent; 1-GetOption("message_text_length_max") characters. Only Bold, Italic, Underline, Strikethrough, Spoiler, Code, Pre, PreCode, TextUrl and MentionName entities are allowed to be specified manually +//@description A text message @text Formatted text to be sent; 1-GetOption("message_text_length_max") characters. Only Bold, Italic, Underline, Strikethrough, Code, Pre, PreCode, TextUrl and MentionName entities are allowed to be specified manually //@disable_web_page_preview True, if rich web page previews for URLs in the message text must be disabled @clear_draft True, if a chat message draft must be deleted inputMessageText text:formattedText disable_web_page_preview:Bool clear_draft:Bool = InputMessageContent; @@ -2173,9 +2076,6 @@ searchMessagesFilterMention = SearchMessagesFilter; //@description Returns only messages with unread mentions of the current user, or messages that are replies to their messages. When using this filter the results can't be additionally filtered by a query, a message thread or by the sending user searchMessagesFilterUnreadMention = SearchMessagesFilter; -//@description Returns only messages with unread reactions for the current user. When using this filter the results can't be additionally filtered by a query, a message thread or by the sending user -searchMessagesFilterUnreadReaction = SearchMessagesFilter; - //@description Returns only failed to send messages. This filter can be used only if the message database is used searchMessagesFilterFailedToSend = SearchMessagesFilter; @@ -2259,20 +2159,20 @@ stickers stickers:vector = Stickers; emojis emojis:vector = Emojis; //@description Represents a sticker set -//@id Identifier of the sticker set @title Title of the sticker set @name Name of the sticker set @thumbnail Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null. The file can be downloaded only before the thumbnail is changed +//@id Identifier of the sticker set @title Title of the sticker set @name Name of the sticker set @thumbnail Sticker set thumbnail in WEBP or TGS format with width and height 100; may be null. The file can be downloaded only before the thumbnail is changed //@thumbnail_outline Sticker set thumbnail's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner //@is_installed True, if the sticker set has been installed by the current user @is_archived True, if the sticker set has been archived. A sticker set can't be installed and archived simultaneously -//@is_official True, if the sticker set is official @sticker_type Type of the stickers in the set @is_viewed True for already viewed trending sticker sets +//@is_official True, if the sticker set is official @is_animated True, is the stickers in the set are animated @is_masks True, if the stickers in the set are masks @is_viewed True for already viewed trending sticker sets //@stickers List of stickers in this set @emojis A list of emoji corresponding to the stickers in the same order. The list is only for informational purposes, because a sticker is always sent with a fixed emoji from the corresponding Sticker object -stickerSet id:int64 title:string name:string thumbnail:thumbnail thumbnail_outline:vector is_installed:Bool is_archived:Bool is_official:Bool sticker_type:StickerType is_viewed:Bool stickers:vector emojis:vector = StickerSet; +stickerSet id:int64 title:string name:string thumbnail:thumbnail thumbnail_outline:vector is_installed:Bool is_archived:Bool is_official:Bool is_animated:Bool is_masks:Bool is_viewed:Bool stickers:vector emojis:vector = StickerSet; //@description Represents short information about a sticker set -//@id Identifier of the sticker set @title Title of the sticker set @name Name of the sticker set @thumbnail Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null +//@id Identifier of the sticker set @title Title of the sticker set @name Name of the sticker set @thumbnail Sticker set thumbnail in WEBP or TGS format with width and height 100; may be null //@thumbnail_outline Sticker set thumbnail's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner //@is_installed True, if the sticker set has been installed by the current user @is_archived True, if the sticker set has been archived. A sticker set can't be installed and archived simultaneously -//@is_official True, if the sticker set is official @sticker_type Type of the stickers in the set @is_viewed True for already viewed trending sticker sets +//@is_official True, if the sticker set is official @is_animated True, is the stickers in the set are animated @is_masks True, if the stickers in the set are masks @is_viewed True for already viewed trending sticker sets //@size Total number of stickers in the set @covers Up to the first 5 stickers from the set, depending on the context. If the application needs more stickers the full sticker set needs to be requested -stickerSetInfo id:int64 title:string name:string thumbnail:thumbnail thumbnail_outline:vector is_installed:Bool is_archived:Bool is_official:Bool sticker_type:StickerType is_viewed:Bool size:int32 covers:vector = StickerSetInfo; +stickerSetInfo id:int64 title:string name:string thumbnail:thumbnail thumbnail_outline:vector is_installed:Bool is_archived:Bool is_official:Bool is_animated:Bool is_masks:Bool is_viewed:Bool size:int32 covers:vector = StickerSetInfo; //@description Represents a list of sticker sets @total_count Approximate total number of sticker sets found @sets List of sticker sets stickerSets total_count:int32 sets:vector = StickerSets; @@ -2358,19 +2258,6 @@ groupCallVideoQualityMedium = GroupCallVideoQuality; groupCallVideoQualityFull = GroupCallVideoQuality; -//@description Describes an available stream in a group call -//@channel_id Identifier of an audio/video channel -//@scale Scale of segment durations in the stream. The duration is 1000/(2**scale) milliseconds -//@time_offset Point in time when the stream currently ends; Unix timestamp in milliseconds -groupCallStream channel_id:int32 scale:int32 time_offset:int53 = GroupCallStream; - -//@description Represents a list of group call streams @streams A list of group call streams -groupCallStreams streams:vector = GroupCallStreams; - -//@description Represents an RTMP url @url The URL @stream_key Stream key -rtmpUrl url:string stream_key:string = RtmpUrl; - - //@description Describes a recently speaking participant in a group call @participant_id Group call participant identifier @is_speaking True, is the user has spoken recently groupCallRecentSpeaker participant_id:MessageSender is_speaking:Bool = GroupCallRecentSpeaker; @@ -2380,12 +2267,10 @@ groupCallRecentSpeaker participant_id:MessageSender is_speaking:Bool = GroupCall //@scheduled_start_date Point in time (Unix timestamp) when the group call is supposed to be started by an administrator; 0 if it is already active or was ended //@enabled_start_notification True, if the group call is scheduled and the current user will receive a notification when the group call will start //@is_active True, if the call is active -//@is_rtmp_stream True, if the chat is an RTMP stream instead of an ordinary video chat //@is_joined True, if the call is joined //@need_rejoin True, if user was kicked from the call because of network loss and the call needs to be rejoined //@can_be_managed True, if the current user can manage the group call //@participant_count Number of participants in the group call -//@has_hidden_listeners True, if group call participants, which are muted, aren't returned in participant list //@loaded_all_participants True, if all group call participants are loaded //@recent_speakers At most 3 recently speaking users in the group call //@is_my_video_enabled True, if the current user's video is enabled @@ -2396,7 +2281,7 @@ groupCallRecentSpeaker participant_id:MessageSender is_speaking:Bool = GroupCall //@record_duration Duration of the ongoing group call recording, in seconds; 0 if none. An updateGroupCall update is not triggered when value of this field changes, but the same recording goes on //@is_video_recorded True, if a video file is being recorded for the call //@duration Call duration, in seconds; for ended calls only -groupCall id:int32 title:string scheduled_start_date:int32 enabled_start_notification:Bool is_active:Bool is_rtmp_stream:Bool is_joined:Bool need_rejoin:Bool can_be_managed:Bool participant_count:int32 has_hidden_listeners:Bool loaded_all_participants:Bool recent_speakers:vector is_my_video_enabled:Bool is_my_video_paused:Bool can_enable_video:Bool mute_new_participants:Bool can_toggle_mute_new_participants:Bool record_duration:int32 is_video_recorded:Bool duration:int32 = GroupCall; +groupCall id:int32 title:string scheduled_start_date:int32 enabled_start_notification:Bool is_active:Bool is_joined:Bool need_rejoin:Bool can_be_managed:Bool participant_count:int32 loaded_all_participants:Bool recent_speakers:vector is_my_video_enabled:Bool is_my_video_paused:Bool can_enable_video:Bool mute_new_participants:Bool can_toggle_mute_new_participants:Bool record_duration:int32 is_video_recorded:Bool duration:int32 = GroupCall; //@description Describes a group of video synchronization source identifiers @semantics The semantics of sources, one of "SIM" or "FID" @source_ids The list of synchronization source identifiers groupCallVideoSourceGroup semantics:string source_ids:vector = GroupCallVideoSourceGroup; @@ -2470,30 +2355,6 @@ call id:int32 user_id:int53 is_outgoing:Bool is_video:Bool state:CallState = Cal phoneNumberAuthenticationSettings allow_flash_call:Bool allow_missed_call:Bool is_current_phone_number:Bool allow_sms_retriever_api:Bool authentication_tokens:vector = PhoneNumberAuthenticationSettings; -//@description Represents a reaction applied to a message @reaction Text representation of the reaction @sender_id Identifier of the chat member, applied the reaction -addedReaction reaction:string sender_id:MessageSender = AddedReaction; - -//@description Represents a list of reactions added to a message @total_count The total number of found reactions @reactions The list of added reactions @next_offset The offset for the next request. If empty, there are no more results -addedReactions total_count:int32 reactions:vector next_offset:string = AddedReactions; - -//@description Represents a list of available reactions @reactions List of reactions -availableReactions reactions:vector = AvailableReactions; - - -//@description Contains stickers which must be used for reaction animation rendering -//@reaction Text representation of the reaction -//@title Reaction title -//@is_active True, if the reaction can be added to new messages and enabled in chats -//@static_icon Static icon for the reaction -//@appear_animation Appear animation for the reaction -//@select_animation Select animation for the reaction -//@activate_animation Activate animation for the reaction -//@effect_animation Effect animation for the reaction -//@around_animation Around animation for the reaction; may be null -//@center_animation Center animation for the reaction; may be null -reaction reaction:string title:string is_active:Bool static_icon:sticker appear_animation:sticker select_animation:sticker activate_animation:sticker effect_animation:sticker around_animation:sticker center_animation:sticker = Reaction; - - //@description Represents a list of animations @animations List of animations animations animations:vector = Animations; @@ -2517,25 +2378,6 @@ diceStickersSlotMachine background:sticker lever:sticker left_reel:sticker cente importedContacts user_ids:vector importer_count:vector = ImportedContacts; -//@description Describes a color to highlight a bot added to attachment menu @light_color Color in the RGB24 format for light themes @dark_color Color in the RGB24 format for dark themes -attachmentMenuBotColor light_color:int32 dark_color:int32 = AttachmentMenuBotColor; - -//@description Represents a bot added to attachment menu -//@bot_user_id User identifier of the bot added to attachment menu -//@name Name for the bot in attachment menu -//@name_color Color to highlight selected name of the bot if appropriate; may be null -//@default_icon Default attachment menu icon for the bot in SVG format; may be null -//@ios_static_icon Attachment menu icon for the bot in SVG format for the official iOS app; may be null -//@ios_animated_icon Attachment menu icon for the bot in TGS format for the official iOS app; may be null -//@android_icon Attachment menu icon for the bot in TGS format for the official Android app; may be null -//@macos_icon Attachment menu icon for the bot in TGS format for the official native macOS app; may be null -//@icon_color Color to highlight selected icon of the bot if appropriate; may be null -attachmentMenuBot bot_user_id:int53 name:string name_color:attachmentMenuBotColor default_icon:file ios_static_icon:file ios_animated_icon:file android_icon:file macos_icon:file icon_color:attachmentMenuBotColor = AttachmentMenuBot; - -//@description Information about the message sent by answerWebAppQuery @inline_message_id Identifier of the sent inline message, if known -sentWebAppMessage inline_message_id:string = SentWebAppMessage; - - //@description Contains an HTTP URL @url The URL httpUrl url:string = HttpUrl; @@ -2590,8 +2432,8 @@ inputInlineQueryResultLocation id:string location:location live_period:int32 tit //@input_message_content The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessagePhoto, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact inputInlineQueryResultPhoto id:string title:string description:string thumbnail_url:string photo_url:string photo_width:int32 photo_height:int32 reply_markup:ReplyMarkup input_message_content:InputMessageContent = InputInlineQueryResult; -//@description Represents a link to a WEBP, TGS, or WEBM sticker @id Unique identifier of the query result @thumbnail_url URL of the sticker thumbnail, if it exists -//@sticker_url The URL of the WEBP, TGS, or WEBM sticker (sticker file size must not exceed 5MB) @sticker_width Width of the sticker @sticker_height Height of the sticker +//@description Represents a link to a WEBP or TGS sticker @id Unique identifier of the query result @thumbnail_url URL of the sticker thumbnail, if it exists +//@sticker_url The URL of the WEBP or TGS sticker (sticker file size must not exceed 5MB) @sticker_width Width of the sticker @sticker_height Height of the sticker //@reply_markup The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null //@input_message_content The content of the message to be sent. Must be one of the following types: inputMessageText, inputMessageSticker, inputMessageInvoice, inputMessageLocation, inputMessageVenue or inputMessageContact inputInlineQueryResultSticker id:string thumbnail_url:string sticker_url:string sticker_width:int32 sticker_height:int32 reply_markup:ReplyMarkup input_message_content:InputMessageContent = InputInlineQueryResult; @@ -2695,15 +2537,15 @@ chatEventMessageEdited old_message:message new_message:message = ChatEventAction //@description A message was deleted @message Deleted message chatEventMessageDeleted message:message = ChatEventAction; +//@description A poll in a message was stopped @message The message with the poll +chatEventPollStopped message:message = ChatEventAction; + //@description A message was pinned @message Pinned message chatEventMessagePinned message:message = ChatEventAction; //@description A message was unpinned @message Unpinned message chatEventMessageUnpinned message:message = ChatEventAction; -//@description A poll in a message was stopped @message The message with the poll -chatEventPollStopped message:message = ChatEventAction; - //@description A new member joined the chat chatEventMemberJoined = ChatEventAction; @@ -2713,63 +2555,60 @@ chatEventMemberJoinedByInviteLink invite_link:chatInviteLink = ChatEventAction; //@description A new member was accepted to the chat by an administrator @approver_user_id User identifier of the chat administrator, approved user join request @invite_link Invite link used to join the chat; may be null chatEventMemberJoinedByRequest approver_user_id:int53 invite_link:chatInviteLink = ChatEventAction; -//@description A new chat member was invited @user_id New member user identifier @status New member status -chatEventMemberInvited user_id:int53 status:ChatMemberStatus = ChatEventAction; - //@description A member left the chat chatEventMemberLeft = ChatEventAction; +//@description A new chat member was invited @user_id New member user identifier @status New member status +chatEventMemberInvited user_id:int53 status:ChatMemberStatus = ChatEventAction; + //@description A chat member has gained/lost administrator status, or the list of their administrator privileges has changed @user_id Affected chat member user identifier @old_status Previous status of the chat member @new_status New status of the chat member chatEventMemberPromoted user_id:int53 old_status:ChatMemberStatus new_status:ChatMemberStatus = ChatEventAction; //@description A chat member was restricted/unrestricted or banned/unbanned, or the list of their restrictions has changed @member_id Affected chat member identifier @old_status Previous status of the chat member @new_status New status of the chat member chatEventMemberRestricted member_id:MessageSender old_status:ChatMemberStatus new_status:ChatMemberStatus = ChatEventAction; -//@description The chat available reactions were changed @old_available_reactions Previous chat available reactions @new_available_reactions New chat available reactions -chatEventAvailableReactionsChanged old_available_reactions:vector new_available_reactions:vector = ChatEventAction; - -//@description The chat description was changed @old_description Previous chat description @new_description New chat description -chatEventDescriptionChanged old_description:string new_description:string = ChatEventAction; - -//@description The linked chat of a supergroup was changed @old_linked_chat_id Previous supergroup linked chat identifier @new_linked_chat_id New supergroup linked chat identifier -chatEventLinkedChatChanged old_linked_chat_id:int53 new_linked_chat_id:int53 = ChatEventAction; - -//@description The supergroup location was changed @old_location Previous location; may be null @new_location New location; may be null -chatEventLocationChanged old_location:chatLocation new_location:chatLocation = ChatEventAction; - -//@description The message TTL was changed @old_message_ttl Previous value of message_ttl @new_message_ttl New value of message_ttl -chatEventMessageTtlChanged old_message_ttl:int32 new_message_ttl:int32 = ChatEventAction; +//@description The chat title was changed @old_title Previous chat title @new_title New chat title +chatEventTitleChanged old_title:string new_title:string = ChatEventAction; //@description The chat permissions was changed @old_permissions Previous chat permissions @new_permissions New chat permissions chatEventPermissionsChanged old_permissions:chatPermissions new_permissions:chatPermissions = ChatEventAction; -//@description The chat photo was changed @old_photo Previous chat photo value; may be null @new_photo New chat photo value; may be null -chatEventPhotoChanged old_photo:chatPhoto new_photo:chatPhoto = ChatEventAction; - -//@description The slow_mode_delay setting of a supergroup was changed @old_slow_mode_delay Previous value of slow_mode_delay, in seconds @new_slow_mode_delay New value of slow_mode_delay, in seconds -chatEventSlowModeDelayChanged old_slow_mode_delay:int32 new_slow_mode_delay:int32 = ChatEventAction; - -//@description The supergroup sticker set was changed @old_sticker_set_id Previous identifier of the chat sticker set; 0 if none @new_sticker_set_id New identifier of the chat sticker set; 0 if none -chatEventStickerSetChanged old_sticker_set_id:int64 new_sticker_set_id:int64 = ChatEventAction; - -//@description The chat title was changed @old_title Previous chat title @new_title New chat title -chatEventTitleChanged old_title:string new_title:string = ChatEventAction; +//@description The chat description was changed @old_description Previous chat description @new_description New chat description +chatEventDescriptionChanged old_description:string new_description:string = ChatEventAction; //@description The chat username was changed @old_username Previous chat username @new_username New chat username chatEventUsernameChanged old_username:string new_username:string = ChatEventAction; -//@description The has_protected_content setting of a channel was toggled @has_protected_content New value of has_protected_content -chatEventHasProtectedContentToggled has_protected_content:Bool = ChatEventAction; +//@description The chat photo was changed @old_photo Previous chat photo value; may be null @new_photo New chat photo value; may be null +chatEventPhotoChanged old_photo:chatPhoto new_photo:chatPhoto = ChatEventAction; //@description The can_invite_users permission of a supergroup chat was toggled @can_invite_users New value of can_invite_users permission chatEventInvitesToggled can_invite_users:Bool = ChatEventAction; -//@description The is_all_history_available setting of a supergroup was toggled @is_all_history_available New value of is_all_history_available -chatEventIsAllHistoryAvailableToggled is_all_history_available:Bool = ChatEventAction; +//@description The linked chat of a supergroup was changed @old_linked_chat_id Previous supergroup linked chat identifier @new_linked_chat_id New supergroup linked chat identifier +chatEventLinkedChatChanged old_linked_chat_id:int53 new_linked_chat_id:int53 = ChatEventAction; + +//@description The slow_mode_delay setting of a supergroup was changed @old_slow_mode_delay Previous value of slow_mode_delay, in seconds @new_slow_mode_delay New value of slow_mode_delay, in seconds +chatEventSlowModeDelayChanged old_slow_mode_delay:int32 new_slow_mode_delay:int32 = ChatEventAction; + +//@description The message TTL was changed @old_message_ttl Previous value of message_ttl @new_message_ttl New value of message_ttl +chatEventMessageTtlChanged old_message_ttl:int32 new_message_ttl:int32 = ChatEventAction; //@description The sign_messages setting of a channel was toggled @sign_messages New value of sign_messages chatEventSignMessagesToggled sign_messages:Bool = ChatEventAction; +//@description The has_protected_content setting of a channel was toggled @has_protected_content New value of has_protected_content +chatEventHasProtectedContentToggled has_protected_content:Bool = ChatEventAction; + +//@description The supergroup sticker set was changed @old_sticker_set_id Previous identifier of the chat sticker set; 0 if none @new_sticker_set_id New identifier of the chat sticker set; 0 if none +chatEventStickerSetChanged old_sticker_set_id:int64 new_sticker_set_id:int64 = ChatEventAction; + +//@description The supergroup location was changed @old_location Previous location; may be null @new_location New location; may be null +chatEventLocationChanged old_location:chatLocation new_location:chatLocation = ChatEventAction; + +//@description The is_all_history_available setting of a supergroup was toggled @is_all_history_available New value of is_all_history_available +chatEventIsAllHistoryAvailableToggled is_all_history_available:Bool = ChatEventAction; + //@description A chat invite link was edited @old_invite_link Previous information about the invite link @new_invite_link New information about the invite link chatEventInviteLinkEdited old_invite_link:chatInviteLink new_invite_link:chatInviteLink = ChatEventAction; @@ -2785,15 +2624,15 @@ chatEventVideoChatCreated group_call_id:int32 = ChatEventAction; //@description A video chat was ended @group_call_id Identifier of the video chat. The video chat can be received through the method getGroupCall chatEventVideoChatEnded group_call_id:int32 = ChatEventAction; -//@description The mute_new_participants setting of a video chat was toggled @mute_new_participants New value of the mute_new_participants setting -chatEventVideoChatMuteNewParticipantsToggled mute_new_participants:Bool = ChatEventAction; - //@description A video chat participant was muted or unmuted @participant_id Identifier of the affected group call participant @is_muted New value of is_muted chatEventVideoChatParticipantIsMutedToggled participant_id:MessageSender is_muted:Bool = ChatEventAction; //@description A video chat participant volume level was changed @participant_id Identifier of the affected group call participant @volume_level New value of volume_level; 1-20000 in hundreds of percents chatEventVideoChatParticipantVolumeLevelChanged participant_id:MessageSender volume_level:int32 = ChatEventAction; +//@description The mute_new_participants setting of a video chat was toggled @mute_new_participants New value of the mute_new_participants setting +chatEventVideoChatMuteNewParticipantsToggled mute_new_participants:Bool = ChatEventAction; + //@description Represents a chat event @id Chat event identifier @date Point in time (Unix timestamp) when the event happened @member_id Identifier of the user or chat who performed the action @action The action chatEvent id:int64 date:int32 member_id:MessageSender action:ChatEventAction = ChatEvent; @@ -2821,7 +2660,7 @@ chatEventLogFilters message_edits:Bool message_deletions:Bool message_pins:Bool //@description An ordinary language pack string @value String value languagePackStringValueOrdinary value:string = LanguagePackStringValue; -//@description A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more information +//@description A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info //@zero_value Value for zero objects @one_value Value for one object @two_value Value for two objects //@few_value Value for few objects @many_value Value for many objects @other_value Default value languagePackStringValuePluralized zero_value:string one_value:string two_value:string few_value:string many_value:string other_value:string = LanguagePackStringValue; @@ -2839,7 +2678,7 @@ languagePackStrings strings:vector = LanguagePackStrings; //@description Contains information about a language pack @id Unique language pack identifier //@base_language_pack_id Identifier of a base language pack; may be empty. If a string is missed in the language pack, then it must be fetched from base language pack. Unsupported in custom language packs //@name Language name @native_name Name of the language in that language -//@plural_code A language code to be used to apply plural forms. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more information +//@plural_code A language code to be used to apply plural forms. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info //@is_official True, if the language pack is official @is_rtl True, if the language pack strings are RTL @is_beta True, if the language pack is a beta language pack //@is_installed True, if the language pack is installed by the current user //@total_string_count Total number of non-deleted strings from the language pack @translated_string_count Total number of translated strings from the language pack @@ -2991,7 +2830,7 @@ checkChatUsernameResultUsernameInvalid = CheckChatUsernameResult; //@description The username is occupied checkChatUsernameResultUsernameOccupied = CheckChatUsernameResult; -//@description The user has too many chats with username, one of them must be made private first +//@description The user has too much chats with username, one of them must be made private first checkChatUsernameResultPublicChatsTooMuch = CheckChatUsernameResult; //@description The user can't be a member of a public supergroup @@ -3159,22 +2998,9 @@ notificationGroupTypeSecretChat = NotificationGroupType; notificationGroupTypeCalls = NotificationGroupType; -//@description Describes a notification sound in MP3 format -//@id Unique identifier of the notification sound -//@duration Duration of the sound, in seconds -//@date Point in time (Unix timestamp) when the sound was created -//@title Title of the notification sound -//@data Arbitrary data, defined while the sound was uploaded -//@sound File containing the sound -notificationSound id:int64 duration:int32 date:int32 title:string data:string sound:file = NotificationSound; - -//@description Contains a list of notification sounds @notification_sounds A list of notification sounds -notificationSounds notification_sounds:vector = NotificationSounds; - - //@description Contains information about a notification @id Unique persistent identifier of this notification @date Notification date -//@sound_id Identifier of the notification sound to be played; 0 if sound is disabled @type Notification type -notification id:int32 date:int32 sound_id:int64 type:NotificationType = Notification; +//@is_silent True, if the notification was initially silent @type Notification type +notification id:int32 date:int32 is_silent:Bool type:NotificationType = Notification; //@description Describes a group of notifications @id Unique persistent auto-incremented from 1 identifier of the notification group @type Type of the group //@chat_id Identifier of a chat to which all notifications in the group belong @@ -3307,7 +3133,7 @@ sessions sessions:vector inactive_session_ttl_days:int32 = Sessions; //@log_in_date Point in time (Unix timestamp) when the user was logged in //@last_active_date Point in time (Unix timestamp) when obtained authorization was last used //@ip IP address from which the user was logged in, in human-readable format -//@location Human-readable description of a country and a region from which the user was logged in, based on the IP address +//@location Human-readable description of a country and a region, from which the user was logged in, based on the IP address connectedWebsite id:int64 domain_name:string bot_user_id:int53 browser:string platform:string log_in_date:int32 last_active_date:int32 ip:string location:string = ConnectedWebsite; //@description Contains a list of websites the current user is logged in with Telegram @websites List of connected websites @@ -3337,12 +3163,6 @@ chatReportReasonUnrelatedLocation = ChatReportReason; //@description The chat represents a fake account chatReportReasonFake = ChatReportReason; -//@description The chat has illegal drugs related content -chatReportReasonIllegalDrugs = ChatReportReason; - -//@description The chat contains messages with personal details -chatReportReasonPersonalDetails = ChatReportReason; - //@description A custom reason provided by the user chatReportReasonCustom = ChatReportReason; @@ -3352,13 +3172,6 @@ chatReportReasonCustom = ChatReportReason; //@description The link is a link to the active sessions section of the app. Use getActiveSessions to handle the link internalLinkTypeActiveSessions = InternalLinkType; -//@description The link is a link to an attachment menu bot to be opened in the specified chat. Process given chat_link to open corresponding chat. -//-Then call searchPublicChat with the given bot username, check that the user is a bot and can be added to attachment menu. Then use getAttachmentMenuBot to receive information about the bot. -//-If the bot isn't added to attachment menu, then user needs to confirm adding the bot to attachment menu. If user confirms adding, then use toggleBotIsAddedToAttachmentMenu to add it. -//-If attachment menu bots can't be used in the current chat, show an error to the user. If the bot is added to attachment menu, then use openWebApp with the given URL -//@chat_link An internal link pointing to a chat; may be null if the current chat needs to be kept @bot_username Username of the bot @url URL to be passed to openWebApp -internalLinkTypeAttachmentMenuBot chat_link:InternalLinkType bot_username:string url:string = InternalLinkType; - //@description The link contains an authentication code. Call checkAuthenticationCode with the code if the current authorization state is authorizationStateWaitCode @code The authentication code internalLinkTypeAuthenticationCode code:string = InternalLinkType; @@ -3371,19 +3184,9 @@ internalLinkTypeBackground background_name:string = InternalLinkType; internalLinkTypeBotStart bot_username:string start_parameter:string = InternalLinkType; //@description The link is a link to a Telegram bot, which is supposed to be added to a group chat. Call searchPublicChat with the given bot username, check that the user is a bot and can be added to groups, -//-ask the current user to select a basic group or a supergroup chat to add the bot to, taking into account that bots can be added to a public supergroup only by administrators of the supergroup. -//-If administrator rights are provided by the link, call getChatMember to receive the current bot rights in the chat and if the bot already is an administrator, -//-check that the current user can edit its administrator rights, combine received rights with the requested administrator rights, show confirmation box to the user, -//-and call setChatMemberStatus with the chosen chat and confirmed administrator rights. Before call to setChatMemberStatus it may be required to upgrade the chosen basic group chat to a supergroup chat. -//-Then if start_parameter isn't empty, call sendBotStartMessage with the given start parameter and the chosen chat, otherwise just send /start message with bot's username added to the chat. -//@bot_username Username of the bot @start_parameter The parameter to be passed to sendBotStartMessage @administrator_rights Expected administrator rights for the bot; may be null -internalLinkTypeBotStartInGroup bot_username:string start_parameter:string administrator_rights:chatAdministratorRights = InternalLinkType; - -//@description The link is a link to a Telegram bot, which is supposed to be added to a channel chat as an administrator. Call searchPublicChat with the given bot username and check that the user is a bot, -//-ask the current user to select a channel chat to add the bot to as an administrator. Then call getChatMember to receive the current bot rights in the chat and if the bot already is an administrator, -//-check that the current user can edit its administrator rights and combine received rights with the requested administrator rights. Then show confirmation box to the user, and call setChatMemberStatus with the chosen chat and confirmed rights -//@bot_username Username of the bot @administrator_rights Expected administrator rights for the bot -internalLinkTypeBotAddToChannel bot_username:string administrator_rights:chatAdministratorRights = InternalLinkType; +//-ask the current user to select a group to add the bot to, and then call sendBotStartMessage with the given start parameter and the chosen group chat. Bots can be added to a public group only by administrators of the group +//@bot_username Username of the bot @start_parameter The parameter to be passed to sendBotStartMessage +internalLinkTypeBotStartInGroup bot_username:string start_parameter:string = InternalLinkType; //@description The link is a link to the change phone number section of the app internalLinkTypeChangePhoneNumber = InternalLinkType; @@ -3401,9 +3204,6 @@ internalLinkTypeGame bot_username:string game_short_name:string = InternalLinkTy //@description The link is a link to a language pack. Call getLanguagePackInfo with the given language pack identifier to process the link @language_pack_id Language pack identifier internalLinkTypeLanguagePack language_pack_id:string = InternalLinkType; -//@description The link is a link to the language settings section of the app -internalLinkTypeLanguageSettings = InternalLinkType; - //@description The link is a link to a Telegram message. Call getMessageLinkInfo with the given URL to process the link @url URL to be passed to getMessageLinkInfo internalLinkTypeMessage url:string = InternalLinkType; @@ -3420,9 +3220,6 @@ internalLinkTypePassportDataRequest bot_user_id:int53 scope:string public_key:st //@hash Hash value from the link @phone_number Phone number value from the link internalLinkTypePhoneNumberConfirmation hash:string phone_number:string = InternalLinkType; -//@description The link is a link to the privacy and security settings section of the app -internalLinkTypePrivacyAndSecuritySettings = InternalLinkType; - //@description The link is a link to a proxy. Call addProxy with the given parameters to process the link and add the proxy //@server Proxy server IP address @port Proxy server port @type Type of the proxy internalLinkTypeProxy server:string port:int32 type:ProxyType = InternalLinkType; @@ -3452,10 +3249,7 @@ internalLinkTypeUnknownDeepLink link:string = InternalLinkType; //@description The link is a link to an unsupported proxy. An alert can be shown to the user internalLinkTypeUnsupportedProxy = InternalLinkType; -//@description The link is a link to a user by its phone number. Call searchUserByPhoneNumber with the given phone number to process the link @phone_number Phone number of the user -internalLinkTypeUserPhoneNumber phone_number:string = InternalLinkType; - -//@description The link is a link to a video chat. Call searchPublicChat with the given chat username, and then joinGroupCall with the given invite hash to process the link +//@description The link is a link to a video chat. Call searchPublicChat with the given chat username, and then joinGoupCall with the given invite hash to process the link //@chat_username Username of the chat with the video chat @invite_hash If non-empty, invite hash to be used to join the video chat without being muted by administrators //@is_live_stream True, if the video chat is expected to be a live stream in a channel or a broadcast group internalLinkTypeVideoChat chat_username:string invite_hash:string is_live_stream:Bool = InternalLinkType; @@ -3492,9 +3286,6 @@ fileTypeAudio = FileType; //@description The file is a document fileTypeDocument = FileType; -//@description The file is a notification sound -fileTypeNotificationSound = FileType; - //@description The file is a photo fileTypePhoto = FileType; @@ -3655,7 +3446,7 @@ tMeUrlTypeUser user_id:int53 = TMeUrlType; //@description A URL linking to a public supergroup or channel @supergroup_id Identifier of the supergroup or channel tMeUrlTypeSupergroup supergroup_id:int53 = TMeUrlType; -//@description A chat invite link @info Information about the chat invite link +//@description A chat invite link @info Chat invite link info tMeUrlTypeChatInvite info:chatInviteLinkInfo = TMeUrlType; //@description A URL linking to a sticker set @sticker_set_id Identifier of the sticker set @@ -3732,11 +3523,18 @@ proxy id:int32 server:string port:int32 last_used_date:int32 is_enabled:Bool typ proxies proxies:vector = Proxies; -//@description A sticker to be added to a sticker set -//@sticker File with the sticker; must fit in a 512x512 square. For WEBP stickers and masks the file must be in PNG format, which will be converted to WEBP server-side. Otherwise, the file must be local or uploaded within a week. See https://core.telegram.org/animated_stickers#technical-requirements for technical requirements +//@class InputSticker @description Describes a sticker that needs to be added to a sticker set + +//@description A static sticker in PNG format, which will be converted to WEBP server-side +//@sticker PNG image with the sticker; must be up to 512 KB in size and fit in a 512x512 square //@emojis Emojis corresponding to the sticker -//@type Sticker type -inputSticker sticker:InputFile emojis:string type:StickerType = InputSticker; +//@mask_position For masks, position where the mask is placed; pass null if unspecified +inputStickerStatic sticker:InputFile emojis:string mask_position:maskPosition = InputSticker; + +//@description An animated sticker in TGS format +//@sticker File with the animated sticker. Only local or uploaded within a week files are supported. See https://core.telegram.org/animated_stickers#technical-requirements for technical requirements +//@emojis Emojis corresponding to the sticker +inputStickerAnimated sticker:InputFile emojis:string = InputSticker; //@description Represents a date range @start_date Point in time (Unix timestamp) at which the date range begins @end_date Point in time (Unix timestamp) at which the date range ends @@ -3902,9 +3700,6 @@ updateMessageContentOpened chat_id:int53 message_id:int53 = Update; //@description A message with an unread mention was read @chat_id Chat identifier @message_id Message identifier @unread_mention_count The new number of unread mention messages left in the chat updateMessageMentionRead chat_id:int53 message_id:int53 unread_mention_count:int32 = Update; -//@description The list of unread reactions added to a message was changed @chat_id Chat identifier @message_id Message identifier @unread_reactions The new list of unread reactions @unread_reaction_count The new number of messages with unread reactions left in the chat -updateMessageUnreadReactions chat_id:int53 message_id:int53 unread_reactions:vector unread_reaction_count:int32 = Update; - //@description A message with a live location was viewed. When the update is received, the application is supposed to update the live location //@chat_id Identifier of the chat with the live location message @message_id Identifier of the message with live location updateMessageLiveLocationViewed chat_id:int53 message_id:int53 = Update; @@ -3936,9 +3731,6 @@ updateChatReadOutbox chat_id:int53 last_read_outbox_message_id:int53 = Update; //@description The chat action bar was changed @chat_id Chat identifier @action_bar The new value of the action bar; may be null updateChatActionBar chat_id:int53 action_bar:ChatActionBar = Update; -//@description The chat available reactions were changed @chat_id Chat identifier @available_reactions The new list of reactions, available in the chat -updateChatAvailableReactions chat_id:int53 available_reactions:vector = Update; - //@description A chat draft has changed. Be aware that the update may come in the currently opened chat but with old content of the draft. If the user has changed the content of the draft, this update mustn't be applied @chat_id Chat identifier @draft_message The new draft message; may be null @positions The new chat positions in the chat lists updateChatDraftMessage chat_id:int53 draft_message:draftMessage positions:vector = Update; @@ -3964,9 +3756,6 @@ updateChatTheme chat_id:int53 theme_name:string = Update; //@description The chat unread_mention_count has changed @chat_id Chat identifier @unread_mention_count The number of unread mention messages left in the chat updateChatUnreadMentionCount chat_id:int53 unread_mention_count:int32 = Update; -//@description The chat unread_reaction_count has changed @chat_id Chat identifier @unread_reaction_count The number of messages with unread reactions left in the chat -updateChatUnreadReactionCount chat_id:int53 unread_reaction_count:int32 = Update; - //@description A chat video chat state has changed @chat_id Chat identifier @video_chat New value of video_chat updateChatVideoChat chat_id:int53 video_chat:videoChat = Update; @@ -3988,7 +3777,7 @@ updateChatIsMarkedAsUnread chat_id:int53 is_marked_as_unread:Bool = Update; //@description The list of chat filters or a chat filter has changed @chat_filters The new list of chat filters updateChatFilters chat_filters:vector = Update; -//@description The number of online group members has changed. This update with non-zero number of online group members is sent only for currently opened chats. There is no guarantee that it will be sent just after the number of online users has changed @chat_id Identifier of the chat @online_member_count New number of online members in the chat, or 0 if unknown +//@description The number of online group members has changed. This update with non-zero count is sent only for currently opened chats. There is no guarantee that it will be sent just after the count has changed @chat_id Identifier of the chat @online_member_count New number of online members in the chat, or 0 if unknown updateChatOnlineMemberCount chat_id:int53 online_member_count:int32 = Update; //@description Notification settings for some type of chats were updated @scope Types of chats for which notification settings were updated @notification_settings The new notification settings @@ -4002,10 +3791,10 @@ updateNotification notification_group_id:int32 notification:notification = Updat //@type New type of the notification group //@chat_id Identifier of a chat to which all notifications in the group belong //@notification_settings_chat_id Chat identifier, which notification settings must be applied to the added notifications -//@notification_sound_id Identifier of the notification sound to be played; 0 if sound is disabled +//@is_silent True, if the notifications must be shown without sound //@total_count Total number of unread notifications in the group, can be bigger than number of active notifications //@added_notifications List of added group notifications, sorted by notification ID @removed_notification_ids Identifiers of removed group notifications, sorted by notification ID -updateNotificationGroup notification_group_id:int32 type:NotificationGroupType chat_id:int53 notification_settings_chat_id:int53 notification_sound_id:int64 total_count:int32 added_notifications:vector removed_notification_ids:vector = Update; +updateNotificationGroup notification_group_id:int32 type:NotificationGroupType chat_id:int53 notification_settings_chat_id:int53 is_silent:Bool total_count:int32 added_notifications:vector removed_notification_ids:vector = Update; //@description Contains active notifications that was shown on previous application launches. This update is sent only if the message database is used. In that case it comes once before any updateNotification and updateNotificationGroup update @groups Lists of active notification groups updateActiveNotifications groups:vector = Update; @@ -4065,24 +3854,6 @@ updateFileGenerationStart generation_id:int64 original_path:string destination_p //@description File generation is no longer needed @generation_id Unique identifier for the generation process updateFileGenerationStop generation_id:int64 = Update; -//@description The state of the file download list has changed -//@total_size Total size of files in the file download list, in bytes -//@total_count Total number of files in the file download list -//@downloaded_size Total downloaded size of files in the file download list, in bytes -updateFileDownloads total_size:int53 total_count:int32 downloaded_size:int53 = Update; - -//@description A file was added to the file download list. This update is sent only after file download list is loaded for the first time @file_download The added file download @counts New number of being downloaded and recently downloaded files found -updateFileAddedToDownloads file_download:fileDownload counts:downloadedFileCounts = Update; - -//@description A file download was changed. This update is sent only after file download list is loaded for the first time @file_id File identifier -//@complete_date Point in time (Unix timestamp) when the file downloading was completed; 0 if the file downloading isn't completed -//@is_paused True, if downloading of the file is paused -//@counts New number of being downloaded and recently downloaded files found -updateFileDownload file_id:int32 complete_date:int32 is_paused:Bool counts:downloadedFileCounts = Update; - -//@description A file was removed from the file download list. This update is sent only after file download list is loaded for the first time @file_id File identifier @counts New number of being downloaded and recently downloaded files found -updateFileRemovedFromDownloads file_id:int32 counts:downloadedFileCounts = Update; - //@description New call was created or information about a call was updated @call New data about a call updateCall call:call = Update; @@ -4131,9 +3902,6 @@ updateFavoriteStickers sticker_ids:vector = Update; //@description The list of saved animations was updated @animation_ids The new list of file identifiers of saved animations updateSavedAnimations animation_ids:vector = Update; -//@description The list of saved notifications sounds was updated. This update may not be sent until information about a notification sound was requested for the first time @notification_sound_ids The new list of identifiers of saved notification sounds -updateSavedNotificationSounds notification_sound_ids:vector = Update; - //@description The selected background has changed @for_dark_theme True, if background for dark theme has changed @background The new selected background; may be null updateSelectedBackground for_dark_theme:Bool background:background = Update; @@ -4152,15 +3920,6 @@ updateTermsOfService terms_of_service_id:string terms_of_service:termsOfService //@description The list of users nearby has changed. The update is guaranteed to be sent only 60 seconds after a successful searchChatsNearby request @users_nearby The new list of users nearby updateUsersNearby users_nearby:vector = Update; -//@description The list of bots added to attachment menu has changed @bots The new list of bots added to attachment menu. The bots must be shown in attachment menu only in private chats. The bots must not be shown on scheduled messages screen -updateAttachmentMenuBots bots:vector = Update; - -//@description A message was sent by an opened web app, so the web app needs to be closed @web_app_launch_id Identifier of web app launch -updateWebAppMessageSent web_app_launch_id:int64 = Update; - -//@description The list of supported reactions has changed @reactions The new list of supported reactions -updateReactions reactions:vector = Update; - //@description The list of supported dice emojis has changed @emojis The new list of supported dice emojis updateDiceEmojis emojis:vector = Update; @@ -4175,7 +3934,7 @@ updateAnimationSearchParameters provider:string emojis:vector = Update; updateSuggestedActions added_actions:vector removed_actions:vector = Update; //@description A new incoming inline query; for bots only @id Unique query identifier @sender_user_id Identifier of the user who sent the query @user_location User location; may be null -//@chat_type The type of the chat from which the query originated; may be null if unknown @query Text of the query @offset Offset of the first entry to return +//@chat_type The type of the chat, from which the query originated; may be null if unknown @query Text of the query @offset Offset of the first entry to return updateNewInlineQuery id:int64 sender_user_id:int53 user_location:location chat_type:ChatType query:string offset:string = Update; //@description The user has chosen a result of an inline query; for bots only @sender_user_id Identifier of the user who sent the query @user_location User location; may be null @@ -4183,11 +3942,11 @@ updateNewInlineQuery id:int64 sender_user_id:int53 user_location:location chat_t updateNewChosenInlineResult sender_user_id:int53 user_location:location query:string result_id:string inline_message_id:string = Update; //@description A new incoming callback query; for bots only @id Unique query identifier @sender_user_id Identifier of the user who sent the query -//@chat_id Identifier of the chat where the query was sent @message_id Identifier of the message from which the query originated +//@chat_id Identifier of the chat where the query was sent @message_id Identifier of the message, from which the query originated //@chat_instance Identifier that uniquely corresponds to the chat to which the message was sent @payload Query payload updateNewCallbackQuery id:int64 sender_user_id:int53 chat_id:int53 message_id:int53 chat_instance:int64 payload:CallbackQueryPayload = Update; -//@description A new incoming callback query from a message sent via a bot; for bots only @id Unique query identifier @sender_user_id Identifier of the user who sent the query @inline_message_id Identifier of the inline message from which the query originated +//@description A new incoming callback query from a message sent via a bot; for bots only @id Unique query identifier @sender_user_id Identifier of the user who sent the query @inline_message_id Identifier of the inline message, from which the query originated //@chat_instance An identifier uniquely corresponding to the chat a message was sent to @payload Query payload updateNewInlineCallbackQuery id:int64 sender_user_id:int53 inline_message_id:string chat_instance:int64 payload:CallbackQueryPayload = Update; @@ -4334,7 +4093,7 @@ setDatabaseEncryptionKey new_encryption_key:bytes = Ok; getPasswordState = PasswordState; //@description Changes the password for the current user. If a new recovery email address is specified, then the change will not be applied until the new recovery email address is confirmed -//@old_password Previous password of the user @new_password New password of the user; may be empty to remove the password @new_hint New password hint; may be empty @set_recovery_email_address Pass true to change also the recovery email address @new_recovery_email_address New recovery email address; may be empty +//@old_password Previous password of the user @new_password New password of the user; may be empty to remove the password @new_hint New password hint; may be empty @set_recovery_email_address Pass true if the recovery email address must be changed @new_recovery_email_address New recovery email address; may be empty setPassword old_password:string new_password:string new_hint:string set_recovery_email_address:Bool new_recovery_email_address:string = PasswordState; //@description Returns a 2-step verification recovery email address that was previously set up. This method can be used to verify a password provided by the user @password The password for the current user @@ -4403,7 +4162,7 @@ getChat chat_id:int53 = Chat; //@description Returns information about a message @chat_id Identifier of the chat the message belongs to @message_id Identifier of the message to get getMessage chat_id:int53 message_id:int53 = Message; -//@description Returns information about a message, if it is available without sending network request. This is an offline request @chat_id Identifier of the chat the message belongs to @message_id Identifier of the message to get +//@description Returns information about a message, if it is available locally without sending network request. This is an offline request @chat_id Identifier of the chat the message belongs to @message_id Identifier of the message to get getMessageLocally chat_id:int53 message_id:int53 = Message; //@description Returns information about a message that is replied by a given message. Also returns the pinned message, the game message, and the invoice message for messages of the types messagePinMessage, messageGameScore, and messagePaymentSuccessful respectively @@ -4502,7 +4261,7 @@ getGroupsInCommon user_id:int53 offset_chat_id:int53 limit:int32 = Chats; //@from_message_id Identifier of the message starting from which history must be fetched; use 0 to get results from the last message //@offset Specify 0 to get results from exactly the from_message_id or a negative offset up to 99 to get additionally some newer messages //@limit The maximum number of messages to be returned; must be positive and can't be greater than 100. If the offset is negative, the limit must be greater than or equal to -offset. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit -//@only_local Pass true to get only messages that are available without sending network requests +//@only_local If true, returns only messages that are available locally without sending network requests getChatHistory chat_id:int53 from_message_id:int53 offset:int32 limit:int32 only_local:Bool = Messages; //@description Returns messages in a message thread of a message. Can be used only if message.can_get_message_thread == true. Message thread of a channel message is in the channel's linked supergroup. @@ -4515,10 +4274,10 @@ getChatHistory chat_id:int53 from_message_id:int53 offset:int32 limit:int32 only getMessageThreadHistory chat_id:int53 message_id:int53 from_message_id:int53 offset:int32 limit:int32 = Messages; //@description Deletes all messages in the chat. Use chat.can_be_deleted_only_for_self and chat.can_be_deleted_for_all_users fields to find whether and how the method can be applied to the chat -//@chat_id Chat identifier @remove_from_chat_list Pass true to remove the chat from all chat lists @revoke Pass true to delete chat history for all users +//@chat_id Chat identifier @remove_from_chat_list Pass true if the chat needs to be removed from the chat list @revoke Pass true to delete chat history for all users deleteChatHistory chat_id:int53 remove_from_chat_list:Bool revoke:Bool = Ok; -//@description Deletes a chat along with all messages in the corresponding chat for all chat members. For group chats this will release the username and remove all members. Use the field chat.can_be_deleted_for_all_users to find whether the method can be applied to the chat @chat_id Chat identifier +//@description Deletes a chat along with all messages in the corresponding chat for all chat members; requires owner privileges. For group chats this will release the username and remove all members. Chats with more than 1000 members can't be deleted using this method @chat_id Chat identifier deleteChat chat_id:int53 = Ok; //@description Searches for messages with given words in the chat. Returns the results in reverse chronological order, i.e. in order of decreasing message_id. Cannot be used in secret chats with a non-empty query @@ -4541,7 +4300,7 @@ searchChatMessages chat_id:int53 query:string sender_id:MessageSender from_messa //@offset_chat_id The chat identifier of the last found message, or 0 for the first request //@offset_message_id The message identifier of the last found message, or 0 for the first request //@limit The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit -//@filter Additional filter for messages to search; pass null to search for all messages. Filters searchMessagesFilterMention, searchMessagesFilterUnreadMention, searchMessagesFilterUnreadReaction, searchMessagesFilterFailedToSend, and searchMessagesFilterPinned are unsupported in this function +//@filter Additional filter for messages to search; pass null to search for all messages. Filters searchMessagesFilterMention, searchMessagesFilterUnreadMention, searchMessagesFilterFailedToSend and searchMessagesFilterPinned are unsupported in this function //@min_date If not 0, the minimum date of the messages to return //@max_date If not 0, the maximum date of the messages to return searchMessages chat_list:ChatList query:string offset_date:int32 offset_chat_id:int53 offset_message_id:int53 limit:int32 filter:SearchMessagesFilter min_date:int32 max_date:int32 = Messages; @@ -4549,22 +4308,16 @@ searchMessages chat_list:ChatList query:string offset_date:int32 offset_chat_id: //@description Searches for messages in secret chats. Returns the results in reverse chronological order. For optimal performance, the number of returned messages is chosen by TDLib //@chat_id Identifier of the chat in which to search. Specify 0 to search in all secret chats //@query Query to search for. If empty, searchChatMessages must be used instead -//@offset Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results +//@offset Offset of the first entry to return as received from the previous request; use empty string to get first chunk of results //@limit The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit //@filter Additional filter for messages to search; pass null to search for all messages searchSecretMessages chat_id:int53 query:string offset:string limit:int32 filter:SearchMessagesFilter = FoundMessages; //@description Searches for call messages. Returns the results in reverse chronological order (i. e., in order of decreasing message_id). For optimal performance, the number of returned messages is chosen by TDLib //@from_message_id Identifier of the message from which to search; use 0 to get results from the last message -//@limit The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit -//@only_missed Pass true to search only for messages with missed/declined calls +//@limit The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit @only_missed If true, returns only messages with missed/declined calls searchCallMessages from_message_id:int53 limit:int32 only_missed:Bool = Messages; -//@description Searches for outgoing messages with content of the type messageDocument in all chats except secret chats. Returns the results in reverse chronological order -//@query Query to search for in document file name and message caption -//@limit The maximum number of messages to be returned; up to 100 -searchOutgoingDocumentMessages query:string limit:int32 = FoundMessages; - //@description Deletes all call messages @revoke Pass true to delete the messages for all users deleteAllCallMessages revoke:Bool = Ok; @@ -4580,18 +4333,18 @@ getChatMessageByDate chat_id:int53 date:int32 = Message; //@description Returns sparse positions of messages of the specified type in the chat to be used for shared media scroll implementation. Returns the results in reverse chronological order (i.e., in order of decreasing message_id). //-Cannot be used in secret chats or with searchMessagesFilterFailedToSend filter without an enabled message database //@chat_id Identifier of the chat in which to return information about message positions -//@filter Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention, searchMessagesFilterUnreadMention, and searchMessagesFilterUnreadReaction are unsupported in this function +//@filter Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention and searchMessagesFilterUnreadMention are unsupported in this function //@from_message_id The message identifier from which to return information about message positions //@limit The expected number of message positions to be returned; 50-2000. A smaller number of positions can be returned, if there are not enough appropriate messages getChatSparseMessagePositions chat_id:int53 filter:SearchMessagesFilter from_message_id:int53 limit:int32 = MessagePositions; //@description Returns information about the next messages of the specified type in the chat split by days. Returns the results in reverse chronological order. Can return partial result for the last returned day. Behavior of this method depends on the value of the option "utc_time_offset" //@chat_id Identifier of the chat in which to return information about messages -//@filter Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention, searchMessagesFilterUnreadMention, and searchMessagesFilterUnreadReaction are unsupported in this function +//@filter Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention and searchMessagesFilterUnreadMention are unsupported in this function //@from_message_id The message identifier from which to return information about messages; use 0 to get results from the last message getChatMessageCalendar chat_id:int53 filter:SearchMessagesFilter from_message_id:int53 = MessageCalendar; -//@description Returns approximate number of messages of the specified type in the chat @chat_id Identifier of the chat in which to count messages @filter Filter for message content; searchMessagesFilterEmpty is unsupported in this function @return_local Pass true to get the number of messages without sending network requests, or -1 if the number of messages is unknown locally +//@description Returns approximate number of messages of the specified type in the chat @chat_id Identifier of the chat in which to count messages @filter Filter for message content; searchMessagesFilterEmpty is unsupported in this function @return_local If true, returns count that is available locally without sending network requests, returning -1 if the number of messages is unknown getChatMessageCount chat_id:int53 filter:SearchMessagesFilter return_local:Bool = Count; //@description Returns all scheduled messages in a chat. The messages are returned in a reverse chronological order (i.e., in order of decreasing message_id) @chat_id Chat identifier @@ -4600,7 +4353,7 @@ getChatScheduledMessages chat_id:int53 = Messages; //@description Returns forwarded copies of a channel message to different public channels. For optimal performance, the number of returned messages is chosen by TDLib //@chat_id Chat identifier of the message //@message_id Message identifier -//@offset Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results +//@offset Offset of the first entry to return as received from the previous request; use empty string to get first chunk of results //@limit The maximum number of messages to be returned; must be positive and can't be greater than 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit getMessagePublicForwards chat_id:int53 message_id:int53 offset:string limit:int32 = FoundMessages; @@ -4633,13 +4386,6 @@ getMessageEmbeddingCode chat_id:int53 message_id:int53 for_album:Bool = Text; getMessageLinkInfo url:string = MessageLinkInfo; -//@description Translates a text to the given language. Returns a 404 error if the translation can't be performed -//@text Text to translate -//@from_language_code A two-letter ISO 639-1 language code of the language from which the message is translated. If empty, the language will be detected automatically -//@to_language_code A two-letter ISO 639-1 language code of the language to which the message is translated -translateText text:string from_language_code:string to_language_code:string = Text; - - //@description Returns list of message sender identifiers, which can be used to send messages in a chat @chat_id Chat identifier getChatAvailableMessageSenders chat_id:int53 = MessageSenders; @@ -4649,7 +4395,7 @@ setChatMessageSender chat_id:int53 message_sender_id:MessageSender = Ok; //@description Sends a message. Returns the sent message //@chat_id Target chat //@message_thread_id If not 0, a message thread identifier in which the message will be sent -//@reply_to_message_id Identifier of the replied message; 0 if none +//@reply_to_message_id Identifier of the message to reply to or 0 //@options Options to be used to send the message; pass null to use default options //@reply_markup Markup for replying to the message; pass null if none; for bots only //@input_message_content The content of the message to be sent @@ -4658,11 +4404,10 @@ sendMessage chat_id:int53 message_thread_id:int53 reply_to_message_id:int53 opti //@description Sends 2-10 messages grouped together into an album. Currently, only audio, document, photo and video messages can be grouped into an album. Documents and audio files can be only grouped in an album with messages of the same type. Returns sent messages //@chat_id Target chat //@message_thread_id If not 0, a message thread identifier in which the messages will be sent -//@reply_to_message_id Identifier of a replied message; 0 if none +//@reply_to_message_id Identifier of a message to reply to or 0 //@options Options to be used to send the messages; pass null to use default options //@input_message_contents Contents of messages to be sent. At most 10 messages can be added to an album -//@only_preview Pass true to get fake messages instead of actually sending them -sendMessageAlbum chat_id:int53 message_thread_id:int53 reply_to_message_id:int53 options:messageSendOptions input_message_contents:vector only_preview:Bool = Messages; +sendMessageAlbum chat_id:int53 message_thread_id:int53 reply_to_message_id:int53 options:messageSendOptions input_message_contents:vector = Messages; //@description Invites a bot to a chat (if it is not yet a member) and sends it the /start command. Bots can't be invited to a private chat other than the chat with the bot. Bots can't be invited to channels (although they can be added as admins) and secret chats. Returns the sent message //@bot_user_id Identifier of the bot @chat_id Identifier of the target chat @parameter A hidden parameter sent to the bot for deep linking purposes (https://core.telegram.org/bots#deep-linking) @@ -4671,11 +4416,11 @@ sendBotStartMessage bot_user_id:int53 chat_id:int53 parameter:string = Message; //@description Sends the result of an inline query as a message. Returns the sent message. Always clears a chat draft message //@chat_id Target chat //@message_thread_id If not 0, a message thread identifier in which the message will be sent -//@reply_to_message_id Identifier of a replied message; 0 if none +//@reply_to_message_id Identifier of a message to reply to or 0 //@options Options to be used to send the message; pass null to use default options //@query_id Identifier of the inline query //@result_id Identifier of the inline result -//@hide_via_bot Pass true to hide the bot, via which the message is sent. Can be used only for bots GetOption("animation_search_bot_username"), GetOption("photo_search_bot_username"), and GetOption("venue_search_bot_username") +//@hide_via_bot If true, there will be no mention of a bot, via which the message is sent. Can be used only for bots GetOption("animation_search_bot_username"), GetOption("photo_search_bot_username") and GetOption("venue_search_bot_username") sendInlineQueryResultMessage chat_id:int53 message_thread_id:int53 reply_to_message_id:int53 options:messageSendOptions query_id:int64 result_id:string hide_via_bot:Bool = Message; //@description Forwards previously sent messages. Returns the forwarded messages in the same order as the message identifiers passed in message_ids. If a message can't be forwarded, null will be returned instead of the message @@ -4683,9 +4428,9 @@ sendInlineQueryResultMessage chat_id:int53 message_thread_id:int53 reply_to_mess //@from_chat_id Identifier of the chat from which to forward messages //@message_ids Identifiers of the messages to forward. Message identifiers must be in a strictly increasing order. At most 100 messages can be forwarded simultaneously //@options Options to be used to send the messages; pass null to use default options -//@send_copy Pass true to copy content of the messages without reference to the original sender. Always true if the messages are forwarded to a secret chat or are local -//@remove_caption Pass true to remove media captions of message copies. Ignored if send_copy is false -//@only_preview Pass true to get fake messages instead of actually forwarding them +//@send_copy If true, content of the messages will be copied without reference to the original sender. Always true if the messages are forwarded to a secret chat or are local +//@remove_caption If true, media caption of message copies will be removed. Ignored if send_copy is false +//@only_preview If true, messages will not be forwarded and instead fake messages will be returned forwardMessages chat_id:int53 from_chat_id:int53 message_ids:vector options:messageSendOptions send_copy:Bool remove_caption:Bool only_preview:Bool = Messages; //@description Resends messages which failed to send. Can be called only for messages for which messageSendingStateFailed.can_retry is true and after specified in messageSendingStateFailed.retry_after time passed. @@ -4699,7 +4444,7 @@ sendChatScreenshotTakenNotification chat_id:int53 = Ok; //@description Adds a local message to a chat. The message is persistent across application restarts only if the message database is used. Returns the added message //@chat_id Target chat //@sender_id Identifier of the sender of the message -//@reply_to_message_id Identifier of the replied message; 0 if none +//@reply_to_message_id Identifier of the message to reply to or 0 //@disable_notification Pass true to disable notification for the message //@input_message_content The content of the message to be added addLocalMessage chat_id:int53 sender_id:MessageSender reply_to_message_id:int53 disable_notification:Bool input_message_content:InputMessageContent = Message; @@ -4790,35 +4535,14 @@ editInlineMessageReplyMarkup inline_message_id:string reply_markup:ReplyMarkup = editMessageSchedulingState chat_id:int53 message_id:int53 scheduling_state:MessageSchedulingState = Ok; -//@description Returns reactions, which can be added to a message. The list can change after updateReactions, updateChatAvailableReactions for the chat, or updateMessageInteractionInfo for the message -//@chat_id Identifier of the chat to which the message belongs -//@message_id Identifier of the message -getMessageAvailableReactions chat_id:int53 message_id:int53 = AvailableReactions; - -//@description Changes chosen reaction for a message -//@chat_id Identifier of the chat to which the message belongs -//@message_id Identifier of the message -//@reaction Text representation of the new chosen reaction. Can be an empty string or the currently chosen non-big reaction to remove the reaction -//@is_big Pass true if the reaction is added with a big animation -setMessageReaction chat_id:int53 message_id:int53 reaction:string is_big:Bool = Ok; - -//@description Returns reactions added for a message, along with their sender -//@chat_id Identifier of the chat to which the message belongs -//@message_id Identifier of the message -//@reaction If non-empty, only added reactions with the specified text representation will be returned -//@offset Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results -//@limit The maximum number of reactions to be returned; must be positive and can't be greater than 100 -getMessageAddedReactions chat_id:int53 message_id:int53 reaction:string offset:string limit:int32 = AddedReactions; - - //@description Returns all entities (mentions, hashtags, cashtags, bot commands, bank card numbers, URLs, and email addresses) contained in the text. Can be called synchronously @text The text in which to look for entites getTextEntities text:string = TextEntities; -//@description Parses Bold, Italic, Underline, Strikethrough, Spoiler, Code, Pre, PreCode, TextUrl and MentionName entities contained in the text. Can be called synchronously @text The text to parse @parse_mode Text parse mode +//@description Parses Bold, Italic, Underline, Strikethrough, Code, Pre, PreCode, TextUrl and MentionName entities contained in the text. Can be called synchronously @text The text to parse @parse_mode Text parse mode parseTextEntities text:string parse_mode:TextParseMode = FormattedText; //@description Parses Markdown entities in a human-friendly format, ignoring markup errors. Can be called synchronously -//@text The text to parse. For example, "__italic__ ~~strikethrough~~ ||spoiler|| **bold** `code` ```pre``` __[italic__ text_url](telegram.org) __italic**bold italic__bold**" +//@text The text to parse. For example, "__italic__ ~~strikethrough~~ **bold** `code` ```pre``` __[italic__ text_url](telegram.org) __italic**bold italic__bold**" parseMarkdown text:formattedText = FormattedText; //@description Replaces text entities with Markdown formatting in a human-friendly format. Entities that can't be represented in Markdown unambiguously are kept as is. Can be called synchronously @text The text @@ -4843,19 +4567,14 @@ getJsonValue json:string = JsonValue; //@description Converts a JsonValue object to corresponding JSON-serialized string. Can be called synchronously @json_value The JsonValue object getJsonString json_value:JsonValue = Text; -//@description Converts a themeParameters object to corresponding JSON-serialized string. Can be called synchronously @theme Theme parameters to convert to JSON -getThemeParametersJsonString theme:themeParameters = Text; - //@description Changes the user answer to a poll. A poll in quiz mode can be answered only once -//@chat_id Identifier of the chat to which the poll belongs -//@message_id Identifier of the message containing the poll +//@chat_id Identifier of the chat to which the poll belongs @message_id Identifier of the message containing the poll //@option_ids 0-based identifiers of answer options, chosen by the user. User can choose more than 1 answer option only is the poll allows multiple answers setPollAnswer chat_id:int53 message_id:int53 option_ids:vector = Ok; //@description Returns users voted for the specified option in a non-anonymous polls. For optimal performance, the number of returned users is chosen by TDLib -//@chat_id Identifier of the chat to which the poll belongs -//@message_id Identifier of the message containing the poll +//@chat_id Identifier of the chat to which the poll belongs @message_id Identifier of the message containing the poll //@option_id 0-based identifier of the answer option //@offset Number of users to skip in the result; must be non-negative //@limit The maximum number of users to be returned; must be positive and can't be greater than 50. For optimal performance, the number of returned users is chosen by TDLib and can be smaller than the specified limit, even if the end of the voter list has not been reached @@ -4879,7 +4598,7 @@ getLoginUrlInfo chat_id:int53 message_id:int53 button_id:int53 = LoginUrlInfo; //@description Returns an HTTP URL which can be used to automatically authorize the user on a website after clicking an inline button of type inlineKeyboardButtonTypeLoginUrl. //-Use the method getLoginUrlInfo to find whether a prior user confirmation is needed. If an error is returned, then the button must be handled as an ordinary URL button //@chat_id Chat identifier of the message with the button @message_id Message identifier of the message with the button @button_id Button identifier -//@allow_write_access Pass true to allow the bot to send messages to the current user +//@allow_write_access True, if the user allowed the bot to send them messages getLoginUrl chat_id:int53 message_id:int53 button_id:int53 allow_write_access:Bool = HttpUrl; @@ -4893,7 +4612,7 @@ getInlineQueryResults bot_user_id:int53 chat_id:int53 user_location:location que //@description Sets the result of an inline query; for bots only //@inline_query_id Identifier of the inline query -//@is_personal Pass true if results may be cached and returned only for the user that sent the query. By default, results may be returned to any user who sends the same query +//@is_personal True, if the result of the query can be cached for the specified user //@results The results of the query //@cache_time Allowed time to cache the results of the query, in seconds //@next_offset Offset for the next inline query; pass an empty string if there are no more results @@ -4902,38 +4621,10 @@ getInlineQueryResults bot_user_id:int53 chat_id:int53 user_location:location que answerInlineQuery inline_query_id:int64 is_personal:Bool results:vector cache_time:int32 next_offset:string switch_pm_text:string switch_pm_parameter:string = Ok; -//@description Returns an HTTPS URL of a web app to open after keyboardButtonTypeWebApp button is pressed -//@bot_user_id Identifier of the target bot -//@url The URL from the keyboardButtonTypeWebApp button -//@theme Preferred web app theme; pass null to use the default theme -getWebAppUrl bot_user_id:int53 url:string theme:themeParameters = HttpUrl; - -//@description Sends data received from a keyboardButtonTypeWebApp web app to a bot -//@bot_user_id Identifier of the target bot @button_text Text of the keyboardButtonTypeWebApp button, which opened the web app @data Received data -sendWebAppData bot_user_id:int53 button_text:string data:string = Ok; - -//@description Informs TDLib that a web app is being opened from attachment menu, a botMenuButton button, an internalLinkTypeAttachmentMenuBot link, or an inlineKeyboardButtonTypeWebApp button. -//-For each bot, a confirmation alert about data sent to the bot must be shown once -//@chat_id Identifier of the chat in which the web app is opened. Web apps can be opened only in private chats for now -//@bot_user_id Identifier of the bot, providing the web app -//@url The URL from an inlineKeyboardButtonTypeWebApp button, a botMenuButton button, or an internalLinkTypeAttachmentMenuBot link, or an empty string otherwise -//@theme Preferred web app theme; pass null to use the default theme -//@reply_to_message_id Identifier of the replied message for the message sent by the web app; 0 if none -openWebApp chat_id:int53 bot_user_id:int53 url:string theme:themeParameters reply_to_message_id:int53 = WebAppInfo; - -//@description Informs TDLib that a previously opened web app was closed @web_app_launch_id Identifier of web app launch, received from openWebApp -closeWebApp web_app_launch_id:int64 = Ok; - -//@description Sets the result of interaction with a web app and sends corresponding message on behalf of the user to the chat from which the query originated; for bots only -//@web_app_query_id Identifier of the web app query -//@result The result of the query -answerWebAppQuery web_app_query_id:string result:InputInlineQueryResult = SentWebAppMessage; - - //@description Sends a callback query to a bot and returns an answer. Returns an error with code 502 if the bot fails to answer the query before the query timeout expires @chat_id Identifier of the chat with the message @message_id Identifier of the message from which the query originated @payload Query payload getCallbackQueryAnswer chat_id:int53 message_id:int53 payload:CallbackQueryPayload = CallbackQueryAnswer; -//@description Sets the result of a callback query; for bots only @callback_query_id Identifier of the callback query @text Text of the answer @show_alert Pass true to show an alert to the user instead of a toast notification @url URL to be opened @cache_time Time during which the result of the query can be cached, in seconds +//@description Sets the result of a callback query; for bots only @callback_query_id Identifier of the callback query @text Text of the answer @show_alert If true, an alert must be shown to the user instead of a toast notification @url URL to be opened @cache_time Time during which the result of the query can be cached, in seconds answerCallbackQuery callback_query_id:int64 text:string show_alert:Bool url:string cache_time:int32 = Ok; @@ -4944,12 +4635,11 @@ answerShippingQuery shipping_query_id:int64 shipping_options:vector force_read:Bool = Ok; //@description Informs TDLib that the message content has been opened (e.g., the user has opened a photo, video, document, location or venue, or has listened to an audio file or voice note message). An updateMessageContentOpened update will be generated if something has changed @chat_id Chat identifier of the message @message_id Identifier of the message with the opened content @@ -4996,24 +4686,21 @@ getInternalLinkType link:string = InternalLinkType; getExternalLinkInfo link:string = LoginUrlInfo; //@description Returns an HTTP URL which can be used to automatically authorize the current user on a website after clicking an HTTP link. Use the method getExternalLinkInfo to find whether a prior user confirmation is needed -//@link The HTTP link @allow_write_access Pass true if the current user allowed the bot, returned in getExternalLinkInfo, to send them messages +//@link The HTTP link @allow_write_access True, if the current user allowed the bot, returned in getExternalLinkInfo, to send them messages getExternalLink link:string allow_write_access:Bool = HttpUrl; //@description Marks all mentions in a chat as read @chat_id Chat identifier readAllChatMentions chat_id:int53 = Ok; -//@description Marks all reactions in a chat as read @chat_id Chat identifier -readAllChatReactions chat_id:int53 = Ok; - -//@description Returns an existing chat corresponding to a given user @user_id User identifier @force Pass true to create the chat without a network request. In this case all information about the chat except its type, title and photo can be incorrect +//@description Returns an existing chat corresponding to a given user @user_id User identifier @force If true, the chat will be created without network request. In this case all information about the chat except its type, title and photo can be incorrect createPrivateChat user_id:int53 force:Bool = Chat; -//@description Returns an existing chat corresponding to a known basic group @basic_group_id Basic group identifier @force Pass true to create the chat without a network request. In this case all information about the chat except its type, title and photo can be incorrect +//@description Returns an existing chat corresponding to a known basic group @basic_group_id Basic group identifier @force If true, the chat will be created without network request. In this case all information about the chat except its type, title and photo can be incorrect createBasicGroupChat basic_group_id:int53 force:Bool = Chat; -//@description Returns an existing chat corresponding to a known supergroup or channel @supergroup_id Supergroup or channel identifier @force Pass true to create the chat without a network request. In this case all information about the chat except its type, title and photo can be incorrect +//@description Returns an existing chat corresponding to a known supergroup or channel @supergroup_id Supergroup or channel identifier @force If true, the chat will be created without network request. In this case all information about the chat except its type, title and photo can be incorrect createSupergroupChat supergroup_id:int53 force:Bool = Chat; //@description Returns an existing chat corresponding to a known secret chat @secret_chat_id Secret chat identifier @@ -5024,10 +4711,10 @@ createNewBasicGroupChat user_ids:vector title:string = Chat; //@description Creates a new supergroup or channel and sends a corresponding messageSupergroupChatCreate. Returns the newly created chat //@title Title of the new chat; 1-128 characters -//@is_channel Pass true to create a channel chat +//@is_channel True, if a channel chat needs to be created //@param_description Chat description; 0-255 characters //@location Chat location if a location-based supergroup is being created; pass null to create an ordinary supergroup chat -//@for_import Pass true to create a supergroup for importing messages using importMessage +//@for_import True, if the supergroup is created for importing messages using importMessage createNewSupergroupChat title:string is_channel:Bool description:string location:chatLocation for_import:Bool = Chat; //@description Creates a new secret chat. Returns the newly created chat @user_id Identifier of the target user @@ -5075,8 +4762,8 @@ setChatTitle chat_id:int53 title:string = Ok; setChatPhoto chat_id:int53 photo:InputChatPhoto = Ok; //@description Changes the message TTL in a chat. Requires can_delete_messages administrator right in basic groups, supergroups and channels -//-Message TTL can't be changed in a chat with the current user (Saved Messages) and the chat 777000 (Telegram). -//@chat_id Chat identifier @ttl New TTL value, in seconds; unless the chat is secret, it must be from 0 up to 365 * 86400 and be divisible by 86400 +//-Message TTL can't be changed in a chat with the current user (Saved Messages) and the chat 777000 (Telegram) +//@chat_id Chat identifier @ttl New TTL value, in seconds; must be one of 0, 86400, 7 * 86400, or 31 * 86400 unless the chat is secret setChatMessageTtl chat_id:int53 ttl:int32 = Ok; //@description Changes the chat members permissions. Supported only for basic groups and supergroups. Requires can_restrict_members administrator right @@ -5094,7 +4781,7 @@ setChatDraftMessage chat_id:int53 message_thread_id:int53 draft_message:draftMes setChatNotificationSettings chat_id:int53 notification_settings:chatNotificationSettings = Ok; //@description Changes the ability of users to save, forward, or copy chat content. Supported only for basic groups, supergroups and channels. Requires owner privileges -//@chat_id Chat identifier @has_protected_content New value of has_protected_content +//@chat_id Chat identifier @has_protected_content True, if chat content can't be saved locally, forwarded, or copied toggleChatHasProtectedContent chat_id:int53 has_protected_content:Bool = Ok; //@description Changes the marked as unread state of a chat @chat_id Chat identifier @is_marked_as_unread New value of is_marked_as_unread @@ -5103,9 +4790,6 @@ toggleChatIsMarkedAsUnread chat_id:int53 is_marked_as_unread:Bool = Ok; //@description Changes the value of the default disable_notification parameter, used when a message is sent to a chat @chat_id Chat identifier @default_disable_notification New value of default_disable_notification toggleChatDefaultDisableNotification chat_id:int53 default_disable_notification:Bool = Ok; -//@description Changes reactions, available in a chat. Available for basic groups, supergroups, and channels. Requires can_change_info administrator right @chat_id Identifier of the chat @available_reactions New list of reactions, available in the chat. All reactions must be active -setChatAvailableReactions chat_id:int53 available_reactions:vector = Ok; - //@description Changes application-specific data associated with a chat @chat_id Chat identifier @client_data New value of client_data setChatClientData chat_id:int53 client_data:string = Ok; @@ -5125,8 +4809,8 @@ setChatSlowModeDelay chat_id:int53 slow_mode_delay:int32 = Ok; //@description Pins a message in a chat; requires can_pin_messages rights or can_edit_messages rights in the channel //@chat_id Identifier of the chat //@message_id Identifier of the new pinned message -//@disable_notification Pass true to disable notification about the pinned message. Notifications are always disabled in channels and private chats -//@only_for_self Pass true to pin the message only for self; private chats only +//@disable_notification True, if there must be no notification about the pinned message. Notifications are always disabled in channels and private chats +//@only_for_self True, if the message needs to be pinned for one side only; private chats only pinChatMessage chat_id:int53 message_id:int53 disable_notification:Bool only_for_self:Bool = Ok; //@description Removes a pinned message from a chat; requires can_pin_messages rights in the group or can_edit_messages rights in the channel @chat_id Identifier of the chat @message_id Identifier of the removed pinned message @@ -5182,26 +4866,13 @@ searchChatMembers chat_id:int53 query:string limit:int32 filter:ChatMembersFilte getChatAdministrators chat_id:int53 = ChatAdministrators; -//@description Clears message drafts in all chats @exclude_secret_chats Pass true to keep local message drafts in secret chats +//@description Clears draft messages in all chats @exclude_secret_chats If true, local draft messages in secret chats will not be cleared clearAllDraftMessages exclude_secret_chats:Bool = Ok; -//@description Returns saved notification sound by its identifier. Returns a 404 error if there is no saved notification sound with the specified identifier @notification_sound_id Identifier of the notification sound -getSavedNotificationSound notification_sound_id:int64 = NotificationSounds; - -//@description Returns list of saved notification sounds. If a sound isn't in the list, then default sound needs to be used -getSavedNotificationSounds = NotificationSounds; - -//@description Adds a new notification sound to the list of saved notification sounds. The new notification sound is added to the top of the list. If it is already in the list, it is position isn't changed @sound Notification sound file to add -addSavedNotificationSound sound:InputFile = NotificationSound; - -//@description Removes a notification sound from the list of saved notification sounds @notification_sound_id Identifier of the notification sound -removeSavedNotificationSound notification_sound_id:int64 = Ok; - - //@description Returns list of chats with non-default notification settings //@scope If specified, only chats from the scope will be returned; pass null to return chats from all scopes -//@compare_sound Pass true to include in the response chats with only non-default sound +//@compare_sound If true, also chats with non-default sound will be returned getChatNotificationSettingsExceptions scope:NotificationSettingsScope compare_sound:Bool = Chats; //@description Returns the notification settings for chats of a given type @scope Types of chats for which to return the notification settings information @@ -5210,31 +4881,25 @@ getScopeNotificationSettings scope:NotificationSettingsScope = ScopeNotification //@description Changes notification settings for chats of a given type @scope Types of chats for which to change the notification settings @notification_settings The new notification settings for the given scope setScopeNotificationSettings scope:NotificationSettingsScope notification_settings:scopeNotificationSettings = Ok; -//@description Resets all notification settings to their default values. By default, all chats are unmuted and message previews are shown +//@description Resets all notification settings to their default values. By default, all chats are unmuted, the sound is set to "default" and message previews are shown resetAllNotificationSettings = Ok; -//@description Changes the pinned state of a chat. There can be up to GetOption("pinned_chat_count_max")/GetOption("pinned_archived_chat_count_max") pinned non-secret chats and the same number of secret chats in the main/archive chat list -//@chat_list Chat list in which to change the pinned state of the chat @chat_id Chat identifier @is_pinned Pass true to pin the chat; pass false to unpin it +//@description Changes the pinned state of a chat. There can be up to GetOption("pinned_chat_count_max")/GetOption("pinned_archived_chat_count_max") pinned non-secret chats and the same number of secret chats in the main/arhive chat list +//@chat_list Chat list in which to change the pinned state of the chat @chat_id Chat identifier @is_pinned True, if the chat is pinned toggleChatIsPinned chat_list:ChatList chat_id:int53 is_pinned:Bool = Ok; //@description Changes the order of pinned chats @chat_list Chat list in which to change the order of pinned chats @chat_ids The new list of pinned chats setPinnedChats chat_list:ChatList chat_ids:vector = Ok; -//@description Returns information about a bot that can be added to attachment menu @bot_user_id Bot's user identifier -getAttachmentMenuBot bot_user_id:int53 = AttachmentMenuBot; - -//@description Adds or removes a bot to attachment menu. Bot can be added to attachment menu, only if userTypeBot.can_be_added_to_attachment_menu == true @bot_user_id Bot's user identifier @is_added Pass true to add the bot to attachment menu; pass false to remove the bot from attachment menu -toggleBotIsAddedToAttachmentMenu bot_user_id:int53 is_added:Bool = Ok; - - //@description Downloads a file from the cloud. Download progress and completion of the download will be notified through updateFile updates //@file_id Identifier of the file to download -//@priority Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile/addFileToDownloads was called will be downloaded first +//@priority Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile was called will be downloaded first //@offset The starting position from which the file needs to be downloaded //@limit Number of bytes which need to be downloaded starting from the "offset" position before the download will automatically be canceled; use 0 to download without a limit -//@synchronous Pass true to return response only after the file download has succeeded, has failed, has been canceled, or a new downloadFile request with different offset/limit parameters was sent; pass false to return file state immediately, just after the download has been started +//@synchronous If false, this request returns file state just after the download has been started. If true, this request returns file state only after +//-the download has succeeded, has failed, has been canceled or a new downloadFile request with different offset/limit parameters was sent downloadFile file_id:int32 priority:int32 offset:int32 limit:int32 synchronous:Bool = File; //@description Returns file downloaded prefix size from a given offset, in bytes @file_id Identifier of the file @offset Offset from which downloaded prefix size needs to be calculated @@ -5279,39 +4944,6 @@ readFilePart file_id:int32 offset:int32 count:int32 = FilePart; //@description Deletes a file from the TDLib file cache @file_id Identifier of the file to delete deleteFile file_id:int32 = Ok; -//@description Adds a file from a message to the list of file downloads. Download progress and completion of the download will be notified through updateFile updates. -//-If message database is used, the list of file downloads is persistent across application restarts. The downloading is independent from download using downloadFile, i.e. it continues if downloadFile is canceled or is used to download a part of the file -//@file_id Identifier of the file to download -//@chat_id Chat identifier of the message with the file -//@message_id Message identifier -//@priority Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile/addFileToDownloads was called will be downloaded first -addFileToDownloads file_id:int32 chat_id:int53 message_id:int53 priority:int32 = File; - -//@description Changes pause state of a file in the file download list -//@file_id Identifier of the downloaded file -//@is_paused Pass true if the download is paused -toggleDownloadIsPaused file_id:int32 is_paused:Bool = Ok; - -//@description Changes pause state of all files in the file download list @are_paused Pass true to pause all downloads; pass false to unpause them -toggleAllDownloadsArePaused are_paused:Bool = Ok; - -//@description Removes a file from the file download list @file_id Identifier of the downloaded file @delete_from_cache Pass true to delete the file from the TDLib file cache -removeFileFromDownloads file_id:int32 delete_from_cache:Bool = Ok; - -//@description Removes all files from the file download list -//@only_active Pass true to remove only active downloads, including paused -//@only_completed Pass true to remove only completed downloads -//@delete_from_cache Pass true to delete the file from the TDLib file cache -removeAllFilesFromDownloads only_active:Bool only_completed:Bool delete_from_cache:Bool = Ok; - -//@description Searches for files in the file download list or recently downloaded files from the list -//@query Query to search for; may be empty to return all downloaded files -//@only_active Pass true to search only for active downloads, including paused -//@only_completed Pass true to search only for completed downloads -//@offset Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results -//@limit The maximum number of files to be returned -searchFileDownloads query:string only_active:Bool only_completed:Bool offset:string limit:int32 = FoundFileDownloads; - //@description Returns information about a file with messages exported from another app @message_file_head Beginning of the message file; up to 100 first lines getMessageFileType message_file_head:string = MessageFileType; @@ -5335,7 +4967,7 @@ replacePrimaryChatInviteLink chat_id:int53 = ChatInviteLink; //@name Invite link name; 0-32 characters //@expiration_date Point in time (Unix timestamp) when the link will expire; pass 0 if never //@member_limit The maximum number of chat members that can join the chat via the link simultaneously; 0-99999; pass 0 if not limited -//@creates_join_request Pass true if users joining the chat via the link need to be approved by chat administrators. In this case, member_limit must be 0 +//@creates_join_request True, if the link only creates join request. If true, member_limit must not be specified createChatInviteLink chat_id:int53 name:string expiration_date:int32 member_limit:int32 creates_join_request:Bool = ChatInviteLink; //@description Edits a non-primary invite link for a chat. Available for basic groups, supergroups, and channels. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links @@ -5344,7 +4976,7 @@ createChatInviteLink chat_id:int53 name:string expiration_date:int32 member_limi //@name Invite link name; 0-32 characters //@expiration_date Point in time (Unix timestamp) when the link will expire; pass 0 if never //@member_limit The maximum number of chat members that can join the chat via the link simultaneously; 0-99999; pass 0 if not limited -//@creates_join_request Pass true if users joining the chat via the link need to be approved by chat administrators. In this case, member_limit must be 0 +//@creates_join_request True, if the link only creates join request. If true, member_limit must not be specified editChatInviteLink chat_id:int53 invite_link:string name:string expiration_date:int32 member_limit:int32 creates_join_request:Bool = ChatInviteLink; //@description Returns information about an invite link. Requires administrator privileges and can_invite_users right in the chat to get own links and owner privileges to get other links @@ -5396,17 +5028,17 @@ joinChatByInviteLink invite_link:string = Chat; //@limit The maximum number of requests to join the chat to return getChatJoinRequests chat_id:int53 invite_link:string query:string offset_request:chatJoinRequest limit:int32 = ChatJoinRequests; -//@description Handles a pending join request in a chat @chat_id Chat identifier @user_id Identifier of the user that sent the request @approve Pass true to approve the request; pass false to decline it +//@description Handles a pending join request in a chat @chat_id Chat identifier @user_id Identifier of the user that sent the request @approve True, if the request is approved. Otherwise the request is declived processChatJoinRequest chat_id:int53 user_id:int53 approve:Bool = Ok; //@description Handles all pending join requests for a given link in a chat //@chat_id Chat identifier //@invite_link Invite link for which to process join requests. If empty, all join requests will be processed. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links -//@approve Pass true to approve all requests; pass false to decline them +//@approve True, if the requests are approved. Otherwise the requests are declived processChatJoinRequests chat_id:int53 invite_link:string approve:Bool = Ok; -//@description Creates a new call @user_id Identifier of the user to be called @protocol The call protocols supported by the application @is_video Pass true to create a video call +//@description Creates a new call @user_id Identifier of the user to be called @protocol The call protocols supported by the application @is_video True, if a video call needs to be created createCall user_id:int53 protocol:callProtocol is_video:Bool = CallId; //@description Accepts an incoming call @call_id Call identifier @protocol The call protocols supported by the application @@ -5415,7 +5047,7 @@ acceptCall call_id:int32 protocol:callProtocol = Ok; //@description Sends call signaling data @call_id Call identifier @data The data sendCallSignalingData call_id:int32 data:bytes = Ok; -//@description Discards a call @call_id Call identifier @is_disconnected Pass true if the user was disconnected @duration The call duration, in seconds @is_video Pass true if the call was a video call @connection_id Identifier of the connection used during the call +//@description Discards a call @call_id Call identifier @is_disconnected True, if the user was disconnected @duration The call duration, in seconds @is_video True, if the call was a video call @connection_id Identifier of the connection used during the call discardCall call_id:int32 is_disconnected:Bool duration:int32 is_video:Bool connection_id:int64 = Ok; //@description Sends a call rating @call_id Call identifier @rating Call rating; 1-5 @comment An optional user comment if the rating is less than 5 @problems List of the exact types of problems with the call, specified by the user @@ -5432,17 +5064,10 @@ getVideoChatAvailableParticipants chat_id:int53 = MessageSenders; setVideoChatDefaultParticipant chat_id:int53 default_participant_id:MessageSender = Ok; //@description Creates a video chat (a group call bound to a chat). Available only for basic groups, supergroups and channels; requires can_manage_video_chats rights -//@chat_id Identifier of a chat in which the video chat will be created +//@chat_id Chat identifier, in which the video chat will be created //@title Group call title; if empty, chat title will be used //@start_date Point in time (Unix timestamp) when the group call is supposed to be started by an administrator; 0 to start the video chat immediately. The date must be at least 10 seconds and at most 8 days in the future -//@is_rtmp_stream Pass true to create an RTMP stream instead of an ordinary video chat; requires creator privileges -createVideoChat chat_id:int53 title:string start_date:int32 is_rtmp_stream:Bool = GroupCallId; - -//@description Returns RTMP URL for streaming to the chat; requires creator privileges @chat_id Chat identifier -getVideoChatRtmpUrl chat_id:int53 = RtmpUrl; - -//@description Replaces the current RTMP URL for streaming to the chat; requires creator privileges @chat_id Chat identifier -replaceVideoChatRtmpUrl chat_id:int53 = RtmpUrl; +createVideoChat chat_id:int53 title:string start_date:int32 = GroupCallId; //@description Returns information about a group call @group_call_id Group call identifier getGroupCall group_call_id:int32 = GroupCall; @@ -5459,8 +5084,8 @@ toggleGroupCallEnabledStartNotification group_call_id:int32 enabled_start_notifi //@participant_id Identifier of a group call participant, which will be used to join the call; pass null to join as self; video chats only //@audio_source_id Caller audio channel synchronization source identifier; received from tgcalls //@payload Group call join payload; received from tgcalls -//@is_muted Pass true to join the call with muted microphone -//@is_my_video_enabled Pass true if the user's video is enabled +//@is_muted True, if the user's microphone is muted +//@is_my_video_enabled True, if the user's video is enabled //@invite_hash If non-empty, invite hash to be used to join the group call without being muted by administrators joinGroupCall group_call_id:int32 participant_id:MessageSender audio_source_id:int32 payload:string is_muted:Bool is_my_video_enabled:Bool invite_hash:string = Text; @@ -5509,11 +5134,11 @@ toggleGroupCallIsMyVideoPaused group_call_id:int32 is_my_video_paused:Bool = Ok; toggleGroupCallIsMyVideoEnabled group_call_id:int32 is_my_video_enabled:Bool = Ok; //@description Informs TDLib that speaking state of a participant of an active group has changed @group_call_id Group call identifier -//@audio_source Group call participant's synchronization audio source identifier, or 0 for the current user @is_speaking Pass true if the user is speaking +//@audio_source Group call participant's synchronization audio source identifier, or 0 for the current user @is_speaking True, if the user is speaking setGroupCallParticipantIsSpeaking group_call_id:int32 audio_source:int32 is_speaking:Bool = Ok; //@description Toggles whether a participant of an active group call is muted, unmuted, or allowed to unmute themselves -//@group_call_id Group call identifier @participant_id Participant identifier @is_muted Pass true to mute the user; pass false to unmute the them +//@group_call_id Group call identifier @participant_id Participant identifier @is_muted Pass true if the user must be muted and false otherwise toggleGroupCallParticipantIsMuted group_call_id:int32 participant_id:MessageSender is_muted:Bool = Ok; //@description Changes volume level of a participant of an active group call. If the current user can manage the group call, then the participant's volume level will be changed for all users with the default volume level @@ -5536,9 +5161,6 @@ leaveGroupCall group_call_id:int32 = Ok; //@description Ends a group call. Requires groupCall.can_be_managed @group_call_id Group call identifier endGroupCall group_call_id:int32 = Ok; -//@description Returns information about available group call streams @group_call_id Group call identifier -getGroupCallStreams group_call_id:int32 = GroupCallStreams; - //@description Returns a file with a segment of a group call stream in a modified OGG format for audio or MPEG-4 format for video //@group_call_id Group call identifier //@time_offset Point in time when the stream segment begins; Unix timestamp in milliseconds @@ -5553,17 +5175,17 @@ toggleMessageSenderIsBlocked sender_id:MessageSender is_blocked:Bool = Ok; //@description Blocks an original sender of a message in the Replies chat //@message_id The identifier of an incoming message in the Replies chat -//@delete_message Pass true to delete the message -//@delete_all_messages Pass true to delete all messages from the same sender -//@report_spam Pass true to report the sender to the Telegram moderators +//@delete_message Pass true if the message must be deleted +//@delete_all_messages Pass true if all messages from the same sender must be deleted +//@report_spam Pass true if the sender must be reported to the Telegram moderators blockMessageSenderFromReplies message_id:int53 delete_message:Bool delete_all_messages:Bool report_spam:Bool = Ok; //@description Returns users and chats that were blocked by the current user @offset Number of users and chats to skip in the result; must be non-negative @limit The maximum number of users and chats to return; up to 100 getBlockedMessageSenders offset:int32 limit:int32 = MessageSenders; -//@description Adds a user to the contact list or edits an existing contact by their user identifier @contact The contact to add or edit; phone number may be empty and needs to be specified only if known, vCard is ignored -//@share_phone_number Pass true to share the current user's phone number with the new contact. A corresponding rule to userPrivacySettingShowPhoneNumber will be added if needed. Use the field userFullInfo.need_phone_number_privacy_exception to check whether the current user needs to be asked to share their phone number +//@description Adds a user to the contact list or edits an existing contact by their user identifier @contact The contact to add or edit; phone number can be empty and needs to be specified only if known, vCard is ignored +//@share_phone_number True, if the new contact needs to be allowed to see current user's phone number. A corresponding rule to userPrivacySettingShowPhoneNumber will be added if needed. Use the field userFullInfo.need_phone_number_privacy_exception to check whether the current user needs to be asked to share their phone number addContact contact:contact share_phone_number:Bool = Ok; //@description Adds new contacts or edits existing contacts by their phone numbers; contacts' user identifiers are ignored @contacts The list of contacts to import or edit; contacts' vCard are ignored and are not imported @@ -5589,9 +5211,6 @@ changeImportedContacts contacts:vector = ImportedContacts; clearImportedContacts = Ok; -//@description Searches a user by their phone number @phone_number Phone number to search for -searchUserByPhoneNumber phone_number:string = User; - //@description Shares the phone number of the current user with a mutual contact. Supposed to be called when the user clicks on chatActionBarSharePhoneNumber @user_id Identifier of the user with whom to share the phone number. The user must be a mutual contact sharePhoneNumber user_id:int53 = Ok; @@ -5667,7 +5286,7 @@ removeFavoriteSticker sticker:InputFile = Ok; //@description Returns emoji corresponding to a sticker. The list is only for informational purposes, because a sticker is always sent with a fixed emoji from the corresponding Sticker object @sticker Sticker file identifier getStickerEmojis sticker:InputFile = Emojis; -//@description Searches for emojis by keywords. Supported only if the file database is enabled @text Text to search for @exact_match Pass true if only emojis, which exactly match the text, needs to be returned @input_language_codes List of possible IETF language tags of the user's input language; may be empty if unknown +//@description Searches for emojis by keywords. Supported only if the file database is enabled @text Text to search for @exact_match True, if only emojis, which exactly match text needs to be returned @input_language_codes List of possible IETF language tags of the user's input language; may be empty if unknown searchEmojis text:string exact_match:Bool input_language_codes:vector = Emojis; //@description Returns an animated emoji corresponding to a given emoji. Returns a 404 error if the emoji has no animated emoji @emoji The emoji @@ -5702,7 +5321,7 @@ removeRecentHashtag hashtag:string = Ok; //@description Returns a web page preview by the text of the message. Do not call this function too often. Returns a 404 error if the web page has no preview @text Message text with formatting getWebPagePreview text:formattedText = WebPage; -//@description Returns an instant view version of a web page if available. Returns a 404 error if the web page has no instant view page @url The web page URL @force_full Pass true to get full instant view for the web page +//@description Returns an instant view version of a web page if available. Returns a 404 error if the web page has no instant view page @url The web page URL @force_full If true, the full instant view for the web page will be returned getWebPageInstantView url:string force_full:Bool = WebPageInstantView; @@ -5737,34 +5356,20 @@ checkChangePhoneNumberCode code:string = Ok; //@description Sets the list of commands supported by the bot for the given user scope and language; for bots only //@scope The scope to which the commands are relevant; pass null to change commands in the default bot command scope -//@language_code A two-letter ISO 639-1 language code. If empty, the commands will be applied to all users from the given scope, for which language there are no dedicated commands +//@language_code A two-letter ISO 639-1 country code. If empty, the commands will be applied to all users from the given scope, for which language there are no dedicated commands //@commands List of the bot's commands setCommands scope:BotCommandScope language_code:string commands:vector = Ok; //@description Deletes commands supported by the bot for the given user scope and language; for bots only //@scope The scope to which the commands are relevant; pass null to delete commands in the default bot command scope -//@language_code A two-letter ISO 639-1 language code or an empty string +//@language_code A two-letter ISO 639-1 country code or an empty string deleteCommands scope:BotCommandScope language_code:string = Ok; //@description Returns the list of commands supported by the bot for the given user scope and language; for bots only //@scope The scope to which the commands are relevant; pass null to get commands in the default bot command scope -//@language_code A two-letter ISO 639-1 language code or an empty string +//@language_code A two-letter ISO 639-1 country code or an empty string getCommands scope:BotCommandScope language_code:string = BotCommands; -//@description Sets menu button for the given user or for all users; for bots only -//@user_id Identifier of the user or 0 to set menu button for all users -//@menu_button New menu button -setMenuButton user_id:int53 menu_button:botMenuButton = Ok; - -//@description Returns menu button set by the bot for the given user; for bots only @user_id Identifier of the user or 0 to get the default menu button -getMenuButton user_id:int53 = BotMenuButton; - -//@description Sets default administrator rights for adding the bot to basic group and supergroup chats; for bots only @default_group_administrator_rights Default administrator rights for adding the bot to basic group and supergroup chats; may be null -setDefaultGroupAdministratorRights default_group_administrator_rights:chatAdministratorRights = Ok; - -//@description Sets default administrator rights for adding the bot to channel chats; for bots only @default_channel_administrator_rights Default administrator rights for adding the bot to channels; may be null -setDefaultChannelAdministratorRights default_channel_administrator_rights:chatAdministratorRights = Ok; - //@description Returns all active sessions of the current user getActiveSessions = Sessions; @@ -5775,10 +5380,10 @@ terminateSession session_id:int64 = Ok; //@description Terminates all other sessions of the current user terminateAllOtherSessions = Ok; -//@description Toggles whether a session can accept incoming calls @session_id Session identifier @can_accept_calls Pass true to allow accepting incoming calls by the session; pass false otherwise +//@description Toggles whether a session can accept incoming calls @session_id Session identifier @can_accept_calls True, if incoming calls can be accepted by the session toggleSessionCanAcceptCalls session_id:int64 can_accept_calls:Bool = Ok; -//@description Toggles whether a session can accept incoming secret chats @session_id Session identifier @can_accept_secret_chats Pass true to allow accepring secret chats by the session; pass false otherwise +//@description Toggles whether a session can accept incoming secret chats @session_id Session identifier @can_accept_secret_chats True, if incoming secret chats can be accepted by the session toggleSessionCanAcceptSecretChats session_id:int64 can_accept_secret_chats:Bool = Ok; //@description Changes the period of inactivity after which sessions will automatically be terminated @inactive_session_ttl_days New number of days of inactivity before sessions will be automatically terminated; 1-366 days @@ -5832,13 +5437,13 @@ getChatEventLog chat_id:int53 query:string from_event_id:int64 limit:int32 filte //@chat_id Chat identifier of the Invoice message //@message_id Message identifier //@theme Preferred payment form theme; pass null to use the default theme -getPaymentForm chat_id:int53 message_id:int53 theme:themeParameters = PaymentForm; +getPaymentForm chat_id:int53 message_id:int53 theme:paymentFormTheme = PaymentForm; //@description Validates the order information provided by a user and returns the available shipping options for a flexible invoice //@chat_id Chat identifier of the Invoice message //@message_id Message identifier //@order_info The order information, provided by the user; pass null if empty -//@allow_save Pass true to save the order information +//@allow_save True, if the order information can be saved validateOrderInfo chat_id:int53 message_id:int53 order_info:orderInfo allow_save:Bool = ValidatedOrderInfo; //@description Sends a filled-out payment form to the bot for final verification @chat_id Chat identifier of the Invoice message @message_id Message identifier @@ -5849,10 +5454,10 @@ sendPaymentForm chat_id:int53 message_id:int53 payment_form_id:int64 order_info_ //@description Returns information about a successful payment @chat_id Chat identifier of the PaymentSuccessful message @message_id Message identifier getPaymentReceipt chat_id:int53 message_id:int53 = PaymentReceipt; -//@description Returns saved order information. Returns a 404 error if there is no saved order information +//@description Returns saved order info, if any getSavedOrderInfo = OrderInfo; -//@description Deletes saved order information +//@description Deletes saved order info deleteSavedOrderInfo = Ok; //@description Deletes saved credentials for all payment provider bots @@ -5863,7 +5468,7 @@ deleteSavedCredentials = Ok; getSupportUser = User; -//@description Returns backgrounds installed by the user @for_dark_theme Pass true to order returned backgrounds for a dark theme +//@description Returns backgrounds installed by the user @for_dark_theme True, if the backgrounds must be ordered for dark theme getBackgrounds for_dark_theme:Bool = Backgrounds; //@description Constructs a persistent HTTP URL for a background @name Background name @type Background type @@ -5875,7 +5480,7 @@ searchBackground name:string = Background; //@description Changes the background selected by the user; adds background to the list of installed backgrounds //@background The input background to use; pass null to create a new filled backgrounds or to remove the current background //@type Background type; pass null to use the default type of the remote background or to remove the current background -//@for_dark_theme Pass true if the background is changed for a dark theme +//@for_dark_theme True, if the background is chosen for dark theme setBackground background:InputBackground type:BackgroundType for_dark_theme:Bool = Background; //@description Removes background from the list of installed backgrounds @background_id The background identifier @@ -5885,7 +5490,7 @@ removeBackground background_id:int64 = Ok; resetBackgrounds = Ok; -//@description Returns information about the current localization target. This is an offline request if only_local is true. Can be called before authorization @only_local Pass true to get only locally available information without sending network requests +//@description Returns information about the current localization target. This is an offline request if only_local is true. Can be called before authorization @only_local If true, returns only locally available information without sending network requests getLocalizationTargetInfo only_local:Bool = LocalizationTargetInfo; //@description Returns information about a language pack. Returned language pack identifier may be different from a provided one. Can be called before authorization @language_pack_id Language pack identifier @@ -5958,7 +5563,7 @@ deleteAccount reason:string = Ok; removeChatActionBar chat_id:int53 = Ok; //@description Reports a chat to the Telegram moderators. A chat can be reported only from the chat action bar, or if chat.can_be_reported -//@chat_id Chat identifier @message_ids Identifiers of reported messages; may be empty to report the whole chat @reason The reason for reporting the chat @text Additional report details; 0-1024 characters +//@chat_id Chat identifier @message_ids Identifiers of reported messages, if any @reason The reason for reporting the chat @text Additional report details; 0-1024 characters reportChat chat_id:int53 message_ids:vector reason:ChatReportReason text:string = Ok; //@description Reports a chat photo to the Telegram moderators. A chat photo can be reported only if chat.can_be_reported @@ -5987,7 +5592,7 @@ getDatabaseStatistics = DatabaseStatistics; //@description Optimizes storage usage, i.e. deletes some files and returns new storage usage statistics. Secret thumbnails can't be deleted //@size Limit on the total size of files after deletion, in bytes. Pass -1 to use the default limit //@ttl Limit on the time that has passed since the last time a file was accessed (or creation time for some filesystems). Pass -1 to use the default limit -//@count Limit on the total number of files after deletion. Pass -1 to use the default limit +//@count Limit on the total count of files after deletion. Pass -1 to use the default limit //@immunity_delay The amount of time after the creation of a file during which it can't be deleted, in seconds. Pass -1 to use the default value //@file_types If non-empty, only files with the given types are considered. By default, all types except thumbnails, profile photos, stickers and wallpapers are deleted //@chat_ids If non-empty, only files from the given chats are considered. Use 0 as chat identifier to delete files not belonging to any chat (e.g., profile photos) @@ -6001,7 +5606,7 @@ optimizeStorage size:int53 ttl:int32 count:int32 immunity_delay:int32 file_types //-Network type is used to check whether the library can use the network at all and also for collecting detailed network data usage statistics @type The new network type; pass null to set network type to networkTypeOther setNetworkType type:NetworkType = Ok; -//@description Returns network data usage statistics. Can be called before authorization @only_current Pass true to get statistics only for the current library launch +//@description Returns network data usage statistics. Can be called before authorization @only_current If true, returns only data for the current library launch getNetworkStatistics only_current:Bool = NetworkStatistics; //@description Adds the specified data to data usage statistics. Can be called before authorization @entry The network statistics entry with the data to be added to statistics @@ -6088,7 +5693,7 @@ setBotUpdatesStatus pending_update_count:int32 error_message:string = Ok; //@description Uploads a file with a sticker; returns the uploaded file @user_id Sticker file owner; ignored for regular users @sticker Sticker file to upload -uploadStickerFile user_id:int53 sticker:inputSticker = File; +uploadStickerFile user_id:int53 sticker:InputSticker = File; //@description Returns a suggested name for a new sticker set with a given title @title Sticker set title; 1-64 characters getSuggestedStickerSetName title:string = Text; @@ -6100,17 +5705,18 @@ checkStickerSetName name:string = CheckStickerSetNameResult; //@user_id Sticker set owner; ignored for regular users //@title Sticker set title; 1-64 characters //@name Sticker set name. Can contain only English letters, digits and underscores. Must end with *"_by_"* (** is case insensitive) for bots; 1-64 characters -//@stickers List of stickers to be added to the set; must be non-empty. All stickers must have the same format. For TGS stickers, uploadStickerFile must be used before the sticker is shown +//@is_masks True, if stickers are masks. Animated stickers can't be masks +//@stickers List of stickers to be added to the set; must be non-empty. All stickers must be of the same type. For animated stickers, uploadStickerFile must be used before the sticker is shown //@source Source of the sticker set; may be empty if unknown -createNewStickerSet user_id:int53 title:string name:string stickers:vector source:string = StickerSet; +createNewStickerSet user_id:int53 title:string name:string is_masks:Bool stickers:vector source:string = StickerSet; //@description Adds a new sticker to a set; for bots only. Returns the sticker set //@user_id Sticker set owner @name Sticker set name @sticker Sticker to add to the set -addStickerToSet user_id:int53 name:string sticker:inputSticker = StickerSet; +addStickerToSet user_id:int53 name:string sticker:InputSticker = StickerSet; //@description Sets a sticker set thumbnail; for bots only. Returns the sticker set //@user_id Sticker set owner @name Sticker set name -//@thumbnail Thumbnail to set in PNG, TGS, or WEBM format; pass null to remove the sticker set thumbnail. Thumbnail format must match the format of stickers in the set +//@thumbnail Thumbnail to set in PNG or TGS format; pass null to remove the sticker set thumbnail. Animated thumbnail must be set for animated sticker sets and only for them setStickerSetThumbnail user_id:int53 name:string thumbnail:InputFile = StickerSet; //@description Changes the position of a sticker in the set to which it belongs; for bots only. The sticker set must have been created by the bot @@ -6121,7 +5727,7 @@ setStickerPositionInSet sticker:InputFile position:int32 = Ok; removeStickerFromSet sticker:InputFile = Ok; -//@description Returns information about a file with a map thumbnail in PNG format. Only map thumbnail files with size less than 1MB can be downloaded @location Location of the map center @zoom Map zoom level; 13-20 @width Map width in pixels before applying scale; 16-1024 @height Map height in pixels before applying scale; 16-1024 @scale Map scale; 1-3 @chat_id Identifier of a chat in which the thumbnail will be shown. Use 0 if unknown +//@description Returns information about a file with a map thumbnail in PNG format. Only map thumbnail files with size less than 1MB can be downloaded @location Location of the map center @zoom Map zoom level; 13-20 @width Map width in pixels before applying scale; 16-1024 @height Map height in pixels before applying scale; 16-1024 @scale Map scale; 1-3 @chat_id Identifier of a chat, in which the thumbnail will be shown. Use 0 if unknown getMapThumbnailFile location:location zoom:int32 width:int32 height:int32 scale:int32 chat_id:int53 = File; @@ -6150,7 +5756,7 @@ getCountryCode = Text; getPhoneNumberInfo phone_number_prefix:string = PhoneNumberInfo; //@description Returns information about a phone number by its prefix synchronously. getCountries must be called at least once after changing localization to the specified language if properly localized country information is expected. Can be called synchronously -//@language_code A two-letter ISO 639-1 language code for country information localization @phone_number_prefix The phone number prefix +//@language_code A two-letter ISO 639-1 country code for country information localization @phone_number_prefix The phone number prefix getPhoneNumberInfoSync language_code:string phone_number_prefix:string = PhoneNumberInfo; //@description Returns the link for downloading official Telegram application to be used when the current user invites friends to Telegram @@ -6167,10 +5773,10 @@ getApplicationConfig = JsonValue; saveApplicationLogEvent type:string chat_id:int53 data:JsonValue = Ok; -//@description Adds a proxy server for network requests. Can be called before authorization @server Proxy server IP address @port Proxy server port @enable Pass true to immediately enable the proxy @type Proxy type +//@description Adds a proxy server for network requests. Can be called before authorization @server Proxy server IP address @port Proxy server port @enable True, if the proxy needs to be enabled @type Proxy type addProxy server:string port:int32 enable:Bool type:ProxyType = Proxy; -//@description Edits an existing proxy server for network requests. Can be called before authorization @proxy_id Proxy identifier @server Proxy server IP address @port Proxy server port @enable Pass true to immediately enable the proxy @type Proxy type +//@description Edits an existing proxy server for network requests. Can be called before authorization @proxy_id Proxy identifier @server Proxy server IP address @port Proxy server port @enable True, if the proxy needs to be enabled @type Proxy type editProxy proxy_id:int32 server:string port:int32 enable:Bool type:ProxyType = Proxy; //@description Enables a proxy. Only one proxy can be enabled at a time. Can be called before authorization @proxy_id Proxy identifier @@ -6239,7 +5845,7 @@ testSquareInt x:int32 = TestInt; //@description Sends a simple network request to the Telegram servers; for testing only. Can be called before authorization testNetwork = Ok; //@description Sends a simple network request to the Telegram servers via proxy; for testing only. Can be called before authorization @server Proxy server IP address @port Proxy server port @type Proxy type -//@dc_id Identifier of a datacenter with which to test connection @timeout The maximum overall timeout for the request +//@dc_id Identifier of a datacenter, with which to test connection @timeout The maximum overall timeout for the request testProxy server:string port:int32 type:ProxyType dc_id:int32 timeout:double = Ok; //@description Forces an updates.getDifference call to the Telegram servers; for testing only testGetDifference = Ok;