PyroAsync 2.2.11__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 (3223) hide show
  1. pyroasync-2.2.11.dist-info/METADATA +118 -0
  2. pyroasync-2.2.11.dist-info/RECORD +3223 -0
  3. pyroasync-2.2.11.dist-info/WHEEL +5 -0
  4. pyroasync-2.2.11.dist-info/licenses/COPYING +674 -0
  5. pyroasync-2.2.11.dist-info/licenses/COPYING.lesser +165 -0
  6. pyroasync-2.2.11.dist-info/licenses/NOTICE +17 -0
  7. pyroasync-2.2.11.dist-info/top_level.txt +1 -0
  8. pyrogram/__init__.py +44 -0
  9. pyrogram/client.py +1045 -0
  10. pyrogram/connection/__init__.py +19 -0
  11. pyrogram/connection/connection.py +87 -0
  12. pyrogram/connection/transport/__init__.py +19 -0
  13. pyrogram/connection/transport/tcp/__init__.py +24 -0
  14. pyrogram/connection/transport/tcp/tcp.py +125 -0
  15. pyrogram/connection/transport/tcp/tcp_abridged.py +57 -0
  16. pyrogram/connection/transport/tcp/tcp_abridged_o.py +86 -0
  17. pyrogram/connection/transport/tcp/tcp_full.py +64 -0
  18. pyrogram/connection/transport/tcp/tcp_intermediate.py +45 -0
  19. pyrogram/connection/transport/tcp/tcp_intermediate_o.py +79 -0
  20. pyrogram/crypto/__init__.py +17 -0
  21. pyrogram/crypto/aes.py +130 -0
  22. pyrogram/crypto/mtproto.py +127 -0
  23. pyrogram/crypto/prime.py +82 -0
  24. pyrogram/crypto/rsa.py +259 -0
  25. pyrogram/dispatcher.py +259 -0
  26. pyrogram/emoji.py +4019 -0
  27. pyrogram/enums/__init__.py +51 -0
  28. pyrogram/enums/auto_name.py +27 -0
  29. pyrogram/enums/chat_action.py +72 -0
  30. pyrogram/enums/chat_event_action.py +136 -0
  31. pyrogram/enums/chat_member_status.py +43 -0
  32. pyrogram/enums/chat_members_filter.py +42 -0
  33. pyrogram/enums/chat_type.py +40 -0
  34. pyrogram/enums/message_entity_type.py +84 -0
  35. pyrogram/enums/message_media_type.py +70 -0
  36. pyrogram/enums/message_service_type.py +100 -0
  37. pyrogram/enums/messages_filter.py +75 -0
  38. pyrogram/enums/next_code_type.py +39 -0
  39. pyrogram/enums/parse_mode.py +37 -0
  40. pyrogram/enums/poll_type.py +31 -0
  41. pyrogram/enums/sent_code_type.py +45 -0
  42. pyrogram/enums/stories_privacy.py +40 -0
  43. pyrogram/enums/user_status.py +43 -0
  44. pyrogram/errors/__init__.py +65 -0
  45. pyrogram/errors/exceptions/__init__.py +26 -0
  46. pyrogram/errors/exceptions/all.py +537 -0
  47. pyrogram/errors/exceptions/bad_request_400.py +2632 -0
  48. pyrogram/errors/exceptions/flood_420.py +63 -0
  49. pyrogram/errors/exceptions/forbidden_403.py +308 -0
  50. pyrogram/errors/exceptions/internal_server_error_500.py +343 -0
  51. pyrogram/errors/exceptions/not_acceptable_406.py +112 -0
  52. pyrogram/errors/exceptions/see_other_303.py +63 -0
  53. pyrogram/errors/exceptions/service_unavailable_503.py +49 -0
  54. pyrogram/errors/exceptions/unauthorized_401.py +91 -0
  55. pyrogram/errors/rpc_error.py +103 -0
  56. pyrogram/file_id.py +481 -0
  57. pyrogram/filters.py +929 -0
  58. pyrogram/handlers/__init__.py +30 -0
  59. pyrogram/handlers/callback_query_handler.py +49 -0
  60. pyrogram/handlers/chat_join_request_handler.py +49 -0
  61. pyrogram/handlers/chat_member_updated_handler.py +49 -0
  62. pyrogram/handlers/chosen_inline_result_handler.py +50 -0
  63. pyrogram/handlers/deleted_messages_handler.py +61 -0
  64. pyrogram/handlers/disconnect_handler.py +43 -0
  65. pyrogram/handlers/edited_message_handler.py +49 -0
  66. pyrogram/handlers/handler.py +43 -0
  67. pyrogram/handlers/inline_query_handler.py +49 -0
  68. pyrogram/handlers/message_handler.py +49 -0
  69. pyrogram/handlers/poll_handler.py +50 -0
  70. pyrogram/handlers/raw_update_handler.py +67 -0
  71. pyrogram/handlers/user_status_handler.py +47 -0
  72. pyrogram/methods/__init__.py +47 -0
  73. pyrogram/methods/advanced/__init__.py +29 -0
  74. pyrogram/methods/advanced/invoke.py +89 -0
  75. pyrogram/methods/advanced/resolve_peer.py +125 -0
  76. pyrogram/methods/advanced/save_file.py +230 -0
  77. pyrogram/methods/auth/__init__.py +53 -0
  78. pyrogram/methods/auth/accept_terms_of_service.py +44 -0
  79. pyrogram/methods/auth/check_password.py +60 -0
  80. pyrogram/methods/auth/connect.py +51 -0
  81. pyrogram/methods/auth/disconnect.py +40 -0
  82. pyrogram/methods/auth/get_password_hint.py +38 -0
  83. pyrogram/methods/auth/initialize.py +49 -0
  84. pyrogram/methods/auth/log_out.py +51 -0
  85. pyrogram/methods/auth/recover_password.py +57 -0
  86. pyrogram/methods/auth/resend_code.py +64 -0
  87. pyrogram/methods/auth/send_code.py +79 -0
  88. pyrogram/methods/auth/send_recovery_code.py +43 -0
  89. pyrogram/methods/auth/sign_in.py +80 -0
  90. pyrogram/methods/auth/sign_in_bot.py +79 -0
  91. pyrogram/methods/auth/sign_up.py +73 -0
  92. pyrogram/methods/auth/terminate.py +54 -0
  93. pyrogram/methods/bots/__init__.py +59 -0
  94. pyrogram/methods/bots/answer_callback_query.py +81 -0
  95. pyrogram/methods/bots/answer_inline_query.py +112 -0
  96. pyrogram/methods/bots/answer_web_app_query.py +53 -0
  97. pyrogram/methods/bots/delete_bot_commands.py +62 -0
  98. pyrogram/methods/bots/get_bot_commands.py +67 -0
  99. pyrogram/methods/bots/get_bot_default_privileges.py +59 -0
  100. pyrogram/methods/bots/get_bot_info.py +49 -0
  101. pyrogram/methods/bots/get_chat_menu_button.py +66 -0
  102. pyrogram/methods/bots/get_game_high_scores.py +72 -0
  103. pyrogram/methods/bots/get_inline_bot_results.py +92 -0
  104. pyrogram/methods/bots/request_callback_answer.py +77 -0
  105. pyrogram/methods/bots/send_game.py +109 -0
  106. pyrogram/methods/bots/send_inline_bot_result.py +85 -0
  107. pyrogram/methods/bots/set_bot_commands.py +73 -0
  108. pyrogram/methods/bots/set_bot_default_privileges.py +81 -0
  109. pyrogram/methods/bots/set_bot_info.py +61 -0
  110. pyrogram/methods/bots/set_chat_menu_button.py +56 -0
  111. pyrogram/methods/bots/set_game_score.py +100 -0
  112. pyrogram/methods/chats/__init__.py +125 -0
  113. pyrogram/methods/chats/add_chat_members.py +90 -0
  114. pyrogram/methods/chats/archive_chats.py +71 -0
  115. pyrogram/methods/chats/ban_chat_member.py +111 -0
  116. pyrogram/methods/chats/close_forum_topic.py +57 -0
  117. pyrogram/methods/chats/close_general_topic.py +53 -0
  118. pyrogram/methods/chats/create_channel.py +56 -0
  119. pyrogram/methods/chats/create_forum_topic.py +68 -0
  120. pyrogram/methods/chats/create_group.py +67 -0
  121. pyrogram/methods/chats/create_supergroup.py +60 -0
  122. pyrogram/methods/chats/delete_channel.py +52 -0
  123. pyrogram/methods/chats/delete_chat_photo.py +70 -0
  124. pyrogram/methods/chats/delete_forum_topic.py +60 -0
  125. pyrogram/methods/chats/delete_supergroup.py +52 -0
  126. pyrogram/methods/chats/delete_user_history.py +55 -0
  127. pyrogram/methods/chats/edit_forum_topic.py +66 -0
  128. pyrogram/methods/chats/edit_general_topic.py +57 -0
  129. pyrogram/methods/chats/get_chat.py +87 -0
  130. pyrogram/methods/chats/get_chat_event_log.py +109 -0
  131. pyrogram/methods/chats/get_chat_member.py +92 -0
  132. pyrogram/methods/chats/get_chat_members.py +158 -0
  133. pyrogram/methods/chats/get_chat_members_count.py +69 -0
  134. pyrogram/methods/chats/get_chat_online_count.py +51 -0
  135. pyrogram/methods/chats/get_dialogs.py +104 -0
  136. pyrogram/methods/chats/get_dialogs_count.py +63 -0
  137. pyrogram/methods/chats/get_forum_topics.py +68 -0
  138. pyrogram/methods/chats/get_forum_topics_by_id.py +90 -0
  139. pyrogram/methods/chats/get_nearby_chats.py +78 -0
  140. pyrogram/methods/chats/get_send_as_chats.py +65 -0
  141. pyrogram/methods/chats/hide_general_topic.py +53 -0
  142. pyrogram/methods/chats/join_chat.py +74 -0
  143. pyrogram/methods/chats/leave_chat.py +77 -0
  144. pyrogram/methods/chats/mark_chat_unread.py +47 -0
  145. pyrogram/methods/chats/pin_chat_message.py +81 -0
  146. pyrogram/methods/chats/promote_chat_member.py +102 -0
  147. pyrogram/methods/chats/reopen_forum_topic.py +57 -0
  148. pyrogram/methods/chats/reopen_general_topic.py +53 -0
  149. pyrogram/methods/chats/restrict_chat_member.py +100 -0
  150. pyrogram/methods/chats/set_administrator_title.py +85 -0
  151. pyrogram/methods/chats/set_chat_description.py +66 -0
  152. pyrogram/methods/chats/set_chat_permissions.py +88 -0
  153. pyrogram/methods/chats/set_chat_photo.py +121 -0
  154. pyrogram/methods/chats/set_chat_protected_content.py +53 -0
  155. pyrogram/methods/chats/set_chat_title.py +78 -0
  156. pyrogram/methods/chats/set_chat_username.py +68 -0
  157. pyrogram/methods/chats/set_send_as_chat.py +57 -0
  158. pyrogram/methods/chats/set_slow_mode.py +63 -0
  159. pyrogram/methods/chats/unarchive_chats.py +71 -0
  160. pyrogram/methods/chats/unban_chat_member.py +64 -0
  161. pyrogram/methods/chats/unhide_general_topic.py +53 -0
  162. pyrogram/methods/chats/unpin_all_chat_messages.py +55 -0
  163. pyrogram/methods/chats/unpin_chat_message.py +61 -0
  164. pyrogram/methods/contacts/__init__.py +33 -0
  165. pyrogram/methods/contacts/add_contact.py +78 -0
  166. pyrogram/methods/contacts/delete_contacts.py +66 -0
  167. pyrogram/methods/contacts/get_contacts.py +47 -0
  168. pyrogram/methods/contacts/get_contacts_count.py +41 -0
  169. pyrogram/methods/contacts/import_contacts.py +58 -0
  170. pyrogram/methods/decorators/__init__.py +47 -0
  171. pyrogram/methods/decorators/on_callback_query.py +61 -0
  172. pyrogram/methods/decorators/on_chat_join_request.py +60 -0
  173. pyrogram/methods/decorators/on_chat_member_updated.py +60 -0
  174. pyrogram/methods/decorators/on_chosen_inline_result.py +61 -0
  175. pyrogram/methods/decorators/on_deleted_messages.py +61 -0
  176. pyrogram/methods/decorators/on_disconnect.py +43 -0
  177. pyrogram/methods/decorators/on_edited_message.py +61 -0
  178. pyrogram/methods/decorators/on_inline_query.py +61 -0
  179. pyrogram/methods/decorators/on_message.py +61 -0
  180. pyrogram/methods/decorators/on_poll.py +61 -0
  181. pyrogram/methods/decorators/on_raw_update.py +55 -0
  182. pyrogram/methods/decorators/on_user_status.py +59 -0
  183. pyrogram/methods/invite_links/__init__.py +58 -0
  184. pyrogram/methods/invite_links/approve_all_chat_join_requests.py +55 -0
  185. pyrogram/methods/invite_links/approve_chat_join_request.py +57 -0
  186. pyrogram/methods/invite_links/create_chat_invite_link.py +87 -0
  187. pyrogram/methods/invite_links/decline_all_chat_join_requests.py +55 -0
  188. pyrogram/methods/invite_links/decline_chat_join_request.py +57 -0
  189. pyrogram/methods/invite_links/delete_chat_admin_invite_links.py +54 -0
  190. pyrogram/methods/invite_links/delete_chat_invite_link.py +52 -0
  191. pyrogram/methods/invite_links/edit_chat_invite_link.py +92 -0
  192. pyrogram/methods/invite_links/export_chat_invite_link.py +65 -0
  193. pyrogram/methods/invite_links/get_chat_admin_invite_links.py +100 -0
  194. pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py +62 -0
  195. pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py +56 -0
  196. pyrogram/methods/invite_links/get_chat_invite_link.py +56 -0
  197. pyrogram/methods/invite_links/get_chat_invite_link_joiners.py +87 -0
  198. pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py +56 -0
  199. pyrogram/methods/invite_links/get_chat_join_requests.py +88 -0
  200. pyrogram/methods/invite_links/revoke_chat_invite_link.py +68 -0
  201. pyrogram/methods/messages/__init__.py +119 -0
  202. pyrogram/methods/messages/copy_media_group.py +149 -0
  203. pyrogram/methods/messages/copy_message.py +127 -0
  204. pyrogram/methods/messages/delete_messages.py +84 -0
  205. pyrogram/methods/messages/download_media.py +187 -0
  206. pyrogram/methods/messages/edit_inline_caption.py +65 -0
  207. pyrogram/methods/messages/edit_inline_media.py +244 -0
  208. pyrogram/methods/messages/edit_inline_reply_markup.py +69 -0
  209. pyrogram/methods/messages/edit_inline_text.py +88 -0
  210. pyrogram/methods/messages/edit_message_caption.py +76 -0
  211. pyrogram/methods/messages/edit_message_media.py +287 -0
  212. pyrogram/methods/messages/edit_message_reply_markup.py +77 -0
  213. pyrogram/methods/messages/edit_message_text.py +98 -0
  214. pyrogram/methods/messages/forward_messages.py +121 -0
  215. pyrogram/methods/messages/get_chat_history.py +133 -0
  216. pyrogram/methods/messages/get_chat_history_count.py +72 -0
  217. pyrogram/methods/messages/get_custom_emoji_stickers.py +55 -0
  218. pyrogram/methods/messages/get_discussion_message.py +65 -0
  219. pyrogram/methods/messages/get_discussion_replies.py +86 -0
  220. pyrogram/methods/messages/get_discussion_replies_count.py +62 -0
  221. pyrogram/methods/messages/get_media_group.py +73 -0
  222. pyrogram/methods/messages/get_messages.py +119 -0
  223. pyrogram/methods/messages/inline_session.py +64 -0
  224. pyrogram/methods/messages/read_chat_history.py +73 -0
  225. pyrogram/methods/messages/retract_vote.py +61 -0
  226. pyrogram/methods/messages/search_global.py +117 -0
  227. pyrogram/methods/messages/search_global_count.py +62 -0
  228. pyrogram/methods/messages/search_messages.py +151 -0
  229. pyrogram/methods/messages/search_messages_count.py +84 -0
  230. pyrogram/methods/messages/send_animation.py +288 -0
  231. pyrogram/methods/messages/send_audio.py +258 -0
  232. pyrogram/methods/messages/send_cached_media.py +147 -0
  233. pyrogram/methods/messages/send_chat_action.py +86 -0
  234. pyrogram/methods/messages/send_contact.py +131 -0
  235. pyrogram/methods/messages/send_dice.py +132 -0
  236. pyrogram/methods/messages/send_document.py +236 -0
  237. pyrogram/methods/messages/send_location.py +123 -0
  238. pyrogram/methods/messages/send_media_group.py +445 -0
  239. pyrogram/methods/messages/send_message.py +193 -0
  240. pyrogram/methods/messages/send_photo.py +221 -0
  241. pyrogram/methods/messages/send_poll.py +190 -0
  242. pyrogram/methods/messages/send_reaction.py +73 -0
  243. pyrogram/methods/messages/send_sticker.py +195 -0
  244. pyrogram/methods/messages/send_venue.py +147 -0
  245. pyrogram/methods/messages/send_video.py +331 -0
  246. pyrogram/methods/messages/send_video_note.py +219 -0
  247. pyrogram/methods/messages/send_voice.py +223 -0
  248. pyrogram/methods/messages/stop_poll.py +77 -0
  249. pyrogram/methods/messages/stream_media.py +106 -0
  250. pyrogram/methods/messages/vote_poll.py +69 -0
  251. pyrogram/methods/password/__init__.py +29 -0
  252. pyrogram/methods/password/change_cloud_password.py +82 -0
  253. pyrogram/methods/password/enable_cloud_password.py +88 -0
  254. pyrogram/methods/password/remove_cloud_password.py +64 -0
  255. pyrogram/methods/stickers/__init__.py +28 -0
  256. pyrogram/methods/stickers/add_sticker_to_set.py +85 -0
  257. pyrogram/methods/stickers/create_sticker_set.py +122 -0
  258. pyrogram/methods/stickers/get_sticker_set.py +54 -0
  259. pyrogram/methods/users/__init__.py +59 -0
  260. pyrogram/methods/users/block_user.py +54 -0
  261. pyrogram/methods/users/delete_profile_photos.py +63 -0
  262. pyrogram/methods/users/delete_stories.py +65 -0
  263. pyrogram/methods/users/edit_story.py +240 -0
  264. pyrogram/methods/users/export_story_link.py +66 -0
  265. pyrogram/methods/users/get_chat_photos.py +135 -0
  266. pyrogram/methods/users/get_chat_photos_count.py +74 -0
  267. pyrogram/methods/users/get_common_chats.py +67 -0
  268. pyrogram/methods/users/get_default_emoji_statuses.py +47 -0
  269. pyrogram/methods/users/get_me.py +49 -0
  270. pyrogram/methods/users/get_stories.py +76 -0
  271. pyrogram/methods/users/get_users.py +71 -0
  272. pyrogram/methods/users/send_story.py +256 -0
  273. pyrogram/methods/users/set_emoji_status.py +58 -0
  274. pyrogram/methods/users/set_profile_photo.py +75 -0
  275. pyrogram/methods/users/set_username.py +57 -0
  276. pyrogram/methods/users/unblock_user.py +54 -0
  277. pyrogram/methods/users/update_profile.py +72 -0
  278. pyrogram/methods/utilities/__init__.py +41 -0
  279. pyrogram/methods/utilities/add_handler.py +67 -0
  280. pyrogram/methods/utilities/compose.py +78 -0
  281. pyrogram/methods/utilities/export_session_string.py +40 -0
  282. pyrogram/methods/utilities/idle.py +87 -0
  283. pyrogram/methods/utilities/remove_handler.py +63 -0
  284. pyrogram/methods/utilities/restart.py +72 -0
  285. pyrogram/methods/utilities/run.py +86 -0
  286. pyrogram/methods/utilities/run_sync.py +43 -0
  287. pyrogram/methods/utilities/start.py +76 -0
  288. pyrogram/methods/utilities/stop.py +69 -0
  289. pyrogram/methods/utilities/stop_transmission.py +44 -0
  290. pyrogram/mime_types.py +1881 -0
  291. pyrogram/parser/__init__.py +19 -0
  292. pyrogram/parser/html.py +243 -0
  293. pyrogram/parser/markdown.py +173 -0
  294. pyrogram/parser/parser.py +61 -0
  295. pyrogram/parser/utils.py +41 -0
  296. pyrogram/py.typed +0 -0
  297. pyrogram/raw/__init__.py +26 -0
  298. pyrogram/raw/all.py +2172 -0
  299. pyrogram/raw/base/__init__.py +388 -0
  300. pyrogram/raw/base/access_point_rule.py +53 -0
  301. pyrogram/raw/base/account/__init__.py +47 -0
  302. pyrogram/raw/base/account/authorization_form.py +63 -0
  303. pyrogram/raw/base/account/authorizations.py +63 -0
  304. pyrogram/raw/base/account/auto_download_settings.py +63 -0
  305. pyrogram/raw/base/account/auto_save_settings.py +63 -0
  306. pyrogram/raw/base/account/business_chat_links.py +63 -0
  307. pyrogram/raw/base/account/connected_bots.py +63 -0
  308. pyrogram/raw/base/account/content_settings.py +63 -0
  309. pyrogram/raw/base/account/email_verified.py +64 -0
  310. pyrogram/raw/base/account/emoji_statuses.py +67 -0
  311. pyrogram/raw/base/account/password.py +63 -0
  312. pyrogram/raw/base/account/password_input_settings.py +53 -0
  313. pyrogram/raw/base/account/password_settings.py +63 -0
  314. pyrogram/raw/base/account/privacy_rules.py +64 -0
  315. pyrogram/raw/base/account/reset_password_result.py +65 -0
  316. pyrogram/raw/base/account/resolved_business_chat_links.py +63 -0
  317. pyrogram/raw/base/account/saved_ringtone.py +64 -0
  318. pyrogram/raw/base/account/saved_ringtones.py +64 -0
  319. pyrogram/raw/base/account/sent_email_code.py +63 -0
  320. pyrogram/raw/base/account/takeout.py +63 -0
  321. pyrogram/raw/base/account/themes.py +65 -0
  322. pyrogram/raw/base/account/tmp_password.py +63 -0
  323. pyrogram/raw/base/account/wall_papers.py +64 -0
  324. pyrogram/raw/base/account/web_authorizations.py +63 -0
  325. pyrogram/raw/base/account_days_ttl.py +63 -0
  326. pyrogram/raw/base/attach_menu_bot.py +53 -0
  327. pyrogram/raw/base/attach_menu_bot_icon.py +53 -0
  328. pyrogram/raw/base/attach_menu_bot_icon_color.py +53 -0
  329. pyrogram/raw/base/attach_menu_bots.py +64 -0
  330. pyrogram/raw/base/attach_menu_bots_bot.py +63 -0
  331. pyrogram/raw/base/attach_menu_peer_type.py +57 -0
  332. pyrogram/raw/base/auth/__init__.py +32 -0
  333. pyrogram/raw/base/auth/authorization.py +70 -0
  334. pyrogram/raw/base/auth/code_type.py +57 -0
  335. pyrogram/raw/base/auth/exported_authorization.py +63 -0
  336. pyrogram/raw/base/auth/logged_out.py +63 -0
  337. pyrogram/raw/base/auth/login_token.py +66 -0
  338. pyrogram/raw/base/auth/password_recovery.py +63 -0
  339. pyrogram/raw/base/auth/sent_code.py +69 -0
  340. pyrogram/raw/base/auth/sent_code_type.py +63 -0
  341. pyrogram/raw/base/authorization.py +63 -0
  342. pyrogram/raw/base/auto_download_settings.py +53 -0
  343. pyrogram/raw/base/auto_save_exception.py +53 -0
  344. pyrogram/raw/base/auto_save_settings.py +53 -0
  345. pyrogram/raw/base/available_effect.py +53 -0
  346. pyrogram/raw/base/available_reaction.py +53 -0
  347. pyrogram/raw/base/bad_msg_notification.py +54 -0
  348. pyrogram/raw/base/bank_card_open_url.py +53 -0
  349. pyrogram/raw/base/base_theme.py +57 -0
  350. pyrogram/raw/base/bind_auth_key_inner.py +53 -0
  351. pyrogram/raw/base/birthday.py +53 -0
  352. pyrogram/raw/base/boost.py +53 -0
  353. pyrogram/raw/base/bot_app.py +54 -0
  354. pyrogram/raw/base/bot_app_settings.py +53 -0
  355. pyrogram/raw/base/bot_business_connection.py +53 -0
  356. pyrogram/raw/base/bot_command.py +63 -0
  357. pyrogram/raw/base/bot_command_scope.py +59 -0
  358. pyrogram/raw/base/bot_info.py +53 -0
  359. pyrogram/raw/base/bot_inline_message.py +59 -0
  360. pyrogram/raw/base/bot_inline_result.py +54 -0
  361. pyrogram/raw/base/bot_menu_button.py +65 -0
  362. pyrogram/raw/base/bot_preview_media.py +65 -0
  363. pyrogram/raw/base/bot_verification.py +53 -0
  364. pyrogram/raw/base/bot_verifier_settings.py +53 -0
  365. pyrogram/raw/base/bots/__init__.py +27 -0
  366. pyrogram/raw/base/bots/bot_info.py +63 -0
  367. pyrogram/raw/base/bots/popular_app_bots.py +63 -0
  368. pyrogram/raw/base/bots/preview_info.py +63 -0
  369. pyrogram/raw/base/broadcast_revenue_balances.py +53 -0
  370. pyrogram/raw/base/broadcast_revenue_transaction.py +55 -0
  371. pyrogram/raw/base/business_away_message.py +53 -0
  372. pyrogram/raw/base/business_away_message_schedule.py +55 -0
  373. pyrogram/raw/base/business_bot_recipients.py +53 -0
  374. pyrogram/raw/base/business_chat_link.py +64 -0
  375. pyrogram/raw/base/business_greeting_message.py +53 -0
  376. pyrogram/raw/base/business_intro.py +53 -0
  377. pyrogram/raw/base/business_location.py +53 -0
  378. pyrogram/raw/base/business_recipients.py +53 -0
  379. pyrogram/raw/base/business_weekly_open.py +53 -0
  380. pyrogram/raw/base/business_work_hours.py +53 -0
  381. pyrogram/raw/base/cdn_config.py +63 -0
  382. pyrogram/raw/base/cdn_public_key.py +53 -0
  383. pyrogram/raw/base/channel_admin_log_event.py +53 -0
  384. pyrogram/raw/base/channel_admin_log_event_action.py +102 -0
  385. pyrogram/raw/base/channel_admin_log_events_filter.py +53 -0
  386. pyrogram/raw/base/channel_location.py +54 -0
  387. pyrogram/raw/base/channel_messages_filter.py +54 -0
  388. pyrogram/raw/base/channel_participant.py +58 -0
  389. pyrogram/raw/base/channel_participants_filter.py +60 -0
  390. pyrogram/raw/base/channels/__init__.py +29 -0
  391. pyrogram/raw/base/channels/admin_log_results.py +63 -0
  392. pyrogram/raw/base/channels/channel_participant.py +63 -0
  393. pyrogram/raw/base/channels/channel_participants.py +64 -0
  394. pyrogram/raw/base/channels/send_as_peers.py +63 -0
  395. pyrogram/raw/base/channels/sponsored_message_report_result.py +65 -0
  396. pyrogram/raw/base/chat.py +57 -0
  397. pyrogram/raw/base/chat_admin_rights.py +53 -0
  398. pyrogram/raw/base/chat_admin_with_invites.py +53 -0
  399. pyrogram/raw/base/chat_banned_rights.py +53 -0
  400. pyrogram/raw/base/chat_full.py +54 -0
  401. pyrogram/raw/base/chat_invite.py +65 -0
  402. pyrogram/raw/base/chat_invite_importer.py +53 -0
  403. pyrogram/raw/base/chat_onlines.py +63 -0
  404. pyrogram/raw/base/chat_participant.py +55 -0
  405. pyrogram/raw/base/chat_participants.py +54 -0
  406. pyrogram/raw/base/chat_photo.py +54 -0
  407. pyrogram/raw/base/chat_reactions.py +55 -0
  408. pyrogram/raw/base/chatlists/__init__.py +28 -0
  409. pyrogram/raw/base/chatlists/chatlist_invite.py +64 -0
  410. pyrogram/raw/base/chatlists/chatlist_updates.py +63 -0
  411. pyrogram/raw/base/chatlists/exported_chatlist_invite.py +63 -0
  412. pyrogram/raw/base/chatlists/exported_invites.py +63 -0
  413. pyrogram/raw/base/client_dh_inner_data.py +53 -0
  414. pyrogram/raw/base/code_settings.py +53 -0
  415. pyrogram/raw/base/config.py +63 -0
  416. pyrogram/raw/base/connected_bot.py +53 -0
  417. pyrogram/raw/base/connected_bot_star_ref.py +53 -0
  418. pyrogram/raw/base/contact.py +53 -0
  419. pyrogram/raw/base/contact_birthday.py +53 -0
  420. pyrogram/raw/base/contact_status.py +63 -0
  421. pyrogram/raw/base/contacts/__init__.py +31 -0
  422. pyrogram/raw/base/contacts/blocked.py +64 -0
  423. pyrogram/raw/base/contacts/contact_birthdays.py +63 -0
  424. pyrogram/raw/base/contacts/contacts.py +64 -0
  425. pyrogram/raw/base/contacts/found.py +63 -0
  426. pyrogram/raw/base/contacts/imported_contacts.py +63 -0
  427. pyrogram/raw/base/contacts/resolved_peer.py +64 -0
  428. pyrogram/raw/base/contacts/top_peers.py +65 -0
  429. pyrogram/raw/base/data_json.py +65 -0
  430. pyrogram/raw/base/dc_option.py +53 -0
  431. pyrogram/raw/base/default_history_ttl.py +63 -0
  432. pyrogram/raw/base/destroy_auth_key_res.py +65 -0
  433. pyrogram/raw/base/destroy_session_res.py +64 -0
  434. pyrogram/raw/base/dialog.py +54 -0
  435. pyrogram/raw/base/dialog_filter.py +55 -0
  436. pyrogram/raw/base/dialog_filter_suggested.py +63 -0
  437. pyrogram/raw/base/dialog_peer.py +64 -0
  438. pyrogram/raw/base/document.py +67 -0
  439. pyrogram/raw/base/document_attribute.py +60 -0
  440. pyrogram/raw/base/draft_message.py +54 -0
  441. pyrogram/raw/base/email_verification.py +55 -0
  442. pyrogram/raw/base/email_verify_purpose.py +55 -0
  443. pyrogram/raw/base/emoji_group.py +55 -0
  444. pyrogram/raw/base/emoji_keyword.py +54 -0
  445. pyrogram/raw/base/emoji_keywords_difference.py +64 -0
  446. pyrogram/raw/base/emoji_language.py +63 -0
  447. pyrogram/raw/base/emoji_list.py +68 -0
  448. pyrogram/raw/base/emoji_status.py +56 -0
  449. pyrogram/raw/base/emoji_url.py +63 -0
  450. pyrogram/raw/base/encrypted_chat.py +68 -0
  451. pyrogram/raw/base/encrypted_file.py +64 -0
  452. pyrogram/raw/base/encrypted_message.py +54 -0
  453. pyrogram/raw/base/exported_chat_invite.py +64 -0
  454. pyrogram/raw/base/exported_chatlist_invite.py +63 -0
  455. pyrogram/raw/base/exported_contact_token.py +63 -0
  456. pyrogram/raw/base/exported_message_link.py +63 -0
  457. pyrogram/raw/base/exported_story_link.py +63 -0
  458. pyrogram/raw/base/fact_check.py +63 -0
  459. pyrogram/raw/base/file_hash.py +65 -0
  460. pyrogram/raw/base/folder.py +53 -0
  461. pyrogram/raw/base/folder_peer.py +53 -0
  462. pyrogram/raw/base/forum_topic.py +54 -0
  463. pyrogram/raw/base/found_story.py +53 -0
  464. pyrogram/raw/base/fragment/__init__.py +25 -0
  465. pyrogram/raw/base/fragment/collectible_info.py +63 -0
  466. pyrogram/raw/base/game.py +53 -0
  467. pyrogram/raw/base/geo_point.py +54 -0
  468. pyrogram/raw/base/geo_point_address.py +53 -0
  469. pyrogram/raw/base/global_privacy_settings.py +64 -0
  470. pyrogram/raw/base/group_call.py +54 -0
  471. pyrogram/raw/base/group_call_participant.py +53 -0
  472. pyrogram/raw/base/group_call_participant_video.py +53 -0
  473. pyrogram/raw/base/group_call_participant_video_source_group.py +53 -0
  474. pyrogram/raw/base/group_call_stream_channel.py +53 -0
  475. pyrogram/raw/base/help/__init__.py +45 -0
  476. pyrogram/raw/base/help/app_config.py +64 -0
  477. pyrogram/raw/base/help/app_update.py +64 -0
  478. pyrogram/raw/base/help/config_simple.py +53 -0
  479. pyrogram/raw/base/help/countries_list.py +64 -0
  480. pyrogram/raw/base/help/country.py +53 -0
  481. pyrogram/raw/base/help/country_code.py +53 -0
  482. pyrogram/raw/base/help/deep_link_info.py +64 -0
  483. pyrogram/raw/base/help/invite_text.py +63 -0
  484. pyrogram/raw/base/help/passport_config.py +64 -0
  485. pyrogram/raw/base/help/peer_color_option.py +53 -0
  486. pyrogram/raw/base/help/peer_color_set.py +54 -0
  487. pyrogram/raw/base/help/peer_colors.py +65 -0
  488. pyrogram/raw/base/help/premium_promo.py +63 -0
  489. pyrogram/raw/base/help/promo_data.py +64 -0
  490. pyrogram/raw/base/help/recent_me_urls.py +63 -0
  491. pyrogram/raw/base/help/support.py +63 -0
  492. pyrogram/raw/base/help/support_name.py +63 -0
  493. pyrogram/raw/base/help/terms_of_service.py +53 -0
  494. pyrogram/raw/base/help/terms_of_service_update.py +64 -0
  495. pyrogram/raw/base/help/timezones_list.py +64 -0
  496. pyrogram/raw/base/help/user_info.py +65 -0
  497. pyrogram/raw/base/high_score.py +53 -0
  498. pyrogram/raw/base/http_wait.py +53 -0
  499. pyrogram/raw/base/imported_contact.py +53 -0
  500. pyrogram/raw/base/inline_bot_switch_pm.py +53 -0
  501. pyrogram/raw/base/inline_bot_web_view.py +53 -0
  502. pyrogram/raw/base/inline_query_peer_type.py +58 -0
  503. pyrogram/raw/base/input_app_event.py +53 -0
  504. pyrogram/raw/base/input_bot_app.py +54 -0
  505. pyrogram/raw/base/input_bot_inline_message.py +60 -0
  506. pyrogram/raw/base/input_bot_inline_message_id.py +54 -0
  507. pyrogram/raw/base/input_bot_inline_result.py +56 -0
  508. pyrogram/raw/base/input_business_away_message.py +53 -0
  509. pyrogram/raw/base/input_business_bot_recipients.py +53 -0
  510. pyrogram/raw/base/input_business_chat_link.py +53 -0
  511. pyrogram/raw/base/input_business_greeting_message.py +53 -0
  512. pyrogram/raw/base/input_business_intro.py +53 -0
  513. pyrogram/raw/base/input_business_recipients.py +53 -0
  514. pyrogram/raw/base/input_channel.py +55 -0
  515. pyrogram/raw/base/input_chat_photo.py +55 -0
  516. pyrogram/raw/base/input_chatlist.py +53 -0
  517. pyrogram/raw/base/input_check_password_srp.py +54 -0
  518. pyrogram/raw/base/input_client_proxy.py +53 -0
  519. pyrogram/raw/base/input_collectible.py +54 -0
  520. pyrogram/raw/base/input_contact.py +53 -0
  521. pyrogram/raw/base/input_dialog_peer.py +54 -0
  522. pyrogram/raw/base/input_document.py +54 -0
  523. pyrogram/raw/base/input_encrypted_chat.py +53 -0
  524. pyrogram/raw/base/input_encrypted_file.py +56 -0
  525. pyrogram/raw/base/input_file.py +55 -0
  526. pyrogram/raw/base/input_file_location.py +62 -0
  527. pyrogram/raw/base/input_folder_peer.py +53 -0
  528. pyrogram/raw/base/input_game.py +54 -0
  529. pyrogram/raw/base/input_geo_point.py +54 -0
  530. pyrogram/raw/base/input_group_call.py +53 -0
  531. pyrogram/raw/base/input_invoice.py +60 -0
  532. pyrogram/raw/base/input_media.py +70 -0
  533. pyrogram/raw/base/input_message.py +56 -0
  534. pyrogram/raw/base/input_notify_peer.py +57 -0
  535. pyrogram/raw/base/input_payment_credentials.py +56 -0
  536. pyrogram/raw/base/input_peer.py +59 -0
  537. pyrogram/raw/base/input_peer_notify_settings.py +53 -0
  538. pyrogram/raw/base/input_phone_call.py +53 -0
  539. pyrogram/raw/base/input_photo.py +54 -0
  540. pyrogram/raw/base/input_privacy_key.py +64 -0
  541. pyrogram/raw/base/input_privacy_rule.py +64 -0
  542. pyrogram/raw/base/input_quick_reply_shortcut.py +54 -0
  543. pyrogram/raw/base/input_reply_to.py +54 -0
  544. pyrogram/raw/base/input_saved_star_gift.py +54 -0
  545. pyrogram/raw/base/input_secure_file.py +54 -0
  546. pyrogram/raw/base/input_secure_value.py +53 -0
  547. pyrogram/raw/base/input_single_media.py +53 -0
  548. pyrogram/raw/base/input_stars_transaction.py +53 -0
  549. pyrogram/raw/base/input_sticker_set.py +63 -0
  550. pyrogram/raw/base/input_sticker_set_item.py +53 -0
  551. pyrogram/raw/base/input_stickered_media.py +54 -0
  552. pyrogram/raw/base/input_store_payment_purpose.py +59 -0
  553. pyrogram/raw/base/input_theme.py +54 -0
  554. pyrogram/raw/base/input_theme_settings.py +53 -0
  555. pyrogram/raw/base/input_user.py +56 -0
  556. pyrogram/raw/base/input_wall_paper.py +55 -0
  557. pyrogram/raw/base/input_web_document.py +53 -0
  558. pyrogram/raw/base/input_web_file_location.py +55 -0
  559. pyrogram/raw/base/invoice.py +53 -0
  560. pyrogram/raw/base/ip_port.py +54 -0
  561. pyrogram/raw/base/json_object_value.py +53 -0
  562. pyrogram/raw/base/json_value.py +58 -0
  563. pyrogram/raw/base/keyboard_button.py +70 -0
  564. pyrogram/raw/base/keyboard_button_row.py +53 -0
  565. pyrogram/raw/base/labeled_price.py +53 -0
  566. pyrogram/raw/base/lang_pack_difference.py +64 -0
  567. pyrogram/raw/base/lang_pack_language.py +64 -0
  568. pyrogram/raw/base/lang_pack_string.py +65 -0
  569. pyrogram/raw/base/mask_coords.py +53 -0
  570. pyrogram/raw/base/media_area.py +61 -0
  571. pyrogram/raw/base/media_area_coordinates.py +53 -0
  572. pyrogram/raw/base/message.py +55 -0
  573. pyrogram/raw/base/message_action.py +100 -0
  574. pyrogram/raw/base/message_entity.py +73 -0
  575. pyrogram/raw/base/message_extended_media.py +54 -0
  576. pyrogram/raw/base/message_fwd_header.py +53 -0
  577. pyrogram/raw/base/message_media.py +80 -0
  578. pyrogram/raw/base/message_peer_reaction.py +53 -0
  579. pyrogram/raw/base/message_peer_vote.py +55 -0
  580. pyrogram/raw/base/message_range.py +63 -0
  581. pyrogram/raw/base/message_reactions.py +53 -0
  582. pyrogram/raw/base/message_reactor.py +53 -0
  583. pyrogram/raw/base/message_replies.py +53 -0
  584. pyrogram/raw/base/message_reply_header.py +54 -0
  585. pyrogram/raw/base/message_report_option.py +53 -0
  586. pyrogram/raw/base/message_views.py +53 -0
  587. pyrogram/raw/base/messages/__init__.py +84 -0
  588. pyrogram/raw/base/messages/affected_found_messages.py +63 -0
  589. pyrogram/raw/base/messages/affected_history.py +69 -0
  590. pyrogram/raw/base/messages/affected_messages.py +66 -0
  591. pyrogram/raw/base/messages/all_stickers.py +66 -0
  592. pyrogram/raw/base/messages/archived_stickers.py +63 -0
  593. pyrogram/raw/base/messages/available_effects.py +64 -0
  594. pyrogram/raw/base/messages/available_reactions.py +64 -0
  595. pyrogram/raw/base/messages/bot_app.py +63 -0
  596. pyrogram/raw/base/messages/bot_callback_answer.py +63 -0
  597. pyrogram/raw/base/messages/bot_prepared_inline_message.py +63 -0
  598. pyrogram/raw/base/messages/bot_results.py +63 -0
  599. pyrogram/raw/base/messages/chat_admins_with_invites.py +63 -0
  600. pyrogram/raw/base/messages/chat_full.py +64 -0
  601. pyrogram/raw/base/messages/chat_invite_importers.py +63 -0
  602. pyrogram/raw/base/messages/chats.py +71 -0
  603. pyrogram/raw/base/messages/checked_history_import_peer.py +63 -0
  604. pyrogram/raw/base/messages/dh_config.py +64 -0
  605. pyrogram/raw/base/messages/dialog_filters.py +63 -0
  606. pyrogram/raw/base/messages/dialogs.py +65 -0
  607. pyrogram/raw/base/messages/discussion_message.py +63 -0
  608. pyrogram/raw/base/messages/emoji_groups.py +67 -0
  609. pyrogram/raw/base/messages/exported_chat_invite.py +65 -0
  610. pyrogram/raw/base/messages/exported_chat_invites.py +63 -0
  611. pyrogram/raw/base/messages/faved_stickers.py +64 -0
  612. pyrogram/raw/base/messages/featured_stickers.py +66 -0
  613. pyrogram/raw/base/messages/forum_topics.py +64 -0
  614. pyrogram/raw/base/messages/found_sticker_sets.py +65 -0
  615. pyrogram/raw/base/messages/found_stickers.py +64 -0
  616. pyrogram/raw/base/messages/high_scores.py +64 -0
  617. pyrogram/raw/base/messages/history_import.py +63 -0
  618. pyrogram/raw/base/messages/history_import_parsed.py +63 -0
  619. pyrogram/raw/base/messages/inactive_chats.py +63 -0
  620. pyrogram/raw/base/messages/invited_users.py +65 -0
  621. pyrogram/raw/base/messages/message_edit_data.py +63 -0
  622. pyrogram/raw/base/messages/message_reactions_list.py +63 -0
  623. pyrogram/raw/base/messages/message_views.py +63 -0
  624. pyrogram/raw/base/messages/messages.py +80 -0
  625. pyrogram/raw/base/messages/my_stickers.py +63 -0
  626. pyrogram/raw/base/messages/peer_dialogs.py +64 -0
  627. pyrogram/raw/base/messages/peer_settings.py +63 -0
  628. pyrogram/raw/base/messages/prepared_inline_message.py +63 -0
  629. pyrogram/raw/base/messages/quick_replies.py +64 -0
  630. pyrogram/raw/base/messages/reactions.py +66 -0
  631. pyrogram/raw/base/messages/recent_stickers.py +64 -0
  632. pyrogram/raw/base/messages/saved_dialogs.py +66 -0
  633. pyrogram/raw/base/messages/saved_gifs.py +64 -0
  634. pyrogram/raw/base/messages/saved_reaction_tags.py +64 -0
  635. pyrogram/raw/base/messages/search_counter.py +63 -0
  636. pyrogram/raw/base/messages/search_results_calendar.py +63 -0
  637. pyrogram/raw/base/messages/search_results_positions.py +63 -0
  638. pyrogram/raw/base/messages/sent_encrypted_message.py +66 -0
  639. pyrogram/raw/base/messages/sponsored_messages.py +64 -0
  640. pyrogram/raw/base/messages/sticker_set.py +72 -0
  641. pyrogram/raw/base/messages/sticker_set_install_result.py +64 -0
  642. pyrogram/raw/base/messages/stickers.py +64 -0
  643. pyrogram/raw/base/messages/transcribed_audio.py +63 -0
  644. pyrogram/raw/base/messages/translated_text.py +63 -0
  645. pyrogram/raw/base/messages/votes_list.py +63 -0
  646. pyrogram/raw/base/messages/web_page.py +63 -0
  647. pyrogram/raw/base/messages/web_page_preview.py +63 -0
  648. pyrogram/raw/base/messages_filter.py +69 -0
  649. pyrogram/raw/base/missing_invitee.py +53 -0
  650. pyrogram/raw/base/msg_detailed_info.py +54 -0
  651. pyrogram/raw/base/msg_resend_req.py +54 -0
  652. pyrogram/raw/base/msgs_ack.py +53 -0
  653. pyrogram/raw/base/msgs_all_info.py +53 -0
  654. pyrogram/raw/base/msgs_state_info.py +53 -0
  655. pyrogram/raw/base/msgs_state_req.py +53 -0
  656. pyrogram/raw/base/my_boost.py +53 -0
  657. pyrogram/raw/base/nearest_dc.py +63 -0
  658. pyrogram/raw/base/new_session.py +53 -0
  659. pyrogram/raw/base/notification_sound.py +56 -0
  660. pyrogram/raw/base/notify_peer.py +57 -0
  661. pyrogram/raw/base/outbox_read_date.py +63 -0
  662. pyrogram/raw/base/page.py +53 -0
  663. pyrogram/raw/base/page_block.py +81 -0
  664. pyrogram/raw/base/page_caption.py +53 -0
  665. pyrogram/raw/base/page_list_item.py +54 -0
  666. pyrogram/raw/base/page_list_ordered_item.py +54 -0
  667. pyrogram/raw/base/page_related_article.py +53 -0
  668. pyrogram/raw/base/page_table_cell.py +53 -0
  669. pyrogram/raw/base/page_table_row.py +53 -0
  670. pyrogram/raw/base/password_kdf_algo.py +54 -0
  671. pyrogram/raw/base/payment_charge.py +53 -0
  672. pyrogram/raw/base/payment_form_method.py +53 -0
  673. pyrogram/raw/base/payment_requested_info.py +53 -0
  674. pyrogram/raw/base/payment_saved_credentials.py +53 -0
  675. pyrogram/raw/base/payments/__init__.py +44 -0
  676. pyrogram/raw/base/payments/bank_card_data.py +63 -0
  677. pyrogram/raw/base/payments/checked_gift_code.py +63 -0
  678. pyrogram/raw/base/payments/connected_star_ref_bots.py +66 -0
  679. pyrogram/raw/base/payments/exported_invoice.py +63 -0
  680. pyrogram/raw/base/payments/giveaway_info.py +64 -0
  681. pyrogram/raw/base/payments/payment_form.py +65 -0
  682. pyrogram/raw/base/payments/payment_receipt.py +64 -0
  683. pyrogram/raw/base/payments/payment_result.py +65 -0
  684. pyrogram/raw/base/payments/saved_info.py +63 -0
  685. pyrogram/raw/base/payments/saved_star_gifts.py +64 -0
  686. pyrogram/raw/base/payments/star_gift_upgrade_preview.py +63 -0
  687. pyrogram/raw/base/payments/star_gift_withdrawal_url.py +63 -0
  688. pyrogram/raw/base/payments/star_gifts.py +64 -0
  689. pyrogram/raw/base/payments/stars_revenue_ads_account_url.py +63 -0
  690. pyrogram/raw/base/payments/stars_revenue_stats.py +63 -0
  691. pyrogram/raw/base/payments/stars_revenue_withdrawal_url.py +63 -0
  692. pyrogram/raw/base/payments/stars_status.py +66 -0
  693. pyrogram/raw/base/payments/suggested_star_ref_bots.py +63 -0
  694. pyrogram/raw/base/payments/unique_star_gift.py +63 -0
  695. pyrogram/raw/base/payments/validated_requested_info.py +63 -0
  696. pyrogram/raw/base/peer.py +65 -0
  697. pyrogram/raw/base/peer_blocked.py +53 -0
  698. pyrogram/raw/base/peer_color.py +53 -0
  699. pyrogram/raw/base/peer_located.py +54 -0
  700. pyrogram/raw/base/peer_notify_settings.py +63 -0
  701. pyrogram/raw/base/peer_settings.py +53 -0
  702. pyrogram/raw/base/peer_stories.py +53 -0
  703. pyrogram/raw/base/phone/__init__.py +31 -0
  704. pyrogram/raw/base/phone/exported_group_call_invite.py +63 -0
  705. pyrogram/raw/base/phone/group_call.py +63 -0
  706. pyrogram/raw/base/phone/group_call_stream_channels.py +63 -0
  707. pyrogram/raw/base/phone/group_call_stream_rtmp_url.py +63 -0
  708. pyrogram/raw/base/phone/group_participants.py +63 -0
  709. pyrogram/raw/base/phone/join_as_peers.py +63 -0
  710. pyrogram/raw/base/phone/phone_call.py +66 -0
  711. pyrogram/raw/base/phone_call.py +58 -0
  712. pyrogram/raw/base/phone_call_discard_reason.py +57 -0
  713. pyrogram/raw/base/phone_call_protocol.py +53 -0
  714. pyrogram/raw/base/phone_connection.py +54 -0
  715. pyrogram/raw/base/photo.py +54 -0
  716. pyrogram/raw/base/photo_size.py +58 -0
  717. pyrogram/raw/base/photos/__init__.py +26 -0
  718. pyrogram/raw/base/photos/photo.py +65 -0
  719. pyrogram/raw/base/photos/photos.py +64 -0
  720. pyrogram/raw/base/poll.py +53 -0
  721. pyrogram/raw/base/poll_answer.py +53 -0
  722. pyrogram/raw/base/poll_answer_voters.py +53 -0
  723. pyrogram/raw/base/poll_results.py +53 -0
  724. pyrogram/raw/base/pong.py +64 -0
  725. pyrogram/raw/base/popular_contact.py +53 -0
  726. pyrogram/raw/base/post_address.py +53 -0
  727. pyrogram/raw/base/post_interaction_counters.py +54 -0
  728. pyrogram/raw/base/pq_inner_data.py +56 -0
  729. pyrogram/raw/base/premium/__init__.py +27 -0
  730. pyrogram/raw/base/premium/boosts_list.py +64 -0
  731. pyrogram/raw/base/premium/boosts_status.py +63 -0
  732. pyrogram/raw/base/premium/my_boosts.py +64 -0
  733. pyrogram/raw/base/premium_gift_code_option.py +63 -0
  734. pyrogram/raw/base/premium_gift_option.py +53 -0
  735. pyrogram/raw/base/premium_subscription_option.py +53 -0
  736. pyrogram/raw/base/prepaid_giveaway.py +54 -0
  737. pyrogram/raw/base/privacy_key.py +64 -0
  738. pyrogram/raw/base/privacy_rule.py +64 -0
  739. pyrogram/raw/base/public_forward.py +54 -0
  740. pyrogram/raw/base/quick_reply.py +53 -0
  741. pyrogram/raw/base/reaction.py +56 -0
  742. pyrogram/raw/base/reaction_count.py +53 -0
  743. pyrogram/raw/base/reaction_notifications_from.py +54 -0
  744. pyrogram/raw/base/reactions_notify_settings.py +64 -0
  745. pyrogram/raw/base/read_participant_date.py +63 -0
  746. pyrogram/raw/base/received_notify_message.py +63 -0
  747. pyrogram/raw/base/recent_me_url.py +57 -0
  748. pyrogram/raw/base/reply_markup.py +56 -0
  749. pyrogram/raw/base/report_reason.py +62 -0
  750. pyrogram/raw/base/report_result.py +66 -0
  751. pyrogram/raw/base/request_peer_type.py +55 -0
  752. pyrogram/raw/base/requested_peer.py +55 -0
  753. pyrogram/raw/base/res_pq.py +64 -0
  754. pyrogram/raw/base/restriction_reason.py +53 -0
  755. pyrogram/raw/base/rich_text.py +68 -0
  756. pyrogram/raw/base/rpc_drop_answer.py +65 -0
  757. pyrogram/raw/base/rpc_error.py +53 -0
  758. pyrogram/raw/base/rpc_result.py +53 -0
  759. pyrogram/raw/base/saved_contact.py +63 -0
  760. pyrogram/raw/base/saved_dialog.py +53 -0
  761. pyrogram/raw/base/saved_reaction_tag.py +53 -0
  762. pyrogram/raw/base/saved_star_gift.py +53 -0
  763. pyrogram/raw/base/search_results_calendar_period.py +53 -0
  764. pyrogram/raw/base/search_results_position.py +53 -0
  765. pyrogram/raw/base/secure_credentials_encrypted.py +53 -0
  766. pyrogram/raw/base/secure_data.py +53 -0
  767. pyrogram/raw/base/secure_file.py +54 -0
  768. pyrogram/raw/base/secure_password_kdf_algo.py +55 -0
  769. pyrogram/raw/base/secure_plain_data.py +54 -0
  770. pyrogram/raw/base/secure_required_type.py +54 -0
  771. pyrogram/raw/base/secure_secret_settings.py +53 -0
  772. pyrogram/raw/base/secure_value.py +65 -0
  773. pyrogram/raw/base/secure_value_error.py +61 -0
  774. pyrogram/raw/base/secure_value_hash.py +53 -0
  775. pyrogram/raw/base/secure_value_type.py +65 -0
  776. pyrogram/raw/base/send_as_peer.py +53 -0
  777. pyrogram/raw/base/send_message_action.py +70 -0
  778. pyrogram/raw/base/server_dh_inner_data.py +53 -0
  779. pyrogram/raw/base/server_dh_params.py +64 -0
  780. pyrogram/raw/base/set_client_dh_params_answer.py +65 -0
  781. pyrogram/raw/base/shipping_option.py +53 -0
  782. pyrogram/raw/base/sms_job.py +63 -0
  783. pyrogram/raw/base/smsjobs/__init__.py +26 -0
  784. pyrogram/raw/base/smsjobs/eligibility_to_join.py +63 -0
  785. pyrogram/raw/base/smsjobs/status.py +63 -0
  786. pyrogram/raw/base/sponsored_message.py +53 -0
  787. pyrogram/raw/base/sponsored_message_report_option.py +53 -0
  788. pyrogram/raw/base/star_gift.py +54 -0
  789. pyrogram/raw/base/star_gift_attribute.py +56 -0
  790. pyrogram/raw/base/star_ref_program.py +63 -0
  791. pyrogram/raw/base/stars_amount.py +53 -0
  792. pyrogram/raw/base/stars_gift_option.py +63 -0
  793. pyrogram/raw/base/stars_giveaway_option.py +63 -0
  794. pyrogram/raw/base/stars_giveaway_winners_option.py +53 -0
  795. pyrogram/raw/base/stars_revenue_status.py +53 -0
  796. pyrogram/raw/base/stars_subscription.py +53 -0
  797. pyrogram/raw/base/stars_subscription_pricing.py +53 -0
  798. pyrogram/raw/base/stars_topup_option.py +63 -0
  799. pyrogram/raw/base/stars_transaction.py +53 -0
  800. pyrogram/raw/base/stars_transaction_peer.py +60 -0
  801. pyrogram/raw/base/stats/__init__.py +32 -0
  802. pyrogram/raw/base/stats/broadcast_revenue_stats.py +63 -0
  803. pyrogram/raw/base/stats/broadcast_revenue_transactions.py +63 -0
  804. pyrogram/raw/base/stats/broadcast_revenue_withdrawal_url.py +63 -0
  805. pyrogram/raw/base/stats/broadcast_stats.py +63 -0
  806. pyrogram/raw/base/stats/megagroup_stats.py +63 -0
  807. pyrogram/raw/base/stats/message_stats.py +63 -0
  808. pyrogram/raw/base/stats/public_forwards.py +64 -0
  809. pyrogram/raw/base/stats/story_stats.py +63 -0
  810. pyrogram/raw/base/stats_abs_value_and_prev.py +53 -0
  811. pyrogram/raw/base/stats_date_range_days.py +53 -0
  812. pyrogram/raw/base/stats_graph.py +65 -0
  813. pyrogram/raw/base/stats_group_top_admin.py +53 -0
  814. pyrogram/raw/base/stats_group_top_inviter.py +53 -0
  815. pyrogram/raw/base/stats_group_top_poster.py +53 -0
  816. pyrogram/raw/base/stats_percent_value.py +53 -0
  817. pyrogram/raw/base/stats_url.py +53 -0
  818. pyrogram/raw/base/sticker_keyword.py +53 -0
  819. pyrogram/raw/base/sticker_pack.py +53 -0
  820. pyrogram/raw/base/sticker_set.py +53 -0
  821. pyrogram/raw/base/sticker_set_covered.py +66 -0
  822. pyrogram/raw/base/stickers/__init__.py +25 -0
  823. pyrogram/raw/base/stickers/suggested_short_name.py +63 -0
  824. pyrogram/raw/base/storage/__init__.py +25 -0
  825. pyrogram/raw/base/storage/file_type.py +62 -0
  826. pyrogram/raw/base/stories/__init__.py +31 -0
  827. pyrogram/raw/base/stories/all_stories.py +64 -0
  828. pyrogram/raw/base/stories/found_stories.py +63 -0
  829. pyrogram/raw/base/stories/peer_stories.py +63 -0
  830. pyrogram/raw/base/stories/stories.py +65 -0
  831. pyrogram/raw/base/stories/story_reactions_list.py +63 -0
  832. pyrogram/raw/base/stories/story_views.py +63 -0
  833. pyrogram/raw/base/stories/story_views_list.py +63 -0
  834. pyrogram/raw/base/stories_stealth_mode.py +53 -0
  835. pyrogram/raw/base/story_fwd_header.py +53 -0
  836. pyrogram/raw/base/story_item.py +55 -0
  837. pyrogram/raw/base/story_reaction.py +55 -0
  838. pyrogram/raw/base/story_view.py +55 -0
  839. pyrogram/raw/base/story_views.py +53 -0
  840. pyrogram/raw/base/text_with_entities.py +53 -0
  841. pyrogram/raw/base/theme.py +65 -0
  842. pyrogram/raw/base/theme_settings.py +53 -0
  843. pyrogram/raw/base/timezone.py +53 -0
  844. pyrogram/raw/base/top_peer.py +53 -0
  845. pyrogram/raw/base/top_peer_category.py +61 -0
  846. pyrogram/raw/base/top_peer_category_peers.py +53 -0
  847. pyrogram/raw/base/update.py +193 -0
  848. pyrogram/raw/base/updates/__init__.py +27 -0
  849. pyrogram/raw/base/updates/channel_difference.py +65 -0
  850. pyrogram/raw/base/updates/difference.py +66 -0
  851. pyrogram/raw/base/updates/state.py +63 -0
  852. pyrogram/raw/base/updates_t.py +175 -0
  853. pyrogram/raw/base/upload/__init__.py +27 -0
  854. pyrogram/raw/base/upload/cdn_file.py +64 -0
  855. pyrogram/raw/base/upload/file.py +64 -0
  856. pyrogram/raw/base/upload/web_file.py +63 -0
  857. pyrogram/raw/base/url_auth_result.py +66 -0
  858. pyrogram/raw/base/user.py +69 -0
  859. pyrogram/raw/base/user_full.py +53 -0
  860. pyrogram/raw/base/user_profile_photo.py +54 -0
  861. pyrogram/raw/base/user_status.py +58 -0
  862. pyrogram/raw/base/username.py +53 -0
  863. pyrogram/raw/base/users/__init__.py +26 -0
  864. pyrogram/raw/base/users/user_full.py +63 -0
  865. pyrogram/raw/base/users/users.py +64 -0
  866. pyrogram/raw/base/video_size.py +55 -0
  867. pyrogram/raw/base/wall_paper.py +66 -0
  868. pyrogram/raw/base/wall_paper_settings.py +53 -0
  869. pyrogram/raw/base/web_authorization.py +53 -0
  870. pyrogram/raw/base/web_document.py +54 -0
  871. pyrogram/raw/base/web_page.py +56 -0
  872. pyrogram/raw/base/web_page_attribute.py +56 -0
  873. pyrogram/raw/base/web_view_message_sent.py +63 -0
  874. pyrogram/raw/base/web_view_result.py +66 -0
  875. pyrogram/raw/core/__init__.py +31 -0
  876. pyrogram/raw/core/future_salt.py +53 -0
  877. pyrogram/raw/core/future_salts.py +63 -0
  878. pyrogram/raw/core/gzip_packed.py +62 -0
  879. pyrogram/raw/core/list.py +26 -0
  880. pyrogram/raw/core/message.py +56 -0
  881. pyrogram/raw/core/msg_container.py +53 -0
  882. pyrogram/raw/core/primitives/__init__.py +24 -0
  883. pyrogram/raw/core/primitives/bool.py +48 -0
  884. pyrogram/raw/core/primitives/bytes.py +55 -0
  885. pyrogram/raw/core/primitives/double.py +32 -0
  886. pyrogram/raw/core/primitives/int.py +45 -0
  887. pyrogram/raw/core/primitives/string.py +31 -0
  888. pyrogram/raw/core/primitives/vector.py +59 -0
  889. pyrogram/raw/core/tl_object.py +82 -0
  890. pyrogram/raw/functions/__init__.py +45 -0
  891. pyrogram/raw/functions/account/__init__.py +137 -0
  892. pyrogram/raw/functions/account/accept_authorization.py +104 -0
  893. pyrogram/raw/functions/account/cancel_password_email.py +67 -0
  894. pyrogram/raw/functions/account/change_authorization_settings.py +98 -0
  895. pyrogram/raw/functions/account/change_phone.py +88 -0
  896. pyrogram/raw/functions/account/check_username.py +72 -0
  897. pyrogram/raw/functions/account/clear_recent_emoji_statuses.py +67 -0
  898. pyrogram/raw/functions/account/confirm_password_email.py +72 -0
  899. pyrogram/raw/functions/account/confirm_phone.py +80 -0
  900. pyrogram/raw/functions/account/create_business_chat_link.py +72 -0
  901. pyrogram/raw/functions/account/create_theme.py +102 -0
  902. pyrogram/raw/functions/account/decline_password_reset.py +67 -0
  903. pyrogram/raw/functions/account/delete_account.py +84 -0
  904. pyrogram/raw/functions/account/delete_auto_save_exceptions.py +67 -0
  905. pyrogram/raw/functions/account/delete_business_chat_link.py +72 -0
  906. pyrogram/raw/functions/account/delete_secure_value.py +72 -0
  907. pyrogram/raw/functions/account/disable_peer_connected_bot.py +72 -0
  908. pyrogram/raw/functions/account/edit_business_chat_link.py +80 -0
  909. pyrogram/raw/functions/account/finish_takeout_session.py +72 -0
  910. pyrogram/raw/functions/account/get_account_ttl.py +67 -0
  911. pyrogram/raw/functions/account/get_all_secure_values.py +67 -0
  912. pyrogram/raw/functions/account/get_authorization_form.py +88 -0
  913. pyrogram/raw/functions/account/get_authorizations.py +67 -0
  914. pyrogram/raw/functions/account/get_auto_download_settings.py +67 -0
  915. pyrogram/raw/functions/account/get_auto_save_settings.py +67 -0
  916. pyrogram/raw/functions/account/get_bot_business_connection.py +72 -0
  917. pyrogram/raw/functions/account/get_business_chat_links.py +67 -0
  918. pyrogram/raw/functions/account/get_channel_default_emoji_statuses.py +72 -0
  919. pyrogram/raw/functions/account/get_channel_restricted_status_emojis.py +72 -0
  920. pyrogram/raw/functions/account/get_chat_themes.py +72 -0
  921. pyrogram/raw/functions/account/get_collectible_emoji_statuses.py +72 -0
  922. pyrogram/raw/functions/account/get_connected_bots.py +67 -0
  923. pyrogram/raw/functions/account/get_contact_sign_up_notification.py +67 -0
  924. pyrogram/raw/functions/account/get_content_settings.py +67 -0
  925. pyrogram/raw/functions/account/get_default_background_emojis.py +72 -0
  926. pyrogram/raw/functions/account/get_default_emoji_statuses.py +72 -0
  927. pyrogram/raw/functions/account/get_default_group_photo_emojis.py +72 -0
  928. pyrogram/raw/functions/account/get_default_profile_photo_emojis.py +72 -0
  929. pyrogram/raw/functions/account/get_global_privacy_settings.py +67 -0
  930. pyrogram/raw/functions/account/get_multi_wall_papers.py +72 -0
  931. pyrogram/raw/functions/account/get_notify_exceptions.py +88 -0
  932. pyrogram/raw/functions/account/get_notify_settings.py +72 -0
  933. pyrogram/raw/functions/account/get_password.py +67 -0
  934. pyrogram/raw/functions/account/get_password_settings.py +72 -0
  935. pyrogram/raw/functions/account/get_privacy.py +72 -0
  936. pyrogram/raw/functions/account/get_reactions_notify_settings.py +67 -0
  937. pyrogram/raw/functions/account/get_recent_emoji_statuses.py +72 -0
  938. pyrogram/raw/functions/account/get_saved_ringtones.py +72 -0
  939. pyrogram/raw/functions/account/get_secure_value.py +72 -0
  940. pyrogram/raw/functions/account/get_theme.py +80 -0
  941. pyrogram/raw/functions/account/get_themes.py +80 -0
  942. pyrogram/raw/functions/account/get_tmp_password.py +80 -0
  943. pyrogram/raw/functions/account/get_wall_paper.py +72 -0
  944. pyrogram/raw/functions/account/get_wall_papers.py +72 -0
  945. pyrogram/raw/functions/account/get_web_authorizations.py +67 -0
  946. pyrogram/raw/functions/account/init_takeout_session.py +111 -0
  947. pyrogram/raw/functions/account/install_theme.py +101 -0
  948. pyrogram/raw/functions/account/install_wall_paper.py +80 -0
  949. pyrogram/raw/functions/account/invalidate_sign_in_codes.py +72 -0
  950. pyrogram/raw/functions/account/register_device.py +112 -0
  951. pyrogram/raw/functions/account/reorder_usernames.py +72 -0
  952. pyrogram/raw/functions/account/report_peer.py +88 -0
  953. pyrogram/raw/functions/account/report_profile_photo.py +96 -0
  954. pyrogram/raw/functions/account/resend_password_email.py +67 -0
  955. pyrogram/raw/functions/account/reset_authorization.py +72 -0
  956. pyrogram/raw/functions/account/reset_notify_settings.py +67 -0
  957. pyrogram/raw/functions/account/reset_password.py +67 -0
  958. pyrogram/raw/functions/account/reset_wall_papers.py +67 -0
  959. pyrogram/raw/functions/account/reset_web_authorization.py +72 -0
  960. pyrogram/raw/functions/account/reset_web_authorizations.py +67 -0
  961. pyrogram/raw/functions/account/resolve_business_chat_link.py +72 -0
  962. pyrogram/raw/functions/account/save_auto_download_settings.py +86 -0
  963. pyrogram/raw/functions/account/save_auto_save_settings.py +102 -0
  964. pyrogram/raw/functions/account/save_ringtone.py +80 -0
  965. pyrogram/raw/functions/account/save_secure_value.py +80 -0
  966. pyrogram/raw/functions/account/save_theme.py +80 -0
  967. pyrogram/raw/functions/account/save_wall_paper.py +88 -0
  968. pyrogram/raw/functions/account/send_change_phone_code.py +80 -0
  969. pyrogram/raw/functions/account/send_confirm_phone_code.py +80 -0
  970. pyrogram/raw/functions/account/send_verify_email_code.py +80 -0
  971. pyrogram/raw/functions/account/send_verify_phone_code.py +80 -0
  972. pyrogram/raw/functions/account/set_account_ttl.py +72 -0
  973. pyrogram/raw/functions/account/set_authorization_ttl.py +72 -0
  974. pyrogram/raw/functions/account/set_contact_sign_up_notification.py +72 -0
  975. pyrogram/raw/functions/account/set_content_settings.py +72 -0
  976. pyrogram/raw/functions/account/set_global_privacy_settings.py +72 -0
  977. pyrogram/raw/functions/account/set_privacy.py +80 -0
  978. pyrogram/raw/functions/account/set_reactions_notify_settings.py +72 -0
  979. pyrogram/raw/functions/account/toggle_connected_bot_paused.py +80 -0
  980. pyrogram/raw/functions/account/toggle_sponsored_messages.py +72 -0
  981. pyrogram/raw/functions/account/toggle_username.py +80 -0
  982. pyrogram/raw/functions/account/unregister_device.py +88 -0
  983. pyrogram/raw/functions/account/update_birthday.py +76 -0
  984. pyrogram/raw/functions/account/update_business_away_message.py +76 -0
  985. pyrogram/raw/functions/account/update_business_greeting_message.py +76 -0
  986. pyrogram/raw/functions/account/update_business_intro.py +76 -0
  987. pyrogram/raw/functions/account/update_business_location.py +85 -0
  988. pyrogram/raw/functions/account/update_business_work_hours.py +76 -0
  989. pyrogram/raw/functions/account/update_color.py +90 -0
  990. pyrogram/raw/functions/account/update_connected_bot.py +94 -0
  991. pyrogram/raw/functions/account/update_device_locked.py +72 -0
  992. pyrogram/raw/functions/account/update_emoji_status.py +72 -0
  993. pyrogram/raw/functions/account/update_notify_settings.py +80 -0
  994. pyrogram/raw/functions/account/update_password_settings.py +80 -0
  995. pyrogram/raw/functions/account/update_personal_channel.py +72 -0
  996. pyrogram/raw/functions/account/update_profile.py +93 -0
  997. pyrogram/raw/functions/account/update_status.py +72 -0
  998. pyrogram/raw/functions/account/update_theme.py +120 -0
  999. pyrogram/raw/functions/account/update_username.py +72 -0
  1000. pyrogram/raw/functions/account/upload_ringtone.py +88 -0
  1001. pyrogram/raw/functions/account/upload_theme.py +100 -0
  1002. pyrogram/raw/functions/account/upload_wall_paper.py +96 -0
  1003. pyrogram/raw/functions/account/verify_email.py +80 -0
  1004. pyrogram/raw/functions/account/verify_phone.py +88 -0
  1005. pyrogram/raw/functions/auth/__init__.py +47 -0
  1006. pyrogram/raw/functions/auth/accept_login_token.py +72 -0
  1007. pyrogram/raw/functions/auth/bind_temp_auth_key.py +96 -0
  1008. pyrogram/raw/functions/auth/cancel_code.py +80 -0
  1009. pyrogram/raw/functions/auth/check_password.py +72 -0
  1010. pyrogram/raw/functions/auth/check_recovery_password.py +72 -0
  1011. pyrogram/raw/functions/auth/drop_temp_auth_keys.py +72 -0
  1012. pyrogram/raw/functions/auth/export_authorization.py +72 -0
  1013. pyrogram/raw/functions/auth/export_login_token.py +88 -0
  1014. pyrogram/raw/functions/auth/import_authorization.py +80 -0
  1015. pyrogram/raw/functions/auth/import_bot_authorization.py +96 -0
  1016. pyrogram/raw/functions/auth/import_login_token.py +72 -0
  1017. pyrogram/raw/functions/auth/import_web_token_authorization.py +88 -0
  1018. pyrogram/raw/functions/auth/log_out.py +67 -0
  1019. pyrogram/raw/functions/auth/recover_password.py +84 -0
  1020. pyrogram/raw/functions/auth/report_missing_code.py +88 -0
  1021. pyrogram/raw/functions/auth/request_firebase_sms.py +109 -0
  1022. pyrogram/raw/functions/auth/request_password_recovery.py +67 -0
  1023. pyrogram/raw/functions/auth/resend_code.py +91 -0
  1024. pyrogram/raw/functions/auth/reset_authorizations.py +67 -0
  1025. pyrogram/raw/functions/auth/reset_login_email.py +80 -0
  1026. pyrogram/raw/functions/auth/send_code.py +96 -0
  1027. pyrogram/raw/functions/auth/sign_in.py +101 -0
  1028. pyrogram/raw/functions/auth/sign_up.py +104 -0
  1029. pyrogram/raw/functions/bots/__init__.py +54 -0
  1030. pyrogram/raw/functions/bots/add_preview_media.py +88 -0
  1031. pyrogram/raw/functions/bots/allow_send_message.py +72 -0
  1032. pyrogram/raw/functions/bots/answer_webhook_json_query.py +80 -0
  1033. pyrogram/raw/functions/bots/can_send_message.py +72 -0
  1034. pyrogram/raw/functions/bots/check_download_file_params.py +88 -0
  1035. pyrogram/raw/functions/bots/delete_preview_media.py +88 -0
  1036. pyrogram/raw/functions/bots/edit_preview_media.py +96 -0
  1037. pyrogram/raw/functions/bots/get_admined_bots.py +67 -0
  1038. pyrogram/raw/functions/bots/get_bot_commands.py +80 -0
  1039. pyrogram/raw/functions/bots/get_bot_info.py +84 -0
  1040. pyrogram/raw/functions/bots/get_bot_menu_button.py +72 -0
  1041. pyrogram/raw/functions/bots/get_bot_recommendations.py +72 -0
  1042. pyrogram/raw/functions/bots/get_popular_app_bots.py +80 -0
  1043. pyrogram/raw/functions/bots/get_preview_info.py +80 -0
  1044. pyrogram/raw/functions/bots/get_preview_medias.py +72 -0
  1045. pyrogram/raw/functions/bots/invoke_web_view_custom_method.py +88 -0
  1046. pyrogram/raw/functions/bots/reorder_preview_medias.py +88 -0
  1047. pyrogram/raw/functions/bots/reorder_usernames.py +80 -0
  1048. pyrogram/raw/functions/bots/reset_bot_commands.py +80 -0
  1049. pyrogram/raw/functions/bots/send_custom_request.py +80 -0
  1050. pyrogram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py +72 -0
  1051. pyrogram/raw/functions/bots/set_bot_commands.py +88 -0
  1052. pyrogram/raw/functions/bots/set_bot_group_default_admin_rights.py +72 -0
  1053. pyrogram/raw/functions/bots/set_bot_info.py +111 -0
  1054. pyrogram/raw/functions/bots/set_bot_menu_button.py +80 -0
  1055. pyrogram/raw/functions/bots/set_custom_verification.py +99 -0
  1056. pyrogram/raw/functions/bots/toggle_user_emoji_status_permission.py +80 -0
  1057. pyrogram/raw/functions/bots/toggle_username.py +88 -0
  1058. pyrogram/raw/functions/bots/update_star_ref_program.py +91 -0
  1059. pyrogram/raw/functions/bots/update_user_emoji_status.py +80 -0
  1060. pyrogram/raw/functions/channels/__init__.py +85 -0
  1061. pyrogram/raw/functions/channels/check_username.py +80 -0
  1062. pyrogram/raw/functions/channels/convert_to_gigagroup.py +72 -0
  1063. pyrogram/raw/functions/channels/create_channel.py +134 -0
  1064. pyrogram/raw/functions/channels/create_forum_topic.py +118 -0
  1065. pyrogram/raw/functions/channels/deactivate_all_usernames.py +72 -0
  1066. pyrogram/raw/functions/channels/delete_channel.py +72 -0
  1067. pyrogram/raw/functions/channels/delete_history.py +88 -0
  1068. pyrogram/raw/functions/channels/delete_messages.py +80 -0
  1069. pyrogram/raw/functions/channels/delete_participant_history.py +80 -0
  1070. pyrogram/raw/functions/channels/delete_topic_history.py +80 -0
  1071. pyrogram/raw/functions/channels/edit_admin.py +96 -0
  1072. pyrogram/raw/functions/channels/edit_banned.py +88 -0
  1073. pyrogram/raw/functions/channels/edit_creator.py +88 -0
  1074. pyrogram/raw/functions/channels/edit_forum_topic.py +118 -0
  1075. pyrogram/raw/functions/channels/edit_location.py +88 -0
  1076. pyrogram/raw/functions/channels/edit_photo.py +80 -0
  1077. pyrogram/raw/functions/channels/edit_title.py +80 -0
  1078. pyrogram/raw/functions/channels/export_message_link.py +94 -0
  1079. pyrogram/raw/functions/channels/get_admin_log.py +126 -0
  1080. pyrogram/raw/functions/channels/get_admined_public_channels.py +84 -0
  1081. pyrogram/raw/functions/channels/get_channel_recommendations.py +76 -0
  1082. pyrogram/raw/functions/channels/get_channels.py +72 -0
  1083. pyrogram/raw/functions/channels/get_forum_topics.py +115 -0
  1084. pyrogram/raw/functions/channels/get_forum_topics_by_id.py +80 -0
  1085. pyrogram/raw/functions/channels/get_full_channel.py +72 -0
  1086. pyrogram/raw/functions/channels/get_groups_for_discussion.py +67 -0
  1087. pyrogram/raw/functions/channels/get_inactive_channels.py +67 -0
  1088. pyrogram/raw/functions/channels/get_left_channels.py +72 -0
  1089. pyrogram/raw/functions/channels/get_messages.py +80 -0
  1090. pyrogram/raw/functions/channels/get_participant.py +80 -0
  1091. pyrogram/raw/functions/channels/get_participants.py +104 -0
  1092. pyrogram/raw/functions/channels/get_send_as.py +72 -0
  1093. pyrogram/raw/functions/channels/invite_to_channel.py +80 -0
  1094. pyrogram/raw/functions/channels/join_channel.py +72 -0
  1095. pyrogram/raw/functions/channels/leave_channel.py +72 -0
  1096. pyrogram/raw/functions/channels/read_history.py +80 -0
  1097. pyrogram/raw/functions/channels/read_message_contents.py +80 -0
  1098. pyrogram/raw/functions/channels/reorder_pinned_forum_topics.py +88 -0
  1099. pyrogram/raw/functions/channels/reorder_usernames.py +80 -0
  1100. pyrogram/raw/functions/channels/report_anti_spam_false_positive.py +80 -0
  1101. pyrogram/raw/functions/channels/report_spam.py +88 -0
  1102. pyrogram/raw/functions/channels/restrict_sponsored_messages.py +80 -0
  1103. pyrogram/raw/functions/channels/search_posts.py +104 -0
  1104. pyrogram/raw/functions/channels/set_boosts_to_unblock_restrictions.py +80 -0
  1105. pyrogram/raw/functions/channels/set_discussion_group.py +80 -0
  1106. pyrogram/raw/functions/channels/set_emoji_stickers.py +80 -0
  1107. pyrogram/raw/functions/channels/set_stickers.py +80 -0
  1108. pyrogram/raw/functions/channels/toggle_anti_spam.py +80 -0
  1109. pyrogram/raw/functions/channels/toggle_forum.py +80 -0
  1110. pyrogram/raw/functions/channels/toggle_join_request.py +80 -0
  1111. pyrogram/raw/functions/channels/toggle_join_to_send.py +80 -0
  1112. pyrogram/raw/functions/channels/toggle_participants_hidden.py +80 -0
  1113. pyrogram/raw/functions/channels/toggle_pre_history_hidden.py +80 -0
  1114. pyrogram/raw/functions/channels/toggle_signatures.py +86 -0
  1115. pyrogram/raw/functions/channels/toggle_slow_mode.py +80 -0
  1116. pyrogram/raw/functions/channels/toggle_username.py +88 -0
  1117. pyrogram/raw/functions/channels/toggle_view_forum_as_messages.py +80 -0
  1118. pyrogram/raw/functions/channels/update_color.py +98 -0
  1119. pyrogram/raw/functions/channels/update_emoji_status.py +80 -0
  1120. pyrogram/raw/functions/channels/update_pinned_forum_topic.py +88 -0
  1121. pyrogram/raw/functions/channels/update_username.py +80 -0
  1122. pyrogram/raw/functions/chatlists/__init__.py +35 -0
  1123. pyrogram/raw/functions/chatlists/check_chatlist_invite.py +72 -0
  1124. pyrogram/raw/functions/chatlists/delete_exported_invite.py +80 -0
  1125. pyrogram/raw/functions/chatlists/edit_exported_invite.py +101 -0
  1126. pyrogram/raw/functions/chatlists/export_chatlist_invite.py +88 -0
  1127. pyrogram/raw/functions/chatlists/get_chatlist_updates.py +72 -0
  1128. pyrogram/raw/functions/chatlists/get_exported_invites.py +72 -0
  1129. pyrogram/raw/functions/chatlists/get_leave_chatlist_suggestions.py +72 -0
  1130. pyrogram/raw/functions/chatlists/hide_chatlist_updates.py +72 -0
  1131. pyrogram/raw/functions/chatlists/join_chatlist_invite.py +80 -0
  1132. pyrogram/raw/functions/chatlists/join_chatlist_updates.py +80 -0
  1133. pyrogram/raw/functions/chatlists/leave_chatlist.py +80 -0
  1134. pyrogram/raw/functions/contacts/__init__.py +50 -0
  1135. pyrogram/raw/functions/contacts/accept_contact.py +72 -0
  1136. pyrogram/raw/functions/contacts/add_contact.py +104 -0
  1137. pyrogram/raw/functions/contacts/block.py +80 -0
  1138. pyrogram/raw/functions/contacts/block_from_replies.py +92 -0
  1139. pyrogram/raw/functions/contacts/delete_by_phones.py +72 -0
  1140. pyrogram/raw/functions/contacts/delete_contacts.py +72 -0
  1141. pyrogram/raw/functions/contacts/edit_close_friends.py +72 -0
  1142. pyrogram/raw/functions/contacts/export_contact_token.py +67 -0
  1143. pyrogram/raw/functions/contacts/get_birthdays.py +67 -0
  1144. pyrogram/raw/functions/contacts/get_blocked.py +88 -0
  1145. pyrogram/raw/functions/contacts/get_contact_i_ds.py +72 -0
  1146. pyrogram/raw/functions/contacts/get_contacts.py +72 -0
  1147. pyrogram/raw/functions/contacts/get_located.py +89 -0
  1148. pyrogram/raw/functions/contacts/get_saved.py +67 -0
  1149. pyrogram/raw/functions/contacts/get_statuses.py +67 -0
  1150. pyrogram/raw/functions/contacts/get_top_peers.py +144 -0
  1151. pyrogram/raw/functions/contacts/import_contact_token.py +72 -0
  1152. pyrogram/raw/functions/contacts/import_contacts.py +72 -0
  1153. pyrogram/raw/functions/contacts/reset_saved.py +67 -0
  1154. pyrogram/raw/functions/contacts/reset_top_peer_rating.py +80 -0
  1155. pyrogram/raw/functions/contacts/resolve_phone.py +72 -0
  1156. pyrogram/raw/functions/contacts/resolve_username.py +83 -0
  1157. pyrogram/raw/functions/contacts/search.py +80 -0
  1158. pyrogram/raw/functions/contacts/set_blocked.py +88 -0
  1159. pyrogram/raw/functions/contacts/toggle_top_peers.py +72 -0
  1160. pyrogram/raw/functions/contacts/unblock.py +80 -0
  1161. pyrogram/raw/functions/contest/__init__.py +25 -0
  1162. pyrogram/raw/functions/contest/save_developer_info.py +104 -0
  1163. pyrogram/raw/functions/destroy_auth_key.py +67 -0
  1164. pyrogram/raw/functions/destroy_session.py +72 -0
  1165. pyrogram/raw/functions/folders/__init__.py +25 -0
  1166. pyrogram/raw/functions/folders/edit_peer_folders.py +72 -0
  1167. pyrogram/raw/functions/fragment/__init__.py +25 -0
  1168. pyrogram/raw/functions/fragment/get_collectible_info.py +72 -0
  1169. pyrogram/raw/functions/get_future_salts.py +72 -0
  1170. pyrogram/raw/functions/help/__init__.py +49 -0
  1171. pyrogram/raw/functions/help/accept_terms_of_service.py +72 -0
  1172. pyrogram/raw/functions/help/dismiss_suggestion.py +80 -0
  1173. pyrogram/raw/functions/help/edit_user_info.py +88 -0
  1174. pyrogram/raw/functions/help/get_app_config.py +72 -0
  1175. pyrogram/raw/functions/help/get_app_update.py +72 -0
  1176. pyrogram/raw/functions/help/get_cdn_config.py +67 -0
  1177. pyrogram/raw/functions/help/get_config.py +67 -0
  1178. pyrogram/raw/functions/help/get_countries_list.py +80 -0
  1179. pyrogram/raw/functions/help/get_deep_link_info.py +72 -0
  1180. pyrogram/raw/functions/help/get_invite_text.py +67 -0
  1181. pyrogram/raw/functions/help/get_nearest_dc.py +67 -0
  1182. pyrogram/raw/functions/help/get_passport_config.py +72 -0
  1183. pyrogram/raw/functions/help/get_peer_colors.py +72 -0
  1184. pyrogram/raw/functions/help/get_peer_profile_colors.py +72 -0
  1185. pyrogram/raw/functions/help/get_premium_promo.py +67 -0
  1186. pyrogram/raw/functions/help/get_promo_data.py +67 -0
  1187. pyrogram/raw/functions/help/get_recent_me_urls.py +72 -0
  1188. pyrogram/raw/functions/help/get_support.py +67 -0
  1189. pyrogram/raw/functions/help/get_support_name.py +67 -0
  1190. pyrogram/raw/functions/help/get_terms_of_service_update.py +67 -0
  1191. pyrogram/raw/functions/help/get_timezones_list.py +72 -0
  1192. pyrogram/raw/functions/help/get_user_info.py +72 -0
  1193. pyrogram/raw/functions/help/hide_promo_data.py +72 -0
  1194. pyrogram/raw/functions/help/save_app_log.py +72 -0
  1195. pyrogram/raw/functions/help/set_bot_updates_status.py +80 -0
  1196. pyrogram/raw/functions/init_connection.py +150 -0
  1197. pyrogram/raw/functions/invoke_after_msg.py +80 -0
  1198. pyrogram/raw/functions/invoke_after_msgs.py +80 -0
  1199. pyrogram/raw/functions/invoke_with_apns_secret.py +88 -0
  1200. pyrogram/raw/functions/invoke_with_business_connection.py +80 -0
  1201. pyrogram/raw/functions/invoke_with_google_play_integrity.py +88 -0
  1202. pyrogram/raw/functions/invoke_with_layer.py +80 -0
  1203. pyrogram/raw/functions/invoke_with_messages_range.py +80 -0
  1204. pyrogram/raw/functions/invoke_with_takeout.py +80 -0
  1205. pyrogram/raw/functions/invoke_without_updates.py +72 -0
  1206. pyrogram/raw/functions/langpack/__init__.py +29 -0
  1207. pyrogram/raw/functions/langpack/get_difference.py +88 -0
  1208. pyrogram/raw/functions/langpack/get_lang_pack.py +80 -0
  1209. pyrogram/raw/functions/langpack/get_language.py +80 -0
  1210. pyrogram/raw/functions/langpack/get_languages.py +72 -0
  1211. pyrogram/raw/functions/langpack/get_strings.py +88 -0
  1212. pyrogram/raw/functions/messages/__init__.py +249 -0
  1213. pyrogram/raw/functions/messages/accept_encryption.py +88 -0
  1214. pyrogram/raw/functions/messages/accept_url_auth.py +109 -0
  1215. pyrogram/raw/functions/messages/add_chat_user.py +88 -0
  1216. pyrogram/raw/functions/messages/check_chat_invite.py +72 -0
  1217. pyrogram/raw/functions/messages/check_history_import.py +72 -0
  1218. pyrogram/raw/functions/messages/check_history_import_peer.py +72 -0
  1219. pyrogram/raw/functions/messages/check_quick_reply_shortcut.py +72 -0
  1220. pyrogram/raw/functions/messages/clear_all_drafts.py +67 -0
  1221. pyrogram/raw/functions/messages/clear_recent_reactions.py +67 -0
  1222. pyrogram/raw/functions/messages/clear_recent_stickers.py +72 -0
  1223. pyrogram/raw/functions/messages/click_sponsored_message.py +94 -0
  1224. pyrogram/raw/functions/messages/create_chat.py +91 -0
  1225. pyrogram/raw/functions/messages/delete_chat.py +72 -0
  1226. pyrogram/raw/functions/messages/delete_chat_user.py +88 -0
  1227. pyrogram/raw/functions/messages/delete_exported_chat_invite.py +80 -0
  1228. pyrogram/raw/functions/messages/delete_fact_check.py +80 -0
  1229. pyrogram/raw/functions/messages/delete_history.py +112 -0
  1230. pyrogram/raw/functions/messages/delete_messages.py +80 -0
  1231. pyrogram/raw/functions/messages/delete_phone_call_history.py +72 -0
  1232. pyrogram/raw/functions/messages/delete_quick_reply_messages.py +80 -0
  1233. pyrogram/raw/functions/messages/delete_quick_reply_shortcut.py +72 -0
  1234. pyrogram/raw/functions/messages/delete_revoked_exported_chat_invites.py +80 -0
  1235. pyrogram/raw/functions/messages/delete_saved_history.py +100 -0
  1236. pyrogram/raw/functions/messages/delete_scheduled_messages.py +80 -0
  1237. pyrogram/raw/functions/messages/discard_encryption.py +80 -0
  1238. pyrogram/raw/functions/messages/edit_chat_about.py +80 -0
  1239. pyrogram/raw/functions/messages/edit_chat_admin.py +88 -0
  1240. pyrogram/raw/functions/messages/edit_chat_default_banned_rights.py +80 -0
  1241. pyrogram/raw/functions/messages/edit_chat_photo.py +80 -0
  1242. pyrogram/raw/functions/messages/edit_chat_title.py +80 -0
  1243. pyrogram/raw/functions/messages/edit_exported_chat_invite.py +124 -0
  1244. pyrogram/raw/functions/messages/edit_fact_check.py +88 -0
  1245. pyrogram/raw/functions/messages/edit_inline_bot_message.py +125 -0
  1246. pyrogram/raw/functions/messages/edit_message.py +151 -0
  1247. pyrogram/raw/functions/messages/edit_quick_reply_shortcut.py +80 -0
  1248. pyrogram/raw/functions/messages/export_chat_invite.py +123 -0
  1249. pyrogram/raw/functions/messages/fave_sticker.py +80 -0
  1250. pyrogram/raw/functions/messages/forward_messages.py +187 -0
  1251. pyrogram/raw/functions/messages/get_admins_with_invites.py +72 -0
  1252. pyrogram/raw/functions/messages/get_all_drafts.py +67 -0
  1253. pyrogram/raw/functions/messages/get_all_stickers.py +72 -0
  1254. pyrogram/raw/functions/messages/get_archived_stickers.py +94 -0
  1255. pyrogram/raw/functions/messages/get_attach_menu_bot.py +72 -0
  1256. pyrogram/raw/functions/messages/get_attach_menu_bots.py +72 -0
  1257. pyrogram/raw/functions/messages/get_attached_stickers.py +72 -0
  1258. pyrogram/raw/functions/messages/get_available_effects.py +72 -0
  1259. pyrogram/raw/functions/messages/get_available_reactions.py +72 -0
  1260. pyrogram/raw/functions/messages/get_bot_app.py +80 -0
  1261. pyrogram/raw/functions/messages/get_bot_callback_answer.py +107 -0
  1262. pyrogram/raw/functions/messages/get_chat_invite_importers.py +128 -0
  1263. pyrogram/raw/functions/messages/get_chats.py +72 -0
  1264. pyrogram/raw/functions/messages/get_common_chats.py +88 -0
  1265. pyrogram/raw/functions/messages/get_custom_emoji_documents.py +72 -0
  1266. pyrogram/raw/functions/messages/get_default_history_ttl.py +67 -0
  1267. pyrogram/raw/functions/messages/get_default_tag_reactions.py +72 -0
  1268. pyrogram/raw/functions/messages/get_dh_config.py +80 -0
  1269. pyrogram/raw/functions/messages/get_dialog_filters.py +67 -0
  1270. pyrogram/raw/functions/messages/get_dialog_unread_marks.py +67 -0
  1271. pyrogram/raw/functions/messages/get_dialogs.py +121 -0
  1272. pyrogram/raw/functions/messages/get_discussion_message.py +80 -0
  1273. pyrogram/raw/functions/messages/get_document_by_hash.py +88 -0
  1274. pyrogram/raw/functions/messages/get_emoji_groups.py +72 -0
  1275. pyrogram/raw/functions/messages/get_emoji_keywords.py +72 -0
  1276. pyrogram/raw/functions/messages/get_emoji_keywords_difference.py +80 -0
  1277. pyrogram/raw/functions/messages/get_emoji_keywords_languages.py +72 -0
  1278. pyrogram/raw/functions/messages/get_emoji_profile_photo_groups.py +72 -0
  1279. pyrogram/raw/functions/messages/get_emoji_status_groups.py +72 -0
  1280. pyrogram/raw/functions/messages/get_emoji_sticker_groups.py +72 -0
  1281. pyrogram/raw/functions/messages/get_emoji_stickers.py +72 -0
  1282. pyrogram/raw/functions/messages/get_emoji_url.py +72 -0
  1283. pyrogram/raw/functions/messages/get_exported_chat_invite.py +80 -0
  1284. pyrogram/raw/functions/messages/get_exported_chat_invites.py +114 -0
  1285. pyrogram/raw/functions/messages/get_extended_media.py +80 -0
  1286. pyrogram/raw/functions/messages/get_fact_check.py +80 -0
  1287. pyrogram/raw/functions/messages/get_faved_stickers.py +72 -0
  1288. pyrogram/raw/functions/messages/get_featured_emoji_stickers.py +72 -0
  1289. pyrogram/raw/functions/messages/get_featured_stickers.py +72 -0
  1290. pyrogram/raw/functions/messages/get_full_chat.py +72 -0
  1291. pyrogram/raw/functions/messages/get_game_high_scores.py +88 -0
  1292. pyrogram/raw/functions/messages/get_history.py +128 -0
  1293. pyrogram/raw/functions/messages/get_inline_bot_results.py +108 -0
  1294. pyrogram/raw/functions/messages/get_inline_game_high_scores.py +80 -0
  1295. pyrogram/raw/functions/messages/get_mask_stickers.py +72 -0
  1296. pyrogram/raw/functions/messages/get_message_edit_data.py +80 -0
  1297. pyrogram/raw/functions/messages/get_message_reactions_list.py +109 -0
  1298. pyrogram/raw/functions/messages/get_message_read_participants.py +80 -0
  1299. pyrogram/raw/functions/messages/get_messages.py +72 -0
  1300. pyrogram/raw/functions/messages/get_messages_reactions.py +80 -0
  1301. pyrogram/raw/functions/messages/get_messages_views.py +88 -0
  1302. pyrogram/raw/functions/messages/get_my_stickers.py +80 -0
  1303. pyrogram/raw/functions/messages/get_old_featured_stickers.py +88 -0
  1304. pyrogram/raw/functions/messages/get_onlines.py +72 -0
  1305. pyrogram/raw/functions/messages/get_outbox_read_date.py +80 -0
  1306. pyrogram/raw/functions/messages/get_paid_reaction_privacy.py +67 -0
  1307. pyrogram/raw/functions/messages/get_peer_dialogs.py +72 -0
  1308. pyrogram/raw/functions/messages/get_peer_settings.py +72 -0
  1309. pyrogram/raw/functions/messages/get_pinned_dialogs.py +72 -0
  1310. pyrogram/raw/functions/messages/get_pinned_saved_dialogs.py +67 -0
  1311. pyrogram/raw/functions/messages/get_poll_results.py +80 -0
  1312. pyrogram/raw/functions/messages/get_poll_votes.py +108 -0
  1313. pyrogram/raw/functions/messages/get_prepared_inline_message.py +80 -0
  1314. pyrogram/raw/functions/messages/get_quick_replies.py +72 -0
  1315. pyrogram/raw/functions/messages/get_quick_reply_messages.py +92 -0
  1316. pyrogram/raw/functions/messages/get_recent_locations.py +88 -0
  1317. pyrogram/raw/functions/messages/get_recent_reactions.py +80 -0
  1318. pyrogram/raw/functions/messages/get_recent_stickers.py +80 -0
  1319. pyrogram/raw/functions/messages/get_replies.py +136 -0
  1320. pyrogram/raw/functions/messages/get_saved_dialogs.py +112 -0
  1321. pyrogram/raw/functions/messages/get_saved_gifs.py +72 -0
  1322. pyrogram/raw/functions/messages/get_saved_history.py +128 -0
  1323. pyrogram/raw/functions/messages/get_saved_reaction_tags.py +84 -0
  1324. pyrogram/raw/functions/messages/get_scheduled_history.py +80 -0
  1325. pyrogram/raw/functions/messages/get_scheduled_messages.py +80 -0
  1326. pyrogram/raw/functions/messages/get_search_counters.py +101 -0
  1327. pyrogram/raw/functions/messages/get_search_results_calendar.py +108 -0
  1328. pyrogram/raw/functions/messages/get_search_results_positions.py +108 -0
  1329. pyrogram/raw/functions/messages/get_split_ranges.py +67 -0
  1330. pyrogram/raw/functions/messages/get_sponsored_messages.py +72 -0
  1331. pyrogram/raw/functions/messages/get_sticker_set.py +80 -0
  1332. pyrogram/raw/functions/messages/get_stickers.py +80 -0
  1333. pyrogram/raw/functions/messages/get_suggested_dialog_filters.py +67 -0
  1334. pyrogram/raw/functions/messages/get_top_reactions.py +80 -0
  1335. pyrogram/raw/functions/messages/get_unread_mentions.py +123 -0
  1336. pyrogram/raw/functions/messages/get_unread_reactions.py +123 -0
  1337. pyrogram/raw/functions/messages/get_web_page.py +80 -0
  1338. pyrogram/raw/functions/messages/get_web_page_preview.py +84 -0
  1339. pyrogram/raw/functions/messages/hide_all_chat_join_requests.py +89 -0
  1340. pyrogram/raw/functions/messages/hide_chat_join_request.py +88 -0
  1341. pyrogram/raw/functions/messages/hide_peer_settings_bar.py +72 -0
  1342. pyrogram/raw/functions/messages/import_chat_invite.py +72 -0
  1343. pyrogram/raw/functions/messages/init_history_import.py +88 -0
  1344. pyrogram/raw/functions/messages/install_sticker_set.py +80 -0
  1345. pyrogram/raw/functions/messages/mark_dialog_unread.py +80 -0
  1346. pyrogram/raw/functions/messages/migrate_chat.py +72 -0
  1347. pyrogram/raw/functions/messages/prolong_web_view.py +116 -0
  1348. pyrogram/raw/functions/messages/rate_transcribed_audio.py +96 -0
  1349. pyrogram/raw/functions/messages/read_discussion.py +88 -0
  1350. pyrogram/raw/functions/messages/read_encrypted_history.py +80 -0
  1351. pyrogram/raw/functions/messages/read_featured_stickers.py +72 -0
  1352. pyrogram/raw/functions/messages/read_history.py +80 -0
  1353. pyrogram/raw/functions/messages/read_mentions.py +83 -0
  1354. pyrogram/raw/functions/messages/read_message_contents.py +72 -0
  1355. pyrogram/raw/functions/messages/read_reactions.py +83 -0
  1356. pyrogram/raw/functions/messages/received_messages.py +72 -0
  1357. pyrogram/raw/functions/messages/received_queue.py +72 -0
  1358. pyrogram/raw/functions/messages/reorder_pinned_dialogs.py +88 -0
  1359. pyrogram/raw/functions/messages/reorder_pinned_saved_dialogs.py +80 -0
  1360. pyrogram/raw/functions/messages/reorder_quick_replies.py +72 -0
  1361. pyrogram/raw/functions/messages/reorder_sticker_sets.py +86 -0
  1362. pyrogram/raw/functions/messages/report.py +96 -0
  1363. pyrogram/raw/functions/messages/report_encrypted_spam.py +72 -0
  1364. pyrogram/raw/functions/messages/report_messages_delivery.py +88 -0
  1365. pyrogram/raw/functions/messages/report_reaction.py +88 -0
  1366. pyrogram/raw/functions/messages/report_spam.py +72 -0
  1367. pyrogram/raw/functions/messages/report_sponsored_message.py +88 -0
  1368. pyrogram/raw/functions/messages/request_app_web_view.py +127 -0
  1369. pyrogram/raw/functions/messages/request_encryption.py +88 -0
  1370. pyrogram/raw/functions/messages/request_main_web_view.py +121 -0
  1371. pyrogram/raw/functions/messages/request_simple_web_view.py +134 -0
  1372. pyrogram/raw/functions/messages/request_url_auth.py +103 -0
  1373. pyrogram/raw/functions/messages/request_web_view.py +162 -0
  1374. pyrogram/raw/functions/messages/save_default_send_as.py +80 -0
  1375. pyrogram/raw/functions/messages/save_draft.py +133 -0
  1376. pyrogram/raw/functions/messages/save_gif.py +80 -0
  1377. pyrogram/raw/functions/messages/save_prepared_inline_message.py +92 -0
  1378. pyrogram/raw/functions/messages/save_recent_sticker.py +88 -0
  1379. pyrogram/raw/functions/messages/search.py +193 -0
  1380. pyrogram/raw/functions/messages/search_custom_emoji.py +80 -0
  1381. pyrogram/raw/functions/messages/search_emoji_sticker_sets.py +88 -0
  1382. pyrogram/raw/functions/messages/search_global.py +157 -0
  1383. pyrogram/raw/functions/messages/search_sent_media.py +88 -0
  1384. pyrogram/raw/functions/messages/search_sticker_sets.py +88 -0
  1385. pyrogram/raw/functions/messages/search_stickers.py +120 -0
  1386. pyrogram/raw/functions/messages/send_bot_requested_peer.py +96 -0
  1387. pyrogram/raw/functions/messages/send_encrypted.py +96 -0
  1388. pyrogram/raw/functions/messages/send_encrypted_file.py +104 -0
  1389. pyrogram/raw/functions/messages/send_encrypted_service.py +88 -0
  1390. pyrogram/raw/functions/messages/send_inline_bot_result.py +161 -0
  1391. pyrogram/raw/functions/messages/send_media.py +208 -0
  1392. pyrogram/raw/functions/messages/send_message.py +206 -0
  1393. pyrogram/raw/functions/messages/send_multi_media.py +172 -0
  1394. pyrogram/raw/functions/messages/send_paid_reaction.py +107 -0
  1395. pyrogram/raw/functions/messages/send_quick_reply_messages.py +96 -0
  1396. pyrogram/raw/functions/messages/send_reaction.py +104 -0
  1397. pyrogram/raw/functions/messages/send_scheduled_messages.py +80 -0
  1398. pyrogram/raw/functions/messages/send_screenshot_notification.py +88 -0
  1399. pyrogram/raw/functions/messages/send_vote.py +88 -0
  1400. pyrogram/raw/functions/messages/send_web_view_data.py +96 -0
  1401. pyrogram/raw/functions/messages/send_web_view_result_message.py +80 -0
  1402. pyrogram/raw/functions/messages/set_bot_callback_answer.py +106 -0
  1403. pyrogram/raw/functions/messages/set_bot_precheckout_results.py +89 -0
  1404. pyrogram/raw/functions/messages/set_bot_shipping_results.py +93 -0
  1405. pyrogram/raw/functions/messages/set_chat_available_reactions.py +100 -0
  1406. pyrogram/raw/functions/messages/set_chat_theme.py +80 -0
  1407. pyrogram/raw/functions/messages/set_chat_wall_paper.py +115 -0
  1408. pyrogram/raw/functions/messages/set_default_history_ttl.py +72 -0
  1409. pyrogram/raw/functions/messages/set_default_reaction.py +72 -0
  1410. pyrogram/raw/functions/messages/set_encrypted_typing.py +80 -0
  1411. pyrogram/raw/functions/messages/set_game_score.py +110 -0
  1412. pyrogram/raw/functions/messages/set_history_ttl.py +80 -0
  1413. pyrogram/raw/functions/messages/set_inline_bot_results.py +131 -0
  1414. pyrogram/raw/functions/messages/set_inline_game_score.py +102 -0
  1415. pyrogram/raw/functions/messages/set_typing.py +91 -0
  1416. pyrogram/raw/functions/messages/start_bot.py +96 -0
  1417. pyrogram/raw/functions/messages/start_history_import.py +80 -0
  1418. pyrogram/raw/functions/messages/toggle_bot_in_attach_menu.py +88 -0
  1419. pyrogram/raw/functions/messages/toggle_dialog_filter_tags.py +72 -0
  1420. pyrogram/raw/functions/messages/toggle_dialog_pin.py +80 -0
  1421. pyrogram/raw/functions/messages/toggle_no_forwards.py +80 -0
  1422. pyrogram/raw/functions/messages/toggle_paid_reaction_privacy.py +88 -0
  1423. pyrogram/raw/functions/messages/toggle_peer_translations.py +80 -0
  1424. pyrogram/raw/functions/messages/toggle_saved_dialog_pin.py +80 -0
  1425. pyrogram/raw/functions/messages/toggle_sticker_sets.py +92 -0
  1426. pyrogram/raw/functions/messages/transcribe_audio.py +80 -0
  1427. pyrogram/raw/functions/messages/translate_text.py +104 -0
  1428. pyrogram/raw/functions/messages/uninstall_sticker_set.py +72 -0
  1429. pyrogram/raw/functions/messages/unpin_all_messages.py +83 -0
  1430. pyrogram/raw/functions/messages/update_dialog_filter.py +84 -0
  1431. pyrogram/raw/functions/messages/update_dialog_filters_order.py +72 -0
  1432. pyrogram/raw/functions/messages/update_pinned_message.py +100 -0
  1433. pyrogram/raw/functions/messages/update_saved_reaction_tag.py +83 -0
  1434. pyrogram/raw/functions/messages/upload_encrypted_file.py +80 -0
  1435. pyrogram/raw/functions/messages/upload_imported_media.py +96 -0
  1436. pyrogram/raw/functions/messages/upload_media.py +91 -0
  1437. pyrogram/raw/functions/messages/view_sponsored_message.py +80 -0
  1438. pyrogram/raw/functions/payments/__init__.py +71 -0
  1439. pyrogram/raw/functions/payments/apply_gift_code.py +72 -0
  1440. pyrogram/raw/functions/payments/assign_app_store_transaction.py +80 -0
  1441. pyrogram/raw/functions/payments/assign_play_market_transaction.py +80 -0
  1442. pyrogram/raw/functions/payments/bot_cancel_stars_subscription.py +88 -0
  1443. pyrogram/raw/functions/payments/can_purchase_premium.py +72 -0
  1444. pyrogram/raw/functions/payments/change_stars_subscription.py +91 -0
  1445. pyrogram/raw/functions/payments/check_gift_code.py +72 -0
  1446. pyrogram/raw/functions/payments/clear_saved_info.py +78 -0
  1447. pyrogram/raw/functions/payments/connect_star_ref_bot.py +80 -0
  1448. pyrogram/raw/functions/payments/convert_star_gift.py +72 -0
  1449. pyrogram/raw/functions/payments/edit_connected_star_ref_bot.py +88 -0
  1450. pyrogram/raw/functions/payments/export_invoice.py +72 -0
  1451. pyrogram/raw/functions/payments/fulfill_stars_subscription.py +80 -0
  1452. pyrogram/raw/functions/payments/get_bank_card_data.py +72 -0
  1453. pyrogram/raw/functions/payments/get_connected_star_ref_bot.py +80 -0
  1454. pyrogram/raw/functions/payments/get_connected_star_ref_bots.py +100 -0
  1455. pyrogram/raw/functions/payments/get_giveaway_info.py +80 -0
  1456. pyrogram/raw/functions/payments/get_payment_form.py +84 -0
  1457. pyrogram/raw/functions/payments/get_payment_receipt.py +80 -0
  1458. pyrogram/raw/functions/payments/get_premium_gift_code_options.py +76 -0
  1459. pyrogram/raw/functions/payments/get_saved_info.py +67 -0
  1460. pyrogram/raw/functions/payments/get_saved_star_gift.py +72 -0
  1461. pyrogram/raw/functions/payments/get_saved_star_gifts.py +126 -0
  1462. pyrogram/raw/functions/payments/get_star_gift_upgrade_preview.py +72 -0
  1463. pyrogram/raw/functions/payments/get_star_gift_withdrawal_url.py +80 -0
  1464. pyrogram/raw/functions/payments/get_star_gifts.py +72 -0
  1465. pyrogram/raw/functions/payments/get_stars_gift_options.py +76 -0
  1466. pyrogram/raw/functions/payments/get_stars_giveaway_options.py +67 -0
  1467. pyrogram/raw/functions/payments/get_stars_revenue_ads_account_url.py +72 -0
  1468. pyrogram/raw/functions/payments/get_stars_revenue_stats.py +80 -0
  1469. pyrogram/raw/functions/payments/get_stars_revenue_withdrawal_url.py +88 -0
  1470. pyrogram/raw/functions/payments/get_stars_status.py +72 -0
  1471. pyrogram/raw/functions/payments/get_stars_subscriptions.py +88 -0
  1472. pyrogram/raw/functions/payments/get_stars_topup_options.py +67 -0
  1473. pyrogram/raw/functions/payments/get_stars_transactions.py +117 -0
  1474. pyrogram/raw/functions/payments/get_stars_transactions_by_id.py +80 -0
  1475. pyrogram/raw/functions/payments/get_suggested_star_ref_bots.py +102 -0
  1476. pyrogram/raw/functions/payments/get_unique_star_gift.py +72 -0
  1477. pyrogram/raw/functions/payments/launch_prepaid_giveaway.py +88 -0
  1478. pyrogram/raw/functions/payments/refund_stars_charge.py +80 -0
  1479. pyrogram/raw/functions/payments/save_star_gift.py +80 -0
  1480. pyrogram/raw/functions/payments/send_payment_form.py +117 -0
  1481. pyrogram/raw/functions/payments/send_stars_form.py +80 -0
  1482. pyrogram/raw/functions/payments/toggle_chat_star_gift_notifications.py +80 -0
  1483. pyrogram/raw/functions/payments/transfer_star_gift.py +80 -0
  1484. pyrogram/raw/functions/payments/upgrade_star_gift.py +80 -0
  1485. pyrogram/raw/functions/payments/validate_requested_info.py +88 -0
  1486. pyrogram/raw/functions/phone/__init__.py +56 -0
  1487. pyrogram/raw/functions/phone/accept_call.py +88 -0
  1488. pyrogram/raw/functions/phone/check_group_call.py +80 -0
  1489. pyrogram/raw/functions/phone/confirm_call.py +96 -0
  1490. pyrogram/raw/functions/phone/create_conference_call.py +80 -0
  1491. pyrogram/raw/functions/phone/create_group_call.py +106 -0
  1492. pyrogram/raw/functions/phone/discard_call.py +104 -0
  1493. pyrogram/raw/functions/phone/discard_group_call.py +72 -0
  1494. pyrogram/raw/functions/phone/edit_group_call_participant.py +136 -0
  1495. pyrogram/raw/functions/phone/edit_group_call_title.py +80 -0
  1496. pyrogram/raw/functions/phone/export_group_call_invite.py +80 -0
  1497. pyrogram/raw/functions/phone/get_call_config.py +67 -0
  1498. pyrogram/raw/functions/phone/get_group_call.py +80 -0
  1499. pyrogram/raw/functions/phone/get_group_call_join_as.py +72 -0
  1500. pyrogram/raw/functions/phone/get_group_call_stream_channels.py +72 -0
  1501. pyrogram/raw/functions/phone/get_group_call_stream_rtmp_url.py +80 -0
  1502. pyrogram/raw/functions/phone/get_group_participants.py +104 -0
  1503. pyrogram/raw/functions/phone/invite_to_group_call.py +80 -0
  1504. pyrogram/raw/functions/phone/join_group_call.py +120 -0
  1505. pyrogram/raw/functions/phone/join_group_call_presentation.py +80 -0
  1506. pyrogram/raw/functions/phone/leave_group_call.py +80 -0
  1507. pyrogram/raw/functions/phone/leave_group_call_presentation.py +72 -0
  1508. pyrogram/raw/functions/phone/received_call.py +72 -0
  1509. pyrogram/raw/functions/phone/request_call.py +114 -0
  1510. pyrogram/raw/functions/phone/save_call_debug.py +80 -0
  1511. pyrogram/raw/functions/phone/save_call_log.py +80 -0
  1512. pyrogram/raw/functions/phone/save_default_group_call_join_as.py +80 -0
  1513. pyrogram/raw/functions/phone/send_signaling_data.py +80 -0
  1514. pyrogram/raw/functions/phone/set_call_rating.py +96 -0
  1515. pyrogram/raw/functions/phone/start_scheduled_group_call.py +72 -0
  1516. pyrogram/raw/functions/phone/toggle_group_call_record.py +104 -0
  1517. pyrogram/raw/functions/phone/toggle_group_call_settings.py +89 -0
  1518. pyrogram/raw/functions/phone/toggle_group_call_start_subscription.py +80 -0
  1519. pyrogram/raw/functions/photos/__init__.py +29 -0
  1520. pyrogram/raw/functions/photos/delete_photos.py +72 -0
  1521. pyrogram/raw/functions/photos/get_user_photos.py +96 -0
  1522. pyrogram/raw/functions/photos/update_profile_photo.py +90 -0
  1523. pyrogram/raw/functions/photos/upload_contact_profile_photo.py +125 -0
  1524. pyrogram/raw/functions/photos/upload_profile_photo.py +121 -0
  1525. pyrogram/raw/functions/ping.py +72 -0
  1526. pyrogram/raw/functions/ping_delay_disconnect.py +80 -0
  1527. pyrogram/raw/functions/premium/__init__.py +29 -0
  1528. pyrogram/raw/functions/premium/apply_boost.py +84 -0
  1529. pyrogram/raw/functions/premium/get_boosts_list.py +96 -0
  1530. pyrogram/raw/functions/premium/get_boosts_status.py +72 -0
  1531. pyrogram/raw/functions/premium/get_my_boosts.py +67 -0
  1532. pyrogram/raw/functions/premium/get_user_boosts.py +80 -0
  1533. pyrogram/raw/functions/req_dh_params.py +112 -0
  1534. pyrogram/raw/functions/req_pq.py +72 -0
  1535. pyrogram/raw/functions/req_pq_multi.py +72 -0
  1536. pyrogram/raw/functions/rpc_drop_answer.py +72 -0
  1537. pyrogram/raw/functions/set_client_dh_params.py +88 -0
  1538. pyrogram/raw/functions/smsjobs/__init__.py +31 -0
  1539. pyrogram/raw/functions/smsjobs/finish_job.py +83 -0
  1540. pyrogram/raw/functions/smsjobs/get_sms_job.py +72 -0
  1541. pyrogram/raw/functions/smsjobs/get_status.py +67 -0
  1542. pyrogram/raw/functions/smsjobs/is_eligible_to_join.py +67 -0
  1543. pyrogram/raw/functions/smsjobs/join.py +67 -0
  1544. pyrogram/raw/functions/smsjobs/leave.py +67 -0
  1545. pyrogram/raw/functions/smsjobs/update_settings.py +72 -0
  1546. pyrogram/raw/functions/stats/__init__.py +34 -0
  1547. pyrogram/raw/functions/stats/get_broadcast_revenue_stats.py +80 -0
  1548. pyrogram/raw/functions/stats/get_broadcast_revenue_transactions.py +88 -0
  1549. pyrogram/raw/functions/stats/get_broadcast_revenue_withdrawal_url.py +80 -0
  1550. pyrogram/raw/functions/stats/get_broadcast_stats.py +80 -0
  1551. pyrogram/raw/functions/stats/get_megagroup_stats.py +80 -0
  1552. pyrogram/raw/functions/stats/get_message_public_forwards.py +96 -0
  1553. pyrogram/raw/functions/stats/get_message_stats.py +88 -0
  1554. pyrogram/raw/functions/stats/get_story_public_forwards.py +96 -0
  1555. pyrogram/raw/functions/stats/get_story_stats.py +88 -0
  1556. pyrogram/raw/functions/stats/load_async_graph.py +83 -0
  1557. pyrogram/raw/functions/stickers/__init__.py +35 -0
  1558. pyrogram/raw/functions/stickers/add_sticker_to_set.py +80 -0
  1559. pyrogram/raw/functions/stickers/change_sticker.py +102 -0
  1560. pyrogram/raw/functions/stickers/change_sticker_position.py +80 -0
  1561. pyrogram/raw/functions/stickers/check_short_name.py +72 -0
  1562. pyrogram/raw/functions/stickers/create_sticker_set.py +135 -0
  1563. pyrogram/raw/functions/stickers/delete_sticker_set.py +72 -0
  1564. pyrogram/raw/functions/stickers/remove_sticker_from_set.py +72 -0
  1565. pyrogram/raw/functions/stickers/rename_sticker_set.py +80 -0
  1566. pyrogram/raw/functions/stickers/replace_sticker.py +80 -0
  1567. pyrogram/raw/functions/stickers/set_sticker_set_thumb.py +93 -0
  1568. pyrogram/raw/functions/stickers/suggest_short_name.py +72 -0
  1569. pyrogram/raw/functions/stories/__init__.py +50 -0
  1570. pyrogram/raw/functions/stories/activate_stealth_mode.py +78 -0
  1571. pyrogram/raw/functions/stories/can_send_story.py +72 -0
  1572. pyrogram/raw/functions/stories/delete_stories.py +80 -0
  1573. pyrogram/raw/functions/stories/edit_story.py +131 -0
  1574. pyrogram/raw/functions/stories/export_story_link.py +80 -0
  1575. pyrogram/raw/functions/stories/get_all_read_peer_stories.py +67 -0
  1576. pyrogram/raw/functions/stories/get_all_stories.py +87 -0
  1577. pyrogram/raw/functions/stories/get_chats_to_send.py +67 -0
  1578. pyrogram/raw/functions/stories/get_peer_max_i_ds.py +72 -0
  1579. pyrogram/raw/functions/stories/get_peer_stories.py +72 -0
  1580. pyrogram/raw/functions/stories/get_pinned_stories.py +88 -0
  1581. pyrogram/raw/functions/stories/get_stories_archive.py +88 -0
  1582. pyrogram/raw/functions/stories/get_stories_by_id.py +80 -0
  1583. pyrogram/raw/functions/stories/get_stories_views.py +80 -0
  1584. pyrogram/raw/functions/stories/get_story_reactions_list.py +115 -0
  1585. pyrogram/raw/functions/stories/get_story_views_list.py +125 -0
  1586. pyrogram/raw/functions/stories/increment_story_views.py +80 -0
  1587. pyrogram/raw/functions/stories/read_stories.py +80 -0
  1588. pyrogram/raw/functions/stories/report.py +96 -0
  1589. pyrogram/raw/functions/stories/search_posts.py +111 -0
  1590. pyrogram/raw/functions/stories/send_reaction.py +96 -0
  1591. pyrogram/raw/functions/stories/send_story.py +173 -0
  1592. pyrogram/raw/functions/stories/toggle_all_stories_hidden.py +72 -0
  1593. pyrogram/raw/functions/stories/toggle_peer_stories_hidden.py +80 -0
  1594. pyrogram/raw/functions/stories/toggle_pinned.py +88 -0
  1595. pyrogram/raw/functions/stories/toggle_pinned_to_top.py +80 -0
  1596. pyrogram/raw/functions/updates/__init__.py +27 -0
  1597. pyrogram/raw/functions/updates/get_channel_difference.py +104 -0
  1598. pyrogram/raw/functions/updates/get_difference.py +117 -0
  1599. pyrogram/raw/functions/updates/get_state.py +67 -0
  1600. pyrogram/raw/functions/upload/__init__.py +32 -0
  1601. pyrogram/raw/functions/upload/get_cdn_file.py +88 -0
  1602. pyrogram/raw/functions/upload/get_cdn_file_hashes.py +80 -0
  1603. pyrogram/raw/functions/upload/get_file.py +102 -0
  1604. pyrogram/raw/functions/upload/get_file_hashes.py +80 -0
  1605. pyrogram/raw/functions/upload/get_web_file.py +88 -0
  1606. pyrogram/raw/functions/upload/reupload_cdn_file.py +80 -0
  1607. pyrogram/raw/functions/upload/save_big_file_part.py +96 -0
  1608. pyrogram/raw/functions/upload/save_file_part.py +88 -0
  1609. pyrogram/raw/functions/users/__init__.py +28 -0
  1610. pyrogram/raw/functions/users/get_full_user.py +72 -0
  1611. pyrogram/raw/functions/users/get_is_premium_required_to_contact.py +72 -0
  1612. pyrogram/raw/functions/users/get_users.py +72 -0
  1613. pyrogram/raw/functions/users/set_secure_value_errors.py +80 -0
  1614. pyrogram/raw/types/__init__.py +1172 -0
  1615. pyrogram/raw/types/access_point_rule.py +88 -0
  1616. pyrogram/raw/types/account/__init__.py +55 -0
  1617. pyrogram/raw/types/account/authorization_form.py +116 -0
  1618. pyrogram/raw/types/account/authorizations.py +89 -0
  1619. pyrogram/raw/types/account/auto_download_settings.py +97 -0
  1620. pyrogram/raw/types/account/auto_save_settings.py +121 -0
  1621. pyrogram/raw/types/account/business_chat_links.py +97 -0
  1622. pyrogram/raw/types/account/connected_bots.py +89 -0
  1623. pyrogram/raw/types/account/content_settings.py +87 -0
  1624. pyrogram/raw/types/account/email_verified.py +81 -0
  1625. pyrogram/raw/types/account/email_verified_login.py +89 -0
  1626. pyrogram/raw/types/account/emoji_statuses.py +92 -0
  1627. pyrogram/raw/types/account/emoji_statuses_not_modified.py +79 -0
  1628. pyrogram/raw/types/account/password.py +181 -0
  1629. pyrogram/raw/types/account/password_input_settings.py +113 -0
  1630. pyrogram/raw/types/account/password_settings.py +94 -0
  1631. pyrogram/raw/types/account/privacy_rules.py +98 -0
  1632. pyrogram/raw/types/account/reset_password_failed_wait.py +81 -0
  1633. pyrogram/raw/types/account/reset_password_ok.py +76 -0
  1634. pyrogram/raw/types/account/reset_password_requested_wait.py +81 -0
  1635. pyrogram/raw/types/account/resolved_business_chat_links.py +117 -0
  1636. pyrogram/raw/types/account/saved_ringtone.py +76 -0
  1637. pyrogram/raw/types/account/saved_ringtone_converted.py +81 -0
  1638. pyrogram/raw/types/account/saved_ringtones.py +89 -0
  1639. pyrogram/raw/types/account/saved_ringtones_not_modified.py +76 -0
  1640. pyrogram/raw/types/account/sent_email_code.py +89 -0
  1641. pyrogram/raw/types/account/takeout.py +81 -0
  1642. pyrogram/raw/types/account/themes.py +90 -0
  1643. pyrogram/raw/types/account/themes_not_modified.py +77 -0
  1644. pyrogram/raw/types/account/tmp_password.py +89 -0
  1645. pyrogram/raw/types/account/wall_papers.py +89 -0
  1646. pyrogram/raw/types/account/wall_papers_not_modified.py +76 -0
  1647. pyrogram/raw/types/account/web_authorizations.py +89 -0
  1648. pyrogram/raw/types/account_days_ttl.py +81 -0
  1649. pyrogram/raw/types/attach_menu_bot.py +136 -0
  1650. pyrogram/raw/types/attach_menu_bot_icon.py +92 -0
  1651. pyrogram/raw/types/attach_menu_bot_icon_color.py +80 -0
  1652. pyrogram/raw/types/attach_menu_bots.py +97 -0
  1653. pyrogram/raw/types/attach_menu_bots_bot.py +89 -0
  1654. pyrogram/raw/types/attach_menu_bots_not_modified.py +76 -0
  1655. pyrogram/raw/types/attach_menu_peer_type_bot_pm.py +67 -0
  1656. pyrogram/raw/types/attach_menu_peer_type_broadcast.py +67 -0
  1657. pyrogram/raw/types/attach_menu_peer_type_chat.py +67 -0
  1658. pyrogram/raw/types/attach_menu_peer_type_pm.py +67 -0
  1659. pyrogram/raw/types/attach_menu_peer_type_same_bot_pm.py +67 -0
  1660. pyrogram/raw/types/auth/__init__.py +50 -0
  1661. pyrogram/raw/types/auth/authorization.py +122 -0
  1662. pyrogram/raw/types/auth/authorization_sign_up_required.py +91 -0
  1663. pyrogram/raw/types/auth/code_type_call.py +67 -0
  1664. pyrogram/raw/types/auth/code_type_flash_call.py +67 -0
  1665. pyrogram/raw/types/auth/code_type_fragment_sms.py +67 -0
  1666. pyrogram/raw/types/auth/code_type_missed_call.py +67 -0
  1667. pyrogram/raw/types/auth/code_type_sms.py +67 -0
  1668. pyrogram/raw/types/auth/exported_authorization.py +89 -0
  1669. pyrogram/raw/types/auth/logged_out.py +84 -0
  1670. pyrogram/raw/types/auth/login_token.py +90 -0
  1671. pyrogram/raw/types/auth/login_token_migrate_to.py +90 -0
  1672. pyrogram/raw/types/auth/login_token_success.py +82 -0
  1673. pyrogram/raw/types/auth/password_recovery.py +81 -0
  1674. pyrogram/raw/types/auth/sent_code.py +115 -0
  1675. pyrogram/raw/types/auth/sent_code_success.py +86 -0
  1676. pyrogram/raw/types/auth/sent_code_type_app.py +72 -0
  1677. pyrogram/raw/types/auth/sent_code_type_call.py +72 -0
  1678. pyrogram/raw/types/auth/sent_code_type_email_code.py +112 -0
  1679. pyrogram/raw/types/auth/sent_code_type_firebase_sms.py +119 -0
  1680. pyrogram/raw/types/auth/sent_code_type_flash_call.py +72 -0
  1681. pyrogram/raw/types/auth/sent_code_type_fragment_sms.py +80 -0
  1682. pyrogram/raw/types/auth/sent_code_type_missed_call.py +80 -0
  1683. pyrogram/raw/types/auth/sent_code_type_set_up_email_required.py +78 -0
  1684. pyrogram/raw/types/auth/sent_code_type_sms.py +72 -0
  1685. pyrogram/raw/types/auth/sent_code_type_sms_phrase.py +75 -0
  1686. pyrogram/raw/types/auth/sent_code_type_sms_word.py +75 -0
  1687. pyrogram/raw/types/authorization.py +207 -0
  1688. pyrogram/raw/types/auto_download_settings.py +144 -0
  1689. pyrogram/raw/types/auto_save_exception.py +80 -0
  1690. pyrogram/raw/types/auto_save_settings.py +87 -0
  1691. pyrogram/raw/types/available_effect.py +114 -0
  1692. pyrogram/raw/types/available_reaction.py +154 -0
  1693. pyrogram/raw/types/bad_msg_notification.py +88 -0
  1694. pyrogram/raw/types/bad_server_salt.py +96 -0
  1695. pyrogram/raw/types/bank_card_open_url.py +80 -0
  1696. pyrogram/raw/types/base_theme_arctic.py +67 -0
  1697. pyrogram/raw/types/base_theme_classic.py +67 -0
  1698. pyrogram/raw/types/base_theme_day.py +67 -0
  1699. pyrogram/raw/types/base_theme_night.py +67 -0
  1700. pyrogram/raw/types/base_theme_tinted.py +67 -0
  1701. pyrogram/raw/types/bind_auth_key_inner.py +104 -0
  1702. pyrogram/raw/types/birthday.py +91 -0
  1703. pyrogram/raw/types/boost.py +153 -0
  1704. pyrogram/raw/types/bot_app.py +132 -0
  1705. pyrogram/raw/types/bot_app_not_modified.py +67 -0
  1706. pyrogram/raw/types/bot_app_settings.py +111 -0
  1707. pyrogram/raw/types/bot_business_connection.py +110 -0
  1708. pyrogram/raw/types/bot_command.py +89 -0
  1709. pyrogram/raw/types/bot_command_scope_chat_admins.py +67 -0
  1710. pyrogram/raw/types/bot_command_scope_chats.py +67 -0
  1711. pyrogram/raw/types/bot_command_scope_default.py +67 -0
  1712. pyrogram/raw/types/bot_command_scope_peer.py +72 -0
  1713. pyrogram/raw/types/bot_command_scope_peer_admins.py +72 -0
  1714. pyrogram/raw/types/bot_command_scope_peer_user.py +80 -0
  1715. pyrogram/raw/types/bot_command_scope_users.py +67 -0
  1716. pyrogram/raw/types/bot_info.py +159 -0
  1717. pyrogram/raw/types/bot_inline_media_result.py +128 -0
  1718. pyrogram/raw/types/bot_inline_message_media_auto.py +100 -0
  1719. pyrogram/raw/types/bot_inline_message_media_contact.py +108 -0
  1720. pyrogram/raw/types/bot_inline_message_media_geo.py +111 -0
  1721. pyrogram/raw/types/bot_inline_message_media_invoice.py +130 -0
  1722. pyrogram/raw/types/bot_inline_message_media_venue.py +124 -0
  1723. pyrogram/raw/types/bot_inline_message_media_web_page.py +132 -0
  1724. pyrogram/raw/types/bot_inline_message_text.py +106 -0
  1725. pyrogram/raw/types/bot_inline_result.py +137 -0
  1726. pyrogram/raw/types/bot_menu_button.py +89 -0
  1727. pyrogram/raw/types/bot_menu_button_commands.py +76 -0
  1728. pyrogram/raw/types/bot_menu_button_default.py +76 -0
  1729. pyrogram/raw/types/bot_preview_media.py +91 -0
  1730. pyrogram/raw/types/bot_verification.py +88 -0
  1731. pyrogram/raw/types/bot_verifier_settings.py +97 -0
  1732. pyrogram/raw/types/bots/__init__.py +27 -0
  1733. pyrogram/raw/types/bots/bot_info.py +97 -0
  1734. pyrogram/raw/types/bots/popular_app_bots.py +92 -0
  1735. pyrogram/raw/types/bots/preview_info.py +89 -0
  1736. pyrogram/raw/types/broadcast_revenue_balances.py +96 -0
  1737. pyrogram/raw/types/broadcast_revenue_transaction_proceeds.py +88 -0
  1738. pyrogram/raw/types/broadcast_revenue_transaction_refund.py +88 -0
  1739. pyrogram/raw/types/broadcast_revenue_transaction_withdrawal.py +120 -0
  1740. pyrogram/raw/types/business_away_message.py +96 -0
  1741. pyrogram/raw/types/business_away_message_schedule_always.py +67 -0
  1742. pyrogram/raw/types/business_away_message_schedule_custom.py +80 -0
  1743. pyrogram/raw/types/business_away_message_schedule_outside_work_hours.py +67 -0
  1744. pyrogram/raw/types/business_bot_recipients.py +116 -0
  1745. pyrogram/raw/types/business_chat_link.py +119 -0
  1746. pyrogram/raw/types/business_greeting_message.py +88 -0
  1747. pyrogram/raw/types/business_intro.py +92 -0
  1748. pyrogram/raw/types/business_location.py +84 -0
  1749. pyrogram/raw/types/business_recipients.py +106 -0
  1750. pyrogram/raw/types/business_weekly_open.py +80 -0
  1751. pyrogram/raw/types/business_work_hours.py +88 -0
  1752. pyrogram/raw/types/cdn_config.py +81 -0
  1753. pyrogram/raw/types/cdn_public_key.py +80 -0
  1754. pyrogram/raw/types/channel.py +389 -0
  1755. pyrogram/raw/types/channel_admin_log_event.py +96 -0
  1756. pyrogram/raw/types/channel_admin_log_event_action_change_about.py +80 -0
  1757. pyrogram/raw/types/channel_admin_log_event_action_change_available_reactions.py +80 -0
  1758. pyrogram/raw/types/channel_admin_log_event_action_change_emoji_status.py +80 -0
  1759. pyrogram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py +80 -0
  1760. pyrogram/raw/types/channel_admin_log_event_action_change_history_ttl.py +80 -0
  1761. pyrogram/raw/types/channel_admin_log_event_action_change_linked_chat.py +80 -0
  1762. pyrogram/raw/types/channel_admin_log_event_action_change_location.py +80 -0
  1763. pyrogram/raw/types/channel_admin_log_event_action_change_peer_color.py +80 -0
  1764. pyrogram/raw/types/channel_admin_log_event_action_change_photo.py +80 -0
  1765. pyrogram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py +80 -0
  1766. pyrogram/raw/types/channel_admin_log_event_action_change_sticker_set.py +80 -0
  1767. pyrogram/raw/types/channel_admin_log_event_action_change_title.py +80 -0
  1768. pyrogram/raw/types/channel_admin_log_event_action_change_username.py +80 -0
  1769. pyrogram/raw/types/channel_admin_log_event_action_change_usernames.py +80 -0
  1770. pyrogram/raw/types/channel_admin_log_event_action_change_wallpaper.py +80 -0
  1771. pyrogram/raw/types/channel_admin_log_event_action_create_topic.py +72 -0
  1772. pyrogram/raw/types/channel_admin_log_event_action_default_banned_rights.py +80 -0
  1773. pyrogram/raw/types/channel_admin_log_event_action_delete_message.py +72 -0
  1774. pyrogram/raw/types/channel_admin_log_event_action_delete_topic.py +72 -0
  1775. pyrogram/raw/types/channel_admin_log_event_action_discard_group_call.py +72 -0
  1776. pyrogram/raw/types/channel_admin_log_event_action_edit_message.py +80 -0
  1777. pyrogram/raw/types/channel_admin_log_event_action_edit_topic.py +80 -0
  1778. pyrogram/raw/types/channel_admin_log_event_action_exported_invite_delete.py +72 -0
  1779. pyrogram/raw/types/channel_admin_log_event_action_exported_invite_edit.py +80 -0
  1780. pyrogram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py +72 -0
  1781. pyrogram/raw/types/channel_admin_log_event_action_participant_invite.py +72 -0
  1782. pyrogram/raw/types/channel_admin_log_event_action_participant_join.py +67 -0
  1783. pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py +80 -0
  1784. pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_request.py +80 -0
  1785. pyrogram/raw/types/channel_admin_log_event_action_participant_leave.py +67 -0
  1786. pyrogram/raw/types/channel_admin_log_event_action_participant_mute.py +72 -0
  1787. pyrogram/raw/types/channel_admin_log_event_action_participant_sub_extend.py +80 -0
  1788. pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py +80 -0
  1789. pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py +80 -0
  1790. pyrogram/raw/types/channel_admin_log_event_action_participant_unmute.py +72 -0
  1791. pyrogram/raw/types/channel_admin_log_event_action_participant_volume.py +72 -0
  1792. pyrogram/raw/types/channel_admin_log_event_action_pin_topic.py +86 -0
  1793. pyrogram/raw/types/channel_admin_log_event_action_send_message.py +72 -0
  1794. pyrogram/raw/types/channel_admin_log_event_action_start_group_call.py +72 -0
  1795. pyrogram/raw/types/channel_admin_log_event_action_stop_poll.py +72 -0
  1796. pyrogram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py +72 -0
  1797. pyrogram/raw/types/channel_admin_log_event_action_toggle_forum.py +72 -0
  1798. pyrogram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py +72 -0
  1799. pyrogram/raw/types/channel_admin_log_event_action_toggle_invites.py +72 -0
  1800. pyrogram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py +72 -0
  1801. pyrogram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py +72 -0
  1802. pyrogram/raw/types/channel_admin_log_event_action_toggle_signature_profiles.py +72 -0
  1803. pyrogram/raw/types/channel_admin_log_event_action_toggle_signatures.py +72 -0
  1804. pyrogram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py +80 -0
  1805. pyrogram/raw/types/channel_admin_log_event_action_update_pinned.py +72 -0
  1806. pyrogram/raw/types/channel_admin_log_events_filter.py +180 -0
  1807. pyrogram/raw/types/channel_forbidden.py +111 -0
  1808. pyrogram/raw/types/channel_full.py +581 -0
  1809. pyrogram/raw/types/channel_location.py +80 -0
  1810. pyrogram/raw/types/channel_location_empty.py +67 -0
  1811. pyrogram/raw/types/channel_messages_filter.py +80 -0
  1812. pyrogram/raw/types/channel_messages_filter_empty.py +67 -0
  1813. pyrogram/raw/types/channel_participant.py +91 -0
  1814. pyrogram/raw/types/channel_participant_admin.py +128 -0
  1815. pyrogram/raw/types/channel_participant_banned.py +104 -0
  1816. pyrogram/raw/types/channel_participant_creator.py +91 -0
  1817. pyrogram/raw/types/channel_participant_left.py +72 -0
  1818. pyrogram/raw/types/channel_participant_self.py +105 -0
  1819. pyrogram/raw/types/channel_participants_admins.py +67 -0
  1820. pyrogram/raw/types/channel_participants_banned.py +72 -0
  1821. pyrogram/raw/types/channel_participants_bots.py +67 -0
  1822. pyrogram/raw/types/channel_participants_contacts.py +72 -0
  1823. pyrogram/raw/types/channel_participants_kicked.py +72 -0
  1824. pyrogram/raw/types/channel_participants_mentions.py +84 -0
  1825. pyrogram/raw/types/channel_participants_recent.py +67 -0
  1826. pyrogram/raw/types/channel_participants_search.py +72 -0
  1827. pyrogram/raw/types/channels/__init__.py +32 -0
  1828. pyrogram/raw/types/channels/admin_log_results.py +97 -0
  1829. pyrogram/raw/types/channels/channel_participant.py +97 -0
  1830. pyrogram/raw/types/channels/channel_participants.py +105 -0
  1831. pyrogram/raw/types/channels/channel_participants_not_modified.py +76 -0
  1832. pyrogram/raw/types/channels/send_as_peers.py +97 -0
  1833. pyrogram/raw/types/channels/sponsored_message_report_result_ads_hidden.py +76 -0
  1834. pyrogram/raw/types/channels/sponsored_message_report_result_choose_option.py +89 -0
  1835. pyrogram/raw/types/channels/sponsored_message_report_result_reported.py +76 -0
  1836. pyrogram/raw/types/chat.py +180 -0
  1837. pyrogram/raw/types/chat_admin_rights.py +156 -0
  1838. pyrogram/raw/types/chat_admin_with_invites.py +88 -0
  1839. pyrogram/raw/types/chat_banned_rights.py +194 -0
  1840. pyrogram/raw/types/chat_empty.py +72 -0
  1841. pyrogram/raw/types/chat_forbidden.py +80 -0
  1842. pyrogram/raw/types/chat_full.py +240 -0
  1843. pyrogram/raw/types/chat_invite.py +209 -0
  1844. pyrogram/raw/types/chat_invite_already.py +81 -0
  1845. pyrogram/raw/types/chat_invite_exported.py +190 -0
  1846. pyrogram/raw/types/chat_invite_importer.py +112 -0
  1847. pyrogram/raw/types/chat_invite_peek.py +89 -0
  1848. pyrogram/raw/types/chat_invite_public_join_requests.py +76 -0
  1849. pyrogram/raw/types/chat_onlines.py +81 -0
  1850. pyrogram/raw/types/chat_participant.py +88 -0
  1851. pyrogram/raw/types/chat_participant_admin.py +88 -0
  1852. pyrogram/raw/types/chat_participant_creator.py +72 -0
  1853. pyrogram/raw/types/chat_participants.py +88 -0
  1854. pyrogram/raw/types/chat_participants_forbidden.py +84 -0
  1855. pyrogram/raw/types/chat_photo.py +97 -0
  1856. pyrogram/raw/types/chat_photo_empty.py +67 -0
  1857. pyrogram/raw/types/chat_reactions_all.py +72 -0
  1858. pyrogram/raw/types/chat_reactions_none.py +67 -0
  1859. pyrogram/raw/types/chat_reactions_some.py +72 -0
  1860. pyrogram/raw/types/chatlists/__init__.py +29 -0
  1861. pyrogram/raw/types/chatlists/chatlist_invite.py +122 -0
  1862. pyrogram/raw/types/chatlists/chatlist_invite_already.py +113 -0
  1863. pyrogram/raw/types/chatlists/chatlist_updates.py +97 -0
  1864. pyrogram/raw/types/chatlists/exported_chatlist_invite.py +89 -0
  1865. pyrogram/raw/types/chatlists/exported_invites.py +97 -0
  1866. pyrogram/raw/types/client_dh_inner_data.py +96 -0
  1867. pyrogram/raw/types/code_settings.py +130 -0
  1868. pyrogram/raw/types/config.py +453 -0
  1869. pyrogram/raw/types/connected_bot.py +88 -0
  1870. pyrogram/raw/types/connected_bot_star_ref.py +129 -0
  1871. pyrogram/raw/types/contact.py +80 -0
  1872. pyrogram/raw/types/contact_birthday.py +80 -0
  1873. pyrogram/raw/types/contact_status.py +89 -0
  1874. pyrogram/raw/types/contacts/__init__.py +35 -0
  1875. pyrogram/raw/types/contacts/blocked.py +97 -0
  1876. pyrogram/raw/types/contacts/blocked_slice.py +105 -0
  1877. pyrogram/raw/types/contacts/contact_birthdays.py +89 -0
  1878. pyrogram/raw/types/contacts/contacts.py +97 -0
  1879. pyrogram/raw/types/contacts/contacts_not_modified.py +76 -0
  1880. pyrogram/raw/types/contacts/found.py +105 -0
  1881. pyrogram/raw/types/contacts/imported_contacts.py +105 -0
  1882. pyrogram/raw/types/contacts/resolved_peer.py +98 -0
  1883. pyrogram/raw/types/contacts/top_peers.py +97 -0
  1884. pyrogram/raw/types/contacts/top_peers_disabled.py +76 -0
  1885. pyrogram/raw/types/contacts/top_peers_not_modified.py +76 -0
  1886. pyrogram/raw/types/data_json.py +83 -0
  1887. pyrogram/raw/types/dc_option.py +135 -0
  1888. pyrogram/raw/types/default_history_ttl.py +81 -0
  1889. pyrogram/raw/types/destroy_auth_key_fail.py +76 -0
  1890. pyrogram/raw/types/destroy_auth_key_none.py +76 -0
  1891. pyrogram/raw/types/destroy_auth_key_ok.py +76 -0
  1892. pyrogram/raw/types/destroy_session_none.py +81 -0
  1893. pyrogram/raw/types/destroy_session_ok.py +81 -0
  1894. pyrogram/raw/types/dh_gen_fail.py +97 -0
  1895. pyrogram/raw/types/dh_gen_ok.py +97 -0
  1896. pyrogram/raw/types/dh_gen_retry.py +97 -0
  1897. pyrogram/raw/types/dialog.py +185 -0
  1898. pyrogram/raw/types/dialog_filter.py +178 -0
  1899. pyrogram/raw/types/dialog_filter_chatlist.py +128 -0
  1900. pyrogram/raw/types/dialog_filter_default.py +67 -0
  1901. pyrogram/raw/types/dialog_filter_suggested.py +89 -0
  1902. pyrogram/raw/types/dialog_folder.py +128 -0
  1903. pyrogram/raw/types/dialog_peer.py +81 -0
  1904. pyrogram/raw/types/dialog_peer_folder.py +81 -0
  1905. pyrogram/raw/types/document.py +162 -0
  1906. pyrogram/raw/types/document_attribute_animated.py +67 -0
  1907. pyrogram/raw/types/document_attribute_audio.py +107 -0
  1908. pyrogram/raw/types/document_attribute_custom_emoji.py +94 -0
  1909. pyrogram/raw/types/document_attribute_filename.py +72 -0
  1910. pyrogram/raw/types/document_attribute_has_stickers.py +67 -0
  1911. pyrogram/raw/types/document_attribute_image_size.py +80 -0
  1912. pyrogram/raw/types/document_attribute_sticker.py +98 -0
  1913. pyrogram/raw/types/document_attribute_video.py +135 -0
  1914. pyrogram/raw/types/document_empty.py +84 -0
  1915. pyrogram/raw/types/draft_message.py +133 -0
  1916. pyrogram/raw/types/draft_message_empty.py +75 -0
  1917. pyrogram/raw/types/email_verification_apple.py +72 -0
  1918. pyrogram/raw/types/email_verification_code.py +72 -0
  1919. pyrogram/raw/types/email_verification_google.py +72 -0
  1920. pyrogram/raw/types/email_verify_purpose_login_change.py +67 -0
  1921. pyrogram/raw/types/email_verify_purpose_login_setup.py +80 -0
  1922. pyrogram/raw/types/email_verify_purpose_passport.py +67 -0
  1923. pyrogram/raw/types/emoji_group.py +88 -0
  1924. pyrogram/raw/types/emoji_group_greeting.py +88 -0
  1925. pyrogram/raw/types/emoji_group_premium.py +80 -0
  1926. pyrogram/raw/types/emoji_keyword.py +80 -0
  1927. pyrogram/raw/types/emoji_keyword_deleted.py +80 -0
  1928. pyrogram/raw/types/emoji_keywords_difference.py +106 -0
  1929. pyrogram/raw/types/emoji_language.py +81 -0
  1930. pyrogram/raw/types/emoji_list.py +93 -0
  1931. pyrogram/raw/types/emoji_list_not_modified.py +80 -0
  1932. pyrogram/raw/types/emoji_status.py +83 -0
  1933. pyrogram/raw/types/emoji_status_collectible.py +147 -0
  1934. pyrogram/raw/types/emoji_status_empty.py +67 -0
  1935. pyrogram/raw/types/emoji_url.py +81 -0
  1936. pyrogram/raw/types/encrypted_chat.py +130 -0
  1937. pyrogram/raw/types/encrypted_chat_discarded.py +90 -0
  1938. pyrogram/raw/types/encrypted_chat_empty.py +82 -0
  1939. pyrogram/raw/types/encrypted_chat_requested.py +133 -0
  1940. pyrogram/raw/types/encrypted_chat_waiting.py +114 -0
  1941. pyrogram/raw/types/encrypted_file.py +113 -0
  1942. pyrogram/raw/types/encrypted_file_empty.py +76 -0
  1943. pyrogram/raw/types/encrypted_message.py +104 -0
  1944. pyrogram/raw/types/encrypted_message_service.py +96 -0
  1945. pyrogram/raw/types/exported_chatlist_invite.py +100 -0
  1946. pyrogram/raw/types/exported_contact_token.py +89 -0
  1947. pyrogram/raw/types/exported_message_link.py +89 -0
  1948. pyrogram/raw/types/exported_story_link.py +81 -0
  1949. pyrogram/raw/types/fact_check.py +108 -0
  1950. pyrogram/raw/types/file_hash.py +99 -0
  1951. pyrogram/raw/types/folder.py +110 -0
  1952. pyrogram/raw/types/folder_peer.py +80 -0
  1953. pyrogram/raw/types/forum_topic.py +211 -0
  1954. pyrogram/raw/types/forum_topic_deleted.py +72 -0
  1955. pyrogram/raw/types/found_story.py +80 -0
  1956. pyrogram/raw/types/fragment/__init__.py +25 -0
  1957. pyrogram/raw/types/fragment/collectible_info.py +121 -0
  1958. pyrogram/raw/types/game.py +124 -0
  1959. pyrogram/raw/types/geo_point.py +99 -0
  1960. pyrogram/raw/types/geo_point_address.py +101 -0
  1961. pyrogram/raw/types/geo_point_empty.py +67 -0
  1962. pyrogram/raw/types/global_privacy_settings.py +106 -0
  1963. pyrogram/raw/types/group_call.py +208 -0
  1964. pyrogram/raw/types/group_call_discarded.py +88 -0
  1965. pyrogram/raw/types/group_call_participant.py +206 -0
  1966. pyrogram/raw/types/group_call_participant_video.py +97 -0
  1967. pyrogram/raw/types/group_call_participant_video_source_group.py +80 -0
  1968. pyrogram/raw/types/group_call_stream_channel.py +88 -0
  1969. pyrogram/raw/types/help/__init__.py +56 -0
  1970. pyrogram/raw/types/help/app_config.py +89 -0
  1971. pyrogram/raw/types/help/app_config_not_modified.py +76 -0
  1972. pyrogram/raw/types/help/app_update.py +142 -0
  1973. pyrogram/raw/types/help/config_simple.py +88 -0
  1974. pyrogram/raw/types/help/countries_list.py +89 -0
  1975. pyrogram/raw/types/help/countries_list_not_modified.py +76 -0
  1976. pyrogram/raw/types/help/country.py +105 -0
  1977. pyrogram/raw/types/help/country_code.py +94 -0
  1978. pyrogram/raw/types/help/deep_link_info.py +99 -0
  1979. pyrogram/raw/types/help/deep_link_info_empty.py +76 -0
  1980. pyrogram/raw/types/help/invite_text.py +81 -0
  1981. pyrogram/raw/types/help/no_app_update.py +76 -0
  1982. pyrogram/raw/types/help/passport_config.py +89 -0
  1983. pyrogram/raw/types/help/passport_config_not_modified.py +76 -0
  1984. pyrogram/raw/types/help/peer_color_option.py +118 -0
  1985. pyrogram/raw/types/help/peer_color_profile_set.py +88 -0
  1986. pyrogram/raw/types/help/peer_color_set.py +72 -0
  1987. pyrogram/raw/types/help/peer_colors.py +90 -0
  1988. pyrogram/raw/types/help/peer_colors_not_modified.py +77 -0
  1989. pyrogram/raw/types/help/premium_promo.py +121 -0
  1990. pyrogram/raw/types/help/promo_data.py +131 -0
  1991. pyrogram/raw/types/help/promo_data_empty.py +81 -0
  1992. pyrogram/raw/types/help/recent_me_urls.py +97 -0
  1993. pyrogram/raw/types/help/support.py +89 -0
  1994. pyrogram/raw/types/help/support_name.py +81 -0
  1995. pyrogram/raw/types/help/terms_of_service.py +105 -0
  1996. pyrogram/raw/types/help/terms_of_service_update.py +89 -0
  1997. pyrogram/raw/types/help/terms_of_service_update_empty.py +81 -0
  1998. pyrogram/raw/types/help/timezones_list.py +89 -0
  1999. pyrogram/raw/types/help/timezones_list_not_modified.py +76 -0
  2000. pyrogram/raw/types/help/user_info.py +106 -0
  2001. pyrogram/raw/types/help/user_info_empty.py +77 -0
  2002. pyrogram/raw/types/high_score.py +88 -0
  2003. pyrogram/raw/types/http_wait.py +88 -0
  2004. pyrogram/raw/types/imported_contact.py +80 -0
  2005. pyrogram/raw/types/inline_bot_switch_pm.py +80 -0
  2006. pyrogram/raw/types/inline_bot_web_view.py +80 -0
  2007. pyrogram/raw/types/inline_query_peer_type_bot_pm.py +67 -0
  2008. pyrogram/raw/types/inline_query_peer_type_broadcast.py +67 -0
  2009. pyrogram/raw/types/inline_query_peer_type_chat.py +67 -0
  2010. pyrogram/raw/types/inline_query_peer_type_megagroup.py +67 -0
  2011. pyrogram/raw/types/inline_query_peer_type_pm.py +67 -0
  2012. pyrogram/raw/types/inline_query_peer_type_same_bot_pm.py +67 -0
  2013. pyrogram/raw/types/input_app_event.py +96 -0
  2014. pyrogram/raw/types/input_bot_app_id.py +80 -0
  2015. pyrogram/raw/types/input_bot_app_short_name.py +80 -0
  2016. pyrogram/raw/types/input_bot_inline_message_game.py +76 -0
  2017. pyrogram/raw/types/input_bot_inline_message_id.py +88 -0
  2018. pyrogram/raw/types/input_bot_inline_message_id64.py +96 -0
  2019. pyrogram/raw/types/input_bot_inline_message_media_auto.py +100 -0
  2020. pyrogram/raw/types/input_bot_inline_message_media_contact.py +108 -0
  2021. pyrogram/raw/types/input_bot_inline_message_media_geo.py +111 -0
  2022. pyrogram/raw/types/input_bot_inline_message_media_invoice.py +134 -0
  2023. pyrogram/raw/types/input_bot_inline_message_media_venue.py +124 -0
  2024. pyrogram/raw/types/input_bot_inline_message_media_web_page.py +126 -0
  2025. pyrogram/raw/types/input_bot_inline_message_text.py +106 -0
  2026. pyrogram/raw/types/input_bot_inline_result.py +137 -0
  2027. pyrogram/raw/types/input_bot_inline_result_document.py +116 -0
  2028. pyrogram/raw/types/input_bot_inline_result_game.py +88 -0
  2029. pyrogram/raw/types/input_bot_inline_result_photo.py +96 -0
  2030. pyrogram/raw/types/input_business_away_message.py +96 -0
  2031. pyrogram/raw/types/input_business_bot_recipients.py +116 -0
  2032. pyrogram/raw/types/input_business_chat_link.py +93 -0
  2033. pyrogram/raw/types/input_business_greeting_message.py +88 -0
  2034. pyrogram/raw/types/input_business_intro.py +92 -0
  2035. pyrogram/raw/types/input_business_recipients.py +106 -0
  2036. pyrogram/raw/types/input_channel.py +80 -0
  2037. pyrogram/raw/types/input_channel_empty.py +67 -0
  2038. pyrogram/raw/types/input_channel_from_message.py +88 -0
  2039. pyrogram/raw/types/input_chat_photo.py +72 -0
  2040. pyrogram/raw/types/input_chat_photo_empty.py +67 -0
  2041. pyrogram/raw/types/input_chat_uploaded_photo.py +105 -0
  2042. pyrogram/raw/types/input_chatlist_dialog_filter.py +72 -0
  2043. pyrogram/raw/types/input_check_password_empty.py +67 -0
  2044. pyrogram/raw/types/input_check_password_srp.py +88 -0
  2045. pyrogram/raw/types/input_client_proxy.py +80 -0
  2046. pyrogram/raw/types/input_collectible_phone.py +72 -0
  2047. pyrogram/raw/types/input_collectible_username.py +72 -0
  2048. pyrogram/raw/types/input_dialog_peer.py +72 -0
  2049. pyrogram/raw/types/input_dialog_peer_folder.py +72 -0
  2050. pyrogram/raw/types/input_document.py +88 -0
  2051. pyrogram/raw/types/input_document_empty.py +67 -0
  2052. pyrogram/raw/types/input_document_file_location.py +96 -0
  2053. pyrogram/raw/types/input_emoji_status_collectible.py +83 -0
  2054. pyrogram/raw/types/input_encrypted_chat.py +80 -0
  2055. pyrogram/raw/types/input_encrypted_file.py +80 -0
  2056. pyrogram/raw/types/input_encrypted_file_big_uploaded.py +88 -0
  2057. pyrogram/raw/types/input_encrypted_file_empty.py +67 -0
  2058. pyrogram/raw/types/input_encrypted_file_location.py +80 -0
  2059. pyrogram/raw/types/input_encrypted_file_uploaded.py +96 -0
  2060. pyrogram/raw/types/input_file.py +96 -0
  2061. pyrogram/raw/types/input_file_big.py +88 -0
  2062. pyrogram/raw/types/input_file_location.py +96 -0
  2063. pyrogram/raw/types/input_file_story_document.py +72 -0
  2064. pyrogram/raw/types/input_folder_peer.py +80 -0
  2065. pyrogram/raw/types/input_game_id.py +80 -0
  2066. pyrogram/raw/types/input_game_short_name.py +80 -0
  2067. pyrogram/raw/types/input_geo_point.py +91 -0
  2068. pyrogram/raw/types/input_geo_point_empty.py +67 -0
  2069. pyrogram/raw/types/input_group_call.py +80 -0
  2070. pyrogram/raw/types/input_group_call_stream.py +108 -0
  2071. pyrogram/raw/types/input_invoice_chat_invite_subscription.py +72 -0
  2072. pyrogram/raw/types/input_invoice_message.py +80 -0
  2073. pyrogram/raw/types/input_invoice_premium_gift_code.py +80 -0
  2074. pyrogram/raw/types/input_invoice_slug.py +72 -0
  2075. pyrogram/raw/types/input_invoice_star_gift.py +104 -0
  2076. pyrogram/raw/types/input_invoice_star_gift_transfer.py +80 -0
  2077. pyrogram/raw/types/input_invoice_star_gift_upgrade.py +80 -0
  2078. pyrogram/raw/types/input_invoice_stars.py +72 -0
  2079. pyrogram/raw/types/input_keyboard_button_request_peer.py +116 -0
  2080. pyrogram/raw/types/input_keyboard_button_url_auth.py +105 -0
  2081. pyrogram/raw/types/input_keyboard_button_user_profile.py +80 -0
  2082. pyrogram/raw/types/input_media_area_channel_post.py +88 -0
  2083. pyrogram/raw/types/input_media_area_venue.py +88 -0
  2084. pyrogram/raw/types/input_media_contact.py +96 -0
  2085. pyrogram/raw/types/input_media_dice.py +72 -0
  2086. pyrogram/raw/types/input_media_document.py +117 -0
  2087. pyrogram/raw/types/input_media_document_external.py +108 -0
  2088. pyrogram/raw/types/input_media_empty.py +67 -0
  2089. pyrogram/raw/types/input_media_game.py +72 -0
  2090. pyrogram/raw/types/input_media_geo_live.py +107 -0
  2091. pyrogram/raw/types/input_media_geo_point.py +72 -0
  2092. pyrogram/raw/types/input_media_invoice.py +144 -0
  2093. pyrogram/raw/types/input_media_paid_media.py +91 -0
  2094. pyrogram/raw/types/input_media_photo.py +89 -0
  2095. pyrogram/raw/types/input_media_photo_external.py +89 -0
  2096. pyrogram/raw/types/input_media_poll.py +103 -0
  2097. pyrogram/raw/types/input_media_story.py +80 -0
  2098. pyrogram/raw/types/input_media_uploaded_document.py +156 -0
  2099. pyrogram/raw/types/input_media_uploaded_photo.py +99 -0
  2100. pyrogram/raw/types/input_media_venue.py +112 -0
  2101. pyrogram/raw/types/input_media_web_page.py +92 -0
  2102. pyrogram/raw/types/input_message_callback_query.py +80 -0
  2103. pyrogram/raw/types/input_message_entity_mention_name.py +88 -0
  2104. pyrogram/raw/types/input_message_id.py +72 -0
  2105. pyrogram/raw/types/input_message_pinned.py +67 -0
  2106. pyrogram/raw/types/input_message_reply_to.py +72 -0
  2107. pyrogram/raw/types/input_messages_filter_chat_photos.py +67 -0
  2108. pyrogram/raw/types/input_messages_filter_contacts.py +67 -0
  2109. pyrogram/raw/types/input_messages_filter_document.py +67 -0
  2110. pyrogram/raw/types/input_messages_filter_empty.py +67 -0
  2111. pyrogram/raw/types/input_messages_filter_geo.py +67 -0
  2112. pyrogram/raw/types/input_messages_filter_gif.py +67 -0
  2113. pyrogram/raw/types/input_messages_filter_music.py +67 -0
  2114. pyrogram/raw/types/input_messages_filter_my_mentions.py +67 -0
  2115. pyrogram/raw/types/input_messages_filter_phone_calls.py +72 -0
  2116. pyrogram/raw/types/input_messages_filter_photo_video.py +67 -0
  2117. pyrogram/raw/types/input_messages_filter_photos.py +67 -0
  2118. pyrogram/raw/types/input_messages_filter_pinned.py +67 -0
  2119. pyrogram/raw/types/input_messages_filter_round_video.py +67 -0
  2120. pyrogram/raw/types/input_messages_filter_round_voice.py +67 -0
  2121. pyrogram/raw/types/input_messages_filter_url.py +67 -0
  2122. pyrogram/raw/types/input_messages_filter_video.py +67 -0
  2123. pyrogram/raw/types/input_messages_filter_voice.py +67 -0
  2124. pyrogram/raw/types/input_notify_broadcasts.py +67 -0
  2125. pyrogram/raw/types/input_notify_chats.py +67 -0
  2126. pyrogram/raw/types/input_notify_forum_topic.py +80 -0
  2127. pyrogram/raw/types/input_notify_peer.py +72 -0
  2128. pyrogram/raw/types/input_notify_users.py +67 -0
  2129. pyrogram/raw/types/input_payment_credentials.py +80 -0
  2130. pyrogram/raw/types/input_payment_credentials_apple_pay.py +72 -0
  2131. pyrogram/raw/types/input_payment_credentials_google_pay.py +72 -0
  2132. pyrogram/raw/types/input_payment_credentials_saved.py +80 -0
  2133. pyrogram/raw/types/input_peer_channel.py +80 -0
  2134. pyrogram/raw/types/input_peer_channel_from_message.py +88 -0
  2135. pyrogram/raw/types/input_peer_chat.py +72 -0
  2136. pyrogram/raw/types/input_peer_empty.py +67 -0
  2137. pyrogram/raw/types/input_peer_notify_settings.py +131 -0
  2138. pyrogram/raw/types/input_peer_photo_file_location.py +88 -0
  2139. pyrogram/raw/types/input_peer_self.py +67 -0
  2140. pyrogram/raw/types/input_peer_user.py +80 -0
  2141. pyrogram/raw/types/input_peer_user_from_message.py +88 -0
  2142. pyrogram/raw/types/input_phone_call.py +80 -0
  2143. pyrogram/raw/types/input_phone_contact.py +96 -0
  2144. pyrogram/raw/types/input_photo.py +88 -0
  2145. pyrogram/raw/types/input_photo_empty.py +67 -0
  2146. pyrogram/raw/types/input_photo_file_location.py +96 -0
  2147. pyrogram/raw/types/input_photo_legacy_file_location.py +112 -0
  2148. pyrogram/raw/types/input_privacy_key_about.py +67 -0
  2149. pyrogram/raw/types/input_privacy_key_added_by_phone.py +67 -0
  2150. pyrogram/raw/types/input_privacy_key_birthday.py +67 -0
  2151. pyrogram/raw/types/input_privacy_key_chat_invite.py +67 -0
  2152. pyrogram/raw/types/input_privacy_key_forwards.py +67 -0
  2153. pyrogram/raw/types/input_privacy_key_phone_call.py +67 -0
  2154. pyrogram/raw/types/input_privacy_key_phone_number.py +67 -0
  2155. pyrogram/raw/types/input_privacy_key_phone_p2_p.py +67 -0
  2156. pyrogram/raw/types/input_privacy_key_profile_photo.py +67 -0
  2157. pyrogram/raw/types/input_privacy_key_star_gifts_auto_save.py +67 -0
  2158. pyrogram/raw/types/input_privacy_key_status_timestamp.py +67 -0
  2159. pyrogram/raw/types/input_privacy_key_voice_messages.py +67 -0
  2160. pyrogram/raw/types/input_privacy_value_allow_all.py +67 -0
  2161. pyrogram/raw/types/input_privacy_value_allow_bots.py +67 -0
  2162. pyrogram/raw/types/input_privacy_value_allow_chat_participants.py +72 -0
  2163. pyrogram/raw/types/input_privacy_value_allow_close_friends.py +67 -0
  2164. pyrogram/raw/types/input_privacy_value_allow_contacts.py +67 -0
  2165. pyrogram/raw/types/input_privacy_value_allow_premium.py +67 -0
  2166. pyrogram/raw/types/input_privacy_value_allow_users.py +72 -0
  2167. pyrogram/raw/types/input_privacy_value_disallow_all.py +67 -0
  2168. pyrogram/raw/types/input_privacy_value_disallow_bots.py +67 -0
  2169. pyrogram/raw/types/input_privacy_value_disallow_chat_participants.py +72 -0
  2170. pyrogram/raw/types/input_privacy_value_disallow_contacts.py +67 -0
  2171. pyrogram/raw/types/input_privacy_value_disallow_users.py +72 -0
  2172. pyrogram/raw/types/input_quick_reply_shortcut.py +72 -0
  2173. pyrogram/raw/types/input_quick_reply_shortcut_id.py +72 -0
  2174. pyrogram/raw/types/input_reply_to_message.py +121 -0
  2175. pyrogram/raw/types/input_reply_to_story.py +80 -0
  2176. pyrogram/raw/types/input_report_reason_child_abuse.py +67 -0
  2177. pyrogram/raw/types/input_report_reason_copyright.py +67 -0
  2178. pyrogram/raw/types/input_report_reason_fake.py +67 -0
  2179. pyrogram/raw/types/input_report_reason_geo_irrelevant.py +67 -0
  2180. pyrogram/raw/types/input_report_reason_illegal_drugs.py +67 -0
  2181. pyrogram/raw/types/input_report_reason_other.py +67 -0
  2182. pyrogram/raw/types/input_report_reason_personal_details.py +67 -0
  2183. pyrogram/raw/types/input_report_reason_pornography.py +67 -0
  2184. pyrogram/raw/types/input_report_reason_spam.py +67 -0
  2185. pyrogram/raw/types/input_report_reason_violence.py +67 -0
  2186. pyrogram/raw/types/input_saved_star_gift_chat.py +80 -0
  2187. pyrogram/raw/types/input_saved_star_gift_user.py +72 -0
  2188. pyrogram/raw/types/input_secure_file.py +80 -0
  2189. pyrogram/raw/types/input_secure_file_location.py +80 -0
  2190. pyrogram/raw/types/input_secure_file_uploaded.py +104 -0
  2191. pyrogram/raw/types/input_secure_value.py +144 -0
  2192. pyrogram/raw/types/input_single_media.py +100 -0
  2193. pyrogram/raw/types/input_stars_transaction.py +80 -0
  2194. pyrogram/raw/types/input_sticker_set_animated_emoji.py +67 -0
  2195. pyrogram/raw/types/input_sticker_set_animated_emoji_animations.py +67 -0
  2196. pyrogram/raw/types/input_sticker_set_dice.py +72 -0
  2197. pyrogram/raw/types/input_sticker_set_emoji_channel_default_statuses.py +67 -0
  2198. pyrogram/raw/types/input_sticker_set_emoji_default_statuses.py +67 -0
  2199. pyrogram/raw/types/input_sticker_set_emoji_default_topic_icons.py +67 -0
  2200. pyrogram/raw/types/input_sticker_set_emoji_generic_animations.py +67 -0
  2201. pyrogram/raw/types/input_sticker_set_empty.py +67 -0
  2202. pyrogram/raw/types/input_sticker_set_id.py +80 -0
  2203. pyrogram/raw/types/input_sticker_set_item.py +101 -0
  2204. pyrogram/raw/types/input_sticker_set_premium_gifts.py +67 -0
  2205. pyrogram/raw/types/input_sticker_set_short_name.py +72 -0
  2206. pyrogram/raw/types/input_sticker_set_thumb.py +80 -0
  2207. pyrogram/raw/types/input_stickered_media_document.py +72 -0
  2208. pyrogram/raw/types/input_stickered_media_photo.py +72 -0
  2209. pyrogram/raw/types/input_store_payment_gift_premium.py +88 -0
  2210. pyrogram/raw/types/input_store_payment_premium_gift_code.py +110 -0
  2211. pyrogram/raw/types/input_store_payment_premium_giveaway.py +147 -0
  2212. pyrogram/raw/types/input_store_payment_premium_subscription.py +78 -0
  2213. pyrogram/raw/types/input_store_payment_stars_gift.py +96 -0
  2214. pyrogram/raw/types/input_store_payment_stars_giveaway.py +163 -0
  2215. pyrogram/raw/types/input_store_payment_stars_topup.py +88 -0
  2216. pyrogram/raw/types/input_takeout_file_location.py +67 -0
  2217. pyrogram/raw/types/input_theme.py +80 -0
  2218. pyrogram/raw/types/input_theme_settings.py +127 -0
  2219. pyrogram/raw/types/input_theme_slug.py +72 -0
  2220. pyrogram/raw/types/input_user.py +80 -0
  2221. pyrogram/raw/types/input_user_empty.py +67 -0
  2222. pyrogram/raw/types/input_user_from_message.py +88 -0
  2223. pyrogram/raw/types/input_user_self.py +67 -0
  2224. pyrogram/raw/types/input_wall_paper.py +80 -0
  2225. pyrogram/raw/types/input_wall_paper_no_file.py +72 -0
  2226. pyrogram/raw/types/input_wall_paper_slug.py +72 -0
  2227. pyrogram/raw/types/input_web_document.py +96 -0
  2228. pyrogram/raw/types/input_web_file_audio_album_thumb_location.py +100 -0
  2229. pyrogram/raw/types/input_web_file_geo_point_location.py +112 -0
  2230. pyrogram/raw/types/input_web_file_location.py +80 -0
  2231. pyrogram/raw/types/invoice.py +173 -0
  2232. pyrogram/raw/types/ip_port.py +80 -0
  2233. pyrogram/raw/types/ip_port_secret.py +88 -0
  2234. pyrogram/raw/types/json_array.py +72 -0
  2235. pyrogram/raw/types/json_bool.py +72 -0
  2236. pyrogram/raw/types/json_null.py +67 -0
  2237. pyrogram/raw/types/json_number.py +72 -0
  2238. pyrogram/raw/types/json_object.py +72 -0
  2239. pyrogram/raw/types/json_object_value.py +80 -0
  2240. pyrogram/raw/types/json_string.py +72 -0
  2241. pyrogram/raw/types/keyboard_button.py +72 -0
  2242. pyrogram/raw/types/keyboard_button_buy.py +72 -0
  2243. pyrogram/raw/types/keyboard_button_callback.py +88 -0
  2244. pyrogram/raw/types/keyboard_button_copy.py +80 -0
  2245. pyrogram/raw/types/keyboard_button_game.py +72 -0
  2246. pyrogram/raw/types/keyboard_button_request_geo_location.py +72 -0
  2247. pyrogram/raw/types/keyboard_button_request_peer.py +96 -0
  2248. pyrogram/raw/types/keyboard_button_request_phone.py +72 -0
  2249. pyrogram/raw/types/keyboard_button_request_poll.py +83 -0
  2250. pyrogram/raw/types/keyboard_button_row.py +72 -0
  2251. pyrogram/raw/types/keyboard_button_simple_web_view.py +80 -0
  2252. pyrogram/raw/types/keyboard_button_switch_inline.py +98 -0
  2253. pyrogram/raw/types/keyboard_button_url.py +80 -0
  2254. pyrogram/raw/types/keyboard_button_url_auth.py +99 -0
  2255. pyrogram/raw/types/keyboard_button_user_profile.py +80 -0
  2256. pyrogram/raw/types/keyboard_button_web_view.py +80 -0
  2257. pyrogram/raw/types/labeled_price.py +80 -0
  2258. pyrogram/raw/types/lang_pack_difference.py +106 -0
  2259. pyrogram/raw/types/lang_pack_language.py +159 -0
  2260. pyrogram/raw/types/lang_pack_string.py +89 -0
  2261. pyrogram/raw/types/lang_pack_string_deleted.py +81 -0
  2262. pyrogram/raw/types/lang_pack_string_pluralized.py +136 -0
  2263. pyrogram/raw/types/mask_coords.py +96 -0
  2264. pyrogram/raw/types/media_area_channel_post.py +88 -0
  2265. pyrogram/raw/types/media_area_coordinates.py +115 -0
  2266. pyrogram/raw/types/media_area_geo_point.py +92 -0
  2267. pyrogram/raw/types/media_area_star_gift.py +80 -0
  2268. pyrogram/raw/types/media_area_suggested_reaction.py +94 -0
  2269. pyrogram/raw/types/media_area_url.py +80 -0
  2270. pyrogram/raw/types/media_area_venue.py +120 -0
  2271. pyrogram/raw/types/media_area_weather.py +96 -0
  2272. pyrogram/raw/types/message.py +398 -0
  2273. pyrogram/raw/types/message_action_boost_apply.py +72 -0
  2274. pyrogram/raw/types/message_action_bot_allowed.py +97 -0
  2275. pyrogram/raw/types/message_action_channel_create.py +72 -0
  2276. pyrogram/raw/types/message_action_channel_migrate_from.py +80 -0
  2277. pyrogram/raw/types/message_action_chat_add_user.py +72 -0
  2278. pyrogram/raw/types/message_action_chat_create.py +80 -0
  2279. pyrogram/raw/types/message_action_chat_delete_photo.py +67 -0
  2280. pyrogram/raw/types/message_action_chat_delete_user.py +72 -0
  2281. pyrogram/raw/types/message_action_chat_edit_photo.py +72 -0
  2282. pyrogram/raw/types/message_action_chat_edit_title.py +72 -0
  2283. pyrogram/raw/types/message_action_chat_joined_by_link.py +72 -0
  2284. pyrogram/raw/types/message_action_chat_joined_by_request.py +67 -0
  2285. pyrogram/raw/types/message_action_chat_migrate_to.py +72 -0
  2286. pyrogram/raw/types/message_action_contact_sign_up.py +67 -0
  2287. pyrogram/raw/types/message_action_custom_action.py +72 -0
  2288. pyrogram/raw/types/message_action_empty.py +67 -0
  2289. pyrogram/raw/types/message_action_game_score.py +80 -0
  2290. pyrogram/raw/types/message_action_geo_proximity_reached.py +88 -0
  2291. pyrogram/raw/types/message_action_gift_code.py +150 -0
  2292. pyrogram/raw/types/message_action_gift_premium.py +118 -0
  2293. pyrogram/raw/types/message_action_gift_stars.py +117 -0
  2294. pyrogram/raw/types/message_action_giveaway_launch.py +75 -0
  2295. pyrogram/raw/types/message_action_giveaway_results.py +88 -0
  2296. pyrogram/raw/types/message_action_group_call.py +83 -0
  2297. pyrogram/raw/types/message_action_group_call_scheduled.py +80 -0
  2298. pyrogram/raw/types/message_action_history_clear.py +67 -0
  2299. pyrogram/raw/types/message_action_invite_to_group_call.py +80 -0
  2300. pyrogram/raw/types/message_action_payment_refunded.py +107 -0
  2301. pyrogram/raw/types/message_action_payment_sent.py +112 -0
  2302. pyrogram/raw/types/message_action_payment_sent_me.py +138 -0
  2303. pyrogram/raw/types/message_action_phone_call.py +99 -0
  2304. pyrogram/raw/types/message_action_pin_message.py +67 -0
  2305. pyrogram/raw/types/message_action_prize_stars.py +104 -0
  2306. pyrogram/raw/types/message_action_requested_peer.py +80 -0
  2307. pyrogram/raw/types/message_action_requested_peer_sent_me.py +80 -0
  2308. pyrogram/raw/types/message_action_screenshot_taken.py +67 -0
  2309. pyrogram/raw/types/message_action_secure_values_sent.py +72 -0
  2310. pyrogram/raw/types/message_action_secure_values_sent_me.py +80 -0
  2311. pyrogram/raw/types/message_action_set_chat_theme.py +72 -0
  2312. pyrogram/raw/types/message_action_set_chat_wall_paper.py +86 -0
  2313. pyrogram/raw/types/message_action_set_messages_ttl.py +83 -0
  2314. pyrogram/raw/types/message_action_star_gift.py +176 -0
  2315. pyrogram/raw/types/message_action_star_gift_unique.py +145 -0
  2316. pyrogram/raw/types/message_action_suggest_profile_photo.py +72 -0
  2317. pyrogram/raw/types/message_action_topic_create.py +91 -0
  2318. pyrogram/raw/types/message_action_topic_edit.py +102 -0
  2319. pyrogram/raw/types/message_action_web_view_data_sent.py +72 -0
  2320. pyrogram/raw/types/message_action_web_view_data_sent_me.py +80 -0
  2321. pyrogram/raw/types/message_empty.py +84 -0
  2322. pyrogram/raw/types/message_entity_bank_card.py +80 -0
  2323. pyrogram/raw/types/message_entity_blockquote.py +88 -0
  2324. pyrogram/raw/types/message_entity_bold.py +80 -0
  2325. pyrogram/raw/types/message_entity_bot_command.py +80 -0
  2326. pyrogram/raw/types/message_entity_cashtag.py +80 -0
  2327. pyrogram/raw/types/message_entity_code.py +80 -0
  2328. pyrogram/raw/types/message_entity_custom_emoji.py +88 -0
  2329. pyrogram/raw/types/message_entity_email.py +80 -0
  2330. pyrogram/raw/types/message_entity_hashtag.py +80 -0
  2331. pyrogram/raw/types/message_entity_italic.py +80 -0
  2332. pyrogram/raw/types/message_entity_mention.py +80 -0
  2333. pyrogram/raw/types/message_entity_mention_name.py +88 -0
  2334. pyrogram/raw/types/message_entity_phone.py +80 -0
  2335. pyrogram/raw/types/message_entity_pre.py +88 -0
  2336. pyrogram/raw/types/message_entity_spoiler.py +80 -0
  2337. pyrogram/raw/types/message_entity_strike.py +80 -0
  2338. pyrogram/raw/types/message_entity_text_url.py +88 -0
  2339. pyrogram/raw/types/message_entity_underline.py +80 -0
  2340. pyrogram/raw/types/message_entity_unknown.py +80 -0
  2341. pyrogram/raw/types/message_entity_url.py +80 -0
  2342. pyrogram/raw/types/message_extended_media.py +72 -0
  2343. pyrogram/raw/types/message_extended_media_preview.py +103 -0
  2344. pyrogram/raw/types/message_fwd_header.py +179 -0
  2345. pyrogram/raw/types/message_media_contact.py +114 -0
  2346. pyrogram/raw/types/message_media_dice.py +90 -0
  2347. pyrogram/raw/types/message_media_document.py +154 -0
  2348. pyrogram/raw/types/message_media_empty.py +77 -0
  2349. pyrogram/raw/types/message_media_game.py +82 -0
  2350. pyrogram/raw/types/message_media_geo.py +82 -0
  2351. pyrogram/raw/types/message_media_geo_live.py +110 -0
  2352. pyrogram/raw/types/message_media_giveaway.py +149 -0
  2353. pyrogram/raw/types/message_media_giveaway_results.py +172 -0
  2354. pyrogram/raw/types/message_media_invoice.py +157 -0
  2355. pyrogram/raw/types/message_media_paid_media.py +90 -0
  2356. pyrogram/raw/types/message_media_photo.py +101 -0
  2357. pyrogram/raw/types/message_media_poll.py +90 -0
  2358. pyrogram/raw/types/message_media_story.py +108 -0
  2359. pyrogram/raw/types/message_media_unsupported.py +77 -0
  2360. pyrogram/raw/types/message_media_venue.py +122 -0
  2361. pyrogram/raw/types/message_media_web_page.py +108 -0
  2362. pyrogram/raw/types/message_peer_reaction.py +108 -0
  2363. pyrogram/raw/types/message_peer_vote.py +88 -0
  2364. pyrogram/raw/types/message_peer_vote_input_option.py +80 -0
  2365. pyrogram/raw/types/message_peer_vote_multiple.py +88 -0
  2366. pyrogram/raw/types/message_range.py +89 -0
  2367. pyrogram/raw/types/message_reactions.py +112 -0
  2368. pyrogram/raw/types/message_reactor.py +102 -0
  2369. pyrogram/raw/types/message_replies.py +125 -0
  2370. pyrogram/raw/types/message_reply_header.py +160 -0
  2371. pyrogram/raw/types/message_reply_story_header.py +80 -0
  2372. pyrogram/raw/types/message_report_option.py +80 -0
  2373. pyrogram/raw/types/message_service.py +179 -0
  2374. pyrogram/raw/types/message_views.py +94 -0
  2375. pyrogram/raw/types/messages/__init__.py +112 -0
  2376. pyrogram/raw/types/messages/affected_found_messages.py +105 -0
  2377. pyrogram/raw/types/messages/affected_history.py +103 -0
  2378. pyrogram/raw/types/messages/affected_messages.py +92 -0
  2379. pyrogram/raw/types/messages/all_stickers.py +91 -0
  2380. pyrogram/raw/types/messages/all_stickers_not_modified.py +78 -0
  2381. pyrogram/raw/types/messages/archived_stickers.py +89 -0
  2382. pyrogram/raw/types/messages/available_effects.py +97 -0
  2383. pyrogram/raw/types/messages/available_effects_not_modified.py +76 -0
  2384. pyrogram/raw/types/messages/available_reactions.py +89 -0
  2385. pyrogram/raw/types/messages/available_reactions_not_modified.py +76 -0
  2386. pyrogram/raw/types/messages/bot_app.py +101 -0
  2387. pyrogram/raw/types/messages/bot_callback_answer.py +119 -0
  2388. pyrogram/raw/types/messages/bot_prepared_inline_message.py +89 -0
  2389. pyrogram/raw/types/messages/bot_results.py +142 -0
  2390. pyrogram/raw/types/messages/channel_messages.py +152 -0
  2391. pyrogram/raw/types/messages/chat_admins_with_invites.py +89 -0
  2392. pyrogram/raw/types/messages/chat_full.py +98 -0
  2393. pyrogram/raw/types/messages/chat_invite_importers.py +97 -0
  2394. pyrogram/raw/types/messages/chats.py +88 -0
  2395. pyrogram/raw/types/messages/chats_slice.py +96 -0
  2396. pyrogram/raw/types/messages/checked_history_import_peer.py +81 -0
  2397. pyrogram/raw/types/messages/dh_config.py +105 -0
  2398. pyrogram/raw/types/messages/dh_config_not_modified.py +81 -0
  2399. pyrogram/raw/types/messages/dialog_filters.py +89 -0
  2400. pyrogram/raw/types/messages/dialogs.py +105 -0
  2401. pyrogram/raw/types/messages/dialogs_not_modified.py +81 -0
  2402. pyrogram/raw/types/messages/dialogs_slice.py +113 -0
  2403. pyrogram/raw/types/messages/discussion_message.py +134 -0
  2404. pyrogram/raw/types/messages/emoji_groups.py +92 -0
  2405. pyrogram/raw/types/messages/emoji_groups_not_modified.py +79 -0
  2406. pyrogram/raw/types/messages/exported_chat_invite.py +90 -0
  2407. pyrogram/raw/types/messages/exported_chat_invite_replaced.py +98 -0
  2408. pyrogram/raw/types/messages/exported_chat_invites.py +97 -0
  2409. pyrogram/raw/types/messages/faved_stickers.py +97 -0
  2410. pyrogram/raw/types/messages/faved_stickers_not_modified.py +76 -0
  2411. pyrogram/raw/types/messages/featured_stickers.py +115 -0
  2412. pyrogram/raw/types/messages/featured_stickers_not_modified.py +83 -0
  2413. pyrogram/raw/types/messages/forum_topics.py +130 -0
  2414. pyrogram/raw/types/messages/found_sticker_sets.py +90 -0
  2415. pyrogram/raw/types/messages/found_sticker_sets_not_modified.py +77 -0
  2416. pyrogram/raw/types/messages/found_stickers.py +100 -0
  2417. pyrogram/raw/types/messages/found_stickers_not_modified.py +84 -0
  2418. pyrogram/raw/types/messages/high_scores.py +90 -0
  2419. pyrogram/raw/types/messages/history_import.py +81 -0
  2420. pyrogram/raw/types/messages/history_import_parsed.py +96 -0
  2421. pyrogram/raw/types/messages/inactive_chats.py +97 -0
  2422. pyrogram/raw/types/messages/invited_users.py +91 -0
  2423. pyrogram/raw/types/messages/message_edit_data.py +81 -0
  2424. pyrogram/raw/types/messages/message_reactions_list.py +116 -0
  2425. pyrogram/raw/types/messages/message_views.py +97 -0
  2426. pyrogram/raw/types/messages/messages.py +111 -0
  2427. pyrogram/raw/types/messages/messages_not_modified.py +95 -0
  2428. pyrogram/raw/types/messages/messages_slice.py +145 -0
  2429. pyrogram/raw/types/messages/my_stickers.py +89 -0
  2430. pyrogram/raw/types/messages/peer_dialogs.py +114 -0
  2431. pyrogram/raw/types/messages/peer_settings.py +97 -0
  2432. pyrogram/raw/types/messages/prepared_inline_message.py +113 -0
  2433. pyrogram/raw/types/messages/quick_replies.py +105 -0
  2434. pyrogram/raw/types/messages/quick_replies_not_modified.py +76 -0
  2435. pyrogram/raw/types/messages/reactions.py +91 -0
  2436. pyrogram/raw/types/messages/reactions_not_modified.py +78 -0
  2437. pyrogram/raw/types/messages/recent_stickers.py +105 -0
  2438. pyrogram/raw/types/messages/recent_stickers_not_modified.py +76 -0
  2439. pyrogram/raw/types/messages/saved_dialogs.py +106 -0
  2440. pyrogram/raw/types/messages/saved_dialogs_not_modified.py +82 -0
  2441. pyrogram/raw/types/messages/saved_dialogs_slice.py +114 -0
  2442. pyrogram/raw/types/messages/saved_gifs.py +89 -0
  2443. pyrogram/raw/types/messages/saved_gifs_not_modified.py +76 -0
  2444. pyrogram/raw/types/messages/saved_reaction_tags.py +89 -0
  2445. pyrogram/raw/types/messages/saved_reaction_tags_not_modified.py +76 -0
  2446. pyrogram/raw/types/messages/search_counter.py +97 -0
  2447. pyrogram/raw/types/messages/search_results_calendar.py +146 -0
  2448. pyrogram/raw/types/messages/search_results_positions.py +89 -0
  2449. pyrogram/raw/types/messages/sent_encrypted_file.py +91 -0
  2450. pyrogram/raw/types/messages/sent_encrypted_message.py +83 -0
  2451. pyrogram/raw/types/messages/sponsored_messages.py +108 -0
  2452. pyrogram/raw/types/messages/sponsored_messages_empty.py +76 -0
  2453. pyrogram/raw/types/messages/sticker_set.py +113 -0
  2454. pyrogram/raw/types/messages/sticker_set_install_result_archive.py +81 -0
  2455. pyrogram/raw/types/messages/sticker_set_install_result_success.py +76 -0
  2456. pyrogram/raw/types/messages/sticker_set_not_modified.py +84 -0
  2457. pyrogram/raw/types/messages/stickers.py +89 -0
  2458. pyrogram/raw/types/messages/stickers_not_modified.py +76 -0
  2459. pyrogram/raw/types/messages/transcribed_audio.py +115 -0
  2460. pyrogram/raw/types/messages/translate_result.py +81 -0
  2461. pyrogram/raw/types/messages/votes_list.py +116 -0
  2462. pyrogram/raw/types/messages/web_page.py +97 -0
  2463. pyrogram/raw/types/messages/web_page_preview.py +89 -0
  2464. pyrogram/raw/types/missing_invitee.py +86 -0
  2465. pyrogram/raw/types/msg_detailed_info.py +96 -0
  2466. pyrogram/raw/types/msg_new_detailed_info.py +88 -0
  2467. pyrogram/raw/types/msg_resend_ans_req.py +72 -0
  2468. pyrogram/raw/types/msg_resend_req.py +72 -0
  2469. pyrogram/raw/types/msgs_ack.py +72 -0
  2470. pyrogram/raw/types/msgs_all_info.py +80 -0
  2471. pyrogram/raw/types/msgs_state_info.py +80 -0
  2472. pyrogram/raw/types/msgs_state_req.py +72 -0
  2473. pyrogram/raw/types/my_boost.py +109 -0
  2474. pyrogram/raw/types/nearest_dc.py +97 -0
  2475. pyrogram/raw/types/new_session_created.py +88 -0
  2476. pyrogram/raw/types/notification_sound_default.py +67 -0
  2477. pyrogram/raw/types/notification_sound_local.py +80 -0
  2478. pyrogram/raw/types/notification_sound_none.py +67 -0
  2479. pyrogram/raw/types/notification_sound_ringtone.py +72 -0
  2480. pyrogram/raw/types/notify_broadcasts.py +67 -0
  2481. pyrogram/raw/types/notify_chats.py +67 -0
  2482. pyrogram/raw/types/notify_forum_topic.py +80 -0
  2483. pyrogram/raw/types/notify_peer.py +72 -0
  2484. pyrogram/raw/types/notify_users.py +67 -0
  2485. pyrogram/raw/types/outbox_read_date.py +81 -0
  2486. pyrogram/raw/types/page.py +125 -0
  2487. pyrogram/raw/types/page_block_anchor.py +72 -0
  2488. pyrogram/raw/types/page_block_audio.py +80 -0
  2489. pyrogram/raw/types/page_block_author_date.py +80 -0
  2490. pyrogram/raw/types/page_block_blockquote.py +80 -0
  2491. pyrogram/raw/types/page_block_channel.py +72 -0
  2492. pyrogram/raw/types/page_block_collage.py +80 -0
  2493. pyrogram/raw/types/page_block_cover.py +72 -0
  2494. pyrogram/raw/types/page_block_details.py +88 -0
  2495. pyrogram/raw/types/page_block_divider.py +67 -0
  2496. pyrogram/raw/types/page_block_embed.py +131 -0
  2497. pyrogram/raw/types/page_block_embed_post.py +120 -0
  2498. pyrogram/raw/types/page_block_footer.py +72 -0
  2499. pyrogram/raw/types/page_block_header.py +72 -0
  2500. pyrogram/raw/types/page_block_kicker.py +72 -0
  2501. pyrogram/raw/types/page_block_list.py +72 -0
  2502. pyrogram/raw/types/page_block_map.py +104 -0
  2503. pyrogram/raw/types/page_block_ordered_list.py +72 -0
  2504. pyrogram/raw/types/page_block_paragraph.py +72 -0
  2505. pyrogram/raw/types/page_block_photo.py +100 -0
  2506. pyrogram/raw/types/page_block_preformatted.py +80 -0
  2507. pyrogram/raw/types/page_block_pullquote.py +80 -0
  2508. pyrogram/raw/types/page_block_related_articles.py +80 -0
  2509. pyrogram/raw/types/page_block_slideshow.py +80 -0
  2510. pyrogram/raw/types/page_block_subheader.py +72 -0
  2511. pyrogram/raw/types/page_block_subtitle.py +72 -0
  2512. pyrogram/raw/types/page_block_table.py +94 -0
  2513. pyrogram/raw/types/page_block_title.py +72 -0
  2514. pyrogram/raw/types/page_block_unsupported.py +67 -0
  2515. pyrogram/raw/types/page_block_video.py +94 -0
  2516. pyrogram/raw/types/page_caption.py +80 -0
  2517. pyrogram/raw/types/page_list_item_blocks.py +72 -0
  2518. pyrogram/raw/types/page_list_item_text.py +72 -0
  2519. pyrogram/raw/types/page_list_ordered_item_blocks.py +80 -0
  2520. pyrogram/raw/types/page_list_ordered_item_text.py +80 -0
  2521. pyrogram/raw/types/page_related_article.py +127 -0
  2522. pyrogram/raw/types/page_table_cell.py +124 -0
  2523. pyrogram/raw/types/page_table_row.py +72 -0
  2524. pyrogram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py +96 -0
  2525. pyrogram/raw/types/password_kdf_algo_unknown.py +67 -0
  2526. pyrogram/raw/types/payment_charge.py +80 -0
  2527. pyrogram/raw/types/payment_form_method.py +80 -0
  2528. pyrogram/raw/types/payment_requested_info.py +103 -0
  2529. pyrogram/raw/types/payment_saved_credentials_card.py +80 -0
  2530. pyrogram/raw/types/payments/__init__.py +50 -0
  2531. pyrogram/raw/types/payments/bank_card_data.py +89 -0
  2532. pyrogram/raw/types/payments/checked_gift_code.py +150 -0
  2533. pyrogram/raw/types/payments/connected_star_ref_bots.py +100 -0
  2534. pyrogram/raw/types/payments/exported_invoice.py +81 -0
  2535. pyrogram/raw/types/payments/giveaway_info.py +122 -0
  2536. pyrogram/raw/types/payments/giveaway_info_results.py +138 -0
  2537. pyrogram/raw/types/payments/payment_form.py +210 -0
  2538. pyrogram/raw/types/payments/payment_form_star_gift.py +89 -0
  2539. pyrogram/raw/types/payments/payment_form_stars.py +133 -0
  2540. pyrogram/raw/types/payments/payment_receipt.py +194 -0
  2541. pyrogram/raw/types/payments/payment_receipt_stars.py +157 -0
  2542. pyrogram/raw/types/payments/payment_result.py +82 -0
  2543. pyrogram/raw/types/payments/payment_verification_needed.py +82 -0
  2544. pyrogram/raw/types/payments/saved_info.py +91 -0
  2545. pyrogram/raw/types/payments/saved_star_gifts.py +126 -0
  2546. pyrogram/raw/types/payments/star_gift_upgrade_preview.py +81 -0
  2547. pyrogram/raw/types/payments/star_gift_withdrawal_url.py +81 -0
  2548. pyrogram/raw/types/payments/star_gifts.py +89 -0
  2549. pyrogram/raw/types/payments/star_gifts_not_modified.py +76 -0
  2550. pyrogram/raw/types/payments/stars_revenue_ads_account_url.py +81 -0
  2551. pyrogram/raw/types/payments/stars_revenue_stats.py +97 -0
  2552. pyrogram/raw/types/payments/stars_revenue_withdrawal_url.py +81 -0
  2553. pyrogram/raw/types/payments/stars_status.py +149 -0
  2554. pyrogram/raw/types/payments/suggested_star_ref_bots.py +108 -0
  2555. pyrogram/raw/types/payments/unique_star_gift.py +89 -0
  2556. pyrogram/raw/types/payments/validated_requested_info.py +94 -0
  2557. pyrogram/raw/types/peer_blocked.py +80 -0
  2558. pyrogram/raw/types/peer_channel.py +81 -0
  2559. pyrogram/raw/types/peer_chat.py +81 -0
  2560. pyrogram/raw/types/peer_color.py +84 -0
  2561. pyrogram/raw/types/peer_located.py +88 -0
  2562. pyrogram/raw/types/peer_notify_settings.py +180 -0
  2563. pyrogram/raw/types/peer_self_located.py +72 -0
  2564. pyrogram/raw/types/peer_settings.py +177 -0
  2565. pyrogram/raw/types/peer_stories.py +91 -0
  2566. pyrogram/raw/types/peer_user.py +81 -0
  2567. pyrogram/raw/types/phone/__init__.py +31 -0
  2568. pyrogram/raw/types/phone/exported_group_call_invite.py +81 -0
  2569. pyrogram/raw/types/phone/group_call.py +113 -0
  2570. pyrogram/raw/types/phone/group_call_stream_channels.py +81 -0
  2571. pyrogram/raw/types/phone/group_call_stream_rtmp_url.py +89 -0
  2572. pyrogram/raw/types/phone/group_participants.py +121 -0
  2573. pyrogram/raw/types/phone/join_as_peers.py +97 -0
  2574. pyrogram/raw/types/phone/phone_call.py +92 -0
  2575. pyrogram/raw/types/phone_call.py +178 -0
  2576. pyrogram/raw/types/phone_call_accepted.py +138 -0
  2577. pyrogram/raw/types/phone_call_discard_reason_allow_group_call.py +72 -0
  2578. pyrogram/raw/types/phone_call_discard_reason_busy.py +67 -0
  2579. pyrogram/raw/types/phone_call_discard_reason_disconnect.py +67 -0
  2580. pyrogram/raw/types/phone_call_discard_reason_hangup.py +67 -0
  2581. pyrogram/raw/types/phone_call_discard_reason_missed.py +67 -0
  2582. pyrogram/raw/types/phone_call_discarded.py +121 -0
  2583. pyrogram/raw/types/phone_call_empty.py +72 -0
  2584. pyrogram/raw/types/phone_call_protocol.py +102 -0
  2585. pyrogram/raw/types/phone_call_requested.py +138 -0
  2586. pyrogram/raw/types/phone_call_waiting.py +139 -0
  2587. pyrogram/raw/types/phone_connection.py +112 -0
  2588. pyrogram/raw/types/phone_connection_webrtc.py +126 -0
  2589. pyrogram/raw/types/photo.py +130 -0
  2590. pyrogram/raw/types/photo_cached_size.py +96 -0
  2591. pyrogram/raw/types/photo_empty.py +72 -0
  2592. pyrogram/raw/types/photo_path_size.py +80 -0
  2593. pyrogram/raw/types/photo_size.py +96 -0
  2594. pyrogram/raw/types/photo_size_empty.py +72 -0
  2595. pyrogram/raw/types/photo_size_progressive.py +96 -0
  2596. pyrogram/raw/types/photo_stripped_size.py +80 -0
  2597. pyrogram/raw/types/photos/__init__.py +27 -0
  2598. pyrogram/raw/types/photos/photo.py +91 -0
  2599. pyrogram/raw/types/photos/photos.py +89 -0
  2600. pyrogram/raw/types/photos/photos_slice.py +97 -0
  2601. pyrogram/raw/types/poll.py +132 -0
  2602. pyrogram/raw/types/poll_answer.py +80 -0
  2603. pyrogram/raw/types/poll_answer_voters.py +94 -0
  2604. pyrogram/raw/types/poll_results.py +120 -0
  2605. pyrogram/raw/types/pong.py +90 -0
  2606. pyrogram/raw/types/popular_contact.py +80 -0
  2607. pyrogram/raw/types/post_address.py +112 -0
  2608. pyrogram/raw/types/post_interaction_counters_message.py +96 -0
  2609. pyrogram/raw/types/post_interaction_counters_story.py +96 -0
  2610. pyrogram/raw/types/pq_inner_data.py +112 -0
  2611. pyrogram/raw/types/pq_inner_data_dc.py +120 -0
  2612. pyrogram/raw/types/pq_inner_data_temp.py +120 -0
  2613. pyrogram/raw/types/pq_inner_data_temp_dc.py +128 -0
  2614. pyrogram/raw/types/premium/__init__.py +27 -0
  2615. pyrogram/raw/types/premium/boosts_list.py +109 -0
  2616. pyrogram/raw/types/premium/boosts_status.py +161 -0
  2617. pyrogram/raw/types/premium/my_boosts.py +98 -0
  2618. pyrogram/raw/types/premium_gift_code_option.py +125 -0
  2619. pyrogram/raw/types/premium_gift_option.py +107 -0
  2620. pyrogram/raw/types/premium_subscription_option.py +128 -0
  2621. pyrogram/raw/types/prepaid_giveaway.py +96 -0
  2622. pyrogram/raw/types/prepaid_stars_giveaway.py +104 -0
  2623. pyrogram/raw/types/privacy_key_about.py +67 -0
  2624. pyrogram/raw/types/privacy_key_added_by_phone.py +67 -0
  2625. pyrogram/raw/types/privacy_key_birthday.py +67 -0
  2626. pyrogram/raw/types/privacy_key_chat_invite.py +67 -0
  2627. pyrogram/raw/types/privacy_key_forwards.py +67 -0
  2628. pyrogram/raw/types/privacy_key_phone_call.py +67 -0
  2629. pyrogram/raw/types/privacy_key_phone_number.py +67 -0
  2630. pyrogram/raw/types/privacy_key_phone_p2_p.py +67 -0
  2631. pyrogram/raw/types/privacy_key_profile_photo.py +67 -0
  2632. pyrogram/raw/types/privacy_key_star_gifts_auto_save.py +67 -0
  2633. pyrogram/raw/types/privacy_key_status_timestamp.py +67 -0
  2634. pyrogram/raw/types/privacy_key_voice_messages.py +67 -0
  2635. pyrogram/raw/types/privacy_value_allow_all.py +67 -0
  2636. pyrogram/raw/types/privacy_value_allow_bots.py +67 -0
  2637. pyrogram/raw/types/privacy_value_allow_chat_participants.py +72 -0
  2638. pyrogram/raw/types/privacy_value_allow_close_friends.py +67 -0
  2639. pyrogram/raw/types/privacy_value_allow_contacts.py +67 -0
  2640. pyrogram/raw/types/privacy_value_allow_premium.py +67 -0
  2641. pyrogram/raw/types/privacy_value_allow_users.py +72 -0
  2642. pyrogram/raw/types/privacy_value_disallow_all.py +67 -0
  2643. pyrogram/raw/types/privacy_value_disallow_bots.py +67 -0
  2644. pyrogram/raw/types/privacy_value_disallow_chat_participants.py +72 -0
  2645. pyrogram/raw/types/privacy_value_disallow_contacts.py +67 -0
  2646. pyrogram/raw/types/privacy_value_disallow_users.py +72 -0
  2647. pyrogram/raw/types/public_forward_message.py +72 -0
  2648. pyrogram/raw/types/public_forward_story.py +80 -0
  2649. pyrogram/raw/types/quick_reply.py +96 -0
  2650. pyrogram/raw/types/reaction_count.py +91 -0
  2651. pyrogram/raw/types/reaction_custom_emoji.py +72 -0
  2652. pyrogram/raw/types/reaction_emoji.py +72 -0
  2653. pyrogram/raw/types/reaction_empty.py +67 -0
  2654. pyrogram/raw/types/reaction_notifications_from_all.py +67 -0
  2655. pyrogram/raw/types/reaction_notifications_from_contacts.py +67 -0
  2656. pyrogram/raw/types/reaction_paid.py +67 -0
  2657. pyrogram/raw/types/reactions_notify_settings.py +112 -0
  2658. pyrogram/raw/types/read_participant_date.py +89 -0
  2659. pyrogram/raw/types/received_notify_message.py +89 -0
  2660. pyrogram/raw/types/recent_me_url_chat.py +80 -0
  2661. pyrogram/raw/types/recent_me_url_chat_invite.py +80 -0
  2662. pyrogram/raw/types/recent_me_url_sticker_set.py +80 -0
  2663. pyrogram/raw/types/recent_me_url_unknown.py +72 -0
  2664. pyrogram/raw/types/recent_me_url_user.py +80 -0
  2665. pyrogram/raw/types/reply_inline_markup.py +72 -0
  2666. pyrogram/raw/types/reply_keyboard_force_reply.py +87 -0
  2667. pyrogram/raw/types/reply_keyboard_hide.py +72 -0
  2668. pyrogram/raw/types/reply_keyboard_markup.py +107 -0
  2669. pyrogram/raw/types/report_result_add_comment.py +90 -0
  2670. pyrogram/raw/types/report_result_choose_option.py +90 -0
  2671. pyrogram/raw/types/report_result_reported.py +77 -0
  2672. pyrogram/raw/types/request_peer_type_broadcast.py +101 -0
  2673. pyrogram/raw/types/request_peer_type_chat.py +116 -0
  2674. pyrogram/raw/types/request_peer_type_user.py +84 -0
  2675. pyrogram/raw/types/requested_peer_channel.py +102 -0
  2676. pyrogram/raw/types/requested_peer_chat.py +93 -0
  2677. pyrogram/raw/types/requested_peer_user.py +111 -0
  2678. pyrogram/raw/types/res_pq.py +106 -0
  2679. pyrogram/raw/types/restriction_reason.py +88 -0
  2680. pyrogram/raw/types/rpc_answer_dropped.py +97 -0
  2681. pyrogram/raw/types/rpc_answer_dropped_running.py +76 -0
  2682. pyrogram/raw/types/rpc_answer_unknown.py +76 -0
  2683. pyrogram/raw/types/rpc_error.py +80 -0
  2684. pyrogram/raw/types/rpc_result.py +80 -0
  2685. pyrogram/raw/types/saved_dialog.py +88 -0
  2686. pyrogram/raw/types/saved_phone_contact.py +105 -0
  2687. pyrogram/raw/types/saved_reaction_tag.py +91 -0
  2688. pyrogram/raw/types/saved_star_gift.py +180 -0
  2689. pyrogram/raw/types/search_result_position.py +88 -0
  2690. pyrogram/raw/types/search_results_calendar_period.py +96 -0
  2691. pyrogram/raw/types/secure_credentials_encrypted.py +88 -0
  2692. pyrogram/raw/types/secure_data.py +88 -0
  2693. pyrogram/raw/types/secure_file.py +120 -0
  2694. pyrogram/raw/types/secure_file_empty.py +67 -0
  2695. pyrogram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py +72 -0
  2696. pyrogram/raw/types/secure_password_kdf_algo_sha512.py +72 -0
  2697. pyrogram/raw/types/secure_password_kdf_algo_unknown.py +67 -0
  2698. pyrogram/raw/types/secure_plain_email.py +72 -0
  2699. pyrogram/raw/types/secure_plain_phone.py +72 -0
  2700. pyrogram/raw/types/secure_required_type.py +92 -0
  2701. pyrogram/raw/types/secure_required_type_one_of.py +72 -0
  2702. pyrogram/raw/types/secure_secret_settings.py +88 -0
  2703. pyrogram/raw/types/secure_value.py +163 -0
  2704. pyrogram/raw/types/secure_value_error.py +88 -0
  2705. pyrogram/raw/types/secure_value_error_data.py +96 -0
  2706. pyrogram/raw/types/secure_value_error_file.py +88 -0
  2707. pyrogram/raw/types/secure_value_error_files.py +88 -0
  2708. pyrogram/raw/types/secure_value_error_front_side.py +88 -0
  2709. pyrogram/raw/types/secure_value_error_reverse_side.py +88 -0
  2710. pyrogram/raw/types/secure_value_error_selfie.py +88 -0
  2711. pyrogram/raw/types/secure_value_error_translation_file.py +88 -0
  2712. pyrogram/raw/types/secure_value_error_translation_files.py +88 -0
  2713. pyrogram/raw/types/secure_value_hash.py +80 -0
  2714. pyrogram/raw/types/secure_value_type_address.py +67 -0
  2715. pyrogram/raw/types/secure_value_type_bank_statement.py +67 -0
  2716. pyrogram/raw/types/secure_value_type_driver_license.py +67 -0
  2717. pyrogram/raw/types/secure_value_type_email.py +67 -0
  2718. pyrogram/raw/types/secure_value_type_identity_card.py +67 -0
  2719. pyrogram/raw/types/secure_value_type_internal_passport.py +67 -0
  2720. pyrogram/raw/types/secure_value_type_passport.py +67 -0
  2721. pyrogram/raw/types/secure_value_type_passport_registration.py +67 -0
  2722. pyrogram/raw/types/secure_value_type_personal_details.py +67 -0
  2723. pyrogram/raw/types/secure_value_type_phone.py +67 -0
  2724. pyrogram/raw/types/secure_value_type_rental_agreement.py +67 -0
  2725. pyrogram/raw/types/secure_value_type_temporary_registration.py +67 -0
  2726. pyrogram/raw/types/secure_value_type_utility_bill.py +67 -0
  2727. pyrogram/raw/types/send_as_peer.py +80 -0
  2728. pyrogram/raw/types/send_message_cancel_action.py +67 -0
  2729. pyrogram/raw/types/send_message_choose_contact_action.py +67 -0
  2730. pyrogram/raw/types/send_message_choose_sticker_action.py +67 -0
  2731. pyrogram/raw/types/send_message_emoji_interaction.py +88 -0
  2732. pyrogram/raw/types/send_message_emoji_interaction_seen.py +72 -0
  2733. pyrogram/raw/types/send_message_game_play_action.py +67 -0
  2734. pyrogram/raw/types/send_message_geo_location_action.py +67 -0
  2735. pyrogram/raw/types/send_message_history_import_action.py +72 -0
  2736. pyrogram/raw/types/send_message_record_audio_action.py +67 -0
  2737. pyrogram/raw/types/send_message_record_round_action.py +67 -0
  2738. pyrogram/raw/types/send_message_record_video_action.py +67 -0
  2739. pyrogram/raw/types/send_message_typing_action.py +67 -0
  2740. pyrogram/raw/types/send_message_upload_audio_action.py +72 -0
  2741. pyrogram/raw/types/send_message_upload_document_action.py +72 -0
  2742. pyrogram/raw/types/send_message_upload_photo_action.py +72 -0
  2743. pyrogram/raw/types/send_message_upload_round_action.py +72 -0
  2744. pyrogram/raw/types/send_message_upload_video_action.py +72 -0
  2745. pyrogram/raw/types/server_dh_inner_data.py +112 -0
  2746. pyrogram/raw/types/server_dh_params_fail.py +97 -0
  2747. pyrogram/raw/types/server_dh_params_ok.py +97 -0
  2748. pyrogram/raw/types/shipping_option.py +88 -0
  2749. pyrogram/raw/types/sms_job.py +97 -0
  2750. pyrogram/raw/types/smsjobs/__init__.py +26 -0
  2751. pyrogram/raw/types/smsjobs/eligible_to_join.py +89 -0
  2752. pyrogram/raw/types/smsjobs/status.py +138 -0
  2753. pyrogram/raw/types/speaking_in_group_call_action.py +67 -0
  2754. pyrogram/raw/types/sponsored_message.py +176 -0
  2755. pyrogram/raw/types/sponsored_message_report_option.py +80 -0
  2756. pyrogram/raw/types/star_gift.py +161 -0
  2757. pyrogram/raw/types/star_gift_attribute_backdrop.py +112 -0
  2758. pyrogram/raw/types/star_gift_attribute_model.py +88 -0
  2759. pyrogram/raw/types/star_gift_attribute_original_details.py +102 -0
  2760. pyrogram/raw/types/star_gift_attribute_pattern.py +88 -0
  2761. pyrogram/raw/types/star_gift_unique.py +150 -0
  2762. pyrogram/raw/types/star_ref_program.py +119 -0
  2763. pyrogram/raw/types/stars_amount.py +80 -0
  2764. pyrogram/raw/types/stars_gift_option.py +114 -0
  2765. pyrogram/raw/types/stars_giveaway_option.py +136 -0
  2766. pyrogram/raw/types/stars_giveaway_winners_option.py +88 -0
  2767. pyrogram/raw/types/stars_revenue_status.py +105 -0
  2768. pyrogram/raw/types/stars_subscription.py +159 -0
  2769. pyrogram/raw/types/stars_subscription_pricing.py +80 -0
  2770. pyrogram/raw/types/stars_topup_option.py +114 -0
  2771. pyrogram/raw/types/stars_transaction.py +274 -0
  2772. pyrogram/raw/types/stars_transaction_peer.py +72 -0
  2773. pyrogram/raw/types/stars_transaction_peer_ads.py +67 -0
  2774. pyrogram/raw/types/stars_transaction_peer_api.py +67 -0
  2775. pyrogram/raw/types/stars_transaction_peer_app_store.py +67 -0
  2776. pyrogram/raw/types/stars_transaction_peer_fragment.py +67 -0
  2777. pyrogram/raw/types/stars_transaction_peer_play_market.py +67 -0
  2778. pyrogram/raw/types/stars_transaction_peer_premium_bot.py +67 -0
  2779. pyrogram/raw/types/stars_transaction_peer_unsupported.py +67 -0
  2780. pyrogram/raw/types/stats/__init__.py +32 -0
  2781. pyrogram/raw/types/stats/broadcast_revenue_stats.py +105 -0
  2782. pyrogram/raw/types/stats/broadcast_revenue_transactions.py +89 -0
  2783. pyrogram/raw/types/stats/broadcast_revenue_withdrawal_url.py +81 -0
  2784. pyrogram/raw/types/stats/broadcast_stats.py +249 -0
  2785. pyrogram/raw/types/stats/megagroup_stats.py +209 -0
  2786. pyrogram/raw/types/stats/message_stats.py +89 -0
  2787. pyrogram/raw/types/stats/public_forwards.py +117 -0
  2788. pyrogram/raw/types/stats/story_stats.py +89 -0
  2789. pyrogram/raw/types/stats_abs_value_and_prev.py +80 -0
  2790. pyrogram/raw/types/stats_date_range_days.py +80 -0
  2791. pyrogram/raw/types/stats_graph.py +92 -0
  2792. pyrogram/raw/types/stats_graph_async.py +81 -0
  2793. pyrogram/raw/types/stats_graph_error.py +81 -0
  2794. pyrogram/raw/types/stats_group_top_admin.py +96 -0
  2795. pyrogram/raw/types/stats_group_top_inviter.py +80 -0
  2796. pyrogram/raw/types/stats_group_top_poster.py +88 -0
  2797. pyrogram/raw/types/stats_percent_value.py +80 -0
  2798. pyrogram/raw/types/stats_url.py +72 -0
  2799. pyrogram/raw/types/sticker_keyword.py +80 -0
  2800. pyrogram/raw/types/sticker_pack.py +80 -0
  2801. pyrogram/raw/types/sticker_set.py +202 -0
  2802. pyrogram/raw/types/sticker_set_covered.py +89 -0
  2803. pyrogram/raw/types/sticker_set_full_covered.py +105 -0
  2804. pyrogram/raw/types/sticker_set_multi_covered.py +89 -0
  2805. pyrogram/raw/types/sticker_set_no_covered.py +81 -0
  2806. pyrogram/raw/types/stickers/__init__.py +25 -0
  2807. pyrogram/raw/types/stickers/suggested_short_name.py +81 -0
  2808. pyrogram/raw/types/storage/__init__.py +34 -0
  2809. pyrogram/raw/types/storage/file_gif.py +67 -0
  2810. pyrogram/raw/types/storage/file_jpeg.py +67 -0
  2811. pyrogram/raw/types/storage/file_mov.py +67 -0
  2812. pyrogram/raw/types/storage/file_mp3.py +67 -0
  2813. pyrogram/raw/types/storage/file_mp4.py +67 -0
  2814. pyrogram/raw/types/storage/file_partial.py +67 -0
  2815. pyrogram/raw/types/storage/file_pdf.py +67 -0
  2816. pyrogram/raw/types/storage/file_png.py +67 -0
  2817. pyrogram/raw/types/storage/file_unknown.py +67 -0
  2818. pyrogram/raw/types/storage/file_webp.py +67 -0
  2819. pyrogram/raw/types/stories/__init__.py +32 -0
  2820. pyrogram/raw/types/stories/all_stories.py +129 -0
  2821. pyrogram/raw/types/stories/all_stories_not_modified.py +92 -0
  2822. pyrogram/raw/types/stories/found_stories.py +116 -0
  2823. pyrogram/raw/types/stories/peer_stories.py +97 -0
  2824. pyrogram/raw/types/stories/stories.py +119 -0
  2825. pyrogram/raw/types/stories/story_reactions_list.py +116 -0
  2826. pyrogram/raw/types/stories/story_views.py +89 -0
  2827. pyrogram/raw/types/stories/story_views_list.py +140 -0
  2828. pyrogram/raw/types/stories_stealth_mode.py +84 -0
  2829. pyrogram/raw/types/story_fwd_header.py +100 -0
  2830. pyrogram/raw/types/story_item.py +231 -0
  2831. pyrogram/raw/types/story_item_deleted.py +72 -0
  2832. pyrogram/raw/types/story_item_skipped.py +96 -0
  2833. pyrogram/raw/types/story_reaction.py +88 -0
  2834. pyrogram/raw/types/story_reaction_public_forward.py +72 -0
  2835. pyrogram/raw/types/story_reaction_public_repost.py +80 -0
  2836. pyrogram/raw/types/story_view.py +104 -0
  2837. pyrogram/raw/types/story_view_public_forward.py +86 -0
  2838. pyrogram/raw/types/story_view_public_repost.py +94 -0
  2839. pyrogram/raw/types/story_views.py +118 -0
  2840. pyrogram/raw/types/text_anchor.py +80 -0
  2841. pyrogram/raw/types/text_bold.py +72 -0
  2842. pyrogram/raw/types/text_concat.py +72 -0
  2843. pyrogram/raw/types/text_email.py +80 -0
  2844. pyrogram/raw/types/text_empty.py +67 -0
  2845. pyrogram/raw/types/text_fixed.py +72 -0
  2846. pyrogram/raw/types/text_image.py +88 -0
  2847. pyrogram/raw/types/text_italic.py +72 -0
  2848. pyrogram/raw/types/text_marked.py +72 -0
  2849. pyrogram/raw/types/text_phone.py +80 -0
  2850. pyrogram/raw/types/text_plain.py +72 -0
  2851. pyrogram/raw/types/text_strike.py +72 -0
  2852. pyrogram/raw/types/text_subscript.py +72 -0
  2853. pyrogram/raw/types/text_superscript.py +72 -0
  2854. pyrogram/raw/types/text_underline.py +72 -0
  2855. pyrogram/raw/types/text_url.py +88 -0
  2856. pyrogram/raw/types/text_with_entities.py +80 -0
  2857. pyrogram/raw/types/theme.py +165 -0
  2858. pyrogram/raw/types/theme_settings.py +117 -0
  2859. pyrogram/raw/types/timezone.py +88 -0
  2860. pyrogram/raw/types/top_peer.py +80 -0
  2861. pyrogram/raw/types/top_peer_category_bots_app.py +67 -0
  2862. pyrogram/raw/types/top_peer_category_bots_inline.py +67 -0
  2863. pyrogram/raw/types/top_peer_category_bots_pm.py +67 -0
  2864. pyrogram/raw/types/top_peer_category_channels.py +67 -0
  2865. pyrogram/raw/types/top_peer_category_correspondents.py +67 -0
  2866. pyrogram/raw/types/top_peer_category_forward_chats.py +67 -0
  2867. pyrogram/raw/types/top_peer_category_forward_users.py +67 -0
  2868. pyrogram/raw/types/top_peer_category_groups.py +67 -0
  2869. pyrogram/raw/types/top_peer_category_peers.py +88 -0
  2870. pyrogram/raw/types/top_peer_category_phone_calls.py +67 -0
  2871. pyrogram/raw/types/update_attach_menu_bots.py +67 -0
  2872. pyrogram/raw/types/update_auto_save_settings.py +67 -0
  2873. pyrogram/raw/types/update_bot_business_connect.py +80 -0
  2874. pyrogram/raw/types/update_bot_callback_query.py +124 -0
  2875. pyrogram/raw/types/update_bot_chat_boost.py +88 -0
  2876. pyrogram/raw/types/update_bot_chat_invite_requester.py +112 -0
  2877. pyrogram/raw/types/update_bot_commands.py +88 -0
  2878. pyrogram/raw/types/update_bot_delete_business_message.py +96 -0
  2879. pyrogram/raw/types/update_bot_edit_business_message.py +100 -0
  2880. pyrogram/raw/types/update_bot_inline_query.py +118 -0
  2881. pyrogram/raw/types/update_bot_inline_send.py +110 -0
  2882. pyrogram/raw/types/update_bot_menu_button.py +80 -0
  2883. pyrogram/raw/types/update_bot_message_reaction.py +120 -0
  2884. pyrogram/raw/types/update_bot_message_reactions.py +104 -0
  2885. pyrogram/raw/types/update_bot_new_business_message.py +100 -0
  2886. pyrogram/raw/types/update_bot_precheckout_query.py +125 -0
  2887. pyrogram/raw/types/update_bot_purchased_paid_media.py +88 -0
  2888. pyrogram/raw/types/update_bot_shipping_query.py +96 -0
  2889. pyrogram/raw/types/update_bot_stopped.py +96 -0
  2890. pyrogram/raw/types/update_bot_webhook_json.py +72 -0
  2891. pyrogram/raw/types/update_bot_webhook_json_query.py +88 -0
  2892. pyrogram/raw/types/update_broadcast_revenue_transactions.py +80 -0
  2893. pyrogram/raw/types/update_business_bot_callback_query.py +125 -0
  2894. pyrogram/raw/types/update_channel.py +72 -0
  2895. pyrogram/raw/types/update_channel_available_messages.py +80 -0
  2896. pyrogram/raw/types/update_channel_message_forwards.py +88 -0
  2897. pyrogram/raw/types/update_channel_message_views.py +88 -0
  2898. pyrogram/raw/types/update_channel_participant.py +142 -0
  2899. pyrogram/raw/types/update_channel_pinned_topic.py +88 -0
  2900. pyrogram/raw/types/update_channel_pinned_topics.py +84 -0
  2901. pyrogram/raw/types/update_channel_read_messages_contents.py +91 -0
  2902. pyrogram/raw/types/update_channel_too_long.py +83 -0
  2903. pyrogram/raw/types/update_channel_user_typing.py +99 -0
  2904. pyrogram/raw/types/update_channel_view_forum_as_messages.py +80 -0
  2905. pyrogram/raw/types/update_channel_web_page.py +96 -0
  2906. pyrogram/raw/types/update_chat.py +72 -0
  2907. pyrogram/raw/types/update_chat_default_banned_rights.py +88 -0
  2908. pyrogram/raw/types/update_chat_participant.py +136 -0
  2909. pyrogram/raw/types/update_chat_participant_add.py +104 -0
  2910. pyrogram/raw/types/update_chat_participant_admin.py +96 -0
  2911. pyrogram/raw/types/update_chat_participant_delete.py +88 -0
  2912. pyrogram/raw/types/update_chat_participants.py +72 -0
  2913. pyrogram/raw/types/update_chat_user_typing.py +88 -0
  2914. pyrogram/raw/types/update_config.py +67 -0
  2915. pyrogram/raw/types/update_contacts_reset.py +67 -0
  2916. pyrogram/raw/types/update_dc_options.py +72 -0
  2917. pyrogram/raw/types/update_delete_channel_messages.py +96 -0
  2918. pyrogram/raw/types/update_delete_messages.py +88 -0
  2919. pyrogram/raw/types/update_delete_quick_reply.py +72 -0
  2920. pyrogram/raw/types/update_delete_quick_reply_messages.py +80 -0
  2921. pyrogram/raw/types/update_delete_scheduled_messages.py +92 -0
  2922. pyrogram/raw/types/update_dialog_filter.py +84 -0
  2923. pyrogram/raw/types/update_dialog_filter_order.py +72 -0
  2924. pyrogram/raw/types/update_dialog_filters.py +67 -0
  2925. pyrogram/raw/types/update_dialog_pinned.py +89 -0
  2926. pyrogram/raw/types/update_dialog_unread_mark.py +80 -0
  2927. pyrogram/raw/types/update_draft_message.py +91 -0
  2928. pyrogram/raw/types/update_edit_channel_message.py +88 -0
  2929. pyrogram/raw/types/update_edit_message.py +88 -0
  2930. pyrogram/raw/types/update_encrypted_chat_typing.py +72 -0
  2931. pyrogram/raw/types/update_encrypted_messages_read.py +88 -0
  2932. pyrogram/raw/types/update_encryption.py +80 -0
  2933. pyrogram/raw/types/update_faved_stickers.py +67 -0
  2934. pyrogram/raw/types/update_folder_peers.py +88 -0
  2935. pyrogram/raw/types/update_geo_live_viewed.py +80 -0
  2936. pyrogram/raw/types/update_group_call.py +83 -0
  2937. pyrogram/raw/types/update_group_call_connection.py +80 -0
  2938. pyrogram/raw/types/update_group_call_participants.py +88 -0
  2939. pyrogram/raw/types/update_inline_bot_callback_query.py +116 -0
  2940. pyrogram/raw/types/update_lang_pack.py +72 -0
  2941. pyrogram/raw/types/update_lang_pack_too_long.py +72 -0
  2942. pyrogram/raw/types/update_login_token.py +67 -0
  2943. pyrogram/raw/types/update_message_extended_media.py +88 -0
  2944. pyrogram/raw/types/update_message_id.py +80 -0
  2945. pyrogram/raw/types/update_message_poll.py +92 -0
  2946. pyrogram/raw/types/update_message_poll_vote.py +96 -0
  2947. pyrogram/raw/types/update_message_reactions.py +99 -0
  2948. pyrogram/raw/types/update_move_sticker_set_to_top.py +86 -0
  2949. pyrogram/raw/types/update_new_authorization.py +107 -0
  2950. pyrogram/raw/types/update_new_channel_message.py +88 -0
  2951. pyrogram/raw/types/update_new_encrypted_message.py +80 -0
  2952. pyrogram/raw/types/update_new_message.py +88 -0
  2953. pyrogram/raw/types/update_new_quick_reply.py +72 -0
  2954. pyrogram/raw/types/update_new_scheduled_message.py +72 -0
  2955. pyrogram/raw/types/update_new_sticker_set.py +72 -0
  2956. pyrogram/raw/types/update_new_story_reaction.py +88 -0
  2957. pyrogram/raw/types/update_notify_settings.py +80 -0
  2958. pyrogram/raw/types/update_paid_reaction_privacy.py +72 -0
  2959. pyrogram/raw/types/update_peer_blocked.py +86 -0
  2960. pyrogram/raw/types/update_peer_history_ttl.py +83 -0
  2961. pyrogram/raw/types/update_peer_located.py +72 -0
  2962. pyrogram/raw/types/update_peer_settings.py +80 -0
  2963. pyrogram/raw/types/update_peer_wallpaper.py +90 -0
  2964. pyrogram/raw/types/update_pending_join_requests.py +88 -0
  2965. pyrogram/raw/types/update_phone_call.py +72 -0
  2966. pyrogram/raw/types/update_phone_call_signaling_data.py +80 -0
  2967. pyrogram/raw/types/update_pinned_channel_messages.py +104 -0
  2968. pyrogram/raw/types/update_pinned_dialogs.py +85 -0
  2969. pyrogram/raw/types/update_pinned_messages.py +104 -0
  2970. pyrogram/raw/types/update_pinned_saved_dialogs.py +76 -0
  2971. pyrogram/raw/types/update_privacy.py +80 -0
  2972. pyrogram/raw/types/update_pts_changed.py +67 -0
  2973. pyrogram/raw/types/update_quick_replies.py +72 -0
  2974. pyrogram/raw/types/update_quick_reply_message.py +72 -0
  2975. pyrogram/raw/types/update_read_channel_discussion_inbox.py +108 -0
  2976. pyrogram/raw/types/update_read_channel_discussion_outbox.py +88 -0
  2977. pyrogram/raw/types/update_read_channel_inbox.py +107 -0
  2978. pyrogram/raw/types/update_read_channel_outbox.py +80 -0
  2979. pyrogram/raw/types/update_read_featured_emoji_stickers.py +67 -0
  2980. pyrogram/raw/types/update_read_featured_stickers.py +67 -0
  2981. pyrogram/raw/types/update_read_history_inbox.py +115 -0
  2982. pyrogram/raw/types/update_read_history_outbox.py +96 -0
  2983. pyrogram/raw/types/update_read_messages_contents.py +99 -0
  2984. pyrogram/raw/types/update_read_stories.py +80 -0
  2985. pyrogram/raw/types/update_recent_emoji_statuses.py +67 -0
  2986. pyrogram/raw/types/update_recent_reactions.py +67 -0
  2987. pyrogram/raw/types/update_recent_stickers.py +67 -0
  2988. pyrogram/raw/types/update_saved_dialog_pinned.py +80 -0
  2989. pyrogram/raw/types/update_saved_gifs.py +67 -0
  2990. pyrogram/raw/types/update_saved_reaction_tags.py +67 -0
  2991. pyrogram/raw/types/update_saved_ringtones.py +67 -0
  2992. pyrogram/raw/types/update_sent_story_reaction.py +88 -0
  2993. pyrogram/raw/types/update_service_notification.py +119 -0
  2994. pyrogram/raw/types/update_short.py +195 -0
  2995. pyrogram/raw/types/update_short_chat_message.py +309 -0
  2996. pyrogram/raw/types/update_short_message.py +301 -0
  2997. pyrogram/raw/types/update_short_sent_message.py +248 -0
  2998. pyrogram/raw/types/update_sms_job.py +72 -0
  2999. pyrogram/raw/types/update_stars_balance.py +72 -0
  3000. pyrogram/raw/types/update_stars_revenue_status.py +80 -0
  3001. pyrogram/raw/types/update_sticker_sets.py +78 -0
  3002. pyrogram/raw/types/update_sticker_sets_order.py +86 -0
  3003. pyrogram/raw/types/update_stories_stealth_mode.py +72 -0
  3004. pyrogram/raw/types/update_story.py +80 -0
  3005. pyrogram/raw/types/update_story_id.py +80 -0
  3006. pyrogram/raw/types/update_theme.py +72 -0
  3007. pyrogram/raw/types/update_transcribed_audio.py +104 -0
  3008. pyrogram/raw/types/update_user.py +72 -0
  3009. pyrogram/raw/types/update_user_emoji_status.py +80 -0
  3010. pyrogram/raw/types/update_user_name.py +96 -0
  3011. pyrogram/raw/types/update_user_phone.py +80 -0
  3012. pyrogram/raw/types/update_user_status.py +80 -0
  3013. pyrogram/raw/types/update_user_typing.py +80 -0
  3014. pyrogram/raw/types/update_web_page.py +88 -0
  3015. pyrogram/raw/types/update_web_view_result_sent.py +72 -0
  3016. pyrogram/raw/types/updates/__init__.py +32 -0
  3017. pyrogram/raw/types/updates/channel_difference.py +130 -0
  3018. pyrogram/raw/types/updates/channel_difference_empty.py +98 -0
  3019. pyrogram/raw/types/updates/channel_difference_too_long.py +122 -0
  3020. pyrogram/raw/types/updates/difference.py +121 -0
  3021. pyrogram/raw/types/updates/difference_empty.py +89 -0
  3022. pyrogram/raw/types/updates/difference_slice.py +121 -0
  3023. pyrogram/raw/types/updates/difference_too_long.py +81 -0
  3024. pyrogram/raw/types/updates/state.py +113 -0
  3025. pyrogram/raw/types/updates_combined.py +227 -0
  3026. pyrogram/raw/types/updates_t.py +219 -0
  3027. pyrogram/raw/types/updates_too_long.py +182 -0
  3028. pyrogram/raw/types/upload/__init__.py +29 -0
  3029. pyrogram/raw/types/upload/cdn_file.py +81 -0
  3030. pyrogram/raw/types/upload/cdn_file_reupload_needed.py +81 -0
  3031. pyrogram/raw/types/upload/file.py +97 -0
  3032. pyrogram/raw/types/upload/file_cdn_redirect.py +113 -0
  3033. pyrogram/raw/types/upload/web_file.py +113 -0
  3034. pyrogram/raw/types/url_auth_result_accepted.py +82 -0
  3035. pyrogram/raw/types/url_auth_result_default.py +77 -0
  3036. pyrogram/raw/types/url_auth_result_request.py +98 -0
  3037. pyrogram/raw/types/user.py +411 -0
  3038. pyrogram/raw/types/user_empty.py +86 -0
  3039. pyrogram/raw/types/user_full.py +449 -0
  3040. pyrogram/raw/types/user_profile_photo.py +103 -0
  3041. pyrogram/raw/types/user_profile_photo_empty.py +67 -0
  3042. pyrogram/raw/types/user_status_empty.py +67 -0
  3043. pyrogram/raw/types/user_status_last_month.py +72 -0
  3044. pyrogram/raw/types/user_status_last_week.py +72 -0
  3045. pyrogram/raw/types/user_status_offline.py +72 -0
  3046. pyrogram/raw/types/user_status_online.py +72 -0
  3047. pyrogram/raw/types/user_status_recently.py +72 -0
  3048. pyrogram/raw/types/username.py +86 -0
  3049. pyrogram/raw/types/users/__init__.py +27 -0
  3050. pyrogram/raw/types/users/user_full.py +97 -0
  3051. pyrogram/raw/types/users/users.py +81 -0
  3052. pyrogram/raw/types/users/users_slice.py +89 -0
  3053. pyrogram/raw/types/video_size.py +107 -0
  3054. pyrogram/raw/types/video_size_emoji_markup.py +80 -0
  3055. pyrogram/raw/types/video_size_sticker_markup.py +88 -0
  3056. pyrogram/raw/types/wall_paper.py +143 -0
  3057. pyrogram/raw/types/wall_paper_no_file.py +107 -0
  3058. pyrogram/raw/types/wall_paper_settings.py +141 -0
  3059. pyrogram/raw/types/web_authorization.py +136 -0
  3060. pyrogram/raw/types/web_document.py +104 -0
  3061. pyrogram/raw/types/web_document_no_proxy.py +96 -0
  3062. pyrogram/raw/types/web_page.py +234 -0
  3063. pyrogram/raw/types/web_page_attribute_sticker_set.py +86 -0
  3064. pyrogram/raw/types/web_page_attribute_story.py +92 -0
  3065. pyrogram/raw/types/web_page_attribute_theme.py +86 -0
  3066. pyrogram/raw/types/web_page_attribute_unique_star_gift.py +72 -0
  3067. pyrogram/raw/types/web_page_empty.py +83 -0
  3068. pyrogram/raw/types/web_page_not_modified.py +75 -0
  3069. pyrogram/raw/types/web_page_pending.py +91 -0
  3070. pyrogram/raw/types/web_view_message_sent.py +85 -0
  3071. pyrogram/raw/types/web_view_result_url.py +107 -0
  3072. pyrogram/session/__init__.py +20 -0
  3073. pyrogram/session/auth.py +262 -0
  3074. pyrogram/session/internals/__init__.py +21 -0
  3075. pyrogram/session/internals/data_center.py +82 -0
  3076. pyrogram/session/internals/msg_factory.py +38 -0
  3077. pyrogram/session/internals/msg_id.py +45 -0
  3078. pyrogram/session/internals/seq_no.py +34 -0
  3079. pyrogram/session/session.py +393 -0
  3080. pyrogram/storage/__init__.py +22 -0
  3081. pyrogram/storage/dummy_client.py +62 -0
  3082. pyrogram/storage/file_storage.py +72 -0
  3083. pyrogram/storage/memory_storage.py +73 -0
  3084. pyrogram/storage/mongo_storage.py +206 -0
  3085. pyrogram/storage/sqlite_storage.py +228 -0
  3086. pyrogram/storage/storage.py +91 -0
  3087. pyrogram/sync.py +113 -0
  3088. pyrogram/types/__init__.py +28 -0
  3089. pyrogram/types/authorization/__init__.py +22 -0
  3090. pyrogram/types/authorization/sent_code.py +62 -0
  3091. pyrogram/types/authorization/terms_of_service.py +56 -0
  3092. pyrogram/types/bots_and_keyboards/__init__.py +79 -0
  3093. pyrogram/types/bots_and_keyboards/bot_command.py +53 -0
  3094. pyrogram/types/bots_and_keyboards/bot_command_scope.py +73 -0
  3095. pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +32 -0
  3096. pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +32 -0
  3097. pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +32 -0
  3098. pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py +43 -0
  3099. pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +43 -0
  3100. pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py +48 -0
  3101. pyrogram/types/bots_and_keyboards/bot_command_scope_default.py +33 -0
  3102. pyrogram/types/bots_and_keyboards/bot_info.py +52 -0
  3103. pyrogram/types/bots_and_keyboards/callback_game.py +29 -0
  3104. pyrogram/types/bots_and_keyboards/callback_query.py +313 -0
  3105. pyrogram/types/bots_and_keyboards/force_reply.py +66 -0
  3106. pyrogram/types/bots_and_keyboards/game_high_score.py +70 -0
  3107. pyrogram/types/bots_and_keyboards/inline_keyboard_button.py +208 -0
  3108. pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py +76 -0
  3109. pyrogram/types/bots_and_keyboards/keyboard_button.py +171 -0
  3110. pyrogram/types/bots_and_keyboards/login_url.py +90 -0
  3111. pyrogram/types/bots_and_keyboards/menu_button.py +44 -0
  3112. pyrogram/types/bots_and_keyboards/menu_button_commands.py +32 -0
  3113. pyrogram/types/bots_and_keyboards/menu_button_default.py +32 -0
  3114. pyrogram/types/bots_and_keyboards/menu_button_web_app.py +51 -0
  3115. pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py +112 -0
  3116. pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py +58 -0
  3117. pyrogram/types/bots_and_keyboards/request_peer_type_channel.py +41 -0
  3118. pyrogram/types/bots_and_keyboards/request_peer_type_chat.py +51 -0
  3119. pyrogram/types/bots_and_keyboards/request_peer_type_user.py +41 -0
  3120. pyrogram/types/bots_and_keyboards/sent_web_app_message.py +42 -0
  3121. pyrogram/types/bots_and_keyboards/web_app_info.py +37 -0
  3122. pyrogram/types/inline_mode/__init__.py +47 -0
  3123. pyrogram/types/inline_mode/chosen_inline_result.py +99 -0
  3124. pyrogram/types/inline_mode/inline_query.py +181 -0
  3125. pyrogram/types/inline_mode/inline_query_result.py +63 -0
  3126. pyrogram/types/inline_mode/inline_query_result_animation.py +155 -0
  3127. pyrogram/types/inline_mode/inline_query_result_article.py +99 -0
  3128. pyrogram/types/inline_mode/inline_query_result_audio.py +120 -0
  3129. pyrogram/types/inline_mode/inline_query_result_cached_animation.py +108 -0
  3130. pyrogram/types/inline_mode/inline_query_result_cached_audio.py +101 -0
  3131. pyrogram/types/inline_mode/inline_query_result_cached_document.py +113 -0
  3132. pyrogram/types/inline_mode/inline_query_result_cached_photo.py +111 -0
  3133. pyrogram/types/inline_mode/inline_query_result_cached_sticker.py +78 -0
  3134. pyrogram/types/inline_mode/inline_query_result_cached_video.py +114 -0
  3135. pyrogram/types/inline_mode/inline_query_result_cached_voice.py +108 -0
  3136. pyrogram/types/inline_mode/inline_query_result_contact.py +114 -0
  3137. pyrogram/types/inline_mode/inline_query_result_document.py +145 -0
  3138. pyrogram/types/inline_mode/inline_query_result_location.py +122 -0
  3139. pyrogram/types/inline_mode/inline_query_result_photo.py +147 -0
  3140. pyrogram/types/inline_mode/inline_query_result_venue.py +131 -0
  3141. pyrogram/types/inline_mode/inline_query_result_video.py +151 -0
  3142. pyrogram/types/inline_mode/inline_query_result_voice.py +114 -0
  3143. pyrogram/types/input_media/__init__.py +30 -0
  3144. pyrogram/types/input_media/input_media.py +49 -0
  3145. pyrogram/types/input_media/input_media_animation.py +85 -0
  3146. pyrogram/types/input_media/input_media_audio.py +82 -0
  3147. pyrogram/types/input_media/input_media_document.py +65 -0
  3148. pyrogram/types/input_media/input_media_photo.py +63 -0
  3149. pyrogram/types/input_media/input_media_video.py +91 -0
  3150. pyrogram/types/input_media/input_phone_contact.py +51 -0
  3151. pyrogram/types/input_message_content/__init__.py +26 -0
  3152. pyrogram/types/input_message_content/input_message_content.py +40 -0
  3153. pyrogram/types/input_message_content/input_reply_to_message.py +62 -0
  3154. pyrogram/types/input_message_content/input_reply_to_story.py +49 -0
  3155. pyrogram/types/input_message_content/input_text_message_content.py +68 -0
  3156. pyrogram/types/list.py +30 -0
  3157. pyrogram/types/messages_and_media/__init__.py +52 -0
  3158. pyrogram/types/messages_and_media/animation.py +121 -0
  3159. pyrogram/types/messages_and_media/audio.py +121 -0
  3160. pyrogram/types/messages_and_media/contact.py +71 -0
  3161. pyrogram/types/messages_and_media/dice.py +47 -0
  3162. pyrogram/types/messages_and_media/document.py +98 -0
  3163. pyrogram/types/messages_and_media/exported_story_link.py +44 -0
  3164. pyrogram/types/messages_and_media/game.py +99 -0
  3165. pyrogram/types/messages_and_media/location.py +55 -0
  3166. pyrogram/types/messages_and_media/message.py +3893 -0
  3167. pyrogram/types/messages_and_media/message_entity.py +124 -0
  3168. pyrogram/types/messages_and_media/message_reactions.py +56 -0
  3169. pyrogram/types/messages_and_media/photo.py +130 -0
  3170. pyrogram/types/messages_and_media/poll.py +240 -0
  3171. pyrogram/types/messages_and_media/poll_option.py +50 -0
  3172. pyrogram/types/messages_and_media/reaction.py +86 -0
  3173. pyrogram/types/messages_and_media/sticker.py +206 -0
  3174. pyrogram/types/messages_and_media/stickerset.py +89 -0
  3175. pyrogram/types/messages_and_media/stories_privacy.py +47 -0
  3176. pyrogram/types/messages_and_media/story.py +1638 -0
  3177. pyrogram/types/messages_and_media/story_views.py +50 -0
  3178. pyrogram/types/messages_and_media/stripped_thumbnail.py +47 -0
  3179. pyrogram/types/messages_and_media/thumbnail.py +111 -0
  3180. pyrogram/types/messages_and_media/venue.py +74 -0
  3181. pyrogram/types/messages_and_media/video.py +148 -0
  3182. pyrogram/types/messages_and_media/video_note.py +108 -0
  3183. pyrogram/types/messages_and_media/voice.py +96 -0
  3184. pyrogram/types/messages_and_media/web_app_data.py +51 -0
  3185. pyrogram/types/messages_and_media/web_page.py +187 -0
  3186. pyrogram/types/object.py +121 -0
  3187. pyrogram/types/update.py +29 -0
  3188. pyrogram/types/user_and_chats/__init__.py +89 -0
  3189. pyrogram/types/user_and_chats/chat.py +1002 -0
  3190. pyrogram/types/user_and_chats/chat_admin_with_invite_links.py +63 -0
  3191. pyrogram/types/user_and_chats/chat_event.py +533 -0
  3192. pyrogram/types/user_and_chats/chat_event_filter.py +175 -0
  3193. pyrogram/types/user_and_chats/chat_invite_link.py +130 -0
  3194. pyrogram/types/user_and_chats/chat_join_request.py +139 -0
  3195. pyrogram/types/user_and_chats/chat_joined_by_request.py +29 -0
  3196. pyrogram/types/user_and_chats/chat_joiner.py +82 -0
  3197. pyrogram/types/user_and_chats/chat_member.py +227 -0
  3198. pyrogram/types/user_and_chats/chat_member_updated.py +102 -0
  3199. pyrogram/types/user_and_chats/chat_permissions.py +105 -0
  3200. pyrogram/types/user_and_chats/chat_photo.py +107 -0
  3201. pyrogram/types/user_and_chats/chat_preview.py +79 -0
  3202. pyrogram/types/user_and_chats/chat_privileges.py +119 -0
  3203. pyrogram/types/user_and_chats/chat_reactions.py +69 -0
  3204. pyrogram/types/user_and_chats/dialog.py +79 -0
  3205. pyrogram/types/user_and_chats/emoji_status.py +77 -0
  3206. pyrogram/types/user_and_chats/forum_topic.py +152 -0
  3207. pyrogram/types/user_and_chats/forum_topic_closed.py +29 -0
  3208. pyrogram/types/user_and_chats/forum_topic_created.py +58 -0
  3209. pyrogram/types/user_and_chats/forum_topic_edited.py +58 -0
  3210. pyrogram/types/user_and_chats/forum_topic_reopened.py +29 -0
  3211. pyrogram/types/user_and_chats/general_forum_topic_hidden.py +29 -0
  3212. pyrogram/types/user_and_chats/general_forum_topic_unhidden.py +29 -0
  3213. pyrogram/types/user_and_chats/invite_link_importer.py +61 -0
  3214. pyrogram/types/user_and_chats/peer_channel.py +46 -0
  3215. pyrogram/types/user_and_chats/peer_user.py +47 -0
  3216. pyrogram/types/user_and_chats/restriction.py +50 -0
  3217. pyrogram/types/user_and_chats/user.py +419 -0
  3218. pyrogram/types/user_and_chats/username.py +58 -0
  3219. pyrogram/types/user_and_chats/video_chat_ended.py +41 -0
  3220. pyrogram/types/user_and_chats/video_chat_members_invited.py +50 -0
  3221. pyrogram/types/user_and_chats/video_chat_scheduled.py +43 -0
  3222. pyrogram/types/user_and_chats/video_chat_started.py +29 -0
  3223. pyrogram/utils.py +382 -0
@@ -0,0 +1,388 @@
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 .bind_auth_key_inner import BindAuthKeyInner
28
+ from .server_dh_params import ServerDHParams
29
+ from .server_dh_inner_data import ServerDHInnerData
30
+ from .client_dh_inner_data import ClientDHInnerData
31
+ from .set_client_dh_params_answer import SetClientDHParamsAnswer
32
+ from .destroy_auth_key_res import DestroyAuthKeyRes
33
+ from .msgs_ack import MsgsAck
34
+ from .bad_msg_notification import BadMsgNotification
35
+ from .msgs_state_req import MsgsStateReq
36
+ from .msgs_state_info import MsgsStateInfo
37
+ from .msgs_all_info import MsgsAllInfo
38
+ from .msg_detailed_info import MsgDetailedInfo
39
+ from .msg_resend_req import MsgResendReq
40
+ from .rpc_result import RpcResult
41
+ from .rpc_error import RpcError
42
+ from .rpc_drop_answer import RpcDropAnswer
43
+ from .pong import Pong
44
+ from .destroy_session_res import DestroySessionRes
45
+ from .new_session import NewSession
46
+ from .http_wait import HttpWait
47
+ from .ip_port import IpPort
48
+ from .access_point_rule import AccessPointRule
49
+ from .input_peer import InputPeer
50
+ from .input_user import InputUser
51
+ from .input_contact import InputContact
52
+ from .input_file import InputFile
53
+ from .input_media import InputMedia
54
+ from .input_chat_photo import InputChatPhoto
55
+ from .input_geo_point import InputGeoPoint
56
+ from .input_photo import InputPhoto
57
+ from .input_file_location import InputFileLocation
58
+ from .peer import Peer
59
+ from .user import User
60
+ from .user_profile_photo import UserProfilePhoto
61
+ from .user_status import UserStatus
62
+ from .chat import Chat
63
+ from .chat_full import ChatFull
64
+ from .chat_participant import ChatParticipant
65
+ from .chat_participants import ChatParticipants
66
+ from .chat_photo import ChatPhoto
67
+ from .message import Message
68
+ from .message_media import MessageMedia
69
+ from .message_action import MessageAction
70
+ from .dialog import Dialog
71
+ from .photo import Photo
72
+ from .photo_size import PhotoSize
73
+ from .geo_point import GeoPoint
74
+ from .input_notify_peer import InputNotifyPeer
75
+ from .input_peer_notify_settings import InputPeerNotifySettings
76
+ from .peer_notify_settings import PeerNotifySettings
77
+ from .peer_settings import PeerSettings
78
+ from .wall_paper import WallPaper
79
+ from .report_reason import ReportReason
80
+ from .user_full import UserFull
81
+ from .contact import Contact
82
+ from .imported_contact import ImportedContact
83
+ from .contact_status import ContactStatus
84
+ from .messages_filter import MessagesFilter
85
+ from .update import Update
86
+ from .updates_t import Updates
87
+ from .dc_option import DcOption
88
+ from .config import Config
89
+ from .nearest_dc import NearestDc
90
+ from .encrypted_chat import EncryptedChat
91
+ from .input_encrypted_chat import InputEncryptedChat
92
+ from .encrypted_file import EncryptedFile
93
+ from .input_encrypted_file import InputEncryptedFile
94
+ from .encrypted_message import EncryptedMessage
95
+ from .input_document import InputDocument
96
+ from .document import Document
97
+ from .notify_peer import NotifyPeer
98
+ from .send_message_action import SendMessageAction
99
+ from .input_privacy_key import InputPrivacyKey
100
+ from .privacy_key import PrivacyKey
101
+ from .input_privacy_rule import InputPrivacyRule
102
+ from .privacy_rule import PrivacyRule
103
+ from .account_days_ttl import AccountDaysTTL
104
+ from .document_attribute import DocumentAttribute
105
+ from .sticker_pack import StickerPack
106
+ from .web_page import WebPage
107
+ from .authorization import Authorization
108
+ from .received_notify_message import ReceivedNotifyMessage
109
+ from .exported_chat_invite import ExportedChatInvite
110
+ from .chat_invite import ChatInvite
111
+ from .input_sticker_set import InputStickerSet
112
+ from .sticker_set import StickerSet
113
+ from .bot_command import BotCommand
114
+ from .bot_info import BotInfo
115
+ from .keyboard_button import KeyboardButton
116
+ from .keyboard_button_row import KeyboardButtonRow
117
+ from .reply_markup import ReplyMarkup
118
+ from .message_entity import MessageEntity
119
+ from .input_channel import InputChannel
120
+ from .message_range import MessageRange
121
+ from .channel_messages_filter import ChannelMessagesFilter
122
+ from .channel_participant import ChannelParticipant
123
+ from .channel_participants_filter import ChannelParticipantsFilter
124
+ from .input_bot_inline_message import InputBotInlineMessage
125
+ from .input_bot_inline_result import InputBotInlineResult
126
+ from .bot_inline_message import BotInlineMessage
127
+ from .bot_inline_result import BotInlineResult
128
+ from .exported_message_link import ExportedMessageLink
129
+ from .message_fwd_header import MessageFwdHeader
130
+ from .input_bot_inline_message_id import InputBotInlineMessageID
131
+ from .inline_bot_switch_pm import InlineBotSwitchPM
132
+ from .top_peer import TopPeer
133
+ from .top_peer_category import TopPeerCategory
134
+ from .top_peer_category_peers import TopPeerCategoryPeers
135
+ from .draft_message import DraftMessage
136
+ from .sticker_set_covered import StickerSetCovered
137
+ from .mask_coords import MaskCoords
138
+ from .input_stickered_media import InputStickeredMedia
139
+ from .game import Game
140
+ from .input_game import InputGame
141
+ from .high_score import HighScore
142
+ from .rich_text import RichText
143
+ from .page_block import PageBlock
144
+ from .phone_call_discard_reason import PhoneCallDiscardReason
145
+ from .data_json import DataJSON
146
+ from .labeled_price import LabeledPrice
147
+ from .invoice import Invoice
148
+ from .payment_charge import PaymentCharge
149
+ from .post_address import PostAddress
150
+ from .payment_requested_info import PaymentRequestedInfo
151
+ from .payment_saved_credentials import PaymentSavedCredentials
152
+ from .web_document import WebDocument
153
+ from .input_web_document import InputWebDocument
154
+ from .input_web_file_location import InputWebFileLocation
155
+ from .input_payment_credentials import InputPaymentCredentials
156
+ from .shipping_option import ShippingOption
157
+ from .input_sticker_set_item import InputStickerSetItem
158
+ from .input_phone_call import InputPhoneCall
159
+ from .phone_call import PhoneCall
160
+ from .phone_connection import PhoneConnection
161
+ from .phone_call_protocol import PhoneCallProtocol
162
+ from .cdn_public_key import CdnPublicKey
163
+ from .cdn_config import CdnConfig
164
+ from .lang_pack_string import LangPackString
165
+ from .lang_pack_difference import LangPackDifference
166
+ from .lang_pack_language import LangPackLanguage
167
+ from .channel_admin_log_event_action import ChannelAdminLogEventAction
168
+ from .channel_admin_log_event import ChannelAdminLogEvent
169
+ from .channel_admin_log_events_filter import ChannelAdminLogEventsFilter
170
+ from .popular_contact import PopularContact
171
+ from .recent_me_url import RecentMeUrl
172
+ from .input_single_media import InputSingleMedia
173
+ from .web_authorization import WebAuthorization
174
+ from .input_message import InputMessage
175
+ from .input_dialog_peer import InputDialogPeer
176
+ from .dialog_peer import DialogPeer
177
+ from .file_hash import FileHash
178
+ from .input_client_proxy import InputClientProxy
179
+ from .input_secure_file import InputSecureFile
180
+ from .secure_file import SecureFile
181
+ from .secure_data import SecureData
182
+ from .secure_plain_data import SecurePlainData
183
+ from .secure_value_type import SecureValueType
184
+ from .secure_value import SecureValue
185
+ from .input_secure_value import InputSecureValue
186
+ from .secure_value_hash import SecureValueHash
187
+ from .secure_value_error import SecureValueError
188
+ from .secure_credentials_encrypted import SecureCredentialsEncrypted
189
+ from .saved_contact import SavedContact
190
+ from .password_kdf_algo import PasswordKdfAlgo
191
+ from .secure_password_kdf_algo import SecurePasswordKdfAlgo
192
+ from .secure_secret_settings import SecureSecretSettings
193
+ from .input_check_password_srp import InputCheckPasswordSRP
194
+ from .secure_required_type import SecureRequiredType
195
+ from .input_app_event import InputAppEvent
196
+ from .json_object_value import JSONObjectValue
197
+ from .json_value import JSONValue
198
+ from .page_table_cell import PageTableCell
199
+ from .page_table_row import PageTableRow
200
+ from .page_caption import PageCaption
201
+ from .page_list_item import PageListItem
202
+ from .page_list_ordered_item import PageListOrderedItem
203
+ from .page_related_article import PageRelatedArticle
204
+ from .page import Page
205
+ from .poll_answer import PollAnswer
206
+ from .poll import Poll
207
+ from .poll_answer_voters import PollAnswerVoters
208
+ from .poll_results import PollResults
209
+ from .chat_onlines import ChatOnlines
210
+ from .stats_url import StatsURL
211
+ from .chat_admin_rights import ChatAdminRights
212
+ from .chat_banned_rights import ChatBannedRights
213
+ from .input_wall_paper import InputWallPaper
214
+ from .code_settings import CodeSettings
215
+ from .wall_paper_settings import WallPaperSettings
216
+ from .auto_download_settings import AutoDownloadSettings
217
+ from .emoji_keyword import EmojiKeyword
218
+ from .emoji_keywords_difference import EmojiKeywordsDifference
219
+ from .emoji_url import EmojiURL
220
+ from .emoji_language import EmojiLanguage
221
+ from .folder import Folder
222
+ from .input_folder_peer import InputFolderPeer
223
+ from .folder_peer import FolderPeer
224
+ from .url_auth_result import UrlAuthResult
225
+ from .channel_location import ChannelLocation
226
+ from .peer_located import PeerLocated
227
+ from .restriction_reason import RestrictionReason
228
+ from .input_theme import InputTheme
229
+ from .theme import Theme
230
+ from .base_theme import BaseTheme
231
+ from .input_theme_settings import InputThemeSettings
232
+ from .theme_settings import ThemeSettings
233
+ from .web_page_attribute import WebPageAttribute
234
+ from .bank_card_open_url import BankCardOpenUrl
235
+ from .dialog_filter import DialogFilter
236
+ from .dialog_filter_suggested import DialogFilterSuggested
237
+ from .stats_date_range_days import StatsDateRangeDays
238
+ from .stats_abs_value_and_prev import StatsAbsValueAndPrev
239
+ from .stats_percent_value import StatsPercentValue
240
+ from .stats_graph import StatsGraph
241
+ from .video_size import VideoSize
242
+ from .stats_group_top_poster import StatsGroupTopPoster
243
+ from .stats_group_top_admin import StatsGroupTopAdmin
244
+ from .stats_group_top_inviter import StatsGroupTopInviter
245
+ from .global_privacy_settings import GlobalPrivacySettings
246
+ from .message_views import MessageViews
247
+ from .message_reply_header import MessageReplyHeader
248
+ from .message_replies import MessageReplies
249
+ from .peer_blocked import PeerBlocked
250
+ from .group_call import GroupCall
251
+ from .input_group_call import InputGroupCall
252
+ from .group_call_participant import GroupCallParticipant
253
+ from .inline_query_peer_type import InlineQueryPeerType
254
+ from .chat_invite_importer import ChatInviteImporter
255
+ from .chat_admin_with_invites import ChatAdminWithInvites
256
+ from .group_call_participant_video_source_group import GroupCallParticipantVideoSourceGroup
257
+ from .group_call_participant_video import GroupCallParticipantVideo
258
+ from .bot_command_scope import BotCommandScope
259
+ from .sponsored_message import SponsoredMessage
260
+ from .search_results_calendar_period import SearchResultsCalendarPeriod
261
+ from .search_results_position import SearchResultsPosition
262
+ from .reaction_count import ReactionCount
263
+ from .message_reactions import MessageReactions
264
+ from .available_reaction import AvailableReaction
265
+ from .message_peer_reaction import MessagePeerReaction
266
+ from .group_call_stream_channel import GroupCallStreamChannel
267
+ from .attach_menu_bot_icon_color import AttachMenuBotIconColor
268
+ from .attach_menu_bot_icon import AttachMenuBotIcon
269
+ from .attach_menu_bot import AttachMenuBot
270
+ from .attach_menu_bots import AttachMenuBots
271
+ from .attach_menu_bots_bot import AttachMenuBotsBot
272
+ from .web_view_result import WebViewResult
273
+ from .web_view_message_sent import WebViewMessageSent
274
+ from .bot_menu_button import BotMenuButton
275
+ from .notification_sound import NotificationSound
276
+ from .attach_menu_peer_type import AttachMenuPeerType
277
+ from .input_invoice import InputInvoice
278
+ from .input_store_payment_purpose import InputStorePaymentPurpose
279
+ from .premium_gift_option import PremiumGiftOption
280
+ from .payment_form_method import PaymentFormMethod
281
+ from .emoji_status import EmojiStatus
282
+ from .reaction import Reaction
283
+ from .chat_reactions import ChatReactions
284
+ from .email_verify_purpose import EmailVerifyPurpose
285
+ from .email_verification import EmailVerification
286
+ from .premium_subscription_option import PremiumSubscriptionOption
287
+ from .send_as_peer import SendAsPeer
288
+ from .message_extended_media import MessageExtendedMedia
289
+ from .sticker_keyword import StickerKeyword
290
+ from .username import Username
291
+ from .forum_topic import ForumTopic
292
+ from .default_history_ttl import DefaultHistoryTTL
293
+ from .exported_contact_token import ExportedContactToken
294
+ from .request_peer_type import RequestPeerType
295
+ from .emoji_list import EmojiList
296
+ from .emoji_group import EmojiGroup
297
+ from .text_with_entities import TextWithEntities
298
+ from .auto_save_settings import AutoSaveSettings
299
+ from .auto_save_exception import AutoSaveException
300
+ from .input_bot_app import InputBotApp
301
+ from .bot_app import BotApp
302
+ from .inline_bot_web_view import InlineBotWebView
303
+ from .read_participant_date import ReadParticipantDate
304
+ from .input_chatlist import InputChatlist
305
+ from .exported_chatlist_invite import ExportedChatlistInvite
306
+ from .message_peer_vote import MessagePeerVote
307
+ from .story_views import StoryViews
308
+ from .story_item import StoryItem
309
+ from .story_view import StoryView
310
+ from .input_reply_to import InputReplyTo
311
+ from .exported_story_link import ExportedStoryLink
312
+ from .stories_stealth_mode import StoriesStealthMode
313
+ from .media_area_coordinates import MediaAreaCoordinates
314
+ from .media_area import MediaArea
315
+ from .peer_stories import PeerStories
316
+ from .premium_gift_code_option import PremiumGiftCodeOption
317
+ from .prepaid_giveaway import PrepaidGiveaway
318
+ from .boost import Boost
319
+ from .my_boost import MyBoost
320
+ from .story_fwd_header import StoryFwdHeader
321
+ from .post_interaction_counters import PostInteractionCounters
322
+ from .public_forward import PublicForward
323
+ from .peer_color import PeerColor
324
+ from .story_reaction import StoryReaction
325
+ from .saved_dialog import SavedDialog
326
+ from .saved_reaction_tag import SavedReactionTag
327
+ from .outbox_read_date import OutboxReadDate
328
+ from .sms_job import SmsJob
329
+ from .business_weekly_open import BusinessWeeklyOpen
330
+ from .business_work_hours import BusinessWorkHours
331
+ from .business_location import BusinessLocation
332
+ from .input_business_recipients import InputBusinessRecipients
333
+ from .business_recipients import BusinessRecipients
334
+ from .business_away_message_schedule import BusinessAwayMessageSchedule
335
+ from .input_business_greeting_message import InputBusinessGreetingMessage
336
+ from .business_greeting_message import BusinessGreetingMessage
337
+ from .input_business_away_message import InputBusinessAwayMessage
338
+ from .business_away_message import BusinessAwayMessage
339
+ from .timezone import Timezone
340
+ from .quick_reply import QuickReply
341
+ from .input_quick_reply_shortcut import InputQuickReplyShortcut
342
+ from .connected_bot import ConnectedBot
343
+ from .birthday import Birthday
344
+ from .bot_business_connection import BotBusinessConnection
345
+ from .input_business_intro import InputBusinessIntro
346
+ from .business_intro import BusinessIntro
347
+ from .input_collectible import InputCollectible
348
+ from .input_business_bot_recipients import InputBusinessBotRecipients
349
+ from .business_bot_recipients import BusinessBotRecipients
350
+ from .contact_birthday import ContactBirthday
351
+ from .missing_invitee import MissingInvitee
352
+ from .input_business_chat_link import InputBusinessChatLink
353
+ from .business_chat_link import BusinessChatLink
354
+ from .requested_peer import RequestedPeer
355
+ from .sponsored_message_report_option import SponsoredMessageReportOption
356
+ from .broadcast_revenue_transaction import BroadcastRevenueTransaction
357
+ from .reaction_notifications_from import ReactionNotificationsFrom
358
+ from .reactions_notify_settings import ReactionsNotifySettings
359
+ from .broadcast_revenue_balances import BroadcastRevenueBalances
360
+ from .available_effect import AvailableEffect
361
+ from .fact_check import FactCheck
362
+ from .stars_transaction_peer import StarsTransactionPeer
363
+ from .stars_topup_option import StarsTopupOption
364
+ from .stars_transaction import StarsTransaction
365
+ from .found_story import FoundStory
366
+ from .geo_point_address import GeoPointAddress
367
+ from .stars_revenue_status import StarsRevenueStatus
368
+ from .input_stars_transaction import InputStarsTransaction
369
+ from .stars_gift_option import StarsGiftOption
370
+ from .bot_preview_media import BotPreviewMedia
371
+ from .stars_subscription_pricing import StarsSubscriptionPricing
372
+ from .stars_subscription import StarsSubscription
373
+ from .message_reactor import MessageReactor
374
+ from .stars_giveaway_option import StarsGiveawayOption
375
+ from .stars_giveaway_winners_option import StarsGiveawayWinnersOption
376
+ from .star_gift import StarGift
377
+ from .message_report_option import MessageReportOption
378
+ from .report_result import ReportResult
379
+ from .bot_app_settings import BotAppSettings
380
+ from .star_ref_program import StarRefProgram
381
+ from .connected_bot_star_ref import ConnectedBotStarRef
382
+ from .stars_amount import StarsAmount
383
+ from .bot_verifier_settings import BotVerifierSettings
384
+ from .bot_verification import BotVerification
385
+ from .star_gift_attribute import StarGiftAttribute
386
+ from .saved_star_gift import SavedStarGift
387
+ from .input_saved_star_gift import InputSavedStarGift
388
+ from . import help, storage, auth, contacts, messages, updates, photos, upload, account, channels, payments, phone, stats, stickers, users, chatlists, bots, stories, premium, smsjobs, fragment
@@ -0,0 +1,53 @@
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 typing import Union
26
+ from pyrogram import raw
27
+ from pyrogram.raw.core import TLObject
28
+
29
+ AccessPointRule = Union[raw.types.AccessPointRule]
30
+
31
+
32
+ # noinspection PyRedeclaration
33
+ class AccessPointRule: # type: ignore
34
+ """Telegram API base type.
35
+
36
+ Constructors:
37
+ This base type has 1 constructor available.
38
+
39
+ .. currentmodule:: pyrogram.raw.types
40
+
41
+ .. autosummary::
42
+ :nosignatures:
43
+
44
+ AccessPointRule
45
+ """
46
+
47
+ QUALNAME = "pyrogram.raw.base.AccessPointRule"
48
+
49
+ def __init__(self):
50
+ raise TypeError("Base types can only be used for type checking purposes: "
51
+ "you tried to use a base type instance as argument, "
52
+ "but you need to instantiate one of its constructors instead. "
53
+ "More info: https://docs.pyrogram.org/telegram/base/access-point-rule")
@@ -0,0 +1,47 @@
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 .privacy_rules import PrivacyRules
26
+ from .authorizations import Authorizations
27
+ from .password import Password
28
+ from .password_settings import PasswordSettings
29
+ from .password_input_settings import PasswordInputSettings
30
+ from .tmp_password import TmpPassword
31
+ from .web_authorizations import WebAuthorizations
32
+ from .authorization_form import AuthorizationForm
33
+ from .sent_email_code import SentEmailCode
34
+ from .takeout import Takeout
35
+ from .wall_papers import WallPapers
36
+ from .auto_download_settings import AutoDownloadSettings
37
+ from .themes import Themes
38
+ from .content_settings import ContentSettings
39
+ from .reset_password_result import ResetPasswordResult
40
+ from .saved_ringtones import SavedRingtones
41
+ from .saved_ringtone import SavedRingtone
42
+ from .emoji_statuses import EmojiStatuses
43
+ from .email_verified import EmailVerified
44
+ from .auto_save_settings import AutoSaveSettings
45
+ from .connected_bots import ConnectedBots
46
+ from .business_chat_links import BusinessChatLinks
47
+ from .resolved_business_chat_links import ResolvedBusinessChatLinks
@@ -0,0 +1,63 @@
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 typing import Union
26
+ from pyrogram import raw
27
+ from pyrogram.raw.core import TLObject
28
+
29
+ AuthorizationForm = Union[raw.types.account.AuthorizationForm]
30
+
31
+
32
+ # noinspection PyRedeclaration
33
+ class AuthorizationForm: # type: ignore
34
+ """Telegram API base type.
35
+
36
+ Constructors:
37
+ This base type has 1 constructor available.
38
+
39
+ .. currentmodule:: pyrogram.raw.types
40
+
41
+ .. autosummary::
42
+ :nosignatures:
43
+
44
+ account.AuthorizationForm
45
+
46
+ Functions:
47
+ This object can be returned by 1 function.
48
+
49
+ .. currentmodule:: pyrogram.raw.functions
50
+
51
+ .. autosummary::
52
+ :nosignatures:
53
+
54
+ account.GetAuthorizationForm
55
+ """
56
+
57
+ QUALNAME = "pyrogram.raw.base.account.AuthorizationForm"
58
+
59
+ def __init__(self):
60
+ raise TypeError("Base types can only be used for type checking purposes: "
61
+ "you tried to use a base type instance as argument, "
62
+ "but you need to instantiate one of its constructors instead. "
63
+ "More info: https://docs.pyrogram.org/telegram/base/authorization-form")
@@ -0,0 +1,63 @@
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 typing import Union
26
+ from pyrogram import raw
27
+ from pyrogram.raw.core import TLObject
28
+
29
+ Authorizations = Union[raw.types.account.Authorizations]
30
+
31
+
32
+ # noinspection PyRedeclaration
33
+ class Authorizations: # type: ignore
34
+ """Telegram API base type.
35
+
36
+ Constructors:
37
+ This base type has 1 constructor available.
38
+
39
+ .. currentmodule:: pyrogram.raw.types
40
+
41
+ .. autosummary::
42
+ :nosignatures:
43
+
44
+ account.Authorizations
45
+
46
+ Functions:
47
+ This object can be returned by 1 function.
48
+
49
+ .. currentmodule:: pyrogram.raw.functions
50
+
51
+ .. autosummary::
52
+ :nosignatures:
53
+
54
+ account.GetAuthorizations
55
+ """
56
+
57
+ QUALNAME = "pyrogram.raw.base.account.Authorizations"
58
+
59
+ def __init__(self):
60
+ raise TypeError("Base types can only be used for type checking purposes: "
61
+ "you tried to use a base type instance as argument, "
62
+ "but you need to instantiate one of its constructors instead. "
63
+ "More info: https://docs.pyrogram.org/telegram/base/authorizations")
@@ -0,0 +1,63 @@
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 typing import Union
26
+ from pyrogram import raw
27
+ from pyrogram.raw.core import TLObject
28
+
29
+ AutoDownloadSettings = Union[raw.types.account.AutoDownloadSettings]
30
+
31
+
32
+ # noinspection PyRedeclaration
33
+ class AutoDownloadSettings: # type: ignore
34
+ """Telegram API base type.
35
+
36
+ Constructors:
37
+ This base type has 1 constructor available.
38
+
39
+ .. currentmodule:: pyrogram.raw.types
40
+
41
+ .. autosummary::
42
+ :nosignatures:
43
+
44
+ account.AutoDownloadSettings
45
+
46
+ Functions:
47
+ This object can be returned by 1 function.
48
+
49
+ .. currentmodule:: pyrogram.raw.functions
50
+
51
+ .. autosummary::
52
+ :nosignatures:
53
+
54
+ account.GetAutoDownloadSettings
55
+ """
56
+
57
+ QUALNAME = "pyrogram.raw.base.account.AutoDownloadSettings"
58
+
59
+ def __init__(self):
60
+ raise TypeError("Base types can only be used for type checking purposes: "
61
+ "you tried to use a base type instance as argument, "
62
+ "but you need to instantiate one of its constructors instead. "
63
+ "More info: https://docs.pyrogram.org/telegram/base/auto-download-settings")