PyroMt 2.0.106__tar.gz → 2.4.1__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.
- pyromt-2.4.1/.gitignore +13 -0
- pyromt-2.4.1/.pylintrc +651 -0
- pyromt-2.4.1/CHANGELOG.md +16 -0
- pyromt-2.4.1/COPYING +674 -0
- pyromt-2.4.1/COPYING.LESSER +165 -0
- pyromt-2.4.1/LICENSE +21 -0
- pyromt-2.4.1/MANIFEST.in +11 -0
- pyromt-2.4.1/MyBot.session +0 -0
- pyromt-2.4.1/NOTICE +7 -0
- pyromt-2.4.1/PKG-INFO +150 -0
- pyromt-2.4.1/README.md +96 -0
- pyromt-2.4.1/compiler/__init__.py +18 -0
- pyromt-2.4.1/compiler/api/__init__.py +18 -0
- pyromt-2.4.1/compiler/api/compiler.py +664 -0
- pyromt-2.4.1/compiler/api/source/main_api.tl +2907 -0
- pyromt-2.4.1/compiler/api/template/combinator.txt +35 -0
- pyromt-2.4.1/compiler/api/template/type.txt +23 -0
- pyromt-2.4.1/compiler/errors/__init__.py +18 -0
- pyromt-2.4.1/compiler/errors/compiler.py +165 -0
- pyromt-2.4.1/compiler/errors/sort.py +36 -0
- pyromt-2.4.1/compiler/errors/source/400_BAD_REQUEST.tsv +508 -0
- pyromt-2.4.1/compiler/errors/source/403_FORBIDDEN.tsv +47 -0
- pyromt-2.4.1/compiler/errors/source/406_NOT_ACCEPTABLE.tsv +23 -0
- pyromt-2.4.1/compiler/errors/source/420_FLOOD.tsv +9 -0
- pyromt-2.4.1/compiler/errors/source/500_INTERNAL_SERVER_ERROR.tsv +48 -0
- pyromt-2.4.1/compiler/errors/source/503_SERVICE_UNAVAILABLE.tsv +4 -0
- pyromt-2.4.1/hatch_build.py +40 -0
- pyromt-2.4.1/n +65 -0
- pyromt-2.4.1/pyproject.toml +89 -0
- pyromt-2.4.1/pyrogram/__init__.py +24 -0
- pyromt-2.4.1/pyrogram/client.py +1398 -0
- pyromt-2.4.1/pyrogram/connection/__init__.py +24 -0
- pyromt-2.4.1/pyrogram/connection/connection.py +84 -0
- pyromt-2.4.1/pyrogram/connection/transport/__init__.py +23 -0
- pyromt-2.4.1/pyrogram/connection/transport/tcp/__init__.py +35 -0
- pyromt-2.4.1/pyrogram/connection/transport/tcp/tcp.py +168 -0
- pyromt-2.4.1/pyrogram/connection/transport/tcp/tcp_abridged.py +58 -0
- pyromt-2.4.1/pyrogram/connection/transport/tcp/tcp_abridged_o.py +87 -0
- pyromt-2.4.1/pyrogram/connection/transport/tcp/tcp_full.py +65 -0
- pyromt-2.4.1/pyrogram/connection/transport/tcp/tcp_intermediate.py +46 -0
- pyromt-2.4.1/pyrogram/connection/transport/tcp/tcp_intermediate_o.py +80 -0
- pyromt-2.4.1/pyrogram/crypto/__init__.py +18 -0
- pyromt-2.4.1/pyrogram/crypto/aes.py +131 -0
- pyromt-2.4.1/pyrogram/crypto/mtproto.py +101 -0
- pyromt-2.4.1/pyrogram/crypto/prime.py +83 -0
- pyromt-2.4.1/pyrogram/crypto/rsa.py +260 -0
- pyromt-2.4.1/pyrogram/dispatcher.py +438 -0
- pyromt-2.4.1/pyrogram/emoji.py +4020 -0
- pyromt-2.4.1/pyrogram/enums/__init__.py +76 -0
- pyromt-2.4.1/pyrogram/enums/auto_name.py +28 -0
- pyromt-2.4.1/pyrogram/enums/business_schedule.py +33 -0
- pyromt-2.4.1/pyrogram/enums/chat_action.py +79 -0
- pyromt-2.4.1/pyrogram/enums/chat_event_action.py +137 -0
- pyromt-2.4.1/pyrogram/enums/chat_join_type.py +34 -0
- pyromt-2.4.1/pyrogram/enums/chat_member_status.py +44 -0
- pyromt-2.4.1/pyrogram/enums/chat_members_filter.py +43 -0
- pyromt-2.4.1/pyrogram/enums/chat_type.py +47 -0
- pyromt-2.4.1/pyrogram/enums/client_platform.py +49 -0
- pyromt-2.4.1/pyrogram/enums/folder_color.py +47 -0
- pyromt-2.4.1/pyrogram/enums/gift_attribute_type.py +36 -0
- pyromt-2.4.1/pyrogram/enums/gift_for_resale_order.py +35 -0
- pyromt-2.4.1/pyrogram/enums/listerner_types.py +32 -0
- pyromt-2.4.1/pyrogram/enums/message_entity_type.py +88 -0
- pyromt-2.4.1/pyrogram/enums/message_media_type.py +89 -0
- pyromt-2.4.1/pyrogram/enums/message_origin_type.py +42 -0
- pyromt-2.4.1/pyrogram/enums/message_service_type.py +143 -0
- pyromt-2.4.1/pyrogram/enums/messages_filter.py +76 -0
- pyromt-2.4.1/pyrogram/enums/next_code_type.py +40 -0
- pyromt-2.4.1/pyrogram/enums/parse_mode.py +38 -0
- pyromt-2.4.1/pyrogram/enums/poll_type.py +32 -0
- pyromt-2.4.1/pyrogram/enums/profile_color.py +72 -0
- pyromt-2.4.1/pyrogram/enums/reaction_type.py +32 -0
- pyromt-2.4.1/pyrogram/enums/reply_color.py +94 -0
- pyromt-2.4.1/pyrogram/enums/sent_code_type.py +46 -0
- pyromt-2.4.1/pyrogram/enums/stories_privacy_rules.py +40 -0
- pyromt-2.4.1/pyrogram/enums/story_privacy.py +40 -0
- pyromt-2.4.1/pyrogram/enums/user_status.py +44 -0
- pyromt-2.4.1/pyrogram/errors/__init__.py +85 -0
- pyromt-2.4.1/pyrogram/errors/exceptions/__init__.py +645 -0
- pyromt-2.4.1/pyrogram/errors/exceptions/all.py +683 -0
- pyromt-2.4.1/pyrogram/errors/exceptions/bad_request_400.py +3567 -0
- pyromt-2.4.1/pyrogram/errors/exceptions/flood_420.py +74 -0
- pyromt-2.4.1/pyrogram/errors/exceptions/forbidden_403.py +340 -0
- pyromt-2.4.1/pyrogram/errors/exceptions/internal_server_error_500.py +347 -0
- pyromt-2.4.1/pyrogram/errors/exceptions/not_acceptable_406.py +172 -0
- pyromt-2.4.1/pyrogram/errors/exceptions/see_other_303.py +53 -0
- pyromt-2.4.1/pyrogram/errors/exceptions/service_unavailable_503.py +39 -0
- pyromt-2.4.1/pyrogram/errors/exceptions/unauthorized_401.py +81 -0
- pyromt-2.4.1/pyrogram/errors/pyromod/__init__.py +4 -0
- pyromt-2.4.1/pyrogram/errors/pyromod/listener_stopped.py +2 -0
- pyromt-2.4.1/pyrogram/errors/pyromod/listener_timeout.py +2 -0
- pyromt-2.4.1/pyrogram/errors/rpc_error.py +105 -0
- pyromt-2.4.1/pyrogram/file_id.py +482 -0
- pyromt-2.4.1/pyrogram/filters.py +1153 -0
- pyromt-2.4.1/pyrogram/handlers/__init__.py +71 -0
- pyromt-2.4.1/pyrogram/handlers/bot_business_connect_handler.py +49 -0
- pyromt-2.4.1/pyrogram/handlers/bot_business_message_handler.py +151 -0
- pyromt-2.4.1/pyrogram/handlers/callback_query_handler.py +207 -0
- pyromt-2.4.1/pyrogram/handlers/chat_join_request_handler.py +50 -0
- pyromt-2.4.1/pyrogram/handlers/chat_member_updated_handler.py +50 -0
- pyromt-2.4.1/pyrogram/handlers/chosen_inline_result_handler.py +51 -0
- pyromt-2.4.1/pyrogram/handlers/conversation_handler.py +70 -0
- pyromt-2.4.1/pyrogram/handlers/deleted_bot_business_messages_handler.py +61 -0
- pyromt-2.4.1/pyrogram/handlers/deleted_messages_handler.py +61 -0
- pyromt-2.4.1/pyrogram/handlers/disconnect_handler.py +44 -0
- pyromt-2.4.1/pyrogram/handlers/edited_bot_business_message_handler.py +50 -0
- pyromt-2.4.1/pyrogram/handlers/edited_message_handler.py +50 -0
- pyromt-2.4.1/pyrogram/handlers/error_handler.py +79 -0
- pyromt-2.4.1/pyrogram/handlers/handler.py +44 -0
- pyromt-2.4.1/pyrogram/handlers/inline_query_handler.py +50 -0
- pyromt-2.4.1/pyrogram/handlers/message_handler.py +154 -0
- pyromt-2.4.1/pyrogram/handlers/message_reaction_count_updated_handler.py +52 -0
- pyromt-2.4.1/pyrogram/handlers/message_reaction_updated_handler.py +52 -0
- pyromt-2.4.1/pyrogram/handlers/poll_handler.py +51 -0
- pyromt-2.4.1/pyrogram/handlers/pre_checkout_query_handler.py +51 -0
- pyromt-2.4.1/pyrogram/handlers/purchased_paid_media_handler.py +49 -0
- pyromt-2.4.1/pyrogram/handlers/raw_update_handler.py +72 -0
- pyromt-2.4.1/pyrogram/handlers/shipping_query_handler.py +51 -0
- pyromt-2.4.1/pyrogram/handlers/story_handler.py +49 -0
- pyromt-2.4.1/pyrogram/handlers/user_status_handler.py +48 -0
- pyromt-2.4.1/pyrogram/helpers/__init__.py +27 -0
- pyromt-2.4.1/pyrogram/helpers/helpers.py +138 -0
- pyromt-2.4.1/pyrogram/methods/__init__.py +58 -0
- pyromt-2.4.1/pyrogram/methods/advanced/__init__.py +30 -0
- pyromt-2.4.1/pyrogram/methods/advanced/invoke.py +90 -0
- pyromt-2.4.1/pyrogram/methods/advanced/resolve_peer.py +127 -0
- pyromt-2.4.1/pyrogram/methods/advanced/save_file.py +226 -0
- pyromt-2.4.1/pyrogram/methods/auth/__init__.py +54 -0
- pyromt-2.4.1/pyrogram/methods/auth/check_password.py +61 -0
- pyromt-2.4.1/pyrogram/methods/auth/connect.py +53 -0
- pyromt-2.4.1/pyrogram/methods/auth/disconnect.py +42 -0
- pyromt-2.4.1/pyrogram/methods/auth/get_active_sessions.py +38 -0
- pyromt-2.4.1/pyrogram/methods/auth/get_password_hint.py +39 -0
- pyromt-2.4.1/pyrogram/methods/auth/initialize.py +54 -0
- pyromt-2.4.1/pyrogram/methods/auth/log_out.py +52 -0
- pyromt-2.4.1/pyrogram/methods/auth/recover_password.py +58 -0
- pyromt-2.4.1/pyrogram/methods/auth/resend_code.py +65 -0
- pyromt-2.4.1/pyrogram/methods/auth/send_code.py +81 -0
- pyromt-2.4.1/pyrogram/methods/auth/send_recovery_code.py +44 -0
- pyromt-2.4.1/pyrogram/methods/auth/sign_in.py +77 -0
- pyromt-2.4.1/pyrogram/methods/auth/sign_in_bot.py +81 -0
- pyromt-2.4.1/pyrogram/methods/auth/sign_in_qrcode.py +111 -0
- pyromt-2.4.1/pyrogram/methods/auth/terminate.py +63 -0
- pyromt-2.4.1/pyrogram/methods/bots/__init__.py +66 -0
- pyromt-2.4.1/pyrogram/methods/bots/answer_callback_query.py +82 -0
- pyromt-2.4.1/pyrogram/methods/bots/answer_inline_query.py +113 -0
- pyromt-2.4.1/pyrogram/methods/bots/answer_web_app_query.py +54 -0
- pyromt-2.4.1/pyrogram/methods/bots/delete_bot_commands.py +63 -0
- pyromt-2.4.1/pyrogram/methods/bots/get_bot_commands.py +68 -0
- pyromt-2.4.1/pyrogram/methods/bots/get_bot_default_privileges.py +60 -0
- pyromt-2.4.1/pyrogram/methods/bots/get_bot_info.py +49 -0
- pyromt-2.4.1/pyrogram/methods/bots/get_chat_menu_button.py +68 -0
- pyromt-2.4.1/pyrogram/methods/bots/get_collectible_item_info.py +70 -0
- pyromt-2.4.1/pyrogram/methods/bots/get_game_high_scores.py +74 -0
- pyromt-2.4.1/pyrogram/methods/bots/get_inline_bot_results.py +94 -0
- pyromt-2.4.1/pyrogram/methods/bots/get_owned_bots.py +46 -0
- pyromt-2.4.1/pyrogram/methods/bots/get_similar_bots.py +46 -0
- pyromt-2.4.1/pyrogram/methods/bots/request_callback_answer.py +93 -0
- pyromt-2.4.1/pyrogram/methods/bots/send_game.py +144 -0
- pyromt-2.4.1/pyrogram/methods/bots/send_inline_bot_result.py +138 -0
- pyromt-2.4.1/pyrogram/methods/bots/set_bot_commands.py +74 -0
- pyromt-2.4.1/pyrogram/methods/bots/set_bot_default_privileges.py +82 -0
- pyromt-2.4.1/pyrogram/methods/bots/set_bot_info.py +61 -0
- pyromt-2.4.1/pyrogram/methods/bots/set_chat_menu_button.py +57 -0
- pyromt-2.4.1/pyrogram/methods/bots/set_game_score.py +102 -0
- pyromt-2.4.1/pyrogram/methods/business/__init__.py +38 -0
- pyromt-2.4.1/pyrogram/methods/business/answer_pre_checkout_query.py +65 -0
- pyromt-2.4.1/pyrogram/methods/business/answer_shipping_query.py +83 -0
- pyromt-2.4.1/pyrogram/methods/business/delete_business_messages.py +71 -0
- pyromt-2.4.1/pyrogram/methods/business/get_business_account_gifts.py +129 -0
- pyromt-2.4.1/pyrogram/methods/business/get_business_account_star_balance.py +61 -0
- pyromt-2.4.1/pyrogram/methods/business/get_business_connection.py +55 -0
- pyromt-2.4.1/pyrogram/methods/business/transfer_business_account_stars.py +72 -0
- pyromt-2.4.1/pyrogram/methods/chats/__init__.py +112 -0
- pyromt-2.4.1/pyrogram/methods/chats/add_chat_members.py +92 -0
- pyromt-2.4.1/pyrogram/methods/chats/archive_chats.py +73 -0
- pyromt-2.4.1/pyrogram/methods/chats/ban_chat_member.py +120 -0
- pyromt-2.4.1/pyrogram/methods/chats/create_channel.py +57 -0
- pyromt-2.4.1/pyrogram/methods/chats/create_group.py +68 -0
- pyromt-2.4.1/pyrogram/methods/chats/create_supergroup.py +61 -0
- pyromt-2.4.1/pyrogram/methods/chats/delete_channel.py +54 -0
- pyromt-2.4.1/pyrogram/methods/chats/delete_chat_photo.py +72 -0
- pyromt-2.4.1/pyrogram/methods/chats/delete_folder.py +52 -0
- pyromt-2.4.1/pyrogram/methods/chats/delete_supergroup.py +54 -0
- pyromt-2.4.1/pyrogram/methods/chats/delete_user_history.py +58 -0
- pyromt-2.4.1/pyrogram/methods/chats/export_folder_link.py +70 -0
- pyromt-2.4.1/pyrogram/methods/chats/get_chat.py +89 -0
- pyromt-2.4.1/pyrogram/methods/chats/get_chat_event_log.py +111 -0
- pyromt-2.4.1/pyrogram/methods/chats/get_chat_member.py +94 -0
- pyromt-2.4.1/pyrogram/methods/chats/get_chat_members.py +160 -0
- pyromt-2.4.1/pyrogram/methods/chats/get_chat_members_count.py +78 -0
- pyromt-2.4.1/pyrogram/methods/chats/get_chat_online_count.py +53 -0
- pyromt-2.4.1/pyrogram/methods/chats/get_dialogs.py +109 -0
- pyromt-2.4.1/pyrogram/methods/chats/get_dialogs_count.py +64 -0
- pyromt-2.4.1/pyrogram/methods/chats/get_folders.py +98 -0
- pyromt-2.4.1/pyrogram/methods/chats/get_send_as_chats.py +67 -0
- pyromt-2.4.1/pyrogram/methods/chats/join_chat.py +75 -0
- pyromt-2.4.1/pyrogram/methods/chats/leave_chat.py +81 -0
- pyromt-2.4.1/pyrogram/methods/chats/mark_chat_unread.py +49 -0
- pyromt-2.4.1/pyrogram/methods/chats/pin_chat_message.py +110 -0
- pyromt-2.4.1/pyrogram/methods/chats/promote_chat_member.py +115 -0
- pyromt-2.4.1/pyrogram/methods/chats/restrict_chat_member.py +197 -0
- pyromt-2.4.1/pyrogram/methods/chats/set_administrator_title.py +88 -0
- pyromt-2.4.1/pyrogram/methods/chats/set_chat_description.py +68 -0
- pyromt-2.4.1/pyrogram/methods/chats/set_chat_permissions.py +184 -0
- pyromt-2.4.1/pyrogram/methods/chats/set_chat_photo.py +167 -0
- pyromt-2.4.1/pyrogram/methods/chats/set_chat_protected_content.py +55 -0
- pyromt-2.4.1/pyrogram/methods/chats/set_chat_title.py +80 -0
- pyromt-2.4.1/pyrogram/methods/chats/set_chat_username.py +70 -0
- pyromt-2.4.1/pyrogram/methods/chats/set_send_as_chat.py +60 -0
- pyromt-2.4.1/pyrogram/methods/chats/set_slow_mode.py +65 -0
- pyromt-2.4.1/pyrogram/methods/chats/transfer_chat_ownership.py +83 -0
- pyromt-2.4.1/pyrogram/methods/chats/unarchive_chats.py +73 -0
- pyromt-2.4.1/pyrogram/methods/chats/unban_chat_member.py +66 -0
- pyromt-2.4.1/pyrogram/methods/chats/unpin_all_chat_messages.py +61 -0
- pyromt-2.4.1/pyrogram/methods/chats/unpin_chat_message.py +89 -0
- pyromt-2.4.1/pyrogram/methods/chats/update_color.py +75 -0
- pyromt-2.4.1/pyrogram/methods/chats/update_folder.py +161 -0
- pyromt-2.4.1/pyrogram/methods/contacts/__init__.py +34 -0
- pyromt-2.4.1/pyrogram/methods/contacts/add_contact.py +80 -0
- pyromt-2.4.1/pyrogram/methods/contacts/delete_contacts.py +68 -0
- pyromt-2.4.1/pyrogram/methods/contacts/get_contacts.py +48 -0
- pyromt-2.4.1/pyrogram/methods/contacts/get_contacts_count.py +42 -0
- pyromt-2.4.1/pyrogram/methods/contacts/import_contacts.py +59 -0
- pyromt-2.4.1/pyrogram/methods/decorators/__init__.py +70 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_bot_business_connect.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_bot_business_message.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_callback_query.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_chat_join_request.py +61 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_chat_member_updated.py +61 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_chosen_inline_result.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_deleted_bot_business_messages.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_deleted_messages.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_disconnect.py +44 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_edited_bot_business_message.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_edited_message.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_error.py +57 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_inline_query.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_message.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_message_reaction_count_updated.py +61 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_message_reaction_updated.py +61 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_poll.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_pre_checkout_query.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_purchased_paid_media.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_raw_update.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_shipping_query.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_story.py +62 -0
- pyromt-2.4.1/pyrogram/methods/decorators/on_user_status.py +60 -0
- pyromt-2.4.1/pyrogram/methods/forums/__init__.py +49 -0
- pyromt-2.4.1/pyrogram/methods/forums/close_forum_topic.py +57 -0
- pyromt-2.4.1/pyrogram/methods/forums/close_general_topic.py +53 -0
- pyromt-2.4.1/pyrogram/methods/forums/create_forum_topic.py +68 -0
- pyromt-2.4.1/pyrogram/methods/forums/delete_forum_topic.py +60 -0
- pyromt-2.4.1/pyrogram/methods/forums/edit_forum_topic.py +66 -0
- pyromt-2.4.1/pyrogram/methods/forums/edit_general_topic.py +57 -0
- pyromt-2.4.1/pyrogram/methods/forums/get_forum_topics.py +116 -0
- pyromt-2.4.1/pyrogram/methods/forums/get_forum_topics_by_id.py +91 -0
- pyromt-2.4.1/pyrogram/methods/forums/get_forum_topics_count.py +63 -0
- pyromt-2.4.1/pyrogram/methods/forums/hide_general_topic.py +52 -0
- pyromt-2.4.1/pyrogram/methods/forums/reopen_forum_topic.py +57 -0
- pyromt-2.4.1/pyrogram/methods/forums/reopen_general_topic.py +53 -0
- pyromt-2.4.1/pyrogram/methods/forums/unhide_general_topic.py +53 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/__init__.py +59 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/approve_all_chat_join_requests.py +57 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/approve_chat_join_request.py +60 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/create_chat_invite_link.py +105 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/decline_all_chat_join_requests.py +57 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/decline_chat_join_request.py +60 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/delete_chat_admin_invite_links.py +57 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/delete_chat_invite_link.py +54 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/edit_chat_invite_link.py +94 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/export_chat_invite_link.py +67 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/get_chat_admin_invite_links.py +103 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py +65 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py +58 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/get_chat_invite_link.py +58 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/get_chat_invite_link_joiners.py +89 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py +58 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/get_chat_join_requests.py +90 -0
- pyromt-2.4.1/pyrogram/methods/invite_links/revoke_chat_invite_link.py +70 -0
- pyromt-2.4.1/pyrogram/methods/messages/__init__.py +149 -0
- pyromt-2.4.1/pyrogram/methods/messages/add_task_to_todo.py +82 -0
- pyromt-2.4.1/pyrogram/methods/messages/copy_media_group.py +231 -0
- pyromt-2.4.1/pyrogram/methods/messages/copy_message.py +152 -0
- pyromt-2.4.1/pyrogram/methods/messages/delete_chat_history.py +102 -0
- pyromt-2.4.1/pyrogram/methods/messages/delete_messages.py +86 -0
- pyromt-2.4.1/pyrogram/methods/messages/delete_scheduled_messages.py +69 -0
- pyromt-2.4.1/pyrogram/methods/messages/download_media.py +199 -0
- pyromt-2.4.1/pyrogram/methods/messages/edit_inline_caption.py +72 -0
- pyromt-2.4.1/pyrogram/methods/messages/edit_inline_media.py +245 -0
- pyromt-2.4.1/pyrogram/methods/messages/edit_inline_reply_markup.py +70 -0
- pyromt-2.4.1/pyrogram/methods/messages/edit_inline_text.py +95 -0
- pyromt-2.4.1/pyrogram/methods/messages/edit_message_caption.py +89 -0
- pyromt-2.4.1/pyrogram/methods/messages/edit_message_media.py +307 -0
- pyromt-2.4.1/pyrogram/methods/messages/edit_message_reply_markup.py +91 -0
- pyromt-2.4.1/pyrogram/methods/messages/edit_message_text.py +117 -0
- pyromt-2.4.1/pyrogram/methods/messages/forward_media_group.py +120 -0
- pyromt-2.4.1/pyrogram/methods/messages/forward_messages.py +139 -0
- pyromt-2.4.1/pyrogram/methods/messages/get_available_effects.py +60 -0
- pyromt-2.4.1/pyrogram/methods/messages/get_chat_history.py +143 -0
- pyromt-2.4.1/pyrogram/methods/messages/get_chat_history_count.py +74 -0
- pyromt-2.4.1/pyrogram/methods/messages/get_custom_emoji_stickers.py +60 -0
- pyromt-2.4.1/pyrogram/methods/messages/get_discussion_message.py +67 -0
- pyromt-2.4.1/pyrogram/methods/messages/get_discussion_replies.py +88 -0
- pyromt-2.4.1/pyrogram/methods/messages/get_discussion_replies_count.py +64 -0
- pyromt-2.4.1/pyrogram/methods/messages/get_media_group.py +75 -0
- pyromt-2.4.1/pyrogram/methods/messages/get_message_read_participants.py +57 -0
- pyromt-2.4.1/pyrogram/methods/messages/get_messages.py +121 -0
- pyromt-2.4.1/pyrogram/methods/messages/get_scheduled_messages.py +83 -0
- pyromt-2.4.1/pyrogram/methods/messages/inline_session.py +68 -0
- pyromt-2.4.1/pyrogram/methods/messages/read_chat_history.py +75 -0
- pyromt-2.4.1/pyrogram/methods/messages/retract_vote.py +63 -0
- pyromt-2.4.1/pyrogram/methods/messages/search_global.py +133 -0
- pyromt-2.4.1/pyrogram/methods/messages/search_global_count.py +80 -0
- pyromt-2.4.1/pyrogram/methods/messages/search_global_hashtag_messages.py +102 -0
- pyromt-2.4.1/pyrogram/methods/messages/search_global_hashtag_messages_count.py +55 -0
- pyromt-2.4.1/pyrogram/methods/messages/search_messages.py +160 -0
- pyromt-2.4.1/pyrogram/methods/messages/search_messages_count.py +91 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_animation.py +347 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_audio.py +312 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_cached_media.py +187 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_chat_action.py +151 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_contact.py +193 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_dice.py +192 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_document.py +290 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_location.py +191 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_media_group.py +561 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_message.py +252 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_photo.py +285 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_poll.py +260 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_reaction.py +128 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_sticker.py +264 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_todo.py +99 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_venue.py +204 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_video.py +402 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_video_note.py +290 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_voice.py +277 -0
- pyromt-2.4.1/pyrogram/methods/messages/send_web_page.py +243 -0
- pyromt-2.4.1/pyrogram/methods/messages/set_todo_tasks_completion.py +76 -0
- pyromt-2.4.1/pyrogram/methods/messages/start_bot.py +78 -0
- pyromt-2.4.1/pyrogram/methods/messages/stop_poll.py +90 -0
- pyromt-2.4.1/pyrogram/methods/messages/stream_media.py +107 -0
- pyromt-2.4.1/pyrogram/methods/messages/transcribe_audio.py +52 -0
- pyromt-2.4.1/pyrogram/methods/messages/translate_text.py +121 -0
- pyromt-2.4.1/pyrogram/methods/messages/vote_poll.py +71 -0
- pyromt-2.4.1/pyrogram/methods/password/__init__.py +30 -0
- pyromt-2.4.1/pyrogram/methods/password/change_cloud_password.py +83 -0
- pyromt-2.4.1/pyrogram/methods/password/enable_cloud_password.py +89 -0
- pyromt-2.4.1/pyrogram/methods/password/remove_cloud_password.py +65 -0
- pyromt-2.4.1/pyrogram/methods/payments/__init__.py +75 -0
- pyromt-2.4.1/pyrogram/methods/payments/apply_gift_code.py +56 -0
- pyromt-2.4.1/pyrogram/methods/payments/check_giftcode.py +69 -0
- pyromt-2.4.1/pyrogram/methods/payments/convert_gift.py +52 -0
- pyromt-2.4.1/pyrogram/methods/payments/create_invoice_link.py +158 -0
- pyromt-2.4.1/pyrogram/methods/payments/get_available_gifts.py +46 -0
- pyromt-2.4.1/pyrogram/methods/payments/get_chat_gifts.py +125 -0
- pyromt-2.4.1/pyrogram/methods/payments/get_chat_gifts_count.py +86 -0
- pyromt-2.4.1/pyrogram/methods/payments/get_payment_form.py +89 -0
- pyromt-2.4.1/pyrogram/methods/payments/get_stars_balance.py +62 -0
- pyromt-2.4.1/pyrogram/methods/payments/get_stars_transactions.py +91 -0
- pyromt-2.4.1/pyrogram/methods/payments/get_stars_transactions_by_id.py +87 -0
- pyromt-2.4.1/pyrogram/methods/payments/get_upgraded_gift.py +67 -0
- pyromt-2.4.1/pyrogram/methods/payments/hide_gift.py +55 -0
- pyromt-2.4.1/pyrogram/methods/payments/refund_stars_payment.py +54 -0
- pyromt-2.4.1/pyrogram/methods/payments/search_gifts_for_resale.py +110 -0
- pyromt-2.4.1/pyrogram/methods/payments/send_gift.py +103 -0
- pyromt-2.4.1/pyrogram/methods/payments/send_invoice.py +235 -0
- pyromt-2.4.1/pyrogram/methods/payments/send_paid_media.py +314 -0
- pyromt-2.4.1/pyrogram/methods/payments/send_paid_reaction.py +75 -0
- pyromt-2.4.1/pyrogram/methods/payments/send_payment_form.py +133 -0
- pyromt-2.4.1/pyrogram/methods/payments/send_resold_gift.py +89 -0
- pyromt-2.4.1/pyrogram/methods/payments/set_gift_resale_price.py +82 -0
- pyromt-2.4.1/pyrogram/methods/payments/set_pinned_gifts.py +95 -0
- pyromt-2.4.1/pyrogram/methods/payments/show_gift.py +54 -0
- pyromt-2.4.1/pyrogram/methods/payments/transfer_gift.py +88 -0
- pyromt-2.4.1/pyrogram/methods/payments/upgrade_gift.py +81 -0
- pyromt-2.4.1/pyrogram/methods/phone/__init__.py +25 -0
- pyromt-2.4.1/pyrogram/methods/phone/get_call_members.py +103 -0
- pyromt-2.4.1/pyrogram/methods/pyromod/__init__.py +46 -0
- pyromt-2.4.1/pyrogram/methods/pyromod/ask.py +103 -0
- pyromt-2.4.1/pyrogram/methods/pyromod/get_listener_matching_with_data.py +54 -0
- pyromt-2.4.1/pyrogram/methods/pyromod/get_listener_matching_with_identifier_pattern.py +59 -0
- pyromt-2.4.1/pyrogram/methods/pyromod/get_many_listeners_matching_with_data.py +49 -0
- pyromt-2.4.1/pyrogram/methods/pyromod/get_many_listeners_matching_with_identifier_pattern.py +53 -0
- pyromt-2.4.1/pyrogram/methods/pyromod/listen.py +121 -0
- pyromt-2.4.1/pyrogram/methods/pyromod/register_next_step_handler.py +84 -0
- pyromt-2.4.1/pyrogram/methods/pyromod/remove_listerner.py +39 -0
- pyromt-2.4.1/pyrogram/methods/pyromod/stop_listener.py +56 -0
- pyromt-2.4.1/pyrogram/methods/pyromod/stop_listening.py +68 -0
- pyromt-2.4.1/pyrogram/methods/pyromod/wait_for_callback_query.py +84 -0
- pyromt-2.4.1/pyrogram/methods/pyromod/wait_for_message.py +83 -0
- pyromt-2.4.1/pyrogram/methods/stickers/__init__.py +28 -0
- pyromt-2.4.1/pyrogram/methods/stickers/add_sticker_to_set.py +115 -0
- pyromt-2.4.1/pyrogram/methods/stickers/create_sticker_set.py +127 -0
- pyromt-2.4.1/pyrogram/methods/stickers/get_sticker_set.py +52 -0
- pyromt-2.4.1/pyrogram/methods/users/__init__.py +72 -0
- pyromt-2.4.1/pyrogram/methods/users/block_user.py +56 -0
- pyromt-2.4.1/pyrogram/methods/users/delete_profile_photos.py +64 -0
- pyromt-2.4.1/pyrogram/methods/users/delete_stories.py +74 -0
- pyromt-2.4.1/pyrogram/methods/users/edit_story.py +253 -0
- pyromt-2.4.1/pyrogram/methods/users/export_story_link.py +67 -0
- pyromt-2.4.1/pyrogram/methods/users/forward_story.py +122 -0
- pyromt-2.4.1/pyrogram/methods/users/get_all_stories.py +56 -0
- pyromt-2.4.1/pyrogram/methods/users/get_chat_photos.py +169 -0
- pyromt-2.4.1/pyrogram/methods/users/get_chat_photos_count.py +76 -0
- pyromt-2.4.1/pyrogram/methods/users/get_common_chats.py +69 -0
- pyromt-2.4.1/pyrogram/methods/users/get_default_emoji_statuses.py +48 -0
- pyromt-2.4.1/pyrogram/methods/users/get_me.py +50 -0
- pyromt-2.4.1/pyrogram/methods/users/get_peer_stories.py +66 -0
- pyromt-2.4.1/pyrogram/methods/users/get_stories.py +77 -0
- pyromt-2.4.1/pyrogram/methods/users/get_stories_history.py +75 -0
- pyromt-2.4.1/pyrogram/methods/users/get_users.py +73 -0
- pyromt-2.4.1/pyrogram/methods/users/send_story.py +257 -0
- pyromt-2.4.1/pyrogram/methods/users/set_emoji_status.py +63 -0
- pyromt-2.4.1/pyrogram/methods/users/set_profile_photo.py +94 -0
- pyromt-2.4.1/pyrogram/methods/users/set_username.py +58 -0
- pyromt-2.4.1/pyrogram/methods/users/unblock_user.py +56 -0
- pyromt-2.4.1/pyrogram/methods/users/update_birthday.py +60 -0
- pyromt-2.4.1/pyrogram/methods/users/update_personal_chat.py +51 -0
- pyromt-2.4.1/pyrogram/methods/users/update_profile.py +73 -0
- pyromt-2.4.1/pyrogram/methods/utilities/__init__.py +46 -0
- pyromt-2.4.1/pyrogram/methods/utilities/add_handler.py +68 -0
- pyromt-2.4.1/pyrogram/methods/utilities/compose.py +79 -0
- pyromt-2.4.1/pyrogram/methods/utilities/export_session_string.py +41 -0
- pyromt-2.4.1/pyrogram/methods/utilities/idle.py +88 -0
- pyromt-2.4.1/pyrogram/methods/utilities/ping.py +46 -0
- pyromt-2.4.1/pyrogram/methods/utilities/remove_error_handler.py +42 -0
- pyromt-2.4.1/pyrogram/methods/utilities/remove_handler.py +64 -0
- pyromt-2.4.1/pyrogram/methods/utilities/restart.py +73 -0
- pyromt-2.4.1/pyrogram/methods/utilities/run.py +87 -0
- pyromt-2.4.1/pyrogram/methods/utilities/run_sync.py +41 -0
- pyromt-2.4.1/pyrogram/methods/utilities/start.py +106 -0
- pyromt-2.4.1/pyrogram/methods/utilities/stop.py +70 -0
- pyromt-2.4.1/pyrogram/methods/utilities/stop_transmission.py +45 -0
- pyromt-2.4.1/pyrogram/mime_types.py +1882 -0
- pyromt-2.4.1/pyrogram/nav/__init__.py +24 -0
- pyromt-2.4.1/pyrogram/nav/pagination.py +94 -0
- pyromt-2.4.1/pyrogram/parser/__init__.py +24 -0
- pyromt-2.4.1/pyrogram/parser/html.py +249 -0
- pyromt-2.4.1/pyrogram/parser/markdown.py +290 -0
- pyromt-2.4.1/pyrogram/parser/parser.py +62 -0
- pyromt-2.4.1/pyrogram/parser/utils.py +55 -0
- pyromt-2.4.1/pyrogram/raw/__init__.py +35 -0
- pyromt-2.4.1/pyrogram/raw/all.py +2371 -0
- pyromt-2.4.1/pyrogram/raw/base/__init__.py +415 -0
- pyromt-2.4.1/pyrogram/raw/base/access_point_rule.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/account/__init__.py +42 -0
- pyromt-2.4.1/pyrogram/raw/base/account/authorization_form.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/authorizations.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/auto_download_settings.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/auto_save_settings.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/business_chat_links.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/chat_themes.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/account/connected_bots.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/content_settings.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/email_verified.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/account/emoji_statuses.py +57 -0
- pyromt-2.4.1/pyrogram/raw/base/account/paid_messages_revenue.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/passkey_registration_options.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/passkeys.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/password.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/password_input_settings.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/account/password_settings.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/privacy_rules.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/account/reset_password_result.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/account/resolved_business_chat_links.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/saved_music_ids.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/account/saved_ringtone.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/account/saved_ringtones.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/account/sent_email_code.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/takeout.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/themes.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/account/tmp_password.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account/wall_papers.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/account/web_authorizations.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/account_days_ttl.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/attach_menu_bot.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/attach_menu_bot_icon.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/attach_menu_bot_icon_color.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/attach_menu_bots.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/attach_menu_bots_bot.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/attach_menu_peer_type.py +47 -0
- pyromt-2.4.1/pyrogram/raw/base/auction_bid_level.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/auth/__init__.py +23 -0
- pyromt-2.4.1/pyrogram/raw/base/auth/authorization.py +61 -0
- pyromt-2.4.1/pyrogram/raw/base/auth/code_type.py +47 -0
- pyromt-2.4.1/pyrogram/raw/base/auth/exported_authorization.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/auth/logged_out.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/auth/login_token.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/auth/passkey_login_options.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/auth/password_recovery.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/auth/sent_code.py +61 -0
- pyromt-2.4.1/pyrogram/raw/base/auth/sent_code_type.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/authorization.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/auto_download_settings.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/auto_save_exception.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/auto_save_settings.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/available_effect.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/available_reaction.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/bad_msg_notification.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/bank_card_open_url.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/base_theme.py +47 -0
- pyromt-2.4.1/pyrogram/raw/base/bind_auth_key_inner.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/birthday.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/bool.py +255 -0
- pyromt-2.4.1/pyrogram/raw/base/boost.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/bot_app.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/bot_app_settings.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/bot_business_connection.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/bot_command.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/bot_command_scope.py +49 -0
- pyromt-2.4.1/pyrogram/raw/base/bot_info.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/bot_inline_message.py +49 -0
- pyromt-2.4.1/pyrogram/raw/base/bot_inline_result.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/bot_menu_button.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/bot_preview_media.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/bot_verification.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/bot_verifier_settings.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/bots/__init__.py +17 -0
- pyromt-2.4.1/pyrogram/raw/base/bots/bot_info.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/bots/popular_app_bots.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/bots/preview_info.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/business_away_message.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/business_away_message_schedule.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/business_bot_recipients.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/business_bot_rights.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/business_chat_link.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/business_greeting_message.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/business_intro.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/business_location.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/business_recipients.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/business_weekly_open.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/business_work_hours.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/cdn_config.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/cdn_public_key.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/channel_admin_log_event.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/channel_admin_log_event_action.py +93 -0
- pyromt-2.4.1/pyrogram/raw/base/channel_admin_log_events_filter.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/channel_location.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/channel_messages_filter.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/channel_participant.py +48 -0
- pyromt-2.4.1/pyrogram/raw/base/channel_participants_filter.py +50 -0
- pyromt-2.4.1/pyrogram/raw/base/channels/__init__.py +19 -0
- pyromt-2.4.1/pyrogram/raw/base/channels/admin_log_results.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/channels/channel_participant.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/channels/channel_participants.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/channels/send_as_peers.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/channels/sponsored_message_report_result.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/chat.py +47 -0
- pyromt-2.4.1/pyrogram/raw/base/chat_admin_rights.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/chat_admin_with_invites.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/chat_banned_rights.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/chat_full.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/chat_invite.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/chat_invite_importer.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/chat_onlines.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/chat_participant.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/chat_participants.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/chat_photo.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/chat_reactions.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/chat_theme.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/chatlists/__init__.py +18 -0
- pyromt-2.4.1/pyrogram/raw/base/chatlists/chatlist_invite.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/chatlists/chatlist_updates.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/chatlists/exported_chatlist_invite.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/chatlists/exported_invites.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/client_dh_inner_data.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/code_settings.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/config.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/connected_bot.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/connected_bot_star_ref.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/contact.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/contact_birthday.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/contact_status.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/contacts/__init__.py +22 -0
- pyromt-2.4.1/pyrogram/raw/base/contacts/blocked.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/contacts/contact_birthdays.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/contacts/contacts.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/contacts/found.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/contacts/imported_contacts.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/contacts/resolved_peer.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/contacts/sponsored_peers.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/contacts/top_peers.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/data_json.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/dc_option.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/default_history_ttl.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/destroy_auth_key_res.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/destroy_session_res.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/dialog.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/dialog_filter.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/dialog_filter_suggested.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/dialog_peer.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/disallowed_gifts_settings.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/document.py +57 -0
- pyromt-2.4.1/pyrogram/raw/base/document_attribute.py +50 -0
- pyromt-2.4.1/pyrogram/raw/base/draft_message.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/email_verification.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/email_verify_purpose.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/emoji_group.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/emoji_keyword.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/emoji_keywords_difference.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/emoji_language.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/emoji_list.py +58 -0
- pyromt-2.4.1/pyrogram/raw/base/emoji_status.py +46 -0
- pyromt-2.4.1/pyrogram/raw/base/emoji_url.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/encrypted_chat.py +58 -0
- pyromt-2.4.1/pyrogram/raw/base/encrypted_file.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/encrypted_message.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/error.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/exported_chat_invite.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/exported_chatlist_invite.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/exported_contact_token.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/exported_message_link.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/exported_story_link.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/fact_check.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/file_hash.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/folder.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/folder_peer.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/forum_topic.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/found_story.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/fragment/__init__.py +15 -0
- pyromt-2.4.1/pyrogram/raw/base/fragment/collectible_info.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/game.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/geo_point.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/geo_point_address.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/global_privacy_settings.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/group_call.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/group_call_donor.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/group_call_message.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/group_call_participant.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/group_call_participant_video.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/group_call_participant_video_source_group.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/group_call_stream_channel.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/help/__init__.py +35 -0
- pyromt-2.4.1/pyrogram/raw/base/help/app_config.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/help/app_update.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/help/config_simple.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/help/countries_list.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/help/country.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/help/country_code.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/help/deep_link_info.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/help/invite_text.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/help/passport_config.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/help/peer_color_option.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/help/peer_color_set.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/help/peer_colors.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/help/premium_promo.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/help/promo_data.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/help/recent_me_urls.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/help/support.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/help/support_name.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/help/terms_of_service.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/help/terms_of_service_update.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/help/timezones_list.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/help/user_info.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/high_score.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/http_wait.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/imported_contact.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/inline_bot_switch_pm.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/inline_bot_web_view.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/inline_query_peer_type.py +48 -0
- pyromt-2.4.1/pyrogram/raw/base/input_app_event.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_bot_app.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_bot_inline_message.py +50 -0
- pyromt-2.4.1/pyrogram/raw/base/input_bot_inline_message_id.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_bot_inline_result.py +46 -0
- pyromt-2.4.1/pyrogram/raw/base/input_business_away_message.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_business_bot_recipients.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_business_chat_link.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_business_greeting_message.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_business_intro.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_business_recipients.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_channel.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/input_chat_photo.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/input_chat_theme.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/input_chatlist.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_check_password_srp.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_client_proxy.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_collectible.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_contact.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_dialog_peer.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_document.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_encrypted_chat.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_encrypted_file.py +46 -0
- pyromt-2.4.1/pyrogram/raw/base/input_file.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/input_file_location.py +52 -0
- pyromt-2.4.1/pyrogram/raw/base/input_folder_peer.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_game.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_geo_point.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_group_call.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/input_invoice.py +57 -0
- pyromt-2.4.1/pyrogram/raw/base/input_media.py +62 -0
- pyromt-2.4.1/pyrogram/raw/base/input_message.py +46 -0
- pyromt-2.4.1/pyrogram/raw/base/input_notify_peer.py +47 -0
- pyromt-2.4.1/pyrogram/raw/base/input_passkey_credential.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_passkey_response.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_payment_credentials.py +46 -0
- pyromt-2.4.1/pyrogram/raw/base/input_peer.py +49 -0
- pyromt-2.4.1/pyrogram/raw/base/input_peer_notify_settings.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_phone_call.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_photo.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_privacy_key.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/input_privacy_rule.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/input_quick_reply_shortcut.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_reply_to.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/input_saved_star_gift.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/input_secure_file.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_secure_value.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_single_media.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_star_gift_auction.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_stars_transaction.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_sticker_set.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/input_sticker_set_item.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_stickered_media.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_store_payment_purpose.py +50 -0
- pyromt-2.4.1/pyrogram/raw/base/input_theme.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/input_theme_settings.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_user.py +46 -0
- pyromt-2.4.1/pyrogram/raw/base/input_wall_paper.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/input_web_document.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/input_web_file_location.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/invoice.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/ip_port.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/json_object_value.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/json_value.py +48 -0
- pyromt-2.4.1/pyrogram/raw/base/keyboard_button.py +60 -0
- pyromt-2.4.1/pyrogram/raw/base/keyboard_button_row.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/keyboard_button_style.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/labeled_price.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/lang_pack_difference.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/lang_pack_language.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/lang_pack_string.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/mask_coords.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/media_area.py +51 -0
- pyromt-2.4.1/pyrogram/raw/base/media_area_coordinates.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/message.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/message_action.py +104 -0
- pyromt-2.4.1/pyrogram/raw/base/message_entity.py +63 -0
- pyromt-2.4.1/pyrogram/raw/base/message_extended_media.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/message_fwd_header.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/message_media.py +72 -0
- pyromt-2.4.1/pyrogram/raw/base/message_peer_reaction.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/message_peer_vote.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/message_range.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/message_reactions.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/message_reactor.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/message_replies.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/message_reply_header.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/message_report_option.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/message_views.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/__init__.py +76 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/affected_found_messages.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/affected_history.py +59 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/affected_messages.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/all_stickers.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/archived_stickers.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/available_effects.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/available_reactions.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/bot_app.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/bot_callback_answer.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/bot_prepared_inline_message.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/bot_results.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/chat_admins_with_invites.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/chat_full.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/chat_invite_importers.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/chats.py +61 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/checked_history_import_peer.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/dh_config.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/dialog_filters.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/dialogs.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/discussion_message.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/emoji_game_info.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/emoji_game_outcome.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/emoji_groups.py +57 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/exported_chat_invite.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/exported_chat_invites.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/faved_stickers.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/featured_stickers.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/forum_topics.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/found_sticker_sets.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/found_stickers.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/high_scores.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/history_import.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/history_import_parsed.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/inactive_chats.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/invited_users.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/message_edit_data.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/message_reactions_list.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/message_views.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/messages.py +70 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/my_stickers.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/peer_dialogs.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/peer_settings.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/prepared_inline_message.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/quick_replies.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/reactions.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/recent_stickers.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/saved_dialogs.py +57 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/saved_gifs.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/saved_reaction_tags.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/search_counter.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/search_results_calendar.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/search_results_positions.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/sent_encrypted_message.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/sponsored_messages.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/sticker_set.py +62 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/sticker_set_install_result.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/stickers.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/transcribed_audio.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/translated_text.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/votes_list.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/web_page.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages/web_page_preview.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/messages_filter.py +59 -0
- pyromt-2.4.1/pyrogram/raw/base/missing_invitee.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/msg_detailed_info.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/msg_resend_req.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/msgs_ack.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/msgs_all_info.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/msgs_state_info.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/msgs_state_req.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/my_boost.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/nearest_dc.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/new_session.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/notification_sound.py +46 -0
- pyromt-2.4.1/pyrogram/raw/base/notify_peer.py +47 -0
- pyromt-2.4.1/pyrogram/raw/base/null.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/outbox_read_date.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/page.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/page_block.py +71 -0
- pyromt-2.4.1/pyrogram/raw/base/page_caption.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/page_list_item.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/page_list_ordered_item.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/page_related_article.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/page_table_cell.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/page_table_row.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/paid_reaction_privacy.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/passkey.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/password_kdf_algo.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/payment_charge.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/payment_form_method.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/payment_requested_info.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/payment_saved_credentials.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/__init__.py +42 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/bank_card_data.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/check_can_send_gift_result.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/checked_gift_code.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/connected_star_ref_bots.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/exported_invoice.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/giveaway_info.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/payment_form.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/payment_receipt.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/payment_result.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/resale_star_gifts.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/saved_info.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/saved_star_gifts.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/star_gift_active_auctions.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/star_gift_auction_acquired_gifts.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/star_gift_auction_state.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/star_gift_collections.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/star_gift_upgrade_attributes.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/star_gift_upgrade_preview.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/star_gift_withdrawal_url.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/star_gifts.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/stars_revenue_ads_account_url.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/stars_revenue_stats.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/stars_revenue_withdrawal_url.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/stars_status.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/suggested_star_ref_bots.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/unique_star_gift.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/unique_star_gift_value_info.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/payments/validated_requested_info.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/peer.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/peer_blocked.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/peer_color.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/peer_located.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/peer_notify_settings.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/peer_settings.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/peer_stories.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/pending_suggestion.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/phone/__init__.py +22 -0
- pyromt-2.4.1/pyrogram/raw/base/phone/exported_group_call_invite.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/phone/group_call.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/phone/group_call_stars.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/phone/group_call_stream_channels.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/phone/group_call_stream_rtmp_url.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/phone/group_participants.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/phone/join_as_peers.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/phone/phone_call.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/phone_call.py +48 -0
- pyromt-2.4.1/pyrogram/raw/base/phone_call_discard_reason.py +47 -0
- pyromt-2.4.1/pyrogram/raw/base/phone_call_protocol.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/phone_connection.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/photo.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/photo_size.py +48 -0
- pyromt-2.4.1/pyrogram/raw/base/photos/__init__.py +16 -0
- pyromt-2.4.1/pyrogram/raw/base/photos/photo.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/photos/photos.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/poll.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/poll_answer.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/poll_answer_voters.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/poll_results.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/pong.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/popular_contact.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/post_address.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/post_interaction_counters.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/pq_inner_data.py +46 -0
- pyromt-2.4.1/pyrogram/raw/base/premium/__init__.py +17 -0
- pyromt-2.4.1/pyrogram/raw/base/premium/boosts_list.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/premium/boosts_status.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/premium/my_boosts.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/premium_gift_code_option.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/premium_subscription_option.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/prepaid_giveaway.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/privacy_key.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/privacy_rule.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/profile_tab.py +50 -0
- pyromt-2.4.1/pyrogram/raw/base/public_forward.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/quick_reply.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/reaction.py +46 -0
- pyromt-2.4.1/pyrogram/raw/base/reaction_count.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/reaction_notifications_from.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/reactions_notify_settings.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/read_participant_date.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/received_notify_message.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/recent_me_url.py +47 -0
- pyromt-2.4.1/pyrogram/raw/base/recent_story.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/reply_markup.py +46 -0
- pyromt-2.4.1/pyrogram/raw/base/report_reason.py +52 -0
- pyromt-2.4.1/pyrogram/raw/base/report_result.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/request_peer_type.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/requested_peer.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/requirement_to_contact.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/res_pq.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/restriction_reason.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/rich_text.py +58 -0
- pyromt-2.4.1/pyrogram/raw/base/rpc_drop_answer.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/rpc_error.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/rpc_result.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/saved_contact.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/saved_dialog.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/saved_reaction_tag.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/saved_star_gift.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/search_posts_flood.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/search_results_calendar_period.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/search_results_position.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/secure_credentials_encrypted.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/secure_data.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/secure_file.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/secure_password_kdf_algo.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/secure_plain_data.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/secure_required_type.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/secure_secret_settings.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/secure_value.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/secure_value_error.py +51 -0
- pyromt-2.4.1/pyrogram/raw/base/secure_value_hash.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/secure_value_type.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/send_as_peer.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/send_message_action.py +61 -0
- pyromt-2.4.1/pyrogram/raw/base/server_dh_inner_data.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/server_dh_params.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/set_client_dh_params_answer.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/shipping_option.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/sms_job.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/smsjobs/__init__.py +16 -0
- pyromt-2.4.1/pyrogram/raw/base/smsjobs/eligibility_to_join.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/smsjobs/status.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/sponsored_message.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/sponsored_message_report_option.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/sponsored_peer.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/star_gift.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/star_gift_active_auction_state.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/star_gift_attribute.py +46 -0
- pyromt-2.4.1/pyrogram/raw/base/star_gift_attribute_counter.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/star_gift_attribute_id.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/star_gift_attribute_rarity.py +47 -0
- pyromt-2.4.1/pyrogram/raw/base/star_gift_auction_acquired_gift.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/star_gift_auction_round.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/star_gift_auction_state.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/star_gift_auction_user_state.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/star_gift_background.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/star_gift_collection.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/star_gift_upgrade_price.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/star_ref_program.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/stars_amount.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/stars_gift_option.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/stars_giveaway_option.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/stars_giveaway_winners_option.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/stars_rating.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/stars_revenue_status.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/stars_subscription.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/stars_subscription_pricing.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/stars_topup_option.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/stars_transaction.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/stars_transaction_peer.py +50 -0
- pyromt-2.4.1/pyrogram/raw/base/stats/__init__.py +19 -0
- pyromt-2.4.1/pyrogram/raw/base/stats/broadcast_stats.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/stats/megagroup_stats.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/stats/message_stats.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/stats/public_forwards.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/stats/story_stats.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/stats_abs_value_and_prev.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/stats_date_range_days.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/stats_graph.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/stats_group_top_admin.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/stats_group_top_inviter.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/stats_group_top_poster.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/stats_percent_value.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/stats_url.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/sticker_keyword.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/sticker_pack.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/sticker_set.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/sticker_set_covered.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/stickers/__init__.py +15 -0
- pyromt-2.4.1/pyrogram/raw/base/stickers/suggested_short_name.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/storage/__init__.py +15 -0
- pyromt-2.4.1/pyrogram/raw/base/storage/file_type.py +52 -0
- pyromt-2.4.1/pyrogram/raw/base/stories/__init__.py +23 -0
- pyromt-2.4.1/pyrogram/raw/base/stories/albums.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/stories/all_stories.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/stories/can_send_story_count.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/stories/found_stories.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/stories/peer_stories.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/stories/stories.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/stories/story_reactions_list.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/stories/story_views.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/stories/story_views_list.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/stories_stealth_mode.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/story_album.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/story_fwd_header.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/story_item.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/story_reaction.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/story_view.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/story_views.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/suggested_post.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/text_with_entities.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/theme.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/theme_settings.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/timezone.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/todo_completion.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/todo_item.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/todo_list.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/top_peer.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/top_peer_category.py +51 -0
- pyromt-2.4.1/pyrogram/raw/base/top_peer_category_peers.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/true_.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/update.py +194 -0
- pyromt-2.4.1/pyrogram/raw/base/updates/__init__.py +17 -0
- pyromt-2.4.1/pyrogram/raw/base/updates/channel_difference.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/updates/difference.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/updates/state.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/updates_t.py +185 -0
- pyromt-2.4.1/pyrogram/raw/base/upload/__init__.py +17 -0
- pyromt-2.4.1/pyrogram/raw/base/upload/cdn_file.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/upload/file.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/upload/web_file.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/url_auth_result.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/user.py +61 -0
- pyromt-2.4.1/pyrogram/raw/base/user_full.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/user_profile_photo.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/user_status.py +48 -0
- pyromt-2.4.1/pyrogram/raw/base/username.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/users/__init__.py +17 -0
- pyromt-2.4.1/pyrogram/raw/base/users/saved_music.py +55 -0
- pyromt-2.4.1/pyrogram/raw/base/users/user_full.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/users/users.py +54 -0
- pyromt-2.4.1/pyrogram/raw/base/video_size.py +45 -0
- pyromt-2.4.1/pyrogram/raw/base/wall_paper.py +56 -0
- pyromt-2.4.1/pyrogram/raw/base/wall_paper_settings.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/web_authorization.py +43 -0
- pyromt-2.4.1/pyrogram/raw/base/web_document.py +44 -0
- pyromt-2.4.1/pyrogram/raw/base/web_page.py +46 -0
- pyromt-2.4.1/pyrogram/raw/base/web_page_attribute.py +48 -0
- pyromt-2.4.1/pyrogram/raw/base/web_view_message_sent.py +53 -0
- pyromt-2.4.1/pyrogram/raw/base/web_view_result.py +56 -0
- pyromt-2.4.1/pyrogram/raw/core/__init__.py +53 -0
- pyromt-2.4.1/pyrogram/raw/core/future_salt.py +54 -0
- pyromt-2.4.1/pyrogram/raw/core/future_salts.py +64 -0
- pyromt-2.4.1/pyrogram/raw/core/gzip_packed.py +63 -0
- pyromt-2.4.1/pyrogram/raw/core/list.py +27 -0
- pyromt-2.4.1/pyrogram/raw/core/message.py +57 -0
- pyromt-2.4.1/pyrogram/raw/core/msg_container.py +54 -0
- pyromt-2.4.1/pyrogram/raw/core/primitives/__init__.py +39 -0
- pyromt-2.4.1/pyrogram/raw/core/primitives/bool.py +49 -0
- pyromt-2.4.1/pyrogram/raw/core/primitives/bytes.py +56 -0
- pyromt-2.4.1/pyrogram/raw/core/primitives/double.py +33 -0
- pyromt-2.4.1/pyrogram/raw/core/primitives/int.py +46 -0
- pyromt-2.4.1/pyrogram/raw/core/primitives/string.py +32 -0
- pyromt-2.4.1/pyrogram/raw/core/primitives/vector.py +76 -0
- pyromt-2.4.1/pyrogram/raw/core/tl_object.py +83 -0
- pyromt-2.4.1/pyrogram/raw/functions/__init__.py +36 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/__init__.py +137 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/accept_authorization.py +94 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/cancel_password_email.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/change_authorization_settings.py +88 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/change_phone.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/check_username.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/clear_recent_emoji_statuses.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/confirm_password_email.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/confirm_phone.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/create_business_chat_link.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/create_theme.py +92 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/decline_password_reset.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/delete_account.py +74 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/delete_auto_save_exceptions.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/delete_business_chat_link.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/delete_passkey.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/delete_secure_value.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/disable_peer_connected_bot.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/edit_business_chat_link.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/finish_takeout_session.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_account_ttl.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_all_secure_values.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_authorization_form.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_authorizations.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_auto_download_settings.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_auto_save_settings.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_bot_business_connection.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_business_chat_links.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_channel_default_emoji_statuses.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_channel_restricted_status_emojis.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_chat_themes.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_collectible_emoji_statuses.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_connected_bots.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_contact_sign_up_notification.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_content_settings.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_default_background_emojis.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_default_emoji_statuses.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_default_group_photo_emojis.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_default_profile_photo_emojis.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_global_privacy_settings.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_multi_wall_papers.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_notify_exceptions.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_notify_settings.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_paid_messages_revenue.py +74 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_passkeys.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_password.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_password_settings.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_privacy.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_reactions_notify_settings.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_recent_emoji_statuses.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_saved_music_ids.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_saved_ringtones.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_secure_value.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_theme.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_themes.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_tmp_password.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_unique_gift_chat_themes.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_wall_paper.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_wall_papers.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/get_web_authorizations.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/init_passkey_registration.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/init_takeout_session.py +101 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/install_theme.py +91 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/install_wall_paper.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/invalidate_sign_in_codes.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/register_device.py +102 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/register_passkey.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/reorder_usernames.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/report_peer.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/report_profile_photo.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/resend_password_email.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/reset_authorization.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/reset_notify_settings.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/reset_password.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/reset_wall_papers.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/reset_web_authorization.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/reset_web_authorizations.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/resolve_business_chat_link.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/save_auto_download_settings.py +76 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/save_auto_save_settings.py +92 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/save_music.py +80 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/save_ringtone.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/save_secure_value.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/save_theme.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/save_wall_paper.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/send_change_phone_code.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/send_confirm_phone_code.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/send_verify_email_code.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/send_verify_phone_code.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/set_account_ttl.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/set_authorization_ttl.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/set_contact_sign_up_notification.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/set_content_settings.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/set_global_privacy_settings.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/set_main_profile_tab.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/set_privacy.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/set_reactions_notify_settings.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/toggle_connected_bot_paused.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/toggle_no_paid_messages_exception.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/toggle_sponsored_messages.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/toggle_username.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/unregister_device.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_birthday.py +66 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_business_away_message.py +66 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_business_greeting_message.py +66 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_business_intro.py +66 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_business_location.py +75 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_business_work_hours.py +66 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_color.py +72 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_connected_bot.py +88 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_device_locked.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_emoji_status.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_notify_settings.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_password_settings.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_personal_channel.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_profile.py +83 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_status.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_theme.py +110 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/update_username.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/upload_ringtone.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/upload_theme.py +90 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/upload_wall_paper.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/verify_email.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/account/verify_phone.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/__init__.py +40 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/accept_login_token.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/bind_temp_auth_key.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/cancel_code.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/check_paid_auth.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/check_password.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/check_recovery_password.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/drop_temp_auth_keys.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/export_authorization.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/export_login_token.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/finish_passkey_login.py +82 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/import_authorization.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/import_bot_authorization.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/import_login_token.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/import_web_token_authorization.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/init_passkey_login.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/log_out.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/recover_password.py +74 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/report_missing_code.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/request_firebase_sms.py +99 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/request_password_recovery.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/resend_code.py +81 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/reset_authorizations.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/reset_login_email.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/send_code.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/sign_in.py +91 -0
- pyromt-2.4.1/pyrogram/raw/functions/auth/sign_up.py +94 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/__init__.py +44 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/add_preview_media.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/allow_send_message.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/answer_webhook_json_query.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/can_send_message.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/check_download_file_params.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/delete_preview_media.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/edit_preview_media.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/get_admined_bots.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/get_bot_commands.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/get_bot_info.py +74 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/get_bot_menu_button.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/get_bot_recommendations.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/get_popular_app_bots.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/get_preview_info.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/get_preview_medias.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/invoke_web_view_custom_method.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/reorder_preview_medias.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/reorder_usernames.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/reset_bot_commands.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/send_custom_request.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/set_bot_commands.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/set_bot_group_default_admin_rights.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/set_bot_info.py +101 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/set_bot_menu_button.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/set_custom_verification.py +89 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/toggle_user_emoji_status_permission.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/toggle_username.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/update_star_ref_program.py +81 -0
- pyromt-2.4.1/pyrogram/raw/functions/bots/update_user_emoji_status.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/__init__.py +74 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/check_search_posts_flood.py +65 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/check_username.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/convert_to_gigagroup.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/create_channel.py +124 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/deactivate_all_usernames.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/delete_channel.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/delete_history.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/delete_messages.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/delete_participant_history.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/edit_admin.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/edit_banned.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/edit_creator.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/edit_location.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/edit_photo.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/edit_title.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/export_message_link.py +84 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/get_admin_log.py +116 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/get_admined_public_channels.py +74 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/get_channel_recommendations.py +66 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/get_channels.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/get_full_channel.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/get_future_creator_after_leave.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/get_groups_for_discussion.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/get_inactive_channels.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/get_left_channels.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/get_message_author.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/get_messages.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/get_participant.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/get_participants.py +94 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/get_send_as.py +76 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/invite_to_channel.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/join_channel.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/leave_channel.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/read_history.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/read_message_contents.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/reorder_usernames.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/report_anti_spam_false_positive.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/report_spam.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/restrict_sponsored_messages.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/search_posts.py +115 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/set_boosts_to_unblock_restrictions.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/set_discussion_group.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/set_emoji_stickers.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/set_main_profile_tab.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/set_stickers.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_anti_spam.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_autotranslation.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_forum.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_join_request.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_join_to_send.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_participants_hidden.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_pre_history_hidden.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_signatures.py +76 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_slow_mode.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_username.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_view_forum_as_messages.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/update_color.py +88 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/update_emoji_status.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/update_paid_messages_price.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/channels/update_username.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/chatlists/__init__.py +25 -0
- pyromt-2.4.1/pyrogram/raw/functions/chatlists/check_chatlist_invite.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/chatlists/delete_exported_invite.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/chatlists/edit_exported_invite.py +91 -0
- pyromt-2.4.1/pyrogram/raw/functions/chatlists/export_chatlist_invite.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/chatlists/get_chatlist_updates.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/chatlists/get_exported_invites.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/chatlists/get_leave_chatlist_suggestions.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/chatlists/hide_chatlist_updates.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/chatlists/join_chatlist_invite.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/chatlists/join_chatlist_updates.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/chatlists/leave_chatlist.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/__init__.py +42 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/accept_contact.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/add_contact.py +104 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/block.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/block_from_replies.py +82 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/delete_by_phones.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/delete_contacts.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/edit_close_friends.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/export_contact_token.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/get_birthdays.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/get_blocked.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/get_contact_i_ds.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/get_contacts.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/get_located.py +79 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/get_saved.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/get_sponsored_peers.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/get_statuses.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/get_top_peers.py +134 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/import_contact_token.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/import_contacts.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/reset_saved.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/reset_top_peer_rating.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/resolve_phone.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/resolve_username.py +73 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/search.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/set_blocked.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/toggle_top_peers.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/unblock.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/contacts/update_contact_note.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/contest/__init__.py +15 -0
- pyromt-2.4.1/pyrogram/raw/functions/contest/save_developer_info.py +94 -0
- pyromt-2.4.1/pyrogram/raw/functions/destroy_auth_key.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/destroy_session.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/folders/__init__.py +15 -0
- pyromt-2.4.1/pyrogram/raw/functions/folders/edit_peer_folders.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/fragment/__init__.py +15 -0
- pyromt-2.4.1/pyrogram/raw/functions/fragment/get_collectible_info.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/get_future_salts.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/__init__.py +39 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/accept_terms_of_service.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/dismiss_suggestion.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/edit_user_info.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_app_config.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_app_update.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_cdn_config.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_config.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_countries_list.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_deep_link_info.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_invite_text.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_nearest_dc.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_passport_config.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_peer_colors.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_peer_profile_colors.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_premium_promo.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_promo_data.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_recent_me_urls.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_support.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_support_name.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_terms_of_service_update.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_timezones_list.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/get_user_info.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/hide_promo_data.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/save_app_log.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/help/set_bot_updates_status.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/init_connection.py +140 -0
- pyromt-2.4.1/pyrogram/raw/functions/invoke_after_msg.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/invoke_after_msgs.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/invoke_with_apns_secret.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/invoke_with_business_connection.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/invoke_with_google_play_integrity.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/invoke_with_layer.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/invoke_with_messages_range.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/invoke_with_re_captcha.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/invoke_with_takeout.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/invoke_without_updates.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/langpack/__init__.py +19 -0
- pyromt-2.4.1/pyrogram/raw/functions/langpack/get_difference.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/langpack/get_lang_pack.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/langpack/get_language.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/langpack/get_languages.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/langpack/get_strings.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/__init__.py +253 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/accept_encryption.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/accept_url_auth.py +105 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/add_chat_user.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/append_todo_list.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/check_chat_invite.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/check_history_import.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/check_history_import_peer.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/check_quick_reply_shortcut.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/clear_all_drafts.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/clear_recent_reactions.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/clear_recent_stickers.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/click_sponsored_message.py +76 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/create_chat.py +81 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/create_forum_topic.py +114 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/delete_chat.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/delete_chat_user.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/delete_exported_chat_invite.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/delete_fact_check.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/delete_history.py +102 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/delete_messages.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/delete_phone_call_history.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/delete_quick_reply_messages.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/delete_quick_reply_shortcut.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/delete_revoked_exported_chat_invites.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/delete_saved_history.py +100 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/delete_scheduled_messages.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/delete_topic_history.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/discard_encryption.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/edit_chat_about.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/edit_chat_admin.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/edit_chat_default_banned_rights.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/edit_chat_photo.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/edit_chat_title.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/edit_exported_chat_invite.py +114 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/edit_fact_check.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/edit_forum_topic.py +108 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/edit_inline_bot_message.py +115 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/edit_message.py +150 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/edit_quick_reply_shortcut.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/export_chat_invite.py +113 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/fave_sticker.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/forward_messages.py +224 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_admins_with_invites.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_all_drafts.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_all_stickers.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_archived_stickers.py +84 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_attach_menu_bot.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_attach_menu_bots.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_attached_stickers.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_available_effects.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_available_reactions.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_bot_app.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_bot_callback_answer.py +97 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_chat_invite_importers.py +118 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_chats.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_common_chats.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_custom_emoji_documents.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_default_history_ttl.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_default_tag_reactions.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_dh_config.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_dialog_filters.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_dialog_unread_marks.py +66 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_dialogs.py +111 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_discussion_message.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_document_by_hash.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_game_info.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_groups.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_keywords.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_keywords_difference.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_keywords_languages.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_profile_photo_groups.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_status_groups.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_sticker_groups.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_stickers.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_url.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_exported_chat_invite.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_exported_chat_invites.py +104 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_extended_media.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_fact_check.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_faved_stickers.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_featured_emoji_stickers.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_featured_stickers.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_forum_topics.py +105 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_forum_topics_by_id.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_full_chat.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_game_high_scores.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_history.py +118 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_inline_bot_results.py +98 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_inline_game_high_scores.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_mask_stickers.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_message_edit_data.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_message_reactions_list.py +99 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_message_read_participants.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_messages.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_messages_reactions.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_messages_views.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_my_stickers.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_old_featured_stickers.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_onlines.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_outbox_read_date.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_paid_reaction_privacy.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_peer_dialogs.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_peer_settings.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_pinned_dialogs.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_pinned_saved_dialogs.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_poll_results.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_poll_votes.py +98 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_prepared_inline_message.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_quick_replies.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_quick_reply_messages.py +82 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_recent_locations.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_recent_reactions.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_recent_stickers.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_replies.py +126 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_saved_dialogs.py +112 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_saved_dialogs_by_id.py +74 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_saved_gifs.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_saved_history.py +130 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_saved_reaction_tags.py +74 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_scheduled_history.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_scheduled_messages.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_search_counters.py +91 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_search_results_calendar.py +98 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_search_results_positions.py +98 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_split_ranges.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_sponsored_messages.py +73 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_sticker_set.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_stickers.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_suggested_dialog_filters.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_top_reactions.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_unread_mentions.py +113 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_unread_reactions.py +123 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_web_page.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/get_web_page_preview.py +74 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/hide_all_chat_join_requests.py +79 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/hide_chat_join_request.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/hide_peer_settings_bar.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/import_chat_invite.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/init_history_import.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/install_sticker_set.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/mark_dialog_unread.py +80 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/migrate_chat.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/prolong_web_view.py +106 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/rate_transcribed_audio.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/read_discussion.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/read_encrypted_history.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/read_featured_stickers.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/read_history.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/read_mentions.py +73 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/read_message_contents.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/read_reactions.py +83 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/read_saved_history.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/received_messages.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/received_queue.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/reorder_pinned_dialogs.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/reorder_pinned_forum_topics.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/reorder_pinned_saved_dialogs.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/reorder_quick_replies.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/reorder_sticker_sets.py +76 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/report.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/report_encrypted_spam.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/report_messages_delivery.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/report_reaction.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/report_spam.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/report_sponsored_message.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/request_app_web_view.py +117 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/request_encryption.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/request_main_web_view.py +111 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/request_simple_web_view.py +124 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/request_url_auth.py +93 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/request_web_view.py +152 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/save_default_send_as.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/save_draft.py +133 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/save_gif.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/save_prepared_inline_message.py +82 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/save_recent_sticker.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/search.py +183 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/search_custom_emoji.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/search_emoji_sticker_sets.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/search_global.py +147 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/search_sent_media.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/search_sticker_sets.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/search_stickers.py +110 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_bot_requested_peer.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_encrypted.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_encrypted_file.py +94 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_encrypted_service.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_inline_bot_result.py +160 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_media.py +226 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_message.py +224 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_multi_media.py +171 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_paid_reaction.py +98 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_quick_reply_messages.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_reaction.py +94 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_scheduled_messages.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_screenshot_notification.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_vote.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_web_view_data.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/send_web_view_result_message.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/set_bot_callback_answer.py +96 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/set_bot_precheckout_results.py +79 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/set_bot_shipping_results.py +83 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/set_chat_available_reactions.py +90 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/set_chat_theme.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/set_chat_wall_paper.py +105 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/set_default_history_ttl.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/set_default_reaction.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/set_encrypted_typing.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/set_game_score.py +100 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/set_history_ttl.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/set_inline_bot_results.py +121 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/set_inline_game_score.py +92 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/set_typing.py +81 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/start_bot.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/start_history_import.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/summarize_text.py +81 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_bot_in_attach_menu.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_dialog_filter_tags.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_dialog_pin.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_no_forwards.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_paid_reaction_privacy.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_peer_translations.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_saved_dialog_pin.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_sticker_sets.py +82 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_suggested_post_approval.py +96 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_todo_completed.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/transcribe_audio.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/translate_text.py +94 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/uninstall_sticker_set.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/unpin_all_messages.py +83 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/update_dialog_filter.py +74 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/update_dialog_filters_order.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/update_pinned_forum_topic.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/update_pinned_message.py +90 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/update_saved_reaction_tag.py +73 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/upload_encrypted_file.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/upload_imported_media.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/upload_media.py +81 -0
- pyromt-2.4.1/pyrogram/raw/functions/messages/view_sponsored_message.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/__init__.py +79 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/apply_gift_code.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/assign_app_store_transaction.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/assign_play_market_transaction.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/bot_cancel_stars_subscription.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/can_purchase_store.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/change_stars_subscription.py +81 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/check_can_send_gift.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/check_gift_code.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/clear_saved_info.py +68 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/connect_star_ref_bot.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/convert_star_gift.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/craft_star_gift.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/create_star_gift_collection.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/delete_star_gift_collection.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/edit_connected_star_ref_bot.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/export_invoice.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/fulfill_stars_subscription.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_bank_card_data.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_connected_star_ref_bot.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_connected_star_ref_bots.py +90 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_craft_star_gifts.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_giveaway_info.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_payment_form.py +74 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_payment_receipt.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_premium_gift_code_options.py +66 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_resale_star_gifts.py +117 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_saved_info.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_saved_star_gift.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_saved_star_gifts.py +143 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gift_active_auctions.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gift_auction_acquired_gifts.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gift_auction_state.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gift_collections.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gift_upgrade_attributes.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gift_upgrade_preview.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gift_withdrawal_url.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gifts.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_gift_options.py +66 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_giveaway_options.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_revenue_ads_account_url.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_revenue_stats.py +76 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_revenue_withdrawal_url.py +87 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_status.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_subscriptions.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_topup_options.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_transactions.py +113 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_transactions_by_id.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_suggested_star_ref_bots.py +92 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_unique_star_gift.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/get_unique_star_gift_value_info.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/launch_prepaid_giveaway.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/refund_stars_charge.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/reorder_star_gift_collections.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/resolve_star_gift_offer.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/save_star_gift.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/send_payment_form.py +107 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/send_star_gift_offer.py +105 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/send_stars_form.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/toggle_chat_star_gift_notifications.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/toggle_star_gifts_pinned_to_top.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/transfer_star_gift.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/update_star_gift_collection.py +111 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/update_star_gift_price.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/upgrade_star_gift.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/payments/validate_requested_info.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/__init__.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/accept_call.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/check_group_call.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/confirm_call.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/create_conference_call.py +110 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/create_group_call.py +96 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/decline_conference_call_invite.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/delete_conference_call_participants.py +92 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/delete_group_call_messages.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/delete_group_call_participant_messages.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/discard_call.py +94 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/discard_group_call.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/edit_group_call_participant.py +126 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/edit_group_call_title.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/export_group_call_invite.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/get_call_config.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/get_group_call.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/get_group_call_chain_blocks.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/get_group_call_join_as.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/get_group_call_stars.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/get_group_call_stream_channels.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/get_group_call_stream_rtmp_url.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/get_group_participants.py +94 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/invite_conference_call_participant.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/invite_to_group_call.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/join_group_call.py +119 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/join_group_call_presentation.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/leave_group_call.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/leave_group_call_presentation.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/received_call.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/request_call.py +94 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/save_call_debug.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/save_call_log.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/save_default_group_call_join_as.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/save_default_send_as.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/send_conference_call_broadcast.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/send_group_call_encrypted_message.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/send_group_call_message.py +99 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/send_signaling_data.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/set_call_rating.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/start_scheduled_group_call.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/toggle_group_call_record.py +94 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/toggle_group_call_settings.py +97 -0
- pyromt-2.4.1/pyrogram/raw/functions/phone/toggle_group_call_start_subscription.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/photos/__init__.py +19 -0
- pyromt-2.4.1/pyrogram/raw/functions/photos/delete_photos.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/photos/get_user_photos.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/photos/update_profile_photo.py +80 -0
- pyromt-2.4.1/pyrogram/raw/functions/photos/upload_contact_profile_photo.py +115 -0
- pyromt-2.4.1/pyrogram/raw/functions/photos/upload_profile_photo.py +111 -0
- pyromt-2.4.1/pyrogram/raw/functions/ping.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/ping_delay_disconnect.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/premium/__init__.py +19 -0
- pyromt-2.4.1/pyrogram/raw/functions/premium/apply_boost.py +74 -0
- pyromt-2.4.1/pyrogram/raw/functions/premium/get_boosts_list.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/premium/get_boosts_status.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/premium/get_my_boosts.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/premium/get_user_boosts.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/req_dh_params.py +102 -0
- pyromt-2.4.1/pyrogram/raw/functions/req_pq.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/req_pq_multi.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/rpc_drop_answer.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/set_client_dh_params.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/smsjobs/__init__.py +21 -0
- pyromt-2.4.1/pyrogram/raw/functions/smsjobs/finish_job.py +73 -0
- pyromt-2.4.1/pyrogram/raw/functions/smsjobs/get_sms_job.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/smsjobs/get_status.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/smsjobs/is_eligible_to_join.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/smsjobs/join.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/smsjobs/leave.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/smsjobs/update_settings.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/stats/__init__.py +21 -0
- pyromt-2.4.1/pyrogram/raw/functions/stats/get_broadcast_stats.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stats/get_megagroup_stats.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stats/get_message_public_forwards.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/stats/get_message_stats.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/stats/get_story_public_forwards.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/stats/get_story_stats.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/stats/load_async_graph.py +73 -0
- pyromt-2.4.1/pyrogram/raw/functions/stickers/__init__.py +25 -0
- pyromt-2.4.1/pyrogram/raw/functions/stickers/add_sticker_to_set.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stickers/change_sticker.py +92 -0
- pyromt-2.4.1/pyrogram/raw/functions/stickers/change_sticker_position.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stickers/check_short_name.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/stickers/create_sticker_set.py +125 -0
- pyromt-2.4.1/pyrogram/raw/functions/stickers/delete_sticker_set.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/stickers/remove_sticker_from_set.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/stickers/rename_sticker_set.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stickers/replace_sticker.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stickers/set_sticker_set_thumb.py +83 -0
- pyromt-2.4.1/pyrogram/raw/functions/stickers/suggest_short_name.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/__init__.py +47 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/activate_stealth_mode.py +68 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/can_send_story.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/create_album.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/delete_album.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/delete_stories.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/edit_story.py +121 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/export_story_link.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/get_album_stories.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/get_albums.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/get_all_read_peer_stories.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/get_all_stories.py +77 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/get_chats_to_send.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/get_peer_max_i_ds.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/get_peer_stories.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/get_pinned_stories.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/get_stories_archive.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/get_stories_by_id.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/get_stories_views.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/get_story_reactions_list.py +105 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/get_story_views_list.py +115 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/increment_story_views.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/read_stories.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/reorder_albums.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/report.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/search_posts.py +101 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/send_reaction.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/send_story.py +173 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/start_live.py +135 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/toggle_all_stories_hidden.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/toggle_peer_stories_hidden.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/toggle_pinned.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/toggle_pinned_to_top.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/stories/update_album.py +111 -0
- pyromt-2.4.1/pyrogram/raw/functions/updates/__init__.py +17 -0
- pyromt-2.4.1/pyrogram/raw/functions/updates/get_channel_difference.py +94 -0
- pyromt-2.4.1/pyrogram/raw/functions/updates/get_difference.py +107 -0
- pyromt-2.4.1/pyrogram/raw/functions/updates/get_state.py +57 -0
- pyromt-2.4.1/pyrogram/raw/functions/upload/__init__.py +22 -0
- pyromt-2.4.1/pyrogram/raw/functions/upload/get_cdn_file.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/upload/get_cdn_file_hashes.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/upload/get_file.py +92 -0
- pyromt-2.4.1/pyrogram/raw/functions/upload/get_file_hashes.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/upload/get_web_file.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/upload/reupload_cdn_file.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/upload/save_big_file_part.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/upload/save_file_part.py +78 -0
- pyromt-2.4.1/pyrogram/raw/functions/users/__init__.py +21 -0
- pyromt-2.4.1/pyrogram/raw/functions/users/get_full_user.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/users/get_requirements_to_contact.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/users/get_saved_music.py +86 -0
- pyromt-2.4.1/pyrogram/raw/functions/users/get_saved_music_by_id.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/users/get_users.py +62 -0
- pyromt-2.4.1/pyrogram/raw/functions/users/set_secure_value_errors.py +70 -0
- pyromt-2.4.1/pyrogram/raw/functions/users/suggest_birthday.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/__init__.py +1278 -0
- pyromt-2.4.1/pyrogram/raw/types/access_point_rule.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/account/__init__.py +52 -0
- pyromt-2.4.1/pyrogram/raw/types/account/authorization_form.py +106 -0
- pyromt-2.4.1/pyrogram/raw/types/account/authorizations.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/account/auto_download_settings.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/account/auto_save_settings.py +111 -0
- pyromt-2.4.1/pyrogram/raw/types/account/business_chat_links.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/account/chat_themes.py +106 -0
- pyromt-2.4.1/pyrogram/raw/types/account/chat_themes_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/account/connected_bots.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/account/content_settings.py +77 -0
- pyromt-2.4.1/pyrogram/raw/types/account/email_verified.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/account/email_verified_login.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/account/emoji_statuses.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/account/emoji_statuses_not_modified.py +69 -0
- pyromt-2.4.1/pyrogram/raw/types/account/paid_messages_revenue.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/account/passkey_registration_options.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/account/passkeys.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/account/password.py +171 -0
- pyromt-2.4.1/pyrogram/raw/types/account/password_input_settings.py +103 -0
- pyromt-2.4.1/pyrogram/raw/types/account/password_settings.py +84 -0
- pyromt-2.4.1/pyrogram/raw/types/account/privacy_rules.py +88 -0
- pyromt-2.4.1/pyrogram/raw/types/account/reset_password_failed_wait.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/account/reset_password_ok.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/account/reset_password_requested_wait.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/account/resolved_business_chat_links.py +107 -0
- pyromt-2.4.1/pyrogram/raw/types/account/saved_music_ids.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/account/saved_music_ids_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/account/saved_ringtone.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/account/saved_ringtone_converted.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/account/saved_ringtones.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/account/saved_ringtones_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/account/sent_email_code.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/account/takeout.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/account/themes.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/account/themes_not_modified.py +67 -0
- pyromt-2.4.1/pyrogram/raw/types/account/tmp_password.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/account/wall_papers.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/account/wall_papers_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/account/web_authorizations.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/account_days_ttl.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/attach_menu_bot.py +126 -0
- pyromt-2.4.1/pyrogram/raw/types/attach_menu_bot_icon.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/attach_menu_bot_icon_color.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/attach_menu_bots.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/attach_menu_bots_bot.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/attach_menu_bots_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/attach_menu_peer_type_bot_pm.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/attach_menu_peer_type_broadcast.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/attach_menu_peer_type_chat.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/attach_menu_peer_type_pm.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/attach_menu_peer_type_same_bot_pm.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/auction_bid_level.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/__init__.py +42 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/authorization.py +113 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/authorization_sign_up_required.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/code_type_call.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/code_type_flash_call.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/code_type_fragment_sms.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/code_type_missed_call.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/code_type_sms.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/exported_authorization.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/logged_out.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/login_token.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/login_token_migrate_to.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/login_token_success.py +72 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/passkey_login_options.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/password_recovery.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/sent_code.py +106 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_payment_required.py +117 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_success.py +77 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_app.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_call.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_email_code.py +102 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_firebase_sms.py +109 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_flash_call.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_fragment_sms.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_missed_call.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_set_up_email_required.py +68 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_sms.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_sms_phrase.py +65 -0
- pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_sms_word.py +65 -0
- pyromt-2.4.1/pyrogram/raw/types/authorization.py +197 -0
- pyromt-2.4.1/pyrogram/raw/types/auto_download_settings.py +134 -0
- pyromt-2.4.1/pyrogram/raw/types/auto_save_exception.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/auto_save_settings.py +77 -0
- pyromt-2.4.1/pyrogram/raw/types/available_effect.py +104 -0
- pyromt-2.4.1/pyrogram/raw/types/available_reaction.py +144 -0
- pyromt-2.4.1/pyrogram/raw/types/bad_msg_notification.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/bad_server_salt.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/bank_card_open_url.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/base_theme_arctic.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/base_theme_classic.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/base_theme_day.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/base_theme_night.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/base_theme_tinted.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/bind_auth_key_inner.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/birthday.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/bool_false.py +267 -0
- pyromt-2.4.1/pyrogram/raw/types/bool_true.py +267 -0
- pyromt-2.4.1/pyrogram/raw/types/boost.py +143 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_app.py +122 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_app_not_modified.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_app_settings.py +101 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_business_connection.py +104 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_command.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_command_scope_chat_admins.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_command_scope_chats.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_command_scope_default.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_command_scope_peer.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_command_scope_peer_admins.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_command_scope_peer_user.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_command_scope_users.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_info.py +149 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_inline_media_result.py +118 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_inline_message_media_auto.py +90 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_inline_message_media_contact.py +98 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_inline_message_media_geo.py +101 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_inline_message_media_invoice.py +120 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_inline_message_media_venue.py +114 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_inline_message_media_web_page.py +122 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_inline_message_text.py +96 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_inline_result.py +127 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_menu_button.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_menu_button_commands.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_menu_button_default.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_preview_media.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_verification.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/bot_verifier_settings.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/bots/__init__.py +17 -0
- pyromt-2.4.1/pyrogram/raw/types/bots/bot_info.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/bots/popular_app_bots.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/bots/preview_info.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/business_away_message.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/business_away_message_schedule_always.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/business_away_message_schedule_custom.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/business_away_message_schedule_outside_work_hours.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/business_bot_recipients.py +106 -0
- pyromt-2.4.1/pyrogram/raw/types/business_bot_rights.py +140 -0
- pyromt-2.4.1/pyrogram/raw/types/business_chat_link.py +109 -0
- pyromt-2.4.1/pyrogram/raw/types/business_greeting_message.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/business_intro.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/business_location.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/business_recipients.py +96 -0
- pyromt-2.4.1/pyrogram/raw/types/business_weekly_open.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/business_work_hours.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/cdn_config.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/cdn_public_key.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel.py +422 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_about.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_available_reactions.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_emoji_status.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_history_ttl.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_linked_chat.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_location.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_peer_color.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_photo.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_sticker_set.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_title.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_username.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_usernames.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_wallpaper.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_create_topic.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_default_banned_rights.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_delete_message.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_delete_topic.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_discard_group_call.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_edit_message.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_edit_topic.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_exported_invite_delete.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_exported_invite_edit.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_invite.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_join.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_request.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_leave.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_mute.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_sub_extend.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_unmute.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_volume.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_pin_topic.py +76 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_send_message.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_start_group_call.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_stop_poll.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_autotranslation.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_forum.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_invites.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_signature_profiles.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_signatures.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_update_pinned.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_events_filter.py +170 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_forbidden.py +107 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_full.py +596 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_location.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_location_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_messages_filter.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_messages_filter_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_participant.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_participant_admin.py +118 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_participant_banned.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_participant_creator.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_participant_left.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_participant_self.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_participants_admins.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_participants_banned.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_participants_bots.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_participants_contacts.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_participants_kicked.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_participants_mentions.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_participants_recent.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/channel_participants_search.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/channels/__init__.py +22 -0
- pyromt-2.4.1/pyrogram/raw/types/channels/admin_log_results.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/channels/channel_participant.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/channels/channel_participants.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/channels/channel_participants_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/channels/send_as_peers.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/channels/sponsored_message_report_result_ads_hidden.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/channels/sponsored_message_report_result_choose_option.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/channels/sponsored_message_report_result_reported.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/chat.py +170 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_admin_rights.py +152 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_admin_with_invites.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_banned_rights.py +184 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_empty.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_forbidden.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_full.py +230 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_invite.py +199 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_invite_already.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_invite_exported.py +180 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_invite_importer.py +102 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_invite_peek.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_invite_public_join_requests.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_onlines.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_participant.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_participant_admin.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_participant_creator.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_participants.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_participants_forbidden.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_photo.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_photo_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_reactions_all.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_reactions_none.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_reactions_some.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_theme.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/chat_theme_unique_gift.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/chatlists/__init__.py +19 -0
- pyromt-2.4.1/pyrogram/raw/types/chatlists/chatlist_invite.py +112 -0
- pyromt-2.4.1/pyrogram/raw/types/chatlists/chatlist_invite_already.py +103 -0
- pyromt-2.4.1/pyrogram/raw/types/chatlists/chatlist_updates.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/chatlists/exported_chatlist_invite.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/chatlists/exported_invites.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/client_dh_inner_data.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/code_settings.py +120 -0
- pyromt-2.4.1/pyrogram/raw/types/config.py +443 -0
- pyromt-2.4.1/pyrogram/raw/types/connected_bot.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/connected_bot_star_ref.py +119 -0
- pyromt-2.4.1/pyrogram/raw/types/contact.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/contact_birthday.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/contact_status.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/contacts/__init__.py +27 -0
- pyromt-2.4.1/pyrogram/raw/types/contacts/blocked.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/contacts/blocked_slice.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/contacts/contact_birthdays.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/contacts/contacts.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/contacts/contacts_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/contacts/found.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/contacts/imported_contacts.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/contacts/resolved_peer.py +88 -0
- pyromt-2.4.1/pyrogram/raw/types/contacts/sponsored_peers.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/contacts/sponsored_peers_empty.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/contacts/top_peers.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/contacts/top_peers_disabled.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/contacts/top_peers_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/data_json.py +73 -0
- pyromt-2.4.1/pyrogram/raw/types/dc_option.py +125 -0
- pyromt-2.4.1/pyrogram/raw/types/default_history_ttl.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/destroy_auth_key_fail.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/destroy_auth_key_none.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/destroy_auth_key_ok.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/destroy_session_none.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/destroy_session_ok.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/dh_gen_fail.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/dh_gen_ok.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/dh_gen_retry.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/dialog.py +175 -0
- pyromt-2.4.1/pyrogram/raw/types/dialog_filter.py +168 -0
- pyromt-2.4.1/pyrogram/raw/types/dialog_filter_chatlist.py +118 -0
- pyromt-2.4.1/pyrogram/raw/types/dialog_filter_default.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/dialog_filter_suggested.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/dialog_folder.py +118 -0
- pyromt-2.4.1/pyrogram/raw/types/dialog_peer.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/dialog_peer_folder.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/disallowed_gifts_settings.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/document.py +152 -0
- pyromt-2.4.1/pyrogram/raw/types/document_attribute_animated.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/document_attribute_audio.py +97 -0
- pyromt-2.4.1/pyrogram/raw/types/document_attribute_custom_emoji.py +84 -0
- pyromt-2.4.1/pyrogram/raw/types/document_attribute_filename.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/document_attribute_has_stickers.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/document_attribute_image_size.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/document_attribute_sticker.py +88 -0
- pyromt-2.4.1/pyrogram/raw/types/document_attribute_video.py +125 -0
- pyromt-2.4.1/pyrogram/raw/types/document_empty.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/draft_message.py +133 -0
- pyromt-2.4.1/pyrogram/raw/types/draft_message_empty.py +65 -0
- pyromt-2.4.1/pyrogram/raw/types/email_verification_apple.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/email_verification_code.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/email_verification_google.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/email_verify_purpose_login_change.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/email_verify_purpose_login_setup.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/email_verify_purpose_passport.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/emoji_group.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/emoji_group_greeting.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/emoji_group_premium.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/emoji_keyword.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/emoji_keyword_deleted.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/emoji_keywords_difference.py +96 -0
- pyromt-2.4.1/pyrogram/raw/types/emoji_language.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/emoji_list.py +83 -0
- pyromt-2.4.1/pyrogram/raw/types/emoji_list_not_modified.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/emoji_status.py +73 -0
- pyromt-2.4.1/pyrogram/raw/types/emoji_status_collectible.py +137 -0
- pyromt-2.4.1/pyrogram/raw/types/emoji_status_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/emoji_url.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/encrypted_chat.py +120 -0
- pyromt-2.4.1/pyrogram/raw/types/encrypted_chat_discarded.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/encrypted_chat_empty.py +72 -0
- pyromt-2.4.1/pyrogram/raw/types/encrypted_chat_requested.py +123 -0
- pyromt-2.4.1/pyrogram/raw/types/encrypted_chat_waiting.py +104 -0
- pyromt-2.4.1/pyrogram/raw/types/encrypted_file.py +103 -0
- pyromt-2.4.1/pyrogram/raw/types/encrypted_file_empty.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/encrypted_message.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/encrypted_message_service.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/error.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/exported_chatlist_invite.py +90 -0
- pyromt-2.4.1/pyrogram/raw/types/exported_contact_token.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/exported_message_link.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/exported_story_link.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/fact_check.py +98 -0
- pyromt-2.4.1/pyrogram/raw/types/file_hash.py +89 -0
- pyromt-2.4.1/pyrogram/raw/types/folder.py +100 -0
- pyromt-2.4.1/pyrogram/raw/types/folder_peer.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/forum_topic.py +215 -0
- pyromt-2.4.1/pyrogram/raw/types/forum_topic_deleted.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/found_story.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/fragment/__init__.py +15 -0
- pyromt-2.4.1/pyrogram/raw/types/fragment/collectible_info.py +111 -0
- pyromt-2.4.1/pyrogram/raw/types/game.py +114 -0
- pyromt-2.4.1/pyrogram/raw/types/geo_point.py +89 -0
- pyromt-2.4.1/pyrogram/raw/types/geo_point_address.py +91 -0
- pyromt-2.4.1/pyrogram/raw/types/geo_point_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/global_privacy_settings.py +121 -0
- pyromt-2.4.1/pyrogram/raw/types/group_call.py +247 -0
- pyromt-2.4.1/pyrogram/raw/types/group_call_discarded.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/group_call_donor.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/group_call_message.py +103 -0
- pyromt-2.4.1/pyrogram/raw/types/group_call_participant.py +205 -0
- pyromt-2.4.1/pyrogram/raw/types/group_call_participant_video.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/group_call_participant_video_source_group.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/group_call_stream_channel.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/help/__init__.py +46 -0
- pyromt-2.4.1/pyrogram/raw/types/help/app_config.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/help/app_config_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/help/app_update.py +132 -0
- pyromt-2.4.1/pyrogram/raw/types/help/config_simple.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/help/countries_list.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/help/countries_list_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/help/country.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/help/country_code.py +84 -0
- pyromt-2.4.1/pyrogram/raw/types/help/deep_link_info.py +89 -0
- pyromt-2.4.1/pyrogram/raw/types/help/deep_link_info_empty.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/help/invite_text.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/help/no_app_update.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/help/passport_config.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/help/passport_config_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/help/peer_color_option.py +108 -0
- pyromt-2.4.1/pyrogram/raw/types/help/peer_color_profile_set.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/help/peer_color_set.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/help/peer_colors.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/help/peer_colors_not_modified.py +67 -0
- pyromt-2.4.1/pyrogram/raw/types/help/premium_promo.py +111 -0
- pyromt-2.4.1/pyrogram/raw/types/help/promo_data.py +149 -0
- pyromt-2.4.1/pyrogram/raw/types/help/promo_data_empty.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/help/recent_me_urls.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/help/support.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/help/support_name.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/help/terms_of_service.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/help/terms_of_service_update.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/help/terms_of_service_update_empty.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/help/timezones_list.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/help/timezones_list_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/help/user_info.py +96 -0
- pyromt-2.4.1/pyrogram/raw/types/help/user_info_empty.py +67 -0
- pyromt-2.4.1/pyrogram/raw/types/high_score.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/http_wait.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/imported_contact.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/inline_bot_switch_pm.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/inline_bot_web_view.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/inline_query_peer_type_bot_pm.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/inline_query_peer_type_broadcast.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/inline_query_peer_type_chat.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/inline_query_peer_type_megagroup.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/inline_query_peer_type_pm.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/inline_query_peer_type_same_bot_pm.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_app_event.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_app_id.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_app_short_name.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_game.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_id.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_id64.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_media_auto.py +90 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_media_contact.py +98 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_media_geo.py +101 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_media_invoice.py +124 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_media_venue.py +114 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_media_web_page.py +116 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_text.py +96 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_result.py +127 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_result_document.py +106 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_result_game.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_result_photo.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/input_business_away_message.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/input_business_bot_recipients.py +106 -0
- pyromt-2.4.1/pyrogram/raw/types/input_business_chat_link.py +83 -0
- pyromt-2.4.1/pyrogram/raw/types/input_business_greeting_message.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_business_intro.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/input_business_recipients.py +96 -0
- pyromt-2.4.1/pyrogram/raw/types/input_channel.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_channel_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_channel_from_message.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_chat_photo.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_chat_photo_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_chat_theme.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_chat_theme_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_chat_theme_unique_gift.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_chat_uploaded_photo.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/input_chatlist_dialog_filter.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_check_password_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_check_password_srp.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_client_proxy.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_collectible_phone.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_collectible_username.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_dialog_peer.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_dialog_peer_folder.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_document.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_document_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_document_file_location.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/input_emoji_status_collectible.py +73 -0
- pyromt-2.4.1/pyrogram/raw/types/input_encrypted_chat.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_encrypted_file.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_encrypted_file_big_uploaded.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_encrypted_file_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_encrypted_file_location.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_encrypted_file_uploaded.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/input_file.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/input_file_big.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_file_location.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/input_file_story_document.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_folder_peer.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_game_id.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_game_short_name.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_geo_point.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/input_geo_point_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_group_call.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_group_call_invite_message.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_group_call_slug.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_group_call_stream.py +98 -0
- pyromt-2.4.1/pyrogram/raw/types/input_invoice_business_bot_transfer_stars.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_invoice_chat_invite_subscription.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_invoice_message.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_invoice_premium_auth_code.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_invoice_premium_gift_code.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_invoice_premium_gift_stars.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/input_invoice_slug.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_invoice_star_gift.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/input_invoice_star_gift_auction_bid.py +104 -0
- pyromt-2.4.1/pyrogram/raw/types/input_invoice_star_gift_drop_original_details.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_invoice_star_gift_prepaid_upgrade.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_invoice_star_gift_resale.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_invoice_star_gift_transfer.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_invoice_star_gift_upgrade.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_invoice_stars.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_keyboard_button_request_peer.py +116 -0
- pyromt-2.4.1/pyrogram/raw/types/input_keyboard_button_url_auth.py +105 -0
- pyromt-2.4.1/pyrogram/raw/types/input_keyboard_button_user_profile.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_area_channel_post.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_area_venue.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_contact.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_dice.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_document.py +107 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_document_external.py +98 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_game.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_geo_live.py +97 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_geo_point.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_invoice.py +134 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_paid_media.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_photo.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_photo_external.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_poll.py +93 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_stake_dice.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_story.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_todo.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_uploaded_document.py +146 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_uploaded_photo.py +89 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_venue.py +102 -0
- pyromt-2.4.1/pyrogram/raw/types/input_media_web_page.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/input_message_callback_query.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_message_entity_mention_name.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_message_id.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_message_pinned.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_message_reply_to.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_chat_photos.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_contacts.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_document.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_geo.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_gif.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_music.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_my_mentions.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_phone_calls.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_photo_video.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_photos.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_pinned.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_round_video.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_round_voice.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_url.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_video.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_voice.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_notify_broadcasts.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_notify_chats.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_notify_forum_topic.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_notify_peer.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_notify_users.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_passkey_credential_firebase_pnv.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_passkey_credential_public_key.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_passkey_response_login.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/input_passkey_response_register.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_payment_credentials.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_payment_credentials_apple_pay.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_payment_credentials_google_pay.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_payment_credentials_saved.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_peer_channel.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_peer_channel_from_message.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_peer_chat.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_peer_color_collectible.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_peer_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_peer_notify_settings.py +121 -0
- pyromt-2.4.1/pyrogram/raw/types/input_peer_photo_file_location.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_peer_self.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_peer_user.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_peer_user_from_message.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_phone_call.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_phone_contact.py +98 -0
- pyromt-2.4.1/pyrogram/raw/types/input_photo.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_photo_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_photo_file_location.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/input_photo_legacy_file_location.py +102 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_about.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_added_by_phone.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_birthday.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_chat_invite.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_forwards.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_no_paid_messages.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_phone_call.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_phone_number.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_phone_p2_p.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_profile_photo.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_saved_music.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_star_gifts_auto_save.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_status_timestamp.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_voice_messages.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_allow_all.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_allow_bots.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_allow_chat_participants.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_allow_close_friends.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_allow_contacts.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_allow_premium.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_allow_users.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_disallow_all.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_disallow_bots.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_disallow_chat_participants.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_disallow_contacts.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_disallow_users.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_quick_reply_shortcut.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_quick_reply_shortcut_id.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_reply_to_message.py +130 -0
- pyromt-2.4.1/pyrogram/raw/types/input_reply_to_mono_forum.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_reply_to_story.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_report_reason_child_abuse.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_report_reason_copyright.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_report_reason_fake.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_report_reason_geo_irrelevant.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_report_reason_illegal_drugs.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_report_reason_other.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_report_reason_personal_details.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_report_reason_pornography.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_report_reason_spam.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_report_reason_violence.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_saved_star_gift_chat.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_saved_star_gift_slug.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_saved_star_gift_user.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_secure_file.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_secure_file_location.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_secure_file_uploaded.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/input_secure_value.py +134 -0
- pyromt-2.4.1/pyrogram/raw/types/input_single_media.py +90 -0
- pyromt-2.4.1/pyrogram/raw/types/input_star_gift_auction.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_star_gift_auction_slug.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_stars_transaction.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_animated_emoji.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_animated_emoji_animations.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_dice.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_emoji_channel_default_statuses.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_emoji_default_statuses.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_emoji_default_topic_icons.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_emoji_generic_animations.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_id.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_item.py +91 -0
- pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_premium_gifts.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_short_name.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_thumb.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_ton_gifts.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_stickered_media_document.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_stickered_media_photo.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_store_payment_auth_code.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/input_store_payment_gift_premium.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_store_payment_premium_gift_code.py +100 -0
- pyromt-2.4.1/pyrogram/raw/types/input_store_payment_premium_giveaway.py +137 -0
- pyromt-2.4.1/pyrogram/raw/types/input_store_payment_premium_subscription.py +68 -0
- pyromt-2.4.1/pyrogram/raw/types/input_store_payment_stars_gift.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/input_store_payment_stars_giveaway.py +153 -0
- pyromt-2.4.1/pyrogram/raw/types/input_store_payment_stars_topup.py +90 -0
- pyromt-2.4.1/pyrogram/raw/types/input_takeout_file_location.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_theme.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_theme_settings.py +117 -0
- pyromt-2.4.1/pyrogram/raw/types/input_theme_slug.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_user.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_user_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_user_from_message.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/input_user_self.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/input_wall_paper.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/input_wall_paper_no_file.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_wall_paper_slug.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/input_web_document.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/input_web_file_audio_album_thumb_location.py +90 -0
- pyromt-2.4.1/pyrogram/raw/types/input_web_file_geo_point_location.py +102 -0
- pyromt-2.4.1/pyrogram/raw/types/input_web_file_location.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/invoice.py +163 -0
- pyromt-2.4.1/pyrogram/raw/types/ip_port.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/ip_port_secret.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/json_array.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/json_bool.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/json_null.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/json_number.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/json_object.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/json_object_value.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/json_string.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_buy.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_callback.py +88 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_copy.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_game.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_request_geo_location.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_request_peer.py +98 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_request_phone.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_request_poll.py +83 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_row.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_simple_web_view.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_style.py +83 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_switch_inline.py +98 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_url.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_url_auth.py +99 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_user_profile.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/keyboard_button_web_view.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/labeled_price.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/lang_pack_difference.py +96 -0
- pyromt-2.4.1/pyrogram/raw/types/lang_pack_language.py +149 -0
- pyromt-2.4.1/pyrogram/raw/types/lang_pack_string.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/lang_pack_string_deleted.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/lang_pack_string_pluralized.py +126 -0
- pyromt-2.4.1/pyrogram/raw/types/mask_coords.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/media_area_channel_post.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/media_area_coordinates.py +105 -0
- pyromt-2.4.1/pyrogram/raw/types/media_area_geo_point.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/media_area_star_gift.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/media_area_suggested_reaction.py +84 -0
- pyromt-2.4.1/pyrogram/raw/types/media_area_url.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/media_area_venue.py +110 -0
- pyromt-2.4.1/pyrogram/raw/types/media_area_weather.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/message.py +437 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_boost_apply.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_bot_allowed.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_change_creator.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_channel_create.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_channel_migrate_from.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_chat_add_user.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_chat_create.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_chat_delete_photo.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_chat_delete_user.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_chat_edit_photo.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_chat_edit_title.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_chat_joined_by_link.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_chat_joined_by_request.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_chat_migrate_to.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_conference_call.py +101 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_contact_sign_up.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_custom_action.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_game_score.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_geo_proximity_reached.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_gift_code.py +140 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_gift_premium.py +108 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_gift_stars.py +107 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_gift_ton.py +97 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_giveaway_launch.py +65 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_giveaway_results.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_group_call.py +73 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_group_call_scheduled.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_history_clear.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_invite_to_group_call.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_new_creator_pending.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_paid_messages_price.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_paid_messages_refunded.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_payment_refunded.py +97 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_payment_sent.py +102 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_payment_sent_me.py +128 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_phone_call.py +89 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_pin_message.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_prize_stars.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_requested_peer.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_requested_peer_sent_me.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_screenshot_taken.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_secure_values_sent.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_secure_values_sent_me.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_set_chat_theme.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_set_chat_wall_paper.py +76 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_set_messages_ttl.py +73 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_star_gift.py +221 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_star_gift_purchase_offer.py +92 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_star_gift_purchase_offer_declined.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_star_gift_unique.py +205 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_suggest_birthday.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_suggest_profile_photo.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_suggested_post_approval.py +96 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_suggested_post_refund.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_suggested_post_success.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_todo_append_tasks.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_todo_completions.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_topic_create.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_topic_edit.py +92 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_web_view_data_sent.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_action_web_view_data_sent_me.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_empty.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_bank_card.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_blockquote.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_bold.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_bot_command.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_cashtag.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_code.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_custom_emoji.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_email.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_hashtag.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_italic.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_mention.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_mention_name.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_phone.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_pre.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_spoiler.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_strike.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_text_url.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_underline.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_unknown.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_entity_url.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_extended_media.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/message_extended_media_preview.py +93 -0
- pyromt-2.4.1/pyrogram/raw/types/message_fwd_header.py +169 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_contact.py +104 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_dice.py +92 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_document.py +144 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_empty.py +67 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_game.py +72 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_geo.py +72 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_geo_live.py +100 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_giveaway.py +139 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_giveaway_results.py +162 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_invoice.py +147 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_paid_media.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_photo.py +91 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_poll.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_story.py +98 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_to_do.py +84 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_unsupported.py +67 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_venue.py +112 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_video_stream.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/message_media_web_page.py +98 -0
- pyromt-2.4.1/pyrogram/raw/types/message_peer_reaction.py +98 -0
- pyromt-2.4.1/pyrogram/raw/types/message_peer_vote.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/message_peer_vote_input_option.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_peer_vote_multiple.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/message_range.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/message_reactions.py +102 -0
- pyromt-2.4.1/pyrogram/raw/types/message_reactor.py +92 -0
- pyromt-2.4.1/pyrogram/raw/types/message_replies.py +115 -0
- pyromt-2.4.1/pyrogram/raw/types/message_reply_header.py +159 -0
- pyromt-2.4.1/pyrogram/raw/types/message_reply_story_header.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_report_option.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/message_service.py +179 -0
- pyromt-2.4.1/pyrogram/raw/types/message_views.py +84 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/__init__.py +105 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/affected_found_messages.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/affected_history.py +93 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/affected_messages.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/all_stickers.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/all_stickers_not_modified.py +68 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/archived_stickers.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/available_effects.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/available_effects_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/available_reactions.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/available_reactions_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/bot_app.py +91 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/bot_callback_answer.py +109 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/bot_prepared_inline_message.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/bot_results.py +132 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/channel_messages.py +142 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/chat_admins_with_invites.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/chat_full.py +88 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/chat_invite_importers.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/chats.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/chats_slice.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/checked_history_import_peer.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/dh_config.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/dh_config_not_modified.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/dialog_filters.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/dialogs.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/dialogs_not_modified.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/dialogs_slice.py +103 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/discussion_message.py +124 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/emoji_game_dice_info.py +106 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/emoji_game_outcome.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/emoji_game_unavailable.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/emoji_groups.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/emoji_groups_not_modified.py +69 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/exported_chat_invite.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/exported_chat_invite_replaced.py +88 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/exported_chat_invites.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/faved_stickers.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/faved_stickers_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/featured_stickers.py +105 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/featured_stickers_not_modified.py +73 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/forum_topics.py +120 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/found_sticker_sets.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/found_sticker_sets_not_modified.py +67 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/found_stickers.py +90 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/found_stickers_not_modified.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/high_scores.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/history_import.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/history_import_parsed.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/inactive_chats.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/invited_users.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/message_edit_data.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/message_reactions_list.py +106 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/message_views.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/messages.py +109 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/messages_not_modified.py +85 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/messages_slice.py +153 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/my_stickers.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/peer_dialogs.py +104 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/peer_settings.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/prepared_inline_message.py +103 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/quick_replies.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/quick_replies_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/reactions.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/reactions_not_modified.py +68 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/recent_stickers.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/recent_stickers_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/saved_dialogs.py +97 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/saved_dialogs_not_modified.py +73 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/saved_dialogs_slice.py +105 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/saved_gifs.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/saved_gifs_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/saved_reaction_tags.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/saved_reaction_tags_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/search_counter.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/search_results_calendar.py +136 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/search_results_positions.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/sent_encrypted_file.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/sent_encrypted_message.py +73 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/sponsored_messages.py +116 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/sponsored_messages_empty.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/sticker_set.py +103 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/sticker_set_install_result_archive.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/sticker_set_install_result_success.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/sticker_set_not_modified.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/stickers.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/stickers_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/transcribed_audio.py +105 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/translate_result.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/votes_list.py +106 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/web_page.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/messages/web_page_preview.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/missing_invitee.py +76 -0
- pyromt-2.4.1/pyrogram/raw/types/mono_forum_dialog.py +126 -0
- pyromt-2.4.1/pyrogram/raw/types/msg_detailed_info.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/msg_new_detailed_info.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/msg_resend_ans_req.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/msg_resend_req.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/msgs_ack.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/msgs_all_info.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/msgs_state_info.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/msgs_state_req.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/my_boost.py +99 -0
- pyromt-2.4.1/pyrogram/raw/types/nearest_dc.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/new_session_created.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/notification_sound_default.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/notification_sound_local.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/notification_sound_none.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/notification_sound_ringtone.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/notify_broadcasts.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/notify_chats.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/notify_forum_topic.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/notify_peer.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/notify_users.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/null.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/outbox_read_date.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/page.py +115 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_anchor.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_audio.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_author_date.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_blockquote.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_channel.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_collage.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_cover.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_details.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_divider.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_embed.py +121 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_embed_post.py +110 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_footer.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_header.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_kicker.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_list.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_map.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_ordered_list.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_paragraph.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_photo.py +90 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_preformatted.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_pullquote.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_related_articles.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_slideshow.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_subheader.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_subtitle.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_table.py +84 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_title.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_unsupported.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/page_block_video.py +84 -0
- pyromt-2.4.1/pyrogram/raw/types/page_caption.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/page_list_item_blocks.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/page_list_item_text.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/page_list_ordered_item_blocks.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/page_list_ordered_item_text.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/page_related_article.py +117 -0
- pyromt-2.4.1/pyrogram/raw/types/page_table_cell.py +114 -0
- pyromt-2.4.1/pyrogram/raw/types/page_table_row.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/paid_reaction_privacy_anonymous.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/paid_reaction_privacy_default.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/paid_reaction_privacy_peer.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/passkey.py +107 -0
- pyromt-2.4.1/pyrogram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/password_kdf_algo_unknown.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/payment_charge.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/payment_form_method.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/payment_requested_info.py +93 -0
- pyromt-2.4.1/pyrogram/raw/types/payment_saved_credentials_card.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/__init__.py +51 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/bank_card_data.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/check_can_send_gift_result_fail.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/check_can_send_gift_result_ok.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/checked_gift_code.py +140 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/connected_star_ref_bots.py +90 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/exported_invoice.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/giveaway_info.py +112 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/giveaway_info_results.py +128 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/payment_form.py +200 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/payment_form_star_gift.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/payment_form_stars.py +123 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/payment_receipt.py +184 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/payment_receipt_stars.py +147 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/payment_result.py +72 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/payment_verification_needed.py +72 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/resale_star_gifts.py +135 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/saved_info.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/saved_star_gifts.py +117 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_active_auctions.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_active_auctions_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_auction_acquired_gifts.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_auction_state.py +111 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_collections.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_collections_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_upgrade_attributes.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_upgrade_preview.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_withdrawal_url.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/star_gifts.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/star_gifts_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/stars_revenue_ads_account_url.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/stars_revenue_stats.py +99 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/stars_revenue_withdrawal_url.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/stars_status.py +139 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/suggested_star_ref_bots.py +98 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/unique_star_gift.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/unique_star_gift_value_info.py +180 -0
- pyromt-2.4.1/pyrogram/raw/types/payments/validated_requested_info.py +84 -0
- pyromt-2.4.1/pyrogram/raw/types/peer_blocked.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/peer_channel.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/peer_chat.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/peer_color.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/peer_color_collectible.py +115 -0
- pyromt-2.4.1/pyrogram/raw/types/peer_located.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/peer_notify_settings.py +170 -0
- pyromt-2.4.1/pyrogram/raw/types/peer_self_located.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/peer_settings.py +212 -0
- pyromt-2.4.1/pyrogram/raw/types/peer_stories.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/peer_user.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/pending_suggestion.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/phone/__init__.py +22 -0
- pyromt-2.4.1/pyrogram/raw/types/phone/exported_group_call_invite.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/phone/group_call.py +103 -0
- pyromt-2.4.1/pyrogram/raw/types/phone/group_call_stars.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/phone/group_call_stream_channels.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/phone/group_call_stream_rtmp_url.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/phone/group_participants.py +111 -0
- pyromt-2.4.1/pyrogram/raw/types/phone/join_as_peers.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/phone/phone_call.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/phone_call.py +164 -0
- pyromt-2.4.1/pyrogram/raw/types/phone_call_accepted.py +118 -0
- pyromt-2.4.1/pyrogram/raw/types/phone_call_discard_reason_busy.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/phone_call_discard_reason_disconnect.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/phone_call_discard_reason_hangup.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/phone_call_discard_reason_migrate_conference_call.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/phone_call_discard_reason_missed.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/phone_call_discarded.py +101 -0
- pyromt-2.4.1/pyrogram/raw/types/phone_call_empty.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/phone_call_protocol.py +92 -0
- pyromt-2.4.1/pyrogram/raw/types/phone_call_requested.py +118 -0
- pyromt-2.4.1/pyrogram/raw/types/phone_call_waiting.py +119 -0
- pyromt-2.4.1/pyrogram/raw/types/phone_connection.py +102 -0
- pyromt-2.4.1/pyrogram/raw/types/phone_connection_webrtc.py +116 -0
- pyromt-2.4.1/pyrogram/raw/types/photo.py +120 -0
- pyromt-2.4.1/pyrogram/raw/types/photo_cached_size.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/photo_empty.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/photo_path_size.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/photo_size.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/photo_size_empty.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/photo_size_progressive.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/photo_stripped_size.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/photos/__init__.py +17 -0
- pyromt-2.4.1/pyrogram/raw/types/photos/photo.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/photos/photos.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/photos/photos_slice.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/poll.py +122 -0
- pyromt-2.4.1/pyrogram/raw/types/poll_answer.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/poll_answer_voters.py +84 -0
- pyromt-2.4.1/pyrogram/raw/types/poll_results.py +110 -0
- pyromt-2.4.1/pyrogram/raw/types/pong.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/popular_contact.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/post_address.py +102 -0
- pyromt-2.4.1/pyrogram/raw/types/post_interaction_counters_message.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/post_interaction_counters_story.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/pq_inner_data.py +102 -0
- pyromt-2.4.1/pyrogram/raw/types/pq_inner_data_dc.py +110 -0
- pyromt-2.4.1/pyrogram/raw/types/pq_inner_data_temp.py +110 -0
- pyromt-2.4.1/pyrogram/raw/types/pq_inner_data_temp_dc.py +118 -0
- pyromt-2.4.1/pyrogram/raw/types/premium/__init__.py +17 -0
- pyromt-2.4.1/pyrogram/raw/types/premium/boosts_list.py +99 -0
- pyromt-2.4.1/pyrogram/raw/types/premium/boosts_status.py +151 -0
- pyromt-2.4.1/pyrogram/raw/types/premium/my_boosts.py +88 -0
- pyromt-2.4.1/pyrogram/raw/types/premium_gift_code_option.py +115 -0
- pyromt-2.4.1/pyrogram/raw/types/premium_subscription_option.py +118 -0
- pyromt-2.4.1/pyrogram/raw/types/prepaid_giveaway.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/prepaid_stars_giveaway.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_key_about.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_key_added_by_phone.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_key_birthday.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_key_chat_invite.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_key_forwards.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_key_no_paid_messages.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_key_phone_call.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_key_phone_number.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_key_phone_p2_p.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_key_profile_photo.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_key_saved_music.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_key_star_gifts_auto_save.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_key_status_timestamp.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_key_voice_messages.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_value_allow_all.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_value_allow_bots.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_value_allow_chat_participants.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_value_allow_close_friends.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_value_allow_contacts.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_value_allow_premium.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_value_allow_users.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_value_disallow_all.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_value_disallow_bots.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_value_disallow_chat_participants.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_value_disallow_contacts.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/privacy_value_disallow_users.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/profile_tab_files.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/profile_tab_gifs.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/profile_tab_gifts.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/profile_tab_links.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/profile_tab_media.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/profile_tab_music.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/profile_tab_posts.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/profile_tab_voice.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/public_forward_message.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/public_forward_story.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/quick_reply.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/reaction_count.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/reaction_custom_emoji.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/reaction_emoji.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/reaction_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/reaction_notifications_from_all.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/reaction_notifications_from_contacts.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/reaction_paid.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/reactions_notify_settings.py +102 -0
- pyromt-2.4.1/pyrogram/raw/types/read_participant_date.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/received_notify_message.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/recent_me_url_chat.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/recent_me_url_chat_invite.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/recent_me_url_sticker_set.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/recent_me_url_unknown.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/recent_me_url_user.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/recent_story.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/reply_inline_markup.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/reply_keyboard_force_reply.py +77 -0
- pyromt-2.4.1/pyrogram/raw/types/reply_keyboard_hide.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/reply_keyboard_markup.py +97 -0
- pyromt-2.4.1/pyrogram/raw/types/report_result_add_comment.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/report_result_choose_option.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/report_result_reported.py +67 -0
- pyromt-2.4.1/pyrogram/raw/types/request_peer_type_broadcast.py +91 -0
- pyromt-2.4.1/pyrogram/raw/types/request_peer_type_chat.py +106 -0
- pyromt-2.4.1/pyrogram/raw/types/request_peer_type_user.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/requested_peer_channel.py +92 -0
- pyromt-2.4.1/pyrogram/raw/types/requested_peer_chat.py +83 -0
- pyromt-2.4.1/pyrogram/raw/types/requested_peer_user.py +101 -0
- pyromt-2.4.1/pyrogram/raw/types/requirement_to_contact_empty.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/requirement_to_contact_paid_messages.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/requirement_to_contact_premium.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/res_pq.py +96 -0
- pyromt-2.4.1/pyrogram/raw/types/restriction_reason.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/rpc_answer_dropped.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/rpc_answer_dropped_running.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/rpc_answer_unknown.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/rpc_error.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/rpc_result.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/saved_dialog.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/saved_phone_contact.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/saved_reaction_tag.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/saved_star_gift.py +246 -0
- pyromt-2.4.1/pyrogram/raw/types/search_posts_flood.py +104 -0
- pyromt-2.4.1/pyrogram/raw/types/search_result_position.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/search_results_calendar_period.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_credentials_encrypted.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_data.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_file.py +110 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_file_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_password_kdf_algo_sha512.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_password_kdf_algo_unknown.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_plain_email.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_plain_phone.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_required_type.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_required_type_one_of.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_secret_settings.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value.py +153 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_error.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_error_data.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_error_file.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_error_files.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_error_front_side.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_error_reverse_side.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_error_selfie.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_error_translation_file.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_error_translation_files.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_hash.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_type_address.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_type_bank_statement.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_type_driver_license.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_type_email.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_type_identity_card.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_type_internal_passport.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_type_passport.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_type_passport_registration.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_type_personal_details.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_type_phone.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_type_rental_agreement.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_type_temporary_registration.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/secure_value_type_utility_bill.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/send_as_peer.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_cancel_action.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_choose_contact_action.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_choose_sticker_action.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_emoji_interaction.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_emoji_interaction_seen.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_game_play_action.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_geo_location_action.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_history_import_action.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_record_audio_action.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_record_round_action.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_record_video_action.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_text_draft_action.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_typing_action.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_upload_audio_action.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_upload_document_action.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_upload_photo_action.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_upload_round_action.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/send_message_upload_video_action.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/server_dh_inner_data.py +102 -0
- pyromt-2.4.1/pyrogram/raw/types/server_dh_params_fail.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/server_dh_params_ok.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/shipping_option.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/sms_job.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/smsjobs/__init__.py +16 -0
- pyromt-2.4.1/pyrogram/raw/types/smsjobs/eligible_to_join.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/smsjobs/status.py +128 -0
- pyromt-2.4.1/pyrogram/raw/types/speaking_in_group_call_action.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/sponsored_message.py +184 -0
- pyromt-2.4.1/pyrogram/raw/types/sponsored_message_report_option.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/sponsored_peer.py +90 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift.py +285 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_active_auction_state.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_backdrop.py +110 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_counter.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_id_backdrop.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_id_model.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_id_pattern.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_model.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_original_details.py +92 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_pattern.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_rarity.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_rarity_epic.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_rarity_legendary.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_rarity_rare.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_rarity_uncommon.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_auction_acquired_gift.py +121 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_auction_round.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_auction_round_extendable.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_auction_state.py +150 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_auction_state_finished.py +107 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_auction_state_not_modified.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_auction_user_state.py +107 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_background.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_collection.py +108 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_unique.py +282 -0
- pyromt-2.4.1/pyrogram/raw/types/star_gift_upgrade_price.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/star_ref_program.py +109 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_amount.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_gift_option.py +104 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_giveaway_option.py +126 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_giveaway_winners_option.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_rating.py +89 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_revenue_status.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_subscription.py +149 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_subscription_pricing.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_ton_amount.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_topup_option.py +104 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_transaction.py +348 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer_ads.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer_api.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer_app_store.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer_fragment.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer_play_market.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer_premium_bot.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer_unsupported.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/stats/__init__.py +19 -0
- pyromt-2.4.1/pyrogram/raw/types/stats/broadcast_stats.py +239 -0
- pyromt-2.4.1/pyrogram/raw/types/stats/megagroup_stats.py +199 -0
- pyromt-2.4.1/pyrogram/raw/types/stats/message_stats.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/stats/public_forwards.py +107 -0
- pyromt-2.4.1/pyrogram/raw/types/stats/story_stats.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/stats_abs_value_and_prev.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/stats_date_range_days.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/stats_graph.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/stats_graph_async.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/stats_graph_error.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/stats_group_top_admin.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/stats_group_top_inviter.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/stats_group_top_poster.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/stats_percent_value.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/stats_url.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/sticker_keyword.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/sticker_pack.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/sticker_set.py +192 -0
- pyromt-2.4.1/pyrogram/raw/types/sticker_set_covered.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/sticker_set_full_covered.py +95 -0
- pyromt-2.4.1/pyrogram/raw/types/sticker_set_multi_covered.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/sticker_set_no_covered.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/stickers/__init__.py +15 -0
- pyromt-2.4.1/pyrogram/raw/types/stickers/suggested_short_name.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/storage/__init__.py +24 -0
- pyromt-2.4.1/pyrogram/raw/types/storage/file_gif.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/storage/file_jpeg.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/storage/file_mov.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/storage/file_mp3.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/storage/file_mp4.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/storage/file_partial.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/storage/file_pdf.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/storage/file_png.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/storage/file_unknown.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/storage/file_webp.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/stories/__init__.py +25 -0
- pyromt-2.4.1/pyrogram/raw/types/stories/albums.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/stories/albums_not_modified.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/stories/all_stories.py +119 -0
- pyromt-2.4.1/pyrogram/raw/types/stories/all_stories_not_modified.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/stories/can_send_story_count.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/stories/found_stories.py +106 -0
- pyromt-2.4.1/pyrogram/raw/types/stories/peer_stories.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/stories/stories.py +110 -0
- pyromt-2.4.1/pyrogram/raw/types/stories/story_reactions_list.py +106 -0
- pyromt-2.4.1/pyrogram/raw/types/stories/story_views.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/stories/story_views_list.py +130 -0
- pyromt-2.4.1/pyrogram/raw/types/stories_stealth_mode.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/story_album.py +102 -0
- pyromt-2.4.1/pyrogram/raw/types/story_fwd_header.py +90 -0
- pyromt-2.4.1/pyrogram/raw/types/story_item.py +231 -0
- pyromt-2.4.1/pyrogram/raw/types/story_item_deleted.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/story_item_skipped.py +92 -0
- pyromt-2.4.1/pyrogram/raw/types/story_reaction.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/story_reaction_public_forward.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/story_reaction_public_repost.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/story_view.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/story_view_public_forward.py +76 -0
- pyromt-2.4.1/pyrogram/raw/types/story_view_public_repost.py +84 -0
- pyromt-2.4.1/pyrogram/raw/types/story_views.py +108 -0
- pyromt-2.4.1/pyrogram/raw/types/suggested_post.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/text_anchor.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/text_bold.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/text_concat.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/text_email.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/text_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/text_fixed.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/text_image.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/text_italic.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/text_marked.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/text_phone.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/text_plain.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/text_strike.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/text_subscript.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/text_superscript.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/text_underline.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/text_url.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/text_with_entities.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/theme.py +155 -0
- pyromt-2.4.1/pyrogram/raw/types/theme_settings.py +107 -0
- pyromt-2.4.1/pyrogram/raw/types/timezone.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/todo_completion.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/todo_item.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/todo_list.py +84 -0
- pyromt-2.4.1/pyrogram/raw/types/top_peer.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/top_peer_category_bots_app.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/top_peer_category_bots_inline.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/top_peer_category_bots_pm.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/top_peer_category_channels.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/top_peer_category_correspondents.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/top_peer_category_forward_chats.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/top_peer_category_forward_users.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/top_peer_category_groups.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/top_peer_category_peers.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/top_peer_category_phone_calls.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/true_.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_attach_menu_bots.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_auto_save_settings.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_business_connect.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_callback_query.py +114 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_chat_boost.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_chat_invite_requester.py +102 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_commands.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_delete_business_message.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_edit_business_message.py +90 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_inline_query.py +108 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_inline_send.py +100 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_menu_button.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_message_reaction.py +110 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_message_reactions.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_new_business_message.py +90 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_precheckout_query.py +115 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_purchased_paid_media.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_shipping_query.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_stopped.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_webhook_json.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_bot_webhook_json_query.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_business_bot_callback_query.py +115 -0
- pyromt-2.4.1/pyrogram/raw/types/update_channel.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_channel_available_messages.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_channel_message_forwards.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_channel_message_views.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_channel_participant.py +132 -0
- pyromt-2.4.1/pyrogram/raw/types/update_channel_read_messages_contents.py +91 -0
- pyromt-2.4.1/pyrogram/raw/types/update_channel_too_long.py +73 -0
- pyromt-2.4.1/pyrogram/raw/types/update_channel_user_typing.py +89 -0
- pyromt-2.4.1/pyrogram/raw/types/update_channel_view_forum_as_messages.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_channel_web_page.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/update_chat.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_chat_default_banned_rights.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_chat_participant.py +126 -0
- pyromt-2.4.1/pyrogram/raw/types/update_chat_participant_add.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/update_chat_participant_admin.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/update_chat_participant_delete.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_chat_participants.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_chat_user_typing.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_config.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_contacts_reset.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_dc_options.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_delete_channel_messages.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/update_delete_group_call_messages.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_delete_messages.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_delete_quick_reply.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_delete_quick_reply_messages.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_delete_scheduled_messages.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/update_dialog_filter.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/update_dialog_filter_order.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_dialog_filters.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_dialog_pinned.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/update_dialog_unread_mark.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/update_draft_message.py +91 -0
- pyromt-2.4.1/pyrogram/raw/types/update_edit_channel_message.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_edit_message.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_emoji_game_info.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_encrypted_chat_typing.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_encrypted_messages_read.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_encryption.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_faved_stickers.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_folder_peers.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_geo_live_viewed.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_group_call.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/update_group_call_chain_blocks.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/update_group_call_connection.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_group_call_encrypted_message.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_group_call_message.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_group_call_participants.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_inline_bot_callback_query.py +106 -0
- pyromt-2.4.1/pyrogram/raw/types/update_lang_pack.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_lang_pack_too_long.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_login_token.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_message_extended_media.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_message_id.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_message_poll.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/update_message_poll_vote.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/update_message_reactions.py +99 -0
- pyromt-2.4.1/pyrogram/raw/types/update_mono_forum_no_paid_exception.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_move_sticker_set_to_top.py +76 -0
- pyromt-2.4.1/pyrogram/raw/types/update_new_authorization.py +97 -0
- pyromt-2.4.1/pyrogram/raw/types/update_new_channel_message.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_new_encrypted_message.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_new_message.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_new_quick_reply.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_new_scheduled_message.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_new_sticker_set.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_new_story_reaction.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_notify_settings.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_paid_reaction_privacy.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_peer_blocked.py +76 -0
- pyromt-2.4.1/pyrogram/raw/types/update_peer_history_ttl.py +73 -0
- pyromt-2.4.1/pyrogram/raw/types/update_peer_located.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_peer_settings.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_peer_wallpaper.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/update_pending_join_requests.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_phone_call.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_phone_call_signaling_data.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_pinned_channel_messages.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/update_pinned_dialogs.py +75 -0
- pyromt-2.4.1/pyrogram/raw/types/update_pinned_forum_topic.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_pinned_forum_topics.py +74 -0
- pyromt-2.4.1/pyrogram/raw/types/update_pinned_messages.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/update_pinned_saved_dialogs.py +66 -0
- pyromt-2.4.1/pyrogram/raw/types/update_privacy.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_pts_changed.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_quick_replies.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_quick_reply_message.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_read_channel_discussion_inbox.py +98 -0
- pyromt-2.4.1/pyrogram/raw/types/update_read_channel_discussion_outbox.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_read_channel_inbox.py +97 -0
- pyromt-2.4.1/pyrogram/raw/types/update_read_channel_outbox.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_read_featured_emoji_stickers.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_read_featured_stickers.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_read_history_inbox.py +114 -0
- pyromt-2.4.1/pyrogram/raw/types/update_read_history_outbox.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/update_read_messages_contents.py +89 -0
- pyromt-2.4.1/pyrogram/raw/types/update_read_mono_forum_inbox.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_read_mono_forum_outbox.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_read_stories.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_recent_emoji_statuses.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_recent_reactions.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_recent_stickers.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_saved_dialog_pinned.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_saved_gifs.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_saved_reaction_tags.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_saved_ringtones.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_sent_phone_code.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_sent_story_reaction.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_service_notification.py +109 -0
- pyromt-2.4.1/pyrogram/raw/types/update_short.py +205 -0
- pyromt-2.4.1/pyrogram/raw/types/update_short_chat_message.py +319 -0
- pyromt-2.4.1/pyrogram/raw/types/update_short_message.py +311 -0
- pyromt-2.4.1/pyrogram/raw/types/update_short_sent_message.py +258 -0
- pyromt-2.4.1/pyrogram/raw/types/update_sms_job.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_star_gift_auction_state.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_star_gift_auction_user_state.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_star_gift_craft_fail.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/update_stars_balance.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_stars_revenue_status.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_sticker_sets.py +68 -0
- pyromt-2.4.1/pyrogram/raw/types/update_sticker_sets_order.py +76 -0
- pyromt-2.4.1/pyrogram/raw/types/update_stories_stealth_mode.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_story.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_story_id.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_theme.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_transcribed_audio.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/update_user.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/update_user_emoji_status.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_user_name.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/update_user_phone.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_user_status.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/update_user_typing.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/update_web_page.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/update_web_view_result_sent.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/updates/__init__.py +22 -0
- pyromt-2.4.1/pyrogram/raw/types/updates/channel_difference.py +120 -0
- pyromt-2.4.1/pyrogram/raw/types/updates/channel_difference_empty.py +88 -0
- pyromt-2.4.1/pyrogram/raw/types/updates/channel_difference_too_long.py +112 -0
- pyromt-2.4.1/pyrogram/raw/types/updates/difference.py +111 -0
- pyromt-2.4.1/pyrogram/raw/types/updates/difference_empty.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/updates/difference_slice.py +111 -0
- pyromt-2.4.1/pyrogram/raw/types/updates/difference_too_long.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/updates/state.py +103 -0
- pyromt-2.4.1/pyrogram/raw/types/updates_combined.py +237 -0
- pyromt-2.4.1/pyrogram/raw/types/updates_t.py +229 -0
- pyromt-2.4.1/pyrogram/raw/types/updates_too_long.py +192 -0
- pyromt-2.4.1/pyrogram/raw/types/upload/__init__.py +19 -0
- pyromt-2.4.1/pyrogram/raw/types/upload/cdn_file.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/upload/cdn_file_reupload_needed.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/upload/file.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/upload/file_cdn_redirect.py +103 -0
- pyromt-2.4.1/pyrogram/raw/types/upload/web_file.py +103 -0
- pyromt-2.4.1/pyrogram/raw/types/url_auth_result_accepted.py +75 -0
- pyromt-2.4.1/pyrogram/raw/types/url_auth_result_default.py +67 -0
- pyromt-2.4.1/pyrogram/raw/types/url_auth_result_request.py +130 -0
- pyromt-2.4.1/pyrogram/raw/types/user.py +425 -0
- pyromt-2.4.1/pyrogram/raw/types/user_empty.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/user_full.py +514 -0
- pyromt-2.4.1/pyrogram/raw/types/user_profile_photo.py +93 -0
- pyromt-2.4.1/pyrogram/raw/types/user_profile_photo_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/user_status_empty.py +57 -0
- pyromt-2.4.1/pyrogram/raw/types/user_status_last_month.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/user_status_last_week.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/user_status_offline.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/user_status_online.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/user_status_recently.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/username.py +76 -0
- pyromt-2.4.1/pyrogram/raw/types/users/__init__.py +19 -0
- pyromt-2.4.1/pyrogram/raw/types/users/saved_music.py +80 -0
- pyromt-2.4.1/pyrogram/raw/types/users/saved_music_not_modified.py +72 -0
- pyromt-2.4.1/pyrogram/raw/types/users/user_full.py +87 -0
- pyromt-2.4.1/pyrogram/raw/types/users/users.py +71 -0
- pyromt-2.4.1/pyrogram/raw/types/users/users_slice.py +79 -0
- pyromt-2.4.1/pyrogram/raw/types/video_size.py +97 -0
- pyromt-2.4.1/pyrogram/raw/types/video_size_emoji_markup.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/video_size_sticker_markup.py +78 -0
- pyromt-2.4.1/pyrogram/raw/types/wall_paper.py +133 -0
- pyromt-2.4.1/pyrogram/raw/types/wall_paper_no_file.py +97 -0
- pyromt-2.4.1/pyrogram/raw/types/wall_paper_settings.py +131 -0
- pyromt-2.4.1/pyrogram/raw/types/web_authorization.py +126 -0
- pyromt-2.4.1/pyrogram/raw/types/web_document.py +94 -0
- pyromt-2.4.1/pyrogram/raw/types/web_document_no_proxy.py +86 -0
- pyromt-2.4.1/pyrogram/raw/types/web_page.py +230 -0
- pyromt-2.4.1/pyrogram/raw/types/web_page_attribute_star_gift_auction.py +70 -0
- pyromt-2.4.1/pyrogram/raw/types/web_page_attribute_star_gift_collection.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/web_page_attribute_sticker_set.py +76 -0
- pyromt-2.4.1/pyrogram/raw/types/web_page_attribute_story.py +82 -0
- pyromt-2.4.1/pyrogram/raw/types/web_page_attribute_theme.py +76 -0
- pyromt-2.4.1/pyrogram/raw/types/web_page_attribute_unique_star_gift.py +62 -0
- pyromt-2.4.1/pyrogram/raw/types/web_page_empty.py +73 -0
- pyromt-2.4.1/pyrogram/raw/types/web_page_not_modified.py +65 -0
- pyromt-2.4.1/pyrogram/raw/types/web_page_pending.py +81 -0
- pyromt-2.4.1/pyrogram/raw/types/web_view_message_sent.py +75 -0
- pyromt-2.4.1/pyrogram/raw/types/web_view_result_url.py +97 -0
- pyromt-2.4.1/pyrogram/session/__init__.py +26 -0
- pyromt-2.4.1/pyrogram/session/auth.py +299 -0
- pyromt-2.4.1/pyrogram/session/internals/__init__.py +28 -0
- pyromt-2.4.1/pyrogram/session/internals/data_center.py +83 -0
- pyromt-2.4.1/pyrogram/session/internals/msg_factory.py +39 -0
- pyromt-2.4.1/pyrogram/session/internals/msg_id.py +36 -0
- pyromt-2.4.1/pyrogram/session/internals/seq_no.py +31 -0
- pyromt-2.4.1/pyrogram/session/session.py +443 -0
- pyromt-2.4.1/pyrogram/storage/__init__.py +38 -0
- pyromt-2.4.1/pyrogram/storage/dummy_client.py +62 -0
- pyromt-2.4.1/pyrogram/storage/file_storage.py +88 -0
- pyromt-2.4.1/pyrogram/storage/memory_storage.py +74 -0
- pyromt-2.4.1/pyrogram/storage/mongo_storage.py +257 -0
- pyromt-2.4.1/pyrogram/storage/sqlite_storage.py +305 -0
- pyromt-2.4.1/pyrogram/storage/storage.py +111 -0
- pyromt-2.4.1/pyrogram/sync.py +118 -0
- pyromt-2.4.1/pyrogram/types/__init__.py +49 -0
- pyromt-2.4.1/pyrogram/types/authorization/__init__.py +32 -0
- pyromt-2.4.1/pyrogram/types/authorization/active_session.py +150 -0
- pyromt-2.4.1/pyrogram/types/authorization/active_sessions.py +57 -0
- pyromt-2.4.1/pyrogram/types/authorization/login_token.py +46 -0
- pyromt-2.4.1/pyrogram/types/authorization/sent_code.py +63 -0
- pyromt-2.4.1/pyrogram/types/authorization/terms_of_service.py +57 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/__init__.py +96 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_allowed.py +68 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_app.py +87 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_business_connection.py +81 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command.py +54 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope.py +74 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +33 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +33 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +33 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py +44 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +44 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py +49 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope_default.py +34 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_info.py +57 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/callback_game.py +30 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/callback_query.py +365 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/collectible_item_info.py +74 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/force_reply.py +67 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/game_high_score.py +80 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/inline_keyboard_button.py +264 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/inline_keyboard_button_buy.py +51 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py +79 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/keyboard_button.py +259 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/login_url.py +92 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/menu_button.py +45 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/menu_button_commands.py +33 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/menu_button_default.py +33 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/menu_button_web_app.py +52 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py +114 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py +59 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/request_peer_type_channel.py +83 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/request_peer_type_chat.py +92 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/request_peer_type_user.py +70 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/requested_chat.py +82 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/requested_chats.py +77 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/requested_user.py +84 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/sent_web_app_message.py +43 -0
- pyromt-2.4.1/pyrogram/types/bots_and_keyboards/web_app_info.py +38 -0
- pyromt-2.4.1/pyrogram/types/business/__init__.py +29 -0
- pyromt-2.4.1/pyrogram/types/business/pre_checkout_query.py +135 -0
- pyromt-2.4.1/pyrogram/types/business/shipping_address.py +78 -0
- pyromt-2.4.1/pyrogram/types/business/shipping_option.py +72 -0
- pyromt-2.4.1/pyrogram/types/business/shipping_query.py +124 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/__init__.py +48 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/chosen_inline_result.py +100 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query.py +186 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result.py +64 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_animation.py +156 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_article.py +100 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_audio.py +138 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_cached_animation.py +109 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_cached_audio.py +102 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_cached_document.py +114 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_cached_photo.py +112 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_cached_sticker.py +79 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_cached_video.py +115 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_cached_voice.py +109 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_contact.py +115 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_document.py +146 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_location.py +123 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_photo.py +148 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_venue.py +132 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_video.py +152 -0
- pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_voice.py +115 -0
- pyromt-2.4.1/pyrogram/types/input_media/__init__.py +33 -0
- pyromt-2.4.1/pyrogram/types/input_media/input_media.py +50 -0
- pyromt-2.4.1/pyrogram/types/input_media/input_media_animation.py +86 -0
- pyromt-2.4.1/pyrogram/types/input_media/input_media_area.py +40 -0
- pyromt-2.4.1/pyrogram/types/input_media/input_media_area_channel_post.py +58 -0
- pyromt-2.4.1/pyrogram/types/input_media/input_media_audio.py +89 -0
- pyromt-2.4.1/pyrogram/types/input_media/input_media_document.py +72 -0
- pyromt-2.4.1/pyrogram/types/input_media/input_media_photo.py +64 -0
- pyromt-2.4.1/pyrogram/types/input_media/input_media_video.py +98 -0
- pyromt-2.4.1/pyrogram/types/input_media/input_phone_contact.py +52 -0
- pyromt-2.4.1/pyrogram/types/input_message_content/__init__.py +42 -0
- pyromt-2.4.1/pyrogram/types/input_message_content/input_contact_message_content.py +68 -0
- pyromt-2.4.1/pyrogram/types/input_message_content/input_invoice_message_content.py +174 -0
- pyromt-2.4.1/pyrogram/types/input_message_content/input_location_message_content.py +82 -0
- pyromt-2.4.1/pyrogram/types/input_message_content/input_message_content.py +42 -0
- pyromt-2.4.1/pyrogram/types/input_message_content/input_reply_to_message.py +90 -0
- pyromt-2.4.1/pyrogram/types/input_message_content/input_reply_to_monoforum.py +43 -0
- pyromt-2.4.1/pyrogram/types/input_message_content/input_reply_to_story.py +49 -0
- pyromt-2.4.1/pyrogram/types/input_message_content/input_text_message_content.py +69 -0
- pyromt-2.4.1/pyrogram/types/input_message_content/input_todo_task.py +37 -0
- pyromt-2.4.1/pyrogram/types/input_message_content/input_venue_message_content.py +87 -0
- pyromt-2.4.1/pyrogram/types/list.py +31 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/__init__.py +156 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/alternative_video.py +134 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/animation.py +163 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/audio.py +122 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/available_effect.py +89 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/chat_theme.py +38 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/chat_wallpaper.py +55 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/contact.py +72 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/contact_registered.py +29 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/dice.py +48 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/document.py +99 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/exported_story_link.py +43 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/external_reply_info.py +327 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/game.py +99 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/giveaway.py +108 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/giveaway_launched.py +51 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/giveaway_result.py +140 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/location.py +56 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/media_area.py +46 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/media_area_channel_post.py +70 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/media_area_coordinates.py +77 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/message.py +5675 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/message_entity.py +141 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/message_origin.py +95 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/message_origin_channel.py +62 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/message_origin_chat.py +57 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/message_origin_hidden_user.py +52 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/message_origin_import.py +51 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/message_origin_user.py +52 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/message_reaction_count_updated.py +89 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/message_reaction_updated.py +126 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/message_reactions.py +70 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/message_reactor.py +102 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/message_story.py +79 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/photo.py +131 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/poll.py +248 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/poll_option.py +65 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/reaction.py +99 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/read_participant.py +56 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/screenshot_taken.py +29 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/sticker.py +222 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/stickerset.py +74 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/stories_privacy_rules.py +47 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/story.py +1941 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/story_deleted.py +73 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/story_forward_header.py +81 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/story_skipped.py +92 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/story_views.py +50 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/stripped_thumbnail.py +48 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/text_quote.py +84 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/thumbnail.py +112 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/todo_list.py +83 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/todo_task.py +85 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/todo_tasks_added.py +45 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/todo_tasks_completed.py +44 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/todo_tasks_incompleted.py +44 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/transcribed_audio.py +67 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/translated_text.py +61 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/venue.py +75 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/video.py +148 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/video_note.py +109 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/voice.py +97 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/wallpaper.py +95 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/wallpaper_settings.py +92 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/web_app_data.py +52 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/web_page.py +188 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/web_page_empty.py +53 -0
- pyromt-2.4.1/pyrogram/types/messages_and_media/web_page_preview.py +76 -0
- pyromt-2.4.1/pyrogram/types/object.py +128 -0
- pyromt-2.4.1/pyrogram/types/payments/__init__.py +58 -0
- pyromt-2.4.1/pyrogram/types/payments/checked_gift_code.py +93 -0
- pyromt-2.4.1/pyrogram/types/payments/extended_media_preview.py +66 -0
- pyromt-2.4.1/pyrogram/types/payments/gift.py +536 -0
- pyromt-2.4.1/pyrogram/types/payments/gift_attribute.py +160 -0
- pyromt-2.4.1/pyrogram/types/payments/gift_code.py +102 -0
- pyromt-2.4.1/pyrogram/types/payments/gifted_premium.py +79 -0
- pyromt-2.4.1/pyrogram/types/payments/input_stars_transaction.py +47 -0
- pyromt-2.4.1/pyrogram/types/payments/invoice.py +89 -0
- pyromt-2.4.1/pyrogram/types/payments/labeled_price.py +48 -0
- pyromt-2.4.1/pyrogram/types/payments/paid_media.py +78 -0
- pyromt-2.4.1/pyrogram/types/payments/paid_message_price_changed.py +49 -0
- pyromt-2.4.1/pyrogram/types/payments/payment_form.py +117 -0
- pyromt-2.4.1/pyrogram/types/payments/payment_info.py +54 -0
- pyromt-2.4.1/pyrogram/types/payments/payment_refunded.py +82 -0
- pyromt-2.4.1/pyrogram/types/payments/purchased_paid_media.py +50 -0
- pyromt-2.4.1/pyrogram/types/payments/stars_status.py +52 -0
- pyromt-2.4.1/pyrogram/types/payments/stars_transaction.py +126 -0
- pyromt-2.4.1/pyrogram/types/payments/successful_payment.py +114 -0
- pyromt-2.4.1/pyrogram/types/pyromod/__init__.py +23 -0
- pyromt-2.4.1/pyrogram/types/pyromod/identifier.py +74 -0
- pyromt-2.4.1/pyrogram/types/pyromod/listener.py +61 -0
- pyromt-2.4.1/pyrogram/types/update.py +30 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/__init__.py +114 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/birthday.py +63 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/bot_verification.py +63 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/business_info.py +81 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/business_message.py +111 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/business_recipients.py +78 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/business_weekly_open.py +49 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/business_working_hours.py +62 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat.py +1333 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat_admin_with_invite_links.py +64 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat_color.py +64 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat_event.py +534 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat_event_filter.py +176 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat_invite_link.py +150 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat_join_request.py +140 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat_joined_by_request.py +29 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat_joiner.py +83 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat_member.py +235 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat_member_updated.py +150 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat_permissions.py +234 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat_photo.py +128 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat_preview.py +80 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat_privileges.py +147 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/chat_reactions.py +74 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/dialog.py +80 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/emoji_status.py +128 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/exported_folder_link.py +55 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/folder.py +499 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/forum_topic.py +154 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/forum_topic_closed.py +29 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/forum_topic_created.py +64 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/forum_topic_deleted.py +44 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/forum_topic_edited.py +71 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/forum_topic_reopened.py +29 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/general_forum_topic_hidden.py +29 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/general_forum_topic_unhidden.py +29 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/group_call_member.py +149 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/invite_link_importer.py +62 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/peer_channel.py +46 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/peer_user.py +46 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/restriction.py +51 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/user.py +559 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/username.py +58 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/video_chat_ended.py +42 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/video_chat_members_invited.py +51 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/video_chat_scheduled.py +44 -0
- pyromt-2.4.1/pyrogram/types/user_and_chats/video_chat_started.py +30 -0
- pyromt-2.4.1/pyrogram/utils.py +530 -0
- pyromt-2.4.1/srigram/errors/exceptions/__init__.py +645 -0
- pyromt-2.4.1/srigram/errors/exceptions/all.py +683 -0
- pyromt-2.4.1/srigram/errors/exceptions/bad_request_400.py +3567 -0
- pyromt-2.4.1/srigram/errors/exceptions/flood_420.py +74 -0
- pyromt-2.4.1/srigram/errors/exceptions/forbidden_403.py +340 -0
- pyromt-2.4.1/srigram/errors/exceptions/internal_server_error_500.py +347 -0
- pyromt-2.4.1/srigram/errors/exceptions/not_acceptable_406.py +172 -0
- pyromt-2.4.1/srigram/errors/exceptions/see_other_303.py +53 -0
- pyromt-2.4.1/srigram/errors/exceptions/service_unavailable_503.py +39 -0
- pyromt-2.4.1/srigram/errors/exceptions/unauthorized_401.py +81 -0
- pyromt-2.4.1/srigram/raw/all.py +2371 -0
- pyromt-2.4.1/srigram/raw/base/__init__.py +415 -0
- pyromt-2.4.1/srigram/raw/base/access_point_rule.py +43 -0
- pyromt-2.4.1/srigram/raw/base/account/__init__.py +42 -0
- pyromt-2.4.1/srigram/raw/base/account/authorization_form.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/authorizations.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/auto_download_settings.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/auto_save_settings.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/business_chat_links.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/chat_themes.py +54 -0
- pyromt-2.4.1/srigram/raw/base/account/connected_bots.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/content_settings.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/email_verified.py +54 -0
- pyromt-2.4.1/srigram/raw/base/account/emoji_statuses.py +57 -0
- pyromt-2.4.1/srigram/raw/base/account/paid_messages_revenue.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/passkey_registration_options.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/passkeys.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/password.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/password_input_settings.py +43 -0
- pyromt-2.4.1/srigram/raw/base/account/password_settings.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/privacy_rules.py +54 -0
- pyromt-2.4.1/srigram/raw/base/account/reset_password_result.py +55 -0
- pyromt-2.4.1/srigram/raw/base/account/resolved_business_chat_links.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/saved_music_ids.py +54 -0
- pyromt-2.4.1/srigram/raw/base/account/saved_ringtone.py +54 -0
- pyromt-2.4.1/srigram/raw/base/account/saved_ringtones.py +54 -0
- pyromt-2.4.1/srigram/raw/base/account/sent_email_code.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/takeout.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/themes.py +55 -0
- pyromt-2.4.1/srigram/raw/base/account/tmp_password.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account/wall_papers.py +54 -0
- pyromt-2.4.1/srigram/raw/base/account/web_authorizations.py +53 -0
- pyromt-2.4.1/srigram/raw/base/account_days_ttl.py +53 -0
- pyromt-2.4.1/srigram/raw/base/attach_menu_bot.py +43 -0
- pyromt-2.4.1/srigram/raw/base/attach_menu_bot_icon.py +43 -0
- pyromt-2.4.1/srigram/raw/base/attach_menu_bot_icon_color.py +43 -0
- pyromt-2.4.1/srigram/raw/base/attach_menu_bots.py +54 -0
- pyromt-2.4.1/srigram/raw/base/attach_menu_bots_bot.py +53 -0
- pyromt-2.4.1/srigram/raw/base/attach_menu_peer_type.py +47 -0
- pyromt-2.4.1/srigram/raw/base/auction_bid_level.py +43 -0
- pyromt-2.4.1/srigram/raw/base/auth/__init__.py +23 -0
- pyromt-2.4.1/srigram/raw/base/auth/authorization.py +61 -0
- pyromt-2.4.1/srigram/raw/base/auth/code_type.py +47 -0
- pyromt-2.4.1/srigram/raw/base/auth/exported_authorization.py +53 -0
- pyromt-2.4.1/srigram/raw/base/auth/logged_out.py +53 -0
- pyromt-2.4.1/srigram/raw/base/auth/login_token.py +56 -0
- pyromt-2.4.1/srigram/raw/base/auth/passkey_login_options.py +53 -0
- pyromt-2.4.1/srigram/raw/base/auth/password_recovery.py +53 -0
- pyromt-2.4.1/srigram/raw/base/auth/sent_code.py +61 -0
- pyromt-2.4.1/srigram/raw/base/auth/sent_code_type.py +53 -0
- pyromt-2.4.1/srigram/raw/base/authorization.py +53 -0
- pyromt-2.4.1/srigram/raw/base/auto_download_settings.py +43 -0
- pyromt-2.4.1/srigram/raw/base/auto_save_exception.py +43 -0
- pyromt-2.4.1/srigram/raw/base/auto_save_settings.py +43 -0
- pyromt-2.4.1/srigram/raw/base/available_effect.py +43 -0
- pyromt-2.4.1/srigram/raw/base/available_reaction.py +43 -0
- pyromt-2.4.1/srigram/raw/base/bad_msg_notification.py +44 -0
- pyromt-2.4.1/srigram/raw/base/bank_card_open_url.py +43 -0
- pyromt-2.4.1/srigram/raw/base/base_theme.py +47 -0
- pyromt-2.4.1/srigram/raw/base/bind_auth_key_inner.py +43 -0
- pyromt-2.4.1/srigram/raw/base/birthday.py +43 -0
- pyromt-2.4.1/srigram/raw/base/bool.py +255 -0
- pyromt-2.4.1/srigram/raw/base/boost.py +43 -0
- pyromt-2.4.1/srigram/raw/base/bot_app.py +44 -0
- pyromt-2.4.1/srigram/raw/base/bot_app_settings.py +43 -0
- pyromt-2.4.1/srigram/raw/base/bot_business_connection.py +43 -0
- pyromt-2.4.1/srigram/raw/base/bot_command.py +53 -0
- pyromt-2.4.1/srigram/raw/base/bot_command_scope.py +49 -0
- pyromt-2.4.1/srigram/raw/base/bot_info.py +43 -0
- pyromt-2.4.1/srigram/raw/base/bot_inline_message.py +49 -0
- pyromt-2.4.1/srigram/raw/base/bot_inline_result.py +44 -0
- pyromt-2.4.1/srigram/raw/base/bot_menu_button.py +55 -0
- pyromt-2.4.1/srigram/raw/base/bot_preview_media.py +55 -0
- pyromt-2.4.1/srigram/raw/base/bot_verification.py +43 -0
- pyromt-2.4.1/srigram/raw/base/bot_verifier_settings.py +43 -0
- pyromt-2.4.1/srigram/raw/base/bots/__init__.py +17 -0
- pyromt-2.4.1/srigram/raw/base/bots/bot_info.py +53 -0
- pyromt-2.4.1/srigram/raw/base/bots/popular_app_bots.py +53 -0
- pyromt-2.4.1/srigram/raw/base/bots/preview_info.py +53 -0
- pyromt-2.4.1/srigram/raw/base/business_away_message.py +43 -0
- pyromt-2.4.1/srigram/raw/base/business_away_message_schedule.py +45 -0
- pyromt-2.4.1/srigram/raw/base/business_bot_recipients.py +43 -0
- pyromt-2.4.1/srigram/raw/base/business_bot_rights.py +43 -0
- pyromt-2.4.1/srigram/raw/base/business_chat_link.py +54 -0
- pyromt-2.4.1/srigram/raw/base/business_greeting_message.py +43 -0
- pyromt-2.4.1/srigram/raw/base/business_intro.py +43 -0
- pyromt-2.4.1/srigram/raw/base/business_location.py +43 -0
- pyromt-2.4.1/srigram/raw/base/business_recipients.py +43 -0
- pyromt-2.4.1/srigram/raw/base/business_weekly_open.py +43 -0
- pyromt-2.4.1/srigram/raw/base/business_work_hours.py +43 -0
- pyromt-2.4.1/srigram/raw/base/cdn_config.py +53 -0
- pyromt-2.4.1/srigram/raw/base/cdn_public_key.py +43 -0
- pyromt-2.4.1/srigram/raw/base/channel_admin_log_event.py +43 -0
- pyromt-2.4.1/srigram/raw/base/channel_admin_log_event_action.py +93 -0
- pyromt-2.4.1/srigram/raw/base/channel_admin_log_events_filter.py +43 -0
- pyromt-2.4.1/srigram/raw/base/channel_location.py +44 -0
- pyromt-2.4.1/srigram/raw/base/channel_messages_filter.py +44 -0
- pyromt-2.4.1/srigram/raw/base/channel_participant.py +48 -0
- pyromt-2.4.1/srigram/raw/base/channel_participants_filter.py +50 -0
- pyromt-2.4.1/srigram/raw/base/channels/__init__.py +19 -0
- pyromt-2.4.1/srigram/raw/base/channels/admin_log_results.py +53 -0
- pyromt-2.4.1/srigram/raw/base/channels/channel_participant.py +53 -0
- pyromt-2.4.1/srigram/raw/base/channels/channel_participants.py +54 -0
- pyromt-2.4.1/srigram/raw/base/channels/send_as_peers.py +53 -0
- pyromt-2.4.1/srigram/raw/base/channels/sponsored_message_report_result.py +55 -0
- pyromt-2.4.1/srigram/raw/base/chat.py +47 -0
- pyromt-2.4.1/srigram/raw/base/chat_admin_rights.py +43 -0
- pyromt-2.4.1/srigram/raw/base/chat_admin_with_invites.py +43 -0
- pyromt-2.4.1/srigram/raw/base/chat_banned_rights.py +43 -0
- pyromt-2.4.1/srigram/raw/base/chat_full.py +44 -0
- pyromt-2.4.1/srigram/raw/base/chat_invite.py +55 -0
- pyromt-2.4.1/srigram/raw/base/chat_invite_importer.py +43 -0
- pyromt-2.4.1/srigram/raw/base/chat_onlines.py +53 -0
- pyromt-2.4.1/srigram/raw/base/chat_participant.py +45 -0
- pyromt-2.4.1/srigram/raw/base/chat_participants.py +44 -0
- pyromt-2.4.1/srigram/raw/base/chat_photo.py +44 -0
- pyromt-2.4.1/srigram/raw/base/chat_reactions.py +45 -0
- pyromt-2.4.1/srigram/raw/base/chat_theme.py +44 -0
- pyromt-2.4.1/srigram/raw/base/chatlists/__init__.py +18 -0
- pyromt-2.4.1/srigram/raw/base/chatlists/chatlist_invite.py +54 -0
- pyromt-2.4.1/srigram/raw/base/chatlists/chatlist_updates.py +53 -0
- pyromt-2.4.1/srigram/raw/base/chatlists/exported_chatlist_invite.py +53 -0
- pyromt-2.4.1/srigram/raw/base/chatlists/exported_invites.py +53 -0
- pyromt-2.4.1/srigram/raw/base/client_dh_inner_data.py +43 -0
- pyromt-2.4.1/srigram/raw/base/code_settings.py +43 -0
- pyromt-2.4.1/srigram/raw/base/config.py +53 -0
- pyromt-2.4.1/srigram/raw/base/connected_bot.py +43 -0
- pyromt-2.4.1/srigram/raw/base/connected_bot_star_ref.py +43 -0
- pyromt-2.4.1/srigram/raw/base/contact.py +43 -0
- pyromt-2.4.1/srigram/raw/base/contact_birthday.py +43 -0
- pyromt-2.4.1/srigram/raw/base/contact_status.py +53 -0
- pyromt-2.4.1/srigram/raw/base/contacts/__init__.py +22 -0
- pyromt-2.4.1/srigram/raw/base/contacts/blocked.py +54 -0
- pyromt-2.4.1/srigram/raw/base/contacts/contact_birthdays.py +53 -0
- pyromt-2.4.1/srigram/raw/base/contacts/contacts.py +54 -0
- pyromt-2.4.1/srigram/raw/base/contacts/found.py +53 -0
- pyromt-2.4.1/srigram/raw/base/contacts/imported_contacts.py +53 -0
- pyromt-2.4.1/srigram/raw/base/contacts/resolved_peer.py +54 -0
- pyromt-2.4.1/srigram/raw/base/contacts/sponsored_peers.py +54 -0
- pyromt-2.4.1/srigram/raw/base/contacts/top_peers.py +55 -0
- pyromt-2.4.1/srigram/raw/base/data_json.py +55 -0
- pyromt-2.4.1/srigram/raw/base/dc_option.py +43 -0
- pyromt-2.4.1/srigram/raw/base/default_history_ttl.py +53 -0
- pyromt-2.4.1/srigram/raw/base/destroy_auth_key_res.py +55 -0
- pyromt-2.4.1/srigram/raw/base/destroy_session_res.py +54 -0
- pyromt-2.4.1/srigram/raw/base/dialog.py +44 -0
- pyromt-2.4.1/srigram/raw/base/dialog_filter.py +45 -0
- pyromt-2.4.1/srigram/raw/base/dialog_filter_suggested.py +53 -0
- pyromt-2.4.1/srigram/raw/base/dialog_peer.py +54 -0
- pyromt-2.4.1/srigram/raw/base/disallowed_gifts_settings.py +43 -0
- pyromt-2.4.1/srigram/raw/base/document.py +57 -0
- pyromt-2.4.1/srigram/raw/base/document_attribute.py +50 -0
- pyromt-2.4.1/srigram/raw/base/draft_message.py +44 -0
- pyromt-2.4.1/srigram/raw/base/email_verification.py +45 -0
- pyromt-2.4.1/srigram/raw/base/email_verify_purpose.py +45 -0
- pyromt-2.4.1/srigram/raw/base/emoji_group.py +45 -0
- pyromt-2.4.1/srigram/raw/base/emoji_keyword.py +44 -0
- pyromt-2.4.1/srigram/raw/base/emoji_keywords_difference.py +54 -0
- pyromt-2.4.1/srigram/raw/base/emoji_language.py +53 -0
- pyromt-2.4.1/srigram/raw/base/emoji_list.py +58 -0
- pyromt-2.4.1/srigram/raw/base/emoji_status.py +46 -0
- pyromt-2.4.1/srigram/raw/base/emoji_url.py +53 -0
- pyromt-2.4.1/srigram/raw/base/encrypted_chat.py +58 -0
- pyromt-2.4.1/srigram/raw/base/encrypted_file.py +54 -0
- pyromt-2.4.1/srigram/raw/base/encrypted_message.py +44 -0
- pyromt-2.4.1/srigram/raw/base/error.py +43 -0
- pyromt-2.4.1/srigram/raw/base/exported_chat_invite.py +54 -0
- pyromt-2.4.1/srigram/raw/base/exported_chatlist_invite.py +53 -0
- pyromt-2.4.1/srigram/raw/base/exported_contact_token.py +53 -0
- pyromt-2.4.1/srigram/raw/base/exported_message_link.py +53 -0
- pyromt-2.4.1/srigram/raw/base/exported_story_link.py +53 -0
- pyromt-2.4.1/srigram/raw/base/fact_check.py +53 -0
- pyromt-2.4.1/srigram/raw/base/file_hash.py +55 -0
- pyromt-2.4.1/srigram/raw/base/folder.py +43 -0
- pyromt-2.4.1/srigram/raw/base/folder_peer.py +43 -0
- pyromt-2.4.1/srigram/raw/base/forum_topic.py +44 -0
- pyromt-2.4.1/srigram/raw/base/found_story.py +43 -0
- pyromt-2.4.1/srigram/raw/base/fragment/__init__.py +15 -0
- pyromt-2.4.1/srigram/raw/base/fragment/collectible_info.py +53 -0
- pyromt-2.4.1/srigram/raw/base/game.py +43 -0
- pyromt-2.4.1/srigram/raw/base/geo_point.py +44 -0
- pyromt-2.4.1/srigram/raw/base/geo_point_address.py +43 -0
- pyromt-2.4.1/srigram/raw/base/global_privacy_settings.py +54 -0
- pyromt-2.4.1/srigram/raw/base/group_call.py +44 -0
- pyromt-2.4.1/srigram/raw/base/group_call_donor.py +43 -0
- pyromt-2.4.1/srigram/raw/base/group_call_message.py +43 -0
- pyromt-2.4.1/srigram/raw/base/group_call_participant.py +43 -0
- pyromt-2.4.1/srigram/raw/base/group_call_participant_video.py +43 -0
- pyromt-2.4.1/srigram/raw/base/group_call_participant_video_source_group.py +43 -0
- pyromt-2.4.1/srigram/raw/base/group_call_stream_channel.py +43 -0
- pyromt-2.4.1/srigram/raw/base/help/__init__.py +35 -0
- pyromt-2.4.1/srigram/raw/base/help/app_config.py +54 -0
- pyromt-2.4.1/srigram/raw/base/help/app_update.py +54 -0
- pyromt-2.4.1/srigram/raw/base/help/config_simple.py +43 -0
- pyromt-2.4.1/srigram/raw/base/help/countries_list.py +54 -0
- pyromt-2.4.1/srigram/raw/base/help/country.py +43 -0
- pyromt-2.4.1/srigram/raw/base/help/country_code.py +43 -0
- pyromt-2.4.1/srigram/raw/base/help/deep_link_info.py +54 -0
- pyromt-2.4.1/srigram/raw/base/help/invite_text.py +53 -0
- pyromt-2.4.1/srigram/raw/base/help/passport_config.py +54 -0
- pyromt-2.4.1/srigram/raw/base/help/peer_color_option.py +43 -0
- pyromt-2.4.1/srigram/raw/base/help/peer_color_set.py +44 -0
- pyromt-2.4.1/srigram/raw/base/help/peer_colors.py +55 -0
- pyromt-2.4.1/srigram/raw/base/help/premium_promo.py +53 -0
- pyromt-2.4.1/srigram/raw/base/help/promo_data.py +54 -0
- pyromt-2.4.1/srigram/raw/base/help/recent_me_urls.py +53 -0
- pyromt-2.4.1/srigram/raw/base/help/support.py +53 -0
- pyromt-2.4.1/srigram/raw/base/help/support_name.py +53 -0
- pyromt-2.4.1/srigram/raw/base/help/terms_of_service.py +43 -0
- pyromt-2.4.1/srigram/raw/base/help/terms_of_service_update.py +54 -0
- pyromt-2.4.1/srigram/raw/base/help/timezones_list.py +54 -0
- pyromt-2.4.1/srigram/raw/base/help/user_info.py +55 -0
- pyromt-2.4.1/srigram/raw/base/high_score.py +43 -0
- pyromt-2.4.1/srigram/raw/base/http_wait.py +43 -0
- pyromt-2.4.1/srigram/raw/base/imported_contact.py +43 -0
- pyromt-2.4.1/srigram/raw/base/inline_bot_switch_pm.py +43 -0
- pyromt-2.4.1/srigram/raw/base/inline_bot_web_view.py +43 -0
- pyromt-2.4.1/srigram/raw/base/inline_query_peer_type.py +48 -0
- pyromt-2.4.1/srigram/raw/base/input_app_event.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_bot_app.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_bot_inline_message.py +50 -0
- pyromt-2.4.1/srigram/raw/base/input_bot_inline_message_id.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_bot_inline_result.py +46 -0
- pyromt-2.4.1/srigram/raw/base/input_business_away_message.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_business_bot_recipients.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_business_chat_link.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_business_greeting_message.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_business_intro.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_business_recipients.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_channel.py +45 -0
- pyromt-2.4.1/srigram/raw/base/input_chat_photo.py +45 -0
- pyromt-2.4.1/srigram/raw/base/input_chat_theme.py +45 -0
- pyromt-2.4.1/srigram/raw/base/input_chatlist.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_check_password_srp.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_client_proxy.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_collectible.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_contact.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_dialog_peer.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_document.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_encrypted_chat.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_encrypted_file.py +46 -0
- pyromt-2.4.1/srigram/raw/base/input_file.py +45 -0
- pyromt-2.4.1/srigram/raw/base/input_file_location.py +52 -0
- pyromt-2.4.1/srigram/raw/base/input_folder_peer.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_game.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_geo_point.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_group_call.py +45 -0
- pyromt-2.4.1/srigram/raw/base/input_invoice.py +57 -0
- pyromt-2.4.1/srigram/raw/base/input_media.py +62 -0
- pyromt-2.4.1/srigram/raw/base/input_message.py +46 -0
- pyromt-2.4.1/srigram/raw/base/input_notify_peer.py +47 -0
- pyromt-2.4.1/srigram/raw/base/input_passkey_credential.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_passkey_response.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_payment_credentials.py +46 -0
- pyromt-2.4.1/srigram/raw/base/input_peer.py +49 -0
- pyromt-2.4.1/srigram/raw/base/input_peer_notify_settings.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_phone_call.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_photo.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_privacy_key.py +56 -0
- pyromt-2.4.1/srigram/raw/base/input_privacy_rule.py +54 -0
- pyromt-2.4.1/srigram/raw/base/input_quick_reply_shortcut.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_reply_to.py +45 -0
- pyromt-2.4.1/srigram/raw/base/input_saved_star_gift.py +45 -0
- pyromt-2.4.1/srigram/raw/base/input_secure_file.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_secure_value.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_single_media.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_star_gift_auction.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_stars_transaction.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_sticker_set.py +54 -0
- pyromt-2.4.1/srigram/raw/base/input_sticker_set_item.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_stickered_media.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_store_payment_purpose.py +50 -0
- pyromt-2.4.1/srigram/raw/base/input_theme.py +44 -0
- pyromt-2.4.1/srigram/raw/base/input_theme_settings.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_user.py +46 -0
- pyromt-2.4.1/srigram/raw/base/input_wall_paper.py +45 -0
- pyromt-2.4.1/srigram/raw/base/input_web_document.py +43 -0
- pyromt-2.4.1/srigram/raw/base/input_web_file_location.py +45 -0
- pyromt-2.4.1/srigram/raw/base/invoice.py +43 -0
- pyromt-2.4.1/srigram/raw/base/ip_port.py +44 -0
- pyromt-2.4.1/srigram/raw/base/json_object_value.py +43 -0
- pyromt-2.4.1/srigram/raw/base/json_value.py +48 -0
- pyromt-2.4.1/srigram/raw/base/keyboard_button.py +60 -0
- pyromt-2.4.1/srigram/raw/base/keyboard_button_row.py +43 -0
- pyromt-2.4.1/srigram/raw/base/keyboard_button_style.py +43 -0
- pyromt-2.4.1/srigram/raw/base/labeled_price.py +43 -0
- pyromt-2.4.1/srigram/raw/base/lang_pack_difference.py +54 -0
- pyromt-2.4.1/srigram/raw/base/lang_pack_language.py +54 -0
- pyromt-2.4.1/srigram/raw/base/lang_pack_string.py +55 -0
- pyromt-2.4.1/srigram/raw/base/mask_coords.py +43 -0
- pyromt-2.4.1/srigram/raw/base/media_area.py +51 -0
- pyromt-2.4.1/srigram/raw/base/media_area_coordinates.py +43 -0
- pyromt-2.4.1/srigram/raw/base/message.py +45 -0
- pyromt-2.4.1/srigram/raw/base/message_action.py +104 -0
- pyromt-2.4.1/srigram/raw/base/message_entity.py +63 -0
- pyromt-2.4.1/srigram/raw/base/message_extended_media.py +44 -0
- pyromt-2.4.1/srigram/raw/base/message_fwd_header.py +43 -0
- pyromt-2.4.1/srigram/raw/base/message_media.py +72 -0
- pyromt-2.4.1/srigram/raw/base/message_peer_reaction.py +43 -0
- pyromt-2.4.1/srigram/raw/base/message_peer_vote.py +45 -0
- pyromt-2.4.1/srigram/raw/base/message_range.py +53 -0
- pyromt-2.4.1/srigram/raw/base/message_reactions.py +43 -0
- pyromt-2.4.1/srigram/raw/base/message_reactor.py +43 -0
- pyromt-2.4.1/srigram/raw/base/message_replies.py +43 -0
- pyromt-2.4.1/srigram/raw/base/message_reply_header.py +44 -0
- pyromt-2.4.1/srigram/raw/base/message_report_option.py +43 -0
- pyromt-2.4.1/srigram/raw/base/message_views.py +43 -0
- pyromt-2.4.1/srigram/raw/base/messages/__init__.py +76 -0
- pyromt-2.4.1/srigram/raw/base/messages/affected_found_messages.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/affected_history.py +59 -0
- pyromt-2.4.1/srigram/raw/base/messages/affected_messages.py +56 -0
- pyromt-2.4.1/srigram/raw/base/messages/all_stickers.py +56 -0
- pyromt-2.4.1/srigram/raw/base/messages/archived_stickers.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/available_effects.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/available_reactions.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/bot_app.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/bot_callback_answer.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/bot_prepared_inline_message.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/bot_results.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/chat_admins_with_invites.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/chat_full.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/chat_invite_importers.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/chats.py +61 -0
- pyromt-2.4.1/srigram/raw/base/messages/checked_history_import_peer.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/dh_config.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/dialog_filters.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/dialogs.py +55 -0
- pyromt-2.4.1/srigram/raw/base/messages/discussion_message.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/emoji_game_info.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/emoji_game_outcome.py +43 -0
- pyromt-2.4.1/srigram/raw/base/messages/emoji_groups.py +57 -0
- pyromt-2.4.1/srigram/raw/base/messages/exported_chat_invite.py +55 -0
- pyromt-2.4.1/srigram/raw/base/messages/exported_chat_invites.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/faved_stickers.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/featured_stickers.py +56 -0
- pyromt-2.4.1/srigram/raw/base/messages/forum_topics.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/found_sticker_sets.py +55 -0
- pyromt-2.4.1/srigram/raw/base/messages/found_stickers.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/high_scores.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/history_import.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/history_import_parsed.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/inactive_chats.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/invited_users.py +55 -0
- pyromt-2.4.1/srigram/raw/base/messages/message_edit_data.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/message_reactions_list.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/message_views.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/messages.py +70 -0
- pyromt-2.4.1/srigram/raw/base/messages/my_stickers.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/peer_dialogs.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/peer_settings.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/prepared_inline_message.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/quick_replies.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/reactions.py +56 -0
- pyromt-2.4.1/srigram/raw/base/messages/recent_stickers.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/saved_dialogs.py +57 -0
- pyromt-2.4.1/srigram/raw/base/messages/saved_gifs.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/saved_reaction_tags.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/search_counter.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/search_results_calendar.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/search_results_positions.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/sent_encrypted_message.py +56 -0
- pyromt-2.4.1/srigram/raw/base/messages/sponsored_messages.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/sticker_set.py +62 -0
- pyromt-2.4.1/srigram/raw/base/messages/sticker_set_install_result.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/stickers.py +54 -0
- pyromt-2.4.1/srigram/raw/base/messages/transcribed_audio.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/translated_text.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/votes_list.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/web_page.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages/web_page_preview.py +53 -0
- pyromt-2.4.1/srigram/raw/base/messages_filter.py +59 -0
- pyromt-2.4.1/srigram/raw/base/missing_invitee.py +43 -0
- pyromt-2.4.1/srigram/raw/base/msg_detailed_info.py +44 -0
- pyromt-2.4.1/srigram/raw/base/msg_resend_req.py +44 -0
- pyromt-2.4.1/srigram/raw/base/msgs_ack.py +43 -0
- pyromt-2.4.1/srigram/raw/base/msgs_all_info.py +43 -0
- pyromt-2.4.1/srigram/raw/base/msgs_state_info.py +43 -0
- pyromt-2.4.1/srigram/raw/base/msgs_state_req.py +43 -0
- pyromt-2.4.1/srigram/raw/base/my_boost.py +43 -0
- pyromt-2.4.1/srigram/raw/base/nearest_dc.py +53 -0
- pyromt-2.4.1/srigram/raw/base/new_session.py +43 -0
- pyromt-2.4.1/srigram/raw/base/notification_sound.py +46 -0
- pyromt-2.4.1/srigram/raw/base/notify_peer.py +47 -0
- pyromt-2.4.1/srigram/raw/base/null.py +43 -0
- pyromt-2.4.1/srigram/raw/base/outbox_read_date.py +53 -0
- pyromt-2.4.1/srigram/raw/base/page.py +43 -0
- pyromt-2.4.1/srigram/raw/base/page_block.py +71 -0
- pyromt-2.4.1/srigram/raw/base/page_caption.py +43 -0
- pyromt-2.4.1/srigram/raw/base/page_list_item.py +44 -0
- pyromt-2.4.1/srigram/raw/base/page_list_ordered_item.py +44 -0
- pyromt-2.4.1/srigram/raw/base/page_related_article.py +43 -0
- pyromt-2.4.1/srigram/raw/base/page_table_cell.py +43 -0
- pyromt-2.4.1/srigram/raw/base/page_table_row.py +43 -0
- pyromt-2.4.1/srigram/raw/base/paid_reaction_privacy.py +45 -0
- pyromt-2.4.1/srigram/raw/base/passkey.py +53 -0
- pyromt-2.4.1/srigram/raw/base/password_kdf_algo.py +44 -0
- pyromt-2.4.1/srigram/raw/base/payment_charge.py +43 -0
- pyromt-2.4.1/srigram/raw/base/payment_form_method.py +43 -0
- pyromt-2.4.1/srigram/raw/base/payment_requested_info.py +43 -0
- pyromt-2.4.1/srigram/raw/base/payment_saved_credentials.py +43 -0
- pyromt-2.4.1/srigram/raw/base/payments/__init__.py +42 -0
- pyromt-2.4.1/srigram/raw/base/payments/bank_card_data.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/check_can_send_gift_result.py +54 -0
- pyromt-2.4.1/srigram/raw/base/payments/checked_gift_code.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/connected_star_ref_bots.py +56 -0
- pyromt-2.4.1/srigram/raw/base/payments/exported_invoice.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/giveaway_info.py +54 -0
- pyromt-2.4.1/srigram/raw/base/payments/payment_form.py +55 -0
- pyromt-2.4.1/srigram/raw/base/payments/payment_receipt.py +54 -0
- pyromt-2.4.1/srigram/raw/base/payments/payment_result.py +55 -0
- pyromt-2.4.1/srigram/raw/base/payments/resale_star_gifts.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/saved_info.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/saved_star_gifts.py +55 -0
- pyromt-2.4.1/srigram/raw/base/payments/star_gift_active_auctions.py +54 -0
- pyromt-2.4.1/srigram/raw/base/payments/star_gift_auction_acquired_gifts.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/star_gift_auction_state.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/star_gift_collections.py +54 -0
- pyromt-2.4.1/srigram/raw/base/payments/star_gift_upgrade_attributes.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/star_gift_upgrade_preview.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/star_gift_withdrawal_url.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/star_gifts.py +54 -0
- pyromt-2.4.1/srigram/raw/base/payments/stars_revenue_ads_account_url.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/stars_revenue_stats.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/stars_revenue_withdrawal_url.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/stars_status.py +56 -0
- pyromt-2.4.1/srigram/raw/base/payments/suggested_star_ref_bots.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/unique_star_gift.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/unique_star_gift_value_info.py +53 -0
- pyromt-2.4.1/srigram/raw/base/payments/validated_requested_info.py +53 -0
- pyromt-2.4.1/srigram/raw/base/peer.py +55 -0
- pyromt-2.4.1/srigram/raw/base/peer_blocked.py +43 -0
- pyromt-2.4.1/srigram/raw/base/peer_color.py +45 -0
- pyromt-2.4.1/srigram/raw/base/peer_located.py +44 -0
- pyromt-2.4.1/srigram/raw/base/peer_notify_settings.py +53 -0
- pyromt-2.4.1/srigram/raw/base/peer_settings.py +43 -0
- pyromt-2.4.1/srigram/raw/base/peer_stories.py +43 -0
- pyromt-2.4.1/srigram/raw/base/pending_suggestion.py +43 -0
- pyromt-2.4.1/srigram/raw/base/phone/__init__.py +22 -0
- pyromt-2.4.1/srigram/raw/base/phone/exported_group_call_invite.py +53 -0
- pyromt-2.4.1/srigram/raw/base/phone/group_call.py +53 -0
- pyromt-2.4.1/srigram/raw/base/phone/group_call_stars.py +53 -0
- pyromt-2.4.1/srigram/raw/base/phone/group_call_stream_channels.py +53 -0
- pyromt-2.4.1/srigram/raw/base/phone/group_call_stream_rtmp_url.py +53 -0
- pyromt-2.4.1/srigram/raw/base/phone/group_participants.py +53 -0
- pyromt-2.4.1/srigram/raw/base/phone/join_as_peers.py +53 -0
- pyromt-2.4.1/srigram/raw/base/phone/phone_call.py +55 -0
- pyromt-2.4.1/srigram/raw/base/phone_call.py +48 -0
- pyromt-2.4.1/srigram/raw/base/phone_call_discard_reason.py +47 -0
- pyromt-2.4.1/srigram/raw/base/phone_call_protocol.py +43 -0
- pyromt-2.4.1/srigram/raw/base/phone_connection.py +44 -0
- pyromt-2.4.1/srigram/raw/base/photo.py +44 -0
- pyromt-2.4.1/srigram/raw/base/photo_size.py +48 -0
- pyromt-2.4.1/srigram/raw/base/photos/__init__.py +16 -0
- pyromt-2.4.1/srigram/raw/base/photos/photo.py +55 -0
- pyromt-2.4.1/srigram/raw/base/photos/photos.py +54 -0
- pyromt-2.4.1/srigram/raw/base/poll.py +43 -0
- pyromt-2.4.1/srigram/raw/base/poll_answer.py +43 -0
- pyromt-2.4.1/srigram/raw/base/poll_answer_voters.py +43 -0
- pyromt-2.4.1/srigram/raw/base/poll_results.py +43 -0
- pyromt-2.4.1/srigram/raw/base/pong.py +54 -0
- pyromt-2.4.1/srigram/raw/base/popular_contact.py +43 -0
- pyromt-2.4.1/srigram/raw/base/post_address.py +43 -0
- pyromt-2.4.1/srigram/raw/base/post_interaction_counters.py +44 -0
- pyromt-2.4.1/srigram/raw/base/pq_inner_data.py +46 -0
- pyromt-2.4.1/srigram/raw/base/premium/__init__.py +17 -0
- pyromt-2.4.1/srigram/raw/base/premium/boosts_list.py +54 -0
- pyromt-2.4.1/srigram/raw/base/premium/boosts_status.py +53 -0
- pyromt-2.4.1/srigram/raw/base/premium/my_boosts.py +54 -0
- pyromt-2.4.1/srigram/raw/base/premium_gift_code_option.py +53 -0
- pyromt-2.4.1/srigram/raw/base/premium_subscription_option.py +43 -0
- pyromt-2.4.1/srigram/raw/base/prepaid_giveaway.py +44 -0
- pyromt-2.4.1/srigram/raw/base/privacy_key.py +56 -0
- pyromt-2.4.1/srigram/raw/base/privacy_rule.py +54 -0
- pyromt-2.4.1/srigram/raw/base/profile_tab.py +50 -0
- pyromt-2.4.1/srigram/raw/base/public_forward.py +44 -0
- pyromt-2.4.1/srigram/raw/base/quick_reply.py +43 -0
- pyromt-2.4.1/srigram/raw/base/reaction.py +46 -0
- pyromt-2.4.1/srigram/raw/base/reaction_count.py +43 -0
- pyromt-2.4.1/srigram/raw/base/reaction_notifications_from.py +44 -0
- pyromt-2.4.1/srigram/raw/base/reactions_notify_settings.py +54 -0
- pyromt-2.4.1/srigram/raw/base/read_participant_date.py +53 -0
- pyromt-2.4.1/srigram/raw/base/received_notify_message.py +53 -0
- pyromt-2.4.1/srigram/raw/base/recent_me_url.py +47 -0
- pyromt-2.4.1/srigram/raw/base/recent_story.py +53 -0
- pyromt-2.4.1/srigram/raw/base/reply_markup.py +46 -0
- pyromt-2.4.1/srigram/raw/base/report_reason.py +52 -0
- pyromt-2.4.1/srigram/raw/base/report_result.py +56 -0
- pyromt-2.4.1/srigram/raw/base/request_peer_type.py +45 -0
- pyromt-2.4.1/srigram/raw/base/requested_peer.py +45 -0
- pyromt-2.4.1/srigram/raw/base/requirement_to_contact.py +55 -0
- pyromt-2.4.1/srigram/raw/base/res_pq.py +54 -0
- pyromt-2.4.1/srigram/raw/base/restriction_reason.py +43 -0
- pyromt-2.4.1/srigram/raw/base/rich_text.py +58 -0
- pyromt-2.4.1/srigram/raw/base/rpc_drop_answer.py +55 -0
- pyromt-2.4.1/srigram/raw/base/rpc_error.py +43 -0
- pyromt-2.4.1/srigram/raw/base/rpc_result.py +43 -0
- pyromt-2.4.1/srigram/raw/base/saved_contact.py +53 -0
- pyromt-2.4.1/srigram/raw/base/saved_dialog.py +44 -0
- pyromt-2.4.1/srigram/raw/base/saved_reaction_tag.py +43 -0
- pyromt-2.4.1/srigram/raw/base/saved_star_gift.py +43 -0
- pyromt-2.4.1/srigram/raw/base/search_posts_flood.py +53 -0
- pyromt-2.4.1/srigram/raw/base/search_results_calendar_period.py +43 -0
- pyromt-2.4.1/srigram/raw/base/search_results_position.py +43 -0
- pyromt-2.4.1/srigram/raw/base/secure_credentials_encrypted.py +43 -0
- pyromt-2.4.1/srigram/raw/base/secure_data.py +43 -0
- pyromt-2.4.1/srigram/raw/base/secure_file.py +44 -0
- pyromt-2.4.1/srigram/raw/base/secure_password_kdf_algo.py +45 -0
- pyromt-2.4.1/srigram/raw/base/secure_plain_data.py +44 -0
- pyromt-2.4.1/srigram/raw/base/secure_required_type.py +44 -0
- pyromt-2.4.1/srigram/raw/base/secure_secret_settings.py +43 -0
- pyromt-2.4.1/srigram/raw/base/secure_value.py +55 -0
- pyromt-2.4.1/srigram/raw/base/secure_value_error.py +51 -0
- pyromt-2.4.1/srigram/raw/base/secure_value_hash.py +43 -0
- pyromt-2.4.1/srigram/raw/base/secure_value_type.py +55 -0
- pyromt-2.4.1/srigram/raw/base/send_as_peer.py +43 -0
- pyromt-2.4.1/srigram/raw/base/send_message_action.py +61 -0
- pyromt-2.4.1/srigram/raw/base/server_dh_inner_data.py +43 -0
- pyromt-2.4.1/srigram/raw/base/server_dh_params.py +54 -0
- pyromt-2.4.1/srigram/raw/base/set_client_dh_params_answer.py +55 -0
- pyromt-2.4.1/srigram/raw/base/shipping_option.py +43 -0
- pyromt-2.4.1/srigram/raw/base/sms_job.py +53 -0
- pyromt-2.4.1/srigram/raw/base/smsjobs/__init__.py +16 -0
- pyromt-2.4.1/srigram/raw/base/smsjobs/eligibility_to_join.py +53 -0
- pyromt-2.4.1/srigram/raw/base/smsjobs/status.py +53 -0
- pyromt-2.4.1/srigram/raw/base/sponsored_message.py +43 -0
- pyromt-2.4.1/srigram/raw/base/sponsored_message_report_option.py +43 -0
- pyromt-2.4.1/srigram/raw/base/sponsored_peer.py +43 -0
- pyromt-2.4.1/srigram/raw/base/star_gift.py +44 -0
- pyromt-2.4.1/srigram/raw/base/star_gift_active_auction_state.py +43 -0
- pyromt-2.4.1/srigram/raw/base/star_gift_attribute.py +46 -0
- pyromt-2.4.1/srigram/raw/base/star_gift_attribute_counter.py +43 -0
- pyromt-2.4.1/srigram/raw/base/star_gift_attribute_id.py +45 -0
- pyromt-2.4.1/srigram/raw/base/star_gift_attribute_rarity.py +47 -0
- pyromt-2.4.1/srigram/raw/base/star_gift_auction_acquired_gift.py +43 -0
- pyromt-2.4.1/srigram/raw/base/star_gift_auction_round.py +44 -0
- pyromt-2.4.1/srigram/raw/base/star_gift_auction_state.py +45 -0
- pyromt-2.4.1/srigram/raw/base/star_gift_auction_user_state.py +43 -0
- pyromt-2.4.1/srigram/raw/base/star_gift_background.py +43 -0
- pyromt-2.4.1/srigram/raw/base/star_gift_collection.py +54 -0
- pyromt-2.4.1/srigram/raw/base/star_gift_upgrade_price.py +43 -0
- pyromt-2.4.1/srigram/raw/base/star_ref_program.py +53 -0
- pyromt-2.4.1/srigram/raw/base/stars_amount.py +44 -0
- pyromt-2.4.1/srigram/raw/base/stars_gift_option.py +53 -0
- pyromt-2.4.1/srigram/raw/base/stars_giveaway_option.py +53 -0
- pyromt-2.4.1/srigram/raw/base/stars_giveaway_winners_option.py +43 -0
- pyromt-2.4.1/srigram/raw/base/stars_rating.py +43 -0
- pyromt-2.4.1/srigram/raw/base/stars_revenue_status.py +43 -0
- pyromt-2.4.1/srigram/raw/base/stars_subscription.py +43 -0
- pyromt-2.4.1/srigram/raw/base/stars_subscription_pricing.py +43 -0
- pyromt-2.4.1/srigram/raw/base/stars_topup_option.py +53 -0
- pyromt-2.4.1/srigram/raw/base/stars_transaction.py +43 -0
- pyromt-2.4.1/srigram/raw/base/stars_transaction_peer.py +50 -0
- pyromt-2.4.1/srigram/raw/base/stats/__init__.py +19 -0
- pyromt-2.4.1/srigram/raw/base/stats/broadcast_stats.py +53 -0
- pyromt-2.4.1/srigram/raw/base/stats/megagroup_stats.py +53 -0
- pyromt-2.4.1/srigram/raw/base/stats/message_stats.py +53 -0
- pyromt-2.4.1/srigram/raw/base/stats/public_forwards.py +54 -0
- pyromt-2.4.1/srigram/raw/base/stats/story_stats.py +53 -0
- pyromt-2.4.1/srigram/raw/base/stats_abs_value_and_prev.py +43 -0
- pyromt-2.4.1/srigram/raw/base/stats_date_range_days.py +43 -0
- pyromt-2.4.1/srigram/raw/base/stats_graph.py +55 -0
- pyromt-2.4.1/srigram/raw/base/stats_group_top_admin.py +43 -0
- pyromt-2.4.1/srigram/raw/base/stats_group_top_inviter.py +43 -0
- pyromt-2.4.1/srigram/raw/base/stats_group_top_poster.py +43 -0
- pyromt-2.4.1/srigram/raw/base/stats_percent_value.py +43 -0
- pyromt-2.4.1/srigram/raw/base/stats_url.py +43 -0
- pyromt-2.4.1/srigram/raw/base/sticker_keyword.py +43 -0
- pyromt-2.4.1/srigram/raw/base/sticker_pack.py +43 -0
- pyromt-2.4.1/srigram/raw/base/sticker_set.py +43 -0
- pyromt-2.4.1/srigram/raw/base/sticker_set_covered.py +56 -0
- pyromt-2.4.1/srigram/raw/base/stickers/__init__.py +15 -0
- pyromt-2.4.1/srigram/raw/base/stickers/suggested_short_name.py +53 -0
- pyromt-2.4.1/srigram/raw/base/storage/__init__.py +15 -0
- pyromt-2.4.1/srigram/raw/base/storage/file_type.py +52 -0
- pyromt-2.4.1/srigram/raw/base/stories/__init__.py +23 -0
- pyromt-2.4.1/srigram/raw/base/stories/albums.py +54 -0
- pyromt-2.4.1/srigram/raw/base/stories/all_stories.py +54 -0
- pyromt-2.4.1/srigram/raw/base/stories/can_send_story_count.py +53 -0
- pyromt-2.4.1/srigram/raw/base/stories/found_stories.py +53 -0
- pyromt-2.4.1/srigram/raw/base/stories/peer_stories.py +53 -0
- pyromt-2.4.1/srigram/raw/base/stories/stories.py +56 -0
- pyromt-2.4.1/srigram/raw/base/stories/story_reactions_list.py +53 -0
- pyromt-2.4.1/srigram/raw/base/stories/story_views.py +53 -0
- pyromt-2.4.1/srigram/raw/base/stories/story_views_list.py +53 -0
- pyromt-2.4.1/srigram/raw/base/stories_stealth_mode.py +43 -0
- pyromt-2.4.1/srigram/raw/base/story_album.py +54 -0
- pyromt-2.4.1/srigram/raw/base/story_fwd_header.py +43 -0
- pyromt-2.4.1/srigram/raw/base/story_item.py +45 -0
- pyromt-2.4.1/srigram/raw/base/story_reaction.py +45 -0
- pyromt-2.4.1/srigram/raw/base/story_view.py +45 -0
- pyromt-2.4.1/srigram/raw/base/story_views.py +43 -0
- pyromt-2.4.1/srigram/raw/base/suggested_post.py +43 -0
- pyromt-2.4.1/srigram/raw/base/text_with_entities.py +53 -0
- pyromt-2.4.1/srigram/raw/base/theme.py +55 -0
- pyromt-2.4.1/srigram/raw/base/theme_settings.py +43 -0
- pyromt-2.4.1/srigram/raw/base/timezone.py +43 -0
- pyromt-2.4.1/srigram/raw/base/todo_completion.py +43 -0
- pyromt-2.4.1/srigram/raw/base/todo_item.py +43 -0
- pyromt-2.4.1/srigram/raw/base/todo_list.py +43 -0
- pyromt-2.4.1/srigram/raw/base/top_peer.py +43 -0
- pyromt-2.4.1/srigram/raw/base/top_peer_category.py +51 -0
- pyromt-2.4.1/srigram/raw/base/top_peer_category_peers.py +43 -0
- pyromt-2.4.1/srigram/raw/base/true_.py +43 -0
- pyromt-2.4.1/srigram/raw/base/update.py +194 -0
- pyromt-2.4.1/srigram/raw/base/updates/__init__.py +17 -0
- pyromt-2.4.1/srigram/raw/base/updates/channel_difference.py +55 -0
- pyromt-2.4.1/srigram/raw/base/updates/difference.py +56 -0
- pyromt-2.4.1/srigram/raw/base/updates/state.py +53 -0
- pyromt-2.4.1/srigram/raw/base/updates_t.py +185 -0
- pyromt-2.4.1/srigram/raw/base/upload/__init__.py +17 -0
- pyromt-2.4.1/srigram/raw/base/upload/cdn_file.py +54 -0
- pyromt-2.4.1/srigram/raw/base/upload/file.py +54 -0
- pyromt-2.4.1/srigram/raw/base/upload/web_file.py +53 -0
- pyromt-2.4.1/srigram/raw/base/url_auth_result.py +56 -0
- pyromt-2.4.1/srigram/raw/base/user.py +61 -0
- pyromt-2.4.1/srigram/raw/base/user_full.py +43 -0
- pyromt-2.4.1/srigram/raw/base/user_profile_photo.py +44 -0
- pyromt-2.4.1/srigram/raw/base/user_status.py +48 -0
- pyromt-2.4.1/srigram/raw/base/username.py +43 -0
- pyromt-2.4.1/srigram/raw/base/users/__init__.py +17 -0
- pyromt-2.4.1/srigram/raw/base/users/saved_music.py +55 -0
- pyromt-2.4.1/srigram/raw/base/users/user_full.py +53 -0
- pyromt-2.4.1/srigram/raw/base/users/users.py +54 -0
- pyromt-2.4.1/srigram/raw/base/video_size.py +45 -0
- pyromt-2.4.1/srigram/raw/base/wall_paper.py +56 -0
- pyromt-2.4.1/srigram/raw/base/wall_paper_settings.py +43 -0
- pyromt-2.4.1/srigram/raw/base/web_authorization.py +43 -0
- pyromt-2.4.1/srigram/raw/base/web_document.py +44 -0
- pyromt-2.4.1/srigram/raw/base/web_page.py +46 -0
- pyromt-2.4.1/srigram/raw/base/web_page_attribute.py +48 -0
- pyromt-2.4.1/srigram/raw/base/web_view_message_sent.py +53 -0
- pyromt-2.4.1/srigram/raw/base/web_view_result.py +56 -0
- pyromt-2.4.1/srigram/raw/functions/__init__.py +36 -0
- pyromt-2.4.1/srigram/raw/functions/account/__init__.py +137 -0
- pyromt-2.4.1/srigram/raw/functions/account/accept_authorization.py +94 -0
- pyromt-2.4.1/srigram/raw/functions/account/cancel_password_email.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/change_authorization_settings.py +88 -0
- pyromt-2.4.1/srigram/raw/functions/account/change_phone.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/account/check_username.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/clear_recent_emoji_statuses.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/confirm_password_email.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/confirm_phone.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/create_business_chat_link.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/create_theme.py +92 -0
- pyromt-2.4.1/srigram/raw/functions/account/decline_password_reset.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/delete_account.py +74 -0
- pyromt-2.4.1/srigram/raw/functions/account/delete_auto_save_exceptions.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/delete_business_chat_link.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/delete_passkey.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/delete_secure_value.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/disable_peer_connected_bot.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/edit_business_chat_link.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/finish_takeout_session.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_account_ttl.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_all_secure_values.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_authorization_form.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_authorizations.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_auto_download_settings.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_auto_save_settings.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_bot_business_connection.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_business_chat_links.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_channel_default_emoji_statuses.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_channel_restricted_status_emojis.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_chat_themes.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_collectible_emoji_statuses.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_connected_bots.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_contact_sign_up_notification.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_content_settings.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_default_background_emojis.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_default_emoji_statuses.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_default_group_photo_emojis.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_default_profile_photo_emojis.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_global_privacy_settings.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_multi_wall_papers.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_notify_exceptions.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_notify_settings.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_paid_messages_revenue.py +74 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_passkeys.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_password.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_password_settings.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_privacy.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_reactions_notify_settings.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_recent_emoji_statuses.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_saved_music_ids.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_saved_ringtones.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_secure_value.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_theme.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_themes.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_tmp_password.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_unique_gift_chat_themes.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_wall_paper.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_wall_papers.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/get_web_authorizations.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/init_passkey_registration.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/init_takeout_session.py +101 -0
- pyromt-2.4.1/srigram/raw/functions/account/install_theme.py +91 -0
- pyromt-2.4.1/srigram/raw/functions/account/install_wall_paper.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/invalidate_sign_in_codes.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/register_device.py +102 -0
- pyromt-2.4.1/srigram/raw/functions/account/register_passkey.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/reorder_usernames.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/report_peer.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/account/report_profile_photo.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/account/resend_password_email.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/reset_authorization.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/reset_notify_settings.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/reset_password.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/reset_wall_papers.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/reset_web_authorization.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/reset_web_authorizations.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/account/resolve_business_chat_link.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/save_auto_download_settings.py +76 -0
- pyromt-2.4.1/srigram/raw/functions/account/save_auto_save_settings.py +92 -0
- pyromt-2.4.1/srigram/raw/functions/account/save_music.py +80 -0
- pyromt-2.4.1/srigram/raw/functions/account/save_ringtone.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/save_secure_value.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/save_theme.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/save_wall_paper.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/account/send_change_phone_code.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/send_confirm_phone_code.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/send_verify_email_code.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/send_verify_phone_code.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/set_account_ttl.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/set_authorization_ttl.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/set_contact_sign_up_notification.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/set_content_settings.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/set_global_privacy_settings.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/set_main_profile_tab.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/set_privacy.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/set_reactions_notify_settings.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/toggle_connected_bot_paused.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/toggle_no_paid_messages_exception.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/account/toggle_sponsored_messages.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/toggle_username.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/unregister_device.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_birthday.py +66 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_business_away_message.py +66 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_business_greeting_message.py +66 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_business_intro.py +66 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_business_location.py +75 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_business_work_hours.py +66 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_color.py +72 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_connected_bot.py +88 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_device_locked.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_emoji_status.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_notify_settings.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_password_settings.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_personal_channel.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_profile.py +83 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_status.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_theme.py +110 -0
- pyromt-2.4.1/srigram/raw/functions/account/update_username.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/account/upload_ringtone.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/account/upload_theme.py +90 -0
- pyromt-2.4.1/srigram/raw/functions/account/upload_wall_paper.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/account/verify_email.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/account/verify_phone.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/auth/__init__.py +40 -0
- pyromt-2.4.1/srigram/raw/functions/auth/accept_login_token.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/auth/bind_temp_auth_key.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/auth/cancel_code.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/auth/check_paid_auth.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/auth/check_password.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/auth/check_recovery_password.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/auth/drop_temp_auth_keys.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/auth/export_authorization.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/auth/export_login_token.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/auth/finish_passkey_login.py +82 -0
- pyromt-2.4.1/srigram/raw/functions/auth/import_authorization.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/auth/import_bot_authorization.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/auth/import_login_token.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/auth/import_web_token_authorization.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/auth/init_passkey_login.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/auth/log_out.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/auth/recover_password.py +74 -0
- pyromt-2.4.1/srigram/raw/functions/auth/report_missing_code.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/auth/request_firebase_sms.py +99 -0
- pyromt-2.4.1/srigram/raw/functions/auth/request_password_recovery.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/auth/resend_code.py +81 -0
- pyromt-2.4.1/srigram/raw/functions/auth/reset_authorizations.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/auth/reset_login_email.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/auth/send_code.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/auth/sign_in.py +91 -0
- pyromt-2.4.1/srigram/raw/functions/auth/sign_up.py +94 -0
- pyromt-2.4.1/srigram/raw/functions/bots/__init__.py +44 -0
- pyromt-2.4.1/srigram/raw/functions/bots/add_preview_media.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/bots/allow_send_message.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/bots/answer_webhook_json_query.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/bots/can_send_message.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/bots/check_download_file_params.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/bots/delete_preview_media.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/bots/edit_preview_media.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/bots/get_admined_bots.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/bots/get_bot_commands.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/bots/get_bot_info.py +74 -0
- pyromt-2.4.1/srigram/raw/functions/bots/get_bot_menu_button.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/bots/get_bot_recommendations.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/bots/get_popular_app_bots.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/bots/get_preview_info.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/bots/get_preview_medias.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/bots/invoke_web_view_custom_method.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/bots/reorder_preview_medias.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/bots/reorder_usernames.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/bots/reset_bot_commands.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/bots/send_custom_request.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/bots/set_bot_commands.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/bots/set_bot_group_default_admin_rights.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/bots/set_bot_info.py +101 -0
- pyromt-2.4.1/srigram/raw/functions/bots/set_bot_menu_button.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/bots/set_custom_verification.py +89 -0
- pyromt-2.4.1/srigram/raw/functions/bots/toggle_user_emoji_status_permission.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/bots/toggle_username.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/bots/update_star_ref_program.py +81 -0
- pyromt-2.4.1/srigram/raw/functions/bots/update_user_emoji_status.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/__init__.py +74 -0
- pyromt-2.4.1/srigram/raw/functions/channels/check_search_posts_flood.py +65 -0
- pyromt-2.4.1/srigram/raw/functions/channels/check_username.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/convert_to_gigagroup.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/channels/create_channel.py +124 -0
- pyromt-2.4.1/srigram/raw/functions/channels/deactivate_all_usernames.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/channels/delete_channel.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/channels/delete_history.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/channels/delete_messages.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/delete_participant_history.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/edit_admin.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/channels/edit_banned.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/channels/edit_creator.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/channels/edit_location.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/channels/edit_photo.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/edit_title.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/export_message_link.py +84 -0
- pyromt-2.4.1/srigram/raw/functions/channels/get_admin_log.py +116 -0
- pyromt-2.4.1/srigram/raw/functions/channels/get_admined_public_channels.py +74 -0
- pyromt-2.4.1/srigram/raw/functions/channels/get_channel_recommendations.py +66 -0
- pyromt-2.4.1/srigram/raw/functions/channels/get_channels.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/channels/get_full_channel.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/channels/get_future_creator_after_leave.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/channels/get_groups_for_discussion.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/channels/get_inactive_channels.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/channels/get_left_channels.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/channels/get_message_author.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/get_messages.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/get_participant.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/get_participants.py +94 -0
- pyromt-2.4.1/srigram/raw/functions/channels/get_send_as.py +76 -0
- pyromt-2.4.1/srigram/raw/functions/channels/invite_to_channel.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/join_channel.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/channels/leave_channel.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/channels/read_history.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/read_message_contents.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/reorder_usernames.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/report_anti_spam_false_positive.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/report_spam.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/channels/restrict_sponsored_messages.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/search_posts.py +115 -0
- pyromt-2.4.1/srigram/raw/functions/channels/set_boosts_to_unblock_restrictions.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/set_discussion_group.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/set_emoji_stickers.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/set_main_profile_tab.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/set_stickers.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/toggle_anti_spam.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/toggle_autotranslation.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/toggle_forum.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/channels/toggle_join_request.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/toggle_join_to_send.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/toggle_participants_hidden.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/toggle_pre_history_hidden.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/toggle_signatures.py +76 -0
- pyromt-2.4.1/srigram/raw/functions/channels/toggle_slow_mode.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/toggle_username.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/channels/toggle_view_forum_as_messages.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/update_color.py +88 -0
- pyromt-2.4.1/srigram/raw/functions/channels/update_emoji_status.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/channels/update_paid_messages_price.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/channels/update_username.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/chatlists/__init__.py +25 -0
- pyromt-2.4.1/srigram/raw/functions/chatlists/check_chatlist_invite.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/chatlists/delete_exported_invite.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/chatlists/edit_exported_invite.py +91 -0
- pyromt-2.4.1/srigram/raw/functions/chatlists/export_chatlist_invite.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/chatlists/get_chatlist_updates.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/chatlists/get_exported_invites.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/chatlists/get_leave_chatlist_suggestions.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/chatlists/hide_chatlist_updates.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/chatlists/join_chatlist_invite.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/chatlists/join_chatlist_updates.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/chatlists/leave_chatlist.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/__init__.py +42 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/accept_contact.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/add_contact.py +104 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/block.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/block_from_replies.py +82 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/delete_by_phones.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/delete_contacts.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/edit_close_friends.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/export_contact_token.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/get_birthdays.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/get_blocked.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/get_contact_i_ds.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/get_contacts.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/get_located.py +79 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/get_saved.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/get_sponsored_peers.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/get_statuses.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/get_top_peers.py +134 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/import_contact_token.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/import_contacts.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/reset_saved.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/reset_top_peer_rating.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/resolve_phone.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/resolve_username.py +73 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/search.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/set_blocked.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/toggle_top_peers.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/unblock.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/contacts/update_contact_note.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/contest/__init__.py +15 -0
- pyromt-2.4.1/srigram/raw/functions/contest/save_developer_info.py +94 -0
- pyromt-2.4.1/srigram/raw/functions/destroy_auth_key.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/destroy_session.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/folders/__init__.py +15 -0
- pyromt-2.4.1/srigram/raw/functions/folders/edit_peer_folders.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/fragment/__init__.py +15 -0
- pyromt-2.4.1/srigram/raw/functions/fragment/get_collectible_info.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/get_future_salts.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/help/__init__.py +39 -0
- pyromt-2.4.1/srigram/raw/functions/help/accept_terms_of_service.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/help/dismiss_suggestion.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/help/edit_user_info.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_app_config.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_app_update.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_cdn_config.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_config.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_countries_list.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_deep_link_info.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_invite_text.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_nearest_dc.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_passport_config.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_peer_colors.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_peer_profile_colors.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_premium_promo.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_promo_data.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_recent_me_urls.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_support.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_support_name.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_terms_of_service_update.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_timezones_list.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/help/get_user_info.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/help/hide_promo_data.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/help/save_app_log.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/help/set_bot_updates_status.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/init_connection.py +140 -0
- pyromt-2.4.1/srigram/raw/functions/invoke_after_msg.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/invoke_after_msgs.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/invoke_with_apns_secret.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/invoke_with_business_connection.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/invoke_with_google_play_integrity.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/invoke_with_layer.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/invoke_with_messages_range.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/invoke_with_re_captcha.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/invoke_with_takeout.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/invoke_without_updates.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/langpack/__init__.py +19 -0
- pyromt-2.4.1/srigram/raw/functions/langpack/get_difference.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/langpack/get_lang_pack.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/langpack/get_language.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/langpack/get_languages.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/langpack/get_strings.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/__init__.py +253 -0
- pyromt-2.4.1/srigram/raw/functions/messages/accept_encryption.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/accept_url_auth.py +105 -0
- pyromt-2.4.1/srigram/raw/functions/messages/add_chat_user.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/append_todo_list.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/check_chat_invite.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/check_history_import.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/check_history_import_peer.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/check_quick_reply_shortcut.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/clear_all_drafts.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/messages/clear_recent_reactions.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/messages/clear_recent_stickers.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/click_sponsored_message.py +76 -0
- pyromt-2.4.1/srigram/raw/functions/messages/create_chat.py +81 -0
- pyromt-2.4.1/srigram/raw/functions/messages/create_forum_topic.py +114 -0
- pyromt-2.4.1/srigram/raw/functions/messages/delete_chat.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/delete_chat_user.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/delete_exported_chat_invite.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/delete_fact_check.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/delete_history.py +102 -0
- pyromt-2.4.1/srigram/raw/functions/messages/delete_messages.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/delete_phone_call_history.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/delete_quick_reply_messages.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/delete_quick_reply_shortcut.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/delete_revoked_exported_chat_invites.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/delete_saved_history.py +100 -0
- pyromt-2.4.1/srigram/raw/functions/messages/delete_scheduled_messages.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/delete_topic_history.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/discard_encryption.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/edit_chat_about.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/edit_chat_admin.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/edit_chat_default_banned_rights.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/edit_chat_photo.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/edit_chat_title.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/edit_exported_chat_invite.py +114 -0
- pyromt-2.4.1/srigram/raw/functions/messages/edit_fact_check.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/edit_forum_topic.py +108 -0
- pyromt-2.4.1/srigram/raw/functions/messages/edit_inline_bot_message.py +115 -0
- pyromt-2.4.1/srigram/raw/functions/messages/edit_message.py +150 -0
- pyromt-2.4.1/srigram/raw/functions/messages/edit_quick_reply_shortcut.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/export_chat_invite.py +113 -0
- pyromt-2.4.1/srigram/raw/functions/messages/fave_sticker.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/forward_messages.py +224 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_admins_with_invites.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_all_drafts.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_all_stickers.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_archived_stickers.py +84 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_attach_menu_bot.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_attach_menu_bots.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_attached_stickers.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_available_effects.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_available_reactions.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_bot_app.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_bot_callback_answer.py +97 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_chat_invite_importers.py +118 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_chats.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_common_chats.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_custom_emoji_documents.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_default_history_ttl.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_default_tag_reactions.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_dh_config.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_dialog_filters.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_dialog_unread_marks.py +66 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_dialogs.py +111 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_discussion_message.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_document_by_hash.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_game_info.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_groups.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_keywords.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_keywords_difference.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_keywords_languages.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_profile_photo_groups.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_status_groups.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_sticker_groups.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_stickers.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_url.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_exported_chat_invite.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_exported_chat_invites.py +104 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_extended_media.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_fact_check.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_faved_stickers.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_featured_emoji_stickers.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_featured_stickers.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_forum_topics.py +105 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_forum_topics_by_id.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_full_chat.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_game_high_scores.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_history.py +118 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_inline_bot_results.py +98 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_inline_game_high_scores.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_mask_stickers.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_message_edit_data.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_message_reactions_list.py +99 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_message_read_participants.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_messages.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_messages_reactions.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_messages_views.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_my_stickers.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_old_featured_stickers.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_onlines.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_outbox_read_date.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_paid_reaction_privacy.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_peer_dialogs.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_peer_settings.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_pinned_dialogs.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_pinned_saved_dialogs.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_poll_results.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_poll_votes.py +98 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_prepared_inline_message.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_quick_replies.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_quick_reply_messages.py +82 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_recent_locations.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_recent_reactions.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_recent_stickers.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_replies.py +126 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_saved_dialogs.py +112 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_saved_dialogs_by_id.py +74 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_saved_gifs.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_saved_history.py +130 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_saved_reaction_tags.py +74 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_scheduled_history.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_scheduled_messages.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_search_counters.py +91 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_search_results_calendar.py +98 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_search_results_positions.py +98 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_split_ranges.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_sponsored_messages.py +73 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_sticker_set.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_stickers.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_suggested_dialog_filters.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_top_reactions.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_unread_mentions.py +113 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_unread_reactions.py +123 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_web_page.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/get_web_page_preview.py +74 -0
- pyromt-2.4.1/srigram/raw/functions/messages/hide_all_chat_join_requests.py +79 -0
- pyromt-2.4.1/srigram/raw/functions/messages/hide_chat_join_request.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/hide_peer_settings_bar.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/import_chat_invite.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/init_history_import.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/install_sticker_set.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/mark_dialog_unread.py +80 -0
- pyromt-2.4.1/srigram/raw/functions/messages/migrate_chat.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/prolong_web_view.py +106 -0
- pyromt-2.4.1/srigram/raw/functions/messages/rate_transcribed_audio.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/messages/read_discussion.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/read_encrypted_history.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/read_featured_stickers.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/read_history.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/read_mentions.py +73 -0
- pyromt-2.4.1/srigram/raw/functions/messages/read_message_contents.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/read_reactions.py +83 -0
- pyromt-2.4.1/srigram/raw/functions/messages/read_saved_history.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/received_messages.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/received_queue.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/reorder_pinned_dialogs.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/reorder_pinned_forum_topics.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/reorder_pinned_saved_dialogs.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/reorder_quick_replies.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/reorder_sticker_sets.py +76 -0
- pyromt-2.4.1/srigram/raw/functions/messages/report.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/messages/report_encrypted_spam.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/report_messages_delivery.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/report_reaction.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/report_spam.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/report_sponsored_message.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/request_app_web_view.py +117 -0
- pyromt-2.4.1/srigram/raw/functions/messages/request_encryption.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/request_main_web_view.py +111 -0
- pyromt-2.4.1/srigram/raw/functions/messages/request_simple_web_view.py +124 -0
- pyromt-2.4.1/srigram/raw/functions/messages/request_url_auth.py +93 -0
- pyromt-2.4.1/srigram/raw/functions/messages/request_web_view.py +152 -0
- pyromt-2.4.1/srigram/raw/functions/messages/save_default_send_as.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/save_draft.py +133 -0
- pyromt-2.4.1/srigram/raw/functions/messages/save_gif.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/save_prepared_inline_message.py +82 -0
- pyromt-2.4.1/srigram/raw/functions/messages/save_recent_sticker.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/search.py +183 -0
- pyromt-2.4.1/srigram/raw/functions/messages/search_custom_emoji.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/search_emoji_sticker_sets.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/search_global.py +147 -0
- pyromt-2.4.1/srigram/raw/functions/messages/search_sent_media.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/search_sticker_sets.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/search_stickers.py +110 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_bot_requested_peer.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_encrypted.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_encrypted_file.py +94 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_encrypted_service.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_inline_bot_result.py +160 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_media.py +226 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_message.py +224 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_multi_media.py +171 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_paid_reaction.py +98 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_quick_reply_messages.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_reaction.py +94 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_scheduled_messages.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_screenshot_notification.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_vote.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_web_view_data.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/messages/send_web_view_result_message.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/set_bot_callback_answer.py +96 -0
- pyromt-2.4.1/srigram/raw/functions/messages/set_bot_precheckout_results.py +79 -0
- pyromt-2.4.1/srigram/raw/functions/messages/set_bot_shipping_results.py +83 -0
- pyromt-2.4.1/srigram/raw/functions/messages/set_chat_available_reactions.py +90 -0
- pyromt-2.4.1/srigram/raw/functions/messages/set_chat_theme.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/set_chat_wall_paper.py +105 -0
- pyromt-2.4.1/srigram/raw/functions/messages/set_default_history_ttl.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/set_default_reaction.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/set_encrypted_typing.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/set_game_score.py +100 -0
- pyromt-2.4.1/srigram/raw/functions/messages/set_history_ttl.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/set_inline_bot_results.py +121 -0
- pyromt-2.4.1/srigram/raw/functions/messages/set_inline_game_score.py +92 -0
- pyromt-2.4.1/srigram/raw/functions/messages/set_typing.py +81 -0
- pyromt-2.4.1/srigram/raw/functions/messages/start_bot.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/messages/start_history_import.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/summarize_text.py +81 -0
- pyromt-2.4.1/srigram/raw/functions/messages/toggle_bot_in_attach_menu.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/toggle_dialog_filter_tags.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/toggle_dialog_pin.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/toggle_no_forwards.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/toggle_paid_reaction_privacy.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/toggle_peer_translations.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/toggle_saved_dialog_pin.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/toggle_sticker_sets.py +82 -0
- pyromt-2.4.1/srigram/raw/functions/messages/toggle_suggested_post_approval.py +96 -0
- pyromt-2.4.1/srigram/raw/functions/messages/toggle_todo_completed.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/messages/transcribe_audio.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/translate_text.py +94 -0
- pyromt-2.4.1/srigram/raw/functions/messages/uninstall_sticker_set.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/unpin_all_messages.py +83 -0
- pyromt-2.4.1/srigram/raw/functions/messages/update_dialog_filter.py +74 -0
- pyromt-2.4.1/srigram/raw/functions/messages/update_dialog_filters_order.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/messages/update_pinned_forum_topic.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/messages/update_pinned_message.py +90 -0
- pyromt-2.4.1/srigram/raw/functions/messages/update_saved_reaction_tag.py +73 -0
- pyromt-2.4.1/srigram/raw/functions/messages/upload_encrypted_file.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/messages/upload_imported_media.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/messages/upload_media.py +81 -0
- pyromt-2.4.1/srigram/raw/functions/messages/view_sponsored_message.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/__init__.py +79 -0
- pyromt-2.4.1/srigram/raw/functions/payments/apply_gift_code.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/assign_app_store_transaction.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/assign_play_market_transaction.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/bot_cancel_stars_subscription.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/payments/can_purchase_store.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/change_stars_subscription.py +81 -0
- pyromt-2.4.1/srigram/raw/functions/payments/check_can_send_gift.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/check_gift_code.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/clear_saved_info.py +68 -0
- pyromt-2.4.1/srigram/raw/functions/payments/connect_star_ref_bot.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/convert_star_gift.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/craft_star_gift.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/create_star_gift_collection.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/payments/delete_star_gift_collection.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/edit_connected_star_ref_bot.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/payments/export_invoice.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/fulfill_stars_subscription.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_bank_card_data.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_connected_star_ref_bot.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_connected_star_ref_bots.py +90 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_craft_star_gifts.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_giveaway_info.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_payment_form.py +74 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_payment_receipt.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_premium_gift_code_options.py +66 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_resale_star_gifts.py +117 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_saved_info.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_saved_star_gift.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_saved_star_gifts.py +143 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_star_gift_active_auctions.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_star_gift_auction_acquired_gifts.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_star_gift_auction_state.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_star_gift_collections.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_star_gift_upgrade_attributes.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_star_gift_upgrade_preview.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_star_gift_withdrawal_url.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_star_gifts.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_stars_gift_options.py +66 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_stars_giveaway_options.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_stars_revenue_ads_account_url.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_stars_revenue_stats.py +76 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_stars_revenue_withdrawal_url.py +87 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_stars_status.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_stars_subscriptions.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_stars_topup_options.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_stars_transactions.py +113 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_stars_transactions_by_id.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_suggested_star_ref_bots.py +92 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_unique_star_gift.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/get_unique_star_gift_value_info.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/payments/launch_prepaid_giveaway.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/payments/refund_stars_charge.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/reorder_star_gift_collections.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/resolve_star_gift_offer.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/save_star_gift.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/send_payment_form.py +107 -0
- pyromt-2.4.1/srigram/raw/functions/payments/send_star_gift_offer.py +105 -0
- pyromt-2.4.1/srigram/raw/functions/payments/send_stars_form.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/toggle_chat_star_gift_notifications.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/toggle_star_gifts_pinned_to_top.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/transfer_star_gift.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/update_star_gift_collection.py +111 -0
- pyromt-2.4.1/srigram/raw/functions/payments/update_star_gift_price.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/upgrade_star_gift.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/payments/validate_requested_info.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/phone/__init__.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/phone/accept_call.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/phone/check_group_call.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/phone/confirm_call.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/phone/create_conference_call.py +110 -0
- pyromt-2.4.1/srigram/raw/functions/phone/create_group_call.py +96 -0
- pyromt-2.4.1/srigram/raw/functions/phone/decline_conference_call_invite.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/phone/delete_conference_call_participants.py +92 -0
- pyromt-2.4.1/srigram/raw/functions/phone/delete_group_call_messages.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/phone/delete_group_call_participant_messages.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/phone/discard_call.py +94 -0
- pyromt-2.4.1/srigram/raw/functions/phone/discard_group_call.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/phone/edit_group_call_participant.py +126 -0
- pyromt-2.4.1/srigram/raw/functions/phone/edit_group_call_title.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/phone/export_group_call_invite.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/phone/get_call_config.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/phone/get_group_call.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/phone/get_group_call_chain_blocks.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/phone/get_group_call_join_as.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/phone/get_group_call_stars.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/phone/get_group_call_stream_channels.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/phone/get_group_call_stream_rtmp_url.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/phone/get_group_participants.py +94 -0
- pyromt-2.4.1/srigram/raw/functions/phone/invite_conference_call_participant.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/phone/invite_to_group_call.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/phone/join_group_call.py +119 -0
- pyromt-2.4.1/srigram/raw/functions/phone/join_group_call_presentation.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/phone/leave_group_call.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/phone/leave_group_call_presentation.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/phone/received_call.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/phone/request_call.py +94 -0
- pyromt-2.4.1/srigram/raw/functions/phone/save_call_debug.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/phone/save_call_log.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/phone/save_default_group_call_join_as.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/phone/save_default_send_as.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/phone/send_conference_call_broadcast.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/phone/send_group_call_encrypted_message.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/phone/send_group_call_message.py +99 -0
- pyromt-2.4.1/srigram/raw/functions/phone/send_signaling_data.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/phone/set_call_rating.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/phone/start_scheduled_group_call.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/phone/toggle_group_call_record.py +94 -0
- pyromt-2.4.1/srigram/raw/functions/phone/toggle_group_call_settings.py +97 -0
- pyromt-2.4.1/srigram/raw/functions/phone/toggle_group_call_start_subscription.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/photos/__init__.py +19 -0
- pyromt-2.4.1/srigram/raw/functions/photos/delete_photos.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/photos/get_user_photos.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/photos/update_profile_photo.py +80 -0
- pyromt-2.4.1/srigram/raw/functions/photos/upload_contact_profile_photo.py +115 -0
- pyromt-2.4.1/srigram/raw/functions/photos/upload_profile_photo.py +111 -0
- pyromt-2.4.1/srigram/raw/functions/ping.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/ping_delay_disconnect.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/premium/__init__.py +19 -0
- pyromt-2.4.1/srigram/raw/functions/premium/apply_boost.py +74 -0
- pyromt-2.4.1/srigram/raw/functions/premium/get_boosts_list.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/premium/get_boosts_status.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/premium/get_my_boosts.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/premium/get_user_boosts.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/req_dh_params.py +102 -0
- pyromt-2.4.1/srigram/raw/functions/req_pq.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/req_pq_multi.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/rpc_drop_answer.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/set_client_dh_params.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/smsjobs/__init__.py +21 -0
- pyromt-2.4.1/srigram/raw/functions/smsjobs/finish_job.py +73 -0
- pyromt-2.4.1/srigram/raw/functions/smsjobs/get_sms_job.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/smsjobs/get_status.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/smsjobs/is_eligible_to_join.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/smsjobs/join.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/smsjobs/leave.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/smsjobs/update_settings.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/stats/__init__.py +21 -0
- pyromt-2.4.1/srigram/raw/functions/stats/get_broadcast_stats.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stats/get_megagroup_stats.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stats/get_message_public_forwards.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/stats/get_message_stats.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/stats/get_story_public_forwards.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/stats/get_story_stats.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/stats/load_async_graph.py +73 -0
- pyromt-2.4.1/srigram/raw/functions/stickers/__init__.py +25 -0
- pyromt-2.4.1/srigram/raw/functions/stickers/add_sticker_to_set.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stickers/change_sticker.py +92 -0
- pyromt-2.4.1/srigram/raw/functions/stickers/change_sticker_position.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stickers/check_short_name.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/stickers/create_sticker_set.py +125 -0
- pyromt-2.4.1/srigram/raw/functions/stickers/delete_sticker_set.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/stickers/remove_sticker_from_set.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/stickers/rename_sticker_set.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stickers/replace_sticker.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stickers/set_sticker_set_thumb.py +83 -0
- pyromt-2.4.1/srigram/raw/functions/stickers/suggest_short_name.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/stories/__init__.py +47 -0
- pyromt-2.4.1/srigram/raw/functions/stories/activate_stealth_mode.py +68 -0
- pyromt-2.4.1/srigram/raw/functions/stories/can_send_story.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/stories/create_album.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/stories/delete_album.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stories/delete_stories.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stories/edit_story.py +121 -0
- pyromt-2.4.1/srigram/raw/functions/stories/export_story_link.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stories/get_album_stories.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/stories/get_albums.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stories/get_all_read_peer_stories.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/stories/get_all_stories.py +77 -0
- pyromt-2.4.1/srigram/raw/functions/stories/get_chats_to_send.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/stories/get_peer_max_i_ds.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/stories/get_peer_stories.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/stories/get_pinned_stories.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/stories/get_stories_archive.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/stories/get_stories_by_id.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stories/get_stories_views.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stories/get_story_reactions_list.py +105 -0
- pyromt-2.4.1/srigram/raw/functions/stories/get_story_views_list.py +115 -0
- pyromt-2.4.1/srigram/raw/functions/stories/increment_story_views.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stories/read_stories.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stories/reorder_albums.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stories/report.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/stories/search_posts.py +101 -0
- pyromt-2.4.1/srigram/raw/functions/stories/send_reaction.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/stories/send_story.py +173 -0
- pyromt-2.4.1/srigram/raw/functions/stories/start_live.py +135 -0
- pyromt-2.4.1/srigram/raw/functions/stories/toggle_all_stories_hidden.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/stories/toggle_peer_stories_hidden.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stories/toggle_pinned.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/stories/toggle_pinned_to_top.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/stories/update_album.py +111 -0
- pyromt-2.4.1/srigram/raw/functions/updates/__init__.py +17 -0
- pyromt-2.4.1/srigram/raw/functions/updates/get_channel_difference.py +94 -0
- pyromt-2.4.1/srigram/raw/functions/updates/get_difference.py +107 -0
- pyromt-2.4.1/srigram/raw/functions/updates/get_state.py +57 -0
- pyromt-2.4.1/srigram/raw/functions/upload/__init__.py +22 -0
- pyromt-2.4.1/srigram/raw/functions/upload/get_cdn_file.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/upload/get_cdn_file_hashes.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/upload/get_file.py +92 -0
- pyromt-2.4.1/srigram/raw/functions/upload/get_file_hashes.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/upload/get_web_file.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/upload/reupload_cdn_file.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/upload/save_big_file_part.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/upload/save_file_part.py +78 -0
- pyromt-2.4.1/srigram/raw/functions/users/__init__.py +21 -0
- pyromt-2.4.1/srigram/raw/functions/users/get_full_user.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/users/get_requirements_to_contact.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/users/get_saved_music.py +86 -0
- pyromt-2.4.1/srigram/raw/functions/users/get_saved_music_by_id.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/users/get_users.py +62 -0
- pyromt-2.4.1/srigram/raw/functions/users/set_secure_value_errors.py +70 -0
- pyromt-2.4.1/srigram/raw/functions/users/suggest_birthday.py +70 -0
- pyromt-2.4.1/srigram/raw/types/__init__.py +1278 -0
- pyromt-2.4.1/srigram/raw/types/access_point_rule.py +78 -0
- pyromt-2.4.1/srigram/raw/types/account/__init__.py +52 -0
- pyromt-2.4.1/srigram/raw/types/account/authorization_form.py +106 -0
- pyromt-2.4.1/srigram/raw/types/account/authorizations.py +79 -0
- pyromt-2.4.1/srigram/raw/types/account/auto_download_settings.py +87 -0
- pyromt-2.4.1/srigram/raw/types/account/auto_save_settings.py +111 -0
- pyromt-2.4.1/srigram/raw/types/account/business_chat_links.py +87 -0
- pyromt-2.4.1/srigram/raw/types/account/chat_themes.py +106 -0
- pyromt-2.4.1/srigram/raw/types/account/chat_themes_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/account/connected_bots.py +79 -0
- pyromt-2.4.1/srigram/raw/types/account/content_settings.py +77 -0
- pyromt-2.4.1/srigram/raw/types/account/email_verified.py +71 -0
- pyromt-2.4.1/srigram/raw/types/account/email_verified_login.py +79 -0
- pyromt-2.4.1/srigram/raw/types/account/emoji_statuses.py +82 -0
- pyromt-2.4.1/srigram/raw/types/account/emoji_statuses_not_modified.py +69 -0
- pyromt-2.4.1/srigram/raw/types/account/paid_messages_revenue.py +71 -0
- pyromt-2.4.1/srigram/raw/types/account/passkey_registration_options.py +71 -0
- pyromt-2.4.1/srigram/raw/types/account/passkeys.py +71 -0
- pyromt-2.4.1/srigram/raw/types/account/password.py +171 -0
- pyromt-2.4.1/srigram/raw/types/account/password_input_settings.py +103 -0
- pyromt-2.4.1/srigram/raw/types/account/password_settings.py +84 -0
- pyromt-2.4.1/srigram/raw/types/account/privacy_rules.py +88 -0
- pyromt-2.4.1/srigram/raw/types/account/reset_password_failed_wait.py +71 -0
- pyromt-2.4.1/srigram/raw/types/account/reset_password_ok.py +66 -0
- pyromt-2.4.1/srigram/raw/types/account/reset_password_requested_wait.py +71 -0
- pyromt-2.4.1/srigram/raw/types/account/resolved_business_chat_links.py +107 -0
- pyromt-2.4.1/srigram/raw/types/account/saved_music_ids.py +71 -0
- pyromt-2.4.1/srigram/raw/types/account/saved_music_ids_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/account/saved_ringtone.py +66 -0
- pyromt-2.4.1/srigram/raw/types/account/saved_ringtone_converted.py +71 -0
- pyromt-2.4.1/srigram/raw/types/account/saved_ringtones.py +79 -0
- pyromt-2.4.1/srigram/raw/types/account/saved_ringtones_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/account/sent_email_code.py +79 -0
- pyromt-2.4.1/srigram/raw/types/account/takeout.py +71 -0
- pyromt-2.4.1/srigram/raw/types/account/themes.py +80 -0
- pyromt-2.4.1/srigram/raw/types/account/themes_not_modified.py +67 -0
- pyromt-2.4.1/srigram/raw/types/account/tmp_password.py +79 -0
- pyromt-2.4.1/srigram/raw/types/account/wall_papers.py +79 -0
- pyromt-2.4.1/srigram/raw/types/account/wall_papers_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/account/web_authorizations.py +79 -0
- pyromt-2.4.1/srigram/raw/types/account_days_ttl.py +71 -0
- pyromt-2.4.1/srigram/raw/types/attach_menu_bot.py +126 -0
- pyromt-2.4.1/srigram/raw/types/attach_menu_bot_icon.py +82 -0
- pyromt-2.4.1/srigram/raw/types/attach_menu_bot_icon_color.py +70 -0
- pyromt-2.4.1/srigram/raw/types/attach_menu_bots.py +87 -0
- pyromt-2.4.1/srigram/raw/types/attach_menu_bots_bot.py +79 -0
- pyromt-2.4.1/srigram/raw/types/attach_menu_bots_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/attach_menu_peer_type_bot_pm.py +57 -0
- pyromt-2.4.1/srigram/raw/types/attach_menu_peer_type_broadcast.py +57 -0
- pyromt-2.4.1/srigram/raw/types/attach_menu_peer_type_chat.py +57 -0
- pyromt-2.4.1/srigram/raw/types/attach_menu_peer_type_pm.py +57 -0
- pyromt-2.4.1/srigram/raw/types/attach_menu_peer_type_same_bot_pm.py +57 -0
- pyromt-2.4.1/srigram/raw/types/auction_bid_level.py +78 -0
- pyromt-2.4.1/srigram/raw/types/auth/__init__.py +42 -0
- pyromt-2.4.1/srigram/raw/types/auth/authorization.py +113 -0
- pyromt-2.4.1/srigram/raw/types/auth/authorization_sign_up_required.py +82 -0
- pyromt-2.4.1/srigram/raw/types/auth/code_type_call.py +57 -0
- pyromt-2.4.1/srigram/raw/types/auth/code_type_flash_call.py +57 -0
- pyromt-2.4.1/srigram/raw/types/auth/code_type_fragment_sms.py +57 -0
- pyromt-2.4.1/srigram/raw/types/auth/code_type_missed_call.py +57 -0
- pyromt-2.4.1/srigram/raw/types/auth/code_type_sms.py +57 -0
- pyromt-2.4.1/srigram/raw/types/auth/exported_authorization.py +79 -0
- pyromt-2.4.1/srigram/raw/types/auth/logged_out.py +74 -0
- pyromt-2.4.1/srigram/raw/types/auth/login_token.py +80 -0
- pyromt-2.4.1/srigram/raw/types/auth/login_token_migrate_to.py +80 -0
- pyromt-2.4.1/srigram/raw/types/auth/login_token_success.py +72 -0
- pyromt-2.4.1/srigram/raw/types/auth/passkey_login_options.py +71 -0
- pyromt-2.4.1/srigram/raw/types/auth/password_recovery.py +71 -0
- pyromt-2.4.1/srigram/raw/types/auth/sent_code.py +106 -0
- pyromt-2.4.1/srigram/raw/types/auth/sent_code_payment_required.py +117 -0
- pyromt-2.4.1/srigram/raw/types/auth/sent_code_success.py +77 -0
- pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_app.py +62 -0
- pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_call.py +62 -0
- pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_email_code.py +102 -0
- pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_firebase_sms.py +109 -0
- pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_flash_call.py +62 -0
- pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_fragment_sms.py +70 -0
- pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_missed_call.py +70 -0
- pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_set_up_email_required.py +68 -0
- pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_sms.py +62 -0
- pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_sms_phrase.py +65 -0
- pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_sms_word.py +65 -0
- pyromt-2.4.1/srigram/raw/types/authorization.py +197 -0
- pyromt-2.4.1/srigram/raw/types/auto_download_settings.py +134 -0
- pyromt-2.4.1/srigram/raw/types/auto_save_exception.py +70 -0
- pyromt-2.4.1/srigram/raw/types/auto_save_settings.py +77 -0
- pyromt-2.4.1/srigram/raw/types/available_effect.py +104 -0
- pyromt-2.4.1/srigram/raw/types/available_reaction.py +144 -0
- pyromt-2.4.1/srigram/raw/types/bad_msg_notification.py +78 -0
- pyromt-2.4.1/srigram/raw/types/bad_server_salt.py +86 -0
- pyromt-2.4.1/srigram/raw/types/bank_card_open_url.py +70 -0
- pyromt-2.4.1/srigram/raw/types/base_theme_arctic.py +57 -0
- pyromt-2.4.1/srigram/raw/types/base_theme_classic.py +57 -0
- pyromt-2.4.1/srigram/raw/types/base_theme_day.py +57 -0
- pyromt-2.4.1/srigram/raw/types/base_theme_night.py +57 -0
- pyromt-2.4.1/srigram/raw/types/base_theme_tinted.py +57 -0
- pyromt-2.4.1/srigram/raw/types/bind_auth_key_inner.py +94 -0
- pyromt-2.4.1/srigram/raw/types/birthday.py +81 -0
- pyromt-2.4.1/srigram/raw/types/bool_false.py +267 -0
- pyromt-2.4.1/srigram/raw/types/bool_true.py +267 -0
- pyromt-2.4.1/srigram/raw/types/boost.py +143 -0
- pyromt-2.4.1/srigram/raw/types/bot_app.py +122 -0
- pyromt-2.4.1/srigram/raw/types/bot_app_not_modified.py +57 -0
- pyromt-2.4.1/srigram/raw/types/bot_app_settings.py +101 -0
- pyromt-2.4.1/srigram/raw/types/bot_business_connection.py +104 -0
- pyromt-2.4.1/srigram/raw/types/bot_command.py +79 -0
- pyromt-2.4.1/srigram/raw/types/bot_command_scope_chat_admins.py +57 -0
- pyromt-2.4.1/srigram/raw/types/bot_command_scope_chats.py +57 -0
- pyromt-2.4.1/srigram/raw/types/bot_command_scope_default.py +57 -0
- pyromt-2.4.1/srigram/raw/types/bot_command_scope_peer.py +62 -0
- pyromt-2.4.1/srigram/raw/types/bot_command_scope_peer_admins.py +62 -0
- pyromt-2.4.1/srigram/raw/types/bot_command_scope_peer_user.py +70 -0
- pyromt-2.4.1/srigram/raw/types/bot_command_scope_users.py +57 -0
- pyromt-2.4.1/srigram/raw/types/bot_info.py +149 -0
- pyromt-2.4.1/srigram/raw/types/bot_inline_media_result.py +118 -0
- pyromt-2.4.1/srigram/raw/types/bot_inline_message_media_auto.py +90 -0
- pyromt-2.4.1/srigram/raw/types/bot_inline_message_media_contact.py +98 -0
- pyromt-2.4.1/srigram/raw/types/bot_inline_message_media_geo.py +101 -0
- pyromt-2.4.1/srigram/raw/types/bot_inline_message_media_invoice.py +120 -0
- pyromt-2.4.1/srigram/raw/types/bot_inline_message_media_venue.py +114 -0
- pyromt-2.4.1/srigram/raw/types/bot_inline_message_media_web_page.py +122 -0
- pyromt-2.4.1/srigram/raw/types/bot_inline_message_text.py +96 -0
- pyromt-2.4.1/srigram/raw/types/bot_inline_result.py +127 -0
- pyromt-2.4.1/srigram/raw/types/bot_menu_button.py +79 -0
- pyromt-2.4.1/srigram/raw/types/bot_menu_button_commands.py +66 -0
- pyromt-2.4.1/srigram/raw/types/bot_menu_button_default.py +66 -0
- pyromt-2.4.1/srigram/raw/types/bot_preview_media.py +81 -0
- pyromt-2.4.1/srigram/raw/types/bot_verification.py +78 -0
- pyromt-2.4.1/srigram/raw/types/bot_verifier_settings.py +87 -0
- pyromt-2.4.1/srigram/raw/types/bots/__init__.py +17 -0
- pyromt-2.4.1/srigram/raw/types/bots/bot_info.py +87 -0
- pyromt-2.4.1/srigram/raw/types/bots/popular_app_bots.py +82 -0
- pyromt-2.4.1/srigram/raw/types/bots/preview_info.py +79 -0
- pyromt-2.4.1/srigram/raw/types/business_away_message.py +86 -0
- pyromt-2.4.1/srigram/raw/types/business_away_message_schedule_always.py +57 -0
- pyromt-2.4.1/srigram/raw/types/business_away_message_schedule_custom.py +70 -0
- pyromt-2.4.1/srigram/raw/types/business_away_message_schedule_outside_work_hours.py +57 -0
- pyromt-2.4.1/srigram/raw/types/business_bot_recipients.py +106 -0
- pyromt-2.4.1/srigram/raw/types/business_bot_rights.py +140 -0
- pyromt-2.4.1/srigram/raw/types/business_chat_link.py +109 -0
- pyromt-2.4.1/srigram/raw/types/business_greeting_message.py +78 -0
- pyromt-2.4.1/srigram/raw/types/business_intro.py +82 -0
- pyromt-2.4.1/srigram/raw/types/business_location.py +74 -0
- pyromt-2.4.1/srigram/raw/types/business_recipients.py +96 -0
- pyromt-2.4.1/srigram/raw/types/business_weekly_open.py +70 -0
- pyromt-2.4.1/srigram/raw/types/business_work_hours.py +78 -0
- pyromt-2.4.1/srigram/raw/types/cdn_config.py +71 -0
- pyromt-2.4.1/srigram/raw/types/cdn_public_key.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel.py +422 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event.py +86 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_about.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_available_reactions.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_emoji_status.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_history_ttl.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_linked_chat.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_location.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_peer_color.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_photo.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_sticker_set.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_title.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_username.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_usernames.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_wallpaper.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_create_topic.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_default_banned_rights.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_delete_message.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_delete_topic.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_discard_group_call.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_edit_message.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_edit_topic.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_exported_invite_delete.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_exported_invite_edit.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_invite.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_join.py +57 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_join_by_request.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_leave.py +57 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_mute.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_sub_extend.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_unmute.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_volume.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_pin_topic.py +76 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_send_message.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_start_group_call.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_stop_poll.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_autotranslation.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_forum.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_invites.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_signature_profiles.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_signatures.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_update_pinned.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_admin_log_events_filter.py +170 -0
- pyromt-2.4.1/srigram/raw/types/channel_forbidden.py +107 -0
- pyromt-2.4.1/srigram/raw/types/channel_full.py +596 -0
- pyromt-2.4.1/srigram/raw/types/channel_location.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_location_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/channel_messages_filter.py +70 -0
- pyromt-2.4.1/srigram/raw/types/channel_messages_filter_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/channel_participant.py +81 -0
- pyromt-2.4.1/srigram/raw/types/channel_participant_admin.py +118 -0
- pyromt-2.4.1/srigram/raw/types/channel_participant_banned.py +94 -0
- pyromt-2.4.1/srigram/raw/types/channel_participant_creator.py +81 -0
- pyromt-2.4.1/srigram/raw/types/channel_participant_left.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_participant_self.py +95 -0
- pyromt-2.4.1/srigram/raw/types/channel_participants_admins.py +57 -0
- pyromt-2.4.1/srigram/raw/types/channel_participants_banned.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_participants_bots.py +57 -0
- pyromt-2.4.1/srigram/raw/types/channel_participants_contacts.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_participants_kicked.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channel_participants_mentions.py +74 -0
- pyromt-2.4.1/srigram/raw/types/channel_participants_recent.py +57 -0
- pyromt-2.4.1/srigram/raw/types/channel_participants_search.py +62 -0
- pyromt-2.4.1/srigram/raw/types/channels/__init__.py +22 -0
- pyromt-2.4.1/srigram/raw/types/channels/admin_log_results.py +87 -0
- pyromt-2.4.1/srigram/raw/types/channels/channel_participant.py +87 -0
- pyromt-2.4.1/srigram/raw/types/channels/channel_participants.py +95 -0
- pyromt-2.4.1/srigram/raw/types/channels/channel_participants_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/channels/send_as_peers.py +87 -0
- pyromt-2.4.1/srigram/raw/types/channels/sponsored_message_report_result_ads_hidden.py +66 -0
- pyromt-2.4.1/srigram/raw/types/channels/sponsored_message_report_result_choose_option.py +79 -0
- pyromt-2.4.1/srigram/raw/types/channels/sponsored_message_report_result_reported.py +66 -0
- pyromt-2.4.1/srigram/raw/types/chat.py +170 -0
- pyromt-2.4.1/srigram/raw/types/chat_admin_rights.py +152 -0
- pyromt-2.4.1/srigram/raw/types/chat_admin_with_invites.py +78 -0
- pyromt-2.4.1/srigram/raw/types/chat_banned_rights.py +184 -0
- pyromt-2.4.1/srigram/raw/types/chat_empty.py +62 -0
- pyromt-2.4.1/srigram/raw/types/chat_forbidden.py +70 -0
- pyromt-2.4.1/srigram/raw/types/chat_full.py +230 -0
- pyromt-2.4.1/srigram/raw/types/chat_invite.py +199 -0
- pyromt-2.4.1/srigram/raw/types/chat_invite_already.py +71 -0
- pyromt-2.4.1/srigram/raw/types/chat_invite_exported.py +180 -0
- pyromt-2.4.1/srigram/raw/types/chat_invite_importer.py +102 -0
- pyromt-2.4.1/srigram/raw/types/chat_invite_peek.py +79 -0
- pyromt-2.4.1/srigram/raw/types/chat_invite_public_join_requests.py +66 -0
- pyromt-2.4.1/srigram/raw/types/chat_onlines.py +71 -0
- pyromt-2.4.1/srigram/raw/types/chat_participant.py +78 -0
- pyromt-2.4.1/srigram/raw/types/chat_participant_admin.py +78 -0
- pyromt-2.4.1/srigram/raw/types/chat_participant_creator.py +62 -0
- pyromt-2.4.1/srigram/raw/types/chat_participants.py +78 -0
- pyromt-2.4.1/srigram/raw/types/chat_participants_forbidden.py +74 -0
- pyromt-2.4.1/srigram/raw/types/chat_photo.py +87 -0
- pyromt-2.4.1/srigram/raw/types/chat_photo_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/chat_reactions_all.py +62 -0
- pyromt-2.4.1/srigram/raw/types/chat_reactions_none.py +57 -0
- pyromt-2.4.1/srigram/raw/types/chat_reactions_some.py +62 -0
- pyromt-2.4.1/srigram/raw/types/chat_theme.py +62 -0
- pyromt-2.4.1/srigram/raw/types/chat_theme_unique_gift.py +70 -0
- pyromt-2.4.1/srigram/raw/types/chatlists/__init__.py +19 -0
- pyromt-2.4.1/srigram/raw/types/chatlists/chatlist_invite.py +112 -0
- pyromt-2.4.1/srigram/raw/types/chatlists/chatlist_invite_already.py +103 -0
- pyromt-2.4.1/srigram/raw/types/chatlists/chatlist_updates.py +87 -0
- pyromt-2.4.1/srigram/raw/types/chatlists/exported_chatlist_invite.py +79 -0
- pyromt-2.4.1/srigram/raw/types/chatlists/exported_invites.py +87 -0
- pyromt-2.4.1/srigram/raw/types/client_dh_inner_data.py +86 -0
- pyromt-2.4.1/srigram/raw/types/code_settings.py +120 -0
- pyromt-2.4.1/srigram/raw/types/config.py +443 -0
- pyromt-2.4.1/srigram/raw/types/connected_bot.py +81 -0
- pyromt-2.4.1/srigram/raw/types/connected_bot_star_ref.py +119 -0
- pyromt-2.4.1/srigram/raw/types/contact.py +70 -0
- pyromt-2.4.1/srigram/raw/types/contact_birthday.py +70 -0
- pyromt-2.4.1/srigram/raw/types/contact_status.py +79 -0
- pyromt-2.4.1/srigram/raw/types/contacts/__init__.py +27 -0
- pyromt-2.4.1/srigram/raw/types/contacts/blocked.py +87 -0
- pyromt-2.4.1/srigram/raw/types/contacts/blocked_slice.py +95 -0
- pyromt-2.4.1/srigram/raw/types/contacts/contact_birthdays.py +79 -0
- pyromt-2.4.1/srigram/raw/types/contacts/contacts.py +87 -0
- pyromt-2.4.1/srigram/raw/types/contacts/contacts_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/contacts/found.py +95 -0
- pyromt-2.4.1/srigram/raw/types/contacts/imported_contacts.py +95 -0
- pyromt-2.4.1/srigram/raw/types/contacts/resolved_peer.py +88 -0
- pyromt-2.4.1/srigram/raw/types/contacts/sponsored_peers.py +87 -0
- pyromt-2.4.1/srigram/raw/types/contacts/sponsored_peers_empty.py +66 -0
- pyromt-2.4.1/srigram/raw/types/contacts/top_peers.py +87 -0
- pyromt-2.4.1/srigram/raw/types/contacts/top_peers_disabled.py +66 -0
- pyromt-2.4.1/srigram/raw/types/contacts/top_peers_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/data_json.py +73 -0
- pyromt-2.4.1/srigram/raw/types/dc_option.py +125 -0
- pyromt-2.4.1/srigram/raw/types/default_history_ttl.py +71 -0
- pyromt-2.4.1/srigram/raw/types/destroy_auth_key_fail.py +66 -0
- pyromt-2.4.1/srigram/raw/types/destroy_auth_key_none.py +66 -0
- pyromt-2.4.1/srigram/raw/types/destroy_auth_key_ok.py +66 -0
- pyromt-2.4.1/srigram/raw/types/destroy_session_none.py +71 -0
- pyromt-2.4.1/srigram/raw/types/destroy_session_ok.py +71 -0
- pyromt-2.4.1/srigram/raw/types/dh_gen_fail.py +87 -0
- pyromt-2.4.1/srigram/raw/types/dh_gen_ok.py +87 -0
- pyromt-2.4.1/srigram/raw/types/dh_gen_retry.py +87 -0
- pyromt-2.4.1/srigram/raw/types/dialog.py +175 -0
- pyromt-2.4.1/srigram/raw/types/dialog_filter.py +168 -0
- pyromt-2.4.1/srigram/raw/types/dialog_filter_chatlist.py +118 -0
- pyromt-2.4.1/srigram/raw/types/dialog_filter_default.py +57 -0
- pyromt-2.4.1/srigram/raw/types/dialog_filter_suggested.py +79 -0
- pyromt-2.4.1/srigram/raw/types/dialog_folder.py +118 -0
- pyromt-2.4.1/srigram/raw/types/dialog_peer.py +71 -0
- pyromt-2.4.1/srigram/raw/types/dialog_peer_folder.py +71 -0
- pyromt-2.4.1/srigram/raw/types/disallowed_gifts_settings.py +86 -0
- pyromt-2.4.1/srigram/raw/types/document.py +152 -0
- pyromt-2.4.1/srigram/raw/types/document_attribute_animated.py +57 -0
- pyromt-2.4.1/srigram/raw/types/document_attribute_audio.py +97 -0
- pyromt-2.4.1/srigram/raw/types/document_attribute_custom_emoji.py +84 -0
- pyromt-2.4.1/srigram/raw/types/document_attribute_filename.py +62 -0
- pyromt-2.4.1/srigram/raw/types/document_attribute_has_stickers.py +57 -0
- pyromt-2.4.1/srigram/raw/types/document_attribute_image_size.py +70 -0
- pyromt-2.4.1/srigram/raw/types/document_attribute_sticker.py +88 -0
- pyromt-2.4.1/srigram/raw/types/document_attribute_video.py +125 -0
- pyromt-2.4.1/srigram/raw/types/document_empty.py +74 -0
- pyromt-2.4.1/srigram/raw/types/draft_message.py +133 -0
- pyromt-2.4.1/srigram/raw/types/draft_message_empty.py +65 -0
- pyromt-2.4.1/srigram/raw/types/email_verification_apple.py +62 -0
- pyromt-2.4.1/srigram/raw/types/email_verification_code.py +62 -0
- pyromt-2.4.1/srigram/raw/types/email_verification_google.py +62 -0
- pyromt-2.4.1/srigram/raw/types/email_verify_purpose_login_change.py +57 -0
- pyromt-2.4.1/srigram/raw/types/email_verify_purpose_login_setup.py +70 -0
- pyromt-2.4.1/srigram/raw/types/email_verify_purpose_passport.py +57 -0
- pyromt-2.4.1/srigram/raw/types/emoji_group.py +78 -0
- pyromt-2.4.1/srigram/raw/types/emoji_group_greeting.py +78 -0
- pyromt-2.4.1/srigram/raw/types/emoji_group_premium.py +70 -0
- pyromt-2.4.1/srigram/raw/types/emoji_keyword.py +70 -0
- pyromt-2.4.1/srigram/raw/types/emoji_keyword_deleted.py +70 -0
- pyromt-2.4.1/srigram/raw/types/emoji_keywords_difference.py +96 -0
- pyromt-2.4.1/srigram/raw/types/emoji_language.py +71 -0
- pyromt-2.4.1/srigram/raw/types/emoji_list.py +83 -0
- pyromt-2.4.1/srigram/raw/types/emoji_list_not_modified.py +70 -0
- pyromt-2.4.1/srigram/raw/types/emoji_status.py +73 -0
- pyromt-2.4.1/srigram/raw/types/emoji_status_collectible.py +137 -0
- pyromt-2.4.1/srigram/raw/types/emoji_status_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/emoji_url.py +71 -0
- pyromt-2.4.1/srigram/raw/types/encrypted_chat.py +120 -0
- pyromt-2.4.1/srigram/raw/types/encrypted_chat_discarded.py +80 -0
- pyromt-2.4.1/srigram/raw/types/encrypted_chat_empty.py +72 -0
- pyromt-2.4.1/srigram/raw/types/encrypted_chat_requested.py +123 -0
- pyromt-2.4.1/srigram/raw/types/encrypted_chat_waiting.py +104 -0
- pyromt-2.4.1/srigram/raw/types/encrypted_file.py +103 -0
- pyromt-2.4.1/srigram/raw/types/encrypted_file_empty.py +66 -0
- pyromt-2.4.1/srigram/raw/types/encrypted_message.py +94 -0
- pyromt-2.4.1/srigram/raw/types/encrypted_message_service.py +86 -0
- pyromt-2.4.1/srigram/raw/types/error.py +70 -0
- pyromt-2.4.1/srigram/raw/types/exported_chatlist_invite.py +90 -0
- pyromt-2.4.1/srigram/raw/types/exported_contact_token.py +79 -0
- pyromt-2.4.1/srigram/raw/types/exported_message_link.py +79 -0
- pyromt-2.4.1/srigram/raw/types/exported_story_link.py +71 -0
- pyromt-2.4.1/srigram/raw/types/fact_check.py +98 -0
- pyromt-2.4.1/srigram/raw/types/file_hash.py +89 -0
- pyromt-2.4.1/srigram/raw/types/folder.py +100 -0
- pyromt-2.4.1/srigram/raw/types/folder_peer.py +70 -0
- pyromt-2.4.1/srigram/raw/types/forum_topic.py +215 -0
- pyromt-2.4.1/srigram/raw/types/forum_topic_deleted.py +62 -0
- pyromt-2.4.1/srigram/raw/types/found_story.py +70 -0
- pyromt-2.4.1/srigram/raw/types/fragment/__init__.py +15 -0
- pyromt-2.4.1/srigram/raw/types/fragment/collectible_info.py +111 -0
- pyromt-2.4.1/srigram/raw/types/game.py +114 -0
- pyromt-2.4.1/srigram/raw/types/geo_point.py +89 -0
- pyromt-2.4.1/srigram/raw/types/geo_point_address.py +91 -0
- pyromt-2.4.1/srigram/raw/types/geo_point_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/global_privacy_settings.py +121 -0
- pyromt-2.4.1/srigram/raw/types/group_call.py +247 -0
- pyromt-2.4.1/srigram/raw/types/group_call_discarded.py +78 -0
- pyromt-2.4.1/srigram/raw/types/group_call_donor.py +86 -0
- pyromt-2.4.1/srigram/raw/types/group_call_message.py +103 -0
- pyromt-2.4.1/srigram/raw/types/group_call_participant.py +205 -0
- pyromt-2.4.1/srigram/raw/types/group_call_participant_video.py +87 -0
- pyromt-2.4.1/srigram/raw/types/group_call_participant_video_source_group.py +70 -0
- pyromt-2.4.1/srigram/raw/types/group_call_stream_channel.py +78 -0
- pyromt-2.4.1/srigram/raw/types/help/__init__.py +46 -0
- pyromt-2.4.1/srigram/raw/types/help/app_config.py +79 -0
- pyromt-2.4.1/srigram/raw/types/help/app_config_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/help/app_update.py +132 -0
- pyromt-2.4.1/srigram/raw/types/help/config_simple.py +78 -0
- pyromt-2.4.1/srigram/raw/types/help/countries_list.py +79 -0
- pyromt-2.4.1/srigram/raw/types/help/countries_list_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/help/country.py +95 -0
- pyromt-2.4.1/srigram/raw/types/help/country_code.py +84 -0
- pyromt-2.4.1/srigram/raw/types/help/deep_link_info.py +89 -0
- pyromt-2.4.1/srigram/raw/types/help/deep_link_info_empty.py +66 -0
- pyromt-2.4.1/srigram/raw/types/help/invite_text.py +71 -0
- pyromt-2.4.1/srigram/raw/types/help/no_app_update.py +66 -0
- pyromt-2.4.1/srigram/raw/types/help/passport_config.py +79 -0
- pyromt-2.4.1/srigram/raw/types/help/passport_config_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/help/peer_color_option.py +108 -0
- pyromt-2.4.1/srigram/raw/types/help/peer_color_profile_set.py +78 -0
- pyromt-2.4.1/srigram/raw/types/help/peer_color_set.py +62 -0
- pyromt-2.4.1/srigram/raw/types/help/peer_colors.py +80 -0
- pyromt-2.4.1/srigram/raw/types/help/peer_colors_not_modified.py +67 -0
- pyromt-2.4.1/srigram/raw/types/help/premium_promo.py +111 -0
- pyromt-2.4.1/srigram/raw/types/help/promo_data.py +149 -0
- pyromt-2.4.1/srigram/raw/types/help/promo_data_empty.py +71 -0
- pyromt-2.4.1/srigram/raw/types/help/recent_me_urls.py +87 -0
- pyromt-2.4.1/srigram/raw/types/help/support.py +79 -0
- pyromt-2.4.1/srigram/raw/types/help/support_name.py +71 -0
- pyromt-2.4.1/srigram/raw/types/help/terms_of_service.py +95 -0
- pyromt-2.4.1/srigram/raw/types/help/terms_of_service_update.py +79 -0
- pyromt-2.4.1/srigram/raw/types/help/terms_of_service_update_empty.py +71 -0
- pyromt-2.4.1/srigram/raw/types/help/timezones_list.py +79 -0
- pyromt-2.4.1/srigram/raw/types/help/timezones_list_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/help/user_info.py +96 -0
- pyromt-2.4.1/srigram/raw/types/help/user_info_empty.py +67 -0
- pyromt-2.4.1/srigram/raw/types/high_score.py +78 -0
- pyromt-2.4.1/srigram/raw/types/http_wait.py +78 -0
- pyromt-2.4.1/srigram/raw/types/imported_contact.py +70 -0
- pyromt-2.4.1/srigram/raw/types/inline_bot_switch_pm.py +70 -0
- pyromt-2.4.1/srigram/raw/types/inline_bot_web_view.py +70 -0
- pyromt-2.4.1/srigram/raw/types/inline_query_peer_type_bot_pm.py +57 -0
- pyromt-2.4.1/srigram/raw/types/inline_query_peer_type_broadcast.py +57 -0
- pyromt-2.4.1/srigram/raw/types/inline_query_peer_type_chat.py +57 -0
- pyromt-2.4.1/srigram/raw/types/inline_query_peer_type_megagroup.py +57 -0
- pyromt-2.4.1/srigram/raw/types/inline_query_peer_type_pm.py +57 -0
- pyromt-2.4.1/srigram/raw/types/inline_query_peer_type_same_bot_pm.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_app_event.py +86 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_app_id.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_app_short_name.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_game.py +66 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_id.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_id64.py +86 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_media_auto.py +90 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_media_contact.py +98 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_media_geo.py +101 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_media_invoice.py +124 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_media_venue.py +114 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_media_web_page.py +116 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_text.py +96 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_inline_result.py +127 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_inline_result_document.py +106 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_inline_result_game.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_bot_inline_result_photo.py +86 -0
- pyromt-2.4.1/srigram/raw/types/input_business_away_message.py +86 -0
- pyromt-2.4.1/srigram/raw/types/input_business_bot_recipients.py +106 -0
- pyromt-2.4.1/srigram/raw/types/input_business_chat_link.py +83 -0
- pyromt-2.4.1/srigram/raw/types/input_business_greeting_message.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_business_intro.py +82 -0
- pyromt-2.4.1/srigram/raw/types/input_business_recipients.py +96 -0
- pyromt-2.4.1/srigram/raw/types/input_channel.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_channel_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_channel_from_message.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_chat_photo.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_chat_photo_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_chat_theme.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_chat_theme_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_chat_theme_unique_gift.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_chat_uploaded_photo.py +95 -0
- pyromt-2.4.1/srigram/raw/types/input_chatlist_dialog_filter.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_check_password_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_check_password_srp.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_client_proxy.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_collectible_phone.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_collectible_username.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_dialog_peer.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_dialog_peer_folder.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_document.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_document_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_document_file_location.py +86 -0
- pyromt-2.4.1/srigram/raw/types/input_emoji_status_collectible.py +73 -0
- pyromt-2.4.1/srigram/raw/types/input_encrypted_chat.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_encrypted_file.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_encrypted_file_big_uploaded.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_encrypted_file_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_encrypted_file_location.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_encrypted_file_uploaded.py +86 -0
- pyromt-2.4.1/srigram/raw/types/input_file.py +86 -0
- pyromt-2.4.1/srigram/raw/types/input_file_big.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_file_location.py +86 -0
- pyromt-2.4.1/srigram/raw/types/input_file_story_document.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_folder_peer.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_game_id.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_game_short_name.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_geo_point.py +81 -0
- pyromt-2.4.1/srigram/raw/types/input_geo_point_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_group_call.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_group_call_invite_message.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_group_call_slug.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_group_call_stream.py +98 -0
- pyromt-2.4.1/srigram/raw/types/input_invoice_business_bot_transfer_stars.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_invoice_chat_invite_subscription.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_invoice_message.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_invoice_premium_auth_code.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_invoice_premium_gift_code.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_invoice_premium_gift_stars.py +82 -0
- pyromt-2.4.1/srigram/raw/types/input_invoice_slug.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_invoice_star_gift.py +94 -0
- pyromt-2.4.1/srigram/raw/types/input_invoice_star_gift_auction_bid.py +104 -0
- pyromt-2.4.1/srigram/raw/types/input_invoice_star_gift_drop_original_details.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_invoice_star_gift_prepaid_upgrade.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_invoice_star_gift_resale.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_invoice_star_gift_transfer.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_invoice_star_gift_upgrade.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_invoice_stars.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_keyboard_button_request_peer.py +116 -0
- pyromt-2.4.1/srigram/raw/types/input_keyboard_button_url_auth.py +105 -0
- pyromt-2.4.1/srigram/raw/types/input_keyboard_button_user_profile.py +82 -0
- pyromt-2.4.1/srigram/raw/types/input_media_area_channel_post.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_media_area_venue.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_media_contact.py +86 -0
- pyromt-2.4.1/srigram/raw/types/input_media_dice.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_media_document.py +107 -0
- pyromt-2.4.1/srigram/raw/types/input_media_document_external.py +98 -0
- pyromt-2.4.1/srigram/raw/types/input_media_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_media_game.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_media_geo_live.py +97 -0
- pyromt-2.4.1/srigram/raw/types/input_media_geo_point.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_media_invoice.py +134 -0
- pyromt-2.4.1/srigram/raw/types/input_media_paid_media.py +81 -0
- pyromt-2.4.1/srigram/raw/types/input_media_photo.py +79 -0
- pyromt-2.4.1/srigram/raw/types/input_media_photo_external.py +79 -0
- pyromt-2.4.1/srigram/raw/types/input_media_poll.py +93 -0
- pyromt-2.4.1/srigram/raw/types/input_media_stake_dice.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_media_story.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_media_todo.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_media_uploaded_document.py +146 -0
- pyromt-2.4.1/srigram/raw/types/input_media_uploaded_photo.py +89 -0
- pyromt-2.4.1/srigram/raw/types/input_media_venue.py +102 -0
- pyromt-2.4.1/srigram/raw/types/input_media_web_page.py +82 -0
- pyromt-2.4.1/srigram/raw/types/input_message_callback_query.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_message_entity_mention_name.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_message_id.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_message_pinned.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_message_reply_to.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_chat_photos.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_contacts.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_document.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_geo.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_gif.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_music.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_my_mentions.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_phone_calls.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_photo_video.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_photos.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_pinned.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_round_video.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_round_voice.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_url.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_video.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_messages_filter_voice.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_notify_broadcasts.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_notify_chats.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_notify_forum_topic.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_notify_peer.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_notify_users.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_passkey_credential_firebase_pnv.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_passkey_credential_public_key.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_passkey_response_login.py +86 -0
- pyromt-2.4.1/srigram/raw/types/input_passkey_response_register.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_payment_credentials.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_payment_credentials_apple_pay.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_payment_credentials_google_pay.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_payment_credentials_saved.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_peer_channel.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_peer_channel_from_message.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_peer_chat.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_peer_color_collectible.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_peer_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_peer_notify_settings.py +121 -0
- pyromt-2.4.1/srigram/raw/types/input_peer_photo_file_location.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_peer_self.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_peer_user.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_peer_user_from_message.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_phone_call.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_phone_contact.py +98 -0
- pyromt-2.4.1/srigram/raw/types/input_photo.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_photo_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_photo_file_location.py +86 -0
- pyromt-2.4.1/srigram/raw/types/input_photo_legacy_file_location.py +102 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_key_about.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_key_added_by_phone.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_key_birthday.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_key_chat_invite.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_key_forwards.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_key_no_paid_messages.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_key_phone_call.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_key_phone_number.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_key_phone_p2_p.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_key_profile_photo.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_key_saved_music.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_key_star_gifts_auto_save.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_key_status_timestamp.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_key_voice_messages.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_value_allow_all.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_value_allow_bots.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_value_allow_chat_participants.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_value_allow_close_friends.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_value_allow_contacts.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_value_allow_premium.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_value_allow_users.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_value_disallow_all.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_value_disallow_bots.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_value_disallow_chat_participants.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_value_disallow_contacts.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_privacy_value_disallow_users.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_quick_reply_shortcut.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_quick_reply_shortcut_id.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_reply_to_message.py +130 -0
- pyromt-2.4.1/srigram/raw/types/input_reply_to_mono_forum.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_reply_to_story.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_report_reason_child_abuse.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_report_reason_copyright.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_report_reason_fake.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_report_reason_geo_irrelevant.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_report_reason_illegal_drugs.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_report_reason_other.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_report_reason_personal_details.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_report_reason_pornography.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_report_reason_spam.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_report_reason_violence.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_saved_star_gift_chat.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_saved_star_gift_slug.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_saved_star_gift_user.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_secure_file.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_secure_file_location.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_secure_file_uploaded.py +94 -0
- pyromt-2.4.1/srigram/raw/types/input_secure_value.py +134 -0
- pyromt-2.4.1/srigram/raw/types/input_single_media.py +90 -0
- pyromt-2.4.1/srigram/raw/types/input_star_gift_auction.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_star_gift_auction_slug.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_stars_transaction.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_sticker_set_animated_emoji.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_sticker_set_animated_emoji_animations.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_sticker_set_dice.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_sticker_set_emoji_channel_default_statuses.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_sticker_set_emoji_default_statuses.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_sticker_set_emoji_default_topic_icons.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_sticker_set_emoji_generic_animations.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_sticker_set_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_sticker_set_id.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_sticker_set_item.py +91 -0
- pyromt-2.4.1/srigram/raw/types/input_sticker_set_premium_gifts.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_sticker_set_short_name.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_sticker_set_thumb.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_sticker_set_ton_gifts.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_stickered_media_document.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_stickered_media_photo.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_store_payment_auth_code.py +94 -0
- pyromt-2.4.1/srigram/raw/types/input_store_payment_gift_premium.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_store_payment_premium_gift_code.py +100 -0
- pyromt-2.4.1/srigram/raw/types/input_store_payment_premium_giveaway.py +137 -0
- pyromt-2.4.1/srigram/raw/types/input_store_payment_premium_subscription.py +68 -0
- pyromt-2.4.1/srigram/raw/types/input_store_payment_stars_gift.py +86 -0
- pyromt-2.4.1/srigram/raw/types/input_store_payment_stars_giveaway.py +153 -0
- pyromt-2.4.1/srigram/raw/types/input_store_payment_stars_topup.py +90 -0
- pyromt-2.4.1/srigram/raw/types/input_takeout_file_location.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_theme.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_theme_settings.py +117 -0
- pyromt-2.4.1/srigram/raw/types/input_theme_slug.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_user.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_user_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_user_from_message.py +78 -0
- pyromt-2.4.1/srigram/raw/types/input_user_self.py +57 -0
- pyromt-2.4.1/srigram/raw/types/input_wall_paper.py +70 -0
- pyromt-2.4.1/srigram/raw/types/input_wall_paper_no_file.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_wall_paper_slug.py +62 -0
- pyromt-2.4.1/srigram/raw/types/input_web_document.py +86 -0
- pyromt-2.4.1/srigram/raw/types/input_web_file_audio_album_thumb_location.py +90 -0
- pyromt-2.4.1/srigram/raw/types/input_web_file_geo_point_location.py +102 -0
- pyromt-2.4.1/srigram/raw/types/input_web_file_location.py +70 -0
- pyromt-2.4.1/srigram/raw/types/invoice.py +163 -0
- pyromt-2.4.1/srigram/raw/types/ip_port.py +70 -0
- pyromt-2.4.1/srigram/raw/types/ip_port_secret.py +78 -0
- pyromt-2.4.1/srigram/raw/types/json_array.py +62 -0
- pyromt-2.4.1/srigram/raw/types/json_bool.py +62 -0
- pyromt-2.4.1/srigram/raw/types/json_null.py +57 -0
- pyromt-2.4.1/srigram/raw/types/json_number.py +62 -0
- pyromt-2.4.1/srigram/raw/types/json_object.py +62 -0
- pyromt-2.4.1/srigram/raw/types/json_object_value.py +70 -0
- pyromt-2.4.1/srigram/raw/types/json_string.py +62 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button.py +74 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_buy.py +74 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_callback.py +88 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_copy.py +82 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_game.py +74 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_request_geo_location.py +74 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_request_peer.py +98 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_request_phone.py +74 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_request_poll.py +83 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_row.py +62 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_simple_web_view.py +82 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_style.py +83 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_switch_inline.py +98 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_url.py +82 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_url_auth.py +99 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_user_profile.py +82 -0
- pyromt-2.4.1/srigram/raw/types/keyboard_button_web_view.py +82 -0
- pyromt-2.4.1/srigram/raw/types/labeled_price.py +70 -0
- pyromt-2.4.1/srigram/raw/types/lang_pack_difference.py +96 -0
- pyromt-2.4.1/srigram/raw/types/lang_pack_language.py +149 -0
- pyromt-2.4.1/srigram/raw/types/lang_pack_string.py +79 -0
- pyromt-2.4.1/srigram/raw/types/lang_pack_string_deleted.py +71 -0
- pyromt-2.4.1/srigram/raw/types/lang_pack_string_pluralized.py +126 -0
- pyromt-2.4.1/srigram/raw/types/mask_coords.py +86 -0
- pyromt-2.4.1/srigram/raw/types/media_area_channel_post.py +78 -0
- pyromt-2.4.1/srigram/raw/types/media_area_coordinates.py +105 -0
- pyromt-2.4.1/srigram/raw/types/media_area_geo_point.py +82 -0
- pyromt-2.4.1/srigram/raw/types/media_area_star_gift.py +70 -0
- pyromt-2.4.1/srigram/raw/types/media_area_suggested_reaction.py +84 -0
- pyromt-2.4.1/srigram/raw/types/media_area_url.py +70 -0
- pyromt-2.4.1/srigram/raw/types/media_area_venue.py +110 -0
- pyromt-2.4.1/srigram/raw/types/media_area_weather.py +86 -0
- pyromt-2.4.1/srigram/raw/types/message.py +437 -0
- pyromt-2.4.1/srigram/raw/types/message_action_boost_apply.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_bot_allowed.py +87 -0
- pyromt-2.4.1/srigram/raw/types/message_action_change_creator.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_channel_create.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_channel_migrate_from.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_action_chat_add_user.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_chat_create.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_action_chat_delete_photo.py +57 -0
- pyromt-2.4.1/srigram/raw/types/message_action_chat_delete_user.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_chat_edit_photo.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_chat_edit_title.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_chat_joined_by_link.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_chat_joined_by_request.py +57 -0
- pyromt-2.4.1/srigram/raw/types/message_action_chat_migrate_to.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_conference_call.py +101 -0
- pyromt-2.4.1/srigram/raw/types/message_action_contact_sign_up.py +57 -0
- pyromt-2.4.1/srigram/raw/types/message_action_custom_action.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/message_action_game_score.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_action_geo_proximity_reached.py +78 -0
- pyromt-2.4.1/srigram/raw/types/message_action_gift_code.py +140 -0
- pyromt-2.4.1/srigram/raw/types/message_action_gift_premium.py +108 -0
- pyromt-2.4.1/srigram/raw/types/message_action_gift_stars.py +107 -0
- pyromt-2.4.1/srigram/raw/types/message_action_gift_ton.py +97 -0
- pyromt-2.4.1/srigram/raw/types/message_action_giveaway_launch.py +65 -0
- pyromt-2.4.1/srigram/raw/types/message_action_giveaway_results.py +78 -0
- pyromt-2.4.1/srigram/raw/types/message_action_group_call.py +73 -0
- pyromt-2.4.1/srigram/raw/types/message_action_group_call_scheduled.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_action_history_clear.py +57 -0
- pyromt-2.4.1/srigram/raw/types/message_action_invite_to_group_call.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_action_new_creator_pending.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_paid_messages_price.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_action_paid_messages_refunded.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_action_payment_refunded.py +97 -0
- pyromt-2.4.1/srigram/raw/types/message_action_payment_sent.py +102 -0
- pyromt-2.4.1/srigram/raw/types/message_action_payment_sent_me.py +128 -0
- pyromt-2.4.1/srigram/raw/types/message_action_phone_call.py +89 -0
- pyromt-2.4.1/srigram/raw/types/message_action_pin_message.py +57 -0
- pyromt-2.4.1/srigram/raw/types/message_action_prize_stars.py +94 -0
- pyromt-2.4.1/srigram/raw/types/message_action_requested_peer.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_action_requested_peer_sent_me.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_action_screenshot_taken.py +57 -0
- pyromt-2.4.1/srigram/raw/types/message_action_secure_values_sent.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_secure_values_sent_me.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_action_set_chat_theme.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_set_chat_wall_paper.py +76 -0
- pyromt-2.4.1/srigram/raw/types/message_action_set_messages_ttl.py +73 -0
- pyromt-2.4.1/srigram/raw/types/message_action_star_gift.py +221 -0
- pyromt-2.4.1/srigram/raw/types/message_action_star_gift_purchase_offer.py +92 -0
- pyromt-2.4.1/srigram/raw/types/message_action_star_gift_purchase_offer_declined.py +78 -0
- pyromt-2.4.1/srigram/raw/types/message_action_star_gift_unique.py +205 -0
- pyromt-2.4.1/srigram/raw/types/message_action_suggest_birthday.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_suggest_profile_photo.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_suggested_post_approval.py +96 -0
- pyromt-2.4.1/srigram/raw/types/message_action_suggested_post_refund.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_suggested_post_success.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_todo_append_tasks.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_todo_completions.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_action_topic_create.py +87 -0
- pyromt-2.4.1/srigram/raw/types/message_action_topic_edit.py +92 -0
- pyromt-2.4.1/srigram/raw/types/message_action_web_view_data_sent.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_action_web_view_data_sent_me.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_empty.py +74 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_bank_card.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_blockquote.py +78 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_bold.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_bot_command.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_cashtag.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_code.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_custom_emoji.py +78 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_email.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_hashtag.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_italic.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_mention.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_mention_name.py +78 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_phone.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_pre.py +78 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_spoiler.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_strike.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_text_url.py +78 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_underline.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_unknown.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_entity_url.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_extended_media.py +62 -0
- pyromt-2.4.1/srigram/raw/types/message_extended_media_preview.py +93 -0
- pyromt-2.4.1/srigram/raw/types/message_fwd_header.py +169 -0
- pyromt-2.4.1/srigram/raw/types/message_media_contact.py +104 -0
- pyromt-2.4.1/srigram/raw/types/message_media_dice.py +92 -0
- pyromt-2.4.1/srigram/raw/types/message_media_document.py +144 -0
- pyromt-2.4.1/srigram/raw/types/message_media_empty.py +67 -0
- pyromt-2.4.1/srigram/raw/types/message_media_game.py +72 -0
- pyromt-2.4.1/srigram/raw/types/message_media_geo.py +72 -0
- pyromt-2.4.1/srigram/raw/types/message_media_geo_live.py +100 -0
- pyromt-2.4.1/srigram/raw/types/message_media_giveaway.py +139 -0
- pyromt-2.4.1/srigram/raw/types/message_media_giveaway_results.py +162 -0
- pyromt-2.4.1/srigram/raw/types/message_media_invoice.py +147 -0
- pyromt-2.4.1/srigram/raw/types/message_media_paid_media.py +80 -0
- pyromt-2.4.1/srigram/raw/types/message_media_photo.py +91 -0
- pyromt-2.4.1/srigram/raw/types/message_media_poll.py +80 -0
- pyromt-2.4.1/srigram/raw/types/message_media_story.py +98 -0
- pyromt-2.4.1/srigram/raw/types/message_media_to_do.py +84 -0
- pyromt-2.4.1/srigram/raw/types/message_media_unsupported.py +67 -0
- pyromt-2.4.1/srigram/raw/types/message_media_venue.py +112 -0
- pyromt-2.4.1/srigram/raw/types/message_media_video_stream.py +80 -0
- pyromt-2.4.1/srigram/raw/types/message_media_web_page.py +98 -0
- pyromt-2.4.1/srigram/raw/types/message_peer_reaction.py +98 -0
- pyromt-2.4.1/srigram/raw/types/message_peer_vote.py +78 -0
- pyromt-2.4.1/srigram/raw/types/message_peer_vote_input_option.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_peer_vote_multiple.py +78 -0
- pyromt-2.4.1/srigram/raw/types/message_range.py +79 -0
- pyromt-2.4.1/srigram/raw/types/message_reactions.py +102 -0
- pyromt-2.4.1/srigram/raw/types/message_reactor.py +92 -0
- pyromt-2.4.1/srigram/raw/types/message_replies.py +115 -0
- pyromt-2.4.1/srigram/raw/types/message_reply_header.py +159 -0
- pyromt-2.4.1/srigram/raw/types/message_reply_story_header.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_report_option.py +70 -0
- pyromt-2.4.1/srigram/raw/types/message_service.py +179 -0
- pyromt-2.4.1/srigram/raw/types/message_views.py +84 -0
- pyromt-2.4.1/srigram/raw/types/messages/__init__.py +105 -0
- pyromt-2.4.1/srigram/raw/types/messages/affected_found_messages.py +95 -0
- pyromt-2.4.1/srigram/raw/types/messages/affected_history.py +93 -0
- pyromt-2.4.1/srigram/raw/types/messages/affected_messages.py +82 -0
- pyromt-2.4.1/srigram/raw/types/messages/all_stickers.py +81 -0
- pyromt-2.4.1/srigram/raw/types/messages/all_stickers_not_modified.py +68 -0
- pyromt-2.4.1/srigram/raw/types/messages/archived_stickers.py +79 -0
- pyromt-2.4.1/srigram/raw/types/messages/available_effects.py +87 -0
- pyromt-2.4.1/srigram/raw/types/messages/available_effects_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/messages/available_reactions.py +79 -0
- pyromt-2.4.1/srigram/raw/types/messages/available_reactions_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/messages/bot_app.py +91 -0
- pyromt-2.4.1/srigram/raw/types/messages/bot_callback_answer.py +109 -0
- pyromt-2.4.1/srigram/raw/types/messages/bot_prepared_inline_message.py +79 -0
- pyromt-2.4.1/srigram/raw/types/messages/bot_results.py +132 -0
- pyromt-2.4.1/srigram/raw/types/messages/channel_messages.py +142 -0
- pyromt-2.4.1/srigram/raw/types/messages/chat_admins_with_invites.py +79 -0
- pyromt-2.4.1/srigram/raw/types/messages/chat_full.py +88 -0
- pyromt-2.4.1/srigram/raw/types/messages/chat_invite_importers.py +87 -0
- pyromt-2.4.1/srigram/raw/types/messages/chats.py +78 -0
- pyromt-2.4.1/srigram/raw/types/messages/chats_slice.py +86 -0
- pyromt-2.4.1/srigram/raw/types/messages/checked_history_import_peer.py +71 -0
- pyromt-2.4.1/srigram/raw/types/messages/dh_config.py +95 -0
- pyromt-2.4.1/srigram/raw/types/messages/dh_config_not_modified.py +71 -0
- pyromt-2.4.1/srigram/raw/types/messages/dialog_filters.py +79 -0
- pyromt-2.4.1/srigram/raw/types/messages/dialogs.py +95 -0
- pyromt-2.4.1/srigram/raw/types/messages/dialogs_not_modified.py +71 -0
- pyromt-2.4.1/srigram/raw/types/messages/dialogs_slice.py +103 -0
- pyromt-2.4.1/srigram/raw/types/messages/discussion_message.py +124 -0
- pyromt-2.4.1/srigram/raw/types/messages/emoji_game_dice_info.py +106 -0
- pyromt-2.4.1/srigram/raw/types/messages/emoji_game_outcome.py +78 -0
- pyromt-2.4.1/srigram/raw/types/messages/emoji_game_unavailable.py +66 -0
- pyromt-2.4.1/srigram/raw/types/messages/emoji_groups.py +82 -0
- pyromt-2.4.1/srigram/raw/types/messages/emoji_groups_not_modified.py +69 -0
- pyromt-2.4.1/srigram/raw/types/messages/exported_chat_invite.py +80 -0
- pyromt-2.4.1/srigram/raw/types/messages/exported_chat_invite_replaced.py +88 -0
- pyromt-2.4.1/srigram/raw/types/messages/exported_chat_invites.py +87 -0
- pyromt-2.4.1/srigram/raw/types/messages/faved_stickers.py +87 -0
- pyromt-2.4.1/srigram/raw/types/messages/faved_stickers_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/messages/featured_stickers.py +105 -0
- pyromt-2.4.1/srigram/raw/types/messages/featured_stickers_not_modified.py +73 -0
- pyromt-2.4.1/srigram/raw/types/messages/forum_topics.py +120 -0
- pyromt-2.4.1/srigram/raw/types/messages/found_sticker_sets.py +80 -0
- pyromt-2.4.1/srigram/raw/types/messages/found_sticker_sets_not_modified.py +67 -0
- pyromt-2.4.1/srigram/raw/types/messages/found_stickers.py +90 -0
- pyromt-2.4.1/srigram/raw/types/messages/found_stickers_not_modified.py +74 -0
- pyromt-2.4.1/srigram/raw/types/messages/high_scores.py +80 -0
- pyromt-2.4.1/srigram/raw/types/messages/history_import.py +71 -0
- pyromt-2.4.1/srigram/raw/types/messages/history_import_parsed.py +86 -0
- pyromt-2.4.1/srigram/raw/types/messages/inactive_chats.py +87 -0
- pyromt-2.4.1/srigram/raw/types/messages/invited_users.py +81 -0
- pyromt-2.4.1/srigram/raw/types/messages/message_edit_data.py +71 -0
- pyromt-2.4.1/srigram/raw/types/messages/message_reactions_list.py +106 -0
- pyromt-2.4.1/srigram/raw/types/messages/message_views.py +87 -0
- pyromt-2.4.1/srigram/raw/types/messages/messages.py +109 -0
- pyromt-2.4.1/srigram/raw/types/messages/messages_not_modified.py +85 -0
- pyromt-2.4.1/srigram/raw/types/messages/messages_slice.py +153 -0
- pyromt-2.4.1/srigram/raw/types/messages/my_stickers.py +79 -0
- pyromt-2.4.1/srigram/raw/types/messages/peer_dialogs.py +104 -0
- pyromt-2.4.1/srigram/raw/types/messages/peer_settings.py +87 -0
- pyromt-2.4.1/srigram/raw/types/messages/prepared_inline_message.py +103 -0
- pyromt-2.4.1/srigram/raw/types/messages/quick_replies.py +95 -0
- pyromt-2.4.1/srigram/raw/types/messages/quick_replies_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/messages/reactions.py +81 -0
- pyromt-2.4.1/srigram/raw/types/messages/reactions_not_modified.py +68 -0
- pyromt-2.4.1/srigram/raw/types/messages/recent_stickers.py +95 -0
- pyromt-2.4.1/srigram/raw/types/messages/recent_stickers_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/messages/saved_dialogs.py +97 -0
- pyromt-2.4.1/srigram/raw/types/messages/saved_dialogs_not_modified.py +73 -0
- pyromt-2.4.1/srigram/raw/types/messages/saved_dialogs_slice.py +105 -0
- pyromt-2.4.1/srigram/raw/types/messages/saved_gifs.py +79 -0
- pyromt-2.4.1/srigram/raw/types/messages/saved_gifs_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/messages/saved_reaction_tags.py +79 -0
- pyromt-2.4.1/srigram/raw/types/messages/saved_reaction_tags_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/messages/search_counter.py +87 -0
- pyromt-2.4.1/srigram/raw/types/messages/search_results_calendar.py +136 -0
- pyromt-2.4.1/srigram/raw/types/messages/search_results_positions.py +79 -0
- pyromt-2.4.1/srigram/raw/types/messages/sent_encrypted_file.py +81 -0
- pyromt-2.4.1/srigram/raw/types/messages/sent_encrypted_message.py +73 -0
- pyromt-2.4.1/srigram/raw/types/messages/sponsored_messages.py +116 -0
- pyromt-2.4.1/srigram/raw/types/messages/sponsored_messages_empty.py +66 -0
- pyromt-2.4.1/srigram/raw/types/messages/sticker_set.py +103 -0
- pyromt-2.4.1/srigram/raw/types/messages/sticker_set_install_result_archive.py +71 -0
- pyromt-2.4.1/srigram/raw/types/messages/sticker_set_install_result_success.py +66 -0
- pyromt-2.4.1/srigram/raw/types/messages/sticker_set_not_modified.py +74 -0
- pyromt-2.4.1/srigram/raw/types/messages/stickers.py +79 -0
- pyromt-2.4.1/srigram/raw/types/messages/stickers_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/messages/transcribed_audio.py +105 -0
- pyromt-2.4.1/srigram/raw/types/messages/translate_result.py +71 -0
- pyromt-2.4.1/srigram/raw/types/messages/votes_list.py +106 -0
- pyromt-2.4.1/srigram/raw/types/messages/web_page.py +87 -0
- pyromt-2.4.1/srigram/raw/types/messages/web_page_preview.py +87 -0
- pyromt-2.4.1/srigram/raw/types/missing_invitee.py +76 -0
- pyromt-2.4.1/srigram/raw/types/mono_forum_dialog.py +126 -0
- pyromt-2.4.1/srigram/raw/types/msg_detailed_info.py +86 -0
- pyromt-2.4.1/srigram/raw/types/msg_new_detailed_info.py +78 -0
- pyromt-2.4.1/srigram/raw/types/msg_resend_ans_req.py +62 -0
- pyromt-2.4.1/srigram/raw/types/msg_resend_req.py +62 -0
- pyromt-2.4.1/srigram/raw/types/msgs_ack.py +62 -0
- pyromt-2.4.1/srigram/raw/types/msgs_all_info.py +70 -0
- pyromt-2.4.1/srigram/raw/types/msgs_state_info.py +70 -0
- pyromt-2.4.1/srigram/raw/types/msgs_state_req.py +62 -0
- pyromt-2.4.1/srigram/raw/types/my_boost.py +99 -0
- pyromt-2.4.1/srigram/raw/types/nearest_dc.py +87 -0
- pyromt-2.4.1/srigram/raw/types/new_session_created.py +78 -0
- pyromt-2.4.1/srigram/raw/types/notification_sound_default.py +57 -0
- pyromt-2.4.1/srigram/raw/types/notification_sound_local.py +70 -0
- pyromt-2.4.1/srigram/raw/types/notification_sound_none.py +57 -0
- pyromt-2.4.1/srigram/raw/types/notification_sound_ringtone.py +62 -0
- pyromt-2.4.1/srigram/raw/types/notify_broadcasts.py +57 -0
- pyromt-2.4.1/srigram/raw/types/notify_chats.py +57 -0
- pyromt-2.4.1/srigram/raw/types/notify_forum_topic.py +70 -0
- pyromt-2.4.1/srigram/raw/types/notify_peer.py +62 -0
- pyromt-2.4.1/srigram/raw/types/notify_users.py +57 -0
- pyromt-2.4.1/srigram/raw/types/null.py +57 -0
- pyromt-2.4.1/srigram/raw/types/outbox_read_date.py +71 -0
- pyromt-2.4.1/srigram/raw/types/page.py +115 -0
- pyromt-2.4.1/srigram/raw/types/page_block_anchor.py +62 -0
- pyromt-2.4.1/srigram/raw/types/page_block_audio.py +70 -0
- pyromt-2.4.1/srigram/raw/types/page_block_author_date.py +70 -0
- pyromt-2.4.1/srigram/raw/types/page_block_blockquote.py +70 -0
- pyromt-2.4.1/srigram/raw/types/page_block_channel.py +62 -0
- pyromt-2.4.1/srigram/raw/types/page_block_collage.py +70 -0
- pyromt-2.4.1/srigram/raw/types/page_block_cover.py +62 -0
- pyromt-2.4.1/srigram/raw/types/page_block_details.py +78 -0
- pyromt-2.4.1/srigram/raw/types/page_block_divider.py +57 -0
- pyromt-2.4.1/srigram/raw/types/page_block_embed.py +121 -0
- pyromt-2.4.1/srigram/raw/types/page_block_embed_post.py +110 -0
- pyromt-2.4.1/srigram/raw/types/page_block_footer.py +62 -0
- pyromt-2.4.1/srigram/raw/types/page_block_header.py +62 -0
- pyromt-2.4.1/srigram/raw/types/page_block_kicker.py +62 -0
- pyromt-2.4.1/srigram/raw/types/page_block_list.py +62 -0
- pyromt-2.4.1/srigram/raw/types/page_block_map.py +94 -0
- pyromt-2.4.1/srigram/raw/types/page_block_ordered_list.py +62 -0
- pyromt-2.4.1/srigram/raw/types/page_block_paragraph.py +62 -0
- pyromt-2.4.1/srigram/raw/types/page_block_photo.py +90 -0
- pyromt-2.4.1/srigram/raw/types/page_block_preformatted.py +70 -0
- pyromt-2.4.1/srigram/raw/types/page_block_pullquote.py +70 -0
- pyromt-2.4.1/srigram/raw/types/page_block_related_articles.py +70 -0
- pyromt-2.4.1/srigram/raw/types/page_block_slideshow.py +70 -0
- pyromt-2.4.1/srigram/raw/types/page_block_subheader.py +62 -0
- pyromt-2.4.1/srigram/raw/types/page_block_subtitle.py +62 -0
- pyromt-2.4.1/srigram/raw/types/page_block_table.py +84 -0
- pyromt-2.4.1/srigram/raw/types/page_block_title.py +62 -0
- pyromt-2.4.1/srigram/raw/types/page_block_unsupported.py +57 -0
- pyromt-2.4.1/srigram/raw/types/page_block_video.py +84 -0
- pyromt-2.4.1/srigram/raw/types/page_caption.py +70 -0
- pyromt-2.4.1/srigram/raw/types/page_list_item_blocks.py +62 -0
- pyromt-2.4.1/srigram/raw/types/page_list_item_text.py +62 -0
- pyromt-2.4.1/srigram/raw/types/page_list_ordered_item_blocks.py +70 -0
- pyromt-2.4.1/srigram/raw/types/page_list_ordered_item_text.py +70 -0
- pyromt-2.4.1/srigram/raw/types/page_related_article.py +117 -0
- pyromt-2.4.1/srigram/raw/types/page_table_cell.py +114 -0
- pyromt-2.4.1/srigram/raw/types/page_table_row.py +62 -0
- pyromt-2.4.1/srigram/raw/types/paid_reaction_privacy_anonymous.py +57 -0
- pyromt-2.4.1/srigram/raw/types/paid_reaction_privacy_default.py +57 -0
- pyromt-2.4.1/srigram/raw/types/paid_reaction_privacy_peer.py +62 -0
- pyromt-2.4.1/srigram/raw/types/passkey.py +107 -0
- pyromt-2.4.1/srigram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py +86 -0
- pyromt-2.4.1/srigram/raw/types/password_kdf_algo_unknown.py +57 -0
- pyromt-2.4.1/srigram/raw/types/payment_charge.py +70 -0
- pyromt-2.4.1/srigram/raw/types/payment_form_method.py +70 -0
- pyromt-2.4.1/srigram/raw/types/payment_requested_info.py +93 -0
- pyromt-2.4.1/srigram/raw/types/payment_saved_credentials_card.py +70 -0
- pyromt-2.4.1/srigram/raw/types/payments/__init__.py +51 -0
- pyromt-2.4.1/srigram/raw/types/payments/bank_card_data.py +79 -0
- pyromt-2.4.1/srigram/raw/types/payments/check_can_send_gift_result_fail.py +71 -0
- pyromt-2.4.1/srigram/raw/types/payments/check_can_send_gift_result_ok.py +66 -0
- pyromt-2.4.1/srigram/raw/types/payments/checked_gift_code.py +140 -0
- pyromt-2.4.1/srigram/raw/types/payments/connected_star_ref_bots.py +90 -0
- pyromt-2.4.1/srigram/raw/types/payments/exported_invoice.py +71 -0
- pyromt-2.4.1/srigram/raw/types/payments/giveaway_info.py +112 -0
- pyromt-2.4.1/srigram/raw/types/payments/giveaway_info_results.py +128 -0
- pyromt-2.4.1/srigram/raw/types/payments/payment_form.py +200 -0
- pyromt-2.4.1/srigram/raw/types/payments/payment_form_star_gift.py +79 -0
- pyromt-2.4.1/srigram/raw/types/payments/payment_form_stars.py +123 -0
- pyromt-2.4.1/srigram/raw/types/payments/payment_receipt.py +184 -0
- pyromt-2.4.1/srigram/raw/types/payments/payment_receipt_stars.py +147 -0
- pyromt-2.4.1/srigram/raw/types/payments/payment_result.py +72 -0
- pyromt-2.4.1/srigram/raw/types/payments/payment_verification_needed.py +72 -0
- pyromt-2.4.1/srigram/raw/types/payments/resale_star_gifts.py +135 -0
- pyromt-2.4.1/srigram/raw/types/payments/saved_info.py +81 -0
- pyromt-2.4.1/srigram/raw/types/payments/saved_star_gifts.py +117 -0
- pyromt-2.4.1/srigram/raw/types/payments/star_gift_active_auctions.py +87 -0
- pyromt-2.4.1/srigram/raw/types/payments/star_gift_active_auctions_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/payments/star_gift_auction_acquired_gifts.py +87 -0
- pyromt-2.4.1/srigram/raw/types/payments/star_gift_auction_state.py +111 -0
- pyromt-2.4.1/srigram/raw/types/payments/star_gift_collections.py +71 -0
- pyromt-2.4.1/srigram/raw/types/payments/star_gift_collections_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/payments/star_gift_upgrade_attributes.py +71 -0
- pyromt-2.4.1/srigram/raw/types/payments/star_gift_upgrade_preview.py +87 -0
- pyromt-2.4.1/srigram/raw/types/payments/star_gift_withdrawal_url.py +71 -0
- pyromt-2.4.1/srigram/raw/types/payments/star_gifts.py +95 -0
- pyromt-2.4.1/srigram/raw/types/payments/star_gifts_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/payments/stars_revenue_ads_account_url.py +71 -0
- pyromt-2.4.1/srigram/raw/types/payments/stars_revenue_stats.py +99 -0
- pyromt-2.4.1/srigram/raw/types/payments/stars_revenue_withdrawal_url.py +71 -0
- pyromt-2.4.1/srigram/raw/types/payments/stars_status.py +139 -0
- pyromt-2.4.1/srigram/raw/types/payments/suggested_star_ref_bots.py +98 -0
- pyromt-2.4.1/srigram/raw/types/payments/unique_star_gift.py +87 -0
- pyromt-2.4.1/srigram/raw/types/payments/unique_star_gift_value_info.py +180 -0
- pyromt-2.4.1/srigram/raw/types/payments/validated_requested_info.py +84 -0
- pyromt-2.4.1/srigram/raw/types/peer_blocked.py +70 -0
- pyromt-2.4.1/srigram/raw/types/peer_channel.py +71 -0
- pyromt-2.4.1/srigram/raw/types/peer_chat.py +71 -0
- pyromt-2.4.1/srigram/raw/types/peer_color.py +74 -0
- pyromt-2.4.1/srigram/raw/types/peer_color_collectible.py +115 -0
- pyromt-2.4.1/srigram/raw/types/peer_located.py +78 -0
- pyromt-2.4.1/srigram/raw/types/peer_notify_settings.py +170 -0
- pyromt-2.4.1/srigram/raw/types/peer_self_located.py +62 -0
- pyromt-2.4.1/srigram/raw/types/peer_settings.py +212 -0
- pyromt-2.4.1/srigram/raw/types/peer_stories.py +81 -0
- pyromt-2.4.1/srigram/raw/types/peer_user.py +71 -0
- pyromt-2.4.1/srigram/raw/types/pending_suggestion.py +86 -0
- pyromt-2.4.1/srigram/raw/types/phone/__init__.py +22 -0
- pyromt-2.4.1/srigram/raw/types/phone/exported_group_call_invite.py +71 -0
- pyromt-2.4.1/srigram/raw/types/phone/group_call.py +103 -0
- pyromt-2.4.1/srigram/raw/types/phone/group_call_stars.py +95 -0
- pyromt-2.4.1/srigram/raw/types/phone/group_call_stream_channels.py +71 -0
- pyromt-2.4.1/srigram/raw/types/phone/group_call_stream_rtmp_url.py +79 -0
- pyromt-2.4.1/srigram/raw/types/phone/group_participants.py +111 -0
- pyromt-2.4.1/srigram/raw/types/phone/join_as_peers.py +87 -0
- pyromt-2.4.1/srigram/raw/types/phone/phone_call.py +81 -0
- pyromt-2.4.1/srigram/raw/types/phone_call.py +164 -0
- pyromt-2.4.1/srigram/raw/types/phone_call_accepted.py +118 -0
- pyromt-2.4.1/srigram/raw/types/phone_call_discard_reason_busy.py +57 -0
- pyromt-2.4.1/srigram/raw/types/phone_call_discard_reason_disconnect.py +57 -0
- pyromt-2.4.1/srigram/raw/types/phone_call_discard_reason_hangup.py +57 -0
- pyromt-2.4.1/srigram/raw/types/phone_call_discard_reason_migrate_conference_call.py +62 -0
- pyromt-2.4.1/srigram/raw/types/phone_call_discard_reason_missed.py +57 -0
- pyromt-2.4.1/srigram/raw/types/phone_call_discarded.py +101 -0
- pyromt-2.4.1/srigram/raw/types/phone_call_empty.py +62 -0
- pyromt-2.4.1/srigram/raw/types/phone_call_protocol.py +92 -0
- pyromt-2.4.1/srigram/raw/types/phone_call_requested.py +118 -0
- pyromt-2.4.1/srigram/raw/types/phone_call_waiting.py +119 -0
- pyromt-2.4.1/srigram/raw/types/phone_connection.py +102 -0
- pyromt-2.4.1/srigram/raw/types/phone_connection_webrtc.py +116 -0
- pyromt-2.4.1/srigram/raw/types/photo.py +120 -0
- pyromt-2.4.1/srigram/raw/types/photo_cached_size.py +86 -0
- pyromt-2.4.1/srigram/raw/types/photo_empty.py +62 -0
- pyromt-2.4.1/srigram/raw/types/photo_path_size.py +70 -0
- pyromt-2.4.1/srigram/raw/types/photo_size.py +86 -0
- pyromt-2.4.1/srigram/raw/types/photo_size_empty.py +62 -0
- pyromt-2.4.1/srigram/raw/types/photo_size_progressive.py +86 -0
- pyromt-2.4.1/srigram/raw/types/photo_stripped_size.py +70 -0
- pyromt-2.4.1/srigram/raw/types/photos/__init__.py +17 -0
- pyromt-2.4.1/srigram/raw/types/photos/photo.py +81 -0
- pyromt-2.4.1/srigram/raw/types/photos/photos.py +79 -0
- pyromt-2.4.1/srigram/raw/types/photos/photos_slice.py +87 -0
- pyromt-2.4.1/srigram/raw/types/poll.py +122 -0
- pyromt-2.4.1/srigram/raw/types/poll_answer.py +70 -0
- pyromt-2.4.1/srigram/raw/types/poll_answer_voters.py +84 -0
- pyromt-2.4.1/srigram/raw/types/poll_results.py +110 -0
- pyromt-2.4.1/srigram/raw/types/pong.py +80 -0
- pyromt-2.4.1/srigram/raw/types/popular_contact.py +70 -0
- pyromt-2.4.1/srigram/raw/types/post_address.py +102 -0
- pyromt-2.4.1/srigram/raw/types/post_interaction_counters_message.py +86 -0
- pyromt-2.4.1/srigram/raw/types/post_interaction_counters_story.py +86 -0
- pyromt-2.4.1/srigram/raw/types/pq_inner_data.py +102 -0
- pyromt-2.4.1/srigram/raw/types/pq_inner_data_dc.py +110 -0
- pyromt-2.4.1/srigram/raw/types/pq_inner_data_temp.py +110 -0
- pyromt-2.4.1/srigram/raw/types/pq_inner_data_temp_dc.py +118 -0
- pyromt-2.4.1/srigram/raw/types/premium/__init__.py +17 -0
- pyromt-2.4.1/srigram/raw/types/premium/boosts_list.py +99 -0
- pyromt-2.4.1/srigram/raw/types/premium/boosts_status.py +151 -0
- pyromt-2.4.1/srigram/raw/types/premium/my_boosts.py +88 -0
- pyromt-2.4.1/srigram/raw/types/premium_gift_code_option.py +115 -0
- pyromt-2.4.1/srigram/raw/types/premium_subscription_option.py +118 -0
- pyromt-2.4.1/srigram/raw/types/prepaid_giveaway.py +86 -0
- pyromt-2.4.1/srigram/raw/types/prepaid_stars_giveaway.py +94 -0
- pyromt-2.4.1/srigram/raw/types/privacy_key_about.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_key_added_by_phone.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_key_birthday.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_key_chat_invite.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_key_forwards.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_key_no_paid_messages.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_key_phone_call.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_key_phone_number.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_key_phone_p2_p.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_key_profile_photo.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_key_saved_music.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_key_star_gifts_auto_save.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_key_status_timestamp.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_key_voice_messages.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_value_allow_all.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_value_allow_bots.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_value_allow_chat_participants.py +62 -0
- pyromt-2.4.1/srigram/raw/types/privacy_value_allow_close_friends.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_value_allow_contacts.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_value_allow_premium.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_value_allow_users.py +62 -0
- pyromt-2.4.1/srigram/raw/types/privacy_value_disallow_all.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_value_disallow_bots.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_value_disallow_chat_participants.py +62 -0
- pyromt-2.4.1/srigram/raw/types/privacy_value_disallow_contacts.py +57 -0
- pyromt-2.4.1/srigram/raw/types/privacy_value_disallow_users.py +62 -0
- pyromt-2.4.1/srigram/raw/types/profile_tab_files.py +57 -0
- pyromt-2.4.1/srigram/raw/types/profile_tab_gifs.py +57 -0
- pyromt-2.4.1/srigram/raw/types/profile_tab_gifts.py +57 -0
- pyromt-2.4.1/srigram/raw/types/profile_tab_links.py +57 -0
- pyromt-2.4.1/srigram/raw/types/profile_tab_media.py +57 -0
- pyromt-2.4.1/srigram/raw/types/profile_tab_music.py +57 -0
- pyromt-2.4.1/srigram/raw/types/profile_tab_posts.py +57 -0
- pyromt-2.4.1/srigram/raw/types/profile_tab_voice.py +57 -0
- pyromt-2.4.1/srigram/raw/types/public_forward_message.py +62 -0
- pyromt-2.4.1/srigram/raw/types/public_forward_story.py +70 -0
- pyromt-2.4.1/srigram/raw/types/quick_reply.py +86 -0
- pyromt-2.4.1/srigram/raw/types/reaction_count.py +81 -0
- pyromt-2.4.1/srigram/raw/types/reaction_custom_emoji.py +62 -0
- pyromt-2.4.1/srigram/raw/types/reaction_emoji.py +62 -0
- pyromt-2.4.1/srigram/raw/types/reaction_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/reaction_notifications_from_all.py +57 -0
- pyromt-2.4.1/srigram/raw/types/reaction_notifications_from_contacts.py +57 -0
- pyromt-2.4.1/srigram/raw/types/reaction_paid.py +57 -0
- pyromt-2.4.1/srigram/raw/types/reactions_notify_settings.py +102 -0
- pyromt-2.4.1/srigram/raw/types/read_participant_date.py +79 -0
- pyromt-2.4.1/srigram/raw/types/received_notify_message.py +79 -0
- pyromt-2.4.1/srigram/raw/types/recent_me_url_chat.py +70 -0
- pyromt-2.4.1/srigram/raw/types/recent_me_url_chat_invite.py +70 -0
- pyromt-2.4.1/srigram/raw/types/recent_me_url_sticker_set.py +70 -0
- pyromt-2.4.1/srigram/raw/types/recent_me_url_unknown.py +62 -0
- pyromt-2.4.1/srigram/raw/types/recent_me_url_user.py +70 -0
- pyromt-2.4.1/srigram/raw/types/recent_story.py +80 -0
- pyromt-2.4.1/srigram/raw/types/reply_inline_markup.py +62 -0
- pyromt-2.4.1/srigram/raw/types/reply_keyboard_force_reply.py +77 -0
- pyromt-2.4.1/srigram/raw/types/reply_keyboard_hide.py +62 -0
- pyromt-2.4.1/srigram/raw/types/reply_keyboard_markup.py +97 -0
- pyromt-2.4.1/srigram/raw/types/report_result_add_comment.py +80 -0
- pyromt-2.4.1/srigram/raw/types/report_result_choose_option.py +80 -0
- pyromt-2.4.1/srigram/raw/types/report_result_reported.py +67 -0
- pyromt-2.4.1/srigram/raw/types/request_peer_type_broadcast.py +91 -0
- pyromt-2.4.1/srigram/raw/types/request_peer_type_chat.py +106 -0
- pyromt-2.4.1/srigram/raw/types/request_peer_type_user.py +74 -0
- pyromt-2.4.1/srigram/raw/types/requested_peer_channel.py +92 -0
- pyromt-2.4.1/srigram/raw/types/requested_peer_chat.py +83 -0
- pyromt-2.4.1/srigram/raw/types/requested_peer_user.py +101 -0
- pyromt-2.4.1/srigram/raw/types/requirement_to_contact_empty.py +66 -0
- pyromt-2.4.1/srigram/raw/types/requirement_to_contact_paid_messages.py +71 -0
- pyromt-2.4.1/srigram/raw/types/requirement_to_contact_premium.py +66 -0
- pyromt-2.4.1/srigram/raw/types/res_pq.py +96 -0
- pyromt-2.4.1/srigram/raw/types/restriction_reason.py +78 -0
- pyromt-2.4.1/srigram/raw/types/rpc_answer_dropped.py +87 -0
- pyromt-2.4.1/srigram/raw/types/rpc_answer_dropped_running.py +66 -0
- pyromt-2.4.1/srigram/raw/types/rpc_answer_unknown.py +66 -0
- pyromt-2.4.1/srigram/raw/types/rpc_error.py +70 -0
- pyromt-2.4.1/srigram/raw/types/rpc_result.py +70 -0
- pyromt-2.4.1/srigram/raw/types/saved_dialog.py +78 -0
- pyromt-2.4.1/srigram/raw/types/saved_phone_contact.py +95 -0
- pyromt-2.4.1/srigram/raw/types/saved_reaction_tag.py +81 -0
- pyromt-2.4.1/srigram/raw/types/saved_star_gift.py +246 -0
- pyromt-2.4.1/srigram/raw/types/search_posts_flood.py +104 -0
- pyromt-2.4.1/srigram/raw/types/search_result_position.py +78 -0
- pyromt-2.4.1/srigram/raw/types/search_results_calendar_period.py +86 -0
- pyromt-2.4.1/srigram/raw/types/secure_credentials_encrypted.py +78 -0
- pyromt-2.4.1/srigram/raw/types/secure_data.py +78 -0
- pyromt-2.4.1/srigram/raw/types/secure_file.py +110 -0
- pyromt-2.4.1/srigram/raw/types/secure_file_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py +62 -0
- pyromt-2.4.1/srigram/raw/types/secure_password_kdf_algo_sha512.py +62 -0
- pyromt-2.4.1/srigram/raw/types/secure_password_kdf_algo_unknown.py +57 -0
- pyromt-2.4.1/srigram/raw/types/secure_plain_email.py +62 -0
- pyromt-2.4.1/srigram/raw/types/secure_plain_phone.py +62 -0
- pyromt-2.4.1/srigram/raw/types/secure_required_type.py +82 -0
- pyromt-2.4.1/srigram/raw/types/secure_required_type_one_of.py +62 -0
- pyromt-2.4.1/srigram/raw/types/secure_secret_settings.py +78 -0
- pyromt-2.4.1/srigram/raw/types/secure_value.py +153 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_error.py +78 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_error_data.py +86 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_error_file.py +78 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_error_files.py +78 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_error_front_side.py +78 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_error_reverse_side.py +78 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_error_selfie.py +78 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_error_translation_file.py +78 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_error_translation_files.py +78 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_hash.py +70 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_type_address.py +57 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_type_bank_statement.py +57 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_type_driver_license.py +57 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_type_email.py +57 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_type_identity_card.py +57 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_type_internal_passport.py +57 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_type_passport.py +57 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_type_passport_registration.py +57 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_type_personal_details.py +57 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_type_phone.py +57 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_type_rental_agreement.py +57 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_type_temporary_registration.py +57 -0
- pyromt-2.4.1/srigram/raw/types/secure_value_type_utility_bill.py +57 -0
- pyromt-2.4.1/srigram/raw/types/send_as_peer.py +70 -0
- pyromt-2.4.1/srigram/raw/types/send_message_cancel_action.py +57 -0
- pyromt-2.4.1/srigram/raw/types/send_message_choose_contact_action.py +57 -0
- pyromt-2.4.1/srigram/raw/types/send_message_choose_sticker_action.py +57 -0
- pyromt-2.4.1/srigram/raw/types/send_message_emoji_interaction.py +78 -0
- pyromt-2.4.1/srigram/raw/types/send_message_emoji_interaction_seen.py +62 -0
- pyromt-2.4.1/srigram/raw/types/send_message_game_play_action.py +57 -0
- pyromt-2.4.1/srigram/raw/types/send_message_geo_location_action.py +57 -0
- pyromt-2.4.1/srigram/raw/types/send_message_history_import_action.py +62 -0
- pyromt-2.4.1/srigram/raw/types/send_message_record_audio_action.py +57 -0
- pyromt-2.4.1/srigram/raw/types/send_message_record_round_action.py +57 -0
- pyromt-2.4.1/srigram/raw/types/send_message_record_video_action.py +57 -0
- pyromt-2.4.1/srigram/raw/types/send_message_text_draft_action.py +70 -0
- pyromt-2.4.1/srigram/raw/types/send_message_typing_action.py +57 -0
- pyromt-2.4.1/srigram/raw/types/send_message_upload_audio_action.py +62 -0
- pyromt-2.4.1/srigram/raw/types/send_message_upload_document_action.py +62 -0
- pyromt-2.4.1/srigram/raw/types/send_message_upload_photo_action.py +62 -0
- pyromt-2.4.1/srigram/raw/types/send_message_upload_round_action.py +62 -0
- pyromt-2.4.1/srigram/raw/types/send_message_upload_video_action.py +62 -0
- pyromt-2.4.1/srigram/raw/types/server_dh_inner_data.py +102 -0
- pyromt-2.4.1/srigram/raw/types/server_dh_params_fail.py +87 -0
- pyromt-2.4.1/srigram/raw/types/server_dh_params_ok.py +87 -0
- pyromt-2.4.1/srigram/raw/types/shipping_option.py +78 -0
- pyromt-2.4.1/srigram/raw/types/sms_job.py +87 -0
- pyromt-2.4.1/srigram/raw/types/smsjobs/__init__.py +16 -0
- pyromt-2.4.1/srigram/raw/types/smsjobs/eligible_to_join.py +79 -0
- pyromt-2.4.1/srigram/raw/types/smsjobs/status.py +128 -0
- pyromt-2.4.1/srigram/raw/types/speaking_in_group_call_action.py +57 -0
- pyromt-2.4.1/srigram/raw/types/sponsored_message.py +184 -0
- pyromt-2.4.1/srigram/raw/types/sponsored_message_report_option.py +70 -0
- pyromt-2.4.1/srigram/raw/types/sponsored_peer.py +90 -0
- pyromt-2.4.1/srigram/raw/types/star_gift.py +285 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_active_auction_state.py +78 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_attribute_backdrop.py +110 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_attribute_counter.py +70 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_attribute_id_backdrop.py +62 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_attribute_id_model.py +62 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_attribute_id_pattern.py +62 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_attribute_model.py +86 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_attribute_original_details.py +92 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_attribute_pattern.py +78 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_attribute_rarity.py +62 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_attribute_rarity_epic.py +57 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_attribute_rarity_legendary.py +57 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_attribute_rarity_rare.py +57 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_attribute_rarity_uncommon.py +57 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_auction_acquired_gift.py +121 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_auction_round.py +70 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_auction_round_extendable.py +86 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_auction_state.py +150 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_auction_state_finished.py +107 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_auction_state_not_modified.py +57 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_auction_user_state.py +107 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_background.py +78 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_collection.py +108 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_unique.py +282 -0
- pyromt-2.4.1/srigram/raw/types/star_gift_upgrade_price.py +70 -0
- pyromt-2.4.1/srigram/raw/types/star_ref_program.py +109 -0
- pyromt-2.4.1/srigram/raw/types/stars_amount.py +70 -0
- pyromt-2.4.1/srigram/raw/types/stars_gift_option.py +104 -0
- pyromt-2.4.1/srigram/raw/types/stars_giveaway_option.py +126 -0
- pyromt-2.4.1/srigram/raw/types/stars_giveaway_winners_option.py +78 -0
- pyromt-2.4.1/srigram/raw/types/stars_rating.py +89 -0
- pyromt-2.4.1/srigram/raw/types/stars_revenue_status.py +95 -0
- pyromt-2.4.1/srigram/raw/types/stars_subscription.py +149 -0
- pyromt-2.4.1/srigram/raw/types/stars_subscription_pricing.py +70 -0
- pyromt-2.4.1/srigram/raw/types/stars_ton_amount.py +62 -0
- pyromt-2.4.1/srigram/raw/types/stars_topup_option.py +104 -0
- pyromt-2.4.1/srigram/raw/types/stars_transaction.py +348 -0
- pyromt-2.4.1/srigram/raw/types/stars_transaction_peer.py +62 -0
- pyromt-2.4.1/srigram/raw/types/stars_transaction_peer_ads.py +57 -0
- pyromt-2.4.1/srigram/raw/types/stars_transaction_peer_api.py +57 -0
- pyromt-2.4.1/srigram/raw/types/stars_transaction_peer_app_store.py +57 -0
- pyromt-2.4.1/srigram/raw/types/stars_transaction_peer_fragment.py +57 -0
- pyromt-2.4.1/srigram/raw/types/stars_transaction_peer_play_market.py +57 -0
- pyromt-2.4.1/srigram/raw/types/stars_transaction_peer_premium_bot.py +57 -0
- pyromt-2.4.1/srigram/raw/types/stars_transaction_peer_unsupported.py +57 -0
- pyromt-2.4.1/srigram/raw/types/stats/__init__.py +19 -0
- pyromt-2.4.1/srigram/raw/types/stats/broadcast_stats.py +239 -0
- pyromt-2.4.1/srigram/raw/types/stats/megagroup_stats.py +199 -0
- pyromt-2.4.1/srigram/raw/types/stats/message_stats.py +79 -0
- pyromt-2.4.1/srigram/raw/types/stats/public_forwards.py +107 -0
- pyromt-2.4.1/srigram/raw/types/stats/story_stats.py +79 -0
- pyromt-2.4.1/srigram/raw/types/stats_abs_value_and_prev.py +70 -0
- pyromt-2.4.1/srigram/raw/types/stats_date_range_days.py +70 -0
- pyromt-2.4.1/srigram/raw/types/stats_graph.py +82 -0
- pyromt-2.4.1/srigram/raw/types/stats_graph_async.py +71 -0
- pyromt-2.4.1/srigram/raw/types/stats_graph_error.py +71 -0
- pyromt-2.4.1/srigram/raw/types/stats_group_top_admin.py +86 -0
- pyromt-2.4.1/srigram/raw/types/stats_group_top_inviter.py +70 -0
- pyromt-2.4.1/srigram/raw/types/stats_group_top_poster.py +78 -0
- pyromt-2.4.1/srigram/raw/types/stats_percent_value.py +70 -0
- pyromt-2.4.1/srigram/raw/types/stats_url.py +62 -0
- pyromt-2.4.1/srigram/raw/types/sticker_keyword.py +70 -0
- pyromt-2.4.1/srigram/raw/types/sticker_pack.py +70 -0
- pyromt-2.4.1/srigram/raw/types/sticker_set.py +192 -0
- pyromt-2.4.1/srigram/raw/types/sticker_set_covered.py +79 -0
- pyromt-2.4.1/srigram/raw/types/sticker_set_full_covered.py +95 -0
- pyromt-2.4.1/srigram/raw/types/sticker_set_multi_covered.py +79 -0
- pyromt-2.4.1/srigram/raw/types/sticker_set_no_covered.py +71 -0
- pyromt-2.4.1/srigram/raw/types/stickers/__init__.py +15 -0
- pyromt-2.4.1/srigram/raw/types/stickers/suggested_short_name.py +71 -0
- pyromt-2.4.1/srigram/raw/types/storage/__init__.py +24 -0
- pyromt-2.4.1/srigram/raw/types/storage/file_gif.py +57 -0
- pyromt-2.4.1/srigram/raw/types/storage/file_jpeg.py +57 -0
- pyromt-2.4.1/srigram/raw/types/storage/file_mov.py +57 -0
- pyromt-2.4.1/srigram/raw/types/storage/file_mp3.py +57 -0
- pyromt-2.4.1/srigram/raw/types/storage/file_mp4.py +57 -0
- pyromt-2.4.1/srigram/raw/types/storage/file_partial.py +57 -0
- pyromt-2.4.1/srigram/raw/types/storage/file_pdf.py +57 -0
- pyromt-2.4.1/srigram/raw/types/storage/file_png.py +57 -0
- pyromt-2.4.1/srigram/raw/types/storage/file_unknown.py +57 -0
- pyromt-2.4.1/srigram/raw/types/storage/file_webp.py +57 -0
- pyromt-2.4.1/srigram/raw/types/stories/__init__.py +25 -0
- pyromt-2.4.1/srigram/raw/types/stories/albums.py +79 -0
- pyromt-2.4.1/srigram/raw/types/stories/albums_not_modified.py +66 -0
- pyromt-2.4.1/srigram/raw/types/stories/all_stories.py +119 -0
- pyromt-2.4.1/srigram/raw/types/stories/all_stories_not_modified.py +82 -0
- pyromt-2.4.1/srigram/raw/types/stories/can_send_story_count.py +71 -0
- pyromt-2.4.1/srigram/raw/types/stories/found_stories.py +106 -0
- pyromt-2.4.1/srigram/raw/types/stories/peer_stories.py +87 -0
- pyromt-2.4.1/srigram/raw/types/stories/stories.py +110 -0
- pyromt-2.4.1/srigram/raw/types/stories/story_reactions_list.py +106 -0
- pyromt-2.4.1/srigram/raw/types/stories/story_views.py +79 -0
- pyromt-2.4.1/srigram/raw/types/stories/story_views_list.py +130 -0
- pyromt-2.4.1/srigram/raw/types/stories_stealth_mode.py +74 -0
- pyromt-2.4.1/srigram/raw/types/story_album.py +102 -0
- pyromt-2.4.1/srigram/raw/types/story_fwd_header.py +90 -0
- pyromt-2.4.1/srigram/raw/types/story_item.py +231 -0
- pyromt-2.4.1/srigram/raw/types/story_item_deleted.py +62 -0
- pyromt-2.4.1/srigram/raw/types/story_item_skipped.py +92 -0
- pyromt-2.4.1/srigram/raw/types/story_reaction.py +78 -0
- pyromt-2.4.1/srigram/raw/types/story_reaction_public_forward.py +62 -0
- pyromt-2.4.1/srigram/raw/types/story_reaction_public_repost.py +70 -0
- pyromt-2.4.1/srigram/raw/types/story_view.py +94 -0
- pyromt-2.4.1/srigram/raw/types/story_view_public_forward.py +76 -0
- pyromt-2.4.1/srigram/raw/types/story_view_public_repost.py +84 -0
- pyromt-2.4.1/srigram/raw/types/story_views.py +108 -0
- pyromt-2.4.1/srigram/raw/types/suggested_post.py +87 -0
- pyromt-2.4.1/srigram/raw/types/text_anchor.py +70 -0
- pyromt-2.4.1/srigram/raw/types/text_bold.py +62 -0
- pyromt-2.4.1/srigram/raw/types/text_concat.py +62 -0
- pyromt-2.4.1/srigram/raw/types/text_email.py +70 -0
- pyromt-2.4.1/srigram/raw/types/text_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/text_fixed.py +62 -0
- pyromt-2.4.1/srigram/raw/types/text_image.py +78 -0
- pyromt-2.4.1/srigram/raw/types/text_italic.py +62 -0
- pyromt-2.4.1/srigram/raw/types/text_marked.py +62 -0
- pyromt-2.4.1/srigram/raw/types/text_phone.py +70 -0
- pyromt-2.4.1/srigram/raw/types/text_plain.py +62 -0
- pyromt-2.4.1/srigram/raw/types/text_strike.py +62 -0
- pyromt-2.4.1/srigram/raw/types/text_subscript.py +62 -0
- pyromt-2.4.1/srigram/raw/types/text_superscript.py +62 -0
- pyromt-2.4.1/srigram/raw/types/text_underline.py +62 -0
- pyromt-2.4.1/srigram/raw/types/text_url.py +78 -0
- pyromt-2.4.1/srigram/raw/types/text_with_entities.py +79 -0
- pyromt-2.4.1/srigram/raw/types/theme.py +155 -0
- pyromt-2.4.1/srigram/raw/types/theme_settings.py +107 -0
- pyromt-2.4.1/srigram/raw/types/timezone.py +78 -0
- pyromt-2.4.1/srigram/raw/types/todo_completion.py +78 -0
- pyromt-2.4.1/srigram/raw/types/todo_item.py +70 -0
- pyromt-2.4.1/srigram/raw/types/todo_list.py +84 -0
- pyromt-2.4.1/srigram/raw/types/top_peer.py +70 -0
- pyromt-2.4.1/srigram/raw/types/top_peer_category_bots_app.py +57 -0
- pyromt-2.4.1/srigram/raw/types/top_peer_category_bots_inline.py +57 -0
- pyromt-2.4.1/srigram/raw/types/top_peer_category_bots_pm.py +57 -0
- pyromt-2.4.1/srigram/raw/types/top_peer_category_channels.py +57 -0
- pyromt-2.4.1/srigram/raw/types/top_peer_category_correspondents.py +57 -0
- pyromt-2.4.1/srigram/raw/types/top_peer_category_forward_chats.py +57 -0
- pyromt-2.4.1/srigram/raw/types/top_peer_category_forward_users.py +57 -0
- pyromt-2.4.1/srigram/raw/types/top_peer_category_groups.py +57 -0
- pyromt-2.4.1/srigram/raw/types/top_peer_category_peers.py +78 -0
- pyromt-2.4.1/srigram/raw/types/top_peer_category_phone_calls.py +57 -0
- pyromt-2.4.1/srigram/raw/types/true_.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_attach_menu_bots.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_auto_save_settings.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_business_connect.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_callback_query.py +114 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_chat_boost.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_chat_invite_requester.py +102 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_commands.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_delete_business_message.py +86 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_edit_business_message.py +90 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_inline_query.py +108 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_inline_send.py +100 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_menu_button.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_message_reaction.py +110 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_message_reactions.py +94 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_new_business_message.py +90 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_precheckout_query.py +115 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_purchased_paid_media.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_shipping_query.py +86 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_stopped.py +86 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_webhook_json.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_bot_webhook_json_query.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_business_bot_callback_query.py +115 -0
- pyromt-2.4.1/srigram/raw/types/update_channel.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_channel_available_messages.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_channel_message_forwards.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_channel_message_views.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_channel_participant.py +132 -0
- pyromt-2.4.1/srigram/raw/types/update_channel_read_messages_contents.py +91 -0
- pyromt-2.4.1/srigram/raw/types/update_channel_too_long.py +73 -0
- pyromt-2.4.1/srigram/raw/types/update_channel_user_typing.py +89 -0
- pyromt-2.4.1/srigram/raw/types/update_channel_view_forum_as_messages.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_channel_web_page.py +86 -0
- pyromt-2.4.1/srigram/raw/types/update_chat.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_chat_default_banned_rights.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_chat_participant.py +126 -0
- pyromt-2.4.1/srigram/raw/types/update_chat_participant_add.py +94 -0
- pyromt-2.4.1/srigram/raw/types/update_chat_participant_admin.py +86 -0
- pyromt-2.4.1/srigram/raw/types/update_chat_participant_delete.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_chat_participants.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_chat_user_typing.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_config.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_contacts_reset.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_dc_options.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_delete_channel_messages.py +86 -0
- pyromt-2.4.1/srigram/raw/types/update_delete_group_call_messages.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_delete_messages.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_delete_quick_reply.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_delete_quick_reply_messages.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_delete_scheduled_messages.py +82 -0
- pyromt-2.4.1/srigram/raw/types/update_dialog_filter.py +74 -0
- pyromt-2.4.1/srigram/raw/types/update_dialog_filter_order.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_dialog_filters.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_dialog_pinned.py +79 -0
- pyromt-2.4.1/srigram/raw/types/update_dialog_unread_mark.py +80 -0
- pyromt-2.4.1/srigram/raw/types/update_draft_message.py +91 -0
- pyromt-2.4.1/srigram/raw/types/update_edit_channel_message.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_edit_message.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_emoji_game_info.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_encrypted_chat_typing.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_encrypted_messages_read.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_encryption.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_faved_stickers.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_folder_peers.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_geo_live_viewed.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_group_call.py +80 -0
- pyromt-2.4.1/srigram/raw/types/update_group_call_chain_blocks.py +86 -0
- pyromt-2.4.1/srigram/raw/types/update_group_call_connection.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_group_call_encrypted_message.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_group_call_message.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_group_call_participants.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_inline_bot_callback_query.py +106 -0
- pyromt-2.4.1/srigram/raw/types/update_lang_pack.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_lang_pack_too_long.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_login_token.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_message_extended_media.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_message_id.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_message_poll.py +82 -0
- pyromt-2.4.1/srigram/raw/types/update_message_poll_vote.py +86 -0
- pyromt-2.4.1/srigram/raw/types/update_message_reactions.py +99 -0
- pyromt-2.4.1/srigram/raw/types/update_mono_forum_no_paid_exception.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_move_sticker_set_to_top.py +76 -0
- pyromt-2.4.1/srigram/raw/types/update_new_authorization.py +97 -0
- pyromt-2.4.1/srigram/raw/types/update_new_channel_message.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_new_encrypted_message.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_new_message.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_new_quick_reply.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_new_scheduled_message.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_new_sticker_set.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_new_story_reaction.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_notify_settings.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_paid_reaction_privacy.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_peer_blocked.py +76 -0
- pyromt-2.4.1/srigram/raw/types/update_peer_history_ttl.py +73 -0
- pyromt-2.4.1/srigram/raw/types/update_peer_located.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_peer_settings.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_peer_wallpaper.py +80 -0
- pyromt-2.4.1/srigram/raw/types/update_pending_join_requests.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_phone_call.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_phone_call_signaling_data.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_pinned_channel_messages.py +94 -0
- pyromt-2.4.1/srigram/raw/types/update_pinned_dialogs.py +75 -0
- pyromt-2.4.1/srigram/raw/types/update_pinned_forum_topic.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_pinned_forum_topics.py +74 -0
- pyromt-2.4.1/srigram/raw/types/update_pinned_messages.py +94 -0
- pyromt-2.4.1/srigram/raw/types/update_pinned_saved_dialogs.py +66 -0
- pyromt-2.4.1/srigram/raw/types/update_privacy.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_pts_changed.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_quick_replies.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_quick_reply_message.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_read_channel_discussion_inbox.py +98 -0
- pyromt-2.4.1/srigram/raw/types/update_read_channel_discussion_outbox.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_read_channel_inbox.py +97 -0
- pyromt-2.4.1/srigram/raw/types/update_read_channel_outbox.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_read_featured_emoji_stickers.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_read_featured_stickers.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_read_history_inbox.py +114 -0
- pyromt-2.4.1/srigram/raw/types/update_read_history_outbox.py +86 -0
- pyromt-2.4.1/srigram/raw/types/update_read_messages_contents.py +89 -0
- pyromt-2.4.1/srigram/raw/types/update_read_mono_forum_inbox.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_read_mono_forum_outbox.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_read_stories.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_recent_emoji_statuses.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_recent_reactions.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_recent_stickers.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_saved_dialog_pinned.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_saved_gifs.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_saved_reaction_tags.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_saved_ringtones.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_sent_phone_code.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_sent_story_reaction.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_service_notification.py +109 -0
- pyromt-2.4.1/srigram/raw/types/update_short.py +205 -0
- pyromt-2.4.1/srigram/raw/types/update_short_chat_message.py +319 -0
- pyromt-2.4.1/srigram/raw/types/update_short_message.py +311 -0
- pyromt-2.4.1/srigram/raw/types/update_short_sent_message.py +258 -0
- pyromt-2.4.1/srigram/raw/types/update_sms_job.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_star_gift_auction_state.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_star_gift_auction_user_state.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_star_gift_craft_fail.py +57 -0
- pyromt-2.4.1/srigram/raw/types/update_stars_balance.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_stars_revenue_status.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_sticker_sets.py +68 -0
- pyromt-2.4.1/srigram/raw/types/update_sticker_sets_order.py +76 -0
- pyromt-2.4.1/srigram/raw/types/update_stories_stealth_mode.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_story.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_story_id.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_theme.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_transcribed_audio.py +94 -0
- pyromt-2.4.1/srigram/raw/types/update_user.py +62 -0
- pyromt-2.4.1/srigram/raw/types/update_user_emoji_status.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_user_name.py +86 -0
- pyromt-2.4.1/srigram/raw/types/update_user_phone.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_user_status.py +70 -0
- pyromt-2.4.1/srigram/raw/types/update_user_typing.py +81 -0
- pyromt-2.4.1/srigram/raw/types/update_web_page.py +78 -0
- pyromt-2.4.1/srigram/raw/types/update_web_view_result_sent.py +62 -0
- pyromt-2.4.1/srigram/raw/types/updates/__init__.py +22 -0
- pyromt-2.4.1/srigram/raw/types/updates/channel_difference.py +120 -0
- pyromt-2.4.1/srigram/raw/types/updates/channel_difference_empty.py +88 -0
- pyromt-2.4.1/srigram/raw/types/updates/channel_difference_too_long.py +112 -0
- pyromt-2.4.1/srigram/raw/types/updates/difference.py +111 -0
- pyromt-2.4.1/srigram/raw/types/updates/difference_empty.py +79 -0
- pyromt-2.4.1/srigram/raw/types/updates/difference_slice.py +111 -0
- pyromt-2.4.1/srigram/raw/types/updates/difference_too_long.py +71 -0
- pyromt-2.4.1/srigram/raw/types/updates/state.py +103 -0
- pyromt-2.4.1/srigram/raw/types/updates_combined.py +237 -0
- pyromt-2.4.1/srigram/raw/types/updates_t.py +229 -0
- pyromt-2.4.1/srigram/raw/types/updates_too_long.py +192 -0
- pyromt-2.4.1/srigram/raw/types/upload/__init__.py +19 -0
- pyromt-2.4.1/srigram/raw/types/upload/cdn_file.py +71 -0
- pyromt-2.4.1/srigram/raw/types/upload/cdn_file_reupload_needed.py +71 -0
- pyromt-2.4.1/srigram/raw/types/upload/file.py +87 -0
- pyromt-2.4.1/srigram/raw/types/upload/file_cdn_redirect.py +103 -0
- pyromt-2.4.1/srigram/raw/types/upload/web_file.py +103 -0
- pyromt-2.4.1/srigram/raw/types/url_auth_result_accepted.py +75 -0
- pyromt-2.4.1/srigram/raw/types/url_auth_result_default.py +67 -0
- pyromt-2.4.1/srigram/raw/types/url_auth_result_request.py +130 -0
- pyromt-2.4.1/srigram/raw/types/user.py +425 -0
- pyromt-2.4.1/srigram/raw/types/user_empty.py +78 -0
- pyromt-2.4.1/srigram/raw/types/user_full.py +514 -0
- pyromt-2.4.1/srigram/raw/types/user_profile_photo.py +93 -0
- pyromt-2.4.1/srigram/raw/types/user_profile_photo_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/user_status_empty.py +57 -0
- pyromt-2.4.1/srigram/raw/types/user_status_last_month.py +62 -0
- pyromt-2.4.1/srigram/raw/types/user_status_last_week.py +62 -0
- pyromt-2.4.1/srigram/raw/types/user_status_offline.py +62 -0
- pyromt-2.4.1/srigram/raw/types/user_status_online.py +62 -0
- pyromt-2.4.1/srigram/raw/types/user_status_recently.py +62 -0
- pyromt-2.4.1/srigram/raw/types/username.py +76 -0
- pyromt-2.4.1/srigram/raw/types/users/__init__.py +19 -0
- pyromt-2.4.1/srigram/raw/types/users/saved_music.py +80 -0
- pyromt-2.4.1/srigram/raw/types/users/saved_music_not_modified.py +72 -0
- pyromt-2.4.1/srigram/raw/types/users/user_full.py +87 -0
- pyromt-2.4.1/srigram/raw/types/users/users.py +71 -0
- pyromt-2.4.1/srigram/raw/types/users/users_slice.py +79 -0
- pyromt-2.4.1/srigram/raw/types/video_size.py +97 -0
- pyromt-2.4.1/srigram/raw/types/video_size_emoji_markup.py +70 -0
- pyromt-2.4.1/srigram/raw/types/video_size_sticker_markup.py +78 -0
- pyromt-2.4.1/srigram/raw/types/wall_paper.py +133 -0
- pyromt-2.4.1/srigram/raw/types/wall_paper_no_file.py +97 -0
- pyromt-2.4.1/srigram/raw/types/wall_paper_settings.py +131 -0
- pyromt-2.4.1/srigram/raw/types/web_authorization.py +126 -0
- pyromt-2.4.1/srigram/raw/types/web_document.py +94 -0
- pyromt-2.4.1/srigram/raw/types/web_document_no_proxy.py +86 -0
- pyromt-2.4.1/srigram/raw/types/web_page.py +230 -0
- pyromt-2.4.1/srigram/raw/types/web_page_attribute_star_gift_auction.py +70 -0
- pyromt-2.4.1/srigram/raw/types/web_page_attribute_star_gift_collection.py +62 -0
- pyromt-2.4.1/srigram/raw/types/web_page_attribute_sticker_set.py +76 -0
- pyromt-2.4.1/srigram/raw/types/web_page_attribute_story.py +82 -0
- pyromt-2.4.1/srigram/raw/types/web_page_attribute_theme.py +76 -0
- pyromt-2.4.1/srigram/raw/types/web_page_attribute_unique_star_gift.py +62 -0
- pyromt-2.4.1/srigram/raw/types/web_page_empty.py +73 -0
- pyromt-2.4.1/srigram/raw/types/web_page_not_modified.py +65 -0
- pyromt-2.4.1/srigram/raw/types/web_page_pending.py +81 -0
- pyromt-2.4.1/srigram/raw/types/web_view_message_sent.py +75 -0
- pyromt-2.4.1/srigram/raw/types/web_view_result_url.py +97 -0
- pyromt-2.0.106/COPYING +0 -674
- pyromt-2.0.106/COPYING.lesser +0 -165
- pyromt-2.0.106/MANIFEST.in +0 -13
- pyromt-2.0.106/NOTICE +0 -17
- pyromt-2.0.106/PKG-INFO +0 -127
- pyromt-2.0.106/PyroMt.egg-info/PKG-INFO +0 -127
- pyromt-2.0.106/PyroMt.egg-info/SOURCES.txt +0 -442
- pyromt-2.0.106/PyroMt.egg-info/dependency_links.txt +0 -1
- pyromt-2.0.106/PyroMt.egg-info/not-zip-safe +0 -1
- pyromt-2.0.106/PyroMt.egg-info/requires.txt +0 -2
- pyromt-2.0.106/PyroMt.egg-info/top_level.txt +0 -1
- pyromt-2.0.106/README.md +0 -70
- pyromt-2.0.106/compiler/__init__.py +0 -17
- pyromt-2.0.106/compiler/api/__init__.py +0 -17
- pyromt-2.0.106/compiler/api/compiler.py +0 -652
- pyromt-2.0.106/compiler/api/source/main_api.tl +0 -2056
- pyromt-2.0.106/compiler/api/template/combinator.txt +0 -35
- pyromt-2.0.106/compiler/api/template/type.txt +0 -23
- pyromt-2.0.106/compiler/docs/__init__.py +0 -17
- pyromt-2.0.106/compiler/docs/compiler.py +0 -665
- pyromt-2.0.106/compiler/docs/template/page.txt +0 -5
- pyromt-2.0.106/compiler/docs/template/toctree.txt +0 -9
- pyromt-2.0.106/compiler/errors/__init__.py +0 -17
- pyromt-2.0.106/compiler/errors/compiler.py +0 -142
- pyromt-2.0.106/compiler/errors/sort.py +0 -35
- pyromt-2.0.106/compiler/errors/source/400_BAD_REQUEST.tsv +0 -360
- pyromt-2.0.106/compiler/errors/source/403_FORBIDDEN.tsv +0 -28
- pyromt-2.0.106/compiler/errors/source/406_NOT_ACCEPTABLE.tsv +0 -13
- pyromt-2.0.106/compiler/errors/source/420_FLOOD.tsv +0 -6
- pyromt-2.0.106/compiler/errors/source/500_INTERNAL_SERVER_ERROR.tsv +0 -45
- pyromt-2.0.106/compiler/errors/source/503_SERVICE_UNAVAILABLE.tsv +0 -3
- pyromt-2.0.106/pyrogram/__init__.py +0 -42
- pyromt-2.0.106/pyrogram/client.py +0 -1048
- pyromt-2.0.106/pyrogram/connection/__init__.py +0 -19
- pyromt-2.0.106/pyrogram/connection/connection.py +0 -72
- pyromt-2.0.106/pyrogram/connection/transport/__init__.py +0 -19
- pyromt-2.0.106/pyrogram/connection/transport/tcp/__init__.py +0 -24
- pyromt-2.0.106/pyrogram/connection/transport/tcp/tcp.py +0 -123
- pyromt-2.0.106/pyrogram/connection/transport/tcp/tcp_abridged.py +0 -57
- pyromt-2.0.106/pyrogram/connection/transport/tcp/tcp_abridged_o.py +0 -86
- pyromt-2.0.106/pyrogram/connection/transport/tcp/tcp_full.py +0 -64
- pyromt-2.0.106/pyrogram/connection/transport/tcp/tcp_intermediate.py +0 -45
- pyromt-2.0.106/pyrogram/connection/transport/tcp/tcp_intermediate_o.py +0 -79
- pyromt-2.0.106/pyrogram/crypto/__init__.py +0 -17
- pyromt-2.0.106/pyrogram/crypto/aes.py +0 -130
- pyromt-2.0.106/pyrogram/crypto/mtproto.py +0 -100
- pyromt-2.0.106/pyrogram/crypto/prime.py +0 -82
- pyromt-2.0.106/pyrogram/crypto/rsa.py +0 -259
- pyromt-2.0.106/pyrogram/dispatcher.py +0 -259
- pyromt-2.0.106/pyrogram/emoji.py +0 -4019
- pyromt-2.0.106/pyrogram/enums/__init__.py +0 -49
- pyromt-2.0.106/pyrogram/enums/auto_name.py +0 -27
- pyromt-2.0.106/pyrogram/enums/chat_action.py +0 -72
- pyromt-2.0.106/pyrogram/enums/chat_event_action.py +0 -127
- pyromt-2.0.106/pyrogram/enums/chat_member_status.py +0 -43
- pyromt-2.0.106/pyrogram/enums/chat_members_filter.py +0 -42
- pyromt-2.0.106/pyrogram/enums/chat_type.py +0 -40
- pyromt-2.0.106/pyrogram/enums/message_entity_type.py +0 -84
- pyromt-2.0.106/pyrogram/enums/message_media_type.py +0 -70
- pyromt-2.0.106/pyrogram/enums/message_service_type.py +0 -73
- pyromt-2.0.106/pyrogram/enums/messages_filter.py +0 -75
- pyromt-2.0.106/pyrogram/enums/next_code_type.py +0 -39
- pyromt-2.0.106/pyrogram/enums/parse_mode.py +0 -37
- pyromt-2.0.106/pyrogram/enums/poll_type.py +0 -31
- pyromt-2.0.106/pyrogram/enums/sent_code_type.py +0 -45
- pyromt-2.0.106/pyrogram/enums/user_status.py +0 -43
- pyromt-2.0.106/pyrogram/errors/__init__.py +0 -65
- pyromt-2.0.106/pyrogram/errors/rpc_error.py +0 -103
- pyromt-2.0.106/pyrogram/file_id.py +0 -481
- pyromt-2.0.106/pyrogram/filters.py +0 -929
- pyromt-2.0.106/pyrogram/handlers/__init__.py +0 -30
- pyromt-2.0.106/pyrogram/handlers/callback_query_handler.py +0 -49
- pyromt-2.0.106/pyrogram/handlers/chat_join_request_handler.py +0 -49
- pyromt-2.0.106/pyrogram/handlers/chat_member_updated_handler.py +0 -49
- pyromt-2.0.106/pyrogram/handlers/chosen_inline_result_handler.py +0 -50
- pyromt-2.0.106/pyrogram/handlers/deleted_messages_handler.py +0 -61
- pyromt-2.0.106/pyrogram/handlers/disconnect_handler.py +0 -43
- pyromt-2.0.106/pyrogram/handlers/edited_message_handler.py +0 -49
- pyromt-2.0.106/pyrogram/handlers/handler.py +0 -43
- pyromt-2.0.106/pyrogram/handlers/inline_query_handler.py +0 -49
- pyromt-2.0.106/pyrogram/handlers/message_handler.py +0 -49
- pyromt-2.0.106/pyrogram/handlers/poll_handler.py +0 -50
- pyromt-2.0.106/pyrogram/handlers/raw_update_handler.py +0 -67
- pyromt-2.0.106/pyrogram/handlers/user_status_handler.py +0 -47
- pyromt-2.0.106/pyrogram/methods/__init__.py +0 -45
- pyromt-2.0.106/pyrogram/methods/advanced/__init__.py +0 -29
- pyromt-2.0.106/pyrogram/methods/advanced/invoke.py +0 -89
- pyromt-2.0.106/pyrogram/methods/advanced/resolve_peer.py +0 -125
- pyromt-2.0.106/pyrogram/methods/advanced/save_file.py +0 -226
- pyromt-2.0.106/pyrogram/methods/auth/__init__.py +0 -53
- pyromt-2.0.106/pyrogram/methods/auth/accept_terms_of_service.py +0 -44
- pyromt-2.0.106/pyrogram/methods/auth/check_password.py +0 -60
- pyromt-2.0.106/pyrogram/methods/auth/connect.py +0 -51
- pyromt-2.0.106/pyrogram/methods/auth/disconnect.py +0 -40
- pyromt-2.0.106/pyrogram/methods/auth/get_password_hint.py +0 -38
- pyromt-2.0.106/pyrogram/methods/auth/initialize.py +0 -52
- pyromt-2.0.106/pyrogram/methods/auth/log_out.py +0 -51
- pyromt-2.0.106/pyrogram/methods/auth/recover_password.py +0 -57
- pyromt-2.0.106/pyrogram/methods/auth/resend_code.py +0 -64
- pyromt-2.0.106/pyrogram/methods/auth/send_code.py +0 -79
- pyromt-2.0.106/pyrogram/methods/auth/send_recovery_code.py +0 -43
- pyromt-2.0.106/pyrogram/methods/auth/sign_in.py +0 -80
- pyromt-2.0.106/pyrogram/methods/auth/sign_in_bot.py +0 -79
- pyromt-2.0.106/pyrogram/methods/auth/sign_up.py +0 -73
- pyromt-2.0.106/pyrogram/methods/auth/terminate.py +0 -61
- pyromt-2.0.106/pyrogram/methods/bots/__init__.py +0 -55
- pyromt-2.0.106/pyrogram/methods/bots/answer_callback_query.py +0 -81
- pyromt-2.0.106/pyrogram/methods/bots/answer_inline_query.py +0 -112
- pyromt-2.0.106/pyrogram/methods/bots/answer_web_app_query.py +0 -53
- pyromt-2.0.106/pyrogram/methods/bots/delete_bot_commands.py +0 -62
- pyromt-2.0.106/pyrogram/methods/bots/get_bot_commands.py +0 -67
- pyromt-2.0.106/pyrogram/methods/bots/get_bot_default_privileges.py +0 -59
- pyromt-2.0.106/pyrogram/methods/bots/get_chat_menu_button.py +0 -66
- pyromt-2.0.106/pyrogram/methods/bots/get_game_high_scores.py +0 -72
- pyromt-2.0.106/pyrogram/methods/bots/get_inline_bot_results.py +0 -92
- pyromt-2.0.106/pyrogram/methods/bots/request_callback_answer.py +0 -77
- pyromt-2.0.106/pyrogram/methods/bots/send_game.py +0 -100
- pyromt-2.0.106/pyrogram/methods/bots/send_inline_bot_result.py +0 -75
- pyromt-2.0.106/pyrogram/methods/bots/set_bot_commands.py +0 -73
- pyromt-2.0.106/pyrogram/methods/bots/set_bot_default_privileges.py +0 -81
- pyromt-2.0.106/pyrogram/methods/bots/set_chat_menu_button.py +0 -56
- pyromt-2.0.106/pyrogram/methods/bots/set_game_score.py +0 -100
- pyromt-2.0.106/pyrogram/methods/chats/__init__.py +0 -101
- pyromt-2.0.106/pyrogram/methods/chats/add_chat_members.py +0 -90
- pyromt-2.0.106/pyrogram/methods/chats/archive_chats.py +0 -71
- pyromt-2.0.106/pyrogram/methods/chats/ban_chat_member.py +0 -111
- pyromt-2.0.106/pyrogram/methods/chats/create_channel.py +0 -56
- pyromt-2.0.106/pyrogram/methods/chats/create_group.py +0 -67
- pyromt-2.0.106/pyrogram/methods/chats/create_supergroup.py +0 -60
- pyromt-2.0.106/pyrogram/methods/chats/delete_channel.py +0 -52
- pyromt-2.0.106/pyrogram/methods/chats/delete_chat_photo.py +0 -70
- pyromt-2.0.106/pyrogram/methods/chats/delete_supergroup.py +0 -52
- pyromt-2.0.106/pyrogram/methods/chats/delete_user_history.py +0 -55
- pyromt-2.0.106/pyrogram/methods/chats/get_chat.py +0 -87
- pyromt-2.0.106/pyrogram/methods/chats/get_chat_event_log.py +0 -109
- pyromt-2.0.106/pyrogram/methods/chats/get_chat_member.py +0 -92
- pyromt-2.0.106/pyrogram/methods/chats/get_chat_members.py +0 -158
- pyromt-2.0.106/pyrogram/methods/chats/get_chat_members_count.py +0 -69
- pyromt-2.0.106/pyrogram/methods/chats/get_chat_online_count.py +0 -51
- pyromt-2.0.106/pyrogram/methods/chats/get_dialogs.py +0 -104
- pyromt-2.0.106/pyrogram/methods/chats/get_dialogs_count.py +0 -63
- pyromt-2.0.106/pyrogram/methods/chats/get_nearby_chats.py +0 -78
- pyromt-2.0.106/pyrogram/methods/chats/get_send_as_chats.py +0 -65
- pyromt-2.0.106/pyrogram/methods/chats/join_chat.py +0 -74
- pyromt-2.0.106/pyrogram/methods/chats/leave_chat.py +0 -77
- pyromt-2.0.106/pyrogram/methods/chats/mark_chat_unread.py +0 -47
- pyromt-2.0.106/pyrogram/methods/chats/pin_chat_message.py +0 -81
- pyromt-2.0.106/pyrogram/methods/chats/promote_chat_member.py +0 -101
- pyromt-2.0.106/pyrogram/methods/chats/restrict_chat_member.py +0 -99
- pyromt-2.0.106/pyrogram/methods/chats/set_administrator_title.py +0 -85
- pyromt-2.0.106/pyrogram/methods/chats/set_chat_description.py +0 -66
- pyromt-2.0.106/pyrogram/methods/chats/set_chat_permissions.py +0 -87
- pyromt-2.0.106/pyrogram/methods/chats/set_chat_photo.py +0 -121
- pyromt-2.0.106/pyrogram/methods/chats/set_chat_protected_content.py +0 -53
- pyromt-2.0.106/pyrogram/methods/chats/set_chat_title.py +0 -78
- pyromt-2.0.106/pyrogram/methods/chats/set_chat_username.py +0 -68
- pyromt-2.0.106/pyrogram/methods/chats/set_send_as_chat.py +0 -57
- pyromt-2.0.106/pyrogram/methods/chats/set_slow_mode.py +0 -63
- pyromt-2.0.106/pyrogram/methods/chats/unarchive_chats.py +0 -71
- pyromt-2.0.106/pyrogram/methods/chats/unban_chat_member.py +0 -64
- pyromt-2.0.106/pyrogram/methods/chats/unpin_all_chat_messages.py +0 -55
- pyromt-2.0.106/pyrogram/methods/chats/unpin_chat_message.py +0 -61
- pyromt-2.0.106/pyrogram/methods/contacts/__init__.py +0 -33
- pyromt-2.0.106/pyrogram/methods/contacts/add_contact.py +0 -78
- pyromt-2.0.106/pyrogram/methods/contacts/delete_contacts.py +0 -66
- pyromt-2.0.106/pyrogram/methods/contacts/get_contacts.py +0 -47
- pyromt-2.0.106/pyrogram/methods/contacts/get_contacts_count.py +0 -41
- pyromt-2.0.106/pyrogram/methods/contacts/import_contacts.py +0 -58
- pyromt-2.0.106/pyrogram/methods/decorators/__init__.py +0 -47
- pyromt-2.0.106/pyrogram/methods/decorators/on_callback_query.py +0 -61
- pyromt-2.0.106/pyrogram/methods/decorators/on_chat_join_request.py +0 -60
- pyromt-2.0.106/pyrogram/methods/decorators/on_chat_member_updated.py +0 -60
- pyromt-2.0.106/pyrogram/methods/decorators/on_chosen_inline_result.py +0 -61
- pyromt-2.0.106/pyrogram/methods/decorators/on_deleted_messages.py +0 -61
- pyromt-2.0.106/pyrogram/methods/decorators/on_disconnect.py +0 -43
- pyromt-2.0.106/pyrogram/methods/decorators/on_edited_message.py +0 -61
- pyromt-2.0.106/pyrogram/methods/decorators/on_inline_query.py +0 -61
- pyromt-2.0.106/pyrogram/methods/decorators/on_message.py +0 -61
- pyromt-2.0.106/pyrogram/methods/decorators/on_poll.py +0 -61
- pyromt-2.0.106/pyrogram/methods/decorators/on_raw_update.py +0 -55
- pyromt-2.0.106/pyrogram/methods/decorators/on_user_status.py +0 -59
- pyromt-2.0.106/pyrogram/methods/invite_links/__init__.py +0 -58
- pyromt-2.0.106/pyrogram/methods/invite_links/approve_all_chat_join_requests.py +0 -55
- pyromt-2.0.106/pyrogram/methods/invite_links/approve_chat_join_request.py +0 -57
- pyromt-2.0.106/pyrogram/methods/invite_links/create_chat_invite_link.py +0 -87
- pyromt-2.0.106/pyrogram/methods/invite_links/decline_all_chat_join_requests.py +0 -55
- pyromt-2.0.106/pyrogram/methods/invite_links/decline_chat_join_request.py +0 -57
- pyromt-2.0.106/pyrogram/methods/invite_links/delete_chat_admin_invite_links.py +0 -54
- pyromt-2.0.106/pyrogram/methods/invite_links/delete_chat_invite_link.py +0 -52
- pyromt-2.0.106/pyrogram/methods/invite_links/edit_chat_invite_link.py +0 -92
- pyromt-2.0.106/pyrogram/methods/invite_links/export_chat_invite_link.py +0 -65
- pyromt-2.0.106/pyrogram/methods/invite_links/get_chat_admin_invite_links.py +0 -100
- pyromt-2.0.106/pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py +0 -62
- pyromt-2.0.106/pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py +0 -56
- pyromt-2.0.106/pyrogram/methods/invite_links/get_chat_invite_link.py +0 -56
- pyromt-2.0.106/pyrogram/methods/invite_links/get_chat_invite_link_joiners.py +0 -87
- pyromt-2.0.106/pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py +0 -56
- pyromt-2.0.106/pyrogram/methods/invite_links/get_chat_join_requests.py +0 -88
- pyromt-2.0.106/pyrogram/methods/invite_links/revoke_chat_invite_link.py +0 -68
- pyromt-2.0.106/pyrogram/methods/messages/__init__.py +0 -119
- pyromt-2.0.106/pyrogram/methods/messages/copy_media_group.py +0 -140
- pyromt-2.0.106/pyrogram/methods/messages/copy_message.py +0 -121
- pyromt-2.0.106/pyrogram/methods/messages/delete_messages.py +0 -84
- pyromt-2.0.106/pyrogram/methods/messages/download_media.py +0 -187
- pyromt-2.0.106/pyrogram/methods/messages/edit_inline_caption.py +0 -65
- pyromt-2.0.106/pyrogram/methods/messages/edit_inline_media.py +0 -244
- pyromt-2.0.106/pyrogram/methods/messages/edit_inline_reply_markup.py +0 -69
- pyromt-2.0.106/pyrogram/methods/messages/edit_inline_text.py +0 -88
- pyromt-2.0.106/pyrogram/methods/messages/edit_message_caption.py +0 -76
- pyromt-2.0.106/pyrogram/methods/messages/edit_message_media.py +0 -287
- pyromt-2.0.106/pyrogram/methods/messages/edit_message_reply_markup.py +0 -77
- pyromt-2.0.106/pyrogram/methods/messages/edit_message_text.py +0 -98
- pyromt-2.0.106/pyrogram/methods/messages/forward_messages.py +0 -110
- pyromt-2.0.106/pyrogram/methods/messages/get_chat_history.py +0 -121
- pyromt-2.0.106/pyrogram/methods/messages/get_chat_history_count.py +0 -72
- pyromt-2.0.106/pyrogram/methods/messages/get_custom_emoji_stickers.py +0 -55
- pyromt-2.0.106/pyrogram/methods/messages/get_discussion_message.py +0 -65
- pyromt-2.0.106/pyrogram/methods/messages/get_discussion_replies.py +0 -86
- pyromt-2.0.106/pyrogram/methods/messages/get_discussion_replies_count.py +0 -62
- pyromt-2.0.106/pyrogram/methods/messages/get_media_group.py +0 -73
- pyromt-2.0.106/pyrogram/methods/messages/get_messages.py +0 -119
- pyromt-2.0.106/pyrogram/methods/messages/inline_session.py +0 -64
- pyromt-2.0.106/pyrogram/methods/messages/read_chat_history.py +0 -73
- pyromt-2.0.106/pyrogram/methods/messages/retract_vote.py +0 -61
- pyromt-2.0.106/pyrogram/methods/messages/search_global.py +0 -117
- pyromt-2.0.106/pyrogram/methods/messages/search_global_count.py +0 -62
- pyromt-2.0.106/pyrogram/methods/messages/search_messages.py +0 -151
- pyromt-2.0.106/pyrogram/methods/messages/search_messages_count.py +0 -84
- pyromt-2.0.106/pyrogram/methods/messages/send_animation.py +0 -271
- pyromt-2.0.106/pyrogram/methods/messages/send_audio.py +0 -242
- pyromt-2.0.106/pyrogram/methods/messages/send_cached_media.py +0 -124
- pyromt-2.0.106/pyrogram/methods/messages/send_chat_action.py +0 -80
- pyromt-2.0.106/pyrogram/methods/messages/send_contact.py +0 -121
- pyromt-2.0.106/pyrogram/methods/messages/send_dice.py +0 -116
- pyromt-2.0.106/pyrogram/methods/messages/send_document.py +0 -220
- pyromt-2.0.106/pyrogram/methods/messages/send_location.py +0 -113
- pyromt-2.0.106/pyrogram/methods/messages/send_media_group.py +0 -417
- pyromt-2.0.106/pyrogram/methods/messages/send_message.py +0 -180
- pyromt-2.0.106/pyrogram/methods/messages/send_photo.py +0 -204
- pyromt-2.0.106/pyrogram/methods/messages/send_poll.py +0 -181
- pyromt-2.0.106/pyrogram/methods/messages/send_reaction.py +0 -73
- pyromt-2.0.106/pyrogram/methods/messages/send_sticker.py +0 -179
- pyromt-2.0.106/pyrogram/methods/messages/send_venue.py +0 -137
- pyromt-2.0.106/pyrogram/methods/messages/send_video.py +0 -261
- pyromt-2.0.106/pyrogram/methods/messages/send_video_note.py +0 -203
- pyromt-2.0.106/pyrogram/methods/messages/send_voice.py +0 -204
- pyromt-2.0.106/pyrogram/methods/messages/stop_poll.py +0 -77
- pyromt-2.0.106/pyrogram/methods/messages/stream_media.py +0 -106
- pyromt-2.0.106/pyrogram/methods/messages/vote_poll.py +0 -69
- pyromt-2.0.106/pyrogram/methods/password/__init__.py +0 -29
- pyromt-2.0.106/pyrogram/methods/password/change_cloud_password.py +0 -82
- pyromt-2.0.106/pyrogram/methods/password/enable_cloud_password.py +0 -88
- pyromt-2.0.106/pyrogram/methods/password/remove_cloud_password.py +0 -64
- pyromt-2.0.106/pyrogram/methods/users/__init__.py +0 -49
- pyromt-2.0.106/pyrogram/methods/users/block_user.py +0 -54
- pyromt-2.0.106/pyrogram/methods/users/delete_profile_photos.py +0 -63
- pyromt-2.0.106/pyrogram/methods/users/get_chat_photos.py +0 -135
- pyromt-2.0.106/pyrogram/methods/users/get_chat_photos_count.py +0 -74
- pyromt-2.0.106/pyrogram/methods/users/get_common_chats.py +0 -67
- pyromt-2.0.106/pyrogram/methods/users/get_default_emoji_statuses.py +0 -47
- pyromt-2.0.106/pyrogram/methods/users/get_me.py +0 -49
- pyromt-2.0.106/pyrogram/methods/users/get_users.py +0 -71
- pyromt-2.0.106/pyrogram/methods/users/set_emoji_status.py +0 -58
- pyromt-2.0.106/pyrogram/methods/users/set_profile_photo.py +0 -75
- pyromt-2.0.106/pyrogram/methods/users/set_username.py +0 -57
- pyromt-2.0.106/pyrogram/methods/users/unblock_user.py +0 -54
- pyromt-2.0.106/pyrogram/methods/users/update_profile.py +0 -72
- pyromt-2.0.106/pyrogram/methods/utilities/__init__.py +0 -39
- pyromt-2.0.106/pyrogram/methods/utilities/add_handler.py +0 -67
- pyromt-2.0.106/pyrogram/methods/utilities/compose.py +0 -78
- pyromt-2.0.106/pyrogram/methods/utilities/export_session_string.py +0 -40
- pyromt-2.0.106/pyrogram/methods/utilities/idle.py +0 -87
- pyromt-2.0.106/pyrogram/methods/utilities/remove_handler.py +0 -63
- pyromt-2.0.106/pyrogram/methods/utilities/restart.py +0 -72
- pyromt-2.0.106/pyrogram/methods/utilities/run.py +0 -86
- pyromt-2.0.106/pyrogram/methods/utilities/start.py +0 -76
- pyromt-2.0.106/pyrogram/methods/utilities/stop.py +0 -69
- pyromt-2.0.106/pyrogram/methods/utilities/stop_transmission.py +0 -43
- pyromt-2.0.106/pyrogram/mime_types.py +0 -1881
- pyromt-2.0.106/pyrogram/parser/__init__.py +0 -19
- pyromt-2.0.106/pyrogram/parser/html.py +0 -243
- pyromt-2.0.106/pyrogram/parser/markdown.py +0 -173
- pyromt-2.0.106/pyrogram/parser/parser.py +0 -61
- pyromt-2.0.106/pyrogram/parser/utils.py +0 -41
- pyromt-2.0.106/pyrogram/raw/__init__.py +0 -26
- pyromt-2.0.106/pyrogram/raw/core/__init__.py +0 -31
- pyromt-2.0.106/pyrogram/raw/core/future_salt.py +0 -53
- pyromt-2.0.106/pyrogram/raw/core/future_salts.py +0 -63
- pyromt-2.0.106/pyrogram/raw/core/gzip_packed.py +0 -62
- pyromt-2.0.106/pyrogram/raw/core/list.py +0 -26
- pyromt-2.0.106/pyrogram/raw/core/message.py +0 -56
- pyromt-2.0.106/pyrogram/raw/core/msg_container.py +0 -53
- pyromt-2.0.106/pyrogram/raw/core/primitives/__init__.py +0 -24
- pyromt-2.0.106/pyrogram/raw/core/primitives/bool.py +0 -48
- pyromt-2.0.106/pyrogram/raw/core/primitives/bytes.py +0 -55
- pyromt-2.0.106/pyrogram/raw/core/primitives/double.py +0 -32
- pyromt-2.0.106/pyrogram/raw/core/primitives/int.py +0 -45
- pyromt-2.0.106/pyrogram/raw/core/primitives/string.py +0 -31
- pyromt-2.0.106/pyrogram/raw/core/primitives/vector.py +0 -59
- pyromt-2.0.106/pyrogram/raw/core/tl_object.py +0 -82
- pyromt-2.0.106/pyrogram/session/__init__.py +0 -20
- pyromt-2.0.106/pyrogram/session/auth.py +0 -281
- pyromt-2.0.106/pyrogram/session/internals/__init__.py +0 -21
- pyromt-2.0.106/pyrogram/session/internals/data_center.py +0 -83
- pyromt-2.0.106/pyrogram/session/internals/msg_factory.py +0 -38
- pyromt-2.0.106/pyrogram/session/internals/msg_id.py +0 -35
- pyromt-2.0.106/pyrogram/session/internals/seq_no.py +0 -30
- pyromt-2.0.106/pyrogram/session/session.py +0 -412
- pyromt-2.0.106/pyrogram/storage/__init__.py +0 -21
- pyromt-2.0.106/pyrogram/storage/file_storage.py +0 -69
- pyromt-2.0.106/pyrogram/storage/memory_storage.py +0 -73
- pyromt-2.0.106/pyrogram/storage/sqlite_storage.py +0 -222
- pyromt-2.0.106/pyrogram/storage/storage.py +0 -91
- pyromt-2.0.106/pyrogram/sync.py +0 -113
- pyromt-2.0.106/pyrogram/types/__init__.py +0 -28
- pyromt-2.0.106/pyrogram/types/authorization/__init__.py +0 -22
- pyromt-2.0.106/pyrogram/types/authorization/sent_code.py +0 -62
- pyromt-2.0.106/pyrogram/types/authorization/terms_of_service.py +0 -56
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/__init__.py +0 -71
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command.py +0 -53
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope.py +0 -73
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +0 -32
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +0 -32
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +0 -32
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py +0 -43
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +0 -43
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py +0 -48
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope_default.py +0 -33
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/callback_game.py +0 -29
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/callback_query.py +0 -313
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/force_reply.py +0 -66
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/game_high_score.py +0 -70
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/inline_keyboard_button.py +0 -224
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py +0 -76
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/keyboard_button.py +0 -95
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/login_url.py +0 -90
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/menu_button.py +0 -44
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/menu_button_commands.py +0 -32
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/menu_button_default.py +0 -32
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/menu_button_web_app.py +0 -51
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py +0 -112
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py +0 -58
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/sent_web_app_message.py +0 -42
- pyromt-2.0.106/pyrogram/types/bots_and_keyboards/web_app_info.py +0 -37
- pyromt-2.0.106/pyrogram/types/inline_mode/__init__.py +0 -47
- pyromt-2.0.106/pyrogram/types/inline_mode/chosen_inline_result.py +0 -99
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query.py +0 -181
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result.py +0 -63
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_animation.py +0 -155
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_article.py +0 -99
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_audio.py +0 -120
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_cached_animation.py +0 -108
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_cached_audio.py +0 -101
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_cached_document.py +0 -113
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_cached_photo.py +0 -111
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_cached_sticker.py +0 -78
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_cached_video.py +0 -114
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_cached_voice.py +0 -108
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_contact.py +0 -114
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_document.py +0 -145
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_location.py +0 -122
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_photo.py +0 -147
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_venue.py +0 -131
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_video.py +0 -151
- pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_voice.py +0 -114
- pyromt-2.0.106/pyrogram/types/input_media/__init__.py +0 -30
- pyromt-2.0.106/pyrogram/types/input_media/input_media.py +0 -49
- pyromt-2.0.106/pyrogram/types/input_media/input_media_animation.py +0 -85
- pyromt-2.0.106/pyrogram/types/input_media/input_media_audio.py +0 -82
- pyromt-2.0.106/pyrogram/types/input_media/input_media_document.py +0 -65
- pyromt-2.0.106/pyrogram/types/input_media/input_media_photo.py +0 -63
- pyromt-2.0.106/pyrogram/types/input_media/input_media_video.py +0 -91
- pyromt-2.0.106/pyrogram/types/input_media/input_phone_contact.py +0 -51
- pyromt-2.0.106/pyrogram/types/input_message_content/__init__.py +0 -24
- pyromt-2.0.106/pyrogram/types/input_message_content/input_message_content.py +0 -40
- pyromt-2.0.106/pyrogram/types/input_message_content/input_text_message_content.py +0 -68
- pyromt-2.0.106/pyrogram/types/list.py +0 -30
- pyromt-2.0.106/pyrogram/types/messages_and_media/__init__.py +0 -47
- pyromt-2.0.106/pyrogram/types/messages_and_media/animation.py +0 -121
- pyromt-2.0.106/pyrogram/types/messages_and_media/audio.py +0 -121
- pyromt-2.0.106/pyrogram/types/messages_and_media/contact.py +0 -71
- pyromt-2.0.106/pyrogram/types/messages_and_media/dice.py +0 -47
- pyromt-2.0.106/pyrogram/types/messages_and_media/document.py +0 -98
- pyromt-2.0.106/pyrogram/types/messages_and_media/game.py +0 -99
- pyromt-2.0.106/pyrogram/types/messages_and_media/location.py +0 -55
- pyromt-2.0.106/pyrogram/types/messages_and_media/message.py +0 -3590
- pyromt-2.0.106/pyrogram/types/messages_and_media/message_entity.py +0 -124
- pyromt-2.0.106/pyrogram/types/messages_and_media/message_reactions.py +0 -56
- pyromt-2.0.106/pyrogram/types/messages_and_media/photo.py +0 -130
- pyromt-2.0.106/pyrogram/types/messages_and_media/poll.py +0 -203
- pyromt-2.0.106/pyrogram/types/messages_and_media/poll_option.py +0 -50
- pyromt-2.0.106/pyrogram/types/messages_and_media/reaction.py +0 -86
- pyromt-2.0.106/pyrogram/types/messages_and_media/sticker.py +0 -206
- pyromt-2.0.106/pyrogram/types/messages_and_media/stripped_thumbnail.py +0 -47
- pyromt-2.0.106/pyrogram/types/messages_and_media/thumbnail.py +0 -111
- pyromt-2.0.106/pyrogram/types/messages_and_media/venue.py +0 -74
- pyromt-2.0.106/pyrogram/types/messages_and_media/video.py +0 -134
- pyromt-2.0.106/pyrogram/types/messages_and_media/video_note.py +0 -108
- pyromt-2.0.106/pyrogram/types/messages_and_media/voice.py +0 -96
- pyromt-2.0.106/pyrogram/types/messages_and_media/web_app_data.py +0 -51
- pyromt-2.0.106/pyrogram/types/messages_and_media/web_page.py +0 -187
- pyromt-2.0.106/pyrogram/types/object.py +0 -121
- pyromt-2.0.106/pyrogram/types/update.py +0 -27
- pyromt-2.0.106/pyrogram/types/user_and_chats/__init__.py +0 -67
- pyromt-2.0.106/pyrogram/types/user_and_chats/chat.py +0 -963
- pyromt-2.0.106/pyrogram/types/user_and_chats/chat_admin_with_invite_links.py +0 -63
- pyromt-2.0.106/pyrogram/types/user_and_chats/chat_event.py +0 -489
- pyromt-2.0.106/pyrogram/types/user_and_chats/chat_event_filter.py +0 -175
- pyromt-2.0.106/pyrogram/types/user_and_chats/chat_invite_link.py +0 -130
- pyromt-2.0.106/pyrogram/types/user_and_chats/chat_join_request.py +0 -139
- pyromt-2.0.106/pyrogram/types/user_and_chats/chat_joiner.py +0 -82
- pyromt-2.0.106/pyrogram/types/user_and_chats/chat_member.py +0 -227
- pyromt-2.0.106/pyrogram/types/user_and_chats/chat_member_updated.py +0 -102
- pyromt-2.0.106/pyrogram/types/user_and_chats/chat_permissions.py +0 -98
- pyromt-2.0.106/pyrogram/types/user_and_chats/chat_photo.py +0 -107
- pyromt-2.0.106/pyrogram/types/user_and_chats/chat_preview.py +0 -79
- pyromt-2.0.106/pyrogram/types/user_and_chats/chat_privileges.py +0 -112
- pyromt-2.0.106/pyrogram/types/user_and_chats/chat_reactions.py +0 -69
- pyromt-2.0.106/pyrogram/types/user_and_chats/dialog.py +0 -79
- pyromt-2.0.106/pyrogram/types/user_and_chats/emoji_status.py +0 -77
- pyromt-2.0.106/pyrogram/types/user_and_chats/invite_link_importer.py +0 -61
- pyromt-2.0.106/pyrogram/types/user_and_chats/restriction.py +0 -50
- pyromt-2.0.106/pyrogram/types/user_and_chats/user.py +0 -399
- pyromt-2.0.106/pyrogram/types/user_and_chats/video_chat_ended.py +0 -41
- pyromt-2.0.106/pyrogram/types/user_and_chats/video_chat_members_invited.py +0 -50
- pyromt-2.0.106/pyrogram/types/user_and_chats/video_chat_scheduled.py +0 -43
- pyromt-2.0.106/pyrogram/types/user_and_chats/video_chat_started.py +0 -29
- pyromt-2.0.106/pyrogram/utils.py +0 -371
- pyromt-2.0.106/requirements.txt +0 -2
- pyromt-2.0.106/setup.cfg +0 -4
- pyromt-2.0.106/setup.py +0 -88
- pyromt-2.0.106/tests/__init__.py +0 -17
- pyromt-2.0.106/tests/filters/__init__.py +0 -36
- pyromt-2.0.106/tests/filters/test_command.py +0 -148
- pyromt-2.0.106/tests/parser/__init__.py +0 -17
- pyromt-2.0.106/tests/parser/test_html.py +0 -147
- pyromt-2.0.106/tests/test_file_id.py +0 -194
- {pyromt-2.0.106 → pyromt-2.4.1}/compiler/api/source/auth_key.tl +0 -0
- {pyromt-2.0.106 → pyromt-2.4.1}/compiler/api/source/sys_msgs.tl +0 -0
- {pyromt-2.0.106 → pyromt-2.4.1}/compiler/errors/source/303_SEE_OTHER.tsv +0 -0
- {pyromt-2.0.106 → pyromt-2.4.1}/compiler/errors/source/401_UNAUTHORIZED.tsv +0 -0
- {pyromt-2.0.106 → pyromt-2.4.1}/compiler/errors/template/class.txt +0 -0
- {pyromt-2.0.106 → pyromt-2.4.1}/compiler/errors/template/sub_class.txt +0 -0
- {pyromt-2.0.106 → pyromt-2.4.1}/pyrogram/py.typed +0 -0
pyromt-2.4.1/.gitignore
ADDED
pyromt-2.4.1/.pylintrc
ADDED
|
@@ -0,0 +1,651 @@
|
|
|
1
|
+
[MAIN]
|
|
2
|
+
|
|
3
|
+
# Analyse import fallback blocks. This can be used to support both Python 2 and
|
|
4
|
+
# 3 compatible code, which means that the block might have code that exists
|
|
5
|
+
# only in one or another interpreter, leading to false positives when analysed.
|
|
6
|
+
analyse-fallback-blocks=no
|
|
7
|
+
|
|
8
|
+
# Clear in-memory caches upon conclusion of linting. Useful if running pylint
|
|
9
|
+
# in a server-like mode.
|
|
10
|
+
clear-cache-post-run=no
|
|
11
|
+
|
|
12
|
+
# Load and enable all available extensions. Use --list-extensions to see a list
|
|
13
|
+
# all available extensions.
|
|
14
|
+
#enable-all-extensions=
|
|
15
|
+
|
|
16
|
+
# In error mode, messages with a category besides ERROR or FATAL are
|
|
17
|
+
# suppressed, and no reports are done by default. Error mode is compatible with
|
|
18
|
+
# disabling specific errors.
|
|
19
|
+
#errors-only=
|
|
20
|
+
|
|
21
|
+
# Always return a 0 (non-error) status code, even if lint errors are found.
|
|
22
|
+
# This is primarily useful in continuous integration scripts.
|
|
23
|
+
#exit-zero=
|
|
24
|
+
|
|
25
|
+
# A comma-separated list of package or module names from where C extensions may
|
|
26
|
+
# be loaded. Extensions are loading into the active Python interpreter and may
|
|
27
|
+
# run arbitrary code.
|
|
28
|
+
extension-pkg-allow-list=
|
|
29
|
+
|
|
30
|
+
# A comma-separated list of package or module names from where C extensions may
|
|
31
|
+
# be loaded. Extensions are loading into the active Python interpreter and may
|
|
32
|
+
# run arbitrary code. (This is an alternative name to extension-pkg-allow-list
|
|
33
|
+
# for backward compatibility.)
|
|
34
|
+
extension-pkg-whitelist=
|
|
35
|
+
|
|
36
|
+
# Return non-zero exit code if any of these messages/categories are detected,
|
|
37
|
+
# even if score is above --fail-under value. Syntax same as enable. Messages
|
|
38
|
+
# specified are enabled, while categories only check already-enabled messages.
|
|
39
|
+
fail-on=
|
|
40
|
+
|
|
41
|
+
# Specify a score threshold under which the program will exit with error.
|
|
42
|
+
fail-under=10
|
|
43
|
+
|
|
44
|
+
# Interpret the stdin as a python script, whose filename needs to be passed as
|
|
45
|
+
# the module_or_package argument.
|
|
46
|
+
#from-stdin=
|
|
47
|
+
|
|
48
|
+
# Files or directories to be skipped. They should be base names, not paths.
|
|
49
|
+
ignore=CVS
|
|
50
|
+
|
|
51
|
+
# Add files or directories matching the regular expressions patterns to the
|
|
52
|
+
# ignore-list. The regex matches against paths and can be in Posix or Windows
|
|
53
|
+
# format. Because '\\' represents the directory delimiter on Windows systems,
|
|
54
|
+
# it can't be used as an escape character.
|
|
55
|
+
ignore-paths=
|
|
56
|
+
|
|
57
|
+
# Files or directories matching the regular expression patterns are skipped.
|
|
58
|
+
# The regex matches against base names, not paths. The default value ignores
|
|
59
|
+
# Emacs file locks
|
|
60
|
+
ignore-patterns=^\.#
|
|
61
|
+
|
|
62
|
+
# List of module names for which member attributes should not be checked and
|
|
63
|
+
# will not be imported (useful for modules/projects where namespaces are
|
|
64
|
+
# manipulated during runtime and thus existing member attributes cannot be
|
|
65
|
+
# deduced by static analysis). It supports qualified module names, as well as
|
|
66
|
+
# Unix pattern matching.
|
|
67
|
+
ignored-modules=
|
|
68
|
+
|
|
69
|
+
# Python code to execute, usually for sys.path manipulation such as
|
|
70
|
+
# pygtk.require().
|
|
71
|
+
#init-hook=
|
|
72
|
+
|
|
73
|
+
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
|
|
74
|
+
# number of processors available to use, and will cap the count on Windows to
|
|
75
|
+
# avoid hangs.
|
|
76
|
+
jobs=1
|
|
77
|
+
|
|
78
|
+
# Control the amount of potential inferred values when inferring a single
|
|
79
|
+
# object. This can help the performance when dealing with large functions or
|
|
80
|
+
# complex, nested conditions.
|
|
81
|
+
limit-inference-results=100
|
|
82
|
+
|
|
83
|
+
# List of plugins (as comma separated values of python module names) to load,
|
|
84
|
+
# usually to register additional checkers.
|
|
85
|
+
load-plugins=
|
|
86
|
+
|
|
87
|
+
# Pickle collected data for later comparisons.
|
|
88
|
+
persistent=yes
|
|
89
|
+
|
|
90
|
+
# Resolve imports to .pyi stubs if available. May reduce no-member messages and
|
|
91
|
+
# increase not-an-iterable messages.
|
|
92
|
+
prefer-stubs=no
|
|
93
|
+
|
|
94
|
+
# Minimum Python version to use for version dependent checks. Will default to
|
|
95
|
+
# the version used to run pylint.
|
|
96
|
+
py-version=3.13
|
|
97
|
+
|
|
98
|
+
# Discover python modules and packages in the file system subtree.
|
|
99
|
+
recursive=no
|
|
100
|
+
|
|
101
|
+
# Add paths to the list of the source roots. Supports globbing patterns. The
|
|
102
|
+
# source root is an absolute path or a path relative to the current working
|
|
103
|
+
# directory used to determine a package namespace for modules located under the
|
|
104
|
+
# source root.
|
|
105
|
+
source-roots=
|
|
106
|
+
|
|
107
|
+
# When enabled, pylint would attempt to guess common misconfiguration and emit
|
|
108
|
+
# user-friendly hints instead of false-positive error messages.
|
|
109
|
+
suggestion-mode=yes
|
|
110
|
+
|
|
111
|
+
# Allow loading of arbitrary C extensions. Extensions are imported into the
|
|
112
|
+
# active Python interpreter and may run arbitrary code.
|
|
113
|
+
unsafe-load-any-extension=no
|
|
114
|
+
|
|
115
|
+
# In verbose mode, extra non-checker-related info will be displayed.
|
|
116
|
+
#verbose=
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
[BASIC]
|
|
120
|
+
|
|
121
|
+
# Naming style matching correct argument names.
|
|
122
|
+
argument-naming-style=snake_case
|
|
123
|
+
|
|
124
|
+
# Regular expression matching correct argument names. Overrides argument-
|
|
125
|
+
# naming-style. If left empty, argument names will be checked with the set
|
|
126
|
+
# naming style.
|
|
127
|
+
#argument-rgx=
|
|
128
|
+
|
|
129
|
+
# Naming style matching correct attribute names.
|
|
130
|
+
attr-naming-style=snake_case
|
|
131
|
+
|
|
132
|
+
# Regular expression matching correct attribute names. Overrides attr-naming-
|
|
133
|
+
# style. If left empty, attribute names will be checked with the set naming
|
|
134
|
+
# style.
|
|
135
|
+
#attr-rgx=
|
|
136
|
+
|
|
137
|
+
# Bad variable names which should always be refused, separated by a comma.
|
|
138
|
+
bad-names=foo,
|
|
139
|
+
bar,
|
|
140
|
+
baz,
|
|
141
|
+
toto,
|
|
142
|
+
tutu,
|
|
143
|
+
tata
|
|
144
|
+
|
|
145
|
+
# Bad variable names regexes, separated by a comma. If names match any regex,
|
|
146
|
+
# they will always be refused
|
|
147
|
+
bad-names-rgxs=
|
|
148
|
+
|
|
149
|
+
# Naming style matching correct class attribute names.
|
|
150
|
+
class-attribute-naming-style=any
|
|
151
|
+
|
|
152
|
+
# Regular expression matching correct class attribute names. Overrides class-
|
|
153
|
+
# attribute-naming-style. If left empty, class attribute names will be checked
|
|
154
|
+
# with the set naming style.
|
|
155
|
+
#class-attribute-rgx=
|
|
156
|
+
|
|
157
|
+
# Naming style matching correct class constant names.
|
|
158
|
+
class-const-naming-style=UPPER_CASE
|
|
159
|
+
|
|
160
|
+
# Regular expression matching correct class constant names. Overrides class-
|
|
161
|
+
# const-naming-style. If left empty, class constant names will be checked with
|
|
162
|
+
# the set naming style.
|
|
163
|
+
#class-const-rgx=
|
|
164
|
+
|
|
165
|
+
# Naming style matching correct class names.
|
|
166
|
+
class-naming-style=PascalCase
|
|
167
|
+
|
|
168
|
+
# Regular expression matching correct class names. Overrides class-naming-
|
|
169
|
+
# style. If left empty, class names will be checked with the set naming style.
|
|
170
|
+
#class-rgx=
|
|
171
|
+
|
|
172
|
+
# Naming style matching correct constant names.
|
|
173
|
+
const-naming-style=UPPER_CASE
|
|
174
|
+
|
|
175
|
+
# Regular expression matching correct constant names. Overrides const-naming-
|
|
176
|
+
# style. If left empty, constant names will be checked with the set naming
|
|
177
|
+
# style.
|
|
178
|
+
#const-rgx=
|
|
179
|
+
|
|
180
|
+
# Minimum line length for functions/classes that require docstrings, shorter
|
|
181
|
+
# ones are exempt.
|
|
182
|
+
docstring-min-length=-1
|
|
183
|
+
|
|
184
|
+
# Naming style matching correct function names.
|
|
185
|
+
function-naming-style=snake_case
|
|
186
|
+
|
|
187
|
+
# Regular expression matching correct function names. Overrides function-
|
|
188
|
+
# naming-style. If left empty, function names will be checked with the set
|
|
189
|
+
# naming style.
|
|
190
|
+
#function-rgx=
|
|
191
|
+
|
|
192
|
+
# Good variable names which should always be accepted, separated by a comma.
|
|
193
|
+
good-names=i,
|
|
194
|
+
j,
|
|
195
|
+
k,
|
|
196
|
+
ex,
|
|
197
|
+
Run,
|
|
198
|
+
_
|
|
199
|
+
|
|
200
|
+
# Good variable names regexes, separated by a comma. If names match any regex,
|
|
201
|
+
# they will always be accepted
|
|
202
|
+
good-names-rgxs=
|
|
203
|
+
|
|
204
|
+
# Include a hint for the correct naming format with invalid-name.
|
|
205
|
+
include-naming-hint=no
|
|
206
|
+
|
|
207
|
+
# Naming style matching correct inline iteration names.
|
|
208
|
+
inlinevar-naming-style=any
|
|
209
|
+
|
|
210
|
+
# Regular expression matching correct inline iteration names. Overrides
|
|
211
|
+
# inlinevar-naming-style. If left empty, inline iteration names will be checked
|
|
212
|
+
# with the set naming style.
|
|
213
|
+
#inlinevar-rgx=
|
|
214
|
+
|
|
215
|
+
# Naming style matching correct method names.
|
|
216
|
+
method-naming-style=snake_case
|
|
217
|
+
|
|
218
|
+
# Regular expression matching correct method names. Overrides method-naming-
|
|
219
|
+
# style. If left empty, method names will be checked with the set naming style.
|
|
220
|
+
#method-rgx=
|
|
221
|
+
|
|
222
|
+
# Naming style matching correct module names.
|
|
223
|
+
module-naming-style=snake_case
|
|
224
|
+
|
|
225
|
+
# Regular expression matching correct module names. Overrides module-naming-
|
|
226
|
+
# style. If left empty, module names will be checked with the set naming style.
|
|
227
|
+
#module-rgx=
|
|
228
|
+
|
|
229
|
+
# Colon-delimited sets of names that determine each other's naming style when
|
|
230
|
+
# the name regexes allow several styles.
|
|
231
|
+
name-group=
|
|
232
|
+
|
|
233
|
+
# Regular expression which should only match function or class names that do
|
|
234
|
+
# not require a docstring.
|
|
235
|
+
no-docstring-rgx=^_
|
|
236
|
+
|
|
237
|
+
# List of decorators that produce properties, such as abc.abstractproperty. Add
|
|
238
|
+
# to this list to register other decorators that produce valid properties.
|
|
239
|
+
# These decorators are taken in consideration only for invalid-name.
|
|
240
|
+
property-classes=abc.abstractproperty
|
|
241
|
+
|
|
242
|
+
# Regular expression matching correct type alias names. If left empty, type
|
|
243
|
+
# alias names will be checked with the set naming style.
|
|
244
|
+
#typealias-rgx=
|
|
245
|
+
|
|
246
|
+
# Regular expression matching correct type variable names. If left empty, type
|
|
247
|
+
# variable names will be checked with the set naming style.
|
|
248
|
+
#typevar-rgx=
|
|
249
|
+
|
|
250
|
+
# Naming style matching correct variable names.
|
|
251
|
+
variable-naming-style=snake_case
|
|
252
|
+
|
|
253
|
+
# Regular expression matching correct variable names. Overrides variable-
|
|
254
|
+
# naming-style. If left empty, variable names will be checked with the set
|
|
255
|
+
# naming style.
|
|
256
|
+
#variable-rgx=
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
[CLASSES]
|
|
260
|
+
|
|
261
|
+
# Warn about protected attribute access inside special methods
|
|
262
|
+
check-protected-access-in-special-methods=no
|
|
263
|
+
|
|
264
|
+
# List of method names used to declare (i.e. assign) instance attributes.
|
|
265
|
+
defining-attr-methods=__init__,
|
|
266
|
+
__new__,
|
|
267
|
+
setUp,
|
|
268
|
+
asyncSetUp,
|
|
269
|
+
__post_init__
|
|
270
|
+
|
|
271
|
+
# List of member names, which should be excluded from the protected access
|
|
272
|
+
# warning.
|
|
273
|
+
exclude-protected=_asdict,_fields,_replace,_source,_make,os._exit
|
|
274
|
+
|
|
275
|
+
# List of valid names for the first argument in a class method.
|
|
276
|
+
valid-classmethod-first-arg=cls
|
|
277
|
+
|
|
278
|
+
# List of valid names for the first argument in a metaclass class method.
|
|
279
|
+
valid-metaclass-classmethod-first-arg=mcs
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
[DESIGN]
|
|
283
|
+
|
|
284
|
+
# List of regular expressions of class ancestor names to ignore when counting
|
|
285
|
+
# public methods (see R0903)
|
|
286
|
+
exclude-too-few-public-methods=
|
|
287
|
+
|
|
288
|
+
# List of qualified class names to ignore when counting class parents (see
|
|
289
|
+
# R0901)
|
|
290
|
+
ignored-parents=
|
|
291
|
+
|
|
292
|
+
# Maximum number of arguments for function / method.
|
|
293
|
+
max-args=5
|
|
294
|
+
|
|
295
|
+
# Maximum number of attributes for a class (see R0902).
|
|
296
|
+
max-attributes=7
|
|
297
|
+
|
|
298
|
+
# Maximum number of boolean expressions in an if statement (see R0916).
|
|
299
|
+
max-bool-expr=5
|
|
300
|
+
|
|
301
|
+
# Maximum number of branch for function / method body.
|
|
302
|
+
max-branches=12
|
|
303
|
+
|
|
304
|
+
# Maximum number of locals for function / method body.
|
|
305
|
+
max-locals=15
|
|
306
|
+
|
|
307
|
+
# Maximum number of parents for a class (see R0901).
|
|
308
|
+
max-parents=7
|
|
309
|
+
|
|
310
|
+
# Maximum number of positional arguments for function / method.
|
|
311
|
+
max-positional-arguments=5
|
|
312
|
+
|
|
313
|
+
# Maximum number of public methods for a class (see R0904).
|
|
314
|
+
max-public-methods=20
|
|
315
|
+
|
|
316
|
+
# Maximum number of return / yield for function / method body.
|
|
317
|
+
max-returns=6
|
|
318
|
+
|
|
319
|
+
# Maximum number of statements in function / method body.
|
|
320
|
+
max-statements=50
|
|
321
|
+
|
|
322
|
+
# Minimum number of public methods for a class (see R0903).
|
|
323
|
+
min-public-methods=2
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
[EXCEPTIONS]
|
|
327
|
+
|
|
328
|
+
# Exceptions that will emit a warning when caught.
|
|
329
|
+
overgeneral-exceptions=builtins.BaseException,builtins.Exception
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
[FORMAT]
|
|
333
|
+
|
|
334
|
+
# Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
|
|
335
|
+
expected-line-ending-format=
|
|
336
|
+
|
|
337
|
+
# Regexp for a line that is allowed to be longer than the limit.
|
|
338
|
+
ignore-long-lines=^\s*(# )?<?https?://\S+>?$
|
|
339
|
+
|
|
340
|
+
# Number of spaces of indent required inside a hanging or continued line.
|
|
341
|
+
indent-after-paren=4
|
|
342
|
+
|
|
343
|
+
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
|
|
344
|
+
# tab).
|
|
345
|
+
indent-string=' '
|
|
346
|
+
|
|
347
|
+
# Maximum number of characters on a single line.
|
|
348
|
+
max-line-length=100
|
|
349
|
+
|
|
350
|
+
# Maximum number of lines in a module.
|
|
351
|
+
max-module-lines=1000
|
|
352
|
+
|
|
353
|
+
# Allow the body of a class to be on the same line as the declaration if body
|
|
354
|
+
# contains single statement.
|
|
355
|
+
single-line-class-stmt=no
|
|
356
|
+
|
|
357
|
+
# Allow the body of an if to be on the same line as the test if there is no
|
|
358
|
+
# else.
|
|
359
|
+
single-line-if-stmt=no
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
[IMPORTS]
|
|
363
|
+
|
|
364
|
+
# List of modules that can be imported at any level, not just the top level
|
|
365
|
+
# one.
|
|
366
|
+
allow-any-import-level=
|
|
367
|
+
|
|
368
|
+
# Allow explicit reexports by alias from a package __init__.
|
|
369
|
+
allow-reexport-from-package=no
|
|
370
|
+
|
|
371
|
+
# Allow wildcard imports from modules that define __all__.
|
|
372
|
+
allow-wildcard-with-all=no
|
|
373
|
+
|
|
374
|
+
# Deprecated modules which should not be used, separated by a comma.
|
|
375
|
+
deprecated-modules=
|
|
376
|
+
|
|
377
|
+
# Output a graph (.gv or any supported image format) of external dependencies
|
|
378
|
+
# to the given file (report RP0402 must not be disabled).
|
|
379
|
+
ext-import-graph=
|
|
380
|
+
|
|
381
|
+
# Output a graph (.gv or any supported image format) of all (i.e. internal and
|
|
382
|
+
# external) dependencies to the given file (report RP0402 must not be
|
|
383
|
+
# disabled).
|
|
384
|
+
import-graph=
|
|
385
|
+
|
|
386
|
+
# Output a graph (.gv or any supported image format) of internal dependencies
|
|
387
|
+
# to the given file (report RP0402 must not be disabled).
|
|
388
|
+
int-import-graph=
|
|
389
|
+
|
|
390
|
+
# Force import order to recognize a module as part of the standard
|
|
391
|
+
# compatibility libraries.
|
|
392
|
+
known-standard-library=
|
|
393
|
+
|
|
394
|
+
# Force import order to recognize a module as part of a third party library.
|
|
395
|
+
known-third-party=enchant
|
|
396
|
+
|
|
397
|
+
# Couples of modules and preferred modules, separated by a comma.
|
|
398
|
+
preferred-modules=
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
[LOGGING]
|
|
402
|
+
|
|
403
|
+
# The type of string formatting that logging methods do. `old` means using %
|
|
404
|
+
# formatting, `new` is for `{}` formatting.
|
|
405
|
+
logging-format-style=old
|
|
406
|
+
|
|
407
|
+
# Logging modules to check that the string format arguments are in logging
|
|
408
|
+
# function parameter format.
|
|
409
|
+
logging-modules=logging
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
[MESSAGES CONTROL]
|
|
413
|
+
|
|
414
|
+
# Only show warnings with the listed confidence levels. Leave empty to show
|
|
415
|
+
# all. Valid levels: HIGH, CONTROL_FLOW, INFERENCE, INFERENCE_FAILURE,
|
|
416
|
+
# UNDEFINED.
|
|
417
|
+
confidence=HIGH,
|
|
418
|
+
CONTROL_FLOW,
|
|
419
|
+
INFERENCE,
|
|
420
|
+
INFERENCE_FAILURE,
|
|
421
|
+
UNDEFINED
|
|
422
|
+
|
|
423
|
+
# Disable the message, report, category or checker with the given id(s). You
|
|
424
|
+
# can either give multiple identifiers separated by comma (,) or put this
|
|
425
|
+
# option multiple times (only on the command line, not in the configuration
|
|
426
|
+
# file where it should appear only once). You can also use "--disable=all" to
|
|
427
|
+
# disable everything first and then re-enable specific checks. For example, if
|
|
428
|
+
# you want to run only the similarities checker, you can use "--disable=all
|
|
429
|
+
# --enable=similarities". If you want to run only the classes checker, but have
|
|
430
|
+
# no Warning level messages displayed, use "--disable=all --enable=classes
|
|
431
|
+
# --disable=W".
|
|
432
|
+
disable=raw-checker-failed,
|
|
433
|
+
bad-inline-option,
|
|
434
|
+
locally-disabled,
|
|
435
|
+
file-ignored,
|
|
436
|
+
suppressed-message,
|
|
437
|
+
useless-suppression,
|
|
438
|
+
deprecated-pragma,
|
|
439
|
+
use-implicit-booleaness-not-comparison-to-string,
|
|
440
|
+
use-implicit-booleaness-not-comparison-to-zero,
|
|
441
|
+
use-symbolic-message-instead,
|
|
442
|
+
missing-module-docstring,
|
|
443
|
+
missing-class-docstring,
|
|
444
|
+
missing-function-docstring,
|
|
445
|
+
redefined-builtin
|
|
446
|
+
|
|
447
|
+
# Enable the message, report, category or checker with the given id(s). You can
|
|
448
|
+
# either give multiple identifier separated by comma (,) or put this option
|
|
449
|
+
# multiple time (only on the command line, not in the configuration file where
|
|
450
|
+
# it should appear only once). See also the "--disable" option for examples.
|
|
451
|
+
enable=
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
[METHOD_ARGS]
|
|
455
|
+
|
|
456
|
+
# List of qualified names (i.e., library.method) which require a timeout
|
|
457
|
+
# parameter e.g. 'requests.api.get,requests.api.post'
|
|
458
|
+
timeout-methods=requests.api.delete,requests.api.get,requests.api.head,requests.api.options,requests.api.patch,requests.api.post,requests.api.put,requests.api.request
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
[MISCELLANEOUS]
|
|
462
|
+
|
|
463
|
+
# List of note tags to take in consideration, separated by a comma.
|
|
464
|
+
notes=FIXME,
|
|
465
|
+
XXX,
|
|
466
|
+
TODO
|
|
467
|
+
|
|
468
|
+
# Regular expression of note tags to take in consideration.
|
|
469
|
+
notes-rgx=
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
[REFACTORING]
|
|
473
|
+
|
|
474
|
+
# Maximum number of nested blocks for function / method body
|
|
475
|
+
max-nested-blocks=5
|
|
476
|
+
|
|
477
|
+
# Complete name of functions that never returns. When checking for
|
|
478
|
+
# inconsistent-return-statements if a never returning function is called then
|
|
479
|
+
# it will be considered as an explicit return statement and no message will be
|
|
480
|
+
# printed.
|
|
481
|
+
never-returning-functions=sys.exit,argparse.parse_error
|
|
482
|
+
|
|
483
|
+
# Let 'consider-using-join' be raised when the separator to join on would be
|
|
484
|
+
# non-empty (resulting in expected fixes of the type: ``"- " + " -
|
|
485
|
+
# ".join(items)``)
|
|
486
|
+
suggest-join-with-non-empty-separator=yes
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
[REPORTS]
|
|
490
|
+
|
|
491
|
+
# Python expression which should return a score less than or equal to 10. You
|
|
492
|
+
# have access to the variables 'fatal', 'error', 'warning', 'refactor',
|
|
493
|
+
# 'convention', and 'info' which contain the number of messages in each
|
|
494
|
+
# category, as well as 'statement' which is the total number of statements
|
|
495
|
+
# analyzed. This score is used by the global evaluation report (RP0004).
|
|
496
|
+
evaluation=max(0, 0 if fatal else 10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10))
|
|
497
|
+
|
|
498
|
+
# Template used to display messages. This is a python new-style format string
|
|
499
|
+
# used to format the message information. See doc for all details.
|
|
500
|
+
msg-template=
|
|
501
|
+
|
|
502
|
+
# Set the output format. Available formats are: 'text', 'parseable',
|
|
503
|
+
# 'colorized', 'json2' (improved json format), 'json' (old json format), msvs
|
|
504
|
+
# (visual studio) and 'github' (GitHub actions). You can also give a reporter
|
|
505
|
+
# class, e.g. mypackage.mymodule.MyReporterClass.
|
|
506
|
+
#output-format=
|
|
507
|
+
|
|
508
|
+
# Tells whether to display a full report or only the messages.
|
|
509
|
+
reports=no
|
|
510
|
+
|
|
511
|
+
# Activate the evaluation score.
|
|
512
|
+
score=yes
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
[SIMILARITIES]
|
|
516
|
+
|
|
517
|
+
# Comments are removed from the similarity computation
|
|
518
|
+
ignore-comments=yes
|
|
519
|
+
|
|
520
|
+
# Docstrings are removed from the similarity computation
|
|
521
|
+
ignore-docstrings=yes
|
|
522
|
+
|
|
523
|
+
# Imports are removed from the similarity computation
|
|
524
|
+
ignore-imports=yes
|
|
525
|
+
|
|
526
|
+
# Signatures are removed from the similarity computation
|
|
527
|
+
ignore-signatures=yes
|
|
528
|
+
|
|
529
|
+
# Minimum lines number of a similarity.
|
|
530
|
+
min-similarity-lines=4
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
[SPELLING]
|
|
534
|
+
|
|
535
|
+
# Limits count of emitted suggestions for spelling mistakes.
|
|
536
|
+
max-spelling-suggestions=4
|
|
537
|
+
|
|
538
|
+
# Spelling dictionary name. No available dictionaries : You need to install
|
|
539
|
+
# both the python package and the system dependency for enchant to work.
|
|
540
|
+
spelling-dict=
|
|
541
|
+
|
|
542
|
+
# List of comma separated words that should be considered directives if they
|
|
543
|
+
# appear at the beginning of a comment and should not be checked.
|
|
544
|
+
spelling-ignore-comment-directives=fmt: on,fmt: off,noqa:,noqa,nosec,isort:skip,mypy:
|
|
545
|
+
|
|
546
|
+
# List of comma separated words that should not be checked.
|
|
547
|
+
spelling-ignore-words=
|
|
548
|
+
|
|
549
|
+
# A path to a file that contains the private dictionary; one word per line.
|
|
550
|
+
spelling-private-dict-file=
|
|
551
|
+
|
|
552
|
+
# Tells whether to store unknown words to the private dictionary (see the
|
|
553
|
+
# --spelling-private-dict-file option) instead of raising a message.
|
|
554
|
+
spelling-store-unknown-words=no
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
[STRING]
|
|
558
|
+
|
|
559
|
+
# This flag controls whether inconsistent-quotes generates a warning when the
|
|
560
|
+
# character used as a quote delimiter is used inconsistently within a module.
|
|
561
|
+
check-quote-consistency=no
|
|
562
|
+
|
|
563
|
+
# This flag controls whether the implicit-str-concat should generate a warning
|
|
564
|
+
# on implicit string concatenation in sequences defined over several lines.
|
|
565
|
+
check-str-concat-over-line-jumps=no
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
[TYPECHECK]
|
|
569
|
+
|
|
570
|
+
# List of decorators that produce context managers, such as
|
|
571
|
+
# contextlib.contextmanager. Add to this list to register other decorators that
|
|
572
|
+
# produce valid context managers.
|
|
573
|
+
contextmanager-decorators=contextlib.contextmanager
|
|
574
|
+
|
|
575
|
+
# List of members which are set dynamically and missed by pylint inference
|
|
576
|
+
# system, and so shouldn't trigger E1101 when accessed. Python regular
|
|
577
|
+
# expressions are accepted.
|
|
578
|
+
generated-members=
|
|
579
|
+
|
|
580
|
+
# Tells whether to warn about missing members when the owner of the attribute
|
|
581
|
+
# is inferred to be None.
|
|
582
|
+
ignore-none=yes
|
|
583
|
+
|
|
584
|
+
# This flag controls whether pylint should warn about no-member and similar
|
|
585
|
+
# checks whenever an opaque object is returned when inferring. The inference
|
|
586
|
+
# can return multiple potential results while evaluating a Python object, but
|
|
587
|
+
# some branches might not be evaluated, which results in partial inference. In
|
|
588
|
+
# that case, it might be useful to still emit no-member and other checks for
|
|
589
|
+
# the rest of the inferred objects.
|
|
590
|
+
ignore-on-opaque-inference=yes
|
|
591
|
+
|
|
592
|
+
# List of symbolic message names to ignore for Mixin members.
|
|
593
|
+
ignored-checks-for-mixins=no-member,
|
|
594
|
+
not-async-context-manager,
|
|
595
|
+
not-context-manager,
|
|
596
|
+
attribute-defined-outside-init
|
|
597
|
+
|
|
598
|
+
# List of class names for which member attributes should not be checked (useful
|
|
599
|
+
# for classes with dynamically set attributes). This supports the use of
|
|
600
|
+
# qualified names.
|
|
601
|
+
ignored-classes=optparse.Values,thread._local,_thread._local,argparse.Namespace
|
|
602
|
+
|
|
603
|
+
# Show a hint with possible names when a member name was not found. The aspect
|
|
604
|
+
# of finding the hint is based on edit distance.
|
|
605
|
+
missing-member-hint=yes
|
|
606
|
+
|
|
607
|
+
# The minimum edit distance a name should have in order to be considered a
|
|
608
|
+
# similar match for a missing member name.
|
|
609
|
+
missing-member-hint-distance=1
|
|
610
|
+
|
|
611
|
+
# The total number of similar names that should be taken in consideration when
|
|
612
|
+
# showing a hint for a missing member.
|
|
613
|
+
missing-member-max-choices=1
|
|
614
|
+
|
|
615
|
+
# Regex pattern to define which classes are considered mixins.
|
|
616
|
+
mixin-class-rgx=.*[Mm]ixin
|
|
617
|
+
|
|
618
|
+
# List of decorators that change the signature of a decorated function.
|
|
619
|
+
signature-mutators=
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
[VARIABLES]
|
|
623
|
+
|
|
624
|
+
# List of additional names supposed to be defined in builtins. Remember that
|
|
625
|
+
# you should avoid defining new builtins when possible.
|
|
626
|
+
additional-builtins=
|
|
627
|
+
|
|
628
|
+
# Tells whether unused global variables should be treated as a violation.
|
|
629
|
+
allow-global-unused-variables=yes
|
|
630
|
+
|
|
631
|
+
# List of names allowed to shadow builtins
|
|
632
|
+
allowed-redefined-builtins=
|
|
633
|
+
|
|
634
|
+
# List of strings which can identify a callback function by name. A callback
|
|
635
|
+
# name must start or end with one of those strings.
|
|
636
|
+
callbacks=cb_,
|
|
637
|
+
_cb
|
|
638
|
+
|
|
639
|
+
# A regular expression matching the name of dummy variables (i.e. expected to
|
|
640
|
+
# not be used).
|
|
641
|
+
dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
|
|
642
|
+
|
|
643
|
+
# Argument names that match this expression will be ignored.
|
|
644
|
+
ignored-argument-names=_.*|^ignored_|^unused_
|
|
645
|
+
|
|
646
|
+
# Tells whether we should check for unused import in __init__ files.
|
|
647
|
+
init-import=no
|
|
648
|
+
|
|
649
|
+
# List of qualified module names which can have objects that can redefine
|
|
650
|
+
# builtins.
|
|
651
|
+
redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [28-03-26]
|
|
4
|
+
### Version [2.4.0]
|
|
5
|
+
|
|
6
|
+
**✨ Telegram Bot API Updates (Buttons & Styling)**
|
|
7
|
+
Srigram now fully supports the newest Telegram UI features for both Inline and Standard Reply Keyboards!
|
|
8
|
+
|
|
9
|
+
* **Custom Emojis on Buttons:** Added native support for `icon_custom_emoji_id`. You can now attach premium and custom animated emojis directly to `InlineKeyboardButton` and `KeyboardButton`.
|
|
10
|
+
* **Button Styling:** Added support for the new `style` parameter. You can now color your buttons using `"primary"` (Blue), `"danger"` (Red), and `"success"` (Green).
|
|
11
|
+
* **Framework Optimization:** Safely implemented these features using the native `KeyboardButtonStyle` MTProto object to ensure complete stability with existing bot features (like Business Away Messages).
|
|
12
|
+
|
|
13
|
+
**Code Example:**
|
|
14
|
+
`InlineKeyboardButton("Click Me", style="primary", icon_custom_emoji_id=5368324170671202286)`
|
|
15
|
+
|
|
16
|
+
|