@mtkruto/node 0.1.190 → 0.1.200
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/0_errors.d.ts +12 -0
- package/esm/0_errors.js +19 -0
- package/esm/1_utilities.d.ts +1 -1
- package/esm/1_utilities.js +1 -1
- package/esm/2_tl.d.ts +6 -6
- package/esm/2_tl.js +6 -6
- package/esm/3_storage.d.ts +5 -5
- package/esm/3_storage.js +5 -5
- package/esm/3_types.d.ts +6 -5
- package/esm/3_types.js +6 -5
- package/esm/4_constants.d.ts +2 -2
- package/esm/4_constants.js +2 -2
- package/esm/5_client.d.ts +1 -1
- package/esm/5_client.js +1 -1
- package/esm/client/0_client_abstract.js +3 -2
- package/esm/client/0_html.js +4 -3
- package/esm/client/0_markdown.js +6 -5
- package/esm/client/0_params.d.ts +7 -1
- package/esm/client/0_types.d.ts +1 -2
- package/esm/client/0_types.js +1 -2
- package/esm/client/0_utilities.d.ts +0 -3
- package/esm/client/0_utilities.js +2 -21
- package/esm/client/1_business_connection_manager.d.ts +11 -0
- package/esm/client/1_business_connection_manager.js +47 -0
- package/esm/client/1_client_encrypted.js +1 -1
- package/esm/client/1_client_plain.js +3 -4
- package/esm/client/1_composer.js +3 -2
- package/esm/client/1_file_manager.js +4 -4
- package/esm/client/1_update_manager.d.ts +8 -1
- package/esm/client/1_update_manager.js +88 -8
- package/esm/client/2_message_manager.d.ts +7 -6
- package/esm/client/2_message_manager.js +89 -74
- package/esm/client/3_chat_list_manager.js +3 -2
- package/esm/client/3_story_manager.js +2 -1
- package/esm/client/4_client.d.ts +422 -421
- package/esm/client/4_client.js +578 -520
- package/esm/mod.d.ts +1 -0
- package/esm/mod.js +1 -0
- package/esm/storage/0_storage.d.ts +5 -0
- package/esm/storage/0_storage.js +20 -0
- package/esm/storage/{1_storage_indexed_db.js → 2_storage_indexed_db.js} +1 -1
- package/esm/storage/{1_storage_local_storage.js → 2_storage_local_storage.js} +1 -1
- package/{script/storage/1_storage_memory.d.ts → esm/storage/2_storage_memory.d.ts} +1 -4
- package/esm/storage/{1_storage_memory.js → 2_storage_memory.js} +8 -28
- package/esm/storage/{1_storage_session_storage.js → 2_storage_session_storage.js} +1 -1
- package/esm/tl/2_types.d.ts +1071 -183
- package/esm/tl/2_types.js +2916 -464
- package/esm/tl/3_functions.d.ts +381 -17
- package/esm/tl/3_functions.js +1002 -120
- package/{script/tl/4_tl_writer.d.ts → esm/tl/5_tl_writer.d.ts} +1 -1
- package/{script/tl/4_rpc_result.d.ts → esm/tl/6_rpc_result.d.ts} +1 -1
- package/esm/tl/{4_rpc_result.js → 6_rpc_result.js} +1 -1
- package/esm/tl/{6_message.d.ts → 7_message.d.ts} +2 -2
- package/esm/tl/{6_message.js → 7_message.js} +3 -3
- package/esm/tl/{7_message_container.d.ts → 8_message_container.d.ts} +1 -1
- package/esm/tl/{7_message_container.js → 8_message_container.js} +3 -3
- package/esm/types/0_chat_photo.d.ts +1 -0
- package/esm/types/0_chat_photo.js +8 -5
- package/esm/types/0_message_entity.d.ts +1 -1
- package/esm/types/0_thumbnail.js +1 -1
- package/esm/types/1_bot_command_scope.d.ts +1 -1
- package/esm/types/1_photo.js +2 -2
- package/esm/types/1_story_privacy.d.ts +1 -1
- package/esm/types/2_business_connection.d.ts +11 -0
- package/esm/types/2_business_connection.js +12 -0
- package/esm/types/2_chat_member.d.ts +1 -1
- package/esm/types/2_chosen_inline_result.d.ts +1 -1
- package/esm/types/2_game.js +1 -1
- package/esm/types/2_inline_keyboard_button.d.ts +1 -1
- package/esm/types/2_inline_query.d.ts +1 -1
- package/esm/types/2_invite_link.d.ts +1 -1
- package/esm/types/2_message_reaction_count.d.ts +1 -1
- package/esm/types/2_message_reactions.d.ts +1 -1
- package/esm/types/2_story_content.js +1 -1
- package/{script/types/1_story_interactive_area.d.ts → esm/types/2_story_interactive_area.d.ts} +2 -2
- package/esm/types/{1_story_interactive_area.js → 2_story_interactive_area.js} +1 -1
- package/esm/types/3_chat_member_updated.d.ts +1 -1
- package/esm/types/3_reply_markup.d.ts +1 -1
- package/esm/types/3_story.d.ts +2 -2
- package/esm/types/3_story.js +1 -1
- package/esm/types/4_inline_query_result.d.ts +1 -1
- package/esm/types/4_inline_query_result.js +1 -1
- package/esm/types/4_message.d.ts +9 -3
- package/esm/types/4_message.js +22 -5
- package/esm/types/5_callback_query.d.ts +1 -1
- package/esm/types/5_callback_query.js +2 -1
- package/esm/types/5_chat.d.ts +1 -1
- package/esm/types/6_update.d.ts +12 -2
- package/esm/types/{0__file_id.js → _file_id.js} +2 -1
- package/package.json +1 -1
- package/script/0_errors.d.ts +12 -0
- package/script/0_errors.js +27 -0
- package/script/1_utilities.d.ts +1 -1
- package/script/1_utilities.js +1 -1
- package/script/2_tl.d.ts +6 -6
- package/script/2_tl.js +6 -6
- package/script/3_storage.d.ts +5 -5
- package/script/3_storage.js +5 -5
- package/script/3_types.d.ts +6 -5
- package/script/3_types.js +6 -5
- package/script/4_constants.d.ts +2 -2
- package/script/4_constants.js +2 -2
- package/script/5_client.d.ts +1 -1
- package/script/5_client.js +1 -1
- package/script/client/0_client_abstract.js +3 -2
- package/script/client/0_html.js +4 -3
- package/script/client/0_markdown.js +6 -5
- package/script/client/0_params.d.ts +7 -1
- package/script/client/0_types.d.ts +1 -2
- package/script/client/0_types.js +0 -4
- package/script/client/0_utilities.d.ts +0 -3
- package/script/client/0_utilities.js +3 -24
- package/script/client/1_business_connection_manager.d.ts +11 -0
- package/script/client/1_business_connection_manager.js +51 -0
- package/script/client/1_client_encrypted.js +2 -2
- package/script/client/1_client_plain.js +3 -4
- package/script/client/1_composer.js +3 -2
- package/script/client/1_file_manager.js +5 -5
- package/script/client/1_update_manager.d.ts +8 -1
- package/script/client/1_update_manager.js +88 -8
- package/script/client/2_message_manager.d.ts +7 -6
- package/script/client/2_message_manager.js +88 -73
- package/script/client/3_chat_list_manager.js +3 -2
- package/script/client/3_story_manager.js +2 -1
- package/script/client/4_client.d.ts +422 -421
- package/script/client/4_client.js +578 -520
- package/script/mod.d.ts +1 -0
- package/script/mod.js +1 -0
- package/script/storage/0_storage.d.ts +5 -0
- package/script/storage/0_storage.js +20 -0
- package/script/storage/{1_storage_indexed_db.js → 2_storage_indexed_db.js} +7 -7
- package/script/storage/{1_storage_local_storage.js → 2_storage_local_storage.js} +10 -10
- package/{esm/storage/1_storage_memory.d.ts → script/storage/2_storage_memory.d.ts} +1 -4
- package/script/storage/{1_storage_memory.js → 2_storage_memory.js} +12 -32
- package/script/storage/{1_storage_session_storage.js → 2_storage_session_storage.js} +10 -10
- package/script/tl/2_types.d.ts +1071 -183
- package/script/tl/2_types.js +3028 -504
- package/script/tl/3_functions.d.ts +381 -17
- package/script/tl/3_functions.js +1047 -143
- package/{esm/tl/4_tl_writer.d.ts → script/tl/5_tl_writer.d.ts} +1 -1
- package/{esm/tl/4_rpc_result.d.ts → script/tl/6_rpc_result.d.ts} +1 -1
- package/script/tl/{4_rpc_result.js → 6_rpc_result.js} +2 -2
- package/script/tl/{6_message.d.ts → 7_message.d.ts} +2 -2
- package/script/tl/{6_message.js → 7_message.js} +8 -8
- package/script/tl/{7_message_container.d.ts → 8_message_container.d.ts} +1 -1
- package/script/tl/{7_message_container.js → 8_message_container.js} +7 -7
- package/script/types/0_chat_photo.d.ts +1 -0
- package/script/types/0_chat_photo.js +16 -13
- package/script/types/0_message_entity.d.ts +1 -1
- package/script/types/0_thumbnail.js +6 -6
- package/script/types/1_bot_command_scope.d.ts +1 -1
- package/script/types/1_photo.js +7 -7
- package/script/types/1_story_privacy.d.ts +1 -1
- package/script/types/2_business_connection.d.ts +11 -0
- package/script/types/2_business_connection.js +16 -0
- package/script/types/2_chat_member.d.ts +1 -1
- package/script/types/2_chosen_inline_result.d.ts +1 -1
- package/script/types/2_game.js +3 -3
- package/script/types/2_inline_keyboard_button.d.ts +1 -1
- package/script/types/2_inline_query.d.ts +1 -1
- package/script/types/2_invite_link.d.ts +1 -1
- package/script/types/2_message_reaction_count.d.ts +1 -1
- package/script/types/2_message_reactions.d.ts +1 -1
- package/script/types/2_story_content.js +4 -4
- package/{esm/types/1_story_interactive_area.d.ts → script/types/2_story_interactive_area.d.ts} +2 -2
- package/script/types/{1_story_interactive_area.js → 2_story_interactive_area.js} +2 -2
- package/script/types/3_chat_member_updated.d.ts +1 -1
- package/script/types/3_reply_markup.d.ts +1 -1
- package/script/types/3_story.d.ts +2 -2
- package/script/types/3_story.js +2 -2
- package/script/types/4_inline_query_result.d.ts +1 -1
- package/script/types/4_inline_query_result.js +2 -2
- package/script/types/4_message.d.ts +9 -3
- package/script/types/4_message.js +37 -20
- package/script/types/5_callback_query.d.ts +1 -1
- package/script/types/5_callback_query.js +2 -1
- package/script/types/5_chat.d.ts +1 -1
- package/script/types/6_update.d.ts +12 -2
- package/script/types/{0__file_id.js → _file_id.js} +2 -1
- /package/esm/storage/{0_utilities.d.ts → 1_utilities.d.ts} +0 -0
- /package/esm/storage/{0_utilities.js → 1_utilities.js} +0 -0
- /package/esm/storage/{1_storage_indexed_db.d.ts → 2_storage_indexed_db.d.ts} +0 -0
- /package/esm/storage/{1_storage_local_storage.d.ts → 2_storage_local_storage.d.ts} +0 -0
- /package/esm/storage/{1_storage_session_storage.d.ts → 2_storage_session_storage.d.ts} +0 -0
- /package/esm/tl/{3_tl_reader.d.ts → 4_tl_reader.d.ts} +0 -0
- /package/esm/tl/{3_tl_reader.js → 4_tl_reader.js} +0 -0
- /package/esm/tl/{4_tl_writer.js → 5_tl_writer.js} +0 -0
- /package/esm/types/{0_venue.d.ts → 1_venue.d.ts} +0 -0
- /package/esm/types/{0_venue.js → 1_venue.js} +0 -0
- /package/esm/types/{0__file_id.d.ts → _file_id.d.ts} +0 -0
- /package/esm/types/{1__getters.d.ts → _getters.d.ts} +0 -0
- /package/esm/types/{1__getters.js → _getters.js} +0 -0
- /package/script/storage/{0_utilities.d.ts → 1_utilities.d.ts} +0 -0
- /package/script/storage/{0_utilities.js → 1_utilities.js} +0 -0
- /package/script/storage/{1_storage_indexed_db.d.ts → 2_storage_indexed_db.d.ts} +0 -0
- /package/script/storage/{1_storage_local_storage.d.ts → 2_storage_local_storage.d.ts} +0 -0
- /package/script/storage/{1_storage_session_storage.d.ts → 2_storage_session_storage.d.ts} +0 -0
- /package/script/tl/{3_tl_reader.d.ts → 4_tl_reader.d.ts} +0 -0
- /package/script/tl/{3_tl_reader.js → 4_tl_reader.js} +0 -0
- /package/script/tl/{4_tl_writer.js → 5_tl_writer.js} +0 -0
- /package/script/types/{0_venue.d.ts → 1_venue.d.ts} +0 -0
- /package/script/types/{0_venue.js → 1_venue.js} +0 -0
- /package/script/types/{0__file_id.d.ts → _file_id.d.ts} +0 -0
- /package/script/types/{1__getters.d.ts → _getters.d.ts} +0 -0
- /package/script/types/{1__getters.js → _getters.js} +0 -0
package/script/tl/2_types.js
CHANGED
|
@@ -1,41 +1,42 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
16
|
-
exports.
|
|
17
|
-
exports.
|
|
18
|
-
exports.
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
21
|
-
exports.
|
|
22
|
-
exports.
|
|
23
|
-
exports.
|
|
24
|
-
exports.
|
|
25
|
-
exports.
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.
|
|
31
|
-
exports.
|
|
32
|
-
exports.
|
|
33
|
-
exports.
|
|
34
|
-
exports.
|
|
35
|
-
exports.
|
|
36
|
-
exports.
|
|
37
|
-
exports.
|
|
38
|
-
exports.
|
|
3
|
+
exports._ChatPhoto_ = exports._ChatParticipants_ = exports._ChatParticipant_ = exports._ChatFull_ = exports._Chat_ = exports._UserStatus_ = exports._UserProfilePhoto_ = exports._User_ = exports._storage_FileType_ = exports._Peer_ = exports._InputPhoto_ = exports._InputGeoPoint_ = exports._InputChatPhoto_ = exports._InputMedia_ = exports._InputFile_ = exports._InputContact_ = exports._InputUser_ = exports._InputPeer_ = exports._InputFileLocation_ = exports._help_ConfigSimple_ = exports._AccessPointRule_ = exports._IpPort_ = exports._Error_ = exports._True_ = exports._HttpWait_ = exports._DestroyAuthKeyRes_ = exports._MsgDetailedInfo_ = exports._MsgsAllInfo_ = exports._MsgsStateInfo_ = exports._MsgsStateReq_ = exports._MsgResendReq_ = exports._BadMsgNotification_ = exports._MsgsAck_ = exports._Object_ = exports._NewSession_ = exports._DestroySessionRes_ = exports._Pong_ = exports._FutureSalts_ = exports._FutureSalt_ = exports._RpcDropAnswer_ = exports._RpcError_ = exports._BindAuthKeyInner_ = exports._Set_client_DH_params_answer_ = exports._Client_DH_Inner_Data_ = exports._Server_DH_inner_data_ = exports._Server_DH_Params_ = exports._P_Q_inner_data_ = exports._ResPQ_ = exports.TypeX_ = exports.Type_ = void 0;
|
|
4
|
+
exports._Document_ = exports._InputDocument_ = exports._messages_SentEncryptedMessage_ = exports._messages_DhConfig_ = exports._EncryptedMessage_ = exports._InputEncryptedFile_ = exports._EncryptedFile_ = exports._InputEncryptedChat_ = exports._EncryptedChat_ = exports._help_InviteText_ = exports._help_AppUpdate_ = exports._NearestDc_ = exports._Config_ = exports._DcOption_ = exports._upload_File_ = exports._photos_Photo_ = exports._photos_Photos_ = exports._Updates_ = exports._updates_Difference_ = exports._updates_State_ = exports._Update_ = exports._MessagesFilter_ = exports._messages_AffectedHistory_ = exports._messages_ChatFull_ = exports._messages_Chats_ = exports._messages_Messages_ = exports._messages_Dialogs_ = exports._contacts_Blocked_ = exports._contacts_ImportedContacts_ = exports._contacts_Contacts_ = exports._ContactStatus_ = exports._ImportedContact_ = exports._Contact_ = exports._UserFull_ = exports._ReportReason_ = exports._WallPaper_ = exports._PeerSettings_ = exports._PeerNotifySettings_ = exports._InputPeerNotifySettings_ = exports._InputNotifyPeer_ = exports._auth_ExportedAuthorization_ = exports._auth_Authorization_ = exports._auth_SentCode_ = exports._GeoPoint_ = exports._PhotoSize_ = exports._Photo_ = exports._Dialog_ = exports._MessageAction_ = exports._MessageMedia_ = exports._Message_ = void 0;
|
|
5
|
+
exports._messages_BotResults_ = exports._BotInlineResult_ = exports._BotInlineMessage_ = exports._InputBotInlineResult_ = exports._InputBotInlineMessage_ = exports._messages_SavedGifs_ = exports._help_TermsOfService_ = exports._channels_ChannelParticipant_ = exports._channels_ChannelParticipants_ = exports._ChannelParticipantsFilter_ = exports._ChannelParticipant_ = exports._ChannelMessagesFilter_ = exports._updates_ChannelDifference_ = exports._MessageRange_ = exports._contacts_ResolvedPeer_ = exports._InputChannel_ = exports._MessageEntity_ = exports._ReplyMarkup_ = exports._KeyboardButtonRow_ = exports._KeyboardButton_ = exports._BotInfo_ = exports._BotCommand_ = exports._messages_StickerSet_ = exports._StickerSet_ = exports._InputStickerSet_ = exports._ChatInvite_ = exports._ExportedChatInvite_ = exports._ReceivedNotifyMessage_ = exports._auth_PasswordRecovery_ = exports._account_PasswordInputSettings_ = exports._account_PasswordSettings_ = exports._account_Password_ = exports._account_Authorizations_ = exports._Authorization_ = exports._WebPage_ = exports._messages_AffectedMessages_ = exports._messages_AllStickers_ = exports._StickerPack_ = exports._messages_Stickers_ = exports._DocumentAttribute_ = exports._AccountDaysTTL_ = exports._account_PrivacyRules_ = exports._PrivacyRule_ = exports._InputPrivacyRule_ = exports._PrivacyKey_ = exports._InputPrivacyKey_ = exports._contacts_Found_ = exports._SendMessageAction_ = exports._NotifyPeer_ = exports._help_Support_ = void 0;
|
|
6
|
+
exports._PhoneCall_ = exports._InputPhoneCall_ = exports._InputStickerSetItem_ = exports._ShippingOption_ = exports._account_TmpPassword_ = exports._InputPaymentCredentials_ = exports._payments_SavedInfo_ = exports._payments_PaymentReceipt_ = exports._payments_PaymentResult_ = exports._payments_ValidatedRequestedInfo_ = exports._payments_PaymentForm_ = exports._upload_WebFile_ = exports._InputWebFileLocation_ = exports._InputWebDocument_ = exports._WebDocument_ = exports._PaymentSavedCredentials_ = exports._PaymentRequestedInfo_ = exports._PostAddress_ = exports._PaymentCharge_ = exports._Invoice_ = exports._LabeledPrice_ = exports._DataJSON_ = exports._PhoneCallDiscardReason_ = exports._PageBlock_ = exports._RichText_ = exports._messages_HighScores_ = exports._HighScore_ = exports._InputGame_ = exports._Game_ = exports._InputStickeredMedia_ = exports._MaskCoords_ = exports._StickerSetCovered_ = exports._messages_StickerSetInstallResult_ = exports._messages_ArchivedStickers_ = exports._messages_RecentStickers_ = exports._messages_FeaturedStickers_ = exports._DraftMessage_ = exports._contacts_TopPeers_ = exports._TopPeerCategoryPeers_ = exports._TopPeerCategory_ = exports._TopPeer_ = exports._messages_PeerDialogs_ = exports._InlineBotSwitchPM_ = exports._InputBotInlineMessageID_ = exports._messages_MessageEditData_ = exports._messages_BotCallbackAnswer_ = exports._auth_SentCodeType_ = exports._auth_CodeType_ = exports._MessageFwdHeader_ = exports._ExportedMessageLink_ = void 0;
|
|
7
|
+
exports._JSONObjectValue_ = exports._InputAppEvent_ = exports._help_PassportConfig_ = exports._SecureRequiredType_ = exports._InputCheckPasswordSRP_ = exports._SecureSecretSettings_ = exports._SecurePasswordKdfAlgo_ = exports._PasswordKdfAlgo_ = exports._account_Takeout_ = exports._SavedContact_ = exports._help_DeepLinkInfo_ = exports._account_SentEmailCode_ = exports._account_AuthorizationForm_ = exports._SecureCredentialsEncrypted_ = exports._SecureValueError_ = exports._SecureValueHash_ = exports._InputSecureValue_ = exports._SecureValue_ = exports._SecureValueType_ = exports._SecurePlainData_ = exports._SecureData_ = exports._SecureFile_ = exports._InputSecureFile_ = exports._help_TermsOfServiceUpdate_ = exports._InputClientProxy_ = exports._FileHash_ = exports._messages_FoundStickerSets_ = exports._DialogPeer_ = exports._InputDialogPeer_ = exports._InputMessage_ = exports._account_WebAuthorizations_ = exports._WebAuthorization_ = exports._InputSingleMedia_ = exports._help_RecentMeUrls_ = exports._RecentMeUrl_ = exports._messages_FavedStickers_ = exports._PopularContact_ = exports._ChannelAdminLogEventsFilter_ = exports._channels_AdminLogResults_ = exports._ChannelAdminLogEvent_ = exports._ChannelAdminLogEventAction_ = exports._LangPackLanguage_ = exports._LangPackDifference_ = exports._LangPackString_ = exports._CdnConfig_ = exports._CdnPublicKey_ = exports._upload_CdnFile_ = exports._phone_PhoneCall_ = exports._PhoneCallProtocol_ = exports._PhoneConnection_ = void 0;
|
|
8
|
+
exports._DialogFilter_ = exports._payments_BankCardData_ = exports._BankCardOpenUrl_ = exports._messages_VotesList_ = exports._WebPageAttribute_ = exports._ThemeSettings_ = exports._InputThemeSettings_ = exports._BaseTheme_ = exports._messages_InactiveChats_ = exports._account_ContentSettings_ = exports._auth_LoginToken_ = exports._account_Themes_ = exports._Theme_ = exports._InputTheme_ = exports._RestrictionReason_ = exports._PeerLocated_ = exports._ChannelLocation_ = exports._UrlAuthResult_ = exports._messages_SearchCounter_ = exports._FolderPeer_ = exports._InputFolderPeer_ = exports._Folder_ = exports._EmojiLanguage_ = exports._EmojiURL_ = exports._EmojiKeywordsDifference_ = exports._EmojiKeyword_ = exports._account_AutoDownloadSettings_ = exports._AutoDownloadSettings_ = exports._WallPaperSettings_ = exports._CodeSettings_ = exports._account_WallPapers_ = exports._InputWallPaper_ = exports._ChatBannedRights_ = exports._ChatAdminRights_ = exports._StatsURL_ = exports._ChatOnlines_ = exports._PollResults_ = exports._PollAnswerVoters_ = exports._Poll_ = exports._PollAnswer_ = exports._help_UserInfo_ = exports._help_SupportName_ = exports._Page_ = exports._PageRelatedArticle_ = exports._PageListOrderedItem_ = exports._PageListItem_ = exports._PageCaption_ = exports._PageTableRow_ = exports._PageTableCell_ = exports._JSONValue_ = void 0;
|
|
9
|
+
exports._messages_SearchResultsCalendar_ = exports._SearchResultsCalendarPeriod_ = exports._messages_SponsoredMessages_ = exports._SponsoredMessage_ = exports._account_ResetPasswordResult_ = exports._BotCommandScope_ = exports._stickers_SuggestedShortName_ = exports._GroupCallParticipantVideo_ = exports._GroupCallParticipantVideoSourceGroup_ = exports._phone_ExportedGroupCallInvite_ = exports._phone_JoinAsPeers_ = exports._messages_CheckedHistoryImportPeer_ = exports._messages_ChatAdminsWithInvites_ = exports._ChatAdminWithInvites_ = exports._messages_ChatInviteImporters_ = exports._messages_ExportedChatInvite_ = exports._messages_ExportedChatInvites_ = exports._ChatInviteImporter_ = exports._messages_AffectedFoundMessages_ = exports._messages_HistoryImportParsed_ = exports._messages_HistoryImport_ = exports._InlineQueryPeerType_ = exports._phone_GroupParticipants_ = exports._phone_GroupCall_ = exports._GroupCallParticipant_ = exports._InputGroupCall_ = exports._GroupCall_ = exports._stats_MessageStats_ = exports._PeerBlocked_ = exports._MessageReplies_ = exports._MessageReplyHeader_ = exports._messages_DiscussionMessage_ = exports._messages_MessageViews_ = exports._MessageViews_ = exports._help_CountriesList_ = exports._help_Country_ = exports._help_CountryCode_ = exports._GlobalPrivacySettings_ = exports._stats_MegagroupStats_ = exports._StatsGroupTopInviter_ = exports._StatsGroupTopAdmin_ = exports._StatsGroupTopPoster_ = exports._VideoSize_ = exports._help_PromoData_ = exports._stats_BroadcastStats_ = exports._StatsGraph_ = exports._StatsPercentValue_ = exports._StatsAbsValueAndPrev_ = exports._StatsDateRangeDays_ = exports._DialogFilterSuggested_ = void 0;
|
|
10
|
+
exports._messages_ForumTopics_ = exports._ForumTopic_ = exports._Username_ = exports._StickerKeyword_ = exports._MessageExtendedMedia_ = exports._SendAsPeer_ = exports._PremiumSubscriptionOption_ = exports._account_EmailVerified_ = exports._EmailVerification_ = exports._EmailVerifyPurpose_ = exports._messages_Reactions_ = exports._ChatReactions_ = exports._Reaction_ = exports._account_EmojiStatuses_ = exports._EmojiStatus_ = exports._PaymentFormMethod_ = exports._PremiumGiftOption_ = exports._InputStorePaymentPurpose_ = exports._help_PremiumPromo_ = exports._messages_TranscribedAudio_ = exports._payments_ExportedInvoice_ = exports._InputInvoice_ = exports._AttachMenuPeerType_ = exports._account_SavedRingtone_ = exports._NotificationSound_ = exports._account_SavedRingtones_ = exports._BotMenuButton_ = exports._WebViewMessageSent_ = exports._SimpleWebViewResult_ = exports._WebViewResult_ = exports._AttachMenuBotsBot_ = exports._AttachMenuBots_ = exports._AttachMenuBot_ = exports._AttachMenuBotIcon_ = exports._AttachMenuBotIconColor_ = exports._phone_GroupCallStreamRtmpUrl_ = exports._phone_GroupCallStreamChannels_ = exports._GroupCallStreamChannel_ = exports._MessagePeerReaction_ = exports._messages_AvailableReactions_ = exports._AvailableReaction_ = exports._messages_MessageReactionsList_ = exports._MessageReactions_ = exports._ReactionCount_ = exports._auth_LoggedOut_ = exports._messages_PeerSettings_ = exports._users_UserFull_ = exports._channels_SendAsPeers_ = exports._messages_SearchResultsPositions_ = exports._SearchResultsPosition_ = void 0;
|
|
11
|
+
exports._premium_MyBoosts_ = exports._MyBoost_ = exports._premium_BoostsList_ = exports._Boost_ = exports._PrepaidGiveaway_ = exports._payments_GiveawayInfo_ = exports._payments_CheckedGiftCode_ = exports._PremiumGiftCodeOption_ = exports._messages_WebPage_ = exports._stories_PeerStories_ = exports._PeerStories_ = exports._MediaArea_ = exports._MediaAreaCoordinates_ = exports._StoriesStealthMode_ = exports._ExportedStoryLink_ = exports._InputReplyTo_ = exports._stories_StoryViews_ = exports._stories_StoryViewsList_ = exports._StoryView_ = exports._stories_Stories_ = exports._stories_AllStories_ = exports._StoryItem_ = exports._StoryViews_ = exports._SponsoredWebPage_ = exports._MessagePeerVote_ = exports._bots_BotInfo_ = exports._chatlists_ChatlistUpdates_ = exports._chatlists_ChatlistInvite_ = exports._chatlists_ExportedInvites_ = exports._chatlists_ExportedChatlistInvite_ = exports._ExportedChatlistInvite_ = exports._InputChatlist_ = exports._ReadParticipantDate_ = exports._InlineBotWebView_ = exports._AppWebViewResult_ = exports._messages_BotApp_ = exports._BotApp_ = exports._InputBotApp_ = exports._help_AppConfig_ = exports._account_AutoSaveSettings_ = exports._AutoSaveException_ = exports._AutoSaveSettings_ = exports._messages_TranslatedText_ = exports._TextWithEntities_ = exports._messages_EmojiGroups_ = exports._EmojiGroup_ = exports._EmojiList_ = exports._RequestPeerType_ = exports._ExportedContactToken_ = exports._DefaultHistoryTTL_ = void 0;
|
|
12
|
+
exports._MissingInvitee_ = exports._contacts_ContactBirthdays_ = exports._ContactBirthday_ = exports._BusinessBotRecipients_ = exports._InputBusinessBotRecipients_ = exports._fragment_CollectibleInfo_ = exports._InputCollectible_ = exports._messages_MyStickers_ = exports._BusinessIntro_ = exports._InputBusinessIntro_ = exports._BotBusinessConnection_ = exports._Birthday_ = exports._messages_DialogFilters_ = exports._account_ConnectedBots_ = exports._ConnectedBot_ = exports._messages_QuickReplies_ = exports._InputQuickReplyShortcut_ = exports._QuickReply_ = exports._help_TimezonesList_ = exports._Timezone_ = exports._BusinessAwayMessage_ = exports._InputBusinessAwayMessage_ = exports._BusinessGreetingMessage_ = exports._InputBusinessGreetingMessage_ = exports._BusinessAwayMessageSchedule_ = exports._BusinessRecipients_ = exports._InputBusinessRecipients_ = exports._BusinessLocation_ = exports._BusinessWorkHours_ = exports._BusinessWeeklyOpen_ = exports._SmsJob_ = exports._smsjobs_Status_ = exports._smsjobs_EligibilityToJoin_ = exports._OutboxReadDate_ = exports._messages_SavedReactionTags_ = exports._SavedReactionTag_ = exports._messages_SavedDialogs_ = exports._SavedDialog_ = exports._stories_StoryReactionsList_ = exports._StoryReaction_ = exports._help_PeerColors_ = exports._help_PeerColorOption_ = exports._help_PeerColorSet_ = exports._PeerColor_ = exports._stats_PublicForwards_ = exports._PublicForward_ = exports._stats_StoryStats_ = exports._PostInteractionCounters_ = exports._StoryFwdHeader_ = exports._premium_BoostsStatus_ = void 0;
|
|
13
|
+
exports.IpPortSecret_ = exports.IpPort_ = exports.Error_ = exports.True_ = exports.Http_wait_ = exports.Destroy_auth_key_fail_ = exports.Destroy_auth_key_none_ = exports.Destroy_auth_key_ok_ = exports.Msg_new_detailed_info_ = exports.Msg_detailed_info_ = exports.Msgs_all_info_ = exports.Msgs_state_info_ = exports.Msgs_state_req_ = exports.Msg_resend_req_ = exports.Bad_server_salt_ = exports.Bad_msg_notification_ = exports.Msgs_ack_ = exports.Gzip_packed_ = exports.New_session_created_ = exports.Destroy_session_none_ = exports.Destroy_session_ok_ = exports.Pong_ = exports.Future_salts_ = exports.Future_salt_ = exports.Rpc_answer_dropped_ = exports.Rpc_answer_dropped_running_ = exports.Rpc_answer_unknown_ = exports.Rpc_error_ = exports.Bind_auth_key_inner_ = exports.Dh_gen_fail_ = exports.Dh_gen_retry_ = exports.Dh_gen_ok_ = exports.Client_DH_inner_data_ = exports.Server_DH_inner_data_ = exports.Server_DH_params_ok_ = exports.P_q_inner_data_temp_dc_ = exports.P_q_inner_data_dc_ = exports.ResPQ_ = exports._stats_BroadcastRevenueTransactions_ = exports._BroadcastRevenueTransaction_ = exports._stats_BroadcastRevenueWithdrawalUrl_ = exports._stats_BroadcastRevenueStats_ = exports._channels_SponsoredMessageReportResult_ = exports._SponsoredMessageReportOption_ = exports._RequestedPeer_ = exports._account_ResolvedBusinessChatLinks_ = exports._account_BusinessChatLinks_ = exports._BusinessChatLink_ = exports._InputBusinessChatLink_ = exports._messages_InvitedUsers_ = void 0;
|
|
14
|
+
exports.InputPeerPhotoFileLocation_ = exports.InputPhotoLegacyFileLocation_ = exports.InputPhotoFileLocation_ = exports.InputTakeoutFileLocation_ = exports.InputSecureFileLocation_ = exports.InputDocumentFileLocation_ = exports.InputEncryptedFileLocation_ = exports.InputFileLocation_ = exports.InputPhoto_ = exports.InputPhotoEmpty_ = exports.InputGeoPoint_ = exports.InputGeoPointEmpty_ = exports.InputChatPhoto_ = exports.InputChatUploadedPhoto_ = exports.InputChatPhotoEmpty_ = exports.InputMediaWebPage_ = exports.InputMediaStory_ = exports.InputMediaDice_ = exports.InputMediaPoll_ = exports.InputMediaGeoLive_ = exports.InputMediaInvoice_ = exports.InputMediaGame_ = exports.InputMediaDocumentExternal_ = exports.InputMediaPhotoExternal_ = exports.InputMediaVenue_ = exports.InputMediaDocument_ = exports.InputMediaUploadedDocument_ = exports.InputMediaContact_ = exports.InputMediaGeoPoint_ = exports.InputMediaPhoto_ = exports.InputMediaUploadedPhoto_ = exports.InputMediaEmpty_ = exports.InputFileBig_ = exports.InputFile_ = exports.InputPhoneContact_ = exports.InputUserFromMessage_ = exports.InputUser_ = exports.InputUserSelf_ = exports.InputUserEmpty_ = exports.InputPeerChannelFromMessage_ = exports.InputPeerUserFromMessage_ = exports.InputPeerChannel_ = exports.InputPeerUser_ = exports.InputPeerChat_ = exports.InputPeerSelf_ = exports.InputPeerEmpty_ = exports.InputStickerSetThumbLegacy_ = exports.InputPeerPhotoFileLocationLegacy_ = exports.help_ConfigSimple_ = exports.AccessPointRule_ = void 0;
|
|
15
|
+
exports.MessageMediaVenue_ = exports.MessageMediaWebPage_ = exports.MessageMediaDocument_ = exports.MessageMediaUnsupported_ = exports.MessageMediaContact_ = exports.MessageMediaGeo_ = exports.MessageMediaPhoto_ = exports.MessageMediaEmpty_ = exports.MessageService_ = exports.Message_ = exports.MessageEmpty_ = exports.ChatPhoto_ = exports.ChatPhotoEmpty_ = exports.ChatParticipants_ = exports.ChatParticipantsForbidden_ = exports.ChatParticipantAdmin_ = exports.ChatParticipantCreator_ = exports.ChatParticipant_ = exports.ChannelFull_ = exports.ChatFull_ = exports.ChannelForbidden_ = exports.Channel_ = exports.ChatForbidden_ = exports.Chat_ = exports.ChatEmpty_ = exports.UserStatusLastMonth_ = exports.UserStatusLastWeek_ = exports.UserStatusRecently_ = exports.UserStatusOffline_ = exports.UserStatusOnline_ = exports.UserStatusEmpty_ = exports.UserProfilePhoto_ = exports.UserProfilePhotoEmpty_ = exports.User_ = exports.UserEmpty_ = exports.storage_FileWebp_ = exports.storage_FileMp4_ = exports.storage_FileMov_ = exports.storage_FileMp3_ = exports.storage_FilePdf_ = exports.storage_FilePng_ = exports.storage_FileGif_ = exports.storage_FileJpeg_ = exports.storage_FilePartial_ = exports.storage_FileUnknown_ = exports.PeerChannel_ = exports.PeerChat_ = exports.PeerUser_ = exports.InputGroupCallStream_ = exports.InputStickerSetThumb_ = void 0;
|
|
16
|
+
exports.MessageActionBoostApply_ = exports.MessageActionGiveawayResults_ = exports.MessageActionGiveawayLaunch_ = exports.MessageActionGiftCode_ = exports.MessageActionSetChatWallPaper_ = exports.MessageActionRequestedPeer_ = exports.MessageActionSuggestProfilePhoto_ = exports.MessageActionTopicEdit_ = exports.MessageActionTopicCreate_ = exports.MessageActionGiftPremium_ = exports.MessageActionWebViewDataSent_ = exports.MessageActionWebViewDataSentMe_ = exports.MessageActionChatJoinedByRequest_ = exports.MessageActionSetChatTheme_ = exports.MessageActionGroupCallScheduled_ = exports.MessageActionSetMessagesTTL_ = exports.MessageActionInviteToGroupCall_ = exports.MessageActionGroupCall_ = exports.MessageActionGeoProximityReached_ = exports.MessageActionContactSignUp_ = exports.MessageActionSecureValuesSent_ = exports.MessageActionSecureValuesSentMe_ = exports.MessageActionBotAllowed_ = exports.MessageActionCustomAction_ = exports.MessageActionScreenshotTaken_ = exports.MessageActionPhoneCall_ = exports.MessageActionPaymentSent_ = exports.MessageActionPaymentSentMe_ = exports.MessageActionGameScore_ = exports.MessageActionHistoryClear_ = exports.MessageActionPinMessage_ = exports.MessageActionChannelMigrateFrom_ = exports.MessageActionChatMigrateTo_ = exports.MessageActionChannelCreate_ = exports.MessageActionChatJoinedByLink_ = exports.MessageActionChatDeleteUser_ = exports.MessageActionChatAddUser_ = exports.MessageActionChatDeletePhoto_ = exports.MessageActionChatEditPhoto_ = exports.MessageActionChatEditTitle_ = exports.MessageActionChatCreate_ = exports.MessageActionEmpty_ = exports.MessageMediaGiveawayResults_ = exports.MessageMediaGiveaway_ = exports.MessageMediaStory_ = exports.MessageMediaDice_ = exports.MessageMediaPoll_ = exports.MessageMediaGeoLive_ = exports.MessageMediaInvoice_ = exports.MessageMediaGame_ = void 0;
|
|
17
|
+
exports.messages_DialogsNotModified_ = exports.messages_DialogsSlice_ = exports.messages_Dialogs_ = exports.contacts_BlockedSlice_ = exports.contacts_Blocked_ = exports.contacts_ImportedContacts_ = exports.contacts_Contacts_ = exports.contacts_ContactsNotModified_ = exports.ContactStatus_ = exports.ImportedContact_ = exports.Contact_ = exports.UserFull_ = exports.InputReportReasonPersonalDetails_ = exports.InputReportReasonIllegalDrugs_ = exports.InputReportReasonFake_ = exports.InputReportReasonGeoIrrelevant_ = exports.InputReportReasonCopyright_ = exports.InputReportReasonOther_ = exports.InputReportReasonChildAbuse_ = exports.InputReportReasonPornography_ = exports.InputReportReasonViolence_ = exports.InputReportReasonSpam_ = exports.WallPaperNoFile_ = exports.WallPaper_ = exports.PeerSettings_ = exports.PeerNotifySettings_ = exports.InputPeerNotifySettings_ = exports.InputNotifyForumTopic_ = exports.InputNotifyBroadcasts_ = exports.InputNotifyChats_ = exports.InputNotifyUsers_ = exports.InputNotifyPeer_ = exports.auth_ExportedAuthorization_ = exports.auth_AuthorizationSignUpRequired_ = exports.auth_Authorization_ = exports.auth_SentCodeSuccess_ = exports.auth_SentCode_ = exports.GeoPoint_ = exports.GeoPointEmpty_ = exports.PhotoPathSize_ = exports.PhotoSizeProgressive_ = exports.PhotoStrippedSize_ = exports.PhotoCachedSize_ = exports.PhotoSize_ = exports.PhotoSizeEmpty_ = exports.Photo_ = exports.PhotoEmpty_ = exports.DialogFolder_ = exports.Dialog_ = exports.MessageActionRequestedPeerSentMe_ = void 0;
|
|
18
|
+
exports.UpdateChannelTooLong_ = exports.UpdateReadMessagesContents_ = exports.UpdateWebPage_ = exports.UpdateReadHistoryOutbox_ = exports.UpdateReadHistoryInbox_ = exports.UpdateUserPhone_ = exports.UpdatePrivacy_ = exports.UpdateServiceNotification_ = exports.UpdateNotifySettings_ = exports.UpdateDcOptions_ = exports.UpdateChatParticipantDelete_ = exports.UpdateChatParticipantAdd_ = exports.UpdateEncryptedMessagesRead_ = exports.UpdateEncryption_ = exports.UpdateEncryptedChatTyping_ = exports.UpdateNewEncryptedMessage_ = exports.UpdateNewAuthorization_ = exports.UpdateUserName_ = exports.UpdateUserStatus_ = exports.UpdateChatParticipants_ = exports.UpdateChatUserTyping_ = exports.UpdateUserTyping_ = exports.UpdateDeleteMessages_ = exports.UpdateMessageID_ = exports.UpdateNewMessage_ = exports.InputMessagesFilterPinned_ = exports.InputMessagesFilterContacts_ = exports.InputMessagesFilterGeo_ = exports.InputMessagesFilterMyMentions_ = exports.InputMessagesFilterRoundVideo_ = exports.InputMessagesFilterRoundVoice_ = exports.InputMessagesFilterPhoneCalls_ = exports.InputMessagesFilterChatPhotos_ = exports.InputMessagesFilterMusic_ = exports.InputMessagesFilterVoice_ = exports.InputMessagesFilterGif_ = exports.InputMessagesFilterUrl_ = exports.InputMessagesFilterDocument_ = exports.InputMessagesFilterPhotoVideo_ = exports.InputMessagesFilterVideo_ = exports.InputMessagesFilterPhotos_ = exports.InputMessagesFilterEmpty_ = exports.messages_AffectedHistory_ = exports.messages_ChatFull_ = exports.messages_ChatsSlice_ = exports.messages_Chats_ = exports.messages_MessagesNotModified_ = exports.messages_ChannelMessages_ = exports.messages_MessagesSlice_ = exports.messages_Messages_ = void 0;
|
|
19
|
+
exports.UpdateDialogFilterOrder_ = exports.UpdateDialogFilter_ = exports.UpdateMessagePollVote_ = exports.UpdateLoginToken_ = exports.UpdateGeoLiveViewed_ = exports.UpdateTheme_ = exports.UpdateDeleteScheduledMessages_ = exports.UpdateNewScheduledMessage_ = exports.UpdatePeerLocated_ = exports.UpdatePeerSettings_ = exports.UpdateFolderPeers_ = exports.UpdateChatDefaultBannedRights_ = exports.UpdateMessagePoll_ = exports.UpdateDialogUnreadMark_ = exports.UpdateChannelAvailableMessages_ = exports.UpdateContactsReset_ = exports.UpdateChannelReadMessagesContents_ = exports.UpdateFavedStickers_ = exports.UpdateLangPack_ = exports.UpdateLangPackTooLong_ = exports.UpdatePhoneCall_ = exports.UpdateBotPrecheckoutQuery_ = exports.UpdateBotShippingQuery_ = exports.UpdateBotWebhookJSONQuery_ = exports.UpdateBotWebhookJSON_ = exports.UpdatePinnedDialogs_ = exports.UpdateDialogPinned_ = exports.UpdateChannelWebPage_ = exports.UpdatePtsChanged_ = exports.UpdateConfig_ = exports.UpdateRecentStickers_ = exports.UpdateReadFeaturedStickers_ = exports.UpdateDraftMessage_ = exports.UpdateReadChannelOutbox_ = exports.UpdateInlineBotCallbackQuery_ = exports.UpdateEditMessage_ = exports.UpdateBotCallbackQuery_ = exports.UpdateEditChannelMessage_ = exports.UpdateBotInlineSend_ = exports.UpdateBotInlineQuery_ = exports.UpdateSavedGifs_ = exports.UpdateStickerSets_ = exports.UpdateStickerSetsOrder_ = exports.UpdateNewStickerSet_ = exports.UpdateChatParticipantAdmin_ = exports.UpdateChannelMessageViews_ = exports.UpdateDeleteChannelMessages_ = exports.UpdateReadChannelInbox_ = exports.UpdateNewChannelMessage_ = exports.UpdateChannel_ = void 0;
|
|
20
|
+
exports.UpdateSmsJob_ = exports.UpdateSavedReactionTags_ = exports.UpdatePinnedSavedDialogs_ = exports.UpdateSavedDialogPinned_ = exports.UpdateBotMessageReactions_ = exports.UpdateBotMessageReaction_ = exports.UpdatePeerWallpaper_ = exports.UpdateChannelViewForumAsMessages_ = exports.UpdateBotChatBoost_ = exports.UpdateSentStoryReaction_ = exports.UpdateStoriesStealthMode_ = exports.UpdateStoryID_ = exports.UpdateReadStories_ = exports.UpdateStory_ = exports.UpdateAutoSaveSettings_ = exports.UpdateUser_ = exports.UpdateChannelPinnedTopics_ = exports.UpdateChannelPinnedTopic_ = exports.UpdateMessageExtendedMedia_ = exports.UpdateMoveStickerSetToTop_ = exports.UpdateRecentReactions_ = exports.UpdateRecentEmojiStatuses_ = exports.UpdateUserEmojiStatus_ = exports.UpdateReadFeaturedEmojiStickers_ = exports.UpdateTranscribedAudio_ = exports.UpdateSavedRingtones_ = exports.UpdateBotMenuButton_ = exports.UpdateWebViewResultSent_ = exports.UpdateAttachMenuBots_ = exports.UpdateMessageReactions_ = exports.UpdateBotChatInviteRequester_ = exports.UpdatePendingJoinRequests_ = exports.UpdateBotCommands_ = exports.UpdateGroupCallConnection_ = exports.UpdateBotStopped_ = exports.UpdateChannelParticipant_ = exports.UpdateChatParticipant_ = exports.UpdatePeerHistoryTTL_ = exports.UpdateGroupCall_ = exports.UpdateGroupCallParticipants_ = exports.UpdateChat_ = exports.UpdatePinnedChannelMessages_ = exports.UpdatePinnedMessages_ = exports.UpdateChannelUserTyping_ = exports.UpdatePeerBlocked_ = exports.UpdateReadChannelDiscussionOutbox_ = exports.UpdateReadChannelDiscussionInbox_ = exports.UpdateChannelMessageForwards_ = exports.UpdatePhoneCallSignalingData_ = exports.UpdateDialogFilters_ = void 0;
|
|
21
|
+
exports.messages_SentEncryptedFile_ = exports.messages_SentEncryptedMessage_ = exports.messages_DhConfig_ = exports.messages_DhConfigNotModified_ = exports.EncryptedMessageService_ = exports.EncryptedMessage_ = exports.InputEncryptedFileBigUploaded_ = exports.InputEncryptedFile_ = exports.InputEncryptedFileUploaded_ = exports.InputEncryptedFileEmpty_ = exports.EncryptedFile_ = exports.EncryptedFileEmpty_ = exports.InputEncryptedChat_ = exports.EncryptedChatDiscarded_ = exports.EncryptedChat_ = exports.EncryptedChatRequested_ = exports.EncryptedChatWaiting_ = exports.EncryptedChatEmpty_ = exports.help_InviteText_ = exports.help_NoAppUpdate_ = exports.help_AppUpdate_ = exports.NearestDc_ = exports.Config_ = exports.DcOption_ = exports.upload_FileCdnRedirect_ = exports.upload_File_ = exports.photos_Photo_ = exports.photos_PhotosSlice_ = exports.photos_Photos_ = exports.UpdateShortSentMessage_ = exports.Updates_ = exports.UpdatesCombined_ = exports.UpdateShort_ = exports.UpdateShortChatMessage_ = exports.UpdateShortMessage_ = exports.UpdatesTooLong_ = exports.updates_DifferenceTooLong_ = exports.updates_DifferenceSlice_ = exports.updates_Difference_ = exports.updates_DifferenceEmpty_ = exports.updates_State_ = exports.UpdateBotDeleteBusinessMessage_ = exports.UpdateBotEditBusinessMessage_ = exports.UpdateBotNewBusinessMessage_ = exports.UpdateBotBusinessConnect_ = exports.UpdateDeleteQuickReplyMessages_ = exports.UpdateQuickReplyMessage_ = exports.UpdateDeleteQuickReply_ = exports.UpdateNewQuickReply_ = exports.UpdateQuickReplies_ = void 0;
|
|
22
|
+
exports.PrivacyKeyAbout_ = exports.PrivacyKeyVoiceMessages_ = exports.PrivacyKeyAddedByPhone_ = exports.PrivacyKeyPhoneNumber_ = exports.PrivacyKeyProfilePhoto_ = exports.PrivacyKeyForwards_ = exports.PrivacyKeyPhoneP2P_ = exports.PrivacyKeyPhoneCall_ = exports.PrivacyKeyChatInvite_ = exports.PrivacyKeyStatusTimestamp_ = exports.InputPrivacyKeyBirthday_ = exports.InputPrivacyKeyAbout_ = exports.InputPrivacyKeyVoiceMessages_ = exports.InputPrivacyKeyAddedByPhone_ = exports.InputPrivacyKeyPhoneNumber_ = exports.InputPrivacyKeyProfilePhoto_ = exports.InputPrivacyKeyForwards_ = exports.InputPrivacyKeyPhoneP2P_ = exports.InputPrivacyKeyPhoneCall_ = exports.InputPrivacyKeyChatInvite_ = exports.InputPrivacyKeyStatusTimestamp_ = exports.contacts_Found_ = exports.SendMessageEmojiInteractionSeen_ = exports.SendMessageEmojiInteraction_ = exports.SendMessageChooseStickerAction_ = exports.SendMessageHistoryImportAction_ = exports.SpeakingInGroupCallAction_ = exports.SendMessageUploadRoundAction_ = exports.SendMessageRecordRoundAction_ = exports.SendMessageGamePlayAction_ = exports.SendMessageChooseContactAction_ = exports.SendMessageGeoLocationAction_ = exports.SendMessageUploadDocumentAction_ = exports.SendMessageUploadPhotoAction_ = exports.SendMessageUploadAudioAction_ = exports.SendMessageRecordAudioAction_ = exports.SendMessageUploadVideoAction_ = exports.SendMessageRecordVideoAction_ = exports.SendMessageCancelAction_ = exports.SendMessageTypingAction_ = exports.NotifyForumTopic_ = exports.NotifyBroadcasts_ = exports.NotifyChats_ = exports.NotifyUsers_ = exports.NotifyPeer_ = exports.help_Support_ = exports.Document_ = exports.DocumentEmpty_ = exports.InputDocument_ = exports.InputDocumentEmpty_ = void 0;
|
|
23
|
+
exports.ChatInvitePublicJoinRequests_ = exports.ChatInviteExported_ = exports.ReceivedNotifyMessage_ = exports.auth_PasswordRecovery_ = exports.account_PasswordInputSettings_ = exports.account_PasswordSettings_ = exports.account_Password_ = exports.account_Authorizations_ = exports.Authorization_ = exports.WebPageNotModified_ = exports.WebPage_ = exports.WebPagePending_ = exports.WebPageEmpty_ = exports.messages_AffectedMessages_ = exports.messages_AllStickers_ = exports.messages_AllStickersNotModified_ = exports.StickerPack_ = exports.messages_Stickers_ = exports.messages_StickersNotModified_ = exports.DocumentAttributeCustomEmoji_ = exports.DocumentAttributeHasStickers_ = exports.DocumentAttributeFilename_ = exports.DocumentAttributeAudio_ = exports.DocumentAttributeVideo_ = exports.DocumentAttributeSticker_ = exports.DocumentAttributeAnimated_ = exports.DocumentAttributeImageSize_ = exports.AccountDaysTTL_ = exports.account_PrivacyRules_ = exports.PrivacyValueAllowPremium_ = exports.PrivacyValueAllowCloseFriends_ = exports.PrivacyValueDisallowChatParticipants_ = exports.PrivacyValueAllowChatParticipants_ = exports.PrivacyValueDisallowUsers_ = exports.PrivacyValueDisallowAll_ = exports.PrivacyValueDisallowContacts_ = exports.PrivacyValueAllowUsers_ = exports.PrivacyValueAllowAll_ = exports.PrivacyValueAllowContacts_ = exports.InputPrivacyValueAllowPremium_ = exports.InputPrivacyValueAllowCloseFriends_ = exports.InputPrivacyValueDisallowChatParticipants_ = exports.InputPrivacyValueAllowChatParticipants_ = exports.InputPrivacyValueDisallowUsers_ = exports.InputPrivacyValueDisallowAll_ = exports.InputPrivacyValueDisallowContacts_ = exports.InputPrivacyValueAllowUsers_ = exports.InputPrivacyValueAllowAll_ = exports.InputPrivacyValueAllowContacts_ = exports.PrivacyKeyBirthday_ = void 0;
|
|
24
|
+
exports.MessageEntityCode_ = exports.MessageEntityItalic_ = exports.MessageEntityBold_ = exports.MessageEntityEmail_ = exports.MessageEntityUrl_ = exports.MessageEntityBotCommand_ = exports.MessageEntityHashtag_ = exports.MessageEntityMention_ = exports.MessageEntityUnknown_ = exports.ReplyInlineMarkup_ = exports.ReplyKeyboardMarkup_ = exports.ReplyKeyboardForceReply_ = exports.ReplyKeyboardHide_ = exports.KeyboardButtonRow_ = exports.InputKeyboardButtonRequestPeer_ = exports.KeyboardButtonRequestPeer_ = exports.KeyboardButtonSimpleWebView_ = exports.KeyboardButtonWebView_ = exports.KeyboardButtonUserProfile_ = exports.InputKeyboardButtonUserProfile_ = exports.KeyboardButtonRequestPoll_ = exports.InputKeyboardButtonUrlAuth_ = exports.KeyboardButtonUrlAuth_ = exports.KeyboardButtonBuy_ = exports.KeyboardButtonGame_ = exports.KeyboardButtonSwitchInline_ = exports.KeyboardButtonRequestGeoLocation_ = exports.KeyboardButtonRequestPhone_ = exports.KeyboardButtonCallback_ = exports.KeyboardButtonUrl_ = exports.KeyboardButton_ = exports.BotInfo_ = exports.BotCommand_ = exports.messages_StickerSetNotModified_ = exports.messages_StickerSet_ = exports.StickerSet_ = exports.InputStickerSetEmojiChannelDefaultStatuses_ = exports.InputStickerSetEmojiDefaultTopicIcons_ = exports.InputStickerSetEmojiDefaultStatuses_ = exports.InputStickerSetEmojiGenericAnimations_ = exports.InputStickerSetPremiumGifts_ = exports.InputStickerSetAnimatedEmojiAnimations_ = exports.InputStickerSetDice_ = exports.InputStickerSetAnimatedEmoji_ = exports.InputStickerSetShortName_ = exports.InputStickerSetID_ = exports.InputStickerSetEmpty_ = exports.ChatInvitePeek_ = exports.ChatInvite_ = exports.ChatInviteAlready_ = void 0;
|
|
25
|
+
exports.InputBotInlineMessageMediaWebPage_ = exports.InputBotInlineMessageMediaInvoice_ = exports.InputBotInlineMessageGame_ = exports.InputBotInlineMessageMediaContact_ = exports.InputBotInlineMessageMediaVenue_ = exports.InputBotInlineMessageMediaGeo_ = exports.InputBotInlineMessageText_ = exports.InputBotInlineMessageMediaAuto_ = exports.messages_SavedGifs_ = exports.messages_SavedGifsNotModified_ = exports.help_TermsOfService_ = exports.channels_ChannelParticipant_ = exports.channels_ChannelParticipantsNotModified_ = exports.channels_ChannelParticipants_ = exports.ChannelParticipantsMentions_ = exports.ChannelParticipantsContacts_ = exports.ChannelParticipantsSearch_ = exports.ChannelParticipantsBanned_ = exports.ChannelParticipantsBots_ = exports.ChannelParticipantsKicked_ = exports.ChannelParticipantsAdmins_ = exports.ChannelParticipantsRecent_ = exports.ChannelParticipantLeft_ = exports.ChannelParticipantBanned_ = exports.ChannelParticipantAdmin_ = exports.ChannelParticipantCreator_ = exports.ChannelParticipantSelf_ = exports.ChannelParticipant_ = exports.ChannelMessagesFilter_ = exports.ChannelMessagesFilterEmpty_ = exports.updates_ChannelDifference_ = exports.updates_ChannelDifferenceTooLong_ = exports.updates_ChannelDifferenceEmpty_ = exports.MessageRange_ = exports.contacts_ResolvedPeer_ = exports.InputChannelFromMessage_ = exports.InputChannel_ = exports.InputChannelEmpty_ = exports.MessageEntityBlockquote_ = exports.MessageEntityCustomEmoji_ = exports.MessageEntitySpoiler_ = exports.MessageEntityBankCard_ = exports.MessageEntityStrike_ = exports.MessageEntityUnderline_ = exports.MessageEntityCashtag_ = exports.MessageEntityPhone_ = exports.InputMessageEntityMentionName_ = exports.MessageEntityMentionName_ = exports.MessageEntityTextUrl_ = exports.MessageEntityPre_ = void 0;
|
|
26
|
+
exports.DraftMessageEmpty_ = exports.contacts_TopPeersDisabled_ = exports.contacts_TopPeers_ = exports.contacts_TopPeersNotModified_ = exports.TopPeerCategoryPeers_ = exports.TopPeerCategoryForwardChats_ = exports.TopPeerCategoryForwardUsers_ = exports.TopPeerCategoryPhoneCalls_ = exports.TopPeerCategoryChannels_ = exports.TopPeerCategoryGroups_ = exports.TopPeerCategoryCorrespondents_ = exports.TopPeerCategoryBotsInline_ = exports.TopPeerCategoryBotsPM_ = exports.TopPeer_ = exports.messages_PeerDialogs_ = exports.InlineBotSwitchPM_ = exports.InputBotInlineMessageID64_ = exports.InputBotInlineMessageID_ = exports.messages_MessageEditData_ = exports.messages_BotCallbackAnswer_ = exports.auth_SentCodeTypeFirebaseSms_ = exports.auth_SentCodeTypeFragmentSms_ = exports.auth_SentCodeTypeSetUpEmailRequired_ = exports.auth_SentCodeTypeEmailCode_ = exports.auth_SentCodeTypeMissedCall_ = exports.auth_SentCodeTypeFlashCall_ = exports.auth_SentCodeTypeCall_ = exports.auth_SentCodeTypeSms_ = exports.auth_SentCodeTypeApp_ = exports.auth_CodeTypeFragmentSms_ = exports.auth_CodeTypeMissedCall_ = exports.auth_CodeTypeFlashCall_ = exports.auth_CodeTypeCall_ = exports.auth_CodeTypeSms_ = exports.MessageFwdHeader_ = exports.ExportedMessageLink_ = exports.messages_BotResults_ = exports.BotInlineMediaResult_ = exports.BotInlineResult_ = exports.BotInlineMessageMediaWebPage_ = exports.BotInlineMessageMediaInvoice_ = exports.BotInlineMessageMediaContact_ = exports.BotInlineMessageMediaVenue_ = exports.BotInlineMessageMediaGeo_ = exports.BotInlineMessageText_ = exports.BotInlineMessageMediaAuto_ = exports.InputBotInlineResultGame_ = exports.InputBotInlineResultDocument_ = exports.InputBotInlineResultPhoto_ = exports.InputBotInlineResult_ = void 0;
|
|
27
|
+
exports.PageBlockPullquote_ = exports.PageBlockBlockquote_ = exports.PageBlockList_ = exports.PageBlockAnchor_ = exports.PageBlockDivider_ = exports.PageBlockFooter_ = exports.PageBlockPreformatted_ = exports.PageBlockParagraph_ = exports.PageBlockSubheader_ = exports.PageBlockHeader_ = exports.PageBlockAuthorDate_ = exports.PageBlockSubtitle_ = exports.PageBlockTitle_ = exports.PageBlockUnsupported_ = exports.TextAnchor_ = exports.TextImage_ = exports.TextPhone_ = exports.TextMarked_ = exports.TextSuperscript_ = exports.TextSubscript_ = exports.TextConcat_ = exports.TextEmail_ = exports.TextUrl_ = exports.TextFixed_ = exports.TextStrike_ = exports.TextUnderline_ = exports.TextItalic_ = exports.TextBold_ = exports.TextPlain_ = exports.TextEmpty_ = exports.messages_HighScores_ = exports.HighScore_ = exports.InputGameShortName_ = exports.InputGameID_ = exports.Game_ = exports.InputStickeredMediaDocument_ = exports.InputStickeredMediaPhoto_ = exports.MaskCoords_ = exports.StickerSetNoCovered_ = exports.StickerSetFullCovered_ = exports.StickerSetMultiCovered_ = exports.StickerSetCovered_ = exports.messages_StickerSetInstallResultArchive_ = exports.messages_StickerSetInstallResultSuccess_ = exports.messages_ArchivedStickers_ = exports.messages_RecentStickers_ = exports.messages_RecentStickersNotModified_ = exports.messages_FeaturedStickers_ = exports.messages_FeaturedStickersNotModified_ = exports.DraftMessage_ = void 0;
|
|
28
|
+
exports.PhoneCallRequested_ = exports.PhoneCallWaiting_ = exports.PhoneCallEmpty_ = exports.InputPhoneCall_ = exports.InputStickerSetItem_ = exports.ShippingOption_ = exports.account_TmpPassword_ = exports.InputPaymentCredentialsGooglePay_ = exports.InputPaymentCredentialsApplePay_ = exports.InputPaymentCredentials_ = exports.InputPaymentCredentialsSaved_ = exports.payments_SavedInfo_ = exports.payments_PaymentReceipt_ = exports.payments_PaymentVerificationNeeded_ = exports.payments_PaymentResult_ = exports.payments_ValidatedRequestedInfo_ = exports.payments_PaymentForm_ = exports.upload_WebFile_ = exports.InputWebFileAudioAlbumThumbLocation_ = exports.InputWebFileGeoPointLocation_ = exports.InputWebFileLocation_ = exports.InputWebDocument_ = exports.WebDocumentNoProxy_ = exports.WebDocument_ = exports.PaymentSavedCredentialsCard_ = exports.PaymentRequestedInfo_ = exports.PostAddress_ = exports.PaymentCharge_ = exports.Invoice_ = exports.LabeledPrice_ = exports.DataJSON_ = exports.PhoneCallDiscardReasonBusy_ = exports.PhoneCallDiscardReasonHangup_ = exports.PhoneCallDiscardReasonDisconnect_ = exports.PhoneCallDiscardReasonMissed_ = exports.PageBlockMap_ = exports.PageBlockRelatedArticles_ = exports.PageBlockDetails_ = exports.PageBlockOrderedList_ = exports.PageBlockTable_ = exports.PageBlockKicker_ = exports.PageBlockAudio_ = exports.PageBlockChannel_ = exports.PageBlockSlideshow_ = exports.PageBlockCollage_ = exports.PageBlockEmbedPost_ = exports.PageBlockEmbed_ = exports.PageBlockCover_ = exports.PageBlockVideo_ = exports.PageBlockPhoto_ = void 0;
|
|
29
|
+
exports.ChannelAdminLogEventActionToggleNoForwards_ = exports.ChannelAdminLogEventActionParticipantJoinByRequest_ = exports.ChannelAdminLogEventActionChangeHistoryTTL_ = exports.ChannelAdminLogEventActionParticipantVolume_ = exports.ChannelAdminLogEventActionExportedInviteEdit_ = exports.ChannelAdminLogEventActionExportedInviteRevoke_ = exports.ChannelAdminLogEventActionExportedInviteDelete_ = exports.ChannelAdminLogEventActionParticipantJoinByInvite_ = exports.ChannelAdminLogEventActionToggleGroupCallSetting_ = exports.ChannelAdminLogEventActionParticipantUnmute_ = exports.ChannelAdminLogEventActionParticipantMute_ = exports.ChannelAdminLogEventActionDiscardGroupCall_ = exports.ChannelAdminLogEventActionStartGroupCall_ = exports.ChannelAdminLogEventActionToggleSlowMode_ = exports.ChannelAdminLogEventActionChangeLocation_ = exports.ChannelAdminLogEventActionChangeLinkedChat_ = exports.ChannelAdminLogEventActionStopPoll_ = exports.ChannelAdminLogEventActionDefaultBannedRights_ = exports.ChannelAdminLogEventActionTogglePreHistoryHidden_ = exports.ChannelAdminLogEventActionChangeStickerSet_ = exports.ChannelAdminLogEventActionParticipantToggleAdmin_ = exports.ChannelAdminLogEventActionParticipantToggleBan_ = exports.ChannelAdminLogEventActionParticipantInvite_ = exports.ChannelAdminLogEventActionParticipantLeave_ = exports.ChannelAdminLogEventActionParticipantJoin_ = exports.ChannelAdminLogEventActionDeleteMessage_ = exports.ChannelAdminLogEventActionEditMessage_ = exports.ChannelAdminLogEventActionUpdatePinned_ = exports.ChannelAdminLogEventActionToggleSignatures_ = exports.ChannelAdminLogEventActionToggleInvites_ = exports.ChannelAdminLogEventActionChangePhoto_ = exports.ChannelAdminLogEventActionChangeUsername_ = exports.ChannelAdminLogEventActionChangeAbout_ = exports.ChannelAdminLogEventActionChangeTitle_ = exports.LangPackLanguage_ = exports.LangPackDifference_ = exports.LangPackStringDeleted_ = exports.LangPackStringPluralized_ = exports.LangPackString_ = exports.CdnConfig_ = exports.CdnPublicKey_ = exports.upload_CdnFile_ = exports.upload_CdnFileReuploadNeeded_ = exports.phone_PhoneCall_ = exports.PhoneCallProtocol_ = exports.PhoneConnectionWebrtc_ = exports.PhoneConnection_ = exports.PhoneCallDiscarded_ = exports.PhoneCall_ = exports.PhoneCallAccepted_ = void 0;
|
|
30
|
+
exports.SecurePlainEmail_ = exports.SecurePlainPhone_ = exports.SecureData_ = exports.SecureFile_ = exports.SecureFileEmpty_ = exports.InputSecureFile_ = exports.InputSecureFileUploaded_ = exports.help_TermsOfServiceUpdate_ = exports.help_TermsOfServiceUpdateEmpty_ = exports.InputClientProxy_ = exports.FileHash_ = exports.messages_FoundStickerSets_ = exports.messages_FoundStickerSetsNotModified_ = exports.DialogPeerFolder_ = exports.DialogPeer_ = exports.InputDialogPeerFolder_ = exports.InputDialogPeer_ = exports.InputMessageCallbackQuery_ = exports.InputMessagePinned_ = exports.InputMessageReplyTo_ = exports.InputMessageID_ = exports.account_WebAuthorizations_ = exports.WebAuthorization_ = exports.InputSingleMedia_ = exports.help_RecentMeUrls_ = exports.RecentMeUrlStickerSet_ = exports.RecentMeUrlChatInvite_ = exports.RecentMeUrlChat_ = exports.RecentMeUrlUser_ = exports.RecentMeUrlUnknown_ = exports.messages_FavedStickers_ = exports.messages_FavedStickersNotModified_ = exports.PopularContact_ = exports.ChannelAdminLogEventsFilter_ = exports.channels_AdminLogResults_ = exports.ChannelAdminLogEvent_ = exports.ChannelAdminLogEventActionChangeEmojiStickerSet_ = exports.ChannelAdminLogEventActionChangeEmojiStatus_ = exports.ChannelAdminLogEventActionChangeWallpaper_ = exports.ChannelAdminLogEventActionChangeProfilePeerColor_ = exports.ChannelAdminLogEventActionChangePeerColor_ = exports.ChannelAdminLogEventActionToggleAntiSpam_ = exports.ChannelAdminLogEventActionPinTopic_ = exports.ChannelAdminLogEventActionDeleteTopic_ = exports.ChannelAdminLogEventActionEditTopic_ = exports.ChannelAdminLogEventActionCreateTopic_ = exports.ChannelAdminLogEventActionToggleForum_ = exports.ChannelAdminLogEventActionChangeUsernames_ = exports.ChannelAdminLogEventActionChangeAvailableReactions_ = exports.ChannelAdminLogEventActionSendMessage_ = void 0;
|
|
31
|
+
exports.JsonString_ = exports.JsonNumber_ = exports.JsonBool_ = exports.JsonNull_ = exports.JsonObjectValue_ = exports.InputAppEvent_ = exports.help_PassportConfig_ = exports.help_PassportConfigNotModified_ = exports.SecureRequiredTypeOneOf_ = exports.SecureRequiredType_ = exports.InputCheckPasswordSRP_ = exports.InputCheckPasswordEmpty_ = exports.SecureSecretSettings_ = exports.SecurePasswordKdfAlgoSHA512_ = exports.SecurePasswordKdfAlgoPBKDF2HMACSHA512iter100000_ = exports.SecurePasswordKdfAlgoUnknown_ = exports.PasswordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow_ = exports.PasswordKdfAlgoUnknown_ = exports.account_Takeout_ = exports.SavedPhoneContact_ = exports.help_DeepLinkInfo_ = exports.help_DeepLinkInfoEmpty_ = exports.account_SentEmailCode_ = exports.account_AuthorizationForm_ = exports.SecureCredentialsEncrypted_ = exports.SecureValueErrorTranslationFiles_ = exports.SecureValueErrorTranslationFile_ = exports.SecureValueError_ = exports.SecureValueErrorFiles_ = exports.SecureValueErrorFile_ = exports.SecureValueErrorSelfie_ = exports.SecureValueErrorReverseSide_ = exports.SecureValueErrorFrontSide_ = exports.SecureValueErrorData_ = exports.SecureValueHash_ = exports.InputSecureValue_ = exports.SecureValue_ = exports.SecureValueTypeEmail_ = exports.SecureValueTypePhone_ = exports.SecureValueTypeTemporaryRegistration_ = exports.SecureValueTypePassportRegistration_ = exports.SecureValueTypeRentalAgreement_ = exports.SecureValueTypeBankStatement_ = exports.SecureValueTypeUtilityBill_ = exports.SecureValueTypeAddress_ = exports.SecureValueTypeInternalPassport_ = exports.SecureValueTypeIdentityCard_ = exports.SecureValueTypeDriverLicense_ = exports.SecureValueTypePassport_ = exports.SecureValueTypePersonalDetails_ = void 0;
|
|
32
|
+
exports.InputThemeSlug_ = exports.InputTheme_ = exports.RestrictionReason_ = exports.PeerSelfLocated_ = exports.PeerLocated_ = exports.ChannelLocation_ = exports.ChannelLocationEmpty_ = exports.UrlAuthResultDefault_ = exports.UrlAuthResultAccepted_ = exports.UrlAuthResultRequest_ = exports.messages_SearchCounter_ = exports.FolderPeer_ = exports.InputFolderPeer_ = exports.Folder_ = exports.EmojiLanguage_ = exports.EmojiURL_ = exports.EmojiKeywordsDifference_ = exports.EmojiKeywordDeleted_ = exports.EmojiKeyword_ = exports.account_AutoDownloadSettings_ = exports.AutoDownloadSettings_ = exports.WallPaperSettings_ = exports.CodeSettings_ = exports.account_WallPapers_ = exports.account_WallPapersNotModified_ = exports.InputWallPaperNoFile_ = exports.InputWallPaperSlug_ = exports.InputWallPaper_ = exports.ChatBannedRights_ = exports.ChatAdminRights_ = exports.StatsURL_ = exports.ChatOnlines_ = exports.PollResults_ = exports.PollAnswerVoters_ = exports.Poll_ = exports.PollAnswer_ = exports.help_UserInfo_ = exports.help_UserInfoEmpty_ = exports.help_SupportName_ = exports.Page_ = exports.PageRelatedArticle_ = exports.PageListOrderedItemBlocks_ = exports.PageListOrderedItemText_ = exports.PageListItemBlocks_ = exports.PageListItemText_ = exports.PageCaption_ = exports.PageTableRow_ = exports.PageTableCell_ = exports.JsonObject_ = exports.JsonArray_ = void 0;
|
|
33
|
+
exports.MessageReplyStoryHeader_ = exports.MessageReplyHeader_ = exports.messages_DiscussionMessage_ = exports.messages_MessageViews_ = exports.MessageViews_ = exports.help_CountriesList_ = exports.help_CountriesListNotModified_ = exports.help_Country_ = exports.help_CountryCode_ = exports.GlobalPrivacySettings_ = exports.stats_MegagroupStats_ = exports.StatsGroupTopInviter_ = exports.StatsGroupTopAdmin_ = exports.StatsGroupTopPoster_ = exports.VideoSizeStickerMarkup_ = exports.VideoSizeEmojiMarkup_ = exports.VideoSize_ = exports.help_PromoData_ = exports.help_PromoDataEmpty_ = exports.stats_BroadcastStats_ = exports.StatsGraph_ = exports.StatsGraphError_ = exports.StatsGraphAsync_ = exports.StatsPercentValue_ = exports.StatsAbsValueAndPrev_ = exports.StatsDateRangeDays_ = exports.DialogFilterSuggested_ = exports.DialogFilterChatlist_ = exports.DialogFilterDefault_ = exports.DialogFilter_ = exports.payments_BankCardData_ = exports.BankCardOpenUrl_ = exports.messages_VotesList_ = exports.WebPageAttributeStory_ = exports.WebPageAttributeTheme_ = exports.ThemeSettings_ = exports.InputThemeSettings_ = exports.BaseThemeArctic_ = exports.BaseThemeTinted_ = exports.BaseThemeNight_ = exports.BaseThemeDay_ = exports.BaseThemeClassic_ = exports.messages_InactiveChats_ = exports.account_ContentSettings_ = exports.auth_LoginTokenSuccess_ = exports.auth_LoginTokenMigrateTo_ = exports.auth_LoginToken_ = exports.account_Themes_ = exports.account_ThemesNotModified_ = exports.Theme_ = void 0;
|
|
34
|
+
exports.users_UserFull_ = exports.channels_SendAsPeers_ = exports.messages_SearchResultsPositions_ = exports.SearchResultPosition_ = exports.messages_SearchResultsCalendar_ = exports.SearchResultsCalendarPeriod_ = exports.messages_SponsoredMessagesEmpty_ = exports.messages_SponsoredMessages_ = exports.SponsoredMessage_ = exports.account_ResetPasswordOk_ = exports.account_ResetPasswordRequestedWait_ = exports.account_ResetPasswordFailedWait_ = exports.BotCommandScopePeerUser_ = exports.BotCommandScopePeerAdmins_ = exports.BotCommandScopePeer_ = exports.BotCommandScopeChatAdmins_ = exports.BotCommandScopeChats_ = exports.BotCommandScopeUsers_ = exports.BotCommandScopeDefault_ = exports.stickers_SuggestedShortName_ = exports.GroupCallParticipantVideo_ = exports.GroupCallParticipantVideoSourceGroup_ = exports.phone_ExportedGroupCallInvite_ = exports.phone_JoinAsPeers_ = exports.messages_CheckedHistoryImportPeer_ = exports.messages_ChatAdminsWithInvites_ = exports.ChatAdminWithInvites_ = exports.messages_ChatInviteImporters_ = exports.messages_ExportedChatInviteReplaced_ = exports.messages_ExportedChatInvite_ = exports.messages_ExportedChatInvites_ = exports.ChatInviteImporter_ = exports.messages_AffectedFoundMessages_ = exports.messages_HistoryImportParsed_ = exports.messages_HistoryImport_ = exports.InlineQueryPeerTypeBotPM_ = exports.InlineQueryPeerTypeBroadcast_ = exports.InlineQueryPeerTypeMegagroup_ = exports.InlineQueryPeerTypeChat_ = exports.InlineQueryPeerTypePM_ = exports.InlineQueryPeerTypeSameBotPM_ = exports.phone_GroupParticipants_ = exports.phone_GroupCall_ = exports.GroupCallParticipant_ = exports.InputGroupCall_ = exports.GroupCall_ = exports.GroupCallDiscarded_ = exports.stats_MessageStats_ = exports.PeerBlocked_ = exports.MessageReplies_ = void 0;
|
|
35
|
+
exports.EmojiStatusEmpty_ = exports.PaymentFormMethod_ = exports.PremiumGiftOption_ = exports.InputStorePaymentPremiumGiveaway_ = exports.InputStorePaymentPremiumGiftCode_ = exports.InputStorePaymentGiftPremium_ = exports.InputStorePaymentPremiumSubscription_ = exports.help_PremiumPromo_ = exports.messages_TranscribedAudio_ = exports.payments_ExportedInvoice_ = exports.InputInvoicePremiumGiftCode_ = exports.InputInvoiceSlug_ = exports.InputInvoiceMessage_ = exports.AttachMenuPeerTypeBroadcast_ = exports.AttachMenuPeerTypeChat_ = exports.AttachMenuPeerTypePM_ = exports.AttachMenuPeerTypeBotPM_ = exports.AttachMenuPeerTypeSameBotPM_ = exports.account_SavedRingtoneConverted_ = exports.account_SavedRingtone_ = exports.NotificationSoundRingtone_ = exports.NotificationSoundLocal_ = exports.NotificationSoundNone_ = exports.NotificationSoundDefault_ = exports.account_SavedRingtones_ = exports.account_SavedRingtonesNotModified_ = exports.BotMenuButton_ = exports.BotMenuButtonCommands_ = exports.BotMenuButtonDefault_ = exports.WebViewMessageSent_ = exports.SimpleWebViewResultUrl_ = exports.WebViewResultUrl_ = exports.AttachMenuBotsBot_ = exports.AttachMenuBots_ = exports.AttachMenuBotsNotModified_ = exports.AttachMenuBot_ = exports.AttachMenuBotIcon_ = exports.AttachMenuBotIconColor_ = exports.phone_GroupCallStreamRtmpUrl_ = exports.phone_GroupCallStreamChannels_ = exports.GroupCallStreamChannel_ = exports.MessagePeerReaction_ = exports.messages_AvailableReactions_ = exports.messages_AvailableReactionsNotModified_ = exports.AvailableReaction_ = exports.messages_MessageReactionsList_ = exports.MessageReactions_ = exports.ReactionCount_ = exports.auth_LoggedOut_ = exports.messages_PeerSettings_ = void 0;
|
|
36
|
+
exports.BotApp_ = exports.BotAppNotModified_ = exports.InputBotAppShortName_ = exports.InputBotAppID_ = exports.help_AppConfig_ = exports.help_AppConfigNotModified_ = exports.account_AutoSaveSettings_ = exports.AutoSaveException_ = exports.AutoSaveSettings_ = exports.messages_TranslateResult_ = exports.TextWithEntities_ = exports.messages_EmojiGroups_ = exports.messages_EmojiGroupsNotModified_ = exports.EmojiGroup_ = exports.EmojiList_ = exports.EmojiListNotModified_ = exports.RequestPeerTypeBroadcast_ = exports.RequestPeerTypeChat_ = exports.RequestPeerTypeUser_ = exports.ExportedContactToken_ = exports.DefaultHistoryTTL_ = exports.messages_ForumTopics_ = exports.ForumTopic_ = exports.ForumTopicDeleted_ = exports.Username_ = exports.StickerKeyword_ = exports.MessageExtendedMedia_ = exports.MessageExtendedMediaPreview_ = exports.SendAsPeer_ = exports.PremiumSubscriptionOption_ = exports.account_EmailVerifiedLogin_ = exports.account_EmailVerified_ = exports.EmailVerificationApple_ = exports.EmailVerificationGoogle_ = exports.EmailVerificationCode_ = exports.EmailVerifyPurposePassport_ = exports.EmailVerifyPurposeLoginChange_ = exports.EmailVerifyPurposeLoginSetup_ = exports.messages_Reactions_ = exports.messages_ReactionsNotModified_ = exports.ChatReactionsSome_ = exports.ChatReactionsAll_ = exports.ChatReactionsNone_ = exports.ReactionCustomEmoji_ = exports.ReactionEmoji_ = exports.ReactionEmpty_ = exports.account_EmojiStatuses_ = exports.account_EmojiStatusesNotModified_ = exports.EmojiStatusUntil_ = exports.EmojiStatus_ = void 0;
|
|
37
|
+
exports.MyBoost_ = exports.premium_BoostsList_ = exports.Boost_ = exports.PrepaidGiveaway_ = exports.payments_GiveawayInfoResults_ = exports.payments_GiveawayInfo_ = exports.payments_CheckedGiftCode_ = exports.PremiumGiftCodeOption_ = exports.messages_WebPage_ = exports.stories_PeerStories_ = exports.PeerStories_ = exports.InputMediaAreaChannelPost_ = exports.MediaAreaChannelPost_ = exports.MediaAreaSuggestedReaction_ = exports.MediaAreaGeoPoint_ = exports.InputMediaAreaVenue_ = exports.MediaAreaVenue_ = exports.MediaAreaCoordinates_ = exports.StoriesStealthMode_ = exports.ExportedStoryLink_ = exports.InputReplyToStory_ = exports.InputReplyToMessage_ = exports.stories_StoryViews_ = exports.stories_StoryViewsList_ = exports.StoryViewPublicRepost_ = exports.StoryViewPublicForward_ = exports.StoryView_ = exports.stories_Stories_ = exports.stories_AllStories_ = exports.stories_AllStoriesNotModified_ = exports.StoryItem_ = exports.StoryItemSkipped_ = exports.StoryItemDeleted_ = exports.StoryViews_ = exports.SponsoredWebPage_ = exports.MessagePeerVoteMultiple_ = exports.MessagePeerVoteInputOption_ = exports.MessagePeerVote_ = exports.bots_BotInfo_ = exports.chatlists_ChatlistUpdates_ = exports.chatlists_ChatlistInvite_ = exports.chatlists_ChatlistInviteAlready_ = exports.chatlists_ExportedInvites_ = exports.chatlists_ExportedChatlistInvite_ = exports.ExportedChatlistInvite_ = exports.InputChatlistDialogFilter_ = exports.ReadParticipantDate_ = exports.InlineBotWebView_ = exports.AppWebViewResultUrl_ = exports.messages_BotApp_ = void 0;
|
|
38
|
+
exports.messages_QuickRepliesNotModified_ = exports.messages_QuickReplies_ = exports.InputQuickReplyShortcutId_ = exports.InputQuickReplyShortcut_ = exports.QuickReply_ = exports.help_TimezonesList_ = exports.help_TimezonesListNotModified_ = exports.Timezone_ = exports.BusinessAwayMessage_ = exports.InputBusinessAwayMessage_ = exports.BusinessGreetingMessage_ = exports.InputBusinessGreetingMessage_ = exports.BusinessAwayMessageScheduleCustom_ = exports.BusinessAwayMessageScheduleOutsideWorkHours_ = exports.BusinessAwayMessageScheduleAlways_ = exports.BusinessRecipients_ = exports.InputBusinessRecipients_ = exports.BusinessLocation_ = exports.BusinessWorkHours_ = exports.BusinessWeeklyOpen_ = exports.SmsJob_ = exports.smsjobs_Status_ = exports.smsjobs_EligibleToJoin_ = exports.OutboxReadDate_ = exports.messages_SavedReactionTags_ = exports.messages_SavedReactionTagsNotModified_ = exports.SavedReactionTag_ = exports.messages_SavedDialogsNotModified_ = exports.messages_SavedDialogsSlice_ = exports.messages_SavedDialogs_ = exports.SavedDialog_ = exports.stories_StoryReactionsList_ = exports.StoryReactionPublicRepost_ = exports.StoryReactionPublicForward_ = exports.StoryReaction_ = exports.help_PeerColors_ = exports.help_PeerColorsNotModified_ = exports.help_PeerColorOption_ = exports.help_PeerColorProfileSet_ = exports.help_PeerColorSet_ = exports.PeerColor_ = exports.stats_PublicForwards_ = exports.PublicForwardStory_ = exports.PublicForwardMessage_ = exports.stats_StoryStats_ = exports.PostInteractionCountersStory_ = exports.PostInteractionCountersMessage_ = exports.StoryFwdHeader_ = exports.premium_BoostsStatus_ = exports.premium_MyBoosts_ = void 0;
|
|
39
|
+
exports.map = exports.types = exports.stats_BroadcastRevenueTransactions_ = exports.BroadcastRevenueTransactionRefund_ = exports.BroadcastRevenueTransactionWithdrawal_ = exports.BroadcastRevenueTransactionProceeds_ = exports.stats_BroadcastRevenueWithdrawalUrl_ = exports.stats_BroadcastRevenueStats_ = exports.channels_SponsoredMessageReportResultReported_ = exports.channels_SponsoredMessageReportResultAdsHidden_ = exports.channels_SponsoredMessageReportResultChooseOption_ = exports.SponsoredMessageReportOption_ = exports.RequestedPeerChannel_ = exports.RequestedPeerChat_ = exports.RequestedPeerUser_ = exports.account_ResolvedBusinessChatLinks_ = exports.account_BusinessChatLinks_ = exports.BusinessChatLink_ = exports.InputBusinessChatLink_ = exports.messages_InvitedUsers_ = exports.MissingInvitee_ = exports.contacts_ContactBirthdays_ = exports.ContactBirthday_ = exports.BusinessBotRecipients_ = exports.InputBusinessBotRecipients_ = exports.fragment_CollectibleInfo_ = exports.InputCollectiblePhone_ = exports.InputCollectibleUsername_ = exports.messages_MyStickers_ = exports.BusinessIntro_ = exports.InputBusinessIntro_ = exports.BotBusinessConnection_ = exports.Birthday_ = exports.messages_DialogFilters_ = exports.account_ConnectedBots_ = exports.ConnectedBot_ = void 0;
|
|
39
40
|
// deno-fmt-ignore-file
|
|
40
41
|
const _1_tl_object_js_1 = require("./1_tl_object.js");
|
|
41
42
|
class Type_ extends _1_tl_object_js_1.TLObject {
|
|
@@ -126,9 +127,18 @@ exports._True_ = _True_;
|
|
|
126
127
|
class _Error_ extends Type_ {
|
|
127
128
|
}
|
|
128
129
|
exports._Error_ = _Error_;
|
|
129
|
-
class
|
|
130
|
+
class _IpPort_ extends Type_ {
|
|
130
131
|
}
|
|
131
|
-
exports.
|
|
132
|
+
exports._IpPort_ = _IpPort_;
|
|
133
|
+
class _AccessPointRule_ extends Type_ {
|
|
134
|
+
}
|
|
135
|
+
exports._AccessPointRule_ = _AccessPointRule_;
|
|
136
|
+
class _help_ConfigSimple_ extends Type_ {
|
|
137
|
+
}
|
|
138
|
+
exports._help_ConfigSimple_ = _help_ConfigSimple_;
|
|
139
|
+
class _InputFileLocation_ extends Type_ {
|
|
140
|
+
}
|
|
141
|
+
exports._InputFileLocation_ = _InputFileLocation_;
|
|
132
142
|
class _InputPeer_ extends Type_ {
|
|
133
143
|
}
|
|
134
144
|
exports._InputPeer_ = _InputPeer_;
|
|
@@ -153,9 +163,6 @@ exports._InputGeoPoint_ = _InputGeoPoint_;
|
|
|
153
163
|
class _InputPhoto_ extends Type_ {
|
|
154
164
|
}
|
|
155
165
|
exports._InputPhoto_ = _InputPhoto_;
|
|
156
|
-
class _InputFileLocation_ extends Type_ {
|
|
157
|
-
}
|
|
158
|
-
exports._InputFileLocation_ = _InputFileLocation_;
|
|
159
166
|
class _Peer_ extends Type_ {
|
|
160
167
|
}
|
|
161
168
|
exports._Peer_ = _Peer_;
|
|
@@ -1500,6 +1507,78 @@ exports._account_ConnectedBots_ = _account_ConnectedBots_;
|
|
|
1500
1507
|
class _messages_DialogFilters_ extends Type_ {
|
|
1501
1508
|
}
|
|
1502
1509
|
exports._messages_DialogFilters_ = _messages_DialogFilters_;
|
|
1510
|
+
class _Birthday_ extends Type_ {
|
|
1511
|
+
}
|
|
1512
|
+
exports._Birthday_ = _Birthday_;
|
|
1513
|
+
class _BotBusinessConnection_ extends Type_ {
|
|
1514
|
+
}
|
|
1515
|
+
exports._BotBusinessConnection_ = _BotBusinessConnection_;
|
|
1516
|
+
class _InputBusinessIntro_ extends Type_ {
|
|
1517
|
+
}
|
|
1518
|
+
exports._InputBusinessIntro_ = _InputBusinessIntro_;
|
|
1519
|
+
class _BusinessIntro_ extends Type_ {
|
|
1520
|
+
}
|
|
1521
|
+
exports._BusinessIntro_ = _BusinessIntro_;
|
|
1522
|
+
class _messages_MyStickers_ extends Type_ {
|
|
1523
|
+
}
|
|
1524
|
+
exports._messages_MyStickers_ = _messages_MyStickers_;
|
|
1525
|
+
class _InputCollectible_ extends Type_ {
|
|
1526
|
+
}
|
|
1527
|
+
exports._InputCollectible_ = _InputCollectible_;
|
|
1528
|
+
class _fragment_CollectibleInfo_ extends Type_ {
|
|
1529
|
+
}
|
|
1530
|
+
exports._fragment_CollectibleInfo_ = _fragment_CollectibleInfo_;
|
|
1531
|
+
class _InputBusinessBotRecipients_ extends Type_ {
|
|
1532
|
+
}
|
|
1533
|
+
exports._InputBusinessBotRecipients_ = _InputBusinessBotRecipients_;
|
|
1534
|
+
class _BusinessBotRecipients_ extends Type_ {
|
|
1535
|
+
}
|
|
1536
|
+
exports._BusinessBotRecipients_ = _BusinessBotRecipients_;
|
|
1537
|
+
class _ContactBirthday_ extends Type_ {
|
|
1538
|
+
}
|
|
1539
|
+
exports._ContactBirthday_ = _ContactBirthday_;
|
|
1540
|
+
class _contacts_ContactBirthdays_ extends Type_ {
|
|
1541
|
+
}
|
|
1542
|
+
exports._contacts_ContactBirthdays_ = _contacts_ContactBirthdays_;
|
|
1543
|
+
class _MissingInvitee_ extends Type_ {
|
|
1544
|
+
}
|
|
1545
|
+
exports._MissingInvitee_ = _MissingInvitee_;
|
|
1546
|
+
class _messages_InvitedUsers_ extends Type_ {
|
|
1547
|
+
}
|
|
1548
|
+
exports._messages_InvitedUsers_ = _messages_InvitedUsers_;
|
|
1549
|
+
class _InputBusinessChatLink_ extends Type_ {
|
|
1550
|
+
}
|
|
1551
|
+
exports._InputBusinessChatLink_ = _InputBusinessChatLink_;
|
|
1552
|
+
class _BusinessChatLink_ extends Type_ {
|
|
1553
|
+
}
|
|
1554
|
+
exports._BusinessChatLink_ = _BusinessChatLink_;
|
|
1555
|
+
class _account_BusinessChatLinks_ extends Type_ {
|
|
1556
|
+
}
|
|
1557
|
+
exports._account_BusinessChatLinks_ = _account_BusinessChatLinks_;
|
|
1558
|
+
class _account_ResolvedBusinessChatLinks_ extends Type_ {
|
|
1559
|
+
}
|
|
1560
|
+
exports._account_ResolvedBusinessChatLinks_ = _account_ResolvedBusinessChatLinks_;
|
|
1561
|
+
class _RequestedPeer_ extends Type_ {
|
|
1562
|
+
}
|
|
1563
|
+
exports._RequestedPeer_ = _RequestedPeer_;
|
|
1564
|
+
class _SponsoredMessageReportOption_ extends Type_ {
|
|
1565
|
+
}
|
|
1566
|
+
exports._SponsoredMessageReportOption_ = _SponsoredMessageReportOption_;
|
|
1567
|
+
class _channels_SponsoredMessageReportResult_ extends Type_ {
|
|
1568
|
+
}
|
|
1569
|
+
exports._channels_SponsoredMessageReportResult_ = _channels_SponsoredMessageReportResult_;
|
|
1570
|
+
class _stats_BroadcastRevenueStats_ extends Type_ {
|
|
1571
|
+
}
|
|
1572
|
+
exports._stats_BroadcastRevenueStats_ = _stats_BroadcastRevenueStats_;
|
|
1573
|
+
class _stats_BroadcastRevenueWithdrawalUrl_ extends Type_ {
|
|
1574
|
+
}
|
|
1575
|
+
exports._stats_BroadcastRevenueWithdrawalUrl_ = _stats_BroadcastRevenueWithdrawalUrl_;
|
|
1576
|
+
class _BroadcastRevenueTransaction_ extends Type_ {
|
|
1577
|
+
}
|
|
1578
|
+
exports._BroadcastRevenueTransaction_ = _BroadcastRevenueTransaction_;
|
|
1579
|
+
class _stats_BroadcastRevenueTransactions_ extends Type_ {
|
|
1580
|
+
}
|
|
1581
|
+
exports._stats_BroadcastRevenueTransactions_ = _stats_BroadcastRevenueTransactions_;
|
|
1503
1582
|
class ResPQ_ extends _ResPQ_ {
|
|
1504
1583
|
get [_1_tl_object_js_1.id]() {
|
|
1505
1584
|
return 0x05162463;
|
|
@@ -3031,25 +3110,290 @@ class Error_ extends _Error_ {
|
|
|
3031
3110
|
}
|
|
3032
3111
|
}
|
|
3033
3112
|
exports.Error_ = Error_;
|
|
3034
|
-
|
|
3035
|
-
class Null_ extends _Null_ {
|
|
3113
|
+
class IpPort_ extends _IpPort_ {
|
|
3036
3114
|
get [_1_tl_object_js_1.id]() {
|
|
3037
|
-
return
|
|
3115
|
+
return 0xD433AD73;
|
|
3038
3116
|
}
|
|
3039
3117
|
static get [_1_tl_object_js_1.name]() {
|
|
3040
|
-
return "
|
|
3118
|
+
return "ipPort";
|
|
3041
3119
|
}
|
|
3042
3120
|
static get [_1_tl_object_js_1.paramDesc]() {
|
|
3043
|
-
return [
|
|
3121
|
+
return [
|
|
3122
|
+
["ipv4", "number", "int"],
|
|
3123
|
+
["port", "number", "int"],
|
|
3124
|
+
];
|
|
3044
3125
|
}
|
|
3045
3126
|
get [_1_tl_object_js_1.params]() {
|
|
3046
|
-
return [
|
|
3127
|
+
return [
|
|
3128
|
+
[this.ipv4, "number", "int"],
|
|
3129
|
+
[this.port, "number", "int"],
|
|
3130
|
+
];
|
|
3047
3131
|
}
|
|
3048
|
-
constructor() {
|
|
3132
|
+
constructor(params) {
|
|
3133
|
+
super();
|
|
3134
|
+
Object.defineProperty(this, "ipv4", {
|
|
3135
|
+
enumerable: true,
|
|
3136
|
+
configurable: true,
|
|
3137
|
+
writable: true,
|
|
3138
|
+
value: void 0
|
|
3139
|
+
});
|
|
3140
|
+
Object.defineProperty(this, "port", {
|
|
3141
|
+
enumerable: true,
|
|
3142
|
+
configurable: true,
|
|
3143
|
+
writable: true,
|
|
3144
|
+
value: void 0
|
|
3145
|
+
});
|
|
3146
|
+
this.ipv4 = params.ipv4;
|
|
3147
|
+
this.port = params.port;
|
|
3148
|
+
}
|
|
3149
|
+
}
|
|
3150
|
+
exports.IpPort_ = IpPort_;
|
|
3151
|
+
class IpPortSecret_ extends _IpPort_ {
|
|
3152
|
+
get [_1_tl_object_js_1.id]() {
|
|
3153
|
+
return 0x37982646;
|
|
3154
|
+
}
|
|
3155
|
+
static get [_1_tl_object_js_1.name]() {
|
|
3156
|
+
return "ipPortSecret";
|
|
3157
|
+
}
|
|
3158
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
3159
|
+
return [
|
|
3160
|
+
["ipv4", "number", "int"],
|
|
3161
|
+
["port", "number", "int"],
|
|
3162
|
+
["secret", Uint8Array, "bytes"],
|
|
3163
|
+
];
|
|
3164
|
+
}
|
|
3165
|
+
get [_1_tl_object_js_1.params]() {
|
|
3166
|
+
return [
|
|
3167
|
+
[this.ipv4, "number", "int"],
|
|
3168
|
+
[this.port, "number", "int"],
|
|
3169
|
+
[this.secret, Uint8Array, "bytes"],
|
|
3170
|
+
];
|
|
3171
|
+
}
|
|
3172
|
+
constructor(params) {
|
|
3173
|
+
super();
|
|
3174
|
+
Object.defineProperty(this, "ipv4", {
|
|
3175
|
+
enumerable: true,
|
|
3176
|
+
configurable: true,
|
|
3177
|
+
writable: true,
|
|
3178
|
+
value: void 0
|
|
3179
|
+
});
|
|
3180
|
+
Object.defineProperty(this, "port", {
|
|
3181
|
+
enumerable: true,
|
|
3182
|
+
configurable: true,
|
|
3183
|
+
writable: true,
|
|
3184
|
+
value: void 0
|
|
3185
|
+
});
|
|
3186
|
+
Object.defineProperty(this, "secret", {
|
|
3187
|
+
enumerable: true,
|
|
3188
|
+
configurable: true,
|
|
3189
|
+
writable: true,
|
|
3190
|
+
value: void 0
|
|
3191
|
+
});
|
|
3192
|
+
this.ipv4 = params.ipv4;
|
|
3193
|
+
this.port = params.port;
|
|
3194
|
+
this.secret = params.secret;
|
|
3195
|
+
}
|
|
3196
|
+
}
|
|
3197
|
+
exports.IpPortSecret_ = IpPortSecret_;
|
|
3198
|
+
class AccessPointRule_ extends _AccessPointRule_ {
|
|
3199
|
+
get [_1_tl_object_js_1.id]() {
|
|
3200
|
+
return 0x4679B65F;
|
|
3201
|
+
}
|
|
3202
|
+
static get [_1_tl_object_js_1.name]() {
|
|
3203
|
+
return "accessPointRule";
|
|
3204
|
+
}
|
|
3205
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
3206
|
+
return [
|
|
3207
|
+
["phone_prefix_rules", "string", "string"],
|
|
3208
|
+
["dc_id", "number", "int"],
|
|
3209
|
+
["ips", [_IpPort_], "vector<IpPort>"],
|
|
3210
|
+
];
|
|
3211
|
+
}
|
|
3212
|
+
get [_1_tl_object_js_1.params]() {
|
|
3213
|
+
return [
|
|
3214
|
+
[this.phone_prefix_rules, "string", "string"],
|
|
3215
|
+
[this.dc_id, "number", "int"],
|
|
3216
|
+
[this.ips, [_IpPort_], "vector<IpPort>"],
|
|
3217
|
+
];
|
|
3218
|
+
}
|
|
3219
|
+
constructor(params) {
|
|
3220
|
+
super();
|
|
3221
|
+
Object.defineProperty(this, "phone_prefix_rules", {
|
|
3222
|
+
enumerable: true,
|
|
3223
|
+
configurable: true,
|
|
3224
|
+
writable: true,
|
|
3225
|
+
value: void 0
|
|
3226
|
+
});
|
|
3227
|
+
Object.defineProperty(this, "dc_id", {
|
|
3228
|
+
enumerable: true,
|
|
3229
|
+
configurable: true,
|
|
3230
|
+
writable: true,
|
|
3231
|
+
value: void 0
|
|
3232
|
+
});
|
|
3233
|
+
Object.defineProperty(this, "ips", {
|
|
3234
|
+
enumerable: true,
|
|
3235
|
+
configurable: true,
|
|
3236
|
+
writable: true,
|
|
3237
|
+
value: void 0
|
|
3238
|
+
});
|
|
3239
|
+
this.phone_prefix_rules = params.phone_prefix_rules;
|
|
3240
|
+
this.dc_id = params.dc_id;
|
|
3241
|
+
this.ips = params.ips;
|
|
3242
|
+
}
|
|
3243
|
+
}
|
|
3244
|
+
exports.AccessPointRule_ = AccessPointRule_;
|
|
3245
|
+
class help_ConfigSimple_ extends _help_ConfigSimple_ {
|
|
3246
|
+
get [_1_tl_object_js_1.id]() {
|
|
3247
|
+
return 0x5A592A6C;
|
|
3248
|
+
}
|
|
3249
|
+
static get [_1_tl_object_js_1.name]() {
|
|
3250
|
+
return "help.configSimple";
|
|
3251
|
+
}
|
|
3252
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
3253
|
+
return [
|
|
3254
|
+
["date", "number", "int"],
|
|
3255
|
+
["expires", "number", "int"],
|
|
3256
|
+
["rules", [_AccessPointRule_], "vector<AccessPointRule>"],
|
|
3257
|
+
];
|
|
3258
|
+
}
|
|
3259
|
+
get [_1_tl_object_js_1.params]() {
|
|
3260
|
+
return [
|
|
3261
|
+
[this.date, "number", "int"],
|
|
3262
|
+
[this.expires, "number", "int"],
|
|
3263
|
+
[this.rules, [_AccessPointRule_], "vector<AccessPointRule>"],
|
|
3264
|
+
];
|
|
3265
|
+
}
|
|
3266
|
+
constructor(params) {
|
|
3049
3267
|
super();
|
|
3268
|
+
Object.defineProperty(this, "date", {
|
|
3269
|
+
enumerable: true,
|
|
3270
|
+
configurable: true,
|
|
3271
|
+
writable: true,
|
|
3272
|
+
value: void 0
|
|
3273
|
+
});
|
|
3274
|
+
Object.defineProperty(this, "expires", {
|
|
3275
|
+
enumerable: true,
|
|
3276
|
+
configurable: true,
|
|
3277
|
+
writable: true,
|
|
3278
|
+
value: void 0
|
|
3279
|
+
});
|
|
3280
|
+
Object.defineProperty(this, "rules", {
|
|
3281
|
+
enumerable: true,
|
|
3282
|
+
configurable: true,
|
|
3283
|
+
writable: true,
|
|
3284
|
+
value: void 0
|
|
3285
|
+
});
|
|
3286
|
+
this.date = params.date;
|
|
3287
|
+
this.expires = params.expires;
|
|
3288
|
+
this.rules = params.rules;
|
|
3289
|
+
}
|
|
3290
|
+
}
|
|
3291
|
+
exports.help_ConfigSimple_ = help_ConfigSimple_;
|
|
3292
|
+
class InputPeerPhotoFileLocationLegacy_ extends _InputFileLocation_ {
|
|
3293
|
+
get [_1_tl_object_js_1.id]() {
|
|
3294
|
+
return 0x27D69997;
|
|
3295
|
+
}
|
|
3296
|
+
static get [_1_tl_object_js_1.name]() {
|
|
3297
|
+
return "inputPeerPhotoFileLocationLegacy";
|
|
3298
|
+
}
|
|
3299
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
3300
|
+
return [
|
|
3301
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
3302
|
+
["big", "true", "flags.0?true"],
|
|
3303
|
+
["peer", _InputPeer_, "InputPeer"],
|
|
3304
|
+
["volume_id", "bigint", "long"],
|
|
3305
|
+
["local_id", "number", "int"],
|
|
3306
|
+
];
|
|
3307
|
+
}
|
|
3308
|
+
get [_1_tl_object_js_1.params]() {
|
|
3309
|
+
return [
|
|
3310
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
3311
|
+
[this.big ?? null, "true", "flags.0?true"],
|
|
3312
|
+
[this.peer, _InputPeer_, "InputPeer"],
|
|
3313
|
+
[this.volume_id, "bigint", "long"],
|
|
3314
|
+
[this.local_id, "number", "int"],
|
|
3315
|
+
];
|
|
3316
|
+
}
|
|
3317
|
+
constructor(params) {
|
|
3318
|
+
super();
|
|
3319
|
+
Object.defineProperty(this, "big", {
|
|
3320
|
+
enumerable: true,
|
|
3321
|
+
configurable: true,
|
|
3322
|
+
writable: true,
|
|
3323
|
+
value: void 0
|
|
3324
|
+
});
|
|
3325
|
+
Object.defineProperty(this, "peer", {
|
|
3326
|
+
enumerable: true,
|
|
3327
|
+
configurable: true,
|
|
3328
|
+
writable: true,
|
|
3329
|
+
value: void 0
|
|
3330
|
+
});
|
|
3331
|
+
Object.defineProperty(this, "volume_id", {
|
|
3332
|
+
enumerable: true,
|
|
3333
|
+
configurable: true,
|
|
3334
|
+
writable: true,
|
|
3335
|
+
value: void 0
|
|
3336
|
+
});
|
|
3337
|
+
Object.defineProperty(this, "local_id", {
|
|
3338
|
+
enumerable: true,
|
|
3339
|
+
configurable: true,
|
|
3340
|
+
writable: true,
|
|
3341
|
+
value: void 0
|
|
3342
|
+
});
|
|
3343
|
+
this.big = params.big;
|
|
3344
|
+
this.peer = params.peer;
|
|
3345
|
+
this.volume_id = params.volume_id;
|
|
3346
|
+
this.local_id = params.local_id;
|
|
3347
|
+
}
|
|
3348
|
+
}
|
|
3349
|
+
exports.InputPeerPhotoFileLocationLegacy_ = InputPeerPhotoFileLocationLegacy_;
|
|
3350
|
+
class InputStickerSetThumbLegacy_ extends _InputFileLocation_ {
|
|
3351
|
+
get [_1_tl_object_js_1.id]() {
|
|
3352
|
+
return 0x0DBAEAE9;
|
|
3353
|
+
}
|
|
3354
|
+
static get [_1_tl_object_js_1.name]() {
|
|
3355
|
+
return "inputStickerSetThumbLegacy";
|
|
3356
|
+
}
|
|
3357
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
3358
|
+
return [
|
|
3359
|
+
["stickerset", _InputStickerSet_, "InputStickerSet"],
|
|
3360
|
+
["volume_id", "bigint", "long"],
|
|
3361
|
+
["local_id", "number", "int"],
|
|
3362
|
+
];
|
|
3363
|
+
}
|
|
3364
|
+
get [_1_tl_object_js_1.params]() {
|
|
3365
|
+
return [
|
|
3366
|
+
[this.stickerset, _InputStickerSet_, "InputStickerSet"],
|
|
3367
|
+
[this.volume_id, "bigint", "long"],
|
|
3368
|
+
[this.local_id, "number", "int"],
|
|
3369
|
+
];
|
|
3370
|
+
}
|
|
3371
|
+
constructor(params) {
|
|
3372
|
+
super();
|
|
3373
|
+
Object.defineProperty(this, "stickerset", {
|
|
3374
|
+
enumerable: true,
|
|
3375
|
+
configurable: true,
|
|
3376
|
+
writable: true,
|
|
3377
|
+
value: void 0
|
|
3378
|
+
});
|
|
3379
|
+
Object.defineProperty(this, "volume_id", {
|
|
3380
|
+
enumerable: true,
|
|
3381
|
+
configurable: true,
|
|
3382
|
+
writable: true,
|
|
3383
|
+
value: void 0
|
|
3384
|
+
});
|
|
3385
|
+
Object.defineProperty(this, "local_id", {
|
|
3386
|
+
enumerable: true,
|
|
3387
|
+
configurable: true,
|
|
3388
|
+
writable: true,
|
|
3389
|
+
value: void 0
|
|
3390
|
+
});
|
|
3391
|
+
this.stickerset = params.stickerset;
|
|
3392
|
+
this.volume_id = params.volume_id;
|
|
3393
|
+
this.local_id = params.local_id;
|
|
3050
3394
|
}
|
|
3051
3395
|
}
|
|
3052
|
-
exports.
|
|
3396
|
+
exports.InputStickerSetThumbLegacy_ = InputStickerSetThumbLegacy_;
|
|
3053
3397
|
/** An empty constructor, no user or chat is defined. */
|
|
3054
3398
|
class InputPeerEmpty_ extends _InputPeer_ {
|
|
3055
3399
|
get [_1_tl_object_js_1.id]() {
|
|
@@ -5747,6 +6091,7 @@ class User_ extends _User_ {
|
|
|
5747
6091
|
["stories_hidden", "true", "flags2.3?true"],
|
|
5748
6092
|
["stories_unavailable", "true", "flags2.4?true"],
|
|
5749
6093
|
["contact_require_premium", "true", "flags2.10?true"],
|
|
6094
|
+
["bot_business", "true", "flags2.11?true"],
|
|
5750
6095
|
["id", "bigint", "long"],
|
|
5751
6096
|
["access_hash", "bigint", "flags.0?long"],
|
|
5752
6097
|
["first_name", "string", "flags.1?string"],
|
|
@@ -5793,6 +6138,7 @@ class User_ extends _User_ {
|
|
|
5793
6138
|
[this.stories_hidden ?? null, "true", "flags2.3?true"],
|
|
5794
6139
|
[this.stories_unavailable ?? null, "true", "flags2.4?true"],
|
|
5795
6140
|
[this.contact_require_premium ?? null, "true", "flags2.10?true"],
|
|
6141
|
+
[this.bot_business ?? null, "true", "flags2.11?true"],
|
|
5796
6142
|
[this.id, "bigint", "long"],
|
|
5797
6143
|
[this.access_hash ?? null, "bigint", "flags.0?long"],
|
|
5798
6144
|
[this.first_name ?? null, "string", "flags.1?string"],
|
|
@@ -5974,6 +6320,12 @@ class User_ extends _User_ {
|
|
|
5974
6320
|
writable: true,
|
|
5975
6321
|
value: void 0
|
|
5976
6322
|
});
|
|
6323
|
+
Object.defineProperty(this, "bot_business", {
|
|
6324
|
+
enumerable: true,
|
|
6325
|
+
configurable: true,
|
|
6326
|
+
writable: true,
|
|
6327
|
+
value: void 0
|
|
6328
|
+
});
|
|
5977
6329
|
/** ID of the user */
|
|
5978
6330
|
Object.defineProperty(this, "id", {
|
|
5979
6331
|
enumerable: true,
|
|
@@ -6116,6 +6468,7 @@ class User_ extends _User_ {
|
|
|
6116
6468
|
this.stories_hidden = params.stories_hidden;
|
|
6117
6469
|
this.stories_unavailable = params.stories_unavailable;
|
|
6118
6470
|
this.contact_require_premium = params.contact_require_premium;
|
|
6471
|
+
this.bot_business = params.bot_business;
|
|
6119
6472
|
this.id = params.id;
|
|
6120
6473
|
this.access_hash = params.access_hash;
|
|
6121
6474
|
this.first_name = params.first_name;
|
|
@@ -7397,6 +7750,8 @@ class ChannelFull_ extends _ChatFull_ {
|
|
|
7397
7750
|
["translations_disabled", "true", "flags2.3?true"],
|
|
7398
7751
|
["stories_pinned_available", "true", "flags2.5?true"],
|
|
7399
7752
|
["view_forum_as_messages", "true", "flags2.6?true"],
|
|
7753
|
+
["restricted_sponsored", "true", "flags2.11?true"],
|
|
7754
|
+
["can_view_revenue", "true", "flags2.12?true"],
|
|
7400
7755
|
["id", "bigint", "long"],
|
|
7401
7756
|
["about", "string", "string"],
|
|
7402
7757
|
["participants_count", "number", "flags.0?int"],
|
|
@@ -7457,6 +7812,8 @@ class ChannelFull_ extends _ChatFull_ {
|
|
|
7457
7812
|
[this.translations_disabled ?? null, "true", "flags2.3?true"],
|
|
7458
7813
|
[this.stories_pinned_available ?? null, "true", "flags2.5?true"],
|
|
7459
7814
|
[this.view_forum_as_messages ?? null, "true", "flags2.6?true"],
|
|
7815
|
+
[this.restricted_sponsored ?? null, "true", "flags2.11?true"],
|
|
7816
|
+
[this.can_view_revenue ?? null, "true", "flags2.12?true"],
|
|
7460
7817
|
[this.id, "bigint", "long"],
|
|
7461
7818
|
[this.about, "string", "string"],
|
|
7462
7819
|
[this.participants_count ?? null, "number", "flags.0?int"],
|
|
@@ -7600,6 +7957,18 @@ class ChannelFull_ extends _ChatFull_ {
|
|
|
7600
7957
|
writable: true,
|
|
7601
7958
|
value: void 0
|
|
7602
7959
|
});
|
|
7960
|
+
Object.defineProperty(this, "restricted_sponsored", {
|
|
7961
|
+
enumerable: true,
|
|
7962
|
+
configurable: true,
|
|
7963
|
+
writable: true,
|
|
7964
|
+
value: void 0
|
|
7965
|
+
});
|
|
7966
|
+
Object.defineProperty(this, "can_view_revenue", {
|
|
7967
|
+
enumerable: true,
|
|
7968
|
+
configurable: true,
|
|
7969
|
+
writable: true,
|
|
7970
|
+
value: void 0
|
|
7971
|
+
});
|
|
7603
7972
|
/** ID of the channel */
|
|
7604
7973
|
Object.defineProperty(this, "id", {
|
|
7605
7974
|
enumerable: true,
|
|
@@ -7891,6 +8260,8 @@ class ChannelFull_ extends _ChatFull_ {
|
|
|
7891
8260
|
this.translations_disabled = params.translations_disabled;
|
|
7892
8261
|
this.stories_pinned_available = params.stories_pinned_available;
|
|
7893
8262
|
this.view_forum_as_messages = params.view_forum_as_messages;
|
|
8263
|
+
this.restricted_sponsored = params.restricted_sponsored;
|
|
8264
|
+
this.can_view_revenue = params.can_view_revenue;
|
|
7894
8265
|
this.id = params.id;
|
|
7895
8266
|
this.about = params.about;
|
|
7896
8267
|
this.participants_count = params.participants_count;
|
|
@@ -8289,7 +8660,7 @@ exports.MessageEmpty_ = MessageEmpty_;
|
|
|
8289
8660
|
/** A message */
|
|
8290
8661
|
class Message_ extends _Message_ {
|
|
8291
8662
|
get [_1_tl_object_js_1.id]() {
|
|
8292
|
-
return
|
|
8663
|
+
return 0x2357BF25;
|
|
8293
8664
|
}
|
|
8294
8665
|
static get [_1_tl_object_js_1.name]() {
|
|
8295
8666
|
return "message";
|
|
@@ -8308,6 +8679,8 @@ class Message_ extends _Message_ {
|
|
|
8308
8679
|
["pinned", "true", "flags.24?true"],
|
|
8309
8680
|
["noforwards", "true", "flags.26?true"],
|
|
8310
8681
|
["invert_media", "true", "flags.27?true"],
|
|
8682
|
+
["flags2", _1_tl_object_js_1.flags, "#"],
|
|
8683
|
+
["offline", "true", "flags2.1?true"],
|
|
8311
8684
|
["id", "number", "int"],
|
|
8312
8685
|
["from_id", _Peer_, "flags.8?Peer"],
|
|
8313
8686
|
["from_boosts_applied", "number", "flags.29?int"],
|
|
@@ -8315,6 +8688,7 @@ class Message_ extends _Message_ {
|
|
|
8315
8688
|
["saved_peer_id", _Peer_, "flags.28?Peer"],
|
|
8316
8689
|
["fwd_from", _MessageFwdHeader_, "flags.2?MessageFwdHeader"],
|
|
8317
8690
|
["via_bot_id", "bigint", "flags.11?long"],
|
|
8691
|
+
["via_business_bot_id", "bigint", "flags2.0?long"],
|
|
8318
8692
|
["reply_to", _MessageReplyHeader_, "flags.3?MessageReplyHeader"],
|
|
8319
8693
|
["date", "number", "int"],
|
|
8320
8694
|
["message", "string", "string"],
|
|
@@ -8347,6 +8721,8 @@ class Message_ extends _Message_ {
|
|
|
8347
8721
|
[this.pinned ?? null, "true", "flags.24?true"],
|
|
8348
8722
|
[this.noforwards ?? null, "true", "flags.26?true"],
|
|
8349
8723
|
[this.invert_media ?? null, "true", "flags.27?true"],
|
|
8724
|
+
["flags2", _1_tl_object_js_1.flags, "#"],
|
|
8725
|
+
[this.offline ?? null, "true", "flags2.1?true"],
|
|
8350
8726
|
[this.id, "number", "int"],
|
|
8351
8727
|
[this.from_id ?? null, _Peer_, "flags.8?Peer"],
|
|
8352
8728
|
[this.from_boosts_applied ?? null, "number", "flags.29?int"],
|
|
@@ -8354,6 +8730,7 @@ class Message_ extends _Message_ {
|
|
|
8354
8730
|
[this.saved_peer_id ?? null, _Peer_, "flags.28?Peer"],
|
|
8355
8731
|
[this.fwd_from ?? null, _MessageFwdHeader_, "flags.2?MessageFwdHeader"],
|
|
8356
8732
|
[this.via_bot_id ?? null, "bigint", "flags.11?long"],
|
|
8733
|
+
[this.via_business_bot_id ?? null, "bigint", "flags2.0?long"],
|
|
8357
8734
|
[this.reply_to ?? null, _MessageReplyHeader_, "flags.3?MessageReplyHeader"],
|
|
8358
8735
|
[this.date, "number", "int"],
|
|
8359
8736
|
[this.message, "string", "string"],
|
|
@@ -8451,6 +8828,12 @@ class Message_ extends _Message_ {
|
|
|
8451
8828
|
writable: true,
|
|
8452
8829
|
value: void 0
|
|
8453
8830
|
});
|
|
8831
|
+
Object.defineProperty(this, "offline", {
|
|
8832
|
+
enumerable: true,
|
|
8833
|
+
configurable: true,
|
|
8834
|
+
writable: true,
|
|
8835
|
+
value: void 0
|
|
8836
|
+
});
|
|
8454
8837
|
/** ID of the message */
|
|
8455
8838
|
Object.defineProperty(this, "id", {
|
|
8456
8839
|
enumerable: true,
|
|
@@ -8499,6 +8882,12 @@ class Message_ extends _Message_ {
|
|
|
8499
8882
|
writable: true,
|
|
8500
8883
|
value: void 0
|
|
8501
8884
|
});
|
|
8885
|
+
Object.defineProperty(this, "via_business_bot_id", {
|
|
8886
|
+
enumerable: true,
|
|
8887
|
+
configurable: true,
|
|
8888
|
+
writable: true,
|
|
8889
|
+
value: void 0
|
|
8890
|
+
});
|
|
8502
8891
|
/** Reply information */
|
|
8503
8892
|
Object.defineProperty(this, "reply_to", {
|
|
8504
8893
|
enumerable: true,
|
|
@@ -8621,6 +9010,7 @@ class Message_ extends _Message_ {
|
|
|
8621
9010
|
this.pinned = params.pinned;
|
|
8622
9011
|
this.noforwards = params.noforwards;
|
|
8623
9012
|
this.invert_media = params.invert_media;
|
|
9013
|
+
this.offline = params.offline;
|
|
8624
9014
|
this.id = params.id;
|
|
8625
9015
|
this.from_id = params.from_id;
|
|
8626
9016
|
this.from_boosts_applied = params.from_boosts_applied;
|
|
@@ -8628,6 +9018,7 @@ class Message_ extends _Message_ {
|
|
|
8628
9018
|
this.saved_peer_id = params.saved_peer_id;
|
|
8629
9019
|
this.fwd_from = params.fwd_from;
|
|
8630
9020
|
this.via_bot_id = params.via_bot_id;
|
|
9021
|
+
this.via_business_bot_id = params.via_business_bot_id;
|
|
8631
9022
|
this.reply_to = params.reply_to;
|
|
8632
9023
|
this.date = params.date;
|
|
8633
9024
|
this.message = params.message;
|
|
@@ -11565,6 +11956,44 @@ class MessageActionBoostApply_ extends _MessageAction_ {
|
|
|
11565
11956
|
}
|
|
11566
11957
|
}
|
|
11567
11958
|
exports.MessageActionBoostApply_ = MessageActionBoostApply_;
|
|
11959
|
+
class MessageActionRequestedPeerSentMe_ extends _MessageAction_ {
|
|
11960
|
+
get [_1_tl_object_js_1.id]() {
|
|
11961
|
+
return 0x93B31848;
|
|
11962
|
+
}
|
|
11963
|
+
static get [_1_tl_object_js_1.name]() {
|
|
11964
|
+
return "messageActionRequestedPeerSentMe";
|
|
11965
|
+
}
|
|
11966
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
11967
|
+
return [
|
|
11968
|
+
["button_id", "number", "int"],
|
|
11969
|
+
["peers", [_RequestedPeer_], "Vector<RequestedPeer>"],
|
|
11970
|
+
];
|
|
11971
|
+
}
|
|
11972
|
+
get [_1_tl_object_js_1.params]() {
|
|
11973
|
+
return [
|
|
11974
|
+
[this.button_id, "number", "int"],
|
|
11975
|
+
[this.peers, [_RequestedPeer_], "Vector<RequestedPeer>"],
|
|
11976
|
+
];
|
|
11977
|
+
}
|
|
11978
|
+
constructor(params) {
|
|
11979
|
+
super();
|
|
11980
|
+
Object.defineProperty(this, "button_id", {
|
|
11981
|
+
enumerable: true,
|
|
11982
|
+
configurable: true,
|
|
11983
|
+
writable: true,
|
|
11984
|
+
value: void 0
|
|
11985
|
+
});
|
|
11986
|
+
Object.defineProperty(this, "peers", {
|
|
11987
|
+
enumerable: true,
|
|
11988
|
+
configurable: true,
|
|
11989
|
+
writable: true,
|
|
11990
|
+
value: void 0
|
|
11991
|
+
});
|
|
11992
|
+
this.button_id = params.button_id;
|
|
11993
|
+
this.peers = params.peers;
|
|
11994
|
+
}
|
|
11995
|
+
}
|
|
11996
|
+
exports.MessageActionRequestedPeerSentMe_ = MessageActionRequestedPeerSentMe_;
|
|
11568
11997
|
/** Chat */
|
|
11569
11998
|
class Dialog_ extends _Dialog_ {
|
|
11570
11999
|
get [_1_tl_object_js_1.id]() {
|
|
@@ -12953,7 +13382,7 @@ exports.PeerNotifySettings_ = PeerNotifySettings_;
|
|
|
12953
13382
|
/** List of actions that are possible when interacting with this user, to be shown as suggested actions in the [chat action bar »](https://core.telegram.org/api/action-bar), see [here »](https://core.telegram.org/api/action-bar) for more info. */
|
|
12954
13383
|
class PeerSettings_ extends _PeerSettings_ {
|
|
12955
13384
|
get [_1_tl_object_js_1.id]() {
|
|
12956
|
-
return
|
|
13385
|
+
return 0xACD66C5E;
|
|
12957
13386
|
}
|
|
12958
13387
|
static get [_1_tl_object_js_1.name]() {
|
|
12959
13388
|
return "peerSettings";
|
|
@@ -12970,9 +13399,13 @@ class PeerSettings_ extends _PeerSettings_ {
|
|
|
12970
13399
|
["autoarchived", "true", "flags.7?true"],
|
|
12971
13400
|
["invite_members", "true", "flags.8?true"],
|
|
12972
13401
|
["request_chat_broadcast", "true", "flags.10?true"],
|
|
13402
|
+
["business_bot_paused", "true", "flags.11?true"],
|
|
13403
|
+
["business_bot_can_reply", "true", "flags.12?true"],
|
|
12973
13404
|
["geo_distance", "number", "flags.6?int"],
|
|
12974
13405
|
["request_chat_title", "string", "flags.9?string"],
|
|
12975
13406
|
["request_chat_date", "number", "flags.9?int"],
|
|
13407
|
+
["business_bot_id", "bigint", "flags.13?long"],
|
|
13408
|
+
["business_bot_manage_url", "string", "flags.13?string"],
|
|
12976
13409
|
];
|
|
12977
13410
|
}
|
|
12978
13411
|
get [_1_tl_object_js_1.params]() {
|
|
@@ -12987,9 +13420,13 @@ class PeerSettings_ extends _PeerSettings_ {
|
|
|
12987
13420
|
[this.autoarchived ?? null, "true", "flags.7?true"],
|
|
12988
13421
|
[this.invite_members ?? null, "true", "flags.8?true"],
|
|
12989
13422
|
[this.request_chat_broadcast ?? null, "true", "flags.10?true"],
|
|
13423
|
+
[this.business_bot_paused ?? null, "true", "flags.11?true"],
|
|
13424
|
+
[this.business_bot_can_reply ?? null, "true", "flags.12?true"],
|
|
12990
13425
|
[this.geo_distance ?? null, "number", "flags.6?int"],
|
|
12991
13426
|
[this.request_chat_title ?? null, "string", "flags.9?string"],
|
|
12992
13427
|
[this.request_chat_date ?? null, "number", "flags.9?int"],
|
|
13428
|
+
[this.business_bot_id ?? null, "bigint", "flags.13?long"],
|
|
13429
|
+
[this.business_bot_manage_url ?? null, "string", "flags.13?string"],
|
|
12993
13430
|
];
|
|
12994
13431
|
}
|
|
12995
13432
|
constructor(params) {
|
|
@@ -13057,6 +13494,18 @@ class PeerSettings_ extends _PeerSettings_ {
|
|
|
13057
13494
|
writable: true,
|
|
13058
13495
|
value: void 0
|
|
13059
13496
|
});
|
|
13497
|
+
Object.defineProperty(this, "business_bot_paused", {
|
|
13498
|
+
enumerable: true,
|
|
13499
|
+
configurable: true,
|
|
13500
|
+
writable: true,
|
|
13501
|
+
value: void 0
|
|
13502
|
+
});
|
|
13503
|
+
Object.defineProperty(this, "business_bot_can_reply", {
|
|
13504
|
+
enumerable: true,
|
|
13505
|
+
configurable: true,
|
|
13506
|
+
writable: true,
|
|
13507
|
+
value: void 0
|
|
13508
|
+
});
|
|
13060
13509
|
/** Distance in meters between us and this peer */
|
|
13061
13510
|
Object.defineProperty(this, "geo_distance", {
|
|
13062
13511
|
enumerable: true,
|
|
@@ -13078,6 +13527,18 @@ class PeerSettings_ extends _PeerSettings_ {
|
|
|
13078
13527
|
writable: true,
|
|
13079
13528
|
value: void 0
|
|
13080
13529
|
});
|
|
13530
|
+
Object.defineProperty(this, "business_bot_id", {
|
|
13531
|
+
enumerable: true,
|
|
13532
|
+
configurable: true,
|
|
13533
|
+
writable: true,
|
|
13534
|
+
value: void 0
|
|
13535
|
+
});
|
|
13536
|
+
Object.defineProperty(this, "business_bot_manage_url", {
|
|
13537
|
+
enumerable: true,
|
|
13538
|
+
configurable: true,
|
|
13539
|
+
writable: true,
|
|
13540
|
+
value: void 0
|
|
13541
|
+
});
|
|
13081
13542
|
this.report_spam = params?.report_spam;
|
|
13082
13543
|
this.add_contact = params?.add_contact;
|
|
13083
13544
|
this.block_contact = params?.block_contact;
|
|
@@ -13087,9 +13548,13 @@ class PeerSettings_ extends _PeerSettings_ {
|
|
|
13087
13548
|
this.autoarchived = params?.autoarchived;
|
|
13088
13549
|
this.invite_members = params?.invite_members;
|
|
13089
13550
|
this.request_chat_broadcast = params?.request_chat_broadcast;
|
|
13551
|
+
this.business_bot_paused = params?.business_bot_paused;
|
|
13552
|
+
this.business_bot_can_reply = params?.business_bot_can_reply;
|
|
13090
13553
|
this.geo_distance = params?.geo_distance;
|
|
13091
13554
|
this.request_chat_title = params?.request_chat_title;
|
|
13092
13555
|
this.request_chat_date = params?.request_chat_date;
|
|
13556
|
+
this.business_bot_id = params?.business_bot_id;
|
|
13557
|
+
this.business_bot_manage_url = params?.business_bot_manage_url;
|
|
13093
13558
|
}
|
|
13094
13559
|
}
|
|
13095
13560
|
exports.PeerSettings_ = PeerSettings_;
|
|
@@ -13462,7 +13927,7 @@ exports.InputReportReasonPersonalDetails_ = InputReportReasonPersonalDetails_;
|
|
|
13462
13927
|
/** Extended user info */
|
|
13463
13928
|
class UserFull_ extends _UserFull_ {
|
|
13464
13929
|
get [_1_tl_object_js_1.id]() {
|
|
13465
|
-
return
|
|
13930
|
+
return 0xCC997720;
|
|
13466
13931
|
}
|
|
13467
13932
|
static get [_1_tl_object_js_1.name]() {
|
|
13468
13933
|
return "userFull";
|
|
@@ -13507,6 +13972,10 @@ class UserFull_ extends _UserFull_ {
|
|
|
13507
13972
|
["business_location", _BusinessLocation_, "flags2.1?BusinessLocation"],
|
|
13508
13973
|
["business_greeting_message", _BusinessGreetingMessage_, "flags2.2?BusinessGreetingMessage"],
|
|
13509
13974
|
["business_away_message", _BusinessAwayMessage_, "flags2.3?BusinessAwayMessage"],
|
|
13975
|
+
["business_intro", _BusinessIntro_, "flags2.4?BusinessIntro"],
|
|
13976
|
+
["birthday", _Birthday_, "flags2.5?Birthday"],
|
|
13977
|
+
["personal_channel_id", "bigint", "flags2.6?long"],
|
|
13978
|
+
["personal_channel_message", "number", "flags2.6?int"],
|
|
13510
13979
|
];
|
|
13511
13980
|
}
|
|
13512
13981
|
get [_1_tl_object_js_1.params]() {
|
|
@@ -13549,6 +14018,10 @@ class UserFull_ extends _UserFull_ {
|
|
|
13549
14018
|
[this.business_location ?? null, _BusinessLocation_, "flags2.1?BusinessLocation"],
|
|
13550
14019
|
[this.business_greeting_message ?? null, _BusinessGreetingMessage_, "flags2.2?BusinessGreetingMessage"],
|
|
13551
14020
|
[this.business_away_message ?? null, _BusinessAwayMessage_, "flags2.3?BusinessAwayMessage"],
|
|
14021
|
+
[this.business_intro ?? null, _BusinessIntro_, "flags2.4?BusinessIntro"],
|
|
14022
|
+
[this.birthday ?? null, _Birthday_, "flags2.5?Birthday"],
|
|
14023
|
+
[this.personal_channel_id ?? null, "bigint", "flags2.6?long"],
|
|
14024
|
+
[this.personal_channel_message ?? null, "number", "flags2.6?int"],
|
|
13552
14025
|
];
|
|
13553
14026
|
}
|
|
13554
14027
|
constructor(params) {
|
|
@@ -13799,6 +14272,30 @@ class UserFull_ extends _UserFull_ {
|
|
|
13799
14272
|
writable: true,
|
|
13800
14273
|
value: void 0
|
|
13801
14274
|
});
|
|
14275
|
+
Object.defineProperty(this, "business_intro", {
|
|
14276
|
+
enumerable: true,
|
|
14277
|
+
configurable: true,
|
|
14278
|
+
writable: true,
|
|
14279
|
+
value: void 0
|
|
14280
|
+
});
|
|
14281
|
+
Object.defineProperty(this, "birthday", {
|
|
14282
|
+
enumerable: true,
|
|
14283
|
+
configurable: true,
|
|
14284
|
+
writable: true,
|
|
14285
|
+
value: void 0
|
|
14286
|
+
});
|
|
14287
|
+
Object.defineProperty(this, "personal_channel_id", {
|
|
14288
|
+
enumerable: true,
|
|
14289
|
+
configurable: true,
|
|
14290
|
+
writable: true,
|
|
14291
|
+
value: void 0
|
|
14292
|
+
});
|
|
14293
|
+
Object.defineProperty(this, "personal_channel_message", {
|
|
14294
|
+
enumerable: true,
|
|
14295
|
+
configurable: true,
|
|
14296
|
+
writable: true,
|
|
14297
|
+
value: void 0
|
|
14298
|
+
});
|
|
13802
14299
|
this.blocked = params.blocked;
|
|
13803
14300
|
this.phone_calls_available = params.phone_calls_available;
|
|
13804
14301
|
this.phone_calls_private = params.phone_calls_private;
|
|
@@ -13835,6 +14332,10 @@ class UserFull_ extends _UserFull_ {
|
|
|
13835
14332
|
this.business_location = params.business_location;
|
|
13836
14333
|
this.business_greeting_message = params.business_greeting_message;
|
|
13837
14334
|
this.business_away_message = params.business_away_message;
|
|
14335
|
+
this.business_intro = params.business_intro;
|
|
14336
|
+
this.birthday = params.birthday;
|
|
14337
|
+
this.personal_channel_id = params.personal_channel_id;
|
|
14338
|
+
this.personal_channel_message = params.personal_channel_message;
|
|
13838
14339
|
}
|
|
13839
14340
|
}
|
|
13840
14341
|
exports.UserFull_ = UserFull_;
|
|
@@ -20459,37 +20960,6 @@ class UpdateAutoSaveSettings_ extends _Update_ {
|
|
|
20459
20960
|
}
|
|
20460
20961
|
}
|
|
20461
20962
|
exports.UpdateAutoSaveSettings_ = UpdateAutoSaveSettings_;
|
|
20462
|
-
/** 0-N updates of this type may be returned only when invoking [messages.addChatUser](https://core.telegram.org/method/messages.addChatUser), [channels.inviteToChannel](https://core.telegram.org/method/channels.inviteToChannel) or [messages.createChat](https://core.telegram.org/method/messages.createChat): it indicates we couldn't add a user to a chat because of their privacy settings; if required, an [invite link](https://core.telegram.org/api/invites) can be shared with the user, instead. */
|
|
20463
|
-
class UpdateGroupInvitePrivacyForbidden_ extends _Update_ {
|
|
20464
|
-
get [_1_tl_object_js_1.id]() {
|
|
20465
|
-
return 0xCCF08AD6;
|
|
20466
|
-
}
|
|
20467
|
-
static get [_1_tl_object_js_1.name]() {
|
|
20468
|
-
return "updateGroupInvitePrivacyForbidden";
|
|
20469
|
-
}
|
|
20470
|
-
static get [_1_tl_object_js_1.paramDesc]() {
|
|
20471
|
-
return [
|
|
20472
|
-
["user_id", "bigint", "long"],
|
|
20473
|
-
];
|
|
20474
|
-
}
|
|
20475
|
-
get [_1_tl_object_js_1.params]() {
|
|
20476
|
-
return [
|
|
20477
|
-
[this.user_id, "bigint", "long"],
|
|
20478
|
-
];
|
|
20479
|
-
}
|
|
20480
|
-
constructor(params) {
|
|
20481
|
-
super();
|
|
20482
|
-
/** ID of the user we couldn't add. */
|
|
20483
|
-
Object.defineProperty(this, "user_id", {
|
|
20484
|
-
enumerable: true,
|
|
20485
|
-
configurable: true,
|
|
20486
|
-
writable: true,
|
|
20487
|
-
value: void 0
|
|
20488
|
-
});
|
|
20489
|
-
this.user_id = params.user_id;
|
|
20490
|
-
}
|
|
20491
|
-
}
|
|
20492
|
-
exports.UpdateGroupInvitePrivacyForbidden_ = UpdateGroupInvitePrivacyForbidden_;
|
|
20493
20963
|
/** A new story was posted. */
|
|
20494
20964
|
class UpdateStory_ extends _Update_ {
|
|
20495
20965
|
get [_1_tl_object_js_1.id]() {
|
|
@@ -21280,6 +21750,216 @@ class UpdateDeleteQuickReplyMessages_ extends _Update_ {
|
|
|
21280
21750
|
}
|
|
21281
21751
|
}
|
|
21282
21752
|
exports.UpdateDeleteQuickReplyMessages_ = UpdateDeleteQuickReplyMessages_;
|
|
21753
|
+
class UpdateBotBusinessConnect_ extends _Update_ {
|
|
21754
|
+
get [_1_tl_object_js_1.id]() {
|
|
21755
|
+
return 0x8AE5C97A;
|
|
21756
|
+
}
|
|
21757
|
+
static get [_1_tl_object_js_1.name]() {
|
|
21758
|
+
return "updateBotBusinessConnect";
|
|
21759
|
+
}
|
|
21760
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
21761
|
+
return [
|
|
21762
|
+
["connection", _BotBusinessConnection_, "BotBusinessConnection"],
|
|
21763
|
+
["qts", "number", "int"],
|
|
21764
|
+
];
|
|
21765
|
+
}
|
|
21766
|
+
get [_1_tl_object_js_1.params]() {
|
|
21767
|
+
return [
|
|
21768
|
+
[this.connection, _BotBusinessConnection_, "BotBusinessConnection"],
|
|
21769
|
+
[this.qts, "number", "int"],
|
|
21770
|
+
];
|
|
21771
|
+
}
|
|
21772
|
+
constructor(params) {
|
|
21773
|
+
super();
|
|
21774
|
+
Object.defineProperty(this, "connection", {
|
|
21775
|
+
enumerable: true,
|
|
21776
|
+
configurable: true,
|
|
21777
|
+
writable: true,
|
|
21778
|
+
value: void 0
|
|
21779
|
+
});
|
|
21780
|
+
Object.defineProperty(this, "qts", {
|
|
21781
|
+
enumerable: true,
|
|
21782
|
+
configurable: true,
|
|
21783
|
+
writable: true,
|
|
21784
|
+
value: void 0
|
|
21785
|
+
});
|
|
21786
|
+
this.connection = params.connection;
|
|
21787
|
+
this.qts = params.qts;
|
|
21788
|
+
}
|
|
21789
|
+
}
|
|
21790
|
+
exports.UpdateBotBusinessConnect_ = UpdateBotBusinessConnect_;
|
|
21791
|
+
class UpdateBotNewBusinessMessage_ extends _Update_ {
|
|
21792
|
+
get [_1_tl_object_js_1.id]() {
|
|
21793
|
+
return 0x9DDB347C;
|
|
21794
|
+
}
|
|
21795
|
+
static get [_1_tl_object_js_1.name]() {
|
|
21796
|
+
return "updateBotNewBusinessMessage";
|
|
21797
|
+
}
|
|
21798
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
21799
|
+
return [
|
|
21800
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
21801
|
+
["connection_id", "string", "string"],
|
|
21802
|
+
["message", _Message_, "Message"],
|
|
21803
|
+
["reply_to_message", _Message_, "flags.0?Message"],
|
|
21804
|
+
["qts", "number", "int"],
|
|
21805
|
+
];
|
|
21806
|
+
}
|
|
21807
|
+
get [_1_tl_object_js_1.params]() {
|
|
21808
|
+
return [
|
|
21809
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
21810
|
+
[this.connection_id, "string", "string"],
|
|
21811
|
+
[this.message, _Message_, "Message"],
|
|
21812
|
+
[this.reply_to_message ?? null, _Message_, "flags.0?Message"],
|
|
21813
|
+
[this.qts, "number", "int"],
|
|
21814
|
+
];
|
|
21815
|
+
}
|
|
21816
|
+
constructor(params) {
|
|
21817
|
+
super();
|
|
21818
|
+
Object.defineProperty(this, "connection_id", {
|
|
21819
|
+
enumerable: true,
|
|
21820
|
+
configurable: true,
|
|
21821
|
+
writable: true,
|
|
21822
|
+
value: void 0
|
|
21823
|
+
});
|
|
21824
|
+
Object.defineProperty(this, "message", {
|
|
21825
|
+
enumerable: true,
|
|
21826
|
+
configurable: true,
|
|
21827
|
+
writable: true,
|
|
21828
|
+
value: void 0
|
|
21829
|
+
});
|
|
21830
|
+
Object.defineProperty(this, "reply_to_message", {
|
|
21831
|
+
enumerable: true,
|
|
21832
|
+
configurable: true,
|
|
21833
|
+
writable: true,
|
|
21834
|
+
value: void 0
|
|
21835
|
+
});
|
|
21836
|
+
Object.defineProperty(this, "qts", {
|
|
21837
|
+
enumerable: true,
|
|
21838
|
+
configurable: true,
|
|
21839
|
+
writable: true,
|
|
21840
|
+
value: void 0
|
|
21841
|
+
});
|
|
21842
|
+
this.connection_id = params.connection_id;
|
|
21843
|
+
this.message = params.message;
|
|
21844
|
+
this.reply_to_message = params.reply_to_message;
|
|
21845
|
+
this.qts = params.qts;
|
|
21846
|
+
}
|
|
21847
|
+
}
|
|
21848
|
+
exports.UpdateBotNewBusinessMessage_ = UpdateBotNewBusinessMessage_;
|
|
21849
|
+
class UpdateBotEditBusinessMessage_ extends _Update_ {
|
|
21850
|
+
get [_1_tl_object_js_1.id]() {
|
|
21851
|
+
return 0x07DF587C;
|
|
21852
|
+
}
|
|
21853
|
+
static get [_1_tl_object_js_1.name]() {
|
|
21854
|
+
return "updateBotEditBusinessMessage";
|
|
21855
|
+
}
|
|
21856
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
21857
|
+
return [
|
|
21858
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
21859
|
+
["connection_id", "string", "string"],
|
|
21860
|
+
["message", _Message_, "Message"],
|
|
21861
|
+
["reply_to_message", _Message_, "flags.0?Message"],
|
|
21862
|
+
["qts", "number", "int"],
|
|
21863
|
+
];
|
|
21864
|
+
}
|
|
21865
|
+
get [_1_tl_object_js_1.params]() {
|
|
21866
|
+
return [
|
|
21867
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
21868
|
+
[this.connection_id, "string", "string"],
|
|
21869
|
+
[this.message, _Message_, "Message"],
|
|
21870
|
+
[this.reply_to_message ?? null, _Message_, "flags.0?Message"],
|
|
21871
|
+
[this.qts, "number", "int"],
|
|
21872
|
+
];
|
|
21873
|
+
}
|
|
21874
|
+
constructor(params) {
|
|
21875
|
+
super();
|
|
21876
|
+
Object.defineProperty(this, "connection_id", {
|
|
21877
|
+
enumerable: true,
|
|
21878
|
+
configurable: true,
|
|
21879
|
+
writable: true,
|
|
21880
|
+
value: void 0
|
|
21881
|
+
});
|
|
21882
|
+
Object.defineProperty(this, "message", {
|
|
21883
|
+
enumerable: true,
|
|
21884
|
+
configurable: true,
|
|
21885
|
+
writable: true,
|
|
21886
|
+
value: void 0
|
|
21887
|
+
});
|
|
21888
|
+
Object.defineProperty(this, "reply_to_message", {
|
|
21889
|
+
enumerable: true,
|
|
21890
|
+
configurable: true,
|
|
21891
|
+
writable: true,
|
|
21892
|
+
value: void 0
|
|
21893
|
+
});
|
|
21894
|
+
Object.defineProperty(this, "qts", {
|
|
21895
|
+
enumerable: true,
|
|
21896
|
+
configurable: true,
|
|
21897
|
+
writable: true,
|
|
21898
|
+
value: void 0
|
|
21899
|
+
});
|
|
21900
|
+
this.connection_id = params.connection_id;
|
|
21901
|
+
this.message = params.message;
|
|
21902
|
+
this.reply_to_message = params.reply_to_message;
|
|
21903
|
+
this.qts = params.qts;
|
|
21904
|
+
}
|
|
21905
|
+
}
|
|
21906
|
+
exports.UpdateBotEditBusinessMessage_ = UpdateBotEditBusinessMessage_;
|
|
21907
|
+
class UpdateBotDeleteBusinessMessage_ extends _Update_ {
|
|
21908
|
+
get [_1_tl_object_js_1.id]() {
|
|
21909
|
+
return 0xA02A982E;
|
|
21910
|
+
}
|
|
21911
|
+
static get [_1_tl_object_js_1.name]() {
|
|
21912
|
+
return "updateBotDeleteBusinessMessage";
|
|
21913
|
+
}
|
|
21914
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
21915
|
+
return [
|
|
21916
|
+
["connection_id", "string", "string"],
|
|
21917
|
+
["peer", _Peer_, "Peer"],
|
|
21918
|
+
["messages", ["number"], "Vector<int>"],
|
|
21919
|
+
["qts", "number", "int"],
|
|
21920
|
+
];
|
|
21921
|
+
}
|
|
21922
|
+
get [_1_tl_object_js_1.params]() {
|
|
21923
|
+
return [
|
|
21924
|
+
[this.connection_id, "string", "string"],
|
|
21925
|
+
[this.peer, _Peer_, "Peer"],
|
|
21926
|
+
[this.messages, ["number"], "Vector<int>"],
|
|
21927
|
+
[this.qts, "number", "int"],
|
|
21928
|
+
];
|
|
21929
|
+
}
|
|
21930
|
+
constructor(params) {
|
|
21931
|
+
super();
|
|
21932
|
+
Object.defineProperty(this, "connection_id", {
|
|
21933
|
+
enumerable: true,
|
|
21934
|
+
configurable: true,
|
|
21935
|
+
writable: true,
|
|
21936
|
+
value: void 0
|
|
21937
|
+
});
|
|
21938
|
+
Object.defineProperty(this, "peer", {
|
|
21939
|
+
enumerable: true,
|
|
21940
|
+
configurable: true,
|
|
21941
|
+
writable: true,
|
|
21942
|
+
value: void 0
|
|
21943
|
+
});
|
|
21944
|
+
Object.defineProperty(this, "messages", {
|
|
21945
|
+
enumerable: true,
|
|
21946
|
+
configurable: true,
|
|
21947
|
+
writable: true,
|
|
21948
|
+
value: void 0
|
|
21949
|
+
});
|
|
21950
|
+
Object.defineProperty(this, "qts", {
|
|
21951
|
+
enumerable: true,
|
|
21952
|
+
configurable: true,
|
|
21953
|
+
writable: true,
|
|
21954
|
+
value: void 0
|
|
21955
|
+
});
|
|
21956
|
+
this.connection_id = params.connection_id;
|
|
21957
|
+
this.peer = params.peer;
|
|
21958
|
+
this.messages = params.messages;
|
|
21959
|
+
this.qts = params.qts;
|
|
21960
|
+
}
|
|
21961
|
+
}
|
|
21962
|
+
exports.UpdateBotDeleteBusinessMessage_ = UpdateBotDeleteBusinessMessage_;
|
|
21283
21963
|
/** Updates state. */
|
|
21284
21964
|
class updates_State_ extends _updates_State_ {
|
|
21285
21965
|
get [_1_tl_object_js_1.id]() {
|
|
@@ -25364,6 +26044,24 @@ class InputPrivacyKeyAbout_ extends _InputPrivacyKey_ {
|
|
|
25364
26044
|
}
|
|
25365
26045
|
}
|
|
25366
26046
|
exports.InputPrivacyKeyAbout_ = InputPrivacyKeyAbout_;
|
|
26047
|
+
class InputPrivacyKeyBirthday_ extends _InputPrivacyKey_ {
|
|
26048
|
+
get [_1_tl_object_js_1.id]() {
|
|
26049
|
+
return 0xD65A11CC;
|
|
26050
|
+
}
|
|
26051
|
+
static get [_1_tl_object_js_1.name]() {
|
|
26052
|
+
return "inputPrivacyKeyBirthday";
|
|
26053
|
+
}
|
|
26054
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
26055
|
+
return [];
|
|
26056
|
+
}
|
|
26057
|
+
get [_1_tl_object_js_1.params]() {
|
|
26058
|
+
return [];
|
|
26059
|
+
}
|
|
26060
|
+
constructor() {
|
|
26061
|
+
super();
|
|
26062
|
+
}
|
|
26063
|
+
}
|
|
26064
|
+
exports.InputPrivacyKeyBirthday_ = InputPrivacyKeyBirthday_;
|
|
25367
26065
|
/** Whether we can see the last online timestamp of this user */
|
|
25368
26066
|
class PrivacyKeyStatusTimestamp_ extends _PrivacyKey_ {
|
|
25369
26067
|
get [_1_tl_object_js_1.id]() {
|
|
@@ -25554,6 +26252,24 @@ class PrivacyKeyAbout_ extends _PrivacyKey_ {
|
|
|
25554
26252
|
}
|
|
25555
26253
|
}
|
|
25556
26254
|
exports.PrivacyKeyAbout_ = PrivacyKeyAbout_;
|
|
26255
|
+
class PrivacyKeyBirthday_ extends _PrivacyKey_ {
|
|
26256
|
+
get [_1_tl_object_js_1.id]() {
|
|
26257
|
+
return 0x2000A518;
|
|
26258
|
+
}
|
|
26259
|
+
static get [_1_tl_object_js_1.name]() {
|
|
26260
|
+
return "privacyKeyBirthday";
|
|
26261
|
+
}
|
|
26262
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
26263
|
+
return [];
|
|
26264
|
+
}
|
|
26265
|
+
get [_1_tl_object_js_1.params]() {
|
|
26266
|
+
return [];
|
|
26267
|
+
}
|
|
26268
|
+
constructor() {
|
|
26269
|
+
super();
|
|
26270
|
+
}
|
|
26271
|
+
}
|
|
26272
|
+
exports.PrivacyKeyBirthday_ = PrivacyKeyBirthday_;
|
|
25557
26273
|
/** Allow only contacts */
|
|
25558
26274
|
class InputPrivacyValueAllowContacts_ extends _InputPrivacyRule_ {
|
|
25559
26275
|
get [_1_tl_object_js_1.id]() {
|
|
@@ -25773,6 +26489,24 @@ class InputPrivacyValueAllowCloseFriends_ extends _InputPrivacyRule_ {
|
|
|
25773
26489
|
}
|
|
25774
26490
|
}
|
|
25775
26491
|
exports.InputPrivacyValueAllowCloseFriends_ = InputPrivacyValueAllowCloseFriends_;
|
|
26492
|
+
class InputPrivacyValueAllowPremium_ extends _InputPrivacyRule_ {
|
|
26493
|
+
get [_1_tl_object_js_1.id]() {
|
|
26494
|
+
return 0x77CDC9F1;
|
|
26495
|
+
}
|
|
26496
|
+
static get [_1_tl_object_js_1.name]() {
|
|
26497
|
+
return "inputPrivacyValueAllowPremium";
|
|
26498
|
+
}
|
|
26499
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
26500
|
+
return [];
|
|
26501
|
+
}
|
|
26502
|
+
get [_1_tl_object_js_1.params]() {
|
|
26503
|
+
return [];
|
|
26504
|
+
}
|
|
26505
|
+
constructor() {
|
|
26506
|
+
super();
|
|
26507
|
+
}
|
|
26508
|
+
}
|
|
26509
|
+
exports.InputPrivacyValueAllowPremium_ = InputPrivacyValueAllowPremium_;
|
|
25776
26510
|
/** Allow all contacts */
|
|
25777
26511
|
class PrivacyValueAllowContacts_ extends _PrivacyRule_ {
|
|
25778
26512
|
get [_1_tl_object_js_1.id]() {
|
|
@@ -25992,6 +26726,24 @@ class PrivacyValueAllowCloseFriends_ extends _PrivacyRule_ {
|
|
|
25992
26726
|
}
|
|
25993
26727
|
}
|
|
25994
26728
|
exports.PrivacyValueAllowCloseFriends_ = PrivacyValueAllowCloseFriends_;
|
|
26729
|
+
class PrivacyValueAllowPremium_ extends _PrivacyRule_ {
|
|
26730
|
+
get [_1_tl_object_js_1.id]() {
|
|
26731
|
+
return 0xECE9814B;
|
|
26732
|
+
}
|
|
26733
|
+
static get [_1_tl_object_js_1.name]() {
|
|
26734
|
+
return "privacyValueAllowPremium";
|
|
26735
|
+
}
|
|
26736
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
26737
|
+
return [];
|
|
26738
|
+
}
|
|
26739
|
+
get [_1_tl_object_js_1.params]() {
|
|
26740
|
+
return [];
|
|
26741
|
+
}
|
|
26742
|
+
constructor() {
|
|
26743
|
+
super();
|
|
26744
|
+
}
|
|
26745
|
+
}
|
|
26746
|
+
exports.PrivacyValueAllowPremium_ = PrivacyValueAllowPremium_;
|
|
25995
26747
|
/** Privacy rules */
|
|
25996
26748
|
class account_PrivacyRules_ extends _account_PrivacyRules_ {
|
|
25997
26749
|
get [_1_tl_object_js_1.id]() {
|
|
@@ -28273,11 +29025,10 @@ class StickerSet_ extends _StickerSet_ {
|
|
|
28273
29025
|
["archived", "true", "flags.1?true"],
|
|
28274
29026
|
["official", "true", "flags.2?true"],
|
|
28275
29027
|
["masks", "true", "flags.3?true"],
|
|
28276
|
-
["animated", "true", "flags.5?true"],
|
|
28277
|
-
["videos", "true", "flags.6?true"],
|
|
28278
29028
|
["emojis", "true", "flags.7?true"],
|
|
28279
29029
|
["text_color", "true", "flags.9?true"],
|
|
28280
29030
|
["channel_emoji_status", "true", "flags.10?true"],
|
|
29031
|
+
["creator", "true", "flags.11?true"],
|
|
28281
29032
|
["installed_date", "number", "flags.0?int"],
|
|
28282
29033
|
["id", "bigint", "long"],
|
|
28283
29034
|
["access_hash", "bigint", "long"],
|
|
@@ -28297,11 +29048,10 @@ class StickerSet_ extends _StickerSet_ {
|
|
|
28297
29048
|
[this.archived ?? null, "true", "flags.1?true"],
|
|
28298
29049
|
[this.official ?? null, "true", "flags.2?true"],
|
|
28299
29050
|
[this.masks ?? null, "true", "flags.3?true"],
|
|
28300
|
-
[this.animated ?? null, "true", "flags.5?true"],
|
|
28301
|
-
[this.videos ?? null, "true", "flags.6?true"],
|
|
28302
29051
|
[this.emojis ?? null, "true", "flags.7?true"],
|
|
28303
29052
|
[this.text_color ?? null, "true", "flags.9?true"],
|
|
28304
29053
|
[this.channel_emoji_status ?? null, "true", "flags.10?true"],
|
|
29054
|
+
[this.creator ?? null, "true", "flags.11?true"],
|
|
28305
29055
|
[this.installed_date ?? null, "number", "flags.0?int"],
|
|
28306
29056
|
[this.id, "bigint", "long"],
|
|
28307
29057
|
[this.access_hash, "bigint", "long"],
|
|
@@ -28338,20 +29088,6 @@ class StickerSet_ extends _StickerSet_ {
|
|
|
28338
29088
|
writable: true,
|
|
28339
29089
|
value: void 0
|
|
28340
29090
|
});
|
|
28341
|
-
/** Is this an animated stickerpack */
|
|
28342
|
-
Object.defineProperty(this, "animated", {
|
|
28343
|
-
enumerable: true,
|
|
28344
|
-
configurable: true,
|
|
28345
|
-
writable: true,
|
|
28346
|
-
value: void 0
|
|
28347
|
-
});
|
|
28348
|
-
/** Is this a video stickerpack */
|
|
28349
|
-
Object.defineProperty(this, "videos", {
|
|
28350
|
-
enumerable: true,
|
|
28351
|
-
configurable: true,
|
|
28352
|
-
writable: true,
|
|
28353
|
-
value: void 0
|
|
28354
|
-
});
|
|
28355
29091
|
/** This is a custom emoji stickerset */
|
|
28356
29092
|
Object.defineProperty(this, "emojis", {
|
|
28357
29093
|
enumerable: true,
|
|
@@ -28373,6 +29109,12 @@ class StickerSet_ extends _StickerSet_ {
|
|
|
28373
29109
|
writable: true,
|
|
28374
29110
|
value: void 0
|
|
28375
29111
|
});
|
|
29112
|
+
Object.defineProperty(this, "creator", {
|
|
29113
|
+
enumerable: true,
|
|
29114
|
+
configurable: true,
|
|
29115
|
+
writable: true,
|
|
29116
|
+
value: void 0
|
|
29117
|
+
});
|
|
28376
29118
|
/** When was this stickerset installed */
|
|
28377
29119
|
Object.defineProperty(this, "installed_date", {
|
|
28378
29120
|
enumerable: true,
|
|
@@ -28453,11 +29195,10 @@ class StickerSet_ extends _StickerSet_ {
|
|
|
28453
29195
|
this.archived = params.archived;
|
|
28454
29196
|
this.official = params.official;
|
|
28455
29197
|
this.masks = params.masks;
|
|
28456
|
-
this.animated = params.animated;
|
|
28457
|
-
this.videos = params.videos;
|
|
28458
29198
|
this.emojis = params.emojis;
|
|
28459
29199
|
this.text_color = params.text_color;
|
|
28460
29200
|
this.channel_emoji_status = params.channel_emoji_status;
|
|
29201
|
+
this.creator = params.creator;
|
|
28461
29202
|
this.installed_date = params.installed_date;
|
|
28462
29203
|
this.id = params.id;
|
|
28463
29204
|
this.access_hash = params.access_hash;
|
|
@@ -29396,6 +30137,91 @@ class KeyboardButtonRequestPeer_ extends _KeyboardButton_ {
|
|
|
29396
30137
|
}
|
|
29397
30138
|
}
|
|
29398
30139
|
exports.KeyboardButtonRequestPeer_ = KeyboardButtonRequestPeer_;
|
|
30140
|
+
class InputKeyboardButtonRequestPeer_ extends _KeyboardButton_ {
|
|
30141
|
+
get [_1_tl_object_js_1.id]() {
|
|
30142
|
+
return 0xC9662D05;
|
|
30143
|
+
}
|
|
30144
|
+
static get [_1_tl_object_js_1.name]() {
|
|
30145
|
+
return "inputKeyboardButtonRequestPeer";
|
|
30146
|
+
}
|
|
30147
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
30148
|
+
return [
|
|
30149
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
30150
|
+
["name_requested", "true", "flags.0?true"],
|
|
30151
|
+
["username_requested", "true", "flags.1?true"],
|
|
30152
|
+
["photo_requested", "true", "flags.2?true"],
|
|
30153
|
+
["text", "string", "string"],
|
|
30154
|
+
["button_id", "number", "int"],
|
|
30155
|
+
["peer_type", _RequestPeerType_, "RequestPeerType"],
|
|
30156
|
+
["max_quantity", "number", "int"],
|
|
30157
|
+
];
|
|
30158
|
+
}
|
|
30159
|
+
get [_1_tl_object_js_1.params]() {
|
|
30160
|
+
return [
|
|
30161
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
30162
|
+
[this.name_requested ?? null, "true", "flags.0?true"],
|
|
30163
|
+
[this.username_requested ?? null, "true", "flags.1?true"],
|
|
30164
|
+
[this.photo_requested ?? null, "true", "flags.2?true"],
|
|
30165
|
+
[this.text, "string", "string"],
|
|
30166
|
+
[this.button_id, "number", "int"],
|
|
30167
|
+
[this.peer_type, _RequestPeerType_, "RequestPeerType"],
|
|
30168
|
+
[this.max_quantity, "number", "int"],
|
|
30169
|
+
];
|
|
30170
|
+
}
|
|
30171
|
+
constructor(params) {
|
|
30172
|
+
super();
|
|
30173
|
+
Object.defineProperty(this, "name_requested", {
|
|
30174
|
+
enumerable: true,
|
|
30175
|
+
configurable: true,
|
|
30176
|
+
writable: true,
|
|
30177
|
+
value: void 0
|
|
30178
|
+
});
|
|
30179
|
+
Object.defineProperty(this, "username_requested", {
|
|
30180
|
+
enumerable: true,
|
|
30181
|
+
configurable: true,
|
|
30182
|
+
writable: true,
|
|
30183
|
+
value: void 0
|
|
30184
|
+
});
|
|
30185
|
+
Object.defineProperty(this, "photo_requested", {
|
|
30186
|
+
enumerable: true,
|
|
30187
|
+
configurable: true,
|
|
30188
|
+
writable: true,
|
|
30189
|
+
value: void 0
|
|
30190
|
+
});
|
|
30191
|
+
Object.defineProperty(this, "text", {
|
|
30192
|
+
enumerable: true,
|
|
30193
|
+
configurable: true,
|
|
30194
|
+
writable: true,
|
|
30195
|
+
value: void 0
|
|
30196
|
+
});
|
|
30197
|
+
Object.defineProperty(this, "button_id", {
|
|
30198
|
+
enumerable: true,
|
|
30199
|
+
configurable: true,
|
|
30200
|
+
writable: true,
|
|
30201
|
+
value: void 0
|
|
30202
|
+
});
|
|
30203
|
+
Object.defineProperty(this, "peer_type", {
|
|
30204
|
+
enumerable: true,
|
|
30205
|
+
configurable: true,
|
|
30206
|
+
writable: true,
|
|
30207
|
+
value: void 0
|
|
30208
|
+
});
|
|
30209
|
+
Object.defineProperty(this, "max_quantity", {
|
|
30210
|
+
enumerable: true,
|
|
30211
|
+
configurable: true,
|
|
30212
|
+
writable: true,
|
|
30213
|
+
value: void 0
|
|
30214
|
+
});
|
|
30215
|
+
this.name_requested = params.name_requested;
|
|
30216
|
+
this.username_requested = params.username_requested;
|
|
30217
|
+
this.photo_requested = params.photo_requested;
|
|
30218
|
+
this.text = params.text;
|
|
30219
|
+
this.button_id = params.button_id;
|
|
30220
|
+
this.peer_type = params.peer_type;
|
|
30221
|
+
this.max_quantity = params.max_quantity;
|
|
30222
|
+
}
|
|
30223
|
+
}
|
|
30224
|
+
exports.InputKeyboardButtonRequestPeer_ = InputKeyboardButtonRequestPeer_;
|
|
29399
30225
|
/** Inline keyboard row */
|
|
29400
30226
|
class KeyboardButtonRow_ extends _KeyboardButtonRow_ {
|
|
29401
30227
|
get [_1_tl_object_js_1.id]() {
|
|
@@ -39989,7 +40815,7 @@ exports.PhoneCallAccepted_ = PhoneCallAccepted_;
|
|
|
39989
40815
|
/** Phone call */
|
|
39990
40816
|
class PhoneCall_ extends _PhoneCall_ {
|
|
39991
40817
|
get [_1_tl_object_js_1.id]() {
|
|
39992
|
-
return
|
|
40818
|
+
return 0x30535AF5;
|
|
39993
40819
|
}
|
|
39994
40820
|
static get [_1_tl_object_js_1.name]() {
|
|
39995
40821
|
return "phoneCall";
|
|
@@ -40009,6 +40835,7 @@ class PhoneCall_ extends _PhoneCall_ {
|
|
|
40009
40835
|
["protocol", _PhoneCallProtocol_, "PhoneCallProtocol"],
|
|
40010
40836
|
["connections", [_PhoneConnection_], "Vector<PhoneConnection>"],
|
|
40011
40837
|
["start_date", "number", "int"],
|
|
40838
|
+
["custom_parameters", _DataJSON_, "flags.7?DataJSON"],
|
|
40012
40839
|
];
|
|
40013
40840
|
}
|
|
40014
40841
|
get [_1_tl_object_js_1.params]() {
|
|
@@ -40026,6 +40853,7 @@ class PhoneCall_ extends _PhoneCall_ {
|
|
|
40026
40853
|
[this.protocol, _PhoneCallProtocol_, "PhoneCallProtocol"],
|
|
40027
40854
|
[this.connections, [_PhoneConnection_], "Vector<PhoneConnection>"],
|
|
40028
40855
|
[this.start_date, "number", "int"],
|
|
40856
|
+
[this.custom_parameters ?? null, _DataJSON_, "flags.7?DataJSON"],
|
|
40029
40857
|
];
|
|
40030
40858
|
}
|
|
40031
40859
|
constructor(params) {
|
|
@@ -40114,6 +40942,12 @@ class PhoneCall_ extends _PhoneCall_ {
|
|
|
40114
40942
|
writable: true,
|
|
40115
40943
|
value: void 0
|
|
40116
40944
|
});
|
|
40945
|
+
Object.defineProperty(this, "custom_parameters", {
|
|
40946
|
+
enumerable: true,
|
|
40947
|
+
configurable: true,
|
|
40948
|
+
writable: true,
|
|
40949
|
+
value: void 0
|
|
40950
|
+
});
|
|
40117
40951
|
this.p2p_allowed = params.p2p_allowed;
|
|
40118
40952
|
this.video = params.video;
|
|
40119
40953
|
this.id = params.id;
|
|
@@ -40126,6 +40960,7 @@ class PhoneCall_ extends _PhoneCall_ {
|
|
|
40126
40960
|
this.protocol = params.protocol;
|
|
40127
40961
|
this.connections = params.connections;
|
|
40128
40962
|
this.start_date = params.start_date;
|
|
40963
|
+
this.custom_parameters = params.custom_parameters;
|
|
40129
40964
|
}
|
|
40130
40965
|
}
|
|
40131
40966
|
exports.PhoneCall_ = PhoneCall_;
|
|
@@ -54148,6 +54983,7 @@ class SponsoredMessage_ extends _SponsoredMessage_ {
|
|
|
54148
54983
|
["flags", _1_tl_object_js_1.flags, "#"],
|
|
54149
54984
|
["recommended", "true", "flags.5?true"],
|
|
54150
54985
|
["show_peer_photo", "true", "flags.6?true"],
|
|
54986
|
+
["can_report", "true", "flags.12?true"],
|
|
54151
54987
|
["random_id", Uint8Array, "bytes"],
|
|
54152
54988
|
["from_id", _Peer_, "flags.3?Peer"],
|
|
54153
54989
|
["chat_invite", _ChatInvite_, "flags.4?ChatInvite"],
|
|
@@ -54168,6 +55004,7 @@ class SponsoredMessage_ extends _SponsoredMessage_ {
|
|
|
54168
55004
|
["flags", _1_tl_object_js_1.flags, "#"],
|
|
54169
55005
|
[this.recommended ?? null, "true", "flags.5?true"],
|
|
54170
55006
|
[this.show_peer_photo ?? null, "true", "flags.6?true"],
|
|
55007
|
+
[this.can_report ?? null, "true", "flags.12?true"],
|
|
54171
55008
|
[this.random_id, Uint8Array, "bytes"],
|
|
54172
55009
|
[this.from_id ?? null, _Peer_, "flags.3?Peer"],
|
|
54173
55010
|
[this.chat_invite ?? null, _ChatInvite_, "flags.4?ChatInvite"],
|
|
@@ -54199,6 +55036,12 @@ class SponsoredMessage_ extends _SponsoredMessage_ {
|
|
|
54199
55036
|
writable: true,
|
|
54200
55037
|
value: void 0
|
|
54201
55038
|
});
|
|
55039
|
+
Object.defineProperty(this, "can_report", {
|
|
55040
|
+
enumerable: true,
|
|
55041
|
+
configurable: true,
|
|
55042
|
+
writable: true,
|
|
55043
|
+
value: void 0
|
|
55044
|
+
});
|
|
54202
55045
|
/** Message ID */
|
|
54203
55046
|
Object.defineProperty(this, "random_id", {
|
|
54204
55047
|
enumerable: true,
|
|
@@ -54292,6 +55135,7 @@ class SponsoredMessage_ extends _SponsoredMessage_ {
|
|
|
54292
55135
|
});
|
|
54293
55136
|
this.recommended = params.recommended;
|
|
54294
55137
|
this.show_peer_photo = params.show_peer_photo;
|
|
55138
|
+
this.can_report = params.can_report;
|
|
54295
55139
|
this.random_id = params.random_id;
|
|
54296
55140
|
this.from_id = params.from_id;
|
|
54297
55141
|
this.chat_invite = params.chat_invite;
|
|
@@ -64803,7 +65647,7 @@ class messages_QuickRepliesNotModified_ extends _messages_QuickReplies_ {
|
|
|
64803
65647
|
exports.messages_QuickRepliesNotModified_ = messages_QuickRepliesNotModified_;
|
|
64804
65648
|
class ConnectedBot_ extends _ConnectedBot_ {
|
|
64805
65649
|
get [_1_tl_object_js_1.id]() {
|
|
64806
|
-
return
|
|
65650
|
+
return 0xBD068601;
|
|
64807
65651
|
}
|
|
64808
65652
|
static get [_1_tl_object_js_1.name]() {
|
|
64809
65653
|
return "connectedBot";
|
|
@@ -64813,7 +65657,7 @@ class ConnectedBot_ extends _ConnectedBot_ {
|
|
|
64813
65657
|
["flags", _1_tl_object_js_1.flags, "#"],
|
|
64814
65658
|
["can_reply", "true", "flags.0?true"],
|
|
64815
65659
|
["bot_id", "bigint", "long"],
|
|
64816
|
-
["recipients",
|
|
65660
|
+
["recipients", _BusinessBotRecipients_, "BusinessBotRecipients"],
|
|
64817
65661
|
];
|
|
64818
65662
|
}
|
|
64819
65663
|
get [_1_tl_object_js_1.params]() {
|
|
@@ -64821,7 +65665,7 @@ class ConnectedBot_ extends _ConnectedBot_ {
|
|
|
64821
65665
|
["flags", _1_tl_object_js_1.flags, "#"],
|
|
64822
65666
|
[this.can_reply ?? null, "true", "flags.0?true"],
|
|
64823
65667
|
[this.bot_id, "bigint", "long"],
|
|
64824
|
-
[this.recipients,
|
|
65668
|
+
[this.recipients, _BusinessBotRecipients_, "BusinessBotRecipients"],
|
|
64825
65669
|
];
|
|
64826
65670
|
}
|
|
64827
65671
|
constructor(params) {
|
|
@@ -64928,361 +65772,1925 @@ class messages_DialogFilters_ extends _messages_DialogFilters_ {
|
|
|
64928
65772
|
}
|
|
64929
65773
|
}
|
|
64930
65774
|
exports.messages_DialogFilters_ = messages_DialogFilters_;
|
|
64931
|
-
|
|
64932
|
-
|
|
64933
|
-
|
|
64934
|
-
|
|
64935
|
-
|
|
64936
|
-
|
|
64937
|
-
|
|
64938
|
-
|
|
64939
|
-
|
|
64940
|
-
|
|
64941
|
-
|
|
64942
|
-
|
|
64943
|
-
|
|
64944
|
-
|
|
64945
|
-
|
|
64946
|
-
|
|
64947
|
-
|
|
64948
|
-
|
|
64949
|
-
|
|
64950
|
-
|
|
64951
|
-
|
|
64952
|
-
|
|
64953
|
-
|
|
64954
|
-
|
|
64955
|
-
|
|
64956
|
-
|
|
64957
|
-
|
|
64958
|
-
|
|
64959
|
-
|
|
64960
|
-
|
|
64961
|
-
|
|
64962
|
-
|
|
64963
|
-
|
|
64964
|
-
|
|
64965
|
-
|
|
64966
|
-
|
|
64967
|
-
|
|
64968
|
-
|
|
64969
|
-
|
|
64970
|
-
|
|
64971
|
-
|
|
64972
|
-
|
|
64973
|
-
|
|
64974
|
-
|
|
64975
|
-
|
|
64976
|
-
|
|
64977
|
-
|
|
64978
|
-
|
|
64979
|
-
|
|
64980
|
-
|
|
64981
|
-
|
|
64982
|
-
|
|
64983
|
-
|
|
64984
|
-
|
|
64985
|
-
|
|
64986
|
-
|
|
64987
|
-
|
|
64988
|
-
|
|
64989
|
-
|
|
64990
|
-
|
|
64991
|
-
|
|
64992
|
-
|
|
64993
|
-
|
|
64994
|
-
|
|
64995
|
-
|
|
64996
|
-
|
|
64997
|
-
|
|
64998
|
-
|
|
64999
|
-
|
|
65000
|
-
|
|
65001
|
-
|
|
65002
|
-
|
|
65003
|
-
|
|
65004
|
-
|
|
65005
|
-
|
|
65006
|
-
|
|
65007
|
-
|
|
65008
|
-
|
|
65009
|
-
|
|
65010
|
-
|
|
65011
|
-
|
|
65012
|
-
|
|
65013
|
-
|
|
65014
|
-
|
|
65015
|
-
|
|
65016
|
-
|
|
65017
|
-
|
|
65018
|
-
|
|
65019
|
-
|
|
65020
|
-
|
|
65021
|
-
|
|
65022
|
-
|
|
65023
|
-
|
|
65024
|
-
|
|
65025
|
-
|
|
65026
|
-
|
|
65027
|
-
|
|
65028
|
-
|
|
65029
|
-
|
|
65030
|
-
|
|
65031
|
-
|
|
65032
|
-
|
|
65033
|
-
|
|
65034
|
-
|
|
65035
|
-
|
|
65036
|
-
|
|
65037
|
-
|
|
65038
|
-
|
|
65039
|
-
|
|
65040
|
-
|
|
65041
|
-
|
|
65042
|
-
|
|
65043
|
-
|
|
65044
|
-
|
|
65045
|
-
|
|
65046
|
-
|
|
65047
|
-
|
|
65048
|
-
|
|
65049
|
-
|
|
65050
|
-
|
|
65051
|
-
|
|
65052
|
-
|
|
65053
|
-
|
|
65054
|
-
|
|
65055
|
-
|
|
65056
|
-
|
|
65057
|
-
|
|
65058
|
-
|
|
65059
|
-
|
|
65060
|
-
|
|
65061
|
-
|
|
65062
|
-
|
|
65063
|
-
|
|
65064
|
-
|
|
65065
|
-
|
|
65066
|
-
|
|
65067
|
-
|
|
65068
|
-
|
|
65069
|
-
|
|
65070
|
-
|
|
65071
|
-
|
|
65072
|
-
|
|
65073
|
-
|
|
65074
|
-
|
|
65075
|
-
|
|
65076
|
-
|
|
65077
|
-
|
|
65078
|
-
|
|
65079
|
-
|
|
65080
|
-
|
|
65081
|
-
|
|
65082
|
-
|
|
65083
|
-
|
|
65084
|
-
|
|
65085
|
-
|
|
65086
|
-
|
|
65087
|
-
|
|
65088
|
-
|
|
65089
|
-
|
|
65090
|
-
|
|
65091
|
-
|
|
65092
|
-
|
|
65093
|
-
|
|
65094
|
-
|
|
65095
|
-
|
|
65096
|
-
|
|
65097
|
-
|
|
65098
|
-
|
|
65099
|
-
|
|
65100
|
-
|
|
65101
|
-
|
|
65102
|
-
|
|
65103
|
-
|
|
65104
|
-
|
|
65105
|
-
|
|
65106
|
-
|
|
65107
|
-
|
|
65108
|
-
|
|
65109
|
-
|
|
65110
|
-
|
|
65111
|
-
|
|
65112
|
-
|
|
65113
|
-
|
|
65114
|
-
|
|
65115
|
-
|
|
65116
|
-
|
|
65117
|
-
|
|
65118
|
-
|
|
65119
|
-
|
|
65120
|
-
|
|
65121
|
-
|
|
65122
|
-
|
|
65123
|
-
|
|
65124
|
-
|
|
65125
|
-
|
|
65126
|
-
|
|
65127
|
-
|
|
65128
|
-
|
|
65129
|
-
|
|
65130
|
-
|
|
65131
|
-
|
|
65132
|
-
|
|
65133
|
-
|
|
65134
|
-
|
|
65135
|
-
|
|
65136
|
-
|
|
65137
|
-
|
|
65138
|
-
|
|
65139
|
-
|
|
65140
|
-
|
|
65141
|
-
|
|
65142
|
-
|
|
65143
|
-
|
|
65144
|
-
|
|
65145
|
-
|
|
65146
|
-
|
|
65147
|
-
|
|
65148
|
-
|
|
65149
|
-
|
|
65150
|
-
|
|
65151
|
-
|
|
65152
|
-
|
|
65153
|
-
|
|
65154
|
-
|
|
65155
|
-
|
|
65156
|
-
|
|
65157
|
-
|
|
65158
|
-
|
|
65159
|
-
|
|
65160
|
-
|
|
65161
|
-
|
|
65162
|
-
|
|
65163
|
-
|
|
65164
|
-
|
|
65165
|
-
|
|
65166
|
-
|
|
65167
|
-
|
|
65168
|
-
|
|
65169
|
-
|
|
65170
|
-
|
|
65171
|
-
|
|
65172
|
-
|
|
65173
|
-
|
|
65174
|
-
|
|
65175
|
-
|
|
65176
|
-
|
|
65177
|
-
|
|
65178
|
-
|
|
65179
|
-
|
|
65180
|
-
|
|
65181
|
-
|
|
65182
|
-
|
|
65183
|
-
|
|
65184
|
-
|
|
65185
|
-
|
|
65186
|
-
|
|
65187
|
-
|
|
65188
|
-
|
|
65189
|
-
|
|
65190
|
-
|
|
65191
|
-
|
|
65192
|
-
|
|
65193
|
-
|
|
65194
|
-
|
|
65195
|
-
|
|
65196
|
-
|
|
65197
|
-
|
|
65198
|
-
|
|
65199
|
-
|
|
65200
|
-
|
|
65201
|
-
|
|
65202
|
-
|
|
65203
|
-
|
|
65204
|
-
|
|
65205
|
-
|
|
65206
|
-
|
|
65207
|
-
|
|
65208
|
-
|
|
65209
|
-
|
|
65210
|
-
|
|
65211
|
-
|
|
65212
|
-
|
|
65213
|
-
|
|
65214
|
-
|
|
65215
|
-
|
|
65216
|
-
|
|
65217
|
-
|
|
65218
|
-
|
|
65219
|
-
|
|
65220
|
-
|
|
65221
|
-
|
|
65222
|
-
|
|
65223
|
-
|
|
65224
|
-
|
|
65225
|
-
|
|
65226
|
-
|
|
65227
|
-
|
|
65228
|
-
|
|
65229
|
-
|
|
65230
|
-
|
|
65231
|
-
|
|
65232
|
-
|
|
65233
|
-
|
|
65234
|
-
|
|
65235
|
-
|
|
65236
|
-
|
|
65237
|
-
|
|
65238
|
-
|
|
65239
|
-
|
|
65240
|
-
|
|
65241
|
-
|
|
65242
|
-
|
|
65243
|
-
|
|
65244
|
-
|
|
65245
|
-
|
|
65246
|
-
|
|
65247
|
-
|
|
65248
|
-
|
|
65249
|
-
|
|
65250
|
-
|
|
65251
|
-
|
|
65252
|
-
|
|
65253
|
-
|
|
65254
|
-
|
|
65255
|
-
|
|
65256
|
-
|
|
65257
|
-
|
|
65258
|
-
|
|
65259
|
-
|
|
65260
|
-
|
|
65261
|
-
|
|
65262
|
-
|
|
65263
|
-
|
|
65264
|
-
|
|
65265
|
-
|
|
65266
|
-
|
|
65267
|
-
|
|
65268
|
-
|
|
65269
|
-
|
|
65270
|
-
|
|
65271
|
-
|
|
65272
|
-
|
|
65273
|
-
|
|
65274
|
-
|
|
65275
|
-
|
|
65276
|
-
|
|
65277
|
-
|
|
65278
|
-
|
|
65279
|
-
|
|
65280
|
-
|
|
65281
|
-
|
|
65282
|
-
|
|
65283
|
-
|
|
65284
|
-
|
|
65285
|
-
|
|
65775
|
+
class Birthday_ extends _Birthday_ {
|
|
65776
|
+
get [_1_tl_object_js_1.id]() {
|
|
65777
|
+
return 0x6C8E1E06;
|
|
65778
|
+
}
|
|
65779
|
+
static get [_1_tl_object_js_1.name]() {
|
|
65780
|
+
return "birthday";
|
|
65781
|
+
}
|
|
65782
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
65783
|
+
return [
|
|
65784
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
65785
|
+
["day", "number", "int"],
|
|
65786
|
+
["month", "number", "int"],
|
|
65787
|
+
["year", "number", "flags.0?int"],
|
|
65788
|
+
];
|
|
65789
|
+
}
|
|
65790
|
+
get [_1_tl_object_js_1.params]() {
|
|
65791
|
+
return [
|
|
65792
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
65793
|
+
[this.day, "number", "int"],
|
|
65794
|
+
[this.month, "number", "int"],
|
|
65795
|
+
[this.year ?? null, "number", "flags.0?int"],
|
|
65796
|
+
];
|
|
65797
|
+
}
|
|
65798
|
+
constructor(params) {
|
|
65799
|
+
super();
|
|
65800
|
+
Object.defineProperty(this, "day", {
|
|
65801
|
+
enumerable: true,
|
|
65802
|
+
configurable: true,
|
|
65803
|
+
writable: true,
|
|
65804
|
+
value: void 0
|
|
65805
|
+
});
|
|
65806
|
+
Object.defineProperty(this, "month", {
|
|
65807
|
+
enumerable: true,
|
|
65808
|
+
configurable: true,
|
|
65809
|
+
writable: true,
|
|
65810
|
+
value: void 0
|
|
65811
|
+
});
|
|
65812
|
+
Object.defineProperty(this, "year", {
|
|
65813
|
+
enumerable: true,
|
|
65814
|
+
configurable: true,
|
|
65815
|
+
writable: true,
|
|
65816
|
+
value: void 0
|
|
65817
|
+
});
|
|
65818
|
+
this.day = params.day;
|
|
65819
|
+
this.month = params.month;
|
|
65820
|
+
this.year = params.year;
|
|
65821
|
+
}
|
|
65822
|
+
}
|
|
65823
|
+
exports.Birthday_ = Birthday_;
|
|
65824
|
+
class BotBusinessConnection_ extends _BotBusinessConnection_ {
|
|
65825
|
+
get [_1_tl_object_js_1.id]() {
|
|
65826
|
+
return 0x896433B4;
|
|
65827
|
+
}
|
|
65828
|
+
static get [_1_tl_object_js_1.name]() {
|
|
65829
|
+
return "botBusinessConnection";
|
|
65830
|
+
}
|
|
65831
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
65832
|
+
return [
|
|
65833
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
65834
|
+
["can_reply", "true", "flags.0?true"],
|
|
65835
|
+
["disabled", "true", "flags.1?true"],
|
|
65836
|
+
["connection_id", "string", "string"],
|
|
65837
|
+
["user_id", "bigint", "long"],
|
|
65838
|
+
["dc_id", "number", "int"],
|
|
65839
|
+
["date", "number", "int"],
|
|
65840
|
+
];
|
|
65841
|
+
}
|
|
65842
|
+
get [_1_tl_object_js_1.params]() {
|
|
65843
|
+
return [
|
|
65844
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
65845
|
+
[this.can_reply ?? null, "true", "flags.0?true"],
|
|
65846
|
+
[this.disabled ?? null, "true", "flags.1?true"],
|
|
65847
|
+
[this.connection_id, "string", "string"],
|
|
65848
|
+
[this.user_id, "bigint", "long"],
|
|
65849
|
+
[this.dc_id, "number", "int"],
|
|
65850
|
+
[this.date, "number", "int"],
|
|
65851
|
+
];
|
|
65852
|
+
}
|
|
65853
|
+
constructor(params) {
|
|
65854
|
+
super();
|
|
65855
|
+
Object.defineProperty(this, "can_reply", {
|
|
65856
|
+
enumerable: true,
|
|
65857
|
+
configurable: true,
|
|
65858
|
+
writable: true,
|
|
65859
|
+
value: void 0
|
|
65860
|
+
});
|
|
65861
|
+
Object.defineProperty(this, "disabled", {
|
|
65862
|
+
enumerable: true,
|
|
65863
|
+
configurable: true,
|
|
65864
|
+
writable: true,
|
|
65865
|
+
value: void 0
|
|
65866
|
+
});
|
|
65867
|
+
Object.defineProperty(this, "connection_id", {
|
|
65868
|
+
enumerable: true,
|
|
65869
|
+
configurable: true,
|
|
65870
|
+
writable: true,
|
|
65871
|
+
value: void 0
|
|
65872
|
+
});
|
|
65873
|
+
Object.defineProperty(this, "user_id", {
|
|
65874
|
+
enumerable: true,
|
|
65875
|
+
configurable: true,
|
|
65876
|
+
writable: true,
|
|
65877
|
+
value: void 0
|
|
65878
|
+
});
|
|
65879
|
+
Object.defineProperty(this, "dc_id", {
|
|
65880
|
+
enumerable: true,
|
|
65881
|
+
configurable: true,
|
|
65882
|
+
writable: true,
|
|
65883
|
+
value: void 0
|
|
65884
|
+
});
|
|
65885
|
+
Object.defineProperty(this, "date", {
|
|
65886
|
+
enumerable: true,
|
|
65887
|
+
configurable: true,
|
|
65888
|
+
writable: true,
|
|
65889
|
+
value: void 0
|
|
65890
|
+
});
|
|
65891
|
+
this.can_reply = params.can_reply;
|
|
65892
|
+
this.disabled = params.disabled;
|
|
65893
|
+
this.connection_id = params.connection_id;
|
|
65894
|
+
this.user_id = params.user_id;
|
|
65895
|
+
this.dc_id = params.dc_id;
|
|
65896
|
+
this.date = params.date;
|
|
65897
|
+
}
|
|
65898
|
+
}
|
|
65899
|
+
exports.BotBusinessConnection_ = BotBusinessConnection_;
|
|
65900
|
+
class InputBusinessIntro_ extends _InputBusinessIntro_ {
|
|
65901
|
+
get [_1_tl_object_js_1.id]() {
|
|
65902
|
+
return 0x09C469CD;
|
|
65903
|
+
}
|
|
65904
|
+
static get [_1_tl_object_js_1.name]() {
|
|
65905
|
+
return "inputBusinessIntro";
|
|
65906
|
+
}
|
|
65907
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
65908
|
+
return [
|
|
65909
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
65910
|
+
["title", "string", "string"],
|
|
65911
|
+
["description", "string", "string"],
|
|
65912
|
+
["sticker", _InputDocument_, "flags.0?InputDocument"],
|
|
65913
|
+
];
|
|
65914
|
+
}
|
|
65915
|
+
get [_1_tl_object_js_1.params]() {
|
|
65916
|
+
return [
|
|
65917
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
65918
|
+
[this.title, "string", "string"],
|
|
65919
|
+
[this.description, "string", "string"],
|
|
65920
|
+
[this.sticker ?? null, _InputDocument_, "flags.0?InputDocument"],
|
|
65921
|
+
];
|
|
65922
|
+
}
|
|
65923
|
+
constructor(params) {
|
|
65924
|
+
super();
|
|
65925
|
+
Object.defineProperty(this, "title", {
|
|
65926
|
+
enumerable: true,
|
|
65927
|
+
configurable: true,
|
|
65928
|
+
writable: true,
|
|
65929
|
+
value: void 0
|
|
65930
|
+
});
|
|
65931
|
+
Object.defineProperty(this, "description", {
|
|
65932
|
+
enumerable: true,
|
|
65933
|
+
configurable: true,
|
|
65934
|
+
writable: true,
|
|
65935
|
+
value: void 0
|
|
65936
|
+
});
|
|
65937
|
+
Object.defineProperty(this, "sticker", {
|
|
65938
|
+
enumerable: true,
|
|
65939
|
+
configurable: true,
|
|
65940
|
+
writable: true,
|
|
65941
|
+
value: void 0
|
|
65942
|
+
});
|
|
65943
|
+
this.title = params.title;
|
|
65944
|
+
this.description = params.description;
|
|
65945
|
+
this.sticker = params.sticker;
|
|
65946
|
+
}
|
|
65947
|
+
}
|
|
65948
|
+
exports.InputBusinessIntro_ = InputBusinessIntro_;
|
|
65949
|
+
class BusinessIntro_ extends _BusinessIntro_ {
|
|
65950
|
+
get [_1_tl_object_js_1.id]() {
|
|
65951
|
+
return 0x5A0A066D;
|
|
65952
|
+
}
|
|
65953
|
+
static get [_1_tl_object_js_1.name]() {
|
|
65954
|
+
return "businessIntro";
|
|
65955
|
+
}
|
|
65956
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
65957
|
+
return [
|
|
65958
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
65959
|
+
["title", "string", "string"],
|
|
65960
|
+
["description", "string", "string"],
|
|
65961
|
+
["sticker", _Document_, "flags.0?Document"],
|
|
65962
|
+
];
|
|
65963
|
+
}
|
|
65964
|
+
get [_1_tl_object_js_1.params]() {
|
|
65965
|
+
return [
|
|
65966
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
65967
|
+
[this.title, "string", "string"],
|
|
65968
|
+
[this.description, "string", "string"],
|
|
65969
|
+
[this.sticker ?? null, _Document_, "flags.0?Document"],
|
|
65970
|
+
];
|
|
65971
|
+
}
|
|
65972
|
+
constructor(params) {
|
|
65973
|
+
super();
|
|
65974
|
+
Object.defineProperty(this, "title", {
|
|
65975
|
+
enumerable: true,
|
|
65976
|
+
configurable: true,
|
|
65977
|
+
writable: true,
|
|
65978
|
+
value: void 0
|
|
65979
|
+
});
|
|
65980
|
+
Object.defineProperty(this, "description", {
|
|
65981
|
+
enumerable: true,
|
|
65982
|
+
configurable: true,
|
|
65983
|
+
writable: true,
|
|
65984
|
+
value: void 0
|
|
65985
|
+
});
|
|
65986
|
+
Object.defineProperty(this, "sticker", {
|
|
65987
|
+
enumerable: true,
|
|
65988
|
+
configurable: true,
|
|
65989
|
+
writable: true,
|
|
65990
|
+
value: void 0
|
|
65991
|
+
});
|
|
65992
|
+
this.title = params.title;
|
|
65993
|
+
this.description = params.description;
|
|
65994
|
+
this.sticker = params.sticker;
|
|
65995
|
+
}
|
|
65996
|
+
}
|
|
65997
|
+
exports.BusinessIntro_ = BusinessIntro_;
|
|
65998
|
+
class messages_MyStickers_ extends _messages_MyStickers_ {
|
|
65999
|
+
get [_1_tl_object_js_1.id]() {
|
|
66000
|
+
return 0xFAFF629D;
|
|
66001
|
+
}
|
|
66002
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66003
|
+
return "messages.myStickers";
|
|
66004
|
+
}
|
|
66005
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66006
|
+
return [
|
|
66007
|
+
["count", "number", "int"],
|
|
66008
|
+
["sets", [_StickerSetCovered_], "Vector<StickerSetCovered>"],
|
|
66009
|
+
];
|
|
66010
|
+
}
|
|
66011
|
+
get [_1_tl_object_js_1.params]() {
|
|
66012
|
+
return [
|
|
66013
|
+
[this.count, "number", "int"],
|
|
66014
|
+
[this.sets, [_StickerSetCovered_], "Vector<StickerSetCovered>"],
|
|
66015
|
+
];
|
|
66016
|
+
}
|
|
66017
|
+
constructor(params) {
|
|
66018
|
+
super();
|
|
66019
|
+
Object.defineProperty(this, "count", {
|
|
66020
|
+
enumerable: true,
|
|
66021
|
+
configurable: true,
|
|
66022
|
+
writable: true,
|
|
66023
|
+
value: void 0
|
|
66024
|
+
});
|
|
66025
|
+
Object.defineProperty(this, "sets", {
|
|
66026
|
+
enumerable: true,
|
|
66027
|
+
configurable: true,
|
|
66028
|
+
writable: true,
|
|
66029
|
+
value: void 0
|
|
66030
|
+
});
|
|
66031
|
+
this.count = params.count;
|
|
66032
|
+
this.sets = params.sets;
|
|
66033
|
+
}
|
|
66034
|
+
}
|
|
66035
|
+
exports.messages_MyStickers_ = messages_MyStickers_;
|
|
66036
|
+
class InputCollectibleUsername_ extends _InputCollectible_ {
|
|
66037
|
+
get [_1_tl_object_js_1.id]() {
|
|
66038
|
+
return 0xE39460A9;
|
|
66039
|
+
}
|
|
66040
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66041
|
+
return "inputCollectibleUsername";
|
|
66042
|
+
}
|
|
66043
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66044
|
+
return [
|
|
66045
|
+
["username", "string", "string"],
|
|
66046
|
+
];
|
|
66047
|
+
}
|
|
66048
|
+
get [_1_tl_object_js_1.params]() {
|
|
66049
|
+
return [
|
|
66050
|
+
[this.username, "string", "string"],
|
|
66051
|
+
];
|
|
66052
|
+
}
|
|
66053
|
+
constructor(params) {
|
|
66054
|
+
super();
|
|
66055
|
+
Object.defineProperty(this, "username", {
|
|
66056
|
+
enumerable: true,
|
|
66057
|
+
configurable: true,
|
|
66058
|
+
writable: true,
|
|
66059
|
+
value: void 0
|
|
66060
|
+
});
|
|
66061
|
+
this.username = params.username;
|
|
66062
|
+
}
|
|
66063
|
+
}
|
|
66064
|
+
exports.InputCollectibleUsername_ = InputCollectibleUsername_;
|
|
66065
|
+
class InputCollectiblePhone_ extends _InputCollectible_ {
|
|
66066
|
+
get [_1_tl_object_js_1.id]() {
|
|
66067
|
+
return 0xA2E214A4;
|
|
66068
|
+
}
|
|
66069
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66070
|
+
return "inputCollectiblePhone";
|
|
66071
|
+
}
|
|
66072
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66073
|
+
return [
|
|
66074
|
+
["phone", "string", "string"],
|
|
66075
|
+
];
|
|
66076
|
+
}
|
|
66077
|
+
get [_1_tl_object_js_1.params]() {
|
|
66078
|
+
return [
|
|
66079
|
+
[this.phone, "string", "string"],
|
|
66080
|
+
];
|
|
66081
|
+
}
|
|
66082
|
+
constructor(params) {
|
|
66083
|
+
super();
|
|
66084
|
+
Object.defineProperty(this, "phone", {
|
|
66085
|
+
enumerable: true,
|
|
66086
|
+
configurable: true,
|
|
66087
|
+
writable: true,
|
|
66088
|
+
value: void 0
|
|
66089
|
+
});
|
|
66090
|
+
this.phone = params.phone;
|
|
66091
|
+
}
|
|
66092
|
+
}
|
|
66093
|
+
exports.InputCollectiblePhone_ = InputCollectiblePhone_;
|
|
66094
|
+
class fragment_CollectibleInfo_ extends _fragment_CollectibleInfo_ {
|
|
66095
|
+
get [_1_tl_object_js_1.id]() {
|
|
66096
|
+
return 0x6EBDFF91;
|
|
66097
|
+
}
|
|
66098
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66099
|
+
return "fragment.collectibleInfo";
|
|
66100
|
+
}
|
|
66101
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66102
|
+
return [
|
|
66103
|
+
["purchase_date", "number", "int"],
|
|
66104
|
+
["currency", "string", "string"],
|
|
66105
|
+
["amount", "bigint", "long"],
|
|
66106
|
+
["crypto_currency", "string", "string"],
|
|
66107
|
+
["crypto_amount", "bigint", "long"],
|
|
66108
|
+
["url", "string", "string"],
|
|
66109
|
+
];
|
|
66110
|
+
}
|
|
66111
|
+
get [_1_tl_object_js_1.params]() {
|
|
66112
|
+
return [
|
|
66113
|
+
[this.purchase_date, "number", "int"],
|
|
66114
|
+
[this.currency, "string", "string"],
|
|
66115
|
+
[this.amount, "bigint", "long"],
|
|
66116
|
+
[this.crypto_currency, "string", "string"],
|
|
66117
|
+
[this.crypto_amount, "bigint", "long"],
|
|
66118
|
+
[this.url, "string", "string"],
|
|
66119
|
+
];
|
|
66120
|
+
}
|
|
66121
|
+
constructor(params) {
|
|
66122
|
+
super();
|
|
66123
|
+
Object.defineProperty(this, "purchase_date", {
|
|
66124
|
+
enumerable: true,
|
|
66125
|
+
configurable: true,
|
|
66126
|
+
writable: true,
|
|
66127
|
+
value: void 0
|
|
66128
|
+
});
|
|
66129
|
+
Object.defineProperty(this, "currency", {
|
|
66130
|
+
enumerable: true,
|
|
66131
|
+
configurable: true,
|
|
66132
|
+
writable: true,
|
|
66133
|
+
value: void 0
|
|
66134
|
+
});
|
|
66135
|
+
Object.defineProperty(this, "amount", {
|
|
66136
|
+
enumerable: true,
|
|
66137
|
+
configurable: true,
|
|
66138
|
+
writable: true,
|
|
66139
|
+
value: void 0
|
|
66140
|
+
});
|
|
66141
|
+
Object.defineProperty(this, "crypto_currency", {
|
|
66142
|
+
enumerable: true,
|
|
66143
|
+
configurable: true,
|
|
66144
|
+
writable: true,
|
|
66145
|
+
value: void 0
|
|
66146
|
+
});
|
|
66147
|
+
Object.defineProperty(this, "crypto_amount", {
|
|
66148
|
+
enumerable: true,
|
|
66149
|
+
configurable: true,
|
|
66150
|
+
writable: true,
|
|
66151
|
+
value: void 0
|
|
66152
|
+
});
|
|
66153
|
+
Object.defineProperty(this, "url", {
|
|
66154
|
+
enumerable: true,
|
|
66155
|
+
configurable: true,
|
|
66156
|
+
writable: true,
|
|
66157
|
+
value: void 0
|
|
66158
|
+
});
|
|
66159
|
+
this.purchase_date = params.purchase_date;
|
|
66160
|
+
this.currency = params.currency;
|
|
66161
|
+
this.amount = params.amount;
|
|
66162
|
+
this.crypto_currency = params.crypto_currency;
|
|
66163
|
+
this.crypto_amount = params.crypto_amount;
|
|
66164
|
+
this.url = params.url;
|
|
66165
|
+
}
|
|
66166
|
+
}
|
|
66167
|
+
exports.fragment_CollectibleInfo_ = fragment_CollectibleInfo_;
|
|
66168
|
+
class InputBusinessBotRecipients_ extends _InputBusinessBotRecipients_ {
|
|
66169
|
+
get [_1_tl_object_js_1.id]() {
|
|
66170
|
+
return 0xC4E5921E;
|
|
66171
|
+
}
|
|
66172
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66173
|
+
return "inputBusinessBotRecipients";
|
|
66174
|
+
}
|
|
66175
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66176
|
+
return [
|
|
66177
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66178
|
+
["existing_chats", "true", "flags.0?true"],
|
|
66179
|
+
["new_chats", "true", "flags.1?true"],
|
|
66180
|
+
["contacts", "true", "flags.2?true"],
|
|
66181
|
+
["non_contacts", "true", "flags.3?true"],
|
|
66182
|
+
["exclude_selected", "true", "flags.5?true"],
|
|
66183
|
+
["users", [_InputUser_], "flags.4?Vector<InputUser>"],
|
|
66184
|
+
["exclude_users", [_InputUser_], "flags.6?Vector<InputUser>"],
|
|
66185
|
+
];
|
|
66186
|
+
}
|
|
66187
|
+
get [_1_tl_object_js_1.params]() {
|
|
66188
|
+
return [
|
|
66189
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66190
|
+
[this.existing_chats ?? null, "true", "flags.0?true"],
|
|
66191
|
+
[this.new_chats ?? null, "true", "flags.1?true"],
|
|
66192
|
+
[this.contacts ?? null, "true", "flags.2?true"],
|
|
66193
|
+
[this.non_contacts ?? null, "true", "flags.3?true"],
|
|
66194
|
+
[this.exclude_selected ?? null, "true", "flags.5?true"],
|
|
66195
|
+
[this.users ?? null, [_InputUser_], "flags.4?Vector<InputUser>"],
|
|
66196
|
+
[this.exclude_users ?? null, [_InputUser_], "flags.6?Vector<InputUser>"],
|
|
66197
|
+
];
|
|
66198
|
+
}
|
|
66199
|
+
constructor(params) {
|
|
66200
|
+
super();
|
|
66201
|
+
Object.defineProperty(this, "existing_chats", {
|
|
66202
|
+
enumerable: true,
|
|
66203
|
+
configurable: true,
|
|
66204
|
+
writable: true,
|
|
66205
|
+
value: void 0
|
|
66206
|
+
});
|
|
66207
|
+
Object.defineProperty(this, "new_chats", {
|
|
66208
|
+
enumerable: true,
|
|
66209
|
+
configurable: true,
|
|
66210
|
+
writable: true,
|
|
66211
|
+
value: void 0
|
|
66212
|
+
});
|
|
66213
|
+
Object.defineProperty(this, "contacts", {
|
|
66214
|
+
enumerable: true,
|
|
66215
|
+
configurable: true,
|
|
66216
|
+
writable: true,
|
|
66217
|
+
value: void 0
|
|
66218
|
+
});
|
|
66219
|
+
Object.defineProperty(this, "non_contacts", {
|
|
66220
|
+
enumerable: true,
|
|
66221
|
+
configurable: true,
|
|
66222
|
+
writable: true,
|
|
66223
|
+
value: void 0
|
|
66224
|
+
});
|
|
66225
|
+
Object.defineProperty(this, "exclude_selected", {
|
|
66226
|
+
enumerable: true,
|
|
66227
|
+
configurable: true,
|
|
66228
|
+
writable: true,
|
|
66229
|
+
value: void 0
|
|
66230
|
+
});
|
|
66231
|
+
Object.defineProperty(this, "users", {
|
|
66232
|
+
enumerable: true,
|
|
66233
|
+
configurable: true,
|
|
66234
|
+
writable: true,
|
|
66235
|
+
value: void 0
|
|
66236
|
+
});
|
|
66237
|
+
Object.defineProperty(this, "exclude_users", {
|
|
66238
|
+
enumerable: true,
|
|
66239
|
+
configurable: true,
|
|
66240
|
+
writable: true,
|
|
66241
|
+
value: void 0
|
|
66242
|
+
});
|
|
66243
|
+
this.existing_chats = params?.existing_chats;
|
|
66244
|
+
this.new_chats = params?.new_chats;
|
|
66245
|
+
this.contacts = params?.contacts;
|
|
66246
|
+
this.non_contacts = params?.non_contacts;
|
|
66247
|
+
this.exclude_selected = params?.exclude_selected;
|
|
66248
|
+
this.users = params?.users;
|
|
66249
|
+
this.exclude_users = params?.exclude_users;
|
|
66250
|
+
}
|
|
66251
|
+
}
|
|
66252
|
+
exports.InputBusinessBotRecipients_ = InputBusinessBotRecipients_;
|
|
66253
|
+
class BusinessBotRecipients_ extends _BusinessBotRecipients_ {
|
|
66254
|
+
get [_1_tl_object_js_1.id]() {
|
|
66255
|
+
return 0xB88CF373;
|
|
66256
|
+
}
|
|
66257
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66258
|
+
return "businessBotRecipients";
|
|
66259
|
+
}
|
|
66260
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66261
|
+
return [
|
|
66262
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66263
|
+
["existing_chats", "true", "flags.0?true"],
|
|
66264
|
+
["new_chats", "true", "flags.1?true"],
|
|
66265
|
+
["contacts", "true", "flags.2?true"],
|
|
66266
|
+
["non_contacts", "true", "flags.3?true"],
|
|
66267
|
+
["exclude_selected", "true", "flags.5?true"],
|
|
66268
|
+
["users", ["bigint"], "flags.4?Vector<long>"],
|
|
66269
|
+
["exclude_users", ["bigint"], "flags.6?Vector<long>"],
|
|
66270
|
+
];
|
|
66271
|
+
}
|
|
66272
|
+
get [_1_tl_object_js_1.params]() {
|
|
66273
|
+
return [
|
|
66274
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66275
|
+
[this.existing_chats ?? null, "true", "flags.0?true"],
|
|
66276
|
+
[this.new_chats ?? null, "true", "flags.1?true"],
|
|
66277
|
+
[this.contacts ?? null, "true", "flags.2?true"],
|
|
66278
|
+
[this.non_contacts ?? null, "true", "flags.3?true"],
|
|
66279
|
+
[this.exclude_selected ?? null, "true", "flags.5?true"],
|
|
66280
|
+
[this.users ?? null, ["bigint"], "flags.4?Vector<long>"],
|
|
66281
|
+
[this.exclude_users ?? null, ["bigint"], "flags.6?Vector<long>"],
|
|
66282
|
+
];
|
|
66283
|
+
}
|
|
66284
|
+
constructor(params) {
|
|
66285
|
+
super();
|
|
66286
|
+
Object.defineProperty(this, "existing_chats", {
|
|
66287
|
+
enumerable: true,
|
|
66288
|
+
configurable: true,
|
|
66289
|
+
writable: true,
|
|
66290
|
+
value: void 0
|
|
66291
|
+
});
|
|
66292
|
+
Object.defineProperty(this, "new_chats", {
|
|
66293
|
+
enumerable: true,
|
|
66294
|
+
configurable: true,
|
|
66295
|
+
writable: true,
|
|
66296
|
+
value: void 0
|
|
66297
|
+
});
|
|
66298
|
+
Object.defineProperty(this, "contacts", {
|
|
66299
|
+
enumerable: true,
|
|
66300
|
+
configurable: true,
|
|
66301
|
+
writable: true,
|
|
66302
|
+
value: void 0
|
|
66303
|
+
});
|
|
66304
|
+
Object.defineProperty(this, "non_contacts", {
|
|
66305
|
+
enumerable: true,
|
|
66306
|
+
configurable: true,
|
|
66307
|
+
writable: true,
|
|
66308
|
+
value: void 0
|
|
66309
|
+
});
|
|
66310
|
+
Object.defineProperty(this, "exclude_selected", {
|
|
66311
|
+
enumerable: true,
|
|
66312
|
+
configurable: true,
|
|
66313
|
+
writable: true,
|
|
66314
|
+
value: void 0
|
|
66315
|
+
});
|
|
66316
|
+
Object.defineProperty(this, "users", {
|
|
66317
|
+
enumerable: true,
|
|
66318
|
+
configurable: true,
|
|
66319
|
+
writable: true,
|
|
66320
|
+
value: void 0
|
|
66321
|
+
});
|
|
66322
|
+
Object.defineProperty(this, "exclude_users", {
|
|
66323
|
+
enumerable: true,
|
|
66324
|
+
configurable: true,
|
|
66325
|
+
writable: true,
|
|
66326
|
+
value: void 0
|
|
66327
|
+
});
|
|
66328
|
+
this.existing_chats = params?.existing_chats;
|
|
66329
|
+
this.new_chats = params?.new_chats;
|
|
66330
|
+
this.contacts = params?.contacts;
|
|
66331
|
+
this.non_contacts = params?.non_contacts;
|
|
66332
|
+
this.exclude_selected = params?.exclude_selected;
|
|
66333
|
+
this.users = params?.users;
|
|
66334
|
+
this.exclude_users = params?.exclude_users;
|
|
66335
|
+
}
|
|
66336
|
+
}
|
|
66337
|
+
exports.BusinessBotRecipients_ = BusinessBotRecipients_;
|
|
66338
|
+
class ContactBirthday_ extends _ContactBirthday_ {
|
|
66339
|
+
get [_1_tl_object_js_1.id]() {
|
|
66340
|
+
return 0x1D998733;
|
|
66341
|
+
}
|
|
66342
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66343
|
+
return "contactBirthday";
|
|
66344
|
+
}
|
|
66345
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66346
|
+
return [
|
|
66347
|
+
["contact_id", "bigint", "long"],
|
|
66348
|
+
["birthday", _Birthday_, "Birthday"],
|
|
66349
|
+
];
|
|
66350
|
+
}
|
|
66351
|
+
get [_1_tl_object_js_1.params]() {
|
|
66352
|
+
return [
|
|
66353
|
+
[this.contact_id, "bigint", "long"],
|
|
66354
|
+
[this.birthday, _Birthday_, "Birthday"],
|
|
66355
|
+
];
|
|
66356
|
+
}
|
|
66357
|
+
constructor(params) {
|
|
66358
|
+
super();
|
|
66359
|
+
Object.defineProperty(this, "contact_id", {
|
|
66360
|
+
enumerable: true,
|
|
66361
|
+
configurable: true,
|
|
66362
|
+
writable: true,
|
|
66363
|
+
value: void 0
|
|
66364
|
+
});
|
|
66365
|
+
Object.defineProperty(this, "birthday", {
|
|
66366
|
+
enumerable: true,
|
|
66367
|
+
configurable: true,
|
|
66368
|
+
writable: true,
|
|
66369
|
+
value: void 0
|
|
66370
|
+
});
|
|
66371
|
+
this.contact_id = params.contact_id;
|
|
66372
|
+
this.birthday = params.birthday;
|
|
66373
|
+
}
|
|
66374
|
+
}
|
|
66375
|
+
exports.ContactBirthday_ = ContactBirthday_;
|
|
66376
|
+
class contacts_ContactBirthdays_ extends _contacts_ContactBirthdays_ {
|
|
66377
|
+
get [_1_tl_object_js_1.id]() {
|
|
66378
|
+
return 0x114FF30D;
|
|
66379
|
+
}
|
|
66380
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66381
|
+
return "contacts.contactBirthdays";
|
|
66382
|
+
}
|
|
66383
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66384
|
+
return [
|
|
66385
|
+
["contacts", [_ContactBirthday_], "Vector<ContactBirthday>"],
|
|
66386
|
+
["users", [_User_], "Vector<User>"],
|
|
66387
|
+
];
|
|
66388
|
+
}
|
|
66389
|
+
get [_1_tl_object_js_1.params]() {
|
|
66390
|
+
return [
|
|
66391
|
+
[this.contacts, [_ContactBirthday_], "Vector<ContactBirthday>"],
|
|
66392
|
+
[this.users, [_User_], "Vector<User>"],
|
|
66393
|
+
];
|
|
66394
|
+
}
|
|
66395
|
+
constructor(params) {
|
|
66396
|
+
super();
|
|
66397
|
+
Object.defineProperty(this, "contacts", {
|
|
66398
|
+
enumerable: true,
|
|
66399
|
+
configurable: true,
|
|
66400
|
+
writable: true,
|
|
66401
|
+
value: void 0
|
|
66402
|
+
});
|
|
66403
|
+
Object.defineProperty(this, "users", {
|
|
66404
|
+
enumerable: true,
|
|
66405
|
+
configurable: true,
|
|
66406
|
+
writable: true,
|
|
66407
|
+
value: void 0
|
|
66408
|
+
});
|
|
66409
|
+
this.contacts = params.contacts;
|
|
66410
|
+
this.users = params.users;
|
|
66411
|
+
}
|
|
66412
|
+
}
|
|
66413
|
+
exports.contacts_ContactBirthdays_ = contacts_ContactBirthdays_;
|
|
66414
|
+
class MissingInvitee_ extends _MissingInvitee_ {
|
|
66415
|
+
get [_1_tl_object_js_1.id]() {
|
|
66416
|
+
return 0x628C9224;
|
|
66417
|
+
}
|
|
66418
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66419
|
+
return "missingInvitee";
|
|
66420
|
+
}
|
|
66421
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66422
|
+
return [
|
|
66423
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66424
|
+
["premium_would_allow_invite", "true", "flags.0?true"],
|
|
66425
|
+
["premium_required_for_pm", "true", "flags.1?true"],
|
|
66426
|
+
["user_id", "bigint", "long"],
|
|
66427
|
+
];
|
|
66428
|
+
}
|
|
66429
|
+
get [_1_tl_object_js_1.params]() {
|
|
66430
|
+
return [
|
|
66431
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66432
|
+
[this.premium_would_allow_invite ?? null, "true", "flags.0?true"],
|
|
66433
|
+
[this.premium_required_for_pm ?? null, "true", "flags.1?true"],
|
|
66434
|
+
[this.user_id, "bigint", "long"],
|
|
66435
|
+
];
|
|
66436
|
+
}
|
|
66437
|
+
constructor(params) {
|
|
66438
|
+
super();
|
|
66439
|
+
Object.defineProperty(this, "premium_would_allow_invite", {
|
|
66440
|
+
enumerable: true,
|
|
66441
|
+
configurable: true,
|
|
66442
|
+
writable: true,
|
|
66443
|
+
value: void 0
|
|
66444
|
+
});
|
|
66445
|
+
Object.defineProperty(this, "premium_required_for_pm", {
|
|
66446
|
+
enumerable: true,
|
|
66447
|
+
configurable: true,
|
|
66448
|
+
writable: true,
|
|
66449
|
+
value: void 0
|
|
66450
|
+
});
|
|
66451
|
+
Object.defineProperty(this, "user_id", {
|
|
66452
|
+
enumerable: true,
|
|
66453
|
+
configurable: true,
|
|
66454
|
+
writable: true,
|
|
66455
|
+
value: void 0
|
|
66456
|
+
});
|
|
66457
|
+
this.premium_would_allow_invite = params.premium_would_allow_invite;
|
|
66458
|
+
this.premium_required_for_pm = params.premium_required_for_pm;
|
|
66459
|
+
this.user_id = params.user_id;
|
|
66460
|
+
}
|
|
66461
|
+
}
|
|
66462
|
+
exports.MissingInvitee_ = MissingInvitee_;
|
|
66463
|
+
class messages_InvitedUsers_ extends _messages_InvitedUsers_ {
|
|
66464
|
+
get [_1_tl_object_js_1.id]() {
|
|
66465
|
+
return 0x7F5DEFA6;
|
|
66466
|
+
}
|
|
66467
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66468
|
+
return "messages.invitedUsers";
|
|
66469
|
+
}
|
|
66470
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66471
|
+
return [
|
|
66472
|
+
["updates", _Updates_, "Updates"],
|
|
66473
|
+
["missing_invitees", [_MissingInvitee_], "Vector<MissingInvitee>"],
|
|
66474
|
+
];
|
|
66475
|
+
}
|
|
66476
|
+
get [_1_tl_object_js_1.params]() {
|
|
66477
|
+
return [
|
|
66478
|
+
[this.updates, _Updates_, "Updates"],
|
|
66479
|
+
[this.missing_invitees, [_MissingInvitee_], "Vector<MissingInvitee>"],
|
|
66480
|
+
];
|
|
66481
|
+
}
|
|
66482
|
+
constructor(params) {
|
|
66483
|
+
super();
|
|
66484
|
+
Object.defineProperty(this, "updates", {
|
|
66485
|
+
enumerable: true,
|
|
66486
|
+
configurable: true,
|
|
66487
|
+
writable: true,
|
|
66488
|
+
value: void 0
|
|
66489
|
+
});
|
|
66490
|
+
Object.defineProperty(this, "missing_invitees", {
|
|
66491
|
+
enumerable: true,
|
|
66492
|
+
configurable: true,
|
|
66493
|
+
writable: true,
|
|
66494
|
+
value: void 0
|
|
66495
|
+
});
|
|
66496
|
+
this.updates = params.updates;
|
|
66497
|
+
this.missing_invitees = params.missing_invitees;
|
|
66498
|
+
}
|
|
66499
|
+
}
|
|
66500
|
+
exports.messages_InvitedUsers_ = messages_InvitedUsers_;
|
|
66501
|
+
class InputBusinessChatLink_ extends _InputBusinessChatLink_ {
|
|
66502
|
+
get [_1_tl_object_js_1.id]() {
|
|
66503
|
+
return 0x11679FA7;
|
|
66504
|
+
}
|
|
66505
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66506
|
+
return "inputBusinessChatLink";
|
|
66507
|
+
}
|
|
66508
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66509
|
+
return [
|
|
66510
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66511
|
+
["message", "string", "string"],
|
|
66512
|
+
["entities", [_MessageEntity_], "flags.0?Vector<MessageEntity>"],
|
|
66513
|
+
["title", "string", "flags.1?string"],
|
|
66514
|
+
];
|
|
66515
|
+
}
|
|
66516
|
+
get [_1_tl_object_js_1.params]() {
|
|
66517
|
+
return [
|
|
66518
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66519
|
+
[this.message, "string", "string"],
|
|
66520
|
+
[this.entities ?? null, [_MessageEntity_], "flags.0?Vector<MessageEntity>"],
|
|
66521
|
+
[this.title ?? null, "string", "flags.1?string"],
|
|
66522
|
+
];
|
|
66523
|
+
}
|
|
66524
|
+
constructor(params) {
|
|
66525
|
+
super();
|
|
66526
|
+
Object.defineProperty(this, "message", {
|
|
66527
|
+
enumerable: true,
|
|
66528
|
+
configurable: true,
|
|
66529
|
+
writable: true,
|
|
66530
|
+
value: void 0
|
|
66531
|
+
});
|
|
66532
|
+
Object.defineProperty(this, "entities", {
|
|
66533
|
+
enumerable: true,
|
|
66534
|
+
configurable: true,
|
|
66535
|
+
writable: true,
|
|
66536
|
+
value: void 0
|
|
66537
|
+
});
|
|
66538
|
+
Object.defineProperty(this, "title", {
|
|
66539
|
+
enumerable: true,
|
|
66540
|
+
configurable: true,
|
|
66541
|
+
writable: true,
|
|
66542
|
+
value: void 0
|
|
66543
|
+
});
|
|
66544
|
+
this.message = params.message;
|
|
66545
|
+
this.entities = params.entities;
|
|
66546
|
+
this.title = params.title;
|
|
66547
|
+
}
|
|
66548
|
+
}
|
|
66549
|
+
exports.InputBusinessChatLink_ = InputBusinessChatLink_;
|
|
66550
|
+
class BusinessChatLink_ extends _BusinessChatLink_ {
|
|
66551
|
+
get [_1_tl_object_js_1.id]() {
|
|
66552
|
+
return 0xB4AE666F;
|
|
66553
|
+
}
|
|
66554
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66555
|
+
return "businessChatLink";
|
|
66556
|
+
}
|
|
66557
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66558
|
+
return [
|
|
66559
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66560
|
+
["link", "string", "string"],
|
|
66561
|
+
["message", "string", "string"],
|
|
66562
|
+
["entities", [_MessageEntity_], "flags.0?Vector<MessageEntity>"],
|
|
66563
|
+
["title", "string", "flags.1?string"],
|
|
66564
|
+
["views", "number", "int"],
|
|
66565
|
+
];
|
|
66566
|
+
}
|
|
66567
|
+
get [_1_tl_object_js_1.params]() {
|
|
66568
|
+
return [
|
|
66569
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66570
|
+
[this.link, "string", "string"],
|
|
66571
|
+
[this.message, "string", "string"],
|
|
66572
|
+
[this.entities ?? null, [_MessageEntity_], "flags.0?Vector<MessageEntity>"],
|
|
66573
|
+
[this.title ?? null, "string", "flags.1?string"],
|
|
66574
|
+
[this.views, "number", "int"],
|
|
66575
|
+
];
|
|
66576
|
+
}
|
|
66577
|
+
constructor(params) {
|
|
66578
|
+
super();
|
|
66579
|
+
Object.defineProperty(this, "link", {
|
|
66580
|
+
enumerable: true,
|
|
66581
|
+
configurable: true,
|
|
66582
|
+
writable: true,
|
|
66583
|
+
value: void 0
|
|
66584
|
+
});
|
|
66585
|
+
Object.defineProperty(this, "message", {
|
|
66586
|
+
enumerable: true,
|
|
66587
|
+
configurable: true,
|
|
66588
|
+
writable: true,
|
|
66589
|
+
value: void 0
|
|
66590
|
+
});
|
|
66591
|
+
Object.defineProperty(this, "entities", {
|
|
66592
|
+
enumerable: true,
|
|
66593
|
+
configurable: true,
|
|
66594
|
+
writable: true,
|
|
66595
|
+
value: void 0
|
|
66596
|
+
});
|
|
66597
|
+
Object.defineProperty(this, "title", {
|
|
66598
|
+
enumerable: true,
|
|
66599
|
+
configurable: true,
|
|
66600
|
+
writable: true,
|
|
66601
|
+
value: void 0
|
|
66602
|
+
});
|
|
66603
|
+
Object.defineProperty(this, "views", {
|
|
66604
|
+
enumerable: true,
|
|
66605
|
+
configurable: true,
|
|
66606
|
+
writable: true,
|
|
66607
|
+
value: void 0
|
|
66608
|
+
});
|
|
66609
|
+
this.link = params.link;
|
|
66610
|
+
this.message = params.message;
|
|
66611
|
+
this.entities = params.entities;
|
|
66612
|
+
this.title = params.title;
|
|
66613
|
+
this.views = params.views;
|
|
66614
|
+
}
|
|
66615
|
+
}
|
|
66616
|
+
exports.BusinessChatLink_ = BusinessChatLink_;
|
|
66617
|
+
class account_BusinessChatLinks_ extends _account_BusinessChatLinks_ {
|
|
66618
|
+
get [_1_tl_object_js_1.id]() {
|
|
66619
|
+
return 0xEC43A2D1;
|
|
66620
|
+
}
|
|
66621
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66622
|
+
return "account.businessChatLinks";
|
|
66623
|
+
}
|
|
66624
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66625
|
+
return [
|
|
66626
|
+
["links", [_BusinessChatLink_], "Vector<BusinessChatLink>"],
|
|
66627
|
+
["chats", [_Chat_], "Vector<Chat>"],
|
|
66628
|
+
["users", [_User_], "Vector<User>"],
|
|
66629
|
+
];
|
|
66630
|
+
}
|
|
66631
|
+
get [_1_tl_object_js_1.params]() {
|
|
66632
|
+
return [
|
|
66633
|
+
[this.links, [_BusinessChatLink_], "Vector<BusinessChatLink>"],
|
|
66634
|
+
[this.chats, [_Chat_], "Vector<Chat>"],
|
|
66635
|
+
[this.users, [_User_], "Vector<User>"],
|
|
66636
|
+
];
|
|
66637
|
+
}
|
|
66638
|
+
constructor(params) {
|
|
66639
|
+
super();
|
|
66640
|
+
Object.defineProperty(this, "links", {
|
|
66641
|
+
enumerable: true,
|
|
66642
|
+
configurable: true,
|
|
66643
|
+
writable: true,
|
|
66644
|
+
value: void 0
|
|
66645
|
+
});
|
|
66646
|
+
Object.defineProperty(this, "chats", {
|
|
66647
|
+
enumerable: true,
|
|
66648
|
+
configurable: true,
|
|
66649
|
+
writable: true,
|
|
66650
|
+
value: void 0
|
|
66651
|
+
});
|
|
66652
|
+
Object.defineProperty(this, "users", {
|
|
66653
|
+
enumerable: true,
|
|
66654
|
+
configurable: true,
|
|
66655
|
+
writable: true,
|
|
66656
|
+
value: void 0
|
|
66657
|
+
});
|
|
66658
|
+
this.links = params.links;
|
|
66659
|
+
this.chats = params.chats;
|
|
66660
|
+
this.users = params.users;
|
|
66661
|
+
}
|
|
66662
|
+
}
|
|
66663
|
+
exports.account_BusinessChatLinks_ = account_BusinessChatLinks_;
|
|
66664
|
+
class account_ResolvedBusinessChatLinks_ extends _account_ResolvedBusinessChatLinks_ {
|
|
66665
|
+
get [_1_tl_object_js_1.id]() {
|
|
66666
|
+
return 0x9A23AF21;
|
|
66667
|
+
}
|
|
66668
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66669
|
+
return "account.resolvedBusinessChatLinks";
|
|
66670
|
+
}
|
|
66671
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66672
|
+
return [
|
|
66673
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66674
|
+
["peer", _Peer_, "Peer"],
|
|
66675
|
+
["message", "string", "string"],
|
|
66676
|
+
["entities", [_MessageEntity_], "flags.0?Vector<MessageEntity>"],
|
|
66677
|
+
["chats", [_Chat_], "Vector<Chat>"],
|
|
66678
|
+
["users", [_User_], "Vector<User>"],
|
|
66679
|
+
];
|
|
66680
|
+
}
|
|
66681
|
+
get [_1_tl_object_js_1.params]() {
|
|
66682
|
+
return [
|
|
66683
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66684
|
+
[this.peer, _Peer_, "Peer"],
|
|
66685
|
+
[this.message, "string", "string"],
|
|
66686
|
+
[this.entities ?? null, [_MessageEntity_], "flags.0?Vector<MessageEntity>"],
|
|
66687
|
+
[this.chats, [_Chat_], "Vector<Chat>"],
|
|
66688
|
+
[this.users, [_User_], "Vector<User>"],
|
|
66689
|
+
];
|
|
66690
|
+
}
|
|
66691
|
+
constructor(params) {
|
|
66692
|
+
super();
|
|
66693
|
+
Object.defineProperty(this, "peer", {
|
|
66694
|
+
enumerable: true,
|
|
66695
|
+
configurable: true,
|
|
66696
|
+
writable: true,
|
|
66697
|
+
value: void 0
|
|
66698
|
+
});
|
|
66699
|
+
Object.defineProperty(this, "message", {
|
|
66700
|
+
enumerable: true,
|
|
66701
|
+
configurable: true,
|
|
66702
|
+
writable: true,
|
|
66703
|
+
value: void 0
|
|
66704
|
+
});
|
|
66705
|
+
Object.defineProperty(this, "entities", {
|
|
66706
|
+
enumerable: true,
|
|
66707
|
+
configurable: true,
|
|
66708
|
+
writable: true,
|
|
66709
|
+
value: void 0
|
|
66710
|
+
});
|
|
66711
|
+
Object.defineProperty(this, "chats", {
|
|
66712
|
+
enumerable: true,
|
|
66713
|
+
configurable: true,
|
|
66714
|
+
writable: true,
|
|
66715
|
+
value: void 0
|
|
66716
|
+
});
|
|
66717
|
+
Object.defineProperty(this, "users", {
|
|
66718
|
+
enumerable: true,
|
|
66719
|
+
configurable: true,
|
|
66720
|
+
writable: true,
|
|
66721
|
+
value: void 0
|
|
66722
|
+
});
|
|
66723
|
+
this.peer = params.peer;
|
|
66724
|
+
this.message = params.message;
|
|
66725
|
+
this.entities = params.entities;
|
|
66726
|
+
this.chats = params.chats;
|
|
66727
|
+
this.users = params.users;
|
|
66728
|
+
}
|
|
66729
|
+
}
|
|
66730
|
+
exports.account_ResolvedBusinessChatLinks_ = account_ResolvedBusinessChatLinks_;
|
|
66731
|
+
class RequestedPeerUser_ extends _RequestedPeer_ {
|
|
66732
|
+
get [_1_tl_object_js_1.id]() {
|
|
66733
|
+
return 0xD62FF46A;
|
|
66734
|
+
}
|
|
66735
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66736
|
+
return "requestedPeerUser";
|
|
66737
|
+
}
|
|
66738
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66739
|
+
return [
|
|
66740
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66741
|
+
["user_id", "bigint", "long"],
|
|
66742
|
+
["first_name", "string", "flags.0?string"],
|
|
66743
|
+
["last_name", "string", "flags.0?string"],
|
|
66744
|
+
["username", "string", "flags.1?string"],
|
|
66745
|
+
["photo", _Photo_, "flags.2?Photo"],
|
|
66746
|
+
];
|
|
66747
|
+
}
|
|
66748
|
+
get [_1_tl_object_js_1.params]() {
|
|
66749
|
+
return [
|
|
66750
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66751
|
+
[this.user_id, "bigint", "long"],
|
|
66752
|
+
[this.first_name ?? null, "string", "flags.0?string"],
|
|
66753
|
+
[this.last_name ?? null, "string", "flags.0?string"],
|
|
66754
|
+
[this.username ?? null, "string", "flags.1?string"],
|
|
66755
|
+
[this.photo ?? null, _Photo_, "flags.2?Photo"],
|
|
66756
|
+
];
|
|
66757
|
+
}
|
|
66758
|
+
constructor(params) {
|
|
66759
|
+
super();
|
|
66760
|
+
Object.defineProperty(this, "user_id", {
|
|
66761
|
+
enumerable: true,
|
|
66762
|
+
configurable: true,
|
|
66763
|
+
writable: true,
|
|
66764
|
+
value: void 0
|
|
66765
|
+
});
|
|
66766
|
+
Object.defineProperty(this, "first_name", {
|
|
66767
|
+
enumerable: true,
|
|
66768
|
+
configurable: true,
|
|
66769
|
+
writable: true,
|
|
66770
|
+
value: void 0
|
|
66771
|
+
});
|
|
66772
|
+
Object.defineProperty(this, "last_name", {
|
|
66773
|
+
enumerable: true,
|
|
66774
|
+
configurable: true,
|
|
66775
|
+
writable: true,
|
|
66776
|
+
value: void 0
|
|
66777
|
+
});
|
|
66778
|
+
Object.defineProperty(this, "username", {
|
|
66779
|
+
enumerable: true,
|
|
66780
|
+
configurable: true,
|
|
66781
|
+
writable: true,
|
|
66782
|
+
value: void 0
|
|
66783
|
+
});
|
|
66784
|
+
Object.defineProperty(this, "photo", {
|
|
66785
|
+
enumerable: true,
|
|
66786
|
+
configurable: true,
|
|
66787
|
+
writable: true,
|
|
66788
|
+
value: void 0
|
|
66789
|
+
});
|
|
66790
|
+
this.user_id = params.user_id;
|
|
66791
|
+
this.first_name = params.first_name;
|
|
66792
|
+
this.last_name = params.last_name;
|
|
66793
|
+
this.username = params.username;
|
|
66794
|
+
this.photo = params.photo;
|
|
66795
|
+
}
|
|
66796
|
+
}
|
|
66797
|
+
exports.RequestedPeerUser_ = RequestedPeerUser_;
|
|
66798
|
+
class RequestedPeerChat_ extends _RequestedPeer_ {
|
|
66799
|
+
get [_1_tl_object_js_1.id]() {
|
|
66800
|
+
return 0x7307544F;
|
|
66801
|
+
}
|
|
66802
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66803
|
+
return "requestedPeerChat";
|
|
66804
|
+
}
|
|
66805
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66806
|
+
return [
|
|
66807
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66808
|
+
["chat_id", "bigint", "long"],
|
|
66809
|
+
["title", "string", "flags.0?string"],
|
|
66810
|
+
["photo", _Photo_, "flags.2?Photo"],
|
|
66811
|
+
];
|
|
66812
|
+
}
|
|
66813
|
+
get [_1_tl_object_js_1.params]() {
|
|
66814
|
+
return [
|
|
66815
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66816
|
+
[this.chat_id, "bigint", "long"],
|
|
66817
|
+
[this.title ?? null, "string", "flags.0?string"],
|
|
66818
|
+
[this.photo ?? null, _Photo_, "flags.2?Photo"],
|
|
66819
|
+
];
|
|
66820
|
+
}
|
|
66821
|
+
constructor(params) {
|
|
66822
|
+
super();
|
|
66823
|
+
Object.defineProperty(this, "chat_id", {
|
|
66824
|
+
enumerable: true,
|
|
66825
|
+
configurable: true,
|
|
66826
|
+
writable: true,
|
|
66827
|
+
value: void 0
|
|
66828
|
+
});
|
|
66829
|
+
Object.defineProperty(this, "title", {
|
|
66830
|
+
enumerable: true,
|
|
66831
|
+
configurable: true,
|
|
66832
|
+
writable: true,
|
|
66833
|
+
value: void 0
|
|
66834
|
+
});
|
|
66835
|
+
Object.defineProperty(this, "photo", {
|
|
66836
|
+
enumerable: true,
|
|
66837
|
+
configurable: true,
|
|
66838
|
+
writable: true,
|
|
66839
|
+
value: void 0
|
|
66840
|
+
});
|
|
66841
|
+
this.chat_id = params.chat_id;
|
|
66842
|
+
this.title = params.title;
|
|
66843
|
+
this.photo = params.photo;
|
|
66844
|
+
}
|
|
66845
|
+
}
|
|
66846
|
+
exports.RequestedPeerChat_ = RequestedPeerChat_;
|
|
66847
|
+
class RequestedPeerChannel_ extends _RequestedPeer_ {
|
|
66848
|
+
get [_1_tl_object_js_1.id]() {
|
|
66849
|
+
return 0x8BA403E4;
|
|
66850
|
+
}
|
|
66851
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66852
|
+
return "requestedPeerChannel";
|
|
66853
|
+
}
|
|
66854
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66855
|
+
return [
|
|
66856
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66857
|
+
["channel_id", "bigint", "long"],
|
|
66858
|
+
["title", "string", "flags.0?string"],
|
|
66859
|
+
["username", "string", "flags.1?string"],
|
|
66860
|
+
["photo", _Photo_, "flags.2?Photo"],
|
|
66861
|
+
];
|
|
66862
|
+
}
|
|
66863
|
+
get [_1_tl_object_js_1.params]() {
|
|
66864
|
+
return [
|
|
66865
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
66866
|
+
[this.channel_id, "bigint", "long"],
|
|
66867
|
+
[this.title ?? null, "string", "flags.0?string"],
|
|
66868
|
+
[this.username ?? null, "string", "flags.1?string"],
|
|
66869
|
+
[this.photo ?? null, _Photo_, "flags.2?Photo"],
|
|
66870
|
+
];
|
|
66871
|
+
}
|
|
66872
|
+
constructor(params) {
|
|
66873
|
+
super();
|
|
66874
|
+
Object.defineProperty(this, "channel_id", {
|
|
66875
|
+
enumerable: true,
|
|
66876
|
+
configurable: true,
|
|
66877
|
+
writable: true,
|
|
66878
|
+
value: void 0
|
|
66879
|
+
});
|
|
66880
|
+
Object.defineProperty(this, "title", {
|
|
66881
|
+
enumerable: true,
|
|
66882
|
+
configurable: true,
|
|
66883
|
+
writable: true,
|
|
66884
|
+
value: void 0
|
|
66885
|
+
});
|
|
66886
|
+
Object.defineProperty(this, "username", {
|
|
66887
|
+
enumerable: true,
|
|
66888
|
+
configurable: true,
|
|
66889
|
+
writable: true,
|
|
66890
|
+
value: void 0
|
|
66891
|
+
});
|
|
66892
|
+
Object.defineProperty(this, "photo", {
|
|
66893
|
+
enumerable: true,
|
|
66894
|
+
configurable: true,
|
|
66895
|
+
writable: true,
|
|
66896
|
+
value: void 0
|
|
66897
|
+
});
|
|
66898
|
+
this.channel_id = params.channel_id;
|
|
66899
|
+
this.title = params.title;
|
|
66900
|
+
this.username = params.username;
|
|
66901
|
+
this.photo = params.photo;
|
|
66902
|
+
}
|
|
66903
|
+
}
|
|
66904
|
+
exports.RequestedPeerChannel_ = RequestedPeerChannel_;
|
|
66905
|
+
class SponsoredMessageReportOption_ extends _SponsoredMessageReportOption_ {
|
|
66906
|
+
get [_1_tl_object_js_1.id]() {
|
|
66907
|
+
return 0x430D3150;
|
|
66908
|
+
}
|
|
66909
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66910
|
+
return "sponsoredMessageReportOption";
|
|
66911
|
+
}
|
|
66912
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66913
|
+
return [
|
|
66914
|
+
["text", "string", "string"],
|
|
66915
|
+
["option", Uint8Array, "bytes"],
|
|
66916
|
+
];
|
|
66917
|
+
}
|
|
66918
|
+
get [_1_tl_object_js_1.params]() {
|
|
66919
|
+
return [
|
|
66920
|
+
[this.text, "string", "string"],
|
|
66921
|
+
[this.option, Uint8Array, "bytes"],
|
|
66922
|
+
];
|
|
66923
|
+
}
|
|
66924
|
+
constructor(params) {
|
|
66925
|
+
super();
|
|
66926
|
+
Object.defineProperty(this, "text", {
|
|
66927
|
+
enumerable: true,
|
|
66928
|
+
configurable: true,
|
|
66929
|
+
writable: true,
|
|
66930
|
+
value: void 0
|
|
66931
|
+
});
|
|
66932
|
+
Object.defineProperty(this, "option", {
|
|
66933
|
+
enumerable: true,
|
|
66934
|
+
configurable: true,
|
|
66935
|
+
writable: true,
|
|
66936
|
+
value: void 0
|
|
66937
|
+
});
|
|
66938
|
+
this.text = params.text;
|
|
66939
|
+
this.option = params.option;
|
|
66940
|
+
}
|
|
66941
|
+
}
|
|
66942
|
+
exports.SponsoredMessageReportOption_ = SponsoredMessageReportOption_;
|
|
66943
|
+
class channels_SponsoredMessageReportResultChooseOption_ extends _channels_SponsoredMessageReportResult_ {
|
|
66944
|
+
get [_1_tl_object_js_1.id]() {
|
|
66945
|
+
return 0x846F9E42;
|
|
66946
|
+
}
|
|
66947
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66948
|
+
return "channels.sponsoredMessageReportResultChooseOption";
|
|
66949
|
+
}
|
|
66950
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66951
|
+
return [
|
|
66952
|
+
["title", "string", "string"],
|
|
66953
|
+
["options", [_SponsoredMessageReportOption_], "Vector<SponsoredMessageReportOption>"],
|
|
66954
|
+
];
|
|
66955
|
+
}
|
|
66956
|
+
get [_1_tl_object_js_1.params]() {
|
|
66957
|
+
return [
|
|
66958
|
+
[this.title, "string", "string"],
|
|
66959
|
+
[this.options, [_SponsoredMessageReportOption_], "Vector<SponsoredMessageReportOption>"],
|
|
66960
|
+
];
|
|
66961
|
+
}
|
|
66962
|
+
constructor(params) {
|
|
66963
|
+
super();
|
|
66964
|
+
Object.defineProperty(this, "title", {
|
|
66965
|
+
enumerable: true,
|
|
66966
|
+
configurable: true,
|
|
66967
|
+
writable: true,
|
|
66968
|
+
value: void 0
|
|
66969
|
+
});
|
|
66970
|
+
Object.defineProperty(this, "options", {
|
|
66971
|
+
enumerable: true,
|
|
66972
|
+
configurable: true,
|
|
66973
|
+
writable: true,
|
|
66974
|
+
value: void 0
|
|
66975
|
+
});
|
|
66976
|
+
this.title = params.title;
|
|
66977
|
+
this.options = params.options;
|
|
66978
|
+
}
|
|
66979
|
+
}
|
|
66980
|
+
exports.channels_SponsoredMessageReportResultChooseOption_ = channels_SponsoredMessageReportResultChooseOption_;
|
|
66981
|
+
class channels_SponsoredMessageReportResultAdsHidden_ extends _channels_SponsoredMessageReportResult_ {
|
|
66982
|
+
get [_1_tl_object_js_1.id]() {
|
|
66983
|
+
return 0x3E3BCF2F;
|
|
66984
|
+
}
|
|
66985
|
+
static get [_1_tl_object_js_1.name]() {
|
|
66986
|
+
return "channels.sponsoredMessageReportResultAdsHidden";
|
|
66987
|
+
}
|
|
66988
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
66989
|
+
return [];
|
|
66990
|
+
}
|
|
66991
|
+
get [_1_tl_object_js_1.params]() {
|
|
66992
|
+
return [];
|
|
66993
|
+
}
|
|
66994
|
+
constructor() {
|
|
66995
|
+
super();
|
|
66996
|
+
}
|
|
66997
|
+
}
|
|
66998
|
+
exports.channels_SponsoredMessageReportResultAdsHidden_ = channels_SponsoredMessageReportResultAdsHidden_;
|
|
66999
|
+
class channels_SponsoredMessageReportResultReported_ extends _channels_SponsoredMessageReportResult_ {
|
|
67000
|
+
get [_1_tl_object_js_1.id]() {
|
|
67001
|
+
return 0xAD798849;
|
|
67002
|
+
}
|
|
67003
|
+
static get [_1_tl_object_js_1.name]() {
|
|
67004
|
+
return "channels.sponsoredMessageReportResultReported";
|
|
67005
|
+
}
|
|
67006
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
67007
|
+
return [];
|
|
67008
|
+
}
|
|
67009
|
+
get [_1_tl_object_js_1.params]() {
|
|
67010
|
+
return [];
|
|
67011
|
+
}
|
|
67012
|
+
constructor() {
|
|
67013
|
+
super();
|
|
67014
|
+
}
|
|
67015
|
+
}
|
|
67016
|
+
exports.channels_SponsoredMessageReportResultReported_ = channels_SponsoredMessageReportResultReported_;
|
|
67017
|
+
class stats_BroadcastRevenueStats_ extends _stats_BroadcastRevenueStats_ {
|
|
67018
|
+
get [_1_tl_object_js_1.id]() {
|
|
67019
|
+
return 0xD07B4BAD;
|
|
67020
|
+
}
|
|
67021
|
+
static get [_1_tl_object_js_1.name]() {
|
|
67022
|
+
return "stats.broadcastRevenueStats";
|
|
67023
|
+
}
|
|
67024
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
67025
|
+
return [
|
|
67026
|
+
["top_hours_graph", _StatsGraph_, "StatsGraph"],
|
|
67027
|
+
["revenue_graph", _StatsGraph_, "StatsGraph"],
|
|
67028
|
+
["current_balance", "bigint", "long"],
|
|
67029
|
+
["available_balance", "bigint", "long"],
|
|
67030
|
+
["overall_revenue", "bigint", "long"],
|
|
67031
|
+
["usd_rate", "number", "double"],
|
|
67032
|
+
];
|
|
67033
|
+
}
|
|
67034
|
+
get [_1_tl_object_js_1.params]() {
|
|
67035
|
+
return [
|
|
67036
|
+
[this.top_hours_graph, _StatsGraph_, "StatsGraph"],
|
|
67037
|
+
[this.revenue_graph, _StatsGraph_, "StatsGraph"],
|
|
67038
|
+
[this.current_balance, "bigint", "long"],
|
|
67039
|
+
[this.available_balance, "bigint", "long"],
|
|
67040
|
+
[this.overall_revenue, "bigint", "long"],
|
|
67041
|
+
[this.usd_rate, "number", "double"],
|
|
67042
|
+
];
|
|
67043
|
+
}
|
|
67044
|
+
constructor(params) {
|
|
67045
|
+
super();
|
|
67046
|
+
Object.defineProperty(this, "top_hours_graph", {
|
|
67047
|
+
enumerable: true,
|
|
67048
|
+
configurable: true,
|
|
67049
|
+
writable: true,
|
|
67050
|
+
value: void 0
|
|
67051
|
+
});
|
|
67052
|
+
Object.defineProperty(this, "revenue_graph", {
|
|
67053
|
+
enumerable: true,
|
|
67054
|
+
configurable: true,
|
|
67055
|
+
writable: true,
|
|
67056
|
+
value: void 0
|
|
67057
|
+
});
|
|
67058
|
+
Object.defineProperty(this, "current_balance", {
|
|
67059
|
+
enumerable: true,
|
|
67060
|
+
configurable: true,
|
|
67061
|
+
writable: true,
|
|
67062
|
+
value: void 0
|
|
67063
|
+
});
|
|
67064
|
+
Object.defineProperty(this, "available_balance", {
|
|
67065
|
+
enumerable: true,
|
|
67066
|
+
configurable: true,
|
|
67067
|
+
writable: true,
|
|
67068
|
+
value: void 0
|
|
67069
|
+
});
|
|
67070
|
+
Object.defineProperty(this, "overall_revenue", {
|
|
67071
|
+
enumerable: true,
|
|
67072
|
+
configurable: true,
|
|
67073
|
+
writable: true,
|
|
67074
|
+
value: void 0
|
|
67075
|
+
});
|
|
67076
|
+
Object.defineProperty(this, "usd_rate", {
|
|
67077
|
+
enumerable: true,
|
|
67078
|
+
configurable: true,
|
|
67079
|
+
writable: true,
|
|
67080
|
+
value: void 0
|
|
67081
|
+
});
|
|
67082
|
+
this.top_hours_graph = params.top_hours_graph;
|
|
67083
|
+
this.revenue_graph = params.revenue_graph;
|
|
67084
|
+
this.current_balance = params.current_balance;
|
|
67085
|
+
this.available_balance = params.available_balance;
|
|
67086
|
+
this.overall_revenue = params.overall_revenue;
|
|
67087
|
+
this.usd_rate = params.usd_rate;
|
|
67088
|
+
}
|
|
67089
|
+
}
|
|
67090
|
+
exports.stats_BroadcastRevenueStats_ = stats_BroadcastRevenueStats_;
|
|
67091
|
+
class stats_BroadcastRevenueWithdrawalUrl_ extends _stats_BroadcastRevenueWithdrawalUrl_ {
|
|
67092
|
+
get [_1_tl_object_js_1.id]() {
|
|
67093
|
+
return 0xEC659737;
|
|
67094
|
+
}
|
|
67095
|
+
static get [_1_tl_object_js_1.name]() {
|
|
67096
|
+
return "stats.broadcastRevenueWithdrawalUrl";
|
|
67097
|
+
}
|
|
67098
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
67099
|
+
return [
|
|
67100
|
+
["url", "string", "string"],
|
|
67101
|
+
];
|
|
67102
|
+
}
|
|
67103
|
+
get [_1_tl_object_js_1.params]() {
|
|
67104
|
+
return [
|
|
67105
|
+
[this.url, "string", "string"],
|
|
67106
|
+
];
|
|
67107
|
+
}
|
|
67108
|
+
constructor(params) {
|
|
67109
|
+
super();
|
|
67110
|
+
Object.defineProperty(this, "url", {
|
|
67111
|
+
enumerable: true,
|
|
67112
|
+
configurable: true,
|
|
67113
|
+
writable: true,
|
|
67114
|
+
value: void 0
|
|
67115
|
+
});
|
|
67116
|
+
this.url = params.url;
|
|
67117
|
+
}
|
|
67118
|
+
}
|
|
67119
|
+
exports.stats_BroadcastRevenueWithdrawalUrl_ = stats_BroadcastRevenueWithdrawalUrl_;
|
|
67120
|
+
class BroadcastRevenueTransactionProceeds_ extends _BroadcastRevenueTransaction_ {
|
|
67121
|
+
get [_1_tl_object_js_1.id]() {
|
|
67122
|
+
return 0x557E2CC4;
|
|
67123
|
+
}
|
|
67124
|
+
static get [_1_tl_object_js_1.name]() {
|
|
67125
|
+
return "broadcastRevenueTransactionProceeds";
|
|
67126
|
+
}
|
|
67127
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
67128
|
+
return [
|
|
67129
|
+
["amount", "bigint", "long"],
|
|
67130
|
+
["from_date", "number", "int"],
|
|
67131
|
+
["to_date", "number", "int"],
|
|
67132
|
+
];
|
|
67133
|
+
}
|
|
67134
|
+
get [_1_tl_object_js_1.params]() {
|
|
67135
|
+
return [
|
|
67136
|
+
[this.amount, "bigint", "long"],
|
|
67137
|
+
[this.from_date, "number", "int"],
|
|
67138
|
+
[this.to_date, "number", "int"],
|
|
67139
|
+
];
|
|
67140
|
+
}
|
|
67141
|
+
constructor(params) {
|
|
67142
|
+
super();
|
|
67143
|
+
Object.defineProperty(this, "amount", {
|
|
67144
|
+
enumerable: true,
|
|
67145
|
+
configurable: true,
|
|
67146
|
+
writable: true,
|
|
67147
|
+
value: void 0
|
|
67148
|
+
});
|
|
67149
|
+
Object.defineProperty(this, "from_date", {
|
|
67150
|
+
enumerable: true,
|
|
67151
|
+
configurable: true,
|
|
67152
|
+
writable: true,
|
|
67153
|
+
value: void 0
|
|
67154
|
+
});
|
|
67155
|
+
Object.defineProperty(this, "to_date", {
|
|
67156
|
+
enumerable: true,
|
|
67157
|
+
configurable: true,
|
|
67158
|
+
writable: true,
|
|
67159
|
+
value: void 0
|
|
67160
|
+
});
|
|
67161
|
+
this.amount = params.amount;
|
|
67162
|
+
this.from_date = params.from_date;
|
|
67163
|
+
this.to_date = params.to_date;
|
|
67164
|
+
}
|
|
67165
|
+
}
|
|
67166
|
+
exports.BroadcastRevenueTransactionProceeds_ = BroadcastRevenueTransactionProceeds_;
|
|
67167
|
+
class BroadcastRevenueTransactionWithdrawal_ extends _BroadcastRevenueTransaction_ {
|
|
67168
|
+
get [_1_tl_object_js_1.id]() {
|
|
67169
|
+
return 0x5A590978;
|
|
67170
|
+
}
|
|
67171
|
+
static get [_1_tl_object_js_1.name]() {
|
|
67172
|
+
return "broadcastRevenueTransactionWithdrawal";
|
|
67173
|
+
}
|
|
67174
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
67175
|
+
return [
|
|
67176
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
67177
|
+
["pending", "true", "flags.0?true"],
|
|
67178
|
+
["failed", "true", "flags.2?true"],
|
|
67179
|
+
["amount", "bigint", "long"],
|
|
67180
|
+
["date", "number", "int"],
|
|
67181
|
+
["provider", "string", "string"],
|
|
67182
|
+
["transaction_date", "number", "flags.1?int"],
|
|
67183
|
+
["transaction_url", "string", "flags.1?string"],
|
|
67184
|
+
];
|
|
67185
|
+
}
|
|
67186
|
+
get [_1_tl_object_js_1.params]() {
|
|
67187
|
+
return [
|
|
67188
|
+
["flags", _1_tl_object_js_1.flags, "#"],
|
|
67189
|
+
[this.pending ?? null, "true", "flags.0?true"],
|
|
67190
|
+
[this.failed ?? null, "true", "flags.2?true"],
|
|
67191
|
+
[this.amount, "bigint", "long"],
|
|
67192
|
+
[this.date, "number", "int"],
|
|
67193
|
+
[this.provider, "string", "string"],
|
|
67194
|
+
[this.transaction_date ?? null, "number", "flags.1?int"],
|
|
67195
|
+
[this.transaction_url ?? null, "string", "flags.1?string"],
|
|
67196
|
+
];
|
|
67197
|
+
}
|
|
67198
|
+
constructor(params) {
|
|
67199
|
+
super();
|
|
67200
|
+
Object.defineProperty(this, "pending", {
|
|
67201
|
+
enumerable: true,
|
|
67202
|
+
configurable: true,
|
|
67203
|
+
writable: true,
|
|
67204
|
+
value: void 0
|
|
67205
|
+
});
|
|
67206
|
+
Object.defineProperty(this, "failed", {
|
|
67207
|
+
enumerable: true,
|
|
67208
|
+
configurable: true,
|
|
67209
|
+
writable: true,
|
|
67210
|
+
value: void 0
|
|
67211
|
+
});
|
|
67212
|
+
Object.defineProperty(this, "amount", {
|
|
67213
|
+
enumerable: true,
|
|
67214
|
+
configurable: true,
|
|
67215
|
+
writable: true,
|
|
67216
|
+
value: void 0
|
|
67217
|
+
});
|
|
67218
|
+
Object.defineProperty(this, "date", {
|
|
67219
|
+
enumerable: true,
|
|
67220
|
+
configurable: true,
|
|
67221
|
+
writable: true,
|
|
67222
|
+
value: void 0
|
|
67223
|
+
});
|
|
67224
|
+
Object.defineProperty(this, "provider", {
|
|
67225
|
+
enumerable: true,
|
|
67226
|
+
configurable: true,
|
|
67227
|
+
writable: true,
|
|
67228
|
+
value: void 0
|
|
67229
|
+
});
|
|
67230
|
+
Object.defineProperty(this, "transaction_date", {
|
|
67231
|
+
enumerable: true,
|
|
67232
|
+
configurable: true,
|
|
67233
|
+
writable: true,
|
|
67234
|
+
value: void 0
|
|
67235
|
+
});
|
|
67236
|
+
Object.defineProperty(this, "transaction_url", {
|
|
67237
|
+
enumerable: true,
|
|
67238
|
+
configurable: true,
|
|
67239
|
+
writable: true,
|
|
67240
|
+
value: void 0
|
|
67241
|
+
});
|
|
67242
|
+
this.pending = params.pending;
|
|
67243
|
+
this.failed = params.failed;
|
|
67244
|
+
this.amount = params.amount;
|
|
67245
|
+
this.date = params.date;
|
|
67246
|
+
this.provider = params.provider;
|
|
67247
|
+
this.transaction_date = params.transaction_date;
|
|
67248
|
+
this.transaction_url = params.transaction_url;
|
|
67249
|
+
}
|
|
67250
|
+
}
|
|
67251
|
+
exports.BroadcastRevenueTransactionWithdrawal_ = BroadcastRevenueTransactionWithdrawal_;
|
|
67252
|
+
class BroadcastRevenueTransactionRefund_ extends _BroadcastRevenueTransaction_ {
|
|
67253
|
+
get [_1_tl_object_js_1.id]() {
|
|
67254
|
+
return 0x42D30D2E;
|
|
67255
|
+
}
|
|
67256
|
+
static get [_1_tl_object_js_1.name]() {
|
|
67257
|
+
return "broadcastRevenueTransactionRefund";
|
|
67258
|
+
}
|
|
67259
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
67260
|
+
return [
|
|
67261
|
+
["amount", "bigint", "long"],
|
|
67262
|
+
["date", "number", "int"],
|
|
67263
|
+
["provider", "string", "string"],
|
|
67264
|
+
];
|
|
67265
|
+
}
|
|
67266
|
+
get [_1_tl_object_js_1.params]() {
|
|
67267
|
+
return [
|
|
67268
|
+
[this.amount, "bigint", "long"],
|
|
67269
|
+
[this.date, "number", "int"],
|
|
67270
|
+
[this.provider, "string", "string"],
|
|
67271
|
+
];
|
|
67272
|
+
}
|
|
67273
|
+
constructor(params) {
|
|
67274
|
+
super();
|
|
67275
|
+
Object.defineProperty(this, "amount", {
|
|
67276
|
+
enumerable: true,
|
|
67277
|
+
configurable: true,
|
|
67278
|
+
writable: true,
|
|
67279
|
+
value: void 0
|
|
67280
|
+
});
|
|
67281
|
+
Object.defineProperty(this, "date", {
|
|
67282
|
+
enumerable: true,
|
|
67283
|
+
configurable: true,
|
|
67284
|
+
writable: true,
|
|
67285
|
+
value: void 0
|
|
67286
|
+
});
|
|
67287
|
+
Object.defineProperty(this, "provider", {
|
|
67288
|
+
enumerable: true,
|
|
67289
|
+
configurable: true,
|
|
67290
|
+
writable: true,
|
|
67291
|
+
value: void 0
|
|
67292
|
+
});
|
|
67293
|
+
this.amount = params.amount;
|
|
67294
|
+
this.date = params.date;
|
|
67295
|
+
this.provider = params.provider;
|
|
67296
|
+
}
|
|
67297
|
+
}
|
|
67298
|
+
exports.BroadcastRevenueTransactionRefund_ = BroadcastRevenueTransactionRefund_;
|
|
67299
|
+
class stats_BroadcastRevenueTransactions_ extends _stats_BroadcastRevenueTransactions_ {
|
|
67300
|
+
get [_1_tl_object_js_1.id]() {
|
|
67301
|
+
return 0x87158466;
|
|
67302
|
+
}
|
|
67303
|
+
static get [_1_tl_object_js_1.name]() {
|
|
67304
|
+
return "stats.broadcastRevenueTransactions";
|
|
67305
|
+
}
|
|
67306
|
+
static get [_1_tl_object_js_1.paramDesc]() {
|
|
67307
|
+
return [
|
|
67308
|
+
["count", "number", "int"],
|
|
67309
|
+
["transactions", [_BroadcastRevenueTransaction_], "Vector<BroadcastRevenueTransaction>"],
|
|
67310
|
+
];
|
|
67311
|
+
}
|
|
67312
|
+
get [_1_tl_object_js_1.params]() {
|
|
67313
|
+
return [
|
|
67314
|
+
[this.count, "number", "int"],
|
|
67315
|
+
[this.transactions, [_BroadcastRevenueTransaction_], "Vector<BroadcastRevenueTransaction>"],
|
|
67316
|
+
];
|
|
67317
|
+
}
|
|
67318
|
+
constructor(params) {
|
|
67319
|
+
super();
|
|
67320
|
+
Object.defineProperty(this, "count", {
|
|
67321
|
+
enumerable: true,
|
|
67322
|
+
configurable: true,
|
|
67323
|
+
writable: true,
|
|
67324
|
+
value: void 0
|
|
67325
|
+
});
|
|
67326
|
+
Object.defineProperty(this, "transactions", {
|
|
67327
|
+
enumerable: true,
|
|
67328
|
+
configurable: true,
|
|
67329
|
+
writable: true,
|
|
67330
|
+
value: void 0
|
|
67331
|
+
});
|
|
67332
|
+
this.count = params.count;
|
|
67333
|
+
this.transactions = params.transactions;
|
|
67334
|
+
}
|
|
67335
|
+
}
|
|
67336
|
+
exports.stats_BroadcastRevenueTransactions_ = stats_BroadcastRevenueTransactions_;
|
|
67337
|
+
exports.types = {
|
|
67338
|
+
Type: Type_,
|
|
67339
|
+
TypeX: TypeX_,
|
|
67340
|
+
_ResPQ: _ResPQ_,
|
|
67341
|
+
_P_Q_inner_data: _P_Q_inner_data_,
|
|
67342
|
+
_Server_DH_Params: _Server_DH_Params_,
|
|
67343
|
+
_Server_DH_inner_data: _Server_DH_inner_data_,
|
|
67344
|
+
_Client_DH_Inner_Data: _Client_DH_Inner_Data_,
|
|
67345
|
+
_Set_client_DH_params_answer: _Set_client_DH_params_answer_,
|
|
67346
|
+
_BindAuthKeyInner: _BindAuthKeyInner_,
|
|
67347
|
+
_RpcError: _RpcError_,
|
|
67348
|
+
_RpcDropAnswer: _RpcDropAnswer_,
|
|
67349
|
+
_FutureSalt: _FutureSalt_,
|
|
67350
|
+
_FutureSalts: _FutureSalts_,
|
|
67351
|
+
_Pong: _Pong_,
|
|
67352
|
+
_DestroySessionRes: _DestroySessionRes_,
|
|
67353
|
+
_NewSession: _NewSession_,
|
|
67354
|
+
_Object: _Object_,
|
|
67355
|
+
_MsgsAck: _MsgsAck_,
|
|
67356
|
+
_BadMsgNotification: _BadMsgNotification_,
|
|
67357
|
+
_MsgResendReq: _MsgResendReq_,
|
|
67358
|
+
_MsgsStateReq: _MsgsStateReq_,
|
|
67359
|
+
_MsgsStateInfo: _MsgsStateInfo_,
|
|
67360
|
+
_MsgsAllInfo: _MsgsAllInfo_,
|
|
67361
|
+
_MsgDetailedInfo: _MsgDetailedInfo_,
|
|
67362
|
+
_DestroyAuthKeyRes: _DestroyAuthKeyRes_,
|
|
67363
|
+
_HttpWait: _HttpWait_,
|
|
67364
|
+
_True: _True_,
|
|
67365
|
+
_Error: _Error_,
|
|
67366
|
+
_IpPort: _IpPort_,
|
|
67367
|
+
_AccessPointRule: _AccessPointRule_,
|
|
67368
|
+
_help_ConfigSimple: _help_ConfigSimple_,
|
|
67369
|
+
_InputFileLocation: _InputFileLocation_,
|
|
67370
|
+
_InputPeer: _InputPeer_,
|
|
67371
|
+
_InputUser: _InputUser_,
|
|
67372
|
+
_InputContact: _InputContact_,
|
|
67373
|
+
_InputFile: _InputFile_,
|
|
67374
|
+
_InputMedia: _InputMedia_,
|
|
67375
|
+
_InputChatPhoto: _InputChatPhoto_,
|
|
67376
|
+
_InputGeoPoint: _InputGeoPoint_,
|
|
67377
|
+
_InputPhoto: _InputPhoto_,
|
|
67378
|
+
_Peer: _Peer_,
|
|
67379
|
+
_storage_FileType: _storage_FileType_,
|
|
67380
|
+
_User: _User_,
|
|
67381
|
+
_UserProfilePhoto: _UserProfilePhoto_,
|
|
67382
|
+
_UserStatus: _UserStatus_,
|
|
67383
|
+
_Chat: _Chat_,
|
|
67384
|
+
_ChatFull: _ChatFull_,
|
|
67385
|
+
_ChatParticipant: _ChatParticipant_,
|
|
67386
|
+
_ChatParticipants: _ChatParticipants_,
|
|
67387
|
+
_ChatPhoto: _ChatPhoto_,
|
|
67388
|
+
_Message: _Message_,
|
|
67389
|
+
_MessageMedia: _MessageMedia_,
|
|
67390
|
+
_MessageAction: _MessageAction_,
|
|
67391
|
+
_Dialog: _Dialog_,
|
|
67392
|
+
_Photo: _Photo_,
|
|
67393
|
+
_PhotoSize: _PhotoSize_,
|
|
67394
|
+
_GeoPoint: _GeoPoint_,
|
|
67395
|
+
_auth_SentCode: _auth_SentCode_,
|
|
67396
|
+
_auth_Authorization: _auth_Authorization_,
|
|
67397
|
+
_auth_ExportedAuthorization: _auth_ExportedAuthorization_,
|
|
67398
|
+
_InputNotifyPeer: _InputNotifyPeer_,
|
|
67399
|
+
_InputPeerNotifySettings: _InputPeerNotifySettings_,
|
|
67400
|
+
_PeerNotifySettings: _PeerNotifySettings_,
|
|
67401
|
+
_PeerSettings: _PeerSettings_,
|
|
67402
|
+
_WallPaper: _WallPaper_,
|
|
67403
|
+
_ReportReason: _ReportReason_,
|
|
67404
|
+
_UserFull: _UserFull_,
|
|
67405
|
+
_Contact: _Contact_,
|
|
67406
|
+
_ImportedContact: _ImportedContact_,
|
|
67407
|
+
_ContactStatus: _ContactStatus_,
|
|
67408
|
+
_contacts_Contacts: _contacts_Contacts_,
|
|
67409
|
+
_contacts_ImportedContacts: _contacts_ImportedContacts_,
|
|
67410
|
+
_contacts_Blocked: _contacts_Blocked_,
|
|
67411
|
+
_messages_Dialogs: _messages_Dialogs_,
|
|
67412
|
+
_messages_Messages: _messages_Messages_,
|
|
67413
|
+
_messages_Chats: _messages_Chats_,
|
|
67414
|
+
_messages_ChatFull: _messages_ChatFull_,
|
|
67415
|
+
_messages_AffectedHistory: _messages_AffectedHistory_,
|
|
67416
|
+
_MessagesFilter: _MessagesFilter_,
|
|
67417
|
+
_Update: _Update_,
|
|
67418
|
+
_updates_State: _updates_State_,
|
|
67419
|
+
_updates_Difference: _updates_Difference_,
|
|
67420
|
+
_Updates: _Updates_,
|
|
67421
|
+
_photos_Photos: _photos_Photos_,
|
|
67422
|
+
_photos_Photo: _photos_Photo_,
|
|
67423
|
+
_upload_File: _upload_File_,
|
|
67424
|
+
_DcOption: _DcOption_,
|
|
67425
|
+
_Config: _Config_,
|
|
67426
|
+
_NearestDc: _NearestDc_,
|
|
67427
|
+
_help_AppUpdate: _help_AppUpdate_,
|
|
67428
|
+
_help_InviteText: _help_InviteText_,
|
|
67429
|
+
_EncryptedChat: _EncryptedChat_,
|
|
67430
|
+
_InputEncryptedChat: _InputEncryptedChat_,
|
|
67431
|
+
_EncryptedFile: _EncryptedFile_,
|
|
67432
|
+
_InputEncryptedFile: _InputEncryptedFile_,
|
|
67433
|
+
_EncryptedMessage: _EncryptedMessage_,
|
|
67434
|
+
_messages_DhConfig: _messages_DhConfig_,
|
|
67435
|
+
_messages_SentEncryptedMessage: _messages_SentEncryptedMessage_,
|
|
67436
|
+
_InputDocument: _InputDocument_,
|
|
67437
|
+
_Document: _Document_,
|
|
67438
|
+
_help_Support: _help_Support_,
|
|
67439
|
+
_NotifyPeer: _NotifyPeer_,
|
|
67440
|
+
_SendMessageAction: _SendMessageAction_,
|
|
67441
|
+
_contacts_Found: _contacts_Found_,
|
|
67442
|
+
_InputPrivacyKey: _InputPrivacyKey_,
|
|
67443
|
+
_PrivacyKey: _PrivacyKey_,
|
|
67444
|
+
_InputPrivacyRule: _InputPrivacyRule_,
|
|
67445
|
+
_PrivacyRule: _PrivacyRule_,
|
|
67446
|
+
_account_PrivacyRules: _account_PrivacyRules_,
|
|
67447
|
+
_AccountDaysTTL: _AccountDaysTTL_,
|
|
67448
|
+
_DocumentAttribute: _DocumentAttribute_,
|
|
67449
|
+
_messages_Stickers: _messages_Stickers_,
|
|
67450
|
+
_StickerPack: _StickerPack_,
|
|
67451
|
+
_messages_AllStickers: _messages_AllStickers_,
|
|
67452
|
+
_messages_AffectedMessages: _messages_AffectedMessages_,
|
|
67453
|
+
_WebPage: _WebPage_,
|
|
67454
|
+
_Authorization: _Authorization_,
|
|
67455
|
+
_account_Authorizations: _account_Authorizations_,
|
|
67456
|
+
_account_Password: _account_Password_,
|
|
67457
|
+
_account_PasswordSettings: _account_PasswordSettings_,
|
|
67458
|
+
_account_PasswordInputSettings: _account_PasswordInputSettings_,
|
|
67459
|
+
_auth_PasswordRecovery: _auth_PasswordRecovery_,
|
|
67460
|
+
_ReceivedNotifyMessage: _ReceivedNotifyMessage_,
|
|
67461
|
+
_ExportedChatInvite: _ExportedChatInvite_,
|
|
67462
|
+
_ChatInvite: _ChatInvite_,
|
|
67463
|
+
_InputStickerSet: _InputStickerSet_,
|
|
67464
|
+
_StickerSet: _StickerSet_,
|
|
67465
|
+
_messages_StickerSet: _messages_StickerSet_,
|
|
67466
|
+
_BotCommand: _BotCommand_,
|
|
67467
|
+
_BotInfo: _BotInfo_,
|
|
67468
|
+
_KeyboardButton: _KeyboardButton_,
|
|
67469
|
+
_KeyboardButtonRow: _KeyboardButtonRow_,
|
|
67470
|
+
_ReplyMarkup: _ReplyMarkup_,
|
|
67471
|
+
_MessageEntity: _MessageEntity_,
|
|
67472
|
+
_InputChannel: _InputChannel_,
|
|
67473
|
+
_contacts_ResolvedPeer: _contacts_ResolvedPeer_,
|
|
67474
|
+
_MessageRange: _MessageRange_,
|
|
67475
|
+
_updates_ChannelDifference: _updates_ChannelDifference_,
|
|
67476
|
+
_ChannelMessagesFilter: _ChannelMessagesFilter_,
|
|
67477
|
+
_ChannelParticipant: _ChannelParticipant_,
|
|
67478
|
+
_ChannelParticipantsFilter: _ChannelParticipantsFilter_,
|
|
67479
|
+
_channels_ChannelParticipants: _channels_ChannelParticipants_,
|
|
67480
|
+
_channels_ChannelParticipant: _channels_ChannelParticipant_,
|
|
67481
|
+
_help_TermsOfService: _help_TermsOfService_,
|
|
67482
|
+
_messages_SavedGifs: _messages_SavedGifs_,
|
|
67483
|
+
_InputBotInlineMessage: _InputBotInlineMessage_,
|
|
67484
|
+
_InputBotInlineResult: _InputBotInlineResult_,
|
|
67485
|
+
_BotInlineMessage: _BotInlineMessage_,
|
|
67486
|
+
_BotInlineResult: _BotInlineResult_,
|
|
67487
|
+
_messages_BotResults: _messages_BotResults_,
|
|
67488
|
+
_ExportedMessageLink: _ExportedMessageLink_,
|
|
67489
|
+
_MessageFwdHeader: _MessageFwdHeader_,
|
|
67490
|
+
_auth_CodeType: _auth_CodeType_,
|
|
67491
|
+
_auth_SentCodeType: _auth_SentCodeType_,
|
|
67492
|
+
_messages_BotCallbackAnswer: _messages_BotCallbackAnswer_,
|
|
67493
|
+
_messages_MessageEditData: _messages_MessageEditData_,
|
|
67494
|
+
_InputBotInlineMessageID: _InputBotInlineMessageID_,
|
|
67495
|
+
_InlineBotSwitchPM: _InlineBotSwitchPM_,
|
|
67496
|
+
_messages_PeerDialogs: _messages_PeerDialogs_,
|
|
67497
|
+
_TopPeer: _TopPeer_,
|
|
67498
|
+
_TopPeerCategory: _TopPeerCategory_,
|
|
67499
|
+
_TopPeerCategoryPeers: _TopPeerCategoryPeers_,
|
|
67500
|
+
_contacts_TopPeers: _contacts_TopPeers_,
|
|
67501
|
+
_DraftMessage: _DraftMessage_,
|
|
67502
|
+
_messages_FeaturedStickers: _messages_FeaturedStickers_,
|
|
67503
|
+
_messages_RecentStickers: _messages_RecentStickers_,
|
|
67504
|
+
_messages_ArchivedStickers: _messages_ArchivedStickers_,
|
|
67505
|
+
_messages_StickerSetInstallResult: _messages_StickerSetInstallResult_,
|
|
67506
|
+
_StickerSetCovered: _StickerSetCovered_,
|
|
67507
|
+
_MaskCoords: _MaskCoords_,
|
|
67508
|
+
_InputStickeredMedia: _InputStickeredMedia_,
|
|
67509
|
+
_Game: _Game_,
|
|
67510
|
+
_InputGame: _InputGame_,
|
|
67511
|
+
_HighScore: _HighScore_,
|
|
67512
|
+
_messages_HighScores: _messages_HighScores_,
|
|
67513
|
+
_RichText: _RichText_,
|
|
67514
|
+
_PageBlock: _PageBlock_,
|
|
67515
|
+
_PhoneCallDiscardReason: _PhoneCallDiscardReason_,
|
|
67516
|
+
_DataJSON: _DataJSON_,
|
|
67517
|
+
_LabeledPrice: _LabeledPrice_,
|
|
67518
|
+
_Invoice: _Invoice_,
|
|
67519
|
+
_PaymentCharge: _PaymentCharge_,
|
|
67520
|
+
_PostAddress: _PostAddress_,
|
|
67521
|
+
_PaymentRequestedInfo: _PaymentRequestedInfo_,
|
|
67522
|
+
_PaymentSavedCredentials: _PaymentSavedCredentials_,
|
|
67523
|
+
_WebDocument: _WebDocument_,
|
|
67524
|
+
_InputWebDocument: _InputWebDocument_,
|
|
67525
|
+
_InputWebFileLocation: _InputWebFileLocation_,
|
|
67526
|
+
_upload_WebFile: _upload_WebFile_,
|
|
67527
|
+
_payments_PaymentForm: _payments_PaymentForm_,
|
|
67528
|
+
_payments_ValidatedRequestedInfo: _payments_ValidatedRequestedInfo_,
|
|
67529
|
+
_payments_PaymentResult: _payments_PaymentResult_,
|
|
67530
|
+
_payments_PaymentReceipt: _payments_PaymentReceipt_,
|
|
67531
|
+
_payments_SavedInfo: _payments_SavedInfo_,
|
|
67532
|
+
_InputPaymentCredentials: _InputPaymentCredentials_,
|
|
67533
|
+
_account_TmpPassword: _account_TmpPassword_,
|
|
67534
|
+
_ShippingOption: _ShippingOption_,
|
|
67535
|
+
_InputStickerSetItem: _InputStickerSetItem_,
|
|
67536
|
+
_InputPhoneCall: _InputPhoneCall_,
|
|
67537
|
+
_PhoneCall: _PhoneCall_,
|
|
67538
|
+
_PhoneConnection: _PhoneConnection_,
|
|
67539
|
+
_PhoneCallProtocol: _PhoneCallProtocol_,
|
|
67540
|
+
_phone_PhoneCall: _phone_PhoneCall_,
|
|
67541
|
+
_upload_CdnFile: _upload_CdnFile_,
|
|
67542
|
+
_CdnPublicKey: _CdnPublicKey_,
|
|
67543
|
+
_CdnConfig: _CdnConfig_,
|
|
67544
|
+
_LangPackString: _LangPackString_,
|
|
67545
|
+
_LangPackDifference: _LangPackDifference_,
|
|
67546
|
+
_LangPackLanguage: _LangPackLanguage_,
|
|
67547
|
+
_ChannelAdminLogEventAction: _ChannelAdminLogEventAction_,
|
|
67548
|
+
_ChannelAdminLogEvent: _ChannelAdminLogEvent_,
|
|
67549
|
+
_channels_AdminLogResults: _channels_AdminLogResults_,
|
|
67550
|
+
_ChannelAdminLogEventsFilter: _ChannelAdminLogEventsFilter_,
|
|
67551
|
+
_PopularContact: _PopularContact_,
|
|
67552
|
+
_messages_FavedStickers: _messages_FavedStickers_,
|
|
67553
|
+
_RecentMeUrl: _RecentMeUrl_,
|
|
67554
|
+
_help_RecentMeUrls: _help_RecentMeUrls_,
|
|
67555
|
+
_InputSingleMedia: _InputSingleMedia_,
|
|
67556
|
+
_WebAuthorization: _WebAuthorization_,
|
|
67557
|
+
_account_WebAuthorizations: _account_WebAuthorizations_,
|
|
67558
|
+
_InputMessage: _InputMessage_,
|
|
67559
|
+
_InputDialogPeer: _InputDialogPeer_,
|
|
67560
|
+
_DialogPeer: _DialogPeer_,
|
|
67561
|
+
_messages_FoundStickerSets: _messages_FoundStickerSets_,
|
|
67562
|
+
_FileHash: _FileHash_,
|
|
67563
|
+
_InputClientProxy: _InputClientProxy_,
|
|
67564
|
+
_help_TermsOfServiceUpdate: _help_TermsOfServiceUpdate_,
|
|
67565
|
+
_InputSecureFile: _InputSecureFile_,
|
|
67566
|
+
_SecureFile: _SecureFile_,
|
|
67567
|
+
_SecureData: _SecureData_,
|
|
67568
|
+
_SecurePlainData: _SecurePlainData_,
|
|
67569
|
+
_SecureValueType: _SecureValueType_,
|
|
67570
|
+
_SecureValue: _SecureValue_,
|
|
67571
|
+
_InputSecureValue: _InputSecureValue_,
|
|
67572
|
+
_SecureValueHash: _SecureValueHash_,
|
|
67573
|
+
_SecureValueError: _SecureValueError_,
|
|
67574
|
+
_SecureCredentialsEncrypted: _SecureCredentialsEncrypted_,
|
|
67575
|
+
_account_AuthorizationForm: _account_AuthorizationForm_,
|
|
67576
|
+
_account_SentEmailCode: _account_SentEmailCode_,
|
|
67577
|
+
_help_DeepLinkInfo: _help_DeepLinkInfo_,
|
|
67578
|
+
_SavedContact: _SavedContact_,
|
|
67579
|
+
_account_Takeout: _account_Takeout_,
|
|
67580
|
+
_PasswordKdfAlgo: _PasswordKdfAlgo_,
|
|
67581
|
+
_SecurePasswordKdfAlgo: _SecurePasswordKdfAlgo_,
|
|
67582
|
+
_SecureSecretSettings: _SecureSecretSettings_,
|
|
67583
|
+
_InputCheckPasswordSRP: _InputCheckPasswordSRP_,
|
|
67584
|
+
_SecureRequiredType: _SecureRequiredType_,
|
|
67585
|
+
_help_PassportConfig: _help_PassportConfig_,
|
|
67586
|
+
_InputAppEvent: _InputAppEvent_,
|
|
67587
|
+
_JSONObjectValue: _JSONObjectValue_,
|
|
67588
|
+
_JSONValue: _JSONValue_,
|
|
67589
|
+
_PageTableCell: _PageTableCell_,
|
|
67590
|
+
_PageTableRow: _PageTableRow_,
|
|
67591
|
+
_PageCaption: _PageCaption_,
|
|
67592
|
+
_PageListItem: _PageListItem_,
|
|
67593
|
+
_PageListOrderedItem: _PageListOrderedItem_,
|
|
67594
|
+
_PageRelatedArticle: _PageRelatedArticle_,
|
|
67595
|
+
_Page: _Page_,
|
|
67596
|
+
_help_SupportName: _help_SupportName_,
|
|
67597
|
+
_help_UserInfo: _help_UserInfo_,
|
|
67598
|
+
_PollAnswer: _PollAnswer_,
|
|
67599
|
+
_Poll: _Poll_,
|
|
67600
|
+
_PollAnswerVoters: _PollAnswerVoters_,
|
|
67601
|
+
_PollResults: _PollResults_,
|
|
67602
|
+
_ChatOnlines: _ChatOnlines_,
|
|
67603
|
+
_StatsURL: _StatsURL_,
|
|
67604
|
+
_ChatAdminRights: _ChatAdminRights_,
|
|
67605
|
+
_ChatBannedRights: _ChatBannedRights_,
|
|
67606
|
+
_InputWallPaper: _InputWallPaper_,
|
|
67607
|
+
_account_WallPapers: _account_WallPapers_,
|
|
67608
|
+
_CodeSettings: _CodeSettings_,
|
|
67609
|
+
_WallPaperSettings: _WallPaperSettings_,
|
|
67610
|
+
_AutoDownloadSettings: _AutoDownloadSettings_,
|
|
67611
|
+
_account_AutoDownloadSettings: _account_AutoDownloadSettings_,
|
|
67612
|
+
_EmojiKeyword: _EmojiKeyword_,
|
|
67613
|
+
_EmojiKeywordsDifference: _EmojiKeywordsDifference_,
|
|
67614
|
+
_EmojiURL: _EmojiURL_,
|
|
67615
|
+
_EmojiLanguage: _EmojiLanguage_,
|
|
67616
|
+
_Folder: _Folder_,
|
|
67617
|
+
_InputFolderPeer: _InputFolderPeer_,
|
|
67618
|
+
_FolderPeer: _FolderPeer_,
|
|
67619
|
+
_messages_SearchCounter: _messages_SearchCounter_,
|
|
67620
|
+
_UrlAuthResult: _UrlAuthResult_,
|
|
67621
|
+
_ChannelLocation: _ChannelLocation_,
|
|
67622
|
+
_PeerLocated: _PeerLocated_,
|
|
67623
|
+
_RestrictionReason: _RestrictionReason_,
|
|
67624
|
+
_InputTheme: _InputTheme_,
|
|
67625
|
+
_Theme: _Theme_,
|
|
67626
|
+
_account_Themes: _account_Themes_,
|
|
67627
|
+
_auth_LoginToken: _auth_LoginToken_,
|
|
67628
|
+
_account_ContentSettings: _account_ContentSettings_,
|
|
67629
|
+
_messages_InactiveChats: _messages_InactiveChats_,
|
|
67630
|
+
_BaseTheme: _BaseTheme_,
|
|
67631
|
+
_InputThemeSettings: _InputThemeSettings_,
|
|
67632
|
+
_ThemeSettings: _ThemeSettings_,
|
|
67633
|
+
_WebPageAttribute: _WebPageAttribute_,
|
|
67634
|
+
_messages_VotesList: _messages_VotesList_,
|
|
67635
|
+
_BankCardOpenUrl: _BankCardOpenUrl_,
|
|
67636
|
+
_payments_BankCardData: _payments_BankCardData_,
|
|
67637
|
+
_DialogFilter: _DialogFilter_,
|
|
67638
|
+
_DialogFilterSuggested: _DialogFilterSuggested_,
|
|
67639
|
+
_StatsDateRangeDays: _StatsDateRangeDays_,
|
|
67640
|
+
_StatsAbsValueAndPrev: _StatsAbsValueAndPrev_,
|
|
67641
|
+
_StatsPercentValue: _StatsPercentValue_,
|
|
67642
|
+
_StatsGraph: _StatsGraph_,
|
|
67643
|
+
_stats_BroadcastStats: _stats_BroadcastStats_,
|
|
67644
|
+
_help_PromoData: _help_PromoData_,
|
|
67645
|
+
_VideoSize: _VideoSize_,
|
|
67646
|
+
_StatsGroupTopPoster: _StatsGroupTopPoster_,
|
|
67647
|
+
_StatsGroupTopAdmin: _StatsGroupTopAdmin_,
|
|
67648
|
+
_StatsGroupTopInviter: _StatsGroupTopInviter_,
|
|
67649
|
+
_stats_MegagroupStats: _stats_MegagroupStats_,
|
|
67650
|
+
_GlobalPrivacySettings: _GlobalPrivacySettings_,
|
|
67651
|
+
_help_CountryCode: _help_CountryCode_,
|
|
67652
|
+
_help_Country: _help_Country_,
|
|
67653
|
+
_help_CountriesList: _help_CountriesList_,
|
|
67654
|
+
_MessageViews: _MessageViews_,
|
|
67655
|
+
_messages_MessageViews: _messages_MessageViews_,
|
|
67656
|
+
_messages_DiscussionMessage: _messages_DiscussionMessage_,
|
|
67657
|
+
_MessageReplyHeader: _MessageReplyHeader_,
|
|
67658
|
+
_MessageReplies: _MessageReplies_,
|
|
67659
|
+
_PeerBlocked: _PeerBlocked_,
|
|
67660
|
+
_stats_MessageStats: _stats_MessageStats_,
|
|
67661
|
+
_GroupCall: _GroupCall_,
|
|
67662
|
+
_InputGroupCall: _InputGroupCall_,
|
|
67663
|
+
_GroupCallParticipant: _GroupCallParticipant_,
|
|
67664
|
+
_phone_GroupCall: _phone_GroupCall_,
|
|
67665
|
+
_phone_GroupParticipants: _phone_GroupParticipants_,
|
|
67666
|
+
_InlineQueryPeerType: _InlineQueryPeerType_,
|
|
67667
|
+
_messages_HistoryImport: _messages_HistoryImport_,
|
|
67668
|
+
_messages_HistoryImportParsed: _messages_HistoryImportParsed_,
|
|
67669
|
+
_messages_AffectedFoundMessages: _messages_AffectedFoundMessages_,
|
|
67670
|
+
_ChatInviteImporter: _ChatInviteImporter_,
|
|
67671
|
+
_messages_ExportedChatInvites: _messages_ExportedChatInvites_,
|
|
67672
|
+
_messages_ExportedChatInvite: _messages_ExportedChatInvite_,
|
|
67673
|
+
_messages_ChatInviteImporters: _messages_ChatInviteImporters_,
|
|
67674
|
+
_ChatAdminWithInvites: _ChatAdminWithInvites_,
|
|
67675
|
+
_messages_ChatAdminsWithInvites: _messages_ChatAdminsWithInvites_,
|
|
67676
|
+
_messages_CheckedHistoryImportPeer: _messages_CheckedHistoryImportPeer_,
|
|
67677
|
+
_phone_JoinAsPeers: _phone_JoinAsPeers_,
|
|
67678
|
+
_phone_ExportedGroupCallInvite: _phone_ExportedGroupCallInvite_,
|
|
67679
|
+
_GroupCallParticipantVideoSourceGroup: _GroupCallParticipantVideoSourceGroup_,
|
|
67680
|
+
_GroupCallParticipantVideo: _GroupCallParticipantVideo_,
|
|
67681
|
+
_stickers_SuggestedShortName: _stickers_SuggestedShortName_,
|
|
67682
|
+
_BotCommandScope: _BotCommandScope_,
|
|
67683
|
+
_account_ResetPasswordResult: _account_ResetPasswordResult_,
|
|
67684
|
+
_SponsoredMessage: _SponsoredMessage_,
|
|
67685
|
+
_messages_SponsoredMessages: _messages_SponsoredMessages_,
|
|
67686
|
+
_SearchResultsCalendarPeriod: _SearchResultsCalendarPeriod_,
|
|
67687
|
+
_messages_SearchResultsCalendar: _messages_SearchResultsCalendar_,
|
|
67688
|
+
_SearchResultsPosition: _SearchResultsPosition_,
|
|
67689
|
+
_messages_SearchResultsPositions: _messages_SearchResultsPositions_,
|
|
67690
|
+
_channels_SendAsPeers: _channels_SendAsPeers_,
|
|
67691
|
+
_users_UserFull: _users_UserFull_,
|
|
67692
|
+
_messages_PeerSettings: _messages_PeerSettings_,
|
|
67693
|
+
_auth_LoggedOut: _auth_LoggedOut_,
|
|
65286
67694
|
_ReactionCount: _ReactionCount_,
|
|
65287
67695
|
_MessageReactions: _MessageReactions_,
|
|
65288
67696
|
_messages_MessageReactionsList: _messages_MessageReactionsList_,
|
|
@@ -65415,6 +67823,30 @@ exports.types = {
|
|
|
65415
67823
|
_ConnectedBot: _ConnectedBot_,
|
|
65416
67824
|
_account_ConnectedBots: _account_ConnectedBots_,
|
|
65417
67825
|
_messages_DialogFilters: _messages_DialogFilters_,
|
|
67826
|
+
_Birthday: _Birthday_,
|
|
67827
|
+
_BotBusinessConnection: _BotBusinessConnection_,
|
|
67828
|
+
_InputBusinessIntro: _InputBusinessIntro_,
|
|
67829
|
+
_BusinessIntro: _BusinessIntro_,
|
|
67830
|
+
_messages_MyStickers: _messages_MyStickers_,
|
|
67831
|
+
_InputCollectible: _InputCollectible_,
|
|
67832
|
+
_fragment_CollectibleInfo: _fragment_CollectibleInfo_,
|
|
67833
|
+
_InputBusinessBotRecipients: _InputBusinessBotRecipients_,
|
|
67834
|
+
_BusinessBotRecipients: _BusinessBotRecipients_,
|
|
67835
|
+
_ContactBirthday: _ContactBirthday_,
|
|
67836
|
+
_contacts_ContactBirthdays: _contacts_ContactBirthdays_,
|
|
67837
|
+
_MissingInvitee: _MissingInvitee_,
|
|
67838
|
+
_messages_InvitedUsers: _messages_InvitedUsers_,
|
|
67839
|
+
_InputBusinessChatLink: _InputBusinessChatLink_,
|
|
67840
|
+
_BusinessChatLink: _BusinessChatLink_,
|
|
67841
|
+
_account_BusinessChatLinks: _account_BusinessChatLinks_,
|
|
67842
|
+
_account_ResolvedBusinessChatLinks: _account_ResolvedBusinessChatLinks_,
|
|
67843
|
+
_RequestedPeer: _RequestedPeer_,
|
|
67844
|
+
_SponsoredMessageReportOption: _SponsoredMessageReportOption_,
|
|
67845
|
+
_channels_SponsoredMessageReportResult: _channels_SponsoredMessageReportResult_,
|
|
67846
|
+
_stats_BroadcastRevenueStats: _stats_BroadcastRevenueStats_,
|
|
67847
|
+
_stats_BroadcastRevenueWithdrawalUrl: _stats_BroadcastRevenueWithdrawalUrl_,
|
|
67848
|
+
_BroadcastRevenueTransaction: _BroadcastRevenueTransaction_,
|
|
67849
|
+
_stats_BroadcastRevenueTransactions: _stats_BroadcastRevenueTransactions_,
|
|
65418
67850
|
ResPQ: ResPQ_,
|
|
65419
67851
|
P_q_inner_data_dc: P_q_inner_data_dc_,
|
|
65420
67852
|
P_q_inner_data_temp_dc: P_q_inner_data_temp_dc_,
|
|
@@ -65451,7 +67883,11 @@ exports.types = {
|
|
|
65451
67883
|
Http_wait: Http_wait_,
|
|
65452
67884
|
True: True_,
|
|
65453
67885
|
Error: Error_,
|
|
65454
|
-
|
|
67886
|
+
IpPort: IpPort_,
|
|
67887
|
+
IpPortSecret: IpPortSecret_,
|
|
67888
|
+
AccessPointRule: AccessPointRule_,
|
|
67889
|
+
InputPeerPhotoFileLocationLegacy: InputPeerPhotoFileLocationLegacy_,
|
|
67890
|
+
InputStickerSetThumbLegacy: InputStickerSetThumbLegacy_,
|
|
65455
67891
|
InputPeerEmpty: InputPeerEmpty_,
|
|
65456
67892
|
InputPeerSelf: InputPeerSelf_,
|
|
65457
67893
|
InputPeerChat: InputPeerChat_,
|
|
@@ -65588,6 +68024,7 @@ exports.types = {
|
|
|
65588
68024
|
MessageActionGiveawayLaunch: MessageActionGiveawayLaunch_,
|
|
65589
68025
|
MessageActionGiveawayResults: MessageActionGiveawayResults_,
|
|
65590
68026
|
MessageActionBoostApply: MessageActionBoostApply_,
|
|
68027
|
+
MessageActionRequestedPeerSentMe: MessageActionRequestedPeerSentMe_,
|
|
65591
68028
|
Dialog: Dialog_,
|
|
65592
68029
|
DialogFolder: DialogFolder_,
|
|
65593
68030
|
PhotoEmpty: PhotoEmpty_,
|
|
@@ -65752,7 +68189,6 @@ exports.types = {
|
|
|
65752
68189
|
UpdateChannelPinnedTopics: UpdateChannelPinnedTopics_,
|
|
65753
68190
|
UpdateUser: UpdateUser_,
|
|
65754
68191
|
UpdateAutoSaveSettings: UpdateAutoSaveSettings_,
|
|
65755
|
-
UpdateGroupInvitePrivacyForbidden: UpdateGroupInvitePrivacyForbidden_,
|
|
65756
68192
|
UpdateStory: UpdateStory_,
|
|
65757
68193
|
UpdateReadStories: UpdateReadStories_,
|
|
65758
68194
|
UpdateStoryID: UpdateStoryID_,
|
|
@@ -65772,6 +68208,10 @@ exports.types = {
|
|
|
65772
68208
|
UpdateDeleteQuickReply: UpdateDeleteQuickReply_,
|
|
65773
68209
|
UpdateQuickReplyMessage: UpdateQuickReplyMessage_,
|
|
65774
68210
|
UpdateDeleteQuickReplyMessages: UpdateDeleteQuickReplyMessages_,
|
|
68211
|
+
UpdateBotBusinessConnect: UpdateBotBusinessConnect_,
|
|
68212
|
+
UpdateBotNewBusinessMessage: UpdateBotNewBusinessMessage_,
|
|
68213
|
+
UpdateBotEditBusinessMessage: UpdateBotEditBusinessMessage_,
|
|
68214
|
+
UpdateBotDeleteBusinessMessage: UpdateBotDeleteBusinessMessage_,
|
|
65775
68215
|
UpdatesTooLong: UpdatesTooLong_,
|
|
65776
68216
|
UpdateShortMessage: UpdateShortMessage_,
|
|
65777
68217
|
UpdateShortChatMessage: UpdateShortChatMessage_,
|
|
@@ -65833,6 +68273,7 @@ exports.types = {
|
|
|
65833
68273
|
InputPrivacyKeyAddedByPhone: InputPrivacyKeyAddedByPhone_,
|
|
65834
68274
|
InputPrivacyKeyVoiceMessages: InputPrivacyKeyVoiceMessages_,
|
|
65835
68275
|
InputPrivacyKeyAbout: InputPrivacyKeyAbout_,
|
|
68276
|
+
InputPrivacyKeyBirthday: InputPrivacyKeyBirthday_,
|
|
65836
68277
|
PrivacyKeyStatusTimestamp: PrivacyKeyStatusTimestamp_,
|
|
65837
68278
|
PrivacyKeyChatInvite: PrivacyKeyChatInvite_,
|
|
65838
68279
|
PrivacyKeyPhoneCall: PrivacyKeyPhoneCall_,
|
|
@@ -65843,6 +68284,7 @@ exports.types = {
|
|
|
65843
68284
|
PrivacyKeyAddedByPhone: PrivacyKeyAddedByPhone_,
|
|
65844
68285
|
PrivacyKeyVoiceMessages: PrivacyKeyVoiceMessages_,
|
|
65845
68286
|
PrivacyKeyAbout: PrivacyKeyAbout_,
|
|
68287
|
+
PrivacyKeyBirthday: PrivacyKeyBirthday_,
|
|
65846
68288
|
InputPrivacyValueAllowContacts: InputPrivacyValueAllowContacts_,
|
|
65847
68289
|
InputPrivacyValueAllowAll: InputPrivacyValueAllowAll_,
|
|
65848
68290
|
InputPrivacyValueAllowUsers: InputPrivacyValueAllowUsers_,
|
|
@@ -65852,6 +68294,7 @@ exports.types = {
|
|
|
65852
68294
|
InputPrivacyValueAllowChatParticipants: InputPrivacyValueAllowChatParticipants_,
|
|
65853
68295
|
InputPrivacyValueDisallowChatParticipants: InputPrivacyValueDisallowChatParticipants_,
|
|
65854
68296
|
InputPrivacyValueAllowCloseFriends: InputPrivacyValueAllowCloseFriends_,
|
|
68297
|
+
InputPrivacyValueAllowPremium: InputPrivacyValueAllowPremium_,
|
|
65855
68298
|
PrivacyValueAllowContacts: PrivacyValueAllowContacts_,
|
|
65856
68299
|
PrivacyValueAllowAll: PrivacyValueAllowAll_,
|
|
65857
68300
|
PrivacyValueAllowUsers: PrivacyValueAllowUsers_,
|
|
@@ -65861,6 +68304,7 @@ exports.types = {
|
|
|
65861
68304
|
PrivacyValueAllowChatParticipants: PrivacyValueAllowChatParticipants_,
|
|
65862
68305
|
PrivacyValueDisallowChatParticipants: PrivacyValueDisallowChatParticipants_,
|
|
65863
68306
|
PrivacyValueAllowCloseFriends: PrivacyValueAllowCloseFriends_,
|
|
68307
|
+
PrivacyValueAllowPremium: PrivacyValueAllowPremium_,
|
|
65864
68308
|
AccountDaysTTL: AccountDaysTTL_,
|
|
65865
68309
|
DocumentAttributeImageSize: DocumentAttributeImageSize_,
|
|
65866
68310
|
DocumentAttributeAnimated: DocumentAttributeAnimated_,
|
|
@@ -65912,6 +68356,7 @@ exports.types = {
|
|
|
65912
68356
|
KeyboardButtonWebView: KeyboardButtonWebView_,
|
|
65913
68357
|
KeyboardButtonSimpleWebView: KeyboardButtonSimpleWebView_,
|
|
65914
68358
|
KeyboardButtonRequestPeer: KeyboardButtonRequestPeer_,
|
|
68359
|
+
InputKeyboardButtonRequestPeer: InputKeyboardButtonRequestPeer_,
|
|
65915
68360
|
KeyboardButtonRow: KeyboardButtonRow_,
|
|
65916
68361
|
ReplyKeyboardHide: ReplyKeyboardHide_,
|
|
65917
68362
|
ReplyKeyboardForceReply: ReplyKeyboardForceReply_,
|
|
@@ -66445,6 +68890,59 @@ exports.types = {
|
|
|
66445
68890
|
InputQuickReplyShortcut: InputQuickReplyShortcut_,
|
|
66446
68891
|
InputQuickReplyShortcutId: InputQuickReplyShortcutId_,
|
|
66447
68892
|
ConnectedBot: ConnectedBot_,
|
|
68893
|
+
Birthday: Birthday_,
|
|
68894
|
+
BotBusinessConnection: BotBusinessConnection_,
|
|
68895
|
+
InputBusinessIntro: InputBusinessIntro_,
|
|
68896
|
+
BusinessIntro: BusinessIntro_,
|
|
68897
|
+
InputCollectibleUsername: InputCollectibleUsername_,
|
|
68898
|
+
InputCollectiblePhone: InputCollectiblePhone_,
|
|
68899
|
+
InputBusinessBotRecipients: InputBusinessBotRecipients_,
|
|
68900
|
+
BusinessBotRecipients: BusinessBotRecipients_,
|
|
68901
|
+
ContactBirthday: ContactBirthday_,
|
|
68902
|
+
MissingInvitee: MissingInvitee_,
|
|
68903
|
+
InputBusinessChatLink: InputBusinessChatLink_,
|
|
68904
|
+
BusinessChatLink: BusinessChatLink_,
|
|
68905
|
+
RequestedPeerUser: RequestedPeerUser_,
|
|
68906
|
+
RequestedPeerChat: RequestedPeerChat_,
|
|
68907
|
+
RequestedPeerChannel: RequestedPeerChannel_,
|
|
68908
|
+
SponsoredMessageReportOption: SponsoredMessageReportOption_,
|
|
68909
|
+
BroadcastRevenueTransactionProceeds: BroadcastRevenueTransactionProceeds_,
|
|
68910
|
+
BroadcastRevenueTransactionWithdrawal: BroadcastRevenueTransactionWithdrawal_,
|
|
68911
|
+
BroadcastRevenueTransactionRefund: BroadcastRevenueTransactionRefund_,
|
|
68912
|
+
help: {
|
|
68913
|
+
ConfigSimple: help_ConfigSimple_,
|
|
68914
|
+
AppUpdate: help_AppUpdate_,
|
|
68915
|
+
NoAppUpdate: help_NoAppUpdate_,
|
|
68916
|
+
InviteText: help_InviteText_,
|
|
68917
|
+
Support: help_Support_,
|
|
68918
|
+
TermsOfService: help_TermsOfService_,
|
|
68919
|
+
RecentMeUrls: help_RecentMeUrls_,
|
|
68920
|
+
TermsOfServiceUpdateEmpty: help_TermsOfServiceUpdateEmpty_,
|
|
68921
|
+
TermsOfServiceUpdate: help_TermsOfServiceUpdate_,
|
|
68922
|
+
DeepLinkInfoEmpty: help_DeepLinkInfoEmpty_,
|
|
68923
|
+
DeepLinkInfo: help_DeepLinkInfo_,
|
|
68924
|
+
PassportConfigNotModified: help_PassportConfigNotModified_,
|
|
68925
|
+
PassportConfig: help_PassportConfig_,
|
|
68926
|
+
SupportName: help_SupportName_,
|
|
68927
|
+
UserInfoEmpty: help_UserInfoEmpty_,
|
|
68928
|
+
UserInfo: help_UserInfo_,
|
|
68929
|
+
PromoDataEmpty: help_PromoDataEmpty_,
|
|
68930
|
+
PromoData: help_PromoData_,
|
|
68931
|
+
CountryCode: help_CountryCode_,
|
|
68932
|
+
Country: help_Country_,
|
|
68933
|
+
CountriesListNotModified: help_CountriesListNotModified_,
|
|
68934
|
+
CountriesList: help_CountriesList_,
|
|
68935
|
+
PremiumPromo: help_PremiumPromo_,
|
|
68936
|
+
AppConfigNotModified: help_AppConfigNotModified_,
|
|
68937
|
+
AppConfig: help_AppConfig_,
|
|
68938
|
+
PeerColorSet: help_PeerColorSet_,
|
|
68939
|
+
PeerColorProfileSet: help_PeerColorProfileSet_,
|
|
68940
|
+
PeerColorOption: help_PeerColorOption_,
|
|
68941
|
+
PeerColorsNotModified: help_PeerColorsNotModified_,
|
|
68942
|
+
PeerColors: help_PeerColors_,
|
|
68943
|
+
TimezonesListNotModified: help_TimezonesListNotModified_,
|
|
68944
|
+
TimezonesList: help_TimezonesList_,
|
|
68945
|
+
},
|
|
66448
68946
|
storage: {
|
|
66449
68947
|
FileUnknown: storage_FileUnknown_,
|
|
66450
68948
|
FilePartial: storage_FilePartial_,
|
|
@@ -66494,6 +68992,7 @@ exports.types = {
|
|
|
66494
68992
|
TopPeersNotModified: contacts_TopPeersNotModified_,
|
|
66495
68993
|
TopPeers: contacts_TopPeers_,
|
|
66496
68994
|
TopPeersDisabled: contacts_TopPeersDisabled_,
|
|
68995
|
+
ContactBirthdays: contacts_ContactBirthdays_,
|
|
66497
68996
|
},
|
|
66498
68997
|
messages: {
|
|
66499
68998
|
Dialogs: messages_Dialogs_,
|
|
@@ -66575,6 +69074,8 @@ exports.types = {
|
|
|
66575
69074
|
QuickReplies: messages_QuickReplies_,
|
|
66576
69075
|
QuickRepliesNotModified: messages_QuickRepliesNotModified_,
|
|
66577
69076
|
DialogFilters: messages_DialogFilters_,
|
|
69077
|
+
MyStickers: messages_MyStickers_,
|
|
69078
|
+
InvitedUsers: messages_InvitedUsers_,
|
|
66578
69079
|
},
|
|
66579
69080
|
updates: {
|
|
66580
69081
|
State: updates_State_,
|
|
@@ -66598,39 +69099,6 @@ exports.types = {
|
|
|
66598
69099
|
CdnFileReuploadNeeded: upload_CdnFileReuploadNeeded_,
|
|
66599
69100
|
CdnFile: upload_CdnFile_,
|
|
66600
69101
|
},
|
|
66601
|
-
help: {
|
|
66602
|
-
AppUpdate: help_AppUpdate_,
|
|
66603
|
-
NoAppUpdate: help_NoAppUpdate_,
|
|
66604
|
-
InviteText: help_InviteText_,
|
|
66605
|
-
Support: help_Support_,
|
|
66606
|
-
TermsOfService: help_TermsOfService_,
|
|
66607
|
-
RecentMeUrls: help_RecentMeUrls_,
|
|
66608
|
-
TermsOfServiceUpdateEmpty: help_TermsOfServiceUpdateEmpty_,
|
|
66609
|
-
TermsOfServiceUpdate: help_TermsOfServiceUpdate_,
|
|
66610
|
-
DeepLinkInfoEmpty: help_DeepLinkInfoEmpty_,
|
|
66611
|
-
DeepLinkInfo: help_DeepLinkInfo_,
|
|
66612
|
-
PassportConfigNotModified: help_PassportConfigNotModified_,
|
|
66613
|
-
PassportConfig: help_PassportConfig_,
|
|
66614
|
-
SupportName: help_SupportName_,
|
|
66615
|
-
UserInfoEmpty: help_UserInfoEmpty_,
|
|
66616
|
-
UserInfo: help_UserInfo_,
|
|
66617
|
-
PromoDataEmpty: help_PromoDataEmpty_,
|
|
66618
|
-
PromoData: help_PromoData_,
|
|
66619
|
-
CountryCode: help_CountryCode_,
|
|
66620
|
-
Country: help_Country_,
|
|
66621
|
-
CountriesListNotModified: help_CountriesListNotModified_,
|
|
66622
|
-
CountriesList: help_CountriesList_,
|
|
66623
|
-
PremiumPromo: help_PremiumPromo_,
|
|
66624
|
-
AppConfigNotModified: help_AppConfigNotModified_,
|
|
66625
|
-
AppConfig: help_AppConfig_,
|
|
66626
|
-
PeerColorSet: help_PeerColorSet_,
|
|
66627
|
-
PeerColorProfileSet: help_PeerColorProfileSet_,
|
|
66628
|
-
PeerColorOption: help_PeerColorOption_,
|
|
66629
|
-
PeerColorsNotModified: help_PeerColorsNotModified_,
|
|
66630
|
-
PeerColors: help_PeerColors_,
|
|
66631
|
-
TimezonesListNotModified: help_TimezonesListNotModified_,
|
|
66632
|
-
TimezonesList: help_TimezonesList_,
|
|
66633
|
-
},
|
|
66634
69102
|
account: {
|
|
66635
69103
|
PrivacyRules: account_PrivacyRules_,
|
|
66636
69104
|
Authorizations: account_Authorizations_,
|
|
@@ -66661,6 +69129,8 @@ exports.types = {
|
|
|
66661
69129
|
EmailVerifiedLogin: account_EmailVerifiedLogin_,
|
|
66662
69130
|
AutoSaveSettings: account_AutoSaveSettings_,
|
|
66663
69131
|
ConnectedBots: account_ConnectedBots_,
|
|
69132
|
+
BusinessChatLinks: account_BusinessChatLinks_,
|
|
69133
|
+
ResolvedBusinessChatLinks: account_ResolvedBusinessChatLinks_,
|
|
66664
69134
|
},
|
|
66665
69135
|
channels: {
|
|
66666
69136
|
ChannelParticipants: channels_ChannelParticipants_,
|
|
@@ -66668,6 +69138,9 @@ exports.types = {
|
|
|
66668
69138
|
ChannelParticipant: channels_ChannelParticipant_,
|
|
66669
69139
|
AdminLogResults: channels_AdminLogResults_,
|
|
66670
69140
|
SendAsPeers: channels_SendAsPeers_,
|
|
69141
|
+
SponsoredMessageReportResultChooseOption: channels_SponsoredMessageReportResultChooseOption_,
|
|
69142
|
+
SponsoredMessageReportResultAdsHidden: channels_SponsoredMessageReportResultAdsHidden_,
|
|
69143
|
+
SponsoredMessageReportResultReported: channels_SponsoredMessageReportResultReported_,
|
|
66671
69144
|
},
|
|
66672
69145
|
payments: {
|
|
66673
69146
|
PaymentForm: payments_PaymentForm_,
|
|
@@ -66697,6 +69170,9 @@ exports.types = {
|
|
|
66697
69170
|
MessageStats: stats_MessageStats_,
|
|
66698
69171
|
StoryStats: stats_StoryStats_,
|
|
66699
69172
|
PublicForwards: stats_PublicForwards_,
|
|
69173
|
+
BroadcastRevenueStats: stats_BroadcastRevenueStats_,
|
|
69174
|
+
BroadcastRevenueWithdrawalUrl: stats_BroadcastRevenueWithdrawalUrl_,
|
|
69175
|
+
BroadcastRevenueTransactions: stats_BroadcastRevenueTransactions_,
|
|
66700
69176
|
},
|
|
66701
69177
|
stickers: {
|
|
66702
69178
|
SuggestedShortName: stickers_SuggestedShortName_,
|
|
@@ -66732,6 +69208,9 @@ exports.types = {
|
|
|
66732
69208
|
EligibleToJoin: smsjobs_EligibleToJoin_,
|
|
66733
69209
|
Status: smsjobs_Status_,
|
|
66734
69210
|
},
|
|
69211
|
+
fragment: {
|
|
69212
|
+
CollectibleInfo: fragment_CollectibleInfo_,
|
|
69213
|
+
},
|
|
66735
69214
|
};
|
|
66736
69215
|
exports.map = new Map([
|
|
66737
69216
|
[0x05162463, ResPQ_],
|
|
@@ -66770,7 +69249,12 @@ exports.map = new Map([
|
|
|
66770
69249
|
[0x9299359F, Http_wait_],
|
|
66771
69250
|
[0x3FEDD339, True_],
|
|
66772
69251
|
[0xC4B9F9BB, Error_],
|
|
66773
|
-
[
|
|
69252
|
+
[0xD433AD73, IpPort_],
|
|
69253
|
+
[0x37982646, IpPortSecret_],
|
|
69254
|
+
[0x4679B65F, AccessPointRule_],
|
|
69255
|
+
[0x5A592A6C, help_ConfigSimple_],
|
|
69256
|
+
[0x27D69997, InputPeerPhotoFileLocationLegacy_],
|
|
69257
|
+
[0x0DBAEAE9, InputStickerSetThumbLegacy_],
|
|
66774
69258
|
[0x7F3B18EA, InputPeerEmpty_],
|
|
66775
69259
|
[0x7DA07EC9, InputPeerSelf_],
|
|
66776
69260
|
[0x35A95CB9, InputPeerChat_],
|
|
@@ -66857,7 +69341,7 @@ exports.map = new Map([
|
|
|
66857
69341
|
[0x37C1011C, ChatPhotoEmpty_],
|
|
66858
69342
|
[0x1C6E1C11, ChatPhoto_],
|
|
66859
69343
|
[0x90A6CA84, MessageEmpty_],
|
|
66860
|
-
[
|
|
69344
|
+
[0x2357BF25, Message_],
|
|
66861
69345
|
[0x2B085862, MessageService_],
|
|
66862
69346
|
[0x3DED6320, MessageMediaEmpty_],
|
|
66863
69347
|
[0x695150D7, MessageMediaPhoto_],
|
|
@@ -66917,6 +69401,7 @@ exports.map = new Map([
|
|
|
66917
69401
|
[0x332BA9ED, MessageActionGiveawayLaunch_],
|
|
66918
69402
|
[0x2A9FADC5, MessageActionGiveawayResults_],
|
|
66919
69403
|
[0xCC02AA6D, MessageActionBoostApply_],
|
|
69404
|
+
[0x93B31848, MessageActionRequestedPeerSentMe_],
|
|
66920
69405
|
[0xD58A08C6, Dialog_],
|
|
66921
69406
|
[0x71BD134C, DialogFolder_],
|
|
66922
69407
|
[0x2331B22D, PhotoEmpty_],
|
|
@@ -66941,7 +69426,7 @@ exports.map = new Map([
|
|
|
66941
69426
|
[0x5C467992, InputNotifyForumTopic_],
|
|
66942
69427
|
[0xCACB6AE2, InputPeerNotifySettings_],
|
|
66943
69428
|
[0x99622C0C, PeerNotifySettings_],
|
|
66944
|
-
[
|
|
69429
|
+
[0xACD66C5E, PeerSettings_],
|
|
66945
69430
|
[0xA437C3ED, WallPaper_],
|
|
66946
69431
|
[0xE0804116, WallPaperNoFile_],
|
|
66947
69432
|
[0x58DBCAB8, InputReportReasonSpam_],
|
|
@@ -66954,7 +69439,7 @@ exports.map = new Map([
|
|
|
66954
69439
|
[0xF5DDD6E7, InputReportReasonFake_],
|
|
66955
69440
|
[0x0A8EB2BE, InputReportReasonIllegalDrugs_],
|
|
66956
69441
|
[0x9EC7863D, InputReportReasonPersonalDetails_],
|
|
66957
|
-
[
|
|
69442
|
+
[0xCC997720, UserFull_],
|
|
66958
69443
|
[0x145ADE0B, Contact_],
|
|
66959
69444
|
[0xC13E3C50, ImportedContact_],
|
|
66960
69445
|
[0x16D9703B, ContactStatus_],
|
|
@@ -67102,7 +69587,6 @@ exports.map = new Map([
|
|
|
67102
69587
|
[0xFE198602, UpdateChannelPinnedTopics_],
|
|
67103
69588
|
[0x20529438, UpdateUser_],
|
|
67104
69589
|
[0xEC05B097, UpdateAutoSaveSettings_],
|
|
67105
|
-
[0xCCF08AD6, UpdateGroupInvitePrivacyForbidden_],
|
|
67106
69590
|
[0x75B3B798, UpdateStory_],
|
|
67107
69591
|
[0xF74E932B, UpdateReadStories_],
|
|
67108
69592
|
[0x1BF335B9, UpdateStoryID_],
|
|
@@ -67122,6 +69606,10 @@ exports.map = new Map([
|
|
|
67122
69606
|
[0x53E6F1EC, UpdateDeleteQuickReply_],
|
|
67123
69607
|
[0x3E050D0F, UpdateQuickReplyMessage_],
|
|
67124
69608
|
[0x566FE7CD, UpdateDeleteQuickReplyMessages_],
|
|
69609
|
+
[0x8AE5C97A, UpdateBotBusinessConnect_],
|
|
69610
|
+
[0x9DDB347C, UpdateBotNewBusinessMessage_],
|
|
69611
|
+
[0x07DF587C, UpdateBotEditBusinessMessage_],
|
|
69612
|
+
[0xA02A982E, UpdateBotDeleteBusinessMessage_],
|
|
67125
69613
|
[0xA56C2A3E, updates_State_],
|
|
67126
69614
|
[0x5D75A138, updates_DifferenceEmpty_],
|
|
67127
69615
|
[0x00F49CA0, updates_Difference_],
|
|
@@ -67202,6 +69690,7 @@ exports.map = new Map([
|
|
|
67202
69690
|
[0xD1219BDD, InputPrivacyKeyAddedByPhone_],
|
|
67203
69691
|
[0xAEE69D68, InputPrivacyKeyVoiceMessages_],
|
|
67204
69692
|
[0x3823CC40, InputPrivacyKeyAbout_],
|
|
69693
|
+
[0xD65A11CC, InputPrivacyKeyBirthday_],
|
|
67205
69694
|
[0xBC2EAB30, PrivacyKeyStatusTimestamp_],
|
|
67206
69695
|
[0x500E6DFA, PrivacyKeyChatInvite_],
|
|
67207
69696
|
[0x3D662B7B, PrivacyKeyPhoneCall_],
|
|
@@ -67212,6 +69701,7 @@ exports.map = new Map([
|
|
|
67212
69701
|
[0x42FFD42B, PrivacyKeyAddedByPhone_],
|
|
67213
69702
|
[0x0697F414, PrivacyKeyVoiceMessages_],
|
|
67214
69703
|
[0xA486B761, PrivacyKeyAbout_],
|
|
69704
|
+
[0x2000A518, PrivacyKeyBirthday_],
|
|
67215
69705
|
[0x0D09E07B, InputPrivacyValueAllowContacts_],
|
|
67216
69706
|
[0x184B35CE, InputPrivacyValueAllowAll_],
|
|
67217
69707
|
[0x131CC67F, InputPrivacyValueAllowUsers_],
|
|
@@ -67221,6 +69711,7 @@ exports.map = new Map([
|
|
|
67221
69711
|
[0x840649CF, InputPrivacyValueAllowChatParticipants_],
|
|
67222
69712
|
[0xE94F0F86, InputPrivacyValueDisallowChatParticipants_],
|
|
67223
69713
|
[0x2F453E49, InputPrivacyValueAllowCloseFriends_],
|
|
69714
|
+
[0x77CDC9F1, InputPrivacyValueAllowPremium_],
|
|
67224
69715
|
[0xFFFE1BAC, PrivacyValueAllowContacts_],
|
|
67225
69716
|
[0x65427B82, PrivacyValueAllowAll_],
|
|
67226
69717
|
[0xB8905FB2, PrivacyValueAllowUsers_],
|
|
@@ -67230,6 +69721,7 @@ exports.map = new Map([
|
|
|
67230
69721
|
[0x6B134E8E, PrivacyValueAllowChatParticipants_],
|
|
67231
69722
|
[0x41C87565, PrivacyValueDisallowChatParticipants_],
|
|
67232
69723
|
[0xF7E8D89B, PrivacyValueAllowCloseFriends_],
|
|
69724
|
+
[0xECE9814B, PrivacyValueAllowPremium_],
|
|
67233
69725
|
[0x50A04E45, account_PrivacyRules_],
|
|
67234
69726
|
[0xB8D0AFDF, AccountDaysTTL_],
|
|
67235
69727
|
[0x6C37C15C, DocumentAttributeImageSize_],
|
|
@@ -67294,6 +69786,7 @@ exports.map = new Map([
|
|
|
67294
69786
|
[0x13767230, KeyboardButtonWebView_],
|
|
67295
69787
|
[0xA0C0505C, KeyboardButtonSimpleWebView_],
|
|
67296
69788
|
[0x53D7BFD8, KeyboardButtonRequestPeer_],
|
|
69789
|
+
[0xC9662D05, InputKeyboardButtonRequestPeer_],
|
|
67297
69790
|
[0x77608B83, KeyboardButtonRow_],
|
|
67298
69791
|
[0xA03E5B85, ReplyKeyboardHide_],
|
|
67299
69792
|
[0x86B40B08, ReplyKeyboardForceReply_],
|
|
@@ -67509,7 +70002,7 @@ exports.map = new Map([
|
|
|
67509
70002
|
[0xC5226F17, PhoneCallWaiting_],
|
|
67510
70003
|
[0x14B0ED0C, PhoneCallRequested_],
|
|
67511
70004
|
[0x3660C311, PhoneCallAccepted_],
|
|
67512
|
-
[
|
|
70005
|
+
[0x30535AF5, PhoneCall_],
|
|
67513
70006
|
[0x50CA4DE1, PhoneCallDiscarded_],
|
|
67514
70007
|
[0x9CC123C7, PhoneConnection_],
|
|
67515
70008
|
[0x635FE375, PhoneConnectionWebrtc_],
|
|
@@ -68008,8 +70501,39 @@ exports.map = new Map([
|
|
|
68008
70501
|
[0x01190CF1, InputQuickReplyShortcutId_],
|
|
68009
70502
|
[0xC68D6695, messages_QuickReplies_],
|
|
68010
70503
|
[0x5F91EB5B, messages_QuickRepliesNotModified_],
|
|
68011
|
-
[
|
|
70504
|
+
[0xBD068601, ConnectedBot_],
|
|
68012
70505
|
[0x17D7F87B, account_ConnectedBots_],
|
|
68013
70506
|
[0x2AD93719, messages_DialogFilters_],
|
|
70507
|
+
[0x6C8E1E06, Birthday_],
|
|
70508
|
+
[0x896433B4, BotBusinessConnection_],
|
|
70509
|
+
[0x09C469CD, InputBusinessIntro_],
|
|
70510
|
+
[0x5A0A066D, BusinessIntro_],
|
|
70511
|
+
[0xFAFF629D, messages_MyStickers_],
|
|
70512
|
+
[0xE39460A9, InputCollectibleUsername_],
|
|
70513
|
+
[0xA2E214A4, InputCollectiblePhone_],
|
|
70514
|
+
[0x6EBDFF91, fragment_CollectibleInfo_],
|
|
70515
|
+
[0xC4E5921E, InputBusinessBotRecipients_],
|
|
70516
|
+
[0xB88CF373, BusinessBotRecipients_],
|
|
70517
|
+
[0x1D998733, ContactBirthday_],
|
|
70518
|
+
[0x114FF30D, contacts_ContactBirthdays_],
|
|
70519
|
+
[0x628C9224, MissingInvitee_],
|
|
70520
|
+
[0x7F5DEFA6, messages_InvitedUsers_],
|
|
70521
|
+
[0x11679FA7, InputBusinessChatLink_],
|
|
70522
|
+
[0xB4AE666F, BusinessChatLink_],
|
|
70523
|
+
[0xEC43A2D1, account_BusinessChatLinks_],
|
|
70524
|
+
[0x9A23AF21, account_ResolvedBusinessChatLinks_],
|
|
70525
|
+
[0xD62FF46A, RequestedPeerUser_],
|
|
70526
|
+
[0x7307544F, RequestedPeerChat_],
|
|
70527
|
+
[0x8BA403E4, RequestedPeerChannel_],
|
|
70528
|
+
[0x430D3150, SponsoredMessageReportOption_],
|
|
70529
|
+
[0x846F9E42, channels_SponsoredMessageReportResultChooseOption_],
|
|
70530
|
+
[0x3E3BCF2F, channels_SponsoredMessageReportResultAdsHidden_],
|
|
70531
|
+
[0xAD798849, channels_SponsoredMessageReportResultReported_],
|
|
70532
|
+
[0xD07B4BAD, stats_BroadcastRevenueStats_],
|
|
70533
|
+
[0xEC659737, stats_BroadcastRevenueWithdrawalUrl_],
|
|
70534
|
+
[0x557E2CC4, BroadcastRevenueTransactionProceeds_],
|
|
70535
|
+
[0x5A590978, BroadcastRevenueTransactionWithdrawal_],
|
|
70536
|
+
[0x42D30D2E, BroadcastRevenueTransactionRefund_],
|
|
70537
|
+
[0x87158466, stats_BroadcastRevenueTransactions_],
|
|
68014
70538
|
// deno-lint-ignore no-explicit-any
|
|
68015
70539
|
]);
|