WPyrogram 2.0.148__py3-none-any.whl → 2.0.149__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {WPyrogram-2.0.148.dist-info → WPyrogram-2.0.149.dist-info}/METADATA +3 -3
- WPyrogram-2.0.149.dist-info/RECORD +3325 -0
- {WPyrogram-2.0.148.dist-info → WPyrogram-2.0.149.dist-info}/WHEEL +1 -1
- pyrogram/__init__.py +1 -1
- pyrogram/client.py +0 -134
- pyrogram/connection/connection.py +16 -7
- pyrogram/connection/transport/tcp/__init__.py +1 -1
- pyrogram/connection/transport/tcp/tcp.py +94 -51
- pyrogram/connection/transport/tcp/tcp_abridged.py +5 -5
- pyrogram/connection/transport/tcp/tcp_abridged_o.py +5 -5
- pyrogram/connection/transport/tcp/tcp_full.py +6 -6
- pyrogram/connection/transport/tcp/tcp_intermediate.py +5 -5
- pyrogram/connection/transport/tcp/tcp_intermediate_o.py +5 -5
- pyrogram/dispatcher.py +0 -7
- pyrogram/enums/__init__.py +6 -0
- pyrogram/enums/chat_join_type.py +34 -0
- pyrogram/enums/message_entity_type.py +2 -2
- pyrogram/enums/message_media_type.py +5 -2
- pyrogram/enums/message_service_type.py +28 -4
- pyrogram/enums/phone_call_discard_reason.py +36 -0
- pyrogram/errors/exceptions/__init__.py +3 -3
- pyrogram/errors/exceptions/all.py +56 -56
- pyrogram/handlers/__init__.py +5 -1
- pyrogram/handlers/chat_boost_handler.py +49 -0
- pyrogram/handlers/message_reaction_count_handler.py +51 -0
- pyrogram/handlers/message_reaction_handler.py +51 -0
- pyrogram/handlers/purchased_paid_media_handler.py +49 -0
- pyrogram/handlers/shipping_query_handler.py +50 -0
- pyrogram/methods/account/set_account_ttl.py +5 -1
- pyrogram/methods/advanced/resolve_peer.py +6 -2
- pyrogram/methods/advanced/save_file.py +4 -1
- pyrogram/methods/bots/__init__.py +18 -2
- pyrogram/methods/bots/answer_shipping_query.py +81 -0
- pyrogram/methods/bots/create_invoice_link.py +167 -0
- pyrogram/methods/bots/get_bot_info_description.py +63 -0
- pyrogram/methods/bots/get_bot_info_short_description.py +63 -0
- pyrogram/methods/bots/get_bot_name.py +62 -0
- pyrogram/methods/bots/send_game.py +8 -0
- pyrogram/methods/bots/send_invoice.py +8 -0
- pyrogram/methods/bots/set_bot_info_description.py +66 -0
- pyrogram/methods/bots/set_bot_info_short_description.py +66 -0
- pyrogram/methods/bots/set_bot_name.py +66 -0
- pyrogram/methods/chats/__init__.py +4 -2
- pyrogram/methods/chats/close_forum_topic.py +1 -2
- pyrogram/methods/chats/delete_forum_topic.py +1 -2
- pyrogram/methods/chats/edit_forum_topic.py +1 -2
- pyrogram/methods/chats/get_chat.py +3 -3
- pyrogram/methods/chats/get_dialogs.py +19 -11
- pyrogram/methods/chats/get_dialogs_count.py +16 -3
- pyrogram/methods/chats/get_forum_topics_by_id.py +2 -2
- pyrogram/methods/chats/pin_forum_topic.py +57 -0
- pyrogram/methods/chats/set_chat_photo.py +17 -5
- pyrogram/methods/chats/unpin_forum_topic.py +57 -0
- pyrogram/methods/decorators/__init__.py +11 -1
- pyrogram/methods/decorators/on_chat_boost.py +64 -0
- pyrogram/methods/decorators/on_message_reaction.py +62 -0
- pyrogram/methods/decorators/on_message_reaction_count.py +62 -0
- pyrogram/methods/decorators/on_purchased_paid_media.py +62 -0
- pyrogram/methods/decorators/on_shipping_query.py +64 -0
- pyrogram/methods/messages/__init__.py +4 -0
- pyrogram/methods/messages/copy_media_group.py +6 -7
- pyrogram/methods/messages/copy_message.py +3 -1
- pyrogram/methods/messages/edit_inline_media.py +3 -2
- pyrogram/methods/messages/edit_inline_text.py +6 -2
- pyrogram/methods/messages/edit_message_media.py +13 -9
- pyrogram/methods/messages/edit_message_text.py +4 -5
- pyrogram/methods/messages/forward_media_group.py +128 -0
- pyrogram/methods/messages/forward_messages.py +10 -1
- pyrogram/methods/messages/search_messages.py +21 -13
- pyrogram/methods/messages/search_messages_count.py +10 -4
- pyrogram/methods/messages/send_animation.py +8 -0
- pyrogram/methods/messages/send_audio.py +8 -0
- pyrogram/methods/messages/send_cached_media.py +13 -6
- pyrogram/methods/messages/send_contact.py +8 -0
- pyrogram/methods/messages/send_dice.py +8 -0
- pyrogram/methods/messages/send_document.py +8 -0
- pyrogram/methods/messages/send_location.py +8 -0
- pyrogram/methods/messages/send_media_group.py +26 -18
- pyrogram/methods/messages/send_message.py +12 -5
- pyrogram/methods/messages/send_paid_media.py +23 -6
- pyrogram/methods/messages/send_paid_reaction.py +69 -0
- pyrogram/methods/messages/send_photo.py +8 -0
- pyrogram/methods/messages/send_poll.py +8 -0
- pyrogram/methods/messages/send_reaction.py +1 -1
- pyrogram/methods/messages/send_sticker.py +8 -0
- pyrogram/methods/messages/send_venue.py +8 -0
- pyrogram/methods/messages/send_video.py +8 -0
- pyrogram/methods/messages/send_video_note.py +8 -0
- pyrogram/methods/messages/send_voice.py +8 -0
- pyrogram/methods/messages/send_web_page.py +12 -5
- pyrogram/methods/messages/start_bot.py +1 -1
- pyrogram/methods/payments/__init__.py +18 -2
- pyrogram/methods/payments/apply_gift_code.py +64 -0
- pyrogram/methods/payments/check_gift_code.py +67 -0
- pyrogram/methods/payments/convert_star_gift.py +66 -0
- pyrogram/methods/payments/get_payment_form.py +16 -11
- pyrogram/methods/payments/get_star_gifts.py +44 -0
- pyrogram/methods/payments/get_user_star_gifts.py +97 -0
- pyrogram/methods/payments/get_user_star_gifts_count.py +64 -0
- pyrogram/methods/payments/hide_star_gift.py +67 -0
- pyrogram/methods/payments/send_payment_form.py +51 -20
- pyrogram/methods/payments/send_star_gift.py +100 -0
- pyrogram/methods/payments/show_star_gift.py +67 -0
- pyrogram/methods/stories/__init__.py +16 -12
- pyrogram/methods/stories/can_post_stories.py +53 -0
- pyrogram/methods/stories/delete_stories.py +2 -3
- pyrogram/methods/stories/edit_story_privacy.py +34 -34
- pyrogram/methods/stories/forward_story.py +1 -1
- pyrogram/methods/stories/get_all_stories.py +15 -4
- pyrogram/methods/stories/get_archived_stories.py +95 -0
- pyrogram/methods/stories/get_chat_stories.py +1 -1
- pyrogram/methods/stories/get_pinned_stories.py +2 -2
- pyrogram/methods/stories/get_stories.py +3 -3
- pyrogram/methods/stories/hide_chat_stories.py +56 -0
- pyrogram/methods/stories/pin_chat_stories.py +65 -0
- pyrogram/methods/stories/read_chat_stories.py +64 -0
- pyrogram/methods/stories/send_story.py +1 -3
- pyrogram/methods/stories/show_chat_stories.py +56 -0
- pyrogram/methods/stories/unpin_chat_stories.py +65 -0
- pyrogram/methods/users/__init__.py +2 -2
- pyrogram/methods/users/get_chat_photos.py +54 -30
- pyrogram/methods/users/set_personal_channel.py +67 -0
- pyrogram/raw/all.py +81 -41
- pyrogram/raw/base/__init__.py +9 -0
- pyrogram/raw/base/channel_admin_log_event_action.py +4 -2
- pyrogram/raw/base/channels/sponsored_message_report_result.py +1 -1
- pyrogram/raw/base/input_file.py +3 -2
- pyrogram/raw/base/input_invoice.py +4 -2
- pyrogram/raw/base/input_store_payment_purpose.py +3 -2
- pyrogram/raw/base/keyboard_button.py +3 -2
- pyrogram/raw/base/message_action.py +4 -2
- pyrogram/raw/base/message_reactor.py +53 -0
- pyrogram/raw/base/message_report_option.py +53 -0
- pyrogram/raw/base/messages/sponsored_messages.py +1 -1
- pyrogram/raw/base/payments/__init__.py +2 -0
- pyrogram/raw/base/payments/payment_form.py +3 -2
- pyrogram/raw/base/payments/star_gifts.py +64 -0
- pyrogram/raw/base/payments/stars_status.py +2 -1
- pyrogram/raw/base/payments/user_star_gifts.py +63 -0
- pyrogram/raw/base/prepaid_giveaway.py +3 -2
- pyrogram/raw/base/reaction.py +3 -2
- pyrogram/raw/base/report_result.py +66 -0
- pyrogram/raw/base/star_gift.py +53 -0
- pyrogram/raw/base/stars_giveaway_option.py +63 -0
- pyrogram/raw/base/stars_giveaway_winners_option.py +53 -0
- pyrogram/raw/base/stars_subscription.py +53 -0
- pyrogram/raw/base/stars_subscription_pricing.py +53 -0
- pyrogram/raw/base/stars_transaction_peer.py +3 -2
- pyrogram/raw/base/update.py +4 -2
- pyrogram/raw/base/updates_t.py +3 -1
- pyrogram/raw/base/user_star_gift.py +53 -0
- pyrogram/raw/functions/account/accept_authorization.py +1 -1
- pyrogram/raw/functions/account/cancel_password_email.py +1 -1
- pyrogram/raw/functions/account/change_authorization_settings.py +1 -1
- pyrogram/raw/functions/account/change_phone.py +1 -1
- pyrogram/raw/functions/account/check_username.py +1 -1
- pyrogram/raw/functions/account/clear_recent_emoji_statuses.py +1 -1
- pyrogram/raw/functions/account/confirm_password_email.py +1 -1
- pyrogram/raw/functions/account/confirm_phone.py +1 -1
- pyrogram/raw/functions/account/create_business_chat_link.py +1 -1
- pyrogram/raw/functions/account/create_theme.py +1 -1
- pyrogram/raw/functions/account/decline_password_reset.py +1 -1
- pyrogram/raw/functions/account/delete_account.py +1 -1
- pyrogram/raw/functions/account/delete_auto_save_exceptions.py +1 -1
- pyrogram/raw/functions/account/delete_business_chat_link.py +1 -1
- pyrogram/raw/functions/account/delete_secure_value.py +1 -1
- pyrogram/raw/functions/account/disable_peer_connected_bot.py +1 -1
- pyrogram/raw/functions/account/edit_business_chat_link.py +1 -1
- pyrogram/raw/functions/account/finish_takeout_session.py +1 -1
- pyrogram/raw/functions/account/get_account_ttl.py +1 -1
- pyrogram/raw/functions/account/get_all_secure_values.py +1 -1
- pyrogram/raw/functions/account/get_authorization_form.py +1 -1
- pyrogram/raw/functions/account/get_authorizations.py +1 -1
- pyrogram/raw/functions/account/get_auto_download_settings.py +1 -1
- pyrogram/raw/functions/account/get_auto_save_settings.py +1 -1
- pyrogram/raw/functions/account/get_bot_business_connection.py +1 -1
- pyrogram/raw/functions/account/get_business_chat_links.py +1 -1
- pyrogram/raw/functions/account/get_channel_default_emoji_statuses.py +1 -1
- pyrogram/raw/functions/account/get_channel_restricted_status_emojis.py +1 -1
- pyrogram/raw/functions/account/get_chat_themes.py +1 -1
- pyrogram/raw/functions/account/get_connected_bots.py +1 -1
- pyrogram/raw/functions/account/get_contact_sign_up_notification.py +1 -1
- pyrogram/raw/functions/account/get_content_settings.py +1 -1
- pyrogram/raw/functions/account/get_default_background_emojis.py +1 -1
- pyrogram/raw/functions/account/get_default_emoji_statuses.py +1 -1
- pyrogram/raw/functions/account/get_default_group_photo_emojis.py +1 -1
- pyrogram/raw/functions/account/get_default_profile_photo_emojis.py +1 -1
- pyrogram/raw/functions/account/get_global_privacy_settings.py +1 -1
- pyrogram/raw/functions/account/get_multi_wall_papers.py +1 -1
- pyrogram/raw/functions/account/get_notify_exceptions.py +1 -1
- pyrogram/raw/functions/account/get_notify_settings.py +1 -1
- pyrogram/raw/functions/account/get_password.py +1 -1
- pyrogram/raw/functions/account/get_password_settings.py +1 -1
- pyrogram/raw/functions/account/get_privacy.py +1 -1
- pyrogram/raw/functions/account/get_reactions_notify_settings.py +1 -1
- pyrogram/raw/functions/account/get_recent_emoji_statuses.py +1 -1
- pyrogram/raw/functions/account/get_saved_ringtones.py +1 -1
- pyrogram/raw/functions/account/get_secure_value.py +1 -1
- pyrogram/raw/functions/account/get_theme.py +1 -1
- pyrogram/raw/functions/account/get_themes.py +1 -1
- pyrogram/raw/functions/account/get_tmp_password.py +1 -1
- pyrogram/raw/functions/account/get_wall_paper.py +1 -1
- pyrogram/raw/functions/account/get_wall_papers.py +1 -1
- pyrogram/raw/functions/account/get_web_authorizations.py +1 -1
- pyrogram/raw/functions/account/init_takeout_session.py +1 -1
- pyrogram/raw/functions/account/install_theme.py +1 -1
- pyrogram/raw/functions/account/install_wall_paper.py +1 -1
- pyrogram/raw/functions/account/invalidate_sign_in_codes.py +1 -1
- pyrogram/raw/functions/account/register_device.py +1 -1
- pyrogram/raw/functions/account/reorder_usernames.py +1 -1
- pyrogram/raw/functions/account/report_peer.py +1 -1
- pyrogram/raw/functions/account/report_profile_photo.py +1 -1
- pyrogram/raw/functions/account/resend_password_email.py +1 -1
- pyrogram/raw/functions/account/reset_authorization.py +1 -1
- pyrogram/raw/functions/account/reset_notify_settings.py +1 -1
- pyrogram/raw/functions/account/reset_password.py +1 -1
- pyrogram/raw/functions/account/reset_wall_papers.py +1 -1
- pyrogram/raw/functions/account/reset_web_authorization.py +1 -1
- pyrogram/raw/functions/account/reset_web_authorizations.py +1 -1
- pyrogram/raw/functions/account/resolve_business_chat_link.py +1 -1
- pyrogram/raw/functions/account/save_auto_download_settings.py +1 -1
- pyrogram/raw/functions/account/save_auto_save_settings.py +1 -1
- pyrogram/raw/functions/account/save_ringtone.py +1 -1
- pyrogram/raw/functions/account/save_secure_value.py +1 -1
- pyrogram/raw/functions/account/save_theme.py +1 -1
- pyrogram/raw/functions/account/save_wall_paper.py +1 -1
- pyrogram/raw/functions/account/send_change_phone_code.py +1 -1
- pyrogram/raw/functions/account/send_confirm_phone_code.py +1 -1
- pyrogram/raw/functions/account/send_verify_email_code.py +1 -1
- pyrogram/raw/functions/account/send_verify_phone_code.py +1 -1
- pyrogram/raw/functions/account/set_account_ttl.py +1 -1
- pyrogram/raw/functions/account/set_authorization_ttl.py +1 -1
- pyrogram/raw/functions/account/set_contact_sign_up_notification.py +1 -1
- pyrogram/raw/functions/account/set_content_settings.py +1 -1
- pyrogram/raw/functions/account/set_global_privacy_settings.py +1 -1
- pyrogram/raw/functions/account/set_privacy.py +1 -1
- pyrogram/raw/functions/account/set_reactions_notify_settings.py +1 -1
- pyrogram/raw/functions/account/toggle_connected_bot_paused.py +1 -1
- pyrogram/raw/functions/account/toggle_sponsored_messages.py +1 -1
- pyrogram/raw/functions/account/toggle_username.py +1 -1
- pyrogram/raw/functions/account/unregister_device.py +1 -1
- pyrogram/raw/functions/account/update_birthday.py +1 -1
- pyrogram/raw/functions/account/update_business_away_message.py +1 -1
- pyrogram/raw/functions/account/update_business_greeting_message.py +1 -1
- pyrogram/raw/functions/account/update_business_intro.py +1 -1
- pyrogram/raw/functions/account/update_business_location.py +1 -1
- pyrogram/raw/functions/account/update_business_work_hours.py +1 -1
- pyrogram/raw/functions/account/update_color.py +1 -1
- pyrogram/raw/functions/account/update_connected_bot.py +1 -1
- pyrogram/raw/functions/account/update_device_locked.py +1 -1
- pyrogram/raw/functions/account/update_emoji_status.py +1 -1
- pyrogram/raw/functions/account/update_notify_settings.py +1 -1
- pyrogram/raw/functions/account/update_password_settings.py +1 -1
- pyrogram/raw/functions/account/update_personal_channel.py +1 -1
- pyrogram/raw/functions/account/update_profile.py +1 -1
- pyrogram/raw/functions/account/update_status.py +1 -1
- pyrogram/raw/functions/account/update_theme.py +1 -1
- pyrogram/raw/functions/account/update_username.py +1 -1
- pyrogram/raw/functions/account/upload_ringtone.py +1 -1
- pyrogram/raw/functions/account/upload_theme.py +1 -1
- pyrogram/raw/functions/account/upload_wall_paper.py +1 -1
- pyrogram/raw/functions/account/verify_email.py +1 -1
- pyrogram/raw/functions/account/verify_phone.py +1 -1
- pyrogram/raw/functions/auth/accept_login_token.py +1 -1
- pyrogram/raw/functions/auth/bind_temp_auth_key.py +1 -1
- pyrogram/raw/functions/auth/cancel_code.py +1 -1
- pyrogram/raw/functions/auth/check_password.py +1 -1
- pyrogram/raw/functions/auth/check_recovery_password.py +1 -1
- pyrogram/raw/functions/auth/drop_temp_auth_keys.py +1 -1
- pyrogram/raw/functions/auth/export_authorization.py +1 -1
- pyrogram/raw/functions/auth/export_login_token.py +1 -1
- pyrogram/raw/functions/auth/import_authorization.py +1 -1
- pyrogram/raw/functions/auth/import_bot_authorization.py +1 -1
- pyrogram/raw/functions/auth/import_login_token.py +1 -1
- pyrogram/raw/functions/auth/import_web_token_authorization.py +1 -1
- pyrogram/raw/functions/auth/log_out.py +1 -1
- pyrogram/raw/functions/auth/recover_password.py +1 -1
- pyrogram/raw/functions/auth/report_missing_code.py +1 -1
- pyrogram/raw/functions/auth/request_firebase_sms.py +1 -1
- pyrogram/raw/functions/auth/request_password_recovery.py +1 -1
- pyrogram/raw/functions/auth/resend_code.py +1 -1
- pyrogram/raw/functions/auth/reset_authorizations.py +1 -1
- pyrogram/raw/functions/auth/reset_login_email.py +1 -1
- pyrogram/raw/functions/auth/send_code.py +1 -1
- pyrogram/raw/functions/auth/sign_in.py +1 -1
- pyrogram/raw/functions/auth/sign_up.py +1 -1
- pyrogram/raw/functions/bots/add_preview_media.py +1 -1
- pyrogram/raw/functions/bots/allow_send_message.py +1 -1
- pyrogram/raw/functions/bots/answer_webhook_json_query.py +1 -1
- pyrogram/raw/functions/bots/can_send_message.py +1 -1
- pyrogram/raw/functions/bots/delete_preview_media.py +1 -1
- pyrogram/raw/functions/bots/edit_preview_media.py +1 -1
- pyrogram/raw/functions/bots/get_bot_commands.py +1 -1
- pyrogram/raw/functions/bots/get_bot_info.py +1 -1
- pyrogram/raw/functions/bots/get_bot_menu_button.py +1 -1
- pyrogram/raw/functions/bots/get_popular_app_bots.py +1 -1
- pyrogram/raw/functions/bots/get_preview_info.py +1 -1
- pyrogram/raw/functions/bots/get_preview_medias.py +1 -1
- pyrogram/raw/functions/bots/invoke_web_view_custom_method.py +1 -1
- pyrogram/raw/functions/bots/reorder_preview_medias.py +1 -1
- pyrogram/raw/functions/bots/reorder_usernames.py +1 -1
- pyrogram/raw/functions/bots/reset_bot_commands.py +1 -1
- pyrogram/raw/functions/bots/send_custom_request.py +1 -1
- pyrogram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py +1 -1
- pyrogram/raw/functions/bots/set_bot_commands.py +1 -1
- pyrogram/raw/functions/bots/set_bot_group_default_admin_rights.py +1 -1
- pyrogram/raw/functions/bots/set_bot_info.py +1 -1
- pyrogram/raw/functions/bots/set_bot_menu_button.py +1 -1
- pyrogram/raw/functions/bots/toggle_username.py +1 -1
- pyrogram/raw/functions/channels/__init__.py +0 -4
- pyrogram/raw/functions/channels/check_username.py +1 -1
- pyrogram/raw/functions/channels/convert_to_gigagroup.py +1 -1
- pyrogram/raw/functions/channels/create_channel.py +1 -1
- pyrogram/raw/functions/channels/create_forum_topic.py +1 -1
- pyrogram/raw/functions/channels/deactivate_all_usernames.py +1 -1
- pyrogram/raw/functions/channels/delete_channel.py +1 -1
- pyrogram/raw/functions/channels/delete_history.py +1 -1
- pyrogram/raw/functions/channels/delete_messages.py +1 -1
- pyrogram/raw/functions/channels/delete_participant_history.py +1 -1
- pyrogram/raw/functions/channels/delete_topic_history.py +1 -1
- pyrogram/raw/functions/channels/edit_admin.py +1 -1
- pyrogram/raw/functions/channels/edit_banned.py +1 -1
- pyrogram/raw/functions/channels/edit_creator.py +1 -1
- pyrogram/raw/functions/channels/edit_forum_topic.py +1 -1
- pyrogram/raw/functions/channels/edit_location.py +1 -1
- pyrogram/raw/functions/channels/edit_photo.py +1 -1
- pyrogram/raw/functions/channels/edit_title.py +1 -1
- pyrogram/raw/functions/channels/export_message_link.py +1 -1
- pyrogram/raw/functions/channels/get_admin_log.py +1 -1
- pyrogram/raw/functions/channels/get_admined_public_channels.py +1 -1
- pyrogram/raw/functions/channels/get_channel_recommendations.py +1 -1
- pyrogram/raw/functions/channels/get_channels.py +1 -1
- pyrogram/raw/functions/channels/get_forum_topics.py +1 -1
- pyrogram/raw/functions/channels/get_forum_topics_by_id.py +1 -1
- pyrogram/raw/functions/channels/get_full_channel.py +1 -1
- pyrogram/raw/functions/channels/get_groups_for_discussion.py +1 -1
- pyrogram/raw/functions/channels/get_inactive_channels.py +1 -1
- pyrogram/raw/functions/channels/get_left_channels.py +1 -1
- pyrogram/raw/functions/channels/get_messages.py +1 -1
- pyrogram/raw/functions/channels/get_participant.py +1 -1
- pyrogram/raw/functions/channels/get_participants.py +1 -1
- pyrogram/raw/functions/channels/get_send_as.py +1 -1
- pyrogram/raw/functions/channels/invite_to_channel.py +1 -1
- pyrogram/raw/functions/channels/join_channel.py +1 -1
- pyrogram/raw/functions/channels/leave_channel.py +1 -1
- pyrogram/raw/functions/channels/read_history.py +1 -1
- pyrogram/raw/functions/channels/read_message_contents.py +1 -1
- pyrogram/raw/functions/channels/reorder_pinned_forum_topics.py +1 -1
- pyrogram/raw/functions/channels/reorder_usernames.py +1 -1
- pyrogram/raw/functions/channels/report_anti_spam_false_positive.py +1 -1
- pyrogram/raw/functions/channels/report_spam.py +1 -1
- pyrogram/raw/functions/channels/restrict_sponsored_messages.py +1 -1
- pyrogram/raw/functions/channels/search_posts.py +1 -1
- pyrogram/raw/functions/channels/set_boosts_to_unblock_restrictions.py +1 -1
- pyrogram/raw/functions/channels/set_discussion_group.py +1 -1
- pyrogram/raw/functions/channels/set_emoji_stickers.py +1 -1
- pyrogram/raw/functions/channels/set_stickers.py +1 -1
- pyrogram/raw/functions/channels/toggle_anti_spam.py +1 -1
- pyrogram/raw/functions/channels/toggle_forum.py +1 -1
- pyrogram/raw/functions/channels/toggle_join_request.py +1 -1
- pyrogram/raw/functions/channels/toggle_join_to_send.py +1 -1
- pyrogram/raw/functions/channels/toggle_participants_hidden.py +1 -1
- pyrogram/raw/functions/channels/toggle_pre_history_hidden.py +1 -1
- pyrogram/raw/functions/channels/toggle_signatures.py +20 -14
- pyrogram/raw/functions/channels/toggle_slow_mode.py +1 -1
- pyrogram/raw/functions/channels/toggle_username.py +1 -1
- pyrogram/raw/functions/channels/toggle_view_forum_as_messages.py +1 -1
- pyrogram/raw/functions/channels/update_color.py +1 -1
- pyrogram/raw/functions/channels/update_emoji_status.py +1 -1
- pyrogram/raw/functions/channels/update_pinned_forum_topic.py +1 -1
- pyrogram/raw/functions/channels/update_username.py +1 -1
- pyrogram/raw/functions/chatlists/check_chatlist_invite.py +1 -1
- pyrogram/raw/functions/chatlists/delete_exported_invite.py +1 -1
- pyrogram/raw/functions/chatlists/edit_exported_invite.py +1 -1
- pyrogram/raw/functions/chatlists/export_chatlist_invite.py +1 -1
- pyrogram/raw/functions/chatlists/get_chatlist_updates.py +1 -1
- pyrogram/raw/functions/chatlists/get_exported_invites.py +1 -1
- pyrogram/raw/functions/chatlists/get_leave_chatlist_suggestions.py +1 -1
- pyrogram/raw/functions/chatlists/hide_chatlist_updates.py +1 -1
- pyrogram/raw/functions/chatlists/join_chatlist_invite.py +1 -1
- pyrogram/raw/functions/chatlists/join_chatlist_updates.py +1 -1
- pyrogram/raw/functions/chatlists/leave_chatlist.py +1 -1
- pyrogram/raw/functions/contacts/accept_contact.py +1 -1
- pyrogram/raw/functions/contacts/add_contact.py +1 -1
- pyrogram/raw/functions/contacts/block.py +1 -1
- pyrogram/raw/functions/contacts/block_from_replies.py +1 -1
- pyrogram/raw/functions/contacts/delete_by_phones.py +1 -1
- pyrogram/raw/functions/contacts/delete_contacts.py +1 -1
- pyrogram/raw/functions/contacts/edit_close_friends.py +1 -1
- pyrogram/raw/functions/contacts/export_contact_token.py +1 -1
- pyrogram/raw/functions/contacts/get_birthdays.py +1 -1
- pyrogram/raw/functions/contacts/get_blocked.py +1 -1
- pyrogram/raw/functions/contacts/get_contact_i_ds.py +1 -1
- pyrogram/raw/functions/contacts/get_contacts.py +1 -1
- pyrogram/raw/functions/contacts/get_located.py +1 -1
- pyrogram/raw/functions/contacts/get_saved.py +1 -1
- pyrogram/raw/functions/contacts/get_statuses.py +1 -1
- pyrogram/raw/functions/contacts/get_top_peers.py +1 -1
- pyrogram/raw/functions/contacts/import_contact_token.py +1 -1
- pyrogram/raw/functions/contacts/import_contacts.py +1 -1
- pyrogram/raw/functions/contacts/reset_saved.py +1 -1
- pyrogram/raw/functions/contacts/reset_top_peer_rating.py +1 -1
- pyrogram/raw/functions/contacts/resolve_phone.py +1 -1
- pyrogram/raw/functions/contacts/resolve_username.py +1 -1
- pyrogram/raw/functions/contacts/search.py +1 -1
- pyrogram/raw/functions/contacts/set_blocked.py +1 -1
- pyrogram/raw/functions/contacts/toggle_top_peers.py +1 -1
- pyrogram/raw/functions/contacts/unblock.py +1 -1
- pyrogram/raw/functions/contest/save_developer_info.py +1 -1
- pyrogram/raw/functions/destroy_auth_key.py +1 -1
- pyrogram/raw/functions/destroy_session.py +1 -1
- pyrogram/raw/functions/folders/edit_peer_folders.py +1 -1
- pyrogram/raw/functions/fragment/get_collectible_info.py +1 -1
- pyrogram/raw/functions/get_future_salts.py +1 -1
- pyrogram/raw/functions/help/accept_terms_of_service.py +1 -1
- pyrogram/raw/functions/help/dismiss_suggestion.py +1 -1
- pyrogram/raw/functions/help/edit_user_info.py +1 -1
- pyrogram/raw/functions/help/get_app_config.py +1 -1
- pyrogram/raw/functions/help/get_app_update.py +1 -1
- pyrogram/raw/functions/help/get_cdn_config.py +1 -1
- pyrogram/raw/functions/help/get_config.py +1 -1
- pyrogram/raw/functions/help/get_countries_list.py +1 -1
- pyrogram/raw/functions/help/get_deep_link_info.py +1 -1
- pyrogram/raw/functions/help/get_invite_text.py +1 -1
- pyrogram/raw/functions/help/get_nearest_dc.py +1 -1
- pyrogram/raw/functions/help/get_passport_config.py +1 -1
- pyrogram/raw/functions/help/get_peer_colors.py +1 -1
- pyrogram/raw/functions/help/get_peer_profile_colors.py +1 -1
- pyrogram/raw/functions/help/get_premium_promo.py +1 -1
- pyrogram/raw/functions/help/get_promo_data.py +1 -1
- pyrogram/raw/functions/help/get_recent_me_urls.py +1 -1
- pyrogram/raw/functions/help/get_support.py +1 -1
- pyrogram/raw/functions/help/get_support_name.py +1 -1
- pyrogram/raw/functions/help/get_terms_of_service_update.py +1 -1
- pyrogram/raw/functions/help/get_timezones_list.py +1 -1
- pyrogram/raw/functions/help/get_user_info.py +1 -1
- pyrogram/raw/functions/help/hide_promo_data.py +1 -1
- pyrogram/raw/functions/help/save_app_log.py +1 -1
- pyrogram/raw/functions/help/set_bot_updates_status.py +1 -1
- pyrogram/raw/functions/init_connection.py +1 -1
- pyrogram/raw/functions/invoke_after_msg.py +1 -1
- pyrogram/raw/functions/invoke_after_msgs.py +1 -1
- pyrogram/raw/functions/invoke_with_apns_secret.py +1 -1
- pyrogram/raw/functions/invoke_with_business_connection.py +1 -1
- pyrogram/raw/functions/invoke_with_google_play_integrity.py +1 -1
- pyrogram/raw/functions/invoke_with_layer.py +1 -1
- pyrogram/raw/functions/invoke_with_messages_range.py +1 -1
- pyrogram/raw/functions/invoke_with_takeout.py +1 -1
- pyrogram/raw/functions/invoke_without_updates.py +1 -1
- pyrogram/raw/functions/langpack/get_difference.py +1 -1
- pyrogram/raw/functions/langpack/get_lang_pack.py +1 -1
- pyrogram/raw/functions/langpack/get_language.py +1 -1
- pyrogram/raw/functions/langpack/get_languages.py +1 -1
- pyrogram/raw/functions/langpack/get_strings.py +1 -1
- pyrogram/raw/functions/messages/__init__.py +7 -0
- pyrogram/raw/functions/messages/accept_encryption.py +1 -1
- pyrogram/raw/functions/messages/accept_url_auth.py +1 -1
- pyrogram/raw/functions/messages/add_chat_user.py +1 -1
- pyrogram/raw/functions/messages/check_chat_invite.py +1 -1
- pyrogram/raw/functions/messages/check_history_import.py +1 -1
- pyrogram/raw/functions/messages/check_history_import_peer.py +1 -1
- pyrogram/raw/functions/messages/check_quick_reply_shortcut.py +1 -1
- pyrogram/raw/functions/messages/clear_all_drafts.py +1 -1
- pyrogram/raw/functions/messages/clear_recent_reactions.py +1 -1
- pyrogram/raw/functions/messages/clear_recent_stickers.py +1 -1
- pyrogram/raw/functions/messages/click_sponsored_message.py +94 -0
- pyrogram/raw/functions/messages/create_chat.py +1 -1
- pyrogram/raw/functions/messages/delete_chat.py +1 -1
- pyrogram/raw/functions/messages/delete_chat_user.py +1 -1
- pyrogram/raw/functions/messages/delete_exported_chat_invite.py +1 -1
- pyrogram/raw/functions/messages/delete_fact_check.py +1 -1
- pyrogram/raw/functions/messages/delete_history.py +1 -1
- pyrogram/raw/functions/messages/delete_messages.py +1 -1
- pyrogram/raw/functions/messages/delete_phone_call_history.py +1 -1
- pyrogram/raw/functions/messages/delete_quick_reply_messages.py +1 -1
- pyrogram/raw/functions/messages/delete_quick_reply_shortcut.py +1 -1
- pyrogram/raw/functions/messages/delete_revoked_exported_chat_invites.py +1 -1
- pyrogram/raw/functions/messages/delete_saved_history.py +1 -1
- pyrogram/raw/functions/messages/delete_scheduled_messages.py +1 -1
- pyrogram/raw/functions/messages/discard_encryption.py +1 -1
- pyrogram/raw/functions/messages/edit_chat_about.py +1 -1
- pyrogram/raw/functions/messages/edit_chat_admin.py +1 -1
- pyrogram/raw/functions/messages/edit_chat_default_banned_rights.py +1 -1
- pyrogram/raw/functions/messages/edit_chat_photo.py +1 -1
- pyrogram/raw/functions/messages/edit_chat_title.py +1 -1
- pyrogram/raw/functions/messages/edit_exported_chat_invite.py +1 -1
- pyrogram/raw/functions/messages/edit_fact_check.py +1 -1
- pyrogram/raw/functions/messages/edit_inline_bot_message.py +1 -1
- pyrogram/raw/functions/messages/edit_message.py +1 -1
- pyrogram/raw/functions/messages/edit_quick_reply_shortcut.py +1 -1
- pyrogram/raw/functions/messages/export_chat_invite.py +16 -6
- pyrogram/raw/functions/messages/fave_sticker.py +1 -1
- pyrogram/raw/functions/messages/forward_messages.py +10 -4
- pyrogram/raw/functions/messages/get_admins_with_invites.py +1 -1
- pyrogram/raw/functions/messages/get_all_drafts.py +1 -1
- pyrogram/raw/functions/messages/get_all_stickers.py +1 -1
- pyrogram/raw/functions/messages/get_archived_stickers.py +1 -1
- pyrogram/raw/functions/messages/get_attach_menu_bot.py +1 -1
- pyrogram/raw/functions/messages/get_attach_menu_bots.py +1 -1
- pyrogram/raw/functions/messages/get_attached_stickers.py +1 -1
- pyrogram/raw/functions/messages/get_available_effects.py +1 -1
- pyrogram/raw/functions/messages/get_available_reactions.py +1 -1
- pyrogram/raw/functions/messages/get_bot_app.py +1 -1
- pyrogram/raw/functions/messages/get_bot_callback_answer.py +1 -1
- pyrogram/raw/functions/messages/get_chat_invite_importers.py +10 -4
- pyrogram/raw/functions/messages/get_chats.py +1 -1
- pyrogram/raw/functions/messages/get_common_chats.py +1 -1
- pyrogram/raw/functions/messages/get_custom_emoji_documents.py +1 -1
- pyrogram/raw/functions/messages/get_default_history_ttl.py +1 -1
- pyrogram/raw/functions/messages/get_default_tag_reactions.py +1 -1
- pyrogram/raw/functions/messages/get_dh_config.py +1 -1
- pyrogram/raw/functions/messages/get_dialog_filters.py +1 -1
- pyrogram/raw/functions/messages/get_dialog_unread_marks.py +1 -1
- pyrogram/raw/functions/messages/get_dialogs.py +1 -1
- pyrogram/raw/functions/messages/get_discussion_message.py +1 -1
- pyrogram/raw/functions/messages/get_document_by_hash.py +1 -1
- pyrogram/raw/functions/messages/get_emoji_groups.py +1 -1
- pyrogram/raw/functions/messages/get_emoji_keywords.py +1 -1
- pyrogram/raw/functions/messages/get_emoji_keywords_difference.py +1 -1
- pyrogram/raw/functions/messages/get_emoji_keywords_languages.py +1 -1
- pyrogram/raw/functions/messages/get_emoji_profile_photo_groups.py +1 -1
- pyrogram/raw/functions/messages/get_emoji_status_groups.py +1 -1
- pyrogram/raw/functions/messages/get_emoji_sticker_groups.py +1 -1
- pyrogram/raw/functions/messages/get_emoji_stickers.py +1 -1
- pyrogram/raw/functions/messages/get_emoji_url.py +1 -1
- pyrogram/raw/functions/messages/get_exported_chat_invite.py +1 -1
- pyrogram/raw/functions/messages/get_exported_chat_invites.py +1 -1
- pyrogram/raw/functions/messages/get_extended_media.py +1 -1
- pyrogram/raw/functions/messages/get_fact_check.py +1 -1
- pyrogram/raw/functions/messages/get_faved_stickers.py +1 -1
- pyrogram/raw/functions/messages/get_featured_emoji_stickers.py +1 -1
- pyrogram/raw/functions/messages/get_featured_stickers.py +1 -1
- pyrogram/raw/functions/messages/get_full_chat.py +1 -1
- pyrogram/raw/functions/messages/get_game_high_scores.py +1 -1
- pyrogram/raw/functions/messages/get_history.py +1 -1
- pyrogram/raw/functions/messages/get_inline_bot_results.py +1 -1
- pyrogram/raw/functions/messages/get_inline_game_high_scores.py +1 -1
- pyrogram/raw/functions/messages/get_mask_stickers.py +1 -1
- pyrogram/raw/functions/messages/get_message_edit_data.py +1 -1
- pyrogram/raw/functions/messages/get_message_reactions_list.py +1 -1
- pyrogram/raw/functions/messages/get_message_read_participants.py +1 -1
- pyrogram/raw/functions/messages/get_messages.py +1 -1
- pyrogram/raw/functions/messages/get_messages_reactions.py +1 -1
- pyrogram/raw/functions/messages/get_messages_views.py +1 -1
- pyrogram/raw/functions/messages/get_my_stickers.py +1 -1
- pyrogram/raw/functions/messages/get_old_featured_stickers.py +1 -1
- pyrogram/raw/functions/messages/get_onlines.py +1 -1
- pyrogram/raw/functions/messages/get_outbox_read_date.py +1 -1
- pyrogram/raw/functions/messages/get_paid_reaction_privacy.py +67 -0
- pyrogram/raw/functions/messages/get_peer_dialogs.py +1 -1
- pyrogram/raw/functions/messages/get_peer_settings.py +1 -1
- pyrogram/raw/functions/messages/get_pinned_dialogs.py +1 -1
- pyrogram/raw/functions/messages/get_pinned_saved_dialogs.py +1 -1
- pyrogram/raw/functions/messages/get_poll_results.py +1 -1
- pyrogram/raw/functions/messages/get_poll_votes.py +1 -1
- pyrogram/raw/functions/messages/get_quick_replies.py +1 -1
- pyrogram/raw/functions/messages/get_quick_reply_messages.py +1 -1
- pyrogram/raw/functions/messages/get_recent_locations.py +1 -1
- pyrogram/raw/functions/messages/get_recent_reactions.py +1 -1
- pyrogram/raw/functions/messages/get_recent_stickers.py +1 -1
- pyrogram/raw/functions/messages/get_replies.py +1 -1
- pyrogram/raw/functions/messages/get_saved_dialogs.py +1 -1
- pyrogram/raw/functions/messages/get_saved_gifs.py +1 -1
- pyrogram/raw/functions/messages/get_saved_history.py +1 -1
- pyrogram/raw/functions/messages/get_saved_reaction_tags.py +1 -1
- pyrogram/raw/functions/messages/get_scheduled_history.py +1 -1
- pyrogram/raw/functions/messages/get_scheduled_messages.py +1 -1
- pyrogram/raw/functions/messages/get_search_counters.py +1 -1
- pyrogram/raw/functions/messages/get_search_results_calendar.py +1 -1
- pyrogram/raw/functions/messages/get_search_results_positions.py +1 -1
- pyrogram/raw/functions/messages/get_split_ranges.py +1 -1
- pyrogram/raw/functions/{channels → messages}/get_sponsored_messages.py +11 -11
- pyrogram/raw/functions/messages/get_sticker_set.py +1 -1
- pyrogram/raw/functions/messages/get_stickers.py +1 -1
- pyrogram/raw/functions/messages/get_suggested_dialog_filters.py +1 -1
- pyrogram/raw/functions/messages/get_top_reactions.py +1 -1
- pyrogram/raw/functions/messages/get_unread_mentions.py +1 -1
- pyrogram/raw/functions/messages/get_unread_reactions.py +1 -1
- pyrogram/raw/functions/messages/get_web_page.py +1 -1
- pyrogram/raw/functions/messages/get_web_page_preview.py +1 -1
- pyrogram/raw/functions/messages/hide_all_chat_join_requests.py +1 -1
- pyrogram/raw/functions/messages/hide_chat_join_request.py +1 -1
- pyrogram/raw/functions/messages/hide_peer_settings_bar.py +1 -1
- pyrogram/raw/functions/messages/import_chat_invite.py +1 -1
- pyrogram/raw/functions/messages/init_history_import.py +1 -1
- pyrogram/raw/functions/messages/install_sticker_set.py +1 -1
- pyrogram/raw/functions/messages/mark_dialog_unread.py +1 -1
- pyrogram/raw/functions/messages/migrate_chat.py +1 -1
- pyrogram/raw/functions/messages/prolong_web_view.py +1 -1
- pyrogram/raw/functions/messages/rate_transcribed_audio.py +1 -1
- pyrogram/raw/functions/messages/read_discussion.py +1 -1
- pyrogram/raw/functions/messages/read_encrypted_history.py +1 -1
- pyrogram/raw/functions/messages/read_featured_stickers.py +1 -1
- pyrogram/raw/functions/messages/read_history.py +1 -1
- pyrogram/raw/functions/messages/read_mentions.py +1 -1
- pyrogram/raw/functions/messages/read_message_contents.py +1 -1
- pyrogram/raw/functions/messages/read_reactions.py +1 -1
- pyrogram/raw/functions/messages/received_messages.py +1 -1
- pyrogram/raw/functions/messages/received_queue.py +1 -1
- pyrogram/raw/functions/messages/reorder_pinned_dialogs.py +1 -1
- pyrogram/raw/functions/messages/reorder_pinned_saved_dialogs.py +1 -1
- pyrogram/raw/functions/messages/reorder_quick_replies.py +1 -1
- pyrogram/raw/functions/messages/reorder_sticker_sets.py +1 -1
- pyrogram/raw/functions/messages/report.py +11 -11
- pyrogram/raw/functions/messages/report_encrypted_spam.py +1 -1
- pyrogram/raw/functions/messages/report_reaction.py +1 -1
- pyrogram/raw/functions/messages/report_spam.py +1 -1
- pyrogram/raw/functions/{channels → messages}/report_sponsored_message.py +11 -11
- pyrogram/raw/functions/messages/request_app_web_view.py +1 -1
- pyrogram/raw/functions/messages/request_encryption.py +1 -1
- pyrogram/raw/functions/messages/request_main_web_view.py +1 -1
- pyrogram/raw/functions/messages/request_simple_web_view.py +1 -1
- pyrogram/raw/functions/messages/request_url_auth.py +1 -1
- pyrogram/raw/functions/messages/request_web_view.py +1 -1
- pyrogram/raw/functions/messages/save_default_send_as.py +1 -1
- pyrogram/raw/functions/messages/save_draft.py +1 -1
- pyrogram/raw/functions/messages/save_gif.py +1 -1
- pyrogram/raw/functions/messages/save_recent_sticker.py +1 -1
- pyrogram/raw/functions/messages/search.py +1 -1
- pyrogram/raw/functions/messages/search_custom_emoji.py +1 -1
- pyrogram/raw/functions/messages/search_emoji_sticker_sets.py +1 -1
- pyrogram/raw/functions/messages/search_global.py +1 -1
- pyrogram/raw/functions/messages/search_sent_media.py +1 -1
- pyrogram/raw/functions/messages/search_sticker_sets.py +1 -1
- pyrogram/raw/functions/messages/send_bot_requested_peer.py +1 -1
- pyrogram/raw/functions/messages/send_encrypted.py +1 -1
- pyrogram/raw/functions/messages/send_encrypted_file.py +1 -1
- pyrogram/raw/functions/messages/send_encrypted_service.py +1 -1
- pyrogram/raw/functions/messages/send_inline_bot_result.py +1 -1
- pyrogram/raw/functions/messages/send_media.py +10 -4
- pyrogram/raw/functions/messages/send_message.py +10 -4
- pyrogram/raw/functions/messages/send_multi_media.py +10 -4
- pyrogram/raw/functions/messages/send_paid_reaction.py +107 -0
- pyrogram/raw/functions/messages/send_quick_reply_messages.py +1 -1
- pyrogram/raw/functions/messages/send_reaction.py +1 -1
- pyrogram/raw/functions/messages/send_scheduled_messages.py +1 -1
- pyrogram/raw/functions/messages/send_screenshot_notification.py +1 -1
- pyrogram/raw/functions/messages/send_vote.py +1 -1
- pyrogram/raw/functions/messages/send_web_view_data.py +1 -1
- pyrogram/raw/functions/messages/send_web_view_result_message.py +1 -1
- pyrogram/raw/functions/messages/set_bot_callback_answer.py +1 -1
- pyrogram/raw/functions/messages/set_bot_precheckout_results.py +1 -1
- pyrogram/raw/functions/messages/set_bot_shipping_results.py +1 -1
- pyrogram/raw/functions/messages/set_chat_available_reactions.py +15 -6
- pyrogram/raw/functions/messages/set_chat_theme.py +1 -1
- pyrogram/raw/functions/messages/set_chat_wall_paper.py +1 -1
- pyrogram/raw/functions/messages/set_default_history_ttl.py +1 -1
- pyrogram/raw/functions/messages/set_default_reaction.py +1 -1
- pyrogram/raw/functions/messages/set_encrypted_typing.py +1 -1
- pyrogram/raw/functions/messages/set_game_score.py +1 -1
- pyrogram/raw/functions/messages/set_history_ttl.py +1 -1
- pyrogram/raw/functions/messages/set_inline_bot_results.py +1 -1
- pyrogram/raw/functions/messages/set_inline_game_score.py +1 -1
- pyrogram/raw/functions/messages/set_typing.py +1 -1
- pyrogram/raw/functions/messages/start_bot.py +1 -1
- pyrogram/raw/functions/messages/start_history_import.py +1 -1
- pyrogram/raw/functions/messages/toggle_bot_in_attach_menu.py +1 -1
- pyrogram/raw/functions/messages/toggle_dialog_filter_tags.py +1 -1
- pyrogram/raw/functions/messages/toggle_dialog_pin.py +1 -1
- pyrogram/raw/functions/messages/toggle_no_forwards.py +1 -1
- pyrogram/raw/functions/messages/toggle_paid_reaction_privacy.py +88 -0
- pyrogram/raw/functions/messages/toggle_peer_translations.py +1 -1
- pyrogram/raw/functions/messages/toggle_saved_dialog_pin.py +1 -1
- pyrogram/raw/functions/messages/toggle_sticker_sets.py +1 -1
- pyrogram/raw/functions/messages/transcribe_audio.py +1 -1
- pyrogram/raw/functions/messages/translate_text.py +1 -1
- pyrogram/raw/functions/messages/uninstall_sticker_set.py +1 -1
- pyrogram/raw/functions/messages/unpin_all_messages.py +1 -1
- pyrogram/raw/functions/messages/update_dialog_filter.py +1 -1
- pyrogram/raw/functions/messages/update_dialog_filters_order.py +1 -1
- pyrogram/raw/functions/messages/update_pinned_message.py +1 -1
- pyrogram/raw/functions/messages/update_saved_reaction_tag.py +1 -1
- pyrogram/raw/functions/messages/upload_encrypted_file.py +1 -1
- pyrogram/raw/functions/messages/upload_imported_media.py +1 -1
- pyrogram/raw/functions/messages/upload_media.py +1 -1
- pyrogram/raw/functions/{channels → messages}/view_sponsored_message.py +11 -11
- pyrogram/raw/functions/payments/__init__.py +8 -0
- pyrogram/raw/functions/payments/apply_gift_code.py +1 -1
- pyrogram/raw/functions/payments/assign_app_store_transaction.py +1 -1
- pyrogram/raw/functions/payments/assign_play_market_transaction.py +1 -1
- pyrogram/raw/functions/payments/can_purchase_premium.py +1 -1
- pyrogram/raw/functions/payments/change_stars_subscription.py +91 -0
- pyrogram/raw/functions/payments/check_gift_code.py +1 -1
- pyrogram/raw/functions/payments/clear_saved_info.py +1 -1
- pyrogram/raw/functions/{channels/click_sponsored_message.py → payments/convert_star_gift.py} +17 -17
- pyrogram/raw/functions/payments/export_invoice.py +1 -1
- pyrogram/raw/functions/payments/fulfill_stars_subscription.py +80 -0
- pyrogram/raw/functions/payments/get_bank_card_data.py +1 -1
- pyrogram/raw/functions/payments/get_giveaway_info.py +1 -1
- pyrogram/raw/functions/payments/get_payment_form.py +1 -1
- pyrogram/raw/functions/payments/get_payment_receipt.py +1 -1
- pyrogram/raw/functions/payments/get_premium_gift_code_options.py +1 -1
- pyrogram/raw/functions/payments/get_saved_info.py +1 -1
- pyrogram/raw/functions/payments/get_star_gifts.py +72 -0
- pyrogram/raw/functions/payments/get_stars_gift_options.py +1 -1
- pyrogram/raw/functions/payments/get_stars_giveaway_options.py +67 -0
- pyrogram/raw/functions/payments/get_stars_revenue_ads_account_url.py +1 -1
- pyrogram/raw/functions/payments/get_stars_revenue_stats.py +1 -1
- pyrogram/raw/functions/payments/get_stars_revenue_withdrawal_url.py +1 -1
- pyrogram/raw/functions/payments/get_stars_status.py +1 -1
- pyrogram/raw/functions/payments/get_stars_subscriptions.py +88 -0
- pyrogram/raw/functions/payments/get_stars_topup_options.py +1 -1
- pyrogram/raw/functions/payments/get_stars_transactions.py +15 -6
- pyrogram/raw/functions/payments/get_stars_transactions_by_id.py +1 -1
- pyrogram/raw/functions/payments/get_user_star_gifts.py +88 -0
- pyrogram/raw/functions/payments/launch_prepaid_giveaway.py +1 -1
- pyrogram/raw/functions/payments/refund_stars_charge.py +1 -1
- pyrogram/raw/functions/payments/save_star_gift.py +88 -0
- pyrogram/raw/functions/payments/send_payment_form.py +1 -1
- pyrogram/raw/functions/payments/send_stars_form.py +5 -8
- pyrogram/raw/functions/payments/validate_requested_info.py +1 -1
- pyrogram/raw/functions/phone/accept_call.py +1 -1
- pyrogram/raw/functions/phone/check_group_call.py +1 -1
- pyrogram/raw/functions/phone/confirm_call.py +1 -1
- pyrogram/raw/functions/phone/create_group_call.py +1 -1
- pyrogram/raw/functions/phone/discard_call.py +1 -1
- pyrogram/raw/functions/phone/discard_group_call.py +1 -1
- pyrogram/raw/functions/phone/edit_group_call_participant.py +1 -1
- pyrogram/raw/functions/phone/edit_group_call_title.py +1 -1
- pyrogram/raw/functions/phone/export_group_call_invite.py +1 -1
- pyrogram/raw/functions/phone/get_call_config.py +1 -1
- pyrogram/raw/functions/phone/get_group_call.py +1 -1
- pyrogram/raw/functions/phone/get_group_call_join_as.py +1 -1
- pyrogram/raw/functions/phone/get_group_call_stream_channels.py +1 -1
- pyrogram/raw/functions/phone/get_group_call_stream_rtmp_url.py +1 -1
- pyrogram/raw/functions/phone/get_group_participants.py +1 -1
- pyrogram/raw/functions/phone/invite_to_group_call.py +1 -1
- pyrogram/raw/functions/phone/join_group_call.py +1 -1
- pyrogram/raw/functions/phone/join_group_call_presentation.py +1 -1
- pyrogram/raw/functions/phone/leave_group_call.py +1 -1
- pyrogram/raw/functions/phone/leave_group_call_presentation.py +1 -1
- pyrogram/raw/functions/phone/received_call.py +1 -1
- pyrogram/raw/functions/phone/request_call.py +1 -1
- pyrogram/raw/functions/phone/save_call_debug.py +1 -1
- pyrogram/raw/functions/phone/save_call_log.py +1 -1
- pyrogram/raw/functions/phone/save_default_group_call_join_as.py +1 -1
- pyrogram/raw/functions/phone/send_signaling_data.py +1 -1
- pyrogram/raw/functions/phone/set_call_rating.py +1 -1
- pyrogram/raw/functions/phone/start_scheduled_group_call.py +1 -1
- pyrogram/raw/functions/phone/toggle_group_call_record.py +1 -1
- pyrogram/raw/functions/phone/toggle_group_call_settings.py +1 -1
- pyrogram/raw/functions/phone/toggle_group_call_start_subscription.py +1 -1
- pyrogram/raw/functions/photos/delete_photos.py +1 -1
- pyrogram/raw/functions/photos/get_user_photos.py +1 -1
- pyrogram/raw/functions/photos/update_profile_photo.py +1 -1
- pyrogram/raw/functions/photos/upload_contact_profile_photo.py +1 -1
- pyrogram/raw/functions/photos/upload_profile_photo.py +1 -1
- pyrogram/raw/functions/ping.py +1 -1
- pyrogram/raw/functions/ping_delay_disconnect.py +1 -1
- pyrogram/raw/functions/premium/apply_boost.py +1 -1
- pyrogram/raw/functions/premium/get_boosts_list.py +1 -1
- pyrogram/raw/functions/premium/get_boosts_status.py +1 -1
- pyrogram/raw/functions/premium/get_my_boosts.py +1 -1
- pyrogram/raw/functions/premium/get_user_boosts.py +1 -1
- pyrogram/raw/functions/req_dh_params.py +1 -1
- pyrogram/raw/functions/req_pq.py +1 -1
- pyrogram/raw/functions/req_pq_multi.py +1 -1
- pyrogram/raw/functions/rpc_drop_answer.py +1 -1
- pyrogram/raw/functions/set_client_dh_params.py +1 -1
- pyrogram/raw/functions/smsjobs/finish_job.py +1 -1
- pyrogram/raw/functions/smsjobs/get_sms_job.py +1 -1
- pyrogram/raw/functions/smsjobs/get_status.py +1 -1
- pyrogram/raw/functions/smsjobs/is_eligible_to_join.py +1 -1
- pyrogram/raw/functions/smsjobs/join.py +1 -1
- pyrogram/raw/functions/smsjobs/leave.py +1 -1
- pyrogram/raw/functions/smsjobs/update_settings.py +1 -1
- pyrogram/raw/functions/stats/get_broadcast_revenue_stats.py +10 -10
- pyrogram/raw/functions/stats/get_broadcast_revenue_transactions.py +10 -10
- pyrogram/raw/functions/stats/get_broadcast_revenue_withdrawal_url.py +10 -10
- pyrogram/raw/functions/stats/get_broadcast_stats.py +1 -1
- pyrogram/raw/functions/stats/get_megagroup_stats.py +1 -1
- pyrogram/raw/functions/stats/get_message_public_forwards.py +1 -1
- pyrogram/raw/functions/stats/get_message_stats.py +1 -1
- pyrogram/raw/functions/stats/get_story_public_forwards.py +1 -1
- pyrogram/raw/functions/stats/get_story_stats.py +1 -1
- pyrogram/raw/functions/stats/load_async_graph.py +1 -1
- pyrogram/raw/functions/stickers/add_sticker_to_set.py +1 -1
- pyrogram/raw/functions/stickers/change_sticker.py +1 -1
- pyrogram/raw/functions/stickers/change_sticker_position.py +1 -1
- pyrogram/raw/functions/stickers/check_short_name.py +1 -1
- pyrogram/raw/functions/stickers/create_sticker_set.py +1 -1
- pyrogram/raw/functions/stickers/delete_sticker_set.py +1 -1
- pyrogram/raw/functions/stickers/remove_sticker_from_set.py +1 -1
- pyrogram/raw/functions/stickers/rename_sticker_set.py +1 -1
- pyrogram/raw/functions/stickers/replace_sticker.py +1 -1
- pyrogram/raw/functions/stickers/set_sticker_set_thumb.py +1 -1
- pyrogram/raw/functions/stickers/suggest_short_name.py +1 -1
- pyrogram/raw/functions/stories/activate_stealth_mode.py +1 -1
- pyrogram/raw/functions/stories/can_send_story.py +1 -1
- pyrogram/raw/functions/stories/delete_stories.py +1 -1
- pyrogram/raw/functions/stories/edit_story.py +1 -1
- pyrogram/raw/functions/stories/export_story_link.py +1 -1
- pyrogram/raw/functions/stories/get_all_read_peer_stories.py +1 -1
- pyrogram/raw/functions/stories/get_all_stories.py +1 -1
- pyrogram/raw/functions/stories/get_chats_to_send.py +1 -1
- pyrogram/raw/functions/stories/get_peer_max_i_ds.py +1 -1
- pyrogram/raw/functions/stories/get_peer_stories.py +1 -1
- pyrogram/raw/functions/stories/get_pinned_stories.py +1 -1
- pyrogram/raw/functions/stories/get_stories_archive.py +1 -1
- pyrogram/raw/functions/stories/get_stories_by_id.py +1 -1
- pyrogram/raw/functions/stories/get_stories_views.py +1 -1
- pyrogram/raw/functions/stories/get_story_reactions_list.py +1 -1
- pyrogram/raw/functions/stories/get_story_views_list.py +1 -1
- pyrogram/raw/functions/stories/increment_story_views.py +1 -1
- pyrogram/raw/functions/stories/read_stories.py +1 -1
- pyrogram/raw/functions/stories/report.py +11 -11
- pyrogram/raw/functions/stories/search_posts.py +16 -6
- pyrogram/raw/functions/stories/send_reaction.py +1 -1
- pyrogram/raw/functions/stories/send_story.py +1 -1
- pyrogram/raw/functions/stories/toggle_all_stories_hidden.py +1 -1
- pyrogram/raw/functions/stories/toggle_peer_stories_hidden.py +1 -1
- pyrogram/raw/functions/stories/toggle_pinned.py +1 -1
- pyrogram/raw/functions/stories/toggle_pinned_to_top.py +1 -1
- pyrogram/raw/functions/updates/get_channel_difference.py +1 -1
- pyrogram/raw/functions/updates/get_difference.py +1 -1
- pyrogram/raw/functions/updates/get_state.py +1 -1
- pyrogram/raw/functions/upload/get_cdn_file.py +1 -1
- pyrogram/raw/functions/upload/get_cdn_file_hashes.py +1 -1
- pyrogram/raw/functions/upload/get_file.py +1 -1
- pyrogram/raw/functions/upload/get_file_hashes.py +1 -1
- pyrogram/raw/functions/upload/get_web_file.py +1 -1
- pyrogram/raw/functions/upload/reupload_cdn_file.py +1 -1
- pyrogram/raw/functions/upload/save_big_file_part.py +1 -1
- pyrogram/raw/functions/upload/save_file_part.py +1 -1
- pyrogram/raw/functions/users/get_full_user.py +1 -1
- pyrogram/raw/functions/users/get_is_premium_required_to_contact.py +1 -1
- pyrogram/raw/functions/users/get_users.py +1 -1
- pyrogram/raw/functions/users/set_secure_value_errors.py +1 -1
- pyrogram/raw/types/__init__.py +25 -0
- pyrogram/raw/types/access_point_rule.py +1 -1
- pyrogram/raw/types/account/authorization_form.py +1 -1
- pyrogram/raw/types/account/authorizations.py +1 -1
- pyrogram/raw/types/account/auto_download_settings.py +1 -1
- pyrogram/raw/types/account/auto_save_settings.py +1 -1
- pyrogram/raw/types/account/business_chat_links.py +1 -1
- pyrogram/raw/types/account/connected_bots.py +1 -1
- pyrogram/raw/types/account/content_settings.py +1 -1
- pyrogram/raw/types/account/email_verified.py +1 -1
- pyrogram/raw/types/account/email_verified_login.py +1 -1
- pyrogram/raw/types/account/emoji_statuses.py +1 -1
- pyrogram/raw/types/account/emoji_statuses_not_modified.py +1 -1
- pyrogram/raw/types/account/password.py +1 -1
- pyrogram/raw/types/account/password_input_settings.py +1 -1
- pyrogram/raw/types/account/password_settings.py +1 -1
- pyrogram/raw/types/account/privacy_rules.py +1 -1
- pyrogram/raw/types/account/reset_password_failed_wait.py +1 -1
- pyrogram/raw/types/account/reset_password_ok.py +1 -1
- pyrogram/raw/types/account/reset_password_requested_wait.py +1 -1
- pyrogram/raw/types/account/resolved_business_chat_links.py +1 -1
- pyrogram/raw/types/account/saved_ringtone.py +1 -1
- pyrogram/raw/types/account/saved_ringtone_converted.py +1 -1
- pyrogram/raw/types/account/saved_ringtones.py +1 -1
- pyrogram/raw/types/account/saved_ringtones_not_modified.py +1 -1
- pyrogram/raw/types/account/sent_email_code.py +1 -1
- pyrogram/raw/types/account/takeout.py +1 -1
- pyrogram/raw/types/account/themes.py +1 -1
- pyrogram/raw/types/account/themes_not_modified.py +1 -1
- pyrogram/raw/types/account/tmp_password.py +1 -1
- pyrogram/raw/types/account/wall_papers.py +1 -1
- pyrogram/raw/types/account/wall_papers_not_modified.py +1 -1
- pyrogram/raw/types/account/web_authorizations.py +1 -1
- pyrogram/raw/types/account_days_ttl.py +1 -1
- pyrogram/raw/types/attach_menu_bot.py +1 -1
- pyrogram/raw/types/attach_menu_bot_icon.py +1 -1
- pyrogram/raw/types/attach_menu_bot_icon_color.py +1 -1
- pyrogram/raw/types/attach_menu_bots.py +1 -1
- pyrogram/raw/types/attach_menu_bots_bot.py +1 -1
- pyrogram/raw/types/attach_menu_bots_not_modified.py +1 -1
- pyrogram/raw/types/attach_menu_peer_type_bot_pm.py +1 -1
- pyrogram/raw/types/attach_menu_peer_type_broadcast.py +1 -1
- pyrogram/raw/types/attach_menu_peer_type_chat.py +1 -1
- pyrogram/raw/types/attach_menu_peer_type_pm.py +1 -1
- pyrogram/raw/types/attach_menu_peer_type_same_bot_pm.py +1 -1
- pyrogram/raw/types/auth/authorization.py +1 -1
- pyrogram/raw/types/auth/authorization_sign_up_required.py +1 -1
- pyrogram/raw/types/auth/code_type_call.py +1 -1
- pyrogram/raw/types/auth/code_type_flash_call.py +1 -1
- pyrogram/raw/types/auth/code_type_fragment_sms.py +1 -1
- pyrogram/raw/types/auth/code_type_missed_call.py +1 -1
- pyrogram/raw/types/auth/code_type_sms.py +1 -1
- pyrogram/raw/types/auth/exported_authorization.py +1 -1
- pyrogram/raw/types/auth/logged_out.py +1 -1
- pyrogram/raw/types/auth/login_token.py +1 -1
- pyrogram/raw/types/auth/login_token_migrate_to.py +1 -1
- pyrogram/raw/types/auth/login_token_success.py +1 -1
- pyrogram/raw/types/auth/password_recovery.py +1 -1
- pyrogram/raw/types/auth/sent_code.py +1 -1
- pyrogram/raw/types/auth/sent_code_success.py +1 -1
- pyrogram/raw/types/auth/sent_code_type_app.py +1 -1
- pyrogram/raw/types/auth/sent_code_type_call.py +1 -1
- pyrogram/raw/types/auth/sent_code_type_email_code.py +1 -1
- pyrogram/raw/types/auth/sent_code_type_firebase_sms.py +1 -1
- pyrogram/raw/types/auth/sent_code_type_flash_call.py +1 -1
- pyrogram/raw/types/auth/sent_code_type_fragment_sms.py +1 -1
- pyrogram/raw/types/auth/sent_code_type_missed_call.py +1 -1
- pyrogram/raw/types/auth/sent_code_type_set_up_email_required.py +1 -1
- pyrogram/raw/types/auth/sent_code_type_sms.py +1 -1
- pyrogram/raw/types/auth/sent_code_type_sms_phrase.py +1 -1
- pyrogram/raw/types/auth/sent_code_type_sms_word.py +1 -1
- pyrogram/raw/types/authorization.py +1 -1
- pyrogram/raw/types/auto_download_settings.py +1 -1
- pyrogram/raw/types/auto_save_exception.py +1 -1
- pyrogram/raw/types/auto_save_settings.py +1 -1
- pyrogram/raw/types/available_effect.py +1 -1
- pyrogram/raw/types/available_reaction.py +1 -1
- pyrogram/raw/types/bad_msg_notification.py +1 -1
- pyrogram/raw/types/bad_server_salt.py +1 -1
- pyrogram/raw/types/bank_card_open_url.py +1 -1
- pyrogram/raw/types/base_theme_arctic.py +1 -1
- pyrogram/raw/types/base_theme_classic.py +1 -1
- pyrogram/raw/types/base_theme_day.py +1 -1
- pyrogram/raw/types/base_theme_night.py +1 -1
- pyrogram/raw/types/base_theme_tinted.py +1 -1
- pyrogram/raw/types/bind_auth_key_inner.py +1 -1
- pyrogram/raw/types/birthday.py +1 -1
- pyrogram/raw/types/boost.py +15 -6
- pyrogram/raw/types/bot_app.py +1 -1
- pyrogram/raw/types/bot_app_not_modified.py +1 -1
- pyrogram/raw/types/bot_business_connection.py +1 -1
- pyrogram/raw/types/bot_command.py +1 -1
- pyrogram/raw/types/bot_command_scope_chat_admins.py +1 -1
- pyrogram/raw/types/bot_command_scope_chats.py +1 -1
- pyrogram/raw/types/bot_command_scope_default.py +1 -1
- pyrogram/raw/types/bot_command_scope_peer.py +1 -1
- pyrogram/raw/types/bot_command_scope_peer_admins.py +1 -1
- pyrogram/raw/types/bot_command_scope_peer_user.py +1 -1
- pyrogram/raw/types/bot_command_scope_users.py +1 -1
- pyrogram/raw/types/bot_info.py +15 -6
- pyrogram/raw/types/bot_inline_media_result.py +1 -1
- pyrogram/raw/types/bot_inline_message_media_auto.py +1 -1
- pyrogram/raw/types/bot_inline_message_media_contact.py +1 -1
- pyrogram/raw/types/bot_inline_message_media_geo.py +1 -1
- pyrogram/raw/types/bot_inline_message_media_invoice.py +1 -1
- pyrogram/raw/types/bot_inline_message_media_venue.py +1 -1
- pyrogram/raw/types/bot_inline_message_media_web_page.py +1 -1
- pyrogram/raw/types/bot_inline_message_text.py +1 -1
- pyrogram/raw/types/bot_inline_result.py +1 -1
- pyrogram/raw/types/bot_menu_button.py +1 -1
- pyrogram/raw/types/bot_menu_button_commands.py +1 -1
- pyrogram/raw/types/bot_menu_button_default.py +1 -1
- pyrogram/raw/types/bot_preview_media.py +1 -1
- pyrogram/raw/types/bots/bot_info.py +1 -1
- pyrogram/raw/types/bots/popular_app_bots.py +1 -1
- pyrogram/raw/types/bots/preview_info.py +1 -1
- pyrogram/raw/types/broadcast_revenue_balances.py +16 -8
- pyrogram/raw/types/broadcast_revenue_transaction_proceeds.py +1 -1
- pyrogram/raw/types/broadcast_revenue_transaction_refund.py +1 -1
- pyrogram/raw/types/broadcast_revenue_transaction_withdrawal.py +1 -1
- pyrogram/raw/types/business_away_message.py +1 -1
- pyrogram/raw/types/business_away_message_schedule_always.py +1 -1
- pyrogram/raw/types/business_away_message_schedule_custom.py +1 -1
- pyrogram/raw/types/business_away_message_schedule_outside_work_hours.py +1 -1
- pyrogram/raw/types/business_bot_recipients.py +1 -1
- pyrogram/raw/types/business_chat_link.py +1 -1
- pyrogram/raw/types/business_greeting_message.py +1 -1
- pyrogram/raw/types/business_intro.py +1 -1
- pyrogram/raw/types/business_location.py +1 -1
- pyrogram/raw/types/business_recipients.py +1 -1
- pyrogram/raw/types/business_weekly_open.py +1 -1
- pyrogram/raw/types/business_work_hours.py +1 -1
- pyrogram/raw/types/cdn_config.py +1 -1
- pyrogram/raw/types/cdn_public_key.py +1 -1
- pyrogram/raw/types/channel.py +21 -6
- pyrogram/raw/types/channel_admin_log_event.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_change_about.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_change_available_reactions.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_change_emoji_status.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_change_history_ttl.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_change_linked_chat.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_change_location.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_change_peer_color.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_change_photo.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_change_sticker_set.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_change_title.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_change_username.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_change_usernames.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_change_wallpaper.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_create_topic.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_default_banned_rights.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_delete_message.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_delete_topic.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_discard_group_call.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_edit_message.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_edit_topic.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_exported_invite_delete.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_exported_invite_edit.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_participant_invite.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_participant_join.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_request.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_participant_leave.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_participant_mute.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_participant_sub_extend.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_participant_unmute.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_participant_volume.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_pin_topic.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_send_message.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_start_group_call.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_stop_poll.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_toggle_forum.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_toggle_invites.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_toggle_signature_profiles.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_signatures.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py +1 -1
- pyrogram/raw/types/channel_admin_log_event_action_update_pinned.py +1 -1
- pyrogram/raw/types/channel_admin_log_events_filter.py +10 -4
- pyrogram/raw/types/channel_forbidden.py +1 -1
- pyrogram/raw/types/channel_full.py +10 -4
- pyrogram/raw/types/channel_location.py +1 -1
- pyrogram/raw/types/channel_location_empty.py +1 -1
- pyrogram/raw/types/channel_messages_filter.py +1 -1
- pyrogram/raw/types/channel_messages_filter_empty.py +1 -1
- pyrogram/raw/types/channel_participant.py +19 -8
- pyrogram/raw/types/channel_participant_admin.py +1 -1
- pyrogram/raw/types/channel_participant_banned.py +1 -1
- pyrogram/raw/types/channel_participant_creator.py +1 -1
- pyrogram/raw/types/channel_participant_left.py +1 -1
- pyrogram/raw/types/channel_participant_self.py +15 -6
- pyrogram/raw/types/channel_participants_admins.py +1 -1
- pyrogram/raw/types/channel_participants_banned.py +1 -1
- pyrogram/raw/types/channel_participants_bots.py +1 -1
- pyrogram/raw/types/channel_participants_contacts.py +1 -1
- pyrogram/raw/types/channel_participants_kicked.py +1 -1
- pyrogram/raw/types/channel_participants_mentions.py +1 -1
- pyrogram/raw/types/channel_participants_recent.py +1 -1
- pyrogram/raw/types/channel_participants_search.py +1 -1
- pyrogram/raw/types/channels/admin_log_results.py +1 -1
- pyrogram/raw/types/channels/channel_participant.py +1 -1
- pyrogram/raw/types/channels/channel_participants.py +1 -1
- pyrogram/raw/types/channels/channel_participants_not_modified.py +1 -1
- pyrogram/raw/types/channels/send_as_peers.py +1 -1
- pyrogram/raw/types/channels/sponsored_message_report_result_ads_hidden.py +2 -2
- pyrogram/raw/types/channels/sponsored_message_report_result_choose_option.py +2 -2
- pyrogram/raw/types/channels/sponsored_message_report_result_reported.py +2 -2
- pyrogram/raw/types/chat.py +1 -1
- pyrogram/raw/types/chat_admin_rights.py +1 -1
- pyrogram/raw/types/chat_admin_with_invites.py +1 -1
- pyrogram/raw/types/chat_banned_rights.py +1 -1
- pyrogram/raw/types/chat_empty.py +1 -1
- pyrogram/raw/types/chat_forbidden.py +1 -1
- pyrogram/raw/types/chat_full.py +1 -1
- pyrogram/raw/types/chat_invite.py +31 -6
- pyrogram/raw/types/chat_invite_already.py +1 -1
- pyrogram/raw/types/chat_invite_exported.py +25 -6
- pyrogram/raw/types/chat_invite_importer.py +1 -1
- pyrogram/raw/types/chat_invite_peek.py +1 -1
- pyrogram/raw/types/chat_invite_public_join_requests.py +1 -1
- pyrogram/raw/types/chat_onlines.py +1 -1
- pyrogram/raw/types/chat_participant.py +1 -1
- pyrogram/raw/types/chat_participant_admin.py +1 -1
- pyrogram/raw/types/chat_participant_creator.py +1 -1
- pyrogram/raw/types/chat_participants.py +1 -1
- pyrogram/raw/types/chat_participants_forbidden.py +1 -1
- pyrogram/raw/types/chat_photo.py +1 -1
- pyrogram/raw/types/chat_photo_empty.py +1 -1
- pyrogram/raw/types/chat_reactions_all.py +1 -1
- pyrogram/raw/types/chat_reactions_none.py +1 -1
- pyrogram/raw/types/chat_reactions_some.py +1 -1
- pyrogram/raw/types/chatlists/chatlist_invite.py +1 -1
- pyrogram/raw/types/chatlists/chatlist_invite_already.py +1 -1
- pyrogram/raw/types/chatlists/chatlist_updates.py +1 -1
- pyrogram/raw/types/chatlists/exported_chatlist_invite.py +1 -1
- pyrogram/raw/types/chatlists/exported_invites.py +1 -1
- pyrogram/raw/types/client_dh_inner_data.py +1 -1
- pyrogram/raw/types/code_settings.py +1 -1
- pyrogram/raw/types/config.py +1 -1
- pyrogram/raw/types/connected_bot.py +1 -1
- pyrogram/raw/types/contact.py +1 -1
- pyrogram/raw/types/contact_birthday.py +1 -1
- pyrogram/raw/types/contact_status.py +1 -1
- pyrogram/raw/types/contacts/blocked.py +1 -1
- pyrogram/raw/types/contacts/blocked_slice.py +1 -1
- pyrogram/raw/types/contacts/contact_birthdays.py +1 -1
- pyrogram/raw/types/contacts/contacts.py +1 -1
- pyrogram/raw/types/contacts/contacts_not_modified.py +1 -1
- pyrogram/raw/types/contacts/found.py +1 -1
- pyrogram/raw/types/contacts/imported_contacts.py +1 -1
- pyrogram/raw/types/contacts/resolved_peer.py +1 -1
- pyrogram/raw/types/contacts/top_peers.py +1 -1
- pyrogram/raw/types/contacts/top_peers_disabled.py +1 -1
- pyrogram/raw/types/contacts/top_peers_not_modified.py +1 -1
- pyrogram/raw/types/data_json.py +1 -1
- pyrogram/raw/types/dc_option.py +1 -1
- pyrogram/raw/types/default_history_ttl.py +1 -1
- pyrogram/raw/types/destroy_auth_key_fail.py +1 -1
- pyrogram/raw/types/destroy_auth_key_none.py +1 -1
- pyrogram/raw/types/destroy_auth_key_ok.py +1 -1
- pyrogram/raw/types/destroy_session_none.py +1 -1
- pyrogram/raw/types/destroy_session_ok.py +1 -1
- pyrogram/raw/types/dh_gen_fail.py +1 -1
- pyrogram/raw/types/dh_gen_ok.py +1 -1
- pyrogram/raw/types/dh_gen_retry.py +1 -1
- pyrogram/raw/types/dialog.py +1 -1
- pyrogram/raw/types/dialog_filter.py +1 -1
- pyrogram/raw/types/dialog_filter_chatlist.py +1 -1
- pyrogram/raw/types/dialog_filter_default.py +1 -1
- pyrogram/raw/types/dialog_filter_suggested.py +1 -1
- pyrogram/raw/types/dialog_folder.py +1 -1
- pyrogram/raw/types/dialog_peer.py +1 -1
- pyrogram/raw/types/dialog_peer_folder.py +1 -1
- pyrogram/raw/types/document.py +1 -1
- pyrogram/raw/types/document_attribute_animated.py +1 -1
- pyrogram/raw/types/document_attribute_audio.py +1 -1
- pyrogram/raw/types/document_attribute_custom_emoji.py +1 -1
- pyrogram/raw/types/document_attribute_filename.py +1 -1
- pyrogram/raw/types/document_attribute_has_stickers.py +1 -1
- pyrogram/raw/types/document_attribute_image_size.py +1 -1
- pyrogram/raw/types/document_attribute_sticker.py +1 -1
- pyrogram/raw/types/document_attribute_video.py +15 -6
- pyrogram/raw/types/document_empty.py +1 -1
- pyrogram/raw/types/draft_message.py +1 -1
- pyrogram/raw/types/draft_message_empty.py +1 -1
- pyrogram/raw/types/email_verification_apple.py +1 -1
- pyrogram/raw/types/email_verification_code.py +1 -1
- pyrogram/raw/types/email_verification_google.py +1 -1
- pyrogram/raw/types/email_verify_purpose_login_change.py +1 -1
- pyrogram/raw/types/email_verify_purpose_login_setup.py +1 -1
- pyrogram/raw/types/email_verify_purpose_passport.py +1 -1
- pyrogram/raw/types/emoji_group.py +1 -1
- pyrogram/raw/types/emoji_group_greeting.py +1 -1
- pyrogram/raw/types/emoji_group_premium.py +1 -1
- pyrogram/raw/types/emoji_keyword.py +1 -1
- pyrogram/raw/types/emoji_keyword_deleted.py +1 -1
- pyrogram/raw/types/emoji_keywords_difference.py +1 -1
- pyrogram/raw/types/emoji_language.py +1 -1
- pyrogram/raw/types/emoji_list.py +1 -1
- pyrogram/raw/types/emoji_list_not_modified.py +1 -1
- pyrogram/raw/types/emoji_status.py +1 -1
- pyrogram/raw/types/emoji_status_empty.py +1 -1
- pyrogram/raw/types/emoji_status_until.py +1 -1
- pyrogram/raw/types/emoji_url.py +1 -1
- pyrogram/raw/types/encrypted_chat.py +1 -1
- pyrogram/raw/types/encrypted_chat_discarded.py +1 -1
- pyrogram/raw/types/encrypted_chat_empty.py +1 -1
- pyrogram/raw/types/encrypted_chat_requested.py +1 -1
- pyrogram/raw/types/encrypted_chat_waiting.py +1 -1
- pyrogram/raw/types/encrypted_file.py +1 -1
- pyrogram/raw/types/encrypted_file_empty.py +1 -1
- pyrogram/raw/types/encrypted_message.py +1 -1
- pyrogram/raw/types/encrypted_message_service.py +1 -1
- pyrogram/raw/types/exported_chatlist_invite.py +1 -1
- pyrogram/raw/types/exported_contact_token.py +1 -1
- pyrogram/raw/types/exported_message_link.py +1 -1
- pyrogram/raw/types/exported_story_link.py +1 -1
- pyrogram/raw/types/fact_check.py +1 -1
- pyrogram/raw/types/file_hash.py +1 -1
- pyrogram/raw/types/folder.py +1 -1
- pyrogram/raw/types/folder_peer.py +1 -1
- pyrogram/raw/types/forum_topic.py +1 -1
- pyrogram/raw/types/forum_topic_deleted.py +1 -1
- pyrogram/raw/types/found_story.py +1 -1
- pyrogram/raw/types/fragment/collectible_info.py +1 -1
- pyrogram/raw/types/game.py +1 -1
- pyrogram/raw/types/geo_point.py +1 -1
- pyrogram/raw/types/geo_point_address.py +1 -1
- pyrogram/raw/types/geo_point_empty.py +1 -1
- pyrogram/raw/types/global_privacy_settings.py +1 -1
- pyrogram/raw/types/group_call.py +1 -1
- pyrogram/raw/types/group_call_discarded.py +1 -1
- pyrogram/raw/types/group_call_participant.py +1 -1
- pyrogram/raw/types/group_call_participant_video.py +1 -1
- pyrogram/raw/types/group_call_participant_video_source_group.py +1 -1
- pyrogram/raw/types/group_call_stream_channel.py +1 -1
- pyrogram/raw/types/help/app_config.py +1 -1
- pyrogram/raw/types/help/app_config_not_modified.py +1 -1
- pyrogram/raw/types/help/app_update.py +1 -1
- pyrogram/raw/types/help/config_simple.py +1 -1
- pyrogram/raw/types/help/countries_list.py +1 -1
- pyrogram/raw/types/help/countries_list_not_modified.py +1 -1
- pyrogram/raw/types/help/country.py +1 -1
- pyrogram/raw/types/help/country_code.py +1 -1
- pyrogram/raw/types/help/deep_link_info.py +1 -1
- pyrogram/raw/types/help/deep_link_info_empty.py +1 -1
- pyrogram/raw/types/help/invite_text.py +1 -1
- pyrogram/raw/types/help/no_app_update.py +1 -1
- pyrogram/raw/types/help/passport_config.py +1 -1
- pyrogram/raw/types/help/passport_config_not_modified.py +1 -1
- pyrogram/raw/types/help/peer_color_option.py +1 -1
- pyrogram/raw/types/help/peer_color_profile_set.py +1 -1
- pyrogram/raw/types/help/peer_color_set.py +1 -1
- pyrogram/raw/types/help/peer_colors.py +1 -1
- pyrogram/raw/types/help/peer_colors_not_modified.py +1 -1
- pyrogram/raw/types/help/premium_promo.py +1 -1
- pyrogram/raw/types/help/promo_data.py +1 -1
- pyrogram/raw/types/help/promo_data_empty.py +1 -1
- pyrogram/raw/types/help/recent_me_urls.py +1 -1
- pyrogram/raw/types/help/support.py +1 -1
- pyrogram/raw/types/help/support_name.py +1 -1
- pyrogram/raw/types/help/terms_of_service.py +1 -1
- pyrogram/raw/types/help/terms_of_service_update.py +1 -1
- pyrogram/raw/types/help/terms_of_service_update_empty.py +1 -1
- pyrogram/raw/types/help/timezones_list.py +1 -1
- pyrogram/raw/types/help/timezones_list_not_modified.py +1 -1
- pyrogram/raw/types/help/user_info.py +1 -1
- pyrogram/raw/types/help/user_info_empty.py +1 -1
- pyrogram/raw/types/high_score.py +1 -1
- pyrogram/raw/types/http_wait.py +1 -1
- pyrogram/raw/types/imported_contact.py +1 -1
- pyrogram/raw/types/inline_bot_switch_pm.py +1 -1
- pyrogram/raw/types/inline_bot_web_view.py +1 -1
- pyrogram/raw/types/inline_query_peer_type_bot_pm.py +1 -1
- pyrogram/raw/types/inline_query_peer_type_broadcast.py +1 -1
- pyrogram/raw/types/inline_query_peer_type_chat.py +1 -1
- pyrogram/raw/types/inline_query_peer_type_megagroup.py +1 -1
- pyrogram/raw/types/inline_query_peer_type_pm.py +1 -1
- pyrogram/raw/types/inline_query_peer_type_same_bot_pm.py +1 -1
- pyrogram/raw/types/input_app_event.py +1 -1
- pyrogram/raw/types/input_bot_app_id.py +1 -1
- pyrogram/raw/types/input_bot_app_short_name.py +1 -1
- pyrogram/raw/types/input_bot_inline_message_game.py +1 -1
- pyrogram/raw/types/input_bot_inline_message_id.py +1 -1
- pyrogram/raw/types/input_bot_inline_message_id64.py +1 -1
- pyrogram/raw/types/input_bot_inline_message_media_auto.py +1 -1
- pyrogram/raw/types/input_bot_inline_message_media_contact.py +1 -1
- pyrogram/raw/types/input_bot_inline_message_media_geo.py +1 -1
- pyrogram/raw/types/input_bot_inline_message_media_invoice.py +1 -1
- pyrogram/raw/types/input_bot_inline_message_media_venue.py +1 -1
- pyrogram/raw/types/input_bot_inline_message_media_web_page.py +1 -1
- pyrogram/raw/types/input_bot_inline_message_text.py +1 -1
- pyrogram/raw/types/input_bot_inline_result.py +1 -1
- pyrogram/raw/types/input_bot_inline_result_document.py +1 -1
- pyrogram/raw/types/input_bot_inline_result_game.py +1 -1
- pyrogram/raw/types/input_bot_inline_result_photo.py +1 -1
- pyrogram/raw/types/input_business_away_message.py +1 -1
- pyrogram/raw/types/input_business_bot_recipients.py +1 -1
- pyrogram/raw/types/input_business_chat_link.py +1 -1
- pyrogram/raw/types/input_business_greeting_message.py +1 -1
- pyrogram/raw/types/input_business_intro.py +1 -1
- pyrogram/raw/types/input_business_recipients.py +1 -1
- pyrogram/raw/types/input_channel.py +1 -1
- pyrogram/raw/types/input_channel_empty.py +1 -1
- pyrogram/raw/types/input_channel_from_message.py +1 -1
- pyrogram/raw/types/input_chat_photo.py +1 -1
- pyrogram/raw/types/input_chat_photo_empty.py +1 -1
- pyrogram/raw/types/input_chat_uploaded_photo.py +1 -1
- pyrogram/raw/types/input_chatlist_dialog_filter.py +1 -1
- pyrogram/raw/types/input_check_password_empty.py +1 -1
- pyrogram/raw/types/input_check_password_srp.py +1 -1
- pyrogram/raw/types/input_client_proxy.py +1 -1
- pyrogram/raw/types/input_collectible_phone.py +1 -1
- pyrogram/raw/types/input_collectible_username.py +1 -1
- pyrogram/raw/types/input_dialog_peer.py +1 -1
- pyrogram/raw/types/input_dialog_peer_folder.py +1 -1
- pyrogram/raw/types/input_document.py +1 -1
- pyrogram/raw/types/input_document_empty.py +1 -1
- pyrogram/raw/types/input_document_file_location.py +1 -1
- pyrogram/raw/types/input_encrypted_chat.py +1 -1
- pyrogram/raw/types/input_encrypted_file.py +1 -1
- pyrogram/raw/types/input_encrypted_file_big_uploaded.py +1 -1
- pyrogram/raw/types/input_encrypted_file_empty.py +1 -1
- pyrogram/raw/types/input_encrypted_file_location.py +1 -1
- pyrogram/raw/types/input_encrypted_file_uploaded.py +1 -1
- pyrogram/raw/types/input_file.py +1 -1
- pyrogram/raw/types/input_file_big.py +1 -1
- pyrogram/raw/types/input_file_location.py +1 -1
- pyrogram/raw/types/input_file_story_document.py +72 -0
- pyrogram/raw/types/input_folder_peer.py +1 -1
- pyrogram/raw/types/input_game_id.py +1 -1
- pyrogram/raw/types/input_game_short_name.py +1 -1
- pyrogram/raw/types/input_geo_point.py +1 -1
- pyrogram/raw/types/input_geo_point_empty.py +1 -1
- pyrogram/raw/types/input_group_call.py +1 -1
- pyrogram/raw/types/input_group_call_stream.py +1 -1
- pyrogram/raw/types/input_invoice_chat_invite_subscription.py +72 -0
- pyrogram/raw/types/input_invoice_message.py +1 -1
- pyrogram/raw/types/input_invoice_premium_gift_code.py +1 -1
- pyrogram/raw/types/input_invoice_slug.py +1 -1
- pyrogram/raw/types/input_invoice_star_gift.py +98 -0
- pyrogram/raw/types/input_invoice_stars.py +1 -1
- pyrogram/raw/types/input_keyboard_button_request_peer.py +1 -1
- pyrogram/raw/types/input_keyboard_button_url_auth.py +1 -1
- pyrogram/raw/types/input_keyboard_button_user_profile.py +1 -1
- pyrogram/raw/types/input_media_area_channel_post.py +1 -1
- pyrogram/raw/types/input_media_area_venue.py +1 -1
- pyrogram/raw/types/input_media_contact.py +1 -1
- pyrogram/raw/types/input_media_dice.py +1 -1
- pyrogram/raw/types/input_media_document.py +1 -1
- pyrogram/raw/types/input_media_document_external.py +1 -1
- pyrogram/raw/types/input_media_empty.py +1 -1
- pyrogram/raw/types/input_media_game.py +1 -1
- pyrogram/raw/types/input_media_geo_live.py +1 -1
- pyrogram/raw/types/input_media_geo_point.py +1 -1
- pyrogram/raw/types/input_media_invoice.py +1 -1
- pyrogram/raw/types/input_media_paid_media.py +19 -8
- pyrogram/raw/types/input_media_photo.py +1 -1
- pyrogram/raw/types/input_media_photo_external.py +1 -1
- pyrogram/raw/types/input_media_poll.py +1 -1
- pyrogram/raw/types/input_media_story.py +1 -1
- pyrogram/raw/types/input_media_uploaded_document.py +1 -1
- pyrogram/raw/types/input_media_uploaded_photo.py +1 -1
- pyrogram/raw/types/input_media_venue.py +1 -1
- pyrogram/raw/types/input_media_web_page.py +1 -1
- pyrogram/raw/types/input_message_callback_query.py +1 -1
- pyrogram/raw/types/input_message_entity_mention_name.py +1 -1
- pyrogram/raw/types/input_message_id.py +1 -1
- pyrogram/raw/types/input_message_pinned.py +1 -1
- pyrogram/raw/types/input_message_reply_to.py +1 -1
- pyrogram/raw/types/input_messages_filter_chat_photos.py +1 -1
- pyrogram/raw/types/input_messages_filter_contacts.py +1 -1
- pyrogram/raw/types/input_messages_filter_document.py +1 -1
- pyrogram/raw/types/input_messages_filter_empty.py +1 -1
- pyrogram/raw/types/input_messages_filter_geo.py +1 -1
- pyrogram/raw/types/input_messages_filter_gif.py +1 -1
- pyrogram/raw/types/input_messages_filter_music.py +1 -1
- pyrogram/raw/types/input_messages_filter_my_mentions.py +1 -1
- pyrogram/raw/types/input_messages_filter_phone_calls.py +1 -1
- pyrogram/raw/types/input_messages_filter_photo_video.py +1 -1
- pyrogram/raw/types/input_messages_filter_photos.py +1 -1
- pyrogram/raw/types/input_messages_filter_pinned.py +1 -1
- pyrogram/raw/types/input_messages_filter_round_video.py +1 -1
- pyrogram/raw/types/input_messages_filter_round_voice.py +1 -1
- pyrogram/raw/types/input_messages_filter_url.py +1 -1
- pyrogram/raw/types/input_messages_filter_video.py +1 -1
- pyrogram/raw/types/input_messages_filter_voice.py +1 -1
- pyrogram/raw/types/input_notify_broadcasts.py +1 -1
- pyrogram/raw/types/input_notify_chats.py +1 -1
- pyrogram/raw/types/input_notify_forum_topic.py +1 -1
- pyrogram/raw/types/input_notify_peer.py +1 -1
- pyrogram/raw/types/input_notify_users.py +1 -1
- pyrogram/raw/types/input_payment_credentials.py +1 -1
- pyrogram/raw/types/input_payment_credentials_apple_pay.py +1 -1
- pyrogram/raw/types/input_payment_credentials_google_pay.py +1 -1
- pyrogram/raw/types/input_payment_credentials_saved.py +1 -1
- pyrogram/raw/types/input_peer_channel.py +1 -1
- pyrogram/raw/types/input_peer_channel_from_message.py +1 -1
- pyrogram/raw/types/input_peer_chat.py +1 -1
- pyrogram/raw/types/input_peer_empty.py +1 -1
- pyrogram/raw/types/input_peer_notify_settings.py +1 -1
- pyrogram/raw/types/input_peer_photo_file_location.py +1 -1
- pyrogram/raw/types/input_peer_self.py +1 -1
- pyrogram/raw/types/input_peer_user.py +1 -1
- pyrogram/raw/types/input_peer_user_from_message.py +1 -1
- pyrogram/raw/types/input_phone_call.py +1 -1
- pyrogram/raw/types/input_phone_contact.py +1 -1
- pyrogram/raw/types/input_photo.py +1 -1
- pyrogram/raw/types/input_photo_empty.py +1 -1
- pyrogram/raw/types/input_photo_file_location.py +1 -1
- pyrogram/raw/types/input_photo_legacy_file_location.py +1 -1
- pyrogram/raw/types/input_privacy_key_about.py +1 -1
- pyrogram/raw/types/input_privacy_key_added_by_phone.py +1 -1
- pyrogram/raw/types/input_privacy_key_birthday.py +1 -1
- pyrogram/raw/types/input_privacy_key_chat_invite.py +1 -1
- pyrogram/raw/types/input_privacy_key_forwards.py +1 -1
- pyrogram/raw/types/input_privacy_key_phone_call.py +1 -1
- pyrogram/raw/types/input_privacy_key_phone_number.py +1 -1
- pyrogram/raw/types/input_privacy_key_phone_p2_p.py +1 -1
- pyrogram/raw/types/input_privacy_key_profile_photo.py +1 -1
- pyrogram/raw/types/input_privacy_key_status_timestamp.py +1 -1
- pyrogram/raw/types/input_privacy_key_voice_messages.py +1 -1
- pyrogram/raw/types/input_privacy_value_allow_all.py +1 -1
- pyrogram/raw/types/input_privacy_value_allow_chat_participants.py +1 -1
- pyrogram/raw/types/input_privacy_value_allow_close_friends.py +1 -1
- pyrogram/raw/types/input_privacy_value_allow_contacts.py +1 -1
- pyrogram/raw/types/input_privacy_value_allow_premium.py +1 -1
- pyrogram/raw/types/input_privacy_value_allow_users.py +1 -1
- pyrogram/raw/types/input_privacy_value_disallow_all.py +1 -1
- pyrogram/raw/types/input_privacy_value_disallow_chat_participants.py +1 -1
- pyrogram/raw/types/input_privacy_value_disallow_contacts.py +1 -1
- pyrogram/raw/types/input_privacy_value_disallow_users.py +1 -1
- pyrogram/raw/types/input_quick_reply_shortcut.py +1 -1
- pyrogram/raw/types/input_quick_reply_shortcut_id.py +1 -1
- pyrogram/raw/types/input_reply_to_message.py +1 -1
- pyrogram/raw/types/input_reply_to_story.py +1 -1
- pyrogram/raw/types/input_report_reason_child_abuse.py +1 -1
- pyrogram/raw/types/input_report_reason_copyright.py +1 -1
- pyrogram/raw/types/input_report_reason_fake.py +1 -1
- pyrogram/raw/types/input_report_reason_geo_irrelevant.py +1 -1
- pyrogram/raw/types/input_report_reason_illegal_drugs.py +1 -1
- pyrogram/raw/types/input_report_reason_other.py +1 -1
- pyrogram/raw/types/input_report_reason_personal_details.py +1 -1
- pyrogram/raw/types/input_report_reason_pornography.py +1 -1
- pyrogram/raw/types/input_report_reason_spam.py +1 -1
- pyrogram/raw/types/input_report_reason_violence.py +1 -1
- pyrogram/raw/types/input_secure_file.py +1 -1
- pyrogram/raw/types/input_secure_file_location.py +1 -1
- pyrogram/raw/types/input_secure_file_uploaded.py +1 -1
- pyrogram/raw/types/input_secure_value.py +1 -1
- pyrogram/raw/types/input_single_media.py +1 -1
- pyrogram/raw/types/input_stars_transaction.py +1 -1
- pyrogram/raw/types/input_sticker_set_animated_emoji.py +1 -1
- pyrogram/raw/types/input_sticker_set_animated_emoji_animations.py +1 -1
- pyrogram/raw/types/input_sticker_set_dice.py +1 -1
- pyrogram/raw/types/input_sticker_set_emoji_channel_default_statuses.py +1 -1
- pyrogram/raw/types/input_sticker_set_emoji_default_statuses.py +1 -1
- pyrogram/raw/types/input_sticker_set_emoji_default_topic_icons.py +1 -1
- pyrogram/raw/types/input_sticker_set_emoji_generic_animations.py +1 -1
- pyrogram/raw/types/input_sticker_set_empty.py +1 -1
- pyrogram/raw/types/input_sticker_set_id.py +1 -1
- pyrogram/raw/types/input_sticker_set_item.py +1 -1
- pyrogram/raw/types/input_sticker_set_premium_gifts.py +1 -1
- pyrogram/raw/types/input_sticker_set_short_name.py +1 -1
- pyrogram/raw/types/input_sticker_set_thumb.py +1 -1
- pyrogram/raw/types/input_stickered_media_document.py +1 -1
- pyrogram/raw/types/input_stickered_media_photo.py +1 -1
- pyrogram/raw/types/input_store_payment_gift_premium.py +1 -1
- pyrogram/raw/types/input_store_payment_premium_gift_code.py +16 -6
- pyrogram/raw/types/input_store_payment_premium_giveaway.py +1 -1
- pyrogram/raw/types/input_store_payment_premium_subscription.py +1 -1
- pyrogram/raw/types/input_store_payment_stars_gift.py +1 -1
- pyrogram/raw/types/input_store_payment_stars_giveaway.py +163 -0
- pyrogram/raw/types/input_store_payment_stars_topup.py +1 -1
- pyrogram/raw/types/input_takeout_file_location.py +1 -1
- pyrogram/raw/types/input_theme.py +1 -1
- pyrogram/raw/types/input_theme_settings.py +1 -1
- pyrogram/raw/types/input_theme_slug.py +1 -1
- pyrogram/raw/types/input_user.py +1 -1
- pyrogram/raw/types/input_user_empty.py +1 -1
- pyrogram/raw/types/input_user_from_message.py +1 -1
- pyrogram/raw/types/input_user_self.py +1 -1
- pyrogram/raw/types/input_wall_paper.py +1 -1
- pyrogram/raw/types/input_wall_paper_no_file.py +1 -1
- pyrogram/raw/types/input_wall_paper_slug.py +1 -1
- pyrogram/raw/types/input_web_document.py +1 -1
- pyrogram/raw/types/input_web_file_audio_album_thumb_location.py +1 -1
- pyrogram/raw/types/input_web_file_geo_point_location.py +1 -1
- pyrogram/raw/types/input_web_file_location.py +1 -1
- pyrogram/raw/types/invoice.py +1 -1
- pyrogram/raw/types/ip_port.py +1 -1
- pyrogram/raw/types/ip_port_secret.py +1 -1
- pyrogram/raw/types/json_array.py +1 -1
- pyrogram/raw/types/json_bool.py +1 -1
- pyrogram/raw/types/json_null.py +1 -1
- pyrogram/raw/types/json_number.py +1 -1
- pyrogram/raw/types/json_object.py +1 -1
- pyrogram/raw/types/json_object_value.py +1 -1
- pyrogram/raw/types/json_string.py +1 -1
- pyrogram/raw/types/keyboard_button.py +1 -1
- pyrogram/raw/types/keyboard_button_buy.py +1 -1
- pyrogram/raw/types/keyboard_button_callback.py +1 -1
- pyrogram/raw/types/keyboard_button_copy.py +80 -0
- pyrogram/raw/types/keyboard_button_game.py +1 -1
- pyrogram/raw/types/keyboard_button_request_geo_location.py +1 -1
- pyrogram/raw/types/keyboard_button_request_peer.py +1 -1
- pyrogram/raw/types/keyboard_button_request_phone.py +1 -1
- pyrogram/raw/types/keyboard_button_request_poll.py +1 -1
- pyrogram/raw/types/keyboard_button_row.py +1 -1
- pyrogram/raw/types/keyboard_button_simple_web_view.py +1 -1
- pyrogram/raw/types/keyboard_button_switch_inline.py +1 -1
- pyrogram/raw/types/keyboard_button_url.py +1 -1
- pyrogram/raw/types/keyboard_button_url_auth.py +1 -1
- pyrogram/raw/types/keyboard_button_user_profile.py +1 -1
- pyrogram/raw/types/keyboard_button_web_view.py +1 -1
- pyrogram/raw/types/labeled_price.py +1 -1
- pyrogram/raw/types/lang_pack_difference.py +1 -1
- pyrogram/raw/types/lang_pack_language.py +1 -1
- pyrogram/raw/types/lang_pack_string.py +1 -1
- pyrogram/raw/types/lang_pack_string_deleted.py +1 -1
- pyrogram/raw/types/lang_pack_string_pluralized.py +1 -1
- pyrogram/raw/types/mask_coords.py +1 -1
- pyrogram/raw/types/media_area_channel_post.py +1 -1
- pyrogram/raw/types/media_area_coordinates.py +1 -1
- pyrogram/raw/types/media_area_geo_point.py +1 -1
- pyrogram/raw/types/media_area_suggested_reaction.py +1 -1
- pyrogram/raw/types/media_area_url.py +1 -1
- pyrogram/raw/types/media_area_venue.py +1 -1
- pyrogram/raw/types/media_area_weather.py +1 -1
- pyrogram/raw/types/message.py +10 -4
- pyrogram/raw/types/message_action_boost_apply.py +1 -1
- pyrogram/raw/types/message_action_bot_allowed.py +1 -1
- pyrogram/raw/types/message_action_channel_create.py +1 -1
- pyrogram/raw/types/message_action_channel_migrate_from.py +1 -1
- pyrogram/raw/types/message_action_chat_add_user.py +1 -1
- pyrogram/raw/types/message_action_chat_create.py +1 -1
- pyrogram/raw/types/message_action_chat_delete_photo.py +1 -1
- pyrogram/raw/types/message_action_chat_delete_user.py +1 -1
- pyrogram/raw/types/message_action_chat_edit_photo.py +1 -1
- pyrogram/raw/types/message_action_chat_edit_title.py +1 -1
- pyrogram/raw/types/message_action_chat_joined_by_link.py +1 -1
- pyrogram/raw/types/message_action_chat_joined_by_request.py +1 -1
- pyrogram/raw/types/message_action_chat_migrate_to.py +1 -1
- pyrogram/raw/types/message_action_contact_sign_up.py +1 -1
- pyrogram/raw/types/message_action_custom_action.py +1 -1
- pyrogram/raw/types/message_action_empty.py +1 -1
- pyrogram/raw/types/message_action_game_score.py +1 -1
- pyrogram/raw/types/message_action_geo_proximity_reached.py +1 -1
- pyrogram/raw/types/message_action_gift_code.py +16 -6
- pyrogram/raw/types/message_action_gift_premium.py +16 -6
- pyrogram/raw/types/message_action_gift_stars.py +1 -1
- pyrogram/raw/types/message_action_giveaway_launch.py +18 -10
- pyrogram/raw/types/message_action_giveaway_results.py +16 -8
- pyrogram/raw/types/message_action_group_call.py +1 -1
- pyrogram/raw/types/message_action_group_call_scheduled.py +1 -1
- pyrogram/raw/types/message_action_history_clear.py +1 -1
- pyrogram/raw/types/message_action_invite_to_group_call.py +1 -1
- pyrogram/raw/types/message_action_payment_refunded.py +1 -1
- pyrogram/raw/types/message_action_payment_sent.py +1 -1
- pyrogram/raw/types/message_action_payment_sent_me.py +1 -1
- pyrogram/raw/types/message_action_phone_call.py +1 -1
- pyrogram/raw/types/message_action_pin_message.py +1 -1
- pyrogram/raw/types/message_action_prize_stars.py +104 -0
- pyrogram/raw/types/message_action_requested_peer.py +1 -1
- pyrogram/raw/types/message_action_requested_peer_sent_me.py +1 -1
- pyrogram/raw/types/message_action_screenshot_taken.py +1 -1
- pyrogram/raw/types/message_action_secure_values_sent.py +1 -1
- pyrogram/raw/types/message_action_secure_values_sent_me.py +1 -1
- pyrogram/raw/types/message_action_set_chat_theme.py +1 -1
- pyrogram/raw/types/message_action_set_chat_wall_paper.py +1 -1
- pyrogram/raw/types/message_action_set_messages_ttl.py +1 -1
- pyrogram/raw/types/message_action_star_gift.py +110 -0
- pyrogram/raw/types/message_action_suggest_profile_photo.py +1 -1
- pyrogram/raw/types/message_action_topic_create.py +1 -1
- pyrogram/raw/types/message_action_topic_edit.py +1 -1
- pyrogram/raw/types/message_action_web_view_data_sent.py +1 -1
- pyrogram/raw/types/message_action_web_view_data_sent_me.py +1 -1
- pyrogram/raw/types/message_empty.py +1 -1
- pyrogram/raw/types/message_entity_bank_card.py +1 -1
- pyrogram/raw/types/message_entity_blockquote.py +1 -1
- pyrogram/raw/types/message_entity_bold.py +1 -1
- pyrogram/raw/types/message_entity_bot_command.py +1 -1
- pyrogram/raw/types/message_entity_cashtag.py +1 -1
- pyrogram/raw/types/message_entity_code.py +1 -1
- pyrogram/raw/types/message_entity_custom_emoji.py +1 -1
- pyrogram/raw/types/message_entity_email.py +1 -1
- pyrogram/raw/types/message_entity_hashtag.py +1 -1
- pyrogram/raw/types/message_entity_italic.py +1 -1
- pyrogram/raw/types/message_entity_mention.py +1 -1
- pyrogram/raw/types/message_entity_mention_name.py +1 -1
- pyrogram/raw/types/message_entity_phone.py +1 -1
- pyrogram/raw/types/message_entity_pre.py +1 -1
- pyrogram/raw/types/message_entity_spoiler.py +1 -1
- pyrogram/raw/types/message_entity_strike.py +1 -1
- pyrogram/raw/types/message_entity_text_url.py +1 -1
- pyrogram/raw/types/message_entity_underline.py +1 -1
- pyrogram/raw/types/message_entity_unknown.py +1 -1
- pyrogram/raw/types/message_entity_url.py +1 -1
- pyrogram/raw/types/message_extended_media.py +1 -1
- pyrogram/raw/types/message_extended_media_preview.py +1 -1
- pyrogram/raw/types/message_fwd_header.py +1 -1
- pyrogram/raw/types/message_media_contact.py +1 -1
- pyrogram/raw/types/message_media_dice.py +1 -1
- pyrogram/raw/types/message_media_document.py +12 -12
- pyrogram/raw/types/message_media_empty.py +1 -1
- pyrogram/raw/types/message_media_game.py +1 -1
- pyrogram/raw/types/message_media_geo.py +1 -1
- pyrogram/raw/types/message_media_geo_live.py +1 -1
- pyrogram/raw/types/message_media_giveaway.py +23 -13
- pyrogram/raw/types/message_media_giveaway_results.py +23 -13
- pyrogram/raw/types/message_media_invoice.py +1 -1
- pyrogram/raw/types/message_media_paid_media.py +1 -1
- pyrogram/raw/types/message_media_photo.py +1 -1
- pyrogram/raw/types/message_media_poll.py +1 -1
- pyrogram/raw/types/message_media_story.py +1 -1
- pyrogram/raw/types/message_media_unsupported.py +1 -1
- pyrogram/raw/types/message_media_venue.py +1 -1
- pyrogram/raw/types/message_media_web_page.py +1 -1
- pyrogram/raw/types/message_peer_reaction.py +1 -1
- pyrogram/raw/types/message_peer_vote.py +1 -1
- pyrogram/raw/types/message_peer_vote_input_option.py +1 -1
- pyrogram/raw/types/message_peer_vote_multiple.py +1 -1
- pyrogram/raw/types/message_range.py +1 -1
- pyrogram/raw/types/message_reactions.py +16 -6
- pyrogram/raw/types/message_reactor.py +102 -0
- pyrogram/raw/types/message_replies.py +1 -1
- pyrogram/raw/types/message_reply_header.py +1 -1
- pyrogram/raw/types/message_reply_story_header.py +1 -1
- pyrogram/raw/types/message_report_option.py +80 -0
- pyrogram/raw/types/message_service.py +1 -1
- pyrogram/raw/types/message_views.py +1 -1
- pyrogram/raw/types/messages/affected_found_messages.py +1 -1
- pyrogram/raw/types/messages/affected_history.py +1 -1
- pyrogram/raw/types/messages/affected_messages.py +1 -1
- pyrogram/raw/types/messages/all_stickers.py +1 -1
- pyrogram/raw/types/messages/all_stickers_not_modified.py +1 -1
- pyrogram/raw/types/messages/archived_stickers.py +1 -1
- pyrogram/raw/types/messages/available_effects.py +1 -1
- pyrogram/raw/types/messages/available_effects_not_modified.py +1 -1
- pyrogram/raw/types/messages/available_reactions.py +1 -1
- pyrogram/raw/types/messages/available_reactions_not_modified.py +1 -1
- pyrogram/raw/types/messages/bot_app.py +1 -1
- pyrogram/raw/types/messages/bot_callback_answer.py +1 -1
- pyrogram/raw/types/messages/bot_results.py +1 -1
- pyrogram/raw/types/messages/channel_messages.py +1 -1
- pyrogram/raw/types/messages/chat_admins_with_invites.py +1 -1
- pyrogram/raw/types/messages/chat_full.py +1 -1
- pyrogram/raw/types/messages/chat_invite_importers.py +1 -1
- pyrogram/raw/types/messages/chats.py +1 -1
- pyrogram/raw/types/messages/chats_slice.py +1 -1
- pyrogram/raw/types/messages/checked_history_import_peer.py +1 -1
- pyrogram/raw/types/messages/dh_config.py +1 -1
- pyrogram/raw/types/messages/dh_config_not_modified.py +1 -1
- pyrogram/raw/types/messages/dialog_filters.py +1 -1
- pyrogram/raw/types/messages/dialogs.py +1 -1
- pyrogram/raw/types/messages/dialogs_not_modified.py +1 -1
- pyrogram/raw/types/messages/dialogs_slice.py +1 -1
- pyrogram/raw/types/messages/discussion_message.py +1 -1
- pyrogram/raw/types/messages/emoji_groups.py +1 -1
- pyrogram/raw/types/messages/emoji_groups_not_modified.py +1 -1
- pyrogram/raw/types/messages/exported_chat_invite.py +1 -1
- pyrogram/raw/types/messages/exported_chat_invite_replaced.py +1 -1
- pyrogram/raw/types/messages/exported_chat_invites.py +1 -1
- pyrogram/raw/types/messages/faved_stickers.py +1 -1
- pyrogram/raw/types/messages/faved_stickers_not_modified.py +1 -1
- pyrogram/raw/types/messages/featured_stickers.py +1 -1
- pyrogram/raw/types/messages/featured_stickers_not_modified.py +1 -1
- pyrogram/raw/types/messages/forum_topics.py +1 -1
- pyrogram/raw/types/messages/found_sticker_sets.py +1 -1
- pyrogram/raw/types/messages/found_sticker_sets_not_modified.py +1 -1
- pyrogram/raw/types/messages/high_scores.py +1 -1
- pyrogram/raw/types/messages/history_import.py +1 -1
- pyrogram/raw/types/messages/history_import_parsed.py +1 -1
- pyrogram/raw/types/messages/inactive_chats.py +1 -1
- pyrogram/raw/types/messages/invited_users.py +1 -1
- pyrogram/raw/types/messages/message_edit_data.py +1 -1
- pyrogram/raw/types/messages/message_reactions_list.py +1 -1
- pyrogram/raw/types/messages/message_views.py +1 -1
- pyrogram/raw/types/messages/messages.py +1 -1
- pyrogram/raw/types/messages/messages_not_modified.py +1 -1
- pyrogram/raw/types/messages/messages_slice.py +1 -1
- pyrogram/raw/types/messages/my_stickers.py +1 -1
- pyrogram/raw/types/messages/peer_dialogs.py +1 -1
- pyrogram/raw/types/messages/peer_settings.py +1 -1
- pyrogram/raw/types/messages/quick_replies.py +1 -1
- pyrogram/raw/types/messages/quick_replies_not_modified.py +1 -1
- pyrogram/raw/types/messages/reactions.py +1 -1
- pyrogram/raw/types/messages/reactions_not_modified.py +1 -1
- pyrogram/raw/types/messages/recent_stickers.py +1 -1
- pyrogram/raw/types/messages/recent_stickers_not_modified.py +1 -1
- pyrogram/raw/types/messages/saved_dialogs.py +1 -1
- pyrogram/raw/types/messages/saved_dialogs_not_modified.py +1 -1
- pyrogram/raw/types/messages/saved_dialogs_slice.py +1 -1
- pyrogram/raw/types/messages/saved_gifs.py +1 -1
- pyrogram/raw/types/messages/saved_gifs_not_modified.py +1 -1
- pyrogram/raw/types/messages/saved_reaction_tags.py +1 -1
- pyrogram/raw/types/messages/saved_reaction_tags_not_modified.py +1 -1
- pyrogram/raw/types/messages/search_counter.py +1 -1
- pyrogram/raw/types/messages/search_results_calendar.py +1 -1
- pyrogram/raw/types/messages/search_results_positions.py +1 -1
- pyrogram/raw/types/messages/sent_encrypted_file.py +1 -1
- pyrogram/raw/types/messages/sent_encrypted_message.py +1 -1
- pyrogram/raw/types/messages/sponsored_messages.py +2 -2
- pyrogram/raw/types/messages/sponsored_messages_empty.py +2 -2
- pyrogram/raw/types/messages/sticker_set.py +1 -1
- pyrogram/raw/types/messages/sticker_set_install_result_archive.py +1 -1
- pyrogram/raw/types/messages/sticker_set_install_result_success.py +1 -1
- pyrogram/raw/types/messages/sticker_set_not_modified.py +1 -1
- pyrogram/raw/types/messages/stickers.py +1 -1
- pyrogram/raw/types/messages/stickers_not_modified.py +1 -1
- pyrogram/raw/types/messages/transcribed_audio.py +1 -1
- pyrogram/raw/types/messages/translate_result.py +1 -1
- pyrogram/raw/types/messages/votes_list.py +1 -1
- pyrogram/raw/types/messages/web_page.py +1 -1
- pyrogram/raw/types/missing_invitee.py +1 -1
- pyrogram/raw/types/msg_detailed_info.py +1 -1
- pyrogram/raw/types/msg_new_detailed_info.py +1 -1
- pyrogram/raw/types/msg_resend_ans_req.py +1 -1
- pyrogram/raw/types/msg_resend_req.py +1 -1
- pyrogram/raw/types/msgs_ack.py +1 -1
- pyrogram/raw/types/msgs_all_info.py +1 -1
- pyrogram/raw/types/msgs_state_info.py +1 -1
- pyrogram/raw/types/msgs_state_req.py +1 -1
- pyrogram/raw/types/my_boost.py +1 -1
- pyrogram/raw/types/nearest_dc.py +1 -1
- pyrogram/raw/types/new_session_created.py +1 -1
- pyrogram/raw/types/notification_sound_default.py +1 -1
- pyrogram/raw/types/notification_sound_local.py +1 -1
- pyrogram/raw/types/notification_sound_none.py +1 -1
- pyrogram/raw/types/notification_sound_ringtone.py +1 -1
- pyrogram/raw/types/notify_broadcasts.py +1 -1
- pyrogram/raw/types/notify_chats.py +1 -1
- pyrogram/raw/types/notify_forum_topic.py +1 -1
- pyrogram/raw/types/notify_peer.py +1 -1
- pyrogram/raw/types/notify_users.py +1 -1
- pyrogram/raw/types/outbox_read_date.py +1 -1
- pyrogram/raw/types/page.py +1 -1
- pyrogram/raw/types/page_block_anchor.py +1 -1
- pyrogram/raw/types/page_block_audio.py +1 -1
- pyrogram/raw/types/page_block_author_date.py +1 -1
- pyrogram/raw/types/page_block_blockquote.py +1 -1
- pyrogram/raw/types/page_block_channel.py +1 -1
- pyrogram/raw/types/page_block_collage.py +1 -1
- pyrogram/raw/types/page_block_cover.py +1 -1
- pyrogram/raw/types/page_block_details.py +1 -1
- pyrogram/raw/types/page_block_divider.py +1 -1
- pyrogram/raw/types/page_block_embed.py +1 -1
- pyrogram/raw/types/page_block_embed_post.py +1 -1
- pyrogram/raw/types/page_block_footer.py +1 -1
- pyrogram/raw/types/page_block_header.py +1 -1
- pyrogram/raw/types/page_block_kicker.py +1 -1
- pyrogram/raw/types/page_block_list.py +1 -1
- pyrogram/raw/types/page_block_map.py +1 -1
- pyrogram/raw/types/page_block_ordered_list.py +1 -1
- pyrogram/raw/types/page_block_paragraph.py +1 -1
- pyrogram/raw/types/page_block_photo.py +1 -1
- pyrogram/raw/types/page_block_preformatted.py +1 -1
- pyrogram/raw/types/page_block_pullquote.py +1 -1
- pyrogram/raw/types/page_block_related_articles.py +1 -1
- pyrogram/raw/types/page_block_slideshow.py +1 -1
- pyrogram/raw/types/page_block_subheader.py +1 -1
- pyrogram/raw/types/page_block_subtitle.py +1 -1
- pyrogram/raw/types/page_block_table.py +1 -1
- pyrogram/raw/types/page_block_title.py +1 -1
- pyrogram/raw/types/page_block_unsupported.py +1 -1
- pyrogram/raw/types/page_block_video.py +1 -1
- pyrogram/raw/types/page_caption.py +1 -1
- pyrogram/raw/types/page_list_item_blocks.py +1 -1
- pyrogram/raw/types/page_list_item_text.py +1 -1
- pyrogram/raw/types/page_list_ordered_item_blocks.py +1 -1
- pyrogram/raw/types/page_list_ordered_item_text.py +1 -1
- pyrogram/raw/types/page_related_article.py +1 -1
- pyrogram/raw/types/page_table_cell.py +1 -1
- pyrogram/raw/types/page_table_row.py +1 -1
- pyrogram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py +1 -1
- pyrogram/raw/types/password_kdf_algo_unknown.py +1 -1
- pyrogram/raw/types/payment_charge.py +1 -1
- pyrogram/raw/types/payment_form_method.py +1 -1
- pyrogram/raw/types/payment_requested_info.py +1 -1
- pyrogram/raw/types/payment_saved_credentials_card.py +1 -1
- pyrogram/raw/types/payments/__init__.py +4 -0
- pyrogram/raw/types/payments/bank_card_data.py +1 -1
- pyrogram/raw/types/payments/checked_gift_code.py +1 -1
- pyrogram/raw/types/payments/exported_invoice.py +1 -1
- pyrogram/raw/types/payments/giveaway_info.py +1 -1
- pyrogram/raw/types/payments/giveaway_info_results.py +26 -16
- pyrogram/raw/types/payments/payment_form.py +1 -1
- pyrogram/raw/types/payments/payment_form_star_gift.py +89 -0
- pyrogram/raw/types/payments/payment_form_stars.py +1 -1
- pyrogram/raw/types/payments/payment_receipt.py +1 -1
- pyrogram/raw/types/payments/payment_receipt_stars.py +1 -1
- pyrogram/raw/types/payments/payment_result.py +1 -1
- pyrogram/raw/types/payments/payment_verification_needed.py +1 -1
- pyrogram/raw/types/payments/saved_info.py +1 -1
- pyrogram/raw/types/payments/star_gifts.py +89 -0
- pyrogram/raw/types/payments/star_gifts_not_modified.py +76 -0
- pyrogram/raw/types/payments/stars_revenue_ads_account_url.py +1 -1
- pyrogram/raw/types/payments/stars_revenue_stats.py +1 -1
- pyrogram/raw/types/payments/stars_revenue_withdrawal_url.py +1 -1
- pyrogram/raw/types/payments/stars_status.py +44 -13
- pyrogram/raw/types/payments/user_star_gifts.py +108 -0
- pyrogram/raw/types/payments/validated_requested_info.py +1 -1
- pyrogram/raw/types/peer_blocked.py +1 -1
- pyrogram/raw/types/peer_channel.py +1 -1
- pyrogram/raw/types/peer_chat.py +1 -1
- pyrogram/raw/types/peer_color.py +1 -1
- pyrogram/raw/types/peer_located.py +1 -1
- pyrogram/raw/types/peer_notify_settings.py +1 -1
- pyrogram/raw/types/peer_self_located.py +1 -1
- pyrogram/raw/types/peer_settings.py +1 -1
- pyrogram/raw/types/peer_stories.py +1 -1
- pyrogram/raw/types/peer_user.py +1 -1
- pyrogram/raw/types/phone/exported_group_call_invite.py +1 -1
- pyrogram/raw/types/phone/group_call.py +1 -1
- pyrogram/raw/types/phone/group_call_stream_channels.py +1 -1
- pyrogram/raw/types/phone/group_call_stream_rtmp_url.py +1 -1
- pyrogram/raw/types/phone/group_participants.py +1 -1
- pyrogram/raw/types/phone/join_as_peers.py +1 -1
- pyrogram/raw/types/phone/phone_call.py +1 -1
- pyrogram/raw/types/phone_call.py +1 -1
- pyrogram/raw/types/phone_call_accepted.py +1 -1
- pyrogram/raw/types/phone_call_discard_reason_busy.py +1 -1
- pyrogram/raw/types/phone_call_discard_reason_disconnect.py +1 -1
- pyrogram/raw/types/phone_call_discard_reason_hangup.py +1 -1
- pyrogram/raw/types/phone_call_discard_reason_missed.py +1 -1
- pyrogram/raw/types/phone_call_discarded.py +1 -1
- pyrogram/raw/types/phone_call_empty.py +1 -1
- pyrogram/raw/types/phone_call_protocol.py +1 -1
- pyrogram/raw/types/phone_call_requested.py +1 -1
- pyrogram/raw/types/phone_call_waiting.py +1 -1
- pyrogram/raw/types/phone_connection.py +1 -1
- pyrogram/raw/types/phone_connection_webrtc.py +1 -1
- pyrogram/raw/types/photo.py +1 -1
- pyrogram/raw/types/photo_cached_size.py +1 -1
- pyrogram/raw/types/photo_empty.py +1 -1
- pyrogram/raw/types/photo_path_size.py +1 -1
- pyrogram/raw/types/photo_size.py +1 -1
- pyrogram/raw/types/photo_size_empty.py +1 -1
- pyrogram/raw/types/photo_size_progressive.py +1 -1
- pyrogram/raw/types/photo_stripped_size.py +1 -1
- pyrogram/raw/types/photos/photo.py +1 -1
- pyrogram/raw/types/photos/photos.py +1 -1
- pyrogram/raw/types/photos/photos_slice.py +1 -1
- pyrogram/raw/types/poll.py +1 -1
- pyrogram/raw/types/poll_answer.py +1 -1
- pyrogram/raw/types/poll_answer_voters.py +1 -1
- pyrogram/raw/types/poll_results.py +1 -1
- pyrogram/raw/types/pong.py +1 -1
- pyrogram/raw/types/popular_contact.py +1 -1
- pyrogram/raw/types/post_address.py +1 -1
- pyrogram/raw/types/post_interaction_counters_message.py +1 -1
- pyrogram/raw/types/post_interaction_counters_story.py +1 -1
- pyrogram/raw/types/pq_inner_data.py +1 -1
- pyrogram/raw/types/pq_inner_data_dc.py +1 -1
- pyrogram/raw/types/pq_inner_data_temp.py +1 -1
- pyrogram/raw/types/pq_inner_data_temp_dc.py +1 -1
- pyrogram/raw/types/premium/boosts_list.py +1 -1
- pyrogram/raw/types/premium/boosts_status.py +1 -1
- pyrogram/raw/types/premium/my_boosts.py +1 -1
- pyrogram/raw/types/premium_gift_code_option.py +1 -1
- pyrogram/raw/types/premium_gift_option.py +1 -1
- pyrogram/raw/types/premium_subscription_option.py +1 -1
- pyrogram/raw/types/prepaid_giveaway.py +1 -1
- pyrogram/raw/types/prepaid_stars_giveaway.py +104 -0
- pyrogram/raw/types/privacy_key_about.py +1 -1
- pyrogram/raw/types/privacy_key_added_by_phone.py +1 -1
- pyrogram/raw/types/privacy_key_birthday.py +1 -1
- pyrogram/raw/types/privacy_key_chat_invite.py +1 -1
- pyrogram/raw/types/privacy_key_forwards.py +1 -1
- pyrogram/raw/types/privacy_key_phone_call.py +1 -1
- pyrogram/raw/types/privacy_key_phone_number.py +1 -1
- pyrogram/raw/types/privacy_key_phone_p2_p.py +1 -1
- pyrogram/raw/types/privacy_key_profile_photo.py +1 -1
- pyrogram/raw/types/privacy_key_status_timestamp.py +1 -1
- pyrogram/raw/types/privacy_key_voice_messages.py +1 -1
- pyrogram/raw/types/privacy_value_allow_all.py +1 -1
- pyrogram/raw/types/privacy_value_allow_chat_participants.py +1 -1
- pyrogram/raw/types/privacy_value_allow_close_friends.py +1 -1
- pyrogram/raw/types/privacy_value_allow_contacts.py +1 -1
- pyrogram/raw/types/privacy_value_allow_premium.py +1 -1
- pyrogram/raw/types/privacy_value_allow_users.py +1 -1
- pyrogram/raw/types/privacy_value_disallow_all.py +1 -1
- pyrogram/raw/types/privacy_value_disallow_chat_participants.py +1 -1
- pyrogram/raw/types/privacy_value_disallow_contacts.py +1 -1
- pyrogram/raw/types/privacy_value_disallow_users.py +1 -1
- pyrogram/raw/types/public_forward_message.py +1 -1
- pyrogram/raw/types/public_forward_story.py +1 -1
- pyrogram/raw/types/quick_reply.py +1 -1
- pyrogram/raw/types/reaction_count.py +1 -1
- pyrogram/raw/types/reaction_custom_emoji.py +1 -1
- pyrogram/raw/types/reaction_emoji.py +1 -1
- pyrogram/raw/types/reaction_empty.py +1 -1
- pyrogram/raw/types/reaction_notifications_from_all.py +1 -1
- pyrogram/raw/types/reaction_notifications_from_contacts.py +1 -1
- pyrogram/raw/types/reaction_paid.py +67 -0
- pyrogram/raw/types/reactions_notify_settings.py +1 -1
- pyrogram/raw/types/read_participant_date.py +1 -1
- pyrogram/raw/types/received_notify_message.py +1 -1
- pyrogram/raw/types/recent_me_url_chat.py +1 -1
- pyrogram/raw/types/recent_me_url_chat_invite.py +1 -1
- pyrogram/raw/types/recent_me_url_sticker_set.py +1 -1
- pyrogram/raw/types/recent_me_url_unknown.py +1 -1
- pyrogram/raw/types/recent_me_url_user.py +1 -1
- pyrogram/raw/types/reply_inline_markup.py +1 -1
- pyrogram/raw/types/reply_keyboard_force_reply.py +1 -1
- pyrogram/raw/types/reply_keyboard_hide.py +1 -1
- pyrogram/raw/types/reply_keyboard_markup.py +1 -1
- pyrogram/raw/types/report_result_add_comment.py +90 -0
- pyrogram/raw/types/report_result_choose_option.py +90 -0
- pyrogram/raw/types/report_result_reported.py +77 -0
- pyrogram/raw/types/request_peer_type_broadcast.py +1 -1
- pyrogram/raw/types/request_peer_type_chat.py +1 -1
- pyrogram/raw/types/request_peer_type_user.py +1 -1
- pyrogram/raw/types/requested_peer_channel.py +1 -1
- pyrogram/raw/types/requested_peer_chat.py +1 -1
- pyrogram/raw/types/requested_peer_user.py +1 -1
- pyrogram/raw/types/res_pq.py +1 -1
- pyrogram/raw/types/restriction_reason.py +1 -1
- pyrogram/raw/types/rpc_answer_dropped.py +1 -1
- pyrogram/raw/types/rpc_answer_dropped_running.py +1 -1
- pyrogram/raw/types/rpc_answer_unknown.py +1 -1
- pyrogram/raw/types/rpc_error.py +1 -1
- pyrogram/raw/types/rpc_result.py +1 -1
- pyrogram/raw/types/saved_dialog.py +1 -1
- pyrogram/raw/types/saved_phone_contact.py +1 -1
- pyrogram/raw/types/saved_reaction_tag.py +1 -1
- pyrogram/raw/types/search_result_position.py +1 -1
- pyrogram/raw/types/search_results_calendar_period.py +1 -1
- pyrogram/raw/types/secure_credentials_encrypted.py +1 -1
- pyrogram/raw/types/secure_data.py +1 -1
- pyrogram/raw/types/secure_file.py +1 -1
- pyrogram/raw/types/secure_file_empty.py +1 -1
- pyrogram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py +1 -1
- pyrogram/raw/types/secure_password_kdf_algo_sha512.py +1 -1
- pyrogram/raw/types/secure_password_kdf_algo_unknown.py +1 -1
- pyrogram/raw/types/secure_plain_email.py +1 -1
- pyrogram/raw/types/secure_plain_phone.py +1 -1
- pyrogram/raw/types/secure_required_type.py +1 -1
- pyrogram/raw/types/secure_required_type_one_of.py +1 -1
- pyrogram/raw/types/secure_secret_settings.py +1 -1
- pyrogram/raw/types/secure_value.py +1 -1
- pyrogram/raw/types/secure_value_error.py +1 -1
- pyrogram/raw/types/secure_value_error_data.py +1 -1
- pyrogram/raw/types/secure_value_error_file.py +1 -1
- pyrogram/raw/types/secure_value_error_files.py +1 -1
- pyrogram/raw/types/secure_value_error_front_side.py +1 -1
- pyrogram/raw/types/secure_value_error_reverse_side.py +1 -1
- pyrogram/raw/types/secure_value_error_selfie.py +1 -1
- pyrogram/raw/types/secure_value_error_translation_file.py +1 -1
- pyrogram/raw/types/secure_value_error_translation_files.py +1 -1
- pyrogram/raw/types/secure_value_hash.py +1 -1
- pyrogram/raw/types/secure_value_type_address.py +1 -1
- pyrogram/raw/types/secure_value_type_bank_statement.py +1 -1
- pyrogram/raw/types/secure_value_type_driver_license.py +1 -1
- pyrogram/raw/types/secure_value_type_email.py +1 -1
- pyrogram/raw/types/secure_value_type_identity_card.py +1 -1
- pyrogram/raw/types/secure_value_type_internal_passport.py +1 -1
- pyrogram/raw/types/secure_value_type_passport.py +1 -1
- pyrogram/raw/types/secure_value_type_passport_registration.py +1 -1
- pyrogram/raw/types/secure_value_type_personal_details.py +1 -1
- pyrogram/raw/types/secure_value_type_phone.py +1 -1
- pyrogram/raw/types/secure_value_type_rental_agreement.py +1 -1
- pyrogram/raw/types/secure_value_type_temporary_registration.py +1 -1
- pyrogram/raw/types/secure_value_type_utility_bill.py +1 -1
- pyrogram/raw/types/send_as_peer.py +1 -1
- pyrogram/raw/types/send_message_cancel_action.py +1 -1
- pyrogram/raw/types/send_message_choose_contact_action.py +1 -1
- pyrogram/raw/types/send_message_choose_sticker_action.py +1 -1
- pyrogram/raw/types/send_message_emoji_interaction.py +1 -1
- pyrogram/raw/types/send_message_emoji_interaction_seen.py +1 -1
- pyrogram/raw/types/send_message_game_play_action.py +1 -1
- pyrogram/raw/types/send_message_geo_location_action.py +1 -1
- pyrogram/raw/types/send_message_history_import_action.py +1 -1
- pyrogram/raw/types/send_message_record_audio_action.py +1 -1
- pyrogram/raw/types/send_message_record_round_action.py +1 -1
- pyrogram/raw/types/send_message_record_video_action.py +1 -1
- pyrogram/raw/types/send_message_typing_action.py +1 -1
- pyrogram/raw/types/send_message_upload_audio_action.py +1 -1
- pyrogram/raw/types/send_message_upload_document_action.py +1 -1
- pyrogram/raw/types/send_message_upload_photo_action.py +1 -1
- pyrogram/raw/types/send_message_upload_round_action.py +1 -1
- pyrogram/raw/types/send_message_upload_video_action.py +1 -1
- pyrogram/raw/types/server_dh_inner_data.py +1 -1
- pyrogram/raw/types/server_dh_params_fail.py +1 -1
- pyrogram/raw/types/server_dh_params_ok.py +1 -1
- pyrogram/raw/types/shipping_option.py +1 -1
- pyrogram/raw/types/sms_job.py +1 -1
- pyrogram/raw/types/smsjobs/eligible_to_join.py +1 -1
- pyrogram/raw/types/smsjobs/status.py +1 -1
- pyrogram/raw/types/speaking_in_group_call_action.py +1 -1
- pyrogram/raw/types/sponsored_message.py +16 -6
- pyrogram/raw/types/sponsored_message_report_option.py +1 -1
- pyrogram/raw/types/star_gift.py +146 -0
- pyrogram/raw/types/stars_gift_option.py +1 -1
- pyrogram/raw/types/stars_giveaway_option.py +136 -0
- pyrogram/raw/types/stars_giveaway_winners_option.py +88 -0
- pyrogram/raw/types/stars_revenue_status.py +1 -1
- pyrogram/raw/types/stars_subscription.py +125 -0
- pyrogram/raw/types/stars_subscription_pricing.py +80 -0
- pyrogram/raw/types/stars_topup_option.py +1 -1
- pyrogram/raw/types/stars_transaction.py +49 -6
- pyrogram/raw/types/stars_transaction_peer.py +1 -1
- pyrogram/raw/types/stars_transaction_peer_ads.py +1 -1
- pyrogram/raw/types/stars_transaction_peer_api.py +67 -0
- pyrogram/raw/types/stars_transaction_peer_app_store.py +1 -1
- pyrogram/raw/types/stars_transaction_peer_fragment.py +1 -1
- pyrogram/raw/types/stars_transaction_peer_play_market.py +1 -1
- pyrogram/raw/types/stars_transaction_peer_premium_bot.py +1 -1
- pyrogram/raw/types/stars_transaction_peer_unsupported.py +1 -1
- pyrogram/raw/types/stats/broadcast_revenue_stats.py +1 -1
- pyrogram/raw/types/stats/broadcast_revenue_transactions.py +1 -1
- pyrogram/raw/types/stats/broadcast_revenue_withdrawal_url.py +1 -1
- pyrogram/raw/types/stats/broadcast_stats.py +1 -1
- pyrogram/raw/types/stats/megagroup_stats.py +1 -1
- pyrogram/raw/types/stats/message_stats.py +1 -1
- pyrogram/raw/types/stats/public_forwards.py +1 -1
- pyrogram/raw/types/stats/story_stats.py +1 -1
- pyrogram/raw/types/stats_abs_value_and_prev.py +1 -1
- pyrogram/raw/types/stats_date_range_days.py +1 -1
- pyrogram/raw/types/stats_graph.py +1 -1
- pyrogram/raw/types/stats_graph_async.py +1 -1
- pyrogram/raw/types/stats_graph_error.py +1 -1
- pyrogram/raw/types/stats_group_top_admin.py +1 -1
- pyrogram/raw/types/stats_group_top_inviter.py +1 -1
- pyrogram/raw/types/stats_group_top_poster.py +1 -1
- pyrogram/raw/types/stats_percent_value.py +1 -1
- pyrogram/raw/types/stats_url.py +1 -1
- pyrogram/raw/types/sticker_keyword.py +1 -1
- pyrogram/raw/types/sticker_pack.py +1 -1
- pyrogram/raw/types/sticker_set.py +1 -1
- pyrogram/raw/types/sticker_set_covered.py +1 -1
- pyrogram/raw/types/sticker_set_full_covered.py +1 -1
- pyrogram/raw/types/sticker_set_multi_covered.py +1 -1
- pyrogram/raw/types/sticker_set_no_covered.py +1 -1
- pyrogram/raw/types/stickers/suggested_short_name.py +1 -1
- pyrogram/raw/types/storage/file_gif.py +1 -1
- pyrogram/raw/types/storage/file_jpeg.py +1 -1
- pyrogram/raw/types/storage/file_mov.py +1 -1
- pyrogram/raw/types/storage/file_mp3.py +1 -1
- pyrogram/raw/types/storage/file_mp4.py +1 -1
- pyrogram/raw/types/storage/file_partial.py +1 -1
- pyrogram/raw/types/storage/file_pdf.py +1 -1
- pyrogram/raw/types/storage/file_png.py +1 -1
- pyrogram/raw/types/storage/file_unknown.py +1 -1
- pyrogram/raw/types/storage/file_webp.py +1 -1
- pyrogram/raw/types/stories/all_stories.py +1 -1
- pyrogram/raw/types/stories/all_stories_not_modified.py +1 -1
- pyrogram/raw/types/stories/found_stories.py +1 -1
- pyrogram/raw/types/stories/peer_stories.py +1 -1
- pyrogram/raw/types/stories/stories.py +1 -1
- pyrogram/raw/types/stories/story_reactions_list.py +1 -1
- pyrogram/raw/types/stories/story_views.py +1 -1
- pyrogram/raw/types/stories/story_views_list.py +1 -1
- pyrogram/raw/types/stories_stealth_mode.py +1 -1
- pyrogram/raw/types/story_fwd_header.py +1 -1
- pyrogram/raw/types/story_item.py +1 -1
- pyrogram/raw/types/story_item_deleted.py +1 -1
- pyrogram/raw/types/story_item_skipped.py +1 -1
- pyrogram/raw/types/story_reaction.py +1 -1
- pyrogram/raw/types/story_reaction_public_forward.py +1 -1
- pyrogram/raw/types/story_reaction_public_repost.py +1 -1
- pyrogram/raw/types/story_view.py +1 -1
- pyrogram/raw/types/story_view_public_forward.py +1 -1
- pyrogram/raw/types/story_view_public_repost.py +1 -1
- pyrogram/raw/types/story_views.py +1 -1
- pyrogram/raw/types/text_anchor.py +1 -1
- pyrogram/raw/types/text_bold.py +1 -1
- pyrogram/raw/types/text_concat.py +1 -1
- pyrogram/raw/types/text_email.py +1 -1
- pyrogram/raw/types/text_empty.py +1 -1
- pyrogram/raw/types/text_fixed.py +1 -1
- pyrogram/raw/types/text_image.py +1 -1
- pyrogram/raw/types/text_italic.py +1 -1
- pyrogram/raw/types/text_marked.py +1 -1
- pyrogram/raw/types/text_phone.py +1 -1
- pyrogram/raw/types/text_plain.py +1 -1
- pyrogram/raw/types/text_strike.py +1 -1
- pyrogram/raw/types/text_subscript.py +1 -1
- pyrogram/raw/types/text_superscript.py +1 -1
- pyrogram/raw/types/text_underline.py +1 -1
- pyrogram/raw/types/text_url.py +1 -1
- pyrogram/raw/types/text_with_entities.py +1 -1
- pyrogram/raw/types/theme.py +1 -1
- pyrogram/raw/types/theme_settings.py +1 -1
- pyrogram/raw/types/timezone.py +1 -1
- pyrogram/raw/types/top_peer.py +1 -1
- pyrogram/raw/types/top_peer_category_bots_app.py +1 -1
- pyrogram/raw/types/top_peer_category_bots_inline.py +1 -1
- pyrogram/raw/types/top_peer_category_bots_pm.py +1 -1
- pyrogram/raw/types/top_peer_category_channels.py +1 -1
- pyrogram/raw/types/top_peer_category_correspondents.py +1 -1
- pyrogram/raw/types/top_peer_category_forward_chats.py +1 -1
- pyrogram/raw/types/top_peer_category_forward_users.py +1 -1
- pyrogram/raw/types/top_peer_category_groups.py +1 -1
- pyrogram/raw/types/top_peer_category_peers.py +1 -1
- pyrogram/raw/types/top_peer_category_phone_calls.py +1 -1
- pyrogram/raw/types/update_attach_menu_bots.py +1 -1
- pyrogram/raw/types/update_auto_save_settings.py +1 -1
- pyrogram/raw/types/update_bot_business_connect.py +1 -1
- pyrogram/raw/types/update_bot_callback_query.py +1 -1
- pyrogram/raw/types/update_bot_chat_boost.py +1 -1
- pyrogram/raw/types/update_bot_chat_invite_requester.py +1 -1
- pyrogram/raw/types/update_bot_commands.py +1 -1
- pyrogram/raw/types/update_bot_delete_business_message.py +1 -1
- pyrogram/raw/types/update_bot_edit_business_message.py +1 -1
- pyrogram/raw/types/update_bot_inline_query.py +1 -1
- pyrogram/raw/types/update_bot_inline_send.py +1 -1
- pyrogram/raw/types/update_bot_menu_button.py +1 -1
- pyrogram/raw/types/update_bot_message_reaction.py +1 -1
- pyrogram/raw/types/update_bot_message_reactions.py +1 -1
- pyrogram/raw/types/update_bot_new_business_message.py +1 -1
- pyrogram/raw/types/update_bot_precheckout_query.py +1 -1
- pyrogram/raw/types/update_bot_purchased_paid_media.py +88 -0
- pyrogram/raw/types/update_bot_shipping_query.py +1 -1
- pyrogram/raw/types/update_bot_stopped.py +1 -1
- pyrogram/raw/types/update_bot_webhook_json.py +1 -1
- pyrogram/raw/types/update_bot_webhook_json_query.py +1 -1
- pyrogram/raw/types/update_broadcast_revenue_transactions.py +1 -1
- pyrogram/raw/types/update_business_bot_callback_query.py +1 -1
- pyrogram/raw/types/update_channel.py +1 -1
- pyrogram/raw/types/update_channel_available_messages.py +1 -1
- pyrogram/raw/types/update_channel_message_forwards.py +1 -1
- pyrogram/raw/types/update_channel_message_views.py +1 -1
- pyrogram/raw/types/update_channel_participant.py +1 -1
- pyrogram/raw/types/update_channel_pinned_topic.py +1 -1
- pyrogram/raw/types/update_channel_pinned_topics.py +1 -1
- pyrogram/raw/types/update_channel_read_messages_contents.py +1 -1
- pyrogram/raw/types/update_channel_too_long.py +1 -1
- pyrogram/raw/types/update_channel_user_typing.py +1 -1
- pyrogram/raw/types/update_channel_view_forum_as_messages.py +1 -1
- pyrogram/raw/types/update_channel_web_page.py +1 -1
- pyrogram/raw/types/update_chat.py +1 -1
- pyrogram/raw/types/update_chat_default_banned_rights.py +1 -1
- pyrogram/raw/types/update_chat_participant.py +1 -1
- pyrogram/raw/types/update_chat_participant_add.py +1 -1
- pyrogram/raw/types/update_chat_participant_admin.py +1 -1
- pyrogram/raw/types/update_chat_participant_delete.py +1 -1
- pyrogram/raw/types/update_chat_participants.py +1 -1
- pyrogram/raw/types/update_chat_user_typing.py +1 -1
- pyrogram/raw/types/update_config.py +1 -1
- pyrogram/raw/types/update_contacts_reset.py +1 -1
- pyrogram/raw/types/update_dc_options.py +1 -1
- pyrogram/raw/types/update_delete_channel_messages.py +1 -1
- pyrogram/raw/types/update_delete_messages.py +1 -1
- pyrogram/raw/types/update_delete_quick_reply.py +1 -1
- pyrogram/raw/types/update_delete_quick_reply_messages.py +1 -1
- pyrogram/raw/types/update_delete_scheduled_messages.py +20 -8
- pyrogram/raw/types/update_dialog_filter.py +1 -1
- pyrogram/raw/types/update_dialog_filter_order.py +1 -1
- pyrogram/raw/types/update_dialog_filters.py +1 -1
- pyrogram/raw/types/update_dialog_pinned.py +1 -1
- pyrogram/raw/types/update_dialog_unread_mark.py +1 -1
- pyrogram/raw/types/update_draft_message.py +1 -1
- pyrogram/raw/types/update_edit_channel_message.py +1 -1
- pyrogram/raw/types/update_edit_message.py +1 -1
- pyrogram/raw/types/update_encrypted_chat_typing.py +1 -1
- pyrogram/raw/types/update_encrypted_messages_read.py +1 -1
- pyrogram/raw/types/update_encryption.py +1 -1
- pyrogram/raw/types/update_faved_stickers.py +1 -1
- pyrogram/raw/types/update_folder_peers.py +1 -1
- pyrogram/raw/types/update_geo_live_viewed.py +1 -1
- pyrogram/raw/types/update_group_call.py +1 -1
- pyrogram/raw/types/update_group_call_connection.py +1 -1
- pyrogram/raw/types/update_group_call_participants.py +1 -1
- pyrogram/raw/types/update_inline_bot_callback_query.py +1 -1
- pyrogram/raw/types/update_lang_pack.py +1 -1
- pyrogram/raw/types/update_lang_pack_too_long.py +1 -1
- pyrogram/raw/types/update_login_token.py +1 -1
- pyrogram/raw/types/update_message_extended_media.py +1 -1
- pyrogram/raw/types/update_message_id.py +1 -1
- pyrogram/raw/types/update_message_poll.py +1 -1
- pyrogram/raw/types/update_message_poll_vote.py +1 -1
- pyrogram/raw/types/update_message_reactions.py +1 -1
- pyrogram/raw/types/update_move_sticker_set_to_top.py +1 -1
- pyrogram/raw/types/update_new_authorization.py +1 -1
- pyrogram/raw/types/update_new_channel_message.py +1 -1
- pyrogram/raw/types/update_new_encrypted_message.py +1 -1
- pyrogram/raw/types/update_new_message.py +1 -1
- pyrogram/raw/types/update_new_quick_reply.py +1 -1
- pyrogram/raw/types/update_new_scheduled_message.py +1 -1
- pyrogram/raw/types/update_new_sticker_set.py +1 -1
- pyrogram/raw/types/update_new_story_reaction.py +1 -1
- pyrogram/raw/types/update_notify_settings.py +1 -1
- pyrogram/raw/types/update_paid_reaction_privacy.py +72 -0
- pyrogram/raw/types/update_peer_blocked.py +1 -1
- pyrogram/raw/types/update_peer_history_ttl.py +1 -1
- pyrogram/raw/types/update_peer_located.py +1 -1
- pyrogram/raw/types/update_peer_settings.py +1 -1
- pyrogram/raw/types/update_peer_wallpaper.py +1 -1
- pyrogram/raw/types/update_pending_join_requests.py +1 -1
- pyrogram/raw/types/update_phone_call.py +1 -1
- pyrogram/raw/types/update_phone_call_signaling_data.py +1 -1
- pyrogram/raw/types/update_pinned_channel_messages.py +1 -1
- pyrogram/raw/types/update_pinned_dialogs.py +1 -1
- pyrogram/raw/types/update_pinned_messages.py +1 -1
- pyrogram/raw/types/update_pinned_saved_dialogs.py +1 -1
- pyrogram/raw/types/update_privacy.py +1 -1
- pyrogram/raw/types/update_pts_changed.py +1 -1
- pyrogram/raw/types/update_quick_replies.py +1 -1
- pyrogram/raw/types/update_quick_reply_message.py +1 -1
- pyrogram/raw/types/update_read_channel_discussion_inbox.py +1 -1
- pyrogram/raw/types/update_read_channel_discussion_outbox.py +1 -1
- pyrogram/raw/types/update_read_channel_inbox.py +1 -1
- pyrogram/raw/types/update_read_channel_outbox.py +1 -1
- pyrogram/raw/types/update_read_featured_emoji_stickers.py +1 -1
- pyrogram/raw/types/update_read_featured_stickers.py +1 -1
- pyrogram/raw/types/update_read_history_inbox.py +1 -1
- pyrogram/raw/types/update_read_history_outbox.py +1 -1
- pyrogram/raw/types/update_read_messages_contents.py +1 -1
- pyrogram/raw/types/update_read_stories.py +1 -1
- pyrogram/raw/types/update_recent_emoji_statuses.py +1 -1
- pyrogram/raw/types/update_recent_reactions.py +1 -1
- pyrogram/raw/types/update_recent_stickers.py +1 -1
- pyrogram/raw/types/update_saved_dialog_pinned.py +1 -1
- pyrogram/raw/types/update_saved_gifs.py +1 -1
- pyrogram/raw/types/update_saved_reaction_tags.py +1 -1
- pyrogram/raw/types/update_saved_ringtones.py +1 -1
- pyrogram/raw/types/update_sent_story_reaction.py +1 -1
- pyrogram/raw/types/update_service_notification.py +1 -1
- pyrogram/raw/types/update_short.py +4 -2
- pyrogram/raw/types/update_short_chat_message.py +4 -2
- pyrogram/raw/types/update_short_message.py +4 -2
- pyrogram/raw/types/update_short_sent_message.py +4 -2
- pyrogram/raw/types/update_sms_job.py +1 -1
- pyrogram/raw/types/update_stars_balance.py +1 -1
- pyrogram/raw/types/update_stars_revenue_status.py +1 -1
- pyrogram/raw/types/update_sticker_sets.py +1 -1
- pyrogram/raw/types/update_sticker_sets_order.py +1 -1
- pyrogram/raw/types/update_stories_stealth_mode.py +1 -1
- pyrogram/raw/types/update_story.py +1 -1
- pyrogram/raw/types/update_story_id.py +1 -1
- pyrogram/raw/types/update_theme.py +1 -1
- pyrogram/raw/types/update_transcribed_audio.py +1 -1
- pyrogram/raw/types/update_user.py +1 -1
- pyrogram/raw/types/update_user_emoji_status.py +1 -1
- pyrogram/raw/types/update_user_name.py +1 -1
- pyrogram/raw/types/update_user_phone.py +1 -1
- pyrogram/raw/types/update_user_status.py +1 -1
- pyrogram/raw/types/update_user_typing.py +1 -1
- pyrogram/raw/types/update_web_page.py +1 -1
- pyrogram/raw/types/update_web_view_result_sent.py +1 -1
- pyrogram/raw/types/updates/channel_difference.py +1 -1
- pyrogram/raw/types/updates/channel_difference_empty.py +1 -1
- pyrogram/raw/types/updates/channel_difference_too_long.py +1 -1
- pyrogram/raw/types/updates/difference.py +1 -1
- pyrogram/raw/types/updates/difference_empty.py +1 -1
- pyrogram/raw/types/updates/difference_slice.py +1 -1
- pyrogram/raw/types/updates/difference_too_long.py +1 -1
- pyrogram/raw/types/updates/state.py +1 -1
- pyrogram/raw/types/updates_combined.py +4 -2
- pyrogram/raw/types/updates_t.py +4 -2
- pyrogram/raw/types/updates_too_long.py +4 -2
- pyrogram/raw/types/upload/cdn_file.py +1 -1
- pyrogram/raw/types/upload/cdn_file_reupload_needed.py +1 -1
- pyrogram/raw/types/upload/file.py +1 -1
- pyrogram/raw/types/upload/file_cdn_redirect.py +1 -1
- pyrogram/raw/types/upload/web_file.py +1 -1
- pyrogram/raw/types/url_auth_result_accepted.py +1 -1
- pyrogram/raw/types/url_auth_result_default.py +1 -1
- pyrogram/raw/types/url_auth_result_request.py +1 -1
- pyrogram/raw/types/user.py +1 -1
- pyrogram/raw/types/user_empty.py +1 -1
- pyrogram/raw/types/user_full.py +21 -6
- pyrogram/raw/types/user_profile_photo.py +1 -1
- pyrogram/raw/types/user_profile_photo_empty.py +1 -1
- pyrogram/raw/types/user_star_gift.py +131 -0
- pyrogram/raw/types/user_status_empty.py +1 -1
- pyrogram/raw/types/user_status_last_month.py +1 -1
- pyrogram/raw/types/user_status_last_week.py +1 -1
- pyrogram/raw/types/user_status_offline.py +1 -1
- pyrogram/raw/types/user_status_online.py +1 -1
- pyrogram/raw/types/user_status_recently.py +1 -1
- pyrogram/raw/types/username.py +1 -1
- pyrogram/raw/types/users/user_full.py +1 -1
- pyrogram/raw/types/video_size.py +1 -1
- pyrogram/raw/types/video_size_emoji_markup.py +1 -1
- pyrogram/raw/types/video_size_sticker_markup.py +1 -1
- pyrogram/raw/types/wall_paper.py +1 -1
- pyrogram/raw/types/wall_paper_no_file.py +1 -1
- pyrogram/raw/types/wall_paper_settings.py +1 -1
- pyrogram/raw/types/web_authorization.py +1 -1
- pyrogram/raw/types/web_document.py +1 -1
- pyrogram/raw/types/web_document_no_proxy.py +1 -1
- pyrogram/raw/types/web_page.py +1 -1
- pyrogram/raw/types/web_page_attribute_sticker_set.py +1 -1
- pyrogram/raw/types/web_page_attribute_story.py +1 -1
- pyrogram/raw/types/web_page_attribute_theme.py +1 -1
- pyrogram/raw/types/web_page_empty.py +1 -1
- pyrogram/raw/types/web_page_not_modified.py +1 -1
- pyrogram/raw/types/web_page_pending.py +1 -1
- pyrogram/raw/types/web_view_message_sent.py +1 -1
- pyrogram/raw/types/web_view_result_url.py +1 -1
- pyrogram/session/auth.py +18 -3
- pyrogram/session/session.py +29 -20
- pyrogram/storage/file_storage.py +6 -0
- pyrogram/storage/sqlite_storage.py +23 -31
- pyrogram/storage/storage.py +21 -5
- pyrogram/types/__init__.py +0 -1
- pyrogram/types/bots_and_keyboards/__init__.py +12 -0
- pyrogram/types/bots_and_keyboards/callback_query.py +37 -10
- pyrogram/types/bots_and_keyboards/chat_boost_updated.py +62 -0
- pyrogram/types/bots_and_keyboards/inline_keyboard_button.py +33 -3
- pyrogram/types/bots_and_keyboards/message_reaction_count_updated.py +89 -0
- pyrogram/types/bots_and_keyboards/message_reaction_updated.py +125 -0
- pyrogram/types/bots_and_keyboards/pre_checkout_query.py +1 -1
- pyrogram/types/bots_and_keyboards/purchased_paid_media.py +50 -0
- pyrogram/types/bots_and_keyboards/shipping_address.py +18 -0
- pyrogram/types/bots_and_keyboards/shipping_option.py +73 -0
- pyrogram/types/bots_and_keyboards/shipping_query.py +121 -0
- pyrogram/types/inline_mode/chosen_inline_result.py +4 -17
- pyrogram/types/input_media/input_media_audio.py +7 -1
- pyrogram/types/input_media/input_media_document.py +7 -1
- pyrogram/types/input_media/input_media_video.py +6 -0
- pyrogram/types/messages_and_media/__init__.py +18 -2
- pyrogram/types/messages_and_media/animation.py +49 -2
- pyrogram/types/messages_and_media/business_message.py +1 -6
- pyrogram/types/messages_and_media/chat_boost.py +108 -0
- pyrogram/types/messages_and_media/contact_registered.py +29 -0
- pyrogram/types/messages_and_media/forum_topic.py +3 -0
- pyrogram/types/messages_and_media/gift_code.py +60 -21
- pyrogram/types/messages_and_media/giveaway.py +7 -1
- pyrogram/types/messages_and_media/giveaway_completed.py +95 -0
- pyrogram/types/messages_and_media/giveaway_created.py +57 -0
- pyrogram/types/messages_and_media/giveaway_winners.py +150 -0
- pyrogram/types/messages_and_media/message.py +459 -128
- pyrogram/types/messages_and_media/poll.py +53 -29
- pyrogram/types/messages_and_media/reaction.py +12 -1
- pyrogram/types/messages_and_media/refunded_payment.py +81 -0
- pyrogram/types/messages_and_media/screenshot_taken.py +29 -0
- pyrogram/types/messages_and_media/star_gift.py +267 -0
- pyrogram/types/messages_and_media/story.py +34 -26
- pyrogram/types/messages_and_media/successful_payment.py +1 -2
- pyrogram/types/messages_and_media/video.py +8 -2
- pyrogram/types/messages_and_media/write_access_allowed.py +57 -0
- pyrogram/types/user_and_chats/__init__.py +4 -0
- pyrogram/types/user_and_chats/chat.py +13 -6
- pyrogram/types/user_and_chats/chat_member.py +8 -1
- pyrogram/types/user_and_chats/chat_photo.py +13 -2
- pyrogram/types/user_and_chats/phone_call_ended.py +63 -0
- pyrogram/types/user_and_chats/phone_call_started.py +49 -0
- pyrogram/types/user_and_chats/user.py +0 -22
- pyrogram/utils.py +0 -15
- WPyrogram-2.0.148.dist-info/RECORD +0 -3218
- pyrogram/handlers/conversation_handler.py +0 -68
- pyrogram/types/pyromod.py +0 -14
- {WPyrogram-2.0.148.dist-info → WPyrogram-2.0.149.dist-info}/COPYING +0 -0
- {WPyrogram-2.0.148.dist-info → WPyrogram-2.0.149.dist-info}/COPYING.lesser +0 -0
- {WPyrogram-2.0.148.dist-info → WPyrogram-2.0.149.dist-info}/NOTICE +0 -0
- {WPyrogram-2.0.148.dist-info → WPyrogram-2.0.149.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: WPyrogram
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.149
|
|
4
4
|
Summary: Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots - Woto's experimental fork
|
|
5
5
|
Home-page: https://github.com/ALiwoto/WPyrogram
|
|
6
6
|
Download-URL: https://github.com/ALiwoto/WPyrogram
|
|
@@ -38,8 +38,8 @@ Description-Content-Type: text/markdown
|
|
|
38
38
|
License-File: COPYING
|
|
39
39
|
License-File: COPYING.lesser
|
|
40
40
|
License-File: NOTICE
|
|
41
|
-
Requires-Dist: pyaes
|
|
42
|
-
Requires-Dist: pysocks
|
|
41
|
+
Requires-Dist: pyaes==1.6.1
|
|
42
|
+
Requires-Dist: pysocks==1.7.1
|
|
43
43
|
|
|
44
44
|
<p align="center">
|
|
45
45
|
<a href="https://github.com/pyrogram/pyrogram">
|