WPyrogram 2.0.147__tar.gz → 2.0.148__tar.gz
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.
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/PKG-INFO +1 -1
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/WPyrogram.egg-info/PKG-INFO +1 -1
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/WPyrogram.egg-info/SOURCES.txt +37 -2
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/api/source/main_api.tl +69 -24
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/docs/compiler.py +42 -3
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/errors/source/400_BAD_REQUEST.tsv +67 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/errors/source/403_FORBIDDEN.tsv +5 -1
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/errors/source/406_NOT_ACCEPTABLE.tsv +8 -1
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/errors/source/500_INTERNAL_SERVER_ERROR.tsv +6 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/__init__.py +1 -1
- wpyrogram-2.0.148/pyrogram/enums/privacy_key.py +57 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/__init__.py +2 -0
- wpyrogram-2.0.148/pyrogram/methods/account/__init__.py +30 -0
- wpyrogram-2.0.148/pyrogram/methods/account/get_account_ttl.py +44 -0
- wpyrogram-2.0.148/pyrogram/methods/account/get_privacy.py +55 -0
- wpyrogram-2.0.148/pyrogram/methods/account/set_account_ttl.py +51 -0
- wpyrogram-2.0.148/pyrogram/methods/account/set_privacy.py +73 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/__init__.py +6 -0
- wpyrogram-2.0.148/pyrogram/methods/auth/get_active_sessions.py +39 -0
- wpyrogram-2.0.148/pyrogram/methods/auth/reset_session.py +40 -0
- wpyrogram-2.0.148/pyrogram/methods/auth/reset_sessions.py +39 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/__init__.py +4 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/answer_pre_checkout_query.py +10 -8
- wpyrogram-2.0.148/pyrogram/methods/bots/refund_star_payment.py +54 -0
- wpyrogram-2.0.148/pyrogram/methods/bots/send_invoice.py +237 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/contacts/__init__.py +3 -1
- wpyrogram-2.0.148/pyrogram/methods/contacts/search_contacts.py +59 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/__init__.py +4 -0
- wpyrogram-2.0.148/pyrogram/methods/messages/delete_chat_history.py +101 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/inline_session.py +3 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/search_messages.py +36 -5
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_media_group.py +2 -2
- wpyrogram-2.0.148/pyrogram/methods/messages/send_paid_media.py +282 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_video.py +1 -1
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/payments/__init__.py +5 -1
- wpyrogram-2.0.148/pyrogram/methods/payments/get_payment_form.py +83 -0
- wpyrogram-2.0.148/pyrogram/methods/payments/send_payment_form.py +101 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/__init__.py +1 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/authorization/__init__.py +8 -1
- wpyrogram-2.0.148/pyrogram/types/authorization/active_session.py +179 -0
- wpyrogram-2.0.148/pyrogram/types/authorization/active_sessions.py +56 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/__init__.py +7 -7
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/keyboard_button.py +1 -1
- wpyrogram-2.0.148/pyrogram/types/bots_and_keyboards/labeled_price.py +58 -0
- wpyrogram-2.0.147/pyrogram/types/bots_and_keyboards/payment_info.py → wpyrogram-2.0.148/pyrogram/types/bots_and_keyboards/order_info.py +16 -11
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/pre_checkout_query.py +33 -30
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/shipping_address.py +20 -18
- wpyrogram-2.0.148/pyrogram/types/input_privacy_rule/__init__.py +41 -0
- wpyrogram-2.0.148/pyrogram/types/input_privacy_rule/input_privacy_rule.py +44 -0
- wpyrogram-2.0.148/pyrogram/types/input_privacy_rule/input_privacy_rule_allow_all.py +33 -0
- wpyrogram-2.0.148/pyrogram/types/input_privacy_rule/input_privacy_rule_allow_chats.py +49 -0
- wpyrogram-2.0.148/pyrogram/types/input_privacy_rule/input_privacy_rule_allow_contacts.py +33 -0
- wpyrogram-2.0.148/pyrogram/types/input_privacy_rule/input_privacy_rule_allow_premium.py +33 -0
- wpyrogram-2.0.148/pyrogram/types/input_privacy_rule/input_privacy_rule_allow_users.py +47 -0
- wpyrogram-2.0.148/pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_all.py +33 -0
- wpyrogram-2.0.148/pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_chats.py +49 -0
- wpyrogram-2.0.148/pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_contacts.py +33 -0
- wpyrogram-2.0.148/pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_users.py +47 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/__init__.py +8 -0
- wpyrogram-2.0.148/pyrogram/types/messages_and_media/invoice.py +162 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/message.py +38 -5
- wpyrogram-2.0.148/pyrogram/types/messages_and_media/paid_media_info.py +93 -0
- wpyrogram-2.0.148/pyrogram/types/messages_and_media/paid_media_preview.py +55 -0
- wpyrogram-2.0.148/pyrogram/types/messages_and_media/payment_form.py +117 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/story.py +4 -4
- wpyrogram-2.0.148/pyrogram/types/messages_and_media/successful_payment.py +140 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/__init__.py +4 -2
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/chat.py +164 -9
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/dialog.py +25 -1
- wpyrogram-2.0.148/pyrogram/types/user_and_chats/found_contacts.py +75 -0
- wpyrogram-2.0.148/pyrogram/types/user_and_chats/privacy_rule.py +90 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/user.py +63 -0
- wpyrogram-2.0.147/pyrogram/types/messages_and_media/invoice.py +0 -85
- wpyrogram-2.0.147/pyrogram/types/user_and_chats/chat_preview.py +0 -79
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/COPYING +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/COPYING.lesser +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/MANIFEST.in +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/NOTICE +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/README.md +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/WPyrogram.egg-info/dependency_links.txt +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/WPyrogram.egg-info/not-zip-safe +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/WPyrogram.egg-info/requires.txt +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/WPyrogram.egg-info/top_level.txt +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/api/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/api/compiler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/api/source/auth_key.tl +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/api/source/sys_msgs.tl +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/api/template/combinator.txt +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/api/template/type.txt +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/docs/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/docs/template/page.txt +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/docs/template/toctree.txt +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/errors/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/errors/compiler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/errors/sort.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/errors/source/303_SEE_OTHER.tsv +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/errors/source/401_UNAUTHORIZED.tsv +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/errors/source/420_FLOOD.tsv +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/errors/source/503_SERVICE_UNAVAILABLE.tsv +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/errors/template/class.txt +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/compiler/errors/template/sub_class.txt +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/client.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/connection/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/connection/connection.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/connection/transport/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/connection/transport/tcp/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/connection/transport/tcp/tcp.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/connection/transport/tcp/tcp_abridged.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/connection/transport/tcp/tcp_abridged_o.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/connection/transport/tcp/tcp_full.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/connection/transport/tcp/tcp_intermediate.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/connection/transport/tcp/tcp_intermediate_o.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/crypto/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/crypto/aes.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/crypto/mtproto.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/crypto/prime.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/crypto/rsa.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/dispatcher.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/emoji.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/auto_name.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/business_schedule.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/chat_action.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/chat_event_action.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/chat_member_status.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/chat_members_filter.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/chat_type.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/client_platform.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/folder_color.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/message_entity_type.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/message_media_type.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/message_service_type.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/messages_filter.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/next_code_type.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/parse_mode.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/poll_type.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/profile_color.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/reply_color.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/sent_code_type.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/stories_privacy_rules.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/enums/user_status.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/errors/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/errors/rpc_error.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/file_id.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/filters.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/callback_query_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/chat_join_request_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/chat_member_updated_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/chosen_inline_result_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/conversation_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/deleted_messages_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/disconnect_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/edited_message_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/inline_query_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/message_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/poll_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/pre_checkout_query_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/raw_update_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/story_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/handlers/user_status_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/helpers/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/helpers/helpers.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/advanced/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/advanced/invoke.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/advanced/resolve_peer.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/advanced/save_file.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/accept_terms_of_service.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/check_password.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/connect.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/disconnect.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/get_password_hint.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/initialize.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/log_out.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/recover_password.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/resend_code.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/send_code.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/send_recovery_code.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/sign_in.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/sign_in_bot.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/sign_up.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/auth/terminate.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/answer_callback_query.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/answer_inline_query.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/answer_web_app_query.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/delete_bot_commands.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/get_bot_commands.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/get_bot_default_privileges.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/get_chat_menu_button.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/get_game_high_scores.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/get_inline_bot_results.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/request_callback_answer.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/send_game.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/send_inline_bot_result.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/set_bot_commands.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/set_bot_default_privileges.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/set_chat_menu_button.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/bots/set_game_score.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/business/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/business/get_business_connection.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/add_chat_members.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/archive_chats.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/ban_chat_member.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/close_forum_topic.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/create_channel.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/create_forum_topic.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/create_group.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/create_supergroup.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/delete_channel.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/delete_chat_photo.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/delete_folder.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/delete_forum_topic.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/delete_supergroup.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/delete_user_history.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/edit_forum_topic.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/export_folder_link.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/get_chat.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/get_chat_event_log.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/get_chat_member.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/get_chat_members.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/get_chat_members_count.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/get_chat_online_count.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/get_dialogs.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/get_dialogs_count.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/get_folders.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/get_forum_topics.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/get_forum_topics_by_id.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/get_nearby_chats.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/get_personal_channels.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/get_send_as_chats.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/get_similar_channels.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/join_chat.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/join_folder.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/leave_chat.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/leave_folder.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/mark_chat_unread.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/pin_chat_message.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/promote_chat_member.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/restrict_chat_member.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/set_administrator_title.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/set_chat_description.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/set_chat_permissions.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/set_chat_photo.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/set_chat_protected_content.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/set_chat_title.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/set_chat_ttl.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/set_chat_username.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/set_send_as_chat.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/set_slow_mode.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/toggle_folder_tags.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/toggle_forum_topics.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/toggle_join_to_send.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/unarchive_chats.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/unban_chat_member.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/unpin_all_chat_messages.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/unpin_chat_message.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/update_chat_notifications.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/update_color.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/chats/update_folder.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/contacts/add_contact.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/contacts/delete_contacts.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/contacts/get_contacts.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/contacts/get_contacts_count.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/contacts/import_contacts.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/decorators/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/decorators/on_callback_query.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/decorators/on_chat_join_request.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/decorators/on_chat_member_updated.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/decorators/on_chosen_inline_result.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/decorators/on_deleted_messages.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/decorators/on_disconnect.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/decorators/on_edited_message.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/decorators/on_inline_query.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/decorators/on_message.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/decorators/on_poll.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/decorators/on_pre_checkout_query.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/decorators/on_raw_update.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/decorators/on_story.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/decorators/on_user_status.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/approve_all_chat_join_requests.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/approve_chat_join_request.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/create_chat_invite_link.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/decline_all_chat_join_requests.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/decline_chat_join_request.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/delete_chat_admin_invite_links.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/delete_chat_invite_link.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/edit_chat_invite_link.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/export_chat_invite_link.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/get_chat_admin_invite_links.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/get_chat_invite_link.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/get_chat_invite_link_joiners.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/get_chat_join_requests.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/invite_links/revoke_chat_invite_link.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/business_session.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/copy_media_group.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/copy_message.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/delete_messages.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/download_media.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/edit_inline_caption.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/edit_inline_media.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/edit_inline_reply_markup.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/edit_inline_text.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/edit_message_caption.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/edit_message_media.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/edit_message_reply_markup.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/edit_message_text.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/forward_messages.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/get_available_effects.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/get_chat_history.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/get_chat_history_count.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/get_custom_emoji_stickers.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/get_discussion_message.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/get_discussion_replies.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/get_discussion_replies_count.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/get_history.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/get_media_group.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/get_message_by_link.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/get_messages.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/get_scheduled_messages.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/get_stickers.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/read_chat_history.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/read_mentions.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/read_reactions.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/retract_vote.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/search_global.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/search_global_count.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/search_messages_count.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/search_posts.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/search_posts_count.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_animation.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_audio.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_cached_media.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_chat_action.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_contact.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_dice.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_document.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_location.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_message.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_photo.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_poll.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_reaction.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_sticker.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_venue.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_video_note.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_voice.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/send_web_page.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/start_bot.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/stop_poll.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/stream_media.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/view_messages.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/vote_poll.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/wait_for_callback_query.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/messages/wait_for_message.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/password/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/password/change_cloud_password.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/password/enable_cloud_password.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/password/remove_cloud_password.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/payments/check_giftcode.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/phone/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/phone/get_call_members.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/premium/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/premium/apply_boost.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/premium/get_boosts.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/premium/get_boosts_status.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/can_send_story.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/copy_story.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/delete_stories.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/edit_story_caption.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/edit_story_media.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/edit_story_privacy.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/export_story_link.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/forward_story.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/get_all_stories.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/get_chat_stories.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/get_pinned_stories.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/get_stories.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/get_stories_archive.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/hide_stories.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/increment_story_views.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/pin_stories.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/read_stories.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/send_story.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/stories/view_stories.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/block_user.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/check_username.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/delete_profile_photos.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/get_chat_photos.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/get_chat_photos_count.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/get_common_chats.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/get_default_emoji_statuses.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/get_me.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/get_users.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/set_emoji_status.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/set_profile_photo.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/set_username.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/unblock_user.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/update_birthday.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/update_personal_channel.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/update_profile.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/users/update_status.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/utilities/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/utilities/add_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/utilities/compose.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/utilities/export_session_string.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/utilities/idle.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/utilities/remove_handler.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/utilities/restart.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/utilities/run.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/utilities/start.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/utilities/stop.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/methods/utilities/stop_transmission.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/mime_types.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/nav/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/nav/pagination.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/parser/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/parser/html.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/parser/markdown.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/parser/parser.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/parser/utils.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/py.typed +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/core/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/core/future_salt.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/core/future_salts.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/core/gzip_packed.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/core/list.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/core/message.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/core/msg_container.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/core/primitives/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/core/primitives/bool.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/core/primitives/bytes.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/core/primitives/double.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/core/primitives/int.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/core/primitives/string.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/core/primitives/vector.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/raw/core/tl_object.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/session/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/session/auth.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/session/internals/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/session/internals/data_center.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/session/internals/msg_factory.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/session/internals/msg_id.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/session/internals/seq_no.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/session/session.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/storage/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/storage/file_storage.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/storage/memory_storage.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/storage/sqlite_storage.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/storage/storage.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/sync.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/authorization/sent_code.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/authorization/terms_of_service.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/bot_command.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/bot_command_scope.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/bot_command_scope_default.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/callback_game.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/callback_query.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/force_reply.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/game_high_score.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/inline_keyboard_button.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/login_url.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/menu_button.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/menu_button_commands.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/menu_button_default.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/menu_button_web_app.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/request_channel_info.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/request_chat_info.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/request_poll_info.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/request_user_info.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/requested_chats.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/sent_web_app_message.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/successful_payment.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/bots_and_keyboards/web_app_info.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/chosen_inline_result.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_animation.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_article.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_audio.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_cached_animation.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_cached_audio.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_cached_document.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_cached_photo.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_cached_sticker.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_cached_video.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_cached_voice.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_contact.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_document.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_location.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_photo.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_venue.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_video.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/inline_mode/inline_query_result_voice.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/input_media/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/input_media/input_media.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/input_media/input_media_animation.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/input_media/input_media_audio.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/input_media/input_media_document.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/input_media/input_media_photo.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/input_media/input_media_video.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/input_media/input_phone_contact.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/input_message_content/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/input_message_content/input_message_content.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/input_message_content/input_reply_to_message.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/input_message_content/input_reply_to_story.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/input_message_content/input_text_message_content.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/list.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/animation.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/audio.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/auto_name.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/available_effect.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/boosts_status.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/business_message.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/chat_action.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/chat_event_action.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/chat_member_status.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/chat_members_filter.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/chat_type.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/checked_gift_code.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/contact.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/dice.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/document.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/forum_topic.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/forum_topic_closed.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/forum_topic_created.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/forum_topic_edited.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/forum_topic_reopened.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/game.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/general_forum_topic_hidden.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/general_forum_topic_unhidden.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/gift_code.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/giveaway.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/giveaway_result.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/location.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/message_entity.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/message_entity_type.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/message_media_type.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/message_reactions.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/message_service_type.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/message_story.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/messages_filter.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/my_boost.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/next_code_type.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/parse_mode.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/photo.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/poll.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/poll_option.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/poll_type.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/reaction.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/sent_code_type.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/sticker.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/stripped_thumbnail.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/thumbnail.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/user_status.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/venue.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/video.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/video_note.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/voice.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/web_app_data.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/messages_and_media/web_page.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/object.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/pyromod.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/update.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/birthday.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/business_connection.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/business_info.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/business_intro.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/business_message.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/business_recipients.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/business_weekly_open.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/business_working_hours.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/chat_admin_with_invite_links.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/chat_color.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/chat_event.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/chat_event_filter.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/chat_invite_link.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/chat_join_request.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/chat_joiner.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/chat_member.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/chat_member_updated.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/chat_permissions.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/chat_photo.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/chat_privileges.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/chat_reactions.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/emoji_status.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/folder.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/group_call_member.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/invite_link_importer.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/restriction.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/username.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/video_chat_ended.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/video_chat_members_invited.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/video_chat_scheduled.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/types/user_and_chats/video_chat_started.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/pyrogram/utils.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/requirements.txt +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/setup.cfg +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/setup.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/tests/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/tests/filters/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/tests/filters/test_command.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/tests/parser/__init__.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/tests/parser/test_html.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/tests/parser/test_markdown.py +0 -0
- {wpyrogram-2.0.147 → wpyrogram-2.0.148}/tests/test_file_id.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: WPyrogram
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.148
|
|
4
4
|
Summary: Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots - Woto's experimental fork
|
|
5
5
|
Home-page: https://github.com/ALiwoto/WPyrogram
|
|
6
6
|
Download-URL: https://github.com/ALiwoto/WPyrogram
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: WPyrogram
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.148
|
|
4
4
|
Summary: Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots - Woto's experimental fork
|
|
5
5
|
Home-page: https://github.com/ALiwoto/WPyrogram
|
|
6
6
|
Download-URL: https://github.com/ALiwoto/WPyrogram
|
|
@@ -78,6 +78,7 @@ pyrogram/enums/messages_filter.py
|
|
|
78
78
|
pyrogram/enums/next_code_type.py
|
|
79
79
|
pyrogram/enums/parse_mode.py
|
|
80
80
|
pyrogram/enums/poll_type.py
|
|
81
|
+
pyrogram/enums/privacy_key.py
|
|
81
82
|
pyrogram/enums/profile_color.py
|
|
82
83
|
pyrogram/enums/reply_color.py
|
|
83
84
|
pyrogram/enums/sent_code_type.py
|
|
@@ -105,6 +106,11 @@ pyrogram/handlers/user_status_handler.py
|
|
|
105
106
|
pyrogram/helpers/__init__.py
|
|
106
107
|
pyrogram/helpers/helpers.py
|
|
107
108
|
pyrogram/methods/__init__.py
|
|
109
|
+
pyrogram/methods/account/__init__.py
|
|
110
|
+
pyrogram/methods/account/get_account_ttl.py
|
|
111
|
+
pyrogram/methods/account/get_privacy.py
|
|
112
|
+
pyrogram/methods/account/set_account_ttl.py
|
|
113
|
+
pyrogram/methods/account/set_privacy.py
|
|
108
114
|
pyrogram/methods/advanced/__init__.py
|
|
109
115
|
pyrogram/methods/advanced/invoke.py
|
|
110
116
|
pyrogram/methods/advanced/resolve_peer.py
|
|
@@ -114,11 +120,14 @@ pyrogram/methods/auth/accept_terms_of_service.py
|
|
|
114
120
|
pyrogram/methods/auth/check_password.py
|
|
115
121
|
pyrogram/methods/auth/connect.py
|
|
116
122
|
pyrogram/methods/auth/disconnect.py
|
|
123
|
+
pyrogram/methods/auth/get_active_sessions.py
|
|
117
124
|
pyrogram/methods/auth/get_password_hint.py
|
|
118
125
|
pyrogram/methods/auth/initialize.py
|
|
119
126
|
pyrogram/methods/auth/log_out.py
|
|
120
127
|
pyrogram/methods/auth/recover_password.py
|
|
121
128
|
pyrogram/methods/auth/resend_code.py
|
|
129
|
+
pyrogram/methods/auth/reset_session.py
|
|
130
|
+
pyrogram/methods/auth/reset_sessions.py
|
|
122
131
|
pyrogram/methods/auth/send_code.py
|
|
123
132
|
pyrogram/methods/auth/send_recovery_code.py
|
|
124
133
|
pyrogram/methods/auth/sign_in.py
|
|
@@ -136,9 +145,11 @@ pyrogram/methods/bots/get_bot_default_privileges.py
|
|
|
136
145
|
pyrogram/methods/bots/get_chat_menu_button.py
|
|
137
146
|
pyrogram/methods/bots/get_game_high_scores.py
|
|
138
147
|
pyrogram/methods/bots/get_inline_bot_results.py
|
|
148
|
+
pyrogram/methods/bots/refund_star_payment.py
|
|
139
149
|
pyrogram/methods/bots/request_callback_answer.py
|
|
140
150
|
pyrogram/methods/bots/send_game.py
|
|
141
151
|
pyrogram/methods/bots/send_inline_bot_result.py
|
|
152
|
+
pyrogram/methods/bots/send_invoice.py
|
|
142
153
|
pyrogram/methods/bots/set_bot_commands.py
|
|
143
154
|
pyrogram/methods/bots/set_bot_default_privileges.py
|
|
144
155
|
pyrogram/methods/bots/set_chat_menu_button.py
|
|
@@ -211,6 +222,7 @@ pyrogram/methods/contacts/delete_contacts.py
|
|
|
211
222
|
pyrogram/methods/contacts/get_contacts.py
|
|
212
223
|
pyrogram/methods/contacts/get_contacts_count.py
|
|
213
224
|
pyrogram/methods/contacts/import_contacts.py
|
|
225
|
+
pyrogram/methods/contacts/search_contacts.py
|
|
214
226
|
pyrogram/methods/decorators/__init__.py
|
|
215
227
|
pyrogram/methods/decorators/on_callback_query.py
|
|
216
228
|
pyrogram/methods/decorators/on_chat_join_request.py
|
|
@@ -248,6 +260,7 @@ pyrogram/methods/messages/__init__.py
|
|
|
248
260
|
pyrogram/methods/messages/business_session.py
|
|
249
261
|
pyrogram/methods/messages/copy_media_group.py
|
|
250
262
|
pyrogram/methods/messages/copy_message.py
|
|
263
|
+
pyrogram/methods/messages/delete_chat_history.py
|
|
251
264
|
pyrogram/methods/messages/delete_messages.py
|
|
252
265
|
pyrogram/methods/messages/download_media.py
|
|
253
266
|
pyrogram/methods/messages/edit_inline_caption.py
|
|
@@ -293,6 +306,7 @@ pyrogram/methods/messages/send_document.py
|
|
|
293
306
|
pyrogram/methods/messages/send_location.py
|
|
294
307
|
pyrogram/methods/messages/send_media_group.py
|
|
295
308
|
pyrogram/methods/messages/send_message.py
|
|
309
|
+
pyrogram/methods/messages/send_paid_media.py
|
|
296
310
|
pyrogram/methods/messages/send_photo.py
|
|
297
311
|
pyrogram/methods/messages/send_poll.py
|
|
298
312
|
pyrogram/methods/messages/send_reaction.py
|
|
@@ -315,6 +329,8 @@ pyrogram/methods/password/enable_cloud_password.py
|
|
|
315
329
|
pyrogram/methods/password/remove_cloud_password.py
|
|
316
330
|
pyrogram/methods/payments/__init__.py
|
|
317
331
|
pyrogram/methods/payments/check_giftcode.py
|
|
332
|
+
pyrogram/methods/payments/get_payment_form.py
|
|
333
|
+
pyrogram/methods/payments/send_payment_form.py
|
|
318
334
|
pyrogram/methods/phone/__init__.py
|
|
319
335
|
pyrogram/methods/phone/get_call_members.py
|
|
320
336
|
pyrogram/methods/premium/__init__.py
|
|
@@ -412,6 +428,8 @@ pyrogram/types/object.py
|
|
|
412
428
|
pyrogram/types/pyromod.py
|
|
413
429
|
pyrogram/types/update.py
|
|
414
430
|
pyrogram/types/authorization/__init__.py
|
|
431
|
+
pyrogram/types/authorization/active_session.py
|
|
432
|
+
pyrogram/types/authorization/active_sessions.py
|
|
415
433
|
pyrogram/types/authorization/sent_code.py
|
|
416
434
|
pyrogram/types/authorization/terms_of_service.py
|
|
417
435
|
pyrogram/types/bots_and_keyboards/__init__.py
|
|
@@ -431,12 +449,13 @@ pyrogram/types/bots_and_keyboards/game_high_score.py
|
|
|
431
449
|
pyrogram/types/bots_and_keyboards/inline_keyboard_button.py
|
|
432
450
|
pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py
|
|
433
451
|
pyrogram/types/bots_and_keyboards/keyboard_button.py
|
|
452
|
+
pyrogram/types/bots_and_keyboards/labeled_price.py
|
|
434
453
|
pyrogram/types/bots_and_keyboards/login_url.py
|
|
435
454
|
pyrogram/types/bots_and_keyboards/menu_button.py
|
|
436
455
|
pyrogram/types/bots_and_keyboards/menu_button_commands.py
|
|
437
456
|
pyrogram/types/bots_and_keyboards/menu_button_default.py
|
|
438
457
|
pyrogram/types/bots_and_keyboards/menu_button_web_app.py
|
|
439
|
-
pyrogram/types/bots_and_keyboards/
|
|
458
|
+
pyrogram/types/bots_and_keyboards/order_info.py
|
|
440
459
|
pyrogram/types/bots_and_keyboards/pre_checkout_query.py
|
|
441
460
|
pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py
|
|
442
461
|
pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py
|
|
@@ -483,6 +502,17 @@ pyrogram/types/input_message_content/input_message_content.py
|
|
|
483
502
|
pyrogram/types/input_message_content/input_reply_to_message.py
|
|
484
503
|
pyrogram/types/input_message_content/input_reply_to_story.py
|
|
485
504
|
pyrogram/types/input_message_content/input_text_message_content.py
|
|
505
|
+
pyrogram/types/input_privacy_rule/__init__.py
|
|
506
|
+
pyrogram/types/input_privacy_rule/input_privacy_rule.py
|
|
507
|
+
pyrogram/types/input_privacy_rule/input_privacy_rule_allow_all.py
|
|
508
|
+
pyrogram/types/input_privacy_rule/input_privacy_rule_allow_chats.py
|
|
509
|
+
pyrogram/types/input_privacy_rule/input_privacy_rule_allow_contacts.py
|
|
510
|
+
pyrogram/types/input_privacy_rule/input_privacy_rule_allow_premium.py
|
|
511
|
+
pyrogram/types/input_privacy_rule/input_privacy_rule_allow_users.py
|
|
512
|
+
pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_all.py
|
|
513
|
+
pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_chats.py
|
|
514
|
+
pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_contacts.py
|
|
515
|
+
pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_users.py
|
|
486
516
|
pyrogram/types/messages_and_media/__init__.py
|
|
487
517
|
pyrogram/types/messages_and_media/animation.py
|
|
488
518
|
pyrogram/types/messages_and_media/audio.py
|
|
@@ -522,7 +552,10 @@ pyrogram/types/messages_and_media/message_story.py
|
|
|
522
552
|
pyrogram/types/messages_and_media/messages_filter.py
|
|
523
553
|
pyrogram/types/messages_and_media/my_boost.py
|
|
524
554
|
pyrogram/types/messages_and_media/next_code_type.py
|
|
555
|
+
pyrogram/types/messages_and_media/paid_media_info.py
|
|
556
|
+
pyrogram/types/messages_and_media/paid_media_preview.py
|
|
525
557
|
pyrogram/types/messages_and_media/parse_mode.py
|
|
558
|
+
pyrogram/types/messages_and_media/payment_form.py
|
|
526
559
|
pyrogram/types/messages_and_media/photo.py
|
|
527
560
|
pyrogram/types/messages_and_media/poll.py
|
|
528
561
|
pyrogram/types/messages_and_media/poll_option.py
|
|
@@ -532,6 +565,7 @@ pyrogram/types/messages_and_media/sent_code_type.py
|
|
|
532
565
|
pyrogram/types/messages_and_media/sticker.py
|
|
533
566
|
pyrogram/types/messages_and_media/story.py
|
|
534
567
|
pyrogram/types/messages_and_media/stripped_thumbnail.py
|
|
568
|
+
pyrogram/types/messages_and_media/successful_payment.py
|
|
535
569
|
pyrogram/types/messages_and_media/thumbnail.py
|
|
536
570
|
pyrogram/types/messages_and_media/user_status.py
|
|
537
571
|
pyrogram/types/messages_and_media/venue.py
|
|
@@ -561,14 +595,15 @@ pyrogram/types/user_and_chats/chat_member.py
|
|
|
561
595
|
pyrogram/types/user_and_chats/chat_member_updated.py
|
|
562
596
|
pyrogram/types/user_and_chats/chat_permissions.py
|
|
563
597
|
pyrogram/types/user_and_chats/chat_photo.py
|
|
564
|
-
pyrogram/types/user_and_chats/chat_preview.py
|
|
565
598
|
pyrogram/types/user_and_chats/chat_privileges.py
|
|
566
599
|
pyrogram/types/user_and_chats/chat_reactions.py
|
|
567
600
|
pyrogram/types/user_and_chats/dialog.py
|
|
568
601
|
pyrogram/types/user_and_chats/emoji_status.py
|
|
569
602
|
pyrogram/types/user_and_chats/folder.py
|
|
603
|
+
pyrogram/types/user_and_chats/found_contacts.py
|
|
570
604
|
pyrogram/types/user_and_chats/group_call_member.py
|
|
571
605
|
pyrogram/types/user_and_chats/invite_link_importer.py
|
|
606
|
+
pyrogram/types/user_and_chats/privacy_rule.py
|
|
572
607
|
pyrogram/types/user_and_chats/restriction.py
|
|
573
608
|
pyrogram/types/user_and_chats/user.py
|
|
574
609
|
pyrogram/types/user_and_chats/username.py
|
|
@@ -52,6 +52,7 @@ inputMediaPoll#f94e5f1 flags:# poll:Poll correct_answers:flags.0?Vector<bytes> s
|
|
|
52
52
|
inputMediaDice#e66fbf7b emoticon:string = InputMedia;
|
|
53
53
|
inputMediaStory#89fdd778 peer:InputPeer id:int = InputMedia;
|
|
54
54
|
inputMediaWebPage#c21b8849 flags:# force_large_media:flags.0?true force_small_media:flags.1?true optional:flags.2?true url:string = InputMedia;
|
|
55
|
+
inputMediaPaidMedia#aa661fc3 stars_amount:long extended_media:Vector<InputMedia> = InputMedia;
|
|
55
56
|
|
|
56
57
|
inputChatPhotoEmpty#1ca48f57 = InputChatPhoto;
|
|
57
58
|
inputChatUploadedPhoto#bdcdaec0 flags:# file:flags.0?InputFile video:flags.1?InputFile video_start_ts:flags.2?double video_emoji_markup:flags.3?VideoSize = InputChatPhoto;
|
|
@@ -90,7 +91,7 @@ storage.fileMp4#b3cea0e4 = storage.FileType;
|
|
|
90
91
|
storage.fileWebp#1081464c = storage.FileType;
|
|
91
92
|
|
|
92
93
|
userEmpty#d3bc4b7a id:long = User;
|
|
93
|
-
user#
|
|
94
|
+
user#83314fca flags:# self:flags.10?true contact:flags.11?true mutual_contact:flags.12?true deleted:flags.13?true bot:flags.14?true bot_chat_history:flags.15?true bot_nochats:flags.16?true verified:flags.17?true restricted:flags.18?true min:flags.20?true bot_inline_geo:flags.21?true support:flags.23?true scam:flags.24?true apply_min_photo:flags.25?true fake:flags.26?true bot_attach_menu:flags.27?true premium:flags.28?true attach_menu_enabled:flags.29?true flags2:# bot_can_edit:flags2.1?true close_friend:flags2.2?true stories_hidden:flags2.3?true stories_unavailable:flags2.4?true contact_require_premium:flags2.10?true bot_business:flags2.11?true bot_has_main_app:flags2.13?true id:long access_hash:flags.0?long first_name:flags.1?string last_name:flags.2?string username:flags.3?string phone:flags.4?string photo:flags.5?UserProfilePhoto status:flags.6?UserStatus bot_info_version:flags.14?int restriction_reason:flags.18?Vector<RestrictionReason> bot_inline_placeholder:flags.19?string lang_code:flags.22?string emoji_status:flags.30?EmojiStatus usernames:flags2.0?Vector<Username> stories_max_id:flags2.5?int color:flags2.8?PeerColor profile_color:flags2.9?PeerColor bot_active_users:flags2.12?int = User;
|
|
94
95
|
|
|
95
96
|
userProfilePhotoEmpty#4f11bae1 = UserProfilePhoto;
|
|
96
97
|
userProfilePhoto#82d1f706 flags:# has_video:flags.0?true personal:flags.2?true photo_id:long stripped_thumb:flags.1?bytes dc_id:int = UserProfilePhoto;
|
|
@@ -109,7 +110,7 @@ channel#aadfc8f flags:# creator:flags.0?true left:flags.2?true broadcast:flags.5
|
|
|
109
110
|
channelForbidden#17d493d5 flags:# broadcast:flags.5?true megagroup:flags.8?true id:long access_hash:long title:string until_date:flags.16?int = Chat;
|
|
110
111
|
|
|
111
112
|
chatFull#2633421b flags:# can_set_username:flags.7?true has_scheduled:flags.8?true translations_disabled:flags.19?true id:long about:string participants:ChatParticipants chat_photo:flags.2?Photo notify_settings:PeerNotifySettings exported_invite:flags.13?ExportedChatInvite bot_info:flags.3?Vector<BotInfo> pinned_msg_id:flags.6?int folder_id:flags.11?int call:flags.12?InputGroupCall ttl_period:flags.14?int groupcall_default_join_as:flags.15?Peer theme_emoticon:flags.16?string requests_pending:flags.17?int recent_requesters:flags.17?Vector<long> available_reactions:flags.18?ChatReactions reactions_limit:flags.20?int = ChatFull;
|
|
112
|
-
channelFull#bbab348d flags:# can_view_participants:flags.3?true can_set_username:flags.6?true can_set_stickers:flags.7?true hidden_prehistory:flags.10?true can_set_location:flags.16?true has_scheduled:flags.19?true can_view_stats:flags.20?true blocked:flags.22?true flags2:# can_delete_channel:flags2.0?true antispam:flags2.1?true participants_hidden:flags2.2?true translations_disabled:flags2.3?true stories_pinned_available:flags2.5?true view_forum_as_messages:flags2.6?true restricted_sponsored:flags2.11?true can_view_revenue:flags2.12?true id:long about:string participants_count:flags.0?int admins_count:flags.1?int kicked_count:flags.2?int banned_count:flags.2?int online_count:flags.13?int read_inbox_max_id:int read_outbox_max_id:int unread_count:int chat_photo:Photo notify_settings:PeerNotifySettings exported_invite:flags.23?ExportedChatInvite bot_info:Vector<BotInfo> migrated_from_chat_id:flags.4?long migrated_from_max_id:flags.4?int pinned_msg_id:flags.5?int stickerset:flags.8?StickerSet available_min_id:flags.9?int folder_id:flags.11?int linked_chat_id:flags.14?long location:flags.15?ChannelLocation slowmode_seconds:flags.17?int slowmode_next_send_date:flags.18?int stats_dc:flags.12?int pts:int call:flags.21?InputGroupCall ttl_period:flags.24?int pending_suggestions:flags.25?Vector<string> groupcall_default_join_as:flags.26?Peer theme_emoticon:flags.27?string requests_pending:flags.28?int recent_requesters:flags.28?Vector<long> default_send_as:flags.29?Peer available_reactions:flags.30?ChatReactions reactions_limit:flags2.13?int stories:flags2.4?PeerStories wallpaper:flags2.7?WallPaper boosts_applied:flags2.8?int boosts_unrestrict:flags2.9?int emojiset:flags2.10?StickerSet = ChatFull;
|
|
113
|
+
channelFull#bbab348d flags:# can_view_participants:flags.3?true can_set_username:flags.6?true can_set_stickers:flags.7?true hidden_prehistory:flags.10?true can_set_location:flags.16?true has_scheduled:flags.19?true can_view_stats:flags.20?true blocked:flags.22?true flags2:# can_delete_channel:flags2.0?true antispam:flags2.1?true participants_hidden:flags2.2?true translations_disabled:flags2.3?true stories_pinned_available:flags2.5?true view_forum_as_messages:flags2.6?true restricted_sponsored:flags2.11?true can_view_revenue:flags2.12?true paid_media_allowed:flags2.14?true can_view_stars_revenue:flags2.15?true id:long about:string participants_count:flags.0?int admins_count:flags.1?int kicked_count:flags.2?int banned_count:flags.2?int online_count:flags.13?int read_inbox_max_id:int read_outbox_max_id:int unread_count:int chat_photo:Photo notify_settings:PeerNotifySettings exported_invite:flags.23?ExportedChatInvite bot_info:Vector<BotInfo> migrated_from_chat_id:flags.4?long migrated_from_max_id:flags.4?int pinned_msg_id:flags.5?int stickerset:flags.8?StickerSet available_min_id:flags.9?int folder_id:flags.11?int linked_chat_id:flags.14?long location:flags.15?ChannelLocation slowmode_seconds:flags.17?int slowmode_next_send_date:flags.18?int stats_dc:flags.12?int pts:int call:flags.21?InputGroupCall ttl_period:flags.24?int pending_suggestions:flags.25?Vector<string> groupcall_default_join_as:flags.26?Peer theme_emoticon:flags.27?string requests_pending:flags.28?int recent_requesters:flags.28?Vector<long> default_send_as:flags.29?Peer available_reactions:flags.30?ChatReactions reactions_limit:flags2.13?int stories:flags2.4?PeerStories wallpaper:flags2.7?WallPaper boosts_applied:flags2.8?int boosts_unrestrict:flags2.9?int emojiset:flags2.10?StickerSet = ChatFull;
|
|
113
114
|
|
|
114
115
|
chatParticipant#c02d4007 user_id:long inviter_id:long date:int = ChatParticipant;
|
|
115
116
|
chatParticipantCreator#e46bcee4 user_id:long = ChatParticipant;
|
|
@@ -141,6 +142,7 @@ messageMediaDice#3f7ee58b value:int emoticon:string = MessageMedia;
|
|
|
141
142
|
messageMediaStory#68cb6283 flags:# via_mention:flags.1?true peer:Peer id:int story:flags.0?StoryItem = MessageMedia;
|
|
142
143
|
messageMediaGiveaway#daad85b0 flags:# only_new_subscribers:flags.0?true winners_are_visible:flags.2?true channels:Vector<long> countries_iso2:flags.1?Vector<string> prize_description:flags.3?string quantity:int months:int until_date:int = MessageMedia;
|
|
143
144
|
messageMediaGiveawayResults#c6991068 flags:# only_new_subscribers:flags.0?true refunded:flags.2?true channel_id:long additional_peers_count:flags.3?int launch_msg_id:int winners_count:int unclaimed_count:int winners:Vector<long> months:int prize_description:flags.1?string until_date:int = MessageMedia;
|
|
145
|
+
messageMediaPaidMedia#a8852491 stars_amount:long extended_media:Vector<MessageExtendedMedia> = MessageMedia;
|
|
144
146
|
|
|
145
147
|
messageActionEmpty#b6aef7b0 = MessageAction;
|
|
146
148
|
messageActionChatCreate#bd47cbad title:string users:Vector<long> = MessageAction;
|
|
@@ -185,6 +187,8 @@ messageActionGiveawayLaunch#332ba9ed = MessageAction;
|
|
|
185
187
|
messageActionGiveawayResults#2a9fadc5 winners_count:int unclaimed_count:int = MessageAction;
|
|
186
188
|
messageActionBoostApply#cc02aa6d boosts:int = MessageAction;
|
|
187
189
|
messageActionRequestedPeerSentMe#93b31848 button_id:int peers:Vector<RequestedPeer> = MessageAction;
|
|
190
|
+
messageActionPaymentRefunded#41b3e202 flags:# peer:Peer currency:string total_amount:long payload:flags.0?bytes charge:PaymentCharge = MessageAction;
|
|
191
|
+
messageActionGiftStars#45d5b021 flags:# currency:string amount:long stars:long crypto_currency:flags.0?string crypto_amount:flags.0?long transaction_id:flags.1?string = MessageAction;
|
|
188
192
|
|
|
189
193
|
dialog#d58a08c6 flags:# pinned:flags.2?true unread_mark:flags.3?true view_forum_as_messages:flags.6?true peer:Peer top_message:int read_inbox_max_id:int read_outbox_max_id:int unread_count:int unread_mentions_count:int unread_reactions_count:int notify_settings:PeerNotifySettings pts:flags.0?int draft:flags.1?DraftMessage folder_id:flags.4?int ttl_period:flags.5?int = Dialog;
|
|
190
194
|
dialogFolder#71bd134c flags:# pinned:flags.2?true folder:Folder peer:Peer top_message:int unread_muted_peers_count:int unread_unmuted_peers_count:int unread_muted_messages_count:int unread_unmuted_messages_count:int = Dialog;
|
|
@@ -392,7 +396,7 @@ updateUserEmojiStatus#28373599 user_id:long emoji_status:EmojiStatus = Update;
|
|
|
392
396
|
updateRecentEmojiStatuses#30f443db = Update;
|
|
393
397
|
updateRecentReactions#6f7863f4 = Update;
|
|
394
398
|
updateMoveStickerSetToTop#86fccf85 flags:# masks:flags.0?true emojis:flags.1?true stickerset:long = Update;
|
|
395
|
-
updateMessageExtendedMedia#
|
|
399
|
+
updateMessageExtendedMedia#d5a41724 peer:Peer msg_id:int extended_media:Vector<MessageExtendedMedia> = Update;
|
|
396
400
|
updateChannelPinnedTopic#192efbe3 flags:# pinned:flags.0?true channel_id:long topic_id:int = Update;
|
|
397
401
|
updateChannelPinnedTopics#fe198602 flags:# channel_id:long order:flags.0?Vector<int> = Update;
|
|
398
402
|
updateUser#20529438 user_id:long = Update;
|
|
@@ -423,6 +427,8 @@ updateBotDeleteBusinessMessage#a02a982e connection_id:string peer:Peer messages:
|
|
|
423
427
|
updateNewStoryReaction#1824e40b story_id:int peer:Peer reaction:Reaction = Update;
|
|
424
428
|
updateBroadcastRevenueTransactions#dfd961f5 peer:Peer balances:BroadcastRevenueBalances = Update;
|
|
425
429
|
updateStarsBalance#fb85198 balance:long = Update;
|
|
430
|
+
updateBusinessBotCallbackQuery#1ea2fda7 flags:# query_id:long user_id:long connection_id:string message:Message reply_to_message:flags.2?Message chat_instance:long data:flags.0?bytes = Update;
|
|
431
|
+
updateStarsRevenueStatus#a584b019 peer:Peer status:StarsRevenueStatus = Update;
|
|
426
432
|
|
|
427
433
|
updates.state#a56c2a3e pts:int qts:int date:int seq:int unread_count:int = updates.State;
|
|
428
434
|
|
|
@@ -571,7 +577,7 @@ accountDaysTTL#b8d0afdf days:int = AccountDaysTTL;
|
|
|
571
577
|
documentAttributeImageSize#6c37c15c w:int h:int = DocumentAttribute;
|
|
572
578
|
documentAttributeAnimated#11b58939 = DocumentAttribute;
|
|
573
579
|
documentAttributeSticker#6319d612 flags:# mask:flags.1?true alt:string stickerset:InputStickerSet mask_coords:flags.0?MaskCoords = DocumentAttribute;
|
|
574
|
-
documentAttributeVideo#
|
|
580
|
+
documentAttributeVideo#17399fad flags:# round_message:flags.0?true supports_streaming:flags.1?true nosound:flags.3?true duration:double w:int h:int preload_prefix_size:flags.2?int video_start_ts:flags.4?double = DocumentAttribute;
|
|
575
581
|
documentAttributeAudio#9852f9c6 flags:# voice:flags.10?true duration:int title:flags.0?string performer:flags.1?string waveform:flags.2?bytes = DocumentAttribute;
|
|
576
582
|
documentAttributeFilename#15590068 file_name:string = DocumentAttribute;
|
|
577
583
|
documentAttributeHasStickers#9801d2f7 = DocumentAttribute;
|
|
@@ -632,7 +638,7 @@ messages.stickerSetNotModified#d3f924eb = messages.StickerSet;
|
|
|
632
638
|
|
|
633
639
|
botCommand#c27ac8c7 command:string description:string = BotCommand;
|
|
634
640
|
|
|
635
|
-
botInfo#8f300b57 flags:# user_id:flags.0?long description:flags.1?string description_photo:flags.4?Photo description_document:flags.5?Document commands:flags.2?Vector<BotCommand> menu_button:flags.3?BotMenuButton = BotInfo;
|
|
641
|
+
botInfo#8f300b57 flags:# has_preview_medias:flags.6?true user_id:flags.0?long description:flags.1?string description_photo:flags.4?Photo description_document:flags.5?Document commands:flags.2?Vector<BotCommand> menu_button:flags.3?BotMenuButton = BotInfo;
|
|
636
642
|
|
|
637
643
|
keyboardButton#a2fa4880 text:string = KeyboardButton;
|
|
638
644
|
keyboardButtonUrl#258aff05 text:string url:string = KeyboardButton;
|
|
@@ -767,7 +773,7 @@ auth.sentCodeTypeMissedCall#82006484 prefix:string length:int = auth.SentCodeTyp
|
|
|
767
773
|
auth.sentCodeTypeEmailCode#f450f59b flags:# apple_signin_allowed:flags.0?true google_signin_allowed:flags.1?true email_pattern:string length:int reset_available_period:flags.3?int reset_pending_date:flags.4?int = auth.SentCodeType;
|
|
768
774
|
auth.sentCodeTypeSetUpEmailRequired#a5491dea flags:# apple_signin_allowed:flags.0?true google_signin_allowed:flags.1?true = auth.SentCodeType;
|
|
769
775
|
auth.sentCodeTypeFragmentSms#d9565c39 url:string length:int = auth.SentCodeType;
|
|
770
|
-
auth.sentCodeTypeFirebaseSms#
|
|
776
|
+
auth.sentCodeTypeFirebaseSms#9fd736 flags:# nonce:flags.0?bytes play_integrity_project_id:flags.2?long play_integrity_nonce:flags.2?bytes receipt:flags.1?string push_timeout:flags.1?int length:int = auth.SentCodeType;
|
|
771
777
|
auth.sentCodeTypeSmsWord#a416ac81 flags:# beginning:flags.0?string = auth.SentCodeType;
|
|
772
778
|
auth.sentCodeTypeSmsPhrase#b37794af flags:# beginning:flags.0?string = auth.SentCodeType;
|
|
773
779
|
|
|
@@ -792,6 +798,7 @@ topPeerCategoryChannels#161d9628 = TopPeerCategory;
|
|
|
792
798
|
topPeerCategoryPhoneCalls#1e76a78c = TopPeerCategory;
|
|
793
799
|
topPeerCategoryForwardUsers#a8406ca9 = TopPeerCategory;
|
|
794
800
|
topPeerCategoryForwardChats#fbeec0f0 = TopPeerCategory;
|
|
801
|
+
topPeerCategoryBotsApp#fd9e7bec = TopPeerCategory;
|
|
795
802
|
|
|
796
803
|
topPeerCategoryPeers#fb834291 category:TopPeerCategory count:int peers:Vector<TopPeer> = TopPeerCategoryPeers;
|
|
797
804
|
|
|
@@ -800,7 +807,7 @@ contacts.topPeers#70b772a8 categories:Vector<TopPeerCategoryPeers> chats:Vector<
|
|
|
800
807
|
contacts.topPeersDisabled#b52c939d = contacts.TopPeers;
|
|
801
808
|
|
|
802
809
|
draftMessageEmpty#1b0c841a flags:# date:flags.0?int = DraftMessage;
|
|
803
|
-
draftMessage#
|
|
810
|
+
draftMessage#2d65321f flags:# no_webpage:flags.1?true invert_media:flags.6?true reply_to:flags.4?InputReplyTo message:string entities:flags.3?Vector<MessageEntity> media:flags.5?InputMedia date:int effect:flags.7?long = DraftMessage;
|
|
804
811
|
|
|
805
812
|
messages.featuredStickersNotModified#c6dc0c66 count:int = messages.FeaturedStickers;
|
|
806
813
|
messages.featuredStickers#be382906 flags:# premium:flags.0?true hash:long count:int sets:Vector<StickerSetCovered> unread:Vector<long> = messages.FeaturedStickers;
|
|
@@ -1428,9 +1435,7 @@ attachMenuBots#3c4301c0 hash:long bots:Vector<AttachMenuBot> users:Vector<User>
|
|
|
1428
1435
|
|
|
1429
1436
|
attachMenuBotsBot#93bf667f bot:AttachMenuBot users:Vector<User> = AttachMenuBotsBot;
|
|
1430
1437
|
|
|
1431
|
-
webViewResultUrl#
|
|
1432
|
-
|
|
1433
|
-
simpleWebViewResultUrl#882f76bb url:string = SimpleWebViewResult;
|
|
1438
|
+
webViewResultUrl#4d22ff98 flags:# fullsize:flags.1?true query_id:flags.0?long url:string = WebViewResult;
|
|
1434
1439
|
|
|
1435
1440
|
webViewMessageSent#c94511c flags:# msg_id:flags.0?InputBotInlineMessageID = WebViewMessageSent;
|
|
1436
1441
|
|
|
@@ -1458,7 +1463,7 @@ attachMenuPeerTypeBroadcast#7bfbdefc = AttachMenuPeerType;
|
|
|
1458
1463
|
inputInvoiceMessage#c5b56859 peer:InputPeer msg_id:int = InputInvoice;
|
|
1459
1464
|
inputInvoiceSlug#c326caef slug:string = InputInvoice;
|
|
1460
1465
|
inputInvoicePremiumGiftCode#98986c0d purpose:InputStorePaymentPurpose option:PremiumGiftCodeOption = InputInvoice;
|
|
1461
|
-
inputInvoiceStars#
|
|
1466
|
+
inputInvoiceStars#65f00ce3 purpose:InputStorePaymentPurpose = InputInvoice;
|
|
1462
1467
|
|
|
1463
1468
|
payments.exportedInvoice#aed0cbd9 url:string = payments.ExportedInvoice;
|
|
1464
1469
|
|
|
@@ -1470,7 +1475,8 @@ inputStorePaymentPremiumSubscription#a6751e66 flags:# restore:flags.0?true upgra
|
|
|
1470
1475
|
inputStorePaymentGiftPremium#616f7fe8 user_id:InputUser currency:string amount:long = InputStorePaymentPurpose;
|
|
1471
1476
|
inputStorePaymentPremiumGiftCode#a3805f3f flags:# users:Vector<InputUser> boost_peer:flags.0?InputPeer currency:string amount:long = InputStorePaymentPurpose;
|
|
1472
1477
|
inputStorePaymentPremiumGiveaway#160544ca flags:# only_new_subscribers:flags.0?true winners_are_visible:flags.3?true boost_peer:InputPeer additional_peers:flags.1?Vector<InputPeer> countries_iso2:flags.2?Vector<string> prize_description:flags.4?string random_id:long until_date:int currency:string amount:long = InputStorePaymentPurpose;
|
|
1473
|
-
|
|
1478
|
+
inputStorePaymentStarsTopup#dddd0f56 stars:long currency:string amount:long = InputStorePaymentPurpose;
|
|
1479
|
+
inputStorePaymentStarsGift#1d741ef7 user_id:InputUser stars:long currency:string amount:long = InputStorePaymentPurpose;
|
|
1474
1480
|
|
|
1475
1481
|
premiumGiftOption#74c34319 flags:# months:int currency:string amount:long bot_url:string store_product:flags.0?string = PremiumGiftOption;
|
|
1476
1482
|
|
|
@@ -1560,8 +1566,6 @@ botApp#95fcd1d6 flags:# id:long access_hash:long short_name:string title:string
|
|
|
1560
1566
|
|
|
1561
1567
|
messages.botApp#eb50adf5 flags:# inactive:flags.0?true request_write_access:flags.1?true has_settings:flags.2?true app:BotApp = messages.BotApp;
|
|
1562
1568
|
|
|
1563
|
-
appWebViewResultUrl#3c1b4f0d url:string = AppWebViewResult;
|
|
1564
|
-
|
|
1565
1569
|
inlineBotWebView#b57295d5 text:string url:string = InlineBotWebView;
|
|
1566
1570
|
|
|
1567
1571
|
readParticipantDate#4a4ff172 user_id:long date:int = ReadParticipantDate;
|
|
@@ -1611,14 +1615,16 @@ exportedStoryLink#3fc9053b link:string = ExportedStoryLink;
|
|
|
1611
1615
|
|
|
1612
1616
|
storiesStealthMode#712e27fd flags:# active_until_date:flags.0?int cooldown_until_date:flags.1?int = StoriesStealthMode;
|
|
1613
1617
|
|
|
1614
|
-
mediaAreaCoordinates#
|
|
1618
|
+
mediaAreaCoordinates#cfc9e002 flags:# x:double y:double w:double h:double rotation:double radius:flags.0?double = MediaAreaCoordinates;
|
|
1615
1619
|
|
|
1616
1620
|
mediaAreaVenue#be82db9c coordinates:MediaAreaCoordinates geo:GeoPoint title:string address:string provider:string venue_id:string venue_type:string = MediaArea;
|
|
1617
1621
|
inputMediaAreaVenue#b282217f coordinates:MediaAreaCoordinates query_id:long result_id:string = MediaArea;
|
|
1618
|
-
mediaAreaGeoPoint#
|
|
1622
|
+
mediaAreaGeoPoint#cad5452d flags:# coordinates:MediaAreaCoordinates geo:GeoPoint address:flags.0?GeoPointAddress = MediaArea;
|
|
1619
1623
|
mediaAreaSuggestedReaction#14455871 flags:# dark:flags.0?true flipped:flags.1?true coordinates:MediaAreaCoordinates reaction:Reaction = MediaArea;
|
|
1620
1624
|
mediaAreaChannelPost#770416af coordinates:MediaAreaCoordinates channel_id:long msg_id:int = MediaArea;
|
|
1621
1625
|
inputMediaAreaChannelPost#2271f2bf coordinates:MediaAreaCoordinates channel:InputChannel msg_id:int = MediaArea;
|
|
1626
|
+
mediaAreaUrl#37381085 coordinates:MediaAreaCoordinates url:string = MediaArea;
|
|
1627
|
+
mediaAreaWeather#49a6549c coordinates:MediaAreaCoordinates emoji:string temperature_c:double color:int = MediaArea;
|
|
1622
1628
|
|
|
1623
1629
|
peerStories#9a35e999 flags:# peer:Peer max_read_id:flags.0?int stories:Vector<StoryItem> = PeerStories;
|
|
1624
1630
|
|
|
@@ -1808,13 +1814,38 @@ starsTransactionPeerPlayMarket#7b560a0b = StarsTransactionPeer;
|
|
|
1808
1814
|
starsTransactionPeerPremiumBot#250dbaf8 = StarsTransactionPeer;
|
|
1809
1815
|
starsTransactionPeerFragment#e92fd902 = StarsTransactionPeer;
|
|
1810
1816
|
starsTransactionPeer#d80da15d peer:Peer = StarsTransactionPeer;
|
|
1817
|
+
starsTransactionPeerAds#60682812 = StarsTransactionPeer;
|
|
1811
1818
|
|
|
1812
1819
|
starsTopupOption#bd915c0 flags:# extended:flags.1?true stars:long store_product:flags.0?string currency:string amount:long = StarsTopupOption;
|
|
1813
1820
|
|
|
1814
|
-
starsTransaction#
|
|
1821
|
+
starsTransaction#2db5418f flags:# refund:flags.3?true pending:flags.4?true failed:flags.6?true gift:flags.10?true id:string stars:long date:int peer:StarsTransactionPeer title:flags.0?string description:flags.1?string photo:flags.2?WebDocument transaction_date:flags.5?int transaction_url:flags.5?string bot_payload:flags.7?bytes msg_id:flags.8?int extended_media:flags.9?Vector<MessageMedia> = StarsTransaction;
|
|
1815
1822
|
|
|
1816
1823
|
payments.starsStatus#8cf4ee60 flags:# balance:long history:Vector<StarsTransaction> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = payments.StarsStatus;
|
|
1817
1824
|
|
|
1825
|
+
foundStory#e87acbc0 peer:Peer story:StoryItem = FoundStory;
|
|
1826
|
+
|
|
1827
|
+
stories.foundStories#e2de7737 flags:# count:int stories:Vector<FoundStory> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = stories.FoundStories;
|
|
1828
|
+
|
|
1829
|
+
geoPointAddress#de4c5d93 flags:# country_iso2:string state:flags.0?string city:flags.1?string street:flags.2?string = GeoPointAddress;
|
|
1830
|
+
|
|
1831
|
+
starsRevenueStatus#79342946 flags:# withdrawal_enabled:flags.0?true current_balance:long available_balance:long overall_revenue:long next_withdrawal_at:flags.1?int = StarsRevenueStatus;
|
|
1832
|
+
|
|
1833
|
+
payments.starsRevenueStats#c92bb73b revenue_graph:StatsGraph status:StarsRevenueStatus usd_rate:double = payments.StarsRevenueStats;
|
|
1834
|
+
|
|
1835
|
+
payments.starsRevenueWithdrawalUrl#1dab80b7 url:string = payments.StarsRevenueWithdrawalUrl;
|
|
1836
|
+
|
|
1837
|
+
payments.starsRevenueAdsAccountUrl#394e7f21 url:string = payments.StarsRevenueAdsAccountUrl;
|
|
1838
|
+
|
|
1839
|
+
inputStarsTransaction#206ae6d1 flags:# refund:flags.0?true id:string = InputStarsTransaction;
|
|
1840
|
+
|
|
1841
|
+
starsGiftOption#5e0589f1 flags:# extended:flags.1?true stars:long store_product:flags.0?string currency:string amount:long = StarsGiftOption;
|
|
1842
|
+
|
|
1843
|
+
bots.popularAppBots#1991b13b flags:# next_offset:flags.0?string users:Vector<User> = bots.PopularAppBots;
|
|
1844
|
+
|
|
1845
|
+
botPreviewMedia#23e91ba3 date:int media:MessageMedia = BotPreviewMedia;
|
|
1846
|
+
|
|
1847
|
+
bots.previewInfo#ca71d64 media:Vector<BotPreviewMedia> lang_codes:Vector<string> = bots.PreviewInfo;
|
|
1848
|
+
|
|
1818
1849
|
---functions---
|
|
1819
1850
|
|
|
1820
1851
|
invokeAfterMsg#cb9f372d {X:Type} msg_id:long query:!X = X;
|
|
@@ -1981,7 +2012,7 @@ contacts.unblock#b550d328 flags:# my_stories_from:flags.0?true id:InputPeer = Bo
|
|
|
1981
2012
|
contacts.getBlocked#9a868f80 flags:# my_stories_from:flags.0?true offset:int limit:int = contacts.Blocked;
|
|
1982
2013
|
contacts.search#11f812d8 q:string limit:int = contacts.Found;
|
|
1983
2014
|
contacts.resolveUsername#f93ccba3 username:string = contacts.ResolvedPeer;
|
|
1984
|
-
contacts.getTopPeers#973478b6 flags:# correspondents:flags.0?true bots_pm:flags.1?true bots_inline:flags.2?true phone_calls:flags.3?true forward_users:flags.4?true forward_chats:flags.5?true groups:flags.10?true channels:flags.15?true offset:int limit:int hash:long = contacts.TopPeers;
|
|
2015
|
+
contacts.getTopPeers#973478b6 flags:# correspondents:flags.0?true bots_pm:flags.1?true bots_inline:flags.2?true phone_calls:flags.3?true forward_users:flags.4?true forward_chats:flags.5?true groups:flags.10?true channels:flags.15?true bots_app:flags.16?true offset:int limit:int hash:long = contacts.TopPeers;
|
|
1985
2016
|
contacts.resetTopPeerRating#1ae373ac category:TopPeerCategory peer:InputPeer = Bool;
|
|
1986
2017
|
contacts.resetSaved#879537f1 = Bool;
|
|
1987
2018
|
contacts.getSaved#82f1e39f = Vector<SavedContact>;
|
|
@@ -2058,7 +2089,7 @@ messages.editInlineBotMessage#83557dba flags:# no_webpage:flags.1?true invert_me
|
|
|
2058
2089
|
messages.getBotCallbackAnswer#9342ca07 flags:# game:flags.1?true peer:InputPeer msg_id:int data:flags.0?bytes password:flags.2?InputCheckPasswordSRP = messages.BotCallbackAnswer;
|
|
2059
2090
|
messages.setBotCallbackAnswer#d58f130a flags:# alert:flags.1?true query_id:long message:flags.0?string url:flags.2?string cache_time:int = Bool;
|
|
2060
2091
|
messages.getPeerDialogs#e470bcfd peers:Vector<InputDialogPeer> = messages.PeerDialogs;
|
|
2061
|
-
messages.saveDraft#
|
|
2092
|
+
messages.saveDraft#d372c5ce flags:# no_webpage:flags.1?true invert_media:flags.6?true reply_to:flags.4?InputReplyTo peer:InputPeer message:string entities:flags.3?Vector<MessageEntity> media:flags.5?InputMedia effect:flags.7?long = Bool;
|
|
2062
2093
|
messages.getAllDrafts#6a3f8d65 = Updates;
|
|
2063
2094
|
messages.getFeaturedStickers#64780b14 hash:long = messages.FeaturedStickers;
|
|
2064
2095
|
messages.readFeaturedStickers#5b118126 id:Vector<long> = Bool;
|
|
@@ -2158,9 +2189,9 @@ messages.searchSentMedia#107e31a0 q:string filter:MessagesFilter limit:int = mes
|
|
|
2158
2189
|
messages.getAttachMenuBots#16fcc2cb hash:long = AttachMenuBots;
|
|
2159
2190
|
messages.getAttachMenuBot#77216192 bot:InputUser = AttachMenuBotsBot;
|
|
2160
2191
|
messages.toggleBotInAttachMenu#69f59d69 flags:# write_allowed:flags.0?true bot:InputUser enabled:Bool = Bool;
|
|
2161
|
-
messages.requestWebView#269dc2c1 flags:# from_bot_menu:flags.4?true silent:flags.5?true peer:InputPeer bot:InputUser url:flags.1?string start_param:flags.3?string theme_params:flags.2?DataJSON platform:string reply_to:flags.0?InputReplyTo send_as:flags.13?InputPeer = WebViewResult;
|
|
2192
|
+
messages.requestWebView#269dc2c1 flags:# from_bot_menu:flags.4?true silent:flags.5?true compact:flags.7?true peer:InputPeer bot:InputUser url:flags.1?string start_param:flags.3?string theme_params:flags.2?DataJSON platform:string reply_to:flags.0?InputReplyTo send_as:flags.13?InputPeer = WebViewResult;
|
|
2162
2193
|
messages.prolongWebView#b0d81a83 flags:# silent:flags.5?true peer:InputPeer bot:InputUser query_id:long reply_to:flags.0?InputReplyTo send_as:flags.13?InputPeer = Bool;
|
|
2163
|
-
messages.requestSimpleWebView#
|
|
2194
|
+
messages.requestSimpleWebView#413a3e73 flags:# from_switch_webview:flags.1?true from_side_menu:flags.2?true compact:flags.7?true bot:InputUser url:flags.3?string start_param:flags.4?string theme_params:flags.0?DataJSON platform:string = WebViewResult;
|
|
2164
2195
|
messages.sendWebViewResultMessage#a4314f5 bot_query_id:string result:InputBotInlineResult = WebViewMessageSent;
|
|
2165
2196
|
messages.sendWebViewData#dc0242c8 bot:InputUser random_id:long button_text:string data:string = Updates;
|
|
2166
2197
|
messages.transcribeAudio#269e9a49 peer:InputPeer msg_id:int = messages.TranscribedAudio;
|
|
@@ -2182,7 +2213,7 @@ messages.getEmojiProfilePhotoGroups#21a548f3 hash:int = messages.EmojiGroups;
|
|
|
2182
2213
|
messages.searchCustomEmoji#2c11c0d7 emoticon:string hash:long = EmojiList;
|
|
2183
2214
|
messages.togglePeerTranslations#e47cb579 flags:# disabled:flags.0?true peer:InputPeer = Bool;
|
|
2184
2215
|
messages.getBotApp#34fdc5c3 app:InputBotApp hash:long = messages.BotApp;
|
|
2185
|
-
messages.requestAppWebView#
|
|
2216
|
+
messages.requestAppWebView#53618bce flags:# write_allowed:flags.0?true compact:flags.7?true peer:InputPeer app:InputBotApp start_param:flags.1?string theme_params:flags.2?DataJSON platform:string = WebViewResult;
|
|
2186
2217
|
messages.setChatWallPaper#8ffacae1 flags:# for_both:flags.3?true revert:flags.4?true peer:InputPeer wallpaper:flags.0?InputWallPaper settings:flags.2?WallPaperSettings id:flags.1?int = Updates;
|
|
2187
2218
|
messages.searchEmojiStickerSets#92b4494c flags:# exclude_featured:flags.0?true q:string hash:long = messages.FoundStickerSets;
|
|
2188
2219
|
messages.getSavedDialogs#5381d21a flags:# exclude_pinned:flags.0?true offset_date:int offset_id:int offset_peer:InputPeer limit:int hash:long = messages.SavedDialogs;
|
|
@@ -2210,6 +2241,7 @@ messages.getAvailableEffects#dea20a39 hash:int = messages.AvailableEffects;
|
|
|
2210
2241
|
messages.editFactCheck#589ee75 peer:InputPeer msg_id:int text:TextWithEntities = Updates;
|
|
2211
2242
|
messages.deleteFactCheck#d1da940c peer:InputPeer msg_id:int = Updates;
|
|
2212
2243
|
messages.getFactCheck#b9cdc5ee peer:InputPeer msg_id:Vector<int> = Vector<FactCheck>;
|
|
2244
|
+
messages.requestMainWebView#c9e01e7b flags:# compact:flags.7?true peer:InputPeer bot:InputUser start_param:flags.1?string theme_params:flags.0?DataJSON platform:string = WebViewResult;
|
|
2213
2245
|
|
|
2214
2246
|
updates.getState#edd4882a = updates.State;
|
|
2215
2247
|
updates.getDifference#19c2f763 flags:# pts:int pts_limit:flags.1?int pts_total_limit:flags.0?int date:int qts:int qts_limit:flags.2?int = updates.Difference;
|
|
@@ -2338,6 +2370,13 @@ bots.toggleUsername#53ca973 bot:InputUser username:string active:Bool = Bool;
|
|
|
2338
2370
|
bots.canSendMessage#1359f4e6 bot:InputUser = Bool;
|
|
2339
2371
|
bots.allowSendMessage#f132e3ef bot:InputUser = Updates;
|
|
2340
2372
|
bots.invokeWebViewCustomMethod#87fc5e7 bot:InputUser custom_method:string params:DataJSON = DataJSON;
|
|
2373
|
+
bots.getPopularAppBots#c2510192 offset:string limit:int = bots.PopularAppBots;
|
|
2374
|
+
bots.addPreviewMedia#17aeb75a bot:InputUser lang_code:string media:InputMedia = BotPreviewMedia;
|
|
2375
|
+
bots.editPreviewMedia#8525606f bot:InputUser lang_code:string media:InputMedia new_media:InputMedia = BotPreviewMedia;
|
|
2376
|
+
bots.deletePreviewMedia#2d0135b3 bot:InputUser lang_code:string media:Vector<InputMedia> = Bool;
|
|
2377
|
+
bots.reorderPreviewMedias#b627f3aa bot:InputUser lang_code:string order:Vector<InputMedia> = Bool;
|
|
2378
|
+
bots.getPreviewInfo#423ab3ad bot:InputUser lang_code:string = bots.PreviewInfo;
|
|
2379
|
+
bots.getPreviewMedias#a2a5594d bot:InputUser = Vector<BotPreviewMedia>;
|
|
2341
2380
|
|
|
2342
2381
|
payments.getPaymentForm#37148dbb flags:# invoice:InputInvoice theme_params:flags.0?DataJSON = payments.PaymentForm;
|
|
2343
2382
|
payments.getPaymentReceipt#2478d1cc peer:InputPeer msg_id:int = payments.PaymentReceipt;
|
|
@@ -2357,9 +2396,14 @@ payments.getGiveawayInfo#f4239425 peer:InputPeer msg_id:int = payments.GiveawayI
|
|
|
2357
2396
|
payments.launchPrepaidGiveaway#5ff58f20 peer:InputPeer giveaway_id:long purpose:InputStorePaymentPurpose = Updates;
|
|
2358
2397
|
payments.getStarsTopupOptions#c00ec7d3 = Vector<StarsTopupOption>;
|
|
2359
2398
|
payments.getStarsStatus#104fcfa7 peer:InputPeer = payments.StarsStatus;
|
|
2360
|
-
payments.getStarsTransactions#
|
|
2399
|
+
payments.getStarsTransactions#97938d5a flags:# inbound:flags.0?true outbound:flags.1?true ascending:flags.2?true peer:InputPeer offset:string limit:int = payments.StarsStatus;
|
|
2361
2400
|
payments.sendStarsForm#2bb731d flags:# form_id:long invoice:InputInvoice = payments.PaymentResult;
|
|
2362
2401
|
payments.refundStarsCharge#25ae8f4a user_id:InputUser charge_id:string = Updates;
|
|
2402
|
+
payments.getStarsRevenueStats#d91ffad6 flags:# dark:flags.0?true peer:InputPeer = payments.StarsRevenueStats;
|
|
2403
|
+
payments.getStarsRevenueWithdrawalUrl#13bbe8b3 peer:InputPeer stars:long password:InputCheckPasswordSRP = payments.StarsRevenueWithdrawalUrl;
|
|
2404
|
+
payments.getStarsRevenueAdsAccountUrl#d1d7efc5 peer:InputPeer = payments.StarsRevenueAdsAccountUrl;
|
|
2405
|
+
payments.getStarsTransactionsByID#27842d2e peer:InputPeer id:Vector<InputStarsTransaction> = payments.StarsStatus;
|
|
2406
|
+
payments.getStarsGiftOptions#d3c96bc8 flags:# user_id:flags.0?InputUser = Vector<StarsGiftOption>;
|
|
2363
2407
|
|
|
2364
2408
|
stickers.createStickerSet#9021ab67 flags:# masks:flags.0?true emojis:flags.5?true text_color:flags.6?true user_id:InputUser title:string short_name:string thumb:flags.2?InputDocument stickers:Vector<InputStickerSetItem> software:flags.3?string = messages.StickerSet;
|
|
2365
2409
|
stickers.removeStickerFromSet#f7760f51 sticker:InputDocument = messages.StickerSet;
|
|
@@ -2461,6 +2505,7 @@ stories.getChatsToSend#a56a8b60 = messages.Chats;
|
|
|
2461
2505
|
stories.togglePeerStoriesHidden#bd0415c4 peer:InputPeer hidden:Bool = Bool;
|
|
2462
2506
|
stories.getStoryReactionsList#b9b2881f flags:# forwards_first:flags.2?true peer:InputPeer id:int reaction:flags.0?Reaction offset:flags.1?string limit:int = stories.StoryReactionsList;
|
|
2463
2507
|
stories.togglePinnedToTop#b297e9b peer:InputPeer id:Vector<int> = Bool;
|
|
2508
|
+
stories.searchPosts#6cea116a flags:# hashtag:flags.0?string area:flags.1?MediaArea offset:string limit:int = stories.FoundStories;
|
|
2464
2509
|
|
|
2465
2510
|
premium.getBoostsList#60f67660 flags:# gifts:flags.0?true peer:InputPeer offset:string limit:int = premium.BoostsList;
|
|
2466
2511
|
premium.getMyBoosts#be77b4a = premium.MyBoosts;
|
|
@@ -2478,4 +2523,4 @@ smsjobs.finishJob#4f1ebf24 flags:# job_id:string error:flags.0?string = Bool;
|
|
|
2478
2523
|
|
|
2479
2524
|
fragment.getCollectibleInfo#be1e85ba collectible:InputCollectible = fragment.CollectibleInfo;
|
|
2480
2525
|
|
|
2481
|
-
// LAYER
|
|
2526
|
+
// LAYER 185
|
|
@@ -204,6 +204,8 @@ def pyrogram_api():
|
|
|
204
204
|
send_web_page
|
|
205
205
|
start_bot
|
|
206
206
|
update_color
|
|
207
|
+
delete_chat_history
|
|
208
|
+
send_paid_media
|
|
207
209
|
""",
|
|
208
210
|
chats="""
|
|
209
211
|
Chats
|
|
@@ -274,6 +276,7 @@ def pyrogram_api():
|
|
|
274
276
|
get_chat_photos
|
|
275
277
|
get_chat_photos_count
|
|
276
278
|
set_profile_photo
|
|
279
|
+
set_personal_channel
|
|
277
280
|
delete_profile_photos
|
|
278
281
|
set_username
|
|
279
282
|
update_profile
|
|
@@ -285,7 +288,6 @@ def pyrogram_api():
|
|
|
285
288
|
update_status
|
|
286
289
|
check_username
|
|
287
290
|
update_birthday
|
|
288
|
-
update_personal_channel
|
|
289
291
|
""",
|
|
290
292
|
invite_links="""
|
|
291
293
|
Invite Links
|
|
@@ -314,10 +316,13 @@ def pyrogram_api():
|
|
|
314
316
|
import_contacts
|
|
315
317
|
get_contacts
|
|
316
318
|
get_contacts_count
|
|
319
|
+
search_contacts
|
|
317
320
|
""",
|
|
318
321
|
payments="""
|
|
319
322
|
Payments
|
|
320
323
|
check_gift_code
|
|
324
|
+
get_payment_form
|
|
325
|
+
send_payment_form
|
|
321
326
|
""",
|
|
322
327
|
phone="""
|
|
323
328
|
Phone
|
|
@@ -333,6 +338,7 @@ def pyrogram_api():
|
|
|
333
338
|
Bots
|
|
334
339
|
get_inline_bot_results
|
|
335
340
|
send_inline_bot_result
|
|
341
|
+
send_invoice
|
|
336
342
|
answer_callback_query
|
|
337
343
|
answer_inline_query
|
|
338
344
|
request_callback_answer
|
|
@@ -370,6 +376,9 @@ def pyrogram_api():
|
|
|
370
376
|
recover_password
|
|
371
377
|
accept_terms_of_service
|
|
372
378
|
log_out
|
|
379
|
+
get_active_sessions
|
|
380
|
+
reset_session
|
|
381
|
+
reset_sessions
|
|
373
382
|
""",
|
|
374
383
|
advanced="""
|
|
375
384
|
Advanced
|
|
@@ -402,6 +411,13 @@ def pyrogram_api():
|
|
|
402
411
|
apply_boost
|
|
403
412
|
get_boosts
|
|
404
413
|
get_boosts_status
|
|
414
|
+
""",
|
|
415
|
+
account="""
|
|
416
|
+
Account
|
|
417
|
+
get_account_ttl
|
|
418
|
+
set_account_ttl
|
|
419
|
+
set_privacy
|
|
420
|
+
get_privacy
|
|
405
421
|
"""
|
|
406
422
|
)
|
|
407
423
|
|
|
@@ -454,7 +470,6 @@ def pyrogram_api():
|
|
|
454
470
|
User
|
|
455
471
|
Username
|
|
456
472
|
Chat
|
|
457
|
-
ChatPreview
|
|
458
473
|
ChatPhoto
|
|
459
474
|
ChatMember
|
|
460
475
|
ChatPermissions
|
|
@@ -472,6 +487,8 @@ def pyrogram_api():
|
|
|
472
487
|
Folder
|
|
473
488
|
GroupCallMember
|
|
474
489
|
ChatColor
|
|
490
|
+
FoundContacts
|
|
491
|
+
PrivacyRule
|
|
475
492
|
""",
|
|
476
493
|
messages_media="""
|
|
477
494
|
Messages & Media
|
|
@@ -512,6 +529,9 @@ def pyrogram_api():
|
|
|
512
529
|
GiftCode
|
|
513
530
|
CheckedGiftCode
|
|
514
531
|
SuccessfulPayment
|
|
532
|
+
PaidMediaInfo
|
|
533
|
+
PaidMediaPreview
|
|
534
|
+
PaymentForm
|
|
515
535
|
""",
|
|
516
536
|
bot_keyboards="""
|
|
517
537
|
Bot keyboards
|
|
@@ -536,7 +556,7 @@ def pyrogram_api():
|
|
|
536
556
|
RequestChatInfo
|
|
537
557
|
RequestUserInfo
|
|
538
558
|
RequestPollInfo
|
|
539
|
-
|
|
559
|
+
OrderInfo
|
|
540
560
|
PreCheckoutQuery
|
|
541
561
|
ShippingAddress
|
|
542
562
|
""",
|
|
@@ -592,8 +612,22 @@ def pyrogram_api():
|
|
|
592
612
|
""",
|
|
593
613
|
authorization="""
|
|
594
614
|
Authorization
|
|
615
|
+
ActiveSession
|
|
616
|
+
ActiveSessions
|
|
595
617
|
SentCode
|
|
596
618
|
TermsOfService
|
|
619
|
+
""",
|
|
620
|
+
input_privacy_rule="""
|
|
621
|
+
InputPrivacyRule
|
|
622
|
+
InputPrivacyRuleAllowAll
|
|
623
|
+
InputPrivacyRuleAllowContacts
|
|
624
|
+
InputPrivacyRuleAllowPremium
|
|
625
|
+
InputPrivacyRuleAllowUsers
|
|
626
|
+
InputPrivacyRuleAllowChats
|
|
627
|
+
InputPrivacyRuleDisallowAll
|
|
628
|
+
InputPrivacyRuleDisallowContacts
|
|
629
|
+
InputPrivacyRuleDisallowUsers
|
|
630
|
+
InputPrivacyRuleDisallowChats
|
|
597
631
|
"""
|
|
598
632
|
)
|
|
599
633
|
|
|
@@ -664,6 +698,7 @@ def pyrogram_api():
|
|
|
664
698
|
Message.react
|
|
665
699
|
Message.read
|
|
666
700
|
Message.view
|
|
701
|
+
Message.pay
|
|
667
702
|
""",
|
|
668
703
|
chat="""
|
|
669
704
|
Chat
|
|
@@ -751,6 +786,10 @@ def pyrogram_api():
|
|
|
751
786
|
Folder.pin_chat
|
|
752
787
|
Folder.remove_chat
|
|
753
788
|
Folder.export_link
|
|
789
|
+
""",
|
|
790
|
+
active_session="""
|
|
791
|
+
ActiveSession
|
|
792
|
+
ActiveSession.reset
|
|
754
793
|
"""
|
|
755
794
|
)
|
|
756
795
|
|