From 3b26ae40a11bcd14c17b524a6c630dbf1540e4f1 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Wed, 5 Jun 2019 12:04:36 +0200 Subject: [PATCH] Updated changelog --- CHANGELOG.md | 74 +- README.md | 26 +- docs | 2 +- src/danog/MadelineProto/APIFactory.php | 36 - src/danog/MadelineProto/InternalDoc.php | 2245 ++--------------------- 5 files changed, 170 insertions(+), 2213 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea8078fe..38d6283c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ Powered by [amphp](https://amphp.org), MadelineProto wraps the AMPHP APIs to pro What exactly __is__ **async**, you may ask, and how is it better than **threading** or **multiprocessing**? Async is a relatively new programming pattern that allows you to easily write **non-blocking** code **as if you were using standard** blocking functions, all without the need for complex message exchange systems and synchronization handling for threaded programs, that only add overhead and complexity to your programs, making everything slower and error-prone. -More simply put: with **MadelineProto 4.0**, each update is handled in **parallel** using a separate **thread**, and everything is done in **parallel** (even on restricted webhosts!). +More simply put: with **MadelineProto 4.0**, each update is handled in **parallel** using a separate **thread**, and everything is done in **parallel** (even on restricted webhosts, perfect for creating **file downloader bots**!). To enable async, you have to do two simple things: 1) [Load the latest version of MadelineProto](https://docs.madelineproto.xyz/docs/ASYNC.html#loading-the-latest-version-of-madelineproto) @@ -21,6 +21,29 @@ That's it! **No need** to set up thread pools (that don't even work in PHP), use synchronization primitives, and so on... Just `yield $MadelineProto->messages->sendMessage` instead of `$MadelineProto->messages->sendMessage`. +*** + +And now, on to the **API changes**: +* First of all, we've got several bucketloads of telegram API changes, that can be viewed in the first posts. +* Dropped support for PHP 5 and PHP 7.0: these versions of PHP have [officially reached their EOL](http://php.net/eol.php), so MadelineProto will not support them anymore. +You can use MadelineProto with PHP 7.3 (or PHP 7.2, PHP 7.1 is supported but not recommended). +* You can now use the `@support` username in sendMessage and other methods to send messages to the support user! +* Now MadelineProto will automatically try to get the access hash of users not present in the internal peer database (this should reduce errors)! +* If any file cannot be downloaded to due issues with the tg media server that is hosting it, it will be automatically sent to the `@support` user ([settings](https://docs.madelineproto.xyz/docs/SETTINGS.html#settingsdownloadreport_broken_media)). +* Added an [update_2fa](https://docs.madelineproto.xyz/update_2fa.html) method to update the login password +* Added a [get_full_dialogs](https://docs.madelineproto.xyz/docs/DIALOGS.html#get_full_dialogs-now-fully-async) method to get a full list of all chats you’re member of, including dialog info (such as the pinned/last message ID, unread count, tag count, notification settings and message drafts). +* [Added support for automatic file uploads by name in secret chats (as with normal chats); you can also now send secret chat messages using the sendMessage method as if it were a normal chat](https://github.com/danog/MadelineProto/blob/master/secret_bot.php) +* Added a [resetUpdateState](https://docs.madelineproto.xyz/docs/UPDATES.html#fetch-all-updates-from-the-beginning) method to reset the update state and fetch ALL updates from the beginning +* Improved chat message splitting algorithm (if the message you're trying to send is too long): performance improvements, and it will now notify you via the logs if there are too many entities in the logs, or if the entities are too long. +* Improved the get_self method. +* [Added a __magic_sleep](https://docs.madelineproto.xyz/docs/UPDATES.html#async-combined-event-driven) substitute for `__sleep` in the `CombinedEventHandler` +* Removed all dependencies to `curl`: now all HTTP requests are made asynchronously using a custom version of [artax](https://docs.madelineproto.xyz/docs/ASYNC.html#madelineproto-artax-http-client) (more on that later). +* Updated [php-libtgvoip](https://voip.madelineproto.xyz) and introduced a [common API](https://docs.madelineproto.xyz/docs/CALLS.html#changing-audio-quality) for changing phone call settings +* Improved the `madeline.php` loader +* Removed the old serialization APIs: now serialization is done automatically by MadelineProto! +* Increased the default flood wait limit to 10 minutes, since with async waiting for the flood wait isn't blocking anymore + + *** Naturally, async is not the only feature present in MadelineProto 4.0: to implement async in MadelineProto, I rewrote the **entire codebase two times** over the course of the last six months, as shown in the diff: @@ -64,6 +87,8 @@ A **fourth signal loop** takes care of HTTP long polling. This guarantees maximum stability even if telegram's having server issues. The write loop also greatly reduces overhead, increasing performances by automatically wrapping in containers multiple method calls: this is especially useful when making multiple method calls simultaneously with async (more on that later). +The update state is now stored using a custom `UpdatesState` API, that will simplify backup to a DBMS backend later on :). + *** Possibly the most __exciting__ thing to work on in this version of MadelineProto was the new **update management system**: I whipped it up in merely two days a few weeks ago, and it has **absolutely improved** the overall reliability of MadelineProto. @@ -97,43 +122,6 @@ I've also rewritten the **APIFactory**, the abstraction layer that stands betwee The same cached method mapping system is also used for the **event handler**, which means that now the **event handler is the fastest update management method**. -*** - -And now, on to the **API changes and improvements**: -* First of all, we've got several bucketloads of telegram API changes, that can be viewed in the first posts -* Added an [update_2fa](https://docs.madelineproto.xyz/update_2fa.html) method to update the login password -* Added a [get_full_dialogs](https://docs.madelineproto.xyz/docs/DIALOGS.html#get_full_dialogs-now-fully-async) method to get a full list of all chats you’re member of, including dialog info (such as the pinned/last message ID, unread count, tag count, notification settings and message drafts). -* [Added support for automatic file uploads by name in secret chats (as with normal chats); you can also now send secret chat messages using the sendMessage method as if it were a normal chat](https://github.com/danog/MadelineProto/blob/master/secret_bot.php) -* Improved message splitting algorithm: performance improvements, and it will now notify you via the logs if there are too many entities in the logs, or if the entities are too long. -* Improved the get_self method. - -* magic sleep -* Simultaneous method calls -* sendmessage with secret messages -* automatic secret chat file upload -* improved callfork -* new logging -* channel state -* async construct -* clean up repo, update dependencies and remove curl dependency -* new phone call config -* updated php-libtgvoip -* improved madeline.php loader -* async constructor -* removed old serialization -* rewrote combined update handler (async) -* modify amphp -* async logging -* phpdoc -* @support -* even without access hash for bots -* async HTTP requests internally -* custom HTTP client with DoH -* no more php 5 -* reset PTS to 0 -* arrayaccess on args -* increased flood wait - *** And now, let's elaborate on async: @@ -145,6 +133,14 @@ When I say **thread**, I actually mean **green thread** ([wikipedia](https://en. In +* modify amphp +* phpdoc +* custom HTTP client with DoH +* Simultaneous method calls +* improved callfork +* new logging +* async construct + Things to expect in the next releases: docs for get mime funcs docs for HTML parser (div to avoid escaping) @@ -172,5 +168,5 @@ video calls group calls native calls dnssec - +mytelegramorg docs telegram passport \ No newline at end of file diff --git a/README.md b/README.md index b067ffb3..a3f35af6 100644 --- a/README.md +++ b/README.md @@ -76,10 +76,11 @@ Tip: if you receive an error (or nothing), [send us](https://t.me/pwrtelegramgro * [GenericLoop](https://docs.madelineproto.xyz/docs/ASYNC.html#genericloop) * [Creating a client](https://docs.madelineproto.xyz/docs/CREATING_A_CLIENT.html) * [Logging in](https://docs.madelineproto.xyz/docs/LOGIN.html) - * [Automatic](https://docs.madelineproto.xyz/docs/LOGIN.html#automatic) + * [Automatic](https://docs.madelineproto.xyz/docs/LOGIN.html#automatic-now-fully-async) * [Manual (user)](https://docs.madelineproto.xyz/docs/LOGIN.html#manual-user) * [Manual (bot)](https://docs.madelineproto.xyz/docs/LOGIN.html#manual-bot) * [Logout](https://docs.madelineproto.xyz/docs/LOGIN.html#logout) + * [Changing 2FA password](https://docs.madelineproto.xyz/docs/LOGIN.html#changing-2fa-password) * [Features](https://docs.madelineproto.xyz/docs/FEATURES.html) * [Requirements](https://docs.madelineproto.xyz/docs/REQUIREMENTS.html) * [Installation](https://docs.madelineproto.xyz/docs/INSTALLATION.html) @@ -87,11 +88,12 @@ Tip: if you receive an error (or nothing), [send us](https://t.me/pwrtelegramgro * [Simple (manual)](https://docs.madelineproto.xyz/docs/INSTALLATION.html#simple-manual) * [Composer from scratch](https://docs.madelineproto.xyz/docs/INSTALLATION.html#composer-from-scratch) * [Composer from existing project](https://docs.madelineproto.xyz/docs/INSTALLATION.html#composer-from-existing-project) -* [Handling updates](https://docs.madelineproto.xyz/docs/UPDATES.html) +* [Handling updates (new messages)](https://docs.madelineproto.xyz/docs/UPDATES.html) * [Async Event driven](https://docs.madelineproto.xyz/docs/UPDATES.html#async-event-driven) * [Multi-account: Async Combined Event driven update handling](https://docs.madelineproto.xyz/docs/UPDATES.html#async-combined-event-driven) * [Async Callback](https://docs.madelineproto.xyz/docs/UPDATES.html#async-callback) * [Noop (default)](https://docs.madelineproto.xyz/docs/UPDATES.html#noop) + * [Fetch all updates from the beginning](https://docs.madelineproto.xyz/docs/UPDATES.html#fetch-all-updates-from-the-beginning) * [Settings](https://docs.madelineproto.xyz/docs/SETTINGS.html) * [Getting info about the current user](https://docs.madelineproto.xyz/docs/SELF.html) * [Exceptions](https://docs.madelineproto.xyz/docs/EXCEPTIONS.html) @@ -127,19 +129,18 @@ Tip: if you receive an error (or nothing), [send us](https://t.me/pwrtelegramgro * [Download to browser (streaming)](https://docs.madelineproto.xyz/docs/FILES.html#download-to-browser-with-streams) * [Getting progress](https://docs.madelineproto.xyz/docs/FILES.html#getting-progress) * [Getting info about chats](https://docs.madelineproto.xyz/docs/CHAT_INFO.html) - * [Full chat info with full list of participants](https://docs.madelineproto.xyz/docs/CHAT_INFO.html#get_pwr_chat) - * [Full chat info](https://docs.madelineproto.xyz/docs/CHAT_INFO.html#get_full_info) - * [Reduced chat info (very fast)](https://docs.madelineproto.xyz/docs/CHAT_INFO.html#get_info) + * [Full chat info with full list of participants](https://docs.madelineproto.xyz/docs/CHAT_INFO.html#get_pwr_chat-now-fully-async) + * [Full chat info](https://docs.madelineproto.xyz/docs/CHAT_INFO.html#get_full_info-now-fully-async) + * [Reduced chat info (very fast)](https://docs.madelineproto.xyz/docs/CHAT_INFO.html#get_info-now-fully-async) * [Getting all chats (dialogs)](https://docs.madelineproto.xyz/docs/DIALOGS.html) - * [As user](https://docs.madelineproto.xyz/docs/DIALOGS.html#user-get_dialogs) - * [Full dialog info](https://docs.madelineproto.xyz/docs/DIALOGS.html#user-get_full_dialogs) - * [As bot](https://docs.madelineproto.xyz/docs/DIALOGS.html#bot-internal-peer-database) + * [Dialog list](https://docs.madelineproto.xyz/docs/DIALOGS.html#get_dialogs-now-fully-async) + * [Full dialog info](https://docs.madelineproto.xyz/docs/DIALOGS.html#get_full_dialogs-now-fully-async) * [Inline buttons ([now fully async!](https://docs.madelineproto.xyz/docs/ASYNC.html))](https://docs.madelineproto.xyz/docs/INLINE_BUTTONS.html) * [Secret chats](https://docs.madelineproto.xyz/docs/SECRET_CHATS.html) - * [Requesting secret chats](https://docs.madelineproto.xyz/docs/SECRET_CHATS.html#requesting-secret-chats) - * [Accepting secret chats](https://docs.madelineproto.xyz/docs/SECRET_CHATS.html#accepting-secret-chats) - * [Checking secret chat status](https://docs.madelineproto.xyz/docs/SECRET_CHATS.html#checking-secret-chat-status) - * [Sending secret messages](https://docs.madelineproto.xyz/docs/SECRET_CHATS.html#sending-secret-messages) + * [Requesting secret chats](https://docs.madelineproto.xyz/docs/SECRET_CHATS.html#requesting-secret-chats-now-fully-async) + * [Accepting secret chats](https://docs.madelineproto.xyz/docs/SECRET_CHATS.html#accepting-secret-chats-now-fully-async) + * [Checking secret chat status](https://docs.madelineproto.xyz/docs/SECRET_CHATS.html#checking-secret-chat-status-now-fully-async) + * [Sending secret messages](https://docs.madelineproto.xyz/docs/SECRET_CHATS.html#sending-secret-messages-now-fully-async) * [Lua binding](https://docs.madelineproto.xyz/docs/LUA.html) * [Using a proxy](https://docs.madelineproto.xyz/docs/PROXY.html) * [How to set a proxy](https://docs.madelineproto.xyz/docs/PROXY.html#how-to-set-a-proxy) @@ -152,6 +153,7 @@ Tip: if you receive an error (or nothing), [send us](https://t.me/pwrtelegramgro * [FULL API Documentation with descriptions](https://docs.madelineproto.xyz/API_docs/methods/) * [Logout](https://docs.madelineproto.xyz/logout.html) * [Login](https://docs.madelineproto.xyz/docs/LOGIN.html) + * [Change 2FA password](https://docs.madelineproto.xyz/update_2fa.html) * [Get all chats, broadcast a message to all chats](https://docs.madelineproto.xyz/docs/DIALOGS.html) * [Get the full participant list of a channel/group/supergroup](https://docs.madelineproto.xyz/get_pwr_chat.html) * [Get full info about a user/chat/supergroup/channel](https://docs.madelineproto.xyz/get_full_info.html) diff --git a/docs b/docs index 6fe646f4..04a2ff69 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 6fe646f4a22e8e0ccf5d8a8c562c6d7499a8a17c +Subproject commit 04a2ff69f3524e7ce684791cd51614e9261c4d82 diff --git a/src/danog/MadelineProto/APIFactory.php b/src/danog/MadelineProto/APIFactory.php index e1238963..08565961 100644 --- a/src/danog/MadelineProto/APIFactory.php +++ b/src/danog/MadelineProto/APIFactory.php @@ -23,42 +23,6 @@ use danog\MadelineProto\Async\AsyncConstruct; class APIFactory extends AsyncConstruct { - /** - * @internal this is a internal property generated by build_docs.php, don't change manually - * - * @var langpack - */ - public $langpack; - /** - * @internal this is a internal property generated by build_docs.php, don't change manually - * - * @var phone - */ - public $phone; - /** - * @internal this is a internal property generated by build_docs.php, don't change manually - * - * @var stickers - */ - public $stickers; - /** - * @internal this is a internal property generated by build_docs.php, don't change manually - * - * @var payments - */ - public $payments; - /** - * @internal this is a internal property generated by build_docs.php, don't change manually - * - * @var bots - */ - public $bots; - /** - * @internal this is a internal property generated by build_docs.php, don't change manually - * - * @var channels - */ - public $channels; /** * @internal this is a internal property generated by build_docs.php, don't change manually * diff --git a/src/danog/MadelineProto/InternalDoc.php b/src/danog/MadelineProto/InternalDoc.php index e1fb8073..924169ff 100644 --- a/src/danog/MadelineProto/InternalDoc.php +++ b/src/danog/MadelineProto/InternalDoc.php @@ -12,15 +12,35 @@ interface auth /** * @param array params [ * string phone_number, + * ] + * + * @return auth_CheckedPhone + */ + public function checkPhone(array $params); + + /** + * @param array params [ + * string phone_number, + * int sms_type, * int api_id, * string api_hash, - * CodeSettings settings, + * string lang_code, * ] * * @return auth_SentCode */ public function sendCode(array $params); + /** + * @param array params [ + * string phone_number, + * string phone_code_hash, + * ] + * + * @return bool + */ + public function sendCall(array $params); + /** * @param array params [ * string phone_number, @@ -55,6 +75,16 @@ interface auth */ public function resetAuthorizations(); + /** + * @param array params [ + * string phone_numbers, + * string message, + * ] + * + * @return bool + */ + public function sendInvites(array $params); + /** * @param array params [ * int dc_id, @@ -86,50 +116,6 @@ interface auth */ public function bindTempAuthKey(array $params); - /** - * @param array params [ - * int api_id, - * string api_hash, - * string bot_auth_token, - * ] - * - * @return auth_Authorization - */ - public function importBotAuthorization(array $params); - - /** - * @param array params [ - * InputCheckPasswordSRP password, - * ] - * - * @return auth_Authorization - */ - public function checkPassword(array $params); - - /** - * @return auth_PasswordRecovery - */ - public function requestPasswordRecovery(); - - /** - * @param array params [ - * string code, - * ] - * - * @return auth_Authorization - */ - public function recoverPassword(array $params); - - /** - * @param array params [ - * string phone_number, - * string phone_code_hash, - * ] - * - * @return auth_SentCode - */ - public function resendCode(array $params); - /** * @param array params [ * string phone_number, @@ -138,16 +124,7 @@ interface auth * * @return bool */ - public function cancelCode(array $params); - - /** - * @param array params [ - * long except_auth_keys, - * ] - * - * @return bool - */ - public function dropTempAuthKeys(array $params); + public function sendSms(array $params); } interface account @@ -156,9 +133,11 @@ interface account * @param array params [ * int token_type, * string token, + * string device_model, + * string system_version, + * string app_version, * Bool app_sandbox, - * bytes secret, - * int other_uids, + * string lang_code, * ] * * @return bool @@ -169,7 +148,6 @@ interface account * @param array params [ * int token_type, * string token, - * int other_uids, * ] * * @return bool @@ -204,7 +182,6 @@ interface account * @param array params [ * string first_name, * string last_name, - * string about, * ] * * @return User @@ -221,23 +198,9 @@ interface account public function updateStatus(array $params); /** - * @param array params [ - * int hash, - * ] - * - * @return account_WallPapers + * @return Vector_of_WallPaper */ - public function getWallPapers(array $params); - - /** - * @param array params [ - * InputPeer peer, - * ReportReason reason, - * ] - * - * @return bool - */ - public function reportPeer(array $params); + public function getWallPapers(); /** * @param array params [ @@ -256,391 +219,6 @@ interface account * @return User */ public function updateUsername(array $params); - - /** - * @param array params [ - * InputPrivacyKey key, - * ] - * - * @return account_PrivacyRules - */ - public function getPrivacy(array $params); - - /** - * @param array params [ - * InputPrivacyKey key, - * InputPrivacyRule rules, - * ] - * - * @return account_PrivacyRules - */ - public function setPrivacy(array $params); - - /** - * @param array params [ - * string reason, - * ] - * - * @return bool - */ - public function deleteAccount(array $params); - - /** - * @return AccountDaysTTL - */ - public function getAccountTTL(); - - /** - * @param array params [ - * AccountDaysTTL ttl, - * ] - * - * @return bool - */ - public function setAccountTTL(array $params); - - /** - * @param array params [ - * string phone_number, - * CodeSettings settings, - * ] - * - * @return auth_SentCode - */ - public function sendChangePhoneCode(array $params); - - /** - * @param array params [ - * string phone_number, - * string phone_code_hash, - * string phone_code, - * ] - * - * @return User - */ - public function changePhone(array $params); - - /** - * @param array params [ - * int period, - * ] - * - * @return bool - */ - public function updateDeviceLocked(array $params); - - /** - * @return account_Authorizations - */ - public function getAuthorizations(); - - /** - * @param array params [ - * long hash, - * ] - * - * @return bool - */ - public function resetAuthorization(array $params); - - /** - * @return account_Password - */ - public function getPassword(); - - /** - * @param array params [ - * InputCheckPasswordSRP password, - * ] - * - * @return account_PasswordSettings - */ - public function getPasswordSettings(array $params); - - /** - * @param array params [ - * InputCheckPasswordSRP password, - * account_PasswordInputSettings new_settings, - * ] - * - * @return bool - */ - public function updatePasswordSettings(array $params); - - /** - * @param array params [ - * string hash, - * CodeSettings settings, - * ] - * - * @return auth_SentCode - */ - public function sendConfirmPhoneCode(array $params); - - /** - * @param array params [ - * string phone_code_hash, - * string phone_code, - * ] - * - * @return bool - */ - public function confirmPhone(array $params); - - /** - * @param array params [ - * InputCheckPasswordSRP password, - * int period, - * ] - * - * @return account_TmpPassword - */ - public function getTmpPassword(array $params); - - /** - * @return account_WebAuthorizations - */ - public function getWebAuthorizations(); - - /** - * @param array params [ - * long hash, - * ] - * - * @return bool - */ - public function resetWebAuthorization(array $params); - - /** - * @return bool - */ - public function resetWebAuthorizations(); - - /** - * @return Vector_of_SecureValue - */ - public function getAllSecureValues(); - - /** - * @param array params [ - * SecureValueType types, - * ] - * - * @return Vector_of_SecureValue - */ - public function getSecureValue(array $params); - - /** - * @param array params [ - * InputSecureValue value, - * long secure_secret_id, - * ] - * - * @return SecureValue - */ - public function saveSecureValue(array $params); - - /** - * @param array params [ - * SecureValueType types, - * ] - * - * @return bool - */ - public function deleteSecureValue(array $params); - - /** - * @param array params [ - * int bot_id, - * string scope, - * string public_key, - * ] - * - * @return account_AuthorizationForm - */ - public function getAuthorizationForm(array $params); - - /** - * @param array params [ - * int bot_id, - * string scope, - * string public_key, - * SecureValueHash value_hashes, - * SecureCredentialsEncrypted credentials, - * ] - * - * @return bool - */ - public function acceptAuthorization(array $params); - - /** - * @param array params [ - * string phone_number, - * CodeSettings settings, - * ] - * - * @return auth_SentCode - */ - public function sendVerifyPhoneCode(array $params); - - /** - * @param array params [ - * string phone_number, - * string phone_code_hash, - * string phone_code, - * ] - * - * @return bool - */ - public function verifyPhone(array $params); - - /** - * @param array params [ - * string email, - * ] - * - * @return account_SentEmailCode - */ - public function sendVerifyEmailCode(array $params); - - /** - * @param array params [ - * string email, - * string code, - * ] - * - * @return bool - */ - public function verifyEmail(array $params); - - /** - * @param array params [ - * boolean contacts, - * boolean message_users, - * boolean message_chats, - * boolean message_megagroups, - * boolean message_channels, - * boolean files, - * int file_max_size, - * ] - * - * @return account_Takeout - */ - public function initTakeoutSession(array $params); - - /** - * @param array params [ - * boolean success, - * ] - * - * @return bool - */ - public function finishTakeoutSession(array $params); - - /** - * @param array params [ - * string code, - * ] - * - * @return bool - */ - public function confirmPasswordEmail(array $params); - - /** - * @return bool - */ - public function resendPasswordEmail(); - - /** - * @return bool - */ - public function cancelPasswordEmail(); - - /** - * @return bool - */ - public function getContactSignUpNotification(); - - /** - * @param array params [ - * Bool silent, - * ] - * - * @return bool - */ - public function setContactSignUpNotification(array $params); - - /** - * @param array params [ - * boolean compare_sound, - * InputNotifyPeer peer, - * ] - * - * @return Updates - */ - public function getNotifyExceptions(array $params); - - /** - * @param array params [ - * InputWallPaper wallpaper, - * ] - * - * @return WallPaper - */ - public function getWallPaper(array $params); - - /** - * @param array params [ - * InputFile file, - * string mime_type, - * WallPaperSettings settings, - * ] - * - * @return WallPaper - */ - public function uploadWallPaper(array $params); - - /** - * @param array params [ - * InputWallPaper wallpaper, - * Bool unsave, - * WallPaperSettings settings, - * ] - * - * @return bool - */ - public function saveWallPaper(array $params); - - /** - * @param array params [ - * InputWallPaper wallpaper, - * WallPaperSettings settings, - * ] - * - * @return bool - */ - public function installWallPaper(array $params); - - /** - * @return bool - */ - public function resetWallPapers(); - - /** - * @return account_AutoDownloadSettings - */ - public function getAutoDownloadSettings(); - - /** - * @param array params [ - * boolean low, - * boolean high, - * AutoDownloadSettings settings, - * ] - * - * @return bool - */ - public function saveAutoDownloadSettings(array $params); } interface users @@ -662,29 +240,10 @@ interface users * @return UserFull */ public function getFullUser(array $params); - - /** - * @param array params [ - * InputUser id, - * SecureValueError errors, - * ] - * - * @return bool - */ - public function setSecureValueErrors(array $params); } interface contacts { - /** - * @param array params [ - * int hash, - * ] - * - * @return Vector_of_int - */ - public function getContactIDs(array $params); - /** * @return Vector_of_ContactStatus */ @@ -692,7 +251,7 @@ interface contacts /** * @param array params [ - * int hash, + * string hash, * ] * * @return contacts_Contacts @@ -702,12 +261,22 @@ interface contacts /** * @param array params [ * InputContact contacts, + * Bool replace, * ] * * @return contacts_ImportedContacts */ public function importContacts(array $params); + /** + * @param array params [ + * int limit, + * ] + * + * @return contacts_Suggested + */ + public function getSuggested(array $params); + /** * @param array params [ * InputUser id, @@ -726,15 +295,6 @@ interface contacts */ public function deleteContacts(array $params); - /** - * @param array params [ - * string phones, - * ] - * - * @return bool - */ - public function deleteByPhones(array $params); - /** * @param array params [ * InputUser id, @@ -763,6 +323,20 @@ interface contacts */ public function getBlocked(array $params); + /** + * @return Vector_of_int + */ + public function exportCard(); + + /** + * @param array params [ + * int export_card, + * ] + * + * @return User + */ + public function importCard(array $params); + /** * @param array params [ * string q, @@ -772,68 +346,13 @@ interface contacts * @return contacts_Found */ public function search(array $params); - - /** - * @param array params [ - * string username, - * ] - * - * @return contacts_ResolvedPeer - */ - public function resolveUsername(array $params); - - /** - * @param array params [ - * boolean correspondents, - * boolean bots_pm, - * boolean bots_inline, - * boolean phone_calls, - * boolean groups, - * boolean channels, - * int offset, - * int limit, - * int hash, - * ] - * - * @return contacts_TopPeers - */ - public function getTopPeers(array $params); - - /** - * @param array params [ - * TopPeerCategory category, - * InputPeer peer, - * ] - * - * @return bool - */ - public function resetTopPeerRating(array $params); - - /** - * @return bool - */ - public function resetSaved(); - - /** - * @return Vector_of_SavedContact - */ - public function getSaved(); - - /** - * @param array params [ - * Bool enabled, - * ] - * - * @return bool - */ - public function toggleTopPeers(array $params); } interface messages { /** * @param array params [ - * InputMessage id, + * int id, * ] * * @return messages_Messages @@ -842,12 +361,9 @@ interface messages /** * @param array params [ - * boolean exclude_pinned, - * int offset_date, - * int offset_id, - * InputPeer offset_peer, + * int offset, + * int max_id, * int limit, - * int hash, * ] * * @return messages_Dialogs @@ -857,13 +373,9 @@ interface messages /** * @param array params [ * InputPeer peer, - * int offset_id, - * int offset_date, - * int add_offset, - * int limit, + * int offset, * int max_id, - * int min_id, - * int hash, + * int limit, * ] * * @return messages_Messages @@ -874,16 +386,12 @@ interface messages * @param array params [ * InputPeer peer, * string q, - * InputUser from_id, * MessagesFilter filter, * int min_date, * int max_date, - * int offset_id, - * int add_offset, - * int limit, + * int offset, * int max_id, - * int min_id, - * int hash, + * int limit, * ] * * @return messages_Messages @@ -894,18 +402,18 @@ interface messages * @param array params [ * InputPeer peer, * int max_id, + * int offset, + * Bool read_contents, * ] * - * @return messages_AffectedMessages + * @return messages_AffectedHistory */ public function readHistory(array $params); /** * @param array params [ - * boolean just_clear, - * boolean revoke, * InputPeer peer, - * int max_id, + * int offset, * ] * * @return messages_AffectedHistory @@ -914,11 +422,10 @@ interface messages /** * @param array params [ - * boolean revoke, * int id, * ] * - * @return messages_AffectedMessages + * @return Vector_of_int */ public function deleteMessages(array $params); @@ -927,7 +434,7 @@ interface messages * int max_id, * ] * - * @return Vector_of_ReceivedNotifyMessage + * @return Vector_of_int */ public function receivedMessages(array $params); @@ -943,50 +450,31 @@ interface messages /** * @param array params [ - * boolean no_webpage, - * boolean silent, - * boolean background, - * boolean clear_draft, * InputPeer peer, - * int reply_to_msg_id, * string message, - * ReplyMarkup reply_markup, - * MessageEntity entities, * ] * - * @return Updates + * @return messages_SentMessage */ public function sendMessage(array $params); /** * @param array params [ - * boolean silent, - * boolean background, - * boolean clear_draft, * InputPeer peer, - * int reply_to_msg_id, * InputMedia media, - * string message, - * ReplyMarkup reply_markup, - * MessageEntity entities, * ] * - * @return Updates + * @return messages_StatedMessage */ public function sendMedia(array $params); /** * @param array params [ - * boolean silent, - * boolean background, - * boolean with_my_score, - * boolean grouped, - * InputPeer from_peer, + * InputPeer peer, * int id, - * InputPeer to_peer, * ] * - * @return Updates + * @return messages_StatedMessages */ public function forwardMessages(array $params); @@ -999,35 +487,6 @@ interface messages */ public function reportSpam(array $params); - /** - * @param array params [ - * InputPeer peer, - * ] - * - * @return bool - */ - public function hideReportSpam(array $params); - - /** - * @param array params [ - * InputPeer peer, - * ] - * - * @return PeerSettings - */ - public function getPeerSettings(array $params); - - /** - * @param array params [ - * InputPeer peer, - * int id, - * ReportReason reason, - * ] - * - * @return bool - */ - public function report(array $params); - /** * @param array params [ * int id, @@ -1052,7 +511,7 @@ interface messages * string title, * ] * - * @return Updates + * @return messages_StatedMessage */ public function editChatTitle(array $params); @@ -1062,7 +521,7 @@ interface messages * InputChatPhoto photo, * ] * - * @return Updates + * @return messages_StatedMessage */ public function editChatPhoto(array $params); @@ -1073,7 +532,7 @@ interface messages * int fwd_limit, * ] * - * @return Updates + * @return messages_StatedMessage */ public function addChatUser(array $params); @@ -1083,7 +542,7 @@ interface messages * InputUser user_id, * ] * - * @return Updates + * @return messages_StatedMessage */ public function deleteChatUser(array $params); @@ -1093,10 +552,31 @@ interface messages * string title, * ] * - * @return Updates + * @return messages_StatedMessage */ public function createChat(array $params); + /** + * @param array params [ + * InputPeer peer, + * int id, + * ] + * + * @return messages_StatedMessage + */ + public function forwardMessage(array $params); + + /** + * @param array params [ + * InputUser contacts, + * string message, + * InputMedia media, + * ] + * + * @return messages_StatedMessages + */ + public function sendBroadcast(array $params); + /** * @param array params [ * int version, @@ -1197,782 +677,14 @@ interface messages */ public function receivedQueue(array $params); - /** - * @param array params [ - * InputEncryptedChat peer, - * ] - * - * @return bool - */ - public function reportEncryptedSpam(array $params); - /** * @param array params [ * int id, * ] * - * @return messages_AffectedMessages - */ - public function readMessageContents(array $params); - - /** - * @param array params [ - * string emoticon, - * int hash, - * ] - * - * @return messages_Stickers - */ - public function getStickers(array $params); - - /** - * @param array params [ - * int hash, - * ] - * - * @return messages_AllStickers - */ - public function getAllStickers(array $params); - - /** - * @param array params [ - * string message, - * MessageEntity entities, - * ] - * - * @return MessageMedia - */ - public function getWebPagePreview(array $params); - - /** - * @param array params [ - * InputPeer peer, - * ] - * - * @return ExportedChatInvite - */ - public function exportChatInvite(array $params); - - /** - * @param array params [ - * string hash, - * ] - * - * @return ChatInvite - */ - public function checkChatInvite(array $params); - - /** - * @param array params [ - * string hash, - * ] - * - * @return Updates - */ - public function importChatInvite(array $params); - - /** - * @param array params [ - * InputStickerSet stickerset, - * ] - * - * @return messages_StickerSet - */ - public function getStickerSet(array $params); - - /** - * @param array params [ - * InputStickerSet stickerset, - * Bool archived, - * ] - * - * @return messages_StickerSetInstallResult - */ - public function installStickerSet(array $params); - - /** - * @param array params [ - * InputStickerSet stickerset, - * ] - * - * @return bool - */ - public function uninstallStickerSet(array $params); - - /** - * @param array params [ - * InputUser bot, - * InputPeer peer, - * string start_param, - * ] - * - * @return Updates - */ - public function startBot(array $params); - - /** - * @param array params [ - * InputPeer peer, - * int id, - * Bool increment, - * ] - * * @return Vector_of_int */ - public function getMessagesViews(array $params); - - /** - * @param array params [ - * int chat_id, - * InputUser user_id, - * Bool is_admin, - * ] - * - * @return bool - */ - public function editChatAdmin(array $params); - - /** - * @param array params [ - * int chat_id, - * ] - * - * @return Updates - */ - public function migrateChat(array $params); - - /** - * @param array params [ - * string q, - * int offset_date, - * InputPeer offset_peer, - * int offset_id, - * int limit, - * ] - * - * @return messages_Messages - */ - public function searchGlobal(array $params); - - /** - * @param array params [ - * boolean masks, - * long order, - * ] - * - * @return bool - */ - public function reorderStickerSets(array $params); - - /** - * @param array params [ - * bytes sha256, - * int size, - * string mime_type, - * ] - * - * @return Document - */ - public function getDocumentByHash(array $params); - - /** - * @param array params [ - * string q, - * int offset, - * ] - * - * @return messages_FoundGifs - */ - public function searchGifs(array $params); - - /** - * @param array params [ - * int hash, - * ] - * - * @return messages_SavedGifs - */ - public function getSavedGifs(array $params); - - /** - * @param array params [ - * InputDocument id, - * Bool unsave, - * ] - * - * @return bool - */ - public function saveGif(array $params); - - /** - * @param array params [ - * InputUser bot, - * InputPeer peer, - * InputGeoPoint geo_point, - * string query, - * string offset, - * ] - * - * @return messages_BotResults - */ - public function getInlineBotResults(array $params); - - /** - * @param array params [ - * boolean gallery, - * boolean private, - * long query_id, - * InputBotInlineResult results, - * int cache_time, - * string next_offset, - * InlineBotSwitchPM switch_pm, - * ] - * - * @return bool - */ - public function setInlineBotResults(array $params); - - /** - * @param array params [ - * boolean silent, - * boolean background, - * boolean clear_draft, - * boolean hide_via, - * InputPeer peer, - * int reply_to_msg_id, - * long query_id, - * string id, - * ] - * - * @return Updates - */ - public function sendInlineBotResult(array $params); - - /** - * @param array params [ - * InputPeer peer, - * int id, - * ] - * - * @return messages_MessageEditData - */ - public function getMessageEditData(array $params); - - /** - * @param array params [ - * boolean no_webpage, - * InputPeer peer, - * int id, - * string message, - * InputMedia media, - * ReplyMarkup reply_markup, - * MessageEntity entities, - * ] - * - * @return Updates - */ - public function editMessage(array $params); - - /** - * @param array params [ - * boolean no_webpage, - * InputBotInlineMessageID id, - * string message, - * InputMedia media, - * ReplyMarkup reply_markup, - * MessageEntity entities, - * ] - * - * @return bool - */ - public function editInlineBotMessage(array $params); - - /** - * @param array params [ - * boolean game, - * InputPeer peer, - * int msg_id, - * bytes data, - * ] - * - * @return messages_BotCallbackAnswer - */ - public function getBotCallbackAnswer(array $params); - - /** - * @param array params [ - * boolean alert, - * long query_id, - * string message, - * string url, - * int cache_time, - * ] - * - * @return bool - */ - public function setBotCallbackAnswer(array $params); - - /** - * @param array params [ - * InputDialogPeer peers, - * ] - * - * @return messages_PeerDialogs - */ - public function getPeerDialogs(array $params); - - /** - * @param array params [ - * boolean no_webpage, - * int reply_to_msg_id, - * InputPeer peer, - * string message, - * MessageEntity entities, - * ] - * - * @return bool - */ - public function saveDraft(array $params); - - /** - * @return Updates - */ - public function getAllDrafts(); - - /** - * @param array params [ - * int hash, - * ] - * - * @return messages_FeaturedStickers - */ - public function getFeaturedStickers(array $params); - - /** - * @param array params [ - * long id, - * ] - * - * @return bool - */ - public function readFeaturedStickers(array $params); - - /** - * @param array params [ - * boolean attached, - * int hash, - * ] - * - * @return messages_RecentStickers - */ - public function getRecentStickers(array $params); - - /** - * @param array params [ - * boolean attached, - * InputDocument id, - * Bool unsave, - * ] - * - * @return bool - */ - public function saveRecentSticker(array $params); - - /** - * @param array params [ - * boolean attached, - * ] - * - * @return bool - */ - public function clearRecentStickers(array $params); - - /** - * @param array params [ - * boolean masks, - * long offset_id, - * int limit, - * ] - * - * @return messages_ArchivedStickers - */ - public function getArchivedStickers(array $params); - - /** - * @param array params [ - * int hash, - * ] - * - * @return messages_AllStickers - */ - public function getMaskStickers(array $params); - - /** - * @param array params [ - * InputStickeredMedia media, - * ] - * - * @return Vector_of_StickerSetCovered - */ - public function getAttachedStickers(array $params); - - /** - * @param array params [ - * boolean edit_message, - * boolean force, - * InputPeer peer, - * int id, - * InputUser user_id, - * int score, - * ] - * - * @return Updates - */ - public function setGameScore(array $params); - - /** - * @param array params [ - * boolean edit_message, - * boolean force, - * InputBotInlineMessageID id, - * InputUser user_id, - * int score, - * ] - * - * @return bool - */ - public function setInlineGameScore(array $params); - - /** - * @param array params [ - * InputPeer peer, - * int id, - * InputUser user_id, - * ] - * - * @return messages_HighScores - */ - public function getGameHighScores(array $params); - - /** - * @param array params [ - * InputBotInlineMessageID id, - * InputUser user_id, - * ] - * - * @return messages_HighScores - */ - public function getInlineGameHighScores(array $params); - - /** - * @param array params [ - * InputUser user_id, - * int max_id, - * int limit, - * ] - * - * @return messages_Chats - */ - public function getCommonChats(array $params); - - /** - * @param array params [ - * int except_ids, - * ] - * - * @return messages_Chats - */ - public function getAllChats(array $params); - - /** - * @param array params [ - * string url, - * int hash, - * ] - * - * @return WebPage - */ - public function getWebPage(array $params); - - /** - * @param array params [ - * boolean pinned, - * InputDialogPeer peer, - * ] - * - * @return bool - */ - public function toggleDialogPin(array $params); - - /** - * @param array params [ - * boolean force, - * InputDialogPeer order, - * ] - * - * @return bool - */ - public function reorderPinnedDialogs(array $params); - - /** - * @return messages_PeerDialogs - */ - public function getPinnedDialogs(); - - /** - * @param array params [ - * long query_id, - * string error, - * ShippingOption shipping_options, - * ] - * - * @return bool - */ - public function setBotShippingResults(array $params); - - /** - * @param array params [ - * boolean success, - * long query_id, - * string error, - * ] - * - * @return bool - */ - public function setBotPrecheckoutResults(array $params); - - /** - * @param array params [ - * InputPeer peer, - * InputMedia media, - * ] - * - * @return MessageMedia - */ - public function uploadMedia(array $params); - - /** - * @param array params [ - * InputPeer peer, - * int reply_to_msg_id, - * ] - * - * @return Updates - */ - public function sendScreenshotNotification(array $params); - - /** - * @param array params [ - * int hash, - * ] - * - * @return messages_FavedStickers - */ - public function getFavedStickers(array $params); - - /** - * @param array params [ - * InputDocument id, - * Bool unfave, - * ] - * - * @return bool - */ - public function faveSticker(array $params); - - /** - * @param array params [ - * InputPeer peer, - * int offset_id, - * int add_offset, - * int limit, - * int max_id, - * int min_id, - * ] - * - * @return messages_Messages - */ - public function getUnreadMentions(array $params); - - /** - * @param array params [ - * InputPeer peer, - * ] - * - * @return messages_AffectedHistory - */ - public function readMentions(array $params); - - /** - * @param array params [ - * InputPeer peer, - * int limit, - * int hash, - * ] - * - * @return messages_Messages - */ - public function getRecentLocations(array $params); - - /** - * @param array params [ - * boolean silent, - * boolean background, - * boolean clear_draft, - * InputPeer peer, - * int reply_to_msg_id, - * InputSingleMedia multi_media, - * ] - * - * @return Updates - */ - public function sendMultiMedia(array $params); - - /** - * @param array params [ - * InputEncryptedChat peer, - * InputEncryptedFile file, - * ] - * - * @return EncryptedFile - */ - public function uploadEncryptedFile(array $params); - - /** - * @param array params [ - * boolean exclude_featured, - * string q, - * int hash, - * ] - * - * @return messages_FoundStickerSets - */ - public function searchStickerSets(array $params); - - /** - * @return Vector_of_MessageRange - */ - public function getSplitRanges(); - - /** - * @param array params [ - * boolean unread, - * InputDialogPeer peer, - * ] - * - * @return bool - */ - public function markDialogUnread(array $params); - - /** - * @return Vector_of_DialogPeer - */ - public function getDialogUnreadMarks(); - - /** - * @return bool - */ - public function clearAllDrafts(); - - /** - * @param array params [ - * boolean silent, - * InputPeer peer, - * int id, - * ] - * - * @return Updates - */ - public function updatePinnedMessage(array $params); - - /** - * @param array params [ - * InputPeer peer, - * int msg_id, - * bytes options, - * ] - * - * @return Updates - */ - public function sendVote(array $params); - - /** - * @param array params [ - * InputPeer peer, - * int msg_id, - * ] - * - * @return Updates - */ - public function getPollResults(array $params); - - /** - * @param array params [ - * InputPeer peer, - * ] - * - * @return ChatOnlines - */ - public function getOnlines(array $params); - - /** - * @param array params [ - * boolean dark, - * InputPeer peer, - * string params, - * ] - * - * @return StatsURL - */ - public function getStatsURL(array $params); - - /** - * @param array params [ - * InputPeer peer, - * string about, - * ] - * - * @return bool - */ - public function editChatAbout(array $params); - - /** - * @param array params [ - * InputPeer peer, - * ChatBannedRights banned_rights, - * ] - * - * @return Updates - */ - public function editChatDefaultBannedRights(array $params); - - /** - * @param array params [ - * string lang_code, - * ] - * - * @return EmojiKeywordsDifference - */ - public function getEmojiKeywords(array $params); - - /** - * @param array params [ - * string lang_code, - * int from_version, - * ] - * - * @return EmojiKeywordsDifference - */ - public function getEmojiKeywordsDifference(array $params); - - /** - * @param array params [ - * string lang_code, - * ] - * - * @return EmojiURL - */ - public function getEmojiURL(array $params); + public function readMessageContents(array $params); } interface updates @@ -1985,7 +697,6 @@ interface updates /** * @param array params [ * int pts, - * int pts_total_limit, * int date, * int qts, * ] @@ -1993,19 +704,6 @@ interface updates * @return updates_Difference */ public function getDifference(array $params); - - /** - * @param array params [ - * boolean force, - * InputChannel channel, - * ChannelMessagesFilter filter, - * int pts, - * int limit, - * ] - * - * @return updates_ChannelDifference - */ - public function getChannelDifference(array $params); } interface photos @@ -2013,6 +711,7 @@ interface photos /** * @param array params [ * InputPhoto id, + * InputPhotoCrop crop, * ] * * @return UserProfilePhoto @@ -2022,6 +721,9 @@ interface photos /** * @param array params [ * InputFile file, + * string caption, + * InputGeoPoint geo_point, + * InputPhotoCrop crop, * ] * * @return photos_Photo @@ -2041,7 +743,7 @@ interface photos * @param array params [ * InputUser user_id, * int offset, - * long max_id, + * int max_id, * int limit, * ] * @@ -2085,58 +787,6 @@ interface upload * @return bool */ public function saveBigFilePart(array $params); - - /** - * @param array params [ - * InputWebFileLocation location, - * int offset, - * int limit, - * ] - * - * @return upload_WebFile - */ - public function getWebFile(array $params); - - /** - * @param array params [ - * bytes file_token, - * int offset, - * int limit, - * ] - * - * @return upload_CdnFile - */ - public function getCdnFile(array $params); - - /** - * @param array params [ - * bytes file_token, - * bytes request_token, - * ] - * - * @return Vector_of_FileHash - */ - public function reuploadCdnFile(array $params); - - /** - * @param array params [ - * bytes file_token, - * int offset, - * ] - * - * @return Vector_of_FileHash - */ - public function getCdnFileHashes(array $params); - - /** - * @param array params [ - * InputFileLocation location, - * int offset, - * ] - * - * @return Vector_of_FileHash - */ - public function getFileHashes(array $params); } interface help @@ -2153,89 +803,16 @@ interface help /** * @param array params [ - * string source, + * string device_model, + * string system_version, + * string app_version, + * string lang_code, * ] * * @return help_AppUpdate */ public function getAppUpdate(array $params); - /** - * @return help_InviteText - */ - public function getInviteText(); - - /** - * @return help_Support - */ - public function getSupport(); - - /** - * @param array params [ - * string prev_app_version, - * ] - * - * @return Updates - */ - public function getAppChangelog(array $params); - - /** - * @param array params [ - * int pending_updates_count, - * string message, - * ] - * - * @return bool - */ - public function setBotUpdatesStatus(array $params); - - /** - * @return CdnConfig - */ - public function getCdnConfig(); - - /** - * @param array params [ - * string referer, - * ] - * - * @return help_RecentMeUrls - */ - public function getRecentMeUrls(array $params); - - /** - * @return help_ProxyData - */ - public function getProxyData(); - - /** - * @return help_TermsOfServiceUpdate - */ - public function getTermsOfServiceUpdate(); - - /** - * @param array params [ - * DataJSON id, - * ] - * - * @return bool - */ - public function acceptTermsOfService(array $params); - - /** - * @param array params [ - * string path, - * ] - * - * @return help_DeepLinkInfo - */ - public function getDeepLinkInfo(array $params); - - /** - * @return JSONValue - */ - public function getAppConfig(); - /** * @param array params [ * InputAppEvent events, @@ -2247,597 +824,15 @@ interface help /** * @param array params [ - * int hash, - * ] - * - * @return help_PassportConfig - */ - public function getPassportConfig(array $params); - - /** - * @return help_SupportName - */ - public function getSupportName(); - - /** - * @param array params [ - * InputUser user_id, - * ] - * - * @return help_UserInfo - */ - public function getUserInfo(array $params); - - /** - * @param array params [ - * InputUser user_id, - * string message, - * MessageEntity entities, - * ] - * - * @return help_UserInfo - */ - public function editUserInfo(array $params); -} - -interface channels -{ - /** - * @param array params [ - * InputChannel channel, - * int max_id, - * ] - * - * @return bool - */ - public function readHistory(array $params); - - /** - * @param array params [ - * InputChannel channel, - * int id, - * ] - * - * @return messages_AffectedMessages - */ - public function deleteMessages(array $params); - - /** - * @param array params [ - * InputChannel channel, - * InputUser user_id, - * ] - * - * @return messages_AffectedHistory - */ - public function deleteUserHistory(array $params); - - /** - * @param array params [ - * InputChannel channel, - * InputUser user_id, - * int id, - * ] - * - * @return bool - */ - public function reportSpam(array $params); - - /** - * @param array params [ - * InputChannel channel, - * InputMessage id, - * ] - * - * @return messages_Messages - */ - public function getMessages(array $params); - - /** - * @param array params [ - * InputChannel channel, - * ChannelParticipantsFilter filter, - * int offset, - * int limit, - * int hash, - * ] - * - * @return channels_ChannelParticipants - */ - public function getParticipants(array $params); - - /** - * @param array params [ - * InputChannel channel, - * InputUser user_id, - * ] - * - * @return channels_ChannelParticipant - */ - public function getParticipant(array $params); - - /** - * @param array params [ - * InputChannel id, - * ] - * - * @return messages_Chats - */ - public function getChannels(array $params); - - /** - * @param array params [ - * InputChannel channel, - * ] - * - * @return messages_ChatFull - */ - public function getFullChannel(array $params); - - /** - * @param array params [ - * boolean broadcast, - * boolean megagroup, - * string title, - * string about, - * ] - * - * @return Updates - */ - public function createChannel(array $params); - - /** - * @param array params [ - * InputChannel channel, - * InputUser user_id, - * ChatAdminRights admin_rights, - * ] - * - * @return Updates - */ - public function editAdmin(array $params); - - /** - * @param array params [ - * InputChannel channel, - * string title, - * ] - * - * @return Updates - */ - public function editTitle(array $params); - - /** - * @param array params [ - * InputChannel channel, - * InputChatPhoto photo, - * ] - * - * @return Updates - */ - public function editPhoto(array $params); - - /** - * @param array params [ - * InputChannel channel, - * string username, - * ] - * - * @return bool - */ - public function checkUsername(array $params); - - /** - * @param array params [ - * InputChannel channel, - * string username, - * ] - * - * @return bool - */ - public function updateUsername(array $params); - - /** - * @param array params [ - * InputChannel channel, - * ] - * - * @return Updates - */ - public function joinChannel(array $params); - - /** - * @param array params [ - * InputChannel channel, - * ] - * - * @return Updates - */ - public function leaveChannel(array $params); - - /** - * @param array params [ - * InputChannel channel, - * InputUser users, - * ] - * - * @return Updates - */ - public function inviteToChannel(array $params); - - /** - * @param array params [ - * InputChannel channel, - * ] - * - * @return Updates - */ - public function deleteChannel(array $params); - - /** - * @param array params [ - * InputChannel channel, - * int id, - * Bool grouped, - * ] - * - * @return ExportedMessageLink - */ - public function exportMessageLink(array $params); - - /** - * @param array params [ - * InputChannel channel, - * Bool enabled, - * ] - * - * @return Updates - */ - public function toggleSignatures(array $params); - - /** - * @return messages_Chats - */ - public function getAdminedPublicChannels(); - - /** - * @param array params [ - * InputChannel channel, - * InputUser user_id, - * ChatBannedRights banned_rights, - * ] - * - * @return Updates - */ - public function editBanned(array $params); - - /** - * @param array params [ - * InputChannel channel, - * string q, - * ChannelAdminLogEventsFilter events_filter, - * InputUser admins, - * long max_id, - * long min_id, - * int limit, - * ] - * - * @return channels_AdminLogResults - */ - public function getAdminLog(array $params); - - /** - * @param array params [ - * InputChannel channel, - * InputStickerSet stickerset, - * ] - * - * @return bool - */ - public function setStickers(array $params); - - /** - * @param array params [ - * InputChannel channel, - * int id, - * ] - * - * @return bool - */ - public function readMessageContents(array $params); - - /** - * @param array params [ - * InputChannel channel, - * int max_id, - * ] - * - * @return bool - */ - public function deleteHistory(array $params); - - /** - * @param array params [ - * InputChannel channel, - * Bool enabled, - * ] - * - * @return Updates - */ - public function togglePreHistoryHidden(array $params); - - /** - * @param array params [ - * int offset, - * ] - * - * @return messages_Chats - */ - public function getLeftChannels(array $params); -} - -interface bots -{ - /** - * @param array params [ - * string custom_method, - * DataJSON params, - * ] - * - * @return DataJSON - */ - public function sendCustomRequest(array $params); - - /** - * @param array params [ - * long query_id, - * DataJSON data, - * ] - * - * @return bool - */ - public function answerWebhookJSONQuery(array $params); -} - -interface payments -{ - /** - * @param array params [ - * int msg_id, - * ] - * - * @return payments_PaymentForm - */ - public function getPaymentForm(array $params); - - /** - * @param array params [ - * int msg_id, - * ] - * - * @return payments_PaymentReceipt - */ - public function getPaymentReceipt(array $params); - - /** - * @param array params [ - * boolean save, - * int msg_id, - * PaymentRequestedInfo info, - * ] - * - * @return payments_ValidatedRequestedInfo - */ - public function validateRequestedInfo(array $params); - - /** - * @param array params [ - * int msg_id, - * string requested_info_id, - * string shipping_option_id, - * InputPaymentCredentials credentials, - * ] - * - * @return payments_PaymentResult - */ - public function sendPaymentForm(array $params); - - /** - * @return payments_SavedInfo - */ - public function getSavedInfo(); - - /** - * @param array params [ - * boolean credentials, - * boolean info, - * ] - * - * @return bool - */ - public function clearSavedInfo(array $params); -} - -interface stickers -{ - /** - * @param array params [ - * boolean masks, - * InputUser user_id, - * string title, - * string short_name, - * InputStickerSetItem stickers, - * ] - * - * @return messages_StickerSet - */ - public function createStickerSet(array $params); - - /** - * @param array params [ - * InputDocument sticker, - * ] - * - * @return messages_StickerSet - */ - public function removeStickerFromSet(array $params); - - /** - * @param array params [ - * InputDocument sticker, - * int position, - * ] - * - * @return messages_StickerSet - */ - public function changeStickerPosition(array $params); - - /** - * @param array params [ - * InputStickerSet stickerset, - * InputStickerSetItem sticker, - * ] - * - * @return messages_StickerSet - */ - public function addStickerToSet(array $params); -} - -interface phone -{ - /** - * @return DataJSON - */ - public function getCallConfig(); - - /** - * @param array params [ - * InputUser user_id, - * bytes g_a_hash, - * PhoneCallProtocol protocol, - * ] - * - * @return phone_PhoneCall - */ - public function requestCall(array $params); - - /** - * @param array params [ - * InputPhoneCall peer, - * bytes g_b, - * PhoneCallProtocol protocol, - * ] - * - * @return phone_PhoneCall - */ - public function acceptCall(array $params); - - /** - * @param array params [ - * InputPhoneCall peer, - * bytes g_a, - * long key_fingerprint, - * PhoneCallProtocol protocol, - * ] - * - * @return phone_PhoneCall - */ - public function confirmCall(array $params); - - /** - * @param array params [ - * InputPhoneCall peer, - * ] - * - * @return bool - */ - public function receivedCall(array $params); - - /** - * @param array params [ - * InputPhoneCall peer, - * int duration, - * PhoneCallDiscardReason reason, - * long connection_id, - * ] - * - * @return Updates - */ - public function discardCall(array $params); - - /** - * @param array params [ - * boolean user_initiative, - * InputPhoneCall peer, - * int rating, - * string comment, - * ] - * - * @return Updates - */ - public function setCallRating(array $params); - - /** - * @param array params [ - * InputPhoneCall peer, - * DataJSON debug, - * ] - * - * @return bool - */ - public function saveCallDebug(array $params); -} - -interface langpack -{ - /** - * @param array params [ - * string lang_pack, * string lang_code, * ] * - * @return LangPackDifference + * @return help_InviteText */ - public function getLangPack(array $params); + public function getInviteText(array $params); /** - * @param array params [ - * string lang_pack, - * string lang_code, - * string keys, - * ] - * - * @return Vector_of_LangPackString + * @return help_Support */ - public function getStrings(array $params); - - /** - * @param array params [ - * string lang_pack, - * string lang_code, - * int from_version, - * ] - * - * @return LangPackDifference - */ - public function getDifference(array $params); - - /** - * @param array params [ - * string lang_pack, - * ] - * - * @return Vector_of_LangPackLanguage - */ - public function getLanguages(array $params); - - /** - * @param array params [ - * string lang_pack, - * string lang_code, - * ] - * - * @return LangPackLanguage - */ - public function getLanguage(array $params); + public function getSupport(); }