hypergram 1.1.0__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 (3950) hide show
  1. hypergram/__init__.py +38 -0
  2. hypergram/client.py +1553 -0
  3. hypergram/connection/__init__.py +19 -0
  4. hypergram/connection/connection.py +92 -0
  5. hypergram/connection/transport/__init__.py +19 -0
  6. hypergram/connection/transport/tcp/__init__.py +24 -0
  7. hypergram/connection/transport/tcp/tcp.py +248 -0
  8. hypergram/connection/transport/tcp/tcp_abridged.py +66 -0
  9. hypergram/connection/transport/tcp/tcp_abridged_o.py +106 -0
  10. hypergram/connection/transport/tcp/tcp_full.py +73 -0
  11. hypergram/connection/transport/tcp/tcp_intermediate.py +54 -0
  12. hypergram/connection/transport/tcp/tcp_intermediate_o.py +88 -0
  13. hypergram/crypto/__init__.py +17 -0
  14. hypergram/crypto/aes.py +130 -0
  15. hypergram/crypto/mtproto.py +100 -0
  16. hypergram/crypto/prime.py +82 -0
  17. hypergram/crypto/rsa.py +259 -0
  18. hypergram/dispatcher.py +514 -0
  19. hypergram/enums/__init__.py +105 -0
  20. hypergram/enums/auto_name.py +27 -0
  21. hypergram/enums/block_list.py +31 -0
  22. hypergram/enums/business_schedule.py +34 -0
  23. hypergram/enums/button_style.py +37 -0
  24. hypergram/enums/chat_action.py +72 -0
  25. hypergram/enums/chat_event_action.py +140 -0
  26. hypergram/enums/chat_join_type.py +34 -0
  27. hypergram/enums/chat_member_status.py +43 -0
  28. hypergram/enums/chat_members_filter.py +42 -0
  29. hypergram/enums/chat_type.py +46 -0
  30. hypergram/enums/client_platform.py +49 -0
  31. hypergram/enums/folder_color.py +47 -0
  32. hypergram/enums/gift_attribute_type.py +36 -0
  33. hypergram/enums/gift_for_resale_order.py +34 -0
  34. hypergram/enums/gift_purchase_offer_state.py +34 -0
  35. hypergram/enums/gift_type.py +31 -0
  36. hypergram/enums/mask_point_type.py +35 -0
  37. hypergram/enums/media_area_type.py +46 -0
  38. hypergram/enums/message_entity_type.py +87 -0
  39. hypergram/enums/message_media_type.py +94 -0
  40. hypergram/enums/message_origin_type.py +40 -0
  41. hypergram/enums/message_service_type.py +235 -0
  42. hypergram/enums/messages_filter.py +78 -0
  43. hypergram/enums/next_code_type.py +39 -0
  44. hypergram/enums/paid_reaction_privacy.py +35 -0
  45. hypergram/enums/parse_mode.py +37 -0
  46. hypergram/enums/payment_form_type.py +34 -0
  47. hypergram/enums/phone_call_discard_reason.py +40 -0
  48. hypergram/enums/phone_number_code_type.py +34 -0
  49. hypergram/enums/poll_type.py +31 -0
  50. hypergram/enums/privacy_key.py +66 -0
  51. hypergram/enums/privacy_rule_type.py +61 -0
  52. hypergram/enums/profile_color.py +71 -0
  53. hypergram/enums/profile_tab.py +48 -0
  54. hypergram/enums/reply_color.py +94 -0
  55. hypergram/enums/sent_code_type.py +57 -0
  56. hypergram/enums/sticker_type.py +34 -0
  57. hypergram/enums/stories_privacy_rules.py +36 -0
  58. hypergram/enums/suggested_post_refund_reason.py +31 -0
  59. hypergram/enums/suggested_post_state.py +34 -0
  60. hypergram/enums/top_chat_category.py +54 -0
  61. hypergram/enums/upgraded_gift_origin.py +46 -0
  62. hypergram/enums/user_status.py +43 -0
  63. hypergram/errors/__init__.py +65 -0
  64. hypergram/errors/exceptions/__init__.py +26 -0
  65. hypergram/errors/exceptions/all.py +937 -0
  66. hypergram/errors/exceptions/bad_request_400.py +4970 -0
  67. hypergram/errors/exceptions/flood_420.py +98 -0
  68. hypergram/errors/exceptions/forbidden_403.py +469 -0
  69. hypergram/errors/exceptions/internal_server_error_500.py +420 -0
  70. hypergram/errors/exceptions/not_acceptable_406.py +301 -0
  71. hypergram/errors/exceptions/see_other_303.py +63 -0
  72. hypergram/errors/exceptions/service_unavailable_503.py +49 -0
  73. hypergram/errors/exceptions/unauthorized_401.py +91 -0
  74. hypergram/errors/rpc_error.py +103 -0
  75. hypergram/file_id.py +481 -0
  76. hypergram/filters.py +1195 -0
  77. hypergram/handlers/__init__.py +48 -0
  78. hypergram/handlers/business_connection_handler.py +56 -0
  79. hypergram/handlers/business_message_handler.py +56 -0
  80. hypergram/handlers/callback_query_handler.py +55 -0
  81. hypergram/handlers/chat_boost_handler.py +55 -0
  82. hypergram/handlers/chat_join_request_handler.py +55 -0
  83. hypergram/handlers/chat_member_updated_handler.py +55 -0
  84. hypergram/handlers/chosen_inline_result_handler.py +58 -0
  85. hypergram/handlers/connect_handler.py +50 -0
  86. hypergram/handlers/deleted_business_messages_handler.py +69 -0
  87. hypergram/handlers/deleted_messages_handler.py +68 -0
  88. hypergram/handlers/disconnect_handler.py +50 -0
  89. hypergram/handlers/edited_business_message_handler.py +56 -0
  90. hypergram/handlers/edited_message_handler.py +55 -0
  91. hypergram/handlers/error_handler.py +98 -0
  92. hypergram/handlers/guest_message_handler.py +55 -0
  93. hypergram/handlers/handler.py +41 -0
  94. hypergram/handlers/inline_query_handler.py +55 -0
  95. hypergram/handlers/managed_bot_updated_handler.py +53 -0
  96. hypergram/handlers/message_handler.py +55 -0
  97. hypergram/handlers/message_reaction_count_handler.py +59 -0
  98. hypergram/handlers/message_reaction_handler.py +59 -0
  99. hypergram/handlers/poll_handler.py +54 -0
  100. hypergram/handlers/pre_checkout_query_handler.py +55 -0
  101. hypergram/handlers/purchased_paid_media_handler.py +57 -0
  102. hypergram/handlers/raw_update_handler.py +87 -0
  103. hypergram/handlers/shipping_query_handler.py +56 -0
  104. hypergram/handlers/start_handler.py +46 -0
  105. hypergram/handlers/stop_handler.py +47 -0
  106. hypergram/handlers/story_handler.py +53 -0
  107. hypergram/handlers/user_status_handler.py +51 -0
  108. hypergram/methods/__init__.py +59 -0
  109. hypergram/methods/account/__init__.py +42 -0
  110. hypergram/methods/account/add_profile_audio.py +151 -0
  111. hypergram/methods/account/get_account_ttl.py +44 -0
  112. hypergram/methods/account/get_global_privacy_settings.py +39 -0
  113. hypergram/methods/account/get_privacy.py +55 -0
  114. hypergram/methods/account/remove_profile_audio.py +50 -0
  115. hypergram/methods/account/set_account_ttl.py +55 -0
  116. hypergram/methods/account/set_global_privacy_settings.py +124 -0
  117. hypergram/methods/account/set_inactive_session_ttl.py +51 -0
  118. hypergram/methods/account/set_privacy.py +76 -0
  119. hypergram/methods/account/set_profile_audio_position.py +63 -0
  120. hypergram/methods/advanced/__init__.py +31 -0
  121. hypergram/methods/advanced/invoke.py +118 -0
  122. hypergram/methods/advanced/recover_gaps.py +184 -0
  123. hypergram/methods/advanced/resolve_peer.py +153 -0
  124. hypergram/methods/advanced/save_file.py +225 -0
  125. hypergram/methods/auth/__init__.py +61 -0
  126. hypergram/methods/auth/accept_terms_of_service.py +44 -0
  127. hypergram/methods/auth/change_phone_number.py +59 -0
  128. hypergram/methods/auth/check_password.py +60 -0
  129. hypergram/methods/auth/connect.py +56 -0
  130. hypergram/methods/auth/disconnect.py +41 -0
  131. hypergram/methods/auth/get_active_sessions.py +39 -0
  132. hypergram/methods/auth/get_password_hint.py +38 -0
  133. hypergram/methods/auth/initialize.py +50 -0
  134. hypergram/methods/auth/log_out.py +51 -0
  135. hypergram/methods/auth/recover_password.py +57 -0
  136. hypergram/methods/auth/resend_phone_number_code.py +63 -0
  137. hypergram/methods/auth/reset_session.py +44 -0
  138. hypergram/methods/auth/reset_sessions.py +39 -0
  139. hypergram/methods/auth/send_phone_number_code.py +187 -0
  140. hypergram/methods/auth/send_recovery_code.py +43 -0
  141. hypergram/methods/auth/sign_in.py +81 -0
  142. hypergram/methods/auth/sign_in_bot.py +78 -0
  143. hypergram/methods/auth/sign_up.py +73 -0
  144. hypergram/methods/auth/terminate.py +67 -0
  145. hypergram/methods/bots/__init__.py +95 -0
  146. hypergram/methods/bots/answer_callback_query.py +81 -0
  147. hypergram/methods/bots/answer_guest_query.py +61 -0
  148. hypergram/methods/bots/answer_inline_query.py +112 -0
  149. hypergram/methods/bots/answer_pre_checkout_query.py +66 -0
  150. hypergram/methods/bots/answer_shipping_query.py +81 -0
  151. hypergram/methods/bots/answer_web_app_query.py +53 -0
  152. hypergram/methods/bots/check_bot_username.py +39 -0
  153. hypergram/methods/bots/create_bot.py +64 -0
  154. hypergram/methods/bots/create_invoice_link.py +175 -0
  155. hypergram/methods/bots/delete_bot_commands.py +62 -0
  156. hypergram/methods/bots/edit_user_star_subscription.py +56 -0
  157. hypergram/methods/bots/get_bot_commands.py +67 -0
  158. hypergram/methods/bots/get_bot_default_privileges.py +59 -0
  159. hypergram/methods/bots/get_bot_info_description.py +63 -0
  160. hypergram/methods/bots/get_bot_info_short_description.py +63 -0
  161. hypergram/methods/bots/get_bot_name.py +62 -0
  162. hypergram/methods/bots/get_chat_menu_button.py +66 -0
  163. hypergram/methods/bots/get_game_high_scores.py +72 -0
  164. hypergram/methods/bots/get_inline_bot_results.py +92 -0
  165. hypergram/methods/bots/get_managed_bot_access_settings.py +47 -0
  166. hypergram/methods/bots/get_managed_bot_token.py +48 -0
  167. hypergram/methods/bots/get_owned_bots.py +44 -0
  168. hypergram/methods/bots/refund_star_payment.py +54 -0
  169. hypergram/methods/bots/replace_managed_bot_token.py +48 -0
  170. hypergram/methods/bots/request_callback_answer.py +91 -0
  171. hypergram/methods/bots/send_game.py +139 -0
  172. hypergram/methods/bots/send_inline_bot_result.py +171 -0
  173. hypergram/methods/bots/send_invoice.py +268 -0
  174. hypergram/methods/bots/set_bot_commands.py +73 -0
  175. hypergram/methods/bots/set_bot_default_privileges.py +81 -0
  176. hypergram/methods/bots/set_bot_info_description.py +66 -0
  177. hypergram/methods/bots/set_bot_info_short_description.py +66 -0
  178. hypergram/methods/bots/set_bot_name.py +66 -0
  179. hypergram/methods/bots/set_chat_menu_button.py +56 -0
  180. hypergram/methods/bots/set_game_score.py +100 -0
  181. hypergram/methods/bots/set_managed_bot_access_settings.py +60 -0
  182. hypergram/methods/business/__init__.py +33 -0
  183. hypergram/methods/business/delete_business_messages.py +70 -0
  184. hypergram/methods/business/get_business_account_gifts.py +151 -0
  185. hypergram/methods/business/get_business_account_star_balance.py +60 -0
  186. hypergram/methods/business/get_business_connection.py +53 -0
  187. hypergram/methods/business/transfer_business_account_stars.py +72 -0
  188. hypergram/methods/chats/__init__.py +181 -0
  189. hypergram/methods/chats/add_chat_members.py +97 -0
  190. hypergram/methods/chats/archive_chats.py +71 -0
  191. hypergram/methods/chats/ban_chat_member.py +124 -0
  192. hypergram/methods/chats/close_forum_topic.py +58 -0
  193. hypergram/methods/chats/create_channel.py +56 -0
  194. hypergram/methods/chats/create_folder.py +179 -0
  195. hypergram/methods/chats/create_folder_invite_link.py +67 -0
  196. hypergram/methods/chats/create_forum_topic.py +68 -0
  197. hypergram/methods/chats/create_group.py +67 -0
  198. hypergram/methods/chats/create_supergroup.py +78 -0
  199. hypergram/methods/chats/delete_all_message_reactions.py +74 -0
  200. hypergram/methods/chats/delete_channel.py +52 -0
  201. hypergram/methods/chats/delete_chat_photo.py +70 -0
  202. hypergram/methods/chats/delete_folder.py +51 -0
  203. hypergram/methods/chats/delete_folder_invite_link.py +70 -0
  204. hypergram/methods/chats/delete_forum_topic.py +57 -0
  205. hypergram/methods/chats/delete_message_reaction.py +81 -0
  206. hypergram/methods/chats/delete_supergroup.py +52 -0
  207. hypergram/methods/chats/delete_user_history.py +55 -0
  208. hypergram/methods/chats/edit_folder.py +186 -0
  209. hypergram/methods/chats/edit_folder_invite_link.py +85 -0
  210. hypergram/methods/chats/edit_forum_topic.py +77 -0
  211. hypergram/methods/chats/get_chat.py +105 -0
  212. hypergram/methods/chats/get_chat_event_log.py +109 -0
  213. hypergram/methods/chats/get_chat_member.py +92 -0
  214. hypergram/methods/chats/get_chat_members.py +158 -0
  215. hypergram/methods/chats/get_chat_members_count.py +69 -0
  216. hypergram/methods/chats/get_chat_online_count.py +51 -0
  217. hypergram/methods/chats/get_chat_settings.py +61 -0
  218. hypergram/methods/chats/get_chats_for_folder_invite_link.py +78 -0
  219. hypergram/methods/chats/get_dialogs.py +133 -0
  220. hypergram/methods/chats/get_dialogs_count.py +76 -0
  221. hypergram/methods/chats/get_direct_messages_topics.py +109 -0
  222. hypergram/methods/chats/get_direct_messages_topics_by_id.py +77 -0
  223. hypergram/methods/chats/get_folder_invite_links.py +52 -0
  224. hypergram/methods/chats/get_folders.py +76 -0
  225. hypergram/methods/chats/get_forum_topics.py +103 -0
  226. hypergram/methods/chats/get_forum_topics_by_id.py +80 -0
  227. hypergram/methods/chats/get_personal_channels.py +48 -0
  228. hypergram/methods/chats/get_send_as_chats.py +69 -0
  229. hypergram/methods/chats/get_similar_channels.py +59 -0
  230. hypergram/methods/chats/get_suitable_discussion_chats.py +47 -0
  231. hypergram/methods/chats/get_top_chats.py +104 -0
  232. hypergram/methods/chats/join_chat.py +74 -0
  233. hypergram/methods/chats/join_folder.py +79 -0
  234. hypergram/methods/chats/leave_chat.py +77 -0
  235. hypergram/methods/chats/leave_folder.py +83 -0
  236. hypergram/methods/chats/mark_chat_unread.py +47 -0
  237. hypergram/methods/chats/pin_chat_message.py +77 -0
  238. hypergram/methods/chats/pin_forum_topic.py +57 -0
  239. hypergram/methods/chats/process_chat_has_protected_content_disable_request.py +57 -0
  240. hypergram/methods/chats/promote_chat_member.py +106 -0
  241. hypergram/methods/chats/reorder_folders.py +61 -0
  242. hypergram/methods/chats/restrict_chat_member.py +85 -0
  243. hypergram/methods/chats/set_administrator_title.py +85 -0
  244. hypergram/methods/chats/set_chat_description.py +66 -0
  245. hypergram/methods/chats/set_chat_direct_messages_group.py +67 -0
  246. hypergram/methods/chats/set_chat_discussion_group.py +91 -0
  247. hypergram/methods/chats/set_chat_member_tag.py +68 -0
  248. hypergram/methods/chats/set_chat_permissions.py +76 -0
  249. hypergram/methods/chats/set_chat_photo.py +124 -0
  250. hypergram/methods/chats/set_chat_protected_content.py +51 -0
  251. hypergram/methods/chats/set_chat_title.py +69 -0
  252. hypergram/methods/chats/set_chat_ttl.py +67 -0
  253. hypergram/methods/chats/set_chat_username.py +68 -0
  254. hypergram/methods/chats/set_main_profile_tab.py +71 -0
  255. hypergram/methods/chats/set_send_as_chat.py +57 -0
  256. hypergram/methods/chats/set_slow_mode.py +63 -0
  257. hypergram/methods/chats/set_upgraded_gift_colors.py +47 -0
  258. hypergram/methods/chats/toggle_folder_tags.py +51 -0
  259. hypergram/methods/chats/toggle_forum_topics.py +72 -0
  260. hypergram/methods/chats/toggle_join_to_send.py +65 -0
  261. hypergram/methods/chats/transfer_chat_ownership.py +84 -0
  262. hypergram/methods/chats/unarchive_chats.py +71 -0
  263. hypergram/methods/chats/unban_chat_member.py +64 -0
  264. hypergram/methods/chats/unpin_all_chat_messages.py +55 -0
  265. hypergram/methods/chats/unpin_chat_message.py +61 -0
  266. hypergram/methods/chats/unpin_forum_topic.py +58 -0
  267. hypergram/methods/chats/update_chat_notifications.py +92 -0
  268. hypergram/methods/chats/update_color.py +78 -0
  269. hypergram/methods/contacts/__init__.py +39 -0
  270. hypergram/methods/contacts/add_contact.py +85 -0
  271. hypergram/methods/contacts/delete_contacts.py +66 -0
  272. hypergram/methods/contacts/get_blocked_message_senders.py +85 -0
  273. hypergram/methods/contacts/get_contacts.py +47 -0
  274. hypergram/methods/contacts/get_contacts_count.py +41 -0
  275. hypergram/methods/contacts/import_contacts.py +58 -0
  276. hypergram/methods/contacts/search_contacts.py +59 -0
  277. hypergram/methods/contacts/set_contact_note.py +62 -0
  278. hypergram/methods/decorators/__init__.py +81 -0
  279. hypergram/methods/decorators/on_business_connection.py +63 -0
  280. hypergram/methods/decorators/on_business_message.py +63 -0
  281. hypergram/methods/decorators/on_callback_query.py +63 -0
  282. hypergram/methods/decorators/on_chat_boost.py +64 -0
  283. hypergram/methods/decorators/on_chat_join_request.py +62 -0
  284. hypergram/methods/decorators/on_chat_member_updated.py +62 -0
  285. hypergram/methods/decorators/on_chosen_inline_result.py +63 -0
  286. hypergram/methods/decorators/on_connect.py +45 -0
  287. hypergram/methods/decorators/on_deleted_business_messages.py +63 -0
  288. hypergram/methods/decorators/on_deleted_messages.py +63 -0
  289. hypergram/methods/decorators/on_disconnect.py +45 -0
  290. hypergram/methods/decorators/on_edited_business_message.py +63 -0
  291. hypergram/methods/decorators/on_edited_message.py +63 -0
  292. hypergram/methods/decorators/on_error.py +65 -0
  293. hypergram/methods/decorators/on_guest_message.py +63 -0
  294. hypergram/methods/decorators/on_inline_query.py +63 -0
  295. hypergram/methods/decorators/on_managed_bot.py +63 -0
  296. hypergram/methods/decorators/on_message.py +63 -0
  297. hypergram/methods/decorators/on_message_reaction.py +62 -0
  298. hypergram/methods/decorators/on_message_reaction_count.py +62 -0
  299. hypergram/methods/decorators/on_poll.py +63 -0
  300. hypergram/methods/decorators/on_pre_checkout_query.py +63 -0
  301. hypergram/methods/decorators/on_purchased_paid_media.py +62 -0
  302. hypergram/methods/decorators/on_raw_update.py +63 -0
  303. hypergram/methods/decorators/on_shipping_query.py +64 -0
  304. hypergram/methods/decorators/on_start.py +45 -0
  305. hypergram/methods/decorators/on_stop.py +45 -0
  306. hypergram/methods/decorators/on_story.py +63 -0
  307. hypergram/methods/decorators/on_user_status.py +61 -0
  308. hypergram/methods/folders/__init__.py +25 -0
  309. hypergram/methods/folders/check_chat_folder_invite_link.py +55 -0
  310. hypergram/methods/invite_links/__init__.py +58 -0
  311. hypergram/methods/invite_links/approve_all_chat_join_requests.py +55 -0
  312. hypergram/methods/invite_links/approve_chat_join_request.py +57 -0
  313. hypergram/methods/invite_links/create_chat_invite_link.py +87 -0
  314. hypergram/methods/invite_links/decline_all_chat_join_requests.py +55 -0
  315. hypergram/methods/invite_links/decline_chat_join_request.py +57 -0
  316. hypergram/methods/invite_links/delete_chat_admin_invite_links.py +54 -0
  317. hypergram/methods/invite_links/delete_chat_invite_link.py +52 -0
  318. hypergram/methods/invite_links/edit_chat_invite_link.py +92 -0
  319. hypergram/methods/invite_links/export_chat_invite_link.py +66 -0
  320. hypergram/methods/invite_links/get_chat_admin_invite_links.py +100 -0
  321. hypergram/methods/invite_links/get_chat_admin_invite_links_count.py +62 -0
  322. hypergram/methods/invite_links/get_chat_admins_with_invite_links.py +56 -0
  323. hypergram/methods/invite_links/get_chat_invite_link.py +54 -0
  324. hypergram/methods/invite_links/get_chat_invite_link_joiners.py +87 -0
  325. hypergram/methods/invite_links/get_chat_invite_link_joiners_count.py +56 -0
  326. hypergram/methods/invite_links/get_chat_join_requests.py +88 -0
  327. hypergram/methods/invite_links/revoke_chat_invite_link.py +68 -0
  328. hypergram/methods/messages/__init__.py +195 -0
  329. hypergram/methods/messages/add_checklist_tasks.py +73 -0
  330. hypergram/methods/messages/add_poll_option.py +76 -0
  331. hypergram/methods/messages/add_to_gifs.py +60 -0
  332. hypergram/methods/messages/approve_suggested_post.py +66 -0
  333. hypergram/methods/messages/compose_text_with_ai.py +80 -0
  334. hypergram/methods/messages/copy_media_group.py +238 -0
  335. hypergram/methods/messages/copy_message.py +168 -0
  336. hypergram/methods/messages/decline_suggested_post.py +62 -0
  337. hypergram/methods/messages/delete_chat_history.py +101 -0
  338. hypergram/methods/messages/delete_direct_messages_chat_topic_history.py +74 -0
  339. hypergram/methods/messages/delete_messages.py +110 -0
  340. hypergram/methods/messages/delete_poll_option.py +69 -0
  341. hypergram/methods/messages/download_media.py +371 -0
  342. hypergram/methods/messages/edit_inline_caption.py +65 -0
  343. hypergram/methods/messages/edit_inline_media.py +244 -0
  344. hypergram/methods/messages/edit_inline_reply_markup.py +68 -0
  345. hypergram/methods/messages/edit_inline_text.py +101 -0
  346. hypergram/methods/messages/edit_message_caption.py +98 -0
  347. hypergram/methods/messages/edit_message_checklist.py +106 -0
  348. hypergram/methods/messages/edit_message_media.py +137 -0
  349. hypergram/methods/messages/edit_message_reply_markup.py +84 -0
  350. hypergram/methods/messages/edit_message_text.py +148 -0
  351. hypergram/methods/messages/fix_text_with_ai.py +57 -0
  352. hypergram/methods/messages/forward_media_group.py +124 -0
  353. hypergram/methods/messages/forward_messages.py +142 -0
  354. hypergram/methods/messages/get_available_effects.py +59 -0
  355. hypergram/methods/messages/get_chat_history.py +175 -0
  356. hypergram/methods/messages/get_chat_history_count.py +83 -0
  357. hypergram/methods/messages/get_custom_emoji_stickers.py +54 -0
  358. hypergram/methods/messages/get_direct_messages_chat_topic_history.py +151 -0
  359. hypergram/methods/messages/get_discussion_message.py +65 -0
  360. hypergram/methods/messages/get_discussion_replies.py +86 -0
  361. hypergram/methods/messages/get_discussion_replies_count.py +62 -0
  362. hypergram/methods/messages/get_main_web_app.py +71 -0
  363. hypergram/methods/messages/get_media_group.py +72 -0
  364. hypergram/methods/messages/get_messages.py +236 -0
  365. hypergram/methods/messages/get_scheduled_messages.py +61 -0
  366. hypergram/methods/messages/get_stickers.py +66 -0
  367. hypergram/methods/messages/get_user_personal_chat_messages.py +92 -0
  368. hypergram/methods/messages/get_web_app_link_url.py +83 -0
  369. hypergram/methods/messages/get_web_app_url.py +70 -0
  370. hypergram/methods/messages/mark_checklist_tasks_as_done.py +74 -0
  371. hypergram/methods/messages/open_web_app.py +92 -0
  372. hypergram/methods/messages/read_chat_history.py +73 -0
  373. hypergram/methods/messages/read_mentions.py +64 -0
  374. hypergram/methods/messages/read_reactions.py +64 -0
  375. hypergram/methods/messages/retract_vote.py +64 -0
  376. hypergram/methods/messages/search_global.py +132 -0
  377. hypergram/methods/messages/search_global_count.py +79 -0
  378. hypergram/methods/messages/search_messages.py +190 -0
  379. hypergram/methods/messages/search_messages_count.py +98 -0
  380. hypergram/methods/messages/search_posts.py +96 -0
  381. hypergram/methods/messages/search_posts_count.py +54 -0
  382. hypergram/methods/messages/send_animation.py +379 -0
  383. hypergram/methods/messages/send_audio.py +347 -0
  384. hypergram/methods/messages/send_cached_media.py +226 -0
  385. hypergram/methods/messages/send_chat_action.py +85 -0
  386. hypergram/methods/messages/send_checklist.py +153 -0
  387. hypergram/methods/messages/send_contact.py +216 -0
  388. hypergram/methods/messages/send_dice.py +217 -0
  389. hypergram/methods/messages/send_document.py +319 -0
  390. hypergram/methods/messages/send_live_photo.py +244 -0
  391. hypergram/methods/messages/send_location.py +242 -0
  392. hypergram/methods/messages/send_media_group.py +525 -0
  393. hypergram/methods/messages/send_message.py +352 -0
  394. hypergram/methods/messages/send_message_draft.py +105 -0
  395. hypergram/methods/messages/send_paid_media.py +385 -0
  396. hypergram/methods/messages/send_paid_reaction.py +79 -0
  397. hypergram/methods/messages/send_photo.py +317 -0
  398. hypergram/methods/messages/send_poll.py +316 -0
  399. hypergram/methods/messages/send_reaction.py +111 -0
  400. hypergram/methods/messages/send_screenshot_notification.py +57 -0
  401. hypergram/methods/messages/send_sticker.py +303 -0
  402. hypergram/methods/messages/send_venue.py +231 -0
  403. hypergram/methods/messages/send_video.py +448 -0
  404. hypergram/methods/messages/send_video_note.py +336 -0
  405. hypergram/methods/messages/send_voice.py +319 -0
  406. hypergram/methods/messages/send_web_page.py +195 -0
  407. hypergram/methods/messages/set_direct_messages_chat_topic_is_marked_as_unread.py +66 -0
  408. hypergram/methods/messages/start_bot.py +77 -0
  409. hypergram/methods/messages/stop_poll.py +81 -0
  410. hypergram/methods/messages/stream_media.py +106 -0
  411. hypergram/methods/messages/summarize_message.py +81 -0
  412. hypergram/methods/messages/translate_message_text.py +77 -0
  413. hypergram/methods/messages/translate_text.py +73 -0
  414. hypergram/methods/messages/view_messages.py +61 -0
  415. hypergram/methods/messages/vote_poll.py +71 -0
  416. hypergram/methods/password/__init__.py +29 -0
  417. hypergram/methods/password/change_cloud_password.py +82 -0
  418. hypergram/methods/password/enable_cloud_password.py +88 -0
  419. hypergram/methods/password/remove_cloud_password.py +64 -0
  420. hypergram/methods/payments/__init__.py +111 -0
  421. hypergram/methods/payments/add_collection_gifts.py +71 -0
  422. hypergram/methods/payments/apply_gift_code.py +64 -0
  423. hypergram/methods/payments/buy_gift_upgrade.py +76 -0
  424. hypergram/methods/payments/check_gift_code.py +67 -0
  425. hypergram/methods/payments/convert_gift_to_stars.py +61 -0
  426. hypergram/methods/payments/craft_gift.py +67 -0
  427. hypergram/methods/payments/create_gift_collection.py +63 -0
  428. hypergram/methods/payments/delete_gift_collection.py +58 -0
  429. hypergram/methods/payments/drop_gift_original_details.py +74 -0
  430. hypergram/methods/payments/edit_star_subscription.py +47 -0
  431. hypergram/methods/payments/get_available_gifts.py +47 -0
  432. hypergram/methods/payments/get_chat_gifts.py +150 -0
  433. hypergram/methods/payments/get_chat_gifts_count.py +63 -0
  434. hypergram/methods/payments/get_gift_auction_state.py +64 -0
  435. hypergram/methods/payments/get_gift_collections.py +53 -0
  436. hypergram/methods/payments/get_gift_upgrade_preview.py +50 -0
  437. hypergram/methods/payments/get_gift_upgrade_variants.py +45 -0
  438. hypergram/methods/payments/get_gifts_for_crafting.py +86 -0
  439. hypergram/methods/payments/get_payment_form.py +66 -0
  440. hypergram/methods/payments/get_stars_balance.py +64 -0
  441. hypergram/methods/payments/get_ton_balance.py +54 -0
  442. hypergram/methods/payments/get_upgraded_gift.py +66 -0
  443. hypergram/methods/payments/get_upgraded_gift_value_info.py +63 -0
  444. hypergram/methods/payments/gift_premium_with_stars.py +97 -0
  445. hypergram/methods/payments/hide_gift.py +62 -0
  446. hypergram/methods/payments/increase_gift_auction_bid.py +68 -0
  447. hypergram/methods/payments/place_gift_auction_bid.py +111 -0
  448. hypergram/methods/payments/process_gift_purchase_offer.py +51 -0
  449. hypergram/methods/payments/remove_collection_gifts.py +68 -0
  450. hypergram/methods/payments/reorder_collection_gifts.py +69 -0
  451. hypergram/methods/payments/reorder_gift_collections.py +57 -0
  452. hypergram/methods/payments/reuse_star_subscription.py +41 -0
  453. hypergram/methods/payments/search_gifts_for_resale.py +119 -0
  454. hypergram/methods/payments/send_gift.py +99 -0
  455. hypergram/methods/payments/send_gift_purchase_offer.py +76 -0
  456. hypergram/methods/payments/send_payment_form.py +96 -0
  457. hypergram/methods/payments/send_resold_gift.py +123 -0
  458. hypergram/methods/payments/set_gift_collection_name.py +62 -0
  459. hypergram/methods/payments/set_gift_resale_price.py +72 -0
  460. hypergram/methods/payments/set_pinned_gifts.py +67 -0
  461. hypergram/methods/payments/show_gift.py +62 -0
  462. hypergram/methods/payments/suggest_birthday.py +59 -0
  463. hypergram/methods/payments/transfer_gift.py +103 -0
  464. hypergram/methods/payments/upgrade_gift.py +114 -0
  465. hypergram/methods/phone/__init__.py +25 -0
  466. hypergram/methods/phone/get_call_members.py +103 -0
  467. hypergram/methods/premium/__init__.py +28 -0
  468. hypergram/methods/premium/apply_boost.py +59 -0
  469. hypergram/methods/premium/get_boosts.py +57 -0
  470. hypergram/methods/premium/get_boosts_status.py +45 -0
  471. hypergram/methods/stories/__init__.py +64 -0
  472. hypergram/methods/stories/can_post_stories.py +53 -0
  473. hypergram/methods/stories/copy_story.py +116 -0
  474. hypergram/methods/stories/delete_stories.py +66 -0
  475. hypergram/methods/stories/edit_story_caption.py +83 -0
  476. hypergram/methods/stories/edit_story_media.py +174 -0
  477. hypergram/methods/stories/edit_story_privacy.py +130 -0
  478. hypergram/methods/stories/enable_stealth_mode.py +67 -0
  479. hypergram/methods/stories/forward_story.py +135 -0
  480. hypergram/methods/stories/get_all_stories.py +81 -0
  481. hypergram/methods/stories/get_archived_stories.py +95 -0
  482. hypergram/methods/stories/get_chat_stories.py +72 -0
  483. hypergram/methods/stories/get_pinned_stories.py +102 -0
  484. hypergram/methods/stories/get_stories.py +104 -0
  485. hypergram/methods/stories/get_story_views.py +120 -0
  486. hypergram/methods/stories/hide_chat_stories.py +56 -0
  487. hypergram/methods/stories/pin_chat_stories.py +65 -0
  488. hypergram/methods/stories/read_chat_stories.py +64 -0
  489. hypergram/methods/stories/send_story.py +274 -0
  490. hypergram/methods/stories/show_chat_stories.py +56 -0
  491. hypergram/methods/stories/unpin_chat_stories.py +65 -0
  492. hypergram/methods/stories/view_stories.py +61 -0
  493. hypergram/methods/users/__init__.py +61 -0
  494. hypergram/methods/users/block_user.py +54 -0
  495. hypergram/methods/users/check_username.py +66 -0
  496. hypergram/methods/users/delete_profile_photos.py +63 -0
  497. hypergram/methods/users/get_chat_audios.py +103 -0
  498. hypergram/methods/users/get_chat_audios_count.py +61 -0
  499. hypergram/methods/users/get_chat_photos.py +159 -0
  500. hypergram/methods/users/get_chat_photos_count.py +74 -0
  501. hypergram/methods/users/get_common_chats.py +67 -0
  502. hypergram/methods/users/get_default_emoji_statuses.py +47 -0
  503. hypergram/methods/users/get_me.py +50 -0
  504. hypergram/methods/users/get_users.py +71 -0
  505. hypergram/methods/users/set_emoji_status.py +62 -0
  506. hypergram/methods/users/set_personal_channel.py +67 -0
  507. hypergram/methods/users/set_profile_photo.py +153 -0
  508. hypergram/methods/users/set_username.py +57 -0
  509. hypergram/methods/users/unblock_user.py +54 -0
  510. hypergram/methods/users/update_birthday.py +67 -0
  511. hypergram/methods/users/update_profile.py +72 -0
  512. hypergram/methods/users/update_status.py +54 -0
  513. hypergram/methods/utilities/__init__.py +39 -0
  514. hypergram/methods/utilities/add_handler.py +73 -0
  515. hypergram/methods/utilities/compose.py +78 -0
  516. hypergram/methods/utilities/export_session_string.py +40 -0
  517. hypergram/methods/utilities/idle.py +88 -0
  518. hypergram/methods/utilities/remove_handler.py +69 -0
  519. hypergram/methods/utilities/restart.py +78 -0
  520. hypergram/methods/utilities/run.py +70 -0
  521. hypergram/methods/utilities/start.py +103 -0
  522. hypergram/methods/utilities/stop.py +76 -0
  523. hypergram/methods/utilities/stop_transmission.py +43 -0
  524. hypergram/mime_types.py +1881 -0
  525. hypergram/parser/__init__.py +19 -0
  526. hypergram/parser/html.py +293 -0
  527. hypergram/parser/markdown.py +325 -0
  528. hypergram/parser/parser.py +61 -0
  529. hypergram/parser/utils.py +41 -0
  530. hypergram/py.typed +0 -0
  531. hypergram/qrlogin.py +111 -0
  532. hypergram/raw/__init__.py +26 -0
  533. hypergram/raw/all.py +2438 -0
  534. hypergram/raw/base/__init__.py +425 -0
  535. hypergram/raw/base/access_point_rule.py +56 -0
  536. hypergram/raw/base/account/__init__.py +52 -0
  537. hypergram/raw/base/account/authorization_form.py +66 -0
  538. hypergram/raw/base/account/authorizations.py +66 -0
  539. hypergram/raw/base/account/auto_download_settings.py +66 -0
  540. hypergram/raw/base/account/auto_save_settings.py +66 -0
  541. hypergram/raw/base/account/business_chat_links.py +66 -0
  542. hypergram/raw/base/account/chat_themes.py +67 -0
  543. hypergram/raw/base/account/connected_bots.py +66 -0
  544. hypergram/raw/base/account/content_settings.py +66 -0
  545. hypergram/raw/base/account/email_verified.py +67 -0
  546. hypergram/raw/base/account/emoji_statuses.py +70 -0
  547. hypergram/raw/base/account/paid_messages_revenue.py +66 -0
  548. hypergram/raw/base/account/passkey_registration_options.py +66 -0
  549. hypergram/raw/base/account/passkeys.py +66 -0
  550. hypergram/raw/base/account/password.py +66 -0
  551. hypergram/raw/base/account/password_input_settings.py +56 -0
  552. hypergram/raw/base/account/password_settings.py +66 -0
  553. hypergram/raw/base/account/privacy_rules.py +67 -0
  554. hypergram/raw/base/account/reset_password_result.py +68 -0
  555. hypergram/raw/base/account/resolved_business_chat_links.py +66 -0
  556. hypergram/raw/base/account/saved_music_ids.py +67 -0
  557. hypergram/raw/base/account/saved_ringtone.py +67 -0
  558. hypergram/raw/base/account/saved_ringtones.py +67 -0
  559. hypergram/raw/base/account/sent_email_code.py +66 -0
  560. hypergram/raw/base/account/takeout.py +66 -0
  561. hypergram/raw/base/account/themes.py +68 -0
  562. hypergram/raw/base/account/tmp_password.py +66 -0
  563. hypergram/raw/base/account/wall_papers.py +67 -0
  564. hypergram/raw/base/account/web_authorizations.py +66 -0
  565. hypergram/raw/base/account_days_ttl.py +66 -0
  566. hypergram/raw/base/ai_compose_tone.py +68 -0
  567. hypergram/raw/base/ai_compose_tone_example.py +66 -0
  568. hypergram/raw/base/aicompose/__init__.py +25 -0
  569. hypergram/raw/base/aicompose/tones.py +68 -0
  570. hypergram/raw/base/attach_menu_bot.py +56 -0
  571. hypergram/raw/base/attach_menu_bot_icon.py +56 -0
  572. hypergram/raw/base/attach_menu_bot_icon_color.py +56 -0
  573. hypergram/raw/base/attach_menu_bots.py +67 -0
  574. hypergram/raw/base/attach_menu_bots_bot.py +66 -0
  575. hypergram/raw/base/attach_menu_peer_type.py +60 -0
  576. hypergram/raw/base/auction_bid_level.py +56 -0
  577. hypergram/raw/base/auth/__init__.py +33 -0
  578. hypergram/raw/base/auth/authorization.py +74 -0
  579. hypergram/raw/base/auth/code_type.py +60 -0
  580. hypergram/raw/base/auth/exported_authorization.py +66 -0
  581. hypergram/raw/base/auth/logged_out.py +66 -0
  582. hypergram/raw/base/auth/login_token.py +69 -0
  583. hypergram/raw/base/auth/passkey_login_options.py +66 -0
  584. hypergram/raw/base/auth/password_recovery.py +66 -0
  585. hypergram/raw/base/auth/sent_code.py +74 -0
  586. hypergram/raw/base/auth/sent_code_type.py +66 -0
  587. hypergram/raw/base/authorization.py +66 -0
  588. hypergram/raw/base/auto_download_settings.py +56 -0
  589. hypergram/raw/base/auto_save_exception.py +56 -0
  590. hypergram/raw/base/auto_save_settings.py +56 -0
  591. hypergram/raw/base/available_effect.py +56 -0
  592. hypergram/raw/base/available_reaction.py +56 -0
  593. hypergram/raw/base/bad_msg_notification.py +57 -0
  594. hypergram/raw/base/bank_card_open_url.py +56 -0
  595. hypergram/raw/base/base_theme.py +60 -0
  596. hypergram/raw/base/bind_auth_key_inner.py +56 -0
  597. hypergram/raw/base/birthday.py +56 -0
  598. hypergram/raw/base/boost.py +56 -0
  599. hypergram/raw/base/bot_app.py +57 -0
  600. hypergram/raw/base/bot_app_settings.py +56 -0
  601. hypergram/raw/base/bot_business_connection.py +56 -0
  602. hypergram/raw/base/bot_command.py +66 -0
  603. hypergram/raw/base/bot_command_scope.py +62 -0
  604. hypergram/raw/base/bot_info.py +56 -0
  605. hypergram/raw/base/bot_inline_message.py +62 -0
  606. hypergram/raw/base/bot_inline_result.py +57 -0
  607. hypergram/raw/base/bot_menu_button.py +68 -0
  608. hypergram/raw/base/bot_preview_media.py +68 -0
  609. hypergram/raw/base/bot_verification.py +56 -0
  610. hypergram/raw/base/bot_verifier_settings.py +56 -0
  611. hypergram/raw/base/bots/__init__.py +30 -0
  612. hypergram/raw/base/bots/access_settings.py +66 -0
  613. hypergram/raw/base/bots/bot_info.py +66 -0
  614. hypergram/raw/base/bots/exported_bot_token.py +66 -0
  615. hypergram/raw/base/bots/popular_app_bots.py +66 -0
  616. hypergram/raw/base/bots/preview_info.py +66 -0
  617. hypergram/raw/base/bots/requested_button.py +66 -0
  618. hypergram/raw/base/business_away_message.py +56 -0
  619. hypergram/raw/base/business_away_message_schedule.py +58 -0
  620. hypergram/raw/base/business_bot_recipients.py +56 -0
  621. hypergram/raw/base/business_bot_rights.py +56 -0
  622. hypergram/raw/base/business_chat_link.py +67 -0
  623. hypergram/raw/base/business_greeting_message.py +56 -0
  624. hypergram/raw/base/business_intro.py +56 -0
  625. hypergram/raw/base/business_location.py +56 -0
  626. hypergram/raw/base/business_recipients.py +56 -0
  627. hypergram/raw/base/business_weekly_open.py +56 -0
  628. hypergram/raw/base/business_work_hours.py +56 -0
  629. hypergram/raw/base/cdn_config.py +66 -0
  630. hypergram/raw/base/cdn_public_key.py +56 -0
  631. hypergram/raw/base/channel_admin_log_event.py +56 -0
  632. hypergram/raw/base/channel_admin_log_event_action.py +107 -0
  633. hypergram/raw/base/channel_admin_log_events_filter.py +56 -0
  634. hypergram/raw/base/channel_location.py +57 -0
  635. hypergram/raw/base/channel_messages_filter.py +57 -0
  636. hypergram/raw/base/channel_participant.py +61 -0
  637. hypergram/raw/base/channel_participants_filter.py +63 -0
  638. hypergram/raw/base/channels/__init__.py +29 -0
  639. hypergram/raw/base/channels/admin_log_results.py +66 -0
  640. hypergram/raw/base/channels/channel_participant.py +66 -0
  641. hypergram/raw/base/channels/channel_participants.py +67 -0
  642. hypergram/raw/base/channels/send_as_peers.py +66 -0
  643. hypergram/raw/base/channels/sponsored_message_report_result.py +68 -0
  644. hypergram/raw/base/chat.py +60 -0
  645. hypergram/raw/base/chat_admin_rights.py +56 -0
  646. hypergram/raw/base/chat_admin_with_invites.py +56 -0
  647. hypergram/raw/base/chat_banned_rights.py +56 -0
  648. hypergram/raw/base/chat_full.py +57 -0
  649. hypergram/raw/base/chat_invite.py +68 -0
  650. hypergram/raw/base/chat_invite_importer.py +56 -0
  651. hypergram/raw/base/chat_onlines.py +66 -0
  652. hypergram/raw/base/chat_participant.py +58 -0
  653. hypergram/raw/base/chat_participants.py +57 -0
  654. hypergram/raw/base/chat_photo.py +57 -0
  655. hypergram/raw/base/chat_reactions.py +58 -0
  656. hypergram/raw/base/chat_theme.py +57 -0
  657. hypergram/raw/base/chatlists/__init__.py +28 -0
  658. hypergram/raw/base/chatlists/chatlist_invite.py +67 -0
  659. hypergram/raw/base/chatlists/chatlist_updates.py +66 -0
  660. hypergram/raw/base/chatlists/exported_chatlist_invite.py +66 -0
  661. hypergram/raw/base/chatlists/exported_invites.py +66 -0
  662. hypergram/raw/base/client_dh_inner_data.py +56 -0
  663. hypergram/raw/base/code_settings.py +56 -0
  664. hypergram/raw/base/config.py +66 -0
  665. hypergram/raw/base/connected_bot.py +56 -0
  666. hypergram/raw/base/connected_bot_star_ref.py +56 -0
  667. hypergram/raw/base/contact.py +56 -0
  668. hypergram/raw/base/contact_birthday.py +56 -0
  669. hypergram/raw/base/contact_status.py +66 -0
  670. hypergram/raw/base/contacts/__init__.py +32 -0
  671. hypergram/raw/base/contacts/blocked.py +67 -0
  672. hypergram/raw/base/contacts/contact_birthdays.py +66 -0
  673. hypergram/raw/base/contacts/contacts.py +67 -0
  674. hypergram/raw/base/contacts/found.py +66 -0
  675. hypergram/raw/base/contacts/imported_contacts.py +66 -0
  676. hypergram/raw/base/contacts/resolved_peer.py +67 -0
  677. hypergram/raw/base/contacts/sponsored_peers.py +67 -0
  678. hypergram/raw/base/contacts/top_peers.py +68 -0
  679. hypergram/raw/base/data_json.py +68 -0
  680. hypergram/raw/base/dc_option.py +56 -0
  681. hypergram/raw/base/default_history_ttl.py +66 -0
  682. hypergram/raw/base/destroy_auth_key_res.py +68 -0
  683. hypergram/raw/base/destroy_session_res.py +67 -0
  684. hypergram/raw/base/dialog.py +57 -0
  685. hypergram/raw/base/dialog_filter.py +58 -0
  686. hypergram/raw/base/dialog_filter_suggested.py +66 -0
  687. hypergram/raw/base/dialog_peer.py +67 -0
  688. hypergram/raw/base/disallowed_gifts_settings.py +56 -0
  689. hypergram/raw/base/document.py +70 -0
  690. hypergram/raw/base/document_attribute.py +63 -0
  691. hypergram/raw/base/draft_message.py +57 -0
  692. hypergram/raw/base/email_verification.py +58 -0
  693. hypergram/raw/base/email_verify_purpose.py +58 -0
  694. hypergram/raw/base/emoji_group.py +58 -0
  695. hypergram/raw/base/emoji_keyword.py +57 -0
  696. hypergram/raw/base/emoji_keywords_difference.py +67 -0
  697. hypergram/raw/base/emoji_language.py +66 -0
  698. hypergram/raw/base/emoji_list.py +71 -0
  699. hypergram/raw/base/emoji_status.py +59 -0
  700. hypergram/raw/base/emoji_url.py +66 -0
  701. hypergram/raw/base/encrypted_chat.py +71 -0
  702. hypergram/raw/base/encrypted_file.py +67 -0
  703. hypergram/raw/base/encrypted_message.py +57 -0
  704. hypergram/raw/base/exported_chat_invite.py +67 -0
  705. hypergram/raw/base/exported_chatlist_invite.py +66 -0
  706. hypergram/raw/base/exported_contact_token.py +66 -0
  707. hypergram/raw/base/exported_message_link.py +66 -0
  708. hypergram/raw/base/exported_story_link.py +66 -0
  709. hypergram/raw/base/fact_check.py +66 -0
  710. hypergram/raw/base/file_hash.py +68 -0
  711. hypergram/raw/base/folder.py +56 -0
  712. hypergram/raw/base/folder_peer.py +56 -0
  713. hypergram/raw/base/forum_topic.py +57 -0
  714. hypergram/raw/base/found_story.py +56 -0
  715. hypergram/raw/base/fragment/__init__.py +25 -0
  716. hypergram/raw/base/fragment/collectible_info.py +66 -0
  717. hypergram/raw/base/game.py +56 -0
  718. hypergram/raw/base/geo_point.py +57 -0
  719. hypergram/raw/base/geo_point_address.py +56 -0
  720. hypergram/raw/base/global_privacy_settings.py +67 -0
  721. hypergram/raw/base/group_call.py +57 -0
  722. hypergram/raw/base/group_call_donor.py +56 -0
  723. hypergram/raw/base/group_call_message.py +56 -0
  724. hypergram/raw/base/group_call_participant.py +56 -0
  725. hypergram/raw/base/group_call_participant_video.py +56 -0
  726. hypergram/raw/base/group_call_participant_video_source_group.py +56 -0
  727. hypergram/raw/base/group_call_stream_channel.py +56 -0
  728. hypergram/raw/base/help/__init__.py +45 -0
  729. hypergram/raw/base/help/app_config.py +67 -0
  730. hypergram/raw/base/help/app_update.py +67 -0
  731. hypergram/raw/base/help/config_simple.py +56 -0
  732. hypergram/raw/base/help/countries_list.py +67 -0
  733. hypergram/raw/base/help/country.py +56 -0
  734. hypergram/raw/base/help/country_code.py +56 -0
  735. hypergram/raw/base/help/deep_link_info.py +67 -0
  736. hypergram/raw/base/help/invite_text.py +66 -0
  737. hypergram/raw/base/help/passport_config.py +67 -0
  738. hypergram/raw/base/help/peer_color_option.py +56 -0
  739. hypergram/raw/base/help/peer_color_set.py +57 -0
  740. hypergram/raw/base/help/peer_colors.py +68 -0
  741. hypergram/raw/base/help/premium_promo.py +66 -0
  742. hypergram/raw/base/help/promo_data.py +67 -0
  743. hypergram/raw/base/help/recent_me_urls.py +66 -0
  744. hypergram/raw/base/help/support.py +66 -0
  745. hypergram/raw/base/help/support_name.py +66 -0
  746. hypergram/raw/base/help/terms_of_service.py +56 -0
  747. hypergram/raw/base/help/terms_of_service_update.py +67 -0
  748. hypergram/raw/base/help/timezones_list.py +67 -0
  749. hypergram/raw/base/help/user_info.py +68 -0
  750. hypergram/raw/base/high_score.py +56 -0
  751. hypergram/raw/base/http_wait.py +56 -0
  752. hypergram/raw/base/imported_contact.py +56 -0
  753. hypergram/raw/base/inline_bot_switch_pm.py +56 -0
  754. hypergram/raw/base/inline_bot_web_view.py +56 -0
  755. hypergram/raw/base/inline_query_peer_type.py +61 -0
  756. hypergram/raw/base/input_ai_compose_tone.py +58 -0
  757. hypergram/raw/base/input_app_event.py +56 -0
  758. hypergram/raw/base/input_bot_app.py +57 -0
  759. hypergram/raw/base/input_bot_inline_message.py +63 -0
  760. hypergram/raw/base/input_bot_inline_message_id.py +67 -0
  761. hypergram/raw/base/input_bot_inline_result.py +59 -0
  762. hypergram/raw/base/input_business_away_message.py +56 -0
  763. hypergram/raw/base/input_business_bot_recipients.py +56 -0
  764. hypergram/raw/base/input_business_chat_link.py +56 -0
  765. hypergram/raw/base/input_business_greeting_message.py +56 -0
  766. hypergram/raw/base/input_business_intro.py +56 -0
  767. hypergram/raw/base/input_business_recipients.py +56 -0
  768. hypergram/raw/base/input_channel.py +58 -0
  769. hypergram/raw/base/input_chat_photo.py +58 -0
  770. hypergram/raw/base/input_chat_theme.py +58 -0
  771. hypergram/raw/base/input_chatlist.py +56 -0
  772. hypergram/raw/base/input_check_password_srp.py +57 -0
  773. hypergram/raw/base/input_client_proxy.py +56 -0
  774. hypergram/raw/base/input_collectible.py +57 -0
  775. hypergram/raw/base/input_contact.py +56 -0
  776. hypergram/raw/base/input_dialog_peer.py +57 -0
  777. hypergram/raw/base/input_document.py +57 -0
  778. hypergram/raw/base/input_encrypted_chat.py +56 -0
  779. hypergram/raw/base/input_encrypted_file.py +59 -0
  780. hypergram/raw/base/input_file.py +58 -0
  781. hypergram/raw/base/input_file_location.py +65 -0
  782. hypergram/raw/base/input_folder_peer.py +56 -0
  783. hypergram/raw/base/input_game.py +57 -0
  784. hypergram/raw/base/input_geo_point.py +57 -0
  785. hypergram/raw/base/input_group_call.py +58 -0
  786. hypergram/raw/base/input_invoice.py +70 -0
  787. hypergram/raw/base/input_message.py +59 -0
  788. hypergram/raw/base/input_message_read_metric.py +56 -0
  789. hypergram/raw/base/input_notify_peer.py +60 -0
  790. hypergram/raw/base/input_passkey_credential.py +57 -0
  791. hypergram/raw/base/input_passkey_response.py +57 -0
  792. hypergram/raw/base/input_payment_credentials.py +59 -0
  793. hypergram/raw/base/input_peer.py +62 -0
  794. hypergram/raw/base/input_peer_notify_settings.py +56 -0
  795. hypergram/raw/base/input_phone_call.py +56 -0
  796. hypergram/raw/base/input_photo.py +57 -0
  797. hypergram/raw/base/input_privacy_key.py +69 -0
  798. hypergram/raw/base/input_privacy_rule.py +67 -0
  799. hypergram/raw/base/input_quick_reply_shortcut.py +57 -0
  800. hypergram/raw/base/input_reply_to.py +58 -0
  801. hypergram/raw/base/input_saved_star_gift.py +58 -0
  802. hypergram/raw/base/input_secure_file.py +57 -0
  803. hypergram/raw/base/input_secure_value.py +56 -0
  804. hypergram/raw/base/input_single_media.py +56 -0
  805. hypergram/raw/base/input_star_gift_auction.py +57 -0
  806. hypergram/raw/base/input_stars_transaction.py +56 -0
  807. hypergram/raw/base/input_sticker_set.py +67 -0
  808. hypergram/raw/base/input_sticker_set_item.py +56 -0
  809. hypergram/raw/base/input_stickered_media.py +57 -0
  810. hypergram/raw/base/input_store_payment_purpose.py +63 -0
  811. hypergram/raw/base/input_theme.py +57 -0
  812. hypergram/raw/base/input_theme_settings.py +56 -0
  813. hypergram/raw/base/input_user.py +59 -0
  814. hypergram/raw/base/input_wall_paper.py +58 -0
  815. hypergram/raw/base/input_web_document.py +56 -0
  816. hypergram/raw/base/input_web_file_location.py +58 -0
  817. hypergram/raw/base/invoice.py +56 -0
  818. hypergram/raw/base/ip_port.py +57 -0
  819. hypergram/raw/base/json_object_value.py +56 -0
  820. hypergram/raw/base/json_value.py +61 -0
  821. hypergram/raw/base/keyboard_button.py +83 -0
  822. hypergram/raw/base/keyboard_button_row.py +56 -0
  823. hypergram/raw/base/keyboard_button_style.py +56 -0
  824. hypergram/raw/base/labeled_price.py +56 -0
  825. hypergram/raw/base/lang_pack_difference.py +67 -0
  826. hypergram/raw/base/lang_pack_language.py +67 -0
  827. hypergram/raw/base/lang_pack_string.py +68 -0
  828. hypergram/raw/base/mask_coords.py +56 -0
  829. hypergram/raw/base/media.py +75 -0
  830. hypergram/raw/base/media_area.py +64 -0
  831. hypergram/raw/base/media_area_coordinates.py +56 -0
  832. hypergram/raw/base/message.py +58 -0
  833. hypergram/raw/base/message_action.py +122 -0
  834. hypergram/raw/base/message_entity.py +80 -0
  835. hypergram/raw/base/message_extended_media.py +57 -0
  836. hypergram/raw/base/message_fwd_header.py +56 -0
  837. hypergram/raw/base/message_media.py +85 -0
  838. hypergram/raw/base/message_peer_reaction.py +56 -0
  839. hypergram/raw/base/message_peer_vote.py +58 -0
  840. hypergram/raw/base/message_range.py +66 -0
  841. hypergram/raw/base/message_reactions.py +56 -0
  842. hypergram/raw/base/message_reactor.py +56 -0
  843. hypergram/raw/base/message_replies.py +56 -0
  844. hypergram/raw/base/message_reply_header.py +57 -0
  845. hypergram/raw/base/message_report_option.py +56 -0
  846. hypergram/raw/base/message_views.py +56 -0
  847. hypergram/raw/base/messages/__init__.py +87 -0
  848. hypergram/raw/base/messages/affected_found_messages.py +66 -0
  849. hypergram/raw/base/messages/affected_history.py +73 -0
  850. hypergram/raw/base/messages/affected_messages.py +69 -0
  851. hypergram/raw/base/messages/all_stickers.py +69 -0
  852. hypergram/raw/base/messages/archived_stickers.py +66 -0
  853. hypergram/raw/base/messages/available_effects.py +67 -0
  854. hypergram/raw/base/messages/available_reactions.py +67 -0
  855. hypergram/raw/base/messages/bot_app.py +66 -0
  856. hypergram/raw/base/messages/bot_callback_answer.py +66 -0
  857. hypergram/raw/base/messages/bot_prepared_inline_message.py +66 -0
  858. hypergram/raw/base/messages/bot_results.py +66 -0
  859. hypergram/raw/base/messages/chat_admins_with_invites.py +66 -0
  860. hypergram/raw/base/messages/chat_full.py +67 -0
  861. hypergram/raw/base/messages/chat_invite_importers.py +66 -0
  862. hypergram/raw/base/messages/chats.py +74 -0
  863. hypergram/raw/base/messages/checked_history_import_peer.py +66 -0
  864. hypergram/raw/base/messages/composed_message_with_ai.py +66 -0
  865. hypergram/raw/base/messages/dh_config.py +67 -0
  866. hypergram/raw/base/messages/dialog_filters.py +66 -0
  867. hypergram/raw/base/messages/dialogs.py +68 -0
  868. hypergram/raw/base/messages/discussion_message.py +66 -0
  869. hypergram/raw/base/messages/emoji_game_info.py +67 -0
  870. hypergram/raw/base/messages/emoji_game_outcome.py +56 -0
  871. hypergram/raw/base/messages/emoji_groups.py +70 -0
  872. hypergram/raw/base/messages/exported_chat_invite.py +68 -0
  873. hypergram/raw/base/messages/exported_chat_invites.py +66 -0
  874. hypergram/raw/base/messages/faved_stickers.py +67 -0
  875. hypergram/raw/base/messages/featured_stickers.py +69 -0
  876. hypergram/raw/base/messages/forum_topics.py +67 -0
  877. hypergram/raw/base/messages/found_sticker_sets.py +68 -0
  878. hypergram/raw/base/messages/found_stickers.py +67 -0
  879. hypergram/raw/base/messages/high_scores.py +67 -0
  880. hypergram/raw/base/messages/history_import.py +66 -0
  881. hypergram/raw/base/messages/history_import_parsed.py +66 -0
  882. hypergram/raw/base/messages/inactive_chats.py +66 -0
  883. hypergram/raw/base/messages/invited_users.py +68 -0
  884. hypergram/raw/base/messages/message_edit_data.py +66 -0
  885. hypergram/raw/base/messages/message_reactions_list.py +66 -0
  886. hypergram/raw/base/messages/message_views.py +66 -0
  887. hypergram/raw/base/messages/messages.py +85 -0
  888. hypergram/raw/base/messages/my_stickers.py +66 -0
  889. hypergram/raw/base/messages/peer_dialogs.py +67 -0
  890. hypergram/raw/base/messages/peer_settings.py +66 -0
  891. hypergram/raw/base/messages/prepared_inline_message.py +66 -0
  892. hypergram/raw/base/messages/quick_replies.py +67 -0
  893. hypergram/raw/base/messages/reactions.py +69 -0
  894. hypergram/raw/base/messages/recent_stickers.py +67 -0
  895. hypergram/raw/base/messages/saved_dialogs.py +70 -0
  896. hypergram/raw/base/messages/saved_gifs.py +67 -0
  897. hypergram/raw/base/messages/saved_reaction_tags.py +67 -0
  898. hypergram/raw/base/messages/search_counter.py +66 -0
  899. hypergram/raw/base/messages/search_results_calendar.py +66 -0
  900. hypergram/raw/base/messages/search_results_positions.py +66 -0
  901. hypergram/raw/base/messages/sent_encrypted_message.py +69 -0
  902. hypergram/raw/base/messages/sponsored_messages.py +67 -0
  903. hypergram/raw/base/messages/sticker_set.py +75 -0
  904. hypergram/raw/base/messages/sticker_set_install_result.py +67 -0
  905. hypergram/raw/base/messages/stickers.py +67 -0
  906. hypergram/raw/base/messages/transcribed_audio.py +66 -0
  907. hypergram/raw/base/messages/translated_text.py +66 -0
  908. hypergram/raw/base/messages/votes_list.py +66 -0
  909. hypergram/raw/base/messages/web_page.py +66 -0
  910. hypergram/raw/base/messages/web_page_preview.py +66 -0
  911. hypergram/raw/base/messages_filter.py +73 -0
  912. hypergram/raw/base/missing_invitee.py +56 -0
  913. hypergram/raw/base/msg_detailed_info.py +57 -0
  914. hypergram/raw/base/msg_resend_req.py +57 -0
  915. hypergram/raw/base/msgs_ack.py +56 -0
  916. hypergram/raw/base/msgs_all_info.py +56 -0
  917. hypergram/raw/base/msgs_state_info.py +56 -0
  918. hypergram/raw/base/msgs_state_req.py +56 -0
  919. hypergram/raw/base/my_boost.py +56 -0
  920. hypergram/raw/base/nearest_dc.py +66 -0
  921. hypergram/raw/base/new_session.py +56 -0
  922. hypergram/raw/base/notification_sound.py +59 -0
  923. hypergram/raw/base/notify_peer.py +60 -0
  924. hypergram/raw/base/outbox_read_date.py +66 -0
  925. hypergram/raw/base/page.py +56 -0
  926. hypergram/raw/base/page_block.py +84 -0
  927. hypergram/raw/base/page_caption.py +56 -0
  928. hypergram/raw/base/page_list_item.py +57 -0
  929. hypergram/raw/base/page_list_ordered_item.py +57 -0
  930. hypergram/raw/base/page_related_article.py +56 -0
  931. hypergram/raw/base/page_table_cell.py +56 -0
  932. hypergram/raw/base/page_table_row.py +56 -0
  933. hypergram/raw/base/paid_reaction_privacy.py +58 -0
  934. hypergram/raw/base/passkey.py +66 -0
  935. hypergram/raw/base/password_kdf_algo.py +57 -0
  936. hypergram/raw/base/payment_charge.py +56 -0
  937. hypergram/raw/base/payment_form_method.py +56 -0
  938. hypergram/raw/base/payment_requested_info.py +56 -0
  939. hypergram/raw/base/payment_saved_credentials.py +56 -0
  940. hypergram/raw/base/payments/__init__.py +52 -0
  941. hypergram/raw/base/payments/bank_card_data.py +66 -0
  942. hypergram/raw/base/payments/check_can_send_gift_result.py +67 -0
  943. hypergram/raw/base/payments/checked_gift_code.py +66 -0
  944. hypergram/raw/base/payments/connected_star_ref_bots.py +69 -0
  945. hypergram/raw/base/payments/exported_invoice.py +66 -0
  946. hypergram/raw/base/payments/giveaway_info.py +67 -0
  947. hypergram/raw/base/payments/payment_form.py +68 -0
  948. hypergram/raw/base/payments/payment_receipt.py +67 -0
  949. hypergram/raw/base/payments/payment_result.py +68 -0
  950. hypergram/raw/base/payments/resale_star_gifts.py +66 -0
  951. hypergram/raw/base/payments/saved_info.py +66 -0
  952. hypergram/raw/base/payments/saved_star_gifts.py +68 -0
  953. hypergram/raw/base/payments/star_gift_active_auctions.py +67 -0
  954. hypergram/raw/base/payments/star_gift_auction_acquired_gifts.py +66 -0
  955. hypergram/raw/base/payments/star_gift_auction_state.py +66 -0
  956. hypergram/raw/base/payments/star_gift_collections.py +67 -0
  957. hypergram/raw/base/payments/star_gift_upgrade_attributes.py +66 -0
  958. hypergram/raw/base/payments/star_gift_upgrade_preview.py +66 -0
  959. hypergram/raw/base/payments/star_gift_withdrawal_url.py +66 -0
  960. hypergram/raw/base/payments/star_gifts.py +67 -0
  961. hypergram/raw/base/payments/stars_revenue_ads_account_url.py +66 -0
  962. hypergram/raw/base/payments/stars_revenue_stats.py +66 -0
  963. hypergram/raw/base/payments/stars_revenue_withdrawal_url.py +66 -0
  964. hypergram/raw/base/payments/stars_status.py +69 -0
  965. hypergram/raw/base/payments/suggested_star_ref_bots.py +66 -0
  966. hypergram/raw/base/payments/unique_star_gift.py +66 -0
  967. hypergram/raw/base/payments/unique_star_gift_value_info.py +66 -0
  968. hypergram/raw/base/payments/validated_requested_info.py +66 -0
  969. hypergram/raw/base/peer.py +68 -0
  970. hypergram/raw/base/peer_blocked.py +56 -0
  971. hypergram/raw/base/peer_color.py +58 -0
  972. hypergram/raw/base/peer_located.py +57 -0
  973. hypergram/raw/base/peer_notify_settings.py +66 -0
  974. hypergram/raw/base/peer_settings.py +56 -0
  975. hypergram/raw/base/peer_stories.py +56 -0
  976. hypergram/raw/base/pending_suggestion.py +56 -0
  977. hypergram/raw/base/phone/__init__.py +32 -0
  978. hypergram/raw/base/phone/exported_group_call_invite.py +66 -0
  979. hypergram/raw/base/phone/group_call.py +66 -0
  980. hypergram/raw/base/phone/group_call_stars.py +66 -0
  981. hypergram/raw/base/phone/group_call_stream_channels.py +66 -0
  982. hypergram/raw/base/phone/group_call_stream_rtmp_url.py +66 -0
  983. hypergram/raw/base/phone/group_participants.py +66 -0
  984. hypergram/raw/base/phone/join_as_peers.py +66 -0
  985. hypergram/raw/base/phone/phone_call.py +68 -0
  986. hypergram/raw/base/phone_call.py +61 -0
  987. hypergram/raw/base/phone_call_discard_reason.py +60 -0
  988. hypergram/raw/base/phone_call_protocol.py +56 -0
  989. hypergram/raw/base/phone_connection.py +57 -0
  990. hypergram/raw/base/photo.py +57 -0
  991. hypergram/raw/base/photo_size.py +61 -0
  992. hypergram/raw/base/photos/__init__.py +26 -0
  993. hypergram/raw/base/photos/photo.py +68 -0
  994. hypergram/raw/base/photos/photos.py +67 -0
  995. hypergram/raw/base/poll.py +56 -0
  996. hypergram/raw/base/poll_answer.py +57 -0
  997. hypergram/raw/base/poll_answer_voters.py +56 -0
  998. hypergram/raw/base/poll_results.py +56 -0
  999. hypergram/raw/base/pong.py +67 -0
  1000. hypergram/raw/base/popular_contact.py +56 -0
  1001. hypergram/raw/base/post_address.py +56 -0
  1002. hypergram/raw/base/post_interaction_counters.py +57 -0
  1003. hypergram/raw/base/pq_inner_data.py +59 -0
  1004. hypergram/raw/base/premium/__init__.py +27 -0
  1005. hypergram/raw/base/premium/boosts_list.py +67 -0
  1006. hypergram/raw/base/premium/boosts_status.py +66 -0
  1007. hypergram/raw/base/premium/my_boosts.py +67 -0
  1008. hypergram/raw/base/premium_gift_code_option.py +66 -0
  1009. hypergram/raw/base/premium_subscription_option.py +56 -0
  1010. hypergram/raw/base/prepaid_giveaway.py +57 -0
  1011. hypergram/raw/base/privacy_key.py +69 -0
  1012. hypergram/raw/base/privacy_rule.py +67 -0
  1013. hypergram/raw/base/profile_tab.py +63 -0
  1014. hypergram/raw/base/public_forward.py +57 -0
  1015. hypergram/raw/base/quick_reply.py +56 -0
  1016. hypergram/raw/base/reaction.py +59 -0
  1017. hypergram/raw/base/reaction_count.py +56 -0
  1018. hypergram/raw/base/reaction_notifications_from.py +57 -0
  1019. hypergram/raw/base/reactions_notify_settings.py +67 -0
  1020. hypergram/raw/base/read_participant_date.py +66 -0
  1021. hypergram/raw/base/received_notify_message.py +66 -0
  1022. hypergram/raw/base/recent_me_url.py +60 -0
  1023. hypergram/raw/base/recent_story.py +66 -0
  1024. hypergram/raw/base/reply_markup.py +59 -0
  1025. hypergram/raw/base/report_reason.py +65 -0
  1026. hypergram/raw/base/report_result.py +69 -0
  1027. hypergram/raw/base/request_peer_type.py +59 -0
  1028. hypergram/raw/base/requested_peer.py +58 -0
  1029. hypergram/raw/base/requirement_to_contact.py +68 -0
  1030. hypergram/raw/base/res_pq.py +67 -0
  1031. hypergram/raw/base/restriction_reason.py +56 -0
  1032. hypergram/raw/base/rich_text.py +71 -0
  1033. hypergram/raw/base/rpc_drop_answer.py +68 -0
  1034. hypergram/raw/base/rpc_error.py +56 -0
  1035. hypergram/raw/base/rpc_result.py +56 -0
  1036. hypergram/raw/base/saved_contact.py +66 -0
  1037. hypergram/raw/base/saved_dialog.py +57 -0
  1038. hypergram/raw/base/saved_reaction_tag.py +56 -0
  1039. hypergram/raw/base/saved_star_gift.py +56 -0
  1040. hypergram/raw/base/search_posts_flood.py +66 -0
  1041. hypergram/raw/base/search_results_calendar_period.py +56 -0
  1042. hypergram/raw/base/search_results_position.py +56 -0
  1043. hypergram/raw/base/secure_credentials_encrypted.py +56 -0
  1044. hypergram/raw/base/secure_data.py +56 -0
  1045. hypergram/raw/base/secure_file.py +57 -0
  1046. hypergram/raw/base/secure_password_kdf_algo.py +58 -0
  1047. hypergram/raw/base/secure_plain_data.py +57 -0
  1048. hypergram/raw/base/secure_required_type.py +57 -0
  1049. hypergram/raw/base/secure_secret_settings.py +56 -0
  1050. hypergram/raw/base/secure_value.py +68 -0
  1051. hypergram/raw/base/secure_value_error.py +64 -0
  1052. hypergram/raw/base/secure_value_hash.py +56 -0
  1053. hypergram/raw/base/secure_value_type.py +68 -0
  1054. hypergram/raw/base/send_as_peer.py +56 -0
  1055. hypergram/raw/base/send_message_action.py +74 -0
  1056. hypergram/raw/base/server_dh_inner_data.py +56 -0
  1057. hypergram/raw/base/server_dh_params.py +67 -0
  1058. hypergram/raw/base/set_client_dh_params_answer.py +68 -0
  1059. hypergram/raw/base/shipping_option.py +56 -0
  1060. hypergram/raw/base/sms_job.py +66 -0
  1061. hypergram/raw/base/smsjobs/__init__.py +26 -0
  1062. hypergram/raw/base/smsjobs/eligibility_to_join.py +66 -0
  1063. hypergram/raw/base/smsjobs/status.py +66 -0
  1064. hypergram/raw/base/sponsored_message.py +56 -0
  1065. hypergram/raw/base/sponsored_message_report_option.py +56 -0
  1066. hypergram/raw/base/sponsored_peer.py +56 -0
  1067. hypergram/raw/base/star_gift.py +57 -0
  1068. hypergram/raw/base/star_gift_active_auction_state.py +56 -0
  1069. hypergram/raw/base/star_gift_attribute.py +59 -0
  1070. hypergram/raw/base/star_gift_attribute_counter.py +56 -0
  1071. hypergram/raw/base/star_gift_attribute_id.py +58 -0
  1072. hypergram/raw/base/star_gift_attribute_rarity.py +60 -0
  1073. hypergram/raw/base/star_gift_auction_acquired_gift.py +56 -0
  1074. hypergram/raw/base/star_gift_auction_round.py +57 -0
  1075. hypergram/raw/base/star_gift_auction_state.py +58 -0
  1076. hypergram/raw/base/star_gift_auction_user_state.py +56 -0
  1077. hypergram/raw/base/star_gift_background.py +56 -0
  1078. hypergram/raw/base/star_gift_collection.py +67 -0
  1079. hypergram/raw/base/star_gift_upgrade_price.py +56 -0
  1080. hypergram/raw/base/star_ref_program.py +66 -0
  1081. hypergram/raw/base/stars_amount.py +57 -0
  1082. hypergram/raw/base/stars_gift_option.py +66 -0
  1083. hypergram/raw/base/stars_giveaway_option.py +66 -0
  1084. hypergram/raw/base/stars_giveaway_winners_option.py +56 -0
  1085. hypergram/raw/base/stars_rating.py +56 -0
  1086. hypergram/raw/base/stars_revenue_status.py +56 -0
  1087. hypergram/raw/base/stars_subscription.py +56 -0
  1088. hypergram/raw/base/stars_subscription_pricing.py +56 -0
  1089. hypergram/raw/base/stars_topup_option.py +66 -0
  1090. hypergram/raw/base/stars_transaction.py +56 -0
  1091. hypergram/raw/base/stars_transaction_peer.py +63 -0
  1092. hypergram/raw/base/stats/__init__.py +30 -0
  1093. hypergram/raw/base/stats/broadcast_stats.py +66 -0
  1094. hypergram/raw/base/stats/megagroup_stats.py +66 -0
  1095. hypergram/raw/base/stats/message_stats.py +66 -0
  1096. hypergram/raw/base/stats/poll_stats.py +66 -0
  1097. hypergram/raw/base/stats/public_forwards.py +67 -0
  1098. hypergram/raw/base/stats/story_stats.py +66 -0
  1099. hypergram/raw/base/stats_abs_value_and_prev.py +56 -0
  1100. hypergram/raw/base/stats_date_range_days.py +56 -0
  1101. hypergram/raw/base/stats_graph.py +68 -0
  1102. hypergram/raw/base/stats_group_top_admin.py +56 -0
  1103. hypergram/raw/base/stats_group_top_inviter.py +56 -0
  1104. hypergram/raw/base/stats_group_top_poster.py +56 -0
  1105. hypergram/raw/base/stats_percent_value.py +56 -0
  1106. hypergram/raw/base/stats_url.py +56 -0
  1107. hypergram/raw/base/sticker_keyword.py +56 -0
  1108. hypergram/raw/base/sticker_pack.py +56 -0
  1109. hypergram/raw/base/sticker_set.py +56 -0
  1110. hypergram/raw/base/sticker_set_covered.py +69 -0
  1111. hypergram/raw/base/stickers/__init__.py +25 -0
  1112. hypergram/raw/base/stickers/suggested_short_name.py +66 -0
  1113. hypergram/raw/base/storage/__init__.py +25 -0
  1114. hypergram/raw/base/storage/file_type.py +65 -0
  1115. hypergram/raw/base/stories/__init__.py +33 -0
  1116. hypergram/raw/base/stories/albums.py +67 -0
  1117. hypergram/raw/base/stories/all_stories.py +67 -0
  1118. hypergram/raw/base/stories/can_send_story_count.py +66 -0
  1119. hypergram/raw/base/stories/found_stories.py +66 -0
  1120. hypergram/raw/base/stories/peer_stories.py +66 -0
  1121. hypergram/raw/base/stories/stories.py +69 -0
  1122. hypergram/raw/base/stories/story_reactions_list.py +66 -0
  1123. hypergram/raw/base/stories/story_views.py +66 -0
  1124. hypergram/raw/base/stories/story_views_list.py +66 -0
  1125. hypergram/raw/base/stories_stealth_mode.py +56 -0
  1126. hypergram/raw/base/story_album.py +67 -0
  1127. hypergram/raw/base/story_fwd_header.py +56 -0
  1128. hypergram/raw/base/story_item.py +58 -0
  1129. hypergram/raw/base/story_reaction.py +58 -0
  1130. hypergram/raw/base/story_view.py +58 -0
  1131. hypergram/raw/base/story_views.py +56 -0
  1132. hypergram/raw/base/suggested_post.py +56 -0
  1133. hypergram/raw/base/text_with_entities.py +66 -0
  1134. hypergram/raw/base/theme.py +68 -0
  1135. hypergram/raw/base/theme_settings.py +56 -0
  1136. hypergram/raw/base/timezone.py +56 -0
  1137. hypergram/raw/base/todo_completion.py +56 -0
  1138. hypergram/raw/base/todo_item.py +56 -0
  1139. hypergram/raw/base/todo_list.py +56 -0
  1140. hypergram/raw/base/top_peer.py +56 -0
  1141. hypergram/raw/base/top_peer_category.py +65 -0
  1142. hypergram/raw/base/top_peer_category_peers.py +56 -0
  1143. hypergram/raw/base/update.py +211 -0
  1144. hypergram/raw/base/updates/__init__.py +27 -0
  1145. hypergram/raw/base/updates/channel_difference.py +68 -0
  1146. hypergram/raw/base/updates/difference.py +69 -0
  1147. hypergram/raw/base/updates/state.py +66 -0
  1148. hypergram/raw/base/updates_t.py +202 -0
  1149. hypergram/raw/base/upload/__init__.py +27 -0
  1150. hypergram/raw/base/upload/cdn_file.py +67 -0
  1151. hypergram/raw/base/upload/file.py +67 -0
  1152. hypergram/raw/base/upload/web_file.py +66 -0
  1153. hypergram/raw/base/url_auth_result.py +69 -0
  1154. hypergram/raw/base/user.py +75 -0
  1155. hypergram/raw/base/user_full.py +56 -0
  1156. hypergram/raw/base/user_profile_photo.py +57 -0
  1157. hypergram/raw/base/user_status.py +61 -0
  1158. hypergram/raw/base/username.py +56 -0
  1159. hypergram/raw/base/users/__init__.py +27 -0
  1160. hypergram/raw/base/users/saved_music.py +68 -0
  1161. hypergram/raw/base/users/user_full.py +66 -0
  1162. hypergram/raw/base/users/users.py +67 -0
  1163. hypergram/raw/base/video_size.py +58 -0
  1164. hypergram/raw/base/wall_paper.py +69 -0
  1165. hypergram/raw/base/wall_paper_settings.py +56 -0
  1166. hypergram/raw/base/web_authorization.py +56 -0
  1167. hypergram/raw/base/web_document.py +57 -0
  1168. hypergram/raw/base/web_page.py +59 -0
  1169. hypergram/raw/base/web_page_attribute.py +62 -0
  1170. hypergram/raw/base/web_view_message_sent.py +66 -0
  1171. hypergram/raw/base/web_view_result.py +69 -0
  1172. hypergram/raw/core/__init__.py +32 -0
  1173. hypergram/raw/core/base_type_meta.py +26 -0
  1174. hypergram/raw/core/future_salt.py +53 -0
  1175. hypergram/raw/core/future_salts.py +63 -0
  1176. hypergram/raw/core/gzip_packed.py +62 -0
  1177. hypergram/raw/core/list.py +26 -0
  1178. hypergram/raw/core/message.py +56 -0
  1179. hypergram/raw/core/msg_container.py +53 -0
  1180. hypergram/raw/core/primitives/__init__.py +24 -0
  1181. hypergram/raw/core/primitives/bool.py +48 -0
  1182. hypergram/raw/core/primitives/bytes.py +55 -0
  1183. hypergram/raw/core/primitives/double.py +32 -0
  1184. hypergram/raw/core/primitives/int.py +45 -0
  1185. hypergram/raw/core/primitives/string.py +31 -0
  1186. hypergram/raw/core/primitives/vector.py +66 -0
  1187. hypergram/raw/core/tl_object.py +84 -0
  1188. hypergram/raw/functions/__init__.py +46 -0
  1189. hypergram/raw/functions/account/__init__.py +147 -0
  1190. hypergram/raw/functions/account/accept_authorization.py +106 -0
  1191. hypergram/raw/functions/account/cancel_password_email.py +69 -0
  1192. hypergram/raw/functions/account/change_authorization_settings.py +100 -0
  1193. hypergram/raw/functions/account/change_phone.py +90 -0
  1194. hypergram/raw/functions/account/check_username.py +74 -0
  1195. hypergram/raw/functions/account/clear_recent_emoji_statuses.py +69 -0
  1196. hypergram/raw/functions/account/confirm_password_email.py +74 -0
  1197. hypergram/raw/functions/account/confirm_phone.py +82 -0
  1198. hypergram/raw/functions/account/create_business_chat_link.py +74 -0
  1199. hypergram/raw/functions/account/create_theme.py +104 -0
  1200. hypergram/raw/functions/account/decline_password_reset.py +69 -0
  1201. hypergram/raw/functions/account/delete_account.py +86 -0
  1202. hypergram/raw/functions/account/delete_auto_save_exceptions.py +69 -0
  1203. hypergram/raw/functions/account/delete_business_chat_link.py +74 -0
  1204. hypergram/raw/functions/account/delete_passkey.py +74 -0
  1205. hypergram/raw/functions/account/delete_secure_value.py +74 -0
  1206. hypergram/raw/functions/account/disable_peer_connected_bot.py +74 -0
  1207. hypergram/raw/functions/account/edit_business_chat_link.py +82 -0
  1208. hypergram/raw/functions/account/finish_takeout_session.py +74 -0
  1209. hypergram/raw/functions/account/get_account_ttl.py +69 -0
  1210. hypergram/raw/functions/account/get_all_secure_values.py +69 -0
  1211. hypergram/raw/functions/account/get_authorization_form.py +90 -0
  1212. hypergram/raw/functions/account/get_authorizations.py +69 -0
  1213. hypergram/raw/functions/account/get_auto_download_settings.py +69 -0
  1214. hypergram/raw/functions/account/get_auto_save_settings.py +69 -0
  1215. hypergram/raw/functions/account/get_bot_business_connection.py +74 -0
  1216. hypergram/raw/functions/account/get_business_chat_links.py +69 -0
  1217. hypergram/raw/functions/account/get_channel_default_emoji_statuses.py +74 -0
  1218. hypergram/raw/functions/account/get_channel_restricted_status_emojis.py +74 -0
  1219. hypergram/raw/functions/account/get_chat_themes.py +74 -0
  1220. hypergram/raw/functions/account/get_collectible_emoji_statuses.py +74 -0
  1221. hypergram/raw/functions/account/get_connected_bots.py +69 -0
  1222. hypergram/raw/functions/account/get_contact_sign_up_notification.py +69 -0
  1223. hypergram/raw/functions/account/get_content_settings.py +69 -0
  1224. hypergram/raw/functions/account/get_default_background_emojis.py +74 -0
  1225. hypergram/raw/functions/account/get_default_emoji_statuses.py +74 -0
  1226. hypergram/raw/functions/account/get_default_group_photo_emojis.py +74 -0
  1227. hypergram/raw/functions/account/get_default_profile_photo_emojis.py +74 -0
  1228. hypergram/raw/functions/account/get_global_privacy_settings.py +69 -0
  1229. hypergram/raw/functions/account/get_multi_wall_papers.py +74 -0
  1230. hypergram/raw/functions/account/get_notify_exceptions.py +90 -0
  1231. hypergram/raw/functions/account/get_notify_settings.py +74 -0
  1232. hypergram/raw/functions/account/get_paid_messages_revenue.py +86 -0
  1233. hypergram/raw/functions/account/get_passkeys.py +69 -0
  1234. hypergram/raw/functions/account/get_password.py +69 -0
  1235. hypergram/raw/functions/account/get_password_settings.py +74 -0
  1236. hypergram/raw/functions/account/get_privacy.py +74 -0
  1237. hypergram/raw/functions/account/get_reactions_notify_settings.py +69 -0
  1238. hypergram/raw/functions/account/get_recent_emoji_statuses.py +74 -0
  1239. hypergram/raw/functions/account/get_saved_music_ids.py +74 -0
  1240. hypergram/raw/functions/account/get_saved_ringtones.py +74 -0
  1241. hypergram/raw/functions/account/get_secure_value.py +74 -0
  1242. hypergram/raw/functions/account/get_theme.py +82 -0
  1243. hypergram/raw/functions/account/get_themes.py +82 -0
  1244. hypergram/raw/functions/account/get_tmp_password.py +82 -0
  1245. hypergram/raw/functions/account/get_unique_gift_chat_themes.py +90 -0
  1246. hypergram/raw/functions/account/get_wall_paper.py +74 -0
  1247. hypergram/raw/functions/account/get_wall_papers.py +74 -0
  1248. hypergram/raw/functions/account/get_web_authorizations.py +69 -0
  1249. hypergram/raw/functions/account/init_passkey_registration.py +69 -0
  1250. hypergram/raw/functions/account/init_takeout_session.py +113 -0
  1251. hypergram/raw/functions/account/install_theme.py +103 -0
  1252. hypergram/raw/functions/account/install_wall_paper.py +82 -0
  1253. hypergram/raw/functions/account/invalidate_sign_in_codes.py +74 -0
  1254. hypergram/raw/functions/account/register_device.py +114 -0
  1255. hypergram/raw/functions/account/register_passkey.py +74 -0
  1256. hypergram/raw/functions/account/reorder_usernames.py +74 -0
  1257. hypergram/raw/functions/account/report_peer.py +90 -0
  1258. hypergram/raw/functions/account/report_profile_photo.py +98 -0
  1259. hypergram/raw/functions/account/resend_password_email.py +69 -0
  1260. hypergram/raw/functions/account/reset_authorization.py +74 -0
  1261. hypergram/raw/functions/account/reset_notify_settings.py +69 -0
  1262. hypergram/raw/functions/account/reset_password.py +69 -0
  1263. hypergram/raw/functions/account/reset_wall_papers.py +69 -0
  1264. hypergram/raw/functions/account/reset_web_authorization.py +74 -0
  1265. hypergram/raw/functions/account/reset_web_authorizations.py +69 -0
  1266. hypergram/raw/functions/account/resolve_business_chat_link.py +74 -0
  1267. hypergram/raw/functions/account/save_auto_download_settings.py +88 -0
  1268. hypergram/raw/functions/account/save_auto_save_settings.py +104 -0
  1269. hypergram/raw/functions/account/save_music.py +92 -0
  1270. hypergram/raw/functions/account/save_ringtone.py +82 -0
  1271. hypergram/raw/functions/account/save_secure_value.py +82 -0
  1272. hypergram/raw/functions/account/save_theme.py +82 -0
  1273. hypergram/raw/functions/account/save_wall_paper.py +90 -0
  1274. hypergram/raw/functions/account/send_change_phone_code.py +82 -0
  1275. hypergram/raw/functions/account/send_confirm_phone_code.py +82 -0
  1276. hypergram/raw/functions/account/send_verify_email_code.py +82 -0
  1277. hypergram/raw/functions/account/send_verify_phone_code.py +82 -0
  1278. hypergram/raw/functions/account/set_account_ttl.py +74 -0
  1279. hypergram/raw/functions/account/set_authorization_ttl.py +74 -0
  1280. hypergram/raw/functions/account/set_contact_sign_up_notification.py +74 -0
  1281. hypergram/raw/functions/account/set_content_settings.py +74 -0
  1282. hypergram/raw/functions/account/set_global_privacy_settings.py +74 -0
  1283. hypergram/raw/functions/account/set_main_profile_tab.py +74 -0
  1284. hypergram/raw/functions/account/set_privacy.py +82 -0
  1285. hypergram/raw/functions/account/set_reactions_notify_settings.py +74 -0
  1286. hypergram/raw/functions/account/toggle_connected_bot_paused.py +82 -0
  1287. hypergram/raw/functions/account/toggle_no_paid_messages_exception.py +98 -0
  1288. hypergram/raw/functions/account/toggle_sponsored_messages.py +74 -0
  1289. hypergram/raw/functions/account/toggle_username.py +82 -0
  1290. hypergram/raw/functions/account/unregister_device.py +90 -0
  1291. hypergram/raw/functions/account/update_birthday.py +78 -0
  1292. hypergram/raw/functions/account/update_business_away_message.py +78 -0
  1293. hypergram/raw/functions/account/update_business_greeting_message.py +78 -0
  1294. hypergram/raw/functions/account/update_business_intro.py +78 -0
  1295. hypergram/raw/functions/account/update_business_location.py +87 -0
  1296. hypergram/raw/functions/account/update_business_work_hours.py +78 -0
  1297. hypergram/raw/functions/account/update_color.py +84 -0
  1298. hypergram/raw/functions/account/update_connected_bot.py +100 -0
  1299. hypergram/raw/functions/account/update_device_locked.py +74 -0
  1300. hypergram/raw/functions/account/update_emoji_status.py +74 -0
  1301. hypergram/raw/functions/account/update_notify_settings.py +82 -0
  1302. hypergram/raw/functions/account/update_password_settings.py +82 -0
  1303. hypergram/raw/functions/account/update_personal_channel.py +74 -0
  1304. hypergram/raw/functions/account/update_profile.py +95 -0
  1305. hypergram/raw/functions/account/update_status.py +74 -0
  1306. hypergram/raw/functions/account/update_theme.py +122 -0
  1307. hypergram/raw/functions/account/update_username.py +74 -0
  1308. hypergram/raw/functions/account/upload_ringtone.py +90 -0
  1309. hypergram/raw/functions/account/upload_theme.py +102 -0
  1310. hypergram/raw/functions/account/upload_wall_paper.py +98 -0
  1311. hypergram/raw/functions/account/verify_email.py +82 -0
  1312. hypergram/raw/functions/account/verify_phone.py +90 -0
  1313. hypergram/raw/functions/aicompose/__init__.py +31 -0
  1314. hypergram/raw/functions/aicompose/create_tone.py +98 -0
  1315. hypergram/raw/functions/aicompose/delete_tone.py +74 -0
  1316. hypergram/raw/functions/aicompose/get_tone.py +74 -0
  1317. hypergram/raw/functions/aicompose/get_tone_example.py +82 -0
  1318. hypergram/raw/functions/aicompose/get_tones.py +74 -0
  1319. hypergram/raw/functions/aicompose/save_tone.py +82 -0
  1320. hypergram/raw/functions/aicompose/update_tone.py +112 -0
  1321. hypergram/raw/functions/auth/__init__.py +50 -0
  1322. hypergram/raw/functions/auth/accept_login_token.py +74 -0
  1323. hypergram/raw/functions/auth/bind_temp_auth_key.py +98 -0
  1324. hypergram/raw/functions/auth/cancel_code.py +82 -0
  1325. hypergram/raw/functions/auth/check_paid_auth.py +90 -0
  1326. hypergram/raw/functions/auth/check_password.py +74 -0
  1327. hypergram/raw/functions/auth/check_recovery_password.py +74 -0
  1328. hypergram/raw/functions/auth/drop_temp_auth_keys.py +74 -0
  1329. hypergram/raw/functions/auth/export_authorization.py +74 -0
  1330. hypergram/raw/functions/auth/export_login_token.py +90 -0
  1331. hypergram/raw/functions/auth/finish_passkey_login.py +94 -0
  1332. hypergram/raw/functions/auth/import_authorization.py +82 -0
  1333. hypergram/raw/functions/auth/import_bot_authorization.py +98 -0
  1334. hypergram/raw/functions/auth/import_login_token.py +74 -0
  1335. hypergram/raw/functions/auth/import_web_token_authorization.py +90 -0
  1336. hypergram/raw/functions/auth/init_passkey_login.py +82 -0
  1337. hypergram/raw/functions/auth/log_out.py +69 -0
  1338. hypergram/raw/functions/auth/recover_password.py +86 -0
  1339. hypergram/raw/functions/auth/report_missing_code.py +90 -0
  1340. hypergram/raw/functions/auth/request_firebase_sms.py +111 -0
  1341. hypergram/raw/functions/auth/request_password_recovery.py +69 -0
  1342. hypergram/raw/functions/auth/resend_code.py +93 -0
  1343. hypergram/raw/functions/auth/reset_authorizations.py +69 -0
  1344. hypergram/raw/functions/auth/reset_login_email.py +82 -0
  1345. hypergram/raw/functions/auth/send_code.py +98 -0
  1346. hypergram/raw/functions/auth/sign_in.py +103 -0
  1347. hypergram/raw/functions/auth/sign_up.py +106 -0
  1348. hypergram/raw/functions/bots/__init__.py +61 -0
  1349. hypergram/raw/functions/bots/add_preview_media.py +90 -0
  1350. hypergram/raw/functions/bots/allow_send_message.py +74 -0
  1351. hypergram/raw/functions/bots/answer_webhook_json_query.py +82 -0
  1352. hypergram/raw/functions/bots/can_send_message.py +74 -0
  1353. hypergram/raw/functions/bots/check_download_file_params.py +90 -0
  1354. hypergram/raw/functions/bots/check_username.py +74 -0
  1355. hypergram/raw/functions/bots/create_bot.py +98 -0
  1356. hypergram/raw/functions/bots/delete_preview_media.py +90 -0
  1357. hypergram/raw/functions/bots/edit_access_settings.py +92 -0
  1358. hypergram/raw/functions/bots/edit_preview_media.py +98 -0
  1359. hypergram/raw/functions/bots/export_bot_token.py +82 -0
  1360. hypergram/raw/functions/bots/get_access_settings.py +74 -0
  1361. hypergram/raw/functions/bots/get_admined_bots.py +69 -0
  1362. hypergram/raw/functions/bots/get_bot_commands.py +82 -0
  1363. hypergram/raw/functions/bots/get_bot_info.py +86 -0
  1364. hypergram/raw/functions/bots/get_bot_menu_button.py +74 -0
  1365. hypergram/raw/functions/bots/get_bot_recommendations.py +74 -0
  1366. hypergram/raw/functions/bots/get_popular_app_bots.py +82 -0
  1367. hypergram/raw/functions/bots/get_preview_info.py +82 -0
  1368. hypergram/raw/functions/bots/get_preview_medias.py +74 -0
  1369. hypergram/raw/functions/bots/get_requested_web_view_button.py +82 -0
  1370. hypergram/raw/functions/bots/invoke_web_view_custom_method.py +90 -0
  1371. hypergram/raw/functions/bots/reorder_preview_medias.py +90 -0
  1372. hypergram/raw/functions/bots/reorder_usernames.py +82 -0
  1373. hypergram/raw/functions/bots/request_web_view_button.py +82 -0
  1374. hypergram/raw/functions/bots/reset_bot_commands.py +82 -0
  1375. hypergram/raw/functions/bots/send_custom_request.py +82 -0
  1376. hypergram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py +74 -0
  1377. hypergram/raw/functions/bots/set_bot_commands.py +90 -0
  1378. hypergram/raw/functions/bots/set_bot_group_default_admin_rights.py +74 -0
  1379. hypergram/raw/functions/bots/set_bot_info.py +113 -0
  1380. hypergram/raw/functions/bots/set_bot_menu_button.py +82 -0
  1381. hypergram/raw/functions/bots/set_custom_verification.py +101 -0
  1382. hypergram/raw/functions/bots/toggle_user_emoji_status_permission.py +82 -0
  1383. hypergram/raw/functions/bots/toggle_username.py +90 -0
  1384. hypergram/raw/functions/bots/update_star_ref_program.py +93 -0
  1385. hypergram/raw/functions/bots/update_user_emoji_status.py +82 -0
  1386. hypergram/raw/functions/channels/__init__.py +82 -0
  1387. hypergram/raw/functions/channels/check_search_posts_flood.py +77 -0
  1388. hypergram/raw/functions/channels/check_username.py +82 -0
  1389. hypergram/raw/functions/channels/convert_to_gigagroup.py +74 -0
  1390. hypergram/raw/functions/channels/create_channel.py +136 -0
  1391. hypergram/raw/functions/channels/deactivate_all_usernames.py +74 -0
  1392. hypergram/raw/functions/channels/delete_channel.py +74 -0
  1393. hypergram/raw/functions/channels/delete_history.py +90 -0
  1394. hypergram/raw/functions/channels/delete_messages.py +82 -0
  1395. hypergram/raw/functions/channels/delete_participant_history.py +82 -0
  1396. hypergram/raw/functions/channels/edit_admin.py +101 -0
  1397. hypergram/raw/functions/channels/edit_banned.py +90 -0
  1398. hypergram/raw/functions/channels/edit_location.py +90 -0
  1399. hypergram/raw/functions/channels/edit_photo.py +82 -0
  1400. hypergram/raw/functions/channels/edit_title.py +82 -0
  1401. hypergram/raw/functions/channels/export_message_link.py +96 -0
  1402. hypergram/raw/functions/channels/get_admin_log.py +128 -0
  1403. hypergram/raw/functions/channels/get_admined_public_channels.py +86 -0
  1404. hypergram/raw/functions/channels/get_channel_recommendations.py +78 -0
  1405. hypergram/raw/functions/channels/get_channels.py +74 -0
  1406. hypergram/raw/functions/channels/get_full_channel.py +74 -0
  1407. hypergram/raw/functions/channels/get_groups_for_discussion.py +69 -0
  1408. hypergram/raw/functions/channels/get_inactive_channels.py +69 -0
  1409. hypergram/raw/functions/channels/get_left_channels.py +74 -0
  1410. hypergram/raw/functions/channels/get_message_author.py +82 -0
  1411. hypergram/raw/functions/channels/get_messages.py +82 -0
  1412. hypergram/raw/functions/channels/get_participant.py +82 -0
  1413. hypergram/raw/functions/channels/get_participants.py +106 -0
  1414. hypergram/raw/functions/channels/get_send_as.py +88 -0
  1415. hypergram/raw/functions/channels/invite_to_channel.py +82 -0
  1416. hypergram/raw/functions/channels/join_channel.py +74 -0
  1417. hypergram/raw/functions/channels/leave_channel.py +74 -0
  1418. hypergram/raw/functions/channels/read_history.py +82 -0
  1419. hypergram/raw/functions/channels/read_message_contents.py +82 -0
  1420. hypergram/raw/functions/channels/reorder_usernames.py +82 -0
  1421. hypergram/raw/functions/channels/report_anti_spam_false_positive.py +82 -0
  1422. hypergram/raw/functions/channels/report_spam.py +90 -0
  1423. hypergram/raw/functions/channels/restrict_sponsored_messages.py +82 -0
  1424. hypergram/raw/functions/channels/search_posts.py +127 -0
  1425. hypergram/raw/functions/channels/set_boosts_to_unblock_restrictions.py +82 -0
  1426. hypergram/raw/functions/channels/set_discussion_group.py +82 -0
  1427. hypergram/raw/functions/channels/set_emoji_stickers.py +82 -0
  1428. hypergram/raw/functions/channels/set_main_profile_tab.py +82 -0
  1429. hypergram/raw/functions/channels/set_stickers.py +82 -0
  1430. hypergram/raw/functions/channels/toggle_anti_spam.py +82 -0
  1431. hypergram/raw/functions/channels/toggle_autotranslation.py +82 -0
  1432. hypergram/raw/functions/channels/toggle_forum.py +90 -0
  1433. hypergram/raw/functions/channels/toggle_join_request.py +82 -0
  1434. hypergram/raw/functions/channels/toggle_join_to_send.py +82 -0
  1435. hypergram/raw/functions/channels/toggle_participants_hidden.py +82 -0
  1436. hypergram/raw/functions/channels/toggle_pre_history_hidden.py +82 -0
  1437. hypergram/raw/functions/channels/toggle_signatures.py +88 -0
  1438. hypergram/raw/functions/channels/toggle_slow_mode.py +82 -0
  1439. hypergram/raw/functions/channels/toggle_username.py +90 -0
  1440. hypergram/raw/functions/channels/toggle_view_forum_as_messages.py +82 -0
  1441. hypergram/raw/functions/channels/update_color.py +100 -0
  1442. hypergram/raw/functions/channels/update_emoji_status.py +82 -0
  1443. hypergram/raw/functions/channels/update_paid_messages_price.py +90 -0
  1444. hypergram/raw/functions/channels/update_username.py +82 -0
  1445. hypergram/raw/functions/chatlists/__init__.py +35 -0
  1446. hypergram/raw/functions/chatlists/check_chatlist_invite.py +74 -0
  1447. hypergram/raw/functions/chatlists/delete_exported_invite.py +82 -0
  1448. hypergram/raw/functions/chatlists/edit_exported_invite.py +103 -0
  1449. hypergram/raw/functions/chatlists/export_chatlist_invite.py +90 -0
  1450. hypergram/raw/functions/chatlists/get_chatlist_updates.py +74 -0
  1451. hypergram/raw/functions/chatlists/get_exported_invites.py +74 -0
  1452. hypergram/raw/functions/chatlists/get_leave_chatlist_suggestions.py +74 -0
  1453. hypergram/raw/functions/chatlists/hide_chatlist_updates.py +74 -0
  1454. hypergram/raw/functions/chatlists/join_chatlist_invite.py +82 -0
  1455. hypergram/raw/functions/chatlists/join_chatlist_updates.py +82 -0
  1456. hypergram/raw/functions/chatlists/leave_chatlist.py +82 -0
  1457. hypergram/raw/functions/contacts/__init__.py +52 -0
  1458. hypergram/raw/functions/contacts/accept_contact.py +74 -0
  1459. hypergram/raw/functions/contacts/add_contact.py +116 -0
  1460. hypergram/raw/functions/contacts/block.py +82 -0
  1461. hypergram/raw/functions/contacts/block_from_replies.py +94 -0
  1462. hypergram/raw/functions/contacts/delete_by_phones.py +74 -0
  1463. hypergram/raw/functions/contacts/delete_contacts.py +74 -0
  1464. hypergram/raw/functions/contacts/edit_close_friends.py +74 -0
  1465. hypergram/raw/functions/contacts/export_contact_token.py +69 -0
  1466. hypergram/raw/functions/contacts/get_birthdays.py +69 -0
  1467. hypergram/raw/functions/contacts/get_blocked.py +90 -0
  1468. hypergram/raw/functions/contacts/get_contact_i_ds.py +74 -0
  1469. hypergram/raw/functions/contacts/get_contacts.py +74 -0
  1470. hypergram/raw/functions/contacts/get_located.py +91 -0
  1471. hypergram/raw/functions/contacts/get_saved.py +69 -0
  1472. hypergram/raw/functions/contacts/get_sponsored_peers.py +74 -0
  1473. hypergram/raw/functions/contacts/get_statuses.py +69 -0
  1474. hypergram/raw/functions/contacts/get_top_peers.py +152 -0
  1475. hypergram/raw/functions/contacts/import_contact_token.py +74 -0
  1476. hypergram/raw/functions/contacts/import_contacts.py +74 -0
  1477. hypergram/raw/functions/contacts/reset_saved.py +69 -0
  1478. hypergram/raw/functions/contacts/reset_top_peer_rating.py +82 -0
  1479. hypergram/raw/functions/contacts/resolve_phone.py +74 -0
  1480. hypergram/raw/functions/contacts/resolve_username.py +85 -0
  1481. hypergram/raw/functions/contacts/search.py +82 -0
  1482. hypergram/raw/functions/contacts/set_blocked.py +90 -0
  1483. hypergram/raw/functions/contacts/toggle_top_peers.py +74 -0
  1484. hypergram/raw/functions/contacts/unblock.py +82 -0
  1485. hypergram/raw/functions/contacts/update_contact_note.py +82 -0
  1486. hypergram/raw/functions/contest/__init__.py +25 -0
  1487. hypergram/raw/functions/contest/save_developer_info.py +106 -0
  1488. hypergram/raw/functions/destroy_auth_key.py +69 -0
  1489. hypergram/raw/functions/destroy_session.py +74 -0
  1490. hypergram/raw/functions/folders/__init__.py +25 -0
  1491. hypergram/raw/functions/folders/edit_peer_folders.py +74 -0
  1492. hypergram/raw/functions/fragment/__init__.py +25 -0
  1493. hypergram/raw/functions/fragment/get_collectible_info.py +74 -0
  1494. hypergram/raw/functions/get_future_salts.py +74 -0
  1495. hypergram/raw/functions/help/__init__.py +49 -0
  1496. hypergram/raw/functions/help/accept_terms_of_service.py +74 -0
  1497. hypergram/raw/functions/help/dismiss_suggestion.py +82 -0
  1498. hypergram/raw/functions/help/edit_user_info.py +90 -0
  1499. hypergram/raw/functions/help/get_app_config.py +74 -0
  1500. hypergram/raw/functions/help/get_app_update.py +74 -0
  1501. hypergram/raw/functions/help/get_cdn_config.py +69 -0
  1502. hypergram/raw/functions/help/get_config.py +69 -0
  1503. hypergram/raw/functions/help/get_countries_list.py +82 -0
  1504. hypergram/raw/functions/help/get_deep_link_info.py +74 -0
  1505. hypergram/raw/functions/help/get_invite_text.py +69 -0
  1506. hypergram/raw/functions/help/get_nearest_dc.py +69 -0
  1507. hypergram/raw/functions/help/get_passport_config.py +74 -0
  1508. hypergram/raw/functions/help/get_peer_colors.py +74 -0
  1509. hypergram/raw/functions/help/get_peer_profile_colors.py +74 -0
  1510. hypergram/raw/functions/help/get_premium_promo.py +69 -0
  1511. hypergram/raw/functions/help/get_promo_data.py +69 -0
  1512. hypergram/raw/functions/help/get_recent_me_urls.py +74 -0
  1513. hypergram/raw/functions/help/get_support.py +69 -0
  1514. hypergram/raw/functions/help/get_support_name.py +69 -0
  1515. hypergram/raw/functions/help/get_terms_of_service_update.py +69 -0
  1516. hypergram/raw/functions/help/get_timezones_list.py +74 -0
  1517. hypergram/raw/functions/help/get_user_info.py +74 -0
  1518. hypergram/raw/functions/help/hide_promo_data.py +74 -0
  1519. hypergram/raw/functions/help/save_app_log.py +74 -0
  1520. hypergram/raw/functions/help/set_bot_updates_status.py +82 -0
  1521. hypergram/raw/functions/init_connection.py +152 -0
  1522. hypergram/raw/functions/invoke_after_msg.py +82 -0
  1523. hypergram/raw/functions/invoke_after_msgs.py +82 -0
  1524. hypergram/raw/functions/invoke_with_apns_secret.py +90 -0
  1525. hypergram/raw/functions/invoke_with_business_connection.py +82 -0
  1526. hypergram/raw/functions/invoke_with_google_play_integrity.py +90 -0
  1527. hypergram/raw/functions/invoke_with_layer.py +82 -0
  1528. hypergram/raw/functions/invoke_with_messages_range.py +82 -0
  1529. hypergram/raw/functions/invoke_with_re_captcha.py +82 -0
  1530. hypergram/raw/functions/invoke_with_takeout.py +82 -0
  1531. hypergram/raw/functions/invoke_without_updates.py +74 -0
  1532. hypergram/raw/functions/langpack/__init__.py +29 -0
  1533. hypergram/raw/functions/langpack/get_difference.py +90 -0
  1534. hypergram/raw/functions/langpack/get_lang_pack.py +82 -0
  1535. hypergram/raw/functions/langpack/get_language.py +82 -0
  1536. hypergram/raw/functions/langpack/get_languages.py +74 -0
  1537. hypergram/raw/functions/langpack/get_strings.py +90 -0
  1538. hypergram/raw/functions/messages/__init__.py +279 -0
  1539. hypergram/raw/functions/messages/accept_encryption.py +90 -0
  1540. hypergram/raw/functions/messages/accept_url_auth.py +126 -0
  1541. hypergram/raw/functions/messages/add_chat_user.py +90 -0
  1542. hypergram/raw/functions/messages/add_poll_answer.py +90 -0
  1543. hypergram/raw/functions/messages/append_todo_list.py +90 -0
  1544. hypergram/raw/functions/messages/check_chat_invite.py +74 -0
  1545. hypergram/raw/functions/messages/check_history_import.py +74 -0
  1546. hypergram/raw/functions/messages/check_history_import_peer.py +74 -0
  1547. hypergram/raw/functions/messages/check_quick_reply_shortcut.py +74 -0
  1548. hypergram/raw/functions/messages/check_url_auth_match_code.py +82 -0
  1549. hypergram/raw/functions/messages/clear_all_drafts.py +69 -0
  1550. hypergram/raw/functions/messages/clear_recent_reactions.py +69 -0
  1551. hypergram/raw/functions/messages/clear_recent_stickers.py +74 -0
  1552. hypergram/raw/functions/messages/click_sponsored_message.py +88 -0
  1553. hypergram/raw/functions/messages/compose_message_with_ai.py +107 -0
  1554. hypergram/raw/functions/messages/create_chat.py +93 -0
  1555. hypergram/raw/functions/messages/create_forum_topic.py +126 -0
  1556. hypergram/raw/functions/messages/decline_url_auth.py +74 -0
  1557. hypergram/raw/functions/messages/delete_chat.py +74 -0
  1558. hypergram/raw/functions/messages/delete_chat_user.py +90 -0
  1559. hypergram/raw/functions/messages/delete_exported_chat_invite.py +82 -0
  1560. hypergram/raw/functions/messages/delete_fact_check.py +82 -0
  1561. hypergram/raw/functions/messages/delete_history.py +114 -0
  1562. hypergram/raw/functions/messages/delete_messages.py +82 -0
  1563. hypergram/raw/functions/messages/delete_participant_reaction.py +90 -0
  1564. hypergram/raw/functions/messages/delete_participant_reactions.py +82 -0
  1565. hypergram/raw/functions/messages/delete_phone_call_history.py +74 -0
  1566. hypergram/raw/functions/messages/delete_poll_answer.py +90 -0
  1567. hypergram/raw/functions/messages/delete_quick_reply_messages.py +82 -0
  1568. hypergram/raw/functions/messages/delete_quick_reply_shortcut.py +74 -0
  1569. hypergram/raw/functions/messages/delete_revoked_exported_chat_invites.py +82 -0
  1570. hypergram/raw/functions/messages/delete_saved_history.py +112 -0
  1571. hypergram/raw/functions/messages/delete_scheduled_messages.py +82 -0
  1572. hypergram/raw/functions/messages/delete_topic_history.py +82 -0
  1573. hypergram/raw/functions/messages/discard_encryption.py +82 -0
  1574. hypergram/raw/functions/messages/edit_chat_about.py +82 -0
  1575. hypergram/raw/functions/messages/edit_chat_admin.py +90 -0
  1576. hypergram/raw/functions/messages/edit_chat_creator.py +90 -0
  1577. hypergram/raw/functions/messages/edit_chat_default_banned_rights.py +82 -0
  1578. hypergram/raw/functions/messages/edit_chat_participant_rank.py +90 -0
  1579. hypergram/raw/functions/messages/edit_chat_photo.py +82 -0
  1580. hypergram/raw/functions/messages/edit_chat_title.py +82 -0
  1581. hypergram/raw/functions/messages/edit_exported_chat_invite.py +126 -0
  1582. hypergram/raw/functions/messages/edit_fact_check.py +90 -0
  1583. hypergram/raw/functions/messages/edit_forum_topic.py +120 -0
  1584. hypergram/raw/functions/messages/edit_inline_bot_message.py +127 -0
  1585. hypergram/raw/functions/messages/edit_message.py +162 -0
  1586. hypergram/raw/functions/messages/edit_quick_reply_shortcut.py +82 -0
  1587. hypergram/raw/functions/messages/export_chat_invite.py +125 -0
  1588. hypergram/raw/functions/messages/fave_sticker.py +82 -0
  1589. hypergram/raw/functions/messages/forward_messages.py +236 -0
  1590. hypergram/raw/functions/messages/get_admins_with_invites.py +74 -0
  1591. hypergram/raw/functions/messages/get_all_drafts.py +69 -0
  1592. hypergram/raw/functions/messages/get_all_stickers.py +74 -0
  1593. hypergram/raw/functions/messages/get_archived_stickers.py +96 -0
  1594. hypergram/raw/functions/messages/get_attach_menu_bot.py +74 -0
  1595. hypergram/raw/functions/messages/get_attach_menu_bots.py +74 -0
  1596. hypergram/raw/functions/messages/get_attached_stickers.py +74 -0
  1597. hypergram/raw/functions/messages/get_available_effects.py +74 -0
  1598. hypergram/raw/functions/messages/get_available_reactions.py +74 -0
  1599. hypergram/raw/functions/messages/get_bot_app.py +82 -0
  1600. hypergram/raw/functions/messages/get_bot_callback_answer.py +109 -0
  1601. hypergram/raw/functions/messages/get_chat_invite_importers.py +130 -0
  1602. hypergram/raw/functions/messages/get_chats.py +74 -0
  1603. hypergram/raw/functions/messages/get_common_chats.py +90 -0
  1604. hypergram/raw/functions/messages/get_custom_emoji_documents.py +74 -0
  1605. hypergram/raw/functions/messages/get_default_history_ttl.py +69 -0
  1606. hypergram/raw/functions/messages/get_default_tag_reactions.py +74 -0
  1607. hypergram/raw/functions/messages/get_dh_config.py +82 -0
  1608. hypergram/raw/functions/messages/get_dialog_filters.py +69 -0
  1609. hypergram/raw/functions/messages/get_dialog_unread_marks.py +78 -0
  1610. hypergram/raw/functions/messages/get_dialogs.py +123 -0
  1611. hypergram/raw/functions/messages/get_discussion_message.py +82 -0
  1612. hypergram/raw/functions/messages/get_document_by_hash.py +90 -0
  1613. hypergram/raw/functions/messages/get_emoji_game_info.py +69 -0
  1614. hypergram/raw/functions/messages/get_emoji_groups.py +74 -0
  1615. hypergram/raw/functions/messages/get_emoji_keywords.py +74 -0
  1616. hypergram/raw/functions/messages/get_emoji_keywords_difference.py +82 -0
  1617. hypergram/raw/functions/messages/get_emoji_keywords_languages.py +74 -0
  1618. hypergram/raw/functions/messages/get_emoji_profile_photo_groups.py +74 -0
  1619. hypergram/raw/functions/messages/get_emoji_status_groups.py +74 -0
  1620. hypergram/raw/functions/messages/get_emoji_sticker_groups.py +74 -0
  1621. hypergram/raw/functions/messages/get_emoji_stickers.py +74 -0
  1622. hypergram/raw/functions/messages/get_emoji_url.py +74 -0
  1623. hypergram/raw/functions/messages/get_exported_chat_invite.py +82 -0
  1624. hypergram/raw/functions/messages/get_exported_chat_invites.py +116 -0
  1625. hypergram/raw/functions/messages/get_extended_media.py +82 -0
  1626. hypergram/raw/functions/messages/get_fact_check.py +82 -0
  1627. hypergram/raw/functions/messages/get_faved_stickers.py +74 -0
  1628. hypergram/raw/functions/messages/get_featured_emoji_stickers.py +74 -0
  1629. hypergram/raw/functions/messages/get_featured_stickers.py +74 -0
  1630. hypergram/raw/functions/messages/get_forum_topics.py +117 -0
  1631. hypergram/raw/functions/messages/get_forum_topics_by_id.py +82 -0
  1632. hypergram/raw/functions/messages/get_full_chat.py +74 -0
  1633. hypergram/raw/functions/messages/get_future_chat_creator_after_leave.py +74 -0
  1634. hypergram/raw/functions/messages/get_game_high_scores.py +90 -0
  1635. hypergram/raw/functions/messages/get_history.py +130 -0
  1636. hypergram/raw/functions/messages/get_inline_bot_results.py +110 -0
  1637. hypergram/raw/functions/messages/get_inline_game_high_scores.py +82 -0
  1638. hypergram/raw/functions/messages/get_mask_stickers.py +74 -0
  1639. hypergram/raw/functions/messages/get_message_edit_data.py +82 -0
  1640. hypergram/raw/functions/messages/get_message_reactions_list.py +111 -0
  1641. hypergram/raw/functions/messages/get_message_read_participants.py +82 -0
  1642. hypergram/raw/functions/messages/get_messages.py +74 -0
  1643. hypergram/raw/functions/messages/get_messages_reactions.py +82 -0
  1644. hypergram/raw/functions/messages/get_messages_views.py +90 -0
  1645. hypergram/raw/functions/messages/get_my_stickers.py +82 -0
  1646. hypergram/raw/functions/messages/get_old_featured_stickers.py +90 -0
  1647. hypergram/raw/functions/messages/get_onlines.py +74 -0
  1648. hypergram/raw/functions/messages/get_outbox_read_date.py +82 -0
  1649. hypergram/raw/functions/messages/get_paid_reaction_privacy.py +69 -0
  1650. hypergram/raw/functions/messages/get_peer_dialogs.py +74 -0
  1651. hypergram/raw/functions/messages/get_peer_settings.py +74 -0
  1652. hypergram/raw/functions/messages/get_personal_channel_history.py +106 -0
  1653. hypergram/raw/functions/messages/get_pinned_dialogs.py +74 -0
  1654. hypergram/raw/functions/messages/get_pinned_saved_dialogs.py +69 -0
  1655. hypergram/raw/functions/messages/get_poll_results.py +90 -0
  1656. hypergram/raw/functions/messages/get_poll_votes.py +110 -0
  1657. hypergram/raw/functions/messages/get_prepared_inline_message.py +82 -0
  1658. hypergram/raw/functions/messages/get_quick_replies.py +74 -0
  1659. hypergram/raw/functions/messages/get_quick_reply_messages.py +94 -0
  1660. hypergram/raw/functions/messages/get_recent_locations.py +90 -0
  1661. hypergram/raw/functions/messages/get_recent_reactions.py +82 -0
  1662. hypergram/raw/functions/messages/get_recent_stickers.py +82 -0
  1663. hypergram/raw/functions/messages/get_replies.py +138 -0
  1664. hypergram/raw/functions/messages/get_saved_dialogs.py +124 -0
  1665. hypergram/raw/functions/messages/get_saved_dialogs_by_id.py +86 -0
  1666. hypergram/raw/functions/messages/get_saved_gifs.py +74 -0
  1667. hypergram/raw/functions/messages/get_saved_history.py +142 -0
  1668. hypergram/raw/functions/messages/get_saved_reaction_tags.py +86 -0
  1669. hypergram/raw/functions/messages/get_scheduled_history.py +82 -0
  1670. hypergram/raw/functions/messages/get_scheduled_messages.py +82 -0
  1671. hypergram/raw/functions/messages/get_search_counters.py +103 -0
  1672. hypergram/raw/functions/messages/get_search_results_calendar.py +110 -0
  1673. hypergram/raw/functions/messages/get_search_results_positions.py +110 -0
  1674. hypergram/raw/functions/messages/get_split_ranges.py +69 -0
  1675. hypergram/raw/functions/messages/get_sponsored_messages.py +85 -0
  1676. hypergram/raw/functions/messages/get_sticker_set.py +82 -0
  1677. hypergram/raw/functions/messages/get_stickers.py +82 -0
  1678. hypergram/raw/functions/messages/get_suggested_dialog_filters.py +69 -0
  1679. hypergram/raw/functions/messages/get_top_reactions.py +82 -0
  1680. hypergram/raw/functions/messages/get_unread_mentions.py +125 -0
  1681. hypergram/raw/functions/messages/get_unread_poll_votes.py +125 -0
  1682. hypergram/raw/functions/messages/get_unread_reactions.py +135 -0
  1683. hypergram/raw/functions/messages/get_web_page.py +82 -0
  1684. hypergram/raw/functions/messages/get_web_page_preview.py +86 -0
  1685. hypergram/raw/functions/messages/hide_all_chat_join_requests.py +91 -0
  1686. hypergram/raw/functions/messages/hide_chat_join_request.py +90 -0
  1687. hypergram/raw/functions/messages/hide_peer_settings_bar.py +74 -0
  1688. hypergram/raw/functions/messages/import_chat_invite.py +74 -0
  1689. hypergram/raw/functions/messages/init_history_import.py +90 -0
  1690. hypergram/raw/functions/messages/install_sticker_set.py +82 -0
  1691. hypergram/raw/functions/messages/mark_dialog_unread.py +92 -0
  1692. hypergram/raw/functions/messages/migrate_chat.py +74 -0
  1693. hypergram/raw/functions/messages/prolong_web_view.py +118 -0
  1694. hypergram/raw/functions/messages/rate_transcribed_audio.py +98 -0
  1695. hypergram/raw/functions/messages/read_discussion.py +90 -0
  1696. hypergram/raw/functions/messages/read_encrypted_history.py +82 -0
  1697. hypergram/raw/functions/messages/read_featured_stickers.py +74 -0
  1698. hypergram/raw/functions/messages/read_history.py +82 -0
  1699. hypergram/raw/functions/messages/read_mentions.py +85 -0
  1700. hypergram/raw/functions/messages/read_message_contents.py +74 -0
  1701. hypergram/raw/functions/messages/read_poll_votes.py +85 -0
  1702. hypergram/raw/functions/messages/read_reactions.py +95 -0
  1703. hypergram/raw/functions/messages/read_saved_history.py +90 -0
  1704. hypergram/raw/functions/messages/received_messages.py +74 -0
  1705. hypergram/raw/functions/messages/received_queue.py +74 -0
  1706. hypergram/raw/functions/messages/reorder_pinned_dialogs.py +90 -0
  1707. hypergram/raw/functions/messages/reorder_pinned_forum_topics.py +90 -0
  1708. hypergram/raw/functions/messages/reorder_pinned_saved_dialogs.py +82 -0
  1709. hypergram/raw/functions/messages/reorder_quick_replies.py +74 -0
  1710. hypergram/raw/functions/messages/reorder_sticker_sets.py +88 -0
  1711. hypergram/raw/functions/messages/report.py +98 -0
  1712. hypergram/raw/functions/messages/report_encrypted_spam.py +74 -0
  1713. hypergram/raw/functions/messages/report_messages_delivery.py +90 -0
  1714. hypergram/raw/functions/messages/report_music_listen.py +82 -0
  1715. hypergram/raw/functions/messages/report_reaction.py +90 -0
  1716. hypergram/raw/functions/messages/report_read_metrics.py +82 -0
  1717. hypergram/raw/functions/messages/report_spam.py +74 -0
  1718. hypergram/raw/functions/messages/report_sponsored_message.py +82 -0
  1719. hypergram/raw/functions/messages/request_app_web_view.py +129 -0
  1720. hypergram/raw/functions/messages/request_encryption.py +90 -0
  1721. hypergram/raw/functions/messages/request_main_web_view.py +123 -0
  1722. hypergram/raw/functions/messages/request_simple_web_view.py +136 -0
  1723. hypergram/raw/functions/messages/request_url_auth.py +114 -0
  1724. hypergram/raw/functions/messages/request_web_view.py +164 -0
  1725. hypergram/raw/functions/messages/save_default_send_as.py +82 -0
  1726. hypergram/raw/functions/messages/save_draft.py +145 -0
  1727. hypergram/raw/functions/messages/save_gif.py +82 -0
  1728. hypergram/raw/functions/messages/save_prepared_inline_message.py +94 -0
  1729. hypergram/raw/functions/messages/save_recent_sticker.py +90 -0
  1730. hypergram/raw/functions/messages/search.py +195 -0
  1731. hypergram/raw/functions/messages/search_custom_emoji.py +82 -0
  1732. hypergram/raw/functions/messages/search_emoji_sticker_sets.py +90 -0
  1733. hypergram/raw/functions/messages/search_global.py +159 -0
  1734. hypergram/raw/functions/messages/search_sent_media.py +90 -0
  1735. hypergram/raw/functions/messages/search_sticker_sets.py +90 -0
  1736. hypergram/raw/functions/messages/search_stickers.py +122 -0
  1737. hypergram/raw/functions/messages/send_bot_requested_peer.py +110 -0
  1738. hypergram/raw/functions/messages/send_encrypted.py +98 -0
  1739. hypergram/raw/functions/messages/send_encrypted_file.py +106 -0
  1740. hypergram/raw/functions/messages/send_encrypted_service.py +90 -0
  1741. hypergram/raw/functions/messages/send_inline_bot_result.py +172 -0
  1742. hypergram/raw/functions/messages/send_media.py +238 -0
  1743. hypergram/raw/functions/messages/send_message.py +236 -0
  1744. hypergram/raw/functions/messages/send_multi_media.py +183 -0
  1745. hypergram/raw/functions/messages/send_paid_reaction.py +110 -0
  1746. hypergram/raw/functions/messages/send_quick_reply_messages.py +98 -0
  1747. hypergram/raw/functions/messages/send_reaction.py +106 -0
  1748. hypergram/raw/functions/messages/send_scheduled_messages.py +82 -0
  1749. hypergram/raw/functions/messages/send_screenshot_notification.py +90 -0
  1750. hypergram/raw/functions/messages/send_vote.py +90 -0
  1751. hypergram/raw/functions/messages/send_web_view_data.py +98 -0
  1752. hypergram/raw/functions/messages/send_web_view_result_message.py +82 -0
  1753. hypergram/raw/functions/messages/set_bot_callback_answer.py +108 -0
  1754. hypergram/raw/functions/messages/set_bot_guest_chat_result.py +82 -0
  1755. hypergram/raw/functions/messages/set_bot_precheckout_results.py +91 -0
  1756. hypergram/raw/functions/messages/set_bot_shipping_results.py +95 -0
  1757. hypergram/raw/functions/messages/set_chat_available_reactions.py +102 -0
  1758. hypergram/raw/functions/messages/set_chat_theme.py +82 -0
  1759. hypergram/raw/functions/messages/set_chat_wall_paper.py +117 -0
  1760. hypergram/raw/functions/messages/set_default_history_ttl.py +74 -0
  1761. hypergram/raw/functions/messages/set_default_reaction.py +74 -0
  1762. hypergram/raw/functions/messages/set_encrypted_typing.py +82 -0
  1763. hypergram/raw/functions/messages/set_game_score.py +112 -0
  1764. hypergram/raw/functions/messages/set_history_ttl.py +82 -0
  1765. hypergram/raw/functions/messages/set_inline_bot_results.py +133 -0
  1766. hypergram/raw/functions/messages/set_inline_game_score.py +104 -0
  1767. hypergram/raw/functions/messages/set_typing.py +93 -0
  1768. hypergram/raw/functions/messages/start_bot.py +98 -0
  1769. hypergram/raw/functions/messages/start_history_import.py +82 -0
  1770. hypergram/raw/functions/messages/summarize_text.py +102 -0
  1771. hypergram/raw/functions/messages/toggle_bot_in_attach_menu.py +90 -0
  1772. hypergram/raw/functions/messages/toggle_dialog_filter_tags.py +74 -0
  1773. hypergram/raw/functions/messages/toggle_dialog_pin.py +82 -0
  1774. hypergram/raw/functions/messages/toggle_no_forwards.py +93 -0
  1775. hypergram/raw/functions/messages/toggle_paid_reaction_privacy.py +90 -0
  1776. hypergram/raw/functions/messages/toggle_peer_translations.py +82 -0
  1777. hypergram/raw/functions/messages/toggle_saved_dialog_pin.py +82 -0
  1778. hypergram/raw/functions/messages/toggle_sticker_sets.py +94 -0
  1779. hypergram/raw/functions/messages/toggle_suggested_post_approval.py +108 -0
  1780. hypergram/raw/functions/messages/toggle_todo_completed.py +98 -0
  1781. hypergram/raw/functions/messages/transcribe_audio.py +82 -0
  1782. hypergram/raw/functions/messages/translate_text.py +115 -0
  1783. hypergram/raw/functions/messages/uninstall_sticker_set.py +74 -0
  1784. hypergram/raw/functions/messages/unpin_all_messages.py +95 -0
  1785. hypergram/raw/functions/messages/update_dialog_filter.py +86 -0
  1786. hypergram/raw/functions/messages/update_dialog_filters_order.py +74 -0
  1787. hypergram/raw/functions/messages/update_pinned_forum_topic.py +90 -0
  1788. hypergram/raw/functions/messages/update_pinned_message.py +102 -0
  1789. hypergram/raw/functions/messages/update_saved_reaction_tag.py +85 -0
  1790. hypergram/raw/functions/messages/upload_encrypted_file.py +82 -0
  1791. hypergram/raw/functions/messages/upload_imported_media.py +98 -0
  1792. hypergram/raw/functions/messages/upload_media.py +93 -0
  1793. hypergram/raw/functions/messages/view_sponsored_message.py +74 -0
  1794. hypergram/raw/functions/payments/__init__.py +89 -0
  1795. hypergram/raw/functions/payments/apply_gift_code.py +74 -0
  1796. hypergram/raw/functions/payments/assign_app_store_transaction.py +82 -0
  1797. hypergram/raw/functions/payments/assign_play_market_transaction.py +82 -0
  1798. hypergram/raw/functions/payments/bot_cancel_stars_subscription.py +90 -0
  1799. hypergram/raw/functions/payments/can_purchase_store.py +74 -0
  1800. hypergram/raw/functions/payments/change_stars_subscription.py +93 -0
  1801. hypergram/raw/functions/payments/check_can_send_gift.py +74 -0
  1802. hypergram/raw/functions/payments/check_gift_code.py +74 -0
  1803. hypergram/raw/functions/payments/clear_saved_info.py +80 -0
  1804. hypergram/raw/functions/payments/connect_star_ref_bot.py +82 -0
  1805. hypergram/raw/functions/payments/convert_star_gift.py +74 -0
  1806. hypergram/raw/functions/payments/craft_star_gift.py +74 -0
  1807. hypergram/raw/functions/payments/create_star_gift_collection.py +90 -0
  1808. hypergram/raw/functions/payments/delete_star_gift_collection.py +82 -0
  1809. hypergram/raw/functions/payments/edit_connected_star_ref_bot.py +90 -0
  1810. hypergram/raw/functions/payments/export_invoice.py +74 -0
  1811. hypergram/raw/functions/payments/fulfill_stars_subscription.py +82 -0
  1812. hypergram/raw/functions/payments/get_bank_card_data.py +74 -0
  1813. hypergram/raw/functions/payments/get_connected_star_ref_bot.py +82 -0
  1814. hypergram/raw/functions/payments/get_connected_star_ref_bots.py +102 -0
  1815. hypergram/raw/functions/payments/get_craft_star_gifts.py +90 -0
  1816. hypergram/raw/functions/payments/get_giveaway_info.py +82 -0
  1817. hypergram/raw/functions/payments/get_payment_form.py +86 -0
  1818. hypergram/raw/functions/payments/get_payment_receipt.py +82 -0
  1819. hypergram/raw/functions/payments/get_premium_gift_code_options.py +78 -0
  1820. hypergram/raw/functions/payments/get_resale_star_gifts.py +135 -0
  1821. hypergram/raw/functions/payments/get_saved_info.py +69 -0
  1822. hypergram/raw/functions/payments/get_saved_star_gift.py +74 -0
  1823. hypergram/raw/functions/payments/get_saved_star_gifts.py +155 -0
  1824. hypergram/raw/functions/payments/get_star_gift_active_auctions.py +74 -0
  1825. hypergram/raw/functions/payments/get_star_gift_auction_acquired_gifts.py +74 -0
  1826. hypergram/raw/functions/payments/get_star_gift_auction_state.py +82 -0
  1827. hypergram/raw/functions/payments/get_star_gift_collections.py +82 -0
  1828. hypergram/raw/functions/payments/get_star_gift_upgrade_attributes.py +74 -0
  1829. hypergram/raw/functions/payments/get_star_gift_upgrade_preview.py +74 -0
  1830. hypergram/raw/functions/payments/get_star_gift_withdrawal_url.py +82 -0
  1831. hypergram/raw/functions/payments/get_star_gifts.py +74 -0
  1832. hypergram/raw/functions/payments/get_stars_gift_options.py +78 -0
  1833. hypergram/raw/functions/payments/get_stars_giveaway_options.py +69 -0
  1834. hypergram/raw/functions/payments/get_stars_revenue_ads_account_url.py +74 -0
  1835. hypergram/raw/functions/payments/get_stars_revenue_stats.py +88 -0
  1836. hypergram/raw/functions/payments/get_stars_revenue_withdrawal_url.py +99 -0
  1837. hypergram/raw/functions/payments/get_stars_status.py +82 -0
  1838. hypergram/raw/functions/payments/get_stars_subscriptions.py +90 -0
  1839. hypergram/raw/functions/payments/get_stars_topup_options.py +69 -0
  1840. hypergram/raw/functions/payments/get_stars_transactions.py +125 -0
  1841. hypergram/raw/functions/payments/get_stars_transactions_by_id.py +90 -0
  1842. hypergram/raw/functions/payments/get_suggested_star_ref_bots.py +104 -0
  1843. hypergram/raw/functions/payments/get_unique_star_gift.py +74 -0
  1844. hypergram/raw/functions/payments/get_unique_star_gift_value_info.py +74 -0
  1845. hypergram/raw/functions/payments/launch_prepaid_giveaway.py +90 -0
  1846. hypergram/raw/functions/payments/refund_stars_charge.py +82 -0
  1847. hypergram/raw/functions/payments/reorder_star_gift_collections.py +82 -0
  1848. hypergram/raw/functions/payments/resolve_star_gift_offer.py +82 -0
  1849. hypergram/raw/functions/payments/save_star_gift.py +82 -0
  1850. hypergram/raw/functions/payments/send_payment_form.py +119 -0
  1851. hypergram/raw/functions/payments/send_star_gift_offer.py +117 -0
  1852. hypergram/raw/functions/payments/send_stars_form.py +82 -0
  1853. hypergram/raw/functions/payments/toggle_chat_star_gift_notifications.py +82 -0
  1854. hypergram/raw/functions/payments/toggle_star_gifts_pinned_to_top.py +82 -0
  1855. hypergram/raw/functions/payments/transfer_star_gift.py +82 -0
  1856. hypergram/raw/functions/payments/update_star_gift_collection.py +123 -0
  1857. hypergram/raw/functions/payments/update_star_gift_price.py +82 -0
  1858. hypergram/raw/functions/payments/upgrade_star_gift.py +82 -0
  1859. hypergram/raw/functions/payments/validate_requested_info.py +90 -0
  1860. hypergram/raw/functions/phone/__init__.py +67 -0
  1861. hypergram/raw/functions/phone/accept_call.py +90 -0
  1862. hypergram/raw/functions/phone/check_group_call.py +82 -0
  1863. hypergram/raw/functions/phone/confirm_call.py +98 -0
  1864. hypergram/raw/functions/phone/create_conference_call.py +122 -0
  1865. hypergram/raw/functions/phone/create_group_call.py +108 -0
  1866. hypergram/raw/functions/phone/decline_conference_call_invite.py +74 -0
  1867. hypergram/raw/functions/phone/delete_conference_call_participants.py +104 -0
  1868. hypergram/raw/functions/phone/delete_group_call_messages.py +90 -0
  1869. hypergram/raw/functions/phone/delete_group_call_participant_messages.py +90 -0
  1870. hypergram/raw/functions/phone/discard_call.py +106 -0
  1871. hypergram/raw/functions/phone/discard_group_call.py +74 -0
  1872. hypergram/raw/functions/phone/edit_group_call_participant.py +138 -0
  1873. hypergram/raw/functions/phone/edit_group_call_title.py +82 -0
  1874. hypergram/raw/functions/phone/export_group_call_invite.py +82 -0
  1875. hypergram/raw/functions/phone/get_call_config.py +69 -0
  1876. hypergram/raw/functions/phone/get_group_call.py +82 -0
  1877. hypergram/raw/functions/phone/get_group_call_chain_blocks.py +98 -0
  1878. hypergram/raw/functions/phone/get_group_call_join_as.py +74 -0
  1879. hypergram/raw/functions/phone/get_group_call_stars.py +74 -0
  1880. hypergram/raw/functions/phone/get_group_call_stream_channels.py +74 -0
  1881. hypergram/raw/functions/phone/get_group_call_stream_rtmp_url.py +90 -0
  1882. hypergram/raw/functions/phone/get_group_participants.py +106 -0
  1883. hypergram/raw/functions/phone/invite_conference_call_participant.py +90 -0
  1884. hypergram/raw/functions/phone/invite_to_group_call.py +82 -0
  1885. hypergram/raw/functions/phone/join_group_call.py +131 -0
  1886. hypergram/raw/functions/phone/join_group_call_presentation.py +82 -0
  1887. hypergram/raw/functions/phone/leave_group_call.py +82 -0
  1888. hypergram/raw/functions/phone/leave_group_call_presentation.py +74 -0
  1889. hypergram/raw/functions/phone/received_call.py +74 -0
  1890. hypergram/raw/functions/phone/request_call.py +106 -0
  1891. hypergram/raw/functions/phone/save_call_debug.py +82 -0
  1892. hypergram/raw/functions/phone/save_call_log.py +82 -0
  1893. hypergram/raw/functions/phone/save_default_group_call_join_as.py +82 -0
  1894. hypergram/raw/functions/phone/save_default_send_as.py +82 -0
  1895. hypergram/raw/functions/phone/send_conference_call_broadcast.py +82 -0
  1896. hypergram/raw/functions/phone/send_group_call_encrypted_message.py +82 -0
  1897. hypergram/raw/functions/phone/send_group_call_message.py +111 -0
  1898. hypergram/raw/functions/phone/send_signaling_data.py +82 -0
  1899. hypergram/raw/functions/phone/set_call_rating.py +98 -0
  1900. hypergram/raw/functions/phone/start_scheduled_group_call.py +74 -0
  1901. hypergram/raw/functions/phone/toggle_group_call_record.py +106 -0
  1902. hypergram/raw/functions/phone/toggle_group_call_settings.py +109 -0
  1903. hypergram/raw/functions/phone/toggle_group_call_start_subscription.py +82 -0
  1904. hypergram/raw/functions/photos/__init__.py +29 -0
  1905. hypergram/raw/functions/photos/delete_photos.py +74 -0
  1906. hypergram/raw/functions/photos/get_user_photos.py +98 -0
  1907. hypergram/raw/functions/photos/update_profile_photo.py +92 -0
  1908. hypergram/raw/functions/photos/upload_contact_profile_photo.py +127 -0
  1909. hypergram/raw/functions/photos/upload_profile_photo.py +123 -0
  1910. hypergram/raw/functions/ping.py +74 -0
  1911. hypergram/raw/functions/ping_delay_disconnect.py +82 -0
  1912. hypergram/raw/functions/premium/__init__.py +29 -0
  1913. hypergram/raw/functions/premium/apply_boost.py +86 -0
  1914. hypergram/raw/functions/premium/get_boosts_list.py +98 -0
  1915. hypergram/raw/functions/premium/get_boosts_status.py +74 -0
  1916. hypergram/raw/functions/premium/get_my_boosts.py +69 -0
  1917. hypergram/raw/functions/premium/get_user_boosts.py +82 -0
  1918. hypergram/raw/functions/req_dh_params.py +114 -0
  1919. hypergram/raw/functions/req_pq.py +74 -0
  1920. hypergram/raw/functions/req_pq_multi.py +74 -0
  1921. hypergram/raw/functions/rpc_drop_answer.py +74 -0
  1922. hypergram/raw/functions/set_client_dh_params.py +90 -0
  1923. hypergram/raw/functions/smsjobs/__init__.py +31 -0
  1924. hypergram/raw/functions/smsjobs/finish_job.py +85 -0
  1925. hypergram/raw/functions/smsjobs/get_sms_job.py +74 -0
  1926. hypergram/raw/functions/smsjobs/get_status.py +69 -0
  1927. hypergram/raw/functions/smsjobs/is_eligible_to_join.py +69 -0
  1928. hypergram/raw/functions/smsjobs/join.py +69 -0
  1929. hypergram/raw/functions/smsjobs/leave.py +69 -0
  1930. hypergram/raw/functions/smsjobs/update_settings.py +74 -0
  1931. hypergram/raw/functions/stats/__init__.py +32 -0
  1932. hypergram/raw/functions/stats/get_broadcast_stats.py +82 -0
  1933. hypergram/raw/functions/stats/get_megagroup_stats.py +82 -0
  1934. hypergram/raw/functions/stats/get_message_public_forwards.py +98 -0
  1935. hypergram/raw/functions/stats/get_message_stats.py +90 -0
  1936. hypergram/raw/functions/stats/get_poll_stats.py +90 -0
  1937. hypergram/raw/functions/stats/get_story_public_forwards.py +98 -0
  1938. hypergram/raw/functions/stats/get_story_stats.py +90 -0
  1939. hypergram/raw/functions/stats/load_async_graph.py +85 -0
  1940. hypergram/raw/functions/stickers/__init__.py +35 -0
  1941. hypergram/raw/functions/stickers/add_sticker_to_set.py +82 -0
  1942. hypergram/raw/functions/stickers/change_sticker.py +104 -0
  1943. hypergram/raw/functions/stickers/change_sticker_position.py +82 -0
  1944. hypergram/raw/functions/stickers/check_short_name.py +74 -0
  1945. hypergram/raw/functions/stickers/create_sticker_set.py +137 -0
  1946. hypergram/raw/functions/stickers/delete_sticker_set.py +74 -0
  1947. hypergram/raw/functions/stickers/remove_sticker_from_set.py +74 -0
  1948. hypergram/raw/functions/stickers/rename_sticker_set.py +82 -0
  1949. hypergram/raw/functions/stickers/replace_sticker.py +82 -0
  1950. hypergram/raw/functions/stickers/set_sticker_set_thumb.py +95 -0
  1951. hypergram/raw/functions/stickers/suggest_short_name.py +74 -0
  1952. hypergram/raw/functions/stories/__init__.py +57 -0
  1953. hypergram/raw/functions/stories/activate_stealth_mode.py +80 -0
  1954. hypergram/raw/functions/stories/can_send_story.py +74 -0
  1955. hypergram/raw/functions/stories/create_album.py +90 -0
  1956. hypergram/raw/functions/stories/delete_album.py +82 -0
  1957. hypergram/raw/functions/stories/delete_stories.py +82 -0
  1958. hypergram/raw/functions/stories/edit_story.py +143 -0
  1959. hypergram/raw/functions/stories/export_story_link.py +82 -0
  1960. hypergram/raw/functions/stories/get_album_stories.py +98 -0
  1961. hypergram/raw/functions/stories/get_albums.py +82 -0
  1962. hypergram/raw/functions/stories/get_all_read_peer_stories.py +69 -0
  1963. hypergram/raw/functions/stories/get_all_stories.py +89 -0
  1964. hypergram/raw/functions/stories/get_chats_to_send.py +69 -0
  1965. hypergram/raw/functions/stories/get_peer_max_i_ds.py +74 -0
  1966. hypergram/raw/functions/stories/get_peer_stories.py +74 -0
  1967. hypergram/raw/functions/stories/get_pinned_stories.py +90 -0
  1968. hypergram/raw/functions/stories/get_stories_archive.py +90 -0
  1969. hypergram/raw/functions/stories/get_stories_by_id.py +82 -0
  1970. hypergram/raw/functions/stories/get_stories_views.py +82 -0
  1971. hypergram/raw/functions/stories/get_story_reactions_list.py +117 -0
  1972. hypergram/raw/functions/stories/get_story_views_list.py +127 -0
  1973. hypergram/raw/functions/stories/increment_story_views.py +82 -0
  1974. hypergram/raw/functions/stories/read_stories.py +82 -0
  1975. hypergram/raw/functions/stories/reorder_albums.py +82 -0
  1976. hypergram/raw/functions/stories/report.py +98 -0
  1977. hypergram/raw/functions/stories/search_posts.py +113 -0
  1978. hypergram/raw/functions/stories/send_reaction.py +98 -0
  1979. hypergram/raw/functions/stories/send_story.py +195 -0
  1980. hypergram/raw/functions/stories/start_live.py +147 -0
  1981. hypergram/raw/functions/stories/toggle_all_stories_hidden.py +74 -0
  1982. hypergram/raw/functions/stories/toggle_peer_stories_hidden.py +82 -0
  1983. hypergram/raw/functions/stories/toggle_pinned.py +90 -0
  1984. hypergram/raw/functions/stories/toggle_pinned_to_top.py +82 -0
  1985. hypergram/raw/functions/stories/update_album.py +123 -0
  1986. hypergram/raw/functions/updates/__init__.py +27 -0
  1987. hypergram/raw/functions/updates/get_channel_difference.py +106 -0
  1988. hypergram/raw/functions/updates/get_difference.py +119 -0
  1989. hypergram/raw/functions/updates/get_state.py +69 -0
  1990. hypergram/raw/functions/upload/__init__.py +32 -0
  1991. hypergram/raw/functions/upload/get_cdn_file.py +90 -0
  1992. hypergram/raw/functions/upload/get_cdn_file_hashes.py +82 -0
  1993. hypergram/raw/functions/upload/get_file.py +104 -0
  1994. hypergram/raw/functions/upload/get_file_hashes.py +82 -0
  1995. hypergram/raw/functions/upload/get_web_file.py +90 -0
  1996. hypergram/raw/functions/upload/reupload_cdn_file.py +82 -0
  1997. hypergram/raw/functions/upload/save_big_file_part.py +98 -0
  1998. hypergram/raw/functions/upload/save_file_part.py +90 -0
  1999. hypergram/raw/functions/users/__init__.py +31 -0
  2000. hypergram/raw/functions/users/get_full_user.py +74 -0
  2001. hypergram/raw/functions/users/get_requirements_to_contact.py +74 -0
  2002. hypergram/raw/functions/users/get_saved_music.py +98 -0
  2003. hypergram/raw/functions/users/get_saved_music_by_id.py +82 -0
  2004. hypergram/raw/functions/users/get_users.py +74 -0
  2005. hypergram/raw/functions/users/set_secure_value_errors.py +82 -0
  2006. hypergram/raw/functions/users/suggest_birthday.py +82 -0
  2007. hypergram/raw/types/__init__.py +1309 -0
  2008. hypergram/raw/types/access_point_rule.py +90 -0
  2009. hypergram/raw/types/account/__init__.py +62 -0
  2010. hypergram/raw/types/account/authorization_form.py +118 -0
  2011. hypergram/raw/types/account/authorizations.py +91 -0
  2012. hypergram/raw/types/account/auto_download_settings.py +99 -0
  2013. hypergram/raw/types/account/auto_save_settings.py +123 -0
  2014. hypergram/raw/types/account/business_chat_links.py +99 -0
  2015. hypergram/raw/types/account/chat_themes.py +118 -0
  2016. hypergram/raw/types/account/chat_themes_not_modified.py +78 -0
  2017. hypergram/raw/types/account/connected_bots.py +91 -0
  2018. hypergram/raw/types/account/content_settings.py +89 -0
  2019. hypergram/raw/types/account/email_verified.py +83 -0
  2020. hypergram/raw/types/account/email_verified_login.py +91 -0
  2021. hypergram/raw/types/account/emoji_statuses.py +94 -0
  2022. hypergram/raw/types/account/emoji_statuses_not_modified.py +81 -0
  2023. hypergram/raw/types/account/paid_messages_revenue.py +83 -0
  2024. hypergram/raw/types/account/passkey_registration_options.py +83 -0
  2025. hypergram/raw/types/account/passkeys.py +83 -0
  2026. hypergram/raw/types/account/password.py +183 -0
  2027. hypergram/raw/types/account/password_input_settings.py +115 -0
  2028. hypergram/raw/types/account/password_settings.py +96 -0
  2029. hypergram/raw/types/account/privacy_rules.py +100 -0
  2030. hypergram/raw/types/account/reset_password_failed_wait.py +83 -0
  2031. hypergram/raw/types/account/reset_password_ok.py +78 -0
  2032. hypergram/raw/types/account/reset_password_requested_wait.py +83 -0
  2033. hypergram/raw/types/account/resolved_business_chat_links.py +119 -0
  2034. hypergram/raw/types/account/saved_music_ids.py +83 -0
  2035. hypergram/raw/types/account/saved_music_ids_not_modified.py +78 -0
  2036. hypergram/raw/types/account/saved_ringtone.py +78 -0
  2037. hypergram/raw/types/account/saved_ringtone_converted.py +83 -0
  2038. hypergram/raw/types/account/saved_ringtones.py +91 -0
  2039. hypergram/raw/types/account/saved_ringtones_not_modified.py +78 -0
  2040. hypergram/raw/types/account/sent_email_code.py +91 -0
  2041. hypergram/raw/types/account/takeout.py +83 -0
  2042. hypergram/raw/types/account/themes.py +92 -0
  2043. hypergram/raw/types/account/themes_not_modified.py +79 -0
  2044. hypergram/raw/types/account/tmp_password.py +91 -0
  2045. hypergram/raw/types/account/wall_papers.py +91 -0
  2046. hypergram/raw/types/account/wall_papers_not_modified.py +78 -0
  2047. hypergram/raw/types/account/web_authorizations.py +91 -0
  2048. hypergram/raw/types/account_days_ttl.py +83 -0
  2049. hypergram/raw/types/ai_compose_tone.py +162 -0
  2050. hypergram/raw/types/ai_compose_tone_default.py +100 -0
  2051. hypergram/raw/types/ai_compose_tone_example.py +91 -0
  2052. hypergram/raw/types/aicompose/__init__.py +26 -0
  2053. hypergram/raw/types/aicompose/tones.py +100 -0
  2054. hypergram/raw/types/aicompose/tones_not_modified.py +79 -0
  2055. hypergram/raw/types/attach_menu_bot.py +138 -0
  2056. hypergram/raw/types/attach_menu_bot_icon.py +94 -0
  2057. hypergram/raw/types/attach_menu_bot_icon_color.py +82 -0
  2058. hypergram/raw/types/attach_menu_bots.py +99 -0
  2059. hypergram/raw/types/attach_menu_bots_bot.py +91 -0
  2060. hypergram/raw/types/attach_menu_bots_not_modified.py +78 -0
  2061. hypergram/raw/types/attach_menu_peer_type_bot_pm.py +69 -0
  2062. hypergram/raw/types/attach_menu_peer_type_broadcast.py +69 -0
  2063. hypergram/raw/types/attach_menu_peer_type_chat.py +69 -0
  2064. hypergram/raw/types/attach_menu_peer_type_pm.py +69 -0
  2065. hypergram/raw/types/attach_menu_peer_type_same_bot_pm.py +69 -0
  2066. hypergram/raw/types/auction_bid_level.py +90 -0
  2067. hypergram/raw/types/auth/__init__.py +52 -0
  2068. hypergram/raw/types/auth/authorization.py +125 -0
  2069. hypergram/raw/types/auth/authorization_sign_up_required.py +94 -0
  2070. hypergram/raw/types/auth/code_type_call.py +69 -0
  2071. hypergram/raw/types/auth/code_type_flash_call.py +69 -0
  2072. hypergram/raw/types/auth/code_type_fragment_sms.py +69 -0
  2073. hypergram/raw/types/auth/code_type_missed_call.py +69 -0
  2074. hypergram/raw/types/auth/code_type_sms.py +69 -0
  2075. hypergram/raw/types/auth/exported_authorization.py +91 -0
  2076. hypergram/raw/types/auth/logged_out.py +86 -0
  2077. hypergram/raw/types/auth/login_token.py +92 -0
  2078. hypergram/raw/types/auth/login_token_migrate_to.py +92 -0
  2079. hypergram/raw/types/auth/login_token_success.py +84 -0
  2080. hypergram/raw/types/auth/passkey_login_options.py +83 -0
  2081. hypergram/raw/types/auth/password_recovery.py +83 -0
  2082. hypergram/raw/types/auth/sent_code.py +118 -0
  2083. hypergram/raw/types/auth/sent_code_payment_required.py +137 -0
  2084. hypergram/raw/types/auth/sent_code_success.py +89 -0
  2085. hypergram/raw/types/auth/sent_code_type_app.py +74 -0
  2086. hypergram/raw/types/auth/sent_code_type_call.py +74 -0
  2087. hypergram/raw/types/auth/sent_code_type_email_code.py +114 -0
  2088. hypergram/raw/types/auth/sent_code_type_firebase_sms.py +121 -0
  2089. hypergram/raw/types/auth/sent_code_type_flash_call.py +74 -0
  2090. hypergram/raw/types/auth/sent_code_type_fragment_sms.py +82 -0
  2091. hypergram/raw/types/auth/sent_code_type_missed_call.py +82 -0
  2092. hypergram/raw/types/auth/sent_code_type_set_up_email_required.py +80 -0
  2093. hypergram/raw/types/auth/sent_code_type_sms.py +74 -0
  2094. hypergram/raw/types/auth/sent_code_type_sms_phrase.py +77 -0
  2095. hypergram/raw/types/auth/sent_code_type_sms_word.py +77 -0
  2096. hypergram/raw/types/authorization.py +209 -0
  2097. hypergram/raw/types/auto_download_settings.py +146 -0
  2098. hypergram/raw/types/auto_save_exception.py +82 -0
  2099. hypergram/raw/types/auto_save_settings.py +89 -0
  2100. hypergram/raw/types/available_effect.py +116 -0
  2101. hypergram/raw/types/available_reaction.py +156 -0
  2102. hypergram/raw/types/bad_msg_notification.py +90 -0
  2103. hypergram/raw/types/bad_server_salt.py +98 -0
  2104. hypergram/raw/types/bank_card_open_url.py +82 -0
  2105. hypergram/raw/types/base_theme_arctic.py +69 -0
  2106. hypergram/raw/types/base_theme_classic.py +69 -0
  2107. hypergram/raw/types/base_theme_day.py +69 -0
  2108. hypergram/raw/types/base_theme_night.py +69 -0
  2109. hypergram/raw/types/base_theme_tinted.py +69 -0
  2110. hypergram/raw/types/bind_auth_key_inner.py +106 -0
  2111. hypergram/raw/types/birthday.py +93 -0
  2112. hypergram/raw/types/boost.py +155 -0
  2113. hypergram/raw/types/bot_app.py +134 -0
  2114. hypergram/raw/types/bot_app_not_modified.py +69 -0
  2115. hypergram/raw/types/bot_app_settings.py +113 -0
  2116. hypergram/raw/types/bot_business_connection.py +116 -0
  2117. hypergram/raw/types/bot_command.py +91 -0
  2118. hypergram/raw/types/bot_command_scope_chat_admins.py +69 -0
  2119. hypergram/raw/types/bot_command_scope_chats.py +69 -0
  2120. hypergram/raw/types/bot_command_scope_default.py +69 -0
  2121. hypergram/raw/types/bot_command_scope_peer.py +74 -0
  2122. hypergram/raw/types/bot_command_scope_peer_admins.py +74 -0
  2123. hypergram/raw/types/bot_command_scope_peer_user.py +82 -0
  2124. hypergram/raw/types/bot_command_scope_users.py +69 -0
  2125. hypergram/raw/types/bot_info.py +161 -0
  2126. hypergram/raw/types/bot_inline_media_result.py +130 -0
  2127. hypergram/raw/types/bot_inline_message_media_auto.py +102 -0
  2128. hypergram/raw/types/bot_inline_message_media_contact.py +110 -0
  2129. hypergram/raw/types/bot_inline_message_media_geo.py +113 -0
  2130. hypergram/raw/types/bot_inline_message_media_invoice.py +132 -0
  2131. hypergram/raw/types/bot_inline_message_media_venue.py +126 -0
  2132. hypergram/raw/types/bot_inline_message_media_web_page.py +134 -0
  2133. hypergram/raw/types/bot_inline_message_text.py +108 -0
  2134. hypergram/raw/types/bot_inline_result.py +139 -0
  2135. hypergram/raw/types/bot_menu_button.py +91 -0
  2136. hypergram/raw/types/bot_menu_button_commands.py +78 -0
  2137. hypergram/raw/types/bot_menu_button_default.py +78 -0
  2138. hypergram/raw/types/bot_preview_media.py +93 -0
  2139. hypergram/raw/types/bot_verification.py +90 -0
  2140. hypergram/raw/types/bot_verifier_settings.py +99 -0
  2141. hypergram/raw/types/bots/__init__.py +30 -0
  2142. hypergram/raw/types/bots/access_settings.py +93 -0
  2143. hypergram/raw/types/bots/bot_info.py +99 -0
  2144. hypergram/raw/types/bots/exported_bot_token.py +83 -0
  2145. hypergram/raw/types/bots/popular_app_bots.py +94 -0
  2146. hypergram/raw/types/bots/preview_info.py +91 -0
  2147. hypergram/raw/types/bots/requested_button.py +83 -0
  2148. hypergram/raw/types/business_away_message.py +98 -0
  2149. hypergram/raw/types/business_away_message_schedule_always.py +69 -0
  2150. hypergram/raw/types/business_away_message_schedule_custom.py +82 -0
  2151. hypergram/raw/types/business_away_message_schedule_outside_work_hours.py +69 -0
  2152. hypergram/raw/types/business_bot_recipients.py +118 -0
  2153. hypergram/raw/types/business_bot_rights.py +152 -0
  2154. hypergram/raw/types/business_chat_link.py +121 -0
  2155. hypergram/raw/types/business_greeting_message.py +90 -0
  2156. hypergram/raw/types/business_intro.py +94 -0
  2157. hypergram/raw/types/business_location.py +86 -0
  2158. hypergram/raw/types/business_recipients.py +108 -0
  2159. hypergram/raw/types/business_weekly_open.py +82 -0
  2160. hypergram/raw/types/business_work_hours.py +90 -0
  2161. hypergram/raw/types/cdn_config.py +83 -0
  2162. hypergram/raw/types/cdn_public_key.py +82 -0
  2163. hypergram/raw/types/channel.py +434 -0
  2164. hypergram/raw/types/channel_admin_log_event.py +98 -0
  2165. hypergram/raw/types/channel_admin_log_event_action_change_about.py +82 -0
  2166. hypergram/raw/types/channel_admin_log_event_action_change_available_reactions.py +82 -0
  2167. hypergram/raw/types/channel_admin_log_event_action_change_emoji_status.py +82 -0
  2168. hypergram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py +82 -0
  2169. hypergram/raw/types/channel_admin_log_event_action_change_history_ttl.py +82 -0
  2170. hypergram/raw/types/channel_admin_log_event_action_change_linked_chat.py +82 -0
  2171. hypergram/raw/types/channel_admin_log_event_action_change_location.py +82 -0
  2172. hypergram/raw/types/channel_admin_log_event_action_change_peer_color.py +82 -0
  2173. hypergram/raw/types/channel_admin_log_event_action_change_photo.py +82 -0
  2174. hypergram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py +82 -0
  2175. hypergram/raw/types/channel_admin_log_event_action_change_sticker_set.py +82 -0
  2176. hypergram/raw/types/channel_admin_log_event_action_change_title.py +82 -0
  2177. hypergram/raw/types/channel_admin_log_event_action_change_username.py +82 -0
  2178. hypergram/raw/types/channel_admin_log_event_action_change_usernames.py +82 -0
  2179. hypergram/raw/types/channel_admin_log_event_action_change_wallpaper.py +82 -0
  2180. hypergram/raw/types/channel_admin_log_event_action_create_topic.py +74 -0
  2181. hypergram/raw/types/channel_admin_log_event_action_default_banned_rights.py +82 -0
  2182. hypergram/raw/types/channel_admin_log_event_action_delete_message.py +74 -0
  2183. hypergram/raw/types/channel_admin_log_event_action_delete_topic.py +74 -0
  2184. hypergram/raw/types/channel_admin_log_event_action_discard_group_call.py +74 -0
  2185. hypergram/raw/types/channel_admin_log_event_action_edit_message.py +82 -0
  2186. hypergram/raw/types/channel_admin_log_event_action_edit_topic.py +82 -0
  2187. hypergram/raw/types/channel_admin_log_event_action_exported_invite_delete.py +74 -0
  2188. hypergram/raw/types/channel_admin_log_event_action_exported_invite_edit.py +82 -0
  2189. hypergram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py +74 -0
  2190. hypergram/raw/types/channel_admin_log_event_action_participant_edit_rank.py +90 -0
  2191. hypergram/raw/types/channel_admin_log_event_action_participant_invite.py +74 -0
  2192. hypergram/raw/types/channel_admin_log_event_action_participant_join.py +69 -0
  2193. hypergram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py +82 -0
  2194. hypergram/raw/types/channel_admin_log_event_action_participant_join_by_request.py +82 -0
  2195. hypergram/raw/types/channel_admin_log_event_action_participant_leave.py +69 -0
  2196. hypergram/raw/types/channel_admin_log_event_action_participant_mute.py +74 -0
  2197. hypergram/raw/types/channel_admin_log_event_action_participant_sub_extend.py +82 -0
  2198. hypergram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py +82 -0
  2199. hypergram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py +82 -0
  2200. hypergram/raw/types/channel_admin_log_event_action_participant_unmute.py +74 -0
  2201. hypergram/raw/types/channel_admin_log_event_action_participant_volume.py +74 -0
  2202. hypergram/raw/types/channel_admin_log_event_action_pin_topic.py +88 -0
  2203. hypergram/raw/types/channel_admin_log_event_action_send_message.py +74 -0
  2204. hypergram/raw/types/channel_admin_log_event_action_start_group_call.py +74 -0
  2205. hypergram/raw/types/channel_admin_log_event_action_stop_poll.py +74 -0
  2206. hypergram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py +74 -0
  2207. hypergram/raw/types/channel_admin_log_event_action_toggle_autotranslation.py +74 -0
  2208. hypergram/raw/types/channel_admin_log_event_action_toggle_forum.py +74 -0
  2209. hypergram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py +74 -0
  2210. hypergram/raw/types/channel_admin_log_event_action_toggle_invites.py +74 -0
  2211. hypergram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py +74 -0
  2212. hypergram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py +74 -0
  2213. hypergram/raw/types/channel_admin_log_event_action_toggle_signature_profiles.py +74 -0
  2214. hypergram/raw/types/channel_admin_log_event_action_toggle_signatures.py +74 -0
  2215. hypergram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py +82 -0
  2216. hypergram/raw/types/channel_admin_log_event_action_update_pinned.py +74 -0
  2217. hypergram/raw/types/channel_admin_log_events_filter.py +188 -0
  2218. hypergram/raw/types/channel_forbidden.py +119 -0
  2219. hypergram/raw/types/channel_full.py +608 -0
  2220. hypergram/raw/types/channel_location.py +82 -0
  2221. hypergram/raw/types/channel_location_empty.py +69 -0
  2222. hypergram/raw/types/channel_messages_filter.py +82 -0
  2223. hypergram/raw/types/channel_messages_filter_empty.py +69 -0
  2224. hypergram/raw/types/channel_participant.py +102 -0
  2225. hypergram/raw/types/channel_participant_admin.py +130 -0
  2226. hypergram/raw/types/channel_participant_banned.py +115 -0
  2227. hypergram/raw/types/channel_participant_creator.py +93 -0
  2228. hypergram/raw/types/channel_participant_left.py +74 -0
  2229. hypergram/raw/types/channel_participant_self.py +116 -0
  2230. hypergram/raw/types/channel_participants_admins.py +69 -0
  2231. hypergram/raw/types/channel_participants_banned.py +74 -0
  2232. hypergram/raw/types/channel_participants_bots.py +69 -0
  2233. hypergram/raw/types/channel_participants_contacts.py +74 -0
  2234. hypergram/raw/types/channel_participants_kicked.py +74 -0
  2235. hypergram/raw/types/channel_participants_mentions.py +86 -0
  2236. hypergram/raw/types/channel_participants_recent.py +69 -0
  2237. hypergram/raw/types/channel_participants_search.py +74 -0
  2238. hypergram/raw/types/channels/__init__.py +32 -0
  2239. hypergram/raw/types/channels/admin_log_results.py +99 -0
  2240. hypergram/raw/types/channels/channel_participant.py +99 -0
  2241. hypergram/raw/types/channels/channel_participants.py +107 -0
  2242. hypergram/raw/types/channels/channel_participants_not_modified.py +78 -0
  2243. hypergram/raw/types/channels/send_as_peers.py +99 -0
  2244. hypergram/raw/types/channels/sponsored_message_report_result_ads_hidden.py +78 -0
  2245. hypergram/raw/types/channels/sponsored_message_report_result_choose_option.py +91 -0
  2246. hypergram/raw/types/channels/sponsored_message_report_result_reported.py +78 -0
  2247. hypergram/raw/types/chat.py +182 -0
  2248. hypergram/raw/types/chat_admin_rights.py +170 -0
  2249. hypergram/raw/types/chat_admin_with_invites.py +90 -0
  2250. hypergram/raw/types/chat_banned_rights.py +208 -0
  2251. hypergram/raw/types/chat_empty.py +74 -0
  2252. hypergram/raw/types/chat_forbidden.py +82 -0
  2253. hypergram/raw/types/chat_full.py +242 -0
  2254. hypergram/raw/types/chat_invite.py +211 -0
  2255. hypergram/raw/types/chat_invite_already.py +83 -0
  2256. hypergram/raw/types/chat_invite_exported.py +192 -0
  2257. hypergram/raw/types/chat_invite_importer.py +114 -0
  2258. hypergram/raw/types/chat_invite_peek.py +91 -0
  2259. hypergram/raw/types/chat_invite_public_join_requests.py +78 -0
  2260. hypergram/raw/types/chat_onlines.py +83 -0
  2261. hypergram/raw/types/chat_participant.py +101 -0
  2262. hypergram/raw/types/chat_participant_admin.py +101 -0
  2263. hypergram/raw/types/chat_participant_creator.py +85 -0
  2264. hypergram/raw/types/chat_participants.py +90 -0
  2265. hypergram/raw/types/chat_participants_forbidden.py +86 -0
  2266. hypergram/raw/types/chat_photo.py +99 -0
  2267. hypergram/raw/types/chat_photo_empty.py +69 -0
  2268. hypergram/raw/types/chat_reactions_all.py +74 -0
  2269. hypergram/raw/types/chat_reactions_none.py +69 -0
  2270. hypergram/raw/types/chat_reactions_some.py +74 -0
  2271. hypergram/raw/types/chat_theme.py +74 -0
  2272. hypergram/raw/types/chat_theme_unique_gift.py +82 -0
  2273. hypergram/raw/types/chatlists/__init__.py +29 -0
  2274. hypergram/raw/types/chatlists/chatlist_invite.py +124 -0
  2275. hypergram/raw/types/chatlists/chatlist_invite_already.py +115 -0
  2276. hypergram/raw/types/chatlists/chatlist_updates.py +99 -0
  2277. hypergram/raw/types/chatlists/exported_chatlist_invite.py +91 -0
  2278. hypergram/raw/types/chatlists/exported_invites.py +99 -0
  2279. hypergram/raw/types/client_dh_inner_data.py +98 -0
  2280. hypergram/raw/types/code_settings.py +132 -0
  2281. hypergram/raw/types/config.py +455 -0
  2282. hypergram/raw/types/connected_bot.py +93 -0
  2283. hypergram/raw/types/connected_bot_star_ref.py +131 -0
  2284. hypergram/raw/types/contact.py +82 -0
  2285. hypergram/raw/types/contact_birthday.py +82 -0
  2286. hypergram/raw/types/contact_status.py +91 -0
  2287. hypergram/raw/types/contacts/__init__.py +37 -0
  2288. hypergram/raw/types/contacts/blocked.py +99 -0
  2289. hypergram/raw/types/contacts/blocked_slice.py +107 -0
  2290. hypergram/raw/types/contacts/contact_birthdays.py +91 -0
  2291. hypergram/raw/types/contacts/contacts.py +99 -0
  2292. hypergram/raw/types/contacts/contacts_not_modified.py +78 -0
  2293. hypergram/raw/types/contacts/found.py +107 -0
  2294. hypergram/raw/types/contacts/imported_contacts.py +107 -0
  2295. hypergram/raw/types/contacts/resolved_peer.py +100 -0
  2296. hypergram/raw/types/contacts/sponsored_peers.py +99 -0
  2297. hypergram/raw/types/contacts/sponsored_peers_empty.py +78 -0
  2298. hypergram/raw/types/contacts/top_peers.py +99 -0
  2299. hypergram/raw/types/contacts/top_peers_disabled.py +78 -0
  2300. hypergram/raw/types/contacts/top_peers_not_modified.py +78 -0
  2301. hypergram/raw/types/data_json.py +85 -0
  2302. hypergram/raw/types/dc_option.py +137 -0
  2303. hypergram/raw/types/default_history_ttl.py +83 -0
  2304. hypergram/raw/types/destroy_auth_key_fail.py +78 -0
  2305. hypergram/raw/types/destroy_auth_key_none.py +78 -0
  2306. hypergram/raw/types/destroy_auth_key_ok.py +78 -0
  2307. hypergram/raw/types/destroy_session_none.py +83 -0
  2308. hypergram/raw/types/destroy_session_ok.py +83 -0
  2309. hypergram/raw/types/dh_gen_fail.py +99 -0
  2310. hypergram/raw/types/dh_gen_ok.py +99 -0
  2311. hypergram/raw/types/dh_gen_retry.py +99 -0
  2312. hypergram/raw/types/dialog.py +195 -0
  2313. hypergram/raw/types/dialog_filter.py +180 -0
  2314. hypergram/raw/types/dialog_filter_chatlist.py +130 -0
  2315. hypergram/raw/types/dialog_filter_default.py +69 -0
  2316. hypergram/raw/types/dialog_filter_suggested.py +91 -0
  2317. hypergram/raw/types/dialog_folder.py +130 -0
  2318. hypergram/raw/types/dialog_peer.py +83 -0
  2319. hypergram/raw/types/dialog_peer_folder.py +83 -0
  2320. hypergram/raw/types/disallowed_gifts_settings.py +98 -0
  2321. hypergram/raw/types/document.py +164 -0
  2322. hypergram/raw/types/document_attribute_animated.py +69 -0
  2323. hypergram/raw/types/document_attribute_audio.py +109 -0
  2324. hypergram/raw/types/document_attribute_custom_emoji.py +96 -0
  2325. hypergram/raw/types/document_attribute_filename.py +74 -0
  2326. hypergram/raw/types/document_attribute_has_stickers.py +69 -0
  2327. hypergram/raw/types/document_attribute_image_size.py +82 -0
  2328. hypergram/raw/types/document_attribute_sticker.py +100 -0
  2329. hypergram/raw/types/document_attribute_video.py +137 -0
  2330. hypergram/raw/types/document_empty.py +86 -0
  2331. hypergram/raw/types/draft_message.py +145 -0
  2332. hypergram/raw/types/draft_message_empty.py +77 -0
  2333. hypergram/raw/types/email_verification_apple.py +74 -0
  2334. hypergram/raw/types/email_verification_code.py +74 -0
  2335. hypergram/raw/types/email_verification_google.py +74 -0
  2336. hypergram/raw/types/email_verify_purpose_login_change.py +69 -0
  2337. hypergram/raw/types/email_verify_purpose_login_setup.py +82 -0
  2338. hypergram/raw/types/email_verify_purpose_passport.py +69 -0
  2339. hypergram/raw/types/emoji_group.py +90 -0
  2340. hypergram/raw/types/emoji_group_greeting.py +90 -0
  2341. hypergram/raw/types/emoji_group_premium.py +82 -0
  2342. hypergram/raw/types/emoji_keyword.py +82 -0
  2343. hypergram/raw/types/emoji_keyword_deleted.py +82 -0
  2344. hypergram/raw/types/emoji_keywords_difference.py +108 -0
  2345. hypergram/raw/types/emoji_language.py +83 -0
  2346. hypergram/raw/types/emoji_list.py +95 -0
  2347. hypergram/raw/types/emoji_list_not_modified.py +82 -0
  2348. hypergram/raw/types/emoji_status.py +85 -0
  2349. hypergram/raw/types/emoji_status_collectible.py +149 -0
  2350. hypergram/raw/types/emoji_status_empty.py +69 -0
  2351. hypergram/raw/types/emoji_url.py +83 -0
  2352. hypergram/raw/types/encrypted_chat.py +132 -0
  2353. hypergram/raw/types/encrypted_chat_discarded.py +92 -0
  2354. hypergram/raw/types/encrypted_chat_empty.py +84 -0
  2355. hypergram/raw/types/encrypted_chat_requested.py +135 -0
  2356. hypergram/raw/types/encrypted_chat_waiting.py +116 -0
  2357. hypergram/raw/types/encrypted_file.py +115 -0
  2358. hypergram/raw/types/encrypted_file_empty.py +78 -0
  2359. hypergram/raw/types/encrypted_message.py +106 -0
  2360. hypergram/raw/types/encrypted_message_service.py +98 -0
  2361. hypergram/raw/types/exported_chatlist_invite.py +102 -0
  2362. hypergram/raw/types/exported_contact_token.py +91 -0
  2363. hypergram/raw/types/exported_message_link.py +91 -0
  2364. hypergram/raw/types/exported_story_link.py +83 -0
  2365. hypergram/raw/types/fact_check.py +110 -0
  2366. hypergram/raw/types/file_hash.py +101 -0
  2367. hypergram/raw/types/folder.py +112 -0
  2368. hypergram/raw/types/folder_peer.py +82 -0
  2369. hypergram/raw/types/forum_topic.py +235 -0
  2370. hypergram/raw/types/forum_topic_deleted.py +74 -0
  2371. hypergram/raw/types/found_story.py +82 -0
  2372. hypergram/raw/types/fragment/__init__.py +25 -0
  2373. hypergram/raw/types/fragment/collectible_info.py +123 -0
  2374. hypergram/raw/types/game.py +126 -0
  2375. hypergram/raw/types/geo_point.py +101 -0
  2376. hypergram/raw/types/geo_point_address.py +103 -0
  2377. hypergram/raw/types/geo_point_empty.py +69 -0
  2378. hypergram/raw/types/global_privacy_settings.py +133 -0
  2379. hypergram/raw/types/group_call.py +259 -0
  2380. hypergram/raw/types/group_call_discarded.py +90 -0
  2381. hypergram/raw/types/group_call_donor.py +98 -0
  2382. hypergram/raw/types/group_call_message.py +115 -0
  2383. hypergram/raw/types/group_call_participant.py +217 -0
  2384. hypergram/raw/types/group_call_participant_video.py +99 -0
  2385. hypergram/raw/types/group_call_participant_video_source_group.py +82 -0
  2386. hypergram/raw/types/group_call_stream_channel.py +90 -0
  2387. hypergram/raw/types/help/__init__.py +56 -0
  2388. hypergram/raw/types/help/app_config.py +91 -0
  2389. hypergram/raw/types/help/app_config_not_modified.py +78 -0
  2390. hypergram/raw/types/help/app_update.py +144 -0
  2391. hypergram/raw/types/help/config_simple.py +90 -0
  2392. hypergram/raw/types/help/countries_list.py +91 -0
  2393. hypergram/raw/types/help/countries_list_not_modified.py +78 -0
  2394. hypergram/raw/types/help/country.py +107 -0
  2395. hypergram/raw/types/help/country_code.py +96 -0
  2396. hypergram/raw/types/help/deep_link_info.py +101 -0
  2397. hypergram/raw/types/help/deep_link_info_empty.py +78 -0
  2398. hypergram/raw/types/help/invite_text.py +83 -0
  2399. hypergram/raw/types/help/no_app_update.py +78 -0
  2400. hypergram/raw/types/help/passport_config.py +91 -0
  2401. hypergram/raw/types/help/passport_config_not_modified.py +78 -0
  2402. hypergram/raw/types/help/peer_color_option.py +120 -0
  2403. hypergram/raw/types/help/peer_color_profile_set.py +90 -0
  2404. hypergram/raw/types/help/peer_color_set.py +74 -0
  2405. hypergram/raw/types/help/peer_colors.py +92 -0
  2406. hypergram/raw/types/help/peer_colors_not_modified.py +79 -0
  2407. hypergram/raw/types/help/premium_promo.py +123 -0
  2408. hypergram/raw/types/help/promo_data.py +161 -0
  2409. hypergram/raw/types/help/promo_data_empty.py +83 -0
  2410. hypergram/raw/types/help/recent_me_urls.py +99 -0
  2411. hypergram/raw/types/help/support.py +91 -0
  2412. hypergram/raw/types/help/support_name.py +83 -0
  2413. hypergram/raw/types/help/terms_of_service.py +107 -0
  2414. hypergram/raw/types/help/terms_of_service_update.py +91 -0
  2415. hypergram/raw/types/help/terms_of_service_update_empty.py +83 -0
  2416. hypergram/raw/types/help/timezones_list.py +91 -0
  2417. hypergram/raw/types/help/timezones_list_not_modified.py +78 -0
  2418. hypergram/raw/types/help/user_info.py +108 -0
  2419. hypergram/raw/types/help/user_info_empty.py +79 -0
  2420. hypergram/raw/types/high_score.py +90 -0
  2421. hypergram/raw/types/http_wait.py +90 -0
  2422. hypergram/raw/types/imported_contact.py +82 -0
  2423. hypergram/raw/types/inline_bot_switch_pm.py +82 -0
  2424. hypergram/raw/types/inline_bot_web_view.py +82 -0
  2425. hypergram/raw/types/inline_query_peer_type_bot_pm.py +69 -0
  2426. hypergram/raw/types/inline_query_peer_type_broadcast.py +69 -0
  2427. hypergram/raw/types/inline_query_peer_type_chat.py +69 -0
  2428. hypergram/raw/types/inline_query_peer_type_megagroup.py +69 -0
  2429. hypergram/raw/types/inline_query_peer_type_pm.py +69 -0
  2430. hypergram/raw/types/inline_query_peer_type_same_bot_pm.py +69 -0
  2431. hypergram/raw/types/input_ai_compose_tone_default.py +74 -0
  2432. hypergram/raw/types/input_ai_compose_tone_id.py +82 -0
  2433. hypergram/raw/types/input_ai_compose_tone_slug.py +74 -0
  2434. hypergram/raw/types/input_app_event.py +98 -0
  2435. hypergram/raw/types/input_bot_app_id.py +82 -0
  2436. hypergram/raw/types/input_bot_app_short_name.py +82 -0
  2437. hypergram/raw/types/input_bot_inline_message_game.py +78 -0
  2438. hypergram/raw/types/input_bot_inline_message_id.py +99 -0
  2439. hypergram/raw/types/input_bot_inline_message_id64.py +107 -0
  2440. hypergram/raw/types/input_bot_inline_message_media_auto.py +102 -0
  2441. hypergram/raw/types/input_bot_inline_message_media_contact.py +110 -0
  2442. hypergram/raw/types/input_bot_inline_message_media_geo.py +113 -0
  2443. hypergram/raw/types/input_bot_inline_message_media_invoice.py +136 -0
  2444. hypergram/raw/types/input_bot_inline_message_media_venue.py +126 -0
  2445. hypergram/raw/types/input_bot_inline_message_media_web_page.py +128 -0
  2446. hypergram/raw/types/input_bot_inline_message_text.py +108 -0
  2447. hypergram/raw/types/input_bot_inline_result.py +139 -0
  2448. hypergram/raw/types/input_bot_inline_result_document.py +118 -0
  2449. hypergram/raw/types/input_bot_inline_result_game.py +90 -0
  2450. hypergram/raw/types/input_bot_inline_result_photo.py +98 -0
  2451. hypergram/raw/types/input_business_away_message.py +98 -0
  2452. hypergram/raw/types/input_business_bot_recipients.py +118 -0
  2453. hypergram/raw/types/input_business_chat_link.py +95 -0
  2454. hypergram/raw/types/input_business_greeting_message.py +90 -0
  2455. hypergram/raw/types/input_business_intro.py +94 -0
  2456. hypergram/raw/types/input_business_recipients.py +108 -0
  2457. hypergram/raw/types/input_channel.py +82 -0
  2458. hypergram/raw/types/input_channel_empty.py +69 -0
  2459. hypergram/raw/types/input_channel_from_message.py +90 -0
  2460. hypergram/raw/types/input_chat_photo.py +74 -0
  2461. hypergram/raw/types/input_chat_photo_empty.py +69 -0
  2462. hypergram/raw/types/input_chat_theme.py +74 -0
  2463. hypergram/raw/types/input_chat_theme_empty.py +69 -0
  2464. hypergram/raw/types/input_chat_theme_unique_gift.py +74 -0
  2465. hypergram/raw/types/input_chat_uploaded_photo.py +107 -0
  2466. hypergram/raw/types/input_chatlist_dialog_filter.py +74 -0
  2467. hypergram/raw/types/input_check_password_empty.py +69 -0
  2468. hypergram/raw/types/input_check_password_srp.py +90 -0
  2469. hypergram/raw/types/input_client_proxy.py +82 -0
  2470. hypergram/raw/types/input_collectible_phone.py +74 -0
  2471. hypergram/raw/types/input_collectible_username.py +74 -0
  2472. hypergram/raw/types/input_dialog_peer.py +74 -0
  2473. hypergram/raw/types/input_dialog_peer_folder.py +74 -0
  2474. hypergram/raw/types/input_document.py +90 -0
  2475. hypergram/raw/types/input_document_empty.py +69 -0
  2476. hypergram/raw/types/input_document_file_location.py +98 -0
  2477. hypergram/raw/types/input_emoji_status_collectible.py +85 -0
  2478. hypergram/raw/types/input_encrypted_chat.py +82 -0
  2479. hypergram/raw/types/input_encrypted_file.py +82 -0
  2480. hypergram/raw/types/input_encrypted_file_big_uploaded.py +90 -0
  2481. hypergram/raw/types/input_encrypted_file_empty.py +69 -0
  2482. hypergram/raw/types/input_encrypted_file_location.py +82 -0
  2483. hypergram/raw/types/input_encrypted_file_uploaded.py +98 -0
  2484. hypergram/raw/types/input_file.py +98 -0
  2485. hypergram/raw/types/input_file_big.py +90 -0
  2486. hypergram/raw/types/input_file_location.py +98 -0
  2487. hypergram/raw/types/input_file_story_document.py +74 -0
  2488. hypergram/raw/types/input_folder_peer.py +82 -0
  2489. hypergram/raw/types/input_game_id.py +82 -0
  2490. hypergram/raw/types/input_game_short_name.py +82 -0
  2491. hypergram/raw/types/input_geo_point.py +93 -0
  2492. hypergram/raw/types/input_geo_point_empty.py +69 -0
  2493. hypergram/raw/types/input_group_call.py +82 -0
  2494. hypergram/raw/types/input_group_call_invite_message.py +74 -0
  2495. hypergram/raw/types/input_group_call_slug.py +74 -0
  2496. hypergram/raw/types/input_group_call_stream.py +110 -0
  2497. hypergram/raw/types/input_invoice_business_bot_transfer_stars.py +82 -0
  2498. hypergram/raw/types/input_invoice_chat_invite_subscription.py +74 -0
  2499. hypergram/raw/types/input_invoice_message.py +82 -0
  2500. hypergram/raw/types/input_invoice_premium_auth_code.py +74 -0
  2501. hypergram/raw/types/input_invoice_premium_gift_code.py +82 -0
  2502. hypergram/raw/types/input_invoice_premium_gift_stars.py +94 -0
  2503. hypergram/raw/types/input_invoice_slug.py +74 -0
  2504. hypergram/raw/types/input_invoice_star_gift.py +106 -0
  2505. hypergram/raw/types/input_invoice_star_gift_auction_bid.py +116 -0
  2506. hypergram/raw/types/input_invoice_star_gift_drop_original_details.py +74 -0
  2507. hypergram/raw/types/input_invoice_star_gift_prepaid_upgrade.py +82 -0
  2508. hypergram/raw/types/input_invoice_star_gift_resale.py +90 -0
  2509. hypergram/raw/types/input_invoice_star_gift_transfer.py +82 -0
  2510. hypergram/raw/types/input_invoice_star_gift_upgrade.py +82 -0
  2511. hypergram/raw/types/input_invoice_stars.py +74 -0
  2512. hypergram/raw/types/input_keyboard_button_request_peer.py +137 -0
  2513. hypergram/raw/types/input_keyboard_button_url_auth.py +126 -0
  2514. hypergram/raw/types/input_keyboard_button_user_profile.py +103 -0
  2515. hypergram/raw/types/input_message_callback_query.py +82 -0
  2516. hypergram/raw/types/input_message_entity_mention_name.py +90 -0
  2517. hypergram/raw/types/input_message_id.py +74 -0
  2518. hypergram/raw/types/input_message_pinned.py +69 -0
  2519. hypergram/raw/types/input_message_read_metric.py +114 -0
  2520. hypergram/raw/types/input_message_reply_to.py +74 -0
  2521. hypergram/raw/types/input_messages_filter_chat_photos.py +69 -0
  2522. hypergram/raw/types/input_messages_filter_contacts.py +69 -0
  2523. hypergram/raw/types/input_messages_filter_document.py +69 -0
  2524. hypergram/raw/types/input_messages_filter_empty.py +69 -0
  2525. hypergram/raw/types/input_messages_filter_geo.py +69 -0
  2526. hypergram/raw/types/input_messages_filter_gif.py +69 -0
  2527. hypergram/raw/types/input_messages_filter_music.py +69 -0
  2528. hypergram/raw/types/input_messages_filter_my_mentions.py +69 -0
  2529. hypergram/raw/types/input_messages_filter_phone_calls.py +74 -0
  2530. hypergram/raw/types/input_messages_filter_photo_video.py +69 -0
  2531. hypergram/raw/types/input_messages_filter_photos.py +69 -0
  2532. hypergram/raw/types/input_messages_filter_pinned.py +69 -0
  2533. hypergram/raw/types/input_messages_filter_poll.py +69 -0
  2534. hypergram/raw/types/input_messages_filter_round_video.py +69 -0
  2535. hypergram/raw/types/input_messages_filter_round_voice.py +69 -0
  2536. hypergram/raw/types/input_messages_filter_url.py +69 -0
  2537. hypergram/raw/types/input_messages_filter_video.py +69 -0
  2538. hypergram/raw/types/input_messages_filter_voice.py +69 -0
  2539. hypergram/raw/types/input_notify_broadcasts.py +69 -0
  2540. hypergram/raw/types/input_notify_chats.py +69 -0
  2541. hypergram/raw/types/input_notify_forum_topic.py +82 -0
  2542. hypergram/raw/types/input_notify_peer.py +74 -0
  2543. hypergram/raw/types/input_notify_users.py +69 -0
  2544. hypergram/raw/types/input_passkey_credential_firebase_pnv.py +74 -0
  2545. hypergram/raw/types/input_passkey_credential_public_key.py +90 -0
  2546. hypergram/raw/types/input_passkey_response_login.py +98 -0
  2547. hypergram/raw/types/input_passkey_response_register.py +82 -0
  2548. hypergram/raw/types/input_payment_credentials.py +82 -0
  2549. hypergram/raw/types/input_payment_credentials_apple_pay.py +74 -0
  2550. hypergram/raw/types/input_payment_credentials_google_pay.py +74 -0
  2551. hypergram/raw/types/input_payment_credentials_saved.py +82 -0
  2552. hypergram/raw/types/input_peer_channel.py +82 -0
  2553. hypergram/raw/types/input_peer_channel_from_message.py +90 -0
  2554. hypergram/raw/types/input_peer_chat.py +74 -0
  2555. hypergram/raw/types/input_peer_color_collectible.py +74 -0
  2556. hypergram/raw/types/input_peer_empty.py +69 -0
  2557. hypergram/raw/types/input_peer_notify_settings.py +133 -0
  2558. hypergram/raw/types/input_peer_photo_file_location.py +90 -0
  2559. hypergram/raw/types/input_peer_self.py +69 -0
  2560. hypergram/raw/types/input_peer_user.py +82 -0
  2561. hypergram/raw/types/input_peer_user_from_message.py +90 -0
  2562. hypergram/raw/types/input_phone_call.py +82 -0
  2563. hypergram/raw/types/input_phone_contact.py +110 -0
  2564. hypergram/raw/types/input_photo.py +90 -0
  2565. hypergram/raw/types/input_photo_empty.py +69 -0
  2566. hypergram/raw/types/input_photo_file_location.py +98 -0
  2567. hypergram/raw/types/input_photo_legacy_file_location.py +114 -0
  2568. hypergram/raw/types/input_poll_answer.py +86 -0
  2569. hypergram/raw/types/input_privacy_key_about.py +69 -0
  2570. hypergram/raw/types/input_privacy_key_added_by_phone.py +69 -0
  2571. hypergram/raw/types/input_privacy_key_birthday.py +69 -0
  2572. hypergram/raw/types/input_privacy_key_chat_invite.py +69 -0
  2573. hypergram/raw/types/input_privacy_key_forwards.py +69 -0
  2574. hypergram/raw/types/input_privacy_key_no_paid_messages.py +69 -0
  2575. hypergram/raw/types/input_privacy_key_phone_call.py +69 -0
  2576. hypergram/raw/types/input_privacy_key_phone_number.py +69 -0
  2577. hypergram/raw/types/input_privacy_key_phone_p2_p.py +69 -0
  2578. hypergram/raw/types/input_privacy_key_profile_photo.py +69 -0
  2579. hypergram/raw/types/input_privacy_key_saved_music.py +69 -0
  2580. hypergram/raw/types/input_privacy_key_star_gifts_auto_save.py +69 -0
  2581. hypergram/raw/types/input_privacy_key_status_timestamp.py +69 -0
  2582. hypergram/raw/types/input_privacy_key_voice_messages.py +69 -0
  2583. hypergram/raw/types/input_privacy_value_allow_all.py +69 -0
  2584. hypergram/raw/types/input_privacy_value_allow_bots.py +69 -0
  2585. hypergram/raw/types/input_privacy_value_allow_chat_participants.py +74 -0
  2586. hypergram/raw/types/input_privacy_value_allow_close_friends.py +69 -0
  2587. hypergram/raw/types/input_privacy_value_allow_contacts.py +69 -0
  2588. hypergram/raw/types/input_privacy_value_allow_premium.py +69 -0
  2589. hypergram/raw/types/input_privacy_value_allow_users.py +74 -0
  2590. hypergram/raw/types/input_privacy_value_disallow_all.py +69 -0
  2591. hypergram/raw/types/input_privacy_value_disallow_bots.py +69 -0
  2592. hypergram/raw/types/input_privacy_value_disallow_chat_participants.py +74 -0
  2593. hypergram/raw/types/input_privacy_value_disallow_contacts.py +69 -0
  2594. hypergram/raw/types/input_privacy_value_disallow_users.py +74 -0
  2595. hypergram/raw/types/input_quick_reply_shortcut.py +74 -0
  2596. hypergram/raw/types/input_quick_reply_shortcut_id.py +74 -0
  2597. hypergram/raw/types/input_reply_to_message.py +151 -0
  2598. hypergram/raw/types/input_reply_to_mono_forum.py +74 -0
  2599. hypergram/raw/types/input_reply_to_story.py +82 -0
  2600. hypergram/raw/types/input_report_reason_child_abuse.py +69 -0
  2601. hypergram/raw/types/input_report_reason_copyright.py +69 -0
  2602. hypergram/raw/types/input_report_reason_fake.py +69 -0
  2603. hypergram/raw/types/input_report_reason_geo_irrelevant.py +69 -0
  2604. hypergram/raw/types/input_report_reason_illegal_drugs.py +69 -0
  2605. hypergram/raw/types/input_report_reason_other.py +69 -0
  2606. hypergram/raw/types/input_report_reason_personal_details.py +69 -0
  2607. hypergram/raw/types/input_report_reason_pornography.py +69 -0
  2608. hypergram/raw/types/input_report_reason_spam.py +69 -0
  2609. hypergram/raw/types/input_report_reason_violence.py +69 -0
  2610. hypergram/raw/types/input_saved_star_gift_chat.py +82 -0
  2611. hypergram/raw/types/input_saved_star_gift_slug.py +74 -0
  2612. hypergram/raw/types/input_saved_star_gift_user.py +74 -0
  2613. hypergram/raw/types/input_secure_file.py +82 -0
  2614. hypergram/raw/types/input_secure_file_location.py +82 -0
  2615. hypergram/raw/types/input_secure_file_uploaded.py +106 -0
  2616. hypergram/raw/types/input_secure_value.py +146 -0
  2617. hypergram/raw/types/input_single_media.py +102 -0
  2618. hypergram/raw/types/input_star_gift_auction.py +74 -0
  2619. hypergram/raw/types/input_star_gift_auction_slug.py +74 -0
  2620. hypergram/raw/types/input_stars_transaction.py +82 -0
  2621. hypergram/raw/types/input_sticker_set_animated_emoji.py +69 -0
  2622. hypergram/raw/types/input_sticker_set_animated_emoji_animations.py +69 -0
  2623. hypergram/raw/types/input_sticker_set_dice.py +74 -0
  2624. hypergram/raw/types/input_sticker_set_emoji_channel_default_statuses.py +69 -0
  2625. hypergram/raw/types/input_sticker_set_emoji_default_statuses.py +69 -0
  2626. hypergram/raw/types/input_sticker_set_emoji_default_topic_icons.py +69 -0
  2627. hypergram/raw/types/input_sticker_set_emoji_generic_animations.py +69 -0
  2628. hypergram/raw/types/input_sticker_set_empty.py +69 -0
  2629. hypergram/raw/types/input_sticker_set_id.py +82 -0
  2630. hypergram/raw/types/input_sticker_set_item.py +103 -0
  2631. hypergram/raw/types/input_sticker_set_premium_gifts.py +69 -0
  2632. hypergram/raw/types/input_sticker_set_short_name.py +74 -0
  2633. hypergram/raw/types/input_sticker_set_thumb.py +82 -0
  2634. hypergram/raw/types/input_sticker_set_ton_gifts.py +69 -0
  2635. hypergram/raw/types/input_stickered_media_document.py +74 -0
  2636. hypergram/raw/types/input_stickered_media_photo.py +74 -0
  2637. hypergram/raw/types/input_store_payment_auth_code.py +114 -0
  2638. hypergram/raw/types/input_store_payment_gift_premium.py +90 -0
  2639. hypergram/raw/types/input_store_payment_premium_gift_code.py +112 -0
  2640. hypergram/raw/types/input_store_payment_premium_giveaway.py +149 -0
  2641. hypergram/raw/types/input_store_payment_premium_subscription.py +80 -0
  2642. hypergram/raw/types/input_store_payment_stars_gift.py +98 -0
  2643. hypergram/raw/types/input_store_payment_stars_giveaway.py +165 -0
  2644. hypergram/raw/types/input_store_payment_stars_topup.py +102 -0
  2645. hypergram/raw/types/input_takeout_file_location.py +69 -0
  2646. hypergram/raw/types/input_theme.py +82 -0
  2647. hypergram/raw/types/input_theme_settings.py +129 -0
  2648. hypergram/raw/types/input_theme_slug.py +74 -0
  2649. hypergram/raw/types/input_user.py +82 -0
  2650. hypergram/raw/types/input_user_empty.py +69 -0
  2651. hypergram/raw/types/input_user_from_message.py +90 -0
  2652. hypergram/raw/types/input_user_self.py +69 -0
  2653. hypergram/raw/types/input_wall_paper.py +82 -0
  2654. hypergram/raw/types/input_wall_paper_no_file.py +74 -0
  2655. hypergram/raw/types/input_wall_paper_slug.py +74 -0
  2656. hypergram/raw/types/input_web_document.py +98 -0
  2657. hypergram/raw/types/input_web_file_audio_album_thumb_location.py +102 -0
  2658. hypergram/raw/types/input_web_file_geo_point_location.py +114 -0
  2659. hypergram/raw/types/input_web_file_location.py +82 -0
  2660. hypergram/raw/types/invoice.py +175 -0
  2661. hypergram/raw/types/ip_port.py +82 -0
  2662. hypergram/raw/types/ip_port_secret.py +90 -0
  2663. hypergram/raw/types/json_array.py +74 -0
  2664. hypergram/raw/types/json_bool.py +74 -0
  2665. hypergram/raw/types/json_null.py +69 -0
  2666. hypergram/raw/types/json_number.py +74 -0
  2667. hypergram/raw/types/json_object.py +74 -0
  2668. hypergram/raw/types/json_object_value.py +82 -0
  2669. hypergram/raw/types/json_string.py +74 -0
  2670. hypergram/raw/types/keyboard_button.py +95 -0
  2671. hypergram/raw/types/keyboard_button_buy.py +95 -0
  2672. hypergram/raw/types/keyboard_button_callback.py +109 -0
  2673. hypergram/raw/types/keyboard_button_copy.py +103 -0
  2674. hypergram/raw/types/keyboard_button_game.py +95 -0
  2675. hypergram/raw/types/keyboard_button_request_geo_location.py +95 -0
  2676. hypergram/raw/types/keyboard_button_request_peer.py +119 -0
  2677. hypergram/raw/types/keyboard_button_request_phone.py +95 -0
  2678. hypergram/raw/types/keyboard_button_request_poll.py +104 -0
  2679. hypergram/raw/types/keyboard_button_row.py +74 -0
  2680. hypergram/raw/types/keyboard_button_simple_web_view.py +103 -0
  2681. hypergram/raw/types/keyboard_button_style.py +95 -0
  2682. hypergram/raw/types/keyboard_button_switch_inline.py +119 -0
  2683. hypergram/raw/types/keyboard_button_url.py +103 -0
  2684. hypergram/raw/types/keyboard_button_url_auth.py +120 -0
  2685. hypergram/raw/types/keyboard_button_user_profile.py +103 -0
  2686. hypergram/raw/types/keyboard_button_web_view.py +103 -0
  2687. hypergram/raw/types/labeled_price.py +82 -0
  2688. hypergram/raw/types/lang_pack_difference.py +108 -0
  2689. hypergram/raw/types/lang_pack_language.py +161 -0
  2690. hypergram/raw/types/lang_pack_string.py +91 -0
  2691. hypergram/raw/types/lang_pack_string_deleted.py +83 -0
  2692. hypergram/raw/types/lang_pack_string_pluralized.py +138 -0
  2693. hypergram/raw/types/mask_coords.py +98 -0
  2694. hypergram/raw/types/media_area_channel_post.py +90 -0
  2695. hypergram/raw/types/media_area_coordinates.py +117 -0
  2696. hypergram/raw/types/media_area_geo_point.py +94 -0
  2697. hypergram/raw/types/media_area_star_gift.py +82 -0
  2698. hypergram/raw/types/media_area_suggested_reaction.py +96 -0
  2699. hypergram/raw/types/media_area_url.py +82 -0
  2700. hypergram/raw/types/media_area_venue.py +90 -0
  2701. hypergram/raw/types/media_area_weather.py +98 -0
  2702. hypergram/raw/types/media_contact.py +98 -0
  2703. hypergram/raw/types/media_dice.py +74 -0
  2704. hypergram/raw/types/media_document.py +119 -0
  2705. hypergram/raw/types/media_document_external.py +110 -0
  2706. hypergram/raw/types/media_empty.py +69 -0
  2707. hypergram/raw/types/media_game.py +74 -0
  2708. hypergram/raw/types/media_geo_live.py +109 -0
  2709. hypergram/raw/types/media_geo_point.py +74 -0
  2710. hypergram/raw/types/media_invoice.py +146 -0
  2711. hypergram/raw/types/media_paid_media.py +93 -0
  2712. hypergram/raw/types/media_photo.py +107 -0
  2713. hypergram/raw/types/media_photo_external.py +91 -0
  2714. hypergram/raw/types/media_poll.py +125 -0
  2715. hypergram/raw/types/media_stake_dice.py +90 -0
  2716. hypergram/raw/types/media_story.py +82 -0
  2717. hypergram/raw/types/media_todo.py +74 -0
  2718. hypergram/raw/types/media_uploaded_document.py +158 -0
  2719. hypergram/raw/types/media_uploaded_photo.py +117 -0
  2720. hypergram/raw/types/media_venue.py +114 -0
  2721. hypergram/raw/types/media_web_page.py +94 -0
  2722. hypergram/raw/types/message.py +468 -0
  2723. hypergram/raw/types/message_action_boost_apply.py +74 -0
  2724. hypergram/raw/types/message_action_bot_allowed.py +99 -0
  2725. hypergram/raw/types/message_action_change_creator.py +74 -0
  2726. hypergram/raw/types/message_action_channel_create.py +74 -0
  2727. hypergram/raw/types/message_action_channel_migrate_from.py +82 -0
  2728. hypergram/raw/types/message_action_chat_add_user.py +74 -0
  2729. hypergram/raw/types/message_action_chat_create.py +82 -0
  2730. hypergram/raw/types/message_action_chat_delete_photo.py +69 -0
  2731. hypergram/raw/types/message_action_chat_delete_user.py +74 -0
  2732. hypergram/raw/types/message_action_chat_edit_photo.py +74 -0
  2733. hypergram/raw/types/message_action_chat_edit_title.py +74 -0
  2734. hypergram/raw/types/message_action_chat_joined_by_link.py +74 -0
  2735. hypergram/raw/types/message_action_chat_joined_by_request.py +69 -0
  2736. hypergram/raw/types/message_action_chat_migrate_to.py +74 -0
  2737. hypergram/raw/types/message_action_conference_call.py +113 -0
  2738. hypergram/raw/types/message_action_contact_sign_up.py +69 -0
  2739. hypergram/raw/types/message_action_custom_action.py +74 -0
  2740. hypergram/raw/types/message_action_empty.py +69 -0
  2741. hypergram/raw/types/message_action_game_score.py +82 -0
  2742. hypergram/raw/types/message_action_geo_proximity_reached.py +90 -0
  2743. hypergram/raw/types/message_action_gift_code.py +152 -0
  2744. hypergram/raw/types/message_action_gift_premium.py +120 -0
  2745. hypergram/raw/types/message_action_gift_stars.py +119 -0
  2746. hypergram/raw/types/message_action_gift_ton.py +109 -0
  2747. hypergram/raw/types/message_action_giveaway_launch.py +77 -0
  2748. hypergram/raw/types/message_action_giveaway_results.py +90 -0
  2749. hypergram/raw/types/message_action_group_call.py +85 -0
  2750. hypergram/raw/types/message_action_group_call_scheduled.py +82 -0
  2751. hypergram/raw/types/message_action_history_clear.py +69 -0
  2752. hypergram/raw/types/message_action_invite_to_group_call.py +82 -0
  2753. hypergram/raw/types/message_action_managed_bot_created.py +74 -0
  2754. hypergram/raw/types/message_action_new_creator_pending.py +74 -0
  2755. hypergram/raw/types/message_action_no_forwards_request.py +90 -0
  2756. hypergram/raw/types/message_action_no_forwards_toggle.py +82 -0
  2757. hypergram/raw/types/message_action_paid_messages_price.py +82 -0
  2758. hypergram/raw/types/message_action_paid_messages_refunded.py +82 -0
  2759. hypergram/raw/types/message_action_payment_refunded.py +109 -0
  2760. hypergram/raw/types/message_action_payment_sent.py +114 -0
  2761. hypergram/raw/types/message_action_payment_sent_me.py +140 -0
  2762. hypergram/raw/types/message_action_phone_call.py +101 -0
  2763. hypergram/raw/types/message_action_pin_message.py +69 -0
  2764. hypergram/raw/types/message_action_poll_append_answer.py +74 -0
  2765. hypergram/raw/types/message_action_poll_delete_answer.py +74 -0
  2766. hypergram/raw/types/message_action_prize_stars.py +106 -0
  2767. hypergram/raw/types/message_action_requested_peer.py +82 -0
  2768. hypergram/raw/types/message_action_requested_peer_sent_me.py +82 -0
  2769. hypergram/raw/types/message_action_screenshot_taken.py +69 -0
  2770. hypergram/raw/types/message_action_secure_values_sent.py +74 -0
  2771. hypergram/raw/types/message_action_secure_values_sent_me.py +82 -0
  2772. hypergram/raw/types/message_action_set_chat_theme.py +74 -0
  2773. hypergram/raw/types/message_action_set_chat_wall_paper.py +88 -0
  2774. hypergram/raw/types/message_action_set_messages_ttl.py +85 -0
  2775. hypergram/raw/types/message_action_star_gift.py +233 -0
  2776. hypergram/raw/types/message_action_star_gift_purchase_offer.py +104 -0
  2777. hypergram/raw/types/message_action_star_gift_purchase_offer_declined.py +90 -0
  2778. hypergram/raw/types/message_action_star_gift_unique.py +217 -0
  2779. hypergram/raw/types/message_action_suggest_birthday.py +74 -0
  2780. hypergram/raw/types/message_action_suggest_profile_photo.py +74 -0
  2781. hypergram/raw/types/message_action_suggested_post_approval.py +108 -0
  2782. hypergram/raw/types/message_action_suggested_post_refund.py +74 -0
  2783. hypergram/raw/types/message_action_suggested_post_success.py +74 -0
  2784. hypergram/raw/types/message_action_todo_append_tasks.py +74 -0
  2785. hypergram/raw/types/message_action_todo_completions.py +82 -0
  2786. hypergram/raw/types/message_action_topic_create.py +99 -0
  2787. hypergram/raw/types/message_action_topic_edit.py +104 -0
  2788. hypergram/raw/types/message_action_web_view_data_sent.py +74 -0
  2789. hypergram/raw/types/message_action_web_view_data_sent_me.py +82 -0
  2790. hypergram/raw/types/message_empty.py +86 -0
  2791. hypergram/raw/types/message_entity_bank_card.py +82 -0
  2792. hypergram/raw/types/message_entity_blockquote.py +90 -0
  2793. hypergram/raw/types/message_entity_bold.py +82 -0
  2794. hypergram/raw/types/message_entity_bot_command.py +82 -0
  2795. hypergram/raw/types/message_entity_cashtag.py +82 -0
  2796. hypergram/raw/types/message_entity_code.py +82 -0
  2797. hypergram/raw/types/message_entity_custom_emoji.py +90 -0
  2798. hypergram/raw/types/message_entity_diff_delete.py +82 -0
  2799. hypergram/raw/types/message_entity_diff_insert.py +82 -0
  2800. hypergram/raw/types/message_entity_diff_replace.py +90 -0
  2801. hypergram/raw/types/message_entity_email.py +82 -0
  2802. hypergram/raw/types/message_entity_formatted_date.py +128 -0
  2803. hypergram/raw/types/message_entity_hashtag.py +82 -0
  2804. hypergram/raw/types/message_entity_italic.py +82 -0
  2805. hypergram/raw/types/message_entity_mention.py +82 -0
  2806. hypergram/raw/types/message_entity_mention_name.py +90 -0
  2807. hypergram/raw/types/message_entity_phone.py +82 -0
  2808. hypergram/raw/types/message_entity_pre.py +90 -0
  2809. hypergram/raw/types/message_entity_spoiler.py +82 -0
  2810. hypergram/raw/types/message_entity_strike.py +82 -0
  2811. hypergram/raw/types/message_entity_text_url.py +90 -0
  2812. hypergram/raw/types/message_entity_underline.py +82 -0
  2813. hypergram/raw/types/message_entity_unknown.py +82 -0
  2814. hypergram/raw/types/message_entity_url.py +82 -0
  2815. hypergram/raw/types/message_extended_media.py +74 -0
  2816. hypergram/raw/types/message_extended_media_preview.py +105 -0
  2817. hypergram/raw/types/message_fwd_header.py +181 -0
  2818. hypergram/raw/types/message_media_contact.py +116 -0
  2819. hypergram/raw/types/message_media_dice.py +104 -0
  2820. hypergram/raw/types/message_media_document.py +156 -0
  2821. hypergram/raw/types/message_media_empty.py +79 -0
  2822. hypergram/raw/types/message_media_game.py +84 -0
  2823. hypergram/raw/types/message_media_geo.py +84 -0
  2824. hypergram/raw/types/message_media_geo_live.py +112 -0
  2825. hypergram/raw/types/message_media_giveaway.py +151 -0
  2826. hypergram/raw/types/message_media_giveaway_results.py +174 -0
  2827. hypergram/raw/types/message_media_invoice.py +159 -0
  2828. hypergram/raw/types/message_media_paid_media.py +92 -0
  2829. hypergram/raw/types/message_media_photo.py +119 -0
  2830. hypergram/raw/types/message_media_poll.py +104 -0
  2831. hypergram/raw/types/message_media_story.py +110 -0
  2832. hypergram/raw/types/message_media_to_do.py +96 -0
  2833. hypergram/raw/types/message_media_unsupported.py +79 -0
  2834. hypergram/raw/types/message_media_venue.py +124 -0
  2835. hypergram/raw/types/message_media_video_stream.py +92 -0
  2836. hypergram/raw/types/message_media_web_page.py +110 -0
  2837. hypergram/raw/types/message_peer_reaction.py +110 -0
  2838. hypergram/raw/types/message_peer_vote.py +90 -0
  2839. hypergram/raw/types/message_peer_vote_input_option.py +82 -0
  2840. hypergram/raw/types/message_peer_vote_multiple.py +90 -0
  2841. hypergram/raw/types/message_range.py +91 -0
  2842. hypergram/raw/types/message_reactions.py +114 -0
  2843. hypergram/raw/types/message_reactor.py +104 -0
  2844. hypergram/raw/types/message_replies.py +127 -0
  2845. hypergram/raw/types/message_reply_header.py +180 -0
  2846. hypergram/raw/types/message_reply_story_header.py +82 -0
  2847. hypergram/raw/types/message_report_option.py +82 -0
  2848. hypergram/raw/types/message_service.py +191 -0
  2849. hypergram/raw/types/message_views.py +96 -0
  2850. hypergram/raw/types/messages/__init__.py +116 -0
  2851. hypergram/raw/types/messages/affected_found_messages.py +107 -0
  2852. hypergram/raw/types/messages/affected_history.py +106 -0
  2853. hypergram/raw/types/messages/affected_messages.py +94 -0
  2854. hypergram/raw/types/messages/all_stickers.py +93 -0
  2855. hypergram/raw/types/messages/all_stickers_not_modified.py +80 -0
  2856. hypergram/raw/types/messages/archived_stickers.py +91 -0
  2857. hypergram/raw/types/messages/available_effects.py +99 -0
  2858. hypergram/raw/types/messages/available_effects_not_modified.py +78 -0
  2859. hypergram/raw/types/messages/available_reactions.py +91 -0
  2860. hypergram/raw/types/messages/available_reactions_not_modified.py +78 -0
  2861. hypergram/raw/types/messages/bot_app.py +103 -0
  2862. hypergram/raw/types/messages/bot_callback_answer.py +121 -0
  2863. hypergram/raw/types/messages/bot_prepared_inline_message.py +91 -0
  2864. hypergram/raw/types/messages/bot_results.py +144 -0
  2865. hypergram/raw/types/messages/channel_messages.py +156 -0
  2866. hypergram/raw/types/messages/chat_admins_with_invites.py +91 -0
  2867. hypergram/raw/types/messages/chat_full.py +100 -0
  2868. hypergram/raw/types/messages/chat_invite_importers.py +99 -0
  2869. hypergram/raw/types/messages/chats.py +90 -0
  2870. hypergram/raw/types/messages/chats_slice.py +98 -0
  2871. hypergram/raw/types/messages/checked_history_import_peer.py +83 -0
  2872. hypergram/raw/types/messages/composed_message_with_ai.py +95 -0
  2873. hypergram/raw/types/messages/dh_config.py +107 -0
  2874. hypergram/raw/types/messages/dh_config_not_modified.py +83 -0
  2875. hypergram/raw/types/messages/dialog_filters.py +91 -0
  2876. hypergram/raw/types/messages/dialogs.py +107 -0
  2877. hypergram/raw/types/messages/dialogs_not_modified.py +83 -0
  2878. hypergram/raw/types/messages/dialogs_slice.py +115 -0
  2879. hypergram/raw/types/messages/discussion_message.py +136 -0
  2880. hypergram/raw/types/messages/emoji_game_dice_info.py +118 -0
  2881. hypergram/raw/types/messages/emoji_game_outcome.py +90 -0
  2882. hypergram/raw/types/messages/emoji_game_unavailable.py +78 -0
  2883. hypergram/raw/types/messages/emoji_groups.py +94 -0
  2884. hypergram/raw/types/messages/emoji_groups_not_modified.py +81 -0
  2885. hypergram/raw/types/messages/exported_chat_invite.py +92 -0
  2886. hypergram/raw/types/messages/exported_chat_invite_replaced.py +100 -0
  2887. hypergram/raw/types/messages/exported_chat_invites.py +99 -0
  2888. hypergram/raw/types/messages/faved_stickers.py +99 -0
  2889. hypergram/raw/types/messages/faved_stickers_not_modified.py +78 -0
  2890. hypergram/raw/types/messages/featured_stickers.py +117 -0
  2891. hypergram/raw/types/messages/featured_stickers_not_modified.py +85 -0
  2892. hypergram/raw/types/messages/forum_topics.py +132 -0
  2893. hypergram/raw/types/messages/found_sticker_sets.py +92 -0
  2894. hypergram/raw/types/messages/found_sticker_sets_not_modified.py +79 -0
  2895. hypergram/raw/types/messages/found_stickers.py +102 -0
  2896. hypergram/raw/types/messages/found_stickers_not_modified.py +86 -0
  2897. hypergram/raw/types/messages/high_scores.py +92 -0
  2898. hypergram/raw/types/messages/history_import.py +83 -0
  2899. hypergram/raw/types/messages/history_import_parsed.py +98 -0
  2900. hypergram/raw/types/messages/inactive_chats.py +99 -0
  2901. hypergram/raw/types/messages/invited_users.py +93 -0
  2902. hypergram/raw/types/messages/message_edit_data.py +83 -0
  2903. hypergram/raw/types/messages/message_reactions_list.py +118 -0
  2904. hypergram/raw/types/messages/message_views.py +99 -0
  2905. hypergram/raw/types/messages/messages.py +123 -0
  2906. hypergram/raw/types/messages/messages_not_modified.py +99 -0
  2907. hypergram/raw/types/messages/messages_slice.py +167 -0
  2908. hypergram/raw/types/messages/my_stickers.py +91 -0
  2909. hypergram/raw/types/messages/peer_dialogs.py +116 -0
  2910. hypergram/raw/types/messages/peer_settings.py +99 -0
  2911. hypergram/raw/types/messages/prepared_inline_message.py +115 -0
  2912. hypergram/raw/types/messages/quick_replies.py +107 -0
  2913. hypergram/raw/types/messages/quick_replies_not_modified.py +78 -0
  2914. hypergram/raw/types/messages/reactions.py +93 -0
  2915. hypergram/raw/types/messages/reactions_not_modified.py +80 -0
  2916. hypergram/raw/types/messages/recent_stickers.py +107 -0
  2917. hypergram/raw/types/messages/recent_stickers_not_modified.py +78 -0
  2918. hypergram/raw/types/messages/saved_dialogs.py +109 -0
  2919. hypergram/raw/types/messages/saved_dialogs_not_modified.py +85 -0
  2920. hypergram/raw/types/messages/saved_dialogs_slice.py +117 -0
  2921. hypergram/raw/types/messages/saved_gifs.py +91 -0
  2922. hypergram/raw/types/messages/saved_gifs_not_modified.py +78 -0
  2923. hypergram/raw/types/messages/saved_reaction_tags.py +91 -0
  2924. hypergram/raw/types/messages/saved_reaction_tags_not_modified.py +78 -0
  2925. hypergram/raw/types/messages/search_counter.py +99 -0
  2926. hypergram/raw/types/messages/search_results_calendar.py +148 -0
  2927. hypergram/raw/types/messages/search_results_positions.py +91 -0
  2928. hypergram/raw/types/messages/sent_encrypted_file.py +93 -0
  2929. hypergram/raw/types/messages/sent_encrypted_message.py +85 -0
  2930. hypergram/raw/types/messages/sponsored_messages.py +128 -0
  2931. hypergram/raw/types/messages/sponsored_messages_empty.py +78 -0
  2932. hypergram/raw/types/messages/sticker_set.py +115 -0
  2933. hypergram/raw/types/messages/sticker_set_install_result_archive.py +83 -0
  2934. hypergram/raw/types/messages/sticker_set_install_result_success.py +78 -0
  2935. hypergram/raw/types/messages/sticker_set_not_modified.py +86 -0
  2936. hypergram/raw/types/messages/stickers.py +91 -0
  2937. hypergram/raw/types/messages/stickers_not_modified.py +78 -0
  2938. hypergram/raw/types/messages/transcribed_audio.py +117 -0
  2939. hypergram/raw/types/messages/translate_result.py +83 -0
  2940. hypergram/raw/types/messages/votes_list.py +118 -0
  2941. hypergram/raw/types/messages/web_page.py +99 -0
  2942. hypergram/raw/types/messages/web_page_preview.py +99 -0
  2943. hypergram/raw/types/missing_invitee.py +88 -0
  2944. hypergram/raw/types/mono_forum_dialog.py +138 -0
  2945. hypergram/raw/types/msg_detailed_info.py +98 -0
  2946. hypergram/raw/types/msg_new_detailed_info.py +90 -0
  2947. hypergram/raw/types/msg_resend_ans_req.py +74 -0
  2948. hypergram/raw/types/msg_resend_req.py +74 -0
  2949. hypergram/raw/types/msgs_ack.py +74 -0
  2950. hypergram/raw/types/msgs_all_info.py +82 -0
  2951. hypergram/raw/types/msgs_state_info.py +82 -0
  2952. hypergram/raw/types/msgs_state_req.py +74 -0
  2953. hypergram/raw/types/my_boost.py +111 -0
  2954. hypergram/raw/types/nearest_dc.py +99 -0
  2955. hypergram/raw/types/new_session_created.py +90 -0
  2956. hypergram/raw/types/notification_sound_default.py +69 -0
  2957. hypergram/raw/types/notification_sound_local.py +82 -0
  2958. hypergram/raw/types/notification_sound_none.py +69 -0
  2959. hypergram/raw/types/notification_sound_ringtone.py +74 -0
  2960. hypergram/raw/types/notify_broadcasts.py +69 -0
  2961. hypergram/raw/types/notify_chats.py +69 -0
  2962. hypergram/raw/types/notify_forum_topic.py +82 -0
  2963. hypergram/raw/types/notify_peer.py +74 -0
  2964. hypergram/raw/types/notify_users.py +69 -0
  2965. hypergram/raw/types/outbox_read_date.py +83 -0
  2966. hypergram/raw/types/page.py +127 -0
  2967. hypergram/raw/types/page_block_anchor.py +74 -0
  2968. hypergram/raw/types/page_block_audio.py +82 -0
  2969. hypergram/raw/types/page_block_author_date.py +82 -0
  2970. hypergram/raw/types/page_block_blockquote.py +82 -0
  2971. hypergram/raw/types/page_block_channel.py +74 -0
  2972. hypergram/raw/types/page_block_collage.py +82 -0
  2973. hypergram/raw/types/page_block_cover.py +74 -0
  2974. hypergram/raw/types/page_block_details.py +90 -0
  2975. hypergram/raw/types/page_block_divider.py +69 -0
  2976. hypergram/raw/types/page_block_embed.py +133 -0
  2977. hypergram/raw/types/page_block_embed_post.py +122 -0
  2978. hypergram/raw/types/page_block_footer.py +74 -0
  2979. hypergram/raw/types/page_block_header.py +74 -0
  2980. hypergram/raw/types/page_block_kicker.py +74 -0
  2981. hypergram/raw/types/page_block_list.py +74 -0
  2982. hypergram/raw/types/page_block_map.py +106 -0
  2983. hypergram/raw/types/page_block_ordered_list.py +74 -0
  2984. hypergram/raw/types/page_block_paragraph.py +74 -0
  2985. hypergram/raw/types/page_block_photo.py +102 -0
  2986. hypergram/raw/types/page_block_preformatted.py +82 -0
  2987. hypergram/raw/types/page_block_pullquote.py +82 -0
  2988. hypergram/raw/types/page_block_related_articles.py +82 -0
  2989. hypergram/raw/types/page_block_slideshow.py +82 -0
  2990. hypergram/raw/types/page_block_subheader.py +74 -0
  2991. hypergram/raw/types/page_block_subtitle.py +74 -0
  2992. hypergram/raw/types/page_block_table.py +96 -0
  2993. hypergram/raw/types/page_block_title.py +74 -0
  2994. hypergram/raw/types/page_block_unsupported.py +69 -0
  2995. hypergram/raw/types/page_block_video.py +96 -0
  2996. hypergram/raw/types/page_caption.py +82 -0
  2997. hypergram/raw/types/page_list_item_blocks.py +74 -0
  2998. hypergram/raw/types/page_list_item_text.py +74 -0
  2999. hypergram/raw/types/page_list_ordered_item_blocks.py +82 -0
  3000. hypergram/raw/types/page_list_ordered_item_text.py +82 -0
  3001. hypergram/raw/types/page_related_article.py +129 -0
  3002. hypergram/raw/types/page_table_cell.py +126 -0
  3003. hypergram/raw/types/page_table_row.py +74 -0
  3004. hypergram/raw/types/paid_reaction_privacy_anonymous.py +69 -0
  3005. hypergram/raw/types/paid_reaction_privacy_default.py +69 -0
  3006. hypergram/raw/types/paid_reaction_privacy_peer.py +74 -0
  3007. hypergram/raw/types/passkey.py +119 -0
  3008. hypergram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py +98 -0
  3009. hypergram/raw/types/password_kdf_algo_unknown.py +69 -0
  3010. hypergram/raw/types/payment_charge.py +82 -0
  3011. hypergram/raw/types/payment_form_method.py +82 -0
  3012. hypergram/raw/types/payment_requested_info.py +105 -0
  3013. hypergram/raw/types/payment_saved_credentials_card.py +82 -0
  3014. hypergram/raw/types/payments/__init__.py +61 -0
  3015. hypergram/raw/types/payments/bank_card_data.py +91 -0
  3016. hypergram/raw/types/payments/check_can_send_gift_result_fail.py +83 -0
  3017. hypergram/raw/types/payments/check_can_send_gift_result_ok.py +78 -0
  3018. hypergram/raw/types/payments/checked_gift_code.py +152 -0
  3019. hypergram/raw/types/payments/connected_star_ref_bots.py +102 -0
  3020. hypergram/raw/types/payments/exported_invoice.py +83 -0
  3021. hypergram/raw/types/payments/giveaway_info.py +124 -0
  3022. hypergram/raw/types/payments/giveaway_info_results.py +140 -0
  3023. hypergram/raw/types/payments/payment_form.py +212 -0
  3024. hypergram/raw/types/payments/payment_form_star_gift.py +91 -0
  3025. hypergram/raw/types/payments/payment_form_stars.py +135 -0
  3026. hypergram/raw/types/payments/payment_receipt.py +196 -0
  3027. hypergram/raw/types/payments/payment_receipt_stars.py +159 -0
  3028. hypergram/raw/types/payments/payment_result.py +84 -0
  3029. hypergram/raw/types/payments/payment_verification_needed.py +84 -0
  3030. hypergram/raw/types/payments/resale_star_gifts.py +147 -0
  3031. hypergram/raw/types/payments/saved_info.py +93 -0
  3032. hypergram/raw/types/payments/saved_star_gifts.py +129 -0
  3033. hypergram/raw/types/payments/star_gift_active_auctions.py +99 -0
  3034. hypergram/raw/types/payments/star_gift_active_auctions_not_modified.py +78 -0
  3035. hypergram/raw/types/payments/star_gift_auction_acquired_gifts.py +99 -0
  3036. hypergram/raw/types/payments/star_gift_auction_state.py +123 -0
  3037. hypergram/raw/types/payments/star_gift_collections.py +83 -0
  3038. hypergram/raw/types/payments/star_gift_collections_not_modified.py +78 -0
  3039. hypergram/raw/types/payments/star_gift_upgrade_attributes.py +83 -0
  3040. hypergram/raw/types/payments/star_gift_upgrade_preview.py +99 -0
  3041. hypergram/raw/types/payments/star_gift_withdrawal_url.py +83 -0
  3042. hypergram/raw/types/payments/star_gifts.py +107 -0
  3043. hypergram/raw/types/payments/star_gifts_not_modified.py +78 -0
  3044. hypergram/raw/types/payments/stars_revenue_ads_account_url.py +83 -0
  3045. hypergram/raw/types/payments/stars_revenue_stats.py +111 -0
  3046. hypergram/raw/types/payments/stars_revenue_withdrawal_url.py +83 -0
  3047. hypergram/raw/types/payments/stars_status.py +151 -0
  3048. hypergram/raw/types/payments/suggested_star_ref_bots.py +110 -0
  3049. hypergram/raw/types/payments/unique_star_gift.py +99 -0
  3050. hypergram/raw/types/payments/unique_star_gift_value_info.py +192 -0
  3051. hypergram/raw/types/payments/validated_requested_info.py +96 -0
  3052. hypergram/raw/types/peer_blocked.py +82 -0
  3053. hypergram/raw/types/peer_channel.py +83 -0
  3054. hypergram/raw/types/peer_chat.py +83 -0
  3055. hypergram/raw/types/peer_color.py +86 -0
  3056. hypergram/raw/types/peer_color_collectible.py +127 -0
  3057. hypergram/raw/types/peer_located.py +90 -0
  3058. hypergram/raw/types/peer_notify_settings.py +182 -0
  3059. hypergram/raw/types/peer_self_located.py +74 -0
  3060. hypergram/raw/types/peer_settings.py +224 -0
  3061. hypergram/raw/types/peer_stories.py +93 -0
  3062. hypergram/raw/types/peer_user.py +83 -0
  3063. hypergram/raw/types/pending_suggestion.py +98 -0
  3064. hypergram/raw/types/phone/__init__.py +32 -0
  3065. hypergram/raw/types/phone/exported_group_call_invite.py +83 -0
  3066. hypergram/raw/types/phone/group_call.py +115 -0
  3067. hypergram/raw/types/phone/group_call_stars.py +107 -0
  3068. hypergram/raw/types/phone/group_call_stream_channels.py +83 -0
  3069. hypergram/raw/types/phone/group_call_stream_rtmp_url.py +91 -0
  3070. hypergram/raw/types/phone/group_participants.py +123 -0
  3071. hypergram/raw/types/phone/join_as_peers.py +99 -0
  3072. hypergram/raw/types/phone/phone_call.py +93 -0
  3073. hypergram/raw/types/phone_call.py +176 -0
  3074. hypergram/raw/types/phone_call_accepted.py +130 -0
  3075. hypergram/raw/types/phone_call_discard_reason_busy.py +69 -0
  3076. hypergram/raw/types/phone_call_discard_reason_disconnect.py +69 -0
  3077. hypergram/raw/types/phone_call_discard_reason_hangup.py +69 -0
  3078. hypergram/raw/types/phone_call_discard_reason_migrate_conference_call.py +74 -0
  3079. hypergram/raw/types/phone_call_discard_reason_missed.py +69 -0
  3080. hypergram/raw/types/phone_call_discarded.py +113 -0
  3081. hypergram/raw/types/phone_call_empty.py +74 -0
  3082. hypergram/raw/types/phone_call_protocol.py +104 -0
  3083. hypergram/raw/types/phone_call_requested.py +130 -0
  3084. hypergram/raw/types/phone_call_waiting.py +131 -0
  3085. hypergram/raw/types/phone_connection.py +114 -0
  3086. hypergram/raw/types/phone_connection_webrtc.py +128 -0
  3087. hypergram/raw/types/photo.py +132 -0
  3088. hypergram/raw/types/photo_cached_size.py +98 -0
  3089. hypergram/raw/types/photo_empty.py +74 -0
  3090. hypergram/raw/types/photo_path_size.py +82 -0
  3091. hypergram/raw/types/photo_size.py +98 -0
  3092. hypergram/raw/types/photo_size_empty.py +74 -0
  3093. hypergram/raw/types/photo_size_progressive.py +98 -0
  3094. hypergram/raw/types/photo_stripped_size.py +82 -0
  3095. hypergram/raw/types/photos/__init__.py +27 -0
  3096. hypergram/raw/types/photos/photo.py +93 -0
  3097. hypergram/raw/types/photos/photos.py +91 -0
  3098. hypergram/raw/types/photos/photos_slice.py +99 -0
  3099. hypergram/raw/types/poll.py +188 -0
  3100. hypergram/raw/types/poll_answer.py +113 -0
  3101. hypergram/raw/types/poll_answer_voters.py +107 -0
  3102. hypergram/raw/types/poll_results.py +144 -0
  3103. hypergram/raw/types/pong.py +92 -0
  3104. hypergram/raw/types/popular_contact.py +82 -0
  3105. hypergram/raw/types/post_address.py +114 -0
  3106. hypergram/raw/types/post_interaction_counters_message.py +98 -0
  3107. hypergram/raw/types/post_interaction_counters_story.py +98 -0
  3108. hypergram/raw/types/pq_inner_data.py +114 -0
  3109. hypergram/raw/types/pq_inner_data_dc.py +122 -0
  3110. hypergram/raw/types/pq_inner_data_temp.py +122 -0
  3111. hypergram/raw/types/pq_inner_data_temp_dc.py +130 -0
  3112. hypergram/raw/types/premium/__init__.py +27 -0
  3113. hypergram/raw/types/premium/boosts_list.py +111 -0
  3114. hypergram/raw/types/premium/boosts_status.py +163 -0
  3115. hypergram/raw/types/premium/my_boosts.py +100 -0
  3116. hypergram/raw/types/premium_gift_code_option.py +127 -0
  3117. hypergram/raw/types/premium_subscription_option.py +130 -0
  3118. hypergram/raw/types/prepaid_giveaway.py +98 -0
  3119. hypergram/raw/types/prepaid_stars_giveaway.py +106 -0
  3120. hypergram/raw/types/privacy_key_about.py +69 -0
  3121. hypergram/raw/types/privacy_key_added_by_phone.py +69 -0
  3122. hypergram/raw/types/privacy_key_birthday.py +69 -0
  3123. hypergram/raw/types/privacy_key_chat_invite.py +69 -0
  3124. hypergram/raw/types/privacy_key_forwards.py +69 -0
  3125. hypergram/raw/types/privacy_key_no_paid_messages.py +69 -0
  3126. hypergram/raw/types/privacy_key_phone_call.py +69 -0
  3127. hypergram/raw/types/privacy_key_phone_number.py +69 -0
  3128. hypergram/raw/types/privacy_key_phone_p2_p.py +69 -0
  3129. hypergram/raw/types/privacy_key_profile_photo.py +69 -0
  3130. hypergram/raw/types/privacy_key_saved_music.py +69 -0
  3131. hypergram/raw/types/privacy_key_star_gifts_auto_save.py +69 -0
  3132. hypergram/raw/types/privacy_key_status_timestamp.py +69 -0
  3133. hypergram/raw/types/privacy_key_voice_messages.py +69 -0
  3134. hypergram/raw/types/privacy_value_allow_all.py +69 -0
  3135. hypergram/raw/types/privacy_value_allow_bots.py +69 -0
  3136. hypergram/raw/types/privacy_value_allow_chat_participants.py +74 -0
  3137. hypergram/raw/types/privacy_value_allow_close_friends.py +69 -0
  3138. hypergram/raw/types/privacy_value_allow_contacts.py +69 -0
  3139. hypergram/raw/types/privacy_value_allow_premium.py +69 -0
  3140. hypergram/raw/types/privacy_value_allow_users.py +74 -0
  3141. hypergram/raw/types/privacy_value_disallow_all.py +69 -0
  3142. hypergram/raw/types/privacy_value_disallow_bots.py +69 -0
  3143. hypergram/raw/types/privacy_value_disallow_chat_participants.py +74 -0
  3144. hypergram/raw/types/privacy_value_disallow_contacts.py +69 -0
  3145. hypergram/raw/types/privacy_value_disallow_users.py +74 -0
  3146. hypergram/raw/types/profile_tab_files.py +69 -0
  3147. hypergram/raw/types/profile_tab_gifs.py +69 -0
  3148. hypergram/raw/types/profile_tab_gifts.py +69 -0
  3149. hypergram/raw/types/profile_tab_links.py +69 -0
  3150. hypergram/raw/types/profile_tab_media.py +69 -0
  3151. hypergram/raw/types/profile_tab_music.py +69 -0
  3152. hypergram/raw/types/profile_tab_posts.py +69 -0
  3153. hypergram/raw/types/profile_tab_voice.py +69 -0
  3154. hypergram/raw/types/public_forward_message.py +74 -0
  3155. hypergram/raw/types/public_forward_story.py +82 -0
  3156. hypergram/raw/types/quick_reply.py +98 -0
  3157. hypergram/raw/types/reaction_count.py +93 -0
  3158. hypergram/raw/types/reaction_custom_emoji.py +74 -0
  3159. hypergram/raw/types/reaction_emoji.py +74 -0
  3160. hypergram/raw/types/reaction_empty.py +69 -0
  3161. hypergram/raw/types/reaction_notifications_from_all.py +69 -0
  3162. hypergram/raw/types/reaction_notifications_from_contacts.py +69 -0
  3163. hypergram/raw/types/reaction_paid.py +69 -0
  3164. hypergram/raw/types/reactions_notify_settings.py +124 -0
  3165. hypergram/raw/types/read_participant_date.py +91 -0
  3166. hypergram/raw/types/received_notify_message.py +91 -0
  3167. hypergram/raw/types/recent_me_url_chat.py +82 -0
  3168. hypergram/raw/types/recent_me_url_chat_invite.py +82 -0
  3169. hypergram/raw/types/recent_me_url_sticker_set.py +82 -0
  3170. hypergram/raw/types/recent_me_url_unknown.py +74 -0
  3171. hypergram/raw/types/recent_me_url_user.py +82 -0
  3172. hypergram/raw/types/recent_story.py +92 -0
  3173. hypergram/raw/types/reply_inline_markup.py +74 -0
  3174. hypergram/raw/types/reply_keyboard.py +109 -0
  3175. hypergram/raw/types/reply_keyboard_force_reply.py +89 -0
  3176. hypergram/raw/types/reply_keyboard_hide.py +74 -0
  3177. hypergram/raw/types/report_result_add_comment.py +92 -0
  3178. hypergram/raw/types/report_result_choose_option.py +92 -0
  3179. hypergram/raw/types/report_result_reported.py +79 -0
  3180. hypergram/raw/types/request_peer_type_broadcast.py +103 -0
  3181. hypergram/raw/types/request_peer_type_chat.py +118 -0
  3182. hypergram/raw/types/request_peer_type_create_bot.py +92 -0
  3183. hypergram/raw/types/request_peer_type_user.py +86 -0
  3184. hypergram/raw/types/requested_peer_channel.py +104 -0
  3185. hypergram/raw/types/requested_peer_chat.py +95 -0
  3186. hypergram/raw/types/requested_peer_user.py +113 -0
  3187. hypergram/raw/types/requirement_to_contact_empty.py +78 -0
  3188. hypergram/raw/types/requirement_to_contact_paid_messages.py +83 -0
  3189. hypergram/raw/types/requirement_to_contact_premium.py +78 -0
  3190. hypergram/raw/types/res_pq.py +108 -0
  3191. hypergram/raw/types/restriction_reason.py +90 -0
  3192. hypergram/raw/types/rpc_answer_dropped.py +99 -0
  3193. hypergram/raw/types/rpc_answer_dropped_running.py +78 -0
  3194. hypergram/raw/types/rpc_answer_unknown.py +78 -0
  3195. hypergram/raw/types/rpc_error.py +82 -0
  3196. hypergram/raw/types/rpc_result.py +82 -0
  3197. hypergram/raw/types/saved_dialog.py +90 -0
  3198. hypergram/raw/types/saved_phone_contact.py +107 -0
  3199. hypergram/raw/types/saved_reaction_tag.py +93 -0
  3200. hypergram/raw/types/saved_star_gift.py +258 -0
  3201. hypergram/raw/types/search_posts_flood.py +116 -0
  3202. hypergram/raw/types/search_result_position.py +90 -0
  3203. hypergram/raw/types/search_results_calendar_period.py +98 -0
  3204. hypergram/raw/types/secure_credentials_encrypted.py +90 -0
  3205. hypergram/raw/types/secure_data.py +90 -0
  3206. hypergram/raw/types/secure_file.py +122 -0
  3207. hypergram/raw/types/secure_file_empty.py +69 -0
  3208. hypergram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py +74 -0
  3209. hypergram/raw/types/secure_password_kdf_algo_sha512.py +74 -0
  3210. hypergram/raw/types/secure_password_kdf_algo_unknown.py +69 -0
  3211. hypergram/raw/types/secure_plain_email.py +74 -0
  3212. hypergram/raw/types/secure_plain_phone.py +74 -0
  3213. hypergram/raw/types/secure_required_type.py +94 -0
  3214. hypergram/raw/types/secure_required_type_one_of.py +74 -0
  3215. hypergram/raw/types/secure_secret_settings.py +90 -0
  3216. hypergram/raw/types/secure_value.py +165 -0
  3217. hypergram/raw/types/secure_value_error.py +90 -0
  3218. hypergram/raw/types/secure_value_error_data.py +98 -0
  3219. hypergram/raw/types/secure_value_error_file.py +90 -0
  3220. hypergram/raw/types/secure_value_error_files.py +90 -0
  3221. hypergram/raw/types/secure_value_error_front_side.py +90 -0
  3222. hypergram/raw/types/secure_value_error_reverse_side.py +90 -0
  3223. hypergram/raw/types/secure_value_error_selfie.py +90 -0
  3224. hypergram/raw/types/secure_value_error_translation_file.py +90 -0
  3225. hypergram/raw/types/secure_value_error_translation_files.py +90 -0
  3226. hypergram/raw/types/secure_value_hash.py +82 -0
  3227. hypergram/raw/types/secure_value_type_address.py +69 -0
  3228. hypergram/raw/types/secure_value_type_bank_statement.py +69 -0
  3229. hypergram/raw/types/secure_value_type_driver_license.py +69 -0
  3230. hypergram/raw/types/secure_value_type_email.py +69 -0
  3231. hypergram/raw/types/secure_value_type_identity_card.py +69 -0
  3232. hypergram/raw/types/secure_value_type_internal_passport.py +69 -0
  3233. hypergram/raw/types/secure_value_type_passport.py +69 -0
  3234. hypergram/raw/types/secure_value_type_passport_registration.py +69 -0
  3235. hypergram/raw/types/secure_value_type_personal_details.py +69 -0
  3236. hypergram/raw/types/secure_value_type_phone.py +69 -0
  3237. hypergram/raw/types/secure_value_type_rental_agreement.py +69 -0
  3238. hypergram/raw/types/secure_value_type_temporary_registration.py +69 -0
  3239. hypergram/raw/types/secure_value_type_utility_bill.py +69 -0
  3240. hypergram/raw/types/send_as_peer.py +82 -0
  3241. hypergram/raw/types/send_message_cancel_action.py +69 -0
  3242. hypergram/raw/types/send_message_choose_contact_action.py +69 -0
  3243. hypergram/raw/types/send_message_choose_sticker_action.py +69 -0
  3244. hypergram/raw/types/send_message_emoji_interaction.py +90 -0
  3245. hypergram/raw/types/send_message_emoji_interaction_seen.py +74 -0
  3246. hypergram/raw/types/send_message_game_play_action.py +69 -0
  3247. hypergram/raw/types/send_message_geo_location_action.py +69 -0
  3248. hypergram/raw/types/send_message_history_import_action.py +74 -0
  3249. hypergram/raw/types/send_message_record_audio_action.py +69 -0
  3250. hypergram/raw/types/send_message_record_round_action.py +69 -0
  3251. hypergram/raw/types/send_message_record_video_action.py +69 -0
  3252. hypergram/raw/types/send_message_text_draft_action.py +82 -0
  3253. hypergram/raw/types/send_message_typing_action.py +69 -0
  3254. hypergram/raw/types/send_message_upload_audio_action.py +74 -0
  3255. hypergram/raw/types/send_message_upload_document_action.py +74 -0
  3256. hypergram/raw/types/send_message_upload_photo_action.py +74 -0
  3257. hypergram/raw/types/send_message_upload_round_action.py +74 -0
  3258. hypergram/raw/types/send_message_upload_video_action.py +74 -0
  3259. hypergram/raw/types/server_dh_inner_data.py +114 -0
  3260. hypergram/raw/types/server_dh_params_fail.py +99 -0
  3261. hypergram/raw/types/server_dh_params_ok.py +99 -0
  3262. hypergram/raw/types/shipping_option.py +90 -0
  3263. hypergram/raw/types/sms_job.py +99 -0
  3264. hypergram/raw/types/smsjobs/__init__.py +26 -0
  3265. hypergram/raw/types/smsjobs/eligible_to_join.py +91 -0
  3266. hypergram/raw/types/smsjobs/status.py +140 -0
  3267. hypergram/raw/types/speaking_in_group_call_action.py +69 -0
  3268. hypergram/raw/types/sponsored_message.py +196 -0
  3269. hypergram/raw/types/sponsored_message_report_option.py +82 -0
  3270. hypergram/raw/types/sponsored_peer.py +102 -0
  3271. hypergram/raw/types/star_gift.py +297 -0
  3272. hypergram/raw/types/star_gift_active_auction_state.py +90 -0
  3273. hypergram/raw/types/star_gift_attribute_backdrop.py +122 -0
  3274. hypergram/raw/types/star_gift_attribute_counter.py +82 -0
  3275. hypergram/raw/types/star_gift_attribute_id_backdrop.py +74 -0
  3276. hypergram/raw/types/star_gift_attribute_id_model.py +74 -0
  3277. hypergram/raw/types/star_gift_attribute_id_pattern.py +74 -0
  3278. hypergram/raw/types/star_gift_attribute_model.py +98 -0
  3279. hypergram/raw/types/star_gift_attribute_original_details.py +104 -0
  3280. hypergram/raw/types/star_gift_attribute_pattern.py +90 -0
  3281. hypergram/raw/types/star_gift_attribute_rarity.py +74 -0
  3282. hypergram/raw/types/star_gift_attribute_rarity_epic.py +69 -0
  3283. hypergram/raw/types/star_gift_attribute_rarity_legendary.py +69 -0
  3284. hypergram/raw/types/star_gift_attribute_rarity_rare.py +69 -0
  3285. hypergram/raw/types/star_gift_attribute_rarity_uncommon.py +69 -0
  3286. hypergram/raw/types/star_gift_auction_acquired_gift.py +133 -0
  3287. hypergram/raw/types/star_gift_auction_round.py +82 -0
  3288. hypergram/raw/types/star_gift_auction_round_extendable.py +98 -0
  3289. hypergram/raw/types/star_gift_auction_state.py +162 -0
  3290. hypergram/raw/types/star_gift_auction_state_finished.py +119 -0
  3291. hypergram/raw/types/star_gift_auction_state_not_modified.py +69 -0
  3292. hypergram/raw/types/star_gift_auction_user_state.py +119 -0
  3293. hypergram/raw/types/star_gift_background.py +90 -0
  3294. hypergram/raw/types/star_gift_collection.py +120 -0
  3295. hypergram/raw/types/star_gift_unique.py +294 -0
  3296. hypergram/raw/types/star_gift_upgrade_price.py +82 -0
  3297. hypergram/raw/types/star_ref_program.py +121 -0
  3298. hypergram/raw/types/stars_amount.py +82 -0
  3299. hypergram/raw/types/stars_gift_option.py +116 -0
  3300. hypergram/raw/types/stars_giveaway_option.py +138 -0
  3301. hypergram/raw/types/stars_giveaway_winners_option.py +90 -0
  3302. hypergram/raw/types/stars_rating.py +101 -0
  3303. hypergram/raw/types/stars_revenue_status.py +107 -0
  3304. hypergram/raw/types/stars_subscription.py +161 -0
  3305. hypergram/raw/types/stars_subscription_pricing.py +82 -0
  3306. hypergram/raw/types/stars_ton_amount.py +74 -0
  3307. hypergram/raw/types/stars_topup_option.py +116 -0
  3308. hypergram/raw/types/stars_transaction.py +360 -0
  3309. hypergram/raw/types/stars_transaction_peer.py +74 -0
  3310. hypergram/raw/types/stars_transaction_peer_ads.py +69 -0
  3311. hypergram/raw/types/stars_transaction_peer_api.py +69 -0
  3312. hypergram/raw/types/stars_transaction_peer_app_store.py +69 -0
  3313. hypergram/raw/types/stars_transaction_peer_fragment.py +69 -0
  3314. hypergram/raw/types/stars_transaction_peer_play_market.py +69 -0
  3315. hypergram/raw/types/stars_transaction_peer_premium_bot.py +69 -0
  3316. hypergram/raw/types/stars_transaction_peer_unsupported.py +69 -0
  3317. hypergram/raw/types/stats/__init__.py +30 -0
  3318. hypergram/raw/types/stats/broadcast_stats.py +251 -0
  3319. hypergram/raw/types/stats/megagroup_stats.py +211 -0
  3320. hypergram/raw/types/stats/message_stats.py +91 -0
  3321. hypergram/raw/types/stats/poll_stats.py +83 -0
  3322. hypergram/raw/types/stats/public_forwards.py +119 -0
  3323. hypergram/raw/types/stats/story_stats.py +91 -0
  3324. hypergram/raw/types/stats_abs_value_and_prev.py +82 -0
  3325. hypergram/raw/types/stats_date_range_days.py +82 -0
  3326. hypergram/raw/types/stats_graph.py +94 -0
  3327. hypergram/raw/types/stats_graph_async.py +83 -0
  3328. hypergram/raw/types/stats_graph_error.py +83 -0
  3329. hypergram/raw/types/stats_group_top_admin.py +98 -0
  3330. hypergram/raw/types/stats_group_top_inviter.py +82 -0
  3331. hypergram/raw/types/stats_group_top_poster.py +90 -0
  3332. hypergram/raw/types/stats_percent_value.py +82 -0
  3333. hypergram/raw/types/stats_url.py +74 -0
  3334. hypergram/raw/types/sticker_keyword.py +82 -0
  3335. hypergram/raw/types/sticker_pack.py +82 -0
  3336. hypergram/raw/types/sticker_set.py +204 -0
  3337. hypergram/raw/types/sticker_set_covered.py +91 -0
  3338. hypergram/raw/types/sticker_set_full_covered.py +107 -0
  3339. hypergram/raw/types/sticker_set_multi_covered.py +91 -0
  3340. hypergram/raw/types/sticker_set_no_covered.py +83 -0
  3341. hypergram/raw/types/stickers/__init__.py +25 -0
  3342. hypergram/raw/types/stickers/suggested_short_name.py +83 -0
  3343. hypergram/raw/types/storage/__init__.py +34 -0
  3344. hypergram/raw/types/storage/file_gif.py +69 -0
  3345. hypergram/raw/types/storage/file_jpeg.py +69 -0
  3346. hypergram/raw/types/storage/file_mov.py +69 -0
  3347. hypergram/raw/types/storage/file_mp3.py +69 -0
  3348. hypergram/raw/types/storage/file_mp4.py +69 -0
  3349. hypergram/raw/types/storage/file_partial.py +69 -0
  3350. hypergram/raw/types/storage/file_pdf.py +69 -0
  3351. hypergram/raw/types/storage/file_png.py +69 -0
  3352. hypergram/raw/types/storage/file_unknown.py +69 -0
  3353. hypergram/raw/types/storage/file_webp.py +69 -0
  3354. hypergram/raw/types/stories/__init__.py +35 -0
  3355. hypergram/raw/types/stories/albums.py +91 -0
  3356. hypergram/raw/types/stories/albums_not_modified.py +78 -0
  3357. hypergram/raw/types/stories/all_stories.py +131 -0
  3358. hypergram/raw/types/stories/all_stories_not_modified.py +94 -0
  3359. hypergram/raw/types/stories/can_send_story_count.py +83 -0
  3360. hypergram/raw/types/stories/found_stories.py +118 -0
  3361. hypergram/raw/types/stories/peer_stories.py +99 -0
  3362. hypergram/raw/types/stories/stories.py +122 -0
  3363. hypergram/raw/types/stories/story_reactions_list.py +118 -0
  3364. hypergram/raw/types/stories/story_views.py +91 -0
  3365. hypergram/raw/types/stories/story_views_list.py +142 -0
  3366. hypergram/raw/types/stories_stealth_mode.py +86 -0
  3367. hypergram/raw/types/story_album.py +114 -0
  3368. hypergram/raw/types/story_fwd_header.py +102 -0
  3369. hypergram/raw/types/story_item.py +253 -0
  3370. hypergram/raw/types/story_item_deleted.py +74 -0
  3371. hypergram/raw/types/story_item_skipped.py +104 -0
  3372. hypergram/raw/types/story_reaction.py +90 -0
  3373. hypergram/raw/types/story_reaction_public_forward.py +74 -0
  3374. hypergram/raw/types/story_reaction_public_repost.py +82 -0
  3375. hypergram/raw/types/story_view.py +106 -0
  3376. hypergram/raw/types/story_view_public_forward.py +88 -0
  3377. hypergram/raw/types/story_view_public_repost.py +96 -0
  3378. hypergram/raw/types/story_views.py +120 -0
  3379. hypergram/raw/types/suggested_post.py +99 -0
  3380. hypergram/raw/types/text_anchor.py +82 -0
  3381. hypergram/raw/types/text_bold.py +74 -0
  3382. hypergram/raw/types/text_concat.py +74 -0
  3383. hypergram/raw/types/text_email.py +82 -0
  3384. hypergram/raw/types/text_empty.py +69 -0
  3385. hypergram/raw/types/text_fixed.py +74 -0
  3386. hypergram/raw/types/text_image.py +90 -0
  3387. hypergram/raw/types/text_italic.py +74 -0
  3388. hypergram/raw/types/text_marked.py +74 -0
  3389. hypergram/raw/types/text_phone.py +82 -0
  3390. hypergram/raw/types/text_plain.py +74 -0
  3391. hypergram/raw/types/text_strike.py +74 -0
  3392. hypergram/raw/types/text_subscript.py +74 -0
  3393. hypergram/raw/types/text_superscript.py +74 -0
  3394. hypergram/raw/types/text_underline.py +74 -0
  3395. hypergram/raw/types/text_url.py +90 -0
  3396. hypergram/raw/types/text_with_entities.py +91 -0
  3397. hypergram/raw/types/theme.py +167 -0
  3398. hypergram/raw/types/theme_settings.py +119 -0
  3399. hypergram/raw/types/timezone.py +90 -0
  3400. hypergram/raw/types/todo_completion.py +90 -0
  3401. hypergram/raw/types/todo_item.py +82 -0
  3402. hypergram/raw/types/todo_list.py +96 -0
  3403. hypergram/raw/types/top_peer.py +82 -0
  3404. hypergram/raw/types/top_peer_category_bots_app.py +69 -0
  3405. hypergram/raw/types/top_peer_category_bots_guest_chat.py +69 -0
  3406. hypergram/raw/types/top_peer_category_bots_inline.py +69 -0
  3407. hypergram/raw/types/top_peer_category_bots_pm.py +69 -0
  3408. hypergram/raw/types/top_peer_category_channels.py +69 -0
  3409. hypergram/raw/types/top_peer_category_correspondents.py +69 -0
  3410. hypergram/raw/types/top_peer_category_forward_chats.py +69 -0
  3411. hypergram/raw/types/top_peer_category_forward_users.py +69 -0
  3412. hypergram/raw/types/top_peer_category_groups.py +69 -0
  3413. hypergram/raw/types/top_peer_category_peers.py +90 -0
  3414. hypergram/raw/types/top_peer_category_phone_calls.py +69 -0
  3415. hypergram/raw/types/update_ai_compose_tones.py +69 -0
  3416. hypergram/raw/types/update_attach_menu_bots.py +69 -0
  3417. hypergram/raw/types/update_auto_save_settings.py +69 -0
  3418. hypergram/raw/types/update_bot_business_connect.py +82 -0
  3419. hypergram/raw/types/update_bot_callback_query.py +126 -0
  3420. hypergram/raw/types/update_bot_chat_boost.py +90 -0
  3421. hypergram/raw/types/update_bot_chat_invite_requester.py +114 -0
  3422. hypergram/raw/types/update_bot_commands.py +90 -0
  3423. hypergram/raw/types/update_bot_delete_business_message.py +98 -0
  3424. hypergram/raw/types/update_bot_edit_business_message.py +102 -0
  3425. hypergram/raw/types/update_bot_guest_chat_query.py +102 -0
  3426. hypergram/raw/types/update_bot_inline_query.py +120 -0
  3427. hypergram/raw/types/update_bot_inline_send.py +112 -0
  3428. hypergram/raw/types/update_bot_menu_button.py +82 -0
  3429. hypergram/raw/types/update_bot_message_reaction.py +122 -0
  3430. hypergram/raw/types/update_bot_message_reactions.py +106 -0
  3431. hypergram/raw/types/update_bot_new_business_message.py +102 -0
  3432. hypergram/raw/types/update_bot_precheckout_query.py +127 -0
  3433. hypergram/raw/types/update_bot_purchased_paid_media.py +90 -0
  3434. hypergram/raw/types/update_bot_shipping_query.py +98 -0
  3435. hypergram/raw/types/update_bot_stopped.py +98 -0
  3436. hypergram/raw/types/update_bot_webhook_json.py +74 -0
  3437. hypergram/raw/types/update_bot_webhook_json_query.py +90 -0
  3438. hypergram/raw/types/update_business_bot_callback_query.py +127 -0
  3439. hypergram/raw/types/update_channel.py +74 -0
  3440. hypergram/raw/types/update_channel_available_messages.py +82 -0
  3441. hypergram/raw/types/update_channel_message_forwards.py +90 -0
  3442. hypergram/raw/types/update_channel_message_views.py +90 -0
  3443. hypergram/raw/types/update_channel_participant.py +144 -0
  3444. hypergram/raw/types/update_channel_read_messages_contents.py +103 -0
  3445. hypergram/raw/types/update_channel_too_long.py +85 -0
  3446. hypergram/raw/types/update_channel_user_typing.py +101 -0
  3447. hypergram/raw/types/update_channel_view_forum_as_messages.py +82 -0
  3448. hypergram/raw/types/update_channel_web_page.py +98 -0
  3449. hypergram/raw/types/update_chat.py +74 -0
  3450. hypergram/raw/types/update_chat_default_banned_rights.py +90 -0
  3451. hypergram/raw/types/update_chat_participant.py +138 -0
  3452. hypergram/raw/types/update_chat_participant_add.py +106 -0
  3453. hypergram/raw/types/update_chat_participant_admin.py +98 -0
  3454. hypergram/raw/types/update_chat_participant_delete.py +90 -0
  3455. hypergram/raw/types/update_chat_participant_rank.py +98 -0
  3456. hypergram/raw/types/update_chat_participants.py +74 -0
  3457. hypergram/raw/types/update_chat_user_typing.py +90 -0
  3458. hypergram/raw/types/update_config.py +69 -0
  3459. hypergram/raw/types/update_contacts_reset.py +69 -0
  3460. hypergram/raw/types/update_dc_options.py +74 -0
  3461. hypergram/raw/types/update_delete_channel_messages.py +98 -0
  3462. hypergram/raw/types/update_delete_group_call_messages.py +82 -0
  3463. hypergram/raw/types/update_delete_messages.py +90 -0
  3464. hypergram/raw/types/update_delete_quick_reply.py +74 -0
  3465. hypergram/raw/types/update_delete_quick_reply_messages.py +82 -0
  3466. hypergram/raw/types/update_delete_scheduled_messages.py +94 -0
  3467. hypergram/raw/types/update_dialog_filter.py +86 -0
  3468. hypergram/raw/types/update_dialog_filter_order.py +74 -0
  3469. hypergram/raw/types/update_dialog_filters.py +69 -0
  3470. hypergram/raw/types/update_dialog_pinned.py +91 -0
  3471. hypergram/raw/types/update_dialog_unread_mark.py +92 -0
  3472. hypergram/raw/types/update_draft_message.py +103 -0
  3473. hypergram/raw/types/update_edit_channel_message.py +90 -0
  3474. hypergram/raw/types/update_edit_message.py +90 -0
  3475. hypergram/raw/types/update_emoji_game_info.py +74 -0
  3476. hypergram/raw/types/update_encrypted_chat_typing.py +74 -0
  3477. hypergram/raw/types/update_encrypted_messages_read.py +90 -0
  3478. hypergram/raw/types/update_encryption.py +82 -0
  3479. hypergram/raw/types/update_faved_stickers.py +69 -0
  3480. hypergram/raw/types/update_folder_peers.py +90 -0
  3481. hypergram/raw/types/update_geo_live_viewed.py +82 -0
  3482. hypergram/raw/types/update_group_call.py +92 -0
  3483. hypergram/raw/types/update_group_call_chain_blocks.py +98 -0
  3484. hypergram/raw/types/update_group_call_connection.py +82 -0
  3485. hypergram/raw/types/update_group_call_encrypted_message.py +90 -0
  3486. hypergram/raw/types/update_group_call_message.py +82 -0
  3487. hypergram/raw/types/update_group_call_participants.py +90 -0
  3488. hypergram/raw/types/update_inline_bot_callback_query.py +118 -0
  3489. hypergram/raw/types/update_lang_pack.py +74 -0
  3490. hypergram/raw/types/update_lang_pack_too_long.py +74 -0
  3491. hypergram/raw/types/update_login_token.py +69 -0
  3492. hypergram/raw/types/update_managed_bot.py +90 -0
  3493. hypergram/raw/types/update_message_extended_media.py +90 -0
  3494. hypergram/raw/types/update_message_id.py +82 -0
  3495. hypergram/raw/types/update_message_poll.py +122 -0
  3496. hypergram/raw/types/update_message_poll_vote.py +106 -0
  3497. hypergram/raw/types/update_message_reactions.py +111 -0
  3498. hypergram/raw/types/update_mono_forum_no_paid_exception.py +90 -0
  3499. hypergram/raw/types/update_move_sticker_set_to_top.py +88 -0
  3500. hypergram/raw/types/update_new_authorization.py +109 -0
  3501. hypergram/raw/types/update_new_channel_message.py +90 -0
  3502. hypergram/raw/types/update_new_encrypted_message.py +82 -0
  3503. hypergram/raw/types/update_new_message.py +90 -0
  3504. hypergram/raw/types/update_new_quick_reply.py +74 -0
  3505. hypergram/raw/types/update_new_scheduled_message.py +74 -0
  3506. hypergram/raw/types/update_new_sticker_set.py +74 -0
  3507. hypergram/raw/types/update_new_story_reaction.py +90 -0
  3508. hypergram/raw/types/update_notify_settings.py +82 -0
  3509. hypergram/raw/types/update_paid_reaction_privacy.py +74 -0
  3510. hypergram/raw/types/update_peer_blocked.py +88 -0
  3511. hypergram/raw/types/update_peer_history_ttl.py +85 -0
  3512. hypergram/raw/types/update_peer_located.py +74 -0
  3513. hypergram/raw/types/update_peer_settings.py +82 -0
  3514. hypergram/raw/types/update_peer_wallpaper.py +92 -0
  3515. hypergram/raw/types/update_pending_join_requests.py +90 -0
  3516. hypergram/raw/types/update_phone_call.py +74 -0
  3517. hypergram/raw/types/update_phone_call_signaling_data.py +82 -0
  3518. hypergram/raw/types/update_pinned_channel_messages.py +106 -0
  3519. hypergram/raw/types/update_pinned_dialogs.py +87 -0
  3520. hypergram/raw/types/update_pinned_forum_topic.py +90 -0
  3521. hypergram/raw/types/update_pinned_forum_topics.py +86 -0
  3522. hypergram/raw/types/update_pinned_messages.py +106 -0
  3523. hypergram/raw/types/update_pinned_saved_dialogs.py +78 -0
  3524. hypergram/raw/types/update_privacy.py +82 -0
  3525. hypergram/raw/types/update_pts_changed.py +69 -0
  3526. hypergram/raw/types/update_quick_replies.py +74 -0
  3527. hypergram/raw/types/update_quick_reply_message.py +74 -0
  3528. hypergram/raw/types/update_read_channel_discussion_inbox.py +110 -0
  3529. hypergram/raw/types/update_read_channel_discussion_outbox.py +90 -0
  3530. hypergram/raw/types/update_read_channel_inbox.py +109 -0
  3531. hypergram/raw/types/update_read_channel_outbox.py +82 -0
  3532. hypergram/raw/types/update_read_featured_emoji_stickers.py +69 -0
  3533. hypergram/raw/types/update_read_featured_stickers.py +69 -0
  3534. hypergram/raw/types/update_read_history_inbox.py +126 -0
  3535. hypergram/raw/types/update_read_history_outbox.py +98 -0
  3536. hypergram/raw/types/update_read_messages_contents.py +101 -0
  3537. hypergram/raw/types/update_read_mono_forum_inbox.py +90 -0
  3538. hypergram/raw/types/update_read_mono_forum_outbox.py +90 -0
  3539. hypergram/raw/types/update_read_stories.py +82 -0
  3540. hypergram/raw/types/update_recent_emoji_statuses.py +69 -0
  3541. hypergram/raw/types/update_recent_reactions.py +69 -0
  3542. hypergram/raw/types/update_recent_stickers.py +69 -0
  3543. hypergram/raw/types/update_saved_dialog_pinned.py +82 -0
  3544. hypergram/raw/types/update_saved_gifs.py +69 -0
  3545. hypergram/raw/types/update_saved_reaction_tags.py +69 -0
  3546. hypergram/raw/types/update_saved_ringtones.py +69 -0
  3547. hypergram/raw/types/update_sent_phone_code.py +74 -0
  3548. hypergram/raw/types/update_sent_story_reaction.py +90 -0
  3549. hypergram/raw/types/update_service_notification.py +121 -0
  3550. hypergram/raw/types/update_short.py +221 -0
  3551. hypergram/raw/types/update_short_chat_message.py +335 -0
  3552. hypergram/raw/types/update_short_message.py +327 -0
  3553. hypergram/raw/types/update_short_sent_message.py +274 -0
  3554. hypergram/raw/types/update_sms_job.py +74 -0
  3555. hypergram/raw/types/update_star_gift_auction_state.py +82 -0
  3556. hypergram/raw/types/update_star_gift_auction_user_state.py +82 -0
  3557. hypergram/raw/types/update_star_gift_craft_fail.py +69 -0
  3558. hypergram/raw/types/update_stars_balance.py +74 -0
  3559. hypergram/raw/types/update_stars_revenue_status.py +82 -0
  3560. hypergram/raw/types/update_sticker_sets.py +80 -0
  3561. hypergram/raw/types/update_sticker_sets_order.py +88 -0
  3562. hypergram/raw/types/update_stories_stealth_mode.py +74 -0
  3563. hypergram/raw/types/update_story.py +82 -0
  3564. hypergram/raw/types/update_story_id.py +82 -0
  3565. hypergram/raw/types/update_theme.py +74 -0
  3566. hypergram/raw/types/update_transcribed_audio.py +106 -0
  3567. hypergram/raw/types/update_user.py +74 -0
  3568. hypergram/raw/types/update_user_emoji_status.py +82 -0
  3569. hypergram/raw/types/update_user_name.py +98 -0
  3570. hypergram/raw/types/update_user_phone.py +82 -0
  3571. hypergram/raw/types/update_user_status.py +82 -0
  3572. hypergram/raw/types/update_user_typing.py +93 -0
  3573. hypergram/raw/types/update_web_page.py +90 -0
  3574. hypergram/raw/types/update_web_view_result_sent.py +74 -0
  3575. hypergram/raw/types/updates/__init__.py +32 -0
  3576. hypergram/raw/types/updates/channel_difference.py +132 -0
  3577. hypergram/raw/types/updates/channel_difference_empty.py +100 -0
  3578. hypergram/raw/types/updates/channel_difference_too_long.py +124 -0
  3579. hypergram/raw/types/updates/difference.py +123 -0
  3580. hypergram/raw/types/updates/difference_empty.py +91 -0
  3581. hypergram/raw/types/updates/difference_slice.py +123 -0
  3582. hypergram/raw/types/updates/difference_too_long.py +83 -0
  3583. hypergram/raw/types/updates/state.py +115 -0
  3584. hypergram/raw/types/updates_combined.py +253 -0
  3585. hypergram/raw/types/updates_t.py +245 -0
  3586. hypergram/raw/types/updates_too_long.py +208 -0
  3587. hypergram/raw/types/upload/__init__.py +29 -0
  3588. hypergram/raw/types/upload/cdn_file.py +83 -0
  3589. hypergram/raw/types/upload/cdn_file_reupload_needed.py +83 -0
  3590. hypergram/raw/types/upload/file.py +99 -0
  3591. hypergram/raw/types/upload/file_cdn_redirect.py +115 -0
  3592. hypergram/raw/types/upload/web_file.py +115 -0
  3593. hypergram/raw/types/url_auth_result_accepted.py +87 -0
  3594. hypergram/raw/types/url_auth_result_default.py +79 -0
  3595. hypergram/raw/types/url_auth_result_request.py +182 -0
  3596. hypergram/raw/types/user.py +450 -0
  3597. hypergram/raw/types/user_empty.py +91 -0
  3598. hypergram/raw/types/user_full.py +553 -0
  3599. hypergram/raw/types/user_profile_photo.py +105 -0
  3600. hypergram/raw/types/user_profile_photo_empty.py +69 -0
  3601. hypergram/raw/types/user_status_empty.py +69 -0
  3602. hypergram/raw/types/user_status_last_month.py +74 -0
  3603. hypergram/raw/types/user_status_last_week.py +74 -0
  3604. hypergram/raw/types/user_status_offline.py +74 -0
  3605. hypergram/raw/types/user_status_online.py +74 -0
  3606. hypergram/raw/types/user_status_recently.py +74 -0
  3607. hypergram/raw/types/username.py +88 -0
  3608. hypergram/raw/types/users/__init__.py +29 -0
  3609. hypergram/raw/types/users/saved_music.py +92 -0
  3610. hypergram/raw/types/users/saved_music_not_modified.py +84 -0
  3611. hypergram/raw/types/users/user_full.py +99 -0
  3612. hypergram/raw/types/users/users.py +83 -0
  3613. hypergram/raw/types/users/users_slice.py +91 -0
  3614. hypergram/raw/types/video_size.py +109 -0
  3615. hypergram/raw/types/video_size_emoj_keyboard.py +82 -0
  3616. hypergram/raw/types/video_size_sticker_markup.py +90 -0
  3617. hypergram/raw/types/wall_paper.py +145 -0
  3618. hypergram/raw/types/wall_paper_no_file.py +109 -0
  3619. hypergram/raw/types/wall_paper_settings.py +143 -0
  3620. hypergram/raw/types/web_authorization.py +138 -0
  3621. hypergram/raw/types/web_document.py +106 -0
  3622. hypergram/raw/types/web_document_no_proxy.py +98 -0
  3623. hypergram/raw/types/web_page.py +242 -0
  3624. hypergram/raw/types/web_page_attribute_ai_compose_tone.py +74 -0
  3625. hypergram/raw/types/web_page_attribute_star_gift_auction.py +82 -0
  3626. hypergram/raw/types/web_page_attribute_star_gift_collection.py +74 -0
  3627. hypergram/raw/types/web_page_attribute_sticker_set.py +88 -0
  3628. hypergram/raw/types/web_page_attribute_story.py +94 -0
  3629. hypergram/raw/types/web_page_attribute_theme.py +88 -0
  3630. hypergram/raw/types/web_page_attribute_unique_star_gift.py +74 -0
  3631. hypergram/raw/types/web_page_empty.py +85 -0
  3632. hypergram/raw/types/web_page_not_modified.py +77 -0
  3633. hypergram/raw/types/web_page_pending.py +93 -0
  3634. hypergram/raw/types/web_view_message_sent.py +87 -0
  3635. hypergram/raw/types/web_view_result_url.py +109 -0
  3636. hypergram/session/__init__.py +20 -0
  3637. hypergram/session/auth.py +306 -0
  3638. hypergram/session/internals/__init__.py +20 -0
  3639. hypergram/session/internals/msg_factory.py +65 -0
  3640. hypergram/session/internals/msg_id.py +37 -0
  3641. hypergram/session/session.py +576 -0
  3642. hypergram/storage/__init__.py +20 -0
  3643. hypergram/storage/sqlite_storage.py +432 -0
  3644. hypergram/storage/storage.py +248 -0
  3645. hypergram/sync.py +109 -0
  3646. hypergram/types/__init__.py +27 -0
  3647. hypergram/types/authorization/__init__.py +39 -0
  3648. hypergram/types/authorization/active_session.py +179 -0
  3649. hypergram/types/authorization/active_sessions.py +56 -0
  3650. hypergram/types/authorization/firebase_authentication_settings.py +57 -0
  3651. hypergram/types/authorization/phone_number_authentication_settings.py +89 -0
  3652. hypergram/types/authorization/sent_code.py +62 -0
  3653. hypergram/types/authorization/terms_of_service.py +56 -0
  3654. hypergram/types/bots_and_keyboards/__init__.py +109 -0
  3655. hypergram/types/bots_and_keyboards/bot_access_settings.py +54 -0
  3656. hypergram/types/bots_and_keyboards/bot_command.py +53 -0
  3657. hypergram/types/bots_and_keyboards/bot_command_scope.py +73 -0
  3658. hypergram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +32 -0
  3659. hypergram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +32 -0
  3660. hypergram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +32 -0
  3661. hypergram/types/bots_and_keyboards/bot_command_scope_chat.py +43 -0
  3662. hypergram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +43 -0
  3663. hypergram/types/bots_and_keyboards/bot_command_scope_chat_member.py +48 -0
  3664. hypergram/types/bots_and_keyboards/bot_command_scope_default.py +33 -0
  3665. hypergram/types/bots_and_keyboards/callback_game.py +29 -0
  3666. hypergram/types/bots_and_keyboards/callback_query.py +350 -0
  3667. hypergram/types/bots_and_keyboards/chat_boost_updated.py +62 -0
  3668. hypergram/types/bots_and_keyboards/chat_shared.py +97 -0
  3669. hypergram/types/bots_and_keyboards/force_reply.py +66 -0
  3670. hypergram/types/bots_and_keyboards/game_high_score.py +70 -0
  3671. hypergram/types/bots_and_keyboards/inline_keyboard_button.py +320 -0
  3672. hypergram/types/bots_and_keyboards/inline_keyboard_markup.py +76 -0
  3673. hypergram/types/bots_and_keyboards/keyboard_button.py +328 -0
  3674. hypergram/types/bots_and_keyboards/keyboard_button_poll_type.py +36 -0
  3675. hypergram/types/bots_and_keyboards/keyboard_button_request_chat.py +97 -0
  3676. hypergram/types/bots_and_keyboards/keyboard_button_request_managed_bot.py +46 -0
  3677. hypergram/types/bots_and_keyboards/keyboard_button_request_users.py +73 -0
  3678. hypergram/types/bots_and_keyboards/labeled_price.py +58 -0
  3679. hypergram/types/bots_and_keyboards/login_url.py +91 -0
  3680. hypergram/types/bots_and_keyboards/managed_bot_updated.py +62 -0
  3681. hypergram/types/bots_and_keyboards/menu_button.py +44 -0
  3682. hypergram/types/bots_and_keyboards/menu_button_commands.py +32 -0
  3683. hypergram/types/bots_and_keyboards/menu_button_default.py +32 -0
  3684. hypergram/types/bots_and_keyboards/menu_button_web_app.py +51 -0
  3685. hypergram/types/bots_and_keyboards/message_reaction_count_updated.py +89 -0
  3686. hypergram/types/bots_and_keyboards/message_reaction_updated.py +125 -0
  3687. hypergram/types/bots_and_keyboards/order_info.py +57 -0
  3688. hypergram/types/bots_and_keyboards/pre_checkout_query.py +137 -0
  3689. hypergram/types/bots_and_keyboards/purchased_paid_media.py +50 -0
  3690. hypergram/types/bots_and_keyboards/reply_keyboard_markup.py +112 -0
  3691. hypergram/types/bots_and_keyboards/reply_keyboard_remove.py +58 -0
  3692. hypergram/types/bots_and_keyboards/sent_guest_message.py +45 -0
  3693. hypergram/types/bots_and_keyboards/sent_web_app_message.py +42 -0
  3694. hypergram/types/bots_and_keyboards/shipping_address.py +82 -0
  3695. hypergram/types/bots_and_keyboards/shipping_option.py +73 -0
  3696. hypergram/types/bots_and_keyboards/shipping_query.py +121 -0
  3697. hypergram/types/bots_and_keyboards/users_shared.py +83 -0
  3698. hypergram/types/bots_and_keyboards/web_app_info.py +37 -0
  3699. hypergram/types/inline_mode/__init__.py +47 -0
  3700. hypergram/types/inline_mode/chosen_inline_result.py +94 -0
  3701. hypergram/types/inline_mode/inline_query.py +181 -0
  3702. hypergram/types/inline_mode/inline_query_result.py +63 -0
  3703. hypergram/types/inline_mode/inline_query_result_animation.py +156 -0
  3704. hypergram/types/inline_mode/inline_query_result_article.py +99 -0
  3705. hypergram/types/inline_mode/inline_query_result_audio.py +120 -0
  3706. hypergram/types/inline_mode/inline_query_result_cached_animation.py +108 -0
  3707. hypergram/types/inline_mode/inline_query_result_cached_audio.py +101 -0
  3708. hypergram/types/inline_mode/inline_query_result_cached_document.py +113 -0
  3709. hypergram/types/inline_mode/inline_query_result_cached_photo.py +111 -0
  3710. hypergram/types/inline_mode/inline_query_result_cached_sticker.py +78 -0
  3711. hypergram/types/inline_mode/inline_query_result_cached_video.py +114 -0
  3712. hypergram/types/inline_mode/inline_query_result_cached_voice.py +108 -0
  3713. hypergram/types/inline_mode/inline_query_result_contact.py +114 -0
  3714. hypergram/types/inline_mode/inline_query_result_document.py +145 -0
  3715. hypergram/types/inline_mode/inline_query_result_location.py +122 -0
  3716. hypergram/types/inline_mode/inline_query_result_photo.py +147 -0
  3717. hypergram/types/inline_mode/inline_query_result_venue.py +131 -0
  3718. hypergram/types/inline_mode/inline_query_result_video.py +151 -0
  3719. hypergram/types/inline_mode/inline_query_result_voice.py +114 -0
  3720. hypergram/types/input_content/__init__.py +110 -0
  3721. hypergram/types/input_content/input_chat_photo.py +113 -0
  3722. hypergram/types/input_content/input_checklist.py +65 -0
  3723. hypergram/types/input_content/input_contact_message_content.py +68 -0
  3724. hypergram/types/input_content/input_credentials.py +38 -0
  3725. hypergram/types/input_content/input_credentials_apple_pay.py +43 -0
  3726. hypergram/types/input_content/input_credentials_google_pay.py +43 -0
  3727. hypergram/types/input_content/input_credentials_new.py +50 -0
  3728. hypergram/types/input_content/input_credentials_saved.py +59 -0
  3729. hypergram/types/input_content/input_invoice.py +36 -0
  3730. hypergram/types/input_content/input_invoice_message.py +51 -0
  3731. hypergram/types/input_content/input_invoice_message_content.py +176 -0
  3732. hypergram/types/input_content/input_invoice_name.py +52 -0
  3733. hypergram/types/input_content/input_location_message_content.py +85 -0
  3734. hypergram/types/input_content/input_media.py +56 -0
  3735. hypergram/types/input_content/input_media_animation.py +160 -0
  3736. hypergram/types/input_content/input_media_audio.py +157 -0
  3737. hypergram/types/input_content/input_media_document.py +127 -0
  3738. hypergram/types/input_content/input_media_live_photo.py +162 -0
  3739. hypergram/types/input_content/input_media_location.py +93 -0
  3740. hypergram/types/input_content/input_media_photo.py +123 -0
  3741. hypergram/types/input_content/input_media_sticker.py +104 -0
  3742. hypergram/types/input_content/input_media_venue.py +114 -0
  3743. hypergram/types/input_content/input_media_video.py +238 -0
  3744. hypergram/types/input_content/input_message_content.py +40 -0
  3745. hypergram/types/input_content/input_phone_contact.py +51 -0
  3746. hypergram/types/input_content/input_poll_media.py +58 -0
  3747. hypergram/types/input_content/input_poll_option.py +57 -0
  3748. hypergram/types/input_content/input_poll_option_media.py +56 -0
  3749. hypergram/types/input_content/input_privacy_rule.py +44 -0
  3750. hypergram/types/input_content/input_privacy_rule_allow_all.py +33 -0
  3751. hypergram/types/input_content/input_privacy_rule_allow_bots.py +33 -0
  3752. hypergram/types/input_content/input_privacy_rule_allow_chats.py +49 -0
  3753. hypergram/types/input_content/input_privacy_rule_allow_close_friends.py +33 -0
  3754. hypergram/types/input_content/input_privacy_rule_allow_contacts.py +33 -0
  3755. hypergram/types/input_content/input_privacy_rule_allow_premium.py +33 -0
  3756. hypergram/types/input_content/input_privacy_rule_allow_users.py +47 -0
  3757. hypergram/types/input_content/input_privacy_rule_disallow_all.py +33 -0
  3758. hypergram/types/input_content/input_privacy_rule_disallow_bots.py +33 -0
  3759. hypergram/types/input_content/input_privacy_rule_disallow_chats.py +49 -0
  3760. hypergram/types/input_content/input_privacy_rule_disallow_contacts.py +33 -0
  3761. hypergram/types/input_content/input_privacy_rule_disallow_users.py +47 -0
  3762. hypergram/types/input_content/input_text_message_content.py +97 -0
  3763. hypergram/types/input_content/input_venue_message_content.py +88 -0
  3764. hypergram/types/list.py +30 -0
  3765. hypergram/types/messages_and_media/__init__.py +291 -0
  3766. hypergram/types/messages_and_media/animation.py +191 -0
  3767. hypergram/types/messages_and_media/auction_bid.py +53 -0
  3768. hypergram/types/messages_and_media/auction_round.py +70 -0
  3769. hypergram/types/messages_and_media/auction_state.py +172 -0
  3770. hypergram/types/messages_and_media/audio.py +121 -0
  3771. hypergram/types/messages_and_media/available_effect.py +88 -0
  3772. hypergram/types/messages_and_media/boosts_status.py +89 -0
  3773. hypergram/types/messages_and_media/business_message.py +106 -0
  3774. hypergram/types/messages_and_media/chat_background.py +167 -0
  3775. hypergram/types/messages_and_media/chat_boost.py +108 -0
  3776. hypergram/types/messages_and_media/chat_has_protected_content_disable_requested.py +45 -0
  3777. hypergram/types/messages_and_media/chat_has_protected_content_toggled.py +64 -0
  3778. hypergram/types/messages_and_media/chat_owner_changed.py +49 -0
  3779. hypergram/types/messages_and_media/chat_owner_left.py +49 -0
  3780. hypergram/types/messages_and_media/chat_theme.py +51 -0
  3781. hypergram/types/messages_and_media/checked_gift_code.py +98 -0
  3782. hypergram/types/messages_and_media/checklist.py +111 -0
  3783. hypergram/types/messages_and_media/checklist_task.py +88 -0
  3784. hypergram/types/messages_and_media/checklist_tasks_added.py +63 -0
  3785. hypergram/types/messages_and_media/checklist_tasks_done.py +63 -0
  3786. hypergram/types/messages_and_media/contact.py +71 -0
  3787. hypergram/types/messages_and_media/contact_registered.py +29 -0
  3788. hypergram/types/messages_and_media/craft_gift_result.py +58 -0
  3789. hypergram/types/messages_and_media/dice.py +47 -0
  3790. hypergram/types/messages_and_media/direct_message_price_changed.py +56 -0
  3791. hypergram/types/messages_and_media/direct_messages_topic.py +105 -0
  3792. hypergram/types/messages_and_media/document.py +98 -0
  3793. hypergram/types/messages_and_media/external_reply_info.py +334 -0
  3794. hypergram/types/messages_and_media/fact_check.py +72 -0
  3795. hypergram/types/messages_and_media/formatted_text.py +80 -0
  3796. hypergram/types/messages_and_media/forum_topic.py +161 -0
  3797. hypergram/types/messages_and_media/forum_topic_closed.py +29 -0
  3798. hypergram/types/messages_and_media/forum_topic_created.py +64 -0
  3799. hypergram/types/messages_and_media/forum_topic_edited.py +70 -0
  3800. hypergram/types/messages_and_media/forum_topic_reopened.py +29 -0
  3801. hypergram/types/messages_and_media/game.py +98 -0
  3802. hypergram/types/messages_and_media/general_forum_topic_hidden.py +29 -0
  3803. hypergram/types/messages_and_media/general_forum_topic_unhidden.py +29 -0
  3804. hypergram/types/messages_and_media/gift.py +1041 -0
  3805. hypergram/types/messages_and_media/gift_attribute.py +175 -0
  3806. hypergram/types/messages_and_media/gift_auction.py +55 -0
  3807. hypergram/types/messages_and_media/gift_auction_state.py +69 -0
  3808. hypergram/types/messages_and_media/gift_collection.py +73 -0
  3809. hypergram/types/messages_and_media/gift_purchase_limit.py +52 -0
  3810. hypergram/types/messages_and_media/gift_resale_parameters.py +69 -0
  3811. hypergram/types/messages_and_media/gift_resale_price.py +83 -0
  3812. hypergram/types/messages_and_media/gift_upgrade_preview.py +84 -0
  3813. hypergram/types/messages_and_media/gift_upgrade_price.py +53 -0
  3814. hypergram/types/messages_and_media/gift_upgrade_variants.py +72 -0
  3815. hypergram/types/messages_and_media/gifted_premium.py +135 -0
  3816. hypergram/types/messages_and_media/gifted_stars.py +120 -0
  3817. hypergram/types/messages_and_media/gifted_ton.py +96 -0
  3818. hypergram/types/messages_and_media/giveaway.py +106 -0
  3819. hypergram/types/messages_and_media/giveaway_completed.py +95 -0
  3820. hypergram/types/messages_and_media/giveaway_created.py +57 -0
  3821. hypergram/types/messages_and_media/giveaway_prize_stars.py +119 -0
  3822. hypergram/types/messages_and_media/giveaway_winners.py +150 -0
  3823. hypergram/types/messages_and_media/input_checklist_task.py +72 -0
  3824. hypergram/types/messages_and_media/invoice.py +162 -0
  3825. hypergram/types/messages_and_media/link_preview_options.py +87 -0
  3826. hypergram/types/messages_and_media/live_photo.py +102 -0
  3827. hypergram/types/messages_and_media/location.py +131 -0
  3828. hypergram/types/messages_and_media/managed_bot_created.py +56 -0
  3829. hypergram/types/messages_and_media/mask_position.py +70 -0
  3830. hypergram/types/messages_and_media/media_area.py +287 -0
  3831. hypergram/types/messages_and_media/message.py +9565 -0
  3832. hypergram/types/messages_and_media/message_content.py +306 -0
  3833. hypergram/types/messages_and_media/message_entity.py +205 -0
  3834. hypergram/types/messages_and_media/message_origin.py +94 -0
  3835. hypergram/types/messages_and_media/message_origin_channel.py +61 -0
  3836. hypergram/types/messages_and_media/message_origin_chat.py +56 -0
  3837. hypergram/types/messages_and_media/message_origin_hidden_user.py +51 -0
  3838. hypergram/types/messages_and_media/message_origin_import.py +50 -0
  3839. hypergram/types/messages_and_media/message_origin_user.py +51 -0
  3840. hypergram/types/messages_and_media/message_reactions.py +90 -0
  3841. hypergram/types/messages_and_media/my_boost.py +79 -0
  3842. hypergram/types/messages_and_media/paid_media_info.py +93 -0
  3843. hypergram/types/messages_and_media/paid_media_preview.py +55 -0
  3844. hypergram/types/messages_and_media/paid_messages_price_changed.py +48 -0
  3845. hypergram/types/messages_and_media/paid_messages_refunded.py +54 -0
  3846. hypergram/types/messages_and_media/paid_reactor.py +86 -0
  3847. hypergram/types/messages_and_media/payment_form.py +169 -0
  3848. hypergram/types/messages_and_media/payment_option.py +50 -0
  3849. hypergram/types/messages_and_media/payment_result.py +66 -0
  3850. hypergram/types/messages_and_media/photo.py +130 -0
  3851. hypergram/types/messages_and_media/poll.py +372 -0
  3852. hypergram/types/messages_and_media/poll_option.py +91 -0
  3853. hypergram/types/messages_and_media/poll_option_added.py +69 -0
  3854. hypergram/types/messages_and_media/poll_option_deleted.py +69 -0
  3855. hypergram/types/messages_and_media/premium_gift_code.py +141 -0
  3856. hypergram/types/messages_and_media/proximity_alert_triggered.py +65 -0
  3857. hypergram/types/messages_and_media/reaction.py +97 -0
  3858. hypergram/types/messages_and_media/refunded_payment.py +81 -0
  3859. hypergram/types/messages_and_media/reply_parameters.py +88 -0
  3860. hypergram/types/messages_and_media/restriction_reason.py +62 -0
  3861. hypergram/types/messages_and_media/saved_credentials.py +50 -0
  3862. hypergram/types/messages_and_media/screenshot_taken.py +29 -0
  3863. hypergram/types/messages_and_media/star_amount.py +54 -0
  3864. hypergram/types/messages_and_media/sticker.py +287 -0
  3865. hypergram/types/messages_and_media/story.py +2183 -0
  3866. hypergram/types/messages_and_media/story_view.py +75 -0
  3867. hypergram/types/messages_and_media/stripped_thumbnail.py +47 -0
  3868. hypergram/types/messages_and_media/successful_payment.py +141 -0
  3869. hypergram/types/messages_and_media/suggested_post_approval_failed.py +88 -0
  3870. hypergram/types/messages_and_media/suggested_post_approved.py +93 -0
  3871. hypergram/types/messages_and_media/suggested_post_declined.py +86 -0
  3872. hypergram/types/messages_and_media/suggested_post_info.py +73 -0
  3873. hypergram/types/messages_and_media/suggested_post_paid.py +101 -0
  3874. hypergram/types/messages_and_media/suggested_post_parameters.py +53 -0
  3875. hypergram/types/messages_and_media/suggested_post_price.py +106 -0
  3876. hypergram/types/messages_and_media/suggested_post_refunded.py +92 -0
  3877. hypergram/types/messages_and_media/text_quote.py +83 -0
  3878. hypergram/types/messages_and_media/thumbnail.py +111 -0
  3879. hypergram/types/messages_and_media/upgraded_gift_attribute_id.py +58 -0
  3880. hypergram/types/messages_and_media/upgraded_gift_attribute_id_backdrop.py +41 -0
  3881. hypergram/types/messages_and_media/upgraded_gift_attribute_id_model.py +41 -0
  3882. hypergram/types/messages_and_media/upgraded_gift_attribute_id_symbol.py +41 -0
  3883. hypergram/types/messages_and_media/upgraded_gift_attribute_rarity.py +131 -0
  3884. hypergram/types/messages_and_media/upgraded_gift_original_details.py +74 -0
  3885. hypergram/types/messages_and_media/upgraded_gift_purchase_offer.py +138 -0
  3886. hypergram/types/messages_and_media/upgraded_gift_value_info.py +124 -0
  3887. hypergram/types/messages_and_media/venue.py +76 -0
  3888. hypergram/types/messages_and_media/video.py +174 -0
  3889. hypergram/types/messages_and_media/video_note.py +115 -0
  3890. hypergram/types/messages_and_media/voice.py +102 -0
  3891. hypergram/types/messages_and_media/web_app_data.py +53 -0
  3892. hypergram/types/messages_and_media/web_page.py +262 -0
  3893. hypergram/types/messages_and_media/write_access_allowed.py +57 -0
  3894. hypergram/types/object.py +127 -0
  3895. hypergram/types/update.py +27 -0
  3896. hypergram/types/user_and_chats/__init__.py +118 -0
  3897. hypergram/types/user_and_chats/accepted_gift_types.py +85 -0
  3898. hypergram/types/user_and_chats/birthday.py +69 -0
  3899. hypergram/types/user_and_chats/bot_verification.py +63 -0
  3900. hypergram/types/user_and_chats/business_bot_rights.py +125 -0
  3901. hypergram/types/user_and_chats/business_connection.py +85 -0
  3902. hypergram/types/user_and_chats/business_intro.py +74 -0
  3903. hypergram/types/user_and_chats/business_recipients.py +78 -0
  3904. hypergram/types/user_and_chats/business_weekly_open.py +49 -0
  3905. hypergram/types/user_and_chats/business_working_hours.py +62 -0
  3906. hypergram/types/user_and_chats/chat.py +1964 -0
  3907. hypergram/types/user_and_chats/chat_admin_with_invite_links.py +63 -0
  3908. hypergram/types/user_and_chats/chat_administrator_rights.py +160 -0
  3909. hypergram/types/user_and_chats/chat_color.py +64 -0
  3910. hypergram/types/user_and_chats/chat_event.py +536 -0
  3911. hypergram/types/user_and_chats/chat_event_filter.py +175 -0
  3912. hypergram/types/user_and_chats/chat_folder_invite_link_info.py +96 -0
  3913. hypergram/types/user_and_chats/chat_invite_link.py +130 -0
  3914. hypergram/types/user_and_chats/chat_join_request.py +139 -0
  3915. hypergram/types/user_and_chats/chat_joiner.py +82 -0
  3916. hypergram/types/user_and_chats/chat_member.py +247 -0
  3917. hypergram/types/user_and_chats/chat_member_updated.py +112 -0
  3918. hypergram/types/user_and_chats/chat_permissions.py +213 -0
  3919. hypergram/types/user_and_chats/chat_photo.py +125 -0
  3920. hypergram/types/user_and_chats/chat_reactions.py +69 -0
  3921. hypergram/types/user_and_chats/chat_settings.py +174 -0
  3922. hypergram/types/user_and_chats/dialog.py +121 -0
  3923. hypergram/types/user_and_chats/emoji_status.py +127 -0
  3924. hypergram/types/user_and_chats/failed_to_add_member.py +55 -0
  3925. hypergram/types/user_and_chats/folder.py +507 -0
  3926. hypergram/types/user_and_chats/folder_invite_link.py +57 -0
  3927. hypergram/types/user_and_chats/found_contacts.py +74 -0
  3928. hypergram/types/user_and_chats/global_privacy_settings.py +115 -0
  3929. hypergram/types/user_and_chats/group_call_member.py +149 -0
  3930. hypergram/types/user_and_chats/history_cleared.py +29 -0
  3931. hypergram/types/user_and_chats/invite_link_importer.py +61 -0
  3932. hypergram/types/user_and_chats/phone_call_ended.py +63 -0
  3933. hypergram/types/user_and_chats/phone_call_started.py +49 -0
  3934. hypergram/types/user_and_chats/privacy_rule.py +58 -0
  3935. hypergram/types/user_and_chats/restriction.py +50 -0
  3936. hypergram/types/user_and_chats/stories_stealth_mode.py +47 -0
  3937. hypergram/types/user_and_chats/user.py +953 -0
  3938. hypergram/types/user_and_chats/user_rating.py +72 -0
  3939. hypergram/types/user_and_chats/username.py +50 -0
  3940. hypergram/types/user_and_chats/verification_status.py +75 -0
  3941. hypergram/types/user_and_chats/video_chat_ended.py +41 -0
  3942. hypergram/types/user_and_chats/video_chat_members_invited.py +50 -0
  3943. hypergram/types/user_and_chats/video_chat_scheduled.py +43 -0
  3944. hypergram/types/user_and_chats/video_chat_started.py +29 -0
  3945. hypergram/utils.py +747 -0
  3946. hypergram-1.1.0.dist-info/METADATA +164 -0
  3947. hypergram-1.1.0.dist-info/RECORD +3950 -0
  3948. hypergram-1.1.0.dist-info/WHEEL +4 -0
  3949. hypergram-1.1.0.dist-info/licenses/COPYING +674 -0
  3950. hypergram-1.1.0.dist-info/licenses/COPYING.lesser +165 -0
@@ -0,0 +1,56 @@
1
+ # hypergram - Telegram MTProto API Client Library for Python
2
+ # Copyright (C) 2017-present Saif<https://github.com/delivrance>
3
+ #
4
+ # This file is part of hypergram.
5
+ #
6
+ # hypergram 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
+ # hypergram 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 hypergram. 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 TYPE_CHECKING, Union
26
+
27
+ from hypergram import raw
28
+ from hypergram.raw.core import BaseTypeMeta
29
+
30
+
31
+ if TYPE_CHECKING:
32
+ MessageViews = Union[raw.types.MessageViews]
33
+ else:
34
+ # noinspection PyRedeclaration
35
+ class MessageViews(metaclass=BaseTypeMeta): # type: ignore
36
+ """Telegram API base type.
37
+
38
+ Constructors:
39
+ This base type has 1 constructor available.
40
+
41
+ .. currentmodule:: hypergram.raw.types
42
+
43
+ .. autosummary::
44
+ :nosignatures:
45
+
46
+ MessageViews
47
+ """
48
+
49
+ QUALNAME = "hypergram.raw.base.MessageViews"
50
+ __union_types__ = Union[raw.types.MessageViews]
51
+
52
+ def __init__(self):
53
+ raise TypeError("Base types can only be used for type checking purposes: "
54
+ "you tried to use a base type instance as argument, "
55
+ "but you need to instantiate one of its constructors instead. "
56
+ "More info: https://docs.hypergram.icu/telegram/base/message-views")
@@ -0,0 +1,87 @@
1
+ # hypergram - Telegram MTProto API Client Library for Python
2
+ # Copyright (C) 2017-present Saif<https://github.com/delivrance>
3
+ #
4
+ # This file is part of hypergram.
5
+ #
6
+ # hypergram 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
+ # hypergram 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 hypergram. 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 .dialogs import Dialogs
26
+ from .messages import Messages
27
+ from .chats import Chats
28
+ from .chat_full import ChatFull
29
+ from .affected_history import AffectedHistory
30
+ from .dh_config import DhConfig
31
+ from .sent_encrypted_message import SentEncryptedMessage
32
+ from .stickers import Stickers
33
+ from .all_stickers import AllStickers
34
+ from .affected_messages import AffectedMessages
35
+ from .sticker_set import StickerSet
36
+ from .saved_gifs import SavedGifs
37
+ from .bot_results import BotResults
38
+ from .bot_callback_answer import BotCallbackAnswer
39
+ from .message_edit_data import MessageEditData
40
+ from .peer_dialogs import PeerDialogs
41
+ from .featured_stickers import FeaturedStickers
42
+ from .recent_stickers import RecentStickers
43
+ from .archived_stickers import ArchivedStickers
44
+ from .sticker_set_install_result import StickerSetInstallResult
45
+ from .high_scores import HighScores
46
+ from .faved_stickers import FavedStickers
47
+ from .found_sticker_sets import FoundStickerSets
48
+ from .search_counter import SearchCounter
49
+ from .inactive_chats import InactiveChats
50
+ from .votes_list import VotesList
51
+ from .message_views import MessageViews
52
+ from .discussion_message import DiscussionMessage
53
+ from .history_import import HistoryImport
54
+ from .history_import_parsed import HistoryImportParsed
55
+ from .affected_found_messages import AffectedFoundMessages
56
+ from .exported_chat_invites import ExportedChatInvites
57
+ from .exported_chat_invite import ExportedChatInvite
58
+ from .chat_invite_importers import ChatInviteImporters
59
+ from .chat_admins_with_invites import ChatAdminsWithInvites
60
+ from .checked_history_import_peer import CheckedHistoryImportPeer
61
+ from .sponsored_messages import SponsoredMessages
62
+ from .search_results_calendar import SearchResultsCalendar
63
+ from .search_results_positions import SearchResultsPositions
64
+ from .peer_settings import PeerSettings
65
+ from .message_reactions_list import MessageReactionsList
66
+ from .available_reactions import AvailableReactions
67
+ from .transcribed_audio import TranscribedAudio
68
+ from .reactions import Reactions
69
+ from .forum_topics import ForumTopics
70
+ from .emoji_groups import EmojiGroups
71
+ from .translated_text import TranslatedText
72
+ from .bot_app import BotApp
73
+ from .web_page import WebPage
74
+ from .saved_dialogs import SavedDialogs
75
+ from .saved_reaction_tags import SavedReactionTags
76
+ from .quick_replies import QuickReplies
77
+ from .dialog_filters import DialogFilters
78
+ from .my_stickers import MyStickers
79
+ from .invited_users import InvitedUsers
80
+ from .available_effects import AvailableEffects
81
+ from .bot_prepared_inline_message import BotPreparedInlineMessage
82
+ from .prepared_inline_message import PreparedInlineMessage
83
+ from .found_stickers import FoundStickers
84
+ from .web_page_preview import WebPagePreview
85
+ from .emoji_game_outcome import EmojiGameOutcome
86
+ from .emoji_game_info import EmojiGameInfo
87
+ from .composed_message_with_ai import ComposedMessageWithAI
@@ -0,0 +1,66 @@
1
+ # hypergram - Telegram MTProto API Client Library for Python
2
+ # Copyright (C) 2017-present Saif<https://github.com/delivrance>
3
+ #
4
+ # This file is part of hypergram.
5
+ #
6
+ # hypergram 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
+ # hypergram 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 hypergram. 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 TYPE_CHECKING, Union
26
+
27
+ from hypergram import raw
28
+ from hypergram.raw.core import BaseTypeMeta
29
+
30
+
31
+ if TYPE_CHECKING:
32
+ AffectedFoundMessages = Union[raw.types.messages.AffectedFoundMessages]
33
+ else:
34
+ # noinspection PyRedeclaration
35
+ class AffectedFoundMessages(metaclass=BaseTypeMeta): # type: ignore
36
+ """Telegram API base type.
37
+
38
+ Constructors:
39
+ This base type has 1 constructor available.
40
+
41
+ .. currentmodule:: hypergram.raw.types
42
+
43
+ .. autosummary::
44
+ :nosignatures:
45
+
46
+ messages.AffectedFoundMessages
47
+
48
+ Functions:
49
+ This object can be returned by 1 function.
50
+
51
+ .. currentmodule:: hypergram.raw.functions
52
+
53
+ .. autosummary::
54
+ :nosignatures:
55
+
56
+ messages.DeletePhoneCallHistory
57
+ """
58
+
59
+ QUALNAME = "hypergram.raw.base.messages.AffectedFoundMessages"
60
+ __union_types__ = Union[raw.types.messages.AffectedFoundMessages]
61
+
62
+ def __init__(self):
63
+ raise TypeError("Base types can only be used for type checking purposes: "
64
+ "you tried to use a base type instance as argument, "
65
+ "but you need to instantiate one of its constructors instead. "
66
+ "More info: https://docs.hypergram.icu/telegram/base/affected-found-messages")
@@ -0,0 +1,73 @@
1
+ # hypergram - Telegram MTProto API Client Library for Python
2
+ # Copyright (C) 2017-present Saif<https://github.com/delivrance>
3
+ #
4
+ # This file is part of hypergram.
5
+ #
6
+ # hypergram 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
+ # hypergram 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 hypergram. 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 TYPE_CHECKING, Union
26
+
27
+ from hypergram import raw
28
+ from hypergram.raw.core import BaseTypeMeta
29
+
30
+
31
+ if TYPE_CHECKING:
32
+ AffectedHistory = Union[raw.types.messages.AffectedHistory]
33
+ else:
34
+ # noinspection PyRedeclaration
35
+ class AffectedHistory(metaclass=BaseTypeMeta): # type: ignore
36
+ """Telegram API base type.
37
+
38
+ Constructors:
39
+ This base type has 1 constructor available.
40
+
41
+ .. currentmodule:: hypergram.raw.types
42
+
43
+ .. autosummary::
44
+ :nosignatures:
45
+
46
+ messages.AffectedHistory
47
+
48
+ Functions:
49
+ This object can be returned by 8 functions.
50
+
51
+ .. currentmodule:: hypergram.raw.functions
52
+
53
+ .. autosummary::
54
+ :nosignatures:
55
+
56
+ messages.DeleteHistory
57
+ messages.ReadMentions
58
+ messages.UnpinAllMessages
59
+ messages.ReadReactions
60
+ messages.DeleteSavedHistory
61
+ messages.DeleteTopicHistory
62
+ messages.ReadPollVotes
63
+ channels.DeleteParticipantHistory
64
+ """
65
+
66
+ QUALNAME = "hypergram.raw.base.messages.AffectedHistory"
67
+ __union_types__ = Union[raw.types.messages.AffectedHistory]
68
+
69
+ def __init__(self):
70
+ raise TypeError("Base types can only be used for type checking purposes: "
71
+ "you tried to use a base type instance as argument, "
72
+ "but you need to instantiate one of its constructors instead. "
73
+ "More info: https://docs.hypergram.icu/telegram/base/affected-history")
@@ -0,0 +1,69 @@
1
+ # hypergram - Telegram MTProto API Client Library for Python
2
+ # Copyright (C) 2017-present Saif<https://github.com/delivrance>
3
+ #
4
+ # This file is part of hypergram.
5
+ #
6
+ # hypergram 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
+ # hypergram 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 hypergram. 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 TYPE_CHECKING, Union
26
+
27
+ from hypergram import raw
28
+ from hypergram.raw.core import BaseTypeMeta
29
+
30
+
31
+ if TYPE_CHECKING:
32
+ AffectedMessages = Union[raw.types.messages.AffectedMessages]
33
+ else:
34
+ # noinspection PyRedeclaration
35
+ class AffectedMessages(metaclass=BaseTypeMeta): # type: ignore
36
+ """Telegram API base type.
37
+
38
+ Constructors:
39
+ This base type has 1 constructor available.
40
+
41
+ .. currentmodule:: hypergram.raw.types
42
+
43
+ .. autosummary::
44
+ :nosignatures:
45
+
46
+ messages.AffectedMessages
47
+
48
+ Functions:
49
+ This object can be returned by 4 functions.
50
+
51
+ .. currentmodule:: hypergram.raw.functions
52
+
53
+ .. autosummary::
54
+ :nosignatures:
55
+
56
+ messages.ReadHistory
57
+ messages.DeleteMessages
58
+ messages.ReadMessageContents
59
+ channels.DeleteMessages
60
+ """
61
+
62
+ QUALNAME = "hypergram.raw.base.messages.AffectedMessages"
63
+ __union_types__ = Union[raw.types.messages.AffectedMessages]
64
+
65
+ def __init__(self):
66
+ raise TypeError("Base types can only be used for type checking purposes: "
67
+ "you tried to use a base type instance as argument, "
68
+ "but you need to instantiate one of its constructors instead. "
69
+ "More info: https://docs.hypergram.icu/telegram/base/affected-messages")
@@ -0,0 +1,69 @@
1
+ # hypergram - Telegram MTProto API Client Library for Python
2
+ # Copyright (C) 2017-present Saif<https://github.com/delivrance>
3
+ #
4
+ # This file is part of hypergram.
5
+ #
6
+ # hypergram 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
+ # hypergram 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 hypergram. 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 TYPE_CHECKING, Union
26
+
27
+ from hypergram import raw
28
+ from hypergram.raw.core import BaseTypeMeta
29
+
30
+
31
+ if TYPE_CHECKING:
32
+ AllStickers = Union[raw.types.messages.AllStickers, raw.types.messages.AllStickersNotModified]
33
+ else:
34
+ # noinspection PyRedeclaration
35
+ class AllStickers(metaclass=BaseTypeMeta): # type: ignore
36
+ """Telegram API base type.
37
+
38
+ Constructors:
39
+ This base type has 2 constructors available.
40
+
41
+ .. currentmodule:: hypergram.raw.types
42
+
43
+ .. autosummary::
44
+ :nosignatures:
45
+
46
+ messages.AllStickers
47
+ messages.AllStickersNotModified
48
+
49
+ Functions:
50
+ This object can be returned by 3 functions.
51
+
52
+ .. currentmodule:: hypergram.raw.functions
53
+
54
+ .. autosummary::
55
+ :nosignatures:
56
+
57
+ messages.GetAllStickers
58
+ messages.GetMaskStickers
59
+ messages.GetEmojiStickers
60
+ """
61
+
62
+ QUALNAME = "hypergram.raw.base.messages.AllStickers"
63
+ __union_types__ = Union[raw.types.messages.AllStickers, raw.types.messages.AllStickersNotModified]
64
+
65
+ def __init__(self):
66
+ raise TypeError("Base types can only be used for type checking purposes: "
67
+ "you tried to use a base type instance as argument, "
68
+ "but you need to instantiate one of its constructors instead. "
69
+ "More info: https://docs.hypergram.icu/telegram/base/all-stickers")
@@ -0,0 +1,66 @@
1
+ # hypergram - Telegram MTProto API Client Library for Python
2
+ # Copyright (C) 2017-present Saif<https://github.com/delivrance>
3
+ #
4
+ # This file is part of hypergram.
5
+ #
6
+ # hypergram 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
+ # hypergram 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 hypergram. 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 TYPE_CHECKING, Union
26
+
27
+ from hypergram import raw
28
+ from hypergram.raw.core import BaseTypeMeta
29
+
30
+
31
+ if TYPE_CHECKING:
32
+ ArchivedStickers = Union[raw.types.messages.ArchivedStickers]
33
+ else:
34
+ # noinspection PyRedeclaration
35
+ class ArchivedStickers(metaclass=BaseTypeMeta): # type: ignore
36
+ """Telegram API base type.
37
+
38
+ Constructors:
39
+ This base type has 1 constructor available.
40
+
41
+ .. currentmodule:: hypergram.raw.types
42
+
43
+ .. autosummary::
44
+ :nosignatures:
45
+
46
+ messages.ArchivedStickers
47
+
48
+ Functions:
49
+ This object can be returned by 1 function.
50
+
51
+ .. currentmodule:: hypergram.raw.functions
52
+
53
+ .. autosummary::
54
+ :nosignatures:
55
+
56
+ messages.GetArchivedStickers
57
+ """
58
+
59
+ QUALNAME = "hypergram.raw.base.messages.ArchivedStickers"
60
+ __union_types__ = Union[raw.types.messages.ArchivedStickers]
61
+
62
+ def __init__(self):
63
+ raise TypeError("Base types can only be used for type checking purposes: "
64
+ "you tried to use a base type instance as argument, "
65
+ "but you need to instantiate one of its constructors instead. "
66
+ "More info: https://docs.hypergram.icu/telegram/base/archived-stickers")
@@ -0,0 +1,67 @@
1
+ # hypergram - Telegram MTProto API Client Library for Python
2
+ # Copyright (C) 2017-present Saif<https://github.com/delivrance>
3
+ #
4
+ # This file is part of hypergram.
5
+ #
6
+ # hypergram 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
+ # hypergram 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 hypergram. 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 TYPE_CHECKING, Union
26
+
27
+ from hypergram import raw
28
+ from hypergram.raw.core import BaseTypeMeta
29
+
30
+
31
+ if TYPE_CHECKING:
32
+ AvailableEffects = Union[raw.types.messages.AvailableEffects, raw.types.messages.AvailableEffectsNotModified]
33
+ else:
34
+ # noinspection PyRedeclaration
35
+ class AvailableEffects(metaclass=BaseTypeMeta): # type: ignore
36
+ """Telegram API base type.
37
+
38
+ Constructors:
39
+ This base type has 2 constructors available.
40
+
41
+ .. currentmodule:: hypergram.raw.types
42
+
43
+ .. autosummary::
44
+ :nosignatures:
45
+
46
+ messages.AvailableEffects
47
+ messages.AvailableEffectsNotModified
48
+
49
+ Functions:
50
+ This object can be returned by 1 function.
51
+
52
+ .. currentmodule:: hypergram.raw.functions
53
+
54
+ .. autosummary::
55
+ :nosignatures:
56
+
57
+ messages.GetAvailableEffects
58
+ """
59
+
60
+ QUALNAME = "hypergram.raw.base.messages.AvailableEffects"
61
+ __union_types__ = Union[raw.types.messages.AvailableEffects, raw.types.messages.AvailableEffectsNotModified]
62
+
63
+ def __init__(self):
64
+ raise TypeError("Base types can only be used for type checking purposes: "
65
+ "you tried to use a base type instance as argument, "
66
+ "but you need to instantiate one of its constructors instead. "
67
+ "More info: https://docs.hypergram.icu/telegram/base/available-effects")
@@ -0,0 +1,67 @@
1
+ # hypergram - Telegram MTProto API Client Library for Python
2
+ # Copyright (C) 2017-present Saif<https://github.com/delivrance>
3
+ #
4
+ # This file is part of hypergram.
5
+ #
6
+ # hypergram 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
+ # hypergram 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 hypergram. 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 TYPE_CHECKING, Union
26
+
27
+ from hypergram import raw
28
+ from hypergram.raw.core import BaseTypeMeta
29
+
30
+
31
+ if TYPE_CHECKING:
32
+ AvailableReactions = Union[raw.types.messages.AvailableReactions, raw.types.messages.AvailableReactionsNotModified]
33
+ else:
34
+ # noinspection PyRedeclaration
35
+ class AvailableReactions(metaclass=BaseTypeMeta): # type: ignore
36
+ """Telegram API base type.
37
+
38
+ Constructors:
39
+ This base type has 2 constructors available.
40
+
41
+ .. currentmodule:: hypergram.raw.types
42
+
43
+ .. autosummary::
44
+ :nosignatures:
45
+
46
+ messages.AvailableReactions
47
+ messages.AvailableReactionsNotModified
48
+
49
+ Functions:
50
+ This object can be returned by 1 function.
51
+
52
+ .. currentmodule:: hypergram.raw.functions
53
+
54
+ .. autosummary::
55
+ :nosignatures:
56
+
57
+ messages.GetAvailableReactions
58
+ """
59
+
60
+ QUALNAME = "hypergram.raw.base.messages.AvailableReactions"
61
+ __union_types__ = Union[raw.types.messages.AvailableReactions, raw.types.messages.AvailableReactionsNotModified]
62
+
63
+ def __init__(self):
64
+ raise TypeError("Base types can only be used for type checking purposes: "
65
+ "you tried to use a base type instance as argument, "
66
+ "but you need to instantiate one of its constructors instead. "
67
+ "More info: https://docs.hypergram.icu/telegram/base/available-reactions")