WPyrogram 2.0.148__py3-none-any.whl → 2.0.149__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2285) hide show
  1. {WPyrogram-2.0.148.dist-info → WPyrogram-2.0.149.dist-info}/METADATA +3 -3
  2. WPyrogram-2.0.149.dist-info/RECORD +3325 -0
  3. {WPyrogram-2.0.148.dist-info → WPyrogram-2.0.149.dist-info}/WHEEL +1 -1
  4. pyrogram/__init__.py +1 -1
  5. pyrogram/client.py +0 -134
  6. pyrogram/connection/connection.py +16 -7
  7. pyrogram/connection/transport/tcp/__init__.py +1 -1
  8. pyrogram/connection/transport/tcp/tcp.py +94 -51
  9. pyrogram/connection/transport/tcp/tcp_abridged.py +5 -5
  10. pyrogram/connection/transport/tcp/tcp_abridged_o.py +5 -5
  11. pyrogram/connection/transport/tcp/tcp_full.py +6 -6
  12. pyrogram/connection/transport/tcp/tcp_intermediate.py +5 -5
  13. pyrogram/connection/transport/tcp/tcp_intermediate_o.py +5 -5
  14. pyrogram/dispatcher.py +0 -7
  15. pyrogram/enums/__init__.py +6 -0
  16. pyrogram/enums/chat_join_type.py +34 -0
  17. pyrogram/enums/message_entity_type.py +2 -2
  18. pyrogram/enums/message_media_type.py +5 -2
  19. pyrogram/enums/message_service_type.py +28 -4
  20. pyrogram/enums/phone_call_discard_reason.py +36 -0
  21. pyrogram/errors/exceptions/__init__.py +3 -3
  22. pyrogram/errors/exceptions/all.py +56 -56
  23. pyrogram/handlers/__init__.py +5 -1
  24. pyrogram/handlers/chat_boost_handler.py +49 -0
  25. pyrogram/handlers/message_reaction_count_handler.py +51 -0
  26. pyrogram/handlers/message_reaction_handler.py +51 -0
  27. pyrogram/handlers/purchased_paid_media_handler.py +49 -0
  28. pyrogram/handlers/shipping_query_handler.py +50 -0
  29. pyrogram/methods/account/set_account_ttl.py +5 -1
  30. pyrogram/methods/advanced/resolve_peer.py +6 -2
  31. pyrogram/methods/advanced/save_file.py +4 -1
  32. pyrogram/methods/bots/__init__.py +18 -2
  33. pyrogram/methods/bots/answer_shipping_query.py +81 -0
  34. pyrogram/methods/bots/create_invoice_link.py +167 -0
  35. pyrogram/methods/bots/get_bot_info_description.py +63 -0
  36. pyrogram/methods/bots/get_bot_info_short_description.py +63 -0
  37. pyrogram/methods/bots/get_bot_name.py +62 -0
  38. pyrogram/methods/bots/send_game.py +8 -0
  39. pyrogram/methods/bots/send_invoice.py +8 -0
  40. pyrogram/methods/bots/set_bot_info_description.py +66 -0
  41. pyrogram/methods/bots/set_bot_info_short_description.py +66 -0
  42. pyrogram/methods/bots/set_bot_name.py +66 -0
  43. pyrogram/methods/chats/__init__.py +4 -2
  44. pyrogram/methods/chats/close_forum_topic.py +1 -2
  45. pyrogram/methods/chats/delete_forum_topic.py +1 -2
  46. pyrogram/methods/chats/edit_forum_topic.py +1 -2
  47. pyrogram/methods/chats/get_chat.py +3 -3
  48. pyrogram/methods/chats/get_dialogs.py +19 -11
  49. pyrogram/methods/chats/get_dialogs_count.py +16 -3
  50. pyrogram/methods/chats/get_forum_topics_by_id.py +2 -2
  51. pyrogram/methods/chats/pin_forum_topic.py +57 -0
  52. pyrogram/methods/chats/set_chat_photo.py +17 -5
  53. pyrogram/methods/chats/unpin_forum_topic.py +57 -0
  54. pyrogram/methods/decorators/__init__.py +11 -1
  55. pyrogram/methods/decorators/on_chat_boost.py +64 -0
  56. pyrogram/methods/decorators/on_message_reaction.py +62 -0
  57. pyrogram/methods/decorators/on_message_reaction_count.py +62 -0
  58. pyrogram/methods/decorators/on_purchased_paid_media.py +62 -0
  59. pyrogram/methods/decorators/on_shipping_query.py +64 -0
  60. pyrogram/methods/messages/__init__.py +4 -0
  61. pyrogram/methods/messages/copy_media_group.py +6 -7
  62. pyrogram/methods/messages/copy_message.py +3 -1
  63. pyrogram/methods/messages/edit_inline_media.py +3 -2
  64. pyrogram/methods/messages/edit_inline_text.py +6 -2
  65. pyrogram/methods/messages/edit_message_media.py +13 -9
  66. pyrogram/methods/messages/edit_message_text.py +4 -5
  67. pyrogram/methods/messages/forward_media_group.py +128 -0
  68. pyrogram/methods/messages/forward_messages.py +10 -1
  69. pyrogram/methods/messages/search_messages.py +21 -13
  70. pyrogram/methods/messages/search_messages_count.py +10 -4
  71. pyrogram/methods/messages/send_animation.py +8 -0
  72. pyrogram/methods/messages/send_audio.py +8 -0
  73. pyrogram/methods/messages/send_cached_media.py +13 -6
  74. pyrogram/methods/messages/send_contact.py +8 -0
  75. pyrogram/methods/messages/send_dice.py +8 -0
  76. pyrogram/methods/messages/send_document.py +8 -0
  77. pyrogram/methods/messages/send_location.py +8 -0
  78. pyrogram/methods/messages/send_media_group.py +26 -18
  79. pyrogram/methods/messages/send_message.py +12 -5
  80. pyrogram/methods/messages/send_paid_media.py +23 -6
  81. pyrogram/methods/messages/send_paid_reaction.py +69 -0
  82. pyrogram/methods/messages/send_photo.py +8 -0
  83. pyrogram/methods/messages/send_poll.py +8 -0
  84. pyrogram/methods/messages/send_reaction.py +1 -1
  85. pyrogram/methods/messages/send_sticker.py +8 -0
  86. pyrogram/methods/messages/send_venue.py +8 -0
  87. pyrogram/methods/messages/send_video.py +8 -0
  88. pyrogram/methods/messages/send_video_note.py +8 -0
  89. pyrogram/methods/messages/send_voice.py +8 -0
  90. pyrogram/methods/messages/send_web_page.py +12 -5
  91. pyrogram/methods/messages/start_bot.py +1 -1
  92. pyrogram/methods/payments/__init__.py +18 -2
  93. pyrogram/methods/payments/apply_gift_code.py +64 -0
  94. pyrogram/methods/payments/check_gift_code.py +67 -0
  95. pyrogram/methods/payments/convert_star_gift.py +66 -0
  96. pyrogram/methods/payments/get_payment_form.py +16 -11
  97. pyrogram/methods/payments/get_star_gifts.py +44 -0
  98. pyrogram/methods/payments/get_user_star_gifts.py +97 -0
  99. pyrogram/methods/payments/get_user_star_gifts_count.py +64 -0
  100. pyrogram/methods/payments/hide_star_gift.py +67 -0
  101. pyrogram/methods/payments/send_payment_form.py +51 -20
  102. pyrogram/methods/payments/send_star_gift.py +100 -0
  103. pyrogram/methods/payments/show_star_gift.py +67 -0
  104. pyrogram/methods/stories/__init__.py +16 -12
  105. pyrogram/methods/stories/can_post_stories.py +53 -0
  106. pyrogram/methods/stories/delete_stories.py +2 -3
  107. pyrogram/methods/stories/edit_story_privacy.py +34 -34
  108. pyrogram/methods/stories/forward_story.py +1 -1
  109. pyrogram/methods/stories/get_all_stories.py +15 -4
  110. pyrogram/methods/stories/get_archived_stories.py +95 -0
  111. pyrogram/methods/stories/get_chat_stories.py +1 -1
  112. pyrogram/methods/stories/get_pinned_stories.py +2 -2
  113. pyrogram/methods/stories/get_stories.py +3 -3
  114. pyrogram/methods/stories/hide_chat_stories.py +56 -0
  115. pyrogram/methods/stories/pin_chat_stories.py +65 -0
  116. pyrogram/methods/stories/read_chat_stories.py +64 -0
  117. pyrogram/methods/stories/send_story.py +1 -3
  118. pyrogram/methods/stories/show_chat_stories.py +56 -0
  119. pyrogram/methods/stories/unpin_chat_stories.py +65 -0
  120. pyrogram/methods/users/__init__.py +2 -2
  121. pyrogram/methods/users/get_chat_photos.py +54 -30
  122. pyrogram/methods/users/set_personal_channel.py +67 -0
  123. pyrogram/raw/all.py +81 -41
  124. pyrogram/raw/base/__init__.py +9 -0
  125. pyrogram/raw/base/channel_admin_log_event_action.py +4 -2
  126. pyrogram/raw/base/channels/sponsored_message_report_result.py +1 -1
  127. pyrogram/raw/base/input_file.py +3 -2
  128. pyrogram/raw/base/input_invoice.py +4 -2
  129. pyrogram/raw/base/input_store_payment_purpose.py +3 -2
  130. pyrogram/raw/base/keyboard_button.py +3 -2
  131. pyrogram/raw/base/message_action.py +4 -2
  132. pyrogram/raw/base/message_reactor.py +53 -0
  133. pyrogram/raw/base/message_report_option.py +53 -0
  134. pyrogram/raw/base/messages/sponsored_messages.py +1 -1
  135. pyrogram/raw/base/payments/__init__.py +2 -0
  136. pyrogram/raw/base/payments/payment_form.py +3 -2
  137. pyrogram/raw/base/payments/star_gifts.py +64 -0
  138. pyrogram/raw/base/payments/stars_status.py +2 -1
  139. pyrogram/raw/base/payments/user_star_gifts.py +63 -0
  140. pyrogram/raw/base/prepaid_giveaway.py +3 -2
  141. pyrogram/raw/base/reaction.py +3 -2
  142. pyrogram/raw/base/report_result.py +66 -0
  143. pyrogram/raw/base/star_gift.py +53 -0
  144. pyrogram/raw/base/stars_giveaway_option.py +63 -0
  145. pyrogram/raw/base/stars_giveaway_winners_option.py +53 -0
  146. pyrogram/raw/base/stars_subscription.py +53 -0
  147. pyrogram/raw/base/stars_subscription_pricing.py +53 -0
  148. pyrogram/raw/base/stars_transaction_peer.py +3 -2
  149. pyrogram/raw/base/update.py +4 -2
  150. pyrogram/raw/base/updates_t.py +3 -1
  151. pyrogram/raw/base/user_star_gift.py +53 -0
  152. pyrogram/raw/functions/account/accept_authorization.py +1 -1
  153. pyrogram/raw/functions/account/cancel_password_email.py +1 -1
  154. pyrogram/raw/functions/account/change_authorization_settings.py +1 -1
  155. pyrogram/raw/functions/account/change_phone.py +1 -1
  156. pyrogram/raw/functions/account/check_username.py +1 -1
  157. pyrogram/raw/functions/account/clear_recent_emoji_statuses.py +1 -1
  158. pyrogram/raw/functions/account/confirm_password_email.py +1 -1
  159. pyrogram/raw/functions/account/confirm_phone.py +1 -1
  160. pyrogram/raw/functions/account/create_business_chat_link.py +1 -1
  161. pyrogram/raw/functions/account/create_theme.py +1 -1
  162. pyrogram/raw/functions/account/decline_password_reset.py +1 -1
  163. pyrogram/raw/functions/account/delete_account.py +1 -1
  164. pyrogram/raw/functions/account/delete_auto_save_exceptions.py +1 -1
  165. pyrogram/raw/functions/account/delete_business_chat_link.py +1 -1
  166. pyrogram/raw/functions/account/delete_secure_value.py +1 -1
  167. pyrogram/raw/functions/account/disable_peer_connected_bot.py +1 -1
  168. pyrogram/raw/functions/account/edit_business_chat_link.py +1 -1
  169. pyrogram/raw/functions/account/finish_takeout_session.py +1 -1
  170. pyrogram/raw/functions/account/get_account_ttl.py +1 -1
  171. pyrogram/raw/functions/account/get_all_secure_values.py +1 -1
  172. pyrogram/raw/functions/account/get_authorization_form.py +1 -1
  173. pyrogram/raw/functions/account/get_authorizations.py +1 -1
  174. pyrogram/raw/functions/account/get_auto_download_settings.py +1 -1
  175. pyrogram/raw/functions/account/get_auto_save_settings.py +1 -1
  176. pyrogram/raw/functions/account/get_bot_business_connection.py +1 -1
  177. pyrogram/raw/functions/account/get_business_chat_links.py +1 -1
  178. pyrogram/raw/functions/account/get_channel_default_emoji_statuses.py +1 -1
  179. pyrogram/raw/functions/account/get_channel_restricted_status_emojis.py +1 -1
  180. pyrogram/raw/functions/account/get_chat_themes.py +1 -1
  181. pyrogram/raw/functions/account/get_connected_bots.py +1 -1
  182. pyrogram/raw/functions/account/get_contact_sign_up_notification.py +1 -1
  183. pyrogram/raw/functions/account/get_content_settings.py +1 -1
  184. pyrogram/raw/functions/account/get_default_background_emojis.py +1 -1
  185. pyrogram/raw/functions/account/get_default_emoji_statuses.py +1 -1
  186. pyrogram/raw/functions/account/get_default_group_photo_emojis.py +1 -1
  187. pyrogram/raw/functions/account/get_default_profile_photo_emojis.py +1 -1
  188. pyrogram/raw/functions/account/get_global_privacy_settings.py +1 -1
  189. pyrogram/raw/functions/account/get_multi_wall_papers.py +1 -1
  190. pyrogram/raw/functions/account/get_notify_exceptions.py +1 -1
  191. pyrogram/raw/functions/account/get_notify_settings.py +1 -1
  192. pyrogram/raw/functions/account/get_password.py +1 -1
  193. pyrogram/raw/functions/account/get_password_settings.py +1 -1
  194. pyrogram/raw/functions/account/get_privacy.py +1 -1
  195. pyrogram/raw/functions/account/get_reactions_notify_settings.py +1 -1
  196. pyrogram/raw/functions/account/get_recent_emoji_statuses.py +1 -1
  197. pyrogram/raw/functions/account/get_saved_ringtones.py +1 -1
  198. pyrogram/raw/functions/account/get_secure_value.py +1 -1
  199. pyrogram/raw/functions/account/get_theme.py +1 -1
  200. pyrogram/raw/functions/account/get_themes.py +1 -1
  201. pyrogram/raw/functions/account/get_tmp_password.py +1 -1
  202. pyrogram/raw/functions/account/get_wall_paper.py +1 -1
  203. pyrogram/raw/functions/account/get_wall_papers.py +1 -1
  204. pyrogram/raw/functions/account/get_web_authorizations.py +1 -1
  205. pyrogram/raw/functions/account/init_takeout_session.py +1 -1
  206. pyrogram/raw/functions/account/install_theme.py +1 -1
  207. pyrogram/raw/functions/account/install_wall_paper.py +1 -1
  208. pyrogram/raw/functions/account/invalidate_sign_in_codes.py +1 -1
  209. pyrogram/raw/functions/account/register_device.py +1 -1
  210. pyrogram/raw/functions/account/reorder_usernames.py +1 -1
  211. pyrogram/raw/functions/account/report_peer.py +1 -1
  212. pyrogram/raw/functions/account/report_profile_photo.py +1 -1
  213. pyrogram/raw/functions/account/resend_password_email.py +1 -1
  214. pyrogram/raw/functions/account/reset_authorization.py +1 -1
  215. pyrogram/raw/functions/account/reset_notify_settings.py +1 -1
  216. pyrogram/raw/functions/account/reset_password.py +1 -1
  217. pyrogram/raw/functions/account/reset_wall_papers.py +1 -1
  218. pyrogram/raw/functions/account/reset_web_authorization.py +1 -1
  219. pyrogram/raw/functions/account/reset_web_authorizations.py +1 -1
  220. pyrogram/raw/functions/account/resolve_business_chat_link.py +1 -1
  221. pyrogram/raw/functions/account/save_auto_download_settings.py +1 -1
  222. pyrogram/raw/functions/account/save_auto_save_settings.py +1 -1
  223. pyrogram/raw/functions/account/save_ringtone.py +1 -1
  224. pyrogram/raw/functions/account/save_secure_value.py +1 -1
  225. pyrogram/raw/functions/account/save_theme.py +1 -1
  226. pyrogram/raw/functions/account/save_wall_paper.py +1 -1
  227. pyrogram/raw/functions/account/send_change_phone_code.py +1 -1
  228. pyrogram/raw/functions/account/send_confirm_phone_code.py +1 -1
  229. pyrogram/raw/functions/account/send_verify_email_code.py +1 -1
  230. pyrogram/raw/functions/account/send_verify_phone_code.py +1 -1
  231. pyrogram/raw/functions/account/set_account_ttl.py +1 -1
  232. pyrogram/raw/functions/account/set_authorization_ttl.py +1 -1
  233. pyrogram/raw/functions/account/set_contact_sign_up_notification.py +1 -1
  234. pyrogram/raw/functions/account/set_content_settings.py +1 -1
  235. pyrogram/raw/functions/account/set_global_privacy_settings.py +1 -1
  236. pyrogram/raw/functions/account/set_privacy.py +1 -1
  237. pyrogram/raw/functions/account/set_reactions_notify_settings.py +1 -1
  238. pyrogram/raw/functions/account/toggle_connected_bot_paused.py +1 -1
  239. pyrogram/raw/functions/account/toggle_sponsored_messages.py +1 -1
  240. pyrogram/raw/functions/account/toggle_username.py +1 -1
  241. pyrogram/raw/functions/account/unregister_device.py +1 -1
  242. pyrogram/raw/functions/account/update_birthday.py +1 -1
  243. pyrogram/raw/functions/account/update_business_away_message.py +1 -1
  244. pyrogram/raw/functions/account/update_business_greeting_message.py +1 -1
  245. pyrogram/raw/functions/account/update_business_intro.py +1 -1
  246. pyrogram/raw/functions/account/update_business_location.py +1 -1
  247. pyrogram/raw/functions/account/update_business_work_hours.py +1 -1
  248. pyrogram/raw/functions/account/update_color.py +1 -1
  249. pyrogram/raw/functions/account/update_connected_bot.py +1 -1
  250. pyrogram/raw/functions/account/update_device_locked.py +1 -1
  251. pyrogram/raw/functions/account/update_emoji_status.py +1 -1
  252. pyrogram/raw/functions/account/update_notify_settings.py +1 -1
  253. pyrogram/raw/functions/account/update_password_settings.py +1 -1
  254. pyrogram/raw/functions/account/update_personal_channel.py +1 -1
  255. pyrogram/raw/functions/account/update_profile.py +1 -1
  256. pyrogram/raw/functions/account/update_status.py +1 -1
  257. pyrogram/raw/functions/account/update_theme.py +1 -1
  258. pyrogram/raw/functions/account/update_username.py +1 -1
  259. pyrogram/raw/functions/account/upload_ringtone.py +1 -1
  260. pyrogram/raw/functions/account/upload_theme.py +1 -1
  261. pyrogram/raw/functions/account/upload_wall_paper.py +1 -1
  262. pyrogram/raw/functions/account/verify_email.py +1 -1
  263. pyrogram/raw/functions/account/verify_phone.py +1 -1
  264. pyrogram/raw/functions/auth/accept_login_token.py +1 -1
  265. pyrogram/raw/functions/auth/bind_temp_auth_key.py +1 -1
  266. pyrogram/raw/functions/auth/cancel_code.py +1 -1
  267. pyrogram/raw/functions/auth/check_password.py +1 -1
  268. pyrogram/raw/functions/auth/check_recovery_password.py +1 -1
  269. pyrogram/raw/functions/auth/drop_temp_auth_keys.py +1 -1
  270. pyrogram/raw/functions/auth/export_authorization.py +1 -1
  271. pyrogram/raw/functions/auth/export_login_token.py +1 -1
  272. pyrogram/raw/functions/auth/import_authorization.py +1 -1
  273. pyrogram/raw/functions/auth/import_bot_authorization.py +1 -1
  274. pyrogram/raw/functions/auth/import_login_token.py +1 -1
  275. pyrogram/raw/functions/auth/import_web_token_authorization.py +1 -1
  276. pyrogram/raw/functions/auth/log_out.py +1 -1
  277. pyrogram/raw/functions/auth/recover_password.py +1 -1
  278. pyrogram/raw/functions/auth/report_missing_code.py +1 -1
  279. pyrogram/raw/functions/auth/request_firebase_sms.py +1 -1
  280. pyrogram/raw/functions/auth/request_password_recovery.py +1 -1
  281. pyrogram/raw/functions/auth/resend_code.py +1 -1
  282. pyrogram/raw/functions/auth/reset_authorizations.py +1 -1
  283. pyrogram/raw/functions/auth/reset_login_email.py +1 -1
  284. pyrogram/raw/functions/auth/send_code.py +1 -1
  285. pyrogram/raw/functions/auth/sign_in.py +1 -1
  286. pyrogram/raw/functions/auth/sign_up.py +1 -1
  287. pyrogram/raw/functions/bots/add_preview_media.py +1 -1
  288. pyrogram/raw/functions/bots/allow_send_message.py +1 -1
  289. pyrogram/raw/functions/bots/answer_webhook_json_query.py +1 -1
  290. pyrogram/raw/functions/bots/can_send_message.py +1 -1
  291. pyrogram/raw/functions/bots/delete_preview_media.py +1 -1
  292. pyrogram/raw/functions/bots/edit_preview_media.py +1 -1
  293. pyrogram/raw/functions/bots/get_bot_commands.py +1 -1
  294. pyrogram/raw/functions/bots/get_bot_info.py +1 -1
  295. pyrogram/raw/functions/bots/get_bot_menu_button.py +1 -1
  296. pyrogram/raw/functions/bots/get_popular_app_bots.py +1 -1
  297. pyrogram/raw/functions/bots/get_preview_info.py +1 -1
  298. pyrogram/raw/functions/bots/get_preview_medias.py +1 -1
  299. pyrogram/raw/functions/bots/invoke_web_view_custom_method.py +1 -1
  300. pyrogram/raw/functions/bots/reorder_preview_medias.py +1 -1
  301. pyrogram/raw/functions/bots/reorder_usernames.py +1 -1
  302. pyrogram/raw/functions/bots/reset_bot_commands.py +1 -1
  303. pyrogram/raw/functions/bots/send_custom_request.py +1 -1
  304. pyrogram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py +1 -1
  305. pyrogram/raw/functions/bots/set_bot_commands.py +1 -1
  306. pyrogram/raw/functions/bots/set_bot_group_default_admin_rights.py +1 -1
  307. pyrogram/raw/functions/bots/set_bot_info.py +1 -1
  308. pyrogram/raw/functions/bots/set_bot_menu_button.py +1 -1
  309. pyrogram/raw/functions/bots/toggle_username.py +1 -1
  310. pyrogram/raw/functions/channels/__init__.py +0 -4
  311. pyrogram/raw/functions/channels/check_username.py +1 -1
  312. pyrogram/raw/functions/channels/convert_to_gigagroup.py +1 -1
  313. pyrogram/raw/functions/channels/create_channel.py +1 -1
  314. pyrogram/raw/functions/channels/create_forum_topic.py +1 -1
  315. pyrogram/raw/functions/channels/deactivate_all_usernames.py +1 -1
  316. pyrogram/raw/functions/channels/delete_channel.py +1 -1
  317. pyrogram/raw/functions/channels/delete_history.py +1 -1
  318. pyrogram/raw/functions/channels/delete_messages.py +1 -1
  319. pyrogram/raw/functions/channels/delete_participant_history.py +1 -1
  320. pyrogram/raw/functions/channels/delete_topic_history.py +1 -1
  321. pyrogram/raw/functions/channels/edit_admin.py +1 -1
  322. pyrogram/raw/functions/channels/edit_banned.py +1 -1
  323. pyrogram/raw/functions/channels/edit_creator.py +1 -1
  324. pyrogram/raw/functions/channels/edit_forum_topic.py +1 -1
  325. pyrogram/raw/functions/channels/edit_location.py +1 -1
  326. pyrogram/raw/functions/channels/edit_photo.py +1 -1
  327. pyrogram/raw/functions/channels/edit_title.py +1 -1
  328. pyrogram/raw/functions/channels/export_message_link.py +1 -1
  329. pyrogram/raw/functions/channels/get_admin_log.py +1 -1
  330. pyrogram/raw/functions/channels/get_admined_public_channels.py +1 -1
  331. pyrogram/raw/functions/channels/get_channel_recommendations.py +1 -1
  332. pyrogram/raw/functions/channels/get_channels.py +1 -1
  333. pyrogram/raw/functions/channels/get_forum_topics.py +1 -1
  334. pyrogram/raw/functions/channels/get_forum_topics_by_id.py +1 -1
  335. pyrogram/raw/functions/channels/get_full_channel.py +1 -1
  336. pyrogram/raw/functions/channels/get_groups_for_discussion.py +1 -1
  337. pyrogram/raw/functions/channels/get_inactive_channels.py +1 -1
  338. pyrogram/raw/functions/channels/get_left_channels.py +1 -1
  339. pyrogram/raw/functions/channels/get_messages.py +1 -1
  340. pyrogram/raw/functions/channels/get_participant.py +1 -1
  341. pyrogram/raw/functions/channels/get_participants.py +1 -1
  342. pyrogram/raw/functions/channels/get_send_as.py +1 -1
  343. pyrogram/raw/functions/channels/invite_to_channel.py +1 -1
  344. pyrogram/raw/functions/channels/join_channel.py +1 -1
  345. pyrogram/raw/functions/channels/leave_channel.py +1 -1
  346. pyrogram/raw/functions/channels/read_history.py +1 -1
  347. pyrogram/raw/functions/channels/read_message_contents.py +1 -1
  348. pyrogram/raw/functions/channels/reorder_pinned_forum_topics.py +1 -1
  349. pyrogram/raw/functions/channels/reorder_usernames.py +1 -1
  350. pyrogram/raw/functions/channels/report_anti_spam_false_positive.py +1 -1
  351. pyrogram/raw/functions/channels/report_spam.py +1 -1
  352. pyrogram/raw/functions/channels/restrict_sponsored_messages.py +1 -1
  353. pyrogram/raw/functions/channels/search_posts.py +1 -1
  354. pyrogram/raw/functions/channels/set_boosts_to_unblock_restrictions.py +1 -1
  355. pyrogram/raw/functions/channels/set_discussion_group.py +1 -1
  356. pyrogram/raw/functions/channels/set_emoji_stickers.py +1 -1
  357. pyrogram/raw/functions/channels/set_stickers.py +1 -1
  358. pyrogram/raw/functions/channels/toggle_anti_spam.py +1 -1
  359. pyrogram/raw/functions/channels/toggle_forum.py +1 -1
  360. pyrogram/raw/functions/channels/toggle_join_request.py +1 -1
  361. pyrogram/raw/functions/channels/toggle_join_to_send.py +1 -1
  362. pyrogram/raw/functions/channels/toggle_participants_hidden.py +1 -1
  363. pyrogram/raw/functions/channels/toggle_pre_history_hidden.py +1 -1
  364. pyrogram/raw/functions/channels/toggle_signatures.py +20 -14
  365. pyrogram/raw/functions/channels/toggle_slow_mode.py +1 -1
  366. pyrogram/raw/functions/channels/toggle_username.py +1 -1
  367. pyrogram/raw/functions/channels/toggle_view_forum_as_messages.py +1 -1
  368. pyrogram/raw/functions/channels/update_color.py +1 -1
  369. pyrogram/raw/functions/channels/update_emoji_status.py +1 -1
  370. pyrogram/raw/functions/channels/update_pinned_forum_topic.py +1 -1
  371. pyrogram/raw/functions/channels/update_username.py +1 -1
  372. pyrogram/raw/functions/chatlists/check_chatlist_invite.py +1 -1
  373. pyrogram/raw/functions/chatlists/delete_exported_invite.py +1 -1
  374. pyrogram/raw/functions/chatlists/edit_exported_invite.py +1 -1
  375. pyrogram/raw/functions/chatlists/export_chatlist_invite.py +1 -1
  376. pyrogram/raw/functions/chatlists/get_chatlist_updates.py +1 -1
  377. pyrogram/raw/functions/chatlists/get_exported_invites.py +1 -1
  378. pyrogram/raw/functions/chatlists/get_leave_chatlist_suggestions.py +1 -1
  379. pyrogram/raw/functions/chatlists/hide_chatlist_updates.py +1 -1
  380. pyrogram/raw/functions/chatlists/join_chatlist_invite.py +1 -1
  381. pyrogram/raw/functions/chatlists/join_chatlist_updates.py +1 -1
  382. pyrogram/raw/functions/chatlists/leave_chatlist.py +1 -1
  383. pyrogram/raw/functions/contacts/accept_contact.py +1 -1
  384. pyrogram/raw/functions/contacts/add_contact.py +1 -1
  385. pyrogram/raw/functions/contacts/block.py +1 -1
  386. pyrogram/raw/functions/contacts/block_from_replies.py +1 -1
  387. pyrogram/raw/functions/contacts/delete_by_phones.py +1 -1
  388. pyrogram/raw/functions/contacts/delete_contacts.py +1 -1
  389. pyrogram/raw/functions/contacts/edit_close_friends.py +1 -1
  390. pyrogram/raw/functions/contacts/export_contact_token.py +1 -1
  391. pyrogram/raw/functions/contacts/get_birthdays.py +1 -1
  392. pyrogram/raw/functions/contacts/get_blocked.py +1 -1
  393. pyrogram/raw/functions/contacts/get_contact_i_ds.py +1 -1
  394. pyrogram/raw/functions/contacts/get_contacts.py +1 -1
  395. pyrogram/raw/functions/contacts/get_located.py +1 -1
  396. pyrogram/raw/functions/contacts/get_saved.py +1 -1
  397. pyrogram/raw/functions/contacts/get_statuses.py +1 -1
  398. pyrogram/raw/functions/contacts/get_top_peers.py +1 -1
  399. pyrogram/raw/functions/contacts/import_contact_token.py +1 -1
  400. pyrogram/raw/functions/contacts/import_contacts.py +1 -1
  401. pyrogram/raw/functions/contacts/reset_saved.py +1 -1
  402. pyrogram/raw/functions/contacts/reset_top_peer_rating.py +1 -1
  403. pyrogram/raw/functions/contacts/resolve_phone.py +1 -1
  404. pyrogram/raw/functions/contacts/resolve_username.py +1 -1
  405. pyrogram/raw/functions/contacts/search.py +1 -1
  406. pyrogram/raw/functions/contacts/set_blocked.py +1 -1
  407. pyrogram/raw/functions/contacts/toggle_top_peers.py +1 -1
  408. pyrogram/raw/functions/contacts/unblock.py +1 -1
  409. pyrogram/raw/functions/contest/save_developer_info.py +1 -1
  410. pyrogram/raw/functions/destroy_auth_key.py +1 -1
  411. pyrogram/raw/functions/destroy_session.py +1 -1
  412. pyrogram/raw/functions/folders/edit_peer_folders.py +1 -1
  413. pyrogram/raw/functions/fragment/get_collectible_info.py +1 -1
  414. pyrogram/raw/functions/get_future_salts.py +1 -1
  415. pyrogram/raw/functions/help/accept_terms_of_service.py +1 -1
  416. pyrogram/raw/functions/help/dismiss_suggestion.py +1 -1
  417. pyrogram/raw/functions/help/edit_user_info.py +1 -1
  418. pyrogram/raw/functions/help/get_app_config.py +1 -1
  419. pyrogram/raw/functions/help/get_app_update.py +1 -1
  420. pyrogram/raw/functions/help/get_cdn_config.py +1 -1
  421. pyrogram/raw/functions/help/get_config.py +1 -1
  422. pyrogram/raw/functions/help/get_countries_list.py +1 -1
  423. pyrogram/raw/functions/help/get_deep_link_info.py +1 -1
  424. pyrogram/raw/functions/help/get_invite_text.py +1 -1
  425. pyrogram/raw/functions/help/get_nearest_dc.py +1 -1
  426. pyrogram/raw/functions/help/get_passport_config.py +1 -1
  427. pyrogram/raw/functions/help/get_peer_colors.py +1 -1
  428. pyrogram/raw/functions/help/get_peer_profile_colors.py +1 -1
  429. pyrogram/raw/functions/help/get_premium_promo.py +1 -1
  430. pyrogram/raw/functions/help/get_promo_data.py +1 -1
  431. pyrogram/raw/functions/help/get_recent_me_urls.py +1 -1
  432. pyrogram/raw/functions/help/get_support.py +1 -1
  433. pyrogram/raw/functions/help/get_support_name.py +1 -1
  434. pyrogram/raw/functions/help/get_terms_of_service_update.py +1 -1
  435. pyrogram/raw/functions/help/get_timezones_list.py +1 -1
  436. pyrogram/raw/functions/help/get_user_info.py +1 -1
  437. pyrogram/raw/functions/help/hide_promo_data.py +1 -1
  438. pyrogram/raw/functions/help/save_app_log.py +1 -1
  439. pyrogram/raw/functions/help/set_bot_updates_status.py +1 -1
  440. pyrogram/raw/functions/init_connection.py +1 -1
  441. pyrogram/raw/functions/invoke_after_msg.py +1 -1
  442. pyrogram/raw/functions/invoke_after_msgs.py +1 -1
  443. pyrogram/raw/functions/invoke_with_apns_secret.py +1 -1
  444. pyrogram/raw/functions/invoke_with_business_connection.py +1 -1
  445. pyrogram/raw/functions/invoke_with_google_play_integrity.py +1 -1
  446. pyrogram/raw/functions/invoke_with_layer.py +1 -1
  447. pyrogram/raw/functions/invoke_with_messages_range.py +1 -1
  448. pyrogram/raw/functions/invoke_with_takeout.py +1 -1
  449. pyrogram/raw/functions/invoke_without_updates.py +1 -1
  450. pyrogram/raw/functions/langpack/get_difference.py +1 -1
  451. pyrogram/raw/functions/langpack/get_lang_pack.py +1 -1
  452. pyrogram/raw/functions/langpack/get_language.py +1 -1
  453. pyrogram/raw/functions/langpack/get_languages.py +1 -1
  454. pyrogram/raw/functions/langpack/get_strings.py +1 -1
  455. pyrogram/raw/functions/messages/__init__.py +7 -0
  456. pyrogram/raw/functions/messages/accept_encryption.py +1 -1
  457. pyrogram/raw/functions/messages/accept_url_auth.py +1 -1
  458. pyrogram/raw/functions/messages/add_chat_user.py +1 -1
  459. pyrogram/raw/functions/messages/check_chat_invite.py +1 -1
  460. pyrogram/raw/functions/messages/check_history_import.py +1 -1
  461. pyrogram/raw/functions/messages/check_history_import_peer.py +1 -1
  462. pyrogram/raw/functions/messages/check_quick_reply_shortcut.py +1 -1
  463. pyrogram/raw/functions/messages/clear_all_drafts.py +1 -1
  464. pyrogram/raw/functions/messages/clear_recent_reactions.py +1 -1
  465. pyrogram/raw/functions/messages/clear_recent_stickers.py +1 -1
  466. pyrogram/raw/functions/messages/click_sponsored_message.py +94 -0
  467. pyrogram/raw/functions/messages/create_chat.py +1 -1
  468. pyrogram/raw/functions/messages/delete_chat.py +1 -1
  469. pyrogram/raw/functions/messages/delete_chat_user.py +1 -1
  470. pyrogram/raw/functions/messages/delete_exported_chat_invite.py +1 -1
  471. pyrogram/raw/functions/messages/delete_fact_check.py +1 -1
  472. pyrogram/raw/functions/messages/delete_history.py +1 -1
  473. pyrogram/raw/functions/messages/delete_messages.py +1 -1
  474. pyrogram/raw/functions/messages/delete_phone_call_history.py +1 -1
  475. pyrogram/raw/functions/messages/delete_quick_reply_messages.py +1 -1
  476. pyrogram/raw/functions/messages/delete_quick_reply_shortcut.py +1 -1
  477. pyrogram/raw/functions/messages/delete_revoked_exported_chat_invites.py +1 -1
  478. pyrogram/raw/functions/messages/delete_saved_history.py +1 -1
  479. pyrogram/raw/functions/messages/delete_scheduled_messages.py +1 -1
  480. pyrogram/raw/functions/messages/discard_encryption.py +1 -1
  481. pyrogram/raw/functions/messages/edit_chat_about.py +1 -1
  482. pyrogram/raw/functions/messages/edit_chat_admin.py +1 -1
  483. pyrogram/raw/functions/messages/edit_chat_default_banned_rights.py +1 -1
  484. pyrogram/raw/functions/messages/edit_chat_photo.py +1 -1
  485. pyrogram/raw/functions/messages/edit_chat_title.py +1 -1
  486. pyrogram/raw/functions/messages/edit_exported_chat_invite.py +1 -1
  487. pyrogram/raw/functions/messages/edit_fact_check.py +1 -1
  488. pyrogram/raw/functions/messages/edit_inline_bot_message.py +1 -1
  489. pyrogram/raw/functions/messages/edit_message.py +1 -1
  490. pyrogram/raw/functions/messages/edit_quick_reply_shortcut.py +1 -1
  491. pyrogram/raw/functions/messages/export_chat_invite.py +16 -6
  492. pyrogram/raw/functions/messages/fave_sticker.py +1 -1
  493. pyrogram/raw/functions/messages/forward_messages.py +10 -4
  494. pyrogram/raw/functions/messages/get_admins_with_invites.py +1 -1
  495. pyrogram/raw/functions/messages/get_all_drafts.py +1 -1
  496. pyrogram/raw/functions/messages/get_all_stickers.py +1 -1
  497. pyrogram/raw/functions/messages/get_archived_stickers.py +1 -1
  498. pyrogram/raw/functions/messages/get_attach_menu_bot.py +1 -1
  499. pyrogram/raw/functions/messages/get_attach_menu_bots.py +1 -1
  500. pyrogram/raw/functions/messages/get_attached_stickers.py +1 -1
  501. pyrogram/raw/functions/messages/get_available_effects.py +1 -1
  502. pyrogram/raw/functions/messages/get_available_reactions.py +1 -1
  503. pyrogram/raw/functions/messages/get_bot_app.py +1 -1
  504. pyrogram/raw/functions/messages/get_bot_callback_answer.py +1 -1
  505. pyrogram/raw/functions/messages/get_chat_invite_importers.py +10 -4
  506. pyrogram/raw/functions/messages/get_chats.py +1 -1
  507. pyrogram/raw/functions/messages/get_common_chats.py +1 -1
  508. pyrogram/raw/functions/messages/get_custom_emoji_documents.py +1 -1
  509. pyrogram/raw/functions/messages/get_default_history_ttl.py +1 -1
  510. pyrogram/raw/functions/messages/get_default_tag_reactions.py +1 -1
  511. pyrogram/raw/functions/messages/get_dh_config.py +1 -1
  512. pyrogram/raw/functions/messages/get_dialog_filters.py +1 -1
  513. pyrogram/raw/functions/messages/get_dialog_unread_marks.py +1 -1
  514. pyrogram/raw/functions/messages/get_dialogs.py +1 -1
  515. pyrogram/raw/functions/messages/get_discussion_message.py +1 -1
  516. pyrogram/raw/functions/messages/get_document_by_hash.py +1 -1
  517. pyrogram/raw/functions/messages/get_emoji_groups.py +1 -1
  518. pyrogram/raw/functions/messages/get_emoji_keywords.py +1 -1
  519. pyrogram/raw/functions/messages/get_emoji_keywords_difference.py +1 -1
  520. pyrogram/raw/functions/messages/get_emoji_keywords_languages.py +1 -1
  521. pyrogram/raw/functions/messages/get_emoji_profile_photo_groups.py +1 -1
  522. pyrogram/raw/functions/messages/get_emoji_status_groups.py +1 -1
  523. pyrogram/raw/functions/messages/get_emoji_sticker_groups.py +1 -1
  524. pyrogram/raw/functions/messages/get_emoji_stickers.py +1 -1
  525. pyrogram/raw/functions/messages/get_emoji_url.py +1 -1
  526. pyrogram/raw/functions/messages/get_exported_chat_invite.py +1 -1
  527. pyrogram/raw/functions/messages/get_exported_chat_invites.py +1 -1
  528. pyrogram/raw/functions/messages/get_extended_media.py +1 -1
  529. pyrogram/raw/functions/messages/get_fact_check.py +1 -1
  530. pyrogram/raw/functions/messages/get_faved_stickers.py +1 -1
  531. pyrogram/raw/functions/messages/get_featured_emoji_stickers.py +1 -1
  532. pyrogram/raw/functions/messages/get_featured_stickers.py +1 -1
  533. pyrogram/raw/functions/messages/get_full_chat.py +1 -1
  534. pyrogram/raw/functions/messages/get_game_high_scores.py +1 -1
  535. pyrogram/raw/functions/messages/get_history.py +1 -1
  536. pyrogram/raw/functions/messages/get_inline_bot_results.py +1 -1
  537. pyrogram/raw/functions/messages/get_inline_game_high_scores.py +1 -1
  538. pyrogram/raw/functions/messages/get_mask_stickers.py +1 -1
  539. pyrogram/raw/functions/messages/get_message_edit_data.py +1 -1
  540. pyrogram/raw/functions/messages/get_message_reactions_list.py +1 -1
  541. pyrogram/raw/functions/messages/get_message_read_participants.py +1 -1
  542. pyrogram/raw/functions/messages/get_messages.py +1 -1
  543. pyrogram/raw/functions/messages/get_messages_reactions.py +1 -1
  544. pyrogram/raw/functions/messages/get_messages_views.py +1 -1
  545. pyrogram/raw/functions/messages/get_my_stickers.py +1 -1
  546. pyrogram/raw/functions/messages/get_old_featured_stickers.py +1 -1
  547. pyrogram/raw/functions/messages/get_onlines.py +1 -1
  548. pyrogram/raw/functions/messages/get_outbox_read_date.py +1 -1
  549. pyrogram/raw/functions/messages/get_paid_reaction_privacy.py +67 -0
  550. pyrogram/raw/functions/messages/get_peer_dialogs.py +1 -1
  551. pyrogram/raw/functions/messages/get_peer_settings.py +1 -1
  552. pyrogram/raw/functions/messages/get_pinned_dialogs.py +1 -1
  553. pyrogram/raw/functions/messages/get_pinned_saved_dialogs.py +1 -1
  554. pyrogram/raw/functions/messages/get_poll_results.py +1 -1
  555. pyrogram/raw/functions/messages/get_poll_votes.py +1 -1
  556. pyrogram/raw/functions/messages/get_quick_replies.py +1 -1
  557. pyrogram/raw/functions/messages/get_quick_reply_messages.py +1 -1
  558. pyrogram/raw/functions/messages/get_recent_locations.py +1 -1
  559. pyrogram/raw/functions/messages/get_recent_reactions.py +1 -1
  560. pyrogram/raw/functions/messages/get_recent_stickers.py +1 -1
  561. pyrogram/raw/functions/messages/get_replies.py +1 -1
  562. pyrogram/raw/functions/messages/get_saved_dialogs.py +1 -1
  563. pyrogram/raw/functions/messages/get_saved_gifs.py +1 -1
  564. pyrogram/raw/functions/messages/get_saved_history.py +1 -1
  565. pyrogram/raw/functions/messages/get_saved_reaction_tags.py +1 -1
  566. pyrogram/raw/functions/messages/get_scheduled_history.py +1 -1
  567. pyrogram/raw/functions/messages/get_scheduled_messages.py +1 -1
  568. pyrogram/raw/functions/messages/get_search_counters.py +1 -1
  569. pyrogram/raw/functions/messages/get_search_results_calendar.py +1 -1
  570. pyrogram/raw/functions/messages/get_search_results_positions.py +1 -1
  571. pyrogram/raw/functions/messages/get_split_ranges.py +1 -1
  572. pyrogram/raw/functions/{channels → messages}/get_sponsored_messages.py +11 -11
  573. pyrogram/raw/functions/messages/get_sticker_set.py +1 -1
  574. pyrogram/raw/functions/messages/get_stickers.py +1 -1
  575. pyrogram/raw/functions/messages/get_suggested_dialog_filters.py +1 -1
  576. pyrogram/raw/functions/messages/get_top_reactions.py +1 -1
  577. pyrogram/raw/functions/messages/get_unread_mentions.py +1 -1
  578. pyrogram/raw/functions/messages/get_unread_reactions.py +1 -1
  579. pyrogram/raw/functions/messages/get_web_page.py +1 -1
  580. pyrogram/raw/functions/messages/get_web_page_preview.py +1 -1
  581. pyrogram/raw/functions/messages/hide_all_chat_join_requests.py +1 -1
  582. pyrogram/raw/functions/messages/hide_chat_join_request.py +1 -1
  583. pyrogram/raw/functions/messages/hide_peer_settings_bar.py +1 -1
  584. pyrogram/raw/functions/messages/import_chat_invite.py +1 -1
  585. pyrogram/raw/functions/messages/init_history_import.py +1 -1
  586. pyrogram/raw/functions/messages/install_sticker_set.py +1 -1
  587. pyrogram/raw/functions/messages/mark_dialog_unread.py +1 -1
  588. pyrogram/raw/functions/messages/migrate_chat.py +1 -1
  589. pyrogram/raw/functions/messages/prolong_web_view.py +1 -1
  590. pyrogram/raw/functions/messages/rate_transcribed_audio.py +1 -1
  591. pyrogram/raw/functions/messages/read_discussion.py +1 -1
  592. pyrogram/raw/functions/messages/read_encrypted_history.py +1 -1
  593. pyrogram/raw/functions/messages/read_featured_stickers.py +1 -1
  594. pyrogram/raw/functions/messages/read_history.py +1 -1
  595. pyrogram/raw/functions/messages/read_mentions.py +1 -1
  596. pyrogram/raw/functions/messages/read_message_contents.py +1 -1
  597. pyrogram/raw/functions/messages/read_reactions.py +1 -1
  598. pyrogram/raw/functions/messages/received_messages.py +1 -1
  599. pyrogram/raw/functions/messages/received_queue.py +1 -1
  600. pyrogram/raw/functions/messages/reorder_pinned_dialogs.py +1 -1
  601. pyrogram/raw/functions/messages/reorder_pinned_saved_dialogs.py +1 -1
  602. pyrogram/raw/functions/messages/reorder_quick_replies.py +1 -1
  603. pyrogram/raw/functions/messages/reorder_sticker_sets.py +1 -1
  604. pyrogram/raw/functions/messages/report.py +11 -11
  605. pyrogram/raw/functions/messages/report_encrypted_spam.py +1 -1
  606. pyrogram/raw/functions/messages/report_reaction.py +1 -1
  607. pyrogram/raw/functions/messages/report_spam.py +1 -1
  608. pyrogram/raw/functions/{channels → messages}/report_sponsored_message.py +11 -11
  609. pyrogram/raw/functions/messages/request_app_web_view.py +1 -1
  610. pyrogram/raw/functions/messages/request_encryption.py +1 -1
  611. pyrogram/raw/functions/messages/request_main_web_view.py +1 -1
  612. pyrogram/raw/functions/messages/request_simple_web_view.py +1 -1
  613. pyrogram/raw/functions/messages/request_url_auth.py +1 -1
  614. pyrogram/raw/functions/messages/request_web_view.py +1 -1
  615. pyrogram/raw/functions/messages/save_default_send_as.py +1 -1
  616. pyrogram/raw/functions/messages/save_draft.py +1 -1
  617. pyrogram/raw/functions/messages/save_gif.py +1 -1
  618. pyrogram/raw/functions/messages/save_recent_sticker.py +1 -1
  619. pyrogram/raw/functions/messages/search.py +1 -1
  620. pyrogram/raw/functions/messages/search_custom_emoji.py +1 -1
  621. pyrogram/raw/functions/messages/search_emoji_sticker_sets.py +1 -1
  622. pyrogram/raw/functions/messages/search_global.py +1 -1
  623. pyrogram/raw/functions/messages/search_sent_media.py +1 -1
  624. pyrogram/raw/functions/messages/search_sticker_sets.py +1 -1
  625. pyrogram/raw/functions/messages/send_bot_requested_peer.py +1 -1
  626. pyrogram/raw/functions/messages/send_encrypted.py +1 -1
  627. pyrogram/raw/functions/messages/send_encrypted_file.py +1 -1
  628. pyrogram/raw/functions/messages/send_encrypted_service.py +1 -1
  629. pyrogram/raw/functions/messages/send_inline_bot_result.py +1 -1
  630. pyrogram/raw/functions/messages/send_media.py +10 -4
  631. pyrogram/raw/functions/messages/send_message.py +10 -4
  632. pyrogram/raw/functions/messages/send_multi_media.py +10 -4
  633. pyrogram/raw/functions/messages/send_paid_reaction.py +107 -0
  634. pyrogram/raw/functions/messages/send_quick_reply_messages.py +1 -1
  635. pyrogram/raw/functions/messages/send_reaction.py +1 -1
  636. pyrogram/raw/functions/messages/send_scheduled_messages.py +1 -1
  637. pyrogram/raw/functions/messages/send_screenshot_notification.py +1 -1
  638. pyrogram/raw/functions/messages/send_vote.py +1 -1
  639. pyrogram/raw/functions/messages/send_web_view_data.py +1 -1
  640. pyrogram/raw/functions/messages/send_web_view_result_message.py +1 -1
  641. pyrogram/raw/functions/messages/set_bot_callback_answer.py +1 -1
  642. pyrogram/raw/functions/messages/set_bot_precheckout_results.py +1 -1
  643. pyrogram/raw/functions/messages/set_bot_shipping_results.py +1 -1
  644. pyrogram/raw/functions/messages/set_chat_available_reactions.py +15 -6
  645. pyrogram/raw/functions/messages/set_chat_theme.py +1 -1
  646. pyrogram/raw/functions/messages/set_chat_wall_paper.py +1 -1
  647. pyrogram/raw/functions/messages/set_default_history_ttl.py +1 -1
  648. pyrogram/raw/functions/messages/set_default_reaction.py +1 -1
  649. pyrogram/raw/functions/messages/set_encrypted_typing.py +1 -1
  650. pyrogram/raw/functions/messages/set_game_score.py +1 -1
  651. pyrogram/raw/functions/messages/set_history_ttl.py +1 -1
  652. pyrogram/raw/functions/messages/set_inline_bot_results.py +1 -1
  653. pyrogram/raw/functions/messages/set_inline_game_score.py +1 -1
  654. pyrogram/raw/functions/messages/set_typing.py +1 -1
  655. pyrogram/raw/functions/messages/start_bot.py +1 -1
  656. pyrogram/raw/functions/messages/start_history_import.py +1 -1
  657. pyrogram/raw/functions/messages/toggle_bot_in_attach_menu.py +1 -1
  658. pyrogram/raw/functions/messages/toggle_dialog_filter_tags.py +1 -1
  659. pyrogram/raw/functions/messages/toggle_dialog_pin.py +1 -1
  660. pyrogram/raw/functions/messages/toggle_no_forwards.py +1 -1
  661. pyrogram/raw/functions/messages/toggle_paid_reaction_privacy.py +88 -0
  662. pyrogram/raw/functions/messages/toggle_peer_translations.py +1 -1
  663. pyrogram/raw/functions/messages/toggle_saved_dialog_pin.py +1 -1
  664. pyrogram/raw/functions/messages/toggle_sticker_sets.py +1 -1
  665. pyrogram/raw/functions/messages/transcribe_audio.py +1 -1
  666. pyrogram/raw/functions/messages/translate_text.py +1 -1
  667. pyrogram/raw/functions/messages/uninstall_sticker_set.py +1 -1
  668. pyrogram/raw/functions/messages/unpin_all_messages.py +1 -1
  669. pyrogram/raw/functions/messages/update_dialog_filter.py +1 -1
  670. pyrogram/raw/functions/messages/update_dialog_filters_order.py +1 -1
  671. pyrogram/raw/functions/messages/update_pinned_message.py +1 -1
  672. pyrogram/raw/functions/messages/update_saved_reaction_tag.py +1 -1
  673. pyrogram/raw/functions/messages/upload_encrypted_file.py +1 -1
  674. pyrogram/raw/functions/messages/upload_imported_media.py +1 -1
  675. pyrogram/raw/functions/messages/upload_media.py +1 -1
  676. pyrogram/raw/functions/{channels → messages}/view_sponsored_message.py +11 -11
  677. pyrogram/raw/functions/payments/__init__.py +8 -0
  678. pyrogram/raw/functions/payments/apply_gift_code.py +1 -1
  679. pyrogram/raw/functions/payments/assign_app_store_transaction.py +1 -1
  680. pyrogram/raw/functions/payments/assign_play_market_transaction.py +1 -1
  681. pyrogram/raw/functions/payments/can_purchase_premium.py +1 -1
  682. pyrogram/raw/functions/payments/change_stars_subscription.py +91 -0
  683. pyrogram/raw/functions/payments/check_gift_code.py +1 -1
  684. pyrogram/raw/functions/payments/clear_saved_info.py +1 -1
  685. pyrogram/raw/functions/{channels/click_sponsored_message.py → payments/convert_star_gift.py} +17 -17
  686. pyrogram/raw/functions/payments/export_invoice.py +1 -1
  687. pyrogram/raw/functions/payments/fulfill_stars_subscription.py +80 -0
  688. pyrogram/raw/functions/payments/get_bank_card_data.py +1 -1
  689. pyrogram/raw/functions/payments/get_giveaway_info.py +1 -1
  690. pyrogram/raw/functions/payments/get_payment_form.py +1 -1
  691. pyrogram/raw/functions/payments/get_payment_receipt.py +1 -1
  692. pyrogram/raw/functions/payments/get_premium_gift_code_options.py +1 -1
  693. pyrogram/raw/functions/payments/get_saved_info.py +1 -1
  694. pyrogram/raw/functions/payments/get_star_gifts.py +72 -0
  695. pyrogram/raw/functions/payments/get_stars_gift_options.py +1 -1
  696. pyrogram/raw/functions/payments/get_stars_giveaway_options.py +67 -0
  697. pyrogram/raw/functions/payments/get_stars_revenue_ads_account_url.py +1 -1
  698. pyrogram/raw/functions/payments/get_stars_revenue_stats.py +1 -1
  699. pyrogram/raw/functions/payments/get_stars_revenue_withdrawal_url.py +1 -1
  700. pyrogram/raw/functions/payments/get_stars_status.py +1 -1
  701. pyrogram/raw/functions/payments/get_stars_subscriptions.py +88 -0
  702. pyrogram/raw/functions/payments/get_stars_topup_options.py +1 -1
  703. pyrogram/raw/functions/payments/get_stars_transactions.py +15 -6
  704. pyrogram/raw/functions/payments/get_stars_transactions_by_id.py +1 -1
  705. pyrogram/raw/functions/payments/get_user_star_gifts.py +88 -0
  706. pyrogram/raw/functions/payments/launch_prepaid_giveaway.py +1 -1
  707. pyrogram/raw/functions/payments/refund_stars_charge.py +1 -1
  708. pyrogram/raw/functions/payments/save_star_gift.py +88 -0
  709. pyrogram/raw/functions/payments/send_payment_form.py +1 -1
  710. pyrogram/raw/functions/payments/send_stars_form.py +5 -8
  711. pyrogram/raw/functions/payments/validate_requested_info.py +1 -1
  712. pyrogram/raw/functions/phone/accept_call.py +1 -1
  713. pyrogram/raw/functions/phone/check_group_call.py +1 -1
  714. pyrogram/raw/functions/phone/confirm_call.py +1 -1
  715. pyrogram/raw/functions/phone/create_group_call.py +1 -1
  716. pyrogram/raw/functions/phone/discard_call.py +1 -1
  717. pyrogram/raw/functions/phone/discard_group_call.py +1 -1
  718. pyrogram/raw/functions/phone/edit_group_call_participant.py +1 -1
  719. pyrogram/raw/functions/phone/edit_group_call_title.py +1 -1
  720. pyrogram/raw/functions/phone/export_group_call_invite.py +1 -1
  721. pyrogram/raw/functions/phone/get_call_config.py +1 -1
  722. pyrogram/raw/functions/phone/get_group_call.py +1 -1
  723. pyrogram/raw/functions/phone/get_group_call_join_as.py +1 -1
  724. pyrogram/raw/functions/phone/get_group_call_stream_channels.py +1 -1
  725. pyrogram/raw/functions/phone/get_group_call_stream_rtmp_url.py +1 -1
  726. pyrogram/raw/functions/phone/get_group_participants.py +1 -1
  727. pyrogram/raw/functions/phone/invite_to_group_call.py +1 -1
  728. pyrogram/raw/functions/phone/join_group_call.py +1 -1
  729. pyrogram/raw/functions/phone/join_group_call_presentation.py +1 -1
  730. pyrogram/raw/functions/phone/leave_group_call.py +1 -1
  731. pyrogram/raw/functions/phone/leave_group_call_presentation.py +1 -1
  732. pyrogram/raw/functions/phone/received_call.py +1 -1
  733. pyrogram/raw/functions/phone/request_call.py +1 -1
  734. pyrogram/raw/functions/phone/save_call_debug.py +1 -1
  735. pyrogram/raw/functions/phone/save_call_log.py +1 -1
  736. pyrogram/raw/functions/phone/save_default_group_call_join_as.py +1 -1
  737. pyrogram/raw/functions/phone/send_signaling_data.py +1 -1
  738. pyrogram/raw/functions/phone/set_call_rating.py +1 -1
  739. pyrogram/raw/functions/phone/start_scheduled_group_call.py +1 -1
  740. pyrogram/raw/functions/phone/toggle_group_call_record.py +1 -1
  741. pyrogram/raw/functions/phone/toggle_group_call_settings.py +1 -1
  742. pyrogram/raw/functions/phone/toggle_group_call_start_subscription.py +1 -1
  743. pyrogram/raw/functions/photos/delete_photos.py +1 -1
  744. pyrogram/raw/functions/photos/get_user_photos.py +1 -1
  745. pyrogram/raw/functions/photos/update_profile_photo.py +1 -1
  746. pyrogram/raw/functions/photos/upload_contact_profile_photo.py +1 -1
  747. pyrogram/raw/functions/photos/upload_profile_photo.py +1 -1
  748. pyrogram/raw/functions/ping.py +1 -1
  749. pyrogram/raw/functions/ping_delay_disconnect.py +1 -1
  750. pyrogram/raw/functions/premium/apply_boost.py +1 -1
  751. pyrogram/raw/functions/premium/get_boosts_list.py +1 -1
  752. pyrogram/raw/functions/premium/get_boosts_status.py +1 -1
  753. pyrogram/raw/functions/premium/get_my_boosts.py +1 -1
  754. pyrogram/raw/functions/premium/get_user_boosts.py +1 -1
  755. pyrogram/raw/functions/req_dh_params.py +1 -1
  756. pyrogram/raw/functions/req_pq.py +1 -1
  757. pyrogram/raw/functions/req_pq_multi.py +1 -1
  758. pyrogram/raw/functions/rpc_drop_answer.py +1 -1
  759. pyrogram/raw/functions/set_client_dh_params.py +1 -1
  760. pyrogram/raw/functions/smsjobs/finish_job.py +1 -1
  761. pyrogram/raw/functions/smsjobs/get_sms_job.py +1 -1
  762. pyrogram/raw/functions/smsjobs/get_status.py +1 -1
  763. pyrogram/raw/functions/smsjobs/is_eligible_to_join.py +1 -1
  764. pyrogram/raw/functions/smsjobs/join.py +1 -1
  765. pyrogram/raw/functions/smsjobs/leave.py +1 -1
  766. pyrogram/raw/functions/smsjobs/update_settings.py +1 -1
  767. pyrogram/raw/functions/stats/get_broadcast_revenue_stats.py +10 -10
  768. pyrogram/raw/functions/stats/get_broadcast_revenue_transactions.py +10 -10
  769. pyrogram/raw/functions/stats/get_broadcast_revenue_withdrawal_url.py +10 -10
  770. pyrogram/raw/functions/stats/get_broadcast_stats.py +1 -1
  771. pyrogram/raw/functions/stats/get_megagroup_stats.py +1 -1
  772. pyrogram/raw/functions/stats/get_message_public_forwards.py +1 -1
  773. pyrogram/raw/functions/stats/get_message_stats.py +1 -1
  774. pyrogram/raw/functions/stats/get_story_public_forwards.py +1 -1
  775. pyrogram/raw/functions/stats/get_story_stats.py +1 -1
  776. pyrogram/raw/functions/stats/load_async_graph.py +1 -1
  777. pyrogram/raw/functions/stickers/add_sticker_to_set.py +1 -1
  778. pyrogram/raw/functions/stickers/change_sticker.py +1 -1
  779. pyrogram/raw/functions/stickers/change_sticker_position.py +1 -1
  780. pyrogram/raw/functions/stickers/check_short_name.py +1 -1
  781. pyrogram/raw/functions/stickers/create_sticker_set.py +1 -1
  782. pyrogram/raw/functions/stickers/delete_sticker_set.py +1 -1
  783. pyrogram/raw/functions/stickers/remove_sticker_from_set.py +1 -1
  784. pyrogram/raw/functions/stickers/rename_sticker_set.py +1 -1
  785. pyrogram/raw/functions/stickers/replace_sticker.py +1 -1
  786. pyrogram/raw/functions/stickers/set_sticker_set_thumb.py +1 -1
  787. pyrogram/raw/functions/stickers/suggest_short_name.py +1 -1
  788. pyrogram/raw/functions/stories/activate_stealth_mode.py +1 -1
  789. pyrogram/raw/functions/stories/can_send_story.py +1 -1
  790. pyrogram/raw/functions/stories/delete_stories.py +1 -1
  791. pyrogram/raw/functions/stories/edit_story.py +1 -1
  792. pyrogram/raw/functions/stories/export_story_link.py +1 -1
  793. pyrogram/raw/functions/stories/get_all_read_peer_stories.py +1 -1
  794. pyrogram/raw/functions/stories/get_all_stories.py +1 -1
  795. pyrogram/raw/functions/stories/get_chats_to_send.py +1 -1
  796. pyrogram/raw/functions/stories/get_peer_max_i_ds.py +1 -1
  797. pyrogram/raw/functions/stories/get_peer_stories.py +1 -1
  798. pyrogram/raw/functions/stories/get_pinned_stories.py +1 -1
  799. pyrogram/raw/functions/stories/get_stories_archive.py +1 -1
  800. pyrogram/raw/functions/stories/get_stories_by_id.py +1 -1
  801. pyrogram/raw/functions/stories/get_stories_views.py +1 -1
  802. pyrogram/raw/functions/stories/get_story_reactions_list.py +1 -1
  803. pyrogram/raw/functions/stories/get_story_views_list.py +1 -1
  804. pyrogram/raw/functions/stories/increment_story_views.py +1 -1
  805. pyrogram/raw/functions/stories/read_stories.py +1 -1
  806. pyrogram/raw/functions/stories/report.py +11 -11
  807. pyrogram/raw/functions/stories/search_posts.py +16 -6
  808. pyrogram/raw/functions/stories/send_reaction.py +1 -1
  809. pyrogram/raw/functions/stories/send_story.py +1 -1
  810. pyrogram/raw/functions/stories/toggle_all_stories_hidden.py +1 -1
  811. pyrogram/raw/functions/stories/toggle_peer_stories_hidden.py +1 -1
  812. pyrogram/raw/functions/stories/toggle_pinned.py +1 -1
  813. pyrogram/raw/functions/stories/toggle_pinned_to_top.py +1 -1
  814. pyrogram/raw/functions/updates/get_channel_difference.py +1 -1
  815. pyrogram/raw/functions/updates/get_difference.py +1 -1
  816. pyrogram/raw/functions/updates/get_state.py +1 -1
  817. pyrogram/raw/functions/upload/get_cdn_file.py +1 -1
  818. pyrogram/raw/functions/upload/get_cdn_file_hashes.py +1 -1
  819. pyrogram/raw/functions/upload/get_file.py +1 -1
  820. pyrogram/raw/functions/upload/get_file_hashes.py +1 -1
  821. pyrogram/raw/functions/upload/get_web_file.py +1 -1
  822. pyrogram/raw/functions/upload/reupload_cdn_file.py +1 -1
  823. pyrogram/raw/functions/upload/save_big_file_part.py +1 -1
  824. pyrogram/raw/functions/upload/save_file_part.py +1 -1
  825. pyrogram/raw/functions/users/get_full_user.py +1 -1
  826. pyrogram/raw/functions/users/get_is_premium_required_to_contact.py +1 -1
  827. pyrogram/raw/functions/users/get_users.py +1 -1
  828. pyrogram/raw/functions/users/set_secure_value_errors.py +1 -1
  829. pyrogram/raw/types/__init__.py +25 -0
  830. pyrogram/raw/types/access_point_rule.py +1 -1
  831. pyrogram/raw/types/account/authorization_form.py +1 -1
  832. pyrogram/raw/types/account/authorizations.py +1 -1
  833. pyrogram/raw/types/account/auto_download_settings.py +1 -1
  834. pyrogram/raw/types/account/auto_save_settings.py +1 -1
  835. pyrogram/raw/types/account/business_chat_links.py +1 -1
  836. pyrogram/raw/types/account/connected_bots.py +1 -1
  837. pyrogram/raw/types/account/content_settings.py +1 -1
  838. pyrogram/raw/types/account/email_verified.py +1 -1
  839. pyrogram/raw/types/account/email_verified_login.py +1 -1
  840. pyrogram/raw/types/account/emoji_statuses.py +1 -1
  841. pyrogram/raw/types/account/emoji_statuses_not_modified.py +1 -1
  842. pyrogram/raw/types/account/password.py +1 -1
  843. pyrogram/raw/types/account/password_input_settings.py +1 -1
  844. pyrogram/raw/types/account/password_settings.py +1 -1
  845. pyrogram/raw/types/account/privacy_rules.py +1 -1
  846. pyrogram/raw/types/account/reset_password_failed_wait.py +1 -1
  847. pyrogram/raw/types/account/reset_password_ok.py +1 -1
  848. pyrogram/raw/types/account/reset_password_requested_wait.py +1 -1
  849. pyrogram/raw/types/account/resolved_business_chat_links.py +1 -1
  850. pyrogram/raw/types/account/saved_ringtone.py +1 -1
  851. pyrogram/raw/types/account/saved_ringtone_converted.py +1 -1
  852. pyrogram/raw/types/account/saved_ringtones.py +1 -1
  853. pyrogram/raw/types/account/saved_ringtones_not_modified.py +1 -1
  854. pyrogram/raw/types/account/sent_email_code.py +1 -1
  855. pyrogram/raw/types/account/takeout.py +1 -1
  856. pyrogram/raw/types/account/themes.py +1 -1
  857. pyrogram/raw/types/account/themes_not_modified.py +1 -1
  858. pyrogram/raw/types/account/tmp_password.py +1 -1
  859. pyrogram/raw/types/account/wall_papers.py +1 -1
  860. pyrogram/raw/types/account/wall_papers_not_modified.py +1 -1
  861. pyrogram/raw/types/account/web_authorizations.py +1 -1
  862. pyrogram/raw/types/account_days_ttl.py +1 -1
  863. pyrogram/raw/types/attach_menu_bot.py +1 -1
  864. pyrogram/raw/types/attach_menu_bot_icon.py +1 -1
  865. pyrogram/raw/types/attach_menu_bot_icon_color.py +1 -1
  866. pyrogram/raw/types/attach_menu_bots.py +1 -1
  867. pyrogram/raw/types/attach_menu_bots_bot.py +1 -1
  868. pyrogram/raw/types/attach_menu_bots_not_modified.py +1 -1
  869. pyrogram/raw/types/attach_menu_peer_type_bot_pm.py +1 -1
  870. pyrogram/raw/types/attach_menu_peer_type_broadcast.py +1 -1
  871. pyrogram/raw/types/attach_menu_peer_type_chat.py +1 -1
  872. pyrogram/raw/types/attach_menu_peer_type_pm.py +1 -1
  873. pyrogram/raw/types/attach_menu_peer_type_same_bot_pm.py +1 -1
  874. pyrogram/raw/types/auth/authorization.py +1 -1
  875. pyrogram/raw/types/auth/authorization_sign_up_required.py +1 -1
  876. pyrogram/raw/types/auth/code_type_call.py +1 -1
  877. pyrogram/raw/types/auth/code_type_flash_call.py +1 -1
  878. pyrogram/raw/types/auth/code_type_fragment_sms.py +1 -1
  879. pyrogram/raw/types/auth/code_type_missed_call.py +1 -1
  880. pyrogram/raw/types/auth/code_type_sms.py +1 -1
  881. pyrogram/raw/types/auth/exported_authorization.py +1 -1
  882. pyrogram/raw/types/auth/logged_out.py +1 -1
  883. pyrogram/raw/types/auth/login_token.py +1 -1
  884. pyrogram/raw/types/auth/login_token_migrate_to.py +1 -1
  885. pyrogram/raw/types/auth/login_token_success.py +1 -1
  886. pyrogram/raw/types/auth/password_recovery.py +1 -1
  887. pyrogram/raw/types/auth/sent_code.py +1 -1
  888. pyrogram/raw/types/auth/sent_code_success.py +1 -1
  889. pyrogram/raw/types/auth/sent_code_type_app.py +1 -1
  890. pyrogram/raw/types/auth/sent_code_type_call.py +1 -1
  891. pyrogram/raw/types/auth/sent_code_type_email_code.py +1 -1
  892. pyrogram/raw/types/auth/sent_code_type_firebase_sms.py +1 -1
  893. pyrogram/raw/types/auth/sent_code_type_flash_call.py +1 -1
  894. pyrogram/raw/types/auth/sent_code_type_fragment_sms.py +1 -1
  895. pyrogram/raw/types/auth/sent_code_type_missed_call.py +1 -1
  896. pyrogram/raw/types/auth/sent_code_type_set_up_email_required.py +1 -1
  897. pyrogram/raw/types/auth/sent_code_type_sms.py +1 -1
  898. pyrogram/raw/types/auth/sent_code_type_sms_phrase.py +1 -1
  899. pyrogram/raw/types/auth/sent_code_type_sms_word.py +1 -1
  900. pyrogram/raw/types/authorization.py +1 -1
  901. pyrogram/raw/types/auto_download_settings.py +1 -1
  902. pyrogram/raw/types/auto_save_exception.py +1 -1
  903. pyrogram/raw/types/auto_save_settings.py +1 -1
  904. pyrogram/raw/types/available_effect.py +1 -1
  905. pyrogram/raw/types/available_reaction.py +1 -1
  906. pyrogram/raw/types/bad_msg_notification.py +1 -1
  907. pyrogram/raw/types/bad_server_salt.py +1 -1
  908. pyrogram/raw/types/bank_card_open_url.py +1 -1
  909. pyrogram/raw/types/base_theme_arctic.py +1 -1
  910. pyrogram/raw/types/base_theme_classic.py +1 -1
  911. pyrogram/raw/types/base_theme_day.py +1 -1
  912. pyrogram/raw/types/base_theme_night.py +1 -1
  913. pyrogram/raw/types/base_theme_tinted.py +1 -1
  914. pyrogram/raw/types/bind_auth_key_inner.py +1 -1
  915. pyrogram/raw/types/birthday.py +1 -1
  916. pyrogram/raw/types/boost.py +15 -6
  917. pyrogram/raw/types/bot_app.py +1 -1
  918. pyrogram/raw/types/bot_app_not_modified.py +1 -1
  919. pyrogram/raw/types/bot_business_connection.py +1 -1
  920. pyrogram/raw/types/bot_command.py +1 -1
  921. pyrogram/raw/types/bot_command_scope_chat_admins.py +1 -1
  922. pyrogram/raw/types/bot_command_scope_chats.py +1 -1
  923. pyrogram/raw/types/bot_command_scope_default.py +1 -1
  924. pyrogram/raw/types/bot_command_scope_peer.py +1 -1
  925. pyrogram/raw/types/bot_command_scope_peer_admins.py +1 -1
  926. pyrogram/raw/types/bot_command_scope_peer_user.py +1 -1
  927. pyrogram/raw/types/bot_command_scope_users.py +1 -1
  928. pyrogram/raw/types/bot_info.py +15 -6
  929. pyrogram/raw/types/bot_inline_media_result.py +1 -1
  930. pyrogram/raw/types/bot_inline_message_media_auto.py +1 -1
  931. pyrogram/raw/types/bot_inline_message_media_contact.py +1 -1
  932. pyrogram/raw/types/bot_inline_message_media_geo.py +1 -1
  933. pyrogram/raw/types/bot_inline_message_media_invoice.py +1 -1
  934. pyrogram/raw/types/bot_inline_message_media_venue.py +1 -1
  935. pyrogram/raw/types/bot_inline_message_media_web_page.py +1 -1
  936. pyrogram/raw/types/bot_inline_message_text.py +1 -1
  937. pyrogram/raw/types/bot_inline_result.py +1 -1
  938. pyrogram/raw/types/bot_menu_button.py +1 -1
  939. pyrogram/raw/types/bot_menu_button_commands.py +1 -1
  940. pyrogram/raw/types/bot_menu_button_default.py +1 -1
  941. pyrogram/raw/types/bot_preview_media.py +1 -1
  942. pyrogram/raw/types/bots/bot_info.py +1 -1
  943. pyrogram/raw/types/bots/popular_app_bots.py +1 -1
  944. pyrogram/raw/types/bots/preview_info.py +1 -1
  945. pyrogram/raw/types/broadcast_revenue_balances.py +16 -8
  946. pyrogram/raw/types/broadcast_revenue_transaction_proceeds.py +1 -1
  947. pyrogram/raw/types/broadcast_revenue_transaction_refund.py +1 -1
  948. pyrogram/raw/types/broadcast_revenue_transaction_withdrawal.py +1 -1
  949. pyrogram/raw/types/business_away_message.py +1 -1
  950. pyrogram/raw/types/business_away_message_schedule_always.py +1 -1
  951. pyrogram/raw/types/business_away_message_schedule_custom.py +1 -1
  952. pyrogram/raw/types/business_away_message_schedule_outside_work_hours.py +1 -1
  953. pyrogram/raw/types/business_bot_recipients.py +1 -1
  954. pyrogram/raw/types/business_chat_link.py +1 -1
  955. pyrogram/raw/types/business_greeting_message.py +1 -1
  956. pyrogram/raw/types/business_intro.py +1 -1
  957. pyrogram/raw/types/business_location.py +1 -1
  958. pyrogram/raw/types/business_recipients.py +1 -1
  959. pyrogram/raw/types/business_weekly_open.py +1 -1
  960. pyrogram/raw/types/business_work_hours.py +1 -1
  961. pyrogram/raw/types/cdn_config.py +1 -1
  962. pyrogram/raw/types/cdn_public_key.py +1 -1
  963. pyrogram/raw/types/channel.py +21 -6
  964. pyrogram/raw/types/channel_admin_log_event.py +1 -1
  965. pyrogram/raw/types/channel_admin_log_event_action_change_about.py +1 -1
  966. pyrogram/raw/types/channel_admin_log_event_action_change_available_reactions.py +1 -1
  967. pyrogram/raw/types/channel_admin_log_event_action_change_emoji_status.py +1 -1
  968. pyrogram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py +1 -1
  969. pyrogram/raw/types/channel_admin_log_event_action_change_history_ttl.py +1 -1
  970. pyrogram/raw/types/channel_admin_log_event_action_change_linked_chat.py +1 -1
  971. pyrogram/raw/types/channel_admin_log_event_action_change_location.py +1 -1
  972. pyrogram/raw/types/channel_admin_log_event_action_change_peer_color.py +1 -1
  973. pyrogram/raw/types/channel_admin_log_event_action_change_photo.py +1 -1
  974. pyrogram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py +1 -1
  975. pyrogram/raw/types/channel_admin_log_event_action_change_sticker_set.py +1 -1
  976. pyrogram/raw/types/channel_admin_log_event_action_change_title.py +1 -1
  977. pyrogram/raw/types/channel_admin_log_event_action_change_username.py +1 -1
  978. pyrogram/raw/types/channel_admin_log_event_action_change_usernames.py +1 -1
  979. pyrogram/raw/types/channel_admin_log_event_action_change_wallpaper.py +1 -1
  980. pyrogram/raw/types/channel_admin_log_event_action_create_topic.py +1 -1
  981. pyrogram/raw/types/channel_admin_log_event_action_default_banned_rights.py +1 -1
  982. pyrogram/raw/types/channel_admin_log_event_action_delete_message.py +1 -1
  983. pyrogram/raw/types/channel_admin_log_event_action_delete_topic.py +1 -1
  984. pyrogram/raw/types/channel_admin_log_event_action_discard_group_call.py +1 -1
  985. pyrogram/raw/types/channel_admin_log_event_action_edit_message.py +1 -1
  986. pyrogram/raw/types/channel_admin_log_event_action_edit_topic.py +1 -1
  987. pyrogram/raw/types/channel_admin_log_event_action_exported_invite_delete.py +1 -1
  988. pyrogram/raw/types/channel_admin_log_event_action_exported_invite_edit.py +1 -1
  989. pyrogram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py +1 -1
  990. pyrogram/raw/types/channel_admin_log_event_action_participant_invite.py +1 -1
  991. pyrogram/raw/types/channel_admin_log_event_action_participant_join.py +1 -1
  992. pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py +1 -1
  993. pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_request.py +1 -1
  994. pyrogram/raw/types/channel_admin_log_event_action_participant_leave.py +1 -1
  995. pyrogram/raw/types/channel_admin_log_event_action_participant_mute.py +1 -1
  996. pyrogram/raw/types/channel_admin_log_event_action_participant_sub_extend.py +80 -0
  997. pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py +1 -1
  998. pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py +1 -1
  999. pyrogram/raw/types/channel_admin_log_event_action_participant_unmute.py +1 -1
  1000. pyrogram/raw/types/channel_admin_log_event_action_participant_volume.py +1 -1
  1001. pyrogram/raw/types/channel_admin_log_event_action_pin_topic.py +1 -1
  1002. pyrogram/raw/types/channel_admin_log_event_action_send_message.py +1 -1
  1003. pyrogram/raw/types/channel_admin_log_event_action_start_group_call.py +1 -1
  1004. pyrogram/raw/types/channel_admin_log_event_action_stop_poll.py +1 -1
  1005. pyrogram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py +1 -1
  1006. pyrogram/raw/types/channel_admin_log_event_action_toggle_forum.py +1 -1
  1007. pyrogram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py +1 -1
  1008. pyrogram/raw/types/channel_admin_log_event_action_toggle_invites.py +1 -1
  1009. pyrogram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py +1 -1
  1010. pyrogram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py +1 -1
  1011. pyrogram/raw/types/channel_admin_log_event_action_toggle_signature_profiles.py +72 -0
  1012. pyrogram/raw/types/channel_admin_log_event_action_toggle_signatures.py +1 -1
  1013. pyrogram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py +1 -1
  1014. pyrogram/raw/types/channel_admin_log_event_action_update_pinned.py +1 -1
  1015. pyrogram/raw/types/channel_admin_log_events_filter.py +10 -4
  1016. pyrogram/raw/types/channel_forbidden.py +1 -1
  1017. pyrogram/raw/types/channel_full.py +10 -4
  1018. pyrogram/raw/types/channel_location.py +1 -1
  1019. pyrogram/raw/types/channel_location_empty.py +1 -1
  1020. pyrogram/raw/types/channel_messages_filter.py +1 -1
  1021. pyrogram/raw/types/channel_messages_filter_empty.py +1 -1
  1022. pyrogram/raw/types/channel_participant.py +19 -8
  1023. pyrogram/raw/types/channel_participant_admin.py +1 -1
  1024. pyrogram/raw/types/channel_participant_banned.py +1 -1
  1025. pyrogram/raw/types/channel_participant_creator.py +1 -1
  1026. pyrogram/raw/types/channel_participant_left.py +1 -1
  1027. pyrogram/raw/types/channel_participant_self.py +15 -6
  1028. pyrogram/raw/types/channel_participants_admins.py +1 -1
  1029. pyrogram/raw/types/channel_participants_banned.py +1 -1
  1030. pyrogram/raw/types/channel_participants_bots.py +1 -1
  1031. pyrogram/raw/types/channel_participants_contacts.py +1 -1
  1032. pyrogram/raw/types/channel_participants_kicked.py +1 -1
  1033. pyrogram/raw/types/channel_participants_mentions.py +1 -1
  1034. pyrogram/raw/types/channel_participants_recent.py +1 -1
  1035. pyrogram/raw/types/channel_participants_search.py +1 -1
  1036. pyrogram/raw/types/channels/admin_log_results.py +1 -1
  1037. pyrogram/raw/types/channels/channel_participant.py +1 -1
  1038. pyrogram/raw/types/channels/channel_participants.py +1 -1
  1039. pyrogram/raw/types/channels/channel_participants_not_modified.py +1 -1
  1040. pyrogram/raw/types/channels/send_as_peers.py +1 -1
  1041. pyrogram/raw/types/channels/sponsored_message_report_result_ads_hidden.py +2 -2
  1042. pyrogram/raw/types/channels/sponsored_message_report_result_choose_option.py +2 -2
  1043. pyrogram/raw/types/channels/sponsored_message_report_result_reported.py +2 -2
  1044. pyrogram/raw/types/chat.py +1 -1
  1045. pyrogram/raw/types/chat_admin_rights.py +1 -1
  1046. pyrogram/raw/types/chat_admin_with_invites.py +1 -1
  1047. pyrogram/raw/types/chat_banned_rights.py +1 -1
  1048. pyrogram/raw/types/chat_empty.py +1 -1
  1049. pyrogram/raw/types/chat_forbidden.py +1 -1
  1050. pyrogram/raw/types/chat_full.py +1 -1
  1051. pyrogram/raw/types/chat_invite.py +31 -6
  1052. pyrogram/raw/types/chat_invite_already.py +1 -1
  1053. pyrogram/raw/types/chat_invite_exported.py +25 -6
  1054. pyrogram/raw/types/chat_invite_importer.py +1 -1
  1055. pyrogram/raw/types/chat_invite_peek.py +1 -1
  1056. pyrogram/raw/types/chat_invite_public_join_requests.py +1 -1
  1057. pyrogram/raw/types/chat_onlines.py +1 -1
  1058. pyrogram/raw/types/chat_participant.py +1 -1
  1059. pyrogram/raw/types/chat_participant_admin.py +1 -1
  1060. pyrogram/raw/types/chat_participant_creator.py +1 -1
  1061. pyrogram/raw/types/chat_participants.py +1 -1
  1062. pyrogram/raw/types/chat_participants_forbidden.py +1 -1
  1063. pyrogram/raw/types/chat_photo.py +1 -1
  1064. pyrogram/raw/types/chat_photo_empty.py +1 -1
  1065. pyrogram/raw/types/chat_reactions_all.py +1 -1
  1066. pyrogram/raw/types/chat_reactions_none.py +1 -1
  1067. pyrogram/raw/types/chat_reactions_some.py +1 -1
  1068. pyrogram/raw/types/chatlists/chatlist_invite.py +1 -1
  1069. pyrogram/raw/types/chatlists/chatlist_invite_already.py +1 -1
  1070. pyrogram/raw/types/chatlists/chatlist_updates.py +1 -1
  1071. pyrogram/raw/types/chatlists/exported_chatlist_invite.py +1 -1
  1072. pyrogram/raw/types/chatlists/exported_invites.py +1 -1
  1073. pyrogram/raw/types/client_dh_inner_data.py +1 -1
  1074. pyrogram/raw/types/code_settings.py +1 -1
  1075. pyrogram/raw/types/config.py +1 -1
  1076. pyrogram/raw/types/connected_bot.py +1 -1
  1077. pyrogram/raw/types/contact.py +1 -1
  1078. pyrogram/raw/types/contact_birthday.py +1 -1
  1079. pyrogram/raw/types/contact_status.py +1 -1
  1080. pyrogram/raw/types/contacts/blocked.py +1 -1
  1081. pyrogram/raw/types/contacts/blocked_slice.py +1 -1
  1082. pyrogram/raw/types/contacts/contact_birthdays.py +1 -1
  1083. pyrogram/raw/types/contacts/contacts.py +1 -1
  1084. pyrogram/raw/types/contacts/contacts_not_modified.py +1 -1
  1085. pyrogram/raw/types/contacts/found.py +1 -1
  1086. pyrogram/raw/types/contacts/imported_contacts.py +1 -1
  1087. pyrogram/raw/types/contacts/resolved_peer.py +1 -1
  1088. pyrogram/raw/types/contacts/top_peers.py +1 -1
  1089. pyrogram/raw/types/contacts/top_peers_disabled.py +1 -1
  1090. pyrogram/raw/types/contacts/top_peers_not_modified.py +1 -1
  1091. pyrogram/raw/types/data_json.py +1 -1
  1092. pyrogram/raw/types/dc_option.py +1 -1
  1093. pyrogram/raw/types/default_history_ttl.py +1 -1
  1094. pyrogram/raw/types/destroy_auth_key_fail.py +1 -1
  1095. pyrogram/raw/types/destroy_auth_key_none.py +1 -1
  1096. pyrogram/raw/types/destroy_auth_key_ok.py +1 -1
  1097. pyrogram/raw/types/destroy_session_none.py +1 -1
  1098. pyrogram/raw/types/destroy_session_ok.py +1 -1
  1099. pyrogram/raw/types/dh_gen_fail.py +1 -1
  1100. pyrogram/raw/types/dh_gen_ok.py +1 -1
  1101. pyrogram/raw/types/dh_gen_retry.py +1 -1
  1102. pyrogram/raw/types/dialog.py +1 -1
  1103. pyrogram/raw/types/dialog_filter.py +1 -1
  1104. pyrogram/raw/types/dialog_filter_chatlist.py +1 -1
  1105. pyrogram/raw/types/dialog_filter_default.py +1 -1
  1106. pyrogram/raw/types/dialog_filter_suggested.py +1 -1
  1107. pyrogram/raw/types/dialog_folder.py +1 -1
  1108. pyrogram/raw/types/dialog_peer.py +1 -1
  1109. pyrogram/raw/types/dialog_peer_folder.py +1 -1
  1110. pyrogram/raw/types/document.py +1 -1
  1111. pyrogram/raw/types/document_attribute_animated.py +1 -1
  1112. pyrogram/raw/types/document_attribute_audio.py +1 -1
  1113. pyrogram/raw/types/document_attribute_custom_emoji.py +1 -1
  1114. pyrogram/raw/types/document_attribute_filename.py +1 -1
  1115. pyrogram/raw/types/document_attribute_has_stickers.py +1 -1
  1116. pyrogram/raw/types/document_attribute_image_size.py +1 -1
  1117. pyrogram/raw/types/document_attribute_sticker.py +1 -1
  1118. pyrogram/raw/types/document_attribute_video.py +15 -6
  1119. pyrogram/raw/types/document_empty.py +1 -1
  1120. pyrogram/raw/types/draft_message.py +1 -1
  1121. pyrogram/raw/types/draft_message_empty.py +1 -1
  1122. pyrogram/raw/types/email_verification_apple.py +1 -1
  1123. pyrogram/raw/types/email_verification_code.py +1 -1
  1124. pyrogram/raw/types/email_verification_google.py +1 -1
  1125. pyrogram/raw/types/email_verify_purpose_login_change.py +1 -1
  1126. pyrogram/raw/types/email_verify_purpose_login_setup.py +1 -1
  1127. pyrogram/raw/types/email_verify_purpose_passport.py +1 -1
  1128. pyrogram/raw/types/emoji_group.py +1 -1
  1129. pyrogram/raw/types/emoji_group_greeting.py +1 -1
  1130. pyrogram/raw/types/emoji_group_premium.py +1 -1
  1131. pyrogram/raw/types/emoji_keyword.py +1 -1
  1132. pyrogram/raw/types/emoji_keyword_deleted.py +1 -1
  1133. pyrogram/raw/types/emoji_keywords_difference.py +1 -1
  1134. pyrogram/raw/types/emoji_language.py +1 -1
  1135. pyrogram/raw/types/emoji_list.py +1 -1
  1136. pyrogram/raw/types/emoji_list_not_modified.py +1 -1
  1137. pyrogram/raw/types/emoji_status.py +1 -1
  1138. pyrogram/raw/types/emoji_status_empty.py +1 -1
  1139. pyrogram/raw/types/emoji_status_until.py +1 -1
  1140. pyrogram/raw/types/emoji_url.py +1 -1
  1141. pyrogram/raw/types/encrypted_chat.py +1 -1
  1142. pyrogram/raw/types/encrypted_chat_discarded.py +1 -1
  1143. pyrogram/raw/types/encrypted_chat_empty.py +1 -1
  1144. pyrogram/raw/types/encrypted_chat_requested.py +1 -1
  1145. pyrogram/raw/types/encrypted_chat_waiting.py +1 -1
  1146. pyrogram/raw/types/encrypted_file.py +1 -1
  1147. pyrogram/raw/types/encrypted_file_empty.py +1 -1
  1148. pyrogram/raw/types/encrypted_message.py +1 -1
  1149. pyrogram/raw/types/encrypted_message_service.py +1 -1
  1150. pyrogram/raw/types/exported_chatlist_invite.py +1 -1
  1151. pyrogram/raw/types/exported_contact_token.py +1 -1
  1152. pyrogram/raw/types/exported_message_link.py +1 -1
  1153. pyrogram/raw/types/exported_story_link.py +1 -1
  1154. pyrogram/raw/types/fact_check.py +1 -1
  1155. pyrogram/raw/types/file_hash.py +1 -1
  1156. pyrogram/raw/types/folder.py +1 -1
  1157. pyrogram/raw/types/folder_peer.py +1 -1
  1158. pyrogram/raw/types/forum_topic.py +1 -1
  1159. pyrogram/raw/types/forum_topic_deleted.py +1 -1
  1160. pyrogram/raw/types/found_story.py +1 -1
  1161. pyrogram/raw/types/fragment/collectible_info.py +1 -1
  1162. pyrogram/raw/types/game.py +1 -1
  1163. pyrogram/raw/types/geo_point.py +1 -1
  1164. pyrogram/raw/types/geo_point_address.py +1 -1
  1165. pyrogram/raw/types/geo_point_empty.py +1 -1
  1166. pyrogram/raw/types/global_privacy_settings.py +1 -1
  1167. pyrogram/raw/types/group_call.py +1 -1
  1168. pyrogram/raw/types/group_call_discarded.py +1 -1
  1169. pyrogram/raw/types/group_call_participant.py +1 -1
  1170. pyrogram/raw/types/group_call_participant_video.py +1 -1
  1171. pyrogram/raw/types/group_call_participant_video_source_group.py +1 -1
  1172. pyrogram/raw/types/group_call_stream_channel.py +1 -1
  1173. pyrogram/raw/types/help/app_config.py +1 -1
  1174. pyrogram/raw/types/help/app_config_not_modified.py +1 -1
  1175. pyrogram/raw/types/help/app_update.py +1 -1
  1176. pyrogram/raw/types/help/config_simple.py +1 -1
  1177. pyrogram/raw/types/help/countries_list.py +1 -1
  1178. pyrogram/raw/types/help/countries_list_not_modified.py +1 -1
  1179. pyrogram/raw/types/help/country.py +1 -1
  1180. pyrogram/raw/types/help/country_code.py +1 -1
  1181. pyrogram/raw/types/help/deep_link_info.py +1 -1
  1182. pyrogram/raw/types/help/deep_link_info_empty.py +1 -1
  1183. pyrogram/raw/types/help/invite_text.py +1 -1
  1184. pyrogram/raw/types/help/no_app_update.py +1 -1
  1185. pyrogram/raw/types/help/passport_config.py +1 -1
  1186. pyrogram/raw/types/help/passport_config_not_modified.py +1 -1
  1187. pyrogram/raw/types/help/peer_color_option.py +1 -1
  1188. pyrogram/raw/types/help/peer_color_profile_set.py +1 -1
  1189. pyrogram/raw/types/help/peer_color_set.py +1 -1
  1190. pyrogram/raw/types/help/peer_colors.py +1 -1
  1191. pyrogram/raw/types/help/peer_colors_not_modified.py +1 -1
  1192. pyrogram/raw/types/help/premium_promo.py +1 -1
  1193. pyrogram/raw/types/help/promo_data.py +1 -1
  1194. pyrogram/raw/types/help/promo_data_empty.py +1 -1
  1195. pyrogram/raw/types/help/recent_me_urls.py +1 -1
  1196. pyrogram/raw/types/help/support.py +1 -1
  1197. pyrogram/raw/types/help/support_name.py +1 -1
  1198. pyrogram/raw/types/help/terms_of_service.py +1 -1
  1199. pyrogram/raw/types/help/terms_of_service_update.py +1 -1
  1200. pyrogram/raw/types/help/terms_of_service_update_empty.py +1 -1
  1201. pyrogram/raw/types/help/timezones_list.py +1 -1
  1202. pyrogram/raw/types/help/timezones_list_not_modified.py +1 -1
  1203. pyrogram/raw/types/help/user_info.py +1 -1
  1204. pyrogram/raw/types/help/user_info_empty.py +1 -1
  1205. pyrogram/raw/types/high_score.py +1 -1
  1206. pyrogram/raw/types/http_wait.py +1 -1
  1207. pyrogram/raw/types/imported_contact.py +1 -1
  1208. pyrogram/raw/types/inline_bot_switch_pm.py +1 -1
  1209. pyrogram/raw/types/inline_bot_web_view.py +1 -1
  1210. pyrogram/raw/types/inline_query_peer_type_bot_pm.py +1 -1
  1211. pyrogram/raw/types/inline_query_peer_type_broadcast.py +1 -1
  1212. pyrogram/raw/types/inline_query_peer_type_chat.py +1 -1
  1213. pyrogram/raw/types/inline_query_peer_type_megagroup.py +1 -1
  1214. pyrogram/raw/types/inline_query_peer_type_pm.py +1 -1
  1215. pyrogram/raw/types/inline_query_peer_type_same_bot_pm.py +1 -1
  1216. pyrogram/raw/types/input_app_event.py +1 -1
  1217. pyrogram/raw/types/input_bot_app_id.py +1 -1
  1218. pyrogram/raw/types/input_bot_app_short_name.py +1 -1
  1219. pyrogram/raw/types/input_bot_inline_message_game.py +1 -1
  1220. pyrogram/raw/types/input_bot_inline_message_id.py +1 -1
  1221. pyrogram/raw/types/input_bot_inline_message_id64.py +1 -1
  1222. pyrogram/raw/types/input_bot_inline_message_media_auto.py +1 -1
  1223. pyrogram/raw/types/input_bot_inline_message_media_contact.py +1 -1
  1224. pyrogram/raw/types/input_bot_inline_message_media_geo.py +1 -1
  1225. pyrogram/raw/types/input_bot_inline_message_media_invoice.py +1 -1
  1226. pyrogram/raw/types/input_bot_inline_message_media_venue.py +1 -1
  1227. pyrogram/raw/types/input_bot_inline_message_media_web_page.py +1 -1
  1228. pyrogram/raw/types/input_bot_inline_message_text.py +1 -1
  1229. pyrogram/raw/types/input_bot_inline_result.py +1 -1
  1230. pyrogram/raw/types/input_bot_inline_result_document.py +1 -1
  1231. pyrogram/raw/types/input_bot_inline_result_game.py +1 -1
  1232. pyrogram/raw/types/input_bot_inline_result_photo.py +1 -1
  1233. pyrogram/raw/types/input_business_away_message.py +1 -1
  1234. pyrogram/raw/types/input_business_bot_recipients.py +1 -1
  1235. pyrogram/raw/types/input_business_chat_link.py +1 -1
  1236. pyrogram/raw/types/input_business_greeting_message.py +1 -1
  1237. pyrogram/raw/types/input_business_intro.py +1 -1
  1238. pyrogram/raw/types/input_business_recipients.py +1 -1
  1239. pyrogram/raw/types/input_channel.py +1 -1
  1240. pyrogram/raw/types/input_channel_empty.py +1 -1
  1241. pyrogram/raw/types/input_channel_from_message.py +1 -1
  1242. pyrogram/raw/types/input_chat_photo.py +1 -1
  1243. pyrogram/raw/types/input_chat_photo_empty.py +1 -1
  1244. pyrogram/raw/types/input_chat_uploaded_photo.py +1 -1
  1245. pyrogram/raw/types/input_chatlist_dialog_filter.py +1 -1
  1246. pyrogram/raw/types/input_check_password_empty.py +1 -1
  1247. pyrogram/raw/types/input_check_password_srp.py +1 -1
  1248. pyrogram/raw/types/input_client_proxy.py +1 -1
  1249. pyrogram/raw/types/input_collectible_phone.py +1 -1
  1250. pyrogram/raw/types/input_collectible_username.py +1 -1
  1251. pyrogram/raw/types/input_dialog_peer.py +1 -1
  1252. pyrogram/raw/types/input_dialog_peer_folder.py +1 -1
  1253. pyrogram/raw/types/input_document.py +1 -1
  1254. pyrogram/raw/types/input_document_empty.py +1 -1
  1255. pyrogram/raw/types/input_document_file_location.py +1 -1
  1256. pyrogram/raw/types/input_encrypted_chat.py +1 -1
  1257. pyrogram/raw/types/input_encrypted_file.py +1 -1
  1258. pyrogram/raw/types/input_encrypted_file_big_uploaded.py +1 -1
  1259. pyrogram/raw/types/input_encrypted_file_empty.py +1 -1
  1260. pyrogram/raw/types/input_encrypted_file_location.py +1 -1
  1261. pyrogram/raw/types/input_encrypted_file_uploaded.py +1 -1
  1262. pyrogram/raw/types/input_file.py +1 -1
  1263. pyrogram/raw/types/input_file_big.py +1 -1
  1264. pyrogram/raw/types/input_file_location.py +1 -1
  1265. pyrogram/raw/types/input_file_story_document.py +72 -0
  1266. pyrogram/raw/types/input_folder_peer.py +1 -1
  1267. pyrogram/raw/types/input_game_id.py +1 -1
  1268. pyrogram/raw/types/input_game_short_name.py +1 -1
  1269. pyrogram/raw/types/input_geo_point.py +1 -1
  1270. pyrogram/raw/types/input_geo_point_empty.py +1 -1
  1271. pyrogram/raw/types/input_group_call.py +1 -1
  1272. pyrogram/raw/types/input_group_call_stream.py +1 -1
  1273. pyrogram/raw/types/input_invoice_chat_invite_subscription.py +72 -0
  1274. pyrogram/raw/types/input_invoice_message.py +1 -1
  1275. pyrogram/raw/types/input_invoice_premium_gift_code.py +1 -1
  1276. pyrogram/raw/types/input_invoice_slug.py +1 -1
  1277. pyrogram/raw/types/input_invoice_star_gift.py +98 -0
  1278. pyrogram/raw/types/input_invoice_stars.py +1 -1
  1279. pyrogram/raw/types/input_keyboard_button_request_peer.py +1 -1
  1280. pyrogram/raw/types/input_keyboard_button_url_auth.py +1 -1
  1281. pyrogram/raw/types/input_keyboard_button_user_profile.py +1 -1
  1282. pyrogram/raw/types/input_media_area_channel_post.py +1 -1
  1283. pyrogram/raw/types/input_media_area_venue.py +1 -1
  1284. pyrogram/raw/types/input_media_contact.py +1 -1
  1285. pyrogram/raw/types/input_media_dice.py +1 -1
  1286. pyrogram/raw/types/input_media_document.py +1 -1
  1287. pyrogram/raw/types/input_media_document_external.py +1 -1
  1288. pyrogram/raw/types/input_media_empty.py +1 -1
  1289. pyrogram/raw/types/input_media_game.py +1 -1
  1290. pyrogram/raw/types/input_media_geo_live.py +1 -1
  1291. pyrogram/raw/types/input_media_geo_point.py +1 -1
  1292. pyrogram/raw/types/input_media_invoice.py +1 -1
  1293. pyrogram/raw/types/input_media_paid_media.py +19 -8
  1294. pyrogram/raw/types/input_media_photo.py +1 -1
  1295. pyrogram/raw/types/input_media_photo_external.py +1 -1
  1296. pyrogram/raw/types/input_media_poll.py +1 -1
  1297. pyrogram/raw/types/input_media_story.py +1 -1
  1298. pyrogram/raw/types/input_media_uploaded_document.py +1 -1
  1299. pyrogram/raw/types/input_media_uploaded_photo.py +1 -1
  1300. pyrogram/raw/types/input_media_venue.py +1 -1
  1301. pyrogram/raw/types/input_media_web_page.py +1 -1
  1302. pyrogram/raw/types/input_message_callback_query.py +1 -1
  1303. pyrogram/raw/types/input_message_entity_mention_name.py +1 -1
  1304. pyrogram/raw/types/input_message_id.py +1 -1
  1305. pyrogram/raw/types/input_message_pinned.py +1 -1
  1306. pyrogram/raw/types/input_message_reply_to.py +1 -1
  1307. pyrogram/raw/types/input_messages_filter_chat_photos.py +1 -1
  1308. pyrogram/raw/types/input_messages_filter_contacts.py +1 -1
  1309. pyrogram/raw/types/input_messages_filter_document.py +1 -1
  1310. pyrogram/raw/types/input_messages_filter_empty.py +1 -1
  1311. pyrogram/raw/types/input_messages_filter_geo.py +1 -1
  1312. pyrogram/raw/types/input_messages_filter_gif.py +1 -1
  1313. pyrogram/raw/types/input_messages_filter_music.py +1 -1
  1314. pyrogram/raw/types/input_messages_filter_my_mentions.py +1 -1
  1315. pyrogram/raw/types/input_messages_filter_phone_calls.py +1 -1
  1316. pyrogram/raw/types/input_messages_filter_photo_video.py +1 -1
  1317. pyrogram/raw/types/input_messages_filter_photos.py +1 -1
  1318. pyrogram/raw/types/input_messages_filter_pinned.py +1 -1
  1319. pyrogram/raw/types/input_messages_filter_round_video.py +1 -1
  1320. pyrogram/raw/types/input_messages_filter_round_voice.py +1 -1
  1321. pyrogram/raw/types/input_messages_filter_url.py +1 -1
  1322. pyrogram/raw/types/input_messages_filter_video.py +1 -1
  1323. pyrogram/raw/types/input_messages_filter_voice.py +1 -1
  1324. pyrogram/raw/types/input_notify_broadcasts.py +1 -1
  1325. pyrogram/raw/types/input_notify_chats.py +1 -1
  1326. pyrogram/raw/types/input_notify_forum_topic.py +1 -1
  1327. pyrogram/raw/types/input_notify_peer.py +1 -1
  1328. pyrogram/raw/types/input_notify_users.py +1 -1
  1329. pyrogram/raw/types/input_payment_credentials.py +1 -1
  1330. pyrogram/raw/types/input_payment_credentials_apple_pay.py +1 -1
  1331. pyrogram/raw/types/input_payment_credentials_google_pay.py +1 -1
  1332. pyrogram/raw/types/input_payment_credentials_saved.py +1 -1
  1333. pyrogram/raw/types/input_peer_channel.py +1 -1
  1334. pyrogram/raw/types/input_peer_channel_from_message.py +1 -1
  1335. pyrogram/raw/types/input_peer_chat.py +1 -1
  1336. pyrogram/raw/types/input_peer_empty.py +1 -1
  1337. pyrogram/raw/types/input_peer_notify_settings.py +1 -1
  1338. pyrogram/raw/types/input_peer_photo_file_location.py +1 -1
  1339. pyrogram/raw/types/input_peer_self.py +1 -1
  1340. pyrogram/raw/types/input_peer_user.py +1 -1
  1341. pyrogram/raw/types/input_peer_user_from_message.py +1 -1
  1342. pyrogram/raw/types/input_phone_call.py +1 -1
  1343. pyrogram/raw/types/input_phone_contact.py +1 -1
  1344. pyrogram/raw/types/input_photo.py +1 -1
  1345. pyrogram/raw/types/input_photo_empty.py +1 -1
  1346. pyrogram/raw/types/input_photo_file_location.py +1 -1
  1347. pyrogram/raw/types/input_photo_legacy_file_location.py +1 -1
  1348. pyrogram/raw/types/input_privacy_key_about.py +1 -1
  1349. pyrogram/raw/types/input_privacy_key_added_by_phone.py +1 -1
  1350. pyrogram/raw/types/input_privacy_key_birthday.py +1 -1
  1351. pyrogram/raw/types/input_privacy_key_chat_invite.py +1 -1
  1352. pyrogram/raw/types/input_privacy_key_forwards.py +1 -1
  1353. pyrogram/raw/types/input_privacy_key_phone_call.py +1 -1
  1354. pyrogram/raw/types/input_privacy_key_phone_number.py +1 -1
  1355. pyrogram/raw/types/input_privacy_key_phone_p2_p.py +1 -1
  1356. pyrogram/raw/types/input_privacy_key_profile_photo.py +1 -1
  1357. pyrogram/raw/types/input_privacy_key_status_timestamp.py +1 -1
  1358. pyrogram/raw/types/input_privacy_key_voice_messages.py +1 -1
  1359. pyrogram/raw/types/input_privacy_value_allow_all.py +1 -1
  1360. pyrogram/raw/types/input_privacy_value_allow_chat_participants.py +1 -1
  1361. pyrogram/raw/types/input_privacy_value_allow_close_friends.py +1 -1
  1362. pyrogram/raw/types/input_privacy_value_allow_contacts.py +1 -1
  1363. pyrogram/raw/types/input_privacy_value_allow_premium.py +1 -1
  1364. pyrogram/raw/types/input_privacy_value_allow_users.py +1 -1
  1365. pyrogram/raw/types/input_privacy_value_disallow_all.py +1 -1
  1366. pyrogram/raw/types/input_privacy_value_disallow_chat_participants.py +1 -1
  1367. pyrogram/raw/types/input_privacy_value_disallow_contacts.py +1 -1
  1368. pyrogram/raw/types/input_privacy_value_disallow_users.py +1 -1
  1369. pyrogram/raw/types/input_quick_reply_shortcut.py +1 -1
  1370. pyrogram/raw/types/input_quick_reply_shortcut_id.py +1 -1
  1371. pyrogram/raw/types/input_reply_to_message.py +1 -1
  1372. pyrogram/raw/types/input_reply_to_story.py +1 -1
  1373. pyrogram/raw/types/input_report_reason_child_abuse.py +1 -1
  1374. pyrogram/raw/types/input_report_reason_copyright.py +1 -1
  1375. pyrogram/raw/types/input_report_reason_fake.py +1 -1
  1376. pyrogram/raw/types/input_report_reason_geo_irrelevant.py +1 -1
  1377. pyrogram/raw/types/input_report_reason_illegal_drugs.py +1 -1
  1378. pyrogram/raw/types/input_report_reason_other.py +1 -1
  1379. pyrogram/raw/types/input_report_reason_personal_details.py +1 -1
  1380. pyrogram/raw/types/input_report_reason_pornography.py +1 -1
  1381. pyrogram/raw/types/input_report_reason_spam.py +1 -1
  1382. pyrogram/raw/types/input_report_reason_violence.py +1 -1
  1383. pyrogram/raw/types/input_secure_file.py +1 -1
  1384. pyrogram/raw/types/input_secure_file_location.py +1 -1
  1385. pyrogram/raw/types/input_secure_file_uploaded.py +1 -1
  1386. pyrogram/raw/types/input_secure_value.py +1 -1
  1387. pyrogram/raw/types/input_single_media.py +1 -1
  1388. pyrogram/raw/types/input_stars_transaction.py +1 -1
  1389. pyrogram/raw/types/input_sticker_set_animated_emoji.py +1 -1
  1390. pyrogram/raw/types/input_sticker_set_animated_emoji_animations.py +1 -1
  1391. pyrogram/raw/types/input_sticker_set_dice.py +1 -1
  1392. pyrogram/raw/types/input_sticker_set_emoji_channel_default_statuses.py +1 -1
  1393. pyrogram/raw/types/input_sticker_set_emoji_default_statuses.py +1 -1
  1394. pyrogram/raw/types/input_sticker_set_emoji_default_topic_icons.py +1 -1
  1395. pyrogram/raw/types/input_sticker_set_emoji_generic_animations.py +1 -1
  1396. pyrogram/raw/types/input_sticker_set_empty.py +1 -1
  1397. pyrogram/raw/types/input_sticker_set_id.py +1 -1
  1398. pyrogram/raw/types/input_sticker_set_item.py +1 -1
  1399. pyrogram/raw/types/input_sticker_set_premium_gifts.py +1 -1
  1400. pyrogram/raw/types/input_sticker_set_short_name.py +1 -1
  1401. pyrogram/raw/types/input_sticker_set_thumb.py +1 -1
  1402. pyrogram/raw/types/input_stickered_media_document.py +1 -1
  1403. pyrogram/raw/types/input_stickered_media_photo.py +1 -1
  1404. pyrogram/raw/types/input_store_payment_gift_premium.py +1 -1
  1405. pyrogram/raw/types/input_store_payment_premium_gift_code.py +16 -6
  1406. pyrogram/raw/types/input_store_payment_premium_giveaway.py +1 -1
  1407. pyrogram/raw/types/input_store_payment_premium_subscription.py +1 -1
  1408. pyrogram/raw/types/input_store_payment_stars_gift.py +1 -1
  1409. pyrogram/raw/types/input_store_payment_stars_giveaway.py +163 -0
  1410. pyrogram/raw/types/input_store_payment_stars_topup.py +1 -1
  1411. pyrogram/raw/types/input_takeout_file_location.py +1 -1
  1412. pyrogram/raw/types/input_theme.py +1 -1
  1413. pyrogram/raw/types/input_theme_settings.py +1 -1
  1414. pyrogram/raw/types/input_theme_slug.py +1 -1
  1415. pyrogram/raw/types/input_user.py +1 -1
  1416. pyrogram/raw/types/input_user_empty.py +1 -1
  1417. pyrogram/raw/types/input_user_from_message.py +1 -1
  1418. pyrogram/raw/types/input_user_self.py +1 -1
  1419. pyrogram/raw/types/input_wall_paper.py +1 -1
  1420. pyrogram/raw/types/input_wall_paper_no_file.py +1 -1
  1421. pyrogram/raw/types/input_wall_paper_slug.py +1 -1
  1422. pyrogram/raw/types/input_web_document.py +1 -1
  1423. pyrogram/raw/types/input_web_file_audio_album_thumb_location.py +1 -1
  1424. pyrogram/raw/types/input_web_file_geo_point_location.py +1 -1
  1425. pyrogram/raw/types/input_web_file_location.py +1 -1
  1426. pyrogram/raw/types/invoice.py +1 -1
  1427. pyrogram/raw/types/ip_port.py +1 -1
  1428. pyrogram/raw/types/ip_port_secret.py +1 -1
  1429. pyrogram/raw/types/json_array.py +1 -1
  1430. pyrogram/raw/types/json_bool.py +1 -1
  1431. pyrogram/raw/types/json_null.py +1 -1
  1432. pyrogram/raw/types/json_number.py +1 -1
  1433. pyrogram/raw/types/json_object.py +1 -1
  1434. pyrogram/raw/types/json_object_value.py +1 -1
  1435. pyrogram/raw/types/json_string.py +1 -1
  1436. pyrogram/raw/types/keyboard_button.py +1 -1
  1437. pyrogram/raw/types/keyboard_button_buy.py +1 -1
  1438. pyrogram/raw/types/keyboard_button_callback.py +1 -1
  1439. pyrogram/raw/types/keyboard_button_copy.py +80 -0
  1440. pyrogram/raw/types/keyboard_button_game.py +1 -1
  1441. pyrogram/raw/types/keyboard_button_request_geo_location.py +1 -1
  1442. pyrogram/raw/types/keyboard_button_request_peer.py +1 -1
  1443. pyrogram/raw/types/keyboard_button_request_phone.py +1 -1
  1444. pyrogram/raw/types/keyboard_button_request_poll.py +1 -1
  1445. pyrogram/raw/types/keyboard_button_row.py +1 -1
  1446. pyrogram/raw/types/keyboard_button_simple_web_view.py +1 -1
  1447. pyrogram/raw/types/keyboard_button_switch_inline.py +1 -1
  1448. pyrogram/raw/types/keyboard_button_url.py +1 -1
  1449. pyrogram/raw/types/keyboard_button_url_auth.py +1 -1
  1450. pyrogram/raw/types/keyboard_button_user_profile.py +1 -1
  1451. pyrogram/raw/types/keyboard_button_web_view.py +1 -1
  1452. pyrogram/raw/types/labeled_price.py +1 -1
  1453. pyrogram/raw/types/lang_pack_difference.py +1 -1
  1454. pyrogram/raw/types/lang_pack_language.py +1 -1
  1455. pyrogram/raw/types/lang_pack_string.py +1 -1
  1456. pyrogram/raw/types/lang_pack_string_deleted.py +1 -1
  1457. pyrogram/raw/types/lang_pack_string_pluralized.py +1 -1
  1458. pyrogram/raw/types/mask_coords.py +1 -1
  1459. pyrogram/raw/types/media_area_channel_post.py +1 -1
  1460. pyrogram/raw/types/media_area_coordinates.py +1 -1
  1461. pyrogram/raw/types/media_area_geo_point.py +1 -1
  1462. pyrogram/raw/types/media_area_suggested_reaction.py +1 -1
  1463. pyrogram/raw/types/media_area_url.py +1 -1
  1464. pyrogram/raw/types/media_area_venue.py +1 -1
  1465. pyrogram/raw/types/media_area_weather.py +1 -1
  1466. pyrogram/raw/types/message.py +10 -4
  1467. pyrogram/raw/types/message_action_boost_apply.py +1 -1
  1468. pyrogram/raw/types/message_action_bot_allowed.py +1 -1
  1469. pyrogram/raw/types/message_action_channel_create.py +1 -1
  1470. pyrogram/raw/types/message_action_channel_migrate_from.py +1 -1
  1471. pyrogram/raw/types/message_action_chat_add_user.py +1 -1
  1472. pyrogram/raw/types/message_action_chat_create.py +1 -1
  1473. pyrogram/raw/types/message_action_chat_delete_photo.py +1 -1
  1474. pyrogram/raw/types/message_action_chat_delete_user.py +1 -1
  1475. pyrogram/raw/types/message_action_chat_edit_photo.py +1 -1
  1476. pyrogram/raw/types/message_action_chat_edit_title.py +1 -1
  1477. pyrogram/raw/types/message_action_chat_joined_by_link.py +1 -1
  1478. pyrogram/raw/types/message_action_chat_joined_by_request.py +1 -1
  1479. pyrogram/raw/types/message_action_chat_migrate_to.py +1 -1
  1480. pyrogram/raw/types/message_action_contact_sign_up.py +1 -1
  1481. pyrogram/raw/types/message_action_custom_action.py +1 -1
  1482. pyrogram/raw/types/message_action_empty.py +1 -1
  1483. pyrogram/raw/types/message_action_game_score.py +1 -1
  1484. pyrogram/raw/types/message_action_geo_proximity_reached.py +1 -1
  1485. pyrogram/raw/types/message_action_gift_code.py +16 -6
  1486. pyrogram/raw/types/message_action_gift_premium.py +16 -6
  1487. pyrogram/raw/types/message_action_gift_stars.py +1 -1
  1488. pyrogram/raw/types/message_action_giveaway_launch.py +18 -10
  1489. pyrogram/raw/types/message_action_giveaway_results.py +16 -8
  1490. pyrogram/raw/types/message_action_group_call.py +1 -1
  1491. pyrogram/raw/types/message_action_group_call_scheduled.py +1 -1
  1492. pyrogram/raw/types/message_action_history_clear.py +1 -1
  1493. pyrogram/raw/types/message_action_invite_to_group_call.py +1 -1
  1494. pyrogram/raw/types/message_action_payment_refunded.py +1 -1
  1495. pyrogram/raw/types/message_action_payment_sent.py +1 -1
  1496. pyrogram/raw/types/message_action_payment_sent_me.py +1 -1
  1497. pyrogram/raw/types/message_action_phone_call.py +1 -1
  1498. pyrogram/raw/types/message_action_pin_message.py +1 -1
  1499. pyrogram/raw/types/message_action_prize_stars.py +104 -0
  1500. pyrogram/raw/types/message_action_requested_peer.py +1 -1
  1501. pyrogram/raw/types/message_action_requested_peer_sent_me.py +1 -1
  1502. pyrogram/raw/types/message_action_screenshot_taken.py +1 -1
  1503. pyrogram/raw/types/message_action_secure_values_sent.py +1 -1
  1504. pyrogram/raw/types/message_action_secure_values_sent_me.py +1 -1
  1505. pyrogram/raw/types/message_action_set_chat_theme.py +1 -1
  1506. pyrogram/raw/types/message_action_set_chat_wall_paper.py +1 -1
  1507. pyrogram/raw/types/message_action_set_messages_ttl.py +1 -1
  1508. pyrogram/raw/types/message_action_star_gift.py +110 -0
  1509. pyrogram/raw/types/message_action_suggest_profile_photo.py +1 -1
  1510. pyrogram/raw/types/message_action_topic_create.py +1 -1
  1511. pyrogram/raw/types/message_action_topic_edit.py +1 -1
  1512. pyrogram/raw/types/message_action_web_view_data_sent.py +1 -1
  1513. pyrogram/raw/types/message_action_web_view_data_sent_me.py +1 -1
  1514. pyrogram/raw/types/message_empty.py +1 -1
  1515. pyrogram/raw/types/message_entity_bank_card.py +1 -1
  1516. pyrogram/raw/types/message_entity_blockquote.py +1 -1
  1517. pyrogram/raw/types/message_entity_bold.py +1 -1
  1518. pyrogram/raw/types/message_entity_bot_command.py +1 -1
  1519. pyrogram/raw/types/message_entity_cashtag.py +1 -1
  1520. pyrogram/raw/types/message_entity_code.py +1 -1
  1521. pyrogram/raw/types/message_entity_custom_emoji.py +1 -1
  1522. pyrogram/raw/types/message_entity_email.py +1 -1
  1523. pyrogram/raw/types/message_entity_hashtag.py +1 -1
  1524. pyrogram/raw/types/message_entity_italic.py +1 -1
  1525. pyrogram/raw/types/message_entity_mention.py +1 -1
  1526. pyrogram/raw/types/message_entity_mention_name.py +1 -1
  1527. pyrogram/raw/types/message_entity_phone.py +1 -1
  1528. pyrogram/raw/types/message_entity_pre.py +1 -1
  1529. pyrogram/raw/types/message_entity_spoiler.py +1 -1
  1530. pyrogram/raw/types/message_entity_strike.py +1 -1
  1531. pyrogram/raw/types/message_entity_text_url.py +1 -1
  1532. pyrogram/raw/types/message_entity_underline.py +1 -1
  1533. pyrogram/raw/types/message_entity_unknown.py +1 -1
  1534. pyrogram/raw/types/message_entity_url.py +1 -1
  1535. pyrogram/raw/types/message_extended_media.py +1 -1
  1536. pyrogram/raw/types/message_extended_media_preview.py +1 -1
  1537. pyrogram/raw/types/message_fwd_header.py +1 -1
  1538. pyrogram/raw/types/message_media_contact.py +1 -1
  1539. pyrogram/raw/types/message_media_dice.py +1 -1
  1540. pyrogram/raw/types/message_media_document.py +12 -12
  1541. pyrogram/raw/types/message_media_empty.py +1 -1
  1542. pyrogram/raw/types/message_media_game.py +1 -1
  1543. pyrogram/raw/types/message_media_geo.py +1 -1
  1544. pyrogram/raw/types/message_media_geo_live.py +1 -1
  1545. pyrogram/raw/types/message_media_giveaway.py +23 -13
  1546. pyrogram/raw/types/message_media_giveaway_results.py +23 -13
  1547. pyrogram/raw/types/message_media_invoice.py +1 -1
  1548. pyrogram/raw/types/message_media_paid_media.py +1 -1
  1549. pyrogram/raw/types/message_media_photo.py +1 -1
  1550. pyrogram/raw/types/message_media_poll.py +1 -1
  1551. pyrogram/raw/types/message_media_story.py +1 -1
  1552. pyrogram/raw/types/message_media_unsupported.py +1 -1
  1553. pyrogram/raw/types/message_media_venue.py +1 -1
  1554. pyrogram/raw/types/message_media_web_page.py +1 -1
  1555. pyrogram/raw/types/message_peer_reaction.py +1 -1
  1556. pyrogram/raw/types/message_peer_vote.py +1 -1
  1557. pyrogram/raw/types/message_peer_vote_input_option.py +1 -1
  1558. pyrogram/raw/types/message_peer_vote_multiple.py +1 -1
  1559. pyrogram/raw/types/message_range.py +1 -1
  1560. pyrogram/raw/types/message_reactions.py +16 -6
  1561. pyrogram/raw/types/message_reactor.py +102 -0
  1562. pyrogram/raw/types/message_replies.py +1 -1
  1563. pyrogram/raw/types/message_reply_header.py +1 -1
  1564. pyrogram/raw/types/message_reply_story_header.py +1 -1
  1565. pyrogram/raw/types/message_report_option.py +80 -0
  1566. pyrogram/raw/types/message_service.py +1 -1
  1567. pyrogram/raw/types/message_views.py +1 -1
  1568. pyrogram/raw/types/messages/affected_found_messages.py +1 -1
  1569. pyrogram/raw/types/messages/affected_history.py +1 -1
  1570. pyrogram/raw/types/messages/affected_messages.py +1 -1
  1571. pyrogram/raw/types/messages/all_stickers.py +1 -1
  1572. pyrogram/raw/types/messages/all_stickers_not_modified.py +1 -1
  1573. pyrogram/raw/types/messages/archived_stickers.py +1 -1
  1574. pyrogram/raw/types/messages/available_effects.py +1 -1
  1575. pyrogram/raw/types/messages/available_effects_not_modified.py +1 -1
  1576. pyrogram/raw/types/messages/available_reactions.py +1 -1
  1577. pyrogram/raw/types/messages/available_reactions_not_modified.py +1 -1
  1578. pyrogram/raw/types/messages/bot_app.py +1 -1
  1579. pyrogram/raw/types/messages/bot_callback_answer.py +1 -1
  1580. pyrogram/raw/types/messages/bot_results.py +1 -1
  1581. pyrogram/raw/types/messages/channel_messages.py +1 -1
  1582. pyrogram/raw/types/messages/chat_admins_with_invites.py +1 -1
  1583. pyrogram/raw/types/messages/chat_full.py +1 -1
  1584. pyrogram/raw/types/messages/chat_invite_importers.py +1 -1
  1585. pyrogram/raw/types/messages/chats.py +1 -1
  1586. pyrogram/raw/types/messages/chats_slice.py +1 -1
  1587. pyrogram/raw/types/messages/checked_history_import_peer.py +1 -1
  1588. pyrogram/raw/types/messages/dh_config.py +1 -1
  1589. pyrogram/raw/types/messages/dh_config_not_modified.py +1 -1
  1590. pyrogram/raw/types/messages/dialog_filters.py +1 -1
  1591. pyrogram/raw/types/messages/dialogs.py +1 -1
  1592. pyrogram/raw/types/messages/dialogs_not_modified.py +1 -1
  1593. pyrogram/raw/types/messages/dialogs_slice.py +1 -1
  1594. pyrogram/raw/types/messages/discussion_message.py +1 -1
  1595. pyrogram/raw/types/messages/emoji_groups.py +1 -1
  1596. pyrogram/raw/types/messages/emoji_groups_not_modified.py +1 -1
  1597. pyrogram/raw/types/messages/exported_chat_invite.py +1 -1
  1598. pyrogram/raw/types/messages/exported_chat_invite_replaced.py +1 -1
  1599. pyrogram/raw/types/messages/exported_chat_invites.py +1 -1
  1600. pyrogram/raw/types/messages/faved_stickers.py +1 -1
  1601. pyrogram/raw/types/messages/faved_stickers_not_modified.py +1 -1
  1602. pyrogram/raw/types/messages/featured_stickers.py +1 -1
  1603. pyrogram/raw/types/messages/featured_stickers_not_modified.py +1 -1
  1604. pyrogram/raw/types/messages/forum_topics.py +1 -1
  1605. pyrogram/raw/types/messages/found_sticker_sets.py +1 -1
  1606. pyrogram/raw/types/messages/found_sticker_sets_not_modified.py +1 -1
  1607. pyrogram/raw/types/messages/high_scores.py +1 -1
  1608. pyrogram/raw/types/messages/history_import.py +1 -1
  1609. pyrogram/raw/types/messages/history_import_parsed.py +1 -1
  1610. pyrogram/raw/types/messages/inactive_chats.py +1 -1
  1611. pyrogram/raw/types/messages/invited_users.py +1 -1
  1612. pyrogram/raw/types/messages/message_edit_data.py +1 -1
  1613. pyrogram/raw/types/messages/message_reactions_list.py +1 -1
  1614. pyrogram/raw/types/messages/message_views.py +1 -1
  1615. pyrogram/raw/types/messages/messages.py +1 -1
  1616. pyrogram/raw/types/messages/messages_not_modified.py +1 -1
  1617. pyrogram/raw/types/messages/messages_slice.py +1 -1
  1618. pyrogram/raw/types/messages/my_stickers.py +1 -1
  1619. pyrogram/raw/types/messages/peer_dialogs.py +1 -1
  1620. pyrogram/raw/types/messages/peer_settings.py +1 -1
  1621. pyrogram/raw/types/messages/quick_replies.py +1 -1
  1622. pyrogram/raw/types/messages/quick_replies_not_modified.py +1 -1
  1623. pyrogram/raw/types/messages/reactions.py +1 -1
  1624. pyrogram/raw/types/messages/reactions_not_modified.py +1 -1
  1625. pyrogram/raw/types/messages/recent_stickers.py +1 -1
  1626. pyrogram/raw/types/messages/recent_stickers_not_modified.py +1 -1
  1627. pyrogram/raw/types/messages/saved_dialogs.py +1 -1
  1628. pyrogram/raw/types/messages/saved_dialogs_not_modified.py +1 -1
  1629. pyrogram/raw/types/messages/saved_dialogs_slice.py +1 -1
  1630. pyrogram/raw/types/messages/saved_gifs.py +1 -1
  1631. pyrogram/raw/types/messages/saved_gifs_not_modified.py +1 -1
  1632. pyrogram/raw/types/messages/saved_reaction_tags.py +1 -1
  1633. pyrogram/raw/types/messages/saved_reaction_tags_not_modified.py +1 -1
  1634. pyrogram/raw/types/messages/search_counter.py +1 -1
  1635. pyrogram/raw/types/messages/search_results_calendar.py +1 -1
  1636. pyrogram/raw/types/messages/search_results_positions.py +1 -1
  1637. pyrogram/raw/types/messages/sent_encrypted_file.py +1 -1
  1638. pyrogram/raw/types/messages/sent_encrypted_message.py +1 -1
  1639. pyrogram/raw/types/messages/sponsored_messages.py +2 -2
  1640. pyrogram/raw/types/messages/sponsored_messages_empty.py +2 -2
  1641. pyrogram/raw/types/messages/sticker_set.py +1 -1
  1642. pyrogram/raw/types/messages/sticker_set_install_result_archive.py +1 -1
  1643. pyrogram/raw/types/messages/sticker_set_install_result_success.py +1 -1
  1644. pyrogram/raw/types/messages/sticker_set_not_modified.py +1 -1
  1645. pyrogram/raw/types/messages/stickers.py +1 -1
  1646. pyrogram/raw/types/messages/stickers_not_modified.py +1 -1
  1647. pyrogram/raw/types/messages/transcribed_audio.py +1 -1
  1648. pyrogram/raw/types/messages/translate_result.py +1 -1
  1649. pyrogram/raw/types/messages/votes_list.py +1 -1
  1650. pyrogram/raw/types/messages/web_page.py +1 -1
  1651. pyrogram/raw/types/missing_invitee.py +1 -1
  1652. pyrogram/raw/types/msg_detailed_info.py +1 -1
  1653. pyrogram/raw/types/msg_new_detailed_info.py +1 -1
  1654. pyrogram/raw/types/msg_resend_ans_req.py +1 -1
  1655. pyrogram/raw/types/msg_resend_req.py +1 -1
  1656. pyrogram/raw/types/msgs_ack.py +1 -1
  1657. pyrogram/raw/types/msgs_all_info.py +1 -1
  1658. pyrogram/raw/types/msgs_state_info.py +1 -1
  1659. pyrogram/raw/types/msgs_state_req.py +1 -1
  1660. pyrogram/raw/types/my_boost.py +1 -1
  1661. pyrogram/raw/types/nearest_dc.py +1 -1
  1662. pyrogram/raw/types/new_session_created.py +1 -1
  1663. pyrogram/raw/types/notification_sound_default.py +1 -1
  1664. pyrogram/raw/types/notification_sound_local.py +1 -1
  1665. pyrogram/raw/types/notification_sound_none.py +1 -1
  1666. pyrogram/raw/types/notification_sound_ringtone.py +1 -1
  1667. pyrogram/raw/types/notify_broadcasts.py +1 -1
  1668. pyrogram/raw/types/notify_chats.py +1 -1
  1669. pyrogram/raw/types/notify_forum_topic.py +1 -1
  1670. pyrogram/raw/types/notify_peer.py +1 -1
  1671. pyrogram/raw/types/notify_users.py +1 -1
  1672. pyrogram/raw/types/outbox_read_date.py +1 -1
  1673. pyrogram/raw/types/page.py +1 -1
  1674. pyrogram/raw/types/page_block_anchor.py +1 -1
  1675. pyrogram/raw/types/page_block_audio.py +1 -1
  1676. pyrogram/raw/types/page_block_author_date.py +1 -1
  1677. pyrogram/raw/types/page_block_blockquote.py +1 -1
  1678. pyrogram/raw/types/page_block_channel.py +1 -1
  1679. pyrogram/raw/types/page_block_collage.py +1 -1
  1680. pyrogram/raw/types/page_block_cover.py +1 -1
  1681. pyrogram/raw/types/page_block_details.py +1 -1
  1682. pyrogram/raw/types/page_block_divider.py +1 -1
  1683. pyrogram/raw/types/page_block_embed.py +1 -1
  1684. pyrogram/raw/types/page_block_embed_post.py +1 -1
  1685. pyrogram/raw/types/page_block_footer.py +1 -1
  1686. pyrogram/raw/types/page_block_header.py +1 -1
  1687. pyrogram/raw/types/page_block_kicker.py +1 -1
  1688. pyrogram/raw/types/page_block_list.py +1 -1
  1689. pyrogram/raw/types/page_block_map.py +1 -1
  1690. pyrogram/raw/types/page_block_ordered_list.py +1 -1
  1691. pyrogram/raw/types/page_block_paragraph.py +1 -1
  1692. pyrogram/raw/types/page_block_photo.py +1 -1
  1693. pyrogram/raw/types/page_block_preformatted.py +1 -1
  1694. pyrogram/raw/types/page_block_pullquote.py +1 -1
  1695. pyrogram/raw/types/page_block_related_articles.py +1 -1
  1696. pyrogram/raw/types/page_block_slideshow.py +1 -1
  1697. pyrogram/raw/types/page_block_subheader.py +1 -1
  1698. pyrogram/raw/types/page_block_subtitle.py +1 -1
  1699. pyrogram/raw/types/page_block_table.py +1 -1
  1700. pyrogram/raw/types/page_block_title.py +1 -1
  1701. pyrogram/raw/types/page_block_unsupported.py +1 -1
  1702. pyrogram/raw/types/page_block_video.py +1 -1
  1703. pyrogram/raw/types/page_caption.py +1 -1
  1704. pyrogram/raw/types/page_list_item_blocks.py +1 -1
  1705. pyrogram/raw/types/page_list_item_text.py +1 -1
  1706. pyrogram/raw/types/page_list_ordered_item_blocks.py +1 -1
  1707. pyrogram/raw/types/page_list_ordered_item_text.py +1 -1
  1708. pyrogram/raw/types/page_related_article.py +1 -1
  1709. pyrogram/raw/types/page_table_cell.py +1 -1
  1710. pyrogram/raw/types/page_table_row.py +1 -1
  1711. pyrogram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py +1 -1
  1712. pyrogram/raw/types/password_kdf_algo_unknown.py +1 -1
  1713. pyrogram/raw/types/payment_charge.py +1 -1
  1714. pyrogram/raw/types/payment_form_method.py +1 -1
  1715. pyrogram/raw/types/payment_requested_info.py +1 -1
  1716. pyrogram/raw/types/payment_saved_credentials_card.py +1 -1
  1717. pyrogram/raw/types/payments/__init__.py +4 -0
  1718. pyrogram/raw/types/payments/bank_card_data.py +1 -1
  1719. pyrogram/raw/types/payments/checked_gift_code.py +1 -1
  1720. pyrogram/raw/types/payments/exported_invoice.py +1 -1
  1721. pyrogram/raw/types/payments/giveaway_info.py +1 -1
  1722. pyrogram/raw/types/payments/giveaway_info_results.py +26 -16
  1723. pyrogram/raw/types/payments/payment_form.py +1 -1
  1724. pyrogram/raw/types/payments/payment_form_star_gift.py +89 -0
  1725. pyrogram/raw/types/payments/payment_form_stars.py +1 -1
  1726. pyrogram/raw/types/payments/payment_receipt.py +1 -1
  1727. pyrogram/raw/types/payments/payment_receipt_stars.py +1 -1
  1728. pyrogram/raw/types/payments/payment_result.py +1 -1
  1729. pyrogram/raw/types/payments/payment_verification_needed.py +1 -1
  1730. pyrogram/raw/types/payments/saved_info.py +1 -1
  1731. pyrogram/raw/types/payments/star_gifts.py +89 -0
  1732. pyrogram/raw/types/payments/star_gifts_not_modified.py +76 -0
  1733. pyrogram/raw/types/payments/stars_revenue_ads_account_url.py +1 -1
  1734. pyrogram/raw/types/payments/stars_revenue_stats.py +1 -1
  1735. pyrogram/raw/types/payments/stars_revenue_withdrawal_url.py +1 -1
  1736. pyrogram/raw/types/payments/stars_status.py +44 -13
  1737. pyrogram/raw/types/payments/user_star_gifts.py +108 -0
  1738. pyrogram/raw/types/payments/validated_requested_info.py +1 -1
  1739. pyrogram/raw/types/peer_blocked.py +1 -1
  1740. pyrogram/raw/types/peer_channel.py +1 -1
  1741. pyrogram/raw/types/peer_chat.py +1 -1
  1742. pyrogram/raw/types/peer_color.py +1 -1
  1743. pyrogram/raw/types/peer_located.py +1 -1
  1744. pyrogram/raw/types/peer_notify_settings.py +1 -1
  1745. pyrogram/raw/types/peer_self_located.py +1 -1
  1746. pyrogram/raw/types/peer_settings.py +1 -1
  1747. pyrogram/raw/types/peer_stories.py +1 -1
  1748. pyrogram/raw/types/peer_user.py +1 -1
  1749. pyrogram/raw/types/phone/exported_group_call_invite.py +1 -1
  1750. pyrogram/raw/types/phone/group_call.py +1 -1
  1751. pyrogram/raw/types/phone/group_call_stream_channels.py +1 -1
  1752. pyrogram/raw/types/phone/group_call_stream_rtmp_url.py +1 -1
  1753. pyrogram/raw/types/phone/group_participants.py +1 -1
  1754. pyrogram/raw/types/phone/join_as_peers.py +1 -1
  1755. pyrogram/raw/types/phone/phone_call.py +1 -1
  1756. pyrogram/raw/types/phone_call.py +1 -1
  1757. pyrogram/raw/types/phone_call_accepted.py +1 -1
  1758. pyrogram/raw/types/phone_call_discard_reason_busy.py +1 -1
  1759. pyrogram/raw/types/phone_call_discard_reason_disconnect.py +1 -1
  1760. pyrogram/raw/types/phone_call_discard_reason_hangup.py +1 -1
  1761. pyrogram/raw/types/phone_call_discard_reason_missed.py +1 -1
  1762. pyrogram/raw/types/phone_call_discarded.py +1 -1
  1763. pyrogram/raw/types/phone_call_empty.py +1 -1
  1764. pyrogram/raw/types/phone_call_protocol.py +1 -1
  1765. pyrogram/raw/types/phone_call_requested.py +1 -1
  1766. pyrogram/raw/types/phone_call_waiting.py +1 -1
  1767. pyrogram/raw/types/phone_connection.py +1 -1
  1768. pyrogram/raw/types/phone_connection_webrtc.py +1 -1
  1769. pyrogram/raw/types/photo.py +1 -1
  1770. pyrogram/raw/types/photo_cached_size.py +1 -1
  1771. pyrogram/raw/types/photo_empty.py +1 -1
  1772. pyrogram/raw/types/photo_path_size.py +1 -1
  1773. pyrogram/raw/types/photo_size.py +1 -1
  1774. pyrogram/raw/types/photo_size_empty.py +1 -1
  1775. pyrogram/raw/types/photo_size_progressive.py +1 -1
  1776. pyrogram/raw/types/photo_stripped_size.py +1 -1
  1777. pyrogram/raw/types/photos/photo.py +1 -1
  1778. pyrogram/raw/types/photos/photos.py +1 -1
  1779. pyrogram/raw/types/photos/photos_slice.py +1 -1
  1780. pyrogram/raw/types/poll.py +1 -1
  1781. pyrogram/raw/types/poll_answer.py +1 -1
  1782. pyrogram/raw/types/poll_answer_voters.py +1 -1
  1783. pyrogram/raw/types/poll_results.py +1 -1
  1784. pyrogram/raw/types/pong.py +1 -1
  1785. pyrogram/raw/types/popular_contact.py +1 -1
  1786. pyrogram/raw/types/post_address.py +1 -1
  1787. pyrogram/raw/types/post_interaction_counters_message.py +1 -1
  1788. pyrogram/raw/types/post_interaction_counters_story.py +1 -1
  1789. pyrogram/raw/types/pq_inner_data.py +1 -1
  1790. pyrogram/raw/types/pq_inner_data_dc.py +1 -1
  1791. pyrogram/raw/types/pq_inner_data_temp.py +1 -1
  1792. pyrogram/raw/types/pq_inner_data_temp_dc.py +1 -1
  1793. pyrogram/raw/types/premium/boosts_list.py +1 -1
  1794. pyrogram/raw/types/premium/boosts_status.py +1 -1
  1795. pyrogram/raw/types/premium/my_boosts.py +1 -1
  1796. pyrogram/raw/types/premium_gift_code_option.py +1 -1
  1797. pyrogram/raw/types/premium_gift_option.py +1 -1
  1798. pyrogram/raw/types/premium_subscription_option.py +1 -1
  1799. pyrogram/raw/types/prepaid_giveaway.py +1 -1
  1800. pyrogram/raw/types/prepaid_stars_giveaway.py +104 -0
  1801. pyrogram/raw/types/privacy_key_about.py +1 -1
  1802. pyrogram/raw/types/privacy_key_added_by_phone.py +1 -1
  1803. pyrogram/raw/types/privacy_key_birthday.py +1 -1
  1804. pyrogram/raw/types/privacy_key_chat_invite.py +1 -1
  1805. pyrogram/raw/types/privacy_key_forwards.py +1 -1
  1806. pyrogram/raw/types/privacy_key_phone_call.py +1 -1
  1807. pyrogram/raw/types/privacy_key_phone_number.py +1 -1
  1808. pyrogram/raw/types/privacy_key_phone_p2_p.py +1 -1
  1809. pyrogram/raw/types/privacy_key_profile_photo.py +1 -1
  1810. pyrogram/raw/types/privacy_key_status_timestamp.py +1 -1
  1811. pyrogram/raw/types/privacy_key_voice_messages.py +1 -1
  1812. pyrogram/raw/types/privacy_value_allow_all.py +1 -1
  1813. pyrogram/raw/types/privacy_value_allow_chat_participants.py +1 -1
  1814. pyrogram/raw/types/privacy_value_allow_close_friends.py +1 -1
  1815. pyrogram/raw/types/privacy_value_allow_contacts.py +1 -1
  1816. pyrogram/raw/types/privacy_value_allow_premium.py +1 -1
  1817. pyrogram/raw/types/privacy_value_allow_users.py +1 -1
  1818. pyrogram/raw/types/privacy_value_disallow_all.py +1 -1
  1819. pyrogram/raw/types/privacy_value_disallow_chat_participants.py +1 -1
  1820. pyrogram/raw/types/privacy_value_disallow_contacts.py +1 -1
  1821. pyrogram/raw/types/privacy_value_disallow_users.py +1 -1
  1822. pyrogram/raw/types/public_forward_message.py +1 -1
  1823. pyrogram/raw/types/public_forward_story.py +1 -1
  1824. pyrogram/raw/types/quick_reply.py +1 -1
  1825. pyrogram/raw/types/reaction_count.py +1 -1
  1826. pyrogram/raw/types/reaction_custom_emoji.py +1 -1
  1827. pyrogram/raw/types/reaction_emoji.py +1 -1
  1828. pyrogram/raw/types/reaction_empty.py +1 -1
  1829. pyrogram/raw/types/reaction_notifications_from_all.py +1 -1
  1830. pyrogram/raw/types/reaction_notifications_from_contacts.py +1 -1
  1831. pyrogram/raw/types/reaction_paid.py +67 -0
  1832. pyrogram/raw/types/reactions_notify_settings.py +1 -1
  1833. pyrogram/raw/types/read_participant_date.py +1 -1
  1834. pyrogram/raw/types/received_notify_message.py +1 -1
  1835. pyrogram/raw/types/recent_me_url_chat.py +1 -1
  1836. pyrogram/raw/types/recent_me_url_chat_invite.py +1 -1
  1837. pyrogram/raw/types/recent_me_url_sticker_set.py +1 -1
  1838. pyrogram/raw/types/recent_me_url_unknown.py +1 -1
  1839. pyrogram/raw/types/recent_me_url_user.py +1 -1
  1840. pyrogram/raw/types/reply_inline_markup.py +1 -1
  1841. pyrogram/raw/types/reply_keyboard_force_reply.py +1 -1
  1842. pyrogram/raw/types/reply_keyboard_hide.py +1 -1
  1843. pyrogram/raw/types/reply_keyboard_markup.py +1 -1
  1844. pyrogram/raw/types/report_result_add_comment.py +90 -0
  1845. pyrogram/raw/types/report_result_choose_option.py +90 -0
  1846. pyrogram/raw/types/report_result_reported.py +77 -0
  1847. pyrogram/raw/types/request_peer_type_broadcast.py +1 -1
  1848. pyrogram/raw/types/request_peer_type_chat.py +1 -1
  1849. pyrogram/raw/types/request_peer_type_user.py +1 -1
  1850. pyrogram/raw/types/requested_peer_channel.py +1 -1
  1851. pyrogram/raw/types/requested_peer_chat.py +1 -1
  1852. pyrogram/raw/types/requested_peer_user.py +1 -1
  1853. pyrogram/raw/types/res_pq.py +1 -1
  1854. pyrogram/raw/types/restriction_reason.py +1 -1
  1855. pyrogram/raw/types/rpc_answer_dropped.py +1 -1
  1856. pyrogram/raw/types/rpc_answer_dropped_running.py +1 -1
  1857. pyrogram/raw/types/rpc_answer_unknown.py +1 -1
  1858. pyrogram/raw/types/rpc_error.py +1 -1
  1859. pyrogram/raw/types/rpc_result.py +1 -1
  1860. pyrogram/raw/types/saved_dialog.py +1 -1
  1861. pyrogram/raw/types/saved_phone_contact.py +1 -1
  1862. pyrogram/raw/types/saved_reaction_tag.py +1 -1
  1863. pyrogram/raw/types/search_result_position.py +1 -1
  1864. pyrogram/raw/types/search_results_calendar_period.py +1 -1
  1865. pyrogram/raw/types/secure_credentials_encrypted.py +1 -1
  1866. pyrogram/raw/types/secure_data.py +1 -1
  1867. pyrogram/raw/types/secure_file.py +1 -1
  1868. pyrogram/raw/types/secure_file_empty.py +1 -1
  1869. pyrogram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py +1 -1
  1870. pyrogram/raw/types/secure_password_kdf_algo_sha512.py +1 -1
  1871. pyrogram/raw/types/secure_password_kdf_algo_unknown.py +1 -1
  1872. pyrogram/raw/types/secure_plain_email.py +1 -1
  1873. pyrogram/raw/types/secure_plain_phone.py +1 -1
  1874. pyrogram/raw/types/secure_required_type.py +1 -1
  1875. pyrogram/raw/types/secure_required_type_one_of.py +1 -1
  1876. pyrogram/raw/types/secure_secret_settings.py +1 -1
  1877. pyrogram/raw/types/secure_value.py +1 -1
  1878. pyrogram/raw/types/secure_value_error.py +1 -1
  1879. pyrogram/raw/types/secure_value_error_data.py +1 -1
  1880. pyrogram/raw/types/secure_value_error_file.py +1 -1
  1881. pyrogram/raw/types/secure_value_error_files.py +1 -1
  1882. pyrogram/raw/types/secure_value_error_front_side.py +1 -1
  1883. pyrogram/raw/types/secure_value_error_reverse_side.py +1 -1
  1884. pyrogram/raw/types/secure_value_error_selfie.py +1 -1
  1885. pyrogram/raw/types/secure_value_error_translation_file.py +1 -1
  1886. pyrogram/raw/types/secure_value_error_translation_files.py +1 -1
  1887. pyrogram/raw/types/secure_value_hash.py +1 -1
  1888. pyrogram/raw/types/secure_value_type_address.py +1 -1
  1889. pyrogram/raw/types/secure_value_type_bank_statement.py +1 -1
  1890. pyrogram/raw/types/secure_value_type_driver_license.py +1 -1
  1891. pyrogram/raw/types/secure_value_type_email.py +1 -1
  1892. pyrogram/raw/types/secure_value_type_identity_card.py +1 -1
  1893. pyrogram/raw/types/secure_value_type_internal_passport.py +1 -1
  1894. pyrogram/raw/types/secure_value_type_passport.py +1 -1
  1895. pyrogram/raw/types/secure_value_type_passport_registration.py +1 -1
  1896. pyrogram/raw/types/secure_value_type_personal_details.py +1 -1
  1897. pyrogram/raw/types/secure_value_type_phone.py +1 -1
  1898. pyrogram/raw/types/secure_value_type_rental_agreement.py +1 -1
  1899. pyrogram/raw/types/secure_value_type_temporary_registration.py +1 -1
  1900. pyrogram/raw/types/secure_value_type_utility_bill.py +1 -1
  1901. pyrogram/raw/types/send_as_peer.py +1 -1
  1902. pyrogram/raw/types/send_message_cancel_action.py +1 -1
  1903. pyrogram/raw/types/send_message_choose_contact_action.py +1 -1
  1904. pyrogram/raw/types/send_message_choose_sticker_action.py +1 -1
  1905. pyrogram/raw/types/send_message_emoji_interaction.py +1 -1
  1906. pyrogram/raw/types/send_message_emoji_interaction_seen.py +1 -1
  1907. pyrogram/raw/types/send_message_game_play_action.py +1 -1
  1908. pyrogram/raw/types/send_message_geo_location_action.py +1 -1
  1909. pyrogram/raw/types/send_message_history_import_action.py +1 -1
  1910. pyrogram/raw/types/send_message_record_audio_action.py +1 -1
  1911. pyrogram/raw/types/send_message_record_round_action.py +1 -1
  1912. pyrogram/raw/types/send_message_record_video_action.py +1 -1
  1913. pyrogram/raw/types/send_message_typing_action.py +1 -1
  1914. pyrogram/raw/types/send_message_upload_audio_action.py +1 -1
  1915. pyrogram/raw/types/send_message_upload_document_action.py +1 -1
  1916. pyrogram/raw/types/send_message_upload_photo_action.py +1 -1
  1917. pyrogram/raw/types/send_message_upload_round_action.py +1 -1
  1918. pyrogram/raw/types/send_message_upload_video_action.py +1 -1
  1919. pyrogram/raw/types/server_dh_inner_data.py +1 -1
  1920. pyrogram/raw/types/server_dh_params_fail.py +1 -1
  1921. pyrogram/raw/types/server_dh_params_ok.py +1 -1
  1922. pyrogram/raw/types/shipping_option.py +1 -1
  1923. pyrogram/raw/types/sms_job.py +1 -1
  1924. pyrogram/raw/types/smsjobs/eligible_to_join.py +1 -1
  1925. pyrogram/raw/types/smsjobs/status.py +1 -1
  1926. pyrogram/raw/types/speaking_in_group_call_action.py +1 -1
  1927. pyrogram/raw/types/sponsored_message.py +16 -6
  1928. pyrogram/raw/types/sponsored_message_report_option.py +1 -1
  1929. pyrogram/raw/types/star_gift.py +146 -0
  1930. pyrogram/raw/types/stars_gift_option.py +1 -1
  1931. pyrogram/raw/types/stars_giveaway_option.py +136 -0
  1932. pyrogram/raw/types/stars_giveaway_winners_option.py +88 -0
  1933. pyrogram/raw/types/stars_revenue_status.py +1 -1
  1934. pyrogram/raw/types/stars_subscription.py +125 -0
  1935. pyrogram/raw/types/stars_subscription_pricing.py +80 -0
  1936. pyrogram/raw/types/stars_topup_option.py +1 -1
  1937. pyrogram/raw/types/stars_transaction.py +49 -6
  1938. pyrogram/raw/types/stars_transaction_peer.py +1 -1
  1939. pyrogram/raw/types/stars_transaction_peer_ads.py +1 -1
  1940. pyrogram/raw/types/stars_transaction_peer_api.py +67 -0
  1941. pyrogram/raw/types/stars_transaction_peer_app_store.py +1 -1
  1942. pyrogram/raw/types/stars_transaction_peer_fragment.py +1 -1
  1943. pyrogram/raw/types/stars_transaction_peer_play_market.py +1 -1
  1944. pyrogram/raw/types/stars_transaction_peer_premium_bot.py +1 -1
  1945. pyrogram/raw/types/stars_transaction_peer_unsupported.py +1 -1
  1946. pyrogram/raw/types/stats/broadcast_revenue_stats.py +1 -1
  1947. pyrogram/raw/types/stats/broadcast_revenue_transactions.py +1 -1
  1948. pyrogram/raw/types/stats/broadcast_revenue_withdrawal_url.py +1 -1
  1949. pyrogram/raw/types/stats/broadcast_stats.py +1 -1
  1950. pyrogram/raw/types/stats/megagroup_stats.py +1 -1
  1951. pyrogram/raw/types/stats/message_stats.py +1 -1
  1952. pyrogram/raw/types/stats/public_forwards.py +1 -1
  1953. pyrogram/raw/types/stats/story_stats.py +1 -1
  1954. pyrogram/raw/types/stats_abs_value_and_prev.py +1 -1
  1955. pyrogram/raw/types/stats_date_range_days.py +1 -1
  1956. pyrogram/raw/types/stats_graph.py +1 -1
  1957. pyrogram/raw/types/stats_graph_async.py +1 -1
  1958. pyrogram/raw/types/stats_graph_error.py +1 -1
  1959. pyrogram/raw/types/stats_group_top_admin.py +1 -1
  1960. pyrogram/raw/types/stats_group_top_inviter.py +1 -1
  1961. pyrogram/raw/types/stats_group_top_poster.py +1 -1
  1962. pyrogram/raw/types/stats_percent_value.py +1 -1
  1963. pyrogram/raw/types/stats_url.py +1 -1
  1964. pyrogram/raw/types/sticker_keyword.py +1 -1
  1965. pyrogram/raw/types/sticker_pack.py +1 -1
  1966. pyrogram/raw/types/sticker_set.py +1 -1
  1967. pyrogram/raw/types/sticker_set_covered.py +1 -1
  1968. pyrogram/raw/types/sticker_set_full_covered.py +1 -1
  1969. pyrogram/raw/types/sticker_set_multi_covered.py +1 -1
  1970. pyrogram/raw/types/sticker_set_no_covered.py +1 -1
  1971. pyrogram/raw/types/stickers/suggested_short_name.py +1 -1
  1972. pyrogram/raw/types/storage/file_gif.py +1 -1
  1973. pyrogram/raw/types/storage/file_jpeg.py +1 -1
  1974. pyrogram/raw/types/storage/file_mov.py +1 -1
  1975. pyrogram/raw/types/storage/file_mp3.py +1 -1
  1976. pyrogram/raw/types/storage/file_mp4.py +1 -1
  1977. pyrogram/raw/types/storage/file_partial.py +1 -1
  1978. pyrogram/raw/types/storage/file_pdf.py +1 -1
  1979. pyrogram/raw/types/storage/file_png.py +1 -1
  1980. pyrogram/raw/types/storage/file_unknown.py +1 -1
  1981. pyrogram/raw/types/storage/file_webp.py +1 -1
  1982. pyrogram/raw/types/stories/all_stories.py +1 -1
  1983. pyrogram/raw/types/stories/all_stories_not_modified.py +1 -1
  1984. pyrogram/raw/types/stories/found_stories.py +1 -1
  1985. pyrogram/raw/types/stories/peer_stories.py +1 -1
  1986. pyrogram/raw/types/stories/stories.py +1 -1
  1987. pyrogram/raw/types/stories/story_reactions_list.py +1 -1
  1988. pyrogram/raw/types/stories/story_views.py +1 -1
  1989. pyrogram/raw/types/stories/story_views_list.py +1 -1
  1990. pyrogram/raw/types/stories_stealth_mode.py +1 -1
  1991. pyrogram/raw/types/story_fwd_header.py +1 -1
  1992. pyrogram/raw/types/story_item.py +1 -1
  1993. pyrogram/raw/types/story_item_deleted.py +1 -1
  1994. pyrogram/raw/types/story_item_skipped.py +1 -1
  1995. pyrogram/raw/types/story_reaction.py +1 -1
  1996. pyrogram/raw/types/story_reaction_public_forward.py +1 -1
  1997. pyrogram/raw/types/story_reaction_public_repost.py +1 -1
  1998. pyrogram/raw/types/story_view.py +1 -1
  1999. pyrogram/raw/types/story_view_public_forward.py +1 -1
  2000. pyrogram/raw/types/story_view_public_repost.py +1 -1
  2001. pyrogram/raw/types/story_views.py +1 -1
  2002. pyrogram/raw/types/text_anchor.py +1 -1
  2003. pyrogram/raw/types/text_bold.py +1 -1
  2004. pyrogram/raw/types/text_concat.py +1 -1
  2005. pyrogram/raw/types/text_email.py +1 -1
  2006. pyrogram/raw/types/text_empty.py +1 -1
  2007. pyrogram/raw/types/text_fixed.py +1 -1
  2008. pyrogram/raw/types/text_image.py +1 -1
  2009. pyrogram/raw/types/text_italic.py +1 -1
  2010. pyrogram/raw/types/text_marked.py +1 -1
  2011. pyrogram/raw/types/text_phone.py +1 -1
  2012. pyrogram/raw/types/text_plain.py +1 -1
  2013. pyrogram/raw/types/text_strike.py +1 -1
  2014. pyrogram/raw/types/text_subscript.py +1 -1
  2015. pyrogram/raw/types/text_superscript.py +1 -1
  2016. pyrogram/raw/types/text_underline.py +1 -1
  2017. pyrogram/raw/types/text_url.py +1 -1
  2018. pyrogram/raw/types/text_with_entities.py +1 -1
  2019. pyrogram/raw/types/theme.py +1 -1
  2020. pyrogram/raw/types/theme_settings.py +1 -1
  2021. pyrogram/raw/types/timezone.py +1 -1
  2022. pyrogram/raw/types/top_peer.py +1 -1
  2023. pyrogram/raw/types/top_peer_category_bots_app.py +1 -1
  2024. pyrogram/raw/types/top_peer_category_bots_inline.py +1 -1
  2025. pyrogram/raw/types/top_peer_category_bots_pm.py +1 -1
  2026. pyrogram/raw/types/top_peer_category_channels.py +1 -1
  2027. pyrogram/raw/types/top_peer_category_correspondents.py +1 -1
  2028. pyrogram/raw/types/top_peer_category_forward_chats.py +1 -1
  2029. pyrogram/raw/types/top_peer_category_forward_users.py +1 -1
  2030. pyrogram/raw/types/top_peer_category_groups.py +1 -1
  2031. pyrogram/raw/types/top_peer_category_peers.py +1 -1
  2032. pyrogram/raw/types/top_peer_category_phone_calls.py +1 -1
  2033. pyrogram/raw/types/update_attach_menu_bots.py +1 -1
  2034. pyrogram/raw/types/update_auto_save_settings.py +1 -1
  2035. pyrogram/raw/types/update_bot_business_connect.py +1 -1
  2036. pyrogram/raw/types/update_bot_callback_query.py +1 -1
  2037. pyrogram/raw/types/update_bot_chat_boost.py +1 -1
  2038. pyrogram/raw/types/update_bot_chat_invite_requester.py +1 -1
  2039. pyrogram/raw/types/update_bot_commands.py +1 -1
  2040. pyrogram/raw/types/update_bot_delete_business_message.py +1 -1
  2041. pyrogram/raw/types/update_bot_edit_business_message.py +1 -1
  2042. pyrogram/raw/types/update_bot_inline_query.py +1 -1
  2043. pyrogram/raw/types/update_bot_inline_send.py +1 -1
  2044. pyrogram/raw/types/update_bot_menu_button.py +1 -1
  2045. pyrogram/raw/types/update_bot_message_reaction.py +1 -1
  2046. pyrogram/raw/types/update_bot_message_reactions.py +1 -1
  2047. pyrogram/raw/types/update_bot_new_business_message.py +1 -1
  2048. pyrogram/raw/types/update_bot_precheckout_query.py +1 -1
  2049. pyrogram/raw/types/update_bot_purchased_paid_media.py +88 -0
  2050. pyrogram/raw/types/update_bot_shipping_query.py +1 -1
  2051. pyrogram/raw/types/update_bot_stopped.py +1 -1
  2052. pyrogram/raw/types/update_bot_webhook_json.py +1 -1
  2053. pyrogram/raw/types/update_bot_webhook_json_query.py +1 -1
  2054. pyrogram/raw/types/update_broadcast_revenue_transactions.py +1 -1
  2055. pyrogram/raw/types/update_business_bot_callback_query.py +1 -1
  2056. pyrogram/raw/types/update_channel.py +1 -1
  2057. pyrogram/raw/types/update_channel_available_messages.py +1 -1
  2058. pyrogram/raw/types/update_channel_message_forwards.py +1 -1
  2059. pyrogram/raw/types/update_channel_message_views.py +1 -1
  2060. pyrogram/raw/types/update_channel_participant.py +1 -1
  2061. pyrogram/raw/types/update_channel_pinned_topic.py +1 -1
  2062. pyrogram/raw/types/update_channel_pinned_topics.py +1 -1
  2063. pyrogram/raw/types/update_channel_read_messages_contents.py +1 -1
  2064. pyrogram/raw/types/update_channel_too_long.py +1 -1
  2065. pyrogram/raw/types/update_channel_user_typing.py +1 -1
  2066. pyrogram/raw/types/update_channel_view_forum_as_messages.py +1 -1
  2067. pyrogram/raw/types/update_channel_web_page.py +1 -1
  2068. pyrogram/raw/types/update_chat.py +1 -1
  2069. pyrogram/raw/types/update_chat_default_banned_rights.py +1 -1
  2070. pyrogram/raw/types/update_chat_participant.py +1 -1
  2071. pyrogram/raw/types/update_chat_participant_add.py +1 -1
  2072. pyrogram/raw/types/update_chat_participant_admin.py +1 -1
  2073. pyrogram/raw/types/update_chat_participant_delete.py +1 -1
  2074. pyrogram/raw/types/update_chat_participants.py +1 -1
  2075. pyrogram/raw/types/update_chat_user_typing.py +1 -1
  2076. pyrogram/raw/types/update_config.py +1 -1
  2077. pyrogram/raw/types/update_contacts_reset.py +1 -1
  2078. pyrogram/raw/types/update_dc_options.py +1 -1
  2079. pyrogram/raw/types/update_delete_channel_messages.py +1 -1
  2080. pyrogram/raw/types/update_delete_messages.py +1 -1
  2081. pyrogram/raw/types/update_delete_quick_reply.py +1 -1
  2082. pyrogram/raw/types/update_delete_quick_reply_messages.py +1 -1
  2083. pyrogram/raw/types/update_delete_scheduled_messages.py +20 -8
  2084. pyrogram/raw/types/update_dialog_filter.py +1 -1
  2085. pyrogram/raw/types/update_dialog_filter_order.py +1 -1
  2086. pyrogram/raw/types/update_dialog_filters.py +1 -1
  2087. pyrogram/raw/types/update_dialog_pinned.py +1 -1
  2088. pyrogram/raw/types/update_dialog_unread_mark.py +1 -1
  2089. pyrogram/raw/types/update_draft_message.py +1 -1
  2090. pyrogram/raw/types/update_edit_channel_message.py +1 -1
  2091. pyrogram/raw/types/update_edit_message.py +1 -1
  2092. pyrogram/raw/types/update_encrypted_chat_typing.py +1 -1
  2093. pyrogram/raw/types/update_encrypted_messages_read.py +1 -1
  2094. pyrogram/raw/types/update_encryption.py +1 -1
  2095. pyrogram/raw/types/update_faved_stickers.py +1 -1
  2096. pyrogram/raw/types/update_folder_peers.py +1 -1
  2097. pyrogram/raw/types/update_geo_live_viewed.py +1 -1
  2098. pyrogram/raw/types/update_group_call.py +1 -1
  2099. pyrogram/raw/types/update_group_call_connection.py +1 -1
  2100. pyrogram/raw/types/update_group_call_participants.py +1 -1
  2101. pyrogram/raw/types/update_inline_bot_callback_query.py +1 -1
  2102. pyrogram/raw/types/update_lang_pack.py +1 -1
  2103. pyrogram/raw/types/update_lang_pack_too_long.py +1 -1
  2104. pyrogram/raw/types/update_login_token.py +1 -1
  2105. pyrogram/raw/types/update_message_extended_media.py +1 -1
  2106. pyrogram/raw/types/update_message_id.py +1 -1
  2107. pyrogram/raw/types/update_message_poll.py +1 -1
  2108. pyrogram/raw/types/update_message_poll_vote.py +1 -1
  2109. pyrogram/raw/types/update_message_reactions.py +1 -1
  2110. pyrogram/raw/types/update_move_sticker_set_to_top.py +1 -1
  2111. pyrogram/raw/types/update_new_authorization.py +1 -1
  2112. pyrogram/raw/types/update_new_channel_message.py +1 -1
  2113. pyrogram/raw/types/update_new_encrypted_message.py +1 -1
  2114. pyrogram/raw/types/update_new_message.py +1 -1
  2115. pyrogram/raw/types/update_new_quick_reply.py +1 -1
  2116. pyrogram/raw/types/update_new_scheduled_message.py +1 -1
  2117. pyrogram/raw/types/update_new_sticker_set.py +1 -1
  2118. pyrogram/raw/types/update_new_story_reaction.py +1 -1
  2119. pyrogram/raw/types/update_notify_settings.py +1 -1
  2120. pyrogram/raw/types/update_paid_reaction_privacy.py +72 -0
  2121. pyrogram/raw/types/update_peer_blocked.py +1 -1
  2122. pyrogram/raw/types/update_peer_history_ttl.py +1 -1
  2123. pyrogram/raw/types/update_peer_located.py +1 -1
  2124. pyrogram/raw/types/update_peer_settings.py +1 -1
  2125. pyrogram/raw/types/update_peer_wallpaper.py +1 -1
  2126. pyrogram/raw/types/update_pending_join_requests.py +1 -1
  2127. pyrogram/raw/types/update_phone_call.py +1 -1
  2128. pyrogram/raw/types/update_phone_call_signaling_data.py +1 -1
  2129. pyrogram/raw/types/update_pinned_channel_messages.py +1 -1
  2130. pyrogram/raw/types/update_pinned_dialogs.py +1 -1
  2131. pyrogram/raw/types/update_pinned_messages.py +1 -1
  2132. pyrogram/raw/types/update_pinned_saved_dialogs.py +1 -1
  2133. pyrogram/raw/types/update_privacy.py +1 -1
  2134. pyrogram/raw/types/update_pts_changed.py +1 -1
  2135. pyrogram/raw/types/update_quick_replies.py +1 -1
  2136. pyrogram/raw/types/update_quick_reply_message.py +1 -1
  2137. pyrogram/raw/types/update_read_channel_discussion_inbox.py +1 -1
  2138. pyrogram/raw/types/update_read_channel_discussion_outbox.py +1 -1
  2139. pyrogram/raw/types/update_read_channel_inbox.py +1 -1
  2140. pyrogram/raw/types/update_read_channel_outbox.py +1 -1
  2141. pyrogram/raw/types/update_read_featured_emoji_stickers.py +1 -1
  2142. pyrogram/raw/types/update_read_featured_stickers.py +1 -1
  2143. pyrogram/raw/types/update_read_history_inbox.py +1 -1
  2144. pyrogram/raw/types/update_read_history_outbox.py +1 -1
  2145. pyrogram/raw/types/update_read_messages_contents.py +1 -1
  2146. pyrogram/raw/types/update_read_stories.py +1 -1
  2147. pyrogram/raw/types/update_recent_emoji_statuses.py +1 -1
  2148. pyrogram/raw/types/update_recent_reactions.py +1 -1
  2149. pyrogram/raw/types/update_recent_stickers.py +1 -1
  2150. pyrogram/raw/types/update_saved_dialog_pinned.py +1 -1
  2151. pyrogram/raw/types/update_saved_gifs.py +1 -1
  2152. pyrogram/raw/types/update_saved_reaction_tags.py +1 -1
  2153. pyrogram/raw/types/update_saved_ringtones.py +1 -1
  2154. pyrogram/raw/types/update_sent_story_reaction.py +1 -1
  2155. pyrogram/raw/types/update_service_notification.py +1 -1
  2156. pyrogram/raw/types/update_short.py +4 -2
  2157. pyrogram/raw/types/update_short_chat_message.py +4 -2
  2158. pyrogram/raw/types/update_short_message.py +4 -2
  2159. pyrogram/raw/types/update_short_sent_message.py +4 -2
  2160. pyrogram/raw/types/update_sms_job.py +1 -1
  2161. pyrogram/raw/types/update_stars_balance.py +1 -1
  2162. pyrogram/raw/types/update_stars_revenue_status.py +1 -1
  2163. pyrogram/raw/types/update_sticker_sets.py +1 -1
  2164. pyrogram/raw/types/update_sticker_sets_order.py +1 -1
  2165. pyrogram/raw/types/update_stories_stealth_mode.py +1 -1
  2166. pyrogram/raw/types/update_story.py +1 -1
  2167. pyrogram/raw/types/update_story_id.py +1 -1
  2168. pyrogram/raw/types/update_theme.py +1 -1
  2169. pyrogram/raw/types/update_transcribed_audio.py +1 -1
  2170. pyrogram/raw/types/update_user.py +1 -1
  2171. pyrogram/raw/types/update_user_emoji_status.py +1 -1
  2172. pyrogram/raw/types/update_user_name.py +1 -1
  2173. pyrogram/raw/types/update_user_phone.py +1 -1
  2174. pyrogram/raw/types/update_user_status.py +1 -1
  2175. pyrogram/raw/types/update_user_typing.py +1 -1
  2176. pyrogram/raw/types/update_web_page.py +1 -1
  2177. pyrogram/raw/types/update_web_view_result_sent.py +1 -1
  2178. pyrogram/raw/types/updates/channel_difference.py +1 -1
  2179. pyrogram/raw/types/updates/channel_difference_empty.py +1 -1
  2180. pyrogram/raw/types/updates/channel_difference_too_long.py +1 -1
  2181. pyrogram/raw/types/updates/difference.py +1 -1
  2182. pyrogram/raw/types/updates/difference_empty.py +1 -1
  2183. pyrogram/raw/types/updates/difference_slice.py +1 -1
  2184. pyrogram/raw/types/updates/difference_too_long.py +1 -1
  2185. pyrogram/raw/types/updates/state.py +1 -1
  2186. pyrogram/raw/types/updates_combined.py +4 -2
  2187. pyrogram/raw/types/updates_t.py +4 -2
  2188. pyrogram/raw/types/updates_too_long.py +4 -2
  2189. pyrogram/raw/types/upload/cdn_file.py +1 -1
  2190. pyrogram/raw/types/upload/cdn_file_reupload_needed.py +1 -1
  2191. pyrogram/raw/types/upload/file.py +1 -1
  2192. pyrogram/raw/types/upload/file_cdn_redirect.py +1 -1
  2193. pyrogram/raw/types/upload/web_file.py +1 -1
  2194. pyrogram/raw/types/url_auth_result_accepted.py +1 -1
  2195. pyrogram/raw/types/url_auth_result_default.py +1 -1
  2196. pyrogram/raw/types/url_auth_result_request.py +1 -1
  2197. pyrogram/raw/types/user.py +1 -1
  2198. pyrogram/raw/types/user_empty.py +1 -1
  2199. pyrogram/raw/types/user_full.py +21 -6
  2200. pyrogram/raw/types/user_profile_photo.py +1 -1
  2201. pyrogram/raw/types/user_profile_photo_empty.py +1 -1
  2202. pyrogram/raw/types/user_star_gift.py +131 -0
  2203. pyrogram/raw/types/user_status_empty.py +1 -1
  2204. pyrogram/raw/types/user_status_last_month.py +1 -1
  2205. pyrogram/raw/types/user_status_last_week.py +1 -1
  2206. pyrogram/raw/types/user_status_offline.py +1 -1
  2207. pyrogram/raw/types/user_status_online.py +1 -1
  2208. pyrogram/raw/types/user_status_recently.py +1 -1
  2209. pyrogram/raw/types/username.py +1 -1
  2210. pyrogram/raw/types/users/user_full.py +1 -1
  2211. pyrogram/raw/types/video_size.py +1 -1
  2212. pyrogram/raw/types/video_size_emoji_markup.py +1 -1
  2213. pyrogram/raw/types/video_size_sticker_markup.py +1 -1
  2214. pyrogram/raw/types/wall_paper.py +1 -1
  2215. pyrogram/raw/types/wall_paper_no_file.py +1 -1
  2216. pyrogram/raw/types/wall_paper_settings.py +1 -1
  2217. pyrogram/raw/types/web_authorization.py +1 -1
  2218. pyrogram/raw/types/web_document.py +1 -1
  2219. pyrogram/raw/types/web_document_no_proxy.py +1 -1
  2220. pyrogram/raw/types/web_page.py +1 -1
  2221. pyrogram/raw/types/web_page_attribute_sticker_set.py +1 -1
  2222. pyrogram/raw/types/web_page_attribute_story.py +1 -1
  2223. pyrogram/raw/types/web_page_attribute_theme.py +1 -1
  2224. pyrogram/raw/types/web_page_empty.py +1 -1
  2225. pyrogram/raw/types/web_page_not_modified.py +1 -1
  2226. pyrogram/raw/types/web_page_pending.py +1 -1
  2227. pyrogram/raw/types/web_view_message_sent.py +1 -1
  2228. pyrogram/raw/types/web_view_result_url.py +1 -1
  2229. pyrogram/session/auth.py +18 -3
  2230. pyrogram/session/session.py +29 -20
  2231. pyrogram/storage/file_storage.py +6 -0
  2232. pyrogram/storage/sqlite_storage.py +23 -31
  2233. pyrogram/storage/storage.py +21 -5
  2234. pyrogram/types/__init__.py +0 -1
  2235. pyrogram/types/bots_and_keyboards/__init__.py +12 -0
  2236. pyrogram/types/bots_and_keyboards/callback_query.py +37 -10
  2237. pyrogram/types/bots_and_keyboards/chat_boost_updated.py +62 -0
  2238. pyrogram/types/bots_and_keyboards/inline_keyboard_button.py +33 -3
  2239. pyrogram/types/bots_and_keyboards/message_reaction_count_updated.py +89 -0
  2240. pyrogram/types/bots_and_keyboards/message_reaction_updated.py +125 -0
  2241. pyrogram/types/bots_and_keyboards/pre_checkout_query.py +1 -1
  2242. pyrogram/types/bots_and_keyboards/purchased_paid_media.py +50 -0
  2243. pyrogram/types/bots_and_keyboards/shipping_address.py +18 -0
  2244. pyrogram/types/bots_and_keyboards/shipping_option.py +73 -0
  2245. pyrogram/types/bots_and_keyboards/shipping_query.py +121 -0
  2246. pyrogram/types/inline_mode/chosen_inline_result.py +4 -17
  2247. pyrogram/types/input_media/input_media_audio.py +7 -1
  2248. pyrogram/types/input_media/input_media_document.py +7 -1
  2249. pyrogram/types/input_media/input_media_video.py +6 -0
  2250. pyrogram/types/messages_and_media/__init__.py +18 -2
  2251. pyrogram/types/messages_and_media/animation.py +49 -2
  2252. pyrogram/types/messages_and_media/business_message.py +1 -6
  2253. pyrogram/types/messages_and_media/chat_boost.py +108 -0
  2254. pyrogram/types/messages_and_media/contact_registered.py +29 -0
  2255. pyrogram/types/messages_and_media/forum_topic.py +3 -0
  2256. pyrogram/types/messages_and_media/gift_code.py +60 -21
  2257. pyrogram/types/messages_and_media/giveaway.py +7 -1
  2258. pyrogram/types/messages_and_media/giveaway_completed.py +95 -0
  2259. pyrogram/types/messages_and_media/giveaway_created.py +57 -0
  2260. pyrogram/types/messages_and_media/giveaway_winners.py +150 -0
  2261. pyrogram/types/messages_and_media/message.py +459 -128
  2262. pyrogram/types/messages_and_media/poll.py +53 -29
  2263. pyrogram/types/messages_and_media/reaction.py +12 -1
  2264. pyrogram/types/messages_and_media/refunded_payment.py +81 -0
  2265. pyrogram/types/messages_and_media/screenshot_taken.py +29 -0
  2266. pyrogram/types/messages_and_media/star_gift.py +267 -0
  2267. pyrogram/types/messages_and_media/story.py +34 -26
  2268. pyrogram/types/messages_and_media/successful_payment.py +1 -2
  2269. pyrogram/types/messages_and_media/video.py +8 -2
  2270. pyrogram/types/messages_and_media/write_access_allowed.py +57 -0
  2271. pyrogram/types/user_and_chats/__init__.py +4 -0
  2272. pyrogram/types/user_and_chats/chat.py +13 -6
  2273. pyrogram/types/user_and_chats/chat_member.py +8 -1
  2274. pyrogram/types/user_and_chats/chat_photo.py +13 -2
  2275. pyrogram/types/user_and_chats/phone_call_ended.py +63 -0
  2276. pyrogram/types/user_and_chats/phone_call_started.py +49 -0
  2277. pyrogram/types/user_and_chats/user.py +0 -22
  2278. pyrogram/utils.py +0 -15
  2279. WPyrogram-2.0.148.dist-info/RECORD +0 -3218
  2280. pyrogram/handlers/conversation_handler.py +0 -68
  2281. pyrogram/types/pyromod.py +0 -14
  2282. {WPyrogram-2.0.148.dist-info → WPyrogram-2.0.149.dist-info}/COPYING +0 -0
  2283. {WPyrogram-2.0.148.dist-info → WPyrogram-2.0.149.dist-info}/COPYING.lesser +0 -0
  2284. {WPyrogram-2.0.148.dist-info → WPyrogram-2.0.149.dist-info}/NOTICE +0 -0
  2285. {WPyrogram-2.0.148.dist-info → WPyrogram-2.0.149.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: WPyrogram
3
- Version: 2.0.148
3
+ Version: 2.0.149
4
4
  Summary: Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots - Woto's experimental fork
5
5
  Home-page: https://github.com/ALiwoto/WPyrogram
6
6
  Download-URL: https://github.com/ALiwoto/WPyrogram
@@ -38,8 +38,8 @@ Description-Content-Type: text/markdown
38
38
  License-File: COPYING
39
39
  License-File: COPYING.lesser
40
40
  License-File: NOTICE
41
- Requires-Dist: pyaes ==1.6.1
42
- Requires-Dist: pysocks ==1.7.1
41
+ Requires-Dist: pyaes==1.6.1
42
+ Requires-Dist: pysocks==1.7.1
43
43
 
44
44
  <p align="center">
45
45
  <a href="https://github.com/pyrogram/pyrogram">