indogram 2.2.26__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 (4198) hide show
  1. indogram/__init__.py +99 -0
  2. indogram/client.py +7 -0
  3. indogram/enums/__init__.py +4 -0
  4. indogram/errors/__init__.py +4 -0
  5. indogram/filters.py +6 -0
  6. indogram/handlers/__init__.py +4 -0
  7. indogram/py.typed +1 -0
  8. indogram/raw/__init__.py +4 -0
  9. indogram/session/__init__.py +4 -0
  10. indogram/sync.py +7 -0
  11. indogram/types/__init__.py +4 -0
  12. indogram/utils/__init__.py +4 -0
  13. indogram-2.2.26.dist-info/METADATA +205 -0
  14. indogram-2.2.26.dist-info/RECORD +4198 -0
  15. indogram-2.2.26.dist-info/WHEEL +4 -0
  16. indogram-2.2.26.dist-info/licenses/COPYING +674 -0
  17. indogram-2.2.26.dist-info/licenses/COPYING.lesser +165 -0
  18. indogram-2.2.26.dist-info/licenses/NOTICE +17 -0
  19. pyrogram/__init__.py +52 -0
  20. pyrogram/_typing.py +26 -0
  21. pyrogram/client.py +1716 -0
  22. pyrogram/connection/__init__.py +37 -0
  23. pyrogram/connection/connection.py +133 -0
  24. pyrogram/connection/proxy.py +539 -0
  25. pyrogram/connection/transport/__init__.py +37 -0
  26. pyrogram/connection/transport/tcp/__init__.py +35 -0
  27. pyrogram/connection/transport/tcp/faketls_records.py +122 -0
  28. pyrogram/connection/transport/tcp/tcp.py +580 -0
  29. pyrogram/connection/transport/tcp/tcp_abridged.py +74 -0
  30. pyrogram/connection/transport/tcp/tcp_abridged_o.py +109 -0
  31. pyrogram/connection/transport/tcp/tcp_full.py +77 -0
  32. pyrogram/connection/transport/tcp/tcp_intermediate.py +58 -0
  33. pyrogram/connection/transport/tcp/tcp_intermediate_o.py +99 -0
  34. pyrogram/connection/transport/tcp/tcp_intermediate_padded.py +86 -0
  35. pyrogram/connection/transport/tcp/web_proxy_carrier.py +922 -0
  36. pyrogram/crypto/__init__.py +17 -0
  37. pyrogram/crypto/aes.py +128 -0
  38. pyrogram/crypto/faketls.py +485 -0
  39. pyrogram/crypto/mtproto.py +101 -0
  40. pyrogram/crypto/prime.py +85 -0
  41. pyrogram/crypto/rsa.py +260 -0
  42. pyrogram/dispatcher.py +558 -0
  43. pyrogram/enums/__init__.py +109 -0
  44. pyrogram/enums/auto_name.py +27 -0
  45. pyrogram/enums/block_list.py +31 -0
  46. pyrogram/enums/business_schedule.py +34 -0
  47. pyrogram/enums/button_style.py +40 -0
  48. pyrogram/enums/chat_action.py +72 -0
  49. pyrogram/enums/chat_event_action.py +140 -0
  50. pyrogram/enums/chat_join_request_query_result.py +34 -0
  51. pyrogram/enums/chat_join_type.py +34 -0
  52. pyrogram/enums/chat_member_status.py +43 -0
  53. pyrogram/enums/chat_members_filter.py +42 -0
  54. pyrogram/enums/chat_photo_sticker_type.py +31 -0
  55. pyrogram/enums/chat_type.py +46 -0
  56. pyrogram/enums/client_platform.py +49 -0
  57. pyrogram/enums/folder_color.py +47 -0
  58. pyrogram/enums/gift_attribute_type.py +36 -0
  59. pyrogram/enums/gift_for_resale_order.py +34 -0
  60. pyrogram/enums/gift_purchase_offer_state.py +34 -0
  61. pyrogram/enums/gift_type.py +31 -0
  62. pyrogram/enums/mask_point_type.py +35 -0
  63. pyrogram/enums/media_area_type.py +46 -0
  64. pyrogram/enums/message_entity_type.py +87 -0
  65. pyrogram/enums/message_media_type.py +94 -0
  66. pyrogram/enums/message_origin_type.py +40 -0
  67. pyrogram/enums/message_service_type.py +244 -0
  68. pyrogram/enums/messages_filter.py +78 -0
  69. pyrogram/enums/next_code_type.py +39 -0
  70. pyrogram/enums/paid_reaction_privacy.py +33 -0
  71. pyrogram/enums/parse_mode.py +37 -0
  72. pyrogram/enums/payment_form_type.py +34 -0
  73. pyrogram/enums/phone_call_discard_reason.py +40 -0
  74. pyrogram/enums/phone_number_code_type.py +34 -0
  75. pyrogram/enums/poll_type.py +31 -0
  76. pyrogram/enums/privacy_key.py +66 -0
  77. pyrogram/enums/privacy_rule_type.py +61 -0
  78. pyrogram/enums/profile_tab.py +48 -0
  79. pyrogram/enums/proxy_scheme.py +40 -0
  80. pyrogram/enums/sent_code_type.py +57 -0
  81. pyrogram/enums/sticker_format.py +34 -0
  82. pyrogram/enums/sticker_type.py +34 -0
  83. pyrogram/enums/stories_privacy_rules.py +36 -0
  84. pyrogram/enums/suggested_post_refund_reason.py +31 -0
  85. pyrogram/enums/suggested_post_state.py +34 -0
  86. pyrogram/enums/top_chat_category.py +54 -0
  87. pyrogram/enums/upgraded_gift_origin.py +46 -0
  88. pyrogram/enums/user_status.py +43 -0
  89. pyrogram/errors/__init__.py +67 -0
  90. pyrogram/errors/exceptions/__init__.py +26 -0
  91. pyrogram/errors/exceptions/all.py +984 -0
  92. pyrogram/errors/exceptions/bad_request_400.py +5362 -0
  93. pyrogram/errors/exceptions/flood_420.py +169 -0
  94. pyrogram/errors/exceptions/forbidden_403.py +604 -0
  95. pyrogram/errors/exceptions/internal_server_error_500.py +471 -0
  96. pyrogram/errors/exceptions/not_acceptable_406.py +437 -0
  97. pyrogram/errors/exceptions/see_other_303.py +103 -0
  98. pyrogram/errors/exceptions/service_unavailable_503.py +61 -0
  99. pyrogram/errors/exceptions/unauthorized_401.py +91 -0
  100. pyrogram/errors/rpc_error.py +227 -0
  101. pyrogram/file_id.py +610 -0
  102. pyrogram/filters.py +1435 -0
  103. pyrogram/handlers/__init__.py +83 -0
  104. pyrogram/handlers/business_connection_handler.py +65 -0
  105. pyrogram/handlers/business_message_handler.py +65 -0
  106. pyrogram/handlers/callback_query_handler.py +60 -0
  107. pyrogram/handlers/chat_boost_handler.py +60 -0
  108. pyrogram/handlers/chat_join_request_handler.py +64 -0
  109. pyrogram/handlers/chat_member_updated_handler.py +64 -0
  110. pyrogram/handlers/chosen_inline_result_handler.py +65 -0
  111. pyrogram/handlers/connect_handler.py +55 -0
  112. pyrogram/handlers/deleted_business_messages_handler.py +73 -0
  113. pyrogram/handlers/deleted_messages_handler.py +72 -0
  114. pyrogram/handlers/disconnect_handler.py +55 -0
  115. pyrogram/handlers/edited_business_message_handler.py +65 -0
  116. pyrogram/handlers/edited_message_handler.py +60 -0
  117. pyrogram/handlers/error_handler.py +107 -0
  118. pyrogram/handlers/guest_message_handler.py +60 -0
  119. pyrogram/handlers/handler.py +60 -0
  120. pyrogram/handlers/inline_query_handler.py +60 -0
  121. pyrogram/handlers/managed_bot_updated_handler.py +62 -0
  122. pyrogram/handlers/message_handler.py +60 -0
  123. pyrogram/handlers/message_reaction_count_handler.py +68 -0
  124. pyrogram/handlers/message_reaction_handler.py +66 -0
  125. pyrogram/handlers/poll_handler.py +61 -0
  126. pyrogram/handlers/pre_checkout_query_handler.py +64 -0
  127. pyrogram/handlers/purchased_paid_media_handler.py +64 -0
  128. pyrogram/handlers/raw_update_handler.py +90 -0
  129. pyrogram/handlers/shipping_query_handler.py +61 -0
  130. pyrogram/handlers/start_handler.py +51 -0
  131. pyrogram/handlers/stop_handler.py +51 -0
  132. pyrogram/handlers/stopped_message_generation_handler.py +65 -0
  133. pyrogram/handlers/story_handler.py +60 -0
  134. pyrogram/handlers/user_status_handler.py +58 -0
  135. pyrogram/methods/__init__.py +61 -0
  136. pyrogram/methods/account/__init__.py +43 -0
  137. pyrogram/methods/account/add_profile_audio.py +164 -0
  138. pyrogram/methods/account/get_account_ttl.py +44 -0
  139. pyrogram/methods/account/get_global_privacy_settings.py +41 -0
  140. pyrogram/methods/account/get_privacy.py +52 -0
  141. pyrogram/methods/account/remove_profile_audio.py +51 -0
  142. pyrogram/methods/account/set_account_ttl.py +52 -0
  143. pyrogram/methods/account/set_global_privacy_settings.py +121 -0
  144. pyrogram/methods/account/set_inactive_session_ttl.py +52 -0
  145. pyrogram/methods/account/set_privacy.py +77 -0
  146. pyrogram/methods/account/set_profile_audio_position.py +63 -0
  147. pyrogram/methods/advanced/__init__.py +26 -0
  148. pyrogram/methods/advanced/invoke.py +123 -0
  149. pyrogram/methods/advanced/recover_gaps.py +182 -0
  150. pyrogram/methods/advanced/resolve_peer.py +142 -0
  151. pyrogram/methods/advanced/save_file.py +274 -0
  152. pyrogram/methods/auth/__init__.py +61 -0
  153. pyrogram/methods/auth/accept_terms_of_service.py +39 -0
  154. pyrogram/methods/auth/change_phone_number.py +59 -0
  155. pyrogram/methods/auth/check_password.py +58 -0
  156. pyrogram/methods/auth/connect.py +59 -0
  157. pyrogram/methods/auth/disconnect.py +46 -0
  158. pyrogram/methods/auth/get_active_sessions.py +37 -0
  159. pyrogram/methods/auth/get_password_hint.py +41 -0
  160. pyrogram/methods/auth/initialize.py +54 -0
  161. pyrogram/methods/auth/log_out.py +53 -0
  162. pyrogram/methods/auth/recover_password.py +52 -0
  163. pyrogram/methods/auth/resend_phone_number_code.py +65 -0
  164. pyrogram/methods/auth/reset_session.py +41 -0
  165. pyrogram/methods/auth/reset_sessions.py +39 -0
  166. pyrogram/methods/auth/send_phone_number_code.py +188 -0
  167. pyrogram/methods/auth/send_recovery_code.py +43 -0
  168. pyrogram/methods/auth/sign_in.py +77 -0
  169. pyrogram/methods/auth/sign_in_bot.py +77 -0
  170. pyrogram/methods/auth/sign_up.py +75 -0
  171. pyrogram/methods/auth/terminate.py +71 -0
  172. pyrogram/methods/bots/__init__.py +109 -0
  173. pyrogram/methods/bots/answer_callback_query.py +83 -0
  174. pyrogram/methods/bots/answer_chat_join_request_query.py +49 -0
  175. pyrogram/methods/bots/answer_guest_query.py +63 -0
  176. pyrogram/methods/bots/answer_inline_query.py +117 -0
  177. pyrogram/methods/bots/answer_pre_checkout_query.py +64 -0
  178. pyrogram/methods/bots/answer_shipping_query.py +80 -0
  179. pyrogram/methods/bots/answer_web_app_query.py +52 -0
  180. pyrogram/methods/bots/check_bot_username.py +41 -0
  181. pyrogram/methods/bots/create_bot.py +64 -0
  182. pyrogram/methods/bots/create_invoice_link.py +169 -0
  183. pyrogram/methods/bots/delete_bot_commands.py +65 -0
  184. pyrogram/methods/bots/delete_ephemeral_message.py +56 -0
  185. pyrogram/methods/bots/edit_ephemeral_message_caption.py +94 -0
  186. pyrogram/methods/bots/edit_ephemeral_message_media.py +117 -0
  187. pyrogram/methods/bots/edit_ephemeral_message_reply_markup.py +76 -0
  188. pyrogram/methods/bots/edit_ephemeral_message_text.py +118 -0
  189. pyrogram/methods/bots/edit_user_star_subscription.py +60 -0
  190. pyrogram/methods/bots/get_bot_commands.py +68 -0
  191. pyrogram/methods/bots/get_bot_default_privileges.py +55 -0
  192. pyrogram/methods/bots/get_bot_info_description.py +63 -0
  193. pyrogram/methods/bots/get_bot_info_short_description.py +63 -0
  194. pyrogram/methods/bots/get_bot_name.py +62 -0
  195. pyrogram/methods/bots/get_chat_menu_button.py +59 -0
  196. pyrogram/methods/bots/get_game_high_scores.py +69 -0
  197. pyrogram/methods/bots/get_inline_bot_results.py +90 -0
  198. pyrogram/methods/bots/get_managed_bot_access_settings.py +47 -0
  199. pyrogram/methods/bots/get_managed_bot_token.py +45 -0
  200. pyrogram/methods/bots/get_owned_bots.py +44 -0
  201. pyrogram/methods/bots/refund_star_payment.py +51 -0
  202. pyrogram/methods/bots/replace_managed_bot_token.py +45 -0
  203. pyrogram/methods/bots/request_callback_answer.py +89 -0
  204. pyrogram/methods/bots/send_chat_join_request_web_app.py +51 -0
  205. pyrogram/methods/bots/send_game.py +136 -0
  206. pyrogram/methods/bots/send_inline_bot_result.py +173 -0
  207. pyrogram/methods/bots/send_invoice.py +261 -0
  208. pyrogram/methods/bots/set_bot_commands.py +74 -0
  209. pyrogram/methods/bots/set_bot_default_privileges.py +87 -0
  210. pyrogram/methods/bots/set_bot_info_description.py +66 -0
  211. pyrogram/methods/bots/set_bot_info_short_description.py +66 -0
  212. pyrogram/methods/bots/set_bot_name.py +66 -0
  213. pyrogram/methods/bots/set_chat_menu_button.py +57 -0
  214. pyrogram/methods/bots/set_game_score.py +95 -0
  215. pyrogram/methods/bots/set_managed_bot_access_settings.py +62 -0
  216. pyrogram/methods/business/__init__.py +33 -0
  217. pyrogram/methods/business/delete_business_messages.py +70 -0
  218. pyrogram/methods/business/get_business_account_gifts.py +157 -0
  219. pyrogram/methods/business/get_business_account_star_balance.py +60 -0
  220. pyrogram/methods/business/get_business_connection.py +52 -0
  221. pyrogram/methods/business/transfer_business_account_stars.py +74 -0
  222. pyrogram/methods/chats/__init__.py +200 -0
  223. pyrogram/methods/chats/add_chat_members.py +93 -0
  224. pyrogram/methods/chats/archive_chats.py +64 -0
  225. pyrogram/methods/chats/ban_chat_member.py +130 -0
  226. pyrogram/methods/chats/close_forum_topic.py +77 -0
  227. pyrogram/methods/chats/create_channel.py +52 -0
  228. pyrogram/methods/chats/create_folder.py +173 -0
  229. pyrogram/methods/chats/create_folder_invite_link.py +68 -0
  230. pyrogram/methods/chats/create_forum_topic.py +77 -0
  231. pyrogram/methods/chats/create_group.py +63 -0
  232. pyrogram/methods/chats/create_supergroup.py +78 -0
  233. pyrogram/methods/chats/delete_all_message_reactions.py +74 -0
  234. pyrogram/methods/chats/delete_channel.py +47 -0
  235. pyrogram/methods/chats/delete_chat_photo.py +65 -0
  236. pyrogram/methods/chats/delete_folder.py +46 -0
  237. pyrogram/methods/chats/delete_folder_invite_link.py +72 -0
  238. pyrogram/methods/chats/delete_forum_topic.py +55 -0
  239. pyrogram/methods/chats/delete_message_reaction.py +81 -0
  240. pyrogram/methods/chats/delete_supergroup.py +47 -0
  241. pyrogram/methods/chats/delete_user_history.py +55 -0
  242. pyrogram/methods/chats/edit_folder.py +180 -0
  243. pyrogram/methods/chats/edit_folder_invite_link.py +91 -0
  244. pyrogram/methods/chats/edit_forum_topic.py +105 -0
  245. pyrogram/methods/chats/get_chat.py +100 -0
  246. pyrogram/methods/chats/get_chat_event_log.py +113 -0
  247. pyrogram/methods/chats/get_chat_member.py +81 -0
  248. pyrogram/methods/chats/get_chat_members.py +156 -0
  249. pyrogram/methods/chats/get_chat_members_count.py +59 -0
  250. pyrogram/methods/chats/get_chat_online_count.py +48 -0
  251. pyrogram/methods/chats/get_chat_settings.py +55 -0
  252. pyrogram/methods/chats/get_chats_for_folder_invite_link.py +82 -0
  253. pyrogram/methods/chats/get_dialogs.py +141 -0
  254. pyrogram/methods/chats/get_dialogs_count.py +72 -0
  255. pyrogram/methods/chats/get_direct_messages_topics.py +118 -0
  256. pyrogram/methods/chats/get_direct_messages_topics_by_id.py +99 -0
  257. pyrogram/methods/chats/get_folder_invite_links.py +52 -0
  258. pyrogram/methods/chats/get_folders.py +74 -0
  259. pyrogram/methods/chats/get_forum_topics.py +106 -0
  260. pyrogram/methods/chats/get_forum_topics_by_id.py +93 -0
  261. pyrogram/methods/chats/get_personal_channels.py +43 -0
  262. pyrogram/methods/chats/get_send_as_chats.py +66 -0
  263. pyrogram/methods/chats/get_similar_channels.py +57 -0
  264. pyrogram/methods/chats/get_suitable_discussion_chats.py +43 -0
  265. pyrogram/methods/chats/get_top_chats.py +114 -0
  266. pyrogram/methods/chats/hide_general_forum_topic.py +50 -0
  267. pyrogram/methods/chats/join_chat.py +63 -0
  268. pyrogram/methods/chats/join_folder.py +79 -0
  269. pyrogram/methods/chats/leave_chat.py +65 -0
  270. pyrogram/methods/chats/leave_folder.py +78 -0
  271. pyrogram/methods/chats/mark_chat_unread.py +46 -0
  272. pyrogram/methods/chats/pin_chat_message.py +84 -0
  273. pyrogram/methods/chats/pin_forum_topic.py +54 -0
  274. pyrogram/methods/chats/process_chat_has_protected_content_disable_request.py +57 -0
  275. pyrogram/methods/chats/promote_chat_member.py +106 -0
  276. pyrogram/methods/chats/reopen_forum_topic.py +77 -0
  277. pyrogram/methods/chats/reorder_folders.py +55 -0
  278. pyrogram/methods/chats/restrict_chat_member.py +90 -0
  279. pyrogram/methods/chats/set_administrator_title.py +83 -0
  280. pyrogram/methods/chats/set_chat_accent_color.py +75 -0
  281. pyrogram/methods/chats/set_chat_description.py +59 -0
  282. pyrogram/methods/chats/set_chat_direct_messages_group.py +67 -0
  283. pyrogram/methods/chats/set_chat_discussion_group.py +93 -0
  284. pyrogram/methods/chats/set_chat_member_tag.py +68 -0
  285. pyrogram/methods/chats/set_chat_permissions.py +72 -0
  286. pyrogram/methods/chats/set_chat_photo.py +126 -0
  287. pyrogram/methods/chats/set_chat_profile_accent_color.py +76 -0
  288. pyrogram/methods/chats/set_chat_protected_content.py +51 -0
  289. pyrogram/methods/chats/set_chat_title.py +68 -0
  290. pyrogram/methods/chats/set_chat_ttl.py +66 -0
  291. pyrogram/methods/chats/set_chat_username.py +63 -0
  292. pyrogram/methods/chats/set_main_profile_tab.py +66 -0
  293. pyrogram/methods/chats/set_send_as_chat.py +55 -0
  294. pyrogram/methods/chats/set_slow_mode.py +58 -0
  295. pyrogram/methods/chats/set_upgraded_gift_colors.py +44 -0
  296. pyrogram/methods/chats/toggle_folder_tags.py +48 -0
  297. pyrogram/methods/chats/toggle_forum_topics.py +70 -0
  298. pyrogram/methods/chats/toggle_join_to_send.py +61 -0
  299. pyrogram/methods/chats/transfer_chat_ownership.py +84 -0
  300. pyrogram/methods/chats/unarchive_chats.py +64 -0
  301. pyrogram/methods/chats/unban_chat_member.py +60 -0
  302. pyrogram/methods/chats/unhide_general_forum_topic.py +50 -0
  303. pyrogram/methods/chats/unpin_all_chat_messages.py +53 -0
  304. pyrogram/methods/chats/unpin_all_forum_topic_messages.py +82 -0
  305. pyrogram/methods/chats/unpin_chat_message.py +64 -0
  306. pyrogram/methods/chats/unpin_forum_topic.py +54 -0
  307. pyrogram/methods/chats/update_chat_notifications.py +96 -0
  308. pyrogram/methods/contacts/__init__.py +39 -0
  309. pyrogram/methods/contacts/add_contact.py +85 -0
  310. pyrogram/methods/contacts/delete_contacts.py +73 -0
  311. pyrogram/methods/contacts/get_blocked_message_senders.py +95 -0
  312. pyrogram/methods/contacts/get_contacts.py +46 -0
  313. pyrogram/methods/contacts/get_contacts_count.py +41 -0
  314. pyrogram/methods/contacts/import_contacts.py +55 -0
  315. pyrogram/methods/contacts/search_contacts.py +54 -0
  316. pyrogram/methods/contacts/set_contact_note.py +62 -0
  317. pyrogram/methods/decorators/__init__.py +83 -0
  318. pyrogram/methods/decorators/handler_type.py +27 -0
  319. pyrogram/methods/decorators/on_business_connection.py +73 -0
  320. pyrogram/methods/decorators/on_business_message.py +73 -0
  321. pyrogram/methods/decorators/on_callback_query.py +73 -0
  322. pyrogram/methods/decorators/on_chat_boost.py +74 -0
  323. pyrogram/methods/decorators/on_chat_join_request.py +72 -0
  324. pyrogram/methods/decorators/on_chat_member_updated.py +72 -0
  325. pyrogram/methods/decorators/on_chosen_inline_result.py +73 -0
  326. pyrogram/methods/decorators/on_connect.py +52 -0
  327. pyrogram/methods/decorators/on_deleted_business_messages.py +75 -0
  328. pyrogram/methods/decorators/on_deleted_messages.py +73 -0
  329. pyrogram/methods/decorators/on_disconnect.py +52 -0
  330. pyrogram/methods/decorators/on_edited_business_message.py +75 -0
  331. pyrogram/methods/decorators/on_edited_message.py +73 -0
  332. pyrogram/methods/decorators/on_error.py +85 -0
  333. pyrogram/methods/decorators/on_guest_message.py +73 -0
  334. pyrogram/methods/decorators/on_inline_query.py +70 -0
  335. pyrogram/methods/decorators/on_managed_bot.py +73 -0
  336. pyrogram/methods/decorators/on_message.py +70 -0
  337. pyrogram/methods/decorators/on_message_reaction.py +72 -0
  338. pyrogram/methods/decorators/on_message_reaction_count.py +74 -0
  339. pyrogram/methods/decorators/on_poll.py +70 -0
  340. pyrogram/methods/decorators/on_pre_checkout_query.py +73 -0
  341. pyrogram/methods/decorators/on_purchased_paid_media.py +72 -0
  342. pyrogram/methods/decorators/on_raw_update.py +70 -0
  343. pyrogram/methods/decorators/on_shipping_query.py +74 -0
  344. pyrogram/methods/decorators/on_start.py +52 -0
  345. pyrogram/methods/decorators/on_stop.py +52 -0
  346. pyrogram/methods/decorators/on_stopped_message_generation.py +75 -0
  347. pyrogram/methods/decorators/on_story.py +70 -0
  348. pyrogram/methods/decorators/on_user_status.py +68 -0
  349. pyrogram/methods/decorators/unbound_arguments.py +94 -0
  350. pyrogram/methods/folders/__init__.py +23 -0
  351. pyrogram/methods/folders/check_chat_folder_invite_link.py +54 -0
  352. pyrogram/methods/invite_links/__init__.py +58 -0
  353. pyrogram/methods/invite_links/approve_all_chat_join_requests.py +51 -0
  354. pyrogram/methods/invite_links/approve_chat_join_request.py +57 -0
  355. pyrogram/methods/invite_links/create_chat_invite_link.py +92 -0
  356. pyrogram/methods/invite_links/decline_all_chat_join_requests.py +51 -0
  357. pyrogram/methods/invite_links/decline_chat_join_request.py +57 -0
  358. pyrogram/methods/invite_links/delete_chat_admin_invite_links.py +54 -0
  359. pyrogram/methods/invite_links/delete_chat_invite_link.py +52 -0
  360. pyrogram/methods/invite_links/edit_chat_invite_link.py +97 -0
  361. pyrogram/methods/invite_links/export_chat_invite_link.py +64 -0
  362. pyrogram/methods/invite_links/get_chat_admin_invite_links.py +109 -0
  363. pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py +62 -0
  364. pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py +53 -0
  365. pyrogram/methods/invite_links/get_chat_invite_link.py +56 -0
  366. pyrogram/methods/invite_links/get_chat_invite_link_joiners.py +88 -0
  367. pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py +54 -0
  368. pyrogram/methods/invite_links/get_chat_join_requests.py +89 -0
  369. pyrogram/methods/invite_links/revoke_chat_invite_link.py +67 -0
  370. pyrogram/methods/messages/__init__.py +199 -0
  371. pyrogram/methods/messages/add_checklist_tasks.py +73 -0
  372. pyrogram/methods/messages/add_poll_option.py +72 -0
  373. pyrogram/methods/messages/add_to_gifs.py +59 -0
  374. pyrogram/methods/messages/approve_suggested_post.py +72 -0
  375. pyrogram/methods/messages/compose_text_with_ai.py +80 -0
  376. pyrogram/methods/messages/copy_media_group.py +243 -0
  377. pyrogram/methods/messages/copy_message.py +174 -0
  378. pyrogram/methods/messages/decline_suggested_post.py +61 -0
  379. pyrogram/methods/messages/delete_chat_history.py +108 -0
  380. pyrogram/methods/messages/delete_direct_messages_chat_topic_history.py +78 -0
  381. pyrogram/methods/messages/delete_messages.py +106 -0
  382. pyrogram/methods/messages/delete_poll_option.py +67 -0
  383. pyrogram/methods/messages/download_media.py +439 -0
  384. pyrogram/methods/messages/edit_inline_caption.py +68 -0
  385. pyrogram/methods/messages/edit_inline_media.py +256 -0
  386. pyrogram/methods/messages/edit_inline_reply_markup.py +70 -0
  387. pyrogram/methods/messages/edit_inline_text.py +134 -0
  388. pyrogram/methods/messages/edit_message_caption.py +104 -0
  389. pyrogram/methods/messages/edit_message_checklist.py +103 -0
  390. pyrogram/methods/messages/edit_message_media.py +141 -0
  391. pyrogram/methods/messages/edit_message_reply_markup.py +86 -0
  392. pyrogram/methods/messages/edit_message_text.py +172 -0
  393. pyrogram/methods/messages/fix_text_with_ai.py +58 -0
  394. pyrogram/methods/messages/forward_media_group.py +128 -0
  395. pyrogram/methods/messages/forward_messages.py +182 -0
  396. pyrogram/methods/messages/get_available_effects.py +56 -0
  397. pyrogram/methods/messages/get_chat_history.py +182 -0
  398. pyrogram/methods/messages/get_chat_history_count.py +81 -0
  399. pyrogram/methods/messages/get_direct_messages_chat_topic_history.py +158 -0
  400. pyrogram/methods/messages/get_discussion_message.py +64 -0
  401. pyrogram/methods/messages/get_discussion_replies.py +91 -0
  402. pyrogram/methods/messages/get_discussion_replies_count.py +62 -0
  403. pyrogram/methods/messages/get_main_web_app.py +70 -0
  404. pyrogram/methods/messages/get_media_group.py +71 -0
  405. pyrogram/methods/messages/get_messages.py +246 -0
  406. pyrogram/methods/messages/get_scheduled_messages.py +63 -0
  407. pyrogram/methods/messages/get_user_personal_chat_messages.py +97 -0
  408. pyrogram/methods/messages/get_web_app_link_url.py +81 -0
  409. pyrogram/methods/messages/get_web_app_url.py +70 -0
  410. pyrogram/methods/messages/mark_checklist_tasks_as_done.py +74 -0
  411. pyrogram/methods/messages/open_web_app.py +91 -0
  412. pyrogram/methods/messages/read_chat_history.py +63 -0
  413. pyrogram/methods/messages/read_mentions.py +61 -0
  414. pyrogram/methods/messages/read_reactions.py +61 -0
  415. pyrogram/methods/messages/retract_vote.py +60 -0
  416. pyrogram/methods/messages/search_global.py +137 -0
  417. pyrogram/methods/messages/search_global_count.py +79 -0
  418. pyrogram/methods/messages/search_messages.py +194 -0
  419. pyrogram/methods/messages/search_messages_count.py +98 -0
  420. pyrogram/methods/messages/search_posts.py +101 -0
  421. pyrogram/methods/messages/search_posts_count.py +56 -0
  422. pyrogram/methods/messages/send_animation.py +428 -0
  423. pyrogram/methods/messages/send_audio.py +385 -0
  424. pyrogram/methods/messages/send_cached_media.py +231 -0
  425. pyrogram/methods/messages/send_chat_action.py +105 -0
  426. pyrogram/methods/messages/send_checklist.py +153 -0
  427. pyrogram/methods/messages/send_contact.py +245 -0
  428. pyrogram/methods/messages/send_dice.py +222 -0
  429. pyrogram/methods/messages/send_document.py +364 -0
  430. pyrogram/methods/messages/send_live_photo.py +287 -0
  431. pyrogram/methods/messages/send_location.py +263 -0
  432. pyrogram/methods/messages/send_media_group.py +555 -0
  433. pyrogram/methods/messages/send_message.py +367 -0
  434. pyrogram/methods/messages/send_message_draft.py +117 -0
  435. pyrogram/methods/messages/send_paid_media.py +400 -0
  436. pyrogram/methods/messages/send_paid_reaction.py +83 -0
  437. pyrogram/methods/messages/send_photo.py +364 -0
  438. pyrogram/methods/messages/send_poll.py +323 -0
  439. pyrogram/methods/messages/send_reaction.py +117 -0
  440. pyrogram/methods/messages/send_rich_message.py +179 -0
  441. pyrogram/methods/messages/send_rich_message_draft.py +108 -0
  442. pyrogram/methods/messages/send_screenshot_notification.py +61 -0
  443. pyrogram/methods/messages/send_sticker.py +341 -0
  444. pyrogram/methods/messages/send_venue.py +260 -0
  445. pyrogram/methods/messages/send_video.py +499 -0
  446. pyrogram/methods/messages/send_video_note.py +368 -0
  447. pyrogram/methods/messages/send_voice.py +364 -0
  448. pyrogram/methods/messages/send_web_page.py +215 -0
  449. pyrogram/methods/messages/set_direct_messages_chat_topic_is_marked_as_unread.py +62 -0
  450. pyrogram/methods/messages/start_bot.py +71 -0
  451. pyrogram/methods/messages/stop_poll.py +81 -0
  452. pyrogram/methods/messages/stream_media.py +119 -0
  453. pyrogram/methods/messages/summarize_message.py +81 -0
  454. pyrogram/methods/messages/translate_message_text.py +77 -0
  455. pyrogram/methods/messages/translate_text.py +71 -0
  456. pyrogram/methods/messages/view_messages.py +59 -0
  457. pyrogram/methods/messages/vote_poll.py +68 -0
  458. pyrogram/methods/password/__init__.py +25 -0
  459. pyrogram/methods/password/change_cloud_password.py +79 -0
  460. pyrogram/methods/password/enable_cloud_password.py +85 -0
  461. pyrogram/methods/password/remove_cloud_password.py +61 -0
  462. pyrogram/methods/payments/__init__.py +111 -0
  463. pyrogram/methods/payments/add_collection_gifts.py +68 -0
  464. pyrogram/methods/payments/apply_gift_code.py +66 -0
  465. pyrogram/methods/payments/buy_gift_upgrade.py +64 -0
  466. pyrogram/methods/payments/check_gift_code.py +69 -0
  467. pyrogram/methods/payments/convert_gift_to_stars.py +61 -0
  468. pyrogram/methods/payments/craft_gift.py +65 -0
  469. pyrogram/methods/payments/create_gift_collection.py +63 -0
  470. pyrogram/methods/payments/delete_gift_collection.py +55 -0
  471. pyrogram/methods/payments/drop_gift_original_details.py +69 -0
  472. pyrogram/methods/payments/edit_star_subscription.py +49 -0
  473. pyrogram/methods/payments/get_available_gifts.py +51 -0
  474. pyrogram/methods/payments/get_chat_gifts.py +157 -0
  475. pyrogram/methods/payments/get_chat_gifts_count.py +57 -0
  476. pyrogram/methods/payments/get_gift_auction_state.py +66 -0
  477. pyrogram/methods/payments/get_gift_collections.py +49 -0
  478. pyrogram/methods/payments/get_gift_upgrade_preview.py +48 -0
  479. pyrogram/methods/payments/get_gift_upgrade_variants.py +42 -0
  480. pyrogram/methods/payments/get_gifts_for_crafting.py +87 -0
  481. pyrogram/methods/payments/get_payment_form.py +65 -0
  482. pyrogram/methods/payments/get_stars_balance.py +60 -0
  483. pyrogram/methods/payments/get_ton_balance.py +49 -0
  484. pyrogram/methods/payments/get_upgraded_gift.py +61 -0
  485. pyrogram/methods/payments/get_upgraded_gift_value_info.py +62 -0
  486. pyrogram/methods/payments/gift_premium_with_stars.py +94 -0
  487. pyrogram/methods/payments/hide_gift.py +60 -0
  488. pyrogram/methods/payments/increase_gift_auction_bid.py +59 -0
  489. pyrogram/methods/payments/place_gift_auction_bid.py +103 -0
  490. pyrogram/methods/payments/process_gift_purchase_offer.py +49 -0
  491. pyrogram/methods/payments/remove_collection_gifts.py +65 -0
  492. pyrogram/methods/payments/reorder_collection_gifts.py +64 -0
  493. pyrogram/methods/payments/reorder_gift_collections.py +55 -0
  494. pyrogram/methods/payments/reuse_star_subscription.py +43 -0
  495. pyrogram/methods/payments/search_gifts_for_resale.py +122 -0
  496. pyrogram/methods/payments/send_gift.py +101 -0
  497. pyrogram/methods/payments/send_gift_purchase_offer.py +77 -0
  498. pyrogram/methods/payments/send_payment_form.py +98 -0
  499. pyrogram/methods/payments/send_resold_gift.py +114 -0
  500. pyrogram/methods/payments/set_gift_collection_name.py +58 -0
  501. pyrogram/methods/payments/set_gift_resale_price.py +76 -0
  502. pyrogram/methods/payments/set_pinned_gifts.py +70 -0
  503. pyrogram/methods/payments/show_gift.py +60 -0
  504. pyrogram/methods/payments/suggest_birthday.py +55 -0
  505. pyrogram/methods/payments/transfer_gift.py +98 -0
  506. pyrogram/methods/payments/upgrade_gift.py +108 -0
  507. pyrogram/methods/phone/__init__.py +23 -0
  508. pyrogram/methods/phone/get_call_members.py +102 -0
  509. pyrogram/methods/premium/__init__.py +25 -0
  510. pyrogram/methods/premium/apply_boost.py +56 -0
  511. pyrogram/methods/premium/get_boosts.py +58 -0
  512. pyrogram/methods/premium/get_boosts_status.py +42 -0
  513. pyrogram/methods/stickers/__init__.py +79 -0
  514. pyrogram/methods/stickers/add_favorite_sticker.py +56 -0
  515. pyrogram/methods/stickers/add_recent_sticker.py +62 -0
  516. pyrogram/methods/stickers/add_sticker_to_set.py +74 -0
  517. pyrogram/methods/stickers/change_sticker_set.py +66 -0
  518. pyrogram/methods/stickers/clear_recent_stickers.py +45 -0
  519. pyrogram/methods/stickers/create_new_sticker_set.py +99 -0
  520. pyrogram/methods/stickers/delete_sticker_from_set.py +51 -0
  521. pyrogram/methods/stickers/delete_sticker_set.py +51 -0
  522. pyrogram/methods/stickers/get_custom_emoji_stickers.py +54 -0
  523. pyrogram/methods/stickers/get_favorite_stickers.py +46 -0
  524. pyrogram/methods/stickers/get_owned_sticker_sets.py +73 -0
  525. pyrogram/methods/stickers/get_recent_stickers.py +56 -0
  526. pyrogram/methods/stickers/get_sticker_set.py +52 -0
  527. pyrogram/methods/stickers/get_suggested_sticker_set_name.py +46 -0
  528. pyrogram/methods/stickers/remove_favorite_sticker.py +49 -0
  529. pyrogram/methods/stickers/remove_recent_sticker.py +58 -0
  530. pyrogram/methods/stickers/reorder_installed_sticker_sets.py +54 -0
  531. pyrogram/methods/stickers/replace_sticker_in_set.py +61 -0
  532. pyrogram/methods/stickers/search_sticker_sets.py +54 -0
  533. pyrogram/methods/stickers/search_stickers.py +108 -0
  534. pyrogram/methods/stickers/set_custom_emoji_sticker_set_thumbnail.py +54 -0
  535. pyrogram/methods/stickers/set_sticker_emoji_list.py +54 -0
  536. pyrogram/methods/stickers/set_sticker_keywords.py +54 -0
  537. pyrogram/methods/stickers/set_sticker_mask_position.py +55 -0
  538. pyrogram/methods/stickers/set_sticker_position_in_set.py +54 -0
  539. pyrogram/methods/stickers/set_sticker_set_thumbnail.py +72 -0
  540. pyrogram/methods/stickers/set_sticker_set_title.py +55 -0
  541. pyrogram/methods/stickers/upload_sticker_file.py +73 -0
  542. pyrogram/methods/stories/__init__.py +65 -0
  543. pyrogram/methods/stories/can_post_stories.py +53 -0
  544. pyrogram/methods/stories/copy_story.py +121 -0
  545. pyrogram/methods/stories/delete_stories.py +67 -0
  546. pyrogram/methods/stories/edit_story_caption.py +82 -0
  547. pyrogram/methods/stories/edit_story_media.py +196 -0
  548. pyrogram/methods/stories/edit_story_privacy.py +129 -0
  549. pyrogram/methods/stories/enable_stealth_mode.py +60 -0
  550. pyrogram/methods/stories/forward_story.py +136 -0
  551. pyrogram/methods/stories/get_all_stories.py +75 -0
  552. pyrogram/methods/stories/get_archived_stories.py +86 -0
  553. pyrogram/methods/stories/get_chat_stories.py +65 -0
  554. pyrogram/methods/stories/get_pinned_stories.py +95 -0
  555. pyrogram/methods/stories/get_stories.py +114 -0
  556. pyrogram/methods/stories/get_story_views.py +121 -0
  557. pyrogram/methods/stories/hide_chat_stories.py +55 -0
  558. pyrogram/methods/stories/pin_chat_stories.py +65 -0
  559. pyrogram/methods/stories/read_chat_stories.py +63 -0
  560. pyrogram/methods/stories/send_story.py +305 -0
  561. pyrogram/methods/stories/show_chat_stories.py +55 -0
  562. pyrogram/methods/stories/unpin_chat_stories.py +65 -0
  563. pyrogram/methods/stories/view_stories.py +58 -0
  564. pyrogram/methods/users/__init__.py +61 -0
  565. pyrogram/methods/users/block_user.py +47 -0
  566. pyrogram/methods/users/check_username.py +55 -0
  567. pyrogram/methods/users/delete_profile_photos.py +56 -0
  568. pyrogram/methods/users/get_chat_audios.py +101 -0
  569. pyrogram/methods/users/get_chat_audios_count.py +53 -0
  570. pyrogram/methods/users/get_chat_photos.py +198 -0
  571. pyrogram/methods/users/get_chat_photos_count.py +66 -0
  572. pyrogram/methods/users/get_common_chats.py +64 -0
  573. pyrogram/methods/users/get_default_emoji_statuses.py +45 -0
  574. pyrogram/methods/users/get_me.py +46 -0
  575. pyrogram/methods/users/get_users.py +84 -0
  576. pyrogram/methods/users/set_emoji_status.py +88 -0
  577. pyrogram/methods/users/set_personal_channel.py +58 -0
  578. pyrogram/methods/users/set_profile_photo.py +167 -0
  579. pyrogram/methods/users/set_username.py +50 -0
  580. pyrogram/methods/users/unblock_user.py +47 -0
  581. pyrogram/methods/users/update_birthday.py +63 -0
  582. pyrogram/methods/users/update_profile.py +72 -0
  583. pyrogram/methods/users/update_status.py +49 -0
  584. pyrogram/methods/utilities/__init__.py +32 -0
  585. pyrogram/methods/utilities/add_handler.py +75 -0
  586. pyrogram/methods/utilities/compose.py +79 -0
  587. pyrogram/methods/utilities/export_session_string.py +43 -0
  588. pyrogram/methods/utilities/idle.py +96 -0
  589. pyrogram/methods/utilities/remove_handler.py +71 -0
  590. pyrogram/methods/utilities/restart.py +82 -0
  591. pyrogram/methods/utilities/run.py +76 -0
  592. pyrogram/methods/utilities/start.py +115 -0
  593. pyrogram/methods/utilities/stop.py +80 -0
  594. pyrogram/methods/utilities/stop_transmission.py +43 -0
  595. pyrogram/mime_types.txt +786 -0
  596. pyrogram/parser/__init__.py +21 -0
  597. pyrogram/parser/html.py +299 -0
  598. pyrogram/parser/markdown.py +366 -0
  599. pyrogram/parser/parser.py +61 -0
  600. pyrogram/parser/utils.py +44 -0
  601. pyrogram/py.typed +0 -0
  602. pyrogram/qrlogin.py +110 -0
  603. pyrogram/raw/__init__.py +28 -0
  604. pyrogram/raw/all.py +2552 -0
  605. pyrogram/raw/base/__init__.py +439 -0
  606. pyrogram/raw/base/access_point_rule.py +56 -0
  607. pyrogram/raw/base/account/__init__.py +53 -0
  608. pyrogram/raw/base/account/authorization_form.py +66 -0
  609. pyrogram/raw/base/account/authorizations.py +66 -0
  610. pyrogram/raw/base/account/auto_download_settings.py +66 -0
  611. pyrogram/raw/base/account/auto_save_settings.py +66 -0
  612. pyrogram/raw/base/account/business_chat_links.py +66 -0
  613. pyrogram/raw/base/account/chat_themes.py +67 -0
  614. pyrogram/raw/base/account/connected_bots.py +66 -0
  615. pyrogram/raw/base/account/content_settings.py +66 -0
  616. pyrogram/raw/base/account/email_verified.py +67 -0
  617. pyrogram/raw/base/account/emoji_statuses.py +70 -0
  618. pyrogram/raw/base/account/paid_messages_revenue.py +66 -0
  619. pyrogram/raw/base/account/passkey_registration_options.py +66 -0
  620. pyrogram/raw/base/account/passkeys.py +66 -0
  621. pyrogram/raw/base/account/password.py +66 -0
  622. pyrogram/raw/base/account/password_input_settings.py +56 -0
  623. pyrogram/raw/base/account/password_settings.py +66 -0
  624. pyrogram/raw/base/account/privacy_rules.py +67 -0
  625. pyrogram/raw/base/account/reset_password_result.py +68 -0
  626. pyrogram/raw/base/account/resolved_business_chat_links.py +66 -0
  627. pyrogram/raw/base/account/saved_music_ids.py +67 -0
  628. pyrogram/raw/base/account/saved_ringtone.py +67 -0
  629. pyrogram/raw/base/account/saved_ringtones.py +67 -0
  630. pyrogram/raw/base/account/sent_email_code.py +66 -0
  631. pyrogram/raw/base/account/takeout.py +66 -0
  632. pyrogram/raw/base/account/themes.py +68 -0
  633. pyrogram/raw/base/account/tmp_password.py +66 -0
  634. pyrogram/raw/base/account/wall_papers.py +67 -0
  635. pyrogram/raw/base/account/web_authorizations.py +66 -0
  636. pyrogram/raw/base/account/web_browser_settings.py +69 -0
  637. pyrogram/raw/base/account_days_ttl.py +66 -0
  638. pyrogram/raw/base/ai_compose_tone.py +68 -0
  639. pyrogram/raw/base/ai_compose_tone_example.py +66 -0
  640. pyrogram/raw/base/aicompose/__init__.py +25 -0
  641. pyrogram/raw/base/aicompose/tones.py +68 -0
  642. pyrogram/raw/base/attach_menu_bot.py +56 -0
  643. pyrogram/raw/base/attach_menu_bot_icon.py +56 -0
  644. pyrogram/raw/base/attach_menu_bot_icon_color.py +56 -0
  645. pyrogram/raw/base/attach_menu_bots.py +67 -0
  646. pyrogram/raw/base/attach_menu_bots_bot.py +66 -0
  647. pyrogram/raw/base/attach_menu_peer_type.py +60 -0
  648. pyrogram/raw/base/auction_bid_level.py +56 -0
  649. pyrogram/raw/base/auth/__init__.py +34 -0
  650. pyrogram/raw/base/auth/authorization.py +76 -0
  651. pyrogram/raw/base/auth/code_type.py +60 -0
  652. pyrogram/raw/base/auth/exported_authorization.py +66 -0
  653. pyrogram/raw/base/auth/firebase_pnv_intent.py +66 -0
  654. pyrogram/raw/base/auth/logged_out.py +66 -0
  655. pyrogram/raw/base/auth/login_token.py +69 -0
  656. pyrogram/raw/base/auth/passkey_login_options.py +66 -0
  657. pyrogram/raw/base/auth/password_recovery.py +66 -0
  658. pyrogram/raw/base/auth/sent_code.py +74 -0
  659. pyrogram/raw/base/auth/sent_code_type.py +66 -0
  660. pyrogram/raw/base/authorization.py +66 -0
  661. pyrogram/raw/base/auto_download_settings.py +56 -0
  662. pyrogram/raw/base/auto_save_exception.py +56 -0
  663. pyrogram/raw/base/auto_save_settings.py +56 -0
  664. pyrogram/raw/base/available_effect.py +56 -0
  665. pyrogram/raw/base/available_reaction.py +56 -0
  666. pyrogram/raw/base/bad_msg_notification.py +57 -0
  667. pyrogram/raw/base/bank_card_open_url.py +56 -0
  668. pyrogram/raw/base/base_theme.py +60 -0
  669. pyrogram/raw/base/bind_auth_key_inner.py +56 -0
  670. pyrogram/raw/base/birthday.py +56 -0
  671. pyrogram/raw/base/boost.py +56 -0
  672. pyrogram/raw/base/bot_app.py +57 -0
  673. pyrogram/raw/base/bot_app_settings.py +56 -0
  674. pyrogram/raw/base/bot_business_connection.py +56 -0
  675. pyrogram/raw/base/bot_command.py +66 -0
  676. pyrogram/raw/base/bot_command_scope.py +62 -0
  677. pyrogram/raw/base/bot_info.py +56 -0
  678. pyrogram/raw/base/bot_inline_message.py +63 -0
  679. pyrogram/raw/base/bot_inline_result.py +57 -0
  680. pyrogram/raw/base/bot_menu_button.py +68 -0
  681. pyrogram/raw/base/bot_preview_media.py +68 -0
  682. pyrogram/raw/base/bot_verification.py +56 -0
  683. pyrogram/raw/base/bot_verifier_settings.py +56 -0
  684. pyrogram/raw/base/bots/__init__.py +30 -0
  685. pyrogram/raw/base/bots/access_settings.py +66 -0
  686. pyrogram/raw/base/bots/bot_info.py +66 -0
  687. pyrogram/raw/base/bots/exported_bot_token.py +66 -0
  688. pyrogram/raw/base/bots/popular_app_bots.py +66 -0
  689. pyrogram/raw/base/bots/preview_info.py +66 -0
  690. pyrogram/raw/base/bots/requested_button.py +66 -0
  691. pyrogram/raw/base/business_away_message.py +56 -0
  692. pyrogram/raw/base/business_away_message_schedule.py +58 -0
  693. pyrogram/raw/base/business_bot_recipients.py +56 -0
  694. pyrogram/raw/base/business_bot_rights.py +56 -0
  695. pyrogram/raw/base/business_chat_link.py +67 -0
  696. pyrogram/raw/base/business_greeting_message.py +56 -0
  697. pyrogram/raw/base/business_intro.py +56 -0
  698. pyrogram/raw/base/business_location.py +56 -0
  699. pyrogram/raw/base/business_recipients.py +56 -0
  700. pyrogram/raw/base/business_weekly_open.py +56 -0
  701. pyrogram/raw/base/business_work_hours.py +56 -0
  702. pyrogram/raw/base/button_type.py +62 -0
  703. pyrogram/raw/base/cdn_config.py +66 -0
  704. pyrogram/raw/base/cdn_public_key.py +56 -0
  705. pyrogram/raw/base/channel_admin_log_event.py +56 -0
  706. pyrogram/raw/base/channel_admin_log_event_action.py +107 -0
  707. pyrogram/raw/base/channel_admin_log_events_filter.py +56 -0
  708. pyrogram/raw/base/channel_location.py +57 -0
  709. pyrogram/raw/base/channel_messages_filter.py +57 -0
  710. pyrogram/raw/base/channel_participant.py +61 -0
  711. pyrogram/raw/base/channel_participants_filter.py +63 -0
  712. pyrogram/raw/base/channels/__init__.py +29 -0
  713. pyrogram/raw/base/channels/admin_log_results.py +66 -0
  714. pyrogram/raw/base/channels/channel_participant.py +66 -0
  715. pyrogram/raw/base/channels/channel_participants.py +67 -0
  716. pyrogram/raw/base/channels/send_as_peers.py +66 -0
  717. pyrogram/raw/base/channels/sponsored_message_report_result.py +68 -0
  718. pyrogram/raw/base/chat.py +62 -0
  719. pyrogram/raw/base/chat_admin_rights.py +56 -0
  720. pyrogram/raw/base/chat_admin_with_invites.py +56 -0
  721. pyrogram/raw/base/chat_banned_rights.py +56 -0
  722. pyrogram/raw/base/chat_full.py +58 -0
  723. pyrogram/raw/base/chat_invite.py +68 -0
  724. pyrogram/raw/base/chat_invite_importer.py +56 -0
  725. pyrogram/raw/base/chat_onlines.py +66 -0
  726. pyrogram/raw/base/chat_participant.py +58 -0
  727. pyrogram/raw/base/chat_participants.py +57 -0
  728. pyrogram/raw/base/chat_photo.py +57 -0
  729. pyrogram/raw/base/chat_reactions.py +58 -0
  730. pyrogram/raw/base/chat_theme.py +57 -0
  731. pyrogram/raw/base/chatlists/__init__.py +28 -0
  732. pyrogram/raw/base/chatlists/chatlist_invite.py +67 -0
  733. pyrogram/raw/base/chatlists/chatlist_updates.py +66 -0
  734. pyrogram/raw/base/chatlists/exported_chatlist_invite.py +66 -0
  735. pyrogram/raw/base/chatlists/exported_invites.py +66 -0
  736. pyrogram/raw/base/client_dh_inner_data.py +56 -0
  737. pyrogram/raw/base/code_settings.py +56 -0
  738. pyrogram/raw/base/communities/__init__.py +26 -0
  739. pyrogram/raw/base/communities/participant_joined_chats.py +66 -0
  740. pyrogram/raw/base/communities/peer_link_requests.py +66 -0
  741. pyrogram/raw/base/community_peer.py +56 -0
  742. pyrogram/raw/base/community_peer_request.py +56 -0
  743. pyrogram/raw/base/config.py +66 -0
  744. pyrogram/raw/base/connected_bot.py +56 -0
  745. pyrogram/raw/base/connected_bot_star_ref.py +56 -0
  746. pyrogram/raw/base/contact.py +56 -0
  747. pyrogram/raw/base/contact_birthday.py +56 -0
  748. pyrogram/raw/base/contact_status.py +66 -0
  749. pyrogram/raw/base/contacts/__init__.py +32 -0
  750. pyrogram/raw/base/contacts/blocked.py +67 -0
  751. pyrogram/raw/base/contacts/contact_birthdays.py +66 -0
  752. pyrogram/raw/base/contacts/contacts.py +67 -0
  753. pyrogram/raw/base/contacts/found.py +66 -0
  754. pyrogram/raw/base/contacts/imported_contacts.py +66 -0
  755. pyrogram/raw/base/contacts/resolved_peer.py +67 -0
  756. pyrogram/raw/base/contacts/sponsored_peers.py +67 -0
  757. pyrogram/raw/base/contacts/top_peers.py +68 -0
  758. pyrogram/raw/base/data_json.py +68 -0
  759. pyrogram/raw/base/dc_option.py +56 -0
  760. pyrogram/raw/base/default_history_ttl.py +66 -0
  761. pyrogram/raw/base/destroy_auth_key_res.py +68 -0
  762. pyrogram/raw/base/destroy_session_res.py +67 -0
  763. pyrogram/raw/base/dialog.py +58 -0
  764. pyrogram/raw/base/dialog_filter.py +58 -0
  765. pyrogram/raw/base/dialog_filter_suggested.py +66 -0
  766. pyrogram/raw/base/dialog_peer.py +68 -0
  767. pyrogram/raw/base/disallowed_gifts_settings.py +56 -0
  768. pyrogram/raw/base/document.py +70 -0
  769. pyrogram/raw/base/document_attribute.py +63 -0
  770. pyrogram/raw/base/draft_message.py +57 -0
  771. pyrogram/raw/base/email_verification.py +58 -0
  772. pyrogram/raw/base/email_verify_purpose.py +58 -0
  773. pyrogram/raw/base/emoji_group.py +58 -0
  774. pyrogram/raw/base/emoji_keyword.py +57 -0
  775. pyrogram/raw/base/emoji_keywords_difference.py +67 -0
  776. pyrogram/raw/base/emoji_language.py +66 -0
  777. pyrogram/raw/base/emoji_list.py +71 -0
  778. pyrogram/raw/base/emoji_status.py +59 -0
  779. pyrogram/raw/base/emoji_url.py +66 -0
  780. pyrogram/raw/base/encrypted_chat.py +71 -0
  781. pyrogram/raw/base/encrypted_file.py +67 -0
  782. pyrogram/raw/base/encrypted_message.py +57 -0
  783. pyrogram/raw/base/ephemeral/__init__.py +25 -0
  784. pyrogram/raw/base/ephemeral/welcome_messages.py +67 -0
  785. pyrogram/raw/base/ephemeral_message.py +56 -0
  786. pyrogram/raw/base/exported_chat_invite.py +67 -0
  787. pyrogram/raw/base/exported_chatlist_invite.py +66 -0
  788. pyrogram/raw/base/exported_contact_token.py +66 -0
  789. pyrogram/raw/base/exported_message_link.py +66 -0
  790. pyrogram/raw/base/exported_story_link.py +66 -0
  791. pyrogram/raw/base/fact_check.py +66 -0
  792. pyrogram/raw/base/file_hash.py +68 -0
  793. pyrogram/raw/base/folder.py +56 -0
  794. pyrogram/raw/base/folder_peer.py +56 -0
  795. pyrogram/raw/base/forum_topic.py +57 -0
  796. pyrogram/raw/base/found_story.py +56 -0
  797. pyrogram/raw/base/fragment/__init__.py +25 -0
  798. pyrogram/raw/base/fragment/collectible_info.py +66 -0
  799. pyrogram/raw/base/game.py +56 -0
  800. pyrogram/raw/base/geo_point.py +57 -0
  801. pyrogram/raw/base/geo_point_address.py +56 -0
  802. pyrogram/raw/base/global_privacy_settings.py +67 -0
  803. pyrogram/raw/base/group_call.py +57 -0
  804. pyrogram/raw/base/group_call_donor.py +56 -0
  805. pyrogram/raw/base/group_call_message.py +56 -0
  806. pyrogram/raw/base/group_call_participant.py +56 -0
  807. pyrogram/raw/base/group_call_participant_video.py +56 -0
  808. pyrogram/raw/base/group_call_participant_video_source_group.py +56 -0
  809. pyrogram/raw/base/group_call_stream_channel.py +56 -0
  810. pyrogram/raw/base/help/__init__.py +45 -0
  811. pyrogram/raw/base/help/app_config.py +67 -0
  812. pyrogram/raw/base/help/app_update.py +67 -0
  813. pyrogram/raw/base/help/config_simple.py +56 -0
  814. pyrogram/raw/base/help/countries_list.py +67 -0
  815. pyrogram/raw/base/help/country.py +56 -0
  816. pyrogram/raw/base/help/country_code.py +56 -0
  817. pyrogram/raw/base/help/deep_link_info.py +67 -0
  818. pyrogram/raw/base/help/invite_text.py +66 -0
  819. pyrogram/raw/base/help/passport_config.py +67 -0
  820. pyrogram/raw/base/help/peer_color_option.py +56 -0
  821. pyrogram/raw/base/help/peer_color_set.py +57 -0
  822. pyrogram/raw/base/help/peer_colors.py +68 -0
  823. pyrogram/raw/base/help/premium_promo.py +66 -0
  824. pyrogram/raw/base/help/promo_data.py +67 -0
  825. pyrogram/raw/base/help/recent_me_urls.py +66 -0
  826. pyrogram/raw/base/help/support.py +66 -0
  827. pyrogram/raw/base/help/support_name.py +66 -0
  828. pyrogram/raw/base/help/terms_of_service.py +56 -0
  829. pyrogram/raw/base/help/terms_of_service_update.py +67 -0
  830. pyrogram/raw/base/help/timezones_list.py +67 -0
  831. pyrogram/raw/base/help/user_info.py +68 -0
  832. pyrogram/raw/base/high_score.py +56 -0
  833. pyrogram/raw/base/http_wait.py +56 -0
  834. pyrogram/raw/base/imported_contact.py +56 -0
  835. pyrogram/raw/base/inline_bot_switch_pm.py +56 -0
  836. pyrogram/raw/base/inline_bot_web_view.py +56 -0
  837. pyrogram/raw/base/inline_button_type.py +67 -0
  838. pyrogram/raw/base/inline_query_peer_type.py +61 -0
  839. pyrogram/raw/base/input_ai_compose_tone.py +59 -0
  840. pyrogram/raw/base/input_app_event.py +56 -0
  841. pyrogram/raw/base/input_bot_app.py +57 -0
  842. pyrogram/raw/base/input_bot_inline_message.py +64 -0
  843. pyrogram/raw/base/input_bot_inline_message_id.py +67 -0
  844. pyrogram/raw/base/input_bot_inline_result.py +59 -0
  845. pyrogram/raw/base/input_business_away_message.py +56 -0
  846. pyrogram/raw/base/input_business_bot_recipients.py +56 -0
  847. pyrogram/raw/base/input_business_chat_link.py +56 -0
  848. pyrogram/raw/base/input_business_greeting_message.py +56 -0
  849. pyrogram/raw/base/input_business_intro.py +56 -0
  850. pyrogram/raw/base/input_business_recipients.py +56 -0
  851. pyrogram/raw/base/input_channel.py +58 -0
  852. pyrogram/raw/base/input_chat_photo.py +58 -0
  853. pyrogram/raw/base/input_chat_theme.py +58 -0
  854. pyrogram/raw/base/input_chatlist.py +56 -0
  855. pyrogram/raw/base/input_check_password_srp.py +57 -0
  856. pyrogram/raw/base/input_client_proxy.py +56 -0
  857. pyrogram/raw/base/input_collectible.py +57 -0
  858. pyrogram/raw/base/input_contact.py +56 -0
  859. pyrogram/raw/base/input_dialog_peer.py +58 -0
  860. pyrogram/raw/base/input_document.py +57 -0
  861. pyrogram/raw/base/input_encrypted_chat.py +56 -0
  862. pyrogram/raw/base/input_encrypted_file.py +59 -0
  863. pyrogram/raw/base/input_file.py +58 -0
  864. pyrogram/raw/base/input_file_location.py +65 -0
  865. pyrogram/raw/base/input_folder_peer.py +56 -0
  866. pyrogram/raw/base/input_game.py +57 -0
  867. pyrogram/raw/base/input_geo_point.py +57 -0
  868. pyrogram/raw/base/input_group_call.py +58 -0
  869. pyrogram/raw/base/input_invoice.py +70 -0
  870. pyrogram/raw/base/input_media.py +75 -0
  871. pyrogram/raw/base/input_message.py +59 -0
  872. pyrogram/raw/base/input_message_read_metric.py +56 -0
  873. pyrogram/raw/base/input_notify_peer.py +61 -0
  874. pyrogram/raw/base/input_passkey_credential.py +57 -0
  875. pyrogram/raw/base/input_passkey_response.py +57 -0
  876. pyrogram/raw/base/input_payment_credentials.py +59 -0
  877. pyrogram/raw/base/input_peer.py +62 -0
  878. pyrogram/raw/base/input_peer_notify_settings.py +56 -0
  879. pyrogram/raw/base/input_phone_call.py +56 -0
  880. pyrogram/raw/base/input_photo.py +57 -0
  881. pyrogram/raw/base/input_privacy_key.py +69 -0
  882. pyrogram/raw/base/input_privacy_rule.py +67 -0
  883. pyrogram/raw/base/input_quick_reply_shortcut.py +57 -0
  884. pyrogram/raw/base/input_reply_to.py +59 -0
  885. pyrogram/raw/base/input_rich_file.py +57 -0
  886. pyrogram/raw/base/input_rich_message.py +58 -0
  887. pyrogram/raw/base/input_saved_star_gift.py +58 -0
  888. pyrogram/raw/base/input_secure_file.py +57 -0
  889. pyrogram/raw/base/input_secure_value.py +56 -0
  890. pyrogram/raw/base/input_single_media.py +56 -0
  891. pyrogram/raw/base/input_star_gift_auction.py +57 -0
  892. pyrogram/raw/base/input_stars_transaction.py +56 -0
  893. pyrogram/raw/base/input_sticker_set.py +67 -0
  894. pyrogram/raw/base/input_sticker_set_item.py +56 -0
  895. pyrogram/raw/base/input_stickered_media.py +57 -0
  896. pyrogram/raw/base/input_store_payment_purpose.py +63 -0
  897. pyrogram/raw/base/input_theme.py +57 -0
  898. pyrogram/raw/base/input_theme_settings.py +56 -0
  899. pyrogram/raw/base/input_user.py +59 -0
  900. pyrogram/raw/base/input_wall_paper.py +58 -0
  901. pyrogram/raw/base/input_web_document.py +56 -0
  902. pyrogram/raw/base/input_web_file_location.py +58 -0
  903. pyrogram/raw/base/invoice.py +56 -0
  904. pyrogram/raw/base/ip_port.py +57 -0
  905. pyrogram/raw/base/join_chat_bot_result.py +59 -0
  906. pyrogram/raw/base/json_object_value.py +56 -0
  907. pyrogram/raw/base/json_value.py +61 -0
  908. pyrogram/raw/base/keyboard_button.py +66 -0
  909. pyrogram/raw/base/keyboard_button_row.py +56 -0
  910. pyrogram/raw/base/keyboard_button_style.py +56 -0
  911. pyrogram/raw/base/keyboard_inline_button.py +56 -0
  912. pyrogram/raw/base/keyboard_inline_button_row.py +56 -0
  913. pyrogram/raw/base/labeled_price.py +56 -0
  914. pyrogram/raw/base/lang_pack_difference.py +67 -0
  915. pyrogram/raw/base/lang_pack_language.py +67 -0
  916. pyrogram/raw/base/lang_pack_string.py +68 -0
  917. pyrogram/raw/base/mask_coords.py +56 -0
  918. pyrogram/raw/base/media_area.py +64 -0
  919. pyrogram/raw/base/media_area_coordinates.py +56 -0
  920. pyrogram/raw/base/message.py +58 -0
  921. pyrogram/raw/base/message_action.py +124 -0
  922. pyrogram/raw/base/message_entity.py +80 -0
  923. pyrogram/raw/base/message_extended_media.py +57 -0
  924. pyrogram/raw/base/message_fwd_header.py +56 -0
  925. pyrogram/raw/base/message_media.py +85 -0
  926. pyrogram/raw/base/message_peer_reaction.py +56 -0
  927. pyrogram/raw/base/message_peer_vote.py +58 -0
  928. pyrogram/raw/base/message_range.py +66 -0
  929. pyrogram/raw/base/message_reactions.py +56 -0
  930. pyrogram/raw/base/message_reactor.py +56 -0
  931. pyrogram/raw/base/message_replies.py +56 -0
  932. pyrogram/raw/base/message_reply_header.py +57 -0
  933. pyrogram/raw/base/message_report_option.py +56 -0
  934. pyrogram/raw/base/message_views.py +56 -0
  935. pyrogram/raw/base/messages/__init__.py +90 -0
  936. pyrogram/raw/base/messages/affected_found_messages.py +66 -0
  937. pyrogram/raw/base/messages/affected_history.py +73 -0
  938. pyrogram/raw/base/messages/affected_messages.py +69 -0
  939. pyrogram/raw/base/messages/all_stickers.py +69 -0
  940. pyrogram/raw/base/messages/archived_stickers.py +66 -0
  941. pyrogram/raw/base/messages/available_effects.py +67 -0
  942. pyrogram/raw/base/messages/available_reactions.py +67 -0
  943. pyrogram/raw/base/messages/bot_app.py +66 -0
  944. pyrogram/raw/base/messages/bot_callback_answer.py +67 -0
  945. pyrogram/raw/base/messages/bot_prepared_inline_message.py +66 -0
  946. pyrogram/raw/base/messages/bot_results.py +66 -0
  947. pyrogram/raw/base/messages/chat_admins_with_invites.py +66 -0
  948. pyrogram/raw/base/messages/chat_full.py +67 -0
  949. pyrogram/raw/base/messages/chat_invite_importers.py +66 -0
  950. pyrogram/raw/base/messages/chat_invite_join_result.py +68 -0
  951. pyrogram/raw/base/messages/chats.py +75 -0
  952. pyrogram/raw/base/messages/checked_history_import_peer.py +66 -0
  953. pyrogram/raw/base/messages/composed_message_with_ai.py +66 -0
  954. pyrogram/raw/base/messages/composed_rich_message_with_ai.py +66 -0
  955. pyrogram/raw/base/messages/dh_config.py +67 -0
  956. pyrogram/raw/base/messages/dialog_filters.py +66 -0
  957. pyrogram/raw/base/messages/dialogs.py +68 -0
  958. pyrogram/raw/base/messages/discussion_message.py +66 -0
  959. pyrogram/raw/base/messages/emoji_game_info.py +67 -0
  960. pyrogram/raw/base/messages/emoji_game_outcome.py +56 -0
  961. pyrogram/raw/base/messages/emoji_groups.py +70 -0
  962. pyrogram/raw/base/messages/exported_chat_invite.py +68 -0
  963. pyrogram/raw/base/messages/exported_chat_invites.py +66 -0
  964. pyrogram/raw/base/messages/faved_stickers.py +67 -0
  965. pyrogram/raw/base/messages/featured_stickers.py +69 -0
  966. pyrogram/raw/base/messages/forum_topics.py +67 -0
  967. pyrogram/raw/base/messages/found_sticker_sets.py +68 -0
  968. pyrogram/raw/base/messages/found_stickers.py +67 -0
  969. pyrogram/raw/base/messages/high_scores.py +67 -0
  970. pyrogram/raw/base/messages/history_import.py +66 -0
  971. pyrogram/raw/base/messages/history_import_parsed.py +66 -0
  972. pyrogram/raw/base/messages/inactive_chats.py +66 -0
  973. pyrogram/raw/base/messages/invited_users.py +68 -0
  974. pyrogram/raw/base/messages/message_edit_data.py +66 -0
  975. pyrogram/raw/base/messages/message_reactions_list.py +66 -0
  976. pyrogram/raw/base/messages/message_views.py +66 -0
  977. pyrogram/raw/base/messages/messages.py +86 -0
  978. pyrogram/raw/base/messages/my_stickers.py +66 -0
  979. pyrogram/raw/base/messages/peer_dialogs.py +67 -0
  980. pyrogram/raw/base/messages/peer_settings.py +66 -0
  981. pyrogram/raw/base/messages/prepared_inline_message.py +66 -0
  982. pyrogram/raw/base/messages/quick_replies.py +67 -0
  983. pyrogram/raw/base/messages/reactions.py +69 -0
  984. pyrogram/raw/base/messages/recent_stickers.py +67 -0
  985. pyrogram/raw/base/messages/saved_dialogs.py +70 -0
  986. pyrogram/raw/base/messages/saved_gifs.py +67 -0
  987. pyrogram/raw/base/messages/saved_reaction_tags.py +67 -0
  988. pyrogram/raw/base/messages/search_counter.py +66 -0
  989. pyrogram/raw/base/messages/search_results_calendar.py +66 -0
  990. pyrogram/raw/base/messages/search_results_positions.py +66 -0
  991. pyrogram/raw/base/messages/sent_encrypted_message.py +69 -0
  992. pyrogram/raw/base/messages/sponsored_messages.py +67 -0
  993. pyrogram/raw/base/messages/sticker_set.py +75 -0
  994. pyrogram/raw/base/messages/sticker_set_install_result.py +67 -0
  995. pyrogram/raw/base/messages/stickers.py +67 -0
  996. pyrogram/raw/base/messages/transcribed_audio.py +66 -0
  997. pyrogram/raw/base/messages/translated_rich_message.py +66 -0
  998. pyrogram/raw/base/messages/translated_text.py +66 -0
  999. pyrogram/raw/base/messages/votes_list.py +66 -0
  1000. pyrogram/raw/base/messages/web_page.py +66 -0
  1001. pyrogram/raw/base/messages/web_page_preview.py +66 -0
  1002. pyrogram/raw/base/messages_filter.py +73 -0
  1003. pyrogram/raw/base/missing_invitee.py +56 -0
  1004. pyrogram/raw/base/msg_detailed_info.py +57 -0
  1005. pyrogram/raw/base/msg_resend_req.py +57 -0
  1006. pyrogram/raw/base/msgs_ack.py +56 -0
  1007. pyrogram/raw/base/msgs_all_info.py +56 -0
  1008. pyrogram/raw/base/msgs_state_info.py +56 -0
  1009. pyrogram/raw/base/msgs_state_req.py +56 -0
  1010. pyrogram/raw/base/my_boost.py +56 -0
  1011. pyrogram/raw/base/nearest_dc.py +66 -0
  1012. pyrogram/raw/base/new_session.py +56 -0
  1013. pyrogram/raw/base/notification_sound.py +59 -0
  1014. pyrogram/raw/base/notify_peer.py +61 -0
  1015. pyrogram/raw/base/outbox_read_date.py +66 -0
  1016. pyrogram/raw/base/page.py +56 -0
  1017. pyrogram/raw/base/page_block.py +96 -0
  1018. pyrogram/raw/base/page_button.py +56 -0
  1019. pyrogram/raw/base/page_caption.py +56 -0
  1020. pyrogram/raw/base/page_list_item.py +57 -0
  1021. pyrogram/raw/base/page_list_ordered_item.py +57 -0
  1022. pyrogram/raw/base/page_related_article.py +56 -0
  1023. pyrogram/raw/base/page_table_cell.py +56 -0
  1024. pyrogram/raw/base/page_table_row.py +56 -0
  1025. pyrogram/raw/base/paid_reaction_privacy.py +58 -0
  1026. pyrogram/raw/base/passkey.py +66 -0
  1027. pyrogram/raw/base/password_kdf_algo.py +57 -0
  1028. pyrogram/raw/base/payment_charge.py +56 -0
  1029. pyrogram/raw/base/payment_form_method.py +56 -0
  1030. pyrogram/raw/base/payment_requested_info.py +56 -0
  1031. pyrogram/raw/base/payment_saved_credentials.py +56 -0
  1032. pyrogram/raw/base/payments/__init__.py +52 -0
  1033. pyrogram/raw/base/payments/bank_card_data.py +66 -0
  1034. pyrogram/raw/base/payments/check_can_send_gift_result.py +67 -0
  1035. pyrogram/raw/base/payments/checked_gift_code.py +66 -0
  1036. pyrogram/raw/base/payments/connected_star_ref_bots.py +69 -0
  1037. pyrogram/raw/base/payments/exported_invoice.py +66 -0
  1038. pyrogram/raw/base/payments/giveaway_info.py +67 -0
  1039. pyrogram/raw/base/payments/payment_form.py +68 -0
  1040. pyrogram/raw/base/payments/payment_receipt.py +67 -0
  1041. pyrogram/raw/base/payments/payment_result.py +68 -0
  1042. pyrogram/raw/base/payments/resale_star_gifts.py +66 -0
  1043. pyrogram/raw/base/payments/saved_info.py +66 -0
  1044. pyrogram/raw/base/payments/saved_star_gifts.py +68 -0
  1045. pyrogram/raw/base/payments/star_gift_active_auctions.py +67 -0
  1046. pyrogram/raw/base/payments/star_gift_auction_acquired_gifts.py +66 -0
  1047. pyrogram/raw/base/payments/star_gift_auction_state.py +66 -0
  1048. pyrogram/raw/base/payments/star_gift_collections.py +67 -0
  1049. pyrogram/raw/base/payments/star_gift_upgrade_attributes.py +66 -0
  1050. pyrogram/raw/base/payments/star_gift_upgrade_preview.py +66 -0
  1051. pyrogram/raw/base/payments/star_gift_withdrawal_url.py +66 -0
  1052. pyrogram/raw/base/payments/star_gifts.py +67 -0
  1053. pyrogram/raw/base/payments/stars_revenue_ads_account_url.py +66 -0
  1054. pyrogram/raw/base/payments/stars_revenue_stats.py +66 -0
  1055. pyrogram/raw/base/payments/stars_revenue_withdrawal_url.py +66 -0
  1056. pyrogram/raw/base/payments/stars_status.py +69 -0
  1057. pyrogram/raw/base/payments/suggested_star_ref_bots.py +66 -0
  1058. pyrogram/raw/base/payments/unique_star_gift.py +66 -0
  1059. pyrogram/raw/base/payments/unique_star_gift_value_info.py +66 -0
  1060. pyrogram/raw/base/payments/validated_requested_info.py +66 -0
  1061. pyrogram/raw/base/peer.py +68 -0
  1062. pyrogram/raw/base/peer_blocked.py +56 -0
  1063. pyrogram/raw/base/peer_color.py +58 -0
  1064. pyrogram/raw/base/peer_located.py +57 -0
  1065. pyrogram/raw/base/peer_notify_settings.py +66 -0
  1066. pyrogram/raw/base/peer_settings.py +56 -0
  1067. pyrogram/raw/base/peer_stories.py +56 -0
  1068. pyrogram/raw/base/pending_suggestion.py +56 -0
  1069. pyrogram/raw/base/phone/__init__.py +32 -0
  1070. pyrogram/raw/base/phone/exported_group_call_invite.py +66 -0
  1071. pyrogram/raw/base/phone/group_call.py +66 -0
  1072. pyrogram/raw/base/phone/group_call_stars.py +66 -0
  1073. pyrogram/raw/base/phone/group_call_stream_channels.py +66 -0
  1074. pyrogram/raw/base/phone/group_call_stream_rtmp_url.py +66 -0
  1075. pyrogram/raw/base/phone/group_participants.py +66 -0
  1076. pyrogram/raw/base/phone/join_as_peers.py +66 -0
  1077. pyrogram/raw/base/phone/phone_call.py +68 -0
  1078. pyrogram/raw/base/phone_call.py +61 -0
  1079. pyrogram/raw/base/phone_call_discard_reason.py +60 -0
  1080. pyrogram/raw/base/phone_call_protocol.py +56 -0
  1081. pyrogram/raw/base/phone_connection.py +57 -0
  1082. pyrogram/raw/base/photo.py +57 -0
  1083. pyrogram/raw/base/photo_size.py +61 -0
  1084. pyrogram/raw/base/photos/__init__.py +26 -0
  1085. pyrogram/raw/base/photos/photo.py +68 -0
  1086. pyrogram/raw/base/photos/photos.py +67 -0
  1087. pyrogram/raw/base/poll.py +56 -0
  1088. pyrogram/raw/base/poll_answer.py +57 -0
  1089. pyrogram/raw/base/poll_answer_voters.py +56 -0
  1090. pyrogram/raw/base/poll_results.py +56 -0
  1091. pyrogram/raw/base/pong.py +67 -0
  1092. pyrogram/raw/base/popular_contact.py +56 -0
  1093. pyrogram/raw/base/post_address.py +56 -0
  1094. pyrogram/raw/base/post_interaction_counters.py +57 -0
  1095. pyrogram/raw/base/pq_inner_data.py +59 -0
  1096. pyrogram/raw/base/premium/__init__.py +27 -0
  1097. pyrogram/raw/base/premium/boosts_list.py +67 -0
  1098. pyrogram/raw/base/premium/boosts_status.py +66 -0
  1099. pyrogram/raw/base/premium/my_boosts.py +67 -0
  1100. pyrogram/raw/base/premium_gift_code_option.py +66 -0
  1101. pyrogram/raw/base/premium_subscription_option.py +56 -0
  1102. pyrogram/raw/base/prepaid_giveaway.py +57 -0
  1103. pyrogram/raw/base/privacy_key.py +69 -0
  1104. pyrogram/raw/base/privacy_rule.py +67 -0
  1105. pyrogram/raw/base/profile_tab.py +63 -0
  1106. pyrogram/raw/base/public_forward.py +57 -0
  1107. pyrogram/raw/base/quick_reply.py +56 -0
  1108. pyrogram/raw/base/reaction.py +59 -0
  1109. pyrogram/raw/base/reaction_count.py +56 -0
  1110. pyrogram/raw/base/reaction_notifications_from.py +57 -0
  1111. pyrogram/raw/base/reactions_notify_settings.py +67 -0
  1112. pyrogram/raw/base/read_participant_date.py +66 -0
  1113. pyrogram/raw/base/received_notify_message.py +66 -0
  1114. pyrogram/raw/base/recent_me_url.py +60 -0
  1115. pyrogram/raw/base/recent_story.py +66 -0
  1116. pyrogram/raw/base/reply_markup.py +59 -0
  1117. pyrogram/raw/base/report_reason.py +65 -0
  1118. pyrogram/raw/base/report_result.py +70 -0
  1119. pyrogram/raw/base/request_peer_type.py +59 -0
  1120. pyrogram/raw/base/requested_peer.py +58 -0
  1121. pyrogram/raw/base/requirement_to_contact.py +68 -0
  1122. pyrogram/raw/base/res_pq.py +67 -0
  1123. pyrogram/raw/base/restriction_reason.py +56 -0
  1124. pyrogram/raw/base/rich_button_style.py +56 -0
  1125. pyrogram/raw/base/rich_message.py +56 -0
  1126. pyrogram/raw/base/rich_text.py +86 -0
  1127. pyrogram/raw/base/rpc_drop_answer.py +68 -0
  1128. pyrogram/raw/base/rpc_error.py +56 -0
  1129. pyrogram/raw/base/rpc_result.py +56 -0
  1130. pyrogram/raw/base/saved_contact.py +66 -0
  1131. pyrogram/raw/base/saved_dialog.py +57 -0
  1132. pyrogram/raw/base/saved_reaction_tag.py +56 -0
  1133. pyrogram/raw/base/saved_star_gift.py +56 -0
  1134. pyrogram/raw/base/search_posts_flood.py +66 -0
  1135. pyrogram/raw/base/search_results_calendar_period.py +56 -0
  1136. pyrogram/raw/base/search_results_position.py +56 -0
  1137. pyrogram/raw/base/secure_credentials_encrypted.py +56 -0
  1138. pyrogram/raw/base/secure_data.py +56 -0
  1139. pyrogram/raw/base/secure_file.py +57 -0
  1140. pyrogram/raw/base/secure_password_kdf_algo.py +58 -0
  1141. pyrogram/raw/base/secure_plain_data.py +57 -0
  1142. pyrogram/raw/base/secure_required_type.py +57 -0
  1143. pyrogram/raw/base/secure_secret_settings.py +56 -0
  1144. pyrogram/raw/base/secure_value.py +68 -0
  1145. pyrogram/raw/base/secure_value_error.py +64 -0
  1146. pyrogram/raw/base/secure_value_hash.py +56 -0
  1147. pyrogram/raw/base/secure_value_type.py +68 -0
  1148. pyrogram/raw/base/send_as_peer.py +56 -0
  1149. pyrogram/raw/base/send_message_action.py +77 -0
  1150. pyrogram/raw/base/server_dh_inner_data.py +56 -0
  1151. pyrogram/raw/base/server_dh_params.py +67 -0
  1152. pyrogram/raw/base/set_client_dh_params_answer.py +68 -0
  1153. pyrogram/raw/base/shipping_option.py +56 -0
  1154. pyrogram/raw/base/sms_job.py +66 -0
  1155. pyrogram/raw/base/smsjobs/__init__.py +26 -0
  1156. pyrogram/raw/base/smsjobs/eligibility_to_join.py +66 -0
  1157. pyrogram/raw/base/smsjobs/status.py +66 -0
  1158. pyrogram/raw/base/sponsored_message.py +56 -0
  1159. pyrogram/raw/base/sponsored_message_report_option.py +56 -0
  1160. pyrogram/raw/base/sponsored_peer.py +56 -0
  1161. pyrogram/raw/base/star_gift.py +57 -0
  1162. pyrogram/raw/base/star_gift_active_auction_state.py +56 -0
  1163. pyrogram/raw/base/star_gift_attribute.py +59 -0
  1164. pyrogram/raw/base/star_gift_attribute_counter.py +56 -0
  1165. pyrogram/raw/base/star_gift_attribute_id.py +58 -0
  1166. pyrogram/raw/base/star_gift_attribute_rarity.py +60 -0
  1167. pyrogram/raw/base/star_gift_auction_acquired_gift.py +56 -0
  1168. pyrogram/raw/base/star_gift_auction_round.py +57 -0
  1169. pyrogram/raw/base/star_gift_auction_state.py +58 -0
  1170. pyrogram/raw/base/star_gift_auction_user_state.py +56 -0
  1171. pyrogram/raw/base/star_gift_background.py +56 -0
  1172. pyrogram/raw/base/star_gift_collection.py +67 -0
  1173. pyrogram/raw/base/star_gift_upgrade_price.py +56 -0
  1174. pyrogram/raw/base/star_ref_program.py +66 -0
  1175. pyrogram/raw/base/stars_amount.py +57 -0
  1176. pyrogram/raw/base/stars_gift_option.py +66 -0
  1177. pyrogram/raw/base/stars_giveaway_option.py +66 -0
  1178. pyrogram/raw/base/stars_giveaway_winners_option.py +56 -0
  1179. pyrogram/raw/base/stars_rating.py +56 -0
  1180. pyrogram/raw/base/stars_revenue_status.py +56 -0
  1181. pyrogram/raw/base/stars_subscription.py +56 -0
  1182. pyrogram/raw/base/stars_subscription_pricing.py +56 -0
  1183. pyrogram/raw/base/stars_topup_option.py +66 -0
  1184. pyrogram/raw/base/stars_transaction.py +56 -0
  1185. pyrogram/raw/base/stars_transaction_peer.py +63 -0
  1186. pyrogram/raw/base/stats/__init__.py +30 -0
  1187. pyrogram/raw/base/stats/broadcast_stats.py +66 -0
  1188. pyrogram/raw/base/stats/megagroup_stats.py +66 -0
  1189. pyrogram/raw/base/stats/message_stats.py +66 -0
  1190. pyrogram/raw/base/stats/poll_stats.py +66 -0
  1191. pyrogram/raw/base/stats/public_forwards.py +67 -0
  1192. pyrogram/raw/base/stats/story_stats.py +66 -0
  1193. pyrogram/raw/base/stats_abs_value_and_prev.py +56 -0
  1194. pyrogram/raw/base/stats_date_range_days.py +56 -0
  1195. pyrogram/raw/base/stats_graph.py +68 -0
  1196. pyrogram/raw/base/stats_group_top_admin.py +56 -0
  1197. pyrogram/raw/base/stats_group_top_inviter.py +56 -0
  1198. pyrogram/raw/base/stats_group_top_poster.py +56 -0
  1199. pyrogram/raw/base/stats_percent_value.py +56 -0
  1200. pyrogram/raw/base/stats_url.py +56 -0
  1201. pyrogram/raw/base/sticker_keyword.py +56 -0
  1202. pyrogram/raw/base/sticker_pack.py +56 -0
  1203. pyrogram/raw/base/sticker_set.py +56 -0
  1204. pyrogram/raw/base/sticker_set_covered.py +69 -0
  1205. pyrogram/raw/base/stickers/__init__.py +25 -0
  1206. pyrogram/raw/base/stickers/suggested_short_name.py +66 -0
  1207. pyrogram/raw/base/storage/__init__.py +25 -0
  1208. pyrogram/raw/base/storage/file_type.py +65 -0
  1209. pyrogram/raw/base/stories/__init__.py +33 -0
  1210. pyrogram/raw/base/stories/albums.py +67 -0
  1211. pyrogram/raw/base/stories/all_stories.py +67 -0
  1212. pyrogram/raw/base/stories/can_send_story_count.py +66 -0
  1213. pyrogram/raw/base/stories/found_stories.py +66 -0
  1214. pyrogram/raw/base/stories/peer_stories.py +66 -0
  1215. pyrogram/raw/base/stories/stories.py +69 -0
  1216. pyrogram/raw/base/stories/story_reactions_list.py +66 -0
  1217. pyrogram/raw/base/stories/story_views.py +66 -0
  1218. pyrogram/raw/base/stories/story_views_list.py +66 -0
  1219. pyrogram/raw/base/stories_stealth_mode.py +56 -0
  1220. pyrogram/raw/base/story_album.py +67 -0
  1221. pyrogram/raw/base/story_fwd_header.py +56 -0
  1222. pyrogram/raw/base/story_item.py +58 -0
  1223. pyrogram/raw/base/story_reaction.py +58 -0
  1224. pyrogram/raw/base/story_view.py +58 -0
  1225. pyrogram/raw/base/story_views.py +56 -0
  1226. pyrogram/raw/base/suggested_post.py +56 -0
  1227. pyrogram/raw/base/text_with_entities.py +66 -0
  1228. pyrogram/raw/base/theme.py +68 -0
  1229. pyrogram/raw/base/theme_settings.py +56 -0
  1230. pyrogram/raw/base/timezone.py +56 -0
  1231. pyrogram/raw/base/todo_completion.py +56 -0
  1232. pyrogram/raw/base/todo_item.py +56 -0
  1233. pyrogram/raw/base/todo_list.py +56 -0
  1234. pyrogram/raw/base/top_peer.py +56 -0
  1235. pyrogram/raw/base/top_peer_category.py +65 -0
  1236. pyrogram/raw/base/top_peer_category_peers.py +56 -0
  1237. pyrogram/raw/base/update.py +220 -0
  1238. pyrogram/raw/base/updates/__init__.py +27 -0
  1239. pyrogram/raw/base/updates/channel_difference.py +68 -0
  1240. pyrogram/raw/base/updates/difference.py +69 -0
  1241. pyrogram/raw/base/updates/state.py +66 -0
  1242. pyrogram/raw/base/updates_t.py +205 -0
  1243. pyrogram/raw/base/upload/__init__.py +27 -0
  1244. pyrogram/raw/base/upload/cdn_file.py +67 -0
  1245. pyrogram/raw/base/upload/file.py +67 -0
  1246. pyrogram/raw/base/upload/web_file.py +66 -0
  1247. pyrogram/raw/base/url_auth_result.py +69 -0
  1248. pyrogram/raw/base/user.py +75 -0
  1249. pyrogram/raw/base/user_full.py +56 -0
  1250. pyrogram/raw/base/user_profile_photo.py +57 -0
  1251. pyrogram/raw/base/user_status.py +61 -0
  1252. pyrogram/raw/base/username.py +56 -0
  1253. pyrogram/raw/base/users/__init__.py +27 -0
  1254. pyrogram/raw/base/users/saved_music.py +68 -0
  1255. pyrogram/raw/base/users/user_full.py +66 -0
  1256. pyrogram/raw/base/users/users.py +67 -0
  1257. pyrogram/raw/base/video_size.py +58 -0
  1258. pyrogram/raw/base/wall_paper.py +69 -0
  1259. pyrogram/raw/base/wall_paper_settings.py +56 -0
  1260. pyrogram/raw/base/web_authorization.py +56 -0
  1261. pyrogram/raw/base/web_document.py +57 -0
  1262. pyrogram/raw/base/web_domain_exception.py +56 -0
  1263. pyrogram/raw/base/web_page.py +59 -0
  1264. pyrogram/raw/base/web_page_attribute.py +62 -0
  1265. pyrogram/raw/base/web_view_message_sent.py +66 -0
  1266. pyrogram/raw/base/web_view_result.py +70 -0
  1267. pyrogram/raw/core/__init__.py +54 -0
  1268. pyrogram/raw/core/base_type_meta.py +27 -0
  1269. pyrogram/raw/core/future_salt.py +55 -0
  1270. pyrogram/raw/core/future_salts.py +65 -0
  1271. pyrogram/raw/core/gzip_packed.py +52 -0
  1272. pyrogram/raw/core/list.py +28 -0
  1273. pyrogram/raw/core/message.py +58 -0
  1274. pyrogram/raw/core/msg_container.py +55 -0
  1275. pyrogram/raw/core/primitives/__init__.py +38 -0
  1276. pyrogram/raw/core/primitives/bool.py +52 -0
  1277. pyrogram/raw/core/primitives/bytes.py +50 -0
  1278. pyrogram/raw/core/primitives/double.py +36 -0
  1279. pyrogram/raw/core/primitives/int.py +49 -0
  1280. pyrogram/raw/core/primitives/string.py +35 -0
  1281. pyrogram/raw/core/primitives/vector.py +66 -0
  1282. pyrogram/raw/core/tl_object.py +101 -0
  1283. pyrogram/raw/functions/__init__.py +46 -0
  1284. pyrogram/raw/functions/account/__init__.py +152 -0
  1285. pyrogram/raw/functions/account/accept_authorization.py +108 -0
  1286. pyrogram/raw/functions/account/cancel_password_email.py +71 -0
  1287. pyrogram/raw/functions/account/change_authorization_settings.py +102 -0
  1288. pyrogram/raw/functions/account/change_phone.py +92 -0
  1289. pyrogram/raw/functions/account/check_username.py +76 -0
  1290. pyrogram/raw/functions/account/clear_recent_emoji_statuses.py +71 -0
  1291. pyrogram/raw/functions/account/confirm_bot_connection.py +76 -0
  1292. pyrogram/raw/functions/account/confirm_password_email.py +76 -0
  1293. pyrogram/raw/functions/account/confirm_phone.py +84 -0
  1294. pyrogram/raw/functions/account/create_business_chat_link.py +76 -0
  1295. pyrogram/raw/functions/account/create_theme.py +106 -0
  1296. pyrogram/raw/functions/account/decline_password_reset.py +71 -0
  1297. pyrogram/raw/functions/account/delete_account.py +88 -0
  1298. pyrogram/raw/functions/account/delete_auto_save_exceptions.py +71 -0
  1299. pyrogram/raw/functions/account/delete_business_chat_link.py +76 -0
  1300. pyrogram/raw/functions/account/delete_passkey.py +76 -0
  1301. pyrogram/raw/functions/account/delete_secure_value.py +76 -0
  1302. pyrogram/raw/functions/account/delete_web_browser_settings_exceptions.py +71 -0
  1303. pyrogram/raw/functions/account/disable_peer_connected_bot.py +76 -0
  1304. pyrogram/raw/functions/account/edit_business_chat_link.py +84 -0
  1305. pyrogram/raw/functions/account/finish_takeout_session.py +76 -0
  1306. pyrogram/raw/functions/account/get_account_ttl.py +71 -0
  1307. pyrogram/raw/functions/account/get_all_secure_values.py +71 -0
  1308. pyrogram/raw/functions/account/get_authorization_form.py +92 -0
  1309. pyrogram/raw/functions/account/get_authorizations.py +71 -0
  1310. pyrogram/raw/functions/account/get_auto_download_settings.py +71 -0
  1311. pyrogram/raw/functions/account/get_auto_save_settings.py +71 -0
  1312. pyrogram/raw/functions/account/get_bot_business_connection.py +76 -0
  1313. pyrogram/raw/functions/account/get_business_chat_links.py +71 -0
  1314. pyrogram/raw/functions/account/get_channel_default_emoji_statuses.py +76 -0
  1315. pyrogram/raw/functions/account/get_channel_restricted_status_emojis.py +76 -0
  1316. pyrogram/raw/functions/account/get_chat_themes.py +76 -0
  1317. pyrogram/raw/functions/account/get_collectible_emoji_statuses.py +76 -0
  1318. pyrogram/raw/functions/account/get_connected_bots.py +71 -0
  1319. pyrogram/raw/functions/account/get_contact_sign_up_notification.py +71 -0
  1320. pyrogram/raw/functions/account/get_content_settings.py +71 -0
  1321. pyrogram/raw/functions/account/get_default_background_emojis.py +76 -0
  1322. pyrogram/raw/functions/account/get_default_emoji_statuses.py +76 -0
  1323. pyrogram/raw/functions/account/get_default_group_photo_emojis.py +76 -0
  1324. pyrogram/raw/functions/account/get_default_profile_photo_emojis.py +76 -0
  1325. pyrogram/raw/functions/account/get_global_privacy_settings.py +71 -0
  1326. pyrogram/raw/functions/account/get_multi_wall_papers.py +76 -0
  1327. pyrogram/raw/functions/account/get_notify_exceptions.py +92 -0
  1328. pyrogram/raw/functions/account/get_notify_settings.py +76 -0
  1329. pyrogram/raw/functions/account/get_paid_messages_revenue.py +88 -0
  1330. pyrogram/raw/functions/account/get_passkeys.py +71 -0
  1331. pyrogram/raw/functions/account/get_password.py +71 -0
  1332. pyrogram/raw/functions/account/get_password_settings.py +76 -0
  1333. pyrogram/raw/functions/account/get_privacy.py +76 -0
  1334. pyrogram/raw/functions/account/get_reactions_notify_settings.py +71 -0
  1335. pyrogram/raw/functions/account/get_recent_emoji_statuses.py +76 -0
  1336. pyrogram/raw/functions/account/get_saved_music_ids.py +76 -0
  1337. pyrogram/raw/functions/account/get_saved_ringtones.py +76 -0
  1338. pyrogram/raw/functions/account/get_secure_value.py +76 -0
  1339. pyrogram/raw/functions/account/get_theme.py +84 -0
  1340. pyrogram/raw/functions/account/get_themes.py +84 -0
  1341. pyrogram/raw/functions/account/get_tmp_password.py +84 -0
  1342. pyrogram/raw/functions/account/get_unique_gift_chat_themes.py +92 -0
  1343. pyrogram/raw/functions/account/get_wall_paper.py +76 -0
  1344. pyrogram/raw/functions/account/get_wall_papers.py +76 -0
  1345. pyrogram/raw/functions/account/get_web_authorizations.py +71 -0
  1346. pyrogram/raw/functions/account/get_web_browser_settings.py +76 -0
  1347. pyrogram/raw/functions/account/init_passkey_registration.py +71 -0
  1348. pyrogram/raw/functions/account/init_takeout_session.py +115 -0
  1349. pyrogram/raw/functions/account/install_theme.py +105 -0
  1350. pyrogram/raw/functions/account/install_wall_paper.py +84 -0
  1351. pyrogram/raw/functions/account/invalidate_sign_in_codes.py +76 -0
  1352. pyrogram/raw/functions/account/register_device.py +116 -0
  1353. pyrogram/raw/functions/account/register_passkey.py +76 -0
  1354. pyrogram/raw/functions/account/reorder_usernames.py +76 -0
  1355. pyrogram/raw/functions/account/report_peer.py +92 -0
  1356. pyrogram/raw/functions/account/report_profile_photo.py +100 -0
  1357. pyrogram/raw/functions/account/resend_password_email.py +71 -0
  1358. pyrogram/raw/functions/account/reset_authorization.py +76 -0
  1359. pyrogram/raw/functions/account/reset_notify_settings.py +71 -0
  1360. pyrogram/raw/functions/account/reset_password.py +71 -0
  1361. pyrogram/raw/functions/account/reset_wall_papers.py +71 -0
  1362. pyrogram/raw/functions/account/reset_web_authorization.py +76 -0
  1363. pyrogram/raw/functions/account/reset_web_authorizations.py +71 -0
  1364. pyrogram/raw/functions/account/resolve_business_chat_link.py +76 -0
  1365. pyrogram/raw/functions/account/save_auto_download_settings.py +90 -0
  1366. pyrogram/raw/functions/account/save_auto_save_settings.py +106 -0
  1367. pyrogram/raw/functions/account/save_music.py +94 -0
  1368. pyrogram/raw/functions/account/save_ringtone.py +84 -0
  1369. pyrogram/raw/functions/account/save_secure_value.py +84 -0
  1370. pyrogram/raw/functions/account/save_theme.py +84 -0
  1371. pyrogram/raw/functions/account/save_wall_paper.py +92 -0
  1372. pyrogram/raw/functions/account/send_change_phone_code.py +84 -0
  1373. pyrogram/raw/functions/account/send_confirm_phone_code.py +84 -0
  1374. pyrogram/raw/functions/account/send_verify_email_code.py +84 -0
  1375. pyrogram/raw/functions/account/send_verify_phone_code.py +84 -0
  1376. pyrogram/raw/functions/account/set_account_ttl.py +76 -0
  1377. pyrogram/raw/functions/account/set_authorization_ttl.py +76 -0
  1378. pyrogram/raw/functions/account/set_contact_sign_up_notification.py +76 -0
  1379. pyrogram/raw/functions/account/set_content_settings.py +76 -0
  1380. pyrogram/raw/functions/account/set_global_privacy_settings.py +76 -0
  1381. pyrogram/raw/functions/account/set_main_profile_tab.py +76 -0
  1382. pyrogram/raw/functions/account/set_privacy.py +84 -0
  1383. pyrogram/raw/functions/account/set_reactions_notify_settings.py +76 -0
  1384. pyrogram/raw/functions/account/toggle_connected_bot_paused.py +84 -0
  1385. pyrogram/raw/functions/account/toggle_no_paid_messages_exception.py +100 -0
  1386. pyrogram/raw/functions/account/toggle_sponsored_messages.py +76 -0
  1387. pyrogram/raw/functions/account/toggle_username.py +84 -0
  1388. pyrogram/raw/functions/account/toggle_web_browser_settings_exception.py +93 -0
  1389. pyrogram/raw/functions/account/unregister_device.py +92 -0
  1390. pyrogram/raw/functions/account/update_birthday.py +80 -0
  1391. pyrogram/raw/functions/account/update_business_away_message.py +80 -0
  1392. pyrogram/raw/functions/account/update_business_greeting_message.py +80 -0
  1393. pyrogram/raw/functions/account/update_business_intro.py +80 -0
  1394. pyrogram/raw/functions/account/update_business_location.py +89 -0
  1395. pyrogram/raw/functions/account/update_business_work_hours.py +80 -0
  1396. pyrogram/raw/functions/account/update_color.py +86 -0
  1397. pyrogram/raw/functions/account/update_connected_bot.py +102 -0
  1398. pyrogram/raw/functions/account/update_device_locked.py +76 -0
  1399. pyrogram/raw/functions/account/update_emoji_status.py +76 -0
  1400. pyrogram/raw/functions/account/update_notify_settings.py +84 -0
  1401. pyrogram/raw/functions/account/update_password_settings.py +84 -0
  1402. pyrogram/raw/functions/account/update_personal_channel.py +76 -0
  1403. pyrogram/raw/functions/account/update_profile.py +97 -0
  1404. pyrogram/raw/functions/account/update_status.py +76 -0
  1405. pyrogram/raw/functions/account/update_theme.py +124 -0
  1406. pyrogram/raw/functions/account/update_username.py +76 -0
  1407. pyrogram/raw/functions/account/update_web_browser_settings.py +82 -0
  1408. pyrogram/raw/functions/account/upload_ringtone.py +92 -0
  1409. pyrogram/raw/functions/account/upload_theme.py +104 -0
  1410. pyrogram/raw/functions/account/upload_wall_paper.py +100 -0
  1411. pyrogram/raw/functions/account/verify_email.py +84 -0
  1412. pyrogram/raw/functions/account/verify_phone.py +92 -0
  1413. pyrogram/raw/functions/aicompose/__init__.py +31 -0
  1414. pyrogram/raw/functions/aicompose/create_tone.py +100 -0
  1415. pyrogram/raw/functions/aicompose/delete_tone.py +76 -0
  1416. pyrogram/raw/functions/aicompose/get_tone.py +76 -0
  1417. pyrogram/raw/functions/aicompose/get_tone_example.py +84 -0
  1418. pyrogram/raw/functions/aicompose/get_tones.py +76 -0
  1419. pyrogram/raw/functions/aicompose/save_tone.py +84 -0
  1420. pyrogram/raw/functions/aicompose/update_tone.py +114 -0
  1421. pyrogram/raw/functions/auth/__init__.py +53 -0
  1422. pyrogram/raw/functions/auth/accept_login_token.py +76 -0
  1423. pyrogram/raw/functions/auth/bind_temp_auth_key.py +100 -0
  1424. pyrogram/raw/functions/auth/cancel_code.py +84 -0
  1425. pyrogram/raw/functions/auth/check_paid_auth.py +92 -0
  1426. pyrogram/raw/functions/auth/check_password.py +76 -0
  1427. pyrogram/raw/functions/auth/check_recovery_password.py +76 -0
  1428. pyrogram/raw/functions/auth/drop_temp_auth_keys.py +76 -0
  1429. pyrogram/raw/functions/auth/export_authorization.py +76 -0
  1430. pyrogram/raw/functions/auth/export_login_token.py +92 -0
  1431. pyrogram/raw/functions/auth/finish_firebase_pnv_login.py +76 -0
  1432. pyrogram/raw/functions/auth/finish_passkey_login.py +96 -0
  1433. pyrogram/raw/functions/auth/firebase_pnv_sign_up.py +92 -0
  1434. pyrogram/raw/functions/auth/import_authorization.py +84 -0
  1435. pyrogram/raw/functions/auth/import_bot_authorization.py +100 -0
  1436. pyrogram/raw/functions/auth/import_login_token.py +76 -0
  1437. pyrogram/raw/functions/auth/import_web_token_authorization.py +92 -0
  1438. pyrogram/raw/functions/auth/init_firebase_pnv_login.py +84 -0
  1439. pyrogram/raw/functions/auth/init_passkey_login.py +84 -0
  1440. pyrogram/raw/functions/auth/log_out.py +71 -0
  1441. pyrogram/raw/functions/auth/recover_password.py +88 -0
  1442. pyrogram/raw/functions/auth/report_missing_code.py +92 -0
  1443. pyrogram/raw/functions/auth/request_firebase_sms.py +113 -0
  1444. pyrogram/raw/functions/auth/request_password_recovery.py +71 -0
  1445. pyrogram/raw/functions/auth/resend_code.py +95 -0
  1446. pyrogram/raw/functions/auth/reset_authorizations.py +71 -0
  1447. pyrogram/raw/functions/auth/reset_login_email.py +84 -0
  1448. pyrogram/raw/functions/auth/send_code.py +100 -0
  1449. pyrogram/raw/functions/auth/sign_in.py +105 -0
  1450. pyrogram/raw/functions/auth/sign_up.py +108 -0
  1451. pyrogram/raw/functions/bots/__init__.py +62 -0
  1452. pyrogram/raw/functions/bots/add_preview_media.py +92 -0
  1453. pyrogram/raw/functions/bots/allow_send_message.py +76 -0
  1454. pyrogram/raw/functions/bots/answer_webhook_json_query.py +84 -0
  1455. pyrogram/raw/functions/bots/can_send_message.py +76 -0
  1456. pyrogram/raw/functions/bots/check_download_file_params.py +92 -0
  1457. pyrogram/raw/functions/bots/check_username.py +76 -0
  1458. pyrogram/raw/functions/bots/create_bot.py +100 -0
  1459. pyrogram/raw/functions/bots/delete_preview_media.py +92 -0
  1460. pyrogram/raw/functions/bots/edit_access_settings.py +94 -0
  1461. pyrogram/raw/functions/bots/edit_preview_media.py +100 -0
  1462. pyrogram/raw/functions/bots/export_bot_token.py +84 -0
  1463. pyrogram/raw/functions/bots/get_access_settings.py +76 -0
  1464. pyrogram/raw/functions/bots/get_admined_bots.py +71 -0
  1465. pyrogram/raw/functions/bots/get_bot_commands.py +84 -0
  1466. pyrogram/raw/functions/bots/get_bot_info.py +88 -0
  1467. pyrogram/raw/functions/bots/get_bot_menu_button.py +76 -0
  1468. pyrogram/raw/functions/bots/get_bot_recommendations.py +76 -0
  1469. pyrogram/raw/functions/bots/get_popular_app_bots.py +84 -0
  1470. pyrogram/raw/functions/bots/get_preview_info.py +84 -0
  1471. pyrogram/raw/functions/bots/get_preview_medias.py +76 -0
  1472. pyrogram/raw/functions/bots/get_requested_web_view_button.py +84 -0
  1473. pyrogram/raw/functions/bots/invoke_web_view_custom_method.py +92 -0
  1474. pyrogram/raw/functions/bots/reorder_preview_medias.py +92 -0
  1475. pyrogram/raw/functions/bots/reorder_usernames.py +84 -0
  1476. pyrogram/raw/functions/bots/request_web_view_button.py +84 -0
  1477. pyrogram/raw/functions/bots/reset_bot_commands.py +84 -0
  1478. pyrogram/raw/functions/bots/send_custom_request.py +84 -0
  1479. pyrogram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py +76 -0
  1480. pyrogram/raw/functions/bots/set_bot_commands.py +92 -0
  1481. pyrogram/raw/functions/bots/set_bot_group_default_admin_rights.py +76 -0
  1482. pyrogram/raw/functions/bots/set_bot_info.py +115 -0
  1483. pyrogram/raw/functions/bots/set_bot_menu_button.py +84 -0
  1484. pyrogram/raw/functions/bots/set_custom_verification.py +103 -0
  1485. pyrogram/raw/functions/bots/set_join_chat_results.py +84 -0
  1486. pyrogram/raw/functions/bots/toggle_user_emoji_status_permission.py +84 -0
  1487. pyrogram/raw/functions/bots/toggle_username.py +92 -0
  1488. pyrogram/raw/functions/bots/update_star_ref_program.py +95 -0
  1489. pyrogram/raw/functions/bots/update_user_emoji_status.py +84 -0
  1490. pyrogram/raw/functions/channels/__init__.py +82 -0
  1491. pyrogram/raw/functions/channels/check_search_posts_flood.py +79 -0
  1492. pyrogram/raw/functions/channels/check_username.py +84 -0
  1493. pyrogram/raw/functions/channels/convert_to_gigagroup.py +76 -0
  1494. pyrogram/raw/functions/channels/create_channel.py +138 -0
  1495. pyrogram/raw/functions/channels/deactivate_all_usernames.py +76 -0
  1496. pyrogram/raw/functions/channels/delete_channel.py +76 -0
  1497. pyrogram/raw/functions/channels/delete_history.py +92 -0
  1498. pyrogram/raw/functions/channels/delete_messages.py +84 -0
  1499. pyrogram/raw/functions/channels/delete_participant_history.py +84 -0
  1500. pyrogram/raw/functions/channels/edit_admin.py +103 -0
  1501. pyrogram/raw/functions/channels/edit_banned.py +92 -0
  1502. pyrogram/raw/functions/channels/edit_location.py +92 -0
  1503. pyrogram/raw/functions/channels/edit_photo.py +84 -0
  1504. pyrogram/raw/functions/channels/edit_title.py +84 -0
  1505. pyrogram/raw/functions/channels/export_message_link.py +98 -0
  1506. pyrogram/raw/functions/channels/get_admin_log.py +130 -0
  1507. pyrogram/raw/functions/channels/get_admined_public_channels.py +94 -0
  1508. pyrogram/raw/functions/channels/get_channel_recommendations.py +80 -0
  1509. pyrogram/raw/functions/channels/get_channels.py +76 -0
  1510. pyrogram/raw/functions/channels/get_full_channel.py +76 -0
  1511. pyrogram/raw/functions/channels/get_groups_for_discussion.py +71 -0
  1512. pyrogram/raw/functions/channels/get_inactive_channels.py +71 -0
  1513. pyrogram/raw/functions/channels/get_left_channels.py +76 -0
  1514. pyrogram/raw/functions/channels/get_message_author.py +84 -0
  1515. pyrogram/raw/functions/channels/get_messages.py +84 -0
  1516. pyrogram/raw/functions/channels/get_participant.py +84 -0
  1517. pyrogram/raw/functions/channels/get_participants.py +108 -0
  1518. pyrogram/raw/functions/channels/get_send_as.py +90 -0
  1519. pyrogram/raw/functions/channels/invite_to_channel.py +84 -0
  1520. pyrogram/raw/functions/channels/join_channel.py +76 -0
  1521. pyrogram/raw/functions/channels/leave_channel.py +76 -0
  1522. pyrogram/raw/functions/channels/read_history.py +84 -0
  1523. pyrogram/raw/functions/channels/read_message_contents.py +84 -0
  1524. pyrogram/raw/functions/channels/reorder_usernames.py +84 -0
  1525. pyrogram/raw/functions/channels/report_anti_spam_false_positive.py +84 -0
  1526. pyrogram/raw/functions/channels/report_spam.py +92 -0
  1527. pyrogram/raw/functions/channels/restrict_sponsored_messages.py +84 -0
  1528. pyrogram/raw/functions/channels/search_posts.py +129 -0
  1529. pyrogram/raw/functions/channels/set_boosts_to_unblock_restrictions.py +84 -0
  1530. pyrogram/raw/functions/channels/set_discussion_group.py +84 -0
  1531. pyrogram/raw/functions/channels/set_emoji_stickers.py +84 -0
  1532. pyrogram/raw/functions/channels/set_main_profile_tab.py +84 -0
  1533. pyrogram/raw/functions/channels/set_stickers.py +84 -0
  1534. pyrogram/raw/functions/channels/toggle_anti_spam.py +84 -0
  1535. pyrogram/raw/functions/channels/toggle_autotranslation.py +84 -0
  1536. pyrogram/raw/functions/channels/toggle_forum.py +92 -0
  1537. pyrogram/raw/functions/channels/toggle_join_request.py +102 -0
  1538. pyrogram/raw/functions/channels/toggle_join_to_send.py +84 -0
  1539. pyrogram/raw/functions/channels/toggle_participants_hidden.py +84 -0
  1540. pyrogram/raw/functions/channels/toggle_pre_history_hidden.py +84 -0
  1541. pyrogram/raw/functions/channels/toggle_signatures.py +90 -0
  1542. pyrogram/raw/functions/channels/toggle_slow_mode.py +84 -0
  1543. pyrogram/raw/functions/channels/toggle_username.py +92 -0
  1544. pyrogram/raw/functions/channels/toggle_view_forum_as_messages.py +84 -0
  1545. pyrogram/raw/functions/channels/update_color.py +102 -0
  1546. pyrogram/raw/functions/channels/update_emoji_status.py +84 -0
  1547. pyrogram/raw/functions/channels/update_paid_messages_price.py +92 -0
  1548. pyrogram/raw/functions/channels/update_username.py +84 -0
  1549. pyrogram/raw/functions/chatlists/__init__.py +35 -0
  1550. pyrogram/raw/functions/chatlists/check_chatlist_invite.py +76 -0
  1551. pyrogram/raw/functions/chatlists/delete_exported_invite.py +84 -0
  1552. pyrogram/raw/functions/chatlists/edit_exported_invite.py +105 -0
  1553. pyrogram/raw/functions/chatlists/export_chatlist_invite.py +92 -0
  1554. pyrogram/raw/functions/chatlists/get_chatlist_updates.py +76 -0
  1555. pyrogram/raw/functions/chatlists/get_exported_invites.py +76 -0
  1556. pyrogram/raw/functions/chatlists/get_leave_chatlist_suggestions.py +76 -0
  1557. pyrogram/raw/functions/chatlists/hide_chatlist_updates.py +76 -0
  1558. pyrogram/raw/functions/chatlists/join_chatlist_invite.py +84 -0
  1559. pyrogram/raw/functions/chatlists/join_chatlist_updates.py +84 -0
  1560. pyrogram/raw/functions/chatlists/leave_chatlist.py +84 -0
  1561. pyrogram/raw/functions/communities/__init__.py +33 -0
  1562. pyrogram/raw/functions/communities/create.py +101 -0
  1563. pyrogram/raw/functions/communities/get_joined_communities.py +71 -0
  1564. pyrogram/raw/functions/communities/get_participant_joined_chats.py +84 -0
  1565. pyrogram/raw/functions/communities/get_peer_link_requests.py +92 -0
  1566. pyrogram/raw/functions/communities/toggle_all_peer_link_request_approval.py +84 -0
  1567. pyrogram/raw/functions/communities/toggle_community_collapsed_in_dialogs.py +84 -0
  1568. pyrogram/raw/functions/communities/toggle_participant_banned.py +92 -0
  1569. pyrogram/raw/functions/communities/toggle_peer_link.py +104 -0
  1570. pyrogram/raw/functions/communities/toggle_peer_link_request_approval.py +92 -0
  1571. pyrogram/raw/functions/contacts/__init__.py +52 -0
  1572. pyrogram/raw/functions/contacts/accept_contact.py +76 -0
  1573. pyrogram/raw/functions/contacts/add_contact.py +118 -0
  1574. pyrogram/raw/functions/contacts/block.py +84 -0
  1575. pyrogram/raw/functions/contacts/block_from_replies.py +96 -0
  1576. pyrogram/raw/functions/contacts/delete_by_phones.py +76 -0
  1577. pyrogram/raw/functions/contacts/delete_contacts.py +76 -0
  1578. pyrogram/raw/functions/contacts/edit_close_friends.py +76 -0
  1579. pyrogram/raw/functions/contacts/export_contact_token.py +71 -0
  1580. pyrogram/raw/functions/contacts/get_birthdays.py +71 -0
  1581. pyrogram/raw/functions/contacts/get_blocked.py +92 -0
  1582. pyrogram/raw/functions/contacts/get_contact_i_ds.py +76 -0
  1583. pyrogram/raw/functions/contacts/get_contacts.py +76 -0
  1584. pyrogram/raw/functions/contacts/get_located.py +93 -0
  1585. pyrogram/raw/functions/contacts/get_saved.py +71 -0
  1586. pyrogram/raw/functions/contacts/get_sponsored_peers.py +76 -0
  1587. pyrogram/raw/functions/contacts/get_statuses.py +71 -0
  1588. pyrogram/raw/functions/contacts/get_top_peers.py +154 -0
  1589. pyrogram/raw/functions/contacts/import_contact_token.py +76 -0
  1590. pyrogram/raw/functions/contacts/import_contacts.py +76 -0
  1591. pyrogram/raw/functions/contacts/reset_saved.py +71 -0
  1592. pyrogram/raw/functions/contacts/reset_top_peer_rating.py +84 -0
  1593. pyrogram/raw/functions/contacts/resolve_phone.py +76 -0
  1594. pyrogram/raw/functions/contacts/resolve_username.py +87 -0
  1595. pyrogram/raw/functions/contacts/search.py +98 -0
  1596. pyrogram/raw/functions/contacts/set_blocked.py +92 -0
  1597. pyrogram/raw/functions/contacts/toggle_top_peers.py +76 -0
  1598. pyrogram/raw/functions/contacts/unblock.py +84 -0
  1599. pyrogram/raw/functions/contacts/update_contact_note.py +84 -0
  1600. pyrogram/raw/functions/contest/__init__.py +25 -0
  1601. pyrogram/raw/functions/contest/save_developer_info.py +108 -0
  1602. pyrogram/raw/functions/destroy_auth_key.py +71 -0
  1603. pyrogram/raw/functions/destroy_session.py +76 -0
  1604. pyrogram/raw/functions/ephemeral/__init__.py +32 -0
  1605. pyrogram/raw/functions/ephemeral/delete_all_welcome_messages.py +76 -0
  1606. pyrogram/raw/functions/ephemeral/delete_message.py +96 -0
  1607. pyrogram/raw/functions/ephemeral/delete_welcome_message.py +84 -0
  1608. pyrogram/raw/functions/ephemeral/edit_message.py +157 -0
  1609. pyrogram/raw/functions/ephemeral/get_callback_answer.py +95 -0
  1610. pyrogram/raw/functions/ephemeral/get_welcome_messages.py +84 -0
  1611. pyrogram/raw/functions/ephemeral/report_message.py +100 -0
  1612. pyrogram/raw/functions/ephemeral/send_message.py +187 -0
  1613. pyrogram/raw/functions/folders/__init__.py +25 -0
  1614. pyrogram/raw/functions/folders/edit_peer_folders.py +76 -0
  1615. pyrogram/raw/functions/fragment/__init__.py +25 -0
  1616. pyrogram/raw/functions/fragment/get_collectible_info.py +76 -0
  1617. pyrogram/raw/functions/get_future_salts.py +76 -0
  1618. pyrogram/raw/functions/help/__init__.py +49 -0
  1619. pyrogram/raw/functions/help/accept_terms_of_service.py +76 -0
  1620. pyrogram/raw/functions/help/dismiss_suggestion.py +84 -0
  1621. pyrogram/raw/functions/help/edit_user_info.py +92 -0
  1622. pyrogram/raw/functions/help/get_app_config.py +76 -0
  1623. pyrogram/raw/functions/help/get_app_update.py +76 -0
  1624. pyrogram/raw/functions/help/get_cdn_config.py +71 -0
  1625. pyrogram/raw/functions/help/get_config.py +71 -0
  1626. pyrogram/raw/functions/help/get_countries_list.py +84 -0
  1627. pyrogram/raw/functions/help/get_deep_link_info.py +76 -0
  1628. pyrogram/raw/functions/help/get_invite_text.py +71 -0
  1629. pyrogram/raw/functions/help/get_nearest_dc.py +71 -0
  1630. pyrogram/raw/functions/help/get_passport_config.py +76 -0
  1631. pyrogram/raw/functions/help/get_peer_colors.py +76 -0
  1632. pyrogram/raw/functions/help/get_peer_profile_colors.py +76 -0
  1633. pyrogram/raw/functions/help/get_premium_promo.py +71 -0
  1634. pyrogram/raw/functions/help/get_promo_data.py +71 -0
  1635. pyrogram/raw/functions/help/get_recent_me_urls.py +76 -0
  1636. pyrogram/raw/functions/help/get_support.py +71 -0
  1637. pyrogram/raw/functions/help/get_support_name.py +71 -0
  1638. pyrogram/raw/functions/help/get_terms_of_service_update.py +71 -0
  1639. pyrogram/raw/functions/help/get_timezones_list.py +76 -0
  1640. pyrogram/raw/functions/help/get_user_info.py +76 -0
  1641. pyrogram/raw/functions/help/hide_promo_data.py +76 -0
  1642. pyrogram/raw/functions/help/save_app_log.py +76 -0
  1643. pyrogram/raw/functions/help/set_bot_updates_status.py +84 -0
  1644. pyrogram/raw/functions/init_connection.py +154 -0
  1645. pyrogram/raw/functions/invoke_after_msg.py +84 -0
  1646. pyrogram/raw/functions/invoke_after_msgs.py +84 -0
  1647. pyrogram/raw/functions/invoke_with_apns_secret.py +92 -0
  1648. pyrogram/raw/functions/invoke_with_business_connection.py +84 -0
  1649. pyrogram/raw/functions/invoke_with_google_play_integrity.py +92 -0
  1650. pyrogram/raw/functions/invoke_with_layer.py +84 -0
  1651. pyrogram/raw/functions/invoke_with_messages_range.py +84 -0
  1652. pyrogram/raw/functions/invoke_with_re_captcha.py +84 -0
  1653. pyrogram/raw/functions/invoke_with_takeout.py +84 -0
  1654. pyrogram/raw/functions/invoke_without_updates.py +76 -0
  1655. pyrogram/raw/functions/langpack/__init__.py +29 -0
  1656. pyrogram/raw/functions/langpack/get_difference.py +92 -0
  1657. pyrogram/raw/functions/langpack/get_lang_pack.py +84 -0
  1658. pyrogram/raw/functions/langpack/get_language.py +84 -0
  1659. pyrogram/raw/functions/langpack/get_languages.py +76 -0
  1660. pyrogram/raw/functions/langpack/get_strings.py +92 -0
  1661. pyrogram/raw/functions/messages/__init__.py +283 -0
  1662. pyrogram/raw/functions/messages/accept_encryption.py +92 -0
  1663. pyrogram/raw/functions/messages/accept_url_auth.py +128 -0
  1664. pyrogram/raw/functions/messages/add_chat_user.py +92 -0
  1665. pyrogram/raw/functions/messages/add_poll_answer.py +92 -0
  1666. pyrogram/raw/functions/messages/append_todo_list.py +92 -0
  1667. pyrogram/raw/functions/messages/check_chat_invite.py +76 -0
  1668. pyrogram/raw/functions/messages/check_history_import.py +76 -0
  1669. pyrogram/raw/functions/messages/check_history_import_peer.py +76 -0
  1670. pyrogram/raw/functions/messages/check_quick_reply_shortcut.py +76 -0
  1671. pyrogram/raw/functions/messages/check_url_auth_match_code.py +84 -0
  1672. pyrogram/raw/functions/messages/clear_all_drafts.py +71 -0
  1673. pyrogram/raw/functions/messages/clear_recent_reactions.py +71 -0
  1674. pyrogram/raw/functions/messages/clear_recent_stickers.py +76 -0
  1675. pyrogram/raw/functions/messages/click_sponsored_message.py +90 -0
  1676. pyrogram/raw/functions/messages/compose_message_with_ai.py +109 -0
  1677. pyrogram/raw/functions/messages/compose_rich_message_with_ai.py +111 -0
  1678. pyrogram/raw/functions/messages/create_chat.py +95 -0
  1679. pyrogram/raw/functions/messages/create_forum_topic.py +128 -0
  1680. pyrogram/raw/functions/messages/decline_url_auth.py +76 -0
  1681. pyrogram/raw/functions/messages/delete_chat.py +76 -0
  1682. pyrogram/raw/functions/messages/delete_chat_user.py +92 -0
  1683. pyrogram/raw/functions/messages/delete_exported_chat_invite.py +84 -0
  1684. pyrogram/raw/functions/messages/delete_fact_check.py +84 -0
  1685. pyrogram/raw/functions/messages/delete_history.py +116 -0
  1686. pyrogram/raw/functions/messages/delete_messages.py +84 -0
  1687. pyrogram/raw/functions/messages/delete_participant_reaction.py +92 -0
  1688. pyrogram/raw/functions/messages/delete_participant_reactions.py +84 -0
  1689. pyrogram/raw/functions/messages/delete_phone_call_history.py +76 -0
  1690. pyrogram/raw/functions/messages/delete_poll_answer.py +92 -0
  1691. pyrogram/raw/functions/messages/delete_quick_reply_messages.py +84 -0
  1692. pyrogram/raw/functions/messages/delete_quick_reply_shortcut.py +76 -0
  1693. pyrogram/raw/functions/messages/delete_revoked_exported_chat_invites.py +84 -0
  1694. pyrogram/raw/functions/messages/delete_saved_history.py +114 -0
  1695. pyrogram/raw/functions/messages/delete_scheduled_messages.py +84 -0
  1696. pyrogram/raw/functions/messages/delete_topic_history.py +84 -0
  1697. pyrogram/raw/functions/messages/discard_encryption.py +84 -0
  1698. pyrogram/raw/functions/messages/edit_chat_about.py +84 -0
  1699. pyrogram/raw/functions/messages/edit_chat_admin.py +92 -0
  1700. pyrogram/raw/functions/messages/edit_chat_creator.py +92 -0
  1701. pyrogram/raw/functions/messages/edit_chat_default_banned_rights.py +84 -0
  1702. pyrogram/raw/functions/messages/edit_chat_participant_rank.py +92 -0
  1703. pyrogram/raw/functions/messages/edit_chat_photo.py +84 -0
  1704. pyrogram/raw/functions/messages/edit_chat_title.py +84 -0
  1705. pyrogram/raw/functions/messages/edit_exported_chat_invite.py +128 -0
  1706. pyrogram/raw/functions/messages/edit_fact_check.py +92 -0
  1707. pyrogram/raw/functions/messages/edit_forum_topic.py +122 -0
  1708. pyrogram/raw/functions/messages/edit_inline_bot_message.py +139 -0
  1709. pyrogram/raw/functions/messages/edit_message.py +174 -0
  1710. pyrogram/raw/functions/messages/edit_quick_reply_shortcut.py +84 -0
  1711. pyrogram/raw/functions/messages/export_chat_invite.py +127 -0
  1712. pyrogram/raw/functions/messages/fave_sticker.py +84 -0
  1713. pyrogram/raw/functions/messages/forward_messages.py +244 -0
  1714. pyrogram/raw/functions/messages/get_admins_with_invites.py +76 -0
  1715. pyrogram/raw/functions/messages/get_all_drafts.py +71 -0
  1716. pyrogram/raw/functions/messages/get_all_stickers.py +76 -0
  1717. pyrogram/raw/functions/messages/get_archived_stickers.py +98 -0
  1718. pyrogram/raw/functions/messages/get_attach_menu_bot.py +76 -0
  1719. pyrogram/raw/functions/messages/get_attach_menu_bots.py +76 -0
  1720. pyrogram/raw/functions/messages/get_attached_stickers.py +76 -0
  1721. pyrogram/raw/functions/messages/get_available_effects.py +76 -0
  1722. pyrogram/raw/functions/messages/get_available_reactions.py +76 -0
  1723. pyrogram/raw/functions/messages/get_bot_app.py +84 -0
  1724. pyrogram/raw/functions/messages/get_bot_callback_answer.py +111 -0
  1725. pyrogram/raw/functions/messages/get_chat_invite_importers.py +132 -0
  1726. pyrogram/raw/functions/messages/get_chats.py +76 -0
  1727. pyrogram/raw/functions/messages/get_common_chats.py +92 -0
  1728. pyrogram/raw/functions/messages/get_custom_emoji_documents.py +76 -0
  1729. pyrogram/raw/functions/messages/get_default_history_ttl.py +71 -0
  1730. pyrogram/raw/functions/messages/get_default_tag_reactions.py +76 -0
  1731. pyrogram/raw/functions/messages/get_dh_config.py +84 -0
  1732. pyrogram/raw/functions/messages/get_dialog_filters.py +71 -0
  1733. pyrogram/raw/functions/messages/get_dialog_unread_marks.py +80 -0
  1734. pyrogram/raw/functions/messages/get_dialogs.py +125 -0
  1735. pyrogram/raw/functions/messages/get_discussion_message.py +84 -0
  1736. pyrogram/raw/functions/messages/get_document_by_hash.py +92 -0
  1737. pyrogram/raw/functions/messages/get_emoji_game_info.py +71 -0
  1738. pyrogram/raw/functions/messages/get_emoji_groups.py +76 -0
  1739. pyrogram/raw/functions/messages/get_emoji_keywords.py +76 -0
  1740. pyrogram/raw/functions/messages/get_emoji_keywords_difference.py +84 -0
  1741. pyrogram/raw/functions/messages/get_emoji_keywords_languages.py +76 -0
  1742. pyrogram/raw/functions/messages/get_emoji_profile_photo_groups.py +76 -0
  1743. pyrogram/raw/functions/messages/get_emoji_status_groups.py +76 -0
  1744. pyrogram/raw/functions/messages/get_emoji_sticker_groups.py +76 -0
  1745. pyrogram/raw/functions/messages/get_emoji_stickers.py +76 -0
  1746. pyrogram/raw/functions/messages/get_emoji_url.py +76 -0
  1747. pyrogram/raw/functions/messages/get_exported_chat_invite.py +84 -0
  1748. pyrogram/raw/functions/messages/get_exported_chat_invites.py +118 -0
  1749. pyrogram/raw/functions/messages/get_extended_media.py +84 -0
  1750. pyrogram/raw/functions/messages/get_fact_check.py +84 -0
  1751. pyrogram/raw/functions/messages/get_faved_stickers.py +76 -0
  1752. pyrogram/raw/functions/messages/get_featured_emoji_stickers.py +76 -0
  1753. pyrogram/raw/functions/messages/get_featured_stickers.py +76 -0
  1754. pyrogram/raw/functions/messages/get_forum_topics.py +119 -0
  1755. pyrogram/raw/functions/messages/get_forum_topics_by_id.py +84 -0
  1756. pyrogram/raw/functions/messages/get_full_chat.py +76 -0
  1757. pyrogram/raw/functions/messages/get_future_chat_creator_after_leave.py +76 -0
  1758. pyrogram/raw/functions/messages/get_game_high_scores.py +92 -0
  1759. pyrogram/raw/functions/messages/get_history.py +132 -0
  1760. pyrogram/raw/functions/messages/get_inline_bot_results.py +112 -0
  1761. pyrogram/raw/functions/messages/get_inline_game_high_scores.py +84 -0
  1762. pyrogram/raw/functions/messages/get_mask_stickers.py +76 -0
  1763. pyrogram/raw/functions/messages/get_message_edit_data.py +84 -0
  1764. pyrogram/raw/functions/messages/get_message_reactions_list.py +113 -0
  1765. pyrogram/raw/functions/messages/get_message_read_participants.py +84 -0
  1766. pyrogram/raw/functions/messages/get_messages.py +76 -0
  1767. pyrogram/raw/functions/messages/get_messages_reactions.py +84 -0
  1768. pyrogram/raw/functions/messages/get_messages_views.py +92 -0
  1769. pyrogram/raw/functions/messages/get_my_stickers.py +84 -0
  1770. pyrogram/raw/functions/messages/get_old_featured_stickers.py +92 -0
  1771. pyrogram/raw/functions/messages/get_onlines.py +76 -0
  1772. pyrogram/raw/functions/messages/get_outbox_read_date.py +84 -0
  1773. pyrogram/raw/functions/messages/get_paid_reaction_privacy.py +71 -0
  1774. pyrogram/raw/functions/messages/get_peer_dialogs.py +76 -0
  1775. pyrogram/raw/functions/messages/get_peer_settings.py +76 -0
  1776. pyrogram/raw/functions/messages/get_personal_channel_history.py +108 -0
  1777. pyrogram/raw/functions/messages/get_pinned_dialogs.py +76 -0
  1778. pyrogram/raw/functions/messages/get_pinned_saved_dialogs.py +71 -0
  1779. pyrogram/raw/functions/messages/get_poll_results.py +92 -0
  1780. pyrogram/raw/functions/messages/get_poll_votes.py +112 -0
  1781. pyrogram/raw/functions/messages/get_prepared_inline_message.py +84 -0
  1782. pyrogram/raw/functions/messages/get_quick_replies.py +76 -0
  1783. pyrogram/raw/functions/messages/get_quick_reply_messages.py +96 -0
  1784. pyrogram/raw/functions/messages/get_recent_locations.py +92 -0
  1785. pyrogram/raw/functions/messages/get_recent_reactions.py +84 -0
  1786. pyrogram/raw/functions/messages/get_recent_stickers.py +84 -0
  1787. pyrogram/raw/functions/messages/get_replies.py +140 -0
  1788. pyrogram/raw/functions/messages/get_rich_message.py +84 -0
  1789. pyrogram/raw/functions/messages/get_saved_dialogs.py +126 -0
  1790. pyrogram/raw/functions/messages/get_saved_dialogs_by_id.py +88 -0
  1791. pyrogram/raw/functions/messages/get_saved_gifs.py +76 -0
  1792. pyrogram/raw/functions/messages/get_saved_history.py +144 -0
  1793. pyrogram/raw/functions/messages/get_saved_reaction_tags.py +88 -0
  1794. pyrogram/raw/functions/messages/get_scheduled_history.py +84 -0
  1795. pyrogram/raw/functions/messages/get_scheduled_messages.py +84 -0
  1796. pyrogram/raw/functions/messages/get_search_counters.py +105 -0
  1797. pyrogram/raw/functions/messages/get_search_results_calendar.py +112 -0
  1798. pyrogram/raw/functions/messages/get_search_results_positions.py +112 -0
  1799. pyrogram/raw/functions/messages/get_split_ranges.py +71 -0
  1800. pyrogram/raw/functions/messages/get_sponsored_messages.py +87 -0
  1801. pyrogram/raw/functions/messages/get_sticker_set.py +84 -0
  1802. pyrogram/raw/functions/messages/get_stickers.py +84 -0
  1803. pyrogram/raw/functions/messages/get_suggested_dialog_filters.py +71 -0
  1804. pyrogram/raw/functions/messages/get_top_reactions.py +84 -0
  1805. pyrogram/raw/functions/messages/get_unread_mentions.py +127 -0
  1806. pyrogram/raw/functions/messages/get_unread_poll_votes.py +127 -0
  1807. pyrogram/raw/functions/messages/get_unread_reactions.py +137 -0
  1808. pyrogram/raw/functions/messages/get_web_page.py +84 -0
  1809. pyrogram/raw/functions/messages/get_web_page_preview.py +88 -0
  1810. pyrogram/raw/functions/messages/hide_all_chat_join_requests.py +93 -0
  1811. pyrogram/raw/functions/messages/hide_chat_join_request.py +92 -0
  1812. pyrogram/raw/functions/messages/hide_peer_settings_bar.py +76 -0
  1813. pyrogram/raw/functions/messages/import_chat_invite.py +76 -0
  1814. pyrogram/raw/functions/messages/init_history_import.py +92 -0
  1815. pyrogram/raw/functions/messages/install_sticker_set.py +84 -0
  1816. pyrogram/raw/functions/messages/mark_dialog_unread.py +94 -0
  1817. pyrogram/raw/functions/messages/migrate_chat.py +76 -0
  1818. pyrogram/raw/functions/messages/prolong_web_view.py +120 -0
  1819. pyrogram/raw/functions/messages/rate_transcribed_audio.py +100 -0
  1820. pyrogram/raw/functions/messages/read_discussion.py +92 -0
  1821. pyrogram/raw/functions/messages/read_encrypted_history.py +84 -0
  1822. pyrogram/raw/functions/messages/read_featured_stickers.py +76 -0
  1823. pyrogram/raw/functions/messages/read_history.py +84 -0
  1824. pyrogram/raw/functions/messages/read_mentions.py +87 -0
  1825. pyrogram/raw/functions/messages/read_message_contents.py +76 -0
  1826. pyrogram/raw/functions/messages/read_poll_votes.py +87 -0
  1827. pyrogram/raw/functions/messages/read_reactions.py +97 -0
  1828. pyrogram/raw/functions/messages/read_saved_history.py +92 -0
  1829. pyrogram/raw/functions/messages/received_messages.py +76 -0
  1830. pyrogram/raw/functions/messages/received_queue.py +76 -0
  1831. pyrogram/raw/functions/messages/reorder_pinned_dialogs.py +92 -0
  1832. pyrogram/raw/functions/messages/reorder_pinned_forum_topics.py +92 -0
  1833. pyrogram/raw/functions/messages/reorder_pinned_saved_dialogs.py +84 -0
  1834. pyrogram/raw/functions/messages/reorder_quick_replies.py +76 -0
  1835. pyrogram/raw/functions/messages/reorder_sticker_sets.py +90 -0
  1836. pyrogram/raw/functions/messages/report.py +100 -0
  1837. pyrogram/raw/functions/messages/report_encrypted_spam.py +76 -0
  1838. pyrogram/raw/functions/messages/report_messages_delivery.py +92 -0
  1839. pyrogram/raw/functions/messages/report_music_listen.py +84 -0
  1840. pyrogram/raw/functions/messages/report_reaction.py +92 -0
  1841. pyrogram/raw/functions/messages/report_read_metrics.py +84 -0
  1842. pyrogram/raw/functions/messages/report_spam.py +76 -0
  1843. pyrogram/raw/functions/messages/report_sponsored_message.py +84 -0
  1844. pyrogram/raw/functions/messages/request_app_web_view.py +131 -0
  1845. pyrogram/raw/functions/messages/request_chat_join_web_view.py +96 -0
  1846. pyrogram/raw/functions/messages/request_encryption.py +92 -0
  1847. pyrogram/raw/functions/messages/request_main_web_view.py +125 -0
  1848. pyrogram/raw/functions/messages/request_simple_web_view.py +138 -0
  1849. pyrogram/raw/functions/messages/request_url_auth.py +116 -0
  1850. pyrogram/raw/functions/messages/request_web_view.py +166 -0
  1851. pyrogram/raw/functions/messages/save_default_send_as.py +84 -0
  1852. pyrogram/raw/functions/messages/save_draft.py +157 -0
  1853. pyrogram/raw/functions/messages/save_gif.py +84 -0
  1854. pyrogram/raw/functions/messages/save_prepared_inline_message.py +96 -0
  1855. pyrogram/raw/functions/messages/save_recent_sticker.py +92 -0
  1856. pyrogram/raw/functions/messages/search.py +197 -0
  1857. pyrogram/raw/functions/messages/search_custom_emoji.py +84 -0
  1858. pyrogram/raw/functions/messages/search_emoji_sticker_sets.py +92 -0
  1859. pyrogram/raw/functions/messages/search_global.py +171 -0
  1860. pyrogram/raw/functions/messages/search_sent_media.py +92 -0
  1861. pyrogram/raw/functions/messages/search_sticker_sets.py +92 -0
  1862. pyrogram/raw/functions/messages/search_stickers.py +124 -0
  1863. pyrogram/raw/functions/messages/send_bot_requested_peer.py +112 -0
  1864. pyrogram/raw/functions/messages/send_encrypted.py +100 -0
  1865. pyrogram/raw/functions/messages/send_encrypted_file.py +108 -0
  1866. pyrogram/raw/functions/messages/send_encrypted_service.py +92 -0
  1867. pyrogram/raw/functions/messages/send_inline_bot_result.py +174 -0
  1868. pyrogram/raw/functions/messages/send_media.py +240 -0
  1869. pyrogram/raw/functions/messages/send_message.py +248 -0
  1870. pyrogram/raw/functions/messages/send_multi_media.py +185 -0
  1871. pyrogram/raw/functions/messages/send_paid_reaction.py +112 -0
  1872. pyrogram/raw/functions/messages/send_quick_reply_messages.py +100 -0
  1873. pyrogram/raw/functions/messages/send_reaction.py +108 -0
  1874. pyrogram/raw/functions/messages/send_scheduled_messages.py +84 -0
  1875. pyrogram/raw/functions/messages/send_screenshot_notification.py +92 -0
  1876. pyrogram/raw/functions/messages/send_vote.py +92 -0
  1877. pyrogram/raw/functions/messages/send_web_view_data.py +100 -0
  1878. pyrogram/raw/functions/messages/send_web_view_result_message.py +84 -0
  1879. pyrogram/raw/functions/messages/set_bot_callback_answer.py +110 -0
  1880. pyrogram/raw/functions/messages/set_bot_guest_chat_result.py +84 -0
  1881. pyrogram/raw/functions/messages/set_bot_precheckout_results.py +93 -0
  1882. pyrogram/raw/functions/messages/set_bot_shipping_results.py +97 -0
  1883. pyrogram/raw/functions/messages/set_chat_available_reactions.py +104 -0
  1884. pyrogram/raw/functions/messages/set_chat_theme.py +84 -0
  1885. pyrogram/raw/functions/messages/set_chat_wall_paper.py +119 -0
  1886. pyrogram/raw/functions/messages/set_default_history_ttl.py +76 -0
  1887. pyrogram/raw/functions/messages/set_default_reaction.py +76 -0
  1888. pyrogram/raw/functions/messages/set_encrypted_typing.py +84 -0
  1889. pyrogram/raw/functions/messages/set_game_score.py +114 -0
  1890. pyrogram/raw/functions/messages/set_history_ttl.py +84 -0
  1891. pyrogram/raw/functions/messages/set_inline_bot_results.py +135 -0
  1892. pyrogram/raw/functions/messages/set_inline_game_score.py +106 -0
  1893. pyrogram/raw/functions/messages/set_typing.py +95 -0
  1894. pyrogram/raw/functions/messages/start_bot.py +100 -0
  1895. pyrogram/raw/functions/messages/start_history_import.py +84 -0
  1896. pyrogram/raw/functions/messages/summarize_text.py +104 -0
  1897. pyrogram/raw/functions/messages/toggle_bot_in_attach_menu.py +92 -0
  1898. pyrogram/raw/functions/messages/toggle_dialog_filter_tags.py +76 -0
  1899. pyrogram/raw/functions/messages/toggle_dialog_pin.py +84 -0
  1900. pyrogram/raw/functions/messages/toggle_no_forwards.py +95 -0
  1901. pyrogram/raw/functions/messages/toggle_paid_reaction_privacy.py +92 -0
  1902. pyrogram/raw/functions/messages/toggle_peer_translations.py +84 -0
  1903. pyrogram/raw/functions/messages/toggle_saved_dialog_pin.py +84 -0
  1904. pyrogram/raw/functions/messages/toggle_sticker_sets.py +96 -0
  1905. pyrogram/raw/functions/messages/toggle_suggested_post_approval.py +110 -0
  1906. pyrogram/raw/functions/messages/toggle_todo_completed.py +100 -0
  1907. pyrogram/raw/functions/messages/transcribe_audio.py +84 -0
  1908. pyrogram/raw/functions/messages/translate_rich_message.py +117 -0
  1909. pyrogram/raw/functions/messages/translate_text.py +117 -0
  1910. pyrogram/raw/functions/messages/uninstall_sticker_set.py +76 -0
  1911. pyrogram/raw/functions/messages/unpin_all_messages.py +97 -0
  1912. pyrogram/raw/functions/messages/update_dialog_filter.py +88 -0
  1913. pyrogram/raw/functions/messages/update_dialog_filters_order.py +76 -0
  1914. pyrogram/raw/functions/messages/update_pinned_forum_topic.py +92 -0
  1915. pyrogram/raw/functions/messages/update_pinned_message.py +104 -0
  1916. pyrogram/raw/functions/messages/update_saved_reaction_tag.py +87 -0
  1917. pyrogram/raw/functions/messages/upload_encrypted_file.py +84 -0
  1918. pyrogram/raw/functions/messages/upload_imported_media.py +100 -0
  1919. pyrogram/raw/functions/messages/upload_media.py +95 -0
  1920. pyrogram/raw/functions/messages/view_sponsored_message.py +76 -0
  1921. pyrogram/raw/functions/payments/__init__.py +89 -0
  1922. pyrogram/raw/functions/payments/apply_gift_code.py +76 -0
  1923. pyrogram/raw/functions/payments/assign_app_store_transaction.py +84 -0
  1924. pyrogram/raw/functions/payments/assign_play_market_transaction.py +84 -0
  1925. pyrogram/raw/functions/payments/bot_cancel_stars_subscription.py +92 -0
  1926. pyrogram/raw/functions/payments/can_purchase_store.py +76 -0
  1927. pyrogram/raw/functions/payments/change_stars_subscription.py +95 -0
  1928. pyrogram/raw/functions/payments/check_can_send_gift.py +76 -0
  1929. pyrogram/raw/functions/payments/check_gift_code.py +76 -0
  1930. pyrogram/raw/functions/payments/clear_saved_info.py +82 -0
  1931. pyrogram/raw/functions/payments/connect_star_ref_bot.py +84 -0
  1932. pyrogram/raw/functions/payments/convert_star_gift.py +76 -0
  1933. pyrogram/raw/functions/payments/craft_star_gift.py +76 -0
  1934. pyrogram/raw/functions/payments/create_star_gift_collection.py +92 -0
  1935. pyrogram/raw/functions/payments/delete_star_gift_collection.py +84 -0
  1936. pyrogram/raw/functions/payments/edit_connected_star_ref_bot.py +92 -0
  1937. pyrogram/raw/functions/payments/export_invoice.py +76 -0
  1938. pyrogram/raw/functions/payments/fulfill_stars_subscription.py +84 -0
  1939. pyrogram/raw/functions/payments/get_bank_card_data.py +76 -0
  1940. pyrogram/raw/functions/payments/get_connected_star_ref_bot.py +84 -0
  1941. pyrogram/raw/functions/payments/get_connected_star_ref_bots.py +104 -0
  1942. pyrogram/raw/functions/payments/get_craft_star_gifts.py +92 -0
  1943. pyrogram/raw/functions/payments/get_giveaway_info.py +84 -0
  1944. pyrogram/raw/functions/payments/get_payment_form.py +88 -0
  1945. pyrogram/raw/functions/payments/get_payment_receipt.py +84 -0
  1946. pyrogram/raw/functions/payments/get_premium_gift_code_options.py +80 -0
  1947. pyrogram/raw/functions/payments/get_resale_star_gifts.py +137 -0
  1948. pyrogram/raw/functions/payments/get_saved_info.py +71 -0
  1949. pyrogram/raw/functions/payments/get_saved_star_gift.py +76 -0
  1950. pyrogram/raw/functions/payments/get_saved_star_gifts.py +157 -0
  1951. pyrogram/raw/functions/payments/get_star_gift_active_auctions.py +76 -0
  1952. pyrogram/raw/functions/payments/get_star_gift_auction_acquired_gifts.py +76 -0
  1953. pyrogram/raw/functions/payments/get_star_gift_auction_state.py +84 -0
  1954. pyrogram/raw/functions/payments/get_star_gift_collections.py +84 -0
  1955. pyrogram/raw/functions/payments/get_star_gift_upgrade_attributes.py +76 -0
  1956. pyrogram/raw/functions/payments/get_star_gift_upgrade_preview.py +76 -0
  1957. pyrogram/raw/functions/payments/get_star_gift_withdrawal_url.py +84 -0
  1958. pyrogram/raw/functions/payments/get_star_gifts.py +76 -0
  1959. pyrogram/raw/functions/payments/get_stars_gift_options.py +80 -0
  1960. pyrogram/raw/functions/payments/get_stars_giveaway_options.py +71 -0
  1961. pyrogram/raw/functions/payments/get_stars_revenue_ads_account_url.py +76 -0
  1962. pyrogram/raw/functions/payments/get_stars_revenue_stats.py +90 -0
  1963. pyrogram/raw/functions/payments/get_stars_revenue_withdrawal_url.py +101 -0
  1964. pyrogram/raw/functions/payments/get_stars_status.py +84 -0
  1965. pyrogram/raw/functions/payments/get_stars_subscriptions.py +92 -0
  1966. pyrogram/raw/functions/payments/get_stars_topup_options.py +71 -0
  1967. pyrogram/raw/functions/payments/get_stars_transactions.py +127 -0
  1968. pyrogram/raw/functions/payments/get_stars_transactions_by_id.py +92 -0
  1969. pyrogram/raw/functions/payments/get_suggested_star_ref_bots.py +106 -0
  1970. pyrogram/raw/functions/payments/get_unique_star_gift.py +76 -0
  1971. pyrogram/raw/functions/payments/get_unique_star_gift_value_info.py +76 -0
  1972. pyrogram/raw/functions/payments/launch_prepaid_giveaway.py +92 -0
  1973. pyrogram/raw/functions/payments/refund_stars_charge.py +84 -0
  1974. pyrogram/raw/functions/payments/reorder_star_gift_collections.py +84 -0
  1975. pyrogram/raw/functions/payments/resolve_star_gift_offer.py +84 -0
  1976. pyrogram/raw/functions/payments/save_star_gift.py +84 -0
  1977. pyrogram/raw/functions/payments/send_payment_form.py +121 -0
  1978. pyrogram/raw/functions/payments/send_star_gift_offer.py +119 -0
  1979. pyrogram/raw/functions/payments/send_stars_form.py +84 -0
  1980. pyrogram/raw/functions/payments/toggle_chat_star_gift_notifications.py +84 -0
  1981. pyrogram/raw/functions/payments/toggle_star_gifts_pinned_to_top.py +84 -0
  1982. pyrogram/raw/functions/payments/transfer_star_gift.py +84 -0
  1983. pyrogram/raw/functions/payments/update_star_gift_collection.py +125 -0
  1984. pyrogram/raw/functions/payments/update_star_gift_price.py +84 -0
  1985. pyrogram/raw/functions/payments/upgrade_star_gift.py +84 -0
  1986. pyrogram/raw/functions/payments/validate_requested_info.py +92 -0
  1987. pyrogram/raw/functions/phone/__init__.py +67 -0
  1988. pyrogram/raw/functions/phone/accept_call.py +92 -0
  1989. pyrogram/raw/functions/phone/check_group_call.py +84 -0
  1990. pyrogram/raw/functions/phone/confirm_call.py +100 -0
  1991. pyrogram/raw/functions/phone/create_conference_call.py +124 -0
  1992. pyrogram/raw/functions/phone/create_group_call.py +110 -0
  1993. pyrogram/raw/functions/phone/decline_conference_call_invite.py +76 -0
  1994. pyrogram/raw/functions/phone/delete_conference_call_participants.py +106 -0
  1995. pyrogram/raw/functions/phone/delete_group_call_messages.py +92 -0
  1996. pyrogram/raw/functions/phone/delete_group_call_participant_messages.py +92 -0
  1997. pyrogram/raw/functions/phone/discard_call.py +108 -0
  1998. pyrogram/raw/functions/phone/discard_group_call.py +76 -0
  1999. pyrogram/raw/functions/phone/edit_group_call_participant.py +140 -0
  2000. pyrogram/raw/functions/phone/edit_group_call_title.py +84 -0
  2001. pyrogram/raw/functions/phone/export_group_call_invite.py +84 -0
  2002. pyrogram/raw/functions/phone/get_call_config.py +71 -0
  2003. pyrogram/raw/functions/phone/get_group_call.py +84 -0
  2004. pyrogram/raw/functions/phone/get_group_call_chain_blocks.py +100 -0
  2005. pyrogram/raw/functions/phone/get_group_call_join_as.py +76 -0
  2006. pyrogram/raw/functions/phone/get_group_call_stars.py +76 -0
  2007. pyrogram/raw/functions/phone/get_group_call_stream_channels.py +76 -0
  2008. pyrogram/raw/functions/phone/get_group_call_stream_rtmp_url.py +92 -0
  2009. pyrogram/raw/functions/phone/get_group_participants.py +108 -0
  2010. pyrogram/raw/functions/phone/invite_conference_call_participant.py +92 -0
  2011. pyrogram/raw/functions/phone/invite_to_group_call.py +84 -0
  2012. pyrogram/raw/functions/phone/join_group_call.py +133 -0
  2013. pyrogram/raw/functions/phone/join_group_call_presentation.py +84 -0
  2014. pyrogram/raw/functions/phone/leave_group_call.py +84 -0
  2015. pyrogram/raw/functions/phone/leave_group_call_presentation.py +76 -0
  2016. pyrogram/raw/functions/phone/received_call.py +76 -0
  2017. pyrogram/raw/functions/phone/request_call.py +108 -0
  2018. pyrogram/raw/functions/phone/save_call_debug.py +84 -0
  2019. pyrogram/raw/functions/phone/save_call_log.py +84 -0
  2020. pyrogram/raw/functions/phone/save_default_group_call_join_as.py +84 -0
  2021. pyrogram/raw/functions/phone/save_default_send_as.py +84 -0
  2022. pyrogram/raw/functions/phone/send_conference_call_broadcast.py +84 -0
  2023. pyrogram/raw/functions/phone/send_group_call_encrypted_message.py +84 -0
  2024. pyrogram/raw/functions/phone/send_group_call_message.py +113 -0
  2025. pyrogram/raw/functions/phone/send_signaling_data.py +84 -0
  2026. pyrogram/raw/functions/phone/set_call_rating.py +100 -0
  2027. pyrogram/raw/functions/phone/start_scheduled_group_call.py +76 -0
  2028. pyrogram/raw/functions/phone/toggle_group_call_record.py +108 -0
  2029. pyrogram/raw/functions/phone/toggle_group_call_settings.py +111 -0
  2030. pyrogram/raw/functions/phone/toggle_group_call_start_subscription.py +84 -0
  2031. pyrogram/raw/functions/photos/__init__.py +29 -0
  2032. pyrogram/raw/functions/photos/delete_photos.py +76 -0
  2033. pyrogram/raw/functions/photos/get_user_photos.py +100 -0
  2034. pyrogram/raw/functions/photos/update_profile_photo.py +94 -0
  2035. pyrogram/raw/functions/photos/upload_contact_profile_photo.py +129 -0
  2036. pyrogram/raw/functions/photos/upload_profile_photo.py +125 -0
  2037. pyrogram/raw/functions/ping.py +76 -0
  2038. pyrogram/raw/functions/ping_delay_disconnect.py +84 -0
  2039. pyrogram/raw/functions/premium/__init__.py +29 -0
  2040. pyrogram/raw/functions/premium/apply_boost.py +88 -0
  2041. pyrogram/raw/functions/premium/get_boosts_list.py +100 -0
  2042. pyrogram/raw/functions/premium/get_boosts_status.py +76 -0
  2043. pyrogram/raw/functions/premium/get_my_boosts.py +71 -0
  2044. pyrogram/raw/functions/premium/get_user_boosts.py +84 -0
  2045. pyrogram/raw/functions/req_dh_params.py +116 -0
  2046. pyrogram/raw/functions/req_pq.py +76 -0
  2047. pyrogram/raw/functions/req_pq_multi.py +76 -0
  2048. pyrogram/raw/functions/rpc_drop_answer.py +76 -0
  2049. pyrogram/raw/functions/set_client_dh_params.py +92 -0
  2050. pyrogram/raw/functions/smsjobs/__init__.py +31 -0
  2051. pyrogram/raw/functions/smsjobs/finish_job.py +87 -0
  2052. pyrogram/raw/functions/smsjobs/get_sms_job.py +76 -0
  2053. pyrogram/raw/functions/smsjobs/get_status.py +71 -0
  2054. pyrogram/raw/functions/smsjobs/is_eligible_to_join.py +71 -0
  2055. pyrogram/raw/functions/smsjobs/join.py +71 -0
  2056. pyrogram/raw/functions/smsjobs/leave.py +71 -0
  2057. pyrogram/raw/functions/smsjobs/update_settings.py +76 -0
  2058. pyrogram/raw/functions/stats/__init__.py +32 -0
  2059. pyrogram/raw/functions/stats/get_broadcast_stats.py +84 -0
  2060. pyrogram/raw/functions/stats/get_megagroup_stats.py +84 -0
  2061. pyrogram/raw/functions/stats/get_message_public_forwards.py +100 -0
  2062. pyrogram/raw/functions/stats/get_message_stats.py +92 -0
  2063. pyrogram/raw/functions/stats/get_poll_stats.py +92 -0
  2064. pyrogram/raw/functions/stats/get_story_public_forwards.py +100 -0
  2065. pyrogram/raw/functions/stats/get_story_stats.py +92 -0
  2066. pyrogram/raw/functions/stats/load_async_graph.py +87 -0
  2067. pyrogram/raw/functions/stickers/__init__.py +35 -0
  2068. pyrogram/raw/functions/stickers/add_sticker_to_set.py +84 -0
  2069. pyrogram/raw/functions/stickers/change_sticker.py +106 -0
  2070. pyrogram/raw/functions/stickers/change_sticker_position.py +84 -0
  2071. pyrogram/raw/functions/stickers/check_short_name.py +76 -0
  2072. pyrogram/raw/functions/stickers/create_sticker_set.py +139 -0
  2073. pyrogram/raw/functions/stickers/delete_sticker_set.py +76 -0
  2074. pyrogram/raw/functions/stickers/remove_sticker_from_set.py +76 -0
  2075. pyrogram/raw/functions/stickers/rename_sticker_set.py +84 -0
  2076. pyrogram/raw/functions/stickers/replace_sticker.py +84 -0
  2077. pyrogram/raw/functions/stickers/set_sticker_set_thumb.py +97 -0
  2078. pyrogram/raw/functions/stickers/suggest_short_name.py +76 -0
  2079. pyrogram/raw/functions/stories/__init__.py +57 -0
  2080. pyrogram/raw/functions/stories/activate_stealth_mode.py +82 -0
  2081. pyrogram/raw/functions/stories/can_send_story.py +76 -0
  2082. pyrogram/raw/functions/stories/create_album.py +92 -0
  2083. pyrogram/raw/functions/stories/delete_album.py +84 -0
  2084. pyrogram/raw/functions/stories/delete_stories.py +84 -0
  2085. pyrogram/raw/functions/stories/edit_story.py +145 -0
  2086. pyrogram/raw/functions/stories/export_story_link.py +84 -0
  2087. pyrogram/raw/functions/stories/get_album_stories.py +100 -0
  2088. pyrogram/raw/functions/stories/get_albums.py +84 -0
  2089. pyrogram/raw/functions/stories/get_all_read_peer_stories.py +71 -0
  2090. pyrogram/raw/functions/stories/get_all_stories.py +91 -0
  2091. pyrogram/raw/functions/stories/get_chats_to_send.py +71 -0
  2092. pyrogram/raw/functions/stories/get_peer_max_i_ds.py +76 -0
  2093. pyrogram/raw/functions/stories/get_peer_stories.py +76 -0
  2094. pyrogram/raw/functions/stories/get_pinned_stories.py +92 -0
  2095. pyrogram/raw/functions/stories/get_stories_archive.py +92 -0
  2096. pyrogram/raw/functions/stories/get_stories_by_id.py +84 -0
  2097. pyrogram/raw/functions/stories/get_stories_views.py +84 -0
  2098. pyrogram/raw/functions/stories/get_story_reactions_list.py +119 -0
  2099. pyrogram/raw/functions/stories/get_story_views_list.py +129 -0
  2100. pyrogram/raw/functions/stories/increment_story_views.py +84 -0
  2101. pyrogram/raw/functions/stories/read_stories.py +84 -0
  2102. pyrogram/raw/functions/stories/reorder_albums.py +84 -0
  2103. pyrogram/raw/functions/stories/report.py +100 -0
  2104. pyrogram/raw/functions/stories/search_posts.py +115 -0
  2105. pyrogram/raw/functions/stories/send_reaction.py +100 -0
  2106. pyrogram/raw/functions/stories/send_story.py +197 -0
  2107. pyrogram/raw/functions/stories/start_live.py +149 -0
  2108. pyrogram/raw/functions/stories/toggle_all_stories_hidden.py +76 -0
  2109. pyrogram/raw/functions/stories/toggle_peer_stories_hidden.py +84 -0
  2110. pyrogram/raw/functions/stories/toggle_pinned.py +92 -0
  2111. pyrogram/raw/functions/stories/toggle_pinned_to_top.py +84 -0
  2112. pyrogram/raw/functions/stories/update_album.py +125 -0
  2113. pyrogram/raw/functions/updates/__init__.py +27 -0
  2114. pyrogram/raw/functions/updates/get_channel_difference.py +108 -0
  2115. pyrogram/raw/functions/updates/get_difference.py +121 -0
  2116. pyrogram/raw/functions/updates/get_state.py +71 -0
  2117. pyrogram/raw/functions/upload/__init__.py +32 -0
  2118. pyrogram/raw/functions/upload/get_cdn_file.py +92 -0
  2119. pyrogram/raw/functions/upload/get_cdn_file_hashes.py +84 -0
  2120. pyrogram/raw/functions/upload/get_file.py +106 -0
  2121. pyrogram/raw/functions/upload/get_file_hashes.py +84 -0
  2122. pyrogram/raw/functions/upload/get_web_file.py +92 -0
  2123. pyrogram/raw/functions/upload/reupload_cdn_file.py +84 -0
  2124. pyrogram/raw/functions/upload/save_big_file_part.py +100 -0
  2125. pyrogram/raw/functions/upload/save_file_part.py +92 -0
  2126. pyrogram/raw/functions/users/__init__.py +31 -0
  2127. pyrogram/raw/functions/users/get_full_user.py +76 -0
  2128. pyrogram/raw/functions/users/get_requirements_to_contact.py +76 -0
  2129. pyrogram/raw/functions/users/get_saved_music.py +100 -0
  2130. pyrogram/raw/functions/users/get_saved_music_by_id.py +84 -0
  2131. pyrogram/raw/functions/users/get_users.py +76 -0
  2132. pyrogram/raw/functions/users/set_secure_value_errors.py +84 -0
  2133. pyrogram/raw/functions/users/suggest_birthday.py +84 -0
  2134. pyrogram/raw/types/__init__.py +1382 -0
  2135. pyrogram/raw/types/access_point_rule.py +92 -0
  2136. pyrogram/raw/types/account/__init__.py +64 -0
  2137. pyrogram/raw/types/account/authorization_form.py +120 -0
  2138. pyrogram/raw/types/account/authorizations.py +93 -0
  2139. pyrogram/raw/types/account/auto_download_settings.py +101 -0
  2140. pyrogram/raw/types/account/auto_save_settings.py +125 -0
  2141. pyrogram/raw/types/account/business_chat_links.py +101 -0
  2142. pyrogram/raw/types/account/chat_themes.py +120 -0
  2143. pyrogram/raw/types/account/chat_themes_not_modified.py +80 -0
  2144. pyrogram/raw/types/account/connected_bots.py +93 -0
  2145. pyrogram/raw/types/account/content_settings.py +91 -0
  2146. pyrogram/raw/types/account/email_verified.py +85 -0
  2147. pyrogram/raw/types/account/email_verified_login.py +93 -0
  2148. pyrogram/raw/types/account/emoji_statuses.py +96 -0
  2149. pyrogram/raw/types/account/emoji_statuses_not_modified.py +83 -0
  2150. pyrogram/raw/types/account/paid_messages_revenue.py +85 -0
  2151. pyrogram/raw/types/account/passkey_registration_options.py +85 -0
  2152. pyrogram/raw/types/account/passkeys.py +85 -0
  2153. pyrogram/raw/types/account/password.py +185 -0
  2154. pyrogram/raw/types/account/password_input_settings.py +117 -0
  2155. pyrogram/raw/types/account/password_settings.py +98 -0
  2156. pyrogram/raw/types/account/privacy_rules.py +102 -0
  2157. pyrogram/raw/types/account/reset_password_failed_wait.py +85 -0
  2158. pyrogram/raw/types/account/reset_password_ok.py +80 -0
  2159. pyrogram/raw/types/account/reset_password_requested_wait.py +85 -0
  2160. pyrogram/raw/types/account/resolved_business_chat_links.py +121 -0
  2161. pyrogram/raw/types/account/saved_music_ids.py +85 -0
  2162. pyrogram/raw/types/account/saved_music_ids_not_modified.py +80 -0
  2163. pyrogram/raw/types/account/saved_ringtone.py +80 -0
  2164. pyrogram/raw/types/account/saved_ringtone_converted.py +85 -0
  2165. pyrogram/raw/types/account/saved_ringtones.py +93 -0
  2166. pyrogram/raw/types/account/saved_ringtones_not_modified.py +80 -0
  2167. pyrogram/raw/types/account/sent_email_code.py +93 -0
  2168. pyrogram/raw/types/account/takeout.py +85 -0
  2169. pyrogram/raw/types/account/themes.py +94 -0
  2170. pyrogram/raw/types/account/themes_not_modified.py +81 -0
  2171. pyrogram/raw/types/account/tmp_password.py +93 -0
  2172. pyrogram/raw/types/account/wall_papers.py +93 -0
  2173. pyrogram/raw/types/account/wall_papers_not_modified.py +80 -0
  2174. pyrogram/raw/types/account/web_authorizations.py +93 -0
  2175. pyrogram/raw/types/account/web_browser_settings.py +117 -0
  2176. pyrogram/raw/types/account/web_browser_settings_not_modified.py +82 -0
  2177. pyrogram/raw/types/account_days_ttl.py +85 -0
  2178. pyrogram/raw/types/ai_compose_tone.py +164 -0
  2179. pyrogram/raw/types/ai_compose_tone_default.py +102 -0
  2180. pyrogram/raw/types/ai_compose_tone_example.py +93 -0
  2181. pyrogram/raw/types/aicompose/__init__.py +26 -0
  2182. pyrogram/raw/types/aicompose/tones.py +102 -0
  2183. pyrogram/raw/types/aicompose/tones_not_modified.py +81 -0
  2184. pyrogram/raw/types/attach_menu_bot.py +140 -0
  2185. pyrogram/raw/types/attach_menu_bot_icon.py +96 -0
  2186. pyrogram/raw/types/attach_menu_bot_icon_color.py +84 -0
  2187. pyrogram/raw/types/attach_menu_bots.py +101 -0
  2188. pyrogram/raw/types/attach_menu_bots_bot.py +93 -0
  2189. pyrogram/raw/types/attach_menu_bots_not_modified.py +80 -0
  2190. pyrogram/raw/types/attach_menu_peer_type_bot_pm.py +71 -0
  2191. pyrogram/raw/types/attach_menu_peer_type_broadcast.py +71 -0
  2192. pyrogram/raw/types/attach_menu_peer_type_chat.py +71 -0
  2193. pyrogram/raw/types/attach_menu_peer_type_pm.py +71 -0
  2194. pyrogram/raw/types/attach_menu_peer_type_same_bot_pm.py +71 -0
  2195. pyrogram/raw/types/auction_bid_level.py +92 -0
  2196. pyrogram/raw/types/auth/__init__.py +53 -0
  2197. pyrogram/raw/types/auth/authorization.py +129 -0
  2198. pyrogram/raw/types/auth/authorization_sign_up_required.py +98 -0
  2199. pyrogram/raw/types/auth/code_type_call.py +71 -0
  2200. pyrogram/raw/types/auth/code_type_flash_call.py +71 -0
  2201. pyrogram/raw/types/auth/code_type_fragment_sms.py +71 -0
  2202. pyrogram/raw/types/auth/code_type_missed_call.py +71 -0
  2203. pyrogram/raw/types/auth/code_type_sms.py +71 -0
  2204. pyrogram/raw/types/auth/exported_authorization.py +93 -0
  2205. pyrogram/raw/types/auth/firebase_pnv_intent.py +93 -0
  2206. pyrogram/raw/types/auth/logged_out.py +88 -0
  2207. pyrogram/raw/types/auth/login_token.py +94 -0
  2208. pyrogram/raw/types/auth/login_token_migrate_to.py +94 -0
  2209. pyrogram/raw/types/auth/login_token_success.py +86 -0
  2210. pyrogram/raw/types/auth/passkey_login_options.py +85 -0
  2211. pyrogram/raw/types/auth/password_recovery.py +85 -0
  2212. pyrogram/raw/types/auth/sent_code.py +120 -0
  2213. pyrogram/raw/types/auth/sent_code_payment_required.py +139 -0
  2214. pyrogram/raw/types/auth/sent_code_success.py +91 -0
  2215. pyrogram/raw/types/auth/sent_code_type_app.py +76 -0
  2216. pyrogram/raw/types/auth/sent_code_type_call.py +76 -0
  2217. pyrogram/raw/types/auth/sent_code_type_email_code.py +116 -0
  2218. pyrogram/raw/types/auth/sent_code_type_firebase_sms.py +123 -0
  2219. pyrogram/raw/types/auth/sent_code_type_flash_call.py +76 -0
  2220. pyrogram/raw/types/auth/sent_code_type_fragment_sms.py +84 -0
  2221. pyrogram/raw/types/auth/sent_code_type_missed_call.py +84 -0
  2222. pyrogram/raw/types/auth/sent_code_type_set_up_email_required.py +82 -0
  2223. pyrogram/raw/types/auth/sent_code_type_sms.py +76 -0
  2224. pyrogram/raw/types/auth/sent_code_type_sms_phrase.py +79 -0
  2225. pyrogram/raw/types/auth/sent_code_type_sms_word.py +79 -0
  2226. pyrogram/raw/types/authorization.py +211 -0
  2227. pyrogram/raw/types/auto_download_settings.py +148 -0
  2228. pyrogram/raw/types/auto_save_exception.py +84 -0
  2229. pyrogram/raw/types/auto_save_settings.py +91 -0
  2230. pyrogram/raw/types/available_effect.py +118 -0
  2231. pyrogram/raw/types/available_reaction.py +158 -0
  2232. pyrogram/raw/types/bad_msg_notification.py +92 -0
  2233. pyrogram/raw/types/bad_server_salt.py +100 -0
  2234. pyrogram/raw/types/bank_card_open_url.py +84 -0
  2235. pyrogram/raw/types/base_theme_arctic.py +71 -0
  2236. pyrogram/raw/types/base_theme_classic.py +71 -0
  2237. pyrogram/raw/types/base_theme_day.py +71 -0
  2238. pyrogram/raw/types/base_theme_night.py +71 -0
  2239. pyrogram/raw/types/base_theme_tinted.py +71 -0
  2240. pyrogram/raw/types/bind_auth_key_inner.py +108 -0
  2241. pyrogram/raw/types/birthday.py +95 -0
  2242. pyrogram/raw/types/boost.py +157 -0
  2243. pyrogram/raw/types/bot_app.py +136 -0
  2244. pyrogram/raw/types/bot_app_not_modified.py +71 -0
  2245. pyrogram/raw/types/bot_app_settings.py +115 -0
  2246. pyrogram/raw/types/bot_business_connection.py +118 -0
  2247. pyrogram/raw/types/bot_command.py +101 -0
  2248. pyrogram/raw/types/bot_command_scope_chat_admins.py +71 -0
  2249. pyrogram/raw/types/bot_command_scope_chats.py +71 -0
  2250. pyrogram/raw/types/bot_command_scope_default.py +71 -0
  2251. pyrogram/raw/types/bot_command_scope_peer.py +76 -0
  2252. pyrogram/raw/types/bot_command_scope_peer_admins.py +76 -0
  2253. pyrogram/raw/types/bot_command_scope_peer_user.py +84 -0
  2254. pyrogram/raw/types/bot_command_scope_users.py +71 -0
  2255. pyrogram/raw/types/bot_info.py +163 -0
  2256. pyrogram/raw/types/bot_inline_media_result.py +132 -0
  2257. pyrogram/raw/types/bot_inline_message_media_auto.py +104 -0
  2258. pyrogram/raw/types/bot_inline_message_media_contact.py +112 -0
  2259. pyrogram/raw/types/bot_inline_message_media_geo.py +115 -0
  2260. pyrogram/raw/types/bot_inline_message_media_invoice.py +134 -0
  2261. pyrogram/raw/types/bot_inline_message_media_venue.py +128 -0
  2262. pyrogram/raw/types/bot_inline_message_media_web_page.py +136 -0
  2263. pyrogram/raw/types/bot_inline_message_rich_message.py +88 -0
  2264. pyrogram/raw/types/bot_inline_message_text.py +110 -0
  2265. pyrogram/raw/types/bot_inline_result.py +141 -0
  2266. pyrogram/raw/types/bot_menu_button.py +93 -0
  2267. pyrogram/raw/types/bot_menu_button_commands.py +80 -0
  2268. pyrogram/raw/types/bot_menu_button_default.py +80 -0
  2269. pyrogram/raw/types/bot_preview_media.py +95 -0
  2270. pyrogram/raw/types/bot_verification.py +92 -0
  2271. pyrogram/raw/types/bot_verifier_settings.py +101 -0
  2272. pyrogram/raw/types/bots/__init__.py +30 -0
  2273. pyrogram/raw/types/bots/access_settings.py +95 -0
  2274. pyrogram/raw/types/bots/bot_info.py +101 -0
  2275. pyrogram/raw/types/bots/exported_bot_token.py +85 -0
  2276. pyrogram/raw/types/bots/popular_app_bots.py +96 -0
  2277. pyrogram/raw/types/bots/preview_info.py +93 -0
  2278. pyrogram/raw/types/bots/requested_button.py +85 -0
  2279. pyrogram/raw/types/business_away_message.py +100 -0
  2280. pyrogram/raw/types/business_away_message_schedule_always.py +71 -0
  2281. pyrogram/raw/types/business_away_message_schedule_custom.py +84 -0
  2282. pyrogram/raw/types/business_away_message_schedule_outside_work_hours.py +71 -0
  2283. pyrogram/raw/types/business_bot_recipients.py +120 -0
  2284. pyrogram/raw/types/business_bot_rights.py +154 -0
  2285. pyrogram/raw/types/business_chat_link.py +123 -0
  2286. pyrogram/raw/types/business_greeting_message.py +92 -0
  2287. pyrogram/raw/types/business_intro.py +96 -0
  2288. pyrogram/raw/types/business_location.py +88 -0
  2289. pyrogram/raw/types/business_recipients.py +110 -0
  2290. pyrogram/raw/types/business_weekly_open.py +84 -0
  2291. pyrogram/raw/types/business_work_hours.py +92 -0
  2292. pyrogram/raw/types/button_type_default.py +71 -0
  2293. pyrogram/raw/types/button_type_request_geo_location.py +71 -0
  2294. pyrogram/raw/types/button_type_request_peer.py +95 -0
  2295. pyrogram/raw/types/button_type_request_phone.py +71 -0
  2296. pyrogram/raw/types/button_type_request_poll.py +79 -0
  2297. pyrogram/raw/types/button_type_simple_web_view.py +76 -0
  2298. pyrogram/raw/types/cdn_config.py +85 -0
  2299. pyrogram/raw/types/cdn_public_key.py +84 -0
  2300. pyrogram/raw/types/channel.py +445 -0
  2301. pyrogram/raw/types/channel_admin_log_event.py +100 -0
  2302. pyrogram/raw/types/channel_admin_log_event_action_change_about.py +84 -0
  2303. pyrogram/raw/types/channel_admin_log_event_action_change_available_reactions.py +84 -0
  2304. pyrogram/raw/types/channel_admin_log_event_action_change_emoji_status.py +84 -0
  2305. pyrogram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py +84 -0
  2306. pyrogram/raw/types/channel_admin_log_event_action_change_history_ttl.py +84 -0
  2307. pyrogram/raw/types/channel_admin_log_event_action_change_linked_chat.py +84 -0
  2308. pyrogram/raw/types/channel_admin_log_event_action_change_location.py +84 -0
  2309. pyrogram/raw/types/channel_admin_log_event_action_change_peer_color.py +84 -0
  2310. pyrogram/raw/types/channel_admin_log_event_action_change_photo.py +84 -0
  2311. pyrogram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py +84 -0
  2312. pyrogram/raw/types/channel_admin_log_event_action_change_sticker_set.py +84 -0
  2313. pyrogram/raw/types/channel_admin_log_event_action_change_title.py +84 -0
  2314. pyrogram/raw/types/channel_admin_log_event_action_change_username.py +84 -0
  2315. pyrogram/raw/types/channel_admin_log_event_action_change_usernames.py +84 -0
  2316. pyrogram/raw/types/channel_admin_log_event_action_change_wallpaper.py +84 -0
  2317. pyrogram/raw/types/channel_admin_log_event_action_create_topic.py +76 -0
  2318. pyrogram/raw/types/channel_admin_log_event_action_default_banned_rights.py +84 -0
  2319. pyrogram/raw/types/channel_admin_log_event_action_delete_message.py +76 -0
  2320. pyrogram/raw/types/channel_admin_log_event_action_delete_topic.py +76 -0
  2321. pyrogram/raw/types/channel_admin_log_event_action_discard_group_call.py +76 -0
  2322. pyrogram/raw/types/channel_admin_log_event_action_edit_message.py +84 -0
  2323. pyrogram/raw/types/channel_admin_log_event_action_edit_topic.py +84 -0
  2324. pyrogram/raw/types/channel_admin_log_event_action_exported_invite_delete.py +76 -0
  2325. pyrogram/raw/types/channel_admin_log_event_action_exported_invite_edit.py +84 -0
  2326. pyrogram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py +76 -0
  2327. pyrogram/raw/types/channel_admin_log_event_action_participant_edit_rank.py +92 -0
  2328. pyrogram/raw/types/channel_admin_log_event_action_participant_invite.py +76 -0
  2329. pyrogram/raw/types/channel_admin_log_event_action_participant_join.py +71 -0
  2330. pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py +84 -0
  2331. pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_request.py +84 -0
  2332. pyrogram/raw/types/channel_admin_log_event_action_participant_leave.py +71 -0
  2333. pyrogram/raw/types/channel_admin_log_event_action_participant_mute.py +76 -0
  2334. pyrogram/raw/types/channel_admin_log_event_action_participant_sub_extend.py +84 -0
  2335. pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py +84 -0
  2336. pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py +84 -0
  2337. pyrogram/raw/types/channel_admin_log_event_action_participant_unmute.py +76 -0
  2338. pyrogram/raw/types/channel_admin_log_event_action_participant_volume.py +76 -0
  2339. pyrogram/raw/types/channel_admin_log_event_action_pin_topic.py +90 -0
  2340. pyrogram/raw/types/channel_admin_log_event_action_send_message.py +76 -0
  2341. pyrogram/raw/types/channel_admin_log_event_action_start_group_call.py +76 -0
  2342. pyrogram/raw/types/channel_admin_log_event_action_stop_poll.py +76 -0
  2343. pyrogram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py +76 -0
  2344. pyrogram/raw/types/channel_admin_log_event_action_toggle_autotranslation.py +76 -0
  2345. pyrogram/raw/types/channel_admin_log_event_action_toggle_forum.py +76 -0
  2346. pyrogram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py +76 -0
  2347. pyrogram/raw/types/channel_admin_log_event_action_toggle_invites.py +76 -0
  2348. pyrogram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py +76 -0
  2349. pyrogram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py +76 -0
  2350. pyrogram/raw/types/channel_admin_log_event_action_toggle_signature_profiles.py +76 -0
  2351. pyrogram/raw/types/channel_admin_log_event_action_toggle_signatures.py +76 -0
  2352. pyrogram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py +84 -0
  2353. pyrogram/raw/types/channel_admin_log_event_action_update_pinned.py +76 -0
  2354. pyrogram/raw/types/channel_admin_log_events_filter.py +190 -0
  2355. pyrogram/raw/types/channel_forbidden.py +121 -0
  2356. pyrogram/raw/types/channel_full.py +625 -0
  2357. pyrogram/raw/types/channel_location.py +84 -0
  2358. pyrogram/raw/types/channel_location_empty.py +71 -0
  2359. pyrogram/raw/types/channel_messages_filter.py +84 -0
  2360. pyrogram/raw/types/channel_messages_filter_empty.py +71 -0
  2361. pyrogram/raw/types/channel_participant.py +104 -0
  2362. pyrogram/raw/types/channel_participant_admin.py +132 -0
  2363. pyrogram/raw/types/channel_participant_banned.py +117 -0
  2364. pyrogram/raw/types/channel_participant_creator.py +95 -0
  2365. pyrogram/raw/types/channel_participant_left.py +76 -0
  2366. pyrogram/raw/types/channel_participant_self.py +118 -0
  2367. pyrogram/raw/types/channel_participants_admins.py +71 -0
  2368. pyrogram/raw/types/channel_participants_banned.py +76 -0
  2369. pyrogram/raw/types/channel_participants_bots.py +71 -0
  2370. pyrogram/raw/types/channel_participants_contacts.py +76 -0
  2371. pyrogram/raw/types/channel_participants_kicked.py +76 -0
  2372. pyrogram/raw/types/channel_participants_mentions.py +88 -0
  2373. pyrogram/raw/types/channel_participants_recent.py +71 -0
  2374. pyrogram/raw/types/channel_participants_search.py +76 -0
  2375. pyrogram/raw/types/channels/__init__.py +32 -0
  2376. pyrogram/raw/types/channels/admin_log_results.py +101 -0
  2377. pyrogram/raw/types/channels/channel_participant.py +101 -0
  2378. pyrogram/raw/types/channels/channel_participants.py +109 -0
  2379. pyrogram/raw/types/channels/channel_participants_not_modified.py +80 -0
  2380. pyrogram/raw/types/channels/send_as_peers.py +101 -0
  2381. pyrogram/raw/types/channels/sponsored_message_report_result_ads_hidden.py +80 -0
  2382. pyrogram/raw/types/channels/sponsored_message_report_result_choose_option.py +93 -0
  2383. pyrogram/raw/types/channels/sponsored_message_report_result_reported.py +80 -0
  2384. pyrogram/raw/types/chat.py +184 -0
  2385. pyrogram/raw/types/chat_admin_rights.py +184 -0
  2386. pyrogram/raw/types/chat_admin_with_invites.py +92 -0
  2387. pyrogram/raw/types/chat_banned_rights.py +216 -0
  2388. pyrogram/raw/types/chat_empty.py +76 -0
  2389. pyrogram/raw/types/chat_forbidden.py +84 -0
  2390. pyrogram/raw/types/chat_full.py +250 -0
  2391. pyrogram/raw/types/chat_invite.py +213 -0
  2392. pyrogram/raw/types/chat_invite_already.py +85 -0
  2393. pyrogram/raw/types/chat_invite_exported.py +194 -0
  2394. pyrogram/raw/types/chat_invite_importer.py +116 -0
  2395. pyrogram/raw/types/chat_invite_peek.py +93 -0
  2396. pyrogram/raw/types/chat_invite_public_join_requests.py +80 -0
  2397. pyrogram/raw/types/chat_onlines.py +85 -0
  2398. pyrogram/raw/types/chat_participant.py +103 -0
  2399. pyrogram/raw/types/chat_participant_admin.py +103 -0
  2400. pyrogram/raw/types/chat_participant_creator.py +87 -0
  2401. pyrogram/raw/types/chat_participants.py +92 -0
  2402. pyrogram/raw/types/chat_participants_forbidden.py +88 -0
  2403. pyrogram/raw/types/chat_photo.py +101 -0
  2404. pyrogram/raw/types/chat_photo_empty.py +71 -0
  2405. pyrogram/raw/types/chat_reactions_all.py +76 -0
  2406. pyrogram/raw/types/chat_reactions_none.py +71 -0
  2407. pyrogram/raw/types/chat_reactions_some.py +76 -0
  2408. pyrogram/raw/types/chat_theme.py +76 -0
  2409. pyrogram/raw/types/chat_theme_unique_gift.py +84 -0
  2410. pyrogram/raw/types/chatlists/__init__.py +29 -0
  2411. pyrogram/raw/types/chatlists/chatlist_invite.py +126 -0
  2412. pyrogram/raw/types/chatlists/chatlist_invite_already.py +117 -0
  2413. pyrogram/raw/types/chatlists/chatlist_updates.py +101 -0
  2414. pyrogram/raw/types/chatlists/exported_chatlist_invite.py +93 -0
  2415. pyrogram/raw/types/chatlists/exported_invites.py +101 -0
  2416. pyrogram/raw/types/client_dh_inner_data.py +100 -0
  2417. pyrogram/raw/types/code_settings.py +134 -0
  2418. pyrogram/raw/types/communities/__init__.py +26 -0
  2419. pyrogram/raw/types/communities/participant_joined_chats.py +109 -0
  2420. pyrogram/raw/types/communities/peer_link_requests.py +120 -0
  2421. pyrogram/raw/types/community.py +159 -0
  2422. pyrogram/raw/types/community_forbidden.py +95 -0
  2423. pyrogram/raw/types/community_full.py +129 -0
  2424. pyrogram/raw/types/community_peer.py +93 -0
  2425. pyrogram/raw/types/community_peer_request.py +100 -0
  2426. pyrogram/raw/types/config.py +457 -0
  2427. pyrogram/raw/types/connected_bot.py +121 -0
  2428. pyrogram/raw/types/connected_bot_star_ref.py +133 -0
  2429. pyrogram/raw/types/contact.py +84 -0
  2430. pyrogram/raw/types/contact_birthday.py +84 -0
  2431. pyrogram/raw/types/contact_status.py +93 -0
  2432. pyrogram/raw/types/contacts/__init__.py +37 -0
  2433. pyrogram/raw/types/contacts/blocked.py +101 -0
  2434. pyrogram/raw/types/contacts/blocked_slice.py +109 -0
  2435. pyrogram/raw/types/contacts/contact_birthdays.py +93 -0
  2436. pyrogram/raw/types/contacts/contacts.py +101 -0
  2437. pyrogram/raw/types/contacts/contacts_not_modified.py +80 -0
  2438. pyrogram/raw/types/contacts/found.py +109 -0
  2439. pyrogram/raw/types/contacts/imported_contacts.py +109 -0
  2440. pyrogram/raw/types/contacts/resolved_peer.py +102 -0
  2441. pyrogram/raw/types/contacts/sponsored_peers.py +101 -0
  2442. pyrogram/raw/types/contacts/sponsored_peers_empty.py +80 -0
  2443. pyrogram/raw/types/contacts/top_peers.py +101 -0
  2444. pyrogram/raw/types/contacts/top_peers_disabled.py +80 -0
  2445. pyrogram/raw/types/contacts/top_peers_not_modified.py +80 -0
  2446. pyrogram/raw/types/data_json.py +87 -0
  2447. pyrogram/raw/types/dc_option.py +139 -0
  2448. pyrogram/raw/types/default_history_ttl.py +85 -0
  2449. pyrogram/raw/types/destroy_auth_key_fail.py +80 -0
  2450. pyrogram/raw/types/destroy_auth_key_none.py +80 -0
  2451. pyrogram/raw/types/destroy_auth_key_ok.py +80 -0
  2452. pyrogram/raw/types/destroy_session_none.py +85 -0
  2453. pyrogram/raw/types/destroy_session_ok.py +85 -0
  2454. pyrogram/raw/types/dh_gen_fail.py +101 -0
  2455. pyrogram/raw/types/dh_gen_ok.py +101 -0
  2456. pyrogram/raw/types/dh_gen_retry.py +101 -0
  2457. pyrogram/raw/types/dialog.py +197 -0
  2458. pyrogram/raw/types/dialog_community.py +92 -0
  2459. pyrogram/raw/types/dialog_filter.py +182 -0
  2460. pyrogram/raw/types/dialog_filter_chatlist.py +132 -0
  2461. pyrogram/raw/types/dialog_filter_default.py +71 -0
  2462. pyrogram/raw/types/dialog_filter_suggested.py +93 -0
  2463. pyrogram/raw/types/dialog_folder.py +132 -0
  2464. pyrogram/raw/types/dialog_peer.py +85 -0
  2465. pyrogram/raw/types/dialog_peer_community.py +85 -0
  2466. pyrogram/raw/types/dialog_peer_folder.py +85 -0
  2467. pyrogram/raw/types/disallowed_gifts_settings.py +100 -0
  2468. pyrogram/raw/types/document.py +166 -0
  2469. pyrogram/raw/types/document_attribute_animated.py +71 -0
  2470. pyrogram/raw/types/document_attribute_audio.py +111 -0
  2471. pyrogram/raw/types/document_attribute_custom_emoji.py +98 -0
  2472. pyrogram/raw/types/document_attribute_filename.py +76 -0
  2473. pyrogram/raw/types/document_attribute_has_stickers.py +71 -0
  2474. pyrogram/raw/types/document_attribute_image_size.py +84 -0
  2475. pyrogram/raw/types/document_attribute_sticker.py +102 -0
  2476. pyrogram/raw/types/document_attribute_video.py +139 -0
  2477. pyrogram/raw/types/document_empty.py +88 -0
  2478. pyrogram/raw/types/draft_message.py +157 -0
  2479. pyrogram/raw/types/draft_message_empty.py +79 -0
  2480. pyrogram/raw/types/email_verification_apple.py +76 -0
  2481. pyrogram/raw/types/email_verification_code.py +76 -0
  2482. pyrogram/raw/types/email_verification_google.py +76 -0
  2483. pyrogram/raw/types/email_verify_purpose_login_change.py +71 -0
  2484. pyrogram/raw/types/email_verify_purpose_login_setup.py +84 -0
  2485. pyrogram/raw/types/email_verify_purpose_passport.py +71 -0
  2486. pyrogram/raw/types/emoji_group.py +92 -0
  2487. pyrogram/raw/types/emoji_group_greeting.py +92 -0
  2488. pyrogram/raw/types/emoji_group_premium.py +84 -0
  2489. pyrogram/raw/types/emoji_keyword.py +84 -0
  2490. pyrogram/raw/types/emoji_keyword_deleted.py +84 -0
  2491. pyrogram/raw/types/emoji_keywords_difference.py +110 -0
  2492. pyrogram/raw/types/emoji_language.py +85 -0
  2493. pyrogram/raw/types/emoji_list.py +97 -0
  2494. pyrogram/raw/types/emoji_list_not_modified.py +84 -0
  2495. pyrogram/raw/types/emoji_status.py +87 -0
  2496. pyrogram/raw/types/emoji_status_collectible.py +151 -0
  2497. pyrogram/raw/types/emoji_status_empty.py +71 -0
  2498. pyrogram/raw/types/emoji_url.py +85 -0
  2499. pyrogram/raw/types/encrypted_chat.py +134 -0
  2500. pyrogram/raw/types/encrypted_chat_discarded.py +94 -0
  2501. pyrogram/raw/types/encrypted_chat_empty.py +86 -0
  2502. pyrogram/raw/types/encrypted_chat_requested.py +137 -0
  2503. pyrogram/raw/types/encrypted_chat_waiting.py +118 -0
  2504. pyrogram/raw/types/encrypted_file.py +117 -0
  2505. pyrogram/raw/types/encrypted_file_empty.py +80 -0
  2506. pyrogram/raw/types/encrypted_message.py +108 -0
  2507. pyrogram/raw/types/encrypted_message_service.py +100 -0
  2508. pyrogram/raw/types/ephemeral/__init__.py +26 -0
  2509. pyrogram/raw/types/ephemeral/welcome_messages.py +93 -0
  2510. pyrogram/raw/types/ephemeral/welcome_messages_not_modified.py +80 -0
  2511. pyrogram/raw/types/ephemeral_message.py +221 -0
  2512. pyrogram/raw/types/exported_chatlist_invite.py +104 -0
  2513. pyrogram/raw/types/exported_contact_token.py +93 -0
  2514. pyrogram/raw/types/exported_message_link.py +93 -0
  2515. pyrogram/raw/types/exported_story_link.py +85 -0
  2516. pyrogram/raw/types/fact_check.py +112 -0
  2517. pyrogram/raw/types/file_hash.py +103 -0
  2518. pyrogram/raw/types/folder.py +114 -0
  2519. pyrogram/raw/types/folder_peer.py +84 -0
  2520. pyrogram/raw/types/forum_topic.py +237 -0
  2521. pyrogram/raw/types/forum_topic_deleted.py +76 -0
  2522. pyrogram/raw/types/found_story.py +84 -0
  2523. pyrogram/raw/types/fragment/__init__.py +25 -0
  2524. pyrogram/raw/types/fragment/collectible_info.py +125 -0
  2525. pyrogram/raw/types/game.py +128 -0
  2526. pyrogram/raw/types/geo_point.py +103 -0
  2527. pyrogram/raw/types/geo_point_address.py +105 -0
  2528. pyrogram/raw/types/geo_point_empty.py +71 -0
  2529. pyrogram/raw/types/global_privacy_settings.py +135 -0
  2530. pyrogram/raw/types/group_call.py +261 -0
  2531. pyrogram/raw/types/group_call_discarded.py +92 -0
  2532. pyrogram/raw/types/group_call_donor.py +100 -0
  2533. pyrogram/raw/types/group_call_message.py +117 -0
  2534. pyrogram/raw/types/group_call_participant.py +219 -0
  2535. pyrogram/raw/types/group_call_participant_video.py +101 -0
  2536. pyrogram/raw/types/group_call_participant_video_source_group.py +84 -0
  2537. pyrogram/raw/types/group_call_stream_channel.py +92 -0
  2538. pyrogram/raw/types/help/__init__.py +56 -0
  2539. pyrogram/raw/types/help/app_config.py +93 -0
  2540. pyrogram/raw/types/help/app_config_not_modified.py +80 -0
  2541. pyrogram/raw/types/help/app_update.py +146 -0
  2542. pyrogram/raw/types/help/config_simple.py +92 -0
  2543. pyrogram/raw/types/help/countries_list.py +93 -0
  2544. pyrogram/raw/types/help/countries_list_not_modified.py +80 -0
  2545. pyrogram/raw/types/help/country.py +109 -0
  2546. pyrogram/raw/types/help/country_code.py +98 -0
  2547. pyrogram/raw/types/help/deep_link_info.py +103 -0
  2548. pyrogram/raw/types/help/deep_link_info_empty.py +80 -0
  2549. pyrogram/raw/types/help/invite_text.py +85 -0
  2550. pyrogram/raw/types/help/no_app_update.py +80 -0
  2551. pyrogram/raw/types/help/passport_config.py +93 -0
  2552. pyrogram/raw/types/help/passport_config_not_modified.py +80 -0
  2553. pyrogram/raw/types/help/peer_color_option.py +122 -0
  2554. pyrogram/raw/types/help/peer_color_profile_set.py +92 -0
  2555. pyrogram/raw/types/help/peer_color_set.py +76 -0
  2556. pyrogram/raw/types/help/peer_colors.py +94 -0
  2557. pyrogram/raw/types/help/peer_colors_not_modified.py +81 -0
  2558. pyrogram/raw/types/help/premium_promo.py +125 -0
  2559. pyrogram/raw/types/help/promo_data.py +163 -0
  2560. pyrogram/raw/types/help/promo_data_empty.py +85 -0
  2561. pyrogram/raw/types/help/recent_me_urls.py +101 -0
  2562. pyrogram/raw/types/help/support.py +93 -0
  2563. pyrogram/raw/types/help/support_name.py +85 -0
  2564. pyrogram/raw/types/help/terms_of_service.py +109 -0
  2565. pyrogram/raw/types/help/terms_of_service_update.py +93 -0
  2566. pyrogram/raw/types/help/terms_of_service_update_empty.py +85 -0
  2567. pyrogram/raw/types/help/timezones_list.py +93 -0
  2568. pyrogram/raw/types/help/timezones_list_not_modified.py +80 -0
  2569. pyrogram/raw/types/help/user_info.py +110 -0
  2570. pyrogram/raw/types/help/user_info_empty.py +81 -0
  2571. pyrogram/raw/types/high_score.py +92 -0
  2572. pyrogram/raw/types/http_wait.py +92 -0
  2573. pyrogram/raw/types/imported_contact.py +84 -0
  2574. pyrogram/raw/types/inline_bot_switch_pm.py +84 -0
  2575. pyrogram/raw/types/inline_bot_web_view.py +84 -0
  2576. pyrogram/raw/types/inline_button_type_buy.py +71 -0
  2577. pyrogram/raw/types/inline_button_type_callback.py +84 -0
  2578. pyrogram/raw/types/inline_button_type_copy.py +76 -0
  2579. pyrogram/raw/types/inline_button_type_disabled.py +71 -0
  2580. pyrogram/raw/types/inline_button_type_game.py +71 -0
  2581. pyrogram/raw/types/inline_button_type_switch_inline.py +94 -0
  2582. pyrogram/raw/types/inline_button_type_url.py +76 -0
  2583. pyrogram/raw/types/inline_button_type_url_auth.py +95 -0
  2584. pyrogram/raw/types/inline_button_type_user_profile.py +76 -0
  2585. pyrogram/raw/types/inline_button_type_web_view.py +76 -0
  2586. pyrogram/raw/types/inline_query_peer_type_bot_pm.py +71 -0
  2587. pyrogram/raw/types/inline_query_peer_type_broadcast.py +71 -0
  2588. pyrogram/raw/types/inline_query_peer_type_chat.py +71 -0
  2589. pyrogram/raw/types/inline_query_peer_type_megagroup.py +71 -0
  2590. pyrogram/raw/types/inline_query_peer_type_pm.py +71 -0
  2591. pyrogram/raw/types/inline_query_peer_type_same_bot_pm.py +71 -0
  2592. pyrogram/raw/types/input_ai_compose_tone_default.py +76 -0
  2593. pyrogram/raw/types/input_ai_compose_tone_id.py +84 -0
  2594. pyrogram/raw/types/input_ai_compose_tone_single_use.py +76 -0
  2595. pyrogram/raw/types/input_ai_compose_tone_slug.py +76 -0
  2596. pyrogram/raw/types/input_app_event.py +100 -0
  2597. pyrogram/raw/types/input_bot_app_id.py +84 -0
  2598. pyrogram/raw/types/input_bot_app_short_name.py +84 -0
  2599. pyrogram/raw/types/input_bot_inline_message_game.py +80 -0
  2600. pyrogram/raw/types/input_bot_inline_message_id.py +101 -0
  2601. pyrogram/raw/types/input_bot_inline_message_id64.py +109 -0
  2602. pyrogram/raw/types/input_bot_inline_message_media_auto.py +104 -0
  2603. pyrogram/raw/types/input_bot_inline_message_media_contact.py +112 -0
  2604. pyrogram/raw/types/input_bot_inline_message_media_geo.py +115 -0
  2605. pyrogram/raw/types/input_bot_inline_message_media_invoice.py +138 -0
  2606. pyrogram/raw/types/input_bot_inline_message_media_venue.py +128 -0
  2607. pyrogram/raw/types/input_bot_inline_message_media_web_page.py +130 -0
  2608. pyrogram/raw/types/input_bot_inline_message_rich_message.py +88 -0
  2609. pyrogram/raw/types/input_bot_inline_message_text.py +110 -0
  2610. pyrogram/raw/types/input_bot_inline_result.py +141 -0
  2611. pyrogram/raw/types/input_bot_inline_result_document.py +120 -0
  2612. pyrogram/raw/types/input_bot_inline_result_game.py +92 -0
  2613. pyrogram/raw/types/input_bot_inline_result_photo.py +100 -0
  2614. pyrogram/raw/types/input_business_away_message.py +100 -0
  2615. pyrogram/raw/types/input_business_bot_recipients.py +120 -0
  2616. pyrogram/raw/types/input_business_chat_link.py +97 -0
  2617. pyrogram/raw/types/input_business_greeting_message.py +92 -0
  2618. pyrogram/raw/types/input_business_intro.py +96 -0
  2619. pyrogram/raw/types/input_business_recipients.py +110 -0
  2620. pyrogram/raw/types/input_button_type_request_peer.py +112 -0
  2621. pyrogram/raw/types/input_channel.py +84 -0
  2622. pyrogram/raw/types/input_channel_empty.py +71 -0
  2623. pyrogram/raw/types/input_channel_from_message.py +92 -0
  2624. pyrogram/raw/types/input_chat_photo.py +76 -0
  2625. pyrogram/raw/types/input_chat_photo_empty.py +71 -0
  2626. pyrogram/raw/types/input_chat_theme.py +76 -0
  2627. pyrogram/raw/types/input_chat_theme_empty.py +71 -0
  2628. pyrogram/raw/types/input_chat_theme_unique_gift.py +76 -0
  2629. pyrogram/raw/types/input_chat_uploaded_photo.py +109 -0
  2630. pyrogram/raw/types/input_chatlist_dialog_filter.py +76 -0
  2631. pyrogram/raw/types/input_check_password_empty.py +71 -0
  2632. pyrogram/raw/types/input_check_password_srp.py +92 -0
  2633. pyrogram/raw/types/input_client_proxy.py +84 -0
  2634. pyrogram/raw/types/input_collectible_phone.py +76 -0
  2635. pyrogram/raw/types/input_collectible_username.py +76 -0
  2636. pyrogram/raw/types/input_dialog_peer.py +76 -0
  2637. pyrogram/raw/types/input_dialog_peer_community.py +76 -0
  2638. pyrogram/raw/types/input_dialog_peer_folder.py +76 -0
  2639. pyrogram/raw/types/input_document.py +92 -0
  2640. pyrogram/raw/types/input_document_empty.py +71 -0
  2641. pyrogram/raw/types/input_document_file_location.py +100 -0
  2642. pyrogram/raw/types/input_emoji_status_collectible.py +87 -0
  2643. pyrogram/raw/types/input_encrypted_chat.py +84 -0
  2644. pyrogram/raw/types/input_encrypted_file.py +84 -0
  2645. pyrogram/raw/types/input_encrypted_file_big_uploaded.py +92 -0
  2646. pyrogram/raw/types/input_encrypted_file_empty.py +71 -0
  2647. pyrogram/raw/types/input_encrypted_file_location.py +84 -0
  2648. pyrogram/raw/types/input_encrypted_file_uploaded.py +100 -0
  2649. pyrogram/raw/types/input_file.py +100 -0
  2650. pyrogram/raw/types/input_file_big.py +92 -0
  2651. pyrogram/raw/types/input_file_location.py +100 -0
  2652. pyrogram/raw/types/input_file_story_document.py +76 -0
  2653. pyrogram/raw/types/input_folder_peer.py +84 -0
  2654. pyrogram/raw/types/input_game_id.py +84 -0
  2655. pyrogram/raw/types/input_game_short_name.py +84 -0
  2656. pyrogram/raw/types/input_geo_point.py +95 -0
  2657. pyrogram/raw/types/input_geo_point_empty.py +71 -0
  2658. pyrogram/raw/types/input_group_call.py +84 -0
  2659. pyrogram/raw/types/input_group_call_invite_message.py +76 -0
  2660. pyrogram/raw/types/input_group_call_slug.py +76 -0
  2661. pyrogram/raw/types/input_group_call_stream.py +112 -0
  2662. pyrogram/raw/types/input_inline_button_type_url_auth.py +103 -0
  2663. pyrogram/raw/types/input_inline_button_type_user_profile.py +76 -0
  2664. pyrogram/raw/types/input_invoice_business_bot_transfer_stars.py +84 -0
  2665. pyrogram/raw/types/input_invoice_chat_invite_subscription.py +76 -0
  2666. pyrogram/raw/types/input_invoice_message.py +84 -0
  2667. pyrogram/raw/types/input_invoice_premium_auth_code.py +76 -0
  2668. pyrogram/raw/types/input_invoice_premium_gift_code.py +84 -0
  2669. pyrogram/raw/types/input_invoice_premium_gift_stars.py +96 -0
  2670. pyrogram/raw/types/input_invoice_slug.py +76 -0
  2671. pyrogram/raw/types/input_invoice_star_gift.py +108 -0
  2672. pyrogram/raw/types/input_invoice_star_gift_auction_bid.py +118 -0
  2673. pyrogram/raw/types/input_invoice_star_gift_drop_original_details.py +76 -0
  2674. pyrogram/raw/types/input_invoice_star_gift_prepaid_upgrade.py +84 -0
  2675. pyrogram/raw/types/input_invoice_star_gift_resale.py +108 -0
  2676. pyrogram/raw/types/input_invoice_star_gift_transfer.py +84 -0
  2677. pyrogram/raw/types/input_invoice_star_gift_upgrade.py +84 -0
  2678. pyrogram/raw/types/input_invoice_stars.py +76 -0
  2679. pyrogram/raw/types/input_media_area_channel_post.py +92 -0
  2680. pyrogram/raw/types/input_media_area_venue.py +92 -0
  2681. pyrogram/raw/types/input_media_contact.py +100 -0
  2682. pyrogram/raw/types/input_media_dice.py +76 -0
  2683. pyrogram/raw/types/input_media_document.py +121 -0
  2684. pyrogram/raw/types/input_media_document_external.py +112 -0
  2685. pyrogram/raw/types/input_media_empty.py +71 -0
  2686. pyrogram/raw/types/input_media_game.py +76 -0
  2687. pyrogram/raw/types/input_media_geo_live.py +111 -0
  2688. pyrogram/raw/types/input_media_geo_point.py +76 -0
  2689. pyrogram/raw/types/input_media_invoice.py +148 -0
  2690. pyrogram/raw/types/input_media_paid_media.py +95 -0
  2691. pyrogram/raw/types/input_media_photo.py +109 -0
  2692. pyrogram/raw/types/input_media_photo_external.py +93 -0
  2693. pyrogram/raw/types/input_media_poll.py +127 -0
  2694. pyrogram/raw/types/input_media_stake_dice.py +92 -0
  2695. pyrogram/raw/types/input_media_story.py +84 -0
  2696. pyrogram/raw/types/input_media_todo.py +76 -0
  2697. pyrogram/raw/types/input_media_uploaded_document.py +160 -0
  2698. pyrogram/raw/types/input_media_uploaded_photo.py +119 -0
  2699. pyrogram/raw/types/input_media_venue.py +116 -0
  2700. pyrogram/raw/types/input_media_web_page.py +96 -0
  2701. pyrogram/raw/types/input_message_callback_query.py +84 -0
  2702. pyrogram/raw/types/input_message_entity_mention_name.py +92 -0
  2703. pyrogram/raw/types/input_message_id.py +76 -0
  2704. pyrogram/raw/types/input_message_pinned.py +71 -0
  2705. pyrogram/raw/types/input_message_read_metric.py +116 -0
  2706. pyrogram/raw/types/input_message_reply_to.py +76 -0
  2707. pyrogram/raw/types/input_messages_filter_chat_photos.py +71 -0
  2708. pyrogram/raw/types/input_messages_filter_contacts.py +71 -0
  2709. pyrogram/raw/types/input_messages_filter_document.py +71 -0
  2710. pyrogram/raw/types/input_messages_filter_empty.py +71 -0
  2711. pyrogram/raw/types/input_messages_filter_geo.py +71 -0
  2712. pyrogram/raw/types/input_messages_filter_gif.py +71 -0
  2713. pyrogram/raw/types/input_messages_filter_music.py +71 -0
  2714. pyrogram/raw/types/input_messages_filter_my_mentions.py +71 -0
  2715. pyrogram/raw/types/input_messages_filter_phone_calls.py +76 -0
  2716. pyrogram/raw/types/input_messages_filter_photo_video.py +71 -0
  2717. pyrogram/raw/types/input_messages_filter_photos.py +71 -0
  2718. pyrogram/raw/types/input_messages_filter_pinned.py +71 -0
  2719. pyrogram/raw/types/input_messages_filter_poll.py +71 -0
  2720. pyrogram/raw/types/input_messages_filter_round_video.py +71 -0
  2721. pyrogram/raw/types/input_messages_filter_round_voice.py +71 -0
  2722. pyrogram/raw/types/input_messages_filter_url.py +71 -0
  2723. pyrogram/raw/types/input_messages_filter_video.py +71 -0
  2724. pyrogram/raw/types/input_messages_filter_voice.py +71 -0
  2725. pyrogram/raw/types/input_notify_broadcasts.py +71 -0
  2726. pyrogram/raw/types/input_notify_chats.py +71 -0
  2727. pyrogram/raw/types/input_notify_community.py +76 -0
  2728. pyrogram/raw/types/input_notify_forum_topic.py +84 -0
  2729. pyrogram/raw/types/input_notify_peer.py +76 -0
  2730. pyrogram/raw/types/input_notify_users.py +71 -0
  2731. pyrogram/raw/types/input_page_block_map.py +108 -0
  2732. pyrogram/raw/types/input_passkey_credential_firebase_pnv.py +76 -0
  2733. pyrogram/raw/types/input_passkey_credential_public_key.py +92 -0
  2734. pyrogram/raw/types/input_passkey_response_login.py +100 -0
  2735. pyrogram/raw/types/input_passkey_response_register.py +84 -0
  2736. pyrogram/raw/types/input_payment_credentials.py +84 -0
  2737. pyrogram/raw/types/input_payment_credentials_apple_pay.py +76 -0
  2738. pyrogram/raw/types/input_payment_credentials_google_pay.py +76 -0
  2739. pyrogram/raw/types/input_payment_credentials_saved.py +84 -0
  2740. pyrogram/raw/types/input_peer_channel.py +84 -0
  2741. pyrogram/raw/types/input_peer_channel_from_message.py +92 -0
  2742. pyrogram/raw/types/input_peer_chat.py +76 -0
  2743. pyrogram/raw/types/input_peer_color_collectible.py +76 -0
  2744. pyrogram/raw/types/input_peer_empty.py +71 -0
  2745. pyrogram/raw/types/input_peer_notify_settings.py +135 -0
  2746. pyrogram/raw/types/input_peer_photo_file_location.py +92 -0
  2747. pyrogram/raw/types/input_peer_self.py +71 -0
  2748. pyrogram/raw/types/input_peer_user.py +84 -0
  2749. pyrogram/raw/types/input_peer_user_from_message.py +92 -0
  2750. pyrogram/raw/types/input_phone_call.py +84 -0
  2751. pyrogram/raw/types/input_phone_contact.py +112 -0
  2752. pyrogram/raw/types/input_photo.py +92 -0
  2753. pyrogram/raw/types/input_photo_empty.py +71 -0
  2754. pyrogram/raw/types/input_photo_file_location.py +100 -0
  2755. pyrogram/raw/types/input_photo_legacy_file_location.py +116 -0
  2756. pyrogram/raw/types/input_poll_answer.py +88 -0
  2757. pyrogram/raw/types/input_privacy_key_about.py +71 -0
  2758. pyrogram/raw/types/input_privacy_key_added_by_phone.py +71 -0
  2759. pyrogram/raw/types/input_privacy_key_birthday.py +71 -0
  2760. pyrogram/raw/types/input_privacy_key_chat_invite.py +71 -0
  2761. pyrogram/raw/types/input_privacy_key_forwards.py +71 -0
  2762. pyrogram/raw/types/input_privacy_key_no_paid_messages.py +71 -0
  2763. pyrogram/raw/types/input_privacy_key_phone_call.py +71 -0
  2764. pyrogram/raw/types/input_privacy_key_phone_number.py +71 -0
  2765. pyrogram/raw/types/input_privacy_key_phone_p2_p.py +71 -0
  2766. pyrogram/raw/types/input_privacy_key_profile_photo.py +71 -0
  2767. pyrogram/raw/types/input_privacy_key_saved_music.py +71 -0
  2768. pyrogram/raw/types/input_privacy_key_star_gifts_auto_save.py +71 -0
  2769. pyrogram/raw/types/input_privacy_key_status_timestamp.py +71 -0
  2770. pyrogram/raw/types/input_privacy_key_voice_messages.py +71 -0
  2771. pyrogram/raw/types/input_privacy_value_allow_all.py +71 -0
  2772. pyrogram/raw/types/input_privacy_value_allow_bots.py +71 -0
  2773. pyrogram/raw/types/input_privacy_value_allow_chat_participants.py +76 -0
  2774. pyrogram/raw/types/input_privacy_value_allow_close_friends.py +71 -0
  2775. pyrogram/raw/types/input_privacy_value_allow_contacts.py +71 -0
  2776. pyrogram/raw/types/input_privacy_value_allow_premium.py +71 -0
  2777. pyrogram/raw/types/input_privacy_value_allow_users.py +76 -0
  2778. pyrogram/raw/types/input_privacy_value_disallow_all.py +71 -0
  2779. pyrogram/raw/types/input_privacy_value_disallow_bots.py +71 -0
  2780. pyrogram/raw/types/input_privacy_value_disallow_chat_participants.py +76 -0
  2781. pyrogram/raw/types/input_privacy_value_disallow_contacts.py +71 -0
  2782. pyrogram/raw/types/input_privacy_value_disallow_users.py +76 -0
  2783. pyrogram/raw/types/input_quick_reply_shortcut.py +76 -0
  2784. pyrogram/raw/types/input_quick_reply_shortcut_id.py +76 -0
  2785. pyrogram/raw/types/input_reply_to_ephemeral_message.py +76 -0
  2786. pyrogram/raw/types/input_reply_to_message.py +153 -0
  2787. pyrogram/raw/types/input_reply_to_mono_forum.py +76 -0
  2788. pyrogram/raw/types/input_reply_to_story.py +84 -0
  2789. pyrogram/raw/types/input_report_reason_child_abuse.py +71 -0
  2790. pyrogram/raw/types/input_report_reason_copyright.py +71 -0
  2791. pyrogram/raw/types/input_report_reason_fake.py +71 -0
  2792. pyrogram/raw/types/input_report_reason_geo_irrelevant.py +71 -0
  2793. pyrogram/raw/types/input_report_reason_illegal_drugs.py +71 -0
  2794. pyrogram/raw/types/input_report_reason_other.py +71 -0
  2795. pyrogram/raw/types/input_report_reason_personal_details.py +71 -0
  2796. pyrogram/raw/types/input_report_reason_pornography.py +71 -0
  2797. pyrogram/raw/types/input_report_reason_spam.py +71 -0
  2798. pyrogram/raw/types/input_report_reason_violence.py +71 -0
  2799. pyrogram/raw/types/input_rich_file_document.py +84 -0
  2800. pyrogram/raw/types/input_rich_file_photo.py +84 -0
  2801. pyrogram/raw/types/input_rich_message.py +120 -0
  2802. pyrogram/raw/types/input_rich_message_html.py +100 -0
  2803. pyrogram/raw/types/input_rich_message_markdown.py +100 -0
  2804. pyrogram/raw/types/input_saved_star_gift_chat.py +84 -0
  2805. pyrogram/raw/types/input_saved_star_gift_slug.py +76 -0
  2806. pyrogram/raw/types/input_saved_star_gift_user.py +76 -0
  2807. pyrogram/raw/types/input_secure_file.py +84 -0
  2808. pyrogram/raw/types/input_secure_file_location.py +84 -0
  2809. pyrogram/raw/types/input_secure_file_uploaded.py +108 -0
  2810. pyrogram/raw/types/input_secure_value.py +148 -0
  2811. pyrogram/raw/types/input_send_message_rich_message_draft_action.py +98 -0
  2812. pyrogram/raw/types/input_single_media.py +104 -0
  2813. pyrogram/raw/types/input_star_gift_auction.py +76 -0
  2814. pyrogram/raw/types/input_star_gift_auction_slug.py +76 -0
  2815. pyrogram/raw/types/input_stars_transaction.py +84 -0
  2816. pyrogram/raw/types/input_sticker_set_animated_emoji.py +71 -0
  2817. pyrogram/raw/types/input_sticker_set_animated_emoji_animations.py +71 -0
  2818. pyrogram/raw/types/input_sticker_set_dice.py +76 -0
  2819. pyrogram/raw/types/input_sticker_set_emoji_channel_default_statuses.py +71 -0
  2820. pyrogram/raw/types/input_sticker_set_emoji_default_statuses.py +71 -0
  2821. pyrogram/raw/types/input_sticker_set_emoji_default_topic_icons.py +71 -0
  2822. pyrogram/raw/types/input_sticker_set_emoji_generic_animations.py +71 -0
  2823. pyrogram/raw/types/input_sticker_set_empty.py +71 -0
  2824. pyrogram/raw/types/input_sticker_set_id.py +84 -0
  2825. pyrogram/raw/types/input_sticker_set_item.py +105 -0
  2826. pyrogram/raw/types/input_sticker_set_premium_gifts.py +71 -0
  2827. pyrogram/raw/types/input_sticker_set_short_name.py +76 -0
  2828. pyrogram/raw/types/input_sticker_set_thumb.py +84 -0
  2829. pyrogram/raw/types/input_sticker_set_ton_gifts.py +71 -0
  2830. pyrogram/raw/types/input_stickered_media_document.py +76 -0
  2831. pyrogram/raw/types/input_stickered_media_photo.py +76 -0
  2832. pyrogram/raw/types/input_store_payment_auth_code.py +116 -0
  2833. pyrogram/raw/types/input_store_payment_gift_premium.py +92 -0
  2834. pyrogram/raw/types/input_store_payment_premium_gift_code.py +114 -0
  2835. pyrogram/raw/types/input_store_payment_premium_giveaway.py +151 -0
  2836. pyrogram/raw/types/input_store_payment_premium_subscription.py +82 -0
  2837. pyrogram/raw/types/input_store_payment_stars_gift.py +100 -0
  2838. pyrogram/raw/types/input_store_payment_stars_giveaway.py +167 -0
  2839. pyrogram/raw/types/input_store_payment_stars_topup.py +104 -0
  2840. pyrogram/raw/types/input_takeout_file_location.py +71 -0
  2841. pyrogram/raw/types/input_theme.py +84 -0
  2842. pyrogram/raw/types/input_theme_settings.py +131 -0
  2843. pyrogram/raw/types/input_theme_slug.py +76 -0
  2844. pyrogram/raw/types/input_user.py +84 -0
  2845. pyrogram/raw/types/input_user_empty.py +71 -0
  2846. pyrogram/raw/types/input_user_from_message.py +92 -0
  2847. pyrogram/raw/types/input_user_self.py +71 -0
  2848. pyrogram/raw/types/input_wall_paper.py +84 -0
  2849. pyrogram/raw/types/input_wall_paper_no_file.py +76 -0
  2850. pyrogram/raw/types/input_wall_paper_slug.py +76 -0
  2851. pyrogram/raw/types/input_web_document.py +100 -0
  2852. pyrogram/raw/types/input_web_file_audio_album_thumb_location.py +104 -0
  2853. pyrogram/raw/types/input_web_file_geo_point_location.py +116 -0
  2854. pyrogram/raw/types/input_web_file_location.py +84 -0
  2855. pyrogram/raw/types/invoice.py +177 -0
  2856. pyrogram/raw/types/ip_port.py +84 -0
  2857. pyrogram/raw/types/ip_port_secret.py +92 -0
  2858. pyrogram/raw/types/join_chat_bot_result_approved.py +71 -0
  2859. pyrogram/raw/types/join_chat_bot_result_declined.py +71 -0
  2860. pyrogram/raw/types/join_chat_bot_result_queued.py +71 -0
  2861. pyrogram/raw/types/join_chat_bot_result_web_view.py +76 -0
  2862. pyrogram/raw/types/json_array.py +76 -0
  2863. pyrogram/raw/types/json_bool.py +76 -0
  2864. pyrogram/raw/types/json_null.py +71 -0
  2865. pyrogram/raw/types/json_number.py +76 -0
  2866. pyrogram/raw/types/json_object.py +76 -0
  2867. pyrogram/raw/types/json_object_value.py +84 -0
  2868. pyrogram/raw/types/json_string.py +76 -0
  2869. pyrogram/raw/types/keyboard_button.py +105 -0
  2870. pyrogram/raw/types/keyboard_button_row.py +76 -0
  2871. pyrogram/raw/types/keyboard_button_style.py +97 -0
  2872. pyrogram/raw/types/keyboard_inline_button.py +96 -0
  2873. pyrogram/raw/types/keyboard_inline_button_row.py +76 -0
  2874. pyrogram/raw/types/labeled_price.py +84 -0
  2875. pyrogram/raw/types/lang_pack_difference.py +110 -0
  2876. pyrogram/raw/types/lang_pack_language.py +163 -0
  2877. pyrogram/raw/types/lang_pack_string.py +93 -0
  2878. pyrogram/raw/types/lang_pack_string_deleted.py +85 -0
  2879. pyrogram/raw/types/lang_pack_string_pluralized.py +140 -0
  2880. pyrogram/raw/types/mask_coords.py +100 -0
  2881. pyrogram/raw/types/media_area_channel_post.py +92 -0
  2882. pyrogram/raw/types/media_area_coordinates.py +119 -0
  2883. pyrogram/raw/types/media_area_geo_point.py +96 -0
  2884. pyrogram/raw/types/media_area_star_gift.py +84 -0
  2885. pyrogram/raw/types/media_area_suggested_reaction.py +98 -0
  2886. pyrogram/raw/types/media_area_url.py +84 -0
  2887. pyrogram/raw/types/media_area_venue.py +124 -0
  2888. pyrogram/raw/types/media_area_weather.py +100 -0
  2889. pyrogram/raw/types/message.py +480 -0
  2890. pyrogram/raw/types/message_action_boost_apply.py +76 -0
  2891. pyrogram/raw/types/message_action_bot_allowed.py +101 -0
  2892. pyrogram/raw/types/message_action_change_community.py +79 -0
  2893. pyrogram/raw/types/message_action_change_creator.py +76 -0
  2894. pyrogram/raw/types/message_action_channel_create.py +76 -0
  2895. pyrogram/raw/types/message_action_channel_migrate_from.py +84 -0
  2896. pyrogram/raw/types/message_action_chat_add_user.py +76 -0
  2897. pyrogram/raw/types/message_action_chat_create.py +84 -0
  2898. pyrogram/raw/types/message_action_chat_delete_photo.py +71 -0
  2899. pyrogram/raw/types/message_action_chat_delete_user.py +76 -0
  2900. pyrogram/raw/types/message_action_chat_edit_photo.py +76 -0
  2901. pyrogram/raw/types/message_action_chat_edit_title.py +76 -0
  2902. pyrogram/raw/types/message_action_chat_joined_by_link.py +76 -0
  2903. pyrogram/raw/types/message_action_chat_joined_by_request.py +71 -0
  2904. pyrogram/raw/types/message_action_chat_joined_via_community.py +76 -0
  2905. pyrogram/raw/types/message_action_chat_migrate_to.py +76 -0
  2906. pyrogram/raw/types/message_action_conference_call.py +115 -0
  2907. pyrogram/raw/types/message_action_contact_sign_up.py +71 -0
  2908. pyrogram/raw/types/message_action_custom_action.py +76 -0
  2909. pyrogram/raw/types/message_action_empty.py +71 -0
  2910. pyrogram/raw/types/message_action_game_score.py +84 -0
  2911. pyrogram/raw/types/message_action_geo_proximity_reached.py +92 -0
  2912. pyrogram/raw/types/message_action_gift_code.py +154 -0
  2913. pyrogram/raw/types/message_action_gift_premium.py +122 -0
  2914. pyrogram/raw/types/message_action_gift_stars.py +121 -0
  2915. pyrogram/raw/types/message_action_gift_ton.py +111 -0
  2916. pyrogram/raw/types/message_action_giveaway_launch.py +79 -0
  2917. pyrogram/raw/types/message_action_giveaway_results.py +92 -0
  2918. pyrogram/raw/types/message_action_group_call.py +87 -0
  2919. pyrogram/raw/types/message_action_group_call_scheduled.py +84 -0
  2920. pyrogram/raw/types/message_action_history_clear.py +71 -0
  2921. pyrogram/raw/types/message_action_invite_to_group_call.py +84 -0
  2922. pyrogram/raw/types/message_action_managed_bot_created.py +76 -0
  2923. pyrogram/raw/types/message_action_new_creator_pending.py +76 -0
  2924. pyrogram/raw/types/message_action_no_forwards_request.py +92 -0
  2925. pyrogram/raw/types/message_action_no_forwards_toggle.py +84 -0
  2926. pyrogram/raw/types/message_action_paid_messages_price.py +84 -0
  2927. pyrogram/raw/types/message_action_paid_messages_refunded.py +84 -0
  2928. pyrogram/raw/types/message_action_payment_refunded.py +111 -0
  2929. pyrogram/raw/types/message_action_payment_sent.py +116 -0
  2930. pyrogram/raw/types/message_action_payment_sent_me.py +142 -0
  2931. pyrogram/raw/types/message_action_phone_call.py +103 -0
  2932. pyrogram/raw/types/message_action_pin_message.py +71 -0
  2933. pyrogram/raw/types/message_action_poll_append_answer.py +76 -0
  2934. pyrogram/raw/types/message_action_poll_delete_answer.py +76 -0
  2935. pyrogram/raw/types/message_action_prize_stars.py +108 -0
  2936. pyrogram/raw/types/message_action_requested_peer.py +84 -0
  2937. pyrogram/raw/types/message_action_requested_peer_sent_me.py +84 -0
  2938. pyrogram/raw/types/message_action_screenshot_taken.py +71 -0
  2939. pyrogram/raw/types/message_action_secure_values_sent.py +76 -0
  2940. pyrogram/raw/types/message_action_secure_values_sent_me.py +84 -0
  2941. pyrogram/raw/types/message_action_set_chat_theme.py +76 -0
  2942. pyrogram/raw/types/message_action_set_chat_wall_paper.py +90 -0
  2943. pyrogram/raw/types/message_action_set_messages_ttl.py +87 -0
  2944. pyrogram/raw/types/message_action_star_gift.py +235 -0
  2945. pyrogram/raw/types/message_action_star_gift_purchase_offer.py +106 -0
  2946. pyrogram/raw/types/message_action_star_gift_purchase_offer_declined.py +92 -0
  2947. pyrogram/raw/types/message_action_star_gift_unique.py +235 -0
  2948. pyrogram/raw/types/message_action_suggest_birthday.py +76 -0
  2949. pyrogram/raw/types/message_action_suggest_profile_photo.py +76 -0
  2950. pyrogram/raw/types/message_action_suggested_post_approval.py +110 -0
  2951. pyrogram/raw/types/message_action_suggested_post_refund.py +76 -0
  2952. pyrogram/raw/types/message_action_suggested_post_success.py +76 -0
  2953. pyrogram/raw/types/message_action_todo_append_tasks.py +76 -0
  2954. pyrogram/raw/types/message_action_todo_completions.py +84 -0
  2955. pyrogram/raw/types/message_action_topic_create.py +101 -0
  2956. pyrogram/raw/types/message_action_topic_edit.py +106 -0
  2957. pyrogram/raw/types/message_action_web_view_data_sent.py +76 -0
  2958. pyrogram/raw/types/message_action_web_view_data_sent_me.py +84 -0
  2959. pyrogram/raw/types/message_empty.py +88 -0
  2960. pyrogram/raw/types/message_entity_bank_card.py +84 -0
  2961. pyrogram/raw/types/message_entity_blockquote.py +92 -0
  2962. pyrogram/raw/types/message_entity_bold.py +84 -0
  2963. pyrogram/raw/types/message_entity_bot_command.py +84 -0
  2964. pyrogram/raw/types/message_entity_cashtag.py +84 -0
  2965. pyrogram/raw/types/message_entity_code.py +84 -0
  2966. pyrogram/raw/types/message_entity_custom_emoji.py +92 -0
  2967. pyrogram/raw/types/message_entity_diff_delete.py +84 -0
  2968. pyrogram/raw/types/message_entity_diff_insert.py +84 -0
  2969. pyrogram/raw/types/message_entity_diff_replace.py +92 -0
  2970. pyrogram/raw/types/message_entity_email.py +84 -0
  2971. pyrogram/raw/types/message_entity_formatted_date.py +130 -0
  2972. pyrogram/raw/types/message_entity_hashtag.py +84 -0
  2973. pyrogram/raw/types/message_entity_italic.py +84 -0
  2974. pyrogram/raw/types/message_entity_mention.py +84 -0
  2975. pyrogram/raw/types/message_entity_mention_name.py +92 -0
  2976. pyrogram/raw/types/message_entity_phone.py +84 -0
  2977. pyrogram/raw/types/message_entity_pre.py +92 -0
  2978. pyrogram/raw/types/message_entity_spoiler.py +84 -0
  2979. pyrogram/raw/types/message_entity_strike.py +84 -0
  2980. pyrogram/raw/types/message_entity_text_url.py +92 -0
  2981. pyrogram/raw/types/message_entity_underline.py +84 -0
  2982. pyrogram/raw/types/message_entity_unknown.py +84 -0
  2983. pyrogram/raw/types/message_entity_url.py +84 -0
  2984. pyrogram/raw/types/message_extended_media.py +76 -0
  2985. pyrogram/raw/types/message_extended_media_preview.py +107 -0
  2986. pyrogram/raw/types/message_fwd_header.py +183 -0
  2987. pyrogram/raw/types/message_media_contact.py +118 -0
  2988. pyrogram/raw/types/message_media_dice.py +106 -0
  2989. pyrogram/raw/types/message_media_document.py +158 -0
  2990. pyrogram/raw/types/message_media_empty.py +81 -0
  2991. pyrogram/raw/types/message_media_game.py +86 -0
  2992. pyrogram/raw/types/message_media_geo.py +86 -0
  2993. pyrogram/raw/types/message_media_geo_live.py +114 -0
  2994. pyrogram/raw/types/message_media_giveaway.py +153 -0
  2995. pyrogram/raw/types/message_media_giveaway_results.py +176 -0
  2996. pyrogram/raw/types/message_media_invoice.py +161 -0
  2997. pyrogram/raw/types/message_media_paid_media.py +94 -0
  2998. pyrogram/raw/types/message_media_photo.py +121 -0
  2999. pyrogram/raw/types/message_media_poll.py +106 -0
  3000. pyrogram/raw/types/message_media_story.py +112 -0
  3001. pyrogram/raw/types/message_media_to_do.py +98 -0
  3002. pyrogram/raw/types/message_media_unsupported.py +81 -0
  3003. pyrogram/raw/types/message_media_venue.py +126 -0
  3004. pyrogram/raw/types/message_media_video_stream.py +94 -0
  3005. pyrogram/raw/types/message_media_web_page.py +112 -0
  3006. pyrogram/raw/types/message_peer_reaction.py +112 -0
  3007. pyrogram/raw/types/message_peer_vote.py +92 -0
  3008. pyrogram/raw/types/message_peer_vote_input_option.py +84 -0
  3009. pyrogram/raw/types/message_peer_vote_multiple.py +92 -0
  3010. pyrogram/raw/types/message_range.py +93 -0
  3011. pyrogram/raw/types/message_reactions.py +116 -0
  3012. pyrogram/raw/types/message_reactor.py +106 -0
  3013. pyrogram/raw/types/message_replies.py +129 -0
  3014. pyrogram/raw/types/message_reply_header.py +188 -0
  3015. pyrogram/raw/types/message_reply_story_header.py +84 -0
  3016. pyrogram/raw/types/message_report_option.py +84 -0
  3017. pyrogram/raw/types/message_service.py +193 -0
  3018. pyrogram/raw/types/message_views.py +98 -0
  3019. pyrogram/raw/types/messages/__init__.py +120 -0
  3020. pyrogram/raw/types/messages/affected_found_messages.py +109 -0
  3021. pyrogram/raw/types/messages/affected_history.py +108 -0
  3022. pyrogram/raw/types/messages/affected_messages.py +96 -0
  3023. pyrogram/raw/types/messages/all_stickers.py +95 -0
  3024. pyrogram/raw/types/messages/all_stickers_not_modified.py +82 -0
  3025. pyrogram/raw/types/messages/archived_stickers.py +93 -0
  3026. pyrogram/raw/types/messages/available_effects.py +101 -0
  3027. pyrogram/raw/types/messages/available_effects_not_modified.py +80 -0
  3028. pyrogram/raw/types/messages/available_reactions.py +93 -0
  3029. pyrogram/raw/types/messages/available_reactions_not_modified.py +80 -0
  3030. pyrogram/raw/types/messages/bot_app.py +105 -0
  3031. pyrogram/raw/types/messages/bot_callback_answer.py +124 -0
  3032. pyrogram/raw/types/messages/bot_prepared_inline_message.py +93 -0
  3033. pyrogram/raw/types/messages/bot_results.py +146 -0
  3034. pyrogram/raw/types/messages/channel_messages.py +159 -0
  3035. pyrogram/raw/types/messages/chat_admins_with_invites.py +93 -0
  3036. pyrogram/raw/types/messages/chat_full.py +102 -0
  3037. pyrogram/raw/types/messages/chat_invite_importers.py +101 -0
  3038. pyrogram/raw/types/messages/chat_invite_join_result_ok.py +86 -0
  3039. pyrogram/raw/types/messages/chat_invite_join_result_web_view.py +102 -0
  3040. pyrogram/raw/types/messages/chats.py +93 -0
  3041. pyrogram/raw/types/messages/chats_slice.py +101 -0
  3042. pyrogram/raw/types/messages/checked_history_import_peer.py +85 -0
  3043. pyrogram/raw/types/messages/composed_message_with_ai.py +97 -0
  3044. pyrogram/raw/types/messages/composed_rich_message_with_ai.py +85 -0
  3045. pyrogram/raw/types/messages/dh_config.py +109 -0
  3046. pyrogram/raw/types/messages/dh_config_not_modified.py +85 -0
  3047. pyrogram/raw/types/messages/dialog_filters.py +93 -0
  3048. pyrogram/raw/types/messages/dialogs.py +109 -0
  3049. pyrogram/raw/types/messages/dialogs_not_modified.py +85 -0
  3050. pyrogram/raw/types/messages/dialogs_slice.py +117 -0
  3051. pyrogram/raw/types/messages/discussion_message.py +138 -0
  3052. pyrogram/raw/types/messages/emoji_game_dice_info.py +120 -0
  3053. pyrogram/raw/types/messages/emoji_game_outcome.py +92 -0
  3054. pyrogram/raw/types/messages/emoji_game_unavailable.py +80 -0
  3055. pyrogram/raw/types/messages/emoji_groups.py +96 -0
  3056. pyrogram/raw/types/messages/emoji_groups_not_modified.py +83 -0
  3057. pyrogram/raw/types/messages/exported_chat_invite.py +94 -0
  3058. pyrogram/raw/types/messages/exported_chat_invite_replaced.py +102 -0
  3059. pyrogram/raw/types/messages/exported_chat_invites.py +101 -0
  3060. pyrogram/raw/types/messages/faved_stickers.py +101 -0
  3061. pyrogram/raw/types/messages/faved_stickers_not_modified.py +80 -0
  3062. pyrogram/raw/types/messages/featured_stickers.py +119 -0
  3063. pyrogram/raw/types/messages/featured_stickers_not_modified.py +87 -0
  3064. pyrogram/raw/types/messages/forum_topics.py +134 -0
  3065. pyrogram/raw/types/messages/found_sticker_sets.py +94 -0
  3066. pyrogram/raw/types/messages/found_sticker_sets_not_modified.py +81 -0
  3067. pyrogram/raw/types/messages/found_stickers.py +104 -0
  3068. pyrogram/raw/types/messages/found_stickers_not_modified.py +88 -0
  3069. pyrogram/raw/types/messages/high_scores.py +94 -0
  3070. pyrogram/raw/types/messages/history_import.py +85 -0
  3071. pyrogram/raw/types/messages/history_import_parsed.py +100 -0
  3072. pyrogram/raw/types/messages/inactive_chats.py +101 -0
  3073. pyrogram/raw/types/messages/invited_users.py +95 -0
  3074. pyrogram/raw/types/messages/message_edit_data.py +85 -0
  3075. pyrogram/raw/types/messages/message_reactions_list.py +120 -0
  3076. pyrogram/raw/types/messages/message_views.py +101 -0
  3077. pyrogram/raw/types/messages/messages.py +126 -0
  3078. pyrogram/raw/types/messages/messages_not_modified.py +102 -0
  3079. pyrogram/raw/types/messages/messages_slice.py +170 -0
  3080. pyrogram/raw/types/messages/my_stickers.py +93 -0
  3081. pyrogram/raw/types/messages/peer_dialogs.py +118 -0
  3082. pyrogram/raw/types/messages/peer_settings.py +101 -0
  3083. pyrogram/raw/types/messages/prepared_inline_message.py +117 -0
  3084. pyrogram/raw/types/messages/quick_replies.py +109 -0
  3085. pyrogram/raw/types/messages/quick_replies_not_modified.py +80 -0
  3086. pyrogram/raw/types/messages/reactions.py +95 -0
  3087. pyrogram/raw/types/messages/reactions_not_modified.py +82 -0
  3088. pyrogram/raw/types/messages/recent_stickers.py +109 -0
  3089. pyrogram/raw/types/messages/recent_stickers_not_modified.py +80 -0
  3090. pyrogram/raw/types/messages/saved_dialogs.py +111 -0
  3091. pyrogram/raw/types/messages/saved_dialogs_not_modified.py +87 -0
  3092. pyrogram/raw/types/messages/saved_dialogs_slice.py +119 -0
  3093. pyrogram/raw/types/messages/saved_gifs.py +93 -0
  3094. pyrogram/raw/types/messages/saved_gifs_not_modified.py +80 -0
  3095. pyrogram/raw/types/messages/saved_reaction_tags.py +93 -0
  3096. pyrogram/raw/types/messages/saved_reaction_tags_not_modified.py +80 -0
  3097. pyrogram/raw/types/messages/search_counter.py +101 -0
  3098. pyrogram/raw/types/messages/search_results_calendar.py +150 -0
  3099. pyrogram/raw/types/messages/search_results_positions.py +93 -0
  3100. pyrogram/raw/types/messages/sent_encrypted_file.py +95 -0
  3101. pyrogram/raw/types/messages/sent_encrypted_message.py +87 -0
  3102. pyrogram/raw/types/messages/sponsored_messages.py +130 -0
  3103. pyrogram/raw/types/messages/sponsored_messages_empty.py +80 -0
  3104. pyrogram/raw/types/messages/sticker_set.py +117 -0
  3105. pyrogram/raw/types/messages/sticker_set_install_result_archive.py +85 -0
  3106. pyrogram/raw/types/messages/sticker_set_install_result_success.py +80 -0
  3107. pyrogram/raw/types/messages/sticker_set_not_modified.py +88 -0
  3108. pyrogram/raw/types/messages/stickers.py +93 -0
  3109. pyrogram/raw/types/messages/stickers_not_modified.py +80 -0
  3110. pyrogram/raw/types/messages/transcribed_audio.py +119 -0
  3111. pyrogram/raw/types/messages/translate_result.py +85 -0
  3112. pyrogram/raw/types/messages/translated_rich_message.py +85 -0
  3113. pyrogram/raw/types/messages/votes_list.py +120 -0
  3114. pyrogram/raw/types/messages/web_page.py +101 -0
  3115. pyrogram/raw/types/messages/web_page_preview.py +101 -0
  3116. pyrogram/raw/types/missing_invitee.py +90 -0
  3117. pyrogram/raw/types/mono_forum_dialog.py +140 -0
  3118. pyrogram/raw/types/msg_detailed_info.py +100 -0
  3119. pyrogram/raw/types/msg_new_detailed_info.py +92 -0
  3120. pyrogram/raw/types/msg_resend_ans_req.py +76 -0
  3121. pyrogram/raw/types/msg_resend_req.py +76 -0
  3122. pyrogram/raw/types/msgs_ack.py +76 -0
  3123. pyrogram/raw/types/msgs_all_info.py +84 -0
  3124. pyrogram/raw/types/msgs_state_info.py +84 -0
  3125. pyrogram/raw/types/msgs_state_req.py +76 -0
  3126. pyrogram/raw/types/my_boost.py +113 -0
  3127. pyrogram/raw/types/nearest_dc.py +101 -0
  3128. pyrogram/raw/types/new_session_created.py +92 -0
  3129. pyrogram/raw/types/notification_sound_default.py +71 -0
  3130. pyrogram/raw/types/notification_sound_local.py +84 -0
  3131. pyrogram/raw/types/notification_sound_none.py +71 -0
  3132. pyrogram/raw/types/notification_sound_ringtone.py +76 -0
  3133. pyrogram/raw/types/notify_broadcasts.py +71 -0
  3134. pyrogram/raw/types/notify_chats.py +71 -0
  3135. pyrogram/raw/types/notify_community.py +76 -0
  3136. pyrogram/raw/types/notify_forum_topic.py +84 -0
  3137. pyrogram/raw/types/notify_peer.py +76 -0
  3138. pyrogram/raw/types/notify_users.py +71 -0
  3139. pyrogram/raw/types/outbox_read_date.py +85 -0
  3140. pyrogram/raw/types/page.py +129 -0
  3141. pyrogram/raw/types/page_block_anchor.py +76 -0
  3142. pyrogram/raw/types/page_block_audio.py +84 -0
  3143. pyrogram/raw/types/page_block_author_date.py +84 -0
  3144. pyrogram/raw/types/page_block_blockquote.py +92 -0
  3145. pyrogram/raw/types/page_block_blockquote_blocks.py +84 -0
  3146. pyrogram/raw/types/page_block_button_row.py +96 -0
  3147. pyrogram/raw/types/page_block_channel.py +76 -0
  3148. pyrogram/raw/types/page_block_collage.py +84 -0
  3149. pyrogram/raw/types/page_block_cover.py +76 -0
  3150. pyrogram/raw/types/page_block_details.py +92 -0
  3151. pyrogram/raw/types/page_block_divider.py +71 -0
  3152. pyrogram/raw/types/page_block_document.py +84 -0
  3153. pyrogram/raw/types/page_block_embed.py +135 -0
  3154. pyrogram/raw/types/page_block_embed_post.py +124 -0
  3155. pyrogram/raw/types/page_block_footer.py +76 -0
  3156. pyrogram/raw/types/page_block_header.py +76 -0
  3157. pyrogram/raw/types/page_block_heading1.py +76 -0
  3158. pyrogram/raw/types/page_block_heading2.py +76 -0
  3159. pyrogram/raw/types/page_block_heading3.py +76 -0
  3160. pyrogram/raw/types/page_block_heading4.py +76 -0
  3161. pyrogram/raw/types/page_block_heading5.py +76 -0
  3162. pyrogram/raw/types/page_block_heading6.py +76 -0
  3163. pyrogram/raw/types/page_block_kicker.py +76 -0
  3164. pyrogram/raw/types/page_block_list.py +76 -0
  3165. pyrogram/raw/types/page_block_map.py +108 -0
  3166. pyrogram/raw/types/page_block_math.py +76 -0
  3167. pyrogram/raw/types/page_block_ordered_list.py +102 -0
  3168. pyrogram/raw/types/page_block_paragraph.py +76 -0
  3169. pyrogram/raw/types/page_block_photo.py +110 -0
  3170. pyrogram/raw/types/page_block_preformatted.py +84 -0
  3171. pyrogram/raw/types/page_block_pullquote.py +84 -0
  3172. pyrogram/raw/types/page_block_related_articles.py +84 -0
  3173. pyrogram/raw/types/page_block_slideshow.py +84 -0
  3174. pyrogram/raw/types/page_block_subheader.py +76 -0
  3175. pyrogram/raw/types/page_block_subtitle.py +76 -0
  3176. pyrogram/raw/types/page_block_table.py +104 -0
  3177. pyrogram/raw/types/page_block_thinking.py +76 -0
  3178. pyrogram/raw/types/page_block_title.py +76 -0
  3179. pyrogram/raw/types/page_block_unsupported.py +71 -0
  3180. pyrogram/raw/types/page_block_video.py +104 -0
  3181. pyrogram/raw/types/page_button.py +96 -0
  3182. pyrogram/raw/types/page_caption.py +84 -0
  3183. pyrogram/raw/types/page_list_item_blocks.py +90 -0
  3184. pyrogram/raw/types/page_list_item_text.py +90 -0
  3185. pyrogram/raw/types/page_list_ordered_item_blocks.py +117 -0
  3186. pyrogram/raw/types/page_list_ordered_item_text.py +117 -0
  3187. pyrogram/raw/types/page_related_article.py +131 -0
  3188. pyrogram/raw/types/page_table_cell.py +128 -0
  3189. pyrogram/raw/types/page_table_row.py +76 -0
  3190. pyrogram/raw/types/paid_reaction_privacy_anonymous.py +71 -0
  3191. pyrogram/raw/types/paid_reaction_privacy_default.py +71 -0
  3192. pyrogram/raw/types/paid_reaction_privacy_peer.py +76 -0
  3193. pyrogram/raw/types/passkey.py +121 -0
  3194. pyrogram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py +100 -0
  3195. pyrogram/raw/types/password_kdf_algo_unknown.py +71 -0
  3196. pyrogram/raw/types/payment_charge.py +84 -0
  3197. pyrogram/raw/types/payment_form_method.py +84 -0
  3198. pyrogram/raw/types/payment_requested_info.py +107 -0
  3199. pyrogram/raw/types/payment_saved_credentials_card.py +84 -0
  3200. pyrogram/raw/types/payments/__init__.py +61 -0
  3201. pyrogram/raw/types/payments/bank_card_data.py +93 -0
  3202. pyrogram/raw/types/payments/check_can_send_gift_result_fail.py +85 -0
  3203. pyrogram/raw/types/payments/check_can_send_gift_result_ok.py +80 -0
  3204. pyrogram/raw/types/payments/checked_gift_code.py +154 -0
  3205. pyrogram/raw/types/payments/connected_star_ref_bots.py +104 -0
  3206. pyrogram/raw/types/payments/exported_invoice.py +85 -0
  3207. pyrogram/raw/types/payments/giveaway_info.py +126 -0
  3208. pyrogram/raw/types/payments/giveaway_info_results.py +142 -0
  3209. pyrogram/raw/types/payments/payment_form.py +214 -0
  3210. pyrogram/raw/types/payments/payment_form_star_gift.py +93 -0
  3211. pyrogram/raw/types/payments/payment_form_stars.py +137 -0
  3212. pyrogram/raw/types/payments/payment_receipt.py +198 -0
  3213. pyrogram/raw/types/payments/payment_receipt_stars.py +161 -0
  3214. pyrogram/raw/types/payments/payment_result.py +86 -0
  3215. pyrogram/raw/types/payments/payment_verification_needed.py +86 -0
  3216. pyrogram/raw/types/payments/resale_star_gifts.py +149 -0
  3217. pyrogram/raw/types/payments/saved_info.py +95 -0
  3218. pyrogram/raw/types/payments/saved_star_gifts.py +131 -0
  3219. pyrogram/raw/types/payments/star_gift_active_auctions.py +101 -0
  3220. pyrogram/raw/types/payments/star_gift_active_auctions_not_modified.py +80 -0
  3221. pyrogram/raw/types/payments/star_gift_auction_acquired_gifts.py +101 -0
  3222. pyrogram/raw/types/payments/star_gift_auction_state.py +125 -0
  3223. pyrogram/raw/types/payments/star_gift_collections.py +85 -0
  3224. pyrogram/raw/types/payments/star_gift_collections_not_modified.py +80 -0
  3225. pyrogram/raw/types/payments/star_gift_upgrade_attributes.py +85 -0
  3226. pyrogram/raw/types/payments/star_gift_upgrade_preview.py +101 -0
  3227. pyrogram/raw/types/payments/star_gift_withdrawal_url.py +85 -0
  3228. pyrogram/raw/types/payments/star_gifts.py +109 -0
  3229. pyrogram/raw/types/payments/star_gifts_not_modified.py +80 -0
  3230. pyrogram/raw/types/payments/stars_revenue_ads_account_url.py +85 -0
  3231. pyrogram/raw/types/payments/stars_revenue_stats.py +113 -0
  3232. pyrogram/raw/types/payments/stars_revenue_withdrawal_url.py +85 -0
  3233. pyrogram/raw/types/payments/stars_status.py +153 -0
  3234. pyrogram/raw/types/payments/suggested_star_ref_bots.py +112 -0
  3235. pyrogram/raw/types/payments/unique_star_gift.py +101 -0
  3236. pyrogram/raw/types/payments/unique_star_gift_value_info.py +194 -0
  3237. pyrogram/raw/types/payments/validated_requested_info.py +98 -0
  3238. pyrogram/raw/types/peer_blocked.py +84 -0
  3239. pyrogram/raw/types/peer_channel.py +85 -0
  3240. pyrogram/raw/types/peer_chat.py +85 -0
  3241. pyrogram/raw/types/peer_color.py +88 -0
  3242. pyrogram/raw/types/peer_color_collectible.py +129 -0
  3243. pyrogram/raw/types/peer_located.py +92 -0
  3244. pyrogram/raw/types/peer_notify_settings.py +184 -0
  3245. pyrogram/raw/types/peer_self_located.py +76 -0
  3246. pyrogram/raw/types/peer_settings.py +226 -0
  3247. pyrogram/raw/types/peer_stories.py +95 -0
  3248. pyrogram/raw/types/peer_user.py +85 -0
  3249. pyrogram/raw/types/pending_suggestion.py +100 -0
  3250. pyrogram/raw/types/phone/__init__.py +32 -0
  3251. pyrogram/raw/types/phone/exported_group_call_invite.py +85 -0
  3252. pyrogram/raw/types/phone/group_call.py +117 -0
  3253. pyrogram/raw/types/phone/group_call_stars.py +109 -0
  3254. pyrogram/raw/types/phone/group_call_stream_channels.py +85 -0
  3255. pyrogram/raw/types/phone/group_call_stream_rtmp_url.py +93 -0
  3256. pyrogram/raw/types/phone/group_participants.py +125 -0
  3257. pyrogram/raw/types/phone/join_as_peers.py +101 -0
  3258. pyrogram/raw/types/phone/phone_call.py +95 -0
  3259. pyrogram/raw/types/phone_call.py +178 -0
  3260. pyrogram/raw/types/phone_call_accepted.py +132 -0
  3261. pyrogram/raw/types/phone_call_discard_reason_busy.py +71 -0
  3262. pyrogram/raw/types/phone_call_discard_reason_disconnect.py +71 -0
  3263. pyrogram/raw/types/phone_call_discard_reason_hangup.py +71 -0
  3264. pyrogram/raw/types/phone_call_discard_reason_migrate_conference_call.py +76 -0
  3265. pyrogram/raw/types/phone_call_discard_reason_missed.py +71 -0
  3266. pyrogram/raw/types/phone_call_discarded.py +115 -0
  3267. pyrogram/raw/types/phone_call_empty.py +76 -0
  3268. pyrogram/raw/types/phone_call_protocol.py +106 -0
  3269. pyrogram/raw/types/phone_call_requested.py +132 -0
  3270. pyrogram/raw/types/phone_call_waiting.py +133 -0
  3271. pyrogram/raw/types/phone_connection.py +116 -0
  3272. pyrogram/raw/types/phone_connection_webrtc.py +130 -0
  3273. pyrogram/raw/types/photo.py +134 -0
  3274. pyrogram/raw/types/photo_cached_size.py +100 -0
  3275. pyrogram/raw/types/photo_empty.py +76 -0
  3276. pyrogram/raw/types/photo_path_size.py +84 -0
  3277. pyrogram/raw/types/photo_size.py +100 -0
  3278. pyrogram/raw/types/photo_size_empty.py +76 -0
  3279. pyrogram/raw/types/photo_size_progressive.py +100 -0
  3280. pyrogram/raw/types/photo_stripped_size.py +84 -0
  3281. pyrogram/raw/types/photos/__init__.py +27 -0
  3282. pyrogram/raw/types/photos/photo.py +95 -0
  3283. pyrogram/raw/types/photos/photos.py +93 -0
  3284. pyrogram/raw/types/photos/photos_slice.py +101 -0
  3285. pyrogram/raw/types/poll.py +190 -0
  3286. pyrogram/raw/types/poll_answer.py +115 -0
  3287. pyrogram/raw/types/poll_answer_voters.py +109 -0
  3288. pyrogram/raw/types/poll_results.py +146 -0
  3289. pyrogram/raw/types/pong.py +94 -0
  3290. pyrogram/raw/types/popular_contact.py +84 -0
  3291. pyrogram/raw/types/post_address.py +116 -0
  3292. pyrogram/raw/types/post_interaction_counters_message.py +100 -0
  3293. pyrogram/raw/types/post_interaction_counters_story.py +100 -0
  3294. pyrogram/raw/types/pq_inner_data.py +116 -0
  3295. pyrogram/raw/types/pq_inner_data_dc.py +124 -0
  3296. pyrogram/raw/types/pq_inner_data_temp.py +124 -0
  3297. pyrogram/raw/types/pq_inner_data_temp_dc.py +132 -0
  3298. pyrogram/raw/types/premium/__init__.py +27 -0
  3299. pyrogram/raw/types/premium/boosts_list.py +113 -0
  3300. pyrogram/raw/types/premium/boosts_status.py +165 -0
  3301. pyrogram/raw/types/premium/my_boosts.py +102 -0
  3302. pyrogram/raw/types/premium_gift_code_option.py +129 -0
  3303. pyrogram/raw/types/premium_subscription_option.py +132 -0
  3304. pyrogram/raw/types/prepaid_giveaway.py +100 -0
  3305. pyrogram/raw/types/prepaid_stars_giveaway.py +108 -0
  3306. pyrogram/raw/types/privacy_key_about.py +71 -0
  3307. pyrogram/raw/types/privacy_key_added_by_phone.py +71 -0
  3308. pyrogram/raw/types/privacy_key_birthday.py +71 -0
  3309. pyrogram/raw/types/privacy_key_chat_invite.py +71 -0
  3310. pyrogram/raw/types/privacy_key_forwards.py +71 -0
  3311. pyrogram/raw/types/privacy_key_no_paid_messages.py +71 -0
  3312. pyrogram/raw/types/privacy_key_phone_call.py +71 -0
  3313. pyrogram/raw/types/privacy_key_phone_number.py +71 -0
  3314. pyrogram/raw/types/privacy_key_phone_p2_p.py +71 -0
  3315. pyrogram/raw/types/privacy_key_profile_photo.py +71 -0
  3316. pyrogram/raw/types/privacy_key_saved_music.py +71 -0
  3317. pyrogram/raw/types/privacy_key_star_gifts_auto_save.py +71 -0
  3318. pyrogram/raw/types/privacy_key_status_timestamp.py +71 -0
  3319. pyrogram/raw/types/privacy_key_voice_messages.py +71 -0
  3320. pyrogram/raw/types/privacy_value_allow_all.py +71 -0
  3321. pyrogram/raw/types/privacy_value_allow_bots.py +71 -0
  3322. pyrogram/raw/types/privacy_value_allow_chat_participants.py +76 -0
  3323. pyrogram/raw/types/privacy_value_allow_close_friends.py +71 -0
  3324. pyrogram/raw/types/privacy_value_allow_contacts.py +71 -0
  3325. pyrogram/raw/types/privacy_value_allow_premium.py +71 -0
  3326. pyrogram/raw/types/privacy_value_allow_users.py +76 -0
  3327. pyrogram/raw/types/privacy_value_disallow_all.py +71 -0
  3328. pyrogram/raw/types/privacy_value_disallow_bots.py +71 -0
  3329. pyrogram/raw/types/privacy_value_disallow_chat_participants.py +76 -0
  3330. pyrogram/raw/types/privacy_value_disallow_contacts.py +71 -0
  3331. pyrogram/raw/types/privacy_value_disallow_users.py +76 -0
  3332. pyrogram/raw/types/profile_tab_files.py +71 -0
  3333. pyrogram/raw/types/profile_tab_gifs.py +71 -0
  3334. pyrogram/raw/types/profile_tab_gifts.py +71 -0
  3335. pyrogram/raw/types/profile_tab_links.py +71 -0
  3336. pyrogram/raw/types/profile_tab_media.py +71 -0
  3337. pyrogram/raw/types/profile_tab_music.py +71 -0
  3338. pyrogram/raw/types/profile_tab_posts.py +71 -0
  3339. pyrogram/raw/types/profile_tab_voice.py +71 -0
  3340. pyrogram/raw/types/public_forward_message.py +76 -0
  3341. pyrogram/raw/types/public_forward_story.py +84 -0
  3342. pyrogram/raw/types/quick_reply.py +100 -0
  3343. pyrogram/raw/types/reaction_count.py +95 -0
  3344. pyrogram/raw/types/reaction_custom_emoji.py +76 -0
  3345. pyrogram/raw/types/reaction_emoji.py +76 -0
  3346. pyrogram/raw/types/reaction_empty.py +71 -0
  3347. pyrogram/raw/types/reaction_notifications_from_all.py +71 -0
  3348. pyrogram/raw/types/reaction_notifications_from_contacts.py +71 -0
  3349. pyrogram/raw/types/reaction_paid.py +71 -0
  3350. pyrogram/raw/types/reactions_notify_settings.py +126 -0
  3351. pyrogram/raw/types/read_participant_date.py +93 -0
  3352. pyrogram/raw/types/received_notify_message.py +93 -0
  3353. pyrogram/raw/types/recent_me_url_chat.py +84 -0
  3354. pyrogram/raw/types/recent_me_url_chat_invite.py +84 -0
  3355. pyrogram/raw/types/recent_me_url_sticker_set.py +84 -0
  3356. pyrogram/raw/types/recent_me_url_unknown.py +76 -0
  3357. pyrogram/raw/types/recent_me_url_user.py +84 -0
  3358. pyrogram/raw/types/recent_story.py +94 -0
  3359. pyrogram/raw/types/reply_inline_markup.py +84 -0
  3360. pyrogram/raw/types/reply_keyboard_force_reply.py +91 -0
  3361. pyrogram/raw/types/reply_keyboard_hide.py +76 -0
  3362. pyrogram/raw/types/reply_keyboard_markup.py +117 -0
  3363. pyrogram/raw/types/report_result_add_comment.py +95 -0
  3364. pyrogram/raw/types/report_result_choose_option.py +95 -0
  3365. pyrogram/raw/types/report_result_reported.py +82 -0
  3366. pyrogram/raw/types/request_peer_type_broadcast.py +105 -0
  3367. pyrogram/raw/types/request_peer_type_chat.py +120 -0
  3368. pyrogram/raw/types/request_peer_type_create_bot.py +94 -0
  3369. pyrogram/raw/types/request_peer_type_user.py +88 -0
  3370. pyrogram/raw/types/requested_peer_channel.py +106 -0
  3371. pyrogram/raw/types/requested_peer_chat.py +97 -0
  3372. pyrogram/raw/types/requested_peer_user.py +115 -0
  3373. pyrogram/raw/types/requirement_to_contact_empty.py +80 -0
  3374. pyrogram/raw/types/requirement_to_contact_paid_messages.py +85 -0
  3375. pyrogram/raw/types/requirement_to_contact_premium.py +80 -0
  3376. pyrogram/raw/types/res_pq.py +110 -0
  3377. pyrogram/raw/types/restriction_reason.py +92 -0
  3378. pyrogram/raw/types/rich_button_style.py +94 -0
  3379. pyrogram/raw/types/rich_message.py +106 -0
  3380. pyrogram/raw/types/rpc_answer_dropped.py +101 -0
  3381. pyrogram/raw/types/rpc_answer_dropped_running.py +80 -0
  3382. pyrogram/raw/types/rpc_answer_unknown.py +80 -0
  3383. pyrogram/raw/types/rpc_error.py +84 -0
  3384. pyrogram/raw/types/rpc_result.py +84 -0
  3385. pyrogram/raw/types/saved_dialog.py +92 -0
  3386. pyrogram/raw/types/saved_phone_contact.py +109 -0
  3387. pyrogram/raw/types/saved_reaction_tag.py +95 -0
  3388. pyrogram/raw/types/saved_star_gift.py +260 -0
  3389. pyrogram/raw/types/search_posts_flood.py +118 -0
  3390. pyrogram/raw/types/search_result_position.py +92 -0
  3391. pyrogram/raw/types/search_results_calendar_period.py +100 -0
  3392. pyrogram/raw/types/secure_credentials_encrypted.py +92 -0
  3393. pyrogram/raw/types/secure_data.py +92 -0
  3394. pyrogram/raw/types/secure_file.py +124 -0
  3395. pyrogram/raw/types/secure_file_empty.py +71 -0
  3396. pyrogram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py +76 -0
  3397. pyrogram/raw/types/secure_password_kdf_algo_sha512.py +76 -0
  3398. pyrogram/raw/types/secure_password_kdf_algo_unknown.py +71 -0
  3399. pyrogram/raw/types/secure_plain_email.py +76 -0
  3400. pyrogram/raw/types/secure_plain_phone.py +76 -0
  3401. pyrogram/raw/types/secure_required_type.py +96 -0
  3402. pyrogram/raw/types/secure_required_type_one_of.py +76 -0
  3403. pyrogram/raw/types/secure_secret_settings.py +92 -0
  3404. pyrogram/raw/types/secure_value.py +167 -0
  3405. pyrogram/raw/types/secure_value_error.py +92 -0
  3406. pyrogram/raw/types/secure_value_error_data.py +100 -0
  3407. pyrogram/raw/types/secure_value_error_file.py +92 -0
  3408. pyrogram/raw/types/secure_value_error_files.py +92 -0
  3409. pyrogram/raw/types/secure_value_error_front_side.py +92 -0
  3410. pyrogram/raw/types/secure_value_error_reverse_side.py +92 -0
  3411. pyrogram/raw/types/secure_value_error_selfie.py +92 -0
  3412. pyrogram/raw/types/secure_value_error_translation_file.py +92 -0
  3413. pyrogram/raw/types/secure_value_error_translation_files.py +92 -0
  3414. pyrogram/raw/types/secure_value_hash.py +84 -0
  3415. pyrogram/raw/types/secure_value_type_address.py +71 -0
  3416. pyrogram/raw/types/secure_value_type_bank_statement.py +71 -0
  3417. pyrogram/raw/types/secure_value_type_driver_license.py +71 -0
  3418. pyrogram/raw/types/secure_value_type_email.py +71 -0
  3419. pyrogram/raw/types/secure_value_type_identity_card.py +71 -0
  3420. pyrogram/raw/types/secure_value_type_internal_passport.py +71 -0
  3421. pyrogram/raw/types/secure_value_type_passport.py +71 -0
  3422. pyrogram/raw/types/secure_value_type_passport_registration.py +71 -0
  3423. pyrogram/raw/types/secure_value_type_personal_details.py +71 -0
  3424. pyrogram/raw/types/secure_value_type_phone.py +71 -0
  3425. pyrogram/raw/types/secure_value_type_rental_agreement.py +71 -0
  3426. pyrogram/raw/types/secure_value_type_temporary_registration.py +71 -0
  3427. pyrogram/raw/types/secure_value_type_utility_bill.py +71 -0
  3428. pyrogram/raw/types/send_as_peer.py +84 -0
  3429. pyrogram/raw/types/send_message_cancel_action.py +71 -0
  3430. pyrogram/raw/types/send_message_choose_contact_action.py +71 -0
  3431. pyrogram/raw/types/send_message_choose_sticker_action.py +71 -0
  3432. pyrogram/raw/types/send_message_emoji_interaction.py +92 -0
  3433. pyrogram/raw/types/send_message_emoji_interaction_seen.py +76 -0
  3434. pyrogram/raw/types/send_message_game_play_action.py +71 -0
  3435. pyrogram/raw/types/send_message_geo_location_action.py +71 -0
  3436. pyrogram/raw/types/send_message_history_import_action.py +76 -0
  3437. pyrogram/raw/types/send_message_record_audio_action.py +71 -0
  3438. pyrogram/raw/types/send_message_record_round_action.py +71 -0
  3439. pyrogram/raw/types/send_message_record_video_action.py +71 -0
  3440. pyrogram/raw/types/send_message_rich_message_draft_action.py +98 -0
  3441. pyrogram/raw/types/send_message_stop_draft_action.py +76 -0
  3442. pyrogram/raw/types/send_message_text_draft_action.py +98 -0
  3443. pyrogram/raw/types/send_message_typing_action.py +71 -0
  3444. pyrogram/raw/types/send_message_upload_audio_action.py +76 -0
  3445. pyrogram/raw/types/send_message_upload_document_action.py +76 -0
  3446. pyrogram/raw/types/send_message_upload_photo_action.py +76 -0
  3447. pyrogram/raw/types/send_message_upload_round_action.py +76 -0
  3448. pyrogram/raw/types/send_message_upload_video_action.py +76 -0
  3449. pyrogram/raw/types/server_dh_inner_data.py +116 -0
  3450. pyrogram/raw/types/server_dh_params_fail.py +101 -0
  3451. pyrogram/raw/types/server_dh_params_ok.py +101 -0
  3452. pyrogram/raw/types/shipping_option.py +92 -0
  3453. pyrogram/raw/types/sms_job.py +101 -0
  3454. pyrogram/raw/types/smsjobs/__init__.py +26 -0
  3455. pyrogram/raw/types/smsjobs/eligible_to_join.py +93 -0
  3456. pyrogram/raw/types/smsjobs/status.py +142 -0
  3457. pyrogram/raw/types/speaking_in_group_call_action.py +71 -0
  3458. pyrogram/raw/types/sponsored_message.py +198 -0
  3459. pyrogram/raw/types/sponsored_message_report_option.py +84 -0
  3460. pyrogram/raw/types/sponsored_peer.py +104 -0
  3461. pyrogram/raw/types/star_gift.py +299 -0
  3462. pyrogram/raw/types/star_gift_active_auction_state.py +92 -0
  3463. pyrogram/raw/types/star_gift_attribute_backdrop.py +124 -0
  3464. pyrogram/raw/types/star_gift_attribute_counter.py +84 -0
  3465. pyrogram/raw/types/star_gift_attribute_id_backdrop.py +76 -0
  3466. pyrogram/raw/types/star_gift_attribute_id_model.py +76 -0
  3467. pyrogram/raw/types/star_gift_attribute_id_pattern.py +76 -0
  3468. pyrogram/raw/types/star_gift_attribute_model.py +100 -0
  3469. pyrogram/raw/types/star_gift_attribute_original_details.py +106 -0
  3470. pyrogram/raw/types/star_gift_attribute_pattern.py +92 -0
  3471. pyrogram/raw/types/star_gift_attribute_rarity.py +76 -0
  3472. pyrogram/raw/types/star_gift_attribute_rarity_epic.py +71 -0
  3473. pyrogram/raw/types/star_gift_attribute_rarity_legendary.py +71 -0
  3474. pyrogram/raw/types/star_gift_attribute_rarity_rare.py +71 -0
  3475. pyrogram/raw/types/star_gift_attribute_rarity_uncommon.py +71 -0
  3476. pyrogram/raw/types/star_gift_auction_acquired_gift.py +135 -0
  3477. pyrogram/raw/types/star_gift_auction_round.py +84 -0
  3478. pyrogram/raw/types/star_gift_auction_round_extendable.py +100 -0
  3479. pyrogram/raw/types/star_gift_auction_state.py +164 -0
  3480. pyrogram/raw/types/star_gift_auction_state_finished.py +121 -0
  3481. pyrogram/raw/types/star_gift_auction_state_not_modified.py +71 -0
  3482. pyrogram/raw/types/star_gift_auction_user_state.py +121 -0
  3483. pyrogram/raw/types/star_gift_background.py +92 -0
  3484. pyrogram/raw/types/star_gift_collection.py +122 -0
  3485. pyrogram/raw/types/star_gift_unique.py +296 -0
  3486. pyrogram/raw/types/star_gift_upgrade_price.py +84 -0
  3487. pyrogram/raw/types/star_ref_program.py +123 -0
  3488. pyrogram/raw/types/stars_amount.py +84 -0
  3489. pyrogram/raw/types/stars_gift_option.py +118 -0
  3490. pyrogram/raw/types/stars_giveaway_option.py +140 -0
  3491. pyrogram/raw/types/stars_giveaway_winners_option.py +92 -0
  3492. pyrogram/raw/types/stars_rating.py +103 -0
  3493. pyrogram/raw/types/stars_revenue_status.py +109 -0
  3494. pyrogram/raw/types/stars_subscription.py +163 -0
  3495. pyrogram/raw/types/stars_subscription_pricing.py +84 -0
  3496. pyrogram/raw/types/stars_ton_amount.py +76 -0
  3497. pyrogram/raw/types/stars_topup_option.py +118 -0
  3498. pyrogram/raw/types/stars_transaction.py +362 -0
  3499. pyrogram/raw/types/stars_transaction_peer.py +76 -0
  3500. pyrogram/raw/types/stars_transaction_peer_ads.py +71 -0
  3501. pyrogram/raw/types/stars_transaction_peer_api.py +71 -0
  3502. pyrogram/raw/types/stars_transaction_peer_app_store.py +71 -0
  3503. pyrogram/raw/types/stars_transaction_peer_fragment.py +71 -0
  3504. pyrogram/raw/types/stars_transaction_peer_play_market.py +71 -0
  3505. pyrogram/raw/types/stars_transaction_peer_premium_bot.py +71 -0
  3506. pyrogram/raw/types/stars_transaction_peer_unsupported.py +71 -0
  3507. pyrogram/raw/types/stats/__init__.py +30 -0
  3508. pyrogram/raw/types/stats/broadcast_stats.py +253 -0
  3509. pyrogram/raw/types/stats/megagroup_stats.py +213 -0
  3510. pyrogram/raw/types/stats/message_stats.py +93 -0
  3511. pyrogram/raw/types/stats/poll_stats.py +85 -0
  3512. pyrogram/raw/types/stats/public_forwards.py +121 -0
  3513. pyrogram/raw/types/stats/story_stats.py +93 -0
  3514. pyrogram/raw/types/stats_abs_value_and_prev.py +84 -0
  3515. pyrogram/raw/types/stats_date_range_days.py +84 -0
  3516. pyrogram/raw/types/stats_graph.py +96 -0
  3517. pyrogram/raw/types/stats_graph_async.py +85 -0
  3518. pyrogram/raw/types/stats_graph_error.py +85 -0
  3519. pyrogram/raw/types/stats_group_top_admin.py +100 -0
  3520. pyrogram/raw/types/stats_group_top_inviter.py +84 -0
  3521. pyrogram/raw/types/stats_group_top_poster.py +92 -0
  3522. pyrogram/raw/types/stats_percent_value.py +84 -0
  3523. pyrogram/raw/types/stats_url.py +76 -0
  3524. pyrogram/raw/types/sticker_keyword.py +84 -0
  3525. pyrogram/raw/types/sticker_pack.py +84 -0
  3526. pyrogram/raw/types/sticker_set.py +206 -0
  3527. pyrogram/raw/types/sticker_set_covered.py +93 -0
  3528. pyrogram/raw/types/sticker_set_full_covered.py +109 -0
  3529. pyrogram/raw/types/sticker_set_multi_covered.py +93 -0
  3530. pyrogram/raw/types/sticker_set_no_covered.py +85 -0
  3531. pyrogram/raw/types/stickers/__init__.py +25 -0
  3532. pyrogram/raw/types/stickers/suggested_short_name.py +85 -0
  3533. pyrogram/raw/types/storage/__init__.py +34 -0
  3534. pyrogram/raw/types/storage/file_gif.py +71 -0
  3535. pyrogram/raw/types/storage/file_jpeg.py +71 -0
  3536. pyrogram/raw/types/storage/file_mov.py +71 -0
  3537. pyrogram/raw/types/storage/file_mp3.py +71 -0
  3538. pyrogram/raw/types/storage/file_mp4.py +71 -0
  3539. pyrogram/raw/types/storage/file_partial.py +71 -0
  3540. pyrogram/raw/types/storage/file_pdf.py +71 -0
  3541. pyrogram/raw/types/storage/file_png.py +71 -0
  3542. pyrogram/raw/types/storage/file_unknown.py +71 -0
  3543. pyrogram/raw/types/storage/file_webp.py +71 -0
  3544. pyrogram/raw/types/stories/__init__.py +35 -0
  3545. pyrogram/raw/types/stories/albums.py +93 -0
  3546. pyrogram/raw/types/stories/albums_not_modified.py +80 -0
  3547. pyrogram/raw/types/stories/all_stories.py +133 -0
  3548. pyrogram/raw/types/stories/all_stories_not_modified.py +96 -0
  3549. pyrogram/raw/types/stories/can_send_story_count.py +85 -0
  3550. pyrogram/raw/types/stories/found_stories.py +120 -0
  3551. pyrogram/raw/types/stories/peer_stories.py +101 -0
  3552. pyrogram/raw/types/stories/stories.py +124 -0
  3553. pyrogram/raw/types/stories/story_reactions_list.py +120 -0
  3554. pyrogram/raw/types/stories/story_views.py +93 -0
  3555. pyrogram/raw/types/stories/story_views_list.py +144 -0
  3556. pyrogram/raw/types/stories_stealth_mode.py +88 -0
  3557. pyrogram/raw/types/story_album.py +116 -0
  3558. pyrogram/raw/types/story_fwd_header.py +104 -0
  3559. pyrogram/raw/types/story_item.py +255 -0
  3560. pyrogram/raw/types/story_item_deleted.py +76 -0
  3561. pyrogram/raw/types/story_item_skipped.py +106 -0
  3562. pyrogram/raw/types/story_reaction.py +92 -0
  3563. pyrogram/raw/types/story_reaction_public_forward.py +76 -0
  3564. pyrogram/raw/types/story_reaction_public_repost.py +84 -0
  3565. pyrogram/raw/types/story_view.py +108 -0
  3566. pyrogram/raw/types/story_view_public_forward.py +90 -0
  3567. pyrogram/raw/types/story_view_public_repost.py +98 -0
  3568. pyrogram/raw/types/story_views.py +122 -0
  3569. pyrogram/raw/types/suggested_post.py +101 -0
  3570. pyrogram/raw/types/text_anchor.py +84 -0
  3571. pyrogram/raw/types/text_auto_email.py +76 -0
  3572. pyrogram/raw/types/text_auto_phone.py +76 -0
  3573. pyrogram/raw/types/text_auto_url.py +76 -0
  3574. pyrogram/raw/types/text_bank_card.py +76 -0
  3575. pyrogram/raw/types/text_bold.py +76 -0
  3576. pyrogram/raw/types/text_bot_command.py +76 -0
  3577. pyrogram/raw/types/text_button.py +96 -0
  3578. pyrogram/raw/types/text_cashtag.py +76 -0
  3579. pyrogram/raw/types/text_concat.py +76 -0
  3580. pyrogram/raw/types/text_custom_emoji.py +84 -0
  3581. pyrogram/raw/types/text_date.py +122 -0
  3582. pyrogram/raw/types/text_diff.py +84 -0
  3583. pyrogram/raw/types/text_email.py +84 -0
  3584. pyrogram/raw/types/text_empty.py +71 -0
  3585. pyrogram/raw/types/text_fixed.py +76 -0
  3586. pyrogram/raw/types/text_hashtag.py +76 -0
  3587. pyrogram/raw/types/text_image.py +92 -0
  3588. pyrogram/raw/types/text_italic.py +76 -0
  3589. pyrogram/raw/types/text_marked.py +76 -0
  3590. pyrogram/raw/types/text_math.py +76 -0
  3591. pyrogram/raw/types/text_mention.py +76 -0
  3592. pyrogram/raw/types/text_mention_name.py +84 -0
  3593. pyrogram/raw/types/text_phone.py +84 -0
  3594. pyrogram/raw/types/text_plain.py +76 -0
  3595. pyrogram/raw/types/text_spoiler.py +76 -0
  3596. pyrogram/raw/types/text_strike.py +76 -0
  3597. pyrogram/raw/types/text_subscript.py +76 -0
  3598. pyrogram/raw/types/text_superscript.py +76 -0
  3599. pyrogram/raw/types/text_underline.py +76 -0
  3600. pyrogram/raw/types/text_url.py +92 -0
  3601. pyrogram/raw/types/text_with_entities.py +93 -0
  3602. pyrogram/raw/types/theme.py +169 -0
  3603. pyrogram/raw/types/theme_settings.py +121 -0
  3604. pyrogram/raw/types/timezone.py +92 -0
  3605. pyrogram/raw/types/todo_completion.py +92 -0
  3606. pyrogram/raw/types/todo_item.py +84 -0
  3607. pyrogram/raw/types/todo_list.py +98 -0
  3608. pyrogram/raw/types/top_peer.py +84 -0
  3609. pyrogram/raw/types/top_peer_category_bots_app.py +71 -0
  3610. pyrogram/raw/types/top_peer_category_bots_guest_chat.py +71 -0
  3611. pyrogram/raw/types/top_peer_category_bots_inline.py +71 -0
  3612. pyrogram/raw/types/top_peer_category_bots_pm.py +71 -0
  3613. pyrogram/raw/types/top_peer_category_channels.py +71 -0
  3614. pyrogram/raw/types/top_peer_category_correspondents.py +71 -0
  3615. pyrogram/raw/types/top_peer_category_forward_chats.py +71 -0
  3616. pyrogram/raw/types/top_peer_category_forward_users.py +71 -0
  3617. pyrogram/raw/types/top_peer_category_groups.py +71 -0
  3618. pyrogram/raw/types/top_peer_category_peers.py +92 -0
  3619. pyrogram/raw/types/top_peer_category_phone_calls.py +71 -0
  3620. pyrogram/raw/types/update_ai_compose_tones.py +71 -0
  3621. pyrogram/raw/types/update_attach_menu_bots.py +71 -0
  3622. pyrogram/raw/types/update_auto_save_settings.py +71 -0
  3623. pyrogram/raw/types/update_bot_business_connect.py +84 -0
  3624. pyrogram/raw/types/update_bot_callback_query.py +128 -0
  3625. pyrogram/raw/types/update_bot_chat_boost.py +92 -0
  3626. pyrogram/raw/types/update_bot_chat_invite_requester.py +127 -0
  3627. pyrogram/raw/types/update_bot_commands.py +92 -0
  3628. pyrogram/raw/types/update_bot_delete_business_message.py +100 -0
  3629. pyrogram/raw/types/update_bot_edit_business_message.py +104 -0
  3630. pyrogram/raw/types/update_bot_guest_chat_query.py +104 -0
  3631. pyrogram/raw/types/update_bot_inline_query.py +122 -0
  3632. pyrogram/raw/types/update_bot_inline_send.py +114 -0
  3633. pyrogram/raw/types/update_bot_menu_button.py +84 -0
  3634. pyrogram/raw/types/update_bot_message_reaction.py +124 -0
  3635. pyrogram/raw/types/update_bot_message_reactions.py +108 -0
  3636. pyrogram/raw/types/update_bot_new_business_message.py +104 -0
  3637. pyrogram/raw/types/update_bot_precheckout_query.py +129 -0
  3638. pyrogram/raw/types/update_bot_purchased_paid_media.py +92 -0
  3639. pyrogram/raw/types/update_bot_shipping_query.py +100 -0
  3640. pyrogram/raw/types/update_bot_stars_subscription.py +112 -0
  3641. pyrogram/raw/types/update_bot_stopped.py +100 -0
  3642. pyrogram/raw/types/update_bot_webhook_json.py +76 -0
  3643. pyrogram/raw/types/update_bot_webhook_json_query.py +92 -0
  3644. pyrogram/raw/types/update_business_bot_callback_query.py +129 -0
  3645. pyrogram/raw/types/update_channel.py +76 -0
  3646. pyrogram/raw/types/update_channel_available_messages.py +84 -0
  3647. pyrogram/raw/types/update_channel_message_forwards.py +92 -0
  3648. pyrogram/raw/types/update_channel_message_views.py +92 -0
  3649. pyrogram/raw/types/update_channel_participant.py +146 -0
  3650. pyrogram/raw/types/update_channel_read_messages_contents.py +105 -0
  3651. pyrogram/raw/types/update_channel_too_long.py +87 -0
  3652. pyrogram/raw/types/update_channel_user_typing.py +103 -0
  3653. pyrogram/raw/types/update_channel_view_forum_as_messages.py +84 -0
  3654. pyrogram/raw/types/update_channel_web_page.py +100 -0
  3655. pyrogram/raw/types/update_chat.py +76 -0
  3656. pyrogram/raw/types/update_chat_default_banned_rights.py +92 -0
  3657. pyrogram/raw/types/update_chat_participant.py +140 -0
  3658. pyrogram/raw/types/update_chat_participant_add.py +108 -0
  3659. pyrogram/raw/types/update_chat_participant_admin.py +100 -0
  3660. pyrogram/raw/types/update_chat_participant_delete.py +92 -0
  3661. pyrogram/raw/types/update_chat_participant_rank.py +100 -0
  3662. pyrogram/raw/types/update_chat_participants.py +76 -0
  3663. pyrogram/raw/types/update_chat_user_typing.py +92 -0
  3664. pyrogram/raw/types/update_config.py +71 -0
  3665. pyrogram/raw/types/update_contacts_reset.py +71 -0
  3666. pyrogram/raw/types/update_dc_options.py +76 -0
  3667. pyrogram/raw/types/update_delete_channel_messages.py +100 -0
  3668. pyrogram/raw/types/update_delete_ephemeral_messages.py +84 -0
  3669. pyrogram/raw/types/update_delete_group_call_messages.py +84 -0
  3670. pyrogram/raw/types/update_delete_messages.py +92 -0
  3671. pyrogram/raw/types/update_delete_quick_reply.py +76 -0
  3672. pyrogram/raw/types/update_delete_quick_reply_messages.py +84 -0
  3673. pyrogram/raw/types/update_delete_scheduled_messages.py +96 -0
  3674. pyrogram/raw/types/update_dialog_filter.py +88 -0
  3675. pyrogram/raw/types/update_dialog_filter_order.py +76 -0
  3676. pyrogram/raw/types/update_dialog_filters.py +71 -0
  3677. pyrogram/raw/types/update_dialog_pinned.py +93 -0
  3678. pyrogram/raw/types/update_dialog_unread_mark.py +94 -0
  3679. pyrogram/raw/types/update_draft_message.py +105 -0
  3680. pyrogram/raw/types/update_edit_channel_message.py +92 -0
  3681. pyrogram/raw/types/update_edit_ephemeral_message.py +76 -0
  3682. pyrogram/raw/types/update_edit_message.py +92 -0
  3683. pyrogram/raw/types/update_emoji_game_info.py +76 -0
  3684. pyrogram/raw/types/update_encrypted_chat_typing.py +76 -0
  3685. pyrogram/raw/types/update_encrypted_messages_read.py +92 -0
  3686. pyrogram/raw/types/update_encryption.py +84 -0
  3687. pyrogram/raw/types/update_ephemeral_bot_callback_query.py +129 -0
  3688. pyrogram/raw/types/update_faved_stickers.py +71 -0
  3689. pyrogram/raw/types/update_folder_peers.py +92 -0
  3690. pyrogram/raw/types/update_geo_live_viewed.py +84 -0
  3691. pyrogram/raw/types/update_group_call.py +94 -0
  3692. pyrogram/raw/types/update_group_call_chain_blocks.py +100 -0
  3693. pyrogram/raw/types/update_group_call_connection.py +84 -0
  3694. pyrogram/raw/types/update_group_call_encrypted_message.py +92 -0
  3695. pyrogram/raw/types/update_group_call_message.py +84 -0
  3696. pyrogram/raw/types/update_group_call_participants.py +92 -0
  3697. pyrogram/raw/types/update_inline_bot_callback_query.py +120 -0
  3698. pyrogram/raw/types/update_join_chat_web_view_decision.py +92 -0
  3699. pyrogram/raw/types/update_lang_pack.py +76 -0
  3700. pyrogram/raw/types/update_lang_pack_too_long.py +76 -0
  3701. pyrogram/raw/types/update_login_token.py +71 -0
  3702. pyrogram/raw/types/update_managed_bot.py +92 -0
  3703. pyrogram/raw/types/update_message_extended_media.py +92 -0
  3704. pyrogram/raw/types/update_message_id.py +84 -0
  3705. pyrogram/raw/types/update_message_poll.py +124 -0
  3706. pyrogram/raw/types/update_message_poll_vote.py +108 -0
  3707. pyrogram/raw/types/update_message_reactions.py +113 -0
  3708. pyrogram/raw/types/update_mono_forum_no_paid_exception.py +92 -0
  3709. pyrogram/raw/types/update_move_sticker_set_to_top.py +90 -0
  3710. pyrogram/raw/types/update_new_authorization.py +111 -0
  3711. pyrogram/raw/types/update_new_bot_connection.py +111 -0
  3712. pyrogram/raw/types/update_new_channel_message.py +92 -0
  3713. pyrogram/raw/types/update_new_encrypted_message.py +84 -0
  3714. pyrogram/raw/types/update_new_ephemeral_message.py +76 -0
  3715. pyrogram/raw/types/update_new_message.py +92 -0
  3716. pyrogram/raw/types/update_new_quick_reply.py +76 -0
  3717. pyrogram/raw/types/update_new_scheduled_message.py +76 -0
  3718. pyrogram/raw/types/update_new_sticker_set.py +76 -0
  3719. pyrogram/raw/types/update_new_story_reaction.py +92 -0
  3720. pyrogram/raw/types/update_notify_settings.py +84 -0
  3721. pyrogram/raw/types/update_paid_reaction_privacy.py +76 -0
  3722. pyrogram/raw/types/update_peer_blocked.py +90 -0
  3723. pyrogram/raw/types/update_peer_history_ttl.py +87 -0
  3724. pyrogram/raw/types/update_peer_located.py +76 -0
  3725. pyrogram/raw/types/update_peer_settings.py +84 -0
  3726. pyrogram/raw/types/update_peer_wallpaper.py +94 -0
  3727. pyrogram/raw/types/update_pending_join_requests.py +92 -0
  3728. pyrogram/raw/types/update_phone_call.py +76 -0
  3729. pyrogram/raw/types/update_phone_call_signaling_data.py +84 -0
  3730. pyrogram/raw/types/update_pinned_channel_messages.py +108 -0
  3731. pyrogram/raw/types/update_pinned_dialogs.py +89 -0
  3732. pyrogram/raw/types/update_pinned_forum_topic.py +92 -0
  3733. pyrogram/raw/types/update_pinned_forum_topics.py +88 -0
  3734. pyrogram/raw/types/update_pinned_messages.py +108 -0
  3735. pyrogram/raw/types/update_pinned_saved_dialogs.py +80 -0
  3736. pyrogram/raw/types/update_privacy.py +84 -0
  3737. pyrogram/raw/types/update_pts_changed.py +71 -0
  3738. pyrogram/raw/types/update_quick_replies.py +76 -0
  3739. pyrogram/raw/types/update_quick_reply_message.py +76 -0
  3740. pyrogram/raw/types/update_read_channel_discussion_inbox.py +112 -0
  3741. pyrogram/raw/types/update_read_channel_discussion_outbox.py +92 -0
  3742. pyrogram/raw/types/update_read_channel_inbox.py +111 -0
  3743. pyrogram/raw/types/update_read_channel_outbox.py +84 -0
  3744. pyrogram/raw/types/update_read_featured_emoji_stickers.py +71 -0
  3745. pyrogram/raw/types/update_read_featured_stickers.py +71 -0
  3746. pyrogram/raw/types/update_read_history_inbox.py +128 -0
  3747. pyrogram/raw/types/update_read_history_outbox.py +100 -0
  3748. pyrogram/raw/types/update_read_messages_contents.py +103 -0
  3749. pyrogram/raw/types/update_read_mono_forum_inbox.py +92 -0
  3750. pyrogram/raw/types/update_read_mono_forum_outbox.py +92 -0
  3751. pyrogram/raw/types/update_read_stories.py +84 -0
  3752. pyrogram/raw/types/update_recent_emoji_statuses.py +71 -0
  3753. pyrogram/raw/types/update_recent_reactions.py +71 -0
  3754. pyrogram/raw/types/update_recent_stickers.py +71 -0
  3755. pyrogram/raw/types/update_saved_dialog_pinned.py +84 -0
  3756. pyrogram/raw/types/update_saved_gifs.py +71 -0
  3757. pyrogram/raw/types/update_saved_reaction_tags.py +71 -0
  3758. pyrogram/raw/types/update_saved_ringtones.py +71 -0
  3759. pyrogram/raw/types/update_sent_phone_code.py +76 -0
  3760. pyrogram/raw/types/update_sent_story_reaction.py +92 -0
  3761. pyrogram/raw/types/update_service_notification.py +123 -0
  3762. pyrogram/raw/types/update_short.py +226 -0
  3763. pyrogram/raw/types/update_short_chat_message.py +340 -0
  3764. pyrogram/raw/types/update_short_message.py +332 -0
  3765. pyrogram/raw/types/update_short_sent_message.py +279 -0
  3766. pyrogram/raw/types/update_sms_job.py +76 -0
  3767. pyrogram/raw/types/update_star_gift_auction_state.py +84 -0
  3768. pyrogram/raw/types/update_star_gift_auction_user_state.py +84 -0
  3769. pyrogram/raw/types/update_star_gift_craft_fail.py +71 -0
  3770. pyrogram/raw/types/update_stars_balance.py +76 -0
  3771. pyrogram/raw/types/update_stars_revenue_status.py +84 -0
  3772. pyrogram/raw/types/update_sticker_sets.py +82 -0
  3773. pyrogram/raw/types/update_sticker_sets_order.py +90 -0
  3774. pyrogram/raw/types/update_stories_stealth_mode.py +76 -0
  3775. pyrogram/raw/types/update_story.py +84 -0
  3776. pyrogram/raw/types/update_story_id.py +84 -0
  3777. pyrogram/raw/types/update_theme.py +76 -0
  3778. pyrogram/raw/types/update_transcribed_audio.py +108 -0
  3779. pyrogram/raw/types/update_user.py +76 -0
  3780. pyrogram/raw/types/update_user_emoji_status.py +84 -0
  3781. pyrogram/raw/types/update_user_name.py +100 -0
  3782. pyrogram/raw/types/update_user_phone.py +84 -0
  3783. pyrogram/raw/types/update_user_status.py +84 -0
  3784. pyrogram/raw/types/update_user_typing.py +95 -0
  3785. pyrogram/raw/types/update_web_browser_exception.py +93 -0
  3786. pyrogram/raw/types/update_web_browser_settings.py +82 -0
  3787. pyrogram/raw/types/update_web_page.py +92 -0
  3788. pyrogram/raw/types/update_web_view_result_sent.py +76 -0
  3789. pyrogram/raw/types/updates/__init__.py +32 -0
  3790. pyrogram/raw/types/updates/channel_difference.py +134 -0
  3791. pyrogram/raw/types/updates/channel_difference_empty.py +102 -0
  3792. pyrogram/raw/types/updates/channel_difference_too_long.py +126 -0
  3793. pyrogram/raw/types/updates/difference.py +125 -0
  3794. pyrogram/raw/types/updates/difference_empty.py +93 -0
  3795. pyrogram/raw/types/updates/difference_slice.py +125 -0
  3796. pyrogram/raw/types/updates/difference_too_long.py +85 -0
  3797. pyrogram/raw/types/updates/state.py +117 -0
  3798. pyrogram/raw/types/updates_combined.py +258 -0
  3799. pyrogram/raw/types/updates_t.py +250 -0
  3800. pyrogram/raw/types/updates_too_long.py +213 -0
  3801. pyrogram/raw/types/upload/__init__.py +29 -0
  3802. pyrogram/raw/types/upload/cdn_file.py +85 -0
  3803. pyrogram/raw/types/upload/cdn_file_reupload_needed.py +85 -0
  3804. pyrogram/raw/types/upload/file.py +101 -0
  3805. pyrogram/raw/types/upload/file_cdn_redirect.py +117 -0
  3806. pyrogram/raw/types/upload/web_file.py +117 -0
  3807. pyrogram/raw/types/url_auth_result_accepted.py +89 -0
  3808. pyrogram/raw/types/url_auth_result_default.py +81 -0
  3809. pyrogram/raw/types/url_auth_result_request.py +184 -0
  3810. pyrogram/raw/types/user.py +467 -0
  3811. pyrogram/raw/types/user_empty.py +93 -0
  3812. pyrogram/raw/types/user_full.py +555 -0
  3813. pyrogram/raw/types/user_profile_photo.py +107 -0
  3814. pyrogram/raw/types/user_profile_photo_empty.py +71 -0
  3815. pyrogram/raw/types/user_status_empty.py +71 -0
  3816. pyrogram/raw/types/user_status_last_month.py +76 -0
  3817. pyrogram/raw/types/user_status_last_week.py +76 -0
  3818. pyrogram/raw/types/user_status_offline.py +76 -0
  3819. pyrogram/raw/types/user_status_online.py +76 -0
  3820. pyrogram/raw/types/user_status_recently.py +76 -0
  3821. pyrogram/raw/types/username.py +90 -0
  3822. pyrogram/raw/types/users/__init__.py +29 -0
  3823. pyrogram/raw/types/users/saved_music.py +94 -0
  3824. pyrogram/raw/types/users/saved_music_not_modified.py +86 -0
  3825. pyrogram/raw/types/users/user_full.py +101 -0
  3826. pyrogram/raw/types/users/users.py +85 -0
  3827. pyrogram/raw/types/users/users_slice.py +93 -0
  3828. pyrogram/raw/types/video_size.py +111 -0
  3829. pyrogram/raw/types/video_size_emoji_markup.py +84 -0
  3830. pyrogram/raw/types/video_size_sticker_markup.py +92 -0
  3831. pyrogram/raw/types/wall_paper.py +147 -0
  3832. pyrogram/raw/types/wall_paper_no_file.py +111 -0
  3833. pyrogram/raw/types/wall_paper_settings.py +145 -0
  3834. pyrogram/raw/types/web_authorization.py +140 -0
  3835. pyrogram/raw/types/web_document.py +108 -0
  3836. pyrogram/raw/types/web_document_no_proxy.py +100 -0
  3837. pyrogram/raw/types/web_domain_exception.py +103 -0
  3838. pyrogram/raw/types/web_page.py +244 -0
  3839. pyrogram/raw/types/web_page_attribute_ai_compose_tone.py +76 -0
  3840. pyrogram/raw/types/web_page_attribute_star_gift_auction.py +84 -0
  3841. pyrogram/raw/types/web_page_attribute_star_gift_collection.py +76 -0
  3842. pyrogram/raw/types/web_page_attribute_sticker_set.py +90 -0
  3843. pyrogram/raw/types/web_page_attribute_story.py +96 -0
  3844. pyrogram/raw/types/web_page_attribute_theme.py +90 -0
  3845. pyrogram/raw/types/web_page_attribute_unique_star_gift.py +76 -0
  3846. pyrogram/raw/types/web_page_empty.py +87 -0
  3847. pyrogram/raw/types/web_page_not_modified.py +79 -0
  3848. pyrogram/raw/types/web_page_pending.py +95 -0
  3849. pyrogram/raw/types/web_view_message_sent.py +89 -0
  3850. pyrogram/raw/types/web_view_result_url.py +118 -0
  3851. pyrogram/session/__init__.py +22 -0
  3852. pyrogram/session/auth.py +307 -0
  3853. pyrogram/session/internals/__init__.py +22 -0
  3854. pyrogram/session/internals/msg_factory.py +69 -0
  3855. pyrogram/session/internals/msg_id.py +39 -0
  3856. pyrogram/session/session.py +733 -0
  3857. pyrogram/storage/__init__.py +22 -0
  3858. pyrogram/storage/sqlite_storage.py +499 -0
  3859. pyrogram/storage/storage.py +283 -0
  3860. pyrogram/sync.py +194 -0
  3861. pyrogram/types/__init__.py +885 -0
  3862. pyrogram/types/authorization/__init__.py +39 -0
  3863. pyrogram/types/authorization/active_session.py +184 -0
  3864. pyrogram/types/authorization/active_sessions.py +55 -0
  3865. pyrogram/types/authorization/firebase_authentication_settings.py +59 -0
  3866. pyrogram/types/authorization/phone_number_authentication_settings.py +89 -0
  3867. pyrogram/types/authorization/sent_code.py +67 -0
  3868. pyrogram/types/authorization/terms_of_service.py +58 -0
  3869. pyrogram/types/bots_and_keyboards/__init__.py +119 -0
  3870. pyrogram/types/bots_and_keyboards/bot_access_settings.py +52 -0
  3871. pyrogram/types/bots_and_keyboards/bot_command.py +55 -0
  3872. pyrogram/types/bots_and_keyboards/bot_command_scope.py +79 -0
  3873. pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +34 -0
  3874. pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +34 -0
  3875. pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +34 -0
  3876. pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py +42 -0
  3877. pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +42 -0
  3878. pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py +49 -0
  3879. pyrogram/types/bots_and_keyboards/bot_command_scope_default.py +36 -0
  3880. pyrogram/types/bots_and_keyboards/callback_game.py +29 -0
  3881. pyrogram/types/bots_and_keyboards/callback_query.py +370 -0
  3882. pyrogram/types/bots_and_keyboards/chat_boost_updated.py +60 -0
  3883. pyrogram/types/bots_and_keyboards/chat_shared.py +91 -0
  3884. pyrogram/types/bots_and_keyboards/copy_text_button.py +35 -0
  3885. pyrogram/types/bots_and_keyboards/disabled_button.py +28 -0
  3886. pyrogram/types/bots_and_keyboards/force_reply.py +61 -0
  3887. pyrogram/types/bots_and_keyboards/game_high_score.py +74 -0
  3888. pyrogram/types/bots_and_keyboards/inline_keyboard_button.py +373 -0
  3889. pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py +78 -0
  3890. pyrogram/types/bots_and_keyboards/keyboard_button.py +336 -0
  3891. pyrogram/types/bots_and_keyboards/keyboard_button_poll_type.py +35 -0
  3892. pyrogram/types/bots_and_keyboards/keyboard_button_request_chat.py +103 -0
  3893. pyrogram/types/bots_and_keyboards/keyboard_button_request_managed_bot.py +43 -0
  3894. pyrogram/types/bots_and_keyboards/keyboard_button_request_users.py +76 -0
  3895. pyrogram/types/bots_and_keyboards/labeled_price.py +50 -0
  3896. pyrogram/types/bots_and_keyboards/login_url.py +89 -0
  3897. pyrogram/types/bots_and_keyboards/managed_bot_updated.py +63 -0
  3898. pyrogram/types/bots_and_keyboards/menu_button.py +50 -0
  3899. pyrogram/types/bots_and_keyboards/menu_button_commands.py +34 -0
  3900. pyrogram/types/bots_and_keyboards/menu_button_default.py +34 -0
  3901. pyrogram/types/bots_and_keyboards/menu_button_web_app.py +47 -0
  3902. pyrogram/types/bots_and_keyboards/message_generation_stopped.py +66 -0
  3903. pyrogram/types/bots_and_keyboards/message_reaction_count_updated.py +91 -0
  3904. pyrogram/types/bots_and_keyboards/message_reaction_updated.py +124 -0
  3905. pyrogram/types/bots_and_keyboards/order_info.py +60 -0
  3906. pyrogram/types/bots_and_keyboards/pre_checkout_query.py +138 -0
  3907. pyrogram/types/bots_and_keyboards/purchased_paid_media.py +51 -0
  3908. pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py +112 -0
  3909. pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py +54 -0
  3910. pyrogram/types/bots_and_keyboards/rich_message_button.py +330 -0
  3911. pyrogram/types/bots_and_keyboards/sent_guest_message.py +47 -0
  3912. pyrogram/types/bots_and_keyboards/sent_web_app_message.py +46 -0
  3913. pyrogram/types/bots_and_keyboards/shipping_address.py +86 -0
  3914. pyrogram/types/bots_and_keyboards/shipping_option.py +60 -0
  3915. pyrogram/types/bots_and_keyboards/shipping_query.py +120 -0
  3916. pyrogram/types/bots_and_keyboards/switch_inline_query_chosen_chat.py +103 -0
  3917. pyrogram/types/bots_and_keyboards/users_shared.py +81 -0
  3918. pyrogram/types/bots_and_keyboards/web_app_info.py +40 -0
  3919. pyrogram/types/inline_mode/__init__.py +61 -0
  3920. pyrogram/types/inline_mode/chosen_inline_result.py +96 -0
  3921. pyrogram/types/inline_mode/inline_query.py +184 -0
  3922. pyrogram/types/inline_mode/inline_query_result.py +68 -0
  3923. pyrogram/types/inline_mode/inline_query_result_animation.py +158 -0
  3924. pyrogram/types/inline_mode/inline_query_result_article.py +99 -0
  3925. pyrogram/types/inline_mode/inline_query_result_audio.py +125 -0
  3926. pyrogram/types/inline_mode/inline_query_result_cached_animation.py +113 -0
  3927. pyrogram/types/inline_mode/inline_query_result_cached_audio.py +106 -0
  3928. pyrogram/types/inline_mode/inline_query_result_cached_document.py +118 -0
  3929. pyrogram/types/inline_mode/inline_query_result_cached_photo.py +116 -0
  3930. pyrogram/types/inline_mode/inline_query_result_cached_sticker.py +83 -0
  3931. pyrogram/types/inline_mode/inline_query_result_cached_video.py +119 -0
  3932. pyrogram/types/inline_mode/inline_query_result_cached_voice.py +113 -0
  3933. pyrogram/types/inline_mode/inline_query_result_contact.py +118 -0
  3934. pyrogram/types/inline_mode/inline_query_result_document.py +148 -0
  3935. pyrogram/types/inline_mode/inline_query_result_location.py +124 -0
  3936. pyrogram/types/inline_mode/inline_query_result_photo.py +146 -0
  3937. pyrogram/types/inline_mode/inline_query_result_venue.py +135 -0
  3938. pyrogram/types/inline_mode/inline_query_result_video.py +153 -0
  3939. pyrogram/types/inline_mode/inline_query_result_voice.py +121 -0
  3940. pyrogram/types/input_content/__init__.py +181 -0
  3941. pyrogram/types/input_content/input_chat_photo.py +114 -0
  3942. pyrogram/types/input_content/input_checklist.py +68 -0
  3943. pyrogram/types/input_content/input_contact_message_content.py +69 -0
  3944. pyrogram/types/input_content/input_credentials.py +44 -0
  3945. pyrogram/types/input_content/input_credentials_apple_pay.py +46 -0
  3946. pyrogram/types/input_content/input_credentials_google_pay.py +46 -0
  3947. pyrogram/types/input_content/input_credentials_new.py +52 -0
  3948. pyrogram/types/input_content/input_credentials_saved.py +56 -0
  3949. pyrogram/types/input_content/input_invoice.py +42 -0
  3950. pyrogram/types/input_content/input_invoice_message.py +51 -0
  3951. pyrogram/types/input_content/input_invoice_message_content.py +176 -0
  3952. pyrogram/types/input_content/input_invoice_name.py +55 -0
  3953. pyrogram/types/input_content/input_location_message_content.py +84 -0
  3954. pyrogram/types/input_content/input_media.py +60 -0
  3955. pyrogram/types/input_content/input_media_animation.py +174 -0
  3956. pyrogram/types/input_content/input_media_audio.py +173 -0
  3957. pyrogram/types/input_content/input_media_document.py +141 -0
  3958. pyrogram/types/input_content/input_media_link.py +57 -0
  3959. pyrogram/types/input_content/input_media_live_photo.py +186 -0
  3960. pyrogram/types/input_content/input_media_location.py +91 -0
  3961. pyrogram/types/input_content/input_media_photo.py +137 -0
  3962. pyrogram/types/input_content/input_media_sticker.py +118 -0
  3963. pyrogram/types/input_content/input_media_venue.py +114 -0
  3964. pyrogram/types/input_content/input_media_video.py +251 -0
  3965. pyrogram/types/input_content/input_media_voice_note.py +148 -0
  3966. pyrogram/types/input_content/input_message_content.py +46 -0
  3967. pyrogram/types/input_content/input_phone_contact.py +51 -0
  3968. pyrogram/types/input_content/input_poll_media.py +62 -0
  3969. pyrogram/types/input_content/input_poll_option.py +57 -0
  3970. pyrogram/types/input_content/input_poll_option_media.py +61 -0
  3971. pyrogram/types/input_content/input_privacy_rule.py +49 -0
  3972. pyrogram/types/input_content/input_privacy_rule_allow_all.py +36 -0
  3973. pyrogram/types/input_content/input_privacy_rule_allow_bots.py +36 -0
  3974. pyrogram/types/input_content/input_privacy_rule_allow_chats.py +57 -0
  3975. pyrogram/types/input_content/input_privacy_rule_allow_close_friends.py +36 -0
  3976. pyrogram/types/input_content/input_privacy_rule_allow_contacts.py +36 -0
  3977. pyrogram/types/input_content/input_privacy_rule_allow_premium.py +36 -0
  3978. pyrogram/types/input_content/input_privacy_rule_allow_users.py +55 -0
  3979. pyrogram/types/input_content/input_privacy_rule_disallow_all.py +36 -0
  3980. pyrogram/types/input_content/input_privacy_rule_disallow_bots.py +36 -0
  3981. pyrogram/types/input_content/input_privacy_rule_disallow_chats.py +57 -0
  3982. pyrogram/types/input_content/input_privacy_rule_disallow_contacts.py +36 -0
  3983. pyrogram/types/input_content/input_privacy_rule_disallow_users.py +55 -0
  3984. pyrogram/types/input_content/input_rich_block.py +1190 -0
  3985. pyrogram/types/input_content/input_rich_message.py +176 -0
  3986. pyrogram/types/input_content/input_rich_message_content.py +51 -0
  3987. pyrogram/types/input_content/input_rich_message_media.py +89 -0
  3988. pyrogram/types/input_content/input_sticker.py +184 -0
  3989. pyrogram/types/input_content/input_text_message_content.py +100 -0
  3990. pyrogram/types/input_content/input_venue_message_content.py +86 -0
  3991. pyrogram/types/list.py +35 -0
  3992. pyrogram/types/messages_and_media/__init__.py +431 -0
  3993. pyrogram/types/messages_and_media/animation.py +186 -0
  3994. pyrogram/types/messages_and_media/auction_bid.py +58 -0
  3995. pyrogram/types/messages_and_media/auction_round.py +70 -0
  3996. pyrogram/types/messages_and_media/auction_state.py +176 -0
  3997. pyrogram/types/messages_and_media/audio.py +124 -0
  3998. pyrogram/types/messages_and_media/available_effect.py +90 -0
  3999. pyrogram/types/messages_and_media/boosts_status.py +89 -0
  4000. pyrogram/types/messages_and_media/business_message.py +113 -0
  4001. pyrogram/types/messages_and_media/chat_background.py +167 -0
  4002. pyrogram/types/messages_and_media/chat_boost.py +112 -0
  4003. pyrogram/types/messages_and_media/chat_has_protected_content_disable_requested.py +47 -0
  4004. pyrogram/types/messages_and_media/chat_has_protected_content_toggled.py +66 -0
  4005. pyrogram/types/messages_and_media/chat_owner_changed.py +49 -0
  4006. pyrogram/types/messages_and_media/chat_owner_left.py +49 -0
  4007. pyrogram/types/messages_and_media/chat_theme.py +51 -0
  4008. pyrogram/types/messages_and_media/checked_gift_code.py +105 -0
  4009. pyrogram/types/messages_and_media/checklist.py +106 -0
  4010. pyrogram/types/messages_and_media/checklist_task.py +92 -0
  4011. pyrogram/types/messages_and_media/checklist_tasks_added.py +63 -0
  4012. pyrogram/types/messages_and_media/checklist_tasks_done.py +66 -0
  4013. pyrogram/types/messages_and_media/community_chat_added.py +48 -0
  4014. pyrogram/types/messages_and_media/community_chat_joined.py +48 -0
  4015. pyrogram/types/messages_and_media/community_chat_removed.py +29 -0
  4016. pyrogram/types/messages_and_media/contact.py +77 -0
  4017. pyrogram/types/messages_and_media/contact_registered.py +29 -0
  4018. pyrogram/types/messages_and_media/craft_gift_result.py +60 -0
  4019. pyrogram/types/messages_and_media/dice.py +49 -0
  4020. pyrogram/types/messages_and_media/direct_message_price_changed.py +53 -0
  4021. pyrogram/types/messages_and_media/direct_messages_topic.py +109 -0
  4022. pyrogram/types/messages_and_media/document.py +101 -0
  4023. pyrogram/types/messages_and_media/ephemeral_message_parameters.py +52 -0
  4024. pyrogram/types/messages_and_media/external_reply_info.py +345 -0
  4025. pyrogram/types/messages_and_media/fact_check.py +77 -0
  4026. pyrogram/types/messages_and_media/file.py +49 -0
  4027. pyrogram/types/messages_and_media/formatted_text.py +82 -0
  4028. pyrogram/types/messages_and_media/forum_topic.py +202 -0
  4029. pyrogram/types/messages_and_media/forum_topic_closed.py +29 -0
  4030. pyrogram/types/messages_and_media/forum_topic_created.py +64 -0
  4031. pyrogram/types/messages_and_media/forum_topic_edited.py +77 -0
  4032. pyrogram/types/messages_and_media/forum_topic_reopened.py +29 -0
  4033. pyrogram/types/messages_and_media/game.py +98 -0
  4034. pyrogram/types/messages_and_media/general_forum_topic_hidden.py +29 -0
  4035. pyrogram/types/messages_and_media/general_forum_topic_unhidden.py +29 -0
  4036. pyrogram/types/messages_and_media/gift.py +1158 -0
  4037. pyrogram/types/messages_and_media/gift_attribute.py +177 -0
  4038. pyrogram/types/messages_and_media/gift_auction.py +59 -0
  4039. pyrogram/types/messages_and_media/gift_auction_state.py +69 -0
  4040. pyrogram/types/messages_and_media/gift_collection.py +68 -0
  4041. pyrogram/types/messages_and_media/gift_purchase_limit.py +46 -0
  4042. pyrogram/types/messages_and_media/gift_resale_parameters.py +71 -0
  4043. pyrogram/types/messages_and_media/gift_resale_price.py +77 -0
  4044. pyrogram/types/messages_and_media/gift_upgrade_preview.py +88 -0
  4045. pyrogram/types/messages_and_media/gift_upgrade_price.py +52 -0
  4046. pyrogram/types/messages_and_media/gift_upgrade_variants.py +71 -0
  4047. pyrogram/types/messages_and_media/gifted_grams.py +95 -0
  4048. pyrogram/types/messages_and_media/gifted_premium.py +135 -0
  4049. pyrogram/types/messages_and_media/gifted_stars.py +119 -0
  4050. pyrogram/types/messages_and_media/giveaway.py +111 -0
  4051. pyrogram/types/messages_and_media/giveaway_completed.py +93 -0
  4052. pyrogram/types/messages_and_media/giveaway_created.py +48 -0
  4053. pyrogram/types/messages_and_media/giveaway_prize_stars.py +119 -0
  4054. pyrogram/types/messages_and_media/giveaway_winners.py +153 -0
  4055. pyrogram/types/messages_and_media/input_checklist_task.py +67 -0
  4056. pyrogram/types/messages_and_media/invoice.py +164 -0
  4057. pyrogram/types/messages_and_media/link_preview_options.py +89 -0
  4058. pyrogram/types/messages_and_media/live_photo.py +104 -0
  4059. pyrogram/types/messages_and_media/location.py +154 -0
  4060. pyrogram/types/messages_and_media/managed_bot_created.py +56 -0
  4061. pyrogram/types/messages_and_media/mask_position.py +71 -0
  4062. pyrogram/types/messages_and_media/media_area.py +276 -0
  4063. pyrogram/types/messages_and_media/message.py +9884 -0
  4064. pyrogram/types/messages_and_media/message_content.py +317 -0
  4065. pyrogram/types/messages_and_media/message_entity.py +206 -0
  4066. pyrogram/types/messages_and_media/message_origin.py +95 -0
  4067. pyrogram/types/messages_and_media/message_origin_channel.py +64 -0
  4068. pyrogram/types/messages_and_media/message_origin_chat.py +59 -0
  4069. pyrogram/types/messages_and_media/message_origin_hidden_user.py +54 -0
  4070. pyrogram/types/messages_and_media/message_origin_import.py +48 -0
  4071. pyrogram/types/messages_and_media/message_origin_user.py +54 -0
  4072. pyrogram/types/messages_and_media/message_reactions.py +90 -0
  4073. pyrogram/types/messages_and_media/my_boost.py +84 -0
  4074. pyrogram/types/messages_and_media/paid_media_info.py +88 -0
  4075. pyrogram/types/messages_and_media/paid_media_preview.py +60 -0
  4076. pyrogram/types/messages_and_media/paid_messages_price_changed.py +45 -0
  4077. pyrogram/types/messages_and_media/paid_messages_refunded.py +49 -0
  4078. pyrogram/types/messages_and_media/paid_reactor.py +86 -0
  4079. pyrogram/types/messages_and_media/payment_form.py +181 -0
  4080. pyrogram/types/messages_and_media/payment_option.py +48 -0
  4081. pyrogram/types/messages_and_media/payment_result.py +61 -0
  4082. pyrogram/types/messages_and_media/photo.py +126 -0
  4083. pyrogram/types/messages_and_media/poll.py +387 -0
  4084. pyrogram/types/messages_and_media/poll_option.py +93 -0
  4085. pyrogram/types/messages_and_media/poll_option_added.py +69 -0
  4086. pyrogram/types/messages_and_media/poll_option_deleted.py +69 -0
  4087. pyrogram/types/messages_and_media/premium_gift_code.py +140 -0
  4088. pyrogram/types/messages_and_media/proximity_alert_triggered.py +64 -0
  4089. pyrogram/types/messages_and_media/reaction.py +82 -0
  4090. pyrogram/types/messages_and_media/refunded_payment.py +84 -0
  4091. pyrogram/types/messages_and_media/reply_parameters.py +100 -0
  4092. pyrogram/types/messages_and_media/restriction_reason.py +59 -0
  4093. pyrogram/types/messages_and_media/rich_block.py +1160 -0
  4094. pyrogram/types/messages_and_media/rich_message.py +74 -0
  4095. pyrogram/types/messages_and_media/rich_text.py +900 -0
  4096. pyrogram/types/messages_and_media/saved_credentials.py +48 -0
  4097. pyrogram/types/messages_and_media/screenshot_taken.py +29 -0
  4098. pyrogram/types/messages_and_media/star_amount.py +49 -0
  4099. pyrogram/types/messages_and_media/sticker.py +287 -0
  4100. pyrogram/types/messages_and_media/sticker_set.py +200 -0
  4101. pyrogram/types/messages_and_media/story.py +2225 -0
  4102. pyrogram/types/messages_and_media/story_view.py +79 -0
  4103. pyrogram/types/messages_and_media/stripped_thumbnail.py +45 -0
  4104. pyrogram/types/messages_and_media/successful_payment.py +144 -0
  4105. pyrogram/types/messages_and_media/suggested_post_approval_failed.py +88 -0
  4106. pyrogram/types/messages_and_media/suggested_post_approved.py +97 -0
  4107. pyrogram/types/messages_and_media/suggested_post_declined.py +86 -0
  4108. pyrogram/types/messages_and_media/suggested_post_info.py +79 -0
  4109. pyrogram/types/messages_and_media/suggested_post_paid.py +101 -0
  4110. pyrogram/types/messages_and_media/suggested_post_parameters.py +56 -0
  4111. pyrogram/types/messages_and_media/suggested_post_price.py +94 -0
  4112. pyrogram/types/messages_and_media/suggested_post_refunded.py +92 -0
  4113. pyrogram/types/messages_and_media/text_quote.py +85 -0
  4114. pyrogram/types/messages_and_media/thumbnail.py +110 -0
  4115. pyrogram/types/messages_and_media/upgraded_gift_attribute_id.py +51 -0
  4116. pyrogram/types/messages_and_media/upgraded_gift_attribute_id_backdrop.py +43 -0
  4117. pyrogram/types/messages_and_media/upgraded_gift_attribute_id_model.py +43 -0
  4118. pyrogram/types/messages_and_media/upgraded_gift_attribute_id_symbol.py +43 -0
  4119. pyrogram/types/messages_and_media/upgraded_gift_attribute_rarity.py +131 -0
  4120. pyrogram/types/messages_and_media/upgraded_gift_original_details.py +80 -0
  4121. pyrogram/types/messages_and_media/upgraded_gift_purchase_offer.py +148 -0
  4122. pyrogram/types/messages_and_media/upgraded_gift_value_info.py +130 -0
  4123. pyrogram/types/messages_and_media/venue.py +76 -0
  4124. pyrogram/types/messages_and_media/video.py +177 -0
  4125. pyrogram/types/messages_and_media/video_note.py +118 -0
  4126. pyrogram/types/messages_and_media/voice.py +111 -0
  4127. pyrogram/types/messages_and_media/web_app_data.py +56 -0
  4128. pyrogram/types/messages_and_media/web_page.py +257 -0
  4129. pyrogram/types/messages_and_media/write_access_allowed.py +63 -0
  4130. pyrogram/types/object.py +136 -0
  4131. pyrogram/types/update.py +31 -0
  4132. pyrogram/types/user_and_chats/__init__.py +150 -0
  4133. pyrogram/types/user_and_chats/accepted_gift_types.py +83 -0
  4134. pyrogram/types/user_and_chats/animated_chat_photo.py +99 -0
  4135. pyrogram/types/user_and_chats/birthday.py +55 -0
  4136. pyrogram/types/user_and_chats/bot_verification.py +56 -0
  4137. pyrogram/types/user_and_chats/business_bot_rights.py +127 -0
  4138. pyrogram/types/user_and_chats/business_connection.py +95 -0
  4139. pyrogram/types/user_and_chats/business_intro.py +69 -0
  4140. pyrogram/types/user_and_chats/business_recipients.py +84 -0
  4141. pyrogram/types/user_and_chats/business_weekly_open.py +54 -0
  4142. pyrogram/types/user_and_chats/business_working_hours.py +64 -0
  4143. pyrogram/types/user_and_chats/chat.py +2121 -0
  4144. pyrogram/types/user_and_chats/chat_admin_with_invite_links.py +64 -0
  4145. pyrogram/types/user_and_chats/chat_administrator_rights.py +173 -0
  4146. pyrogram/types/user_and_chats/chat_event.py +518 -0
  4147. pyrogram/types/user_and_chats/chat_event_filter.py +179 -0
  4148. pyrogram/types/user_and_chats/chat_folder_invite_link_info.py +96 -0
  4149. pyrogram/types/user_and_chats/chat_invite_link.py +132 -0
  4150. pyrogram/types/user_and_chats/chat_join_request.py +150 -0
  4151. pyrogram/types/user_and_chats/chat_join_result.py +114 -0
  4152. pyrogram/types/user_and_chats/chat_joiner.py +87 -0
  4153. pyrogram/types/user_and_chats/chat_member.py +258 -0
  4154. pyrogram/types/user_and_chats/chat_member_updated.py +124 -0
  4155. pyrogram/types/user_and_chats/chat_permissions.py +224 -0
  4156. pyrogram/types/user_and_chats/chat_photo.py +178 -0
  4157. pyrogram/types/user_and_chats/chat_photo_sticker.py +82 -0
  4158. pyrogram/types/user_and_chats/chat_reactions.py +69 -0
  4159. pyrogram/types/user_and_chats/chat_settings.py +185 -0
  4160. pyrogram/types/user_and_chats/community.py +116 -0
  4161. pyrogram/types/user_and_chats/community_administrator_rights.py +78 -0
  4162. pyrogram/types/user_and_chats/community_member_status.py +106 -0
  4163. pyrogram/types/user_and_chats/community_permissions.py +48 -0
  4164. pyrogram/types/user_and_chats/dialog.py +123 -0
  4165. pyrogram/types/user_and_chats/emoji_status.py +130 -0
  4166. pyrogram/types/user_and_chats/failed_to_add_member.py +60 -0
  4167. pyrogram/types/user_and_chats/folder.py +514 -0
  4168. pyrogram/types/user_and_chats/folder_invite_link.py +55 -0
  4169. pyrogram/types/user_and_chats/found_contacts.py +74 -0
  4170. pyrogram/types/user_and_chats/global_privacy_settings.py +121 -0
  4171. pyrogram/types/user_and_chats/group_call_member.py +154 -0
  4172. pyrogram/types/user_and_chats/history_cleared.py +29 -0
  4173. pyrogram/types/user_and_chats/phone_call_ended.py +65 -0
  4174. pyrogram/types/user_and_chats/phone_call_started.py +48 -0
  4175. pyrogram/types/user_and_chats/privacy_rule.py +68 -0
  4176. pyrogram/types/user_and_chats/restriction.py +54 -0
  4177. pyrogram/types/user_and_chats/stories_stealth_mode.py +60 -0
  4178. pyrogram/types/user_and_chats/user.py +1048 -0
  4179. pyrogram/types/user_and_chats/user_rating.py +78 -0
  4180. pyrogram/types/user_and_chats/username.py +54 -0
  4181. pyrogram/types/user_and_chats/verification_status.py +79 -0
  4182. pyrogram/types/user_and_chats/video_chat_ended.py +44 -0
  4183. pyrogram/types/user_and_chats/video_chat_members_invited.py +46 -0
  4184. pyrogram/types/user_and_chats/video_chat_scheduled.py +46 -0
  4185. pyrogram/types/user_and_chats/video_chat_started.py +29 -0
  4186. pyrogram/utils/__init__.py +100 -0
  4187. pyrogram/utils/amounts.py +38 -0
  4188. pyrogram/utils/cache.py +68 -0
  4189. pyrogram/utils/console.py +31 -0
  4190. pyrogram/utils/crypto.py +117 -0
  4191. pyrogram/utils/datetimes.py +40 -0
  4192. pyrogram/utils/file_ids.py +161 -0
  4193. pyrogram/utils/gifts.py +42 -0
  4194. pyrogram/utils/inline.py +53 -0
  4195. pyrogram/utils/json_values.py +59 -0
  4196. pyrogram/utils/messages.py +236 -0
  4197. pyrogram/utils/peers.py +108 -0
  4198. pyrogram/utils/text.py +107 -0
@@ -0,0 +1,1382 @@
1
+ # Pyrogram - Telegram MTProto API Client Library for Python
2
+ # Copyright (C) 2017-present Dan <https://github.com/delivrance>
3
+ #
4
+ # This file is part of Pyrogram.
5
+ #
6
+ # Pyrogram is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as published
8
+ # by the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
+ #
11
+ # Pyrogram is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
+ #
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
18
+
19
+ # # # # # # # # # # # # # # # # # # # # # # # #
20
+ # !!! WARNING !!! #
21
+ # This is a generated file! #
22
+ # All changes made in this file will be lost! #
23
+ # # # # # # # # # # # # # # # # # # # # # # # #
24
+
25
+ from .res_pq import ResPQ
26
+ from .pq_inner_data import PQInnerData
27
+ from .pq_inner_data_dc import PQInnerDataDc
28
+ from .pq_inner_data_temp import PQInnerDataTemp
29
+ from .pq_inner_data_temp_dc import PQInnerDataTempDc
30
+ from .bind_auth_key_inner import BindAuthKeyInner
31
+ from .server_dh_params_fail import ServerDHParamsFail
32
+ from .server_dh_params_ok import ServerDHParamsOk
33
+ from .server_dh_inner_data import ServerDHInnerData
34
+ from .client_dh_inner_data import ClientDHInnerData
35
+ from .dh_gen_ok import DhGenOk
36
+ from .dh_gen_retry import DhGenRetry
37
+ from .dh_gen_fail import DhGenFail
38
+ from .destroy_auth_key_ok import DestroyAuthKeyOk
39
+ from .destroy_auth_key_none import DestroyAuthKeyNone
40
+ from .destroy_auth_key_fail import DestroyAuthKeyFail
41
+ from .msgs_ack import MsgsAck
42
+ from .bad_msg_notification import BadMsgNotification
43
+ from .bad_server_salt import BadServerSalt
44
+ from .msgs_state_req import MsgsStateReq
45
+ from .msgs_state_info import MsgsStateInfo
46
+ from .msgs_all_info import MsgsAllInfo
47
+ from .msg_detailed_info import MsgDetailedInfo
48
+ from .msg_new_detailed_info import MsgNewDetailedInfo
49
+ from .msg_resend_req import MsgResendReq
50
+ from .msg_resend_ans_req import MsgResendAnsReq
51
+ from .rpc_result import RpcResult
52
+ from .rpc_error import RpcError
53
+ from .rpc_answer_unknown import RpcAnswerUnknown
54
+ from .rpc_answer_dropped_running import RpcAnswerDroppedRunning
55
+ from .rpc_answer_dropped import RpcAnswerDropped
56
+ from .pong import Pong
57
+ from .destroy_session_ok import DestroySessionOk
58
+ from .destroy_session_none import DestroySessionNone
59
+ from .new_session_created import NewSessionCreated
60
+ from .http_wait import HttpWait
61
+ from .ip_port import IpPort
62
+ from .ip_port_secret import IpPortSecret
63
+ from .access_point_rule import AccessPointRule
64
+ from .input_peer_empty import InputPeerEmpty
65
+ from .input_peer_self import InputPeerSelf
66
+ from .input_peer_chat import InputPeerChat
67
+ from .input_peer_user import InputPeerUser
68
+ from .input_peer_channel import InputPeerChannel
69
+ from .input_peer_user_from_message import InputPeerUserFromMessage
70
+ from .input_peer_channel_from_message import InputPeerChannelFromMessage
71
+ from .input_user_empty import InputUserEmpty
72
+ from .input_user_self import InputUserSelf
73
+ from .input_user import InputUser
74
+ from .input_user_from_message import InputUserFromMessage
75
+ from .input_phone_contact import InputPhoneContact
76
+ from .input_file import InputFile
77
+ from .input_file_big import InputFileBig
78
+ from .input_file_story_document import InputFileStoryDocument
79
+ from .input_media_empty import InputMediaEmpty
80
+ from .input_media_uploaded_photo import InputMediaUploadedPhoto
81
+ from .input_media_photo import InputMediaPhoto
82
+ from .input_media_geo_point import InputMediaGeoPoint
83
+ from .input_media_contact import InputMediaContact
84
+ from .input_media_uploaded_document import InputMediaUploadedDocument
85
+ from .input_media_document import InputMediaDocument
86
+ from .input_media_venue import InputMediaVenue
87
+ from .input_media_photo_external import InputMediaPhotoExternal
88
+ from .input_media_document_external import InputMediaDocumentExternal
89
+ from .input_media_game import InputMediaGame
90
+ from .input_media_invoice import InputMediaInvoice
91
+ from .input_media_geo_live import InputMediaGeoLive
92
+ from .input_media_poll import InputMediaPoll
93
+ from .input_media_dice import InputMediaDice
94
+ from .input_media_story import InputMediaStory
95
+ from .input_media_web_page import InputMediaWebPage
96
+ from .input_media_paid_media import InputMediaPaidMedia
97
+ from .input_media_todo import InputMediaTodo
98
+ from .input_media_stake_dice import InputMediaStakeDice
99
+ from .input_chat_photo_empty import InputChatPhotoEmpty
100
+ from .input_chat_uploaded_photo import InputChatUploadedPhoto
101
+ from .input_chat_photo import InputChatPhoto
102
+ from .input_geo_point_empty import InputGeoPointEmpty
103
+ from .input_geo_point import InputGeoPoint
104
+ from .input_photo_empty import InputPhotoEmpty
105
+ from .input_photo import InputPhoto
106
+ from .input_file_location import InputFileLocation
107
+ from .input_encrypted_file_location import InputEncryptedFileLocation
108
+ from .input_document_file_location import InputDocumentFileLocation
109
+ from .input_secure_file_location import InputSecureFileLocation
110
+ from .input_takeout_file_location import InputTakeoutFileLocation
111
+ from .input_photo_file_location import InputPhotoFileLocation
112
+ from .input_photo_legacy_file_location import InputPhotoLegacyFileLocation
113
+ from .input_peer_photo_file_location import InputPeerPhotoFileLocation
114
+ from .input_sticker_set_thumb import InputStickerSetThumb
115
+ from .input_group_call_stream import InputGroupCallStream
116
+ from .peer_user import PeerUser
117
+ from .peer_chat import PeerChat
118
+ from .peer_channel import PeerChannel
119
+ from .user_empty import UserEmpty
120
+ from .user import User
121
+ from .user_profile_photo_empty import UserProfilePhotoEmpty
122
+ from .user_profile_photo import UserProfilePhoto
123
+ from .user_status_empty import UserStatusEmpty
124
+ from .user_status_online import UserStatusOnline
125
+ from .user_status_offline import UserStatusOffline
126
+ from .user_status_recently import UserStatusRecently
127
+ from .user_status_last_week import UserStatusLastWeek
128
+ from .user_status_last_month import UserStatusLastMonth
129
+ from .chat_empty import ChatEmpty
130
+ from .chat import Chat
131
+ from .chat_forbidden import ChatForbidden
132
+ from .channel import Channel
133
+ from .channel_forbidden import ChannelForbidden
134
+ from .community_forbidden import CommunityForbidden
135
+ from .community import Community
136
+ from .chat_full import ChatFull
137
+ from .channel_full import ChannelFull
138
+ from .community_full import CommunityFull
139
+ from .chat_participant import ChatParticipant
140
+ from .chat_participant_creator import ChatParticipantCreator
141
+ from .chat_participant_admin import ChatParticipantAdmin
142
+ from .chat_participants_forbidden import ChatParticipantsForbidden
143
+ from .chat_participants import ChatParticipants
144
+ from .chat_photo_empty import ChatPhotoEmpty
145
+ from .chat_photo import ChatPhoto
146
+ from .message_empty import MessageEmpty
147
+ from .message import Message
148
+ from .message_service import MessageService
149
+ from .message_media_empty import MessageMediaEmpty
150
+ from .message_media_photo import MessageMediaPhoto
151
+ from .message_media_geo import MessageMediaGeo
152
+ from .message_media_contact import MessageMediaContact
153
+ from .message_media_unsupported import MessageMediaUnsupported
154
+ from .message_media_document import MessageMediaDocument
155
+ from .message_media_web_page import MessageMediaWebPage
156
+ from .message_media_venue import MessageMediaVenue
157
+ from .message_media_game import MessageMediaGame
158
+ from .message_media_invoice import MessageMediaInvoice
159
+ from .message_media_geo_live import MessageMediaGeoLive
160
+ from .message_media_poll import MessageMediaPoll
161
+ from .message_media_dice import MessageMediaDice
162
+ from .message_media_story import MessageMediaStory
163
+ from .message_media_giveaway import MessageMediaGiveaway
164
+ from .message_media_giveaway_results import MessageMediaGiveawayResults
165
+ from .message_media_paid_media import MessageMediaPaidMedia
166
+ from .message_media_to_do import MessageMediaToDo
167
+ from .message_media_video_stream import MessageMediaVideoStream
168
+ from .message_action_empty import MessageActionEmpty
169
+ from .message_action_chat_create import MessageActionChatCreate
170
+ from .message_action_chat_edit_title import MessageActionChatEditTitle
171
+ from .message_action_chat_edit_photo import MessageActionChatEditPhoto
172
+ from .message_action_chat_delete_photo import MessageActionChatDeletePhoto
173
+ from .message_action_chat_add_user import MessageActionChatAddUser
174
+ from .message_action_chat_delete_user import MessageActionChatDeleteUser
175
+ from .message_action_chat_joined_by_link import MessageActionChatJoinedByLink
176
+ from .message_action_channel_create import MessageActionChannelCreate
177
+ from .message_action_chat_migrate_to import MessageActionChatMigrateTo
178
+ from .message_action_channel_migrate_from import MessageActionChannelMigrateFrom
179
+ from .message_action_pin_message import MessageActionPinMessage
180
+ from .message_action_history_clear import MessageActionHistoryClear
181
+ from .message_action_game_score import MessageActionGameScore
182
+ from .message_action_payment_sent_me import MessageActionPaymentSentMe
183
+ from .message_action_payment_sent import MessageActionPaymentSent
184
+ from .message_action_phone_call import MessageActionPhoneCall
185
+ from .message_action_screenshot_taken import MessageActionScreenshotTaken
186
+ from .message_action_custom_action import MessageActionCustomAction
187
+ from .message_action_bot_allowed import MessageActionBotAllowed
188
+ from .message_action_secure_values_sent_me import MessageActionSecureValuesSentMe
189
+ from .message_action_secure_values_sent import MessageActionSecureValuesSent
190
+ from .message_action_contact_sign_up import MessageActionContactSignUp
191
+ from .message_action_geo_proximity_reached import MessageActionGeoProximityReached
192
+ from .message_action_group_call import MessageActionGroupCall
193
+ from .message_action_invite_to_group_call import MessageActionInviteToGroupCall
194
+ from .message_action_set_messages_ttl import MessageActionSetMessagesTTL
195
+ from .message_action_group_call_scheduled import MessageActionGroupCallScheduled
196
+ from .message_action_set_chat_theme import MessageActionSetChatTheme
197
+ from .message_action_chat_joined_by_request import MessageActionChatJoinedByRequest
198
+ from .message_action_web_view_data_sent_me import MessageActionWebViewDataSentMe
199
+ from .message_action_web_view_data_sent import MessageActionWebViewDataSent
200
+ from .message_action_gift_premium import MessageActionGiftPremium
201
+ from .message_action_topic_create import MessageActionTopicCreate
202
+ from .message_action_topic_edit import MessageActionTopicEdit
203
+ from .message_action_suggest_profile_photo import MessageActionSuggestProfilePhoto
204
+ from .message_action_requested_peer import MessageActionRequestedPeer
205
+ from .message_action_set_chat_wall_paper import MessageActionSetChatWallPaper
206
+ from .message_action_gift_code import MessageActionGiftCode
207
+ from .message_action_giveaway_launch import MessageActionGiveawayLaunch
208
+ from .message_action_giveaway_results import MessageActionGiveawayResults
209
+ from .message_action_boost_apply import MessageActionBoostApply
210
+ from .message_action_requested_peer_sent_me import MessageActionRequestedPeerSentMe
211
+ from .message_action_payment_refunded import MessageActionPaymentRefunded
212
+ from .message_action_gift_stars import MessageActionGiftStars
213
+ from .message_action_prize_stars import MessageActionPrizeStars
214
+ from .message_action_star_gift import MessageActionStarGift
215
+ from .message_action_star_gift_unique import MessageActionStarGiftUnique
216
+ from .message_action_paid_messages_refunded import MessageActionPaidMessagesRefunded
217
+ from .message_action_paid_messages_price import MessageActionPaidMessagesPrice
218
+ from .message_action_conference_call import MessageActionConferenceCall
219
+ from .message_action_todo_completions import MessageActionTodoCompletions
220
+ from .message_action_todo_append_tasks import MessageActionTodoAppendTasks
221
+ from .message_action_suggested_post_approval import MessageActionSuggestedPostApproval
222
+ from .message_action_suggested_post_success import MessageActionSuggestedPostSuccess
223
+ from .message_action_suggested_post_refund import MessageActionSuggestedPostRefund
224
+ from .message_action_gift_ton import MessageActionGiftTon
225
+ from .message_action_suggest_birthday import MessageActionSuggestBirthday
226
+ from .message_action_star_gift_purchase_offer import MessageActionStarGiftPurchaseOffer
227
+ from .message_action_star_gift_purchase_offer_declined import MessageActionStarGiftPurchaseOfferDeclined
228
+ from .message_action_new_creator_pending import MessageActionNewCreatorPending
229
+ from .message_action_change_creator import MessageActionChangeCreator
230
+ from .message_action_no_forwards_toggle import MessageActionNoForwardsToggle
231
+ from .message_action_no_forwards_request import MessageActionNoForwardsRequest
232
+ from .message_action_poll_append_answer import MessageActionPollAppendAnswer
233
+ from .message_action_poll_delete_answer import MessageActionPollDeleteAnswer
234
+ from .message_action_managed_bot_created import MessageActionManagedBotCreated
235
+ from .message_action_change_community import MessageActionChangeCommunity
236
+ from .message_action_chat_joined_via_community import MessageActionChatJoinedViaCommunity
237
+ from .dialog import Dialog
238
+ from .dialog_folder import DialogFolder
239
+ from .dialog_community import DialogCommunity
240
+ from .photo_empty import PhotoEmpty
241
+ from .photo import Photo
242
+ from .photo_size_empty import PhotoSizeEmpty
243
+ from .photo_size import PhotoSize
244
+ from .photo_cached_size import PhotoCachedSize
245
+ from .photo_stripped_size import PhotoStrippedSize
246
+ from .photo_size_progressive import PhotoSizeProgressive
247
+ from .photo_path_size import PhotoPathSize
248
+ from .geo_point_empty import GeoPointEmpty
249
+ from .geo_point import GeoPoint
250
+ from .input_notify_peer import InputNotifyPeer
251
+ from .input_notify_users import InputNotifyUsers
252
+ from .input_notify_chats import InputNotifyChats
253
+ from .input_notify_broadcasts import InputNotifyBroadcasts
254
+ from .input_notify_forum_topic import InputNotifyForumTopic
255
+ from .input_notify_community import InputNotifyCommunity
256
+ from .input_peer_notify_settings import InputPeerNotifySettings
257
+ from .peer_notify_settings import PeerNotifySettings
258
+ from .peer_settings import PeerSettings
259
+ from .wall_paper import WallPaper
260
+ from .wall_paper_no_file import WallPaperNoFile
261
+ from .input_report_reason_spam import InputReportReasonSpam
262
+ from .input_report_reason_violence import InputReportReasonViolence
263
+ from .input_report_reason_pornography import InputReportReasonPornography
264
+ from .input_report_reason_child_abuse import InputReportReasonChildAbuse
265
+ from .input_report_reason_other import InputReportReasonOther
266
+ from .input_report_reason_copyright import InputReportReasonCopyright
267
+ from .input_report_reason_geo_irrelevant import InputReportReasonGeoIrrelevant
268
+ from .input_report_reason_fake import InputReportReasonFake
269
+ from .input_report_reason_illegal_drugs import InputReportReasonIllegalDrugs
270
+ from .input_report_reason_personal_details import InputReportReasonPersonalDetails
271
+ from .user_full import UserFull
272
+ from .contact import Contact
273
+ from .imported_contact import ImportedContact
274
+ from .contact_status import ContactStatus
275
+ from .input_messages_filter_empty import InputMessagesFilterEmpty
276
+ from .input_messages_filter_photos import InputMessagesFilterPhotos
277
+ from .input_messages_filter_video import InputMessagesFilterVideo
278
+ from .input_messages_filter_photo_video import InputMessagesFilterPhotoVideo
279
+ from .input_messages_filter_document import InputMessagesFilterDocument
280
+ from .input_messages_filter_url import InputMessagesFilterUrl
281
+ from .input_messages_filter_gif import InputMessagesFilterGif
282
+ from .input_messages_filter_voice import InputMessagesFilterVoice
283
+ from .input_messages_filter_music import InputMessagesFilterMusic
284
+ from .input_messages_filter_chat_photos import InputMessagesFilterChatPhotos
285
+ from .input_messages_filter_phone_calls import InputMessagesFilterPhoneCalls
286
+ from .input_messages_filter_round_voice import InputMessagesFilterRoundVoice
287
+ from .input_messages_filter_round_video import InputMessagesFilterRoundVideo
288
+ from .input_messages_filter_my_mentions import InputMessagesFilterMyMentions
289
+ from .input_messages_filter_geo import InputMessagesFilterGeo
290
+ from .input_messages_filter_contacts import InputMessagesFilterContacts
291
+ from .input_messages_filter_pinned import InputMessagesFilterPinned
292
+ from .input_messages_filter_poll import InputMessagesFilterPoll
293
+ from .update_new_message import UpdateNewMessage
294
+ from .update_message_id import UpdateMessageID
295
+ from .update_delete_messages import UpdateDeleteMessages
296
+ from .update_user_typing import UpdateUserTyping
297
+ from .update_chat_user_typing import UpdateChatUserTyping
298
+ from .update_chat_participants import UpdateChatParticipants
299
+ from .update_user_status import UpdateUserStatus
300
+ from .update_user_name import UpdateUserName
301
+ from .update_new_authorization import UpdateNewAuthorization
302
+ from .update_new_encrypted_message import UpdateNewEncryptedMessage
303
+ from .update_encrypted_chat_typing import UpdateEncryptedChatTyping
304
+ from .update_encryption import UpdateEncryption
305
+ from .update_encrypted_messages_read import UpdateEncryptedMessagesRead
306
+ from .update_chat_participant_add import UpdateChatParticipantAdd
307
+ from .update_chat_participant_delete import UpdateChatParticipantDelete
308
+ from .update_dc_options import UpdateDcOptions
309
+ from .update_notify_settings import UpdateNotifySettings
310
+ from .update_service_notification import UpdateServiceNotification
311
+ from .update_privacy import UpdatePrivacy
312
+ from .update_user_phone import UpdateUserPhone
313
+ from .update_read_history_inbox import UpdateReadHistoryInbox
314
+ from .update_read_history_outbox import UpdateReadHistoryOutbox
315
+ from .update_web_page import UpdateWebPage
316
+ from .update_read_messages_contents import UpdateReadMessagesContents
317
+ from .update_channel_too_long import UpdateChannelTooLong
318
+ from .update_channel import UpdateChannel
319
+ from .update_new_channel_message import UpdateNewChannelMessage
320
+ from .update_read_channel_inbox import UpdateReadChannelInbox
321
+ from .update_delete_channel_messages import UpdateDeleteChannelMessages
322
+ from .update_channel_message_views import UpdateChannelMessageViews
323
+ from .update_chat_participant_admin import UpdateChatParticipantAdmin
324
+ from .update_new_sticker_set import UpdateNewStickerSet
325
+ from .update_sticker_sets_order import UpdateStickerSetsOrder
326
+ from .update_sticker_sets import UpdateStickerSets
327
+ from .update_saved_gifs import UpdateSavedGifs
328
+ from .update_bot_inline_query import UpdateBotInlineQuery
329
+ from .update_bot_inline_send import UpdateBotInlineSend
330
+ from .update_edit_channel_message import UpdateEditChannelMessage
331
+ from .update_bot_callback_query import UpdateBotCallbackQuery
332
+ from .update_edit_message import UpdateEditMessage
333
+ from .update_inline_bot_callback_query import UpdateInlineBotCallbackQuery
334
+ from .update_read_channel_outbox import UpdateReadChannelOutbox
335
+ from .update_draft_message import UpdateDraftMessage
336
+ from .update_read_featured_stickers import UpdateReadFeaturedStickers
337
+ from .update_recent_stickers import UpdateRecentStickers
338
+ from .update_config import UpdateConfig
339
+ from .update_pts_changed import UpdatePtsChanged
340
+ from .update_channel_web_page import UpdateChannelWebPage
341
+ from .update_dialog_pinned import UpdateDialogPinned
342
+ from .update_pinned_dialogs import UpdatePinnedDialogs
343
+ from .update_bot_webhook_json import UpdateBotWebhookJSON
344
+ from .update_bot_webhook_json_query import UpdateBotWebhookJSONQuery
345
+ from .update_bot_shipping_query import UpdateBotShippingQuery
346
+ from .update_bot_precheckout_query import UpdateBotPrecheckoutQuery
347
+ from .update_phone_call import UpdatePhoneCall
348
+ from .update_lang_pack_too_long import UpdateLangPackTooLong
349
+ from .update_lang_pack import UpdateLangPack
350
+ from .update_faved_stickers import UpdateFavedStickers
351
+ from .update_channel_read_messages_contents import UpdateChannelReadMessagesContents
352
+ from .update_contacts_reset import UpdateContactsReset
353
+ from .update_channel_available_messages import UpdateChannelAvailableMessages
354
+ from .update_dialog_unread_mark import UpdateDialogUnreadMark
355
+ from .update_message_poll import UpdateMessagePoll
356
+ from .update_chat_default_banned_rights import UpdateChatDefaultBannedRights
357
+ from .update_folder_peers import UpdateFolderPeers
358
+ from .update_peer_settings import UpdatePeerSettings
359
+ from .update_peer_located import UpdatePeerLocated
360
+ from .update_new_scheduled_message import UpdateNewScheduledMessage
361
+ from .update_delete_scheduled_messages import UpdateDeleteScheduledMessages
362
+ from .update_theme import UpdateTheme
363
+ from .update_geo_live_viewed import UpdateGeoLiveViewed
364
+ from .update_login_token import UpdateLoginToken
365
+ from .update_message_poll_vote import UpdateMessagePollVote
366
+ from .update_dialog_filter import UpdateDialogFilter
367
+ from .update_dialog_filter_order import UpdateDialogFilterOrder
368
+ from .update_dialog_filters import UpdateDialogFilters
369
+ from .update_phone_call_signaling_data import UpdatePhoneCallSignalingData
370
+ from .update_channel_message_forwards import UpdateChannelMessageForwards
371
+ from .update_read_channel_discussion_inbox import UpdateReadChannelDiscussionInbox
372
+ from .update_read_channel_discussion_outbox import UpdateReadChannelDiscussionOutbox
373
+ from .update_peer_blocked import UpdatePeerBlocked
374
+ from .update_channel_user_typing import UpdateChannelUserTyping
375
+ from .update_pinned_messages import UpdatePinnedMessages
376
+ from .update_pinned_channel_messages import UpdatePinnedChannelMessages
377
+ from .update_chat import UpdateChat
378
+ from .update_group_call_participants import UpdateGroupCallParticipants
379
+ from .update_group_call import UpdateGroupCall
380
+ from .update_peer_history_ttl import UpdatePeerHistoryTTL
381
+ from .update_chat_participant import UpdateChatParticipant
382
+ from .update_channel_participant import UpdateChannelParticipant
383
+ from .update_bot_stopped import UpdateBotStopped
384
+ from .update_group_call_connection import UpdateGroupCallConnection
385
+ from .update_bot_commands import UpdateBotCommands
386
+ from .update_pending_join_requests import UpdatePendingJoinRequests
387
+ from .update_bot_chat_invite_requester import UpdateBotChatInviteRequester
388
+ from .update_message_reactions import UpdateMessageReactions
389
+ from .update_attach_menu_bots import UpdateAttachMenuBots
390
+ from .update_web_view_result_sent import UpdateWebViewResultSent
391
+ from .update_bot_menu_button import UpdateBotMenuButton
392
+ from .update_saved_ringtones import UpdateSavedRingtones
393
+ from .update_transcribed_audio import UpdateTranscribedAudio
394
+ from .update_read_featured_emoji_stickers import UpdateReadFeaturedEmojiStickers
395
+ from .update_user_emoji_status import UpdateUserEmojiStatus
396
+ from .update_recent_emoji_statuses import UpdateRecentEmojiStatuses
397
+ from .update_recent_reactions import UpdateRecentReactions
398
+ from .update_move_sticker_set_to_top import UpdateMoveStickerSetToTop
399
+ from .update_message_extended_media import UpdateMessageExtendedMedia
400
+ from .update_user import UpdateUser
401
+ from .update_auto_save_settings import UpdateAutoSaveSettings
402
+ from .update_story import UpdateStory
403
+ from .update_read_stories import UpdateReadStories
404
+ from .update_story_id import UpdateStoryID
405
+ from .update_stories_stealth_mode import UpdateStoriesStealthMode
406
+ from .update_sent_story_reaction import UpdateSentStoryReaction
407
+ from .update_bot_chat_boost import UpdateBotChatBoost
408
+ from .update_channel_view_forum_as_messages import UpdateChannelViewForumAsMessages
409
+ from .update_peer_wallpaper import UpdatePeerWallpaper
410
+ from .update_bot_message_reaction import UpdateBotMessageReaction
411
+ from .update_bot_message_reactions import UpdateBotMessageReactions
412
+ from .update_saved_dialog_pinned import UpdateSavedDialogPinned
413
+ from .update_pinned_saved_dialogs import UpdatePinnedSavedDialogs
414
+ from .update_saved_reaction_tags import UpdateSavedReactionTags
415
+ from .update_sms_job import UpdateSmsJob
416
+ from .update_quick_replies import UpdateQuickReplies
417
+ from .update_new_quick_reply import UpdateNewQuickReply
418
+ from .update_delete_quick_reply import UpdateDeleteQuickReply
419
+ from .update_quick_reply_message import UpdateQuickReplyMessage
420
+ from .update_delete_quick_reply_messages import UpdateDeleteQuickReplyMessages
421
+ from .update_bot_business_connect import UpdateBotBusinessConnect
422
+ from .update_bot_new_business_message import UpdateBotNewBusinessMessage
423
+ from .update_bot_edit_business_message import UpdateBotEditBusinessMessage
424
+ from .update_bot_delete_business_message import UpdateBotDeleteBusinessMessage
425
+ from .update_new_story_reaction import UpdateNewStoryReaction
426
+ from .update_stars_balance import UpdateStarsBalance
427
+ from .update_business_bot_callback_query import UpdateBusinessBotCallbackQuery
428
+ from .update_stars_revenue_status import UpdateStarsRevenueStatus
429
+ from .update_bot_purchased_paid_media import UpdateBotPurchasedPaidMedia
430
+ from .update_paid_reaction_privacy import UpdatePaidReactionPrivacy
431
+ from .update_sent_phone_code import UpdateSentPhoneCode
432
+ from .update_group_call_chain_blocks import UpdateGroupCallChainBlocks
433
+ from .update_read_mono_forum_inbox import UpdateReadMonoForumInbox
434
+ from .update_read_mono_forum_outbox import UpdateReadMonoForumOutbox
435
+ from .update_mono_forum_no_paid_exception import UpdateMonoForumNoPaidException
436
+ from .update_group_call_message import UpdateGroupCallMessage
437
+ from .update_group_call_encrypted_message import UpdateGroupCallEncryptedMessage
438
+ from .update_pinned_forum_topic import UpdatePinnedForumTopic
439
+ from .update_pinned_forum_topics import UpdatePinnedForumTopics
440
+ from .update_delete_group_call_messages import UpdateDeleteGroupCallMessages
441
+ from .update_star_gift_auction_state import UpdateStarGiftAuctionState
442
+ from .update_star_gift_auction_user_state import UpdateStarGiftAuctionUserState
443
+ from .update_emoji_game_info import UpdateEmojiGameInfo
444
+ from .update_star_gift_craft_fail import UpdateStarGiftCraftFail
445
+ from .update_chat_participant_rank import UpdateChatParticipantRank
446
+ from .update_managed_bot import UpdateManagedBot
447
+ from .update_bot_guest_chat_query import UpdateBotGuestChatQuery
448
+ from .update_ai_compose_tones import UpdateAiComposeTones
449
+ from .update_join_chat_web_view_decision import UpdateJoinChatWebViewDecision
450
+ from .update_new_bot_connection import UpdateNewBotConnection
451
+ from .update_web_browser_settings import UpdateWebBrowserSettings
452
+ from .update_web_browser_exception import UpdateWebBrowserException
453
+ from .update_new_ephemeral_message import UpdateNewEphemeralMessage
454
+ from .update_delete_ephemeral_messages import UpdateDeleteEphemeralMessages
455
+ from .update_edit_ephemeral_message import UpdateEditEphemeralMessage
456
+ from .update_ephemeral_bot_callback_query import UpdateEphemeralBotCallbackQuery
457
+ from .update_bot_stars_subscription import UpdateBotStarsSubscription
458
+ from .updates_too_long import UpdatesTooLong
459
+ from .update_short_message import UpdateShortMessage
460
+ from .update_short_chat_message import UpdateShortChatMessage
461
+ from .update_short import UpdateShort
462
+ from .updates_combined import UpdatesCombined
463
+ from .updates_t import Updates
464
+ from .update_short_sent_message import UpdateShortSentMessage
465
+ from .dc_option import DcOption
466
+ from .config import Config
467
+ from .nearest_dc import NearestDc
468
+ from .encrypted_chat_empty import EncryptedChatEmpty
469
+ from .encrypted_chat_waiting import EncryptedChatWaiting
470
+ from .encrypted_chat_requested import EncryptedChatRequested
471
+ from .encrypted_chat import EncryptedChat
472
+ from .encrypted_chat_discarded import EncryptedChatDiscarded
473
+ from .input_encrypted_chat import InputEncryptedChat
474
+ from .encrypted_file_empty import EncryptedFileEmpty
475
+ from .encrypted_file import EncryptedFile
476
+ from .input_encrypted_file_empty import InputEncryptedFileEmpty
477
+ from .input_encrypted_file_uploaded import InputEncryptedFileUploaded
478
+ from .input_encrypted_file import InputEncryptedFile
479
+ from .input_encrypted_file_big_uploaded import InputEncryptedFileBigUploaded
480
+ from .encrypted_message import EncryptedMessage
481
+ from .encrypted_message_service import EncryptedMessageService
482
+ from .input_document_empty import InputDocumentEmpty
483
+ from .input_document import InputDocument
484
+ from .document_empty import DocumentEmpty
485
+ from .document import Document
486
+ from .notify_peer import NotifyPeer
487
+ from .notify_users import NotifyUsers
488
+ from .notify_chats import NotifyChats
489
+ from .notify_broadcasts import NotifyBroadcasts
490
+ from .notify_forum_topic import NotifyForumTopic
491
+ from .notify_community import NotifyCommunity
492
+ from .send_message_typing_action import SendMessageTypingAction
493
+ from .send_message_cancel_action import SendMessageCancelAction
494
+ from .send_message_record_video_action import SendMessageRecordVideoAction
495
+ from .send_message_upload_video_action import SendMessageUploadVideoAction
496
+ from .send_message_record_audio_action import SendMessageRecordAudioAction
497
+ from .send_message_upload_audio_action import SendMessageUploadAudioAction
498
+ from .send_message_upload_photo_action import SendMessageUploadPhotoAction
499
+ from .send_message_upload_document_action import SendMessageUploadDocumentAction
500
+ from .send_message_geo_location_action import SendMessageGeoLocationAction
501
+ from .send_message_choose_contact_action import SendMessageChooseContactAction
502
+ from .send_message_game_play_action import SendMessageGamePlayAction
503
+ from .send_message_record_round_action import SendMessageRecordRoundAction
504
+ from .send_message_upload_round_action import SendMessageUploadRoundAction
505
+ from .speaking_in_group_call_action import SpeakingInGroupCallAction
506
+ from .send_message_history_import_action import SendMessageHistoryImportAction
507
+ from .send_message_choose_sticker_action import SendMessageChooseStickerAction
508
+ from .send_message_emoji_interaction import SendMessageEmojiInteraction
509
+ from .send_message_emoji_interaction_seen import SendMessageEmojiInteractionSeen
510
+ from .send_message_text_draft_action import SendMessageTextDraftAction
511
+ from .input_send_message_rich_message_draft_action import InputSendMessageRichMessageDraftAction
512
+ from .send_message_rich_message_draft_action import SendMessageRichMessageDraftAction
513
+ from .send_message_stop_draft_action import SendMessageStopDraftAction
514
+ from .input_privacy_key_status_timestamp import InputPrivacyKeyStatusTimestamp
515
+ from .input_privacy_key_chat_invite import InputPrivacyKeyChatInvite
516
+ from .input_privacy_key_phone_call import InputPrivacyKeyPhoneCall
517
+ from .input_privacy_key_phone_p2_p import InputPrivacyKeyPhoneP2P
518
+ from .input_privacy_key_forwards import InputPrivacyKeyForwards
519
+ from .input_privacy_key_profile_photo import InputPrivacyKeyProfilePhoto
520
+ from .input_privacy_key_phone_number import InputPrivacyKeyPhoneNumber
521
+ from .input_privacy_key_added_by_phone import InputPrivacyKeyAddedByPhone
522
+ from .input_privacy_key_voice_messages import InputPrivacyKeyVoiceMessages
523
+ from .input_privacy_key_about import InputPrivacyKeyAbout
524
+ from .input_privacy_key_birthday import InputPrivacyKeyBirthday
525
+ from .input_privacy_key_star_gifts_auto_save import InputPrivacyKeyStarGiftsAutoSave
526
+ from .input_privacy_key_no_paid_messages import InputPrivacyKeyNoPaidMessages
527
+ from .input_privacy_key_saved_music import InputPrivacyKeySavedMusic
528
+ from .privacy_key_status_timestamp import PrivacyKeyStatusTimestamp
529
+ from .privacy_key_chat_invite import PrivacyKeyChatInvite
530
+ from .privacy_key_phone_call import PrivacyKeyPhoneCall
531
+ from .privacy_key_phone_p2_p import PrivacyKeyPhoneP2P
532
+ from .privacy_key_forwards import PrivacyKeyForwards
533
+ from .privacy_key_profile_photo import PrivacyKeyProfilePhoto
534
+ from .privacy_key_phone_number import PrivacyKeyPhoneNumber
535
+ from .privacy_key_added_by_phone import PrivacyKeyAddedByPhone
536
+ from .privacy_key_voice_messages import PrivacyKeyVoiceMessages
537
+ from .privacy_key_about import PrivacyKeyAbout
538
+ from .privacy_key_birthday import PrivacyKeyBirthday
539
+ from .privacy_key_star_gifts_auto_save import PrivacyKeyStarGiftsAutoSave
540
+ from .privacy_key_no_paid_messages import PrivacyKeyNoPaidMessages
541
+ from .privacy_key_saved_music import PrivacyKeySavedMusic
542
+ from .input_privacy_value_allow_contacts import InputPrivacyValueAllowContacts
543
+ from .input_privacy_value_allow_all import InputPrivacyValueAllowAll
544
+ from .input_privacy_value_allow_users import InputPrivacyValueAllowUsers
545
+ from .input_privacy_value_disallow_contacts import InputPrivacyValueDisallowContacts
546
+ from .input_privacy_value_disallow_all import InputPrivacyValueDisallowAll
547
+ from .input_privacy_value_disallow_users import InputPrivacyValueDisallowUsers
548
+ from .input_privacy_value_allow_chat_participants import InputPrivacyValueAllowChatParticipants
549
+ from .input_privacy_value_disallow_chat_participants import InputPrivacyValueDisallowChatParticipants
550
+ from .input_privacy_value_allow_close_friends import InputPrivacyValueAllowCloseFriends
551
+ from .input_privacy_value_allow_premium import InputPrivacyValueAllowPremium
552
+ from .input_privacy_value_allow_bots import InputPrivacyValueAllowBots
553
+ from .input_privacy_value_disallow_bots import InputPrivacyValueDisallowBots
554
+ from .privacy_value_allow_contacts import PrivacyValueAllowContacts
555
+ from .privacy_value_allow_all import PrivacyValueAllowAll
556
+ from .privacy_value_allow_users import PrivacyValueAllowUsers
557
+ from .privacy_value_disallow_contacts import PrivacyValueDisallowContacts
558
+ from .privacy_value_disallow_all import PrivacyValueDisallowAll
559
+ from .privacy_value_disallow_users import PrivacyValueDisallowUsers
560
+ from .privacy_value_allow_chat_participants import PrivacyValueAllowChatParticipants
561
+ from .privacy_value_disallow_chat_participants import PrivacyValueDisallowChatParticipants
562
+ from .privacy_value_allow_close_friends import PrivacyValueAllowCloseFriends
563
+ from .privacy_value_allow_premium import PrivacyValueAllowPremium
564
+ from .privacy_value_allow_bots import PrivacyValueAllowBots
565
+ from .privacy_value_disallow_bots import PrivacyValueDisallowBots
566
+ from .account_days_ttl import AccountDaysTTL
567
+ from .document_attribute_image_size import DocumentAttributeImageSize
568
+ from .document_attribute_animated import DocumentAttributeAnimated
569
+ from .document_attribute_sticker import DocumentAttributeSticker
570
+ from .document_attribute_video import DocumentAttributeVideo
571
+ from .document_attribute_audio import DocumentAttributeAudio
572
+ from .document_attribute_filename import DocumentAttributeFilename
573
+ from .document_attribute_has_stickers import DocumentAttributeHasStickers
574
+ from .document_attribute_custom_emoji import DocumentAttributeCustomEmoji
575
+ from .sticker_pack import StickerPack
576
+ from .web_page_empty import WebPageEmpty
577
+ from .web_page_pending import WebPagePending
578
+ from .web_page import WebPage
579
+ from .web_page_not_modified import WebPageNotModified
580
+ from .authorization import Authorization
581
+ from .received_notify_message import ReceivedNotifyMessage
582
+ from .chat_invite_exported import ChatInviteExported
583
+ from .chat_invite_public_join_requests import ChatInvitePublicJoinRequests
584
+ from .chat_invite_already import ChatInviteAlready
585
+ from .chat_invite import ChatInvite
586
+ from .chat_invite_peek import ChatInvitePeek
587
+ from .input_sticker_set_empty import InputStickerSetEmpty
588
+ from .input_sticker_set_id import InputStickerSetID
589
+ from .input_sticker_set_short_name import InputStickerSetShortName
590
+ from .input_sticker_set_animated_emoji import InputStickerSetAnimatedEmoji
591
+ from .input_sticker_set_dice import InputStickerSetDice
592
+ from .input_sticker_set_animated_emoji_animations import InputStickerSetAnimatedEmojiAnimations
593
+ from .input_sticker_set_premium_gifts import InputStickerSetPremiumGifts
594
+ from .input_sticker_set_emoji_generic_animations import InputStickerSetEmojiGenericAnimations
595
+ from .input_sticker_set_emoji_default_statuses import InputStickerSetEmojiDefaultStatuses
596
+ from .input_sticker_set_emoji_default_topic_icons import InputStickerSetEmojiDefaultTopicIcons
597
+ from .input_sticker_set_emoji_channel_default_statuses import InputStickerSetEmojiChannelDefaultStatuses
598
+ from .input_sticker_set_ton_gifts import InputStickerSetTonGifts
599
+ from .sticker_set import StickerSet
600
+ from .bot_command import BotCommand
601
+ from .bot_info import BotInfo
602
+ from .keyboard_button import KeyboardButton
603
+ from .keyboard_button_row import KeyboardButtonRow
604
+ from .reply_keyboard_hide import ReplyKeyboardHide
605
+ from .reply_keyboard_force_reply import ReplyKeyboardForceReply
606
+ from .reply_keyboard_markup import ReplyKeyboardMarkup
607
+ from .reply_inline_markup import ReplyInlineMarkup
608
+ from .message_entity_unknown import MessageEntityUnknown
609
+ from .message_entity_mention import MessageEntityMention
610
+ from .message_entity_hashtag import MessageEntityHashtag
611
+ from .message_entity_bot_command import MessageEntityBotCommand
612
+ from .message_entity_url import MessageEntityUrl
613
+ from .message_entity_email import MessageEntityEmail
614
+ from .message_entity_bold import MessageEntityBold
615
+ from .message_entity_italic import MessageEntityItalic
616
+ from .message_entity_code import MessageEntityCode
617
+ from .message_entity_pre import MessageEntityPre
618
+ from .message_entity_text_url import MessageEntityTextUrl
619
+ from .message_entity_mention_name import MessageEntityMentionName
620
+ from .input_message_entity_mention_name import InputMessageEntityMentionName
621
+ from .message_entity_phone import MessageEntityPhone
622
+ from .message_entity_cashtag import MessageEntityCashtag
623
+ from .message_entity_underline import MessageEntityUnderline
624
+ from .message_entity_strike import MessageEntityStrike
625
+ from .message_entity_bank_card import MessageEntityBankCard
626
+ from .message_entity_spoiler import MessageEntitySpoiler
627
+ from .message_entity_custom_emoji import MessageEntityCustomEmoji
628
+ from .message_entity_blockquote import MessageEntityBlockquote
629
+ from .message_entity_formatted_date import MessageEntityFormattedDate
630
+ from .message_entity_diff_insert import MessageEntityDiffInsert
631
+ from .message_entity_diff_replace import MessageEntityDiffReplace
632
+ from .message_entity_diff_delete import MessageEntityDiffDelete
633
+ from .input_channel_empty import InputChannelEmpty
634
+ from .input_channel import InputChannel
635
+ from .input_channel_from_message import InputChannelFromMessage
636
+ from .message_range import MessageRange
637
+ from .channel_messages_filter_empty import ChannelMessagesFilterEmpty
638
+ from .channel_messages_filter import ChannelMessagesFilter
639
+ from .channel_participant import ChannelParticipant
640
+ from .channel_participant_self import ChannelParticipantSelf
641
+ from .channel_participant_creator import ChannelParticipantCreator
642
+ from .channel_participant_admin import ChannelParticipantAdmin
643
+ from .channel_participant_banned import ChannelParticipantBanned
644
+ from .channel_participant_left import ChannelParticipantLeft
645
+ from .channel_participants_recent import ChannelParticipantsRecent
646
+ from .channel_participants_admins import ChannelParticipantsAdmins
647
+ from .channel_participants_kicked import ChannelParticipantsKicked
648
+ from .channel_participants_bots import ChannelParticipantsBots
649
+ from .channel_participants_banned import ChannelParticipantsBanned
650
+ from .channel_participants_search import ChannelParticipantsSearch
651
+ from .channel_participants_contacts import ChannelParticipantsContacts
652
+ from .channel_participants_mentions import ChannelParticipantsMentions
653
+ from .input_bot_inline_message_media_auto import InputBotInlineMessageMediaAuto
654
+ from .input_bot_inline_message_text import InputBotInlineMessageText
655
+ from .input_bot_inline_message_media_geo import InputBotInlineMessageMediaGeo
656
+ from .input_bot_inline_message_media_venue import InputBotInlineMessageMediaVenue
657
+ from .input_bot_inline_message_media_contact import InputBotInlineMessageMediaContact
658
+ from .input_bot_inline_message_game import InputBotInlineMessageGame
659
+ from .input_bot_inline_message_media_invoice import InputBotInlineMessageMediaInvoice
660
+ from .input_bot_inline_message_media_web_page import InputBotInlineMessageMediaWebPage
661
+ from .input_bot_inline_message_rich_message import InputBotInlineMessageRichMessage
662
+ from .input_bot_inline_result import InputBotInlineResult
663
+ from .input_bot_inline_result_photo import InputBotInlineResultPhoto
664
+ from .input_bot_inline_result_document import InputBotInlineResultDocument
665
+ from .input_bot_inline_result_game import InputBotInlineResultGame
666
+ from .bot_inline_message_media_auto import BotInlineMessageMediaAuto
667
+ from .bot_inline_message_text import BotInlineMessageText
668
+ from .bot_inline_message_media_geo import BotInlineMessageMediaGeo
669
+ from .bot_inline_message_media_venue import BotInlineMessageMediaVenue
670
+ from .bot_inline_message_media_contact import BotInlineMessageMediaContact
671
+ from .bot_inline_message_media_invoice import BotInlineMessageMediaInvoice
672
+ from .bot_inline_message_media_web_page import BotInlineMessageMediaWebPage
673
+ from .bot_inline_message_rich_message import BotInlineMessageRichMessage
674
+ from .bot_inline_result import BotInlineResult
675
+ from .bot_inline_media_result import BotInlineMediaResult
676
+ from .exported_message_link import ExportedMessageLink
677
+ from .message_fwd_header import MessageFwdHeader
678
+ from .input_bot_inline_message_id import InputBotInlineMessageID
679
+ from .input_bot_inline_message_id64 import InputBotInlineMessageID64
680
+ from .inline_bot_switch_pm import InlineBotSwitchPM
681
+ from .top_peer import TopPeer
682
+ from .top_peer_category_bots_pm import TopPeerCategoryBotsPM
683
+ from .top_peer_category_bots_inline import TopPeerCategoryBotsInline
684
+ from .top_peer_category_correspondents import TopPeerCategoryCorrespondents
685
+ from .top_peer_category_groups import TopPeerCategoryGroups
686
+ from .top_peer_category_channels import TopPeerCategoryChannels
687
+ from .top_peer_category_phone_calls import TopPeerCategoryPhoneCalls
688
+ from .top_peer_category_forward_users import TopPeerCategoryForwardUsers
689
+ from .top_peer_category_forward_chats import TopPeerCategoryForwardChats
690
+ from .top_peer_category_bots_app import TopPeerCategoryBotsApp
691
+ from .top_peer_category_bots_guest_chat import TopPeerCategoryBotsGuestChat
692
+ from .top_peer_category_peers import TopPeerCategoryPeers
693
+ from .draft_message_empty import DraftMessageEmpty
694
+ from .draft_message import DraftMessage
695
+ from .sticker_set_covered import StickerSetCovered
696
+ from .sticker_set_multi_covered import StickerSetMultiCovered
697
+ from .sticker_set_full_covered import StickerSetFullCovered
698
+ from .sticker_set_no_covered import StickerSetNoCovered
699
+ from .mask_coords import MaskCoords
700
+ from .input_stickered_media_photo import InputStickeredMediaPhoto
701
+ from .input_stickered_media_document import InputStickeredMediaDocument
702
+ from .game import Game
703
+ from .input_game_id import InputGameID
704
+ from .input_game_short_name import InputGameShortName
705
+ from .high_score import HighScore
706
+ from .text_empty import TextEmpty
707
+ from .text_plain import TextPlain
708
+ from .text_bold import TextBold
709
+ from .text_italic import TextItalic
710
+ from .text_underline import TextUnderline
711
+ from .text_strike import TextStrike
712
+ from .text_fixed import TextFixed
713
+ from .text_url import TextUrl
714
+ from .text_email import TextEmail
715
+ from .text_concat import TextConcat
716
+ from .text_subscript import TextSubscript
717
+ from .text_superscript import TextSuperscript
718
+ from .text_marked import TextMarked
719
+ from .text_phone import TextPhone
720
+ from .text_image import TextImage
721
+ from .text_anchor import TextAnchor
722
+ from .text_math import TextMath
723
+ from .text_custom_emoji import TextCustomEmoji
724
+ from .text_spoiler import TextSpoiler
725
+ from .text_mention import TextMention
726
+ from .text_hashtag import TextHashtag
727
+ from .text_bot_command import TextBotCommand
728
+ from .text_cashtag import TextCashtag
729
+ from .text_auto_url import TextAutoUrl
730
+ from .text_auto_email import TextAutoEmail
731
+ from .text_auto_phone import TextAutoPhone
732
+ from .text_bank_card import TextBankCard
733
+ from .text_mention_name import TextMentionName
734
+ from .text_date import TextDate
735
+ from .text_diff import TextDiff
736
+ from .text_button import TextButton
737
+ from .page_block_unsupported import PageBlockUnsupported
738
+ from .page_block_title import PageBlockTitle
739
+ from .page_block_subtitle import PageBlockSubtitle
740
+ from .page_block_author_date import PageBlockAuthorDate
741
+ from .page_block_header import PageBlockHeader
742
+ from .page_block_subheader import PageBlockSubheader
743
+ from .page_block_paragraph import PageBlockParagraph
744
+ from .page_block_preformatted import PageBlockPreformatted
745
+ from .page_block_footer import PageBlockFooter
746
+ from .page_block_divider import PageBlockDivider
747
+ from .page_block_anchor import PageBlockAnchor
748
+ from .page_block_list import PageBlockList
749
+ from .page_block_blockquote import PageBlockBlockquote
750
+ from .page_block_pullquote import PageBlockPullquote
751
+ from .page_block_photo import PageBlockPhoto
752
+ from .page_block_video import PageBlockVideo
753
+ from .page_block_cover import PageBlockCover
754
+ from .page_block_embed import PageBlockEmbed
755
+ from .page_block_embed_post import PageBlockEmbedPost
756
+ from .page_block_collage import PageBlockCollage
757
+ from .page_block_slideshow import PageBlockSlideshow
758
+ from .page_block_channel import PageBlockChannel
759
+ from .page_block_audio import PageBlockAudio
760
+ from .page_block_kicker import PageBlockKicker
761
+ from .page_block_table import PageBlockTable
762
+ from .page_block_ordered_list import PageBlockOrderedList
763
+ from .page_block_details import PageBlockDetails
764
+ from .page_block_related_articles import PageBlockRelatedArticles
765
+ from .page_block_map import PageBlockMap
766
+ from .page_block_heading1 import PageBlockHeading1
767
+ from .page_block_heading2 import PageBlockHeading2
768
+ from .page_block_heading3 import PageBlockHeading3
769
+ from .page_block_heading4 import PageBlockHeading4
770
+ from .page_block_heading5 import PageBlockHeading5
771
+ from .page_block_heading6 import PageBlockHeading6
772
+ from .page_block_math import PageBlockMath
773
+ from .page_block_thinking import PageBlockThinking
774
+ from .input_page_block_map import InputPageBlockMap
775
+ from .page_block_blockquote_blocks import PageBlockBlockquoteBlocks
776
+ from .page_block_button_row import PageBlockButtonRow
777
+ from .page_block_document import PageBlockDocument
778
+ from .phone_call_discard_reason_missed import PhoneCallDiscardReasonMissed
779
+ from .phone_call_discard_reason_disconnect import PhoneCallDiscardReasonDisconnect
780
+ from .phone_call_discard_reason_hangup import PhoneCallDiscardReasonHangup
781
+ from .phone_call_discard_reason_busy import PhoneCallDiscardReasonBusy
782
+ from .phone_call_discard_reason_migrate_conference_call import PhoneCallDiscardReasonMigrateConferenceCall
783
+ from .data_json import DataJSON
784
+ from .labeled_price import LabeledPrice
785
+ from .invoice import Invoice
786
+ from .payment_charge import PaymentCharge
787
+ from .post_address import PostAddress
788
+ from .payment_requested_info import PaymentRequestedInfo
789
+ from .payment_saved_credentials_card import PaymentSavedCredentialsCard
790
+ from .web_document import WebDocument
791
+ from .web_document_no_proxy import WebDocumentNoProxy
792
+ from .input_web_document import InputWebDocument
793
+ from .input_web_file_location import InputWebFileLocation
794
+ from .input_web_file_geo_point_location import InputWebFileGeoPointLocation
795
+ from .input_web_file_audio_album_thumb_location import InputWebFileAudioAlbumThumbLocation
796
+ from .input_payment_credentials_saved import InputPaymentCredentialsSaved
797
+ from .input_payment_credentials import InputPaymentCredentials
798
+ from .input_payment_credentials_apple_pay import InputPaymentCredentialsApplePay
799
+ from .input_payment_credentials_google_pay import InputPaymentCredentialsGooglePay
800
+ from .shipping_option import ShippingOption
801
+ from .input_sticker_set_item import InputStickerSetItem
802
+ from .input_phone_call import InputPhoneCall
803
+ from .phone_call_empty import PhoneCallEmpty
804
+ from .phone_call_waiting import PhoneCallWaiting
805
+ from .phone_call_requested import PhoneCallRequested
806
+ from .phone_call_accepted import PhoneCallAccepted
807
+ from .phone_call import PhoneCall
808
+ from .phone_call_discarded import PhoneCallDiscarded
809
+ from .phone_connection import PhoneConnection
810
+ from .phone_connection_webrtc import PhoneConnectionWebrtc
811
+ from .phone_call_protocol import PhoneCallProtocol
812
+ from .cdn_public_key import CdnPublicKey
813
+ from .cdn_config import CdnConfig
814
+ from .lang_pack_string import LangPackString
815
+ from .lang_pack_string_pluralized import LangPackStringPluralized
816
+ from .lang_pack_string_deleted import LangPackStringDeleted
817
+ from .lang_pack_difference import LangPackDifference
818
+ from .lang_pack_language import LangPackLanguage
819
+ from .channel_admin_log_event_action_change_title import ChannelAdminLogEventActionChangeTitle
820
+ from .channel_admin_log_event_action_change_about import ChannelAdminLogEventActionChangeAbout
821
+ from .channel_admin_log_event_action_change_username import ChannelAdminLogEventActionChangeUsername
822
+ from .channel_admin_log_event_action_change_photo import ChannelAdminLogEventActionChangePhoto
823
+ from .channel_admin_log_event_action_toggle_invites import ChannelAdminLogEventActionToggleInvites
824
+ from .channel_admin_log_event_action_toggle_signatures import ChannelAdminLogEventActionToggleSignatures
825
+ from .channel_admin_log_event_action_update_pinned import ChannelAdminLogEventActionUpdatePinned
826
+ from .channel_admin_log_event_action_edit_message import ChannelAdminLogEventActionEditMessage
827
+ from .channel_admin_log_event_action_delete_message import ChannelAdminLogEventActionDeleteMessage
828
+ from .channel_admin_log_event_action_participant_join import ChannelAdminLogEventActionParticipantJoin
829
+ from .channel_admin_log_event_action_participant_leave import ChannelAdminLogEventActionParticipantLeave
830
+ from .channel_admin_log_event_action_participant_invite import ChannelAdminLogEventActionParticipantInvite
831
+ from .channel_admin_log_event_action_participant_toggle_ban import ChannelAdminLogEventActionParticipantToggleBan
832
+ from .channel_admin_log_event_action_participant_toggle_admin import ChannelAdminLogEventActionParticipantToggleAdmin
833
+ from .channel_admin_log_event_action_change_sticker_set import ChannelAdminLogEventActionChangeStickerSet
834
+ from .channel_admin_log_event_action_toggle_pre_history_hidden import ChannelAdminLogEventActionTogglePreHistoryHidden
835
+ from .channel_admin_log_event_action_default_banned_rights import ChannelAdminLogEventActionDefaultBannedRights
836
+ from .channel_admin_log_event_action_stop_poll import ChannelAdminLogEventActionStopPoll
837
+ from .channel_admin_log_event_action_change_linked_chat import ChannelAdminLogEventActionChangeLinkedChat
838
+ from .channel_admin_log_event_action_change_location import ChannelAdminLogEventActionChangeLocation
839
+ from .channel_admin_log_event_action_toggle_slow_mode import ChannelAdminLogEventActionToggleSlowMode
840
+ from .channel_admin_log_event_action_start_group_call import ChannelAdminLogEventActionStartGroupCall
841
+ from .channel_admin_log_event_action_discard_group_call import ChannelAdminLogEventActionDiscardGroupCall
842
+ from .channel_admin_log_event_action_participant_mute import ChannelAdminLogEventActionParticipantMute
843
+ from .channel_admin_log_event_action_participant_unmute import ChannelAdminLogEventActionParticipantUnmute
844
+ from .channel_admin_log_event_action_toggle_group_call_setting import ChannelAdminLogEventActionToggleGroupCallSetting
845
+ from .channel_admin_log_event_action_participant_join_by_invite import ChannelAdminLogEventActionParticipantJoinByInvite
846
+ from .channel_admin_log_event_action_exported_invite_delete import ChannelAdminLogEventActionExportedInviteDelete
847
+ from .channel_admin_log_event_action_exported_invite_revoke import ChannelAdminLogEventActionExportedInviteRevoke
848
+ from .channel_admin_log_event_action_exported_invite_edit import ChannelAdminLogEventActionExportedInviteEdit
849
+ from .channel_admin_log_event_action_participant_volume import ChannelAdminLogEventActionParticipantVolume
850
+ from .channel_admin_log_event_action_change_history_ttl import ChannelAdminLogEventActionChangeHistoryTTL
851
+ from .channel_admin_log_event_action_participant_join_by_request import ChannelAdminLogEventActionParticipantJoinByRequest
852
+ from .channel_admin_log_event_action_toggle_no_forwards import ChannelAdminLogEventActionToggleNoForwards
853
+ from .channel_admin_log_event_action_send_message import ChannelAdminLogEventActionSendMessage
854
+ from .channel_admin_log_event_action_change_available_reactions import ChannelAdminLogEventActionChangeAvailableReactions
855
+ from .channel_admin_log_event_action_change_usernames import ChannelAdminLogEventActionChangeUsernames
856
+ from .channel_admin_log_event_action_toggle_forum import ChannelAdminLogEventActionToggleForum
857
+ from .channel_admin_log_event_action_create_topic import ChannelAdminLogEventActionCreateTopic
858
+ from .channel_admin_log_event_action_edit_topic import ChannelAdminLogEventActionEditTopic
859
+ from .channel_admin_log_event_action_delete_topic import ChannelAdminLogEventActionDeleteTopic
860
+ from .channel_admin_log_event_action_pin_topic import ChannelAdminLogEventActionPinTopic
861
+ from .channel_admin_log_event_action_toggle_anti_spam import ChannelAdminLogEventActionToggleAntiSpam
862
+ from .channel_admin_log_event_action_change_peer_color import ChannelAdminLogEventActionChangePeerColor
863
+ from .channel_admin_log_event_action_change_profile_peer_color import ChannelAdminLogEventActionChangeProfilePeerColor
864
+ from .channel_admin_log_event_action_change_wallpaper import ChannelAdminLogEventActionChangeWallpaper
865
+ from .channel_admin_log_event_action_change_emoji_status import ChannelAdminLogEventActionChangeEmojiStatus
866
+ from .channel_admin_log_event_action_change_emoji_sticker_set import ChannelAdminLogEventActionChangeEmojiStickerSet
867
+ from .channel_admin_log_event_action_toggle_signature_profiles import ChannelAdminLogEventActionToggleSignatureProfiles
868
+ from .channel_admin_log_event_action_participant_sub_extend import ChannelAdminLogEventActionParticipantSubExtend
869
+ from .channel_admin_log_event_action_toggle_autotranslation import ChannelAdminLogEventActionToggleAutotranslation
870
+ from .channel_admin_log_event_action_participant_edit_rank import ChannelAdminLogEventActionParticipantEditRank
871
+ from .channel_admin_log_event import ChannelAdminLogEvent
872
+ from .channel_admin_log_events_filter import ChannelAdminLogEventsFilter
873
+ from .popular_contact import PopularContact
874
+ from .recent_me_url_unknown import RecentMeUrlUnknown
875
+ from .recent_me_url_user import RecentMeUrlUser
876
+ from .recent_me_url_chat import RecentMeUrlChat
877
+ from .recent_me_url_chat_invite import RecentMeUrlChatInvite
878
+ from .recent_me_url_sticker_set import RecentMeUrlStickerSet
879
+ from .input_single_media import InputSingleMedia
880
+ from .web_authorization import WebAuthorization
881
+ from .input_message_id import InputMessageID
882
+ from .input_message_reply_to import InputMessageReplyTo
883
+ from .input_message_pinned import InputMessagePinned
884
+ from .input_message_callback_query import InputMessageCallbackQuery
885
+ from .input_dialog_peer import InputDialogPeer
886
+ from .input_dialog_peer_folder import InputDialogPeerFolder
887
+ from .input_dialog_peer_community import InputDialogPeerCommunity
888
+ from .dialog_peer import DialogPeer
889
+ from .dialog_peer_folder import DialogPeerFolder
890
+ from .dialog_peer_community import DialogPeerCommunity
891
+ from .file_hash import FileHash
892
+ from .input_client_proxy import InputClientProxy
893
+ from .input_secure_file_uploaded import InputSecureFileUploaded
894
+ from .input_secure_file import InputSecureFile
895
+ from .secure_file_empty import SecureFileEmpty
896
+ from .secure_file import SecureFile
897
+ from .secure_data import SecureData
898
+ from .secure_plain_phone import SecurePlainPhone
899
+ from .secure_plain_email import SecurePlainEmail
900
+ from .secure_value_type_personal_details import SecureValueTypePersonalDetails
901
+ from .secure_value_type_passport import SecureValueTypePassport
902
+ from .secure_value_type_driver_license import SecureValueTypeDriverLicense
903
+ from .secure_value_type_identity_card import SecureValueTypeIdentityCard
904
+ from .secure_value_type_internal_passport import SecureValueTypeInternalPassport
905
+ from .secure_value_type_address import SecureValueTypeAddress
906
+ from .secure_value_type_utility_bill import SecureValueTypeUtilityBill
907
+ from .secure_value_type_bank_statement import SecureValueTypeBankStatement
908
+ from .secure_value_type_rental_agreement import SecureValueTypeRentalAgreement
909
+ from .secure_value_type_passport_registration import SecureValueTypePassportRegistration
910
+ from .secure_value_type_temporary_registration import SecureValueTypeTemporaryRegistration
911
+ from .secure_value_type_phone import SecureValueTypePhone
912
+ from .secure_value_type_email import SecureValueTypeEmail
913
+ from .secure_value import SecureValue
914
+ from .input_secure_value import InputSecureValue
915
+ from .secure_value_hash import SecureValueHash
916
+ from .secure_value_error_data import SecureValueErrorData
917
+ from .secure_value_error_front_side import SecureValueErrorFrontSide
918
+ from .secure_value_error_reverse_side import SecureValueErrorReverseSide
919
+ from .secure_value_error_selfie import SecureValueErrorSelfie
920
+ from .secure_value_error_file import SecureValueErrorFile
921
+ from .secure_value_error_files import SecureValueErrorFiles
922
+ from .secure_value_error import SecureValueError
923
+ from .secure_value_error_translation_file import SecureValueErrorTranslationFile
924
+ from .secure_value_error_translation_files import SecureValueErrorTranslationFiles
925
+ from .secure_credentials_encrypted import SecureCredentialsEncrypted
926
+ from .saved_phone_contact import SavedPhoneContact
927
+ from .password_kdf_algo_unknown import PasswordKdfAlgoUnknown
928
+ from .password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow import PasswordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow
929
+ from .secure_password_kdf_algo_unknown import SecurePasswordKdfAlgoUnknown
930
+ from .secure_password_kdf_algo_pbkdf2_hmacsha512iter100000 import SecurePasswordKdfAlgoPBKDF2HMACSHA512iter100000
931
+ from .secure_password_kdf_algo_sha512 import SecurePasswordKdfAlgoSHA512
932
+ from .secure_secret_settings import SecureSecretSettings
933
+ from .input_check_password_empty import InputCheckPasswordEmpty
934
+ from .input_check_password_srp import InputCheckPasswordSRP
935
+ from .secure_required_type import SecureRequiredType
936
+ from .secure_required_type_one_of import SecureRequiredTypeOneOf
937
+ from .input_app_event import InputAppEvent
938
+ from .json_object_value import JsonObjectValue
939
+ from .json_null import JsonNull
940
+ from .json_bool import JsonBool
941
+ from .json_number import JsonNumber
942
+ from .json_string import JsonString
943
+ from .json_array import JsonArray
944
+ from .json_object import JsonObject
945
+ from .page_table_cell import PageTableCell
946
+ from .page_table_row import PageTableRow
947
+ from .page_caption import PageCaption
948
+ from .page_list_item_text import PageListItemText
949
+ from .page_list_item_blocks import PageListItemBlocks
950
+ from .page_list_ordered_item_text import PageListOrderedItemText
951
+ from .page_list_ordered_item_blocks import PageListOrderedItemBlocks
952
+ from .page_related_article import PageRelatedArticle
953
+ from .page import Page
954
+ from .poll_answer import PollAnswer
955
+ from .input_poll_answer import InputPollAnswer
956
+ from .poll import Poll
957
+ from .poll_answer_voters import PollAnswerVoters
958
+ from .poll_results import PollResults
959
+ from .chat_onlines import ChatOnlines
960
+ from .stats_url import StatsURL
961
+ from .chat_admin_rights import ChatAdminRights
962
+ from .chat_banned_rights import ChatBannedRights
963
+ from .input_wall_paper import InputWallPaper
964
+ from .input_wall_paper_slug import InputWallPaperSlug
965
+ from .input_wall_paper_no_file import InputWallPaperNoFile
966
+ from .code_settings import CodeSettings
967
+ from .wall_paper_settings import WallPaperSettings
968
+ from .auto_download_settings import AutoDownloadSettings
969
+ from .emoji_keyword import EmojiKeyword
970
+ from .emoji_keyword_deleted import EmojiKeywordDeleted
971
+ from .emoji_keywords_difference import EmojiKeywordsDifference
972
+ from .emoji_url import EmojiURL
973
+ from .emoji_language import EmojiLanguage
974
+ from .folder import Folder
975
+ from .input_folder_peer import InputFolderPeer
976
+ from .folder_peer import FolderPeer
977
+ from .url_auth_result_request import UrlAuthResultRequest
978
+ from .url_auth_result_accepted import UrlAuthResultAccepted
979
+ from .url_auth_result_default import UrlAuthResultDefault
980
+ from .channel_location_empty import ChannelLocationEmpty
981
+ from .channel_location import ChannelLocation
982
+ from .peer_located import PeerLocated
983
+ from .peer_self_located import PeerSelfLocated
984
+ from .restriction_reason import RestrictionReason
985
+ from .input_theme import InputTheme
986
+ from .input_theme_slug import InputThemeSlug
987
+ from .theme import Theme
988
+ from .base_theme_classic import BaseThemeClassic
989
+ from .base_theme_day import BaseThemeDay
990
+ from .base_theme_night import BaseThemeNight
991
+ from .base_theme_tinted import BaseThemeTinted
992
+ from .base_theme_arctic import BaseThemeArctic
993
+ from .input_theme_settings import InputThemeSettings
994
+ from .theme_settings import ThemeSettings
995
+ from .web_page_attribute_theme import WebPageAttributeTheme
996
+ from .web_page_attribute_story import WebPageAttributeStory
997
+ from .web_page_attribute_sticker_set import WebPageAttributeStickerSet
998
+ from .web_page_attribute_unique_star_gift import WebPageAttributeUniqueStarGift
999
+ from .web_page_attribute_star_gift_collection import WebPageAttributeStarGiftCollection
1000
+ from .web_page_attribute_star_gift_auction import WebPageAttributeStarGiftAuction
1001
+ from .web_page_attribute_ai_compose_tone import WebPageAttributeAiComposeTone
1002
+ from .bank_card_open_url import BankCardOpenUrl
1003
+ from .dialog_filter import DialogFilter
1004
+ from .dialog_filter_default import DialogFilterDefault
1005
+ from .dialog_filter_chatlist import DialogFilterChatlist
1006
+ from .dialog_filter_suggested import DialogFilterSuggested
1007
+ from .stats_date_range_days import StatsDateRangeDays
1008
+ from .stats_abs_value_and_prev import StatsAbsValueAndPrev
1009
+ from .stats_percent_value import StatsPercentValue
1010
+ from .stats_graph_async import StatsGraphAsync
1011
+ from .stats_graph_error import StatsGraphError
1012
+ from .stats_graph import StatsGraph
1013
+ from .video_size import VideoSize
1014
+ from .video_size_emoji_markup import VideoSizeEmojiMarkup
1015
+ from .video_size_sticker_markup import VideoSizeStickerMarkup
1016
+ from .stats_group_top_poster import StatsGroupTopPoster
1017
+ from .stats_group_top_admin import StatsGroupTopAdmin
1018
+ from .stats_group_top_inviter import StatsGroupTopInviter
1019
+ from .global_privacy_settings import GlobalPrivacySettings
1020
+ from .message_views import MessageViews
1021
+ from .message_reply_header import MessageReplyHeader
1022
+ from .message_reply_story_header import MessageReplyStoryHeader
1023
+ from .message_replies import MessageReplies
1024
+ from .peer_blocked import PeerBlocked
1025
+ from .group_call_discarded import GroupCallDiscarded
1026
+ from .group_call import GroupCall
1027
+ from .input_group_call import InputGroupCall
1028
+ from .input_group_call_slug import InputGroupCallSlug
1029
+ from .input_group_call_invite_message import InputGroupCallInviteMessage
1030
+ from .group_call_participant import GroupCallParticipant
1031
+ from .inline_query_peer_type_same_bot_pm import InlineQueryPeerTypeSameBotPM
1032
+ from .inline_query_peer_type_pm import InlineQueryPeerTypePM
1033
+ from .inline_query_peer_type_chat import InlineQueryPeerTypeChat
1034
+ from .inline_query_peer_type_megagroup import InlineQueryPeerTypeMegagroup
1035
+ from .inline_query_peer_type_broadcast import InlineQueryPeerTypeBroadcast
1036
+ from .inline_query_peer_type_bot_pm import InlineQueryPeerTypeBotPM
1037
+ from .chat_invite_importer import ChatInviteImporter
1038
+ from .chat_admin_with_invites import ChatAdminWithInvites
1039
+ from .group_call_participant_video_source_group import GroupCallParticipantVideoSourceGroup
1040
+ from .group_call_participant_video import GroupCallParticipantVideo
1041
+ from .bot_command_scope_default import BotCommandScopeDefault
1042
+ from .bot_command_scope_users import BotCommandScopeUsers
1043
+ from .bot_command_scope_chats import BotCommandScopeChats
1044
+ from .bot_command_scope_chat_admins import BotCommandScopeChatAdmins
1045
+ from .bot_command_scope_peer import BotCommandScopePeer
1046
+ from .bot_command_scope_peer_admins import BotCommandScopePeerAdmins
1047
+ from .bot_command_scope_peer_user import BotCommandScopePeerUser
1048
+ from .chat_theme import ChatTheme
1049
+ from .chat_theme_unique_gift import ChatThemeUniqueGift
1050
+ from .sponsored_message import SponsoredMessage
1051
+ from .search_results_calendar_period import SearchResultsCalendarPeriod
1052
+ from .search_result_position import SearchResultPosition
1053
+ from .reaction_count import ReactionCount
1054
+ from .message_reactions import MessageReactions
1055
+ from .available_reaction import AvailableReaction
1056
+ from .message_peer_reaction import MessagePeerReaction
1057
+ from .group_call_stream_channel import GroupCallStreamChannel
1058
+ from .attach_menu_bot_icon_color import AttachMenuBotIconColor
1059
+ from .attach_menu_bot_icon import AttachMenuBotIcon
1060
+ from .attach_menu_bot import AttachMenuBot
1061
+ from .attach_menu_bots_not_modified import AttachMenuBotsNotModified
1062
+ from .attach_menu_bots import AttachMenuBots
1063
+ from .attach_menu_bots_bot import AttachMenuBotsBot
1064
+ from .web_view_result_url import WebViewResultUrl
1065
+ from .web_view_message_sent import WebViewMessageSent
1066
+ from .bot_menu_button_default import BotMenuButtonDefault
1067
+ from .bot_menu_button_commands import BotMenuButtonCommands
1068
+ from .bot_menu_button import BotMenuButton
1069
+ from .notification_sound_default import NotificationSoundDefault
1070
+ from .notification_sound_none import NotificationSoundNone
1071
+ from .notification_sound_local import NotificationSoundLocal
1072
+ from .notification_sound_ringtone import NotificationSoundRingtone
1073
+ from .attach_menu_peer_type_same_bot_pm import AttachMenuPeerTypeSameBotPM
1074
+ from .attach_menu_peer_type_bot_pm import AttachMenuPeerTypeBotPM
1075
+ from .attach_menu_peer_type_pm import AttachMenuPeerTypePM
1076
+ from .attach_menu_peer_type_chat import AttachMenuPeerTypeChat
1077
+ from .attach_menu_peer_type_broadcast import AttachMenuPeerTypeBroadcast
1078
+ from .input_invoice_message import InputInvoiceMessage
1079
+ from .input_invoice_slug import InputInvoiceSlug
1080
+ from .input_invoice_premium_gift_code import InputInvoicePremiumGiftCode
1081
+ from .input_invoice_stars import InputInvoiceStars
1082
+ from .input_invoice_chat_invite_subscription import InputInvoiceChatInviteSubscription
1083
+ from .input_invoice_star_gift import InputInvoiceStarGift
1084
+ from .input_invoice_star_gift_upgrade import InputInvoiceStarGiftUpgrade
1085
+ from .input_invoice_star_gift_transfer import InputInvoiceStarGiftTransfer
1086
+ from .input_invoice_premium_gift_stars import InputInvoicePremiumGiftStars
1087
+ from .input_invoice_business_bot_transfer_stars import InputInvoiceBusinessBotTransferStars
1088
+ from .input_invoice_star_gift_resale import InputInvoiceStarGiftResale
1089
+ from .input_invoice_star_gift_prepaid_upgrade import InputInvoiceStarGiftPrepaidUpgrade
1090
+ from .input_invoice_premium_auth_code import InputInvoicePremiumAuthCode
1091
+ from .input_invoice_star_gift_drop_original_details import InputInvoiceStarGiftDropOriginalDetails
1092
+ from .input_invoice_star_gift_auction_bid import InputInvoiceStarGiftAuctionBid
1093
+ from .input_store_payment_premium_subscription import InputStorePaymentPremiumSubscription
1094
+ from .input_store_payment_gift_premium import InputStorePaymentGiftPremium
1095
+ from .input_store_payment_premium_gift_code import InputStorePaymentPremiumGiftCode
1096
+ from .input_store_payment_premium_giveaway import InputStorePaymentPremiumGiveaway
1097
+ from .input_store_payment_stars_topup import InputStorePaymentStarsTopup
1098
+ from .input_store_payment_stars_gift import InputStorePaymentStarsGift
1099
+ from .input_store_payment_stars_giveaway import InputStorePaymentStarsGiveaway
1100
+ from .input_store_payment_auth_code import InputStorePaymentAuthCode
1101
+ from .payment_form_method import PaymentFormMethod
1102
+ from .emoji_status_empty import EmojiStatusEmpty
1103
+ from .emoji_status import EmojiStatus
1104
+ from .emoji_status_collectible import EmojiStatusCollectible
1105
+ from .input_emoji_status_collectible import InputEmojiStatusCollectible
1106
+ from .reaction_empty import ReactionEmpty
1107
+ from .reaction_emoji import ReactionEmoji
1108
+ from .reaction_custom_emoji import ReactionCustomEmoji
1109
+ from .reaction_paid import ReactionPaid
1110
+ from .chat_reactions_none import ChatReactionsNone
1111
+ from .chat_reactions_all import ChatReactionsAll
1112
+ from .chat_reactions_some import ChatReactionsSome
1113
+ from .email_verify_purpose_login_setup import EmailVerifyPurposeLoginSetup
1114
+ from .email_verify_purpose_login_change import EmailVerifyPurposeLoginChange
1115
+ from .email_verify_purpose_passport import EmailVerifyPurposePassport
1116
+ from .email_verification_code import EmailVerificationCode
1117
+ from .email_verification_google import EmailVerificationGoogle
1118
+ from .email_verification_apple import EmailVerificationApple
1119
+ from .premium_subscription_option import PremiumSubscriptionOption
1120
+ from .send_as_peer import SendAsPeer
1121
+ from .message_extended_media_preview import MessageExtendedMediaPreview
1122
+ from .message_extended_media import MessageExtendedMedia
1123
+ from .sticker_keyword import StickerKeyword
1124
+ from .username import Username
1125
+ from .forum_topic_deleted import ForumTopicDeleted
1126
+ from .forum_topic import ForumTopic
1127
+ from .default_history_ttl import DefaultHistoryTTL
1128
+ from .exported_contact_token import ExportedContactToken
1129
+ from .request_peer_type_user import RequestPeerTypeUser
1130
+ from .request_peer_type_chat import RequestPeerTypeChat
1131
+ from .request_peer_type_broadcast import RequestPeerTypeBroadcast
1132
+ from .request_peer_type_create_bot import RequestPeerTypeCreateBot
1133
+ from .emoji_list_not_modified import EmojiListNotModified
1134
+ from .emoji_list import EmojiList
1135
+ from .emoji_group import EmojiGroup
1136
+ from .emoji_group_greeting import EmojiGroupGreeting
1137
+ from .emoji_group_premium import EmojiGroupPremium
1138
+ from .text_with_entities import TextWithEntities
1139
+ from .auto_save_settings import AutoSaveSettings
1140
+ from .auto_save_exception import AutoSaveException
1141
+ from .input_bot_app_id import InputBotAppID
1142
+ from .input_bot_app_short_name import InputBotAppShortName
1143
+ from .bot_app_not_modified import BotAppNotModified
1144
+ from .bot_app import BotApp
1145
+ from .inline_bot_web_view import InlineBotWebView
1146
+ from .read_participant_date import ReadParticipantDate
1147
+ from .input_chatlist_dialog_filter import InputChatlistDialogFilter
1148
+ from .exported_chatlist_invite import ExportedChatlistInvite
1149
+ from .message_peer_vote import MessagePeerVote
1150
+ from .message_peer_vote_input_option import MessagePeerVoteInputOption
1151
+ from .message_peer_vote_multiple import MessagePeerVoteMultiple
1152
+ from .story_views import StoryViews
1153
+ from .story_item_deleted import StoryItemDeleted
1154
+ from .story_item_skipped import StoryItemSkipped
1155
+ from .story_item import StoryItem
1156
+ from .story_view import StoryView
1157
+ from .story_view_public_forward import StoryViewPublicForward
1158
+ from .story_view_public_repost import StoryViewPublicRepost
1159
+ from .input_reply_to_message import InputReplyToMessage
1160
+ from .input_reply_to_story import InputReplyToStory
1161
+ from .input_reply_to_mono_forum import InputReplyToMonoForum
1162
+ from .input_reply_to_ephemeral_message import InputReplyToEphemeralMessage
1163
+ from .exported_story_link import ExportedStoryLink
1164
+ from .stories_stealth_mode import StoriesStealthMode
1165
+ from .media_area_coordinates import MediaAreaCoordinates
1166
+ from .media_area_venue import MediaAreaVenue
1167
+ from .input_media_area_venue import InputMediaAreaVenue
1168
+ from .media_area_geo_point import MediaAreaGeoPoint
1169
+ from .media_area_suggested_reaction import MediaAreaSuggestedReaction
1170
+ from .media_area_channel_post import MediaAreaChannelPost
1171
+ from .input_media_area_channel_post import InputMediaAreaChannelPost
1172
+ from .media_area_url import MediaAreaUrl
1173
+ from .media_area_weather import MediaAreaWeather
1174
+ from .media_area_star_gift import MediaAreaStarGift
1175
+ from .peer_stories import PeerStories
1176
+ from .premium_gift_code_option import PremiumGiftCodeOption
1177
+ from .prepaid_giveaway import PrepaidGiveaway
1178
+ from .prepaid_stars_giveaway import PrepaidStarsGiveaway
1179
+ from .boost import Boost
1180
+ from .my_boost import MyBoost
1181
+ from .story_fwd_header import StoryFwdHeader
1182
+ from .post_interaction_counters_message import PostInteractionCountersMessage
1183
+ from .post_interaction_counters_story import PostInteractionCountersStory
1184
+ from .public_forward_message import PublicForwardMessage
1185
+ from .public_forward_story import PublicForwardStory
1186
+ from .peer_color import PeerColor
1187
+ from .peer_color_collectible import PeerColorCollectible
1188
+ from .input_peer_color_collectible import InputPeerColorCollectible
1189
+ from .story_reaction import StoryReaction
1190
+ from .story_reaction_public_forward import StoryReactionPublicForward
1191
+ from .story_reaction_public_repost import StoryReactionPublicRepost
1192
+ from .saved_dialog import SavedDialog
1193
+ from .mono_forum_dialog import MonoForumDialog
1194
+ from .saved_reaction_tag import SavedReactionTag
1195
+ from .outbox_read_date import OutboxReadDate
1196
+ from .sms_job import SmsJob
1197
+ from .business_weekly_open import BusinessWeeklyOpen
1198
+ from .business_work_hours import BusinessWorkHours
1199
+ from .business_location import BusinessLocation
1200
+ from .input_business_recipients import InputBusinessRecipients
1201
+ from .business_recipients import BusinessRecipients
1202
+ from .business_away_message_schedule_always import BusinessAwayMessageScheduleAlways
1203
+ from .business_away_message_schedule_outside_work_hours import BusinessAwayMessageScheduleOutsideWorkHours
1204
+ from .business_away_message_schedule_custom import BusinessAwayMessageScheduleCustom
1205
+ from .input_business_greeting_message import InputBusinessGreetingMessage
1206
+ from .business_greeting_message import BusinessGreetingMessage
1207
+ from .input_business_away_message import InputBusinessAwayMessage
1208
+ from .business_away_message import BusinessAwayMessage
1209
+ from .timezone import Timezone
1210
+ from .quick_reply import QuickReply
1211
+ from .input_quick_reply_shortcut import InputQuickReplyShortcut
1212
+ from .input_quick_reply_shortcut_id import InputQuickReplyShortcutId
1213
+ from .connected_bot import ConnectedBot
1214
+ from .birthday import Birthday
1215
+ from .bot_business_connection import BotBusinessConnection
1216
+ from .input_business_intro import InputBusinessIntro
1217
+ from .business_intro import BusinessIntro
1218
+ from .input_collectible_username import InputCollectibleUsername
1219
+ from .input_collectible_phone import InputCollectiblePhone
1220
+ from .input_business_bot_recipients import InputBusinessBotRecipients
1221
+ from .business_bot_recipients import BusinessBotRecipients
1222
+ from .contact_birthday import ContactBirthday
1223
+ from .missing_invitee import MissingInvitee
1224
+ from .input_business_chat_link import InputBusinessChatLink
1225
+ from .business_chat_link import BusinessChatLink
1226
+ from .requested_peer_user import RequestedPeerUser
1227
+ from .requested_peer_chat import RequestedPeerChat
1228
+ from .requested_peer_channel import RequestedPeerChannel
1229
+ from .sponsored_message_report_option import SponsoredMessageReportOption
1230
+ from .reaction_notifications_from_contacts import ReactionNotificationsFromContacts
1231
+ from .reaction_notifications_from_all import ReactionNotificationsFromAll
1232
+ from .reactions_notify_settings import ReactionsNotifySettings
1233
+ from .available_effect import AvailableEffect
1234
+ from .fact_check import FactCheck
1235
+ from .stars_transaction_peer_unsupported import StarsTransactionPeerUnsupported
1236
+ from .stars_transaction_peer_app_store import StarsTransactionPeerAppStore
1237
+ from .stars_transaction_peer_play_market import StarsTransactionPeerPlayMarket
1238
+ from .stars_transaction_peer_premium_bot import StarsTransactionPeerPremiumBot
1239
+ from .stars_transaction_peer_fragment import StarsTransactionPeerFragment
1240
+ from .stars_transaction_peer import StarsTransactionPeer
1241
+ from .stars_transaction_peer_ads import StarsTransactionPeerAds
1242
+ from .stars_transaction_peer_api import StarsTransactionPeerAPI
1243
+ from .stars_topup_option import StarsTopupOption
1244
+ from .stars_transaction import StarsTransaction
1245
+ from .found_story import FoundStory
1246
+ from .geo_point_address import GeoPointAddress
1247
+ from .stars_revenue_status import StarsRevenueStatus
1248
+ from .input_stars_transaction import InputStarsTransaction
1249
+ from .stars_gift_option import StarsGiftOption
1250
+ from .bot_preview_media import BotPreviewMedia
1251
+ from .stars_subscription_pricing import StarsSubscriptionPricing
1252
+ from .stars_subscription import StarsSubscription
1253
+ from .message_reactor import MessageReactor
1254
+ from .stars_giveaway_option import StarsGiveawayOption
1255
+ from .stars_giveaway_winners_option import StarsGiveawayWinnersOption
1256
+ from .star_gift import StarGift
1257
+ from .star_gift_unique import StarGiftUnique
1258
+ from .message_report_option import MessageReportOption
1259
+ from .report_result_choose_option import ReportResultChooseOption
1260
+ from .report_result_add_comment import ReportResultAddComment
1261
+ from .report_result_reported import ReportResultReported
1262
+ from .bot_app_settings import BotAppSettings
1263
+ from .star_ref_program import StarRefProgram
1264
+ from .connected_bot_star_ref import ConnectedBotStarRef
1265
+ from .stars_amount import StarsAmount
1266
+ from .stars_ton_amount import StarsTonAmount
1267
+ from .bot_verifier_settings import BotVerifierSettings
1268
+ from .bot_verification import BotVerification
1269
+ from .star_gift_attribute_model import StarGiftAttributeModel
1270
+ from .star_gift_attribute_pattern import StarGiftAttributePattern
1271
+ from .star_gift_attribute_backdrop import StarGiftAttributeBackdrop
1272
+ from .star_gift_attribute_original_details import StarGiftAttributeOriginalDetails
1273
+ from .saved_star_gift import SavedStarGift
1274
+ from .input_saved_star_gift_user import InputSavedStarGiftUser
1275
+ from .input_saved_star_gift_chat import InputSavedStarGiftChat
1276
+ from .input_saved_star_gift_slug import InputSavedStarGiftSlug
1277
+ from .paid_reaction_privacy_default import PaidReactionPrivacyDefault
1278
+ from .paid_reaction_privacy_anonymous import PaidReactionPrivacyAnonymous
1279
+ from .paid_reaction_privacy_peer import PaidReactionPrivacyPeer
1280
+ from .requirement_to_contact_empty import RequirementToContactEmpty
1281
+ from .requirement_to_contact_premium import RequirementToContactPremium
1282
+ from .requirement_to_contact_paid_messages import RequirementToContactPaidMessages
1283
+ from .business_bot_rights import BusinessBotRights
1284
+ from .disallowed_gifts_settings import DisallowedGiftsSettings
1285
+ from .sponsored_peer import SponsoredPeer
1286
+ from .star_gift_attribute_id_model import StarGiftAttributeIdModel
1287
+ from .star_gift_attribute_id_pattern import StarGiftAttributeIdPattern
1288
+ from .star_gift_attribute_id_backdrop import StarGiftAttributeIdBackdrop
1289
+ from .star_gift_attribute_counter import StarGiftAttributeCounter
1290
+ from .pending_suggestion import PendingSuggestion
1291
+ from .todo_item import TodoItem
1292
+ from .todo_list import TodoList
1293
+ from .todo_completion import TodoCompletion
1294
+ from .suggested_post import SuggestedPost
1295
+ from .stars_rating import StarsRating
1296
+ from .star_gift_collection import StarGiftCollection
1297
+ from .story_album import StoryAlbum
1298
+ from .search_posts_flood import SearchPostsFlood
1299
+ from .profile_tab_posts import ProfileTabPosts
1300
+ from .profile_tab_gifts import ProfileTabGifts
1301
+ from .profile_tab_media import ProfileTabMedia
1302
+ from .profile_tab_files import ProfileTabFiles
1303
+ from .profile_tab_music import ProfileTabMusic
1304
+ from .profile_tab_voice import ProfileTabVoice
1305
+ from .profile_tab_links import ProfileTabLinks
1306
+ from .profile_tab_gifs import ProfileTabGifs
1307
+ from .input_chat_theme_empty import InputChatThemeEmpty
1308
+ from .input_chat_theme import InputChatTheme
1309
+ from .input_chat_theme_unique_gift import InputChatThemeUniqueGift
1310
+ from .star_gift_upgrade_price import StarGiftUpgradePrice
1311
+ from .group_call_message import GroupCallMessage
1312
+ from .group_call_donor import GroupCallDonor
1313
+ from .recent_story import RecentStory
1314
+ from .auction_bid_level import AuctionBidLevel
1315
+ from .star_gift_auction_state_not_modified import StarGiftAuctionStateNotModified
1316
+ from .star_gift_auction_state import StarGiftAuctionState
1317
+ from .star_gift_auction_state_finished import StarGiftAuctionStateFinished
1318
+ from .star_gift_auction_user_state import StarGiftAuctionUserState
1319
+ from .star_gift_auction_acquired_gift import StarGiftAuctionAcquiredGift
1320
+ from .star_gift_active_auction_state import StarGiftActiveAuctionState
1321
+ from .input_star_gift_auction import InputStarGiftAuction
1322
+ from .input_star_gift_auction_slug import InputStarGiftAuctionSlug
1323
+ from .passkey import Passkey
1324
+ from .input_passkey_response_register import InputPasskeyResponseRegister
1325
+ from .input_passkey_response_login import InputPasskeyResponseLogin
1326
+ from .input_passkey_credential_public_key import InputPasskeyCredentialPublicKey
1327
+ from .input_passkey_credential_firebase_pnv import InputPasskeyCredentialFirebasePNV
1328
+ from .star_gift_background import StarGiftBackground
1329
+ from .star_gift_auction_round import StarGiftAuctionRound
1330
+ from .star_gift_auction_round_extendable import StarGiftAuctionRoundExtendable
1331
+ from .star_gift_attribute_rarity import StarGiftAttributeRarity
1332
+ from .star_gift_attribute_rarity_uncommon import StarGiftAttributeRarityUncommon
1333
+ from .star_gift_attribute_rarity_rare import StarGiftAttributeRarityRare
1334
+ from .star_gift_attribute_rarity_epic import StarGiftAttributeRarityEpic
1335
+ from .star_gift_attribute_rarity_legendary import StarGiftAttributeRarityLegendary
1336
+ from .keyboard_button_style import KeyboardButtonStyle
1337
+ from .input_message_read_metric import InputMessageReadMetric
1338
+ from .input_ai_compose_tone_default import InputAiComposeToneDefault
1339
+ from .input_ai_compose_tone_id import InputAiComposeToneID
1340
+ from .input_ai_compose_tone_slug import InputAiComposeToneSlug
1341
+ from .input_ai_compose_tone_single_use import InputAiComposeToneSingleUse
1342
+ from .ai_compose_tone import AiComposeTone
1343
+ from .ai_compose_tone_default import AiComposeToneDefault
1344
+ from .ai_compose_tone_example import AiComposeToneExample
1345
+ from .join_chat_bot_result_approved import JoinChatBotResultApproved
1346
+ from .join_chat_bot_result_declined import JoinChatBotResultDeclined
1347
+ from .join_chat_bot_result_queued import JoinChatBotResultQueued
1348
+ from .join_chat_bot_result_web_view import JoinChatBotResultWebView
1349
+ from .web_domain_exception import WebDomainException
1350
+ from .input_rich_file_photo import InputRichFilePhoto
1351
+ from .input_rich_file_document import InputRichFileDocument
1352
+ from .input_rich_message import InputRichMessage
1353
+ from .input_rich_message_html import InputRichMessageHTML
1354
+ from .input_rich_message_markdown import InputRichMessageMarkdown
1355
+ from .rich_message import RichMessage
1356
+ from .community_peer import CommunityPeer
1357
+ from .community_peer_request import CommunityPeerRequest
1358
+ from .ephemeral_message import EphemeralMessage
1359
+ from .button_type_default import ButtonTypeDefault
1360
+ from .button_type_request_phone import ButtonTypeRequestPhone
1361
+ from .button_type_request_geo_location import ButtonTypeRequestGeoLocation
1362
+ from .button_type_request_poll import ButtonTypeRequestPoll
1363
+ from .button_type_request_peer import ButtonTypeRequestPeer
1364
+ from .input_button_type_request_peer import InputButtonTypeRequestPeer
1365
+ from .button_type_simple_web_view import ButtonTypeSimpleWebView
1366
+ from .inline_button_type_url import InlineButtonTypeUrl
1367
+ from .inline_button_type_url_auth import InlineButtonTypeUrlAuth
1368
+ from .input_inline_button_type_url_auth import InputInlineButtonTypeUrlAuth
1369
+ from .inline_button_type_web_view import InlineButtonTypeWebView
1370
+ from .inline_button_type_callback import InlineButtonTypeCallback
1371
+ from .inline_button_type_game import InlineButtonTypeGame
1372
+ from .inline_button_type_buy import InlineButtonTypeBuy
1373
+ from .inline_button_type_switch_inline import InlineButtonTypeSwitchInline
1374
+ from .inline_button_type_user_profile import InlineButtonTypeUserProfile
1375
+ from .input_inline_button_type_user_profile import InputInlineButtonTypeUserProfile
1376
+ from .inline_button_type_copy import InlineButtonTypeCopy
1377
+ from .inline_button_type_disabled import InlineButtonTypeDisabled
1378
+ from .keyboard_inline_button import KeyboardInlineButton
1379
+ from .keyboard_inline_button_row import KeyboardInlineButtonRow
1380
+ from .rich_button_style import RichButtonStyle
1381
+ from .page_button import PageButton
1382
+ from . import help, storage, auth, contacts, messages, updates, photos, upload, account, channels, payments, phone, stats, stickers, users, chatlists, bots, stories, premium, smsjobs, fragment, aicompose, communities, ephemeral