WPyrogram 2.0.152__py3-none-any.whl → 2.0.153__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.
- pyrogram/__init__.py +1 -1
- pyrogram/errors/exceptions/__init__.py +4 -4
- pyrogram/errors/exceptions/all.py +90 -90
- pyrogram/raw/all.py +84 -78
- pyrogram/raw/base/__init__.py +7 -3
- pyrogram/raw/base/account/__init__.py +1 -0
- pyrogram/raw/base/account/emoji_statuses.py +2 -1
- pyrogram/raw/base/account/paid_messages_revenue.py +63 -0
- pyrogram/raw/base/auth/sent_code.py +3 -2
- pyrogram/raw/base/{messages/message_empty.py → business_bot_rights.py} +5 -5
- pyrogram/raw/base/channel_admin_log_event_action.py +2 -3
- pyrogram/raw/base/contacts/__init__.py +1 -0
- pyrogram/raw/base/contacts/sponsored_peers.py +64 -0
- pyrogram/raw/base/{premium_gift_option.py → disallowed_gifts_settings.py} +5 -5
- pyrogram/raw/base/emoji_status.py +4 -3
- pyrogram/raw/base/input_invoice.py +3 -2
- pyrogram/raw/base/input_privacy_key.py +3 -2
- pyrogram/raw/base/input_saved_star_gift.py +54 -0
- pyrogram/raw/base/input_store_payment_purpose.py +3 -2
- pyrogram/raw/base/message_action.py +4 -8
- pyrogram/raw/base/message_media.py +1 -2
- pyrogram/raw/base/messages/__init__.py +1 -2
- pyrogram/raw/base/messages/chats.py +1 -2
- pyrogram/raw/base/messages/sent_encrypted_message.py +1 -2
- pyrogram/raw/base/messages/{web_view_result.py → web_page_preview.py} +6 -6
- pyrogram/raw/base/messages_filter.py +2 -3
- pyrogram/raw/base/paid_reaction_privacy.py +55 -0
- pyrogram/raw/base/payments/__init__.py +2 -1
- pyrogram/raw/base/payments/{user_star_gifts.py → saved_star_gifts.py} +7 -7
- pyrogram/raw/base/payments/star_gift_withdrawal_url.py +63 -0
- pyrogram/raw/base/payments/unique_star_gift.py +1 -1
- pyrogram/raw/base/privacy_key.py +3 -2
- pyrogram/raw/base/requirement_to_contact.py +65 -0
- pyrogram/raw/base/{web_page_preview.py → saved_star_gift.py} +5 -5
- pyrogram/raw/base/{user_star_gift.py → sponsored_peer.py} +5 -5
- pyrogram/raw/base/stats_url.py +0 -10
- pyrogram/raw/base/update.py +3 -5
- pyrogram/raw/base/updates_t.py +2 -5
- pyrogram/raw/base/user.py +1 -2
- pyrogram/raw/base/user_status.py +2 -3
- pyrogram/raw/base/web_page.py +2 -3
- pyrogram/raw/functions/__init__.py +1 -0
- pyrogram/raw/functions/account/__init__.py +3 -0
- pyrogram/raw/functions/account/accept_authorization.py +1 -1
- pyrogram/raw/functions/{payments/get_user_star_gifts.py → account/add_no_paid_messages_exception.py} +18 -26
- 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/{contacts/import_card.py → account/get_collectible_emoji_statuses.py} +14 -14
- 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/{messages/get_all_chats.py → account/get_paid_messages_revenue.py} +14 -14
- 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 +15 -11
- 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/check_download_file_params.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_admined_bots.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_bot_recommendations.py +5 -8
- 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/set_custom_verification.py +1 -1
- pyrogram/raw/functions/bots/toggle_user_emoji_status_permission.py +1 -1
- pyrogram/raw/functions/bots/toggle_username.py +1 -1
- pyrogram/raw/functions/bots/update_star_ref_program.py +1 -1
- pyrogram/raw/functions/bots/update_user_emoji_status.py +1 -1
- pyrogram/raw/functions/channels/__init__.py +1 -0
- 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 +16 -8
- 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 +1 -1
- 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_paid_messages_price.py +80 -0
- 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 +4 -10
- 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/__init__.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/{messages/set_web_view_result.py → contacts/get_sponsored_peers.py} +14 -14
- 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/__init__.py +0 -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 +3 -3
- 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_re_captcha.py +80 -0
- 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 +0 -9
- 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 +6 -14
- 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 +1 -1
- pyrogram/raw/functions/messages/fave_sticker.py +1 -1
- pyrogram/raw/functions/messages/forward_messages.py +24 -6
- 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 +1 -1
- 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 +1 -1
- 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_prepared_inline_message.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/messages/get_sponsored_messages.py +1 -1
- 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 +2 -2
- 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 +1 -1
- pyrogram/raw/functions/messages/report_encrypted_spam.py +1 -1
- pyrogram/raw/functions/messages/report_messages_delivery.py +1 -1
- pyrogram/raw/functions/messages/report_reaction.py +1 -1
- pyrogram/raw/functions/messages/report_spam.py +1 -1
- pyrogram/raw/functions/messages/report_sponsored_message.py +6 -14
- 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_prepared_inline_message.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/search_stickers.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 +15 -6
- pyrogram/raw/functions/messages/send_media.py +15 -6
- pyrogram/raw/functions/messages/send_message.py +15 -6
- pyrogram/raw/functions/messages/send_multi_media.py +15 -6
- pyrogram/raw/functions/messages/send_paid_reaction.py +9 -8
- 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 +1 -1
- 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 +8 -8
- 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/messages/view_sponsored_message.py +6 -14
- pyrogram/raw/functions/payments/__init__.py +7 -4
- 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/bot_cancel_stars_subscription.py +1 -1
- pyrogram/raw/functions/payments/{can_purchase_premium.py → can_purchase_store.py} +7 -7
- pyrogram/raw/functions/payments/change_stars_subscription.py +1 -1
- pyrogram/raw/functions/payments/check_gift_code.py +1 -1
- pyrogram/raw/functions/payments/clear_saved_info.py +1 -1
- pyrogram/raw/functions/payments/connect_star_ref_bot.py +1 -1
- pyrogram/raw/functions/payments/convert_star_gift.py +10 -10
- pyrogram/raw/functions/payments/edit_connected_star_ref_bot.py +1 -1
- pyrogram/raw/functions/payments/export_invoice.py +1 -1
- pyrogram/raw/functions/payments/fulfill_stars_subscription.py +1 -1
- pyrogram/raw/functions/payments/get_bank_card_data.py +1 -1
- pyrogram/raw/functions/payments/get_connected_star_ref_bot.py +1 -1
- pyrogram/raw/functions/payments/get_connected_star_ref_bots.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_saved_star_gift.py +72 -0
- pyrogram/raw/functions/payments/get_saved_star_gifts.py +126 -0
- pyrogram/raw/functions/payments/get_star_gift_upgrade_preview.py +1 -1
- pyrogram/raw/functions/{messages/get_web_view_result.py → payments/get_star_gift_withdrawal_url.py} +18 -26
- pyrogram/raw/functions/payments/get_star_gifts.py +1 -1
- pyrogram/raw/functions/payments/get_stars_gift_options.py +1 -1
- pyrogram/raw/functions/payments/get_stars_giveaway_options.py +1 -1
- 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 +1 -1
- pyrogram/raw/functions/payments/get_stars_topup_options.py +1 -1
- pyrogram/raw/functions/payments/get_stars_transactions.py +1 -1
- pyrogram/raw/functions/payments/get_stars_transactions_by_id.py +1 -1
- pyrogram/raw/functions/payments/get_suggested_star_ref_bots.py +1 -1
- pyrogram/raw/functions/{messages → payments}/get_unique_star_gift.py +2 -2
- 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 +10 -10
- pyrogram/raw/functions/payments/send_payment_form.py +1 -1
- pyrogram/raw/functions/payments/send_stars_form.py +1 -1
- pyrogram/raw/functions/{messages/get_stats_url.py → payments/toggle_chat_star_gift_notifications.py} +14 -22
- pyrogram/raw/functions/{messages/forward_message.py → payments/toggle_star_gifts_pinned_to_top.py} +14 -22
- pyrogram/raw/functions/payments/transfer_star_gift.py +12 -12
- pyrogram/raw/functions/payments/upgrade_star_gift.py +10 -10
- 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_conference_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 +1 -1
- pyrogram/raw/functions/stats/get_broadcast_revenue_transactions.py +1 -1
- pyrogram/raw/functions/stats/get_broadcast_revenue_withdrawal_url.py +1 -1
- 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 +1 -1
- pyrogram/raw/functions/stories/search_posts.py +1 -1
- 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/__init__.py +1 -1
- pyrogram/raw/functions/users/get_full_user.py +1 -1
- pyrogram/raw/functions/users/{get_is_premium_required_to_contact.py → get_requirements_to_contact.py} +8 -8
- 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 +21 -17
- pyrogram/raw/types/access_point_rule.py +1 -1
- pyrogram/raw/types/account/__init__.py +1 -0
- 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 +3 -2
- pyrogram/raw/types/account/emoji_statuses_not_modified.py +3 -2
- pyrogram/raw/types/{message_action_user_updated_photo.py → account/paid_messages_revenue.py} +23 -14
- 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/__init__.py +1 -0
- 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/{update_bot_subscription_expire.py → auth/sent_code_payment_required.py} +30 -32
- 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 +1 -1
- pyrogram/raw/types/bot_app.py +1 -1
- pyrogram/raw/types/bot_app_not_modified.py +1 -1
- pyrogram/raw/types/bot_app_settings.py +1 -1
- pyrogram/raw/types/bot_business_connection.py +15 -11
- 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 +1 -1
- 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/bot_verification.py +1 -1
- pyrogram/raw/types/bot_verifier_settings.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 +1 -1
- 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_bot_rights.py +150 -0
- 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 +15 -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 +1 -1
- 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 +1 -1
- 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 +1 -1
- pyrogram/raw/types/channel_forbidden.py +1 -1
- pyrogram/raw/types/channel_full.py +27 -6
- 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 +1 -1
- 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 +1 -1
- 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 +1 -1
- pyrogram/raw/types/channels/sponsored_message_report_result_choose_option.py +1 -1
- pyrogram/raw/types/channels/sponsored_message_report_result_reported.py +1 -1
- pyrogram/raw/types/chat.py +4 -10
- 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 +1 -1
- pyrogram/raw/types/chat_invite_already.py +1 -1
- pyrogram/raw/types/chat_invite_exported.py +1 -1
- 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 +13 -10
- pyrogram/raw/types/connected_bot_star_ref.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/__init__.py +2 -0
- 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/{messages/web_view_result.py → contacts/sponsored_peers.py} +23 -15
- pyrogram/raw/types/{input_messages_filter_photo_video_documents.py → contacts/sponsored_peers_empty.py} +17 -8
- 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/disallowed_gifts_settings.py +90 -0
- 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 +1 -1
- 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 +19 -8
- pyrogram/raw/types/emoji_status_collectible.py +147 -0
- pyrogram/raw/types/emoji_status_empty.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 +5 -10
- 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 +31 -6
- 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/{update_transcribe_audio.py → input_emoji_status_collectible.py} +20 -25
- 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 +1 -1
- 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 +1 -1
- pyrogram/raw/types/input_invoice_message.py +1 -1
- pyrogram/raw/types/input_invoice_premium_gift_code.py +1 -1
- pyrogram/raw/{functions/payments/request_recurring_payment.py → types/input_invoice_premium_gift_stars.py} +26 -22
- pyrogram/raw/types/input_invoice_slug.py +1 -1
- pyrogram/raw/types/input_invoice_star_gift.py +10 -10
- pyrogram/raw/types/input_invoice_star_gift_transfer.py +12 -12
- pyrogram/raw/types/input_invoice_star_gift_upgrade.py +10 -10
- 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 +25 -6
- pyrogram/raw/types/input_media_document_external.py +25 -6
- 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 +1 -1
- 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 +25 -6
- 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/{messages/message_empty.py → input_privacy_key_no_paid_messages.py} +8 -8
- 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_star_gifts_auto_save.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_bots.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_bots.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/{emoji_status_until.py → input_saved_star_gift_chat.py} +18 -18
- pyrogram/raw/{functions/folders/delete_folder.py → types/input_saved_star_gift_user.py} +16 -16
- 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/{premium_gift_option.py → input_store_payment_auth_code.py} +26 -29
- pyrogram/raw/types/input_store_payment_gift_premium.py +1 -1
- pyrogram/raw/types/input_store_payment_premium_gift_code.py +1 -1
- 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 +1 -1
- 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 +1 -1
- 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_star_gift.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 +15 -6
- 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 +4 -4
- pyrogram/raw/types/message_action_gift_premium.py +1 -1
- pyrogram/raw/types/message_action_gift_stars.py +1 -1
- pyrogram/raw/types/message_action_giveaway_launch.py +1 -1
- pyrogram/raw/types/message_action_giveaway_results.py +1 -1
- 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_ttl_change.py → message_action_paid_messages_price.py} +13 -13
- pyrogram/raw/types/{message_action_login_unknown_location.py → message_action_paid_messages_refunded.py} +17 -17
- 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 +1 -1
- 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 +39 -16
- pyrogram/raw/types/message_action_star_gift_unique.py +35 -6
- 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 +2 -3
- pyrogram/raw/types/message_media_dice.py +2 -3
- pyrogram/raw/types/message_media_document.py +26 -8
- pyrogram/raw/types/message_media_empty.py +2 -3
- pyrogram/raw/types/message_media_game.py +2 -3
- pyrogram/raw/types/message_media_geo.py +2 -3
- pyrogram/raw/types/message_media_geo_live.py +2 -3
- pyrogram/raw/types/message_media_giveaway.py +2 -3
- pyrogram/raw/types/message_media_giveaway_results.py +2 -3
- pyrogram/raw/types/message_media_invoice.py +2 -3
- pyrogram/raw/types/message_media_paid_media.py +2 -3
- pyrogram/raw/types/message_media_photo.py +2 -3
- pyrogram/raw/types/message_media_poll.py +2 -3
- pyrogram/raw/types/message_media_story.py +2 -3
- pyrogram/raw/types/message_media_unsupported.py +2 -3
- pyrogram/raw/types/message_media_venue.py +2 -3
- pyrogram/raw/types/message_media_web_page.py +2 -3
- 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 +1 -1
- pyrogram/raw/types/message_reactor.py +1 -1
- 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 +1 -1
- pyrogram/raw/types/message_service.py +1 -1
- pyrogram/raw/types/message_views.py +1 -1
- pyrogram/raw/types/messages/__init__.py +1 -2
- 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_prepared_inline_message.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 +2 -3
- pyrogram/raw/types/messages/chats_slice.py +2 -3
- 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/found_stickers.py +1 -1
- pyrogram/raw/types/messages/found_stickers_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/prepared_inline_message.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 +2 -3
- pyrogram/raw/types/messages/sent_encrypted_message.py +2 -3
- pyrogram/raw/types/messages/sponsored_messages.py +1 -1
- pyrogram/raw/types/messages/sponsored_messages_empty.py +1 -1
- 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/{web_page_preview.py → messages/web_page_preview.py} +12 -3
- 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/{message_action_phone_number_request.py → paid_reaction_privacy_anonymous.py} +8 -8
- pyrogram/raw/types/{user_status_hidden.py → paid_reaction_privacy_default.py} +8 -8
- pyrogram/raw/{functions/messages/get_bot_recommendations.py → types/paid_reaction_privacy_peer.py} +16 -16
- 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 +2 -1
- pyrogram/raw/types/payments/bank_card_data.py +1 -1
- pyrogram/raw/types/payments/checked_gift_code.py +1 -1
- pyrogram/raw/types/payments/connected_star_ref_bots.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 +1 -1
- pyrogram/raw/types/payments/payment_form.py +1 -1
- pyrogram/raw/types/payments/payment_form_star_gift.py +1 -1
- pyrogram/raw/types/payments/payment_form_stars.py +4 -16
- 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/{user_star_gifts.py → saved_star_gifts.py} +31 -14
- pyrogram/raw/types/payments/star_gift_upgrade_preview.py +1 -1
- pyrogram/raw/types/{web_page_url_pending.py → payments/star_gift_withdrawal_url.py} +17 -8
- pyrogram/raw/types/payments/star_gifts.py +1 -1
- pyrogram/raw/types/payments/star_gifts_not_modified.py +1 -1
- 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 +1 -1
- pyrogram/raw/types/payments/suggested_star_ref_bots.py +1 -1
- pyrogram/raw/types/payments/unique_star_gift.py +2 -2
- 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 +51 -6
- 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_allow_group_call.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_subscription_option.py +1 -1
- pyrogram/raw/types/prepaid_giveaway.py +1 -1
- pyrogram/raw/types/prepaid_stars_giveaway.py +1 -1
- 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/{message_action_user_joined.py → privacy_key_no_paid_messages.py} +8 -8
- 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_star_gifts_auto_save.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_bots.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_bots.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 +1 -1
- 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 +1 -1
- pyrogram/raw/types/report_result_choose_option.py +1 -1
- pyrogram/raw/types/report_result_reported.py +1 -1
- pyrogram/raw/types/request_peer_type_broadcast.py +12 -12
- pyrogram/raw/types/request_peer_type_chat.py +22 -22
- 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/{message_action_created_broadcast_list.py → requirement_to_contact_empty.py} +17 -8
- pyrogram/raw/types/requirement_to_contact_paid_messages.py +81 -0
- pyrogram/raw/types/requirement_to_contact_premium.py +76 -0
- 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/{user_star_gift.py → saved_star_gift.py} +30 -14
- 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 +1 -1
- pyrogram/raw/types/sponsored_message_report_option.py +1 -1
- pyrogram/raw/types/sponsored_peer.py +100 -0
- pyrogram/raw/types/star_gift.py +4 -10
- pyrogram/raw/types/star_gift_attribute_backdrop.py +1 -1
- pyrogram/raw/types/star_gift_attribute_model.py +1 -1
- pyrogram/raw/types/star_gift_attribute_original_details.py +13 -12
- pyrogram/raw/types/star_gift_attribute_pattern.py +1 -1
- pyrogram/raw/types/star_gift_unique.py +29 -10
- pyrogram/raw/types/star_ref_program.py +1 -1
- pyrogram/raw/types/stars_amount.py +1 -1
- pyrogram/raw/types/stars_gift_option.py +1 -1
- pyrogram/raw/types/stars_giveaway_option.py +1 -1
- pyrogram/raw/types/stars_giveaway_winners_option.py +1 -1
- pyrogram/raw/types/stars_revenue_status.py +1 -1
- pyrogram/raw/types/stars_subscription.py +1 -1
- pyrogram/raw/types/stars_subscription_pricing.py +1 -1
- pyrogram/raw/types/stars_topup_option.py +1 -1
- pyrogram/raw/types/stars_transaction.py +24 -18
- 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 +1 -1
- 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 -10
- 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 +1 -1
- 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 +1 -1
- 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 +8 -8
- 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_phone_code.py +72 -0
- 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 +3 -6
- pyrogram/raw/types/update_short_chat_message.py +3 -6
- pyrogram/raw/types/update_short_message.py +3 -6
- pyrogram/raw/types/update_short_sent_message.py +3 -6
- 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 +3 -6
- pyrogram/raw/types/updates_t.py +3 -6
- pyrogram/raw/types/updates_too_long.py +3 -6
- 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 +16 -8
- pyrogram/raw/types/user_empty.py +2 -3
- pyrogram/raw/types/user_full.py +31 -16
- pyrogram/raw/types/user_profile_photo.py +1 -1
- pyrogram/raw/types/user_profile_photo_empty.py +1 -1
- 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/users/users.py +1 -1
- pyrogram/raw/types/users/users_slice.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 +10 -4
- 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_attribute_unique_star_gift.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
- {WPyrogram-2.0.152.dist-info → wpyrogram-2.0.153.dist-info}/METADATA +16 -2
- wpyrogram-2.0.153.dist-info/RECORD +3438 -0
- {WPyrogram-2.0.152.dist-info → wpyrogram-2.0.153.dist-info}/WHEEL +1 -1
- WPyrogram-2.0.152.dist-info/RECORD +0 -3426
- pyrogram/raw/functions/messages/join_group_call.py +0 -111
- pyrogram/raw/functions/messages/send_encrypted_multi_media.py +0 -67
- pyrogram/raw/functions/payments/get_user_star_gift.py +0 -72
- pyrogram/raw/types/channel_admin_log_event_action_change_theme.py +0 -80
- pyrogram/raw/types/update_star_gift_upgraded.py +0 -80
- {WPyrogram-2.0.152.dist-info → wpyrogram-2.0.153.dist-info/licenses}/COPYING +0 -0
- {WPyrogram-2.0.152.dist-info → wpyrogram-2.0.153.dist-info/licenses}/COPYING.lesser +0 -0
- {WPyrogram-2.0.152.dist-info → wpyrogram-2.0.153.dist-info/licenses}/NOTICE +0 -0
- {WPyrogram-2.0.152.dist-info → wpyrogram-2.0.153.dist-info}/top_level.txt +0 -0
pyrogram/__init__.py
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
# You should have received a copy of the GNU Lesser General Public License
|
|
17
17
|
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
|
18
18
|
|
|
19
|
-
__version__ = "2.0.
|
|
19
|
+
__version__ = "2.0.153"
|
|
20
20
|
__license__ = "GNU Lesser General Public License v3.0 (LGPL-3.0)"
|
|
21
21
|
__copyright__ = "Copyright (C) 2017-present Dan <https://github.com/delivrance>"
|
|
22
22
|
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
|
18
18
|
|
|
19
19
|
from .bad_request_400 import *
|
|
20
|
-
from .not_acceptable_406 import *
|
|
21
|
-
from .see_other_303 import *
|
|
22
|
-
from .flood_420 import *
|
|
23
|
-
from .internal_server_error_500 import *
|
|
24
20
|
from .unauthorized_401 import *
|
|
25
21
|
from .forbidden_403 import *
|
|
22
|
+
from .see_other_303 import *
|
|
26
23
|
from .service_unavailable_503 import *
|
|
24
|
+
from .not_acceptable_406 import *
|
|
25
|
+
from .internal_server_error_500 import *
|
|
26
|
+
from .flood_420 import *
|
|
@@ -600,6 +600,85 @@ exceptions = {
|
|
|
600
600
|
"WEBPUSH_TOKEN_INVALID": "WebpushTokenInvalid",
|
|
601
601
|
"YOU_BLOCKED_USER": "YouBlockedUser",
|
|
602
602
|
},
|
|
603
|
+
401: {
|
|
604
|
+
"_": "Unauthorized",
|
|
605
|
+
"ACTIVE_USER_REQUIRED": "ActiveUserRequired",
|
|
606
|
+
"AUTH_KEY_INVALID": "AuthKeyInvalid",
|
|
607
|
+
"AUTH_KEY_PERM_EMPTY": "AuthKeyPermEmpty",
|
|
608
|
+
"AUTH_KEY_UNREGISTERED": "AuthKeyUnregistered",
|
|
609
|
+
"SESSION_EXPIRED": "SessionExpired",
|
|
610
|
+
"SESSION_PASSWORD_NEEDED": "SessionPasswordNeeded",
|
|
611
|
+
"SESSION_REVOKED": "SessionRevoked",
|
|
612
|
+
"USER_DEACTIVATED": "UserDeactivated",
|
|
613
|
+
"USER_DEACTIVATED_BAN": "UserDeactivatedBan",
|
|
614
|
+
},
|
|
615
|
+
403: {
|
|
616
|
+
"_": "Forbidden",
|
|
617
|
+
"ANONYMOUS_REACTIONS_DISABLED": "AnonymousReactionsDisabled",
|
|
618
|
+
"BROADCAST_FORBIDDEN": "BroadcastForbidden",
|
|
619
|
+
"CHANNEL_PUBLIC_GROUP_NA": "ChannelPublicGroupNa",
|
|
620
|
+
"CHAT_ACTION_FORBIDDEN": "ChatActionForbidden",
|
|
621
|
+
"CHAT_ADMIN_INVITE_REQUIRED": "ChatAdminInviteRequired",
|
|
622
|
+
"CHAT_ADMIN_REQUIRED": "ChatAdminRequired",
|
|
623
|
+
"CHAT_FORBIDDEN": "ChatForbidden",
|
|
624
|
+
"CHAT_GUEST_SEND_FORBIDDEN": "ChatGuestSendForbidden",
|
|
625
|
+
"CHAT_SEND_AUDIOS_FORBIDDEN": "ChatSendAudiosForbidden",
|
|
626
|
+
"CHAT_SEND_DOCS_FORBIDDEN": "ChatSendDocsForbidden",
|
|
627
|
+
"CHAT_SEND_GAME_FORBIDDEN": "ChatSendGameForbidden",
|
|
628
|
+
"CHAT_SEND_GIFS_FORBIDDEN": "ChatSendGifsForbidden",
|
|
629
|
+
"CHAT_SEND_INLINE_FORBIDDEN": "ChatSendInlineForbidden",
|
|
630
|
+
"CHAT_SEND_MEDIA_FORBIDDEN": "ChatSendMediaForbidden",
|
|
631
|
+
"CHAT_SEND_PHOTOS_FORBIDDEN": "ChatSendPhotosForbidden",
|
|
632
|
+
"CHAT_SEND_PLAIN_FORBIDDEN": "ChatSendPlainForbidden",
|
|
633
|
+
"CHAT_SEND_POLL_FORBIDDEN": "ChatSendPollForbidden",
|
|
634
|
+
"CHAT_SEND_ROUNDVIDEOS_FORBIDDEN": "ChatSendRoundvideosForbidden",
|
|
635
|
+
"CHAT_SEND_STICKERS_FORBIDDEN": "ChatSendStickersForbidden",
|
|
636
|
+
"CHAT_SEND_VIDEOS_FORBIDDEN": "ChatSendVideosForbidden",
|
|
637
|
+
"CHAT_SEND_VOICES_FORBIDDEN": "ChatSendVoicesForbidden",
|
|
638
|
+
"CHAT_WRITE_FORBIDDEN": "ChatWriteForbidden",
|
|
639
|
+
"EDIT_BOT_INVITE_FORBIDDEN": "EditBotInviteForbidden",
|
|
640
|
+
"GROUPCALL_ALREADY_STARTED": "GroupcallAlreadyStarted",
|
|
641
|
+
"GROUPCALL_FORBIDDEN": "GroupcallForbidden",
|
|
642
|
+
"INLINE_BOT_REQUIRED": "InlineBotRequired",
|
|
643
|
+
"LIVE_DISABLED": "LiveDisabled",
|
|
644
|
+
"MESSAGE_AUTHOR_REQUIRED": "MessageAuthorRequired",
|
|
645
|
+
"MESSAGE_DELETE_FORBIDDEN": "MessageDeleteForbidden",
|
|
646
|
+
"NOT_ALLOWED": "NotAllowed",
|
|
647
|
+
"NOT_ELIGIBLE": "NotEligible",
|
|
648
|
+
"PARTICIPANT_JOIN_MISSING": "ParticipantJoinMissing",
|
|
649
|
+
"POLL_VOTE_REQUIRED": "PollVoteRequired",
|
|
650
|
+
"PREMIUM_ACCOUNT_REQUIRED": "PremiumAccountRequired",
|
|
651
|
+
"PRIVACY_PREMIUM_REQUIRED": "PrivacyPremiumRequired",
|
|
652
|
+
"PUBLIC_CHANNEL_MISSING": "PublicChannelMissing",
|
|
653
|
+
"RIGHT_FORBIDDEN": "RightForbidden",
|
|
654
|
+
"SENSITIVE_CHANGE_FORBIDDEN": "SensitiveChangeForbidden",
|
|
655
|
+
"TAKEOUT_REQUIRED": "TakeoutRequired",
|
|
656
|
+
"USER_BOT_INVALID": "UserBotInvalid",
|
|
657
|
+
"USER_CHANNELS_TOO_MUCH": "UserChannelsTooMuch",
|
|
658
|
+
"USER_DELETED": "UserDeleted",
|
|
659
|
+
"USER_INVALID": "UserInvalid",
|
|
660
|
+
"USER_IS_BLOCKED": "UserIsBlocked",
|
|
661
|
+
"USER_NOT_MUTUAL_CONTACT": "UserNotMutualContact",
|
|
662
|
+
"USER_NOT_PARTICIPANT": "UserNotParticipant",
|
|
663
|
+
"USER_PRIVACY_RESTRICTED": "UserPrivacyRestricted",
|
|
664
|
+
"USER_RESTRICTED": "UserRestricted",
|
|
665
|
+
"VOICE_MESSAGES_FORBIDDEN": "VoiceMessagesForbidden",
|
|
666
|
+
"YOUR_PRIVACY_RESTRICTED": "YourPrivacyRestricted",
|
|
667
|
+
},
|
|
668
|
+
303: {
|
|
669
|
+
"_": "SeeOther",
|
|
670
|
+
"FILE_MIGRATE_X": "FileMigrate",
|
|
671
|
+
"NETWORK_MIGRATE_X": "NetworkMigrate",
|
|
672
|
+
"PHONE_MIGRATE_X": "PhoneMigrate",
|
|
673
|
+
"STATS_MIGRATE_X": "StatsMigrate",
|
|
674
|
+
"USER_MIGRATE_X": "UserMigrate",
|
|
675
|
+
},
|
|
676
|
+
503: {
|
|
677
|
+
"_": "ServiceUnavailable",
|
|
678
|
+
"ApiCallError": "ApiCallError",
|
|
679
|
+
"Timedout": "Timedout",
|
|
680
|
+
"Timeout": "Timeout",
|
|
681
|
+
},
|
|
603
682
|
406: {
|
|
604
683
|
"_": "NotAcceptable",
|
|
605
684
|
"AUTH_KEY_DUPLICATED": "AuthKeyDuplicated",
|
|
@@ -633,26 +712,6 @@ exceptions = {
|
|
|
633
712
|
"USERPIC_UPLOAD_REQUIRED": "UserpicUploadRequired",
|
|
634
713
|
"USER_RESTRICTED": "UserRestricted",
|
|
635
714
|
},
|
|
636
|
-
303: {
|
|
637
|
-
"_": "SeeOther",
|
|
638
|
-
"FILE_MIGRATE_X": "FileMigrate",
|
|
639
|
-
"NETWORK_MIGRATE_X": "NetworkMigrate",
|
|
640
|
-
"PHONE_MIGRATE_X": "PhoneMigrate",
|
|
641
|
-
"STATS_MIGRATE_X": "StatsMigrate",
|
|
642
|
-
"USER_MIGRATE_X": "UserMigrate",
|
|
643
|
-
},
|
|
644
|
-
420: {
|
|
645
|
-
"_": "Flood",
|
|
646
|
-
"2FA_CONFIRM_WAIT_X": "TwoFaConfirmWait",
|
|
647
|
-
"ADDRESS_INVALID": "AddressInvalid",
|
|
648
|
-
"FLOOD_PREMIUM_WAIT_X": "FloodPremiumWait",
|
|
649
|
-
"FLOOD_TEST_PHONE_WAIT_X": "FloodTestPhoneWait",
|
|
650
|
-
"FLOOD_WAIT_X": "FloodWait",
|
|
651
|
-
"PREMIUM_SUB_ACTIVE_UNTIL_X": "PremiumSubActiveUntil",
|
|
652
|
-
"SLOWMODE_WAIT_X": "SlowmodeWait",
|
|
653
|
-
"STORY_SEND_FLOOD_X": "StorySendFlood",
|
|
654
|
-
"TAKEOUT_INIT_DELAY_X": "TakeoutInitDelay",
|
|
655
|
-
},
|
|
656
715
|
500: {
|
|
657
716
|
"_": "InternalServerError",
|
|
658
717
|
"API_CALL_ERROR": "ApiCallError",
|
|
@@ -708,75 +767,16 @@ exceptions = {
|
|
|
708
767
|
"WORKER_BUSY_TOO_LONG_RETRY": "WorkerBusyTooLongRetry",
|
|
709
768
|
"WP_ID_GENERATE_FAILED": "WpIdGenerateFailed",
|
|
710
769
|
},
|
|
711
|
-
|
|
712
|
-
"_": "
|
|
713
|
-
"
|
|
714
|
-
"
|
|
715
|
-
"
|
|
716
|
-
"
|
|
717
|
-
"
|
|
718
|
-
"
|
|
719
|
-
"
|
|
720
|
-
"
|
|
721
|
-
"
|
|
722
|
-
},
|
|
723
|
-
403: {
|
|
724
|
-
"_": "Forbidden",
|
|
725
|
-
"ANONYMOUS_REACTIONS_DISABLED": "AnonymousReactionsDisabled",
|
|
726
|
-
"BROADCAST_FORBIDDEN": "BroadcastForbidden",
|
|
727
|
-
"CHANNEL_PUBLIC_GROUP_NA": "ChannelPublicGroupNa",
|
|
728
|
-
"CHAT_ACTION_FORBIDDEN": "ChatActionForbidden",
|
|
729
|
-
"CHAT_ADMIN_INVITE_REQUIRED": "ChatAdminInviteRequired",
|
|
730
|
-
"CHAT_ADMIN_REQUIRED": "ChatAdminRequired",
|
|
731
|
-
"CHAT_FORBIDDEN": "ChatForbidden",
|
|
732
|
-
"CHAT_GUEST_SEND_FORBIDDEN": "ChatGuestSendForbidden",
|
|
733
|
-
"CHAT_SEND_AUDIOS_FORBIDDEN": "ChatSendAudiosForbidden",
|
|
734
|
-
"CHAT_SEND_DOCS_FORBIDDEN": "ChatSendDocsForbidden",
|
|
735
|
-
"CHAT_SEND_GAME_FORBIDDEN": "ChatSendGameForbidden",
|
|
736
|
-
"CHAT_SEND_GIFS_FORBIDDEN": "ChatSendGifsForbidden",
|
|
737
|
-
"CHAT_SEND_INLINE_FORBIDDEN": "ChatSendInlineForbidden",
|
|
738
|
-
"CHAT_SEND_MEDIA_FORBIDDEN": "ChatSendMediaForbidden",
|
|
739
|
-
"CHAT_SEND_PHOTOS_FORBIDDEN": "ChatSendPhotosForbidden",
|
|
740
|
-
"CHAT_SEND_PLAIN_FORBIDDEN": "ChatSendPlainForbidden",
|
|
741
|
-
"CHAT_SEND_POLL_FORBIDDEN": "ChatSendPollForbidden",
|
|
742
|
-
"CHAT_SEND_ROUNDVIDEOS_FORBIDDEN": "ChatSendRoundvideosForbidden",
|
|
743
|
-
"CHAT_SEND_STICKERS_FORBIDDEN": "ChatSendStickersForbidden",
|
|
744
|
-
"CHAT_SEND_VIDEOS_FORBIDDEN": "ChatSendVideosForbidden",
|
|
745
|
-
"CHAT_SEND_VOICES_FORBIDDEN": "ChatSendVoicesForbidden",
|
|
746
|
-
"CHAT_WRITE_FORBIDDEN": "ChatWriteForbidden",
|
|
747
|
-
"EDIT_BOT_INVITE_FORBIDDEN": "EditBotInviteForbidden",
|
|
748
|
-
"GROUPCALL_ALREADY_STARTED": "GroupcallAlreadyStarted",
|
|
749
|
-
"GROUPCALL_FORBIDDEN": "GroupcallForbidden",
|
|
750
|
-
"INLINE_BOT_REQUIRED": "InlineBotRequired",
|
|
751
|
-
"LIVE_DISABLED": "LiveDisabled",
|
|
752
|
-
"MESSAGE_AUTHOR_REQUIRED": "MessageAuthorRequired",
|
|
753
|
-
"MESSAGE_DELETE_FORBIDDEN": "MessageDeleteForbidden",
|
|
754
|
-
"NOT_ALLOWED": "NotAllowed",
|
|
755
|
-
"NOT_ELIGIBLE": "NotEligible",
|
|
756
|
-
"PARTICIPANT_JOIN_MISSING": "ParticipantJoinMissing",
|
|
757
|
-
"POLL_VOTE_REQUIRED": "PollVoteRequired",
|
|
758
|
-
"PREMIUM_ACCOUNT_REQUIRED": "PremiumAccountRequired",
|
|
759
|
-
"PRIVACY_PREMIUM_REQUIRED": "PrivacyPremiumRequired",
|
|
760
|
-
"PUBLIC_CHANNEL_MISSING": "PublicChannelMissing",
|
|
761
|
-
"RIGHT_FORBIDDEN": "RightForbidden",
|
|
762
|
-
"SENSITIVE_CHANGE_FORBIDDEN": "SensitiveChangeForbidden",
|
|
763
|
-
"TAKEOUT_REQUIRED": "TakeoutRequired",
|
|
764
|
-
"USER_BOT_INVALID": "UserBotInvalid",
|
|
765
|
-
"USER_CHANNELS_TOO_MUCH": "UserChannelsTooMuch",
|
|
766
|
-
"USER_DELETED": "UserDeleted",
|
|
767
|
-
"USER_INVALID": "UserInvalid",
|
|
768
|
-
"USER_IS_BLOCKED": "UserIsBlocked",
|
|
769
|
-
"USER_NOT_MUTUAL_CONTACT": "UserNotMutualContact",
|
|
770
|
-
"USER_NOT_PARTICIPANT": "UserNotParticipant",
|
|
771
|
-
"USER_PRIVACY_RESTRICTED": "UserPrivacyRestricted",
|
|
772
|
-
"USER_RESTRICTED": "UserRestricted",
|
|
773
|
-
"VOICE_MESSAGES_FORBIDDEN": "VoiceMessagesForbidden",
|
|
774
|
-
"YOUR_PRIVACY_RESTRICTED": "YourPrivacyRestricted",
|
|
775
|
-
},
|
|
776
|
-
503: {
|
|
777
|
-
"_": "ServiceUnavailable",
|
|
778
|
-
"ApiCallError": "ApiCallError",
|
|
779
|
-
"Timedout": "Timedout",
|
|
780
|
-
"Timeout": "Timeout",
|
|
770
|
+
420: {
|
|
771
|
+
"_": "Flood",
|
|
772
|
+
"2FA_CONFIRM_WAIT_X": "TwoFaConfirmWait",
|
|
773
|
+
"ADDRESS_INVALID": "AddressInvalid",
|
|
774
|
+
"FLOOD_PREMIUM_WAIT_X": "FloodPremiumWait",
|
|
775
|
+
"FLOOD_TEST_PHONE_WAIT_X": "FloodTestPhoneWait",
|
|
776
|
+
"FLOOD_WAIT_X": "FloodWait",
|
|
777
|
+
"PREMIUM_SUB_ACTIVE_UNTIL_X": "PremiumSubActiveUntil",
|
|
778
|
+
"SLOWMODE_WAIT_X": "SlowmodeWait",
|
|
779
|
+
"STORY_SEND_FLOOD_X": "StorySendFlood",
|
|
780
|
+
"TAKEOUT_INIT_DELAY_X": "TakeoutInitDelay",
|
|
781
781
|
},
|
|
782
782
|
}
|