PyroMt 2.0.106__tar.gz → 2.4.1__tar.gz

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 (7207) hide show
  1. pyromt-2.4.1/.gitignore +13 -0
  2. pyromt-2.4.1/.pylintrc +651 -0
  3. pyromt-2.4.1/CHANGELOG.md +16 -0
  4. pyromt-2.4.1/COPYING +674 -0
  5. pyromt-2.4.1/COPYING.LESSER +165 -0
  6. pyromt-2.4.1/LICENSE +21 -0
  7. pyromt-2.4.1/MANIFEST.in +11 -0
  8. pyromt-2.4.1/MyBot.session +0 -0
  9. pyromt-2.4.1/NOTICE +7 -0
  10. pyromt-2.4.1/PKG-INFO +150 -0
  11. pyromt-2.4.1/README.md +96 -0
  12. pyromt-2.4.1/compiler/__init__.py +18 -0
  13. pyromt-2.4.1/compiler/api/__init__.py +18 -0
  14. pyromt-2.4.1/compiler/api/compiler.py +664 -0
  15. pyromt-2.4.1/compiler/api/source/main_api.tl +2907 -0
  16. pyromt-2.4.1/compiler/api/template/combinator.txt +35 -0
  17. pyromt-2.4.1/compiler/api/template/type.txt +23 -0
  18. pyromt-2.4.1/compiler/errors/__init__.py +18 -0
  19. pyromt-2.4.1/compiler/errors/compiler.py +165 -0
  20. pyromt-2.4.1/compiler/errors/sort.py +36 -0
  21. pyromt-2.4.1/compiler/errors/source/400_BAD_REQUEST.tsv +508 -0
  22. pyromt-2.4.1/compiler/errors/source/403_FORBIDDEN.tsv +47 -0
  23. pyromt-2.4.1/compiler/errors/source/406_NOT_ACCEPTABLE.tsv +23 -0
  24. pyromt-2.4.1/compiler/errors/source/420_FLOOD.tsv +9 -0
  25. pyromt-2.4.1/compiler/errors/source/500_INTERNAL_SERVER_ERROR.tsv +48 -0
  26. pyromt-2.4.1/compiler/errors/source/503_SERVICE_UNAVAILABLE.tsv +4 -0
  27. pyromt-2.4.1/hatch_build.py +40 -0
  28. pyromt-2.4.1/n +65 -0
  29. pyromt-2.4.1/pyproject.toml +89 -0
  30. pyromt-2.4.1/pyrogram/__init__.py +24 -0
  31. pyromt-2.4.1/pyrogram/client.py +1398 -0
  32. pyromt-2.4.1/pyrogram/connection/__init__.py +24 -0
  33. pyromt-2.4.1/pyrogram/connection/connection.py +84 -0
  34. pyromt-2.4.1/pyrogram/connection/transport/__init__.py +23 -0
  35. pyromt-2.4.1/pyrogram/connection/transport/tcp/__init__.py +35 -0
  36. pyromt-2.4.1/pyrogram/connection/transport/tcp/tcp.py +168 -0
  37. pyromt-2.4.1/pyrogram/connection/transport/tcp/tcp_abridged.py +58 -0
  38. pyromt-2.4.1/pyrogram/connection/transport/tcp/tcp_abridged_o.py +87 -0
  39. pyromt-2.4.1/pyrogram/connection/transport/tcp/tcp_full.py +65 -0
  40. pyromt-2.4.1/pyrogram/connection/transport/tcp/tcp_intermediate.py +46 -0
  41. pyromt-2.4.1/pyrogram/connection/transport/tcp/tcp_intermediate_o.py +80 -0
  42. pyromt-2.4.1/pyrogram/crypto/__init__.py +18 -0
  43. pyromt-2.4.1/pyrogram/crypto/aes.py +131 -0
  44. pyromt-2.4.1/pyrogram/crypto/mtproto.py +101 -0
  45. pyromt-2.4.1/pyrogram/crypto/prime.py +83 -0
  46. pyromt-2.4.1/pyrogram/crypto/rsa.py +260 -0
  47. pyromt-2.4.1/pyrogram/dispatcher.py +438 -0
  48. pyromt-2.4.1/pyrogram/emoji.py +4020 -0
  49. pyromt-2.4.1/pyrogram/enums/__init__.py +76 -0
  50. pyromt-2.4.1/pyrogram/enums/auto_name.py +28 -0
  51. pyromt-2.4.1/pyrogram/enums/business_schedule.py +33 -0
  52. pyromt-2.4.1/pyrogram/enums/chat_action.py +79 -0
  53. pyromt-2.4.1/pyrogram/enums/chat_event_action.py +137 -0
  54. pyromt-2.4.1/pyrogram/enums/chat_join_type.py +34 -0
  55. pyromt-2.4.1/pyrogram/enums/chat_member_status.py +44 -0
  56. pyromt-2.4.1/pyrogram/enums/chat_members_filter.py +43 -0
  57. pyromt-2.4.1/pyrogram/enums/chat_type.py +47 -0
  58. pyromt-2.4.1/pyrogram/enums/client_platform.py +49 -0
  59. pyromt-2.4.1/pyrogram/enums/folder_color.py +47 -0
  60. pyromt-2.4.1/pyrogram/enums/gift_attribute_type.py +36 -0
  61. pyromt-2.4.1/pyrogram/enums/gift_for_resale_order.py +35 -0
  62. pyromt-2.4.1/pyrogram/enums/listerner_types.py +32 -0
  63. pyromt-2.4.1/pyrogram/enums/message_entity_type.py +88 -0
  64. pyromt-2.4.1/pyrogram/enums/message_media_type.py +89 -0
  65. pyromt-2.4.1/pyrogram/enums/message_origin_type.py +42 -0
  66. pyromt-2.4.1/pyrogram/enums/message_service_type.py +143 -0
  67. pyromt-2.4.1/pyrogram/enums/messages_filter.py +76 -0
  68. pyromt-2.4.1/pyrogram/enums/next_code_type.py +40 -0
  69. pyromt-2.4.1/pyrogram/enums/parse_mode.py +38 -0
  70. pyromt-2.4.1/pyrogram/enums/poll_type.py +32 -0
  71. pyromt-2.4.1/pyrogram/enums/profile_color.py +72 -0
  72. pyromt-2.4.1/pyrogram/enums/reaction_type.py +32 -0
  73. pyromt-2.4.1/pyrogram/enums/reply_color.py +94 -0
  74. pyromt-2.4.1/pyrogram/enums/sent_code_type.py +46 -0
  75. pyromt-2.4.1/pyrogram/enums/stories_privacy_rules.py +40 -0
  76. pyromt-2.4.1/pyrogram/enums/story_privacy.py +40 -0
  77. pyromt-2.4.1/pyrogram/enums/user_status.py +44 -0
  78. pyromt-2.4.1/pyrogram/errors/__init__.py +85 -0
  79. pyromt-2.4.1/pyrogram/errors/exceptions/__init__.py +645 -0
  80. pyromt-2.4.1/pyrogram/errors/exceptions/all.py +683 -0
  81. pyromt-2.4.1/pyrogram/errors/exceptions/bad_request_400.py +3567 -0
  82. pyromt-2.4.1/pyrogram/errors/exceptions/flood_420.py +74 -0
  83. pyromt-2.4.1/pyrogram/errors/exceptions/forbidden_403.py +340 -0
  84. pyromt-2.4.1/pyrogram/errors/exceptions/internal_server_error_500.py +347 -0
  85. pyromt-2.4.1/pyrogram/errors/exceptions/not_acceptable_406.py +172 -0
  86. pyromt-2.4.1/pyrogram/errors/exceptions/see_other_303.py +53 -0
  87. pyromt-2.4.1/pyrogram/errors/exceptions/service_unavailable_503.py +39 -0
  88. pyromt-2.4.1/pyrogram/errors/exceptions/unauthorized_401.py +81 -0
  89. pyromt-2.4.1/pyrogram/errors/pyromod/__init__.py +4 -0
  90. pyromt-2.4.1/pyrogram/errors/pyromod/listener_stopped.py +2 -0
  91. pyromt-2.4.1/pyrogram/errors/pyromod/listener_timeout.py +2 -0
  92. pyromt-2.4.1/pyrogram/errors/rpc_error.py +105 -0
  93. pyromt-2.4.1/pyrogram/file_id.py +482 -0
  94. pyromt-2.4.1/pyrogram/filters.py +1153 -0
  95. pyromt-2.4.1/pyrogram/handlers/__init__.py +71 -0
  96. pyromt-2.4.1/pyrogram/handlers/bot_business_connect_handler.py +49 -0
  97. pyromt-2.4.1/pyrogram/handlers/bot_business_message_handler.py +151 -0
  98. pyromt-2.4.1/pyrogram/handlers/callback_query_handler.py +207 -0
  99. pyromt-2.4.1/pyrogram/handlers/chat_join_request_handler.py +50 -0
  100. pyromt-2.4.1/pyrogram/handlers/chat_member_updated_handler.py +50 -0
  101. pyromt-2.4.1/pyrogram/handlers/chosen_inline_result_handler.py +51 -0
  102. pyromt-2.4.1/pyrogram/handlers/conversation_handler.py +70 -0
  103. pyromt-2.4.1/pyrogram/handlers/deleted_bot_business_messages_handler.py +61 -0
  104. pyromt-2.4.1/pyrogram/handlers/deleted_messages_handler.py +61 -0
  105. pyromt-2.4.1/pyrogram/handlers/disconnect_handler.py +44 -0
  106. pyromt-2.4.1/pyrogram/handlers/edited_bot_business_message_handler.py +50 -0
  107. pyromt-2.4.1/pyrogram/handlers/edited_message_handler.py +50 -0
  108. pyromt-2.4.1/pyrogram/handlers/error_handler.py +79 -0
  109. pyromt-2.4.1/pyrogram/handlers/handler.py +44 -0
  110. pyromt-2.4.1/pyrogram/handlers/inline_query_handler.py +50 -0
  111. pyromt-2.4.1/pyrogram/handlers/message_handler.py +154 -0
  112. pyromt-2.4.1/pyrogram/handlers/message_reaction_count_updated_handler.py +52 -0
  113. pyromt-2.4.1/pyrogram/handlers/message_reaction_updated_handler.py +52 -0
  114. pyromt-2.4.1/pyrogram/handlers/poll_handler.py +51 -0
  115. pyromt-2.4.1/pyrogram/handlers/pre_checkout_query_handler.py +51 -0
  116. pyromt-2.4.1/pyrogram/handlers/purchased_paid_media_handler.py +49 -0
  117. pyromt-2.4.1/pyrogram/handlers/raw_update_handler.py +72 -0
  118. pyromt-2.4.1/pyrogram/handlers/shipping_query_handler.py +51 -0
  119. pyromt-2.4.1/pyrogram/handlers/story_handler.py +49 -0
  120. pyromt-2.4.1/pyrogram/handlers/user_status_handler.py +48 -0
  121. pyromt-2.4.1/pyrogram/helpers/__init__.py +27 -0
  122. pyromt-2.4.1/pyrogram/helpers/helpers.py +138 -0
  123. pyromt-2.4.1/pyrogram/methods/__init__.py +58 -0
  124. pyromt-2.4.1/pyrogram/methods/advanced/__init__.py +30 -0
  125. pyromt-2.4.1/pyrogram/methods/advanced/invoke.py +90 -0
  126. pyromt-2.4.1/pyrogram/methods/advanced/resolve_peer.py +127 -0
  127. pyromt-2.4.1/pyrogram/methods/advanced/save_file.py +226 -0
  128. pyromt-2.4.1/pyrogram/methods/auth/__init__.py +54 -0
  129. pyromt-2.4.1/pyrogram/methods/auth/check_password.py +61 -0
  130. pyromt-2.4.1/pyrogram/methods/auth/connect.py +53 -0
  131. pyromt-2.4.1/pyrogram/methods/auth/disconnect.py +42 -0
  132. pyromt-2.4.1/pyrogram/methods/auth/get_active_sessions.py +38 -0
  133. pyromt-2.4.1/pyrogram/methods/auth/get_password_hint.py +39 -0
  134. pyromt-2.4.1/pyrogram/methods/auth/initialize.py +54 -0
  135. pyromt-2.4.1/pyrogram/methods/auth/log_out.py +52 -0
  136. pyromt-2.4.1/pyrogram/methods/auth/recover_password.py +58 -0
  137. pyromt-2.4.1/pyrogram/methods/auth/resend_code.py +65 -0
  138. pyromt-2.4.1/pyrogram/methods/auth/send_code.py +81 -0
  139. pyromt-2.4.1/pyrogram/methods/auth/send_recovery_code.py +44 -0
  140. pyromt-2.4.1/pyrogram/methods/auth/sign_in.py +77 -0
  141. pyromt-2.4.1/pyrogram/methods/auth/sign_in_bot.py +81 -0
  142. pyromt-2.4.1/pyrogram/methods/auth/sign_in_qrcode.py +111 -0
  143. pyromt-2.4.1/pyrogram/methods/auth/terminate.py +63 -0
  144. pyromt-2.4.1/pyrogram/methods/bots/__init__.py +66 -0
  145. pyromt-2.4.1/pyrogram/methods/bots/answer_callback_query.py +82 -0
  146. pyromt-2.4.1/pyrogram/methods/bots/answer_inline_query.py +113 -0
  147. pyromt-2.4.1/pyrogram/methods/bots/answer_web_app_query.py +54 -0
  148. pyromt-2.4.1/pyrogram/methods/bots/delete_bot_commands.py +63 -0
  149. pyromt-2.4.1/pyrogram/methods/bots/get_bot_commands.py +68 -0
  150. pyromt-2.4.1/pyrogram/methods/bots/get_bot_default_privileges.py +60 -0
  151. pyromt-2.4.1/pyrogram/methods/bots/get_bot_info.py +49 -0
  152. pyromt-2.4.1/pyrogram/methods/bots/get_chat_menu_button.py +68 -0
  153. pyromt-2.4.1/pyrogram/methods/bots/get_collectible_item_info.py +70 -0
  154. pyromt-2.4.1/pyrogram/methods/bots/get_game_high_scores.py +74 -0
  155. pyromt-2.4.1/pyrogram/methods/bots/get_inline_bot_results.py +94 -0
  156. pyromt-2.4.1/pyrogram/methods/bots/get_owned_bots.py +46 -0
  157. pyromt-2.4.1/pyrogram/methods/bots/get_similar_bots.py +46 -0
  158. pyromt-2.4.1/pyrogram/methods/bots/request_callback_answer.py +93 -0
  159. pyromt-2.4.1/pyrogram/methods/bots/send_game.py +144 -0
  160. pyromt-2.4.1/pyrogram/methods/bots/send_inline_bot_result.py +138 -0
  161. pyromt-2.4.1/pyrogram/methods/bots/set_bot_commands.py +74 -0
  162. pyromt-2.4.1/pyrogram/methods/bots/set_bot_default_privileges.py +82 -0
  163. pyromt-2.4.1/pyrogram/methods/bots/set_bot_info.py +61 -0
  164. pyromt-2.4.1/pyrogram/methods/bots/set_chat_menu_button.py +57 -0
  165. pyromt-2.4.1/pyrogram/methods/bots/set_game_score.py +102 -0
  166. pyromt-2.4.1/pyrogram/methods/business/__init__.py +38 -0
  167. pyromt-2.4.1/pyrogram/methods/business/answer_pre_checkout_query.py +65 -0
  168. pyromt-2.4.1/pyrogram/methods/business/answer_shipping_query.py +83 -0
  169. pyromt-2.4.1/pyrogram/methods/business/delete_business_messages.py +71 -0
  170. pyromt-2.4.1/pyrogram/methods/business/get_business_account_gifts.py +129 -0
  171. pyromt-2.4.1/pyrogram/methods/business/get_business_account_star_balance.py +61 -0
  172. pyromt-2.4.1/pyrogram/methods/business/get_business_connection.py +55 -0
  173. pyromt-2.4.1/pyrogram/methods/business/transfer_business_account_stars.py +72 -0
  174. pyromt-2.4.1/pyrogram/methods/chats/__init__.py +112 -0
  175. pyromt-2.4.1/pyrogram/methods/chats/add_chat_members.py +92 -0
  176. pyromt-2.4.1/pyrogram/methods/chats/archive_chats.py +73 -0
  177. pyromt-2.4.1/pyrogram/methods/chats/ban_chat_member.py +120 -0
  178. pyromt-2.4.1/pyrogram/methods/chats/create_channel.py +57 -0
  179. pyromt-2.4.1/pyrogram/methods/chats/create_group.py +68 -0
  180. pyromt-2.4.1/pyrogram/methods/chats/create_supergroup.py +61 -0
  181. pyromt-2.4.1/pyrogram/methods/chats/delete_channel.py +54 -0
  182. pyromt-2.4.1/pyrogram/methods/chats/delete_chat_photo.py +72 -0
  183. pyromt-2.4.1/pyrogram/methods/chats/delete_folder.py +52 -0
  184. pyromt-2.4.1/pyrogram/methods/chats/delete_supergroup.py +54 -0
  185. pyromt-2.4.1/pyrogram/methods/chats/delete_user_history.py +58 -0
  186. pyromt-2.4.1/pyrogram/methods/chats/export_folder_link.py +70 -0
  187. pyromt-2.4.1/pyrogram/methods/chats/get_chat.py +89 -0
  188. pyromt-2.4.1/pyrogram/methods/chats/get_chat_event_log.py +111 -0
  189. pyromt-2.4.1/pyrogram/methods/chats/get_chat_member.py +94 -0
  190. pyromt-2.4.1/pyrogram/methods/chats/get_chat_members.py +160 -0
  191. pyromt-2.4.1/pyrogram/methods/chats/get_chat_members_count.py +78 -0
  192. pyromt-2.4.1/pyrogram/methods/chats/get_chat_online_count.py +53 -0
  193. pyromt-2.4.1/pyrogram/methods/chats/get_dialogs.py +109 -0
  194. pyromt-2.4.1/pyrogram/methods/chats/get_dialogs_count.py +64 -0
  195. pyromt-2.4.1/pyrogram/methods/chats/get_folders.py +98 -0
  196. pyromt-2.4.1/pyrogram/methods/chats/get_send_as_chats.py +67 -0
  197. pyromt-2.4.1/pyrogram/methods/chats/join_chat.py +75 -0
  198. pyromt-2.4.1/pyrogram/methods/chats/leave_chat.py +81 -0
  199. pyromt-2.4.1/pyrogram/methods/chats/mark_chat_unread.py +49 -0
  200. pyromt-2.4.1/pyrogram/methods/chats/pin_chat_message.py +110 -0
  201. pyromt-2.4.1/pyrogram/methods/chats/promote_chat_member.py +115 -0
  202. pyromt-2.4.1/pyrogram/methods/chats/restrict_chat_member.py +197 -0
  203. pyromt-2.4.1/pyrogram/methods/chats/set_administrator_title.py +88 -0
  204. pyromt-2.4.1/pyrogram/methods/chats/set_chat_description.py +68 -0
  205. pyromt-2.4.1/pyrogram/methods/chats/set_chat_permissions.py +184 -0
  206. pyromt-2.4.1/pyrogram/methods/chats/set_chat_photo.py +167 -0
  207. pyromt-2.4.1/pyrogram/methods/chats/set_chat_protected_content.py +55 -0
  208. pyromt-2.4.1/pyrogram/methods/chats/set_chat_title.py +80 -0
  209. pyromt-2.4.1/pyrogram/methods/chats/set_chat_username.py +70 -0
  210. pyromt-2.4.1/pyrogram/methods/chats/set_send_as_chat.py +60 -0
  211. pyromt-2.4.1/pyrogram/methods/chats/set_slow_mode.py +65 -0
  212. pyromt-2.4.1/pyrogram/methods/chats/transfer_chat_ownership.py +83 -0
  213. pyromt-2.4.1/pyrogram/methods/chats/unarchive_chats.py +73 -0
  214. pyromt-2.4.1/pyrogram/methods/chats/unban_chat_member.py +66 -0
  215. pyromt-2.4.1/pyrogram/methods/chats/unpin_all_chat_messages.py +61 -0
  216. pyromt-2.4.1/pyrogram/methods/chats/unpin_chat_message.py +89 -0
  217. pyromt-2.4.1/pyrogram/methods/chats/update_color.py +75 -0
  218. pyromt-2.4.1/pyrogram/methods/chats/update_folder.py +161 -0
  219. pyromt-2.4.1/pyrogram/methods/contacts/__init__.py +34 -0
  220. pyromt-2.4.1/pyrogram/methods/contacts/add_contact.py +80 -0
  221. pyromt-2.4.1/pyrogram/methods/contacts/delete_contacts.py +68 -0
  222. pyromt-2.4.1/pyrogram/methods/contacts/get_contacts.py +48 -0
  223. pyromt-2.4.1/pyrogram/methods/contacts/get_contacts_count.py +42 -0
  224. pyromt-2.4.1/pyrogram/methods/contacts/import_contacts.py +59 -0
  225. pyromt-2.4.1/pyrogram/methods/decorators/__init__.py +70 -0
  226. pyromt-2.4.1/pyrogram/methods/decorators/on_bot_business_connect.py +62 -0
  227. pyromt-2.4.1/pyrogram/methods/decorators/on_bot_business_message.py +62 -0
  228. pyromt-2.4.1/pyrogram/methods/decorators/on_callback_query.py +62 -0
  229. pyromt-2.4.1/pyrogram/methods/decorators/on_chat_join_request.py +61 -0
  230. pyromt-2.4.1/pyrogram/methods/decorators/on_chat_member_updated.py +61 -0
  231. pyromt-2.4.1/pyrogram/methods/decorators/on_chosen_inline_result.py +62 -0
  232. pyromt-2.4.1/pyrogram/methods/decorators/on_deleted_bot_business_messages.py +62 -0
  233. pyromt-2.4.1/pyrogram/methods/decorators/on_deleted_messages.py +62 -0
  234. pyromt-2.4.1/pyrogram/methods/decorators/on_disconnect.py +44 -0
  235. pyromt-2.4.1/pyrogram/methods/decorators/on_edited_bot_business_message.py +62 -0
  236. pyromt-2.4.1/pyrogram/methods/decorators/on_edited_message.py +62 -0
  237. pyromt-2.4.1/pyrogram/methods/decorators/on_error.py +57 -0
  238. pyromt-2.4.1/pyrogram/methods/decorators/on_inline_query.py +62 -0
  239. pyromt-2.4.1/pyrogram/methods/decorators/on_message.py +62 -0
  240. pyromt-2.4.1/pyrogram/methods/decorators/on_message_reaction_count_updated.py +61 -0
  241. pyromt-2.4.1/pyrogram/methods/decorators/on_message_reaction_updated.py +61 -0
  242. pyromt-2.4.1/pyrogram/methods/decorators/on_poll.py +62 -0
  243. pyromt-2.4.1/pyrogram/methods/decorators/on_pre_checkout_query.py +62 -0
  244. pyromt-2.4.1/pyrogram/methods/decorators/on_purchased_paid_media.py +62 -0
  245. pyromt-2.4.1/pyrogram/methods/decorators/on_raw_update.py +62 -0
  246. pyromt-2.4.1/pyrogram/methods/decorators/on_shipping_query.py +62 -0
  247. pyromt-2.4.1/pyrogram/methods/decorators/on_story.py +62 -0
  248. pyromt-2.4.1/pyrogram/methods/decorators/on_user_status.py +60 -0
  249. pyromt-2.4.1/pyrogram/methods/forums/__init__.py +49 -0
  250. pyromt-2.4.1/pyrogram/methods/forums/close_forum_topic.py +57 -0
  251. pyromt-2.4.1/pyrogram/methods/forums/close_general_topic.py +53 -0
  252. pyromt-2.4.1/pyrogram/methods/forums/create_forum_topic.py +68 -0
  253. pyromt-2.4.1/pyrogram/methods/forums/delete_forum_topic.py +60 -0
  254. pyromt-2.4.1/pyrogram/methods/forums/edit_forum_topic.py +66 -0
  255. pyromt-2.4.1/pyrogram/methods/forums/edit_general_topic.py +57 -0
  256. pyromt-2.4.1/pyrogram/methods/forums/get_forum_topics.py +116 -0
  257. pyromt-2.4.1/pyrogram/methods/forums/get_forum_topics_by_id.py +91 -0
  258. pyromt-2.4.1/pyrogram/methods/forums/get_forum_topics_count.py +63 -0
  259. pyromt-2.4.1/pyrogram/methods/forums/hide_general_topic.py +52 -0
  260. pyromt-2.4.1/pyrogram/methods/forums/reopen_forum_topic.py +57 -0
  261. pyromt-2.4.1/pyrogram/methods/forums/reopen_general_topic.py +53 -0
  262. pyromt-2.4.1/pyrogram/methods/forums/unhide_general_topic.py +53 -0
  263. pyromt-2.4.1/pyrogram/methods/invite_links/__init__.py +59 -0
  264. pyromt-2.4.1/pyrogram/methods/invite_links/approve_all_chat_join_requests.py +57 -0
  265. pyromt-2.4.1/pyrogram/methods/invite_links/approve_chat_join_request.py +60 -0
  266. pyromt-2.4.1/pyrogram/methods/invite_links/create_chat_invite_link.py +105 -0
  267. pyromt-2.4.1/pyrogram/methods/invite_links/decline_all_chat_join_requests.py +57 -0
  268. pyromt-2.4.1/pyrogram/methods/invite_links/decline_chat_join_request.py +60 -0
  269. pyromt-2.4.1/pyrogram/methods/invite_links/delete_chat_admin_invite_links.py +57 -0
  270. pyromt-2.4.1/pyrogram/methods/invite_links/delete_chat_invite_link.py +54 -0
  271. pyromt-2.4.1/pyrogram/methods/invite_links/edit_chat_invite_link.py +94 -0
  272. pyromt-2.4.1/pyrogram/methods/invite_links/export_chat_invite_link.py +67 -0
  273. pyromt-2.4.1/pyrogram/methods/invite_links/get_chat_admin_invite_links.py +103 -0
  274. pyromt-2.4.1/pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py +65 -0
  275. pyromt-2.4.1/pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py +58 -0
  276. pyromt-2.4.1/pyrogram/methods/invite_links/get_chat_invite_link.py +58 -0
  277. pyromt-2.4.1/pyrogram/methods/invite_links/get_chat_invite_link_joiners.py +89 -0
  278. pyromt-2.4.1/pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py +58 -0
  279. pyromt-2.4.1/pyrogram/methods/invite_links/get_chat_join_requests.py +90 -0
  280. pyromt-2.4.1/pyrogram/methods/invite_links/revoke_chat_invite_link.py +70 -0
  281. pyromt-2.4.1/pyrogram/methods/messages/__init__.py +149 -0
  282. pyromt-2.4.1/pyrogram/methods/messages/add_task_to_todo.py +82 -0
  283. pyromt-2.4.1/pyrogram/methods/messages/copy_media_group.py +231 -0
  284. pyromt-2.4.1/pyrogram/methods/messages/copy_message.py +152 -0
  285. pyromt-2.4.1/pyrogram/methods/messages/delete_chat_history.py +102 -0
  286. pyromt-2.4.1/pyrogram/methods/messages/delete_messages.py +86 -0
  287. pyromt-2.4.1/pyrogram/methods/messages/delete_scheduled_messages.py +69 -0
  288. pyromt-2.4.1/pyrogram/methods/messages/download_media.py +199 -0
  289. pyromt-2.4.1/pyrogram/methods/messages/edit_inline_caption.py +72 -0
  290. pyromt-2.4.1/pyrogram/methods/messages/edit_inline_media.py +245 -0
  291. pyromt-2.4.1/pyrogram/methods/messages/edit_inline_reply_markup.py +70 -0
  292. pyromt-2.4.1/pyrogram/methods/messages/edit_inline_text.py +95 -0
  293. pyromt-2.4.1/pyrogram/methods/messages/edit_message_caption.py +89 -0
  294. pyromt-2.4.1/pyrogram/methods/messages/edit_message_media.py +307 -0
  295. pyromt-2.4.1/pyrogram/methods/messages/edit_message_reply_markup.py +91 -0
  296. pyromt-2.4.1/pyrogram/methods/messages/edit_message_text.py +117 -0
  297. pyromt-2.4.1/pyrogram/methods/messages/forward_media_group.py +120 -0
  298. pyromt-2.4.1/pyrogram/methods/messages/forward_messages.py +139 -0
  299. pyromt-2.4.1/pyrogram/methods/messages/get_available_effects.py +60 -0
  300. pyromt-2.4.1/pyrogram/methods/messages/get_chat_history.py +143 -0
  301. pyromt-2.4.1/pyrogram/methods/messages/get_chat_history_count.py +74 -0
  302. pyromt-2.4.1/pyrogram/methods/messages/get_custom_emoji_stickers.py +60 -0
  303. pyromt-2.4.1/pyrogram/methods/messages/get_discussion_message.py +67 -0
  304. pyromt-2.4.1/pyrogram/methods/messages/get_discussion_replies.py +88 -0
  305. pyromt-2.4.1/pyrogram/methods/messages/get_discussion_replies_count.py +64 -0
  306. pyromt-2.4.1/pyrogram/methods/messages/get_media_group.py +75 -0
  307. pyromt-2.4.1/pyrogram/methods/messages/get_message_read_participants.py +57 -0
  308. pyromt-2.4.1/pyrogram/methods/messages/get_messages.py +121 -0
  309. pyromt-2.4.1/pyrogram/methods/messages/get_scheduled_messages.py +83 -0
  310. pyromt-2.4.1/pyrogram/methods/messages/inline_session.py +68 -0
  311. pyromt-2.4.1/pyrogram/methods/messages/read_chat_history.py +75 -0
  312. pyromt-2.4.1/pyrogram/methods/messages/retract_vote.py +63 -0
  313. pyromt-2.4.1/pyrogram/methods/messages/search_global.py +133 -0
  314. pyromt-2.4.1/pyrogram/methods/messages/search_global_count.py +80 -0
  315. pyromt-2.4.1/pyrogram/methods/messages/search_global_hashtag_messages.py +102 -0
  316. pyromt-2.4.1/pyrogram/methods/messages/search_global_hashtag_messages_count.py +55 -0
  317. pyromt-2.4.1/pyrogram/methods/messages/search_messages.py +160 -0
  318. pyromt-2.4.1/pyrogram/methods/messages/search_messages_count.py +91 -0
  319. pyromt-2.4.1/pyrogram/methods/messages/send_animation.py +347 -0
  320. pyromt-2.4.1/pyrogram/methods/messages/send_audio.py +312 -0
  321. pyromt-2.4.1/pyrogram/methods/messages/send_cached_media.py +187 -0
  322. pyromt-2.4.1/pyrogram/methods/messages/send_chat_action.py +151 -0
  323. pyromt-2.4.1/pyrogram/methods/messages/send_contact.py +193 -0
  324. pyromt-2.4.1/pyrogram/methods/messages/send_dice.py +192 -0
  325. pyromt-2.4.1/pyrogram/methods/messages/send_document.py +290 -0
  326. pyromt-2.4.1/pyrogram/methods/messages/send_location.py +191 -0
  327. pyromt-2.4.1/pyrogram/methods/messages/send_media_group.py +561 -0
  328. pyromt-2.4.1/pyrogram/methods/messages/send_message.py +252 -0
  329. pyromt-2.4.1/pyrogram/methods/messages/send_photo.py +285 -0
  330. pyromt-2.4.1/pyrogram/methods/messages/send_poll.py +260 -0
  331. pyromt-2.4.1/pyrogram/methods/messages/send_reaction.py +128 -0
  332. pyromt-2.4.1/pyrogram/methods/messages/send_sticker.py +264 -0
  333. pyromt-2.4.1/pyrogram/methods/messages/send_todo.py +99 -0
  334. pyromt-2.4.1/pyrogram/methods/messages/send_venue.py +204 -0
  335. pyromt-2.4.1/pyrogram/methods/messages/send_video.py +402 -0
  336. pyromt-2.4.1/pyrogram/methods/messages/send_video_note.py +290 -0
  337. pyromt-2.4.1/pyrogram/methods/messages/send_voice.py +277 -0
  338. pyromt-2.4.1/pyrogram/methods/messages/send_web_page.py +243 -0
  339. pyromt-2.4.1/pyrogram/methods/messages/set_todo_tasks_completion.py +76 -0
  340. pyromt-2.4.1/pyrogram/methods/messages/start_bot.py +78 -0
  341. pyromt-2.4.1/pyrogram/methods/messages/stop_poll.py +90 -0
  342. pyromt-2.4.1/pyrogram/methods/messages/stream_media.py +107 -0
  343. pyromt-2.4.1/pyrogram/methods/messages/transcribe_audio.py +52 -0
  344. pyromt-2.4.1/pyrogram/methods/messages/translate_text.py +121 -0
  345. pyromt-2.4.1/pyrogram/methods/messages/vote_poll.py +71 -0
  346. pyromt-2.4.1/pyrogram/methods/password/__init__.py +30 -0
  347. pyromt-2.4.1/pyrogram/methods/password/change_cloud_password.py +83 -0
  348. pyromt-2.4.1/pyrogram/methods/password/enable_cloud_password.py +89 -0
  349. pyromt-2.4.1/pyrogram/methods/password/remove_cloud_password.py +65 -0
  350. pyromt-2.4.1/pyrogram/methods/payments/__init__.py +75 -0
  351. pyromt-2.4.1/pyrogram/methods/payments/apply_gift_code.py +56 -0
  352. pyromt-2.4.1/pyrogram/methods/payments/check_giftcode.py +69 -0
  353. pyromt-2.4.1/pyrogram/methods/payments/convert_gift.py +52 -0
  354. pyromt-2.4.1/pyrogram/methods/payments/create_invoice_link.py +158 -0
  355. pyromt-2.4.1/pyrogram/methods/payments/get_available_gifts.py +46 -0
  356. pyromt-2.4.1/pyrogram/methods/payments/get_chat_gifts.py +125 -0
  357. pyromt-2.4.1/pyrogram/methods/payments/get_chat_gifts_count.py +86 -0
  358. pyromt-2.4.1/pyrogram/methods/payments/get_payment_form.py +89 -0
  359. pyromt-2.4.1/pyrogram/methods/payments/get_stars_balance.py +62 -0
  360. pyromt-2.4.1/pyrogram/methods/payments/get_stars_transactions.py +91 -0
  361. pyromt-2.4.1/pyrogram/methods/payments/get_stars_transactions_by_id.py +87 -0
  362. pyromt-2.4.1/pyrogram/methods/payments/get_upgraded_gift.py +67 -0
  363. pyromt-2.4.1/pyrogram/methods/payments/hide_gift.py +55 -0
  364. pyromt-2.4.1/pyrogram/methods/payments/refund_stars_payment.py +54 -0
  365. pyromt-2.4.1/pyrogram/methods/payments/search_gifts_for_resale.py +110 -0
  366. pyromt-2.4.1/pyrogram/methods/payments/send_gift.py +103 -0
  367. pyromt-2.4.1/pyrogram/methods/payments/send_invoice.py +235 -0
  368. pyromt-2.4.1/pyrogram/methods/payments/send_paid_media.py +314 -0
  369. pyromt-2.4.1/pyrogram/methods/payments/send_paid_reaction.py +75 -0
  370. pyromt-2.4.1/pyrogram/methods/payments/send_payment_form.py +133 -0
  371. pyromt-2.4.1/pyrogram/methods/payments/send_resold_gift.py +89 -0
  372. pyromt-2.4.1/pyrogram/methods/payments/set_gift_resale_price.py +82 -0
  373. pyromt-2.4.1/pyrogram/methods/payments/set_pinned_gifts.py +95 -0
  374. pyromt-2.4.1/pyrogram/methods/payments/show_gift.py +54 -0
  375. pyromt-2.4.1/pyrogram/methods/payments/transfer_gift.py +88 -0
  376. pyromt-2.4.1/pyrogram/methods/payments/upgrade_gift.py +81 -0
  377. pyromt-2.4.1/pyrogram/methods/phone/__init__.py +25 -0
  378. pyromt-2.4.1/pyrogram/methods/phone/get_call_members.py +103 -0
  379. pyromt-2.4.1/pyrogram/methods/pyromod/__init__.py +46 -0
  380. pyromt-2.4.1/pyrogram/methods/pyromod/ask.py +103 -0
  381. pyromt-2.4.1/pyrogram/methods/pyromod/get_listener_matching_with_data.py +54 -0
  382. pyromt-2.4.1/pyrogram/methods/pyromod/get_listener_matching_with_identifier_pattern.py +59 -0
  383. pyromt-2.4.1/pyrogram/methods/pyromod/get_many_listeners_matching_with_data.py +49 -0
  384. pyromt-2.4.1/pyrogram/methods/pyromod/get_many_listeners_matching_with_identifier_pattern.py +53 -0
  385. pyromt-2.4.1/pyrogram/methods/pyromod/listen.py +121 -0
  386. pyromt-2.4.1/pyrogram/methods/pyromod/register_next_step_handler.py +84 -0
  387. pyromt-2.4.1/pyrogram/methods/pyromod/remove_listerner.py +39 -0
  388. pyromt-2.4.1/pyrogram/methods/pyromod/stop_listener.py +56 -0
  389. pyromt-2.4.1/pyrogram/methods/pyromod/stop_listening.py +68 -0
  390. pyromt-2.4.1/pyrogram/methods/pyromod/wait_for_callback_query.py +84 -0
  391. pyromt-2.4.1/pyrogram/methods/pyromod/wait_for_message.py +83 -0
  392. pyromt-2.4.1/pyrogram/methods/stickers/__init__.py +28 -0
  393. pyromt-2.4.1/pyrogram/methods/stickers/add_sticker_to_set.py +115 -0
  394. pyromt-2.4.1/pyrogram/methods/stickers/create_sticker_set.py +127 -0
  395. pyromt-2.4.1/pyrogram/methods/stickers/get_sticker_set.py +52 -0
  396. pyromt-2.4.1/pyrogram/methods/users/__init__.py +72 -0
  397. pyromt-2.4.1/pyrogram/methods/users/block_user.py +56 -0
  398. pyromt-2.4.1/pyrogram/methods/users/delete_profile_photos.py +64 -0
  399. pyromt-2.4.1/pyrogram/methods/users/delete_stories.py +74 -0
  400. pyromt-2.4.1/pyrogram/methods/users/edit_story.py +253 -0
  401. pyromt-2.4.1/pyrogram/methods/users/export_story_link.py +67 -0
  402. pyromt-2.4.1/pyrogram/methods/users/forward_story.py +122 -0
  403. pyromt-2.4.1/pyrogram/methods/users/get_all_stories.py +56 -0
  404. pyromt-2.4.1/pyrogram/methods/users/get_chat_photos.py +169 -0
  405. pyromt-2.4.1/pyrogram/methods/users/get_chat_photos_count.py +76 -0
  406. pyromt-2.4.1/pyrogram/methods/users/get_common_chats.py +69 -0
  407. pyromt-2.4.1/pyrogram/methods/users/get_default_emoji_statuses.py +48 -0
  408. pyromt-2.4.1/pyrogram/methods/users/get_me.py +50 -0
  409. pyromt-2.4.1/pyrogram/methods/users/get_peer_stories.py +66 -0
  410. pyromt-2.4.1/pyrogram/methods/users/get_stories.py +77 -0
  411. pyromt-2.4.1/pyrogram/methods/users/get_stories_history.py +75 -0
  412. pyromt-2.4.1/pyrogram/methods/users/get_users.py +73 -0
  413. pyromt-2.4.1/pyrogram/methods/users/send_story.py +257 -0
  414. pyromt-2.4.1/pyrogram/methods/users/set_emoji_status.py +63 -0
  415. pyromt-2.4.1/pyrogram/methods/users/set_profile_photo.py +94 -0
  416. pyromt-2.4.1/pyrogram/methods/users/set_username.py +58 -0
  417. pyromt-2.4.1/pyrogram/methods/users/unblock_user.py +56 -0
  418. pyromt-2.4.1/pyrogram/methods/users/update_birthday.py +60 -0
  419. pyromt-2.4.1/pyrogram/methods/users/update_personal_chat.py +51 -0
  420. pyromt-2.4.1/pyrogram/methods/users/update_profile.py +73 -0
  421. pyromt-2.4.1/pyrogram/methods/utilities/__init__.py +46 -0
  422. pyromt-2.4.1/pyrogram/methods/utilities/add_handler.py +68 -0
  423. pyromt-2.4.1/pyrogram/methods/utilities/compose.py +79 -0
  424. pyromt-2.4.1/pyrogram/methods/utilities/export_session_string.py +41 -0
  425. pyromt-2.4.1/pyrogram/methods/utilities/idle.py +88 -0
  426. pyromt-2.4.1/pyrogram/methods/utilities/ping.py +46 -0
  427. pyromt-2.4.1/pyrogram/methods/utilities/remove_error_handler.py +42 -0
  428. pyromt-2.4.1/pyrogram/methods/utilities/remove_handler.py +64 -0
  429. pyromt-2.4.1/pyrogram/methods/utilities/restart.py +73 -0
  430. pyromt-2.4.1/pyrogram/methods/utilities/run.py +87 -0
  431. pyromt-2.4.1/pyrogram/methods/utilities/run_sync.py +41 -0
  432. pyromt-2.4.1/pyrogram/methods/utilities/start.py +106 -0
  433. pyromt-2.4.1/pyrogram/methods/utilities/stop.py +70 -0
  434. pyromt-2.4.1/pyrogram/methods/utilities/stop_transmission.py +45 -0
  435. pyromt-2.4.1/pyrogram/mime_types.py +1882 -0
  436. pyromt-2.4.1/pyrogram/nav/__init__.py +24 -0
  437. pyromt-2.4.1/pyrogram/nav/pagination.py +94 -0
  438. pyromt-2.4.1/pyrogram/parser/__init__.py +24 -0
  439. pyromt-2.4.1/pyrogram/parser/html.py +249 -0
  440. pyromt-2.4.1/pyrogram/parser/markdown.py +290 -0
  441. pyromt-2.4.1/pyrogram/parser/parser.py +62 -0
  442. pyromt-2.4.1/pyrogram/parser/utils.py +55 -0
  443. pyromt-2.4.1/pyrogram/raw/__init__.py +35 -0
  444. pyromt-2.4.1/pyrogram/raw/all.py +2371 -0
  445. pyromt-2.4.1/pyrogram/raw/base/__init__.py +415 -0
  446. pyromt-2.4.1/pyrogram/raw/base/access_point_rule.py +43 -0
  447. pyromt-2.4.1/pyrogram/raw/base/account/__init__.py +42 -0
  448. pyromt-2.4.1/pyrogram/raw/base/account/authorization_form.py +53 -0
  449. pyromt-2.4.1/pyrogram/raw/base/account/authorizations.py +53 -0
  450. pyromt-2.4.1/pyrogram/raw/base/account/auto_download_settings.py +53 -0
  451. pyromt-2.4.1/pyrogram/raw/base/account/auto_save_settings.py +53 -0
  452. pyromt-2.4.1/pyrogram/raw/base/account/business_chat_links.py +53 -0
  453. pyromt-2.4.1/pyrogram/raw/base/account/chat_themes.py +54 -0
  454. pyromt-2.4.1/pyrogram/raw/base/account/connected_bots.py +53 -0
  455. pyromt-2.4.1/pyrogram/raw/base/account/content_settings.py +53 -0
  456. pyromt-2.4.1/pyrogram/raw/base/account/email_verified.py +54 -0
  457. pyromt-2.4.1/pyrogram/raw/base/account/emoji_statuses.py +57 -0
  458. pyromt-2.4.1/pyrogram/raw/base/account/paid_messages_revenue.py +53 -0
  459. pyromt-2.4.1/pyrogram/raw/base/account/passkey_registration_options.py +53 -0
  460. pyromt-2.4.1/pyrogram/raw/base/account/passkeys.py +53 -0
  461. pyromt-2.4.1/pyrogram/raw/base/account/password.py +53 -0
  462. pyromt-2.4.1/pyrogram/raw/base/account/password_input_settings.py +43 -0
  463. pyromt-2.4.1/pyrogram/raw/base/account/password_settings.py +53 -0
  464. pyromt-2.4.1/pyrogram/raw/base/account/privacy_rules.py +54 -0
  465. pyromt-2.4.1/pyrogram/raw/base/account/reset_password_result.py +55 -0
  466. pyromt-2.4.1/pyrogram/raw/base/account/resolved_business_chat_links.py +53 -0
  467. pyromt-2.4.1/pyrogram/raw/base/account/saved_music_ids.py +54 -0
  468. pyromt-2.4.1/pyrogram/raw/base/account/saved_ringtone.py +54 -0
  469. pyromt-2.4.1/pyrogram/raw/base/account/saved_ringtones.py +54 -0
  470. pyromt-2.4.1/pyrogram/raw/base/account/sent_email_code.py +53 -0
  471. pyromt-2.4.1/pyrogram/raw/base/account/takeout.py +53 -0
  472. pyromt-2.4.1/pyrogram/raw/base/account/themes.py +55 -0
  473. pyromt-2.4.1/pyrogram/raw/base/account/tmp_password.py +53 -0
  474. pyromt-2.4.1/pyrogram/raw/base/account/wall_papers.py +54 -0
  475. pyromt-2.4.1/pyrogram/raw/base/account/web_authorizations.py +53 -0
  476. pyromt-2.4.1/pyrogram/raw/base/account_days_ttl.py +53 -0
  477. pyromt-2.4.1/pyrogram/raw/base/attach_menu_bot.py +43 -0
  478. pyromt-2.4.1/pyrogram/raw/base/attach_menu_bot_icon.py +43 -0
  479. pyromt-2.4.1/pyrogram/raw/base/attach_menu_bot_icon_color.py +43 -0
  480. pyromt-2.4.1/pyrogram/raw/base/attach_menu_bots.py +54 -0
  481. pyromt-2.4.1/pyrogram/raw/base/attach_menu_bots_bot.py +53 -0
  482. pyromt-2.4.1/pyrogram/raw/base/attach_menu_peer_type.py +47 -0
  483. pyromt-2.4.1/pyrogram/raw/base/auction_bid_level.py +43 -0
  484. pyromt-2.4.1/pyrogram/raw/base/auth/__init__.py +23 -0
  485. pyromt-2.4.1/pyrogram/raw/base/auth/authorization.py +61 -0
  486. pyromt-2.4.1/pyrogram/raw/base/auth/code_type.py +47 -0
  487. pyromt-2.4.1/pyrogram/raw/base/auth/exported_authorization.py +53 -0
  488. pyromt-2.4.1/pyrogram/raw/base/auth/logged_out.py +53 -0
  489. pyromt-2.4.1/pyrogram/raw/base/auth/login_token.py +56 -0
  490. pyromt-2.4.1/pyrogram/raw/base/auth/passkey_login_options.py +53 -0
  491. pyromt-2.4.1/pyrogram/raw/base/auth/password_recovery.py +53 -0
  492. pyromt-2.4.1/pyrogram/raw/base/auth/sent_code.py +61 -0
  493. pyromt-2.4.1/pyrogram/raw/base/auth/sent_code_type.py +53 -0
  494. pyromt-2.4.1/pyrogram/raw/base/authorization.py +53 -0
  495. pyromt-2.4.1/pyrogram/raw/base/auto_download_settings.py +43 -0
  496. pyromt-2.4.1/pyrogram/raw/base/auto_save_exception.py +43 -0
  497. pyromt-2.4.1/pyrogram/raw/base/auto_save_settings.py +43 -0
  498. pyromt-2.4.1/pyrogram/raw/base/available_effect.py +43 -0
  499. pyromt-2.4.1/pyrogram/raw/base/available_reaction.py +43 -0
  500. pyromt-2.4.1/pyrogram/raw/base/bad_msg_notification.py +44 -0
  501. pyromt-2.4.1/pyrogram/raw/base/bank_card_open_url.py +43 -0
  502. pyromt-2.4.1/pyrogram/raw/base/base_theme.py +47 -0
  503. pyromt-2.4.1/pyrogram/raw/base/bind_auth_key_inner.py +43 -0
  504. pyromt-2.4.1/pyrogram/raw/base/birthday.py +43 -0
  505. pyromt-2.4.1/pyrogram/raw/base/bool.py +255 -0
  506. pyromt-2.4.1/pyrogram/raw/base/boost.py +43 -0
  507. pyromt-2.4.1/pyrogram/raw/base/bot_app.py +44 -0
  508. pyromt-2.4.1/pyrogram/raw/base/bot_app_settings.py +43 -0
  509. pyromt-2.4.1/pyrogram/raw/base/bot_business_connection.py +43 -0
  510. pyromt-2.4.1/pyrogram/raw/base/bot_command.py +53 -0
  511. pyromt-2.4.1/pyrogram/raw/base/bot_command_scope.py +49 -0
  512. pyromt-2.4.1/pyrogram/raw/base/bot_info.py +43 -0
  513. pyromt-2.4.1/pyrogram/raw/base/bot_inline_message.py +49 -0
  514. pyromt-2.4.1/pyrogram/raw/base/bot_inline_result.py +44 -0
  515. pyromt-2.4.1/pyrogram/raw/base/bot_menu_button.py +55 -0
  516. pyromt-2.4.1/pyrogram/raw/base/bot_preview_media.py +55 -0
  517. pyromt-2.4.1/pyrogram/raw/base/bot_verification.py +43 -0
  518. pyromt-2.4.1/pyrogram/raw/base/bot_verifier_settings.py +43 -0
  519. pyromt-2.4.1/pyrogram/raw/base/bots/__init__.py +17 -0
  520. pyromt-2.4.1/pyrogram/raw/base/bots/bot_info.py +53 -0
  521. pyromt-2.4.1/pyrogram/raw/base/bots/popular_app_bots.py +53 -0
  522. pyromt-2.4.1/pyrogram/raw/base/bots/preview_info.py +53 -0
  523. pyromt-2.4.1/pyrogram/raw/base/business_away_message.py +43 -0
  524. pyromt-2.4.1/pyrogram/raw/base/business_away_message_schedule.py +45 -0
  525. pyromt-2.4.1/pyrogram/raw/base/business_bot_recipients.py +43 -0
  526. pyromt-2.4.1/pyrogram/raw/base/business_bot_rights.py +43 -0
  527. pyromt-2.4.1/pyrogram/raw/base/business_chat_link.py +54 -0
  528. pyromt-2.4.1/pyrogram/raw/base/business_greeting_message.py +43 -0
  529. pyromt-2.4.1/pyrogram/raw/base/business_intro.py +43 -0
  530. pyromt-2.4.1/pyrogram/raw/base/business_location.py +43 -0
  531. pyromt-2.4.1/pyrogram/raw/base/business_recipients.py +43 -0
  532. pyromt-2.4.1/pyrogram/raw/base/business_weekly_open.py +43 -0
  533. pyromt-2.4.1/pyrogram/raw/base/business_work_hours.py +43 -0
  534. pyromt-2.4.1/pyrogram/raw/base/cdn_config.py +53 -0
  535. pyromt-2.4.1/pyrogram/raw/base/cdn_public_key.py +43 -0
  536. pyromt-2.4.1/pyrogram/raw/base/channel_admin_log_event.py +43 -0
  537. pyromt-2.4.1/pyrogram/raw/base/channel_admin_log_event_action.py +93 -0
  538. pyromt-2.4.1/pyrogram/raw/base/channel_admin_log_events_filter.py +43 -0
  539. pyromt-2.4.1/pyrogram/raw/base/channel_location.py +44 -0
  540. pyromt-2.4.1/pyrogram/raw/base/channel_messages_filter.py +44 -0
  541. pyromt-2.4.1/pyrogram/raw/base/channel_participant.py +48 -0
  542. pyromt-2.4.1/pyrogram/raw/base/channel_participants_filter.py +50 -0
  543. pyromt-2.4.1/pyrogram/raw/base/channels/__init__.py +19 -0
  544. pyromt-2.4.1/pyrogram/raw/base/channels/admin_log_results.py +53 -0
  545. pyromt-2.4.1/pyrogram/raw/base/channels/channel_participant.py +53 -0
  546. pyromt-2.4.1/pyrogram/raw/base/channels/channel_participants.py +54 -0
  547. pyromt-2.4.1/pyrogram/raw/base/channels/send_as_peers.py +53 -0
  548. pyromt-2.4.1/pyrogram/raw/base/channels/sponsored_message_report_result.py +55 -0
  549. pyromt-2.4.1/pyrogram/raw/base/chat.py +47 -0
  550. pyromt-2.4.1/pyrogram/raw/base/chat_admin_rights.py +43 -0
  551. pyromt-2.4.1/pyrogram/raw/base/chat_admin_with_invites.py +43 -0
  552. pyromt-2.4.1/pyrogram/raw/base/chat_banned_rights.py +43 -0
  553. pyromt-2.4.1/pyrogram/raw/base/chat_full.py +44 -0
  554. pyromt-2.4.1/pyrogram/raw/base/chat_invite.py +55 -0
  555. pyromt-2.4.1/pyrogram/raw/base/chat_invite_importer.py +43 -0
  556. pyromt-2.4.1/pyrogram/raw/base/chat_onlines.py +53 -0
  557. pyromt-2.4.1/pyrogram/raw/base/chat_participant.py +45 -0
  558. pyromt-2.4.1/pyrogram/raw/base/chat_participants.py +44 -0
  559. pyromt-2.4.1/pyrogram/raw/base/chat_photo.py +44 -0
  560. pyromt-2.4.1/pyrogram/raw/base/chat_reactions.py +45 -0
  561. pyromt-2.4.1/pyrogram/raw/base/chat_theme.py +44 -0
  562. pyromt-2.4.1/pyrogram/raw/base/chatlists/__init__.py +18 -0
  563. pyromt-2.4.1/pyrogram/raw/base/chatlists/chatlist_invite.py +54 -0
  564. pyromt-2.4.1/pyrogram/raw/base/chatlists/chatlist_updates.py +53 -0
  565. pyromt-2.4.1/pyrogram/raw/base/chatlists/exported_chatlist_invite.py +53 -0
  566. pyromt-2.4.1/pyrogram/raw/base/chatlists/exported_invites.py +53 -0
  567. pyromt-2.4.1/pyrogram/raw/base/client_dh_inner_data.py +43 -0
  568. pyromt-2.4.1/pyrogram/raw/base/code_settings.py +43 -0
  569. pyromt-2.4.1/pyrogram/raw/base/config.py +53 -0
  570. pyromt-2.4.1/pyrogram/raw/base/connected_bot.py +43 -0
  571. pyromt-2.4.1/pyrogram/raw/base/connected_bot_star_ref.py +43 -0
  572. pyromt-2.4.1/pyrogram/raw/base/contact.py +43 -0
  573. pyromt-2.4.1/pyrogram/raw/base/contact_birthday.py +43 -0
  574. pyromt-2.4.1/pyrogram/raw/base/contact_status.py +53 -0
  575. pyromt-2.4.1/pyrogram/raw/base/contacts/__init__.py +22 -0
  576. pyromt-2.4.1/pyrogram/raw/base/contacts/blocked.py +54 -0
  577. pyromt-2.4.1/pyrogram/raw/base/contacts/contact_birthdays.py +53 -0
  578. pyromt-2.4.1/pyrogram/raw/base/contacts/contacts.py +54 -0
  579. pyromt-2.4.1/pyrogram/raw/base/contacts/found.py +53 -0
  580. pyromt-2.4.1/pyrogram/raw/base/contacts/imported_contacts.py +53 -0
  581. pyromt-2.4.1/pyrogram/raw/base/contacts/resolved_peer.py +54 -0
  582. pyromt-2.4.1/pyrogram/raw/base/contacts/sponsored_peers.py +54 -0
  583. pyromt-2.4.1/pyrogram/raw/base/contacts/top_peers.py +55 -0
  584. pyromt-2.4.1/pyrogram/raw/base/data_json.py +55 -0
  585. pyromt-2.4.1/pyrogram/raw/base/dc_option.py +43 -0
  586. pyromt-2.4.1/pyrogram/raw/base/default_history_ttl.py +53 -0
  587. pyromt-2.4.1/pyrogram/raw/base/destroy_auth_key_res.py +55 -0
  588. pyromt-2.4.1/pyrogram/raw/base/destroy_session_res.py +54 -0
  589. pyromt-2.4.1/pyrogram/raw/base/dialog.py +44 -0
  590. pyromt-2.4.1/pyrogram/raw/base/dialog_filter.py +45 -0
  591. pyromt-2.4.1/pyrogram/raw/base/dialog_filter_suggested.py +53 -0
  592. pyromt-2.4.1/pyrogram/raw/base/dialog_peer.py +54 -0
  593. pyromt-2.4.1/pyrogram/raw/base/disallowed_gifts_settings.py +43 -0
  594. pyromt-2.4.1/pyrogram/raw/base/document.py +57 -0
  595. pyromt-2.4.1/pyrogram/raw/base/document_attribute.py +50 -0
  596. pyromt-2.4.1/pyrogram/raw/base/draft_message.py +44 -0
  597. pyromt-2.4.1/pyrogram/raw/base/email_verification.py +45 -0
  598. pyromt-2.4.1/pyrogram/raw/base/email_verify_purpose.py +45 -0
  599. pyromt-2.4.1/pyrogram/raw/base/emoji_group.py +45 -0
  600. pyromt-2.4.1/pyrogram/raw/base/emoji_keyword.py +44 -0
  601. pyromt-2.4.1/pyrogram/raw/base/emoji_keywords_difference.py +54 -0
  602. pyromt-2.4.1/pyrogram/raw/base/emoji_language.py +53 -0
  603. pyromt-2.4.1/pyrogram/raw/base/emoji_list.py +58 -0
  604. pyromt-2.4.1/pyrogram/raw/base/emoji_status.py +46 -0
  605. pyromt-2.4.1/pyrogram/raw/base/emoji_url.py +53 -0
  606. pyromt-2.4.1/pyrogram/raw/base/encrypted_chat.py +58 -0
  607. pyromt-2.4.1/pyrogram/raw/base/encrypted_file.py +54 -0
  608. pyromt-2.4.1/pyrogram/raw/base/encrypted_message.py +44 -0
  609. pyromt-2.4.1/pyrogram/raw/base/error.py +43 -0
  610. pyromt-2.4.1/pyrogram/raw/base/exported_chat_invite.py +54 -0
  611. pyromt-2.4.1/pyrogram/raw/base/exported_chatlist_invite.py +53 -0
  612. pyromt-2.4.1/pyrogram/raw/base/exported_contact_token.py +53 -0
  613. pyromt-2.4.1/pyrogram/raw/base/exported_message_link.py +53 -0
  614. pyromt-2.4.1/pyrogram/raw/base/exported_story_link.py +53 -0
  615. pyromt-2.4.1/pyrogram/raw/base/fact_check.py +53 -0
  616. pyromt-2.4.1/pyrogram/raw/base/file_hash.py +55 -0
  617. pyromt-2.4.1/pyrogram/raw/base/folder.py +43 -0
  618. pyromt-2.4.1/pyrogram/raw/base/folder_peer.py +43 -0
  619. pyromt-2.4.1/pyrogram/raw/base/forum_topic.py +44 -0
  620. pyromt-2.4.1/pyrogram/raw/base/found_story.py +43 -0
  621. pyromt-2.4.1/pyrogram/raw/base/fragment/__init__.py +15 -0
  622. pyromt-2.4.1/pyrogram/raw/base/fragment/collectible_info.py +53 -0
  623. pyromt-2.4.1/pyrogram/raw/base/game.py +43 -0
  624. pyromt-2.4.1/pyrogram/raw/base/geo_point.py +44 -0
  625. pyromt-2.4.1/pyrogram/raw/base/geo_point_address.py +43 -0
  626. pyromt-2.4.1/pyrogram/raw/base/global_privacy_settings.py +54 -0
  627. pyromt-2.4.1/pyrogram/raw/base/group_call.py +44 -0
  628. pyromt-2.4.1/pyrogram/raw/base/group_call_donor.py +43 -0
  629. pyromt-2.4.1/pyrogram/raw/base/group_call_message.py +43 -0
  630. pyromt-2.4.1/pyrogram/raw/base/group_call_participant.py +43 -0
  631. pyromt-2.4.1/pyrogram/raw/base/group_call_participant_video.py +43 -0
  632. pyromt-2.4.1/pyrogram/raw/base/group_call_participant_video_source_group.py +43 -0
  633. pyromt-2.4.1/pyrogram/raw/base/group_call_stream_channel.py +43 -0
  634. pyromt-2.4.1/pyrogram/raw/base/help/__init__.py +35 -0
  635. pyromt-2.4.1/pyrogram/raw/base/help/app_config.py +54 -0
  636. pyromt-2.4.1/pyrogram/raw/base/help/app_update.py +54 -0
  637. pyromt-2.4.1/pyrogram/raw/base/help/config_simple.py +43 -0
  638. pyromt-2.4.1/pyrogram/raw/base/help/countries_list.py +54 -0
  639. pyromt-2.4.1/pyrogram/raw/base/help/country.py +43 -0
  640. pyromt-2.4.1/pyrogram/raw/base/help/country_code.py +43 -0
  641. pyromt-2.4.1/pyrogram/raw/base/help/deep_link_info.py +54 -0
  642. pyromt-2.4.1/pyrogram/raw/base/help/invite_text.py +53 -0
  643. pyromt-2.4.1/pyrogram/raw/base/help/passport_config.py +54 -0
  644. pyromt-2.4.1/pyrogram/raw/base/help/peer_color_option.py +43 -0
  645. pyromt-2.4.1/pyrogram/raw/base/help/peer_color_set.py +44 -0
  646. pyromt-2.4.1/pyrogram/raw/base/help/peer_colors.py +55 -0
  647. pyromt-2.4.1/pyrogram/raw/base/help/premium_promo.py +53 -0
  648. pyromt-2.4.1/pyrogram/raw/base/help/promo_data.py +54 -0
  649. pyromt-2.4.1/pyrogram/raw/base/help/recent_me_urls.py +53 -0
  650. pyromt-2.4.1/pyrogram/raw/base/help/support.py +53 -0
  651. pyromt-2.4.1/pyrogram/raw/base/help/support_name.py +53 -0
  652. pyromt-2.4.1/pyrogram/raw/base/help/terms_of_service.py +43 -0
  653. pyromt-2.4.1/pyrogram/raw/base/help/terms_of_service_update.py +54 -0
  654. pyromt-2.4.1/pyrogram/raw/base/help/timezones_list.py +54 -0
  655. pyromt-2.4.1/pyrogram/raw/base/help/user_info.py +55 -0
  656. pyromt-2.4.1/pyrogram/raw/base/high_score.py +43 -0
  657. pyromt-2.4.1/pyrogram/raw/base/http_wait.py +43 -0
  658. pyromt-2.4.1/pyrogram/raw/base/imported_contact.py +43 -0
  659. pyromt-2.4.1/pyrogram/raw/base/inline_bot_switch_pm.py +43 -0
  660. pyromt-2.4.1/pyrogram/raw/base/inline_bot_web_view.py +43 -0
  661. pyromt-2.4.1/pyrogram/raw/base/inline_query_peer_type.py +48 -0
  662. pyromt-2.4.1/pyrogram/raw/base/input_app_event.py +43 -0
  663. pyromt-2.4.1/pyrogram/raw/base/input_bot_app.py +44 -0
  664. pyromt-2.4.1/pyrogram/raw/base/input_bot_inline_message.py +50 -0
  665. pyromt-2.4.1/pyrogram/raw/base/input_bot_inline_message_id.py +44 -0
  666. pyromt-2.4.1/pyrogram/raw/base/input_bot_inline_result.py +46 -0
  667. pyromt-2.4.1/pyrogram/raw/base/input_business_away_message.py +43 -0
  668. pyromt-2.4.1/pyrogram/raw/base/input_business_bot_recipients.py +43 -0
  669. pyromt-2.4.1/pyrogram/raw/base/input_business_chat_link.py +43 -0
  670. pyromt-2.4.1/pyrogram/raw/base/input_business_greeting_message.py +43 -0
  671. pyromt-2.4.1/pyrogram/raw/base/input_business_intro.py +43 -0
  672. pyromt-2.4.1/pyrogram/raw/base/input_business_recipients.py +43 -0
  673. pyromt-2.4.1/pyrogram/raw/base/input_channel.py +45 -0
  674. pyromt-2.4.1/pyrogram/raw/base/input_chat_photo.py +45 -0
  675. pyromt-2.4.1/pyrogram/raw/base/input_chat_theme.py +45 -0
  676. pyromt-2.4.1/pyrogram/raw/base/input_chatlist.py +43 -0
  677. pyromt-2.4.1/pyrogram/raw/base/input_check_password_srp.py +44 -0
  678. pyromt-2.4.1/pyrogram/raw/base/input_client_proxy.py +43 -0
  679. pyromt-2.4.1/pyrogram/raw/base/input_collectible.py +44 -0
  680. pyromt-2.4.1/pyrogram/raw/base/input_contact.py +43 -0
  681. pyromt-2.4.1/pyrogram/raw/base/input_dialog_peer.py +44 -0
  682. pyromt-2.4.1/pyrogram/raw/base/input_document.py +44 -0
  683. pyromt-2.4.1/pyrogram/raw/base/input_encrypted_chat.py +43 -0
  684. pyromt-2.4.1/pyrogram/raw/base/input_encrypted_file.py +46 -0
  685. pyromt-2.4.1/pyrogram/raw/base/input_file.py +45 -0
  686. pyromt-2.4.1/pyrogram/raw/base/input_file_location.py +52 -0
  687. pyromt-2.4.1/pyrogram/raw/base/input_folder_peer.py +43 -0
  688. pyromt-2.4.1/pyrogram/raw/base/input_game.py +44 -0
  689. pyromt-2.4.1/pyrogram/raw/base/input_geo_point.py +44 -0
  690. pyromt-2.4.1/pyrogram/raw/base/input_group_call.py +45 -0
  691. pyromt-2.4.1/pyrogram/raw/base/input_invoice.py +57 -0
  692. pyromt-2.4.1/pyrogram/raw/base/input_media.py +62 -0
  693. pyromt-2.4.1/pyrogram/raw/base/input_message.py +46 -0
  694. pyromt-2.4.1/pyrogram/raw/base/input_notify_peer.py +47 -0
  695. pyromt-2.4.1/pyrogram/raw/base/input_passkey_credential.py +44 -0
  696. pyromt-2.4.1/pyrogram/raw/base/input_passkey_response.py +44 -0
  697. pyromt-2.4.1/pyrogram/raw/base/input_payment_credentials.py +46 -0
  698. pyromt-2.4.1/pyrogram/raw/base/input_peer.py +49 -0
  699. pyromt-2.4.1/pyrogram/raw/base/input_peer_notify_settings.py +43 -0
  700. pyromt-2.4.1/pyrogram/raw/base/input_phone_call.py +43 -0
  701. pyromt-2.4.1/pyrogram/raw/base/input_photo.py +44 -0
  702. pyromt-2.4.1/pyrogram/raw/base/input_privacy_key.py +56 -0
  703. pyromt-2.4.1/pyrogram/raw/base/input_privacy_rule.py +54 -0
  704. pyromt-2.4.1/pyrogram/raw/base/input_quick_reply_shortcut.py +44 -0
  705. pyromt-2.4.1/pyrogram/raw/base/input_reply_to.py +45 -0
  706. pyromt-2.4.1/pyrogram/raw/base/input_saved_star_gift.py +45 -0
  707. pyromt-2.4.1/pyrogram/raw/base/input_secure_file.py +44 -0
  708. pyromt-2.4.1/pyrogram/raw/base/input_secure_value.py +43 -0
  709. pyromt-2.4.1/pyrogram/raw/base/input_single_media.py +43 -0
  710. pyromt-2.4.1/pyrogram/raw/base/input_star_gift_auction.py +44 -0
  711. pyromt-2.4.1/pyrogram/raw/base/input_stars_transaction.py +43 -0
  712. pyromt-2.4.1/pyrogram/raw/base/input_sticker_set.py +54 -0
  713. pyromt-2.4.1/pyrogram/raw/base/input_sticker_set_item.py +43 -0
  714. pyromt-2.4.1/pyrogram/raw/base/input_stickered_media.py +44 -0
  715. pyromt-2.4.1/pyrogram/raw/base/input_store_payment_purpose.py +50 -0
  716. pyromt-2.4.1/pyrogram/raw/base/input_theme.py +44 -0
  717. pyromt-2.4.1/pyrogram/raw/base/input_theme_settings.py +43 -0
  718. pyromt-2.4.1/pyrogram/raw/base/input_user.py +46 -0
  719. pyromt-2.4.1/pyrogram/raw/base/input_wall_paper.py +45 -0
  720. pyromt-2.4.1/pyrogram/raw/base/input_web_document.py +43 -0
  721. pyromt-2.4.1/pyrogram/raw/base/input_web_file_location.py +45 -0
  722. pyromt-2.4.1/pyrogram/raw/base/invoice.py +43 -0
  723. pyromt-2.4.1/pyrogram/raw/base/ip_port.py +44 -0
  724. pyromt-2.4.1/pyrogram/raw/base/json_object_value.py +43 -0
  725. pyromt-2.4.1/pyrogram/raw/base/json_value.py +48 -0
  726. pyromt-2.4.1/pyrogram/raw/base/keyboard_button.py +60 -0
  727. pyromt-2.4.1/pyrogram/raw/base/keyboard_button_row.py +43 -0
  728. pyromt-2.4.1/pyrogram/raw/base/keyboard_button_style.py +43 -0
  729. pyromt-2.4.1/pyrogram/raw/base/labeled_price.py +43 -0
  730. pyromt-2.4.1/pyrogram/raw/base/lang_pack_difference.py +54 -0
  731. pyromt-2.4.1/pyrogram/raw/base/lang_pack_language.py +54 -0
  732. pyromt-2.4.1/pyrogram/raw/base/lang_pack_string.py +55 -0
  733. pyromt-2.4.1/pyrogram/raw/base/mask_coords.py +43 -0
  734. pyromt-2.4.1/pyrogram/raw/base/media_area.py +51 -0
  735. pyromt-2.4.1/pyrogram/raw/base/media_area_coordinates.py +43 -0
  736. pyromt-2.4.1/pyrogram/raw/base/message.py +45 -0
  737. pyromt-2.4.1/pyrogram/raw/base/message_action.py +104 -0
  738. pyromt-2.4.1/pyrogram/raw/base/message_entity.py +63 -0
  739. pyromt-2.4.1/pyrogram/raw/base/message_extended_media.py +44 -0
  740. pyromt-2.4.1/pyrogram/raw/base/message_fwd_header.py +43 -0
  741. pyromt-2.4.1/pyrogram/raw/base/message_media.py +72 -0
  742. pyromt-2.4.1/pyrogram/raw/base/message_peer_reaction.py +43 -0
  743. pyromt-2.4.1/pyrogram/raw/base/message_peer_vote.py +45 -0
  744. pyromt-2.4.1/pyrogram/raw/base/message_range.py +53 -0
  745. pyromt-2.4.1/pyrogram/raw/base/message_reactions.py +43 -0
  746. pyromt-2.4.1/pyrogram/raw/base/message_reactor.py +43 -0
  747. pyromt-2.4.1/pyrogram/raw/base/message_replies.py +43 -0
  748. pyromt-2.4.1/pyrogram/raw/base/message_reply_header.py +44 -0
  749. pyromt-2.4.1/pyrogram/raw/base/message_report_option.py +43 -0
  750. pyromt-2.4.1/pyrogram/raw/base/message_views.py +43 -0
  751. pyromt-2.4.1/pyrogram/raw/base/messages/__init__.py +76 -0
  752. pyromt-2.4.1/pyrogram/raw/base/messages/affected_found_messages.py +53 -0
  753. pyromt-2.4.1/pyrogram/raw/base/messages/affected_history.py +59 -0
  754. pyromt-2.4.1/pyrogram/raw/base/messages/affected_messages.py +56 -0
  755. pyromt-2.4.1/pyrogram/raw/base/messages/all_stickers.py +56 -0
  756. pyromt-2.4.1/pyrogram/raw/base/messages/archived_stickers.py +53 -0
  757. pyromt-2.4.1/pyrogram/raw/base/messages/available_effects.py +54 -0
  758. pyromt-2.4.1/pyrogram/raw/base/messages/available_reactions.py +54 -0
  759. pyromt-2.4.1/pyrogram/raw/base/messages/bot_app.py +53 -0
  760. pyromt-2.4.1/pyrogram/raw/base/messages/bot_callback_answer.py +53 -0
  761. pyromt-2.4.1/pyrogram/raw/base/messages/bot_prepared_inline_message.py +53 -0
  762. pyromt-2.4.1/pyrogram/raw/base/messages/bot_results.py +53 -0
  763. pyromt-2.4.1/pyrogram/raw/base/messages/chat_admins_with_invites.py +53 -0
  764. pyromt-2.4.1/pyrogram/raw/base/messages/chat_full.py +54 -0
  765. pyromt-2.4.1/pyrogram/raw/base/messages/chat_invite_importers.py +53 -0
  766. pyromt-2.4.1/pyrogram/raw/base/messages/chats.py +61 -0
  767. pyromt-2.4.1/pyrogram/raw/base/messages/checked_history_import_peer.py +53 -0
  768. pyromt-2.4.1/pyrogram/raw/base/messages/dh_config.py +54 -0
  769. pyromt-2.4.1/pyrogram/raw/base/messages/dialog_filters.py +53 -0
  770. pyromt-2.4.1/pyrogram/raw/base/messages/dialogs.py +55 -0
  771. pyromt-2.4.1/pyrogram/raw/base/messages/discussion_message.py +53 -0
  772. pyromt-2.4.1/pyrogram/raw/base/messages/emoji_game_info.py +54 -0
  773. pyromt-2.4.1/pyrogram/raw/base/messages/emoji_game_outcome.py +43 -0
  774. pyromt-2.4.1/pyrogram/raw/base/messages/emoji_groups.py +57 -0
  775. pyromt-2.4.1/pyrogram/raw/base/messages/exported_chat_invite.py +55 -0
  776. pyromt-2.4.1/pyrogram/raw/base/messages/exported_chat_invites.py +53 -0
  777. pyromt-2.4.1/pyrogram/raw/base/messages/faved_stickers.py +54 -0
  778. pyromt-2.4.1/pyrogram/raw/base/messages/featured_stickers.py +56 -0
  779. pyromt-2.4.1/pyrogram/raw/base/messages/forum_topics.py +54 -0
  780. pyromt-2.4.1/pyrogram/raw/base/messages/found_sticker_sets.py +55 -0
  781. pyromt-2.4.1/pyrogram/raw/base/messages/found_stickers.py +54 -0
  782. pyromt-2.4.1/pyrogram/raw/base/messages/high_scores.py +54 -0
  783. pyromt-2.4.1/pyrogram/raw/base/messages/history_import.py +53 -0
  784. pyromt-2.4.1/pyrogram/raw/base/messages/history_import_parsed.py +53 -0
  785. pyromt-2.4.1/pyrogram/raw/base/messages/inactive_chats.py +53 -0
  786. pyromt-2.4.1/pyrogram/raw/base/messages/invited_users.py +55 -0
  787. pyromt-2.4.1/pyrogram/raw/base/messages/message_edit_data.py +53 -0
  788. pyromt-2.4.1/pyrogram/raw/base/messages/message_reactions_list.py +53 -0
  789. pyromt-2.4.1/pyrogram/raw/base/messages/message_views.py +53 -0
  790. pyromt-2.4.1/pyrogram/raw/base/messages/messages.py +70 -0
  791. pyromt-2.4.1/pyrogram/raw/base/messages/my_stickers.py +53 -0
  792. pyromt-2.4.1/pyrogram/raw/base/messages/peer_dialogs.py +54 -0
  793. pyromt-2.4.1/pyrogram/raw/base/messages/peer_settings.py +53 -0
  794. pyromt-2.4.1/pyrogram/raw/base/messages/prepared_inline_message.py +53 -0
  795. pyromt-2.4.1/pyrogram/raw/base/messages/quick_replies.py +54 -0
  796. pyromt-2.4.1/pyrogram/raw/base/messages/reactions.py +56 -0
  797. pyromt-2.4.1/pyrogram/raw/base/messages/recent_stickers.py +54 -0
  798. pyromt-2.4.1/pyrogram/raw/base/messages/saved_dialogs.py +57 -0
  799. pyromt-2.4.1/pyrogram/raw/base/messages/saved_gifs.py +54 -0
  800. pyromt-2.4.1/pyrogram/raw/base/messages/saved_reaction_tags.py +54 -0
  801. pyromt-2.4.1/pyrogram/raw/base/messages/search_counter.py +53 -0
  802. pyromt-2.4.1/pyrogram/raw/base/messages/search_results_calendar.py +53 -0
  803. pyromt-2.4.1/pyrogram/raw/base/messages/search_results_positions.py +53 -0
  804. pyromt-2.4.1/pyrogram/raw/base/messages/sent_encrypted_message.py +56 -0
  805. pyromt-2.4.1/pyrogram/raw/base/messages/sponsored_messages.py +54 -0
  806. pyromt-2.4.1/pyrogram/raw/base/messages/sticker_set.py +62 -0
  807. pyromt-2.4.1/pyrogram/raw/base/messages/sticker_set_install_result.py +54 -0
  808. pyromt-2.4.1/pyrogram/raw/base/messages/stickers.py +54 -0
  809. pyromt-2.4.1/pyrogram/raw/base/messages/transcribed_audio.py +53 -0
  810. pyromt-2.4.1/pyrogram/raw/base/messages/translated_text.py +53 -0
  811. pyromt-2.4.1/pyrogram/raw/base/messages/votes_list.py +53 -0
  812. pyromt-2.4.1/pyrogram/raw/base/messages/web_page.py +53 -0
  813. pyromt-2.4.1/pyrogram/raw/base/messages/web_page_preview.py +53 -0
  814. pyromt-2.4.1/pyrogram/raw/base/messages_filter.py +59 -0
  815. pyromt-2.4.1/pyrogram/raw/base/missing_invitee.py +43 -0
  816. pyromt-2.4.1/pyrogram/raw/base/msg_detailed_info.py +44 -0
  817. pyromt-2.4.1/pyrogram/raw/base/msg_resend_req.py +44 -0
  818. pyromt-2.4.1/pyrogram/raw/base/msgs_ack.py +43 -0
  819. pyromt-2.4.1/pyrogram/raw/base/msgs_all_info.py +43 -0
  820. pyromt-2.4.1/pyrogram/raw/base/msgs_state_info.py +43 -0
  821. pyromt-2.4.1/pyrogram/raw/base/msgs_state_req.py +43 -0
  822. pyromt-2.4.1/pyrogram/raw/base/my_boost.py +43 -0
  823. pyromt-2.4.1/pyrogram/raw/base/nearest_dc.py +53 -0
  824. pyromt-2.4.1/pyrogram/raw/base/new_session.py +43 -0
  825. pyromt-2.4.1/pyrogram/raw/base/notification_sound.py +46 -0
  826. pyromt-2.4.1/pyrogram/raw/base/notify_peer.py +47 -0
  827. pyromt-2.4.1/pyrogram/raw/base/null.py +43 -0
  828. pyromt-2.4.1/pyrogram/raw/base/outbox_read_date.py +53 -0
  829. pyromt-2.4.1/pyrogram/raw/base/page.py +43 -0
  830. pyromt-2.4.1/pyrogram/raw/base/page_block.py +71 -0
  831. pyromt-2.4.1/pyrogram/raw/base/page_caption.py +43 -0
  832. pyromt-2.4.1/pyrogram/raw/base/page_list_item.py +44 -0
  833. pyromt-2.4.1/pyrogram/raw/base/page_list_ordered_item.py +44 -0
  834. pyromt-2.4.1/pyrogram/raw/base/page_related_article.py +43 -0
  835. pyromt-2.4.1/pyrogram/raw/base/page_table_cell.py +43 -0
  836. pyromt-2.4.1/pyrogram/raw/base/page_table_row.py +43 -0
  837. pyromt-2.4.1/pyrogram/raw/base/paid_reaction_privacy.py +45 -0
  838. pyromt-2.4.1/pyrogram/raw/base/passkey.py +53 -0
  839. pyromt-2.4.1/pyrogram/raw/base/password_kdf_algo.py +44 -0
  840. pyromt-2.4.1/pyrogram/raw/base/payment_charge.py +43 -0
  841. pyromt-2.4.1/pyrogram/raw/base/payment_form_method.py +43 -0
  842. pyromt-2.4.1/pyrogram/raw/base/payment_requested_info.py +43 -0
  843. pyromt-2.4.1/pyrogram/raw/base/payment_saved_credentials.py +43 -0
  844. pyromt-2.4.1/pyrogram/raw/base/payments/__init__.py +42 -0
  845. pyromt-2.4.1/pyrogram/raw/base/payments/bank_card_data.py +53 -0
  846. pyromt-2.4.1/pyrogram/raw/base/payments/check_can_send_gift_result.py +54 -0
  847. pyromt-2.4.1/pyrogram/raw/base/payments/checked_gift_code.py +53 -0
  848. pyromt-2.4.1/pyrogram/raw/base/payments/connected_star_ref_bots.py +56 -0
  849. pyromt-2.4.1/pyrogram/raw/base/payments/exported_invoice.py +53 -0
  850. pyromt-2.4.1/pyrogram/raw/base/payments/giveaway_info.py +54 -0
  851. pyromt-2.4.1/pyrogram/raw/base/payments/payment_form.py +55 -0
  852. pyromt-2.4.1/pyrogram/raw/base/payments/payment_receipt.py +54 -0
  853. pyromt-2.4.1/pyrogram/raw/base/payments/payment_result.py +55 -0
  854. pyromt-2.4.1/pyrogram/raw/base/payments/resale_star_gifts.py +53 -0
  855. pyromt-2.4.1/pyrogram/raw/base/payments/saved_info.py +53 -0
  856. pyromt-2.4.1/pyrogram/raw/base/payments/saved_star_gifts.py +55 -0
  857. pyromt-2.4.1/pyrogram/raw/base/payments/star_gift_active_auctions.py +54 -0
  858. pyromt-2.4.1/pyrogram/raw/base/payments/star_gift_auction_acquired_gifts.py +53 -0
  859. pyromt-2.4.1/pyrogram/raw/base/payments/star_gift_auction_state.py +53 -0
  860. pyromt-2.4.1/pyrogram/raw/base/payments/star_gift_collections.py +54 -0
  861. pyromt-2.4.1/pyrogram/raw/base/payments/star_gift_upgrade_attributes.py +53 -0
  862. pyromt-2.4.1/pyrogram/raw/base/payments/star_gift_upgrade_preview.py +53 -0
  863. pyromt-2.4.1/pyrogram/raw/base/payments/star_gift_withdrawal_url.py +53 -0
  864. pyromt-2.4.1/pyrogram/raw/base/payments/star_gifts.py +54 -0
  865. pyromt-2.4.1/pyrogram/raw/base/payments/stars_revenue_ads_account_url.py +53 -0
  866. pyromt-2.4.1/pyrogram/raw/base/payments/stars_revenue_stats.py +53 -0
  867. pyromt-2.4.1/pyrogram/raw/base/payments/stars_revenue_withdrawal_url.py +53 -0
  868. pyromt-2.4.1/pyrogram/raw/base/payments/stars_status.py +56 -0
  869. pyromt-2.4.1/pyrogram/raw/base/payments/suggested_star_ref_bots.py +53 -0
  870. pyromt-2.4.1/pyrogram/raw/base/payments/unique_star_gift.py +53 -0
  871. pyromt-2.4.1/pyrogram/raw/base/payments/unique_star_gift_value_info.py +53 -0
  872. pyromt-2.4.1/pyrogram/raw/base/payments/validated_requested_info.py +53 -0
  873. pyromt-2.4.1/pyrogram/raw/base/peer.py +55 -0
  874. pyromt-2.4.1/pyrogram/raw/base/peer_blocked.py +43 -0
  875. pyromt-2.4.1/pyrogram/raw/base/peer_color.py +45 -0
  876. pyromt-2.4.1/pyrogram/raw/base/peer_located.py +44 -0
  877. pyromt-2.4.1/pyrogram/raw/base/peer_notify_settings.py +53 -0
  878. pyromt-2.4.1/pyrogram/raw/base/peer_settings.py +43 -0
  879. pyromt-2.4.1/pyrogram/raw/base/peer_stories.py +43 -0
  880. pyromt-2.4.1/pyrogram/raw/base/pending_suggestion.py +43 -0
  881. pyromt-2.4.1/pyrogram/raw/base/phone/__init__.py +22 -0
  882. pyromt-2.4.1/pyrogram/raw/base/phone/exported_group_call_invite.py +53 -0
  883. pyromt-2.4.1/pyrogram/raw/base/phone/group_call.py +53 -0
  884. pyromt-2.4.1/pyrogram/raw/base/phone/group_call_stars.py +53 -0
  885. pyromt-2.4.1/pyrogram/raw/base/phone/group_call_stream_channels.py +53 -0
  886. pyromt-2.4.1/pyrogram/raw/base/phone/group_call_stream_rtmp_url.py +53 -0
  887. pyromt-2.4.1/pyrogram/raw/base/phone/group_participants.py +53 -0
  888. pyromt-2.4.1/pyrogram/raw/base/phone/join_as_peers.py +53 -0
  889. pyromt-2.4.1/pyrogram/raw/base/phone/phone_call.py +55 -0
  890. pyromt-2.4.1/pyrogram/raw/base/phone_call.py +48 -0
  891. pyromt-2.4.1/pyrogram/raw/base/phone_call_discard_reason.py +47 -0
  892. pyromt-2.4.1/pyrogram/raw/base/phone_call_protocol.py +43 -0
  893. pyromt-2.4.1/pyrogram/raw/base/phone_connection.py +44 -0
  894. pyromt-2.4.1/pyrogram/raw/base/photo.py +44 -0
  895. pyromt-2.4.1/pyrogram/raw/base/photo_size.py +48 -0
  896. pyromt-2.4.1/pyrogram/raw/base/photos/__init__.py +16 -0
  897. pyromt-2.4.1/pyrogram/raw/base/photos/photo.py +55 -0
  898. pyromt-2.4.1/pyrogram/raw/base/photos/photos.py +54 -0
  899. pyromt-2.4.1/pyrogram/raw/base/poll.py +43 -0
  900. pyromt-2.4.1/pyrogram/raw/base/poll_answer.py +43 -0
  901. pyromt-2.4.1/pyrogram/raw/base/poll_answer_voters.py +43 -0
  902. pyromt-2.4.1/pyrogram/raw/base/poll_results.py +43 -0
  903. pyromt-2.4.1/pyrogram/raw/base/pong.py +54 -0
  904. pyromt-2.4.1/pyrogram/raw/base/popular_contact.py +43 -0
  905. pyromt-2.4.1/pyrogram/raw/base/post_address.py +43 -0
  906. pyromt-2.4.1/pyrogram/raw/base/post_interaction_counters.py +44 -0
  907. pyromt-2.4.1/pyrogram/raw/base/pq_inner_data.py +46 -0
  908. pyromt-2.4.1/pyrogram/raw/base/premium/__init__.py +17 -0
  909. pyromt-2.4.1/pyrogram/raw/base/premium/boosts_list.py +54 -0
  910. pyromt-2.4.1/pyrogram/raw/base/premium/boosts_status.py +53 -0
  911. pyromt-2.4.1/pyrogram/raw/base/premium/my_boosts.py +54 -0
  912. pyromt-2.4.1/pyrogram/raw/base/premium_gift_code_option.py +53 -0
  913. pyromt-2.4.1/pyrogram/raw/base/premium_subscription_option.py +43 -0
  914. pyromt-2.4.1/pyrogram/raw/base/prepaid_giveaway.py +44 -0
  915. pyromt-2.4.1/pyrogram/raw/base/privacy_key.py +56 -0
  916. pyromt-2.4.1/pyrogram/raw/base/privacy_rule.py +54 -0
  917. pyromt-2.4.1/pyrogram/raw/base/profile_tab.py +50 -0
  918. pyromt-2.4.1/pyrogram/raw/base/public_forward.py +44 -0
  919. pyromt-2.4.1/pyrogram/raw/base/quick_reply.py +43 -0
  920. pyromt-2.4.1/pyrogram/raw/base/reaction.py +46 -0
  921. pyromt-2.4.1/pyrogram/raw/base/reaction_count.py +43 -0
  922. pyromt-2.4.1/pyrogram/raw/base/reaction_notifications_from.py +44 -0
  923. pyromt-2.4.1/pyrogram/raw/base/reactions_notify_settings.py +54 -0
  924. pyromt-2.4.1/pyrogram/raw/base/read_participant_date.py +53 -0
  925. pyromt-2.4.1/pyrogram/raw/base/received_notify_message.py +53 -0
  926. pyromt-2.4.1/pyrogram/raw/base/recent_me_url.py +47 -0
  927. pyromt-2.4.1/pyrogram/raw/base/recent_story.py +53 -0
  928. pyromt-2.4.1/pyrogram/raw/base/reply_markup.py +46 -0
  929. pyromt-2.4.1/pyrogram/raw/base/report_reason.py +52 -0
  930. pyromt-2.4.1/pyrogram/raw/base/report_result.py +56 -0
  931. pyromt-2.4.1/pyrogram/raw/base/request_peer_type.py +45 -0
  932. pyromt-2.4.1/pyrogram/raw/base/requested_peer.py +45 -0
  933. pyromt-2.4.1/pyrogram/raw/base/requirement_to_contact.py +55 -0
  934. pyromt-2.4.1/pyrogram/raw/base/res_pq.py +54 -0
  935. pyromt-2.4.1/pyrogram/raw/base/restriction_reason.py +43 -0
  936. pyromt-2.4.1/pyrogram/raw/base/rich_text.py +58 -0
  937. pyromt-2.4.1/pyrogram/raw/base/rpc_drop_answer.py +55 -0
  938. pyromt-2.4.1/pyrogram/raw/base/rpc_error.py +43 -0
  939. pyromt-2.4.1/pyrogram/raw/base/rpc_result.py +43 -0
  940. pyromt-2.4.1/pyrogram/raw/base/saved_contact.py +53 -0
  941. pyromt-2.4.1/pyrogram/raw/base/saved_dialog.py +44 -0
  942. pyromt-2.4.1/pyrogram/raw/base/saved_reaction_tag.py +43 -0
  943. pyromt-2.4.1/pyrogram/raw/base/saved_star_gift.py +43 -0
  944. pyromt-2.4.1/pyrogram/raw/base/search_posts_flood.py +53 -0
  945. pyromt-2.4.1/pyrogram/raw/base/search_results_calendar_period.py +43 -0
  946. pyromt-2.4.1/pyrogram/raw/base/search_results_position.py +43 -0
  947. pyromt-2.4.1/pyrogram/raw/base/secure_credentials_encrypted.py +43 -0
  948. pyromt-2.4.1/pyrogram/raw/base/secure_data.py +43 -0
  949. pyromt-2.4.1/pyrogram/raw/base/secure_file.py +44 -0
  950. pyromt-2.4.1/pyrogram/raw/base/secure_password_kdf_algo.py +45 -0
  951. pyromt-2.4.1/pyrogram/raw/base/secure_plain_data.py +44 -0
  952. pyromt-2.4.1/pyrogram/raw/base/secure_required_type.py +44 -0
  953. pyromt-2.4.1/pyrogram/raw/base/secure_secret_settings.py +43 -0
  954. pyromt-2.4.1/pyrogram/raw/base/secure_value.py +55 -0
  955. pyromt-2.4.1/pyrogram/raw/base/secure_value_error.py +51 -0
  956. pyromt-2.4.1/pyrogram/raw/base/secure_value_hash.py +43 -0
  957. pyromt-2.4.1/pyrogram/raw/base/secure_value_type.py +55 -0
  958. pyromt-2.4.1/pyrogram/raw/base/send_as_peer.py +43 -0
  959. pyromt-2.4.1/pyrogram/raw/base/send_message_action.py +61 -0
  960. pyromt-2.4.1/pyrogram/raw/base/server_dh_inner_data.py +43 -0
  961. pyromt-2.4.1/pyrogram/raw/base/server_dh_params.py +54 -0
  962. pyromt-2.4.1/pyrogram/raw/base/set_client_dh_params_answer.py +55 -0
  963. pyromt-2.4.1/pyrogram/raw/base/shipping_option.py +43 -0
  964. pyromt-2.4.1/pyrogram/raw/base/sms_job.py +53 -0
  965. pyromt-2.4.1/pyrogram/raw/base/smsjobs/__init__.py +16 -0
  966. pyromt-2.4.1/pyrogram/raw/base/smsjobs/eligibility_to_join.py +53 -0
  967. pyromt-2.4.1/pyrogram/raw/base/smsjobs/status.py +53 -0
  968. pyromt-2.4.1/pyrogram/raw/base/sponsored_message.py +43 -0
  969. pyromt-2.4.1/pyrogram/raw/base/sponsored_message_report_option.py +43 -0
  970. pyromt-2.4.1/pyrogram/raw/base/sponsored_peer.py +43 -0
  971. pyromt-2.4.1/pyrogram/raw/base/star_gift.py +44 -0
  972. pyromt-2.4.1/pyrogram/raw/base/star_gift_active_auction_state.py +43 -0
  973. pyromt-2.4.1/pyrogram/raw/base/star_gift_attribute.py +46 -0
  974. pyromt-2.4.1/pyrogram/raw/base/star_gift_attribute_counter.py +43 -0
  975. pyromt-2.4.1/pyrogram/raw/base/star_gift_attribute_id.py +45 -0
  976. pyromt-2.4.1/pyrogram/raw/base/star_gift_attribute_rarity.py +47 -0
  977. pyromt-2.4.1/pyrogram/raw/base/star_gift_auction_acquired_gift.py +43 -0
  978. pyromt-2.4.1/pyrogram/raw/base/star_gift_auction_round.py +44 -0
  979. pyromt-2.4.1/pyrogram/raw/base/star_gift_auction_state.py +45 -0
  980. pyromt-2.4.1/pyrogram/raw/base/star_gift_auction_user_state.py +43 -0
  981. pyromt-2.4.1/pyrogram/raw/base/star_gift_background.py +43 -0
  982. pyromt-2.4.1/pyrogram/raw/base/star_gift_collection.py +54 -0
  983. pyromt-2.4.1/pyrogram/raw/base/star_gift_upgrade_price.py +43 -0
  984. pyromt-2.4.1/pyrogram/raw/base/star_ref_program.py +53 -0
  985. pyromt-2.4.1/pyrogram/raw/base/stars_amount.py +44 -0
  986. pyromt-2.4.1/pyrogram/raw/base/stars_gift_option.py +53 -0
  987. pyromt-2.4.1/pyrogram/raw/base/stars_giveaway_option.py +53 -0
  988. pyromt-2.4.1/pyrogram/raw/base/stars_giveaway_winners_option.py +43 -0
  989. pyromt-2.4.1/pyrogram/raw/base/stars_rating.py +43 -0
  990. pyromt-2.4.1/pyrogram/raw/base/stars_revenue_status.py +43 -0
  991. pyromt-2.4.1/pyrogram/raw/base/stars_subscription.py +43 -0
  992. pyromt-2.4.1/pyrogram/raw/base/stars_subscription_pricing.py +43 -0
  993. pyromt-2.4.1/pyrogram/raw/base/stars_topup_option.py +53 -0
  994. pyromt-2.4.1/pyrogram/raw/base/stars_transaction.py +43 -0
  995. pyromt-2.4.1/pyrogram/raw/base/stars_transaction_peer.py +50 -0
  996. pyromt-2.4.1/pyrogram/raw/base/stats/__init__.py +19 -0
  997. pyromt-2.4.1/pyrogram/raw/base/stats/broadcast_stats.py +53 -0
  998. pyromt-2.4.1/pyrogram/raw/base/stats/megagroup_stats.py +53 -0
  999. pyromt-2.4.1/pyrogram/raw/base/stats/message_stats.py +53 -0
  1000. pyromt-2.4.1/pyrogram/raw/base/stats/public_forwards.py +54 -0
  1001. pyromt-2.4.1/pyrogram/raw/base/stats/story_stats.py +53 -0
  1002. pyromt-2.4.1/pyrogram/raw/base/stats_abs_value_and_prev.py +43 -0
  1003. pyromt-2.4.1/pyrogram/raw/base/stats_date_range_days.py +43 -0
  1004. pyromt-2.4.1/pyrogram/raw/base/stats_graph.py +55 -0
  1005. pyromt-2.4.1/pyrogram/raw/base/stats_group_top_admin.py +43 -0
  1006. pyromt-2.4.1/pyrogram/raw/base/stats_group_top_inviter.py +43 -0
  1007. pyromt-2.4.1/pyrogram/raw/base/stats_group_top_poster.py +43 -0
  1008. pyromt-2.4.1/pyrogram/raw/base/stats_percent_value.py +43 -0
  1009. pyromt-2.4.1/pyrogram/raw/base/stats_url.py +43 -0
  1010. pyromt-2.4.1/pyrogram/raw/base/sticker_keyword.py +43 -0
  1011. pyromt-2.4.1/pyrogram/raw/base/sticker_pack.py +43 -0
  1012. pyromt-2.4.1/pyrogram/raw/base/sticker_set.py +43 -0
  1013. pyromt-2.4.1/pyrogram/raw/base/sticker_set_covered.py +56 -0
  1014. pyromt-2.4.1/pyrogram/raw/base/stickers/__init__.py +15 -0
  1015. pyromt-2.4.1/pyrogram/raw/base/stickers/suggested_short_name.py +53 -0
  1016. pyromt-2.4.1/pyrogram/raw/base/storage/__init__.py +15 -0
  1017. pyromt-2.4.1/pyrogram/raw/base/storage/file_type.py +52 -0
  1018. pyromt-2.4.1/pyrogram/raw/base/stories/__init__.py +23 -0
  1019. pyromt-2.4.1/pyrogram/raw/base/stories/albums.py +54 -0
  1020. pyromt-2.4.1/pyrogram/raw/base/stories/all_stories.py +54 -0
  1021. pyromt-2.4.1/pyrogram/raw/base/stories/can_send_story_count.py +53 -0
  1022. pyromt-2.4.1/pyrogram/raw/base/stories/found_stories.py +53 -0
  1023. pyromt-2.4.1/pyrogram/raw/base/stories/peer_stories.py +53 -0
  1024. pyromt-2.4.1/pyrogram/raw/base/stories/stories.py +56 -0
  1025. pyromt-2.4.1/pyrogram/raw/base/stories/story_reactions_list.py +53 -0
  1026. pyromt-2.4.1/pyrogram/raw/base/stories/story_views.py +53 -0
  1027. pyromt-2.4.1/pyrogram/raw/base/stories/story_views_list.py +53 -0
  1028. pyromt-2.4.1/pyrogram/raw/base/stories_stealth_mode.py +43 -0
  1029. pyromt-2.4.1/pyrogram/raw/base/story_album.py +54 -0
  1030. pyromt-2.4.1/pyrogram/raw/base/story_fwd_header.py +43 -0
  1031. pyromt-2.4.1/pyrogram/raw/base/story_item.py +45 -0
  1032. pyromt-2.4.1/pyrogram/raw/base/story_reaction.py +45 -0
  1033. pyromt-2.4.1/pyrogram/raw/base/story_view.py +45 -0
  1034. pyromt-2.4.1/pyrogram/raw/base/story_views.py +43 -0
  1035. pyromt-2.4.1/pyrogram/raw/base/suggested_post.py +43 -0
  1036. pyromt-2.4.1/pyrogram/raw/base/text_with_entities.py +53 -0
  1037. pyromt-2.4.1/pyrogram/raw/base/theme.py +55 -0
  1038. pyromt-2.4.1/pyrogram/raw/base/theme_settings.py +43 -0
  1039. pyromt-2.4.1/pyrogram/raw/base/timezone.py +43 -0
  1040. pyromt-2.4.1/pyrogram/raw/base/todo_completion.py +43 -0
  1041. pyromt-2.4.1/pyrogram/raw/base/todo_item.py +43 -0
  1042. pyromt-2.4.1/pyrogram/raw/base/todo_list.py +43 -0
  1043. pyromt-2.4.1/pyrogram/raw/base/top_peer.py +43 -0
  1044. pyromt-2.4.1/pyrogram/raw/base/top_peer_category.py +51 -0
  1045. pyromt-2.4.1/pyrogram/raw/base/top_peer_category_peers.py +43 -0
  1046. pyromt-2.4.1/pyrogram/raw/base/true_.py +43 -0
  1047. pyromt-2.4.1/pyrogram/raw/base/update.py +194 -0
  1048. pyromt-2.4.1/pyrogram/raw/base/updates/__init__.py +17 -0
  1049. pyromt-2.4.1/pyrogram/raw/base/updates/channel_difference.py +55 -0
  1050. pyromt-2.4.1/pyrogram/raw/base/updates/difference.py +56 -0
  1051. pyromt-2.4.1/pyrogram/raw/base/updates/state.py +53 -0
  1052. pyromt-2.4.1/pyrogram/raw/base/updates_t.py +185 -0
  1053. pyromt-2.4.1/pyrogram/raw/base/upload/__init__.py +17 -0
  1054. pyromt-2.4.1/pyrogram/raw/base/upload/cdn_file.py +54 -0
  1055. pyromt-2.4.1/pyrogram/raw/base/upload/file.py +54 -0
  1056. pyromt-2.4.1/pyrogram/raw/base/upload/web_file.py +53 -0
  1057. pyromt-2.4.1/pyrogram/raw/base/url_auth_result.py +56 -0
  1058. pyromt-2.4.1/pyrogram/raw/base/user.py +61 -0
  1059. pyromt-2.4.1/pyrogram/raw/base/user_full.py +43 -0
  1060. pyromt-2.4.1/pyrogram/raw/base/user_profile_photo.py +44 -0
  1061. pyromt-2.4.1/pyrogram/raw/base/user_status.py +48 -0
  1062. pyromt-2.4.1/pyrogram/raw/base/username.py +43 -0
  1063. pyromt-2.4.1/pyrogram/raw/base/users/__init__.py +17 -0
  1064. pyromt-2.4.1/pyrogram/raw/base/users/saved_music.py +55 -0
  1065. pyromt-2.4.1/pyrogram/raw/base/users/user_full.py +53 -0
  1066. pyromt-2.4.1/pyrogram/raw/base/users/users.py +54 -0
  1067. pyromt-2.4.1/pyrogram/raw/base/video_size.py +45 -0
  1068. pyromt-2.4.1/pyrogram/raw/base/wall_paper.py +56 -0
  1069. pyromt-2.4.1/pyrogram/raw/base/wall_paper_settings.py +43 -0
  1070. pyromt-2.4.1/pyrogram/raw/base/web_authorization.py +43 -0
  1071. pyromt-2.4.1/pyrogram/raw/base/web_document.py +44 -0
  1072. pyromt-2.4.1/pyrogram/raw/base/web_page.py +46 -0
  1073. pyromt-2.4.1/pyrogram/raw/base/web_page_attribute.py +48 -0
  1074. pyromt-2.4.1/pyrogram/raw/base/web_view_message_sent.py +53 -0
  1075. pyromt-2.4.1/pyrogram/raw/base/web_view_result.py +56 -0
  1076. pyromt-2.4.1/pyrogram/raw/core/__init__.py +53 -0
  1077. pyromt-2.4.1/pyrogram/raw/core/future_salt.py +54 -0
  1078. pyromt-2.4.1/pyrogram/raw/core/future_salts.py +64 -0
  1079. pyromt-2.4.1/pyrogram/raw/core/gzip_packed.py +63 -0
  1080. pyromt-2.4.1/pyrogram/raw/core/list.py +27 -0
  1081. pyromt-2.4.1/pyrogram/raw/core/message.py +57 -0
  1082. pyromt-2.4.1/pyrogram/raw/core/msg_container.py +54 -0
  1083. pyromt-2.4.1/pyrogram/raw/core/primitives/__init__.py +39 -0
  1084. pyromt-2.4.1/pyrogram/raw/core/primitives/bool.py +49 -0
  1085. pyromt-2.4.1/pyrogram/raw/core/primitives/bytes.py +56 -0
  1086. pyromt-2.4.1/pyrogram/raw/core/primitives/double.py +33 -0
  1087. pyromt-2.4.1/pyrogram/raw/core/primitives/int.py +46 -0
  1088. pyromt-2.4.1/pyrogram/raw/core/primitives/string.py +32 -0
  1089. pyromt-2.4.1/pyrogram/raw/core/primitives/vector.py +76 -0
  1090. pyromt-2.4.1/pyrogram/raw/core/tl_object.py +83 -0
  1091. pyromt-2.4.1/pyrogram/raw/functions/__init__.py +36 -0
  1092. pyromt-2.4.1/pyrogram/raw/functions/account/__init__.py +137 -0
  1093. pyromt-2.4.1/pyrogram/raw/functions/account/accept_authorization.py +94 -0
  1094. pyromt-2.4.1/pyrogram/raw/functions/account/cancel_password_email.py +57 -0
  1095. pyromt-2.4.1/pyrogram/raw/functions/account/change_authorization_settings.py +88 -0
  1096. pyromt-2.4.1/pyrogram/raw/functions/account/change_phone.py +78 -0
  1097. pyromt-2.4.1/pyrogram/raw/functions/account/check_username.py +62 -0
  1098. pyromt-2.4.1/pyrogram/raw/functions/account/clear_recent_emoji_statuses.py +57 -0
  1099. pyromt-2.4.1/pyrogram/raw/functions/account/confirm_password_email.py +62 -0
  1100. pyromt-2.4.1/pyrogram/raw/functions/account/confirm_phone.py +70 -0
  1101. pyromt-2.4.1/pyrogram/raw/functions/account/create_business_chat_link.py +62 -0
  1102. pyromt-2.4.1/pyrogram/raw/functions/account/create_theme.py +92 -0
  1103. pyromt-2.4.1/pyrogram/raw/functions/account/decline_password_reset.py +57 -0
  1104. pyromt-2.4.1/pyrogram/raw/functions/account/delete_account.py +74 -0
  1105. pyromt-2.4.1/pyrogram/raw/functions/account/delete_auto_save_exceptions.py +57 -0
  1106. pyromt-2.4.1/pyrogram/raw/functions/account/delete_business_chat_link.py +62 -0
  1107. pyromt-2.4.1/pyrogram/raw/functions/account/delete_passkey.py +62 -0
  1108. pyromt-2.4.1/pyrogram/raw/functions/account/delete_secure_value.py +62 -0
  1109. pyromt-2.4.1/pyrogram/raw/functions/account/disable_peer_connected_bot.py +62 -0
  1110. pyromt-2.4.1/pyrogram/raw/functions/account/edit_business_chat_link.py +70 -0
  1111. pyromt-2.4.1/pyrogram/raw/functions/account/finish_takeout_session.py +62 -0
  1112. pyromt-2.4.1/pyrogram/raw/functions/account/get_account_ttl.py +57 -0
  1113. pyromt-2.4.1/pyrogram/raw/functions/account/get_all_secure_values.py +57 -0
  1114. pyromt-2.4.1/pyrogram/raw/functions/account/get_authorization_form.py +78 -0
  1115. pyromt-2.4.1/pyrogram/raw/functions/account/get_authorizations.py +57 -0
  1116. pyromt-2.4.1/pyrogram/raw/functions/account/get_auto_download_settings.py +57 -0
  1117. pyromt-2.4.1/pyrogram/raw/functions/account/get_auto_save_settings.py +57 -0
  1118. pyromt-2.4.1/pyrogram/raw/functions/account/get_bot_business_connection.py +62 -0
  1119. pyromt-2.4.1/pyrogram/raw/functions/account/get_business_chat_links.py +57 -0
  1120. pyromt-2.4.1/pyrogram/raw/functions/account/get_channel_default_emoji_statuses.py +62 -0
  1121. pyromt-2.4.1/pyrogram/raw/functions/account/get_channel_restricted_status_emojis.py +62 -0
  1122. pyromt-2.4.1/pyrogram/raw/functions/account/get_chat_themes.py +62 -0
  1123. pyromt-2.4.1/pyrogram/raw/functions/account/get_collectible_emoji_statuses.py +62 -0
  1124. pyromt-2.4.1/pyrogram/raw/functions/account/get_connected_bots.py +57 -0
  1125. pyromt-2.4.1/pyrogram/raw/functions/account/get_contact_sign_up_notification.py +57 -0
  1126. pyromt-2.4.1/pyrogram/raw/functions/account/get_content_settings.py +57 -0
  1127. pyromt-2.4.1/pyrogram/raw/functions/account/get_default_background_emojis.py +62 -0
  1128. pyromt-2.4.1/pyrogram/raw/functions/account/get_default_emoji_statuses.py +62 -0
  1129. pyromt-2.4.1/pyrogram/raw/functions/account/get_default_group_photo_emojis.py +62 -0
  1130. pyromt-2.4.1/pyrogram/raw/functions/account/get_default_profile_photo_emojis.py +62 -0
  1131. pyromt-2.4.1/pyrogram/raw/functions/account/get_global_privacy_settings.py +57 -0
  1132. pyromt-2.4.1/pyrogram/raw/functions/account/get_multi_wall_papers.py +62 -0
  1133. pyromt-2.4.1/pyrogram/raw/functions/account/get_notify_exceptions.py +78 -0
  1134. pyromt-2.4.1/pyrogram/raw/functions/account/get_notify_settings.py +62 -0
  1135. pyromt-2.4.1/pyrogram/raw/functions/account/get_paid_messages_revenue.py +74 -0
  1136. pyromt-2.4.1/pyrogram/raw/functions/account/get_passkeys.py +57 -0
  1137. pyromt-2.4.1/pyrogram/raw/functions/account/get_password.py +57 -0
  1138. pyromt-2.4.1/pyrogram/raw/functions/account/get_password_settings.py +62 -0
  1139. pyromt-2.4.1/pyrogram/raw/functions/account/get_privacy.py +62 -0
  1140. pyromt-2.4.1/pyrogram/raw/functions/account/get_reactions_notify_settings.py +57 -0
  1141. pyromt-2.4.1/pyrogram/raw/functions/account/get_recent_emoji_statuses.py +62 -0
  1142. pyromt-2.4.1/pyrogram/raw/functions/account/get_saved_music_ids.py +62 -0
  1143. pyromt-2.4.1/pyrogram/raw/functions/account/get_saved_ringtones.py +62 -0
  1144. pyromt-2.4.1/pyrogram/raw/functions/account/get_secure_value.py +62 -0
  1145. pyromt-2.4.1/pyrogram/raw/functions/account/get_theme.py +70 -0
  1146. pyromt-2.4.1/pyrogram/raw/functions/account/get_themes.py +70 -0
  1147. pyromt-2.4.1/pyrogram/raw/functions/account/get_tmp_password.py +70 -0
  1148. pyromt-2.4.1/pyrogram/raw/functions/account/get_unique_gift_chat_themes.py +78 -0
  1149. pyromt-2.4.1/pyrogram/raw/functions/account/get_wall_paper.py +62 -0
  1150. pyromt-2.4.1/pyrogram/raw/functions/account/get_wall_papers.py +62 -0
  1151. pyromt-2.4.1/pyrogram/raw/functions/account/get_web_authorizations.py +57 -0
  1152. pyromt-2.4.1/pyrogram/raw/functions/account/init_passkey_registration.py +57 -0
  1153. pyromt-2.4.1/pyrogram/raw/functions/account/init_takeout_session.py +101 -0
  1154. pyromt-2.4.1/pyrogram/raw/functions/account/install_theme.py +91 -0
  1155. pyromt-2.4.1/pyrogram/raw/functions/account/install_wall_paper.py +70 -0
  1156. pyromt-2.4.1/pyrogram/raw/functions/account/invalidate_sign_in_codes.py +62 -0
  1157. pyromt-2.4.1/pyrogram/raw/functions/account/register_device.py +102 -0
  1158. pyromt-2.4.1/pyrogram/raw/functions/account/register_passkey.py +62 -0
  1159. pyromt-2.4.1/pyrogram/raw/functions/account/reorder_usernames.py +62 -0
  1160. pyromt-2.4.1/pyrogram/raw/functions/account/report_peer.py +78 -0
  1161. pyromt-2.4.1/pyrogram/raw/functions/account/report_profile_photo.py +86 -0
  1162. pyromt-2.4.1/pyrogram/raw/functions/account/resend_password_email.py +57 -0
  1163. pyromt-2.4.1/pyrogram/raw/functions/account/reset_authorization.py +62 -0
  1164. pyromt-2.4.1/pyrogram/raw/functions/account/reset_notify_settings.py +57 -0
  1165. pyromt-2.4.1/pyrogram/raw/functions/account/reset_password.py +57 -0
  1166. pyromt-2.4.1/pyrogram/raw/functions/account/reset_wall_papers.py +57 -0
  1167. pyromt-2.4.1/pyrogram/raw/functions/account/reset_web_authorization.py +62 -0
  1168. pyromt-2.4.1/pyrogram/raw/functions/account/reset_web_authorizations.py +57 -0
  1169. pyromt-2.4.1/pyrogram/raw/functions/account/resolve_business_chat_link.py +62 -0
  1170. pyromt-2.4.1/pyrogram/raw/functions/account/save_auto_download_settings.py +76 -0
  1171. pyromt-2.4.1/pyrogram/raw/functions/account/save_auto_save_settings.py +92 -0
  1172. pyromt-2.4.1/pyrogram/raw/functions/account/save_music.py +80 -0
  1173. pyromt-2.4.1/pyrogram/raw/functions/account/save_ringtone.py +70 -0
  1174. pyromt-2.4.1/pyrogram/raw/functions/account/save_secure_value.py +70 -0
  1175. pyromt-2.4.1/pyrogram/raw/functions/account/save_theme.py +70 -0
  1176. pyromt-2.4.1/pyrogram/raw/functions/account/save_wall_paper.py +78 -0
  1177. pyromt-2.4.1/pyrogram/raw/functions/account/send_change_phone_code.py +70 -0
  1178. pyromt-2.4.1/pyrogram/raw/functions/account/send_confirm_phone_code.py +70 -0
  1179. pyromt-2.4.1/pyrogram/raw/functions/account/send_verify_email_code.py +70 -0
  1180. pyromt-2.4.1/pyrogram/raw/functions/account/send_verify_phone_code.py +70 -0
  1181. pyromt-2.4.1/pyrogram/raw/functions/account/set_account_ttl.py +62 -0
  1182. pyromt-2.4.1/pyrogram/raw/functions/account/set_authorization_ttl.py +62 -0
  1183. pyromt-2.4.1/pyrogram/raw/functions/account/set_contact_sign_up_notification.py +62 -0
  1184. pyromt-2.4.1/pyrogram/raw/functions/account/set_content_settings.py +62 -0
  1185. pyromt-2.4.1/pyrogram/raw/functions/account/set_global_privacy_settings.py +62 -0
  1186. pyromt-2.4.1/pyrogram/raw/functions/account/set_main_profile_tab.py +62 -0
  1187. pyromt-2.4.1/pyrogram/raw/functions/account/set_privacy.py +70 -0
  1188. pyromt-2.4.1/pyrogram/raw/functions/account/set_reactions_notify_settings.py +62 -0
  1189. pyromt-2.4.1/pyrogram/raw/functions/account/toggle_connected_bot_paused.py +70 -0
  1190. pyromt-2.4.1/pyrogram/raw/functions/account/toggle_no_paid_messages_exception.py +86 -0
  1191. pyromt-2.4.1/pyrogram/raw/functions/account/toggle_sponsored_messages.py +62 -0
  1192. pyromt-2.4.1/pyrogram/raw/functions/account/toggle_username.py +70 -0
  1193. pyromt-2.4.1/pyrogram/raw/functions/account/unregister_device.py +78 -0
  1194. pyromt-2.4.1/pyrogram/raw/functions/account/update_birthday.py +66 -0
  1195. pyromt-2.4.1/pyrogram/raw/functions/account/update_business_away_message.py +66 -0
  1196. pyromt-2.4.1/pyrogram/raw/functions/account/update_business_greeting_message.py +66 -0
  1197. pyromt-2.4.1/pyrogram/raw/functions/account/update_business_intro.py +66 -0
  1198. pyromt-2.4.1/pyrogram/raw/functions/account/update_business_location.py +75 -0
  1199. pyromt-2.4.1/pyrogram/raw/functions/account/update_business_work_hours.py +66 -0
  1200. pyromt-2.4.1/pyrogram/raw/functions/account/update_color.py +72 -0
  1201. pyromt-2.4.1/pyrogram/raw/functions/account/update_connected_bot.py +88 -0
  1202. pyromt-2.4.1/pyrogram/raw/functions/account/update_device_locked.py +62 -0
  1203. pyromt-2.4.1/pyrogram/raw/functions/account/update_emoji_status.py +62 -0
  1204. pyromt-2.4.1/pyrogram/raw/functions/account/update_notify_settings.py +70 -0
  1205. pyromt-2.4.1/pyrogram/raw/functions/account/update_password_settings.py +70 -0
  1206. pyromt-2.4.1/pyrogram/raw/functions/account/update_personal_channel.py +62 -0
  1207. pyromt-2.4.1/pyrogram/raw/functions/account/update_profile.py +83 -0
  1208. pyromt-2.4.1/pyrogram/raw/functions/account/update_status.py +62 -0
  1209. pyromt-2.4.1/pyrogram/raw/functions/account/update_theme.py +110 -0
  1210. pyromt-2.4.1/pyrogram/raw/functions/account/update_username.py +62 -0
  1211. pyromt-2.4.1/pyrogram/raw/functions/account/upload_ringtone.py +78 -0
  1212. pyromt-2.4.1/pyrogram/raw/functions/account/upload_theme.py +90 -0
  1213. pyromt-2.4.1/pyrogram/raw/functions/account/upload_wall_paper.py +86 -0
  1214. pyromt-2.4.1/pyrogram/raw/functions/account/verify_email.py +70 -0
  1215. pyromt-2.4.1/pyrogram/raw/functions/account/verify_phone.py +78 -0
  1216. pyromt-2.4.1/pyrogram/raw/functions/auth/__init__.py +40 -0
  1217. pyromt-2.4.1/pyrogram/raw/functions/auth/accept_login_token.py +62 -0
  1218. pyromt-2.4.1/pyrogram/raw/functions/auth/bind_temp_auth_key.py +86 -0
  1219. pyromt-2.4.1/pyrogram/raw/functions/auth/cancel_code.py +70 -0
  1220. pyromt-2.4.1/pyrogram/raw/functions/auth/check_paid_auth.py +78 -0
  1221. pyromt-2.4.1/pyrogram/raw/functions/auth/check_password.py +62 -0
  1222. pyromt-2.4.1/pyrogram/raw/functions/auth/check_recovery_password.py +62 -0
  1223. pyromt-2.4.1/pyrogram/raw/functions/auth/drop_temp_auth_keys.py +62 -0
  1224. pyromt-2.4.1/pyrogram/raw/functions/auth/export_authorization.py +62 -0
  1225. pyromt-2.4.1/pyrogram/raw/functions/auth/export_login_token.py +78 -0
  1226. pyromt-2.4.1/pyrogram/raw/functions/auth/finish_passkey_login.py +82 -0
  1227. pyromt-2.4.1/pyrogram/raw/functions/auth/import_authorization.py +70 -0
  1228. pyromt-2.4.1/pyrogram/raw/functions/auth/import_bot_authorization.py +86 -0
  1229. pyromt-2.4.1/pyrogram/raw/functions/auth/import_login_token.py +62 -0
  1230. pyromt-2.4.1/pyrogram/raw/functions/auth/import_web_token_authorization.py +78 -0
  1231. pyromt-2.4.1/pyrogram/raw/functions/auth/init_passkey_login.py +70 -0
  1232. pyromt-2.4.1/pyrogram/raw/functions/auth/log_out.py +57 -0
  1233. pyromt-2.4.1/pyrogram/raw/functions/auth/recover_password.py +74 -0
  1234. pyromt-2.4.1/pyrogram/raw/functions/auth/report_missing_code.py +78 -0
  1235. pyromt-2.4.1/pyrogram/raw/functions/auth/request_firebase_sms.py +99 -0
  1236. pyromt-2.4.1/pyrogram/raw/functions/auth/request_password_recovery.py +57 -0
  1237. pyromt-2.4.1/pyrogram/raw/functions/auth/resend_code.py +81 -0
  1238. pyromt-2.4.1/pyrogram/raw/functions/auth/reset_authorizations.py +57 -0
  1239. pyromt-2.4.1/pyrogram/raw/functions/auth/reset_login_email.py +70 -0
  1240. pyromt-2.4.1/pyrogram/raw/functions/auth/send_code.py +86 -0
  1241. pyromt-2.4.1/pyrogram/raw/functions/auth/sign_in.py +91 -0
  1242. pyromt-2.4.1/pyrogram/raw/functions/auth/sign_up.py +94 -0
  1243. pyromt-2.4.1/pyrogram/raw/functions/bots/__init__.py +44 -0
  1244. pyromt-2.4.1/pyrogram/raw/functions/bots/add_preview_media.py +78 -0
  1245. pyromt-2.4.1/pyrogram/raw/functions/bots/allow_send_message.py +62 -0
  1246. pyromt-2.4.1/pyrogram/raw/functions/bots/answer_webhook_json_query.py +70 -0
  1247. pyromt-2.4.1/pyrogram/raw/functions/bots/can_send_message.py +62 -0
  1248. pyromt-2.4.1/pyrogram/raw/functions/bots/check_download_file_params.py +78 -0
  1249. pyromt-2.4.1/pyrogram/raw/functions/bots/delete_preview_media.py +78 -0
  1250. pyromt-2.4.1/pyrogram/raw/functions/bots/edit_preview_media.py +86 -0
  1251. pyromt-2.4.1/pyrogram/raw/functions/bots/get_admined_bots.py +57 -0
  1252. pyromt-2.4.1/pyrogram/raw/functions/bots/get_bot_commands.py +70 -0
  1253. pyromt-2.4.1/pyrogram/raw/functions/bots/get_bot_info.py +74 -0
  1254. pyromt-2.4.1/pyrogram/raw/functions/bots/get_bot_menu_button.py +62 -0
  1255. pyromt-2.4.1/pyrogram/raw/functions/bots/get_bot_recommendations.py +62 -0
  1256. pyromt-2.4.1/pyrogram/raw/functions/bots/get_popular_app_bots.py +70 -0
  1257. pyromt-2.4.1/pyrogram/raw/functions/bots/get_preview_info.py +70 -0
  1258. pyromt-2.4.1/pyrogram/raw/functions/bots/get_preview_medias.py +62 -0
  1259. pyromt-2.4.1/pyrogram/raw/functions/bots/invoke_web_view_custom_method.py +78 -0
  1260. pyromt-2.4.1/pyrogram/raw/functions/bots/reorder_preview_medias.py +78 -0
  1261. pyromt-2.4.1/pyrogram/raw/functions/bots/reorder_usernames.py +70 -0
  1262. pyromt-2.4.1/pyrogram/raw/functions/bots/reset_bot_commands.py +70 -0
  1263. pyromt-2.4.1/pyrogram/raw/functions/bots/send_custom_request.py +70 -0
  1264. pyromt-2.4.1/pyrogram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py +62 -0
  1265. pyromt-2.4.1/pyrogram/raw/functions/bots/set_bot_commands.py +78 -0
  1266. pyromt-2.4.1/pyrogram/raw/functions/bots/set_bot_group_default_admin_rights.py +62 -0
  1267. pyromt-2.4.1/pyrogram/raw/functions/bots/set_bot_info.py +101 -0
  1268. pyromt-2.4.1/pyrogram/raw/functions/bots/set_bot_menu_button.py +70 -0
  1269. pyromt-2.4.1/pyrogram/raw/functions/bots/set_custom_verification.py +89 -0
  1270. pyromt-2.4.1/pyrogram/raw/functions/bots/toggle_user_emoji_status_permission.py +70 -0
  1271. pyromt-2.4.1/pyrogram/raw/functions/bots/toggle_username.py +78 -0
  1272. pyromt-2.4.1/pyrogram/raw/functions/bots/update_star_ref_program.py +81 -0
  1273. pyromt-2.4.1/pyrogram/raw/functions/bots/update_user_emoji_status.py +70 -0
  1274. pyromt-2.4.1/pyrogram/raw/functions/channels/__init__.py +74 -0
  1275. pyromt-2.4.1/pyrogram/raw/functions/channels/check_search_posts_flood.py +65 -0
  1276. pyromt-2.4.1/pyrogram/raw/functions/channels/check_username.py +70 -0
  1277. pyromt-2.4.1/pyrogram/raw/functions/channels/convert_to_gigagroup.py +62 -0
  1278. pyromt-2.4.1/pyrogram/raw/functions/channels/create_channel.py +124 -0
  1279. pyromt-2.4.1/pyrogram/raw/functions/channels/deactivate_all_usernames.py +62 -0
  1280. pyromt-2.4.1/pyrogram/raw/functions/channels/delete_channel.py +62 -0
  1281. pyromt-2.4.1/pyrogram/raw/functions/channels/delete_history.py +78 -0
  1282. pyromt-2.4.1/pyrogram/raw/functions/channels/delete_messages.py +70 -0
  1283. pyromt-2.4.1/pyrogram/raw/functions/channels/delete_participant_history.py +70 -0
  1284. pyromt-2.4.1/pyrogram/raw/functions/channels/edit_admin.py +86 -0
  1285. pyromt-2.4.1/pyrogram/raw/functions/channels/edit_banned.py +78 -0
  1286. pyromt-2.4.1/pyrogram/raw/functions/channels/edit_creator.py +78 -0
  1287. pyromt-2.4.1/pyrogram/raw/functions/channels/edit_location.py +78 -0
  1288. pyromt-2.4.1/pyrogram/raw/functions/channels/edit_photo.py +70 -0
  1289. pyromt-2.4.1/pyrogram/raw/functions/channels/edit_title.py +70 -0
  1290. pyromt-2.4.1/pyrogram/raw/functions/channels/export_message_link.py +84 -0
  1291. pyromt-2.4.1/pyrogram/raw/functions/channels/get_admin_log.py +116 -0
  1292. pyromt-2.4.1/pyrogram/raw/functions/channels/get_admined_public_channels.py +74 -0
  1293. pyromt-2.4.1/pyrogram/raw/functions/channels/get_channel_recommendations.py +66 -0
  1294. pyromt-2.4.1/pyrogram/raw/functions/channels/get_channels.py +62 -0
  1295. pyromt-2.4.1/pyrogram/raw/functions/channels/get_full_channel.py +62 -0
  1296. pyromt-2.4.1/pyrogram/raw/functions/channels/get_future_creator_after_leave.py +62 -0
  1297. pyromt-2.4.1/pyrogram/raw/functions/channels/get_groups_for_discussion.py +57 -0
  1298. pyromt-2.4.1/pyrogram/raw/functions/channels/get_inactive_channels.py +57 -0
  1299. pyromt-2.4.1/pyrogram/raw/functions/channels/get_left_channels.py +62 -0
  1300. pyromt-2.4.1/pyrogram/raw/functions/channels/get_message_author.py +70 -0
  1301. pyromt-2.4.1/pyrogram/raw/functions/channels/get_messages.py +70 -0
  1302. pyromt-2.4.1/pyrogram/raw/functions/channels/get_participant.py +70 -0
  1303. pyromt-2.4.1/pyrogram/raw/functions/channels/get_participants.py +94 -0
  1304. pyromt-2.4.1/pyrogram/raw/functions/channels/get_send_as.py +76 -0
  1305. pyromt-2.4.1/pyrogram/raw/functions/channels/invite_to_channel.py +70 -0
  1306. pyromt-2.4.1/pyrogram/raw/functions/channels/join_channel.py +62 -0
  1307. pyromt-2.4.1/pyrogram/raw/functions/channels/leave_channel.py +62 -0
  1308. pyromt-2.4.1/pyrogram/raw/functions/channels/read_history.py +70 -0
  1309. pyromt-2.4.1/pyrogram/raw/functions/channels/read_message_contents.py +70 -0
  1310. pyromt-2.4.1/pyrogram/raw/functions/channels/reorder_usernames.py +70 -0
  1311. pyromt-2.4.1/pyrogram/raw/functions/channels/report_anti_spam_false_positive.py +70 -0
  1312. pyromt-2.4.1/pyrogram/raw/functions/channels/report_spam.py +78 -0
  1313. pyromt-2.4.1/pyrogram/raw/functions/channels/restrict_sponsored_messages.py +70 -0
  1314. pyromt-2.4.1/pyrogram/raw/functions/channels/search_posts.py +115 -0
  1315. pyromt-2.4.1/pyrogram/raw/functions/channels/set_boosts_to_unblock_restrictions.py +70 -0
  1316. pyromt-2.4.1/pyrogram/raw/functions/channels/set_discussion_group.py +70 -0
  1317. pyromt-2.4.1/pyrogram/raw/functions/channels/set_emoji_stickers.py +70 -0
  1318. pyromt-2.4.1/pyrogram/raw/functions/channels/set_main_profile_tab.py +70 -0
  1319. pyromt-2.4.1/pyrogram/raw/functions/channels/set_stickers.py +70 -0
  1320. pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_anti_spam.py +70 -0
  1321. pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_autotranslation.py +70 -0
  1322. pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_forum.py +78 -0
  1323. pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_join_request.py +70 -0
  1324. pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_join_to_send.py +70 -0
  1325. pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_participants_hidden.py +70 -0
  1326. pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_pre_history_hidden.py +70 -0
  1327. pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_signatures.py +76 -0
  1328. pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_slow_mode.py +70 -0
  1329. pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_username.py +78 -0
  1330. pyromt-2.4.1/pyrogram/raw/functions/channels/toggle_view_forum_as_messages.py +70 -0
  1331. pyromt-2.4.1/pyrogram/raw/functions/channels/update_color.py +88 -0
  1332. pyromt-2.4.1/pyrogram/raw/functions/channels/update_emoji_status.py +70 -0
  1333. pyromt-2.4.1/pyrogram/raw/functions/channels/update_paid_messages_price.py +78 -0
  1334. pyromt-2.4.1/pyrogram/raw/functions/channels/update_username.py +70 -0
  1335. pyromt-2.4.1/pyrogram/raw/functions/chatlists/__init__.py +25 -0
  1336. pyromt-2.4.1/pyrogram/raw/functions/chatlists/check_chatlist_invite.py +62 -0
  1337. pyromt-2.4.1/pyrogram/raw/functions/chatlists/delete_exported_invite.py +70 -0
  1338. pyromt-2.4.1/pyrogram/raw/functions/chatlists/edit_exported_invite.py +91 -0
  1339. pyromt-2.4.1/pyrogram/raw/functions/chatlists/export_chatlist_invite.py +78 -0
  1340. pyromt-2.4.1/pyrogram/raw/functions/chatlists/get_chatlist_updates.py +62 -0
  1341. pyromt-2.4.1/pyrogram/raw/functions/chatlists/get_exported_invites.py +62 -0
  1342. pyromt-2.4.1/pyrogram/raw/functions/chatlists/get_leave_chatlist_suggestions.py +62 -0
  1343. pyromt-2.4.1/pyrogram/raw/functions/chatlists/hide_chatlist_updates.py +62 -0
  1344. pyromt-2.4.1/pyrogram/raw/functions/chatlists/join_chatlist_invite.py +70 -0
  1345. pyromt-2.4.1/pyrogram/raw/functions/chatlists/join_chatlist_updates.py +70 -0
  1346. pyromt-2.4.1/pyrogram/raw/functions/chatlists/leave_chatlist.py +70 -0
  1347. pyromt-2.4.1/pyrogram/raw/functions/contacts/__init__.py +42 -0
  1348. pyromt-2.4.1/pyrogram/raw/functions/contacts/accept_contact.py +62 -0
  1349. pyromt-2.4.1/pyrogram/raw/functions/contacts/add_contact.py +104 -0
  1350. pyromt-2.4.1/pyrogram/raw/functions/contacts/block.py +70 -0
  1351. pyromt-2.4.1/pyrogram/raw/functions/contacts/block_from_replies.py +82 -0
  1352. pyromt-2.4.1/pyrogram/raw/functions/contacts/delete_by_phones.py +62 -0
  1353. pyromt-2.4.1/pyrogram/raw/functions/contacts/delete_contacts.py +62 -0
  1354. pyromt-2.4.1/pyrogram/raw/functions/contacts/edit_close_friends.py +62 -0
  1355. pyromt-2.4.1/pyrogram/raw/functions/contacts/export_contact_token.py +57 -0
  1356. pyromt-2.4.1/pyrogram/raw/functions/contacts/get_birthdays.py +57 -0
  1357. pyromt-2.4.1/pyrogram/raw/functions/contacts/get_blocked.py +78 -0
  1358. pyromt-2.4.1/pyrogram/raw/functions/contacts/get_contact_i_ds.py +62 -0
  1359. pyromt-2.4.1/pyrogram/raw/functions/contacts/get_contacts.py +62 -0
  1360. pyromt-2.4.1/pyrogram/raw/functions/contacts/get_located.py +79 -0
  1361. pyromt-2.4.1/pyrogram/raw/functions/contacts/get_saved.py +57 -0
  1362. pyromt-2.4.1/pyrogram/raw/functions/contacts/get_sponsored_peers.py +62 -0
  1363. pyromt-2.4.1/pyrogram/raw/functions/contacts/get_statuses.py +57 -0
  1364. pyromt-2.4.1/pyrogram/raw/functions/contacts/get_top_peers.py +134 -0
  1365. pyromt-2.4.1/pyrogram/raw/functions/contacts/import_contact_token.py +62 -0
  1366. pyromt-2.4.1/pyrogram/raw/functions/contacts/import_contacts.py +62 -0
  1367. pyromt-2.4.1/pyrogram/raw/functions/contacts/reset_saved.py +57 -0
  1368. pyromt-2.4.1/pyrogram/raw/functions/contacts/reset_top_peer_rating.py +70 -0
  1369. pyromt-2.4.1/pyrogram/raw/functions/contacts/resolve_phone.py +62 -0
  1370. pyromt-2.4.1/pyrogram/raw/functions/contacts/resolve_username.py +73 -0
  1371. pyromt-2.4.1/pyrogram/raw/functions/contacts/search.py +70 -0
  1372. pyromt-2.4.1/pyrogram/raw/functions/contacts/set_blocked.py +78 -0
  1373. pyromt-2.4.1/pyrogram/raw/functions/contacts/toggle_top_peers.py +62 -0
  1374. pyromt-2.4.1/pyrogram/raw/functions/contacts/unblock.py +70 -0
  1375. pyromt-2.4.1/pyrogram/raw/functions/contacts/update_contact_note.py +70 -0
  1376. pyromt-2.4.1/pyrogram/raw/functions/contest/__init__.py +15 -0
  1377. pyromt-2.4.1/pyrogram/raw/functions/contest/save_developer_info.py +94 -0
  1378. pyromt-2.4.1/pyrogram/raw/functions/destroy_auth_key.py +57 -0
  1379. pyromt-2.4.1/pyrogram/raw/functions/destroy_session.py +62 -0
  1380. pyromt-2.4.1/pyrogram/raw/functions/folders/__init__.py +15 -0
  1381. pyromt-2.4.1/pyrogram/raw/functions/folders/edit_peer_folders.py +62 -0
  1382. pyromt-2.4.1/pyrogram/raw/functions/fragment/__init__.py +15 -0
  1383. pyromt-2.4.1/pyrogram/raw/functions/fragment/get_collectible_info.py +62 -0
  1384. pyromt-2.4.1/pyrogram/raw/functions/get_future_salts.py +62 -0
  1385. pyromt-2.4.1/pyrogram/raw/functions/help/__init__.py +39 -0
  1386. pyromt-2.4.1/pyrogram/raw/functions/help/accept_terms_of_service.py +62 -0
  1387. pyromt-2.4.1/pyrogram/raw/functions/help/dismiss_suggestion.py +70 -0
  1388. pyromt-2.4.1/pyrogram/raw/functions/help/edit_user_info.py +78 -0
  1389. pyromt-2.4.1/pyrogram/raw/functions/help/get_app_config.py +62 -0
  1390. pyromt-2.4.1/pyrogram/raw/functions/help/get_app_update.py +62 -0
  1391. pyromt-2.4.1/pyrogram/raw/functions/help/get_cdn_config.py +57 -0
  1392. pyromt-2.4.1/pyrogram/raw/functions/help/get_config.py +57 -0
  1393. pyromt-2.4.1/pyrogram/raw/functions/help/get_countries_list.py +70 -0
  1394. pyromt-2.4.1/pyrogram/raw/functions/help/get_deep_link_info.py +62 -0
  1395. pyromt-2.4.1/pyrogram/raw/functions/help/get_invite_text.py +57 -0
  1396. pyromt-2.4.1/pyrogram/raw/functions/help/get_nearest_dc.py +57 -0
  1397. pyromt-2.4.1/pyrogram/raw/functions/help/get_passport_config.py +62 -0
  1398. pyromt-2.4.1/pyrogram/raw/functions/help/get_peer_colors.py +62 -0
  1399. pyromt-2.4.1/pyrogram/raw/functions/help/get_peer_profile_colors.py +62 -0
  1400. pyromt-2.4.1/pyrogram/raw/functions/help/get_premium_promo.py +57 -0
  1401. pyromt-2.4.1/pyrogram/raw/functions/help/get_promo_data.py +57 -0
  1402. pyromt-2.4.1/pyrogram/raw/functions/help/get_recent_me_urls.py +62 -0
  1403. pyromt-2.4.1/pyrogram/raw/functions/help/get_support.py +57 -0
  1404. pyromt-2.4.1/pyrogram/raw/functions/help/get_support_name.py +57 -0
  1405. pyromt-2.4.1/pyrogram/raw/functions/help/get_terms_of_service_update.py +57 -0
  1406. pyromt-2.4.1/pyrogram/raw/functions/help/get_timezones_list.py +62 -0
  1407. pyromt-2.4.1/pyrogram/raw/functions/help/get_user_info.py +62 -0
  1408. pyromt-2.4.1/pyrogram/raw/functions/help/hide_promo_data.py +62 -0
  1409. pyromt-2.4.1/pyrogram/raw/functions/help/save_app_log.py +62 -0
  1410. pyromt-2.4.1/pyrogram/raw/functions/help/set_bot_updates_status.py +70 -0
  1411. pyromt-2.4.1/pyrogram/raw/functions/init_connection.py +140 -0
  1412. pyromt-2.4.1/pyrogram/raw/functions/invoke_after_msg.py +70 -0
  1413. pyromt-2.4.1/pyrogram/raw/functions/invoke_after_msgs.py +70 -0
  1414. pyromt-2.4.1/pyrogram/raw/functions/invoke_with_apns_secret.py +78 -0
  1415. pyromt-2.4.1/pyrogram/raw/functions/invoke_with_business_connection.py +70 -0
  1416. pyromt-2.4.1/pyrogram/raw/functions/invoke_with_google_play_integrity.py +78 -0
  1417. pyromt-2.4.1/pyrogram/raw/functions/invoke_with_layer.py +70 -0
  1418. pyromt-2.4.1/pyrogram/raw/functions/invoke_with_messages_range.py +70 -0
  1419. pyromt-2.4.1/pyrogram/raw/functions/invoke_with_re_captcha.py +70 -0
  1420. pyromt-2.4.1/pyrogram/raw/functions/invoke_with_takeout.py +70 -0
  1421. pyromt-2.4.1/pyrogram/raw/functions/invoke_without_updates.py +62 -0
  1422. pyromt-2.4.1/pyrogram/raw/functions/langpack/__init__.py +19 -0
  1423. pyromt-2.4.1/pyrogram/raw/functions/langpack/get_difference.py +78 -0
  1424. pyromt-2.4.1/pyrogram/raw/functions/langpack/get_lang_pack.py +70 -0
  1425. pyromt-2.4.1/pyrogram/raw/functions/langpack/get_language.py +70 -0
  1426. pyromt-2.4.1/pyrogram/raw/functions/langpack/get_languages.py +62 -0
  1427. pyromt-2.4.1/pyrogram/raw/functions/langpack/get_strings.py +78 -0
  1428. pyromt-2.4.1/pyrogram/raw/functions/messages/__init__.py +253 -0
  1429. pyromt-2.4.1/pyrogram/raw/functions/messages/accept_encryption.py +78 -0
  1430. pyromt-2.4.1/pyrogram/raw/functions/messages/accept_url_auth.py +105 -0
  1431. pyromt-2.4.1/pyrogram/raw/functions/messages/add_chat_user.py +78 -0
  1432. pyromt-2.4.1/pyrogram/raw/functions/messages/append_todo_list.py +78 -0
  1433. pyromt-2.4.1/pyrogram/raw/functions/messages/check_chat_invite.py +62 -0
  1434. pyromt-2.4.1/pyrogram/raw/functions/messages/check_history_import.py +62 -0
  1435. pyromt-2.4.1/pyrogram/raw/functions/messages/check_history_import_peer.py +62 -0
  1436. pyromt-2.4.1/pyrogram/raw/functions/messages/check_quick_reply_shortcut.py +62 -0
  1437. pyromt-2.4.1/pyrogram/raw/functions/messages/clear_all_drafts.py +57 -0
  1438. pyromt-2.4.1/pyrogram/raw/functions/messages/clear_recent_reactions.py +57 -0
  1439. pyromt-2.4.1/pyrogram/raw/functions/messages/clear_recent_stickers.py +62 -0
  1440. pyromt-2.4.1/pyrogram/raw/functions/messages/click_sponsored_message.py +76 -0
  1441. pyromt-2.4.1/pyrogram/raw/functions/messages/create_chat.py +81 -0
  1442. pyromt-2.4.1/pyrogram/raw/functions/messages/create_forum_topic.py +114 -0
  1443. pyromt-2.4.1/pyrogram/raw/functions/messages/delete_chat.py +62 -0
  1444. pyromt-2.4.1/pyrogram/raw/functions/messages/delete_chat_user.py +78 -0
  1445. pyromt-2.4.1/pyrogram/raw/functions/messages/delete_exported_chat_invite.py +70 -0
  1446. pyromt-2.4.1/pyrogram/raw/functions/messages/delete_fact_check.py +70 -0
  1447. pyromt-2.4.1/pyrogram/raw/functions/messages/delete_history.py +102 -0
  1448. pyromt-2.4.1/pyrogram/raw/functions/messages/delete_messages.py +70 -0
  1449. pyromt-2.4.1/pyrogram/raw/functions/messages/delete_phone_call_history.py +62 -0
  1450. pyromt-2.4.1/pyrogram/raw/functions/messages/delete_quick_reply_messages.py +70 -0
  1451. pyromt-2.4.1/pyrogram/raw/functions/messages/delete_quick_reply_shortcut.py +62 -0
  1452. pyromt-2.4.1/pyrogram/raw/functions/messages/delete_revoked_exported_chat_invites.py +70 -0
  1453. pyromt-2.4.1/pyrogram/raw/functions/messages/delete_saved_history.py +100 -0
  1454. pyromt-2.4.1/pyrogram/raw/functions/messages/delete_scheduled_messages.py +70 -0
  1455. pyromt-2.4.1/pyrogram/raw/functions/messages/delete_topic_history.py +70 -0
  1456. pyromt-2.4.1/pyrogram/raw/functions/messages/discard_encryption.py +70 -0
  1457. pyromt-2.4.1/pyrogram/raw/functions/messages/edit_chat_about.py +70 -0
  1458. pyromt-2.4.1/pyrogram/raw/functions/messages/edit_chat_admin.py +78 -0
  1459. pyromt-2.4.1/pyrogram/raw/functions/messages/edit_chat_default_banned_rights.py +70 -0
  1460. pyromt-2.4.1/pyrogram/raw/functions/messages/edit_chat_photo.py +70 -0
  1461. pyromt-2.4.1/pyrogram/raw/functions/messages/edit_chat_title.py +70 -0
  1462. pyromt-2.4.1/pyrogram/raw/functions/messages/edit_exported_chat_invite.py +114 -0
  1463. pyromt-2.4.1/pyrogram/raw/functions/messages/edit_fact_check.py +78 -0
  1464. pyromt-2.4.1/pyrogram/raw/functions/messages/edit_forum_topic.py +108 -0
  1465. pyromt-2.4.1/pyrogram/raw/functions/messages/edit_inline_bot_message.py +115 -0
  1466. pyromt-2.4.1/pyrogram/raw/functions/messages/edit_message.py +150 -0
  1467. pyromt-2.4.1/pyrogram/raw/functions/messages/edit_quick_reply_shortcut.py +70 -0
  1468. pyromt-2.4.1/pyrogram/raw/functions/messages/export_chat_invite.py +113 -0
  1469. pyromt-2.4.1/pyrogram/raw/functions/messages/fave_sticker.py +70 -0
  1470. pyromt-2.4.1/pyrogram/raw/functions/messages/forward_messages.py +224 -0
  1471. pyromt-2.4.1/pyrogram/raw/functions/messages/get_admins_with_invites.py +62 -0
  1472. pyromt-2.4.1/pyrogram/raw/functions/messages/get_all_drafts.py +57 -0
  1473. pyromt-2.4.1/pyrogram/raw/functions/messages/get_all_stickers.py +62 -0
  1474. pyromt-2.4.1/pyrogram/raw/functions/messages/get_archived_stickers.py +84 -0
  1475. pyromt-2.4.1/pyrogram/raw/functions/messages/get_attach_menu_bot.py +62 -0
  1476. pyromt-2.4.1/pyrogram/raw/functions/messages/get_attach_menu_bots.py +62 -0
  1477. pyromt-2.4.1/pyrogram/raw/functions/messages/get_attached_stickers.py +62 -0
  1478. pyromt-2.4.1/pyrogram/raw/functions/messages/get_available_effects.py +62 -0
  1479. pyromt-2.4.1/pyrogram/raw/functions/messages/get_available_reactions.py +62 -0
  1480. pyromt-2.4.1/pyrogram/raw/functions/messages/get_bot_app.py +70 -0
  1481. pyromt-2.4.1/pyrogram/raw/functions/messages/get_bot_callback_answer.py +97 -0
  1482. pyromt-2.4.1/pyrogram/raw/functions/messages/get_chat_invite_importers.py +118 -0
  1483. pyromt-2.4.1/pyrogram/raw/functions/messages/get_chats.py +62 -0
  1484. pyromt-2.4.1/pyrogram/raw/functions/messages/get_common_chats.py +78 -0
  1485. pyromt-2.4.1/pyrogram/raw/functions/messages/get_custom_emoji_documents.py +62 -0
  1486. pyromt-2.4.1/pyrogram/raw/functions/messages/get_default_history_ttl.py +57 -0
  1487. pyromt-2.4.1/pyrogram/raw/functions/messages/get_default_tag_reactions.py +62 -0
  1488. pyromt-2.4.1/pyrogram/raw/functions/messages/get_dh_config.py +70 -0
  1489. pyromt-2.4.1/pyrogram/raw/functions/messages/get_dialog_filters.py +57 -0
  1490. pyromt-2.4.1/pyrogram/raw/functions/messages/get_dialog_unread_marks.py +66 -0
  1491. pyromt-2.4.1/pyrogram/raw/functions/messages/get_dialogs.py +111 -0
  1492. pyromt-2.4.1/pyrogram/raw/functions/messages/get_discussion_message.py +70 -0
  1493. pyromt-2.4.1/pyrogram/raw/functions/messages/get_document_by_hash.py +78 -0
  1494. pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_game_info.py +57 -0
  1495. pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_groups.py +62 -0
  1496. pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_keywords.py +62 -0
  1497. pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_keywords_difference.py +70 -0
  1498. pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_keywords_languages.py +62 -0
  1499. pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_profile_photo_groups.py +62 -0
  1500. pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_status_groups.py +62 -0
  1501. pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_sticker_groups.py +62 -0
  1502. pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_stickers.py +62 -0
  1503. pyromt-2.4.1/pyrogram/raw/functions/messages/get_emoji_url.py +62 -0
  1504. pyromt-2.4.1/pyrogram/raw/functions/messages/get_exported_chat_invite.py +70 -0
  1505. pyromt-2.4.1/pyrogram/raw/functions/messages/get_exported_chat_invites.py +104 -0
  1506. pyromt-2.4.1/pyrogram/raw/functions/messages/get_extended_media.py +70 -0
  1507. pyromt-2.4.1/pyrogram/raw/functions/messages/get_fact_check.py +70 -0
  1508. pyromt-2.4.1/pyrogram/raw/functions/messages/get_faved_stickers.py +62 -0
  1509. pyromt-2.4.1/pyrogram/raw/functions/messages/get_featured_emoji_stickers.py +62 -0
  1510. pyromt-2.4.1/pyrogram/raw/functions/messages/get_featured_stickers.py +62 -0
  1511. pyromt-2.4.1/pyrogram/raw/functions/messages/get_forum_topics.py +105 -0
  1512. pyromt-2.4.1/pyrogram/raw/functions/messages/get_forum_topics_by_id.py +70 -0
  1513. pyromt-2.4.1/pyrogram/raw/functions/messages/get_full_chat.py +62 -0
  1514. pyromt-2.4.1/pyrogram/raw/functions/messages/get_game_high_scores.py +78 -0
  1515. pyromt-2.4.1/pyrogram/raw/functions/messages/get_history.py +118 -0
  1516. pyromt-2.4.1/pyrogram/raw/functions/messages/get_inline_bot_results.py +98 -0
  1517. pyromt-2.4.1/pyrogram/raw/functions/messages/get_inline_game_high_scores.py +70 -0
  1518. pyromt-2.4.1/pyrogram/raw/functions/messages/get_mask_stickers.py +62 -0
  1519. pyromt-2.4.1/pyrogram/raw/functions/messages/get_message_edit_data.py +70 -0
  1520. pyromt-2.4.1/pyrogram/raw/functions/messages/get_message_reactions_list.py +99 -0
  1521. pyromt-2.4.1/pyrogram/raw/functions/messages/get_message_read_participants.py +70 -0
  1522. pyromt-2.4.1/pyrogram/raw/functions/messages/get_messages.py +62 -0
  1523. pyromt-2.4.1/pyrogram/raw/functions/messages/get_messages_reactions.py +70 -0
  1524. pyromt-2.4.1/pyrogram/raw/functions/messages/get_messages_views.py +78 -0
  1525. pyromt-2.4.1/pyrogram/raw/functions/messages/get_my_stickers.py +70 -0
  1526. pyromt-2.4.1/pyrogram/raw/functions/messages/get_old_featured_stickers.py +78 -0
  1527. pyromt-2.4.1/pyrogram/raw/functions/messages/get_onlines.py +62 -0
  1528. pyromt-2.4.1/pyrogram/raw/functions/messages/get_outbox_read_date.py +70 -0
  1529. pyromt-2.4.1/pyrogram/raw/functions/messages/get_paid_reaction_privacy.py +57 -0
  1530. pyromt-2.4.1/pyrogram/raw/functions/messages/get_peer_dialogs.py +62 -0
  1531. pyromt-2.4.1/pyrogram/raw/functions/messages/get_peer_settings.py +62 -0
  1532. pyromt-2.4.1/pyrogram/raw/functions/messages/get_pinned_dialogs.py +62 -0
  1533. pyromt-2.4.1/pyrogram/raw/functions/messages/get_pinned_saved_dialogs.py +57 -0
  1534. pyromt-2.4.1/pyrogram/raw/functions/messages/get_poll_results.py +70 -0
  1535. pyromt-2.4.1/pyrogram/raw/functions/messages/get_poll_votes.py +98 -0
  1536. pyromt-2.4.1/pyrogram/raw/functions/messages/get_prepared_inline_message.py +70 -0
  1537. pyromt-2.4.1/pyrogram/raw/functions/messages/get_quick_replies.py +62 -0
  1538. pyromt-2.4.1/pyrogram/raw/functions/messages/get_quick_reply_messages.py +82 -0
  1539. pyromt-2.4.1/pyrogram/raw/functions/messages/get_recent_locations.py +78 -0
  1540. pyromt-2.4.1/pyrogram/raw/functions/messages/get_recent_reactions.py +70 -0
  1541. pyromt-2.4.1/pyrogram/raw/functions/messages/get_recent_stickers.py +70 -0
  1542. pyromt-2.4.1/pyrogram/raw/functions/messages/get_replies.py +126 -0
  1543. pyromt-2.4.1/pyrogram/raw/functions/messages/get_saved_dialogs.py +112 -0
  1544. pyromt-2.4.1/pyrogram/raw/functions/messages/get_saved_dialogs_by_id.py +74 -0
  1545. pyromt-2.4.1/pyrogram/raw/functions/messages/get_saved_gifs.py +62 -0
  1546. pyromt-2.4.1/pyrogram/raw/functions/messages/get_saved_history.py +130 -0
  1547. pyromt-2.4.1/pyrogram/raw/functions/messages/get_saved_reaction_tags.py +74 -0
  1548. pyromt-2.4.1/pyrogram/raw/functions/messages/get_scheduled_history.py +70 -0
  1549. pyromt-2.4.1/pyrogram/raw/functions/messages/get_scheduled_messages.py +70 -0
  1550. pyromt-2.4.1/pyrogram/raw/functions/messages/get_search_counters.py +91 -0
  1551. pyromt-2.4.1/pyrogram/raw/functions/messages/get_search_results_calendar.py +98 -0
  1552. pyromt-2.4.1/pyrogram/raw/functions/messages/get_search_results_positions.py +98 -0
  1553. pyromt-2.4.1/pyrogram/raw/functions/messages/get_split_ranges.py +57 -0
  1554. pyromt-2.4.1/pyrogram/raw/functions/messages/get_sponsored_messages.py +73 -0
  1555. pyromt-2.4.1/pyrogram/raw/functions/messages/get_sticker_set.py +70 -0
  1556. pyromt-2.4.1/pyrogram/raw/functions/messages/get_stickers.py +70 -0
  1557. pyromt-2.4.1/pyrogram/raw/functions/messages/get_suggested_dialog_filters.py +57 -0
  1558. pyromt-2.4.1/pyrogram/raw/functions/messages/get_top_reactions.py +70 -0
  1559. pyromt-2.4.1/pyrogram/raw/functions/messages/get_unread_mentions.py +113 -0
  1560. pyromt-2.4.1/pyrogram/raw/functions/messages/get_unread_reactions.py +123 -0
  1561. pyromt-2.4.1/pyrogram/raw/functions/messages/get_web_page.py +70 -0
  1562. pyromt-2.4.1/pyrogram/raw/functions/messages/get_web_page_preview.py +74 -0
  1563. pyromt-2.4.1/pyrogram/raw/functions/messages/hide_all_chat_join_requests.py +79 -0
  1564. pyromt-2.4.1/pyrogram/raw/functions/messages/hide_chat_join_request.py +78 -0
  1565. pyromt-2.4.1/pyrogram/raw/functions/messages/hide_peer_settings_bar.py +62 -0
  1566. pyromt-2.4.1/pyrogram/raw/functions/messages/import_chat_invite.py +62 -0
  1567. pyromt-2.4.1/pyrogram/raw/functions/messages/init_history_import.py +78 -0
  1568. pyromt-2.4.1/pyrogram/raw/functions/messages/install_sticker_set.py +70 -0
  1569. pyromt-2.4.1/pyrogram/raw/functions/messages/mark_dialog_unread.py +80 -0
  1570. pyromt-2.4.1/pyrogram/raw/functions/messages/migrate_chat.py +62 -0
  1571. pyromt-2.4.1/pyrogram/raw/functions/messages/prolong_web_view.py +106 -0
  1572. pyromt-2.4.1/pyrogram/raw/functions/messages/rate_transcribed_audio.py +86 -0
  1573. pyromt-2.4.1/pyrogram/raw/functions/messages/read_discussion.py +78 -0
  1574. pyromt-2.4.1/pyrogram/raw/functions/messages/read_encrypted_history.py +70 -0
  1575. pyromt-2.4.1/pyrogram/raw/functions/messages/read_featured_stickers.py +62 -0
  1576. pyromt-2.4.1/pyrogram/raw/functions/messages/read_history.py +70 -0
  1577. pyromt-2.4.1/pyrogram/raw/functions/messages/read_mentions.py +73 -0
  1578. pyromt-2.4.1/pyrogram/raw/functions/messages/read_message_contents.py +62 -0
  1579. pyromt-2.4.1/pyrogram/raw/functions/messages/read_reactions.py +83 -0
  1580. pyromt-2.4.1/pyrogram/raw/functions/messages/read_saved_history.py +78 -0
  1581. pyromt-2.4.1/pyrogram/raw/functions/messages/received_messages.py +62 -0
  1582. pyromt-2.4.1/pyrogram/raw/functions/messages/received_queue.py +62 -0
  1583. pyromt-2.4.1/pyrogram/raw/functions/messages/reorder_pinned_dialogs.py +78 -0
  1584. pyromt-2.4.1/pyrogram/raw/functions/messages/reorder_pinned_forum_topics.py +78 -0
  1585. pyromt-2.4.1/pyrogram/raw/functions/messages/reorder_pinned_saved_dialogs.py +70 -0
  1586. pyromt-2.4.1/pyrogram/raw/functions/messages/reorder_quick_replies.py +62 -0
  1587. pyromt-2.4.1/pyrogram/raw/functions/messages/reorder_sticker_sets.py +76 -0
  1588. pyromt-2.4.1/pyrogram/raw/functions/messages/report.py +86 -0
  1589. pyromt-2.4.1/pyrogram/raw/functions/messages/report_encrypted_spam.py +62 -0
  1590. pyromt-2.4.1/pyrogram/raw/functions/messages/report_messages_delivery.py +78 -0
  1591. pyromt-2.4.1/pyrogram/raw/functions/messages/report_reaction.py +78 -0
  1592. pyromt-2.4.1/pyrogram/raw/functions/messages/report_spam.py +62 -0
  1593. pyromt-2.4.1/pyrogram/raw/functions/messages/report_sponsored_message.py +70 -0
  1594. pyromt-2.4.1/pyrogram/raw/functions/messages/request_app_web_view.py +117 -0
  1595. pyromt-2.4.1/pyrogram/raw/functions/messages/request_encryption.py +78 -0
  1596. pyromt-2.4.1/pyrogram/raw/functions/messages/request_main_web_view.py +111 -0
  1597. pyromt-2.4.1/pyrogram/raw/functions/messages/request_simple_web_view.py +124 -0
  1598. pyromt-2.4.1/pyrogram/raw/functions/messages/request_url_auth.py +93 -0
  1599. pyromt-2.4.1/pyrogram/raw/functions/messages/request_web_view.py +152 -0
  1600. pyromt-2.4.1/pyrogram/raw/functions/messages/save_default_send_as.py +70 -0
  1601. pyromt-2.4.1/pyrogram/raw/functions/messages/save_draft.py +133 -0
  1602. pyromt-2.4.1/pyrogram/raw/functions/messages/save_gif.py +70 -0
  1603. pyromt-2.4.1/pyrogram/raw/functions/messages/save_prepared_inline_message.py +82 -0
  1604. pyromt-2.4.1/pyrogram/raw/functions/messages/save_recent_sticker.py +78 -0
  1605. pyromt-2.4.1/pyrogram/raw/functions/messages/search.py +183 -0
  1606. pyromt-2.4.1/pyrogram/raw/functions/messages/search_custom_emoji.py +70 -0
  1607. pyromt-2.4.1/pyrogram/raw/functions/messages/search_emoji_sticker_sets.py +78 -0
  1608. pyromt-2.4.1/pyrogram/raw/functions/messages/search_global.py +147 -0
  1609. pyromt-2.4.1/pyrogram/raw/functions/messages/search_sent_media.py +78 -0
  1610. pyromt-2.4.1/pyrogram/raw/functions/messages/search_sticker_sets.py +78 -0
  1611. pyromt-2.4.1/pyrogram/raw/functions/messages/search_stickers.py +110 -0
  1612. pyromt-2.4.1/pyrogram/raw/functions/messages/send_bot_requested_peer.py +86 -0
  1613. pyromt-2.4.1/pyrogram/raw/functions/messages/send_encrypted.py +86 -0
  1614. pyromt-2.4.1/pyrogram/raw/functions/messages/send_encrypted_file.py +94 -0
  1615. pyromt-2.4.1/pyrogram/raw/functions/messages/send_encrypted_service.py +78 -0
  1616. pyromt-2.4.1/pyrogram/raw/functions/messages/send_inline_bot_result.py +160 -0
  1617. pyromt-2.4.1/pyrogram/raw/functions/messages/send_media.py +226 -0
  1618. pyromt-2.4.1/pyrogram/raw/functions/messages/send_message.py +224 -0
  1619. pyromt-2.4.1/pyrogram/raw/functions/messages/send_multi_media.py +171 -0
  1620. pyromt-2.4.1/pyrogram/raw/functions/messages/send_paid_reaction.py +98 -0
  1621. pyromt-2.4.1/pyrogram/raw/functions/messages/send_quick_reply_messages.py +86 -0
  1622. pyromt-2.4.1/pyrogram/raw/functions/messages/send_reaction.py +94 -0
  1623. pyromt-2.4.1/pyrogram/raw/functions/messages/send_scheduled_messages.py +70 -0
  1624. pyromt-2.4.1/pyrogram/raw/functions/messages/send_screenshot_notification.py +78 -0
  1625. pyromt-2.4.1/pyrogram/raw/functions/messages/send_vote.py +78 -0
  1626. pyromt-2.4.1/pyrogram/raw/functions/messages/send_web_view_data.py +86 -0
  1627. pyromt-2.4.1/pyrogram/raw/functions/messages/send_web_view_result_message.py +70 -0
  1628. pyromt-2.4.1/pyrogram/raw/functions/messages/set_bot_callback_answer.py +96 -0
  1629. pyromt-2.4.1/pyrogram/raw/functions/messages/set_bot_precheckout_results.py +79 -0
  1630. pyromt-2.4.1/pyrogram/raw/functions/messages/set_bot_shipping_results.py +83 -0
  1631. pyromt-2.4.1/pyrogram/raw/functions/messages/set_chat_available_reactions.py +90 -0
  1632. pyromt-2.4.1/pyrogram/raw/functions/messages/set_chat_theme.py +70 -0
  1633. pyromt-2.4.1/pyrogram/raw/functions/messages/set_chat_wall_paper.py +105 -0
  1634. pyromt-2.4.1/pyrogram/raw/functions/messages/set_default_history_ttl.py +62 -0
  1635. pyromt-2.4.1/pyrogram/raw/functions/messages/set_default_reaction.py +62 -0
  1636. pyromt-2.4.1/pyrogram/raw/functions/messages/set_encrypted_typing.py +70 -0
  1637. pyromt-2.4.1/pyrogram/raw/functions/messages/set_game_score.py +100 -0
  1638. pyromt-2.4.1/pyrogram/raw/functions/messages/set_history_ttl.py +70 -0
  1639. pyromt-2.4.1/pyrogram/raw/functions/messages/set_inline_bot_results.py +121 -0
  1640. pyromt-2.4.1/pyrogram/raw/functions/messages/set_inline_game_score.py +92 -0
  1641. pyromt-2.4.1/pyrogram/raw/functions/messages/set_typing.py +81 -0
  1642. pyromt-2.4.1/pyrogram/raw/functions/messages/start_bot.py +86 -0
  1643. pyromt-2.4.1/pyrogram/raw/functions/messages/start_history_import.py +70 -0
  1644. pyromt-2.4.1/pyrogram/raw/functions/messages/summarize_text.py +81 -0
  1645. pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_bot_in_attach_menu.py +78 -0
  1646. pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_dialog_filter_tags.py +62 -0
  1647. pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_dialog_pin.py +70 -0
  1648. pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_no_forwards.py +70 -0
  1649. pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_paid_reaction_privacy.py +78 -0
  1650. pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_peer_translations.py +70 -0
  1651. pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_saved_dialog_pin.py +70 -0
  1652. pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_sticker_sets.py +82 -0
  1653. pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_suggested_post_approval.py +96 -0
  1654. pyromt-2.4.1/pyrogram/raw/functions/messages/toggle_todo_completed.py +86 -0
  1655. pyromt-2.4.1/pyrogram/raw/functions/messages/transcribe_audio.py +70 -0
  1656. pyromt-2.4.1/pyrogram/raw/functions/messages/translate_text.py +94 -0
  1657. pyromt-2.4.1/pyrogram/raw/functions/messages/uninstall_sticker_set.py +62 -0
  1658. pyromt-2.4.1/pyrogram/raw/functions/messages/unpin_all_messages.py +83 -0
  1659. pyromt-2.4.1/pyrogram/raw/functions/messages/update_dialog_filter.py +74 -0
  1660. pyromt-2.4.1/pyrogram/raw/functions/messages/update_dialog_filters_order.py +62 -0
  1661. pyromt-2.4.1/pyrogram/raw/functions/messages/update_pinned_forum_topic.py +78 -0
  1662. pyromt-2.4.1/pyrogram/raw/functions/messages/update_pinned_message.py +90 -0
  1663. pyromt-2.4.1/pyrogram/raw/functions/messages/update_saved_reaction_tag.py +73 -0
  1664. pyromt-2.4.1/pyrogram/raw/functions/messages/upload_encrypted_file.py +70 -0
  1665. pyromt-2.4.1/pyrogram/raw/functions/messages/upload_imported_media.py +86 -0
  1666. pyromt-2.4.1/pyrogram/raw/functions/messages/upload_media.py +81 -0
  1667. pyromt-2.4.1/pyrogram/raw/functions/messages/view_sponsored_message.py +62 -0
  1668. pyromt-2.4.1/pyrogram/raw/functions/payments/__init__.py +79 -0
  1669. pyromt-2.4.1/pyrogram/raw/functions/payments/apply_gift_code.py +62 -0
  1670. pyromt-2.4.1/pyrogram/raw/functions/payments/assign_app_store_transaction.py +70 -0
  1671. pyromt-2.4.1/pyrogram/raw/functions/payments/assign_play_market_transaction.py +70 -0
  1672. pyromt-2.4.1/pyrogram/raw/functions/payments/bot_cancel_stars_subscription.py +78 -0
  1673. pyromt-2.4.1/pyrogram/raw/functions/payments/can_purchase_store.py +62 -0
  1674. pyromt-2.4.1/pyrogram/raw/functions/payments/change_stars_subscription.py +81 -0
  1675. pyromt-2.4.1/pyrogram/raw/functions/payments/check_can_send_gift.py +62 -0
  1676. pyromt-2.4.1/pyrogram/raw/functions/payments/check_gift_code.py +62 -0
  1677. pyromt-2.4.1/pyrogram/raw/functions/payments/clear_saved_info.py +68 -0
  1678. pyromt-2.4.1/pyrogram/raw/functions/payments/connect_star_ref_bot.py +70 -0
  1679. pyromt-2.4.1/pyrogram/raw/functions/payments/convert_star_gift.py +62 -0
  1680. pyromt-2.4.1/pyrogram/raw/functions/payments/craft_star_gift.py +62 -0
  1681. pyromt-2.4.1/pyrogram/raw/functions/payments/create_star_gift_collection.py +78 -0
  1682. pyromt-2.4.1/pyrogram/raw/functions/payments/delete_star_gift_collection.py +70 -0
  1683. pyromt-2.4.1/pyrogram/raw/functions/payments/edit_connected_star_ref_bot.py +78 -0
  1684. pyromt-2.4.1/pyrogram/raw/functions/payments/export_invoice.py +62 -0
  1685. pyromt-2.4.1/pyrogram/raw/functions/payments/fulfill_stars_subscription.py +70 -0
  1686. pyromt-2.4.1/pyrogram/raw/functions/payments/get_bank_card_data.py +62 -0
  1687. pyromt-2.4.1/pyrogram/raw/functions/payments/get_connected_star_ref_bot.py +70 -0
  1688. pyromt-2.4.1/pyrogram/raw/functions/payments/get_connected_star_ref_bots.py +90 -0
  1689. pyromt-2.4.1/pyrogram/raw/functions/payments/get_craft_star_gifts.py +78 -0
  1690. pyromt-2.4.1/pyrogram/raw/functions/payments/get_giveaway_info.py +70 -0
  1691. pyromt-2.4.1/pyrogram/raw/functions/payments/get_payment_form.py +74 -0
  1692. pyromt-2.4.1/pyrogram/raw/functions/payments/get_payment_receipt.py +70 -0
  1693. pyromt-2.4.1/pyrogram/raw/functions/payments/get_premium_gift_code_options.py +66 -0
  1694. pyromt-2.4.1/pyrogram/raw/functions/payments/get_resale_star_gifts.py +117 -0
  1695. pyromt-2.4.1/pyrogram/raw/functions/payments/get_saved_info.py +57 -0
  1696. pyromt-2.4.1/pyrogram/raw/functions/payments/get_saved_star_gift.py +62 -0
  1697. pyromt-2.4.1/pyrogram/raw/functions/payments/get_saved_star_gifts.py +143 -0
  1698. pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gift_active_auctions.py +62 -0
  1699. pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gift_auction_acquired_gifts.py +62 -0
  1700. pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gift_auction_state.py +70 -0
  1701. pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gift_collections.py +70 -0
  1702. pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gift_upgrade_attributes.py +62 -0
  1703. pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gift_upgrade_preview.py +62 -0
  1704. pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gift_withdrawal_url.py +70 -0
  1705. pyromt-2.4.1/pyrogram/raw/functions/payments/get_star_gifts.py +62 -0
  1706. pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_gift_options.py +66 -0
  1707. pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_giveaway_options.py +57 -0
  1708. pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_revenue_ads_account_url.py +62 -0
  1709. pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_revenue_stats.py +76 -0
  1710. pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_revenue_withdrawal_url.py +87 -0
  1711. pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_status.py +70 -0
  1712. pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_subscriptions.py +78 -0
  1713. pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_topup_options.py +57 -0
  1714. pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_transactions.py +113 -0
  1715. pyromt-2.4.1/pyrogram/raw/functions/payments/get_stars_transactions_by_id.py +78 -0
  1716. pyromt-2.4.1/pyrogram/raw/functions/payments/get_suggested_star_ref_bots.py +92 -0
  1717. pyromt-2.4.1/pyrogram/raw/functions/payments/get_unique_star_gift.py +62 -0
  1718. pyromt-2.4.1/pyrogram/raw/functions/payments/get_unique_star_gift_value_info.py +62 -0
  1719. pyromt-2.4.1/pyrogram/raw/functions/payments/launch_prepaid_giveaway.py +78 -0
  1720. pyromt-2.4.1/pyrogram/raw/functions/payments/refund_stars_charge.py +70 -0
  1721. pyromt-2.4.1/pyrogram/raw/functions/payments/reorder_star_gift_collections.py +70 -0
  1722. pyromt-2.4.1/pyrogram/raw/functions/payments/resolve_star_gift_offer.py +70 -0
  1723. pyromt-2.4.1/pyrogram/raw/functions/payments/save_star_gift.py +70 -0
  1724. pyromt-2.4.1/pyrogram/raw/functions/payments/send_payment_form.py +107 -0
  1725. pyromt-2.4.1/pyrogram/raw/functions/payments/send_star_gift_offer.py +105 -0
  1726. pyromt-2.4.1/pyrogram/raw/functions/payments/send_stars_form.py +70 -0
  1727. pyromt-2.4.1/pyrogram/raw/functions/payments/toggle_chat_star_gift_notifications.py +70 -0
  1728. pyromt-2.4.1/pyrogram/raw/functions/payments/toggle_star_gifts_pinned_to_top.py +70 -0
  1729. pyromt-2.4.1/pyrogram/raw/functions/payments/transfer_star_gift.py +70 -0
  1730. pyromt-2.4.1/pyrogram/raw/functions/payments/update_star_gift_collection.py +111 -0
  1731. pyromt-2.4.1/pyrogram/raw/functions/payments/update_star_gift_price.py +70 -0
  1732. pyromt-2.4.1/pyrogram/raw/functions/payments/upgrade_star_gift.py +70 -0
  1733. pyromt-2.4.1/pyrogram/raw/functions/payments/validate_requested_info.py +78 -0
  1734. pyromt-2.4.1/pyrogram/raw/functions/phone/__init__.py +57 -0
  1735. pyromt-2.4.1/pyrogram/raw/functions/phone/accept_call.py +78 -0
  1736. pyromt-2.4.1/pyrogram/raw/functions/phone/check_group_call.py +70 -0
  1737. pyromt-2.4.1/pyrogram/raw/functions/phone/confirm_call.py +86 -0
  1738. pyromt-2.4.1/pyrogram/raw/functions/phone/create_conference_call.py +110 -0
  1739. pyromt-2.4.1/pyrogram/raw/functions/phone/create_group_call.py +96 -0
  1740. pyromt-2.4.1/pyrogram/raw/functions/phone/decline_conference_call_invite.py +62 -0
  1741. pyromt-2.4.1/pyrogram/raw/functions/phone/delete_conference_call_participants.py +92 -0
  1742. pyromt-2.4.1/pyrogram/raw/functions/phone/delete_group_call_messages.py +78 -0
  1743. pyromt-2.4.1/pyrogram/raw/functions/phone/delete_group_call_participant_messages.py +78 -0
  1744. pyromt-2.4.1/pyrogram/raw/functions/phone/discard_call.py +94 -0
  1745. pyromt-2.4.1/pyrogram/raw/functions/phone/discard_group_call.py +62 -0
  1746. pyromt-2.4.1/pyrogram/raw/functions/phone/edit_group_call_participant.py +126 -0
  1747. pyromt-2.4.1/pyrogram/raw/functions/phone/edit_group_call_title.py +70 -0
  1748. pyromt-2.4.1/pyrogram/raw/functions/phone/export_group_call_invite.py +70 -0
  1749. pyromt-2.4.1/pyrogram/raw/functions/phone/get_call_config.py +57 -0
  1750. pyromt-2.4.1/pyrogram/raw/functions/phone/get_group_call.py +70 -0
  1751. pyromt-2.4.1/pyrogram/raw/functions/phone/get_group_call_chain_blocks.py +86 -0
  1752. pyromt-2.4.1/pyrogram/raw/functions/phone/get_group_call_join_as.py +62 -0
  1753. pyromt-2.4.1/pyrogram/raw/functions/phone/get_group_call_stars.py +62 -0
  1754. pyromt-2.4.1/pyrogram/raw/functions/phone/get_group_call_stream_channels.py +62 -0
  1755. pyromt-2.4.1/pyrogram/raw/functions/phone/get_group_call_stream_rtmp_url.py +78 -0
  1756. pyromt-2.4.1/pyrogram/raw/functions/phone/get_group_participants.py +94 -0
  1757. pyromt-2.4.1/pyrogram/raw/functions/phone/invite_conference_call_participant.py +78 -0
  1758. pyromt-2.4.1/pyrogram/raw/functions/phone/invite_to_group_call.py +70 -0
  1759. pyromt-2.4.1/pyrogram/raw/functions/phone/join_group_call.py +119 -0
  1760. pyromt-2.4.1/pyrogram/raw/functions/phone/join_group_call_presentation.py +70 -0
  1761. pyromt-2.4.1/pyrogram/raw/functions/phone/leave_group_call.py +70 -0
  1762. pyromt-2.4.1/pyrogram/raw/functions/phone/leave_group_call_presentation.py +62 -0
  1763. pyromt-2.4.1/pyrogram/raw/functions/phone/received_call.py +62 -0
  1764. pyromt-2.4.1/pyrogram/raw/functions/phone/request_call.py +94 -0
  1765. pyromt-2.4.1/pyrogram/raw/functions/phone/save_call_debug.py +70 -0
  1766. pyromt-2.4.1/pyrogram/raw/functions/phone/save_call_log.py +70 -0
  1767. pyromt-2.4.1/pyrogram/raw/functions/phone/save_default_group_call_join_as.py +70 -0
  1768. pyromt-2.4.1/pyrogram/raw/functions/phone/save_default_send_as.py +70 -0
  1769. pyromt-2.4.1/pyrogram/raw/functions/phone/send_conference_call_broadcast.py +70 -0
  1770. pyromt-2.4.1/pyrogram/raw/functions/phone/send_group_call_encrypted_message.py +70 -0
  1771. pyromt-2.4.1/pyrogram/raw/functions/phone/send_group_call_message.py +99 -0
  1772. pyromt-2.4.1/pyrogram/raw/functions/phone/send_signaling_data.py +70 -0
  1773. pyromt-2.4.1/pyrogram/raw/functions/phone/set_call_rating.py +86 -0
  1774. pyromt-2.4.1/pyrogram/raw/functions/phone/start_scheduled_group_call.py +62 -0
  1775. pyromt-2.4.1/pyrogram/raw/functions/phone/toggle_group_call_record.py +94 -0
  1776. pyromt-2.4.1/pyrogram/raw/functions/phone/toggle_group_call_settings.py +97 -0
  1777. pyromt-2.4.1/pyrogram/raw/functions/phone/toggle_group_call_start_subscription.py +70 -0
  1778. pyromt-2.4.1/pyrogram/raw/functions/photos/__init__.py +19 -0
  1779. pyromt-2.4.1/pyrogram/raw/functions/photos/delete_photos.py +62 -0
  1780. pyromt-2.4.1/pyrogram/raw/functions/photos/get_user_photos.py +86 -0
  1781. pyromt-2.4.1/pyrogram/raw/functions/photos/update_profile_photo.py +80 -0
  1782. pyromt-2.4.1/pyrogram/raw/functions/photos/upload_contact_profile_photo.py +115 -0
  1783. pyromt-2.4.1/pyrogram/raw/functions/photos/upload_profile_photo.py +111 -0
  1784. pyromt-2.4.1/pyrogram/raw/functions/ping.py +62 -0
  1785. pyromt-2.4.1/pyrogram/raw/functions/ping_delay_disconnect.py +70 -0
  1786. pyromt-2.4.1/pyrogram/raw/functions/premium/__init__.py +19 -0
  1787. pyromt-2.4.1/pyrogram/raw/functions/premium/apply_boost.py +74 -0
  1788. pyromt-2.4.1/pyrogram/raw/functions/premium/get_boosts_list.py +86 -0
  1789. pyromt-2.4.1/pyrogram/raw/functions/premium/get_boosts_status.py +62 -0
  1790. pyromt-2.4.1/pyrogram/raw/functions/premium/get_my_boosts.py +57 -0
  1791. pyromt-2.4.1/pyrogram/raw/functions/premium/get_user_boosts.py +70 -0
  1792. pyromt-2.4.1/pyrogram/raw/functions/req_dh_params.py +102 -0
  1793. pyromt-2.4.1/pyrogram/raw/functions/req_pq.py +62 -0
  1794. pyromt-2.4.1/pyrogram/raw/functions/req_pq_multi.py +62 -0
  1795. pyromt-2.4.1/pyrogram/raw/functions/rpc_drop_answer.py +62 -0
  1796. pyromt-2.4.1/pyrogram/raw/functions/set_client_dh_params.py +78 -0
  1797. pyromt-2.4.1/pyrogram/raw/functions/smsjobs/__init__.py +21 -0
  1798. pyromt-2.4.1/pyrogram/raw/functions/smsjobs/finish_job.py +73 -0
  1799. pyromt-2.4.1/pyrogram/raw/functions/smsjobs/get_sms_job.py +62 -0
  1800. pyromt-2.4.1/pyrogram/raw/functions/smsjobs/get_status.py +57 -0
  1801. pyromt-2.4.1/pyrogram/raw/functions/smsjobs/is_eligible_to_join.py +57 -0
  1802. pyromt-2.4.1/pyrogram/raw/functions/smsjobs/join.py +57 -0
  1803. pyromt-2.4.1/pyrogram/raw/functions/smsjobs/leave.py +57 -0
  1804. pyromt-2.4.1/pyrogram/raw/functions/smsjobs/update_settings.py +62 -0
  1805. pyromt-2.4.1/pyrogram/raw/functions/stats/__init__.py +21 -0
  1806. pyromt-2.4.1/pyrogram/raw/functions/stats/get_broadcast_stats.py +70 -0
  1807. pyromt-2.4.1/pyrogram/raw/functions/stats/get_megagroup_stats.py +70 -0
  1808. pyromt-2.4.1/pyrogram/raw/functions/stats/get_message_public_forwards.py +86 -0
  1809. pyromt-2.4.1/pyrogram/raw/functions/stats/get_message_stats.py +78 -0
  1810. pyromt-2.4.1/pyrogram/raw/functions/stats/get_story_public_forwards.py +86 -0
  1811. pyromt-2.4.1/pyrogram/raw/functions/stats/get_story_stats.py +78 -0
  1812. pyromt-2.4.1/pyrogram/raw/functions/stats/load_async_graph.py +73 -0
  1813. pyromt-2.4.1/pyrogram/raw/functions/stickers/__init__.py +25 -0
  1814. pyromt-2.4.1/pyrogram/raw/functions/stickers/add_sticker_to_set.py +70 -0
  1815. pyromt-2.4.1/pyrogram/raw/functions/stickers/change_sticker.py +92 -0
  1816. pyromt-2.4.1/pyrogram/raw/functions/stickers/change_sticker_position.py +70 -0
  1817. pyromt-2.4.1/pyrogram/raw/functions/stickers/check_short_name.py +62 -0
  1818. pyromt-2.4.1/pyrogram/raw/functions/stickers/create_sticker_set.py +125 -0
  1819. pyromt-2.4.1/pyrogram/raw/functions/stickers/delete_sticker_set.py +62 -0
  1820. pyromt-2.4.1/pyrogram/raw/functions/stickers/remove_sticker_from_set.py +62 -0
  1821. pyromt-2.4.1/pyrogram/raw/functions/stickers/rename_sticker_set.py +70 -0
  1822. pyromt-2.4.1/pyrogram/raw/functions/stickers/replace_sticker.py +70 -0
  1823. pyromt-2.4.1/pyrogram/raw/functions/stickers/set_sticker_set_thumb.py +83 -0
  1824. pyromt-2.4.1/pyrogram/raw/functions/stickers/suggest_short_name.py +62 -0
  1825. pyromt-2.4.1/pyrogram/raw/functions/stories/__init__.py +47 -0
  1826. pyromt-2.4.1/pyrogram/raw/functions/stories/activate_stealth_mode.py +68 -0
  1827. pyromt-2.4.1/pyrogram/raw/functions/stories/can_send_story.py +62 -0
  1828. pyromt-2.4.1/pyrogram/raw/functions/stories/create_album.py +78 -0
  1829. pyromt-2.4.1/pyrogram/raw/functions/stories/delete_album.py +70 -0
  1830. pyromt-2.4.1/pyrogram/raw/functions/stories/delete_stories.py +70 -0
  1831. pyromt-2.4.1/pyrogram/raw/functions/stories/edit_story.py +121 -0
  1832. pyromt-2.4.1/pyrogram/raw/functions/stories/export_story_link.py +70 -0
  1833. pyromt-2.4.1/pyrogram/raw/functions/stories/get_album_stories.py +86 -0
  1834. pyromt-2.4.1/pyrogram/raw/functions/stories/get_albums.py +70 -0
  1835. pyromt-2.4.1/pyrogram/raw/functions/stories/get_all_read_peer_stories.py +57 -0
  1836. pyromt-2.4.1/pyrogram/raw/functions/stories/get_all_stories.py +77 -0
  1837. pyromt-2.4.1/pyrogram/raw/functions/stories/get_chats_to_send.py +57 -0
  1838. pyromt-2.4.1/pyrogram/raw/functions/stories/get_peer_max_i_ds.py +62 -0
  1839. pyromt-2.4.1/pyrogram/raw/functions/stories/get_peer_stories.py +62 -0
  1840. pyromt-2.4.1/pyrogram/raw/functions/stories/get_pinned_stories.py +78 -0
  1841. pyromt-2.4.1/pyrogram/raw/functions/stories/get_stories_archive.py +78 -0
  1842. pyromt-2.4.1/pyrogram/raw/functions/stories/get_stories_by_id.py +70 -0
  1843. pyromt-2.4.1/pyrogram/raw/functions/stories/get_stories_views.py +70 -0
  1844. pyromt-2.4.1/pyrogram/raw/functions/stories/get_story_reactions_list.py +105 -0
  1845. pyromt-2.4.1/pyrogram/raw/functions/stories/get_story_views_list.py +115 -0
  1846. pyromt-2.4.1/pyrogram/raw/functions/stories/increment_story_views.py +70 -0
  1847. pyromt-2.4.1/pyrogram/raw/functions/stories/read_stories.py +70 -0
  1848. pyromt-2.4.1/pyrogram/raw/functions/stories/reorder_albums.py +70 -0
  1849. pyromt-2.4.1/pyrogram/raw/functions/stories/report.py +86 -0
  1850. pyromt-2.4.1/pyrogram/raw/functions/stories/search_posts.py +101 -0
  1851. pyromt-2.4.1/pyrogram/raw/functions/stories/send_reaction.py +86 -0
  1852. pyromt-2.4.1/pyrogram/raw/functions/stories/send_story.py +173 -0
  1853. pyromt-2.4.1/pyrogram/raw/functions/stories/start_live.py +135 -0
  1854. pyromt-2.4.1/pyrogram/raw/functions/stories/toggle_all_stories_hidden.py +62 -0
  1855. pyromt-2.4.1/pyrogram/raw/functions/stories/toggle_peer_stories_hidden.py +70 -0
  1856. pyromt-2.4.1/pyrogram/raw/functions/stories/toggle_pinned.py +78 -0
  1857. pyromt-2.4.1/pyrogram/raw/functions/stories/toggle_pinned_to_top.py +70 -0
  1858. pyromt-2.4.1/pyrogram/raw/functions/stories/update_album.py +111 -0
  1859. pyromt-2.4.1/pyrogram/raw/functions/updates/__init__.py +17 -0
  1860. pyromt-2.4.1/pyrogram/raw/functions/updates/get_channel_difference.py +94 -0
  1861. pyromt-2.4.1/pyrogram/raw/functions/updates/get_difference.py +107 -0
  1862. pyromt-2.4.1/pyrogram/raw/functions/updates/get_state.py +57 -0
  1863. pyromt-2.4.1/pyrogram/raw/functions/upload/__init__.py +22 -0
  1864. pyromt-2.4.1/pyrogram/raw/functions/upload/get_cdn_file.py +78 -0
  1865. pyromt-2.4.1/pyrogram/raw/functions/upload/get_cdn_file_hashes.py +70 -0
  1866. pyromt-2.4.1/pyrogram/raw/functions/upload/get_file.py +92 -0
  1867. pyromt-2.4.1/pyrogram/raw/functions/upload/get_file_hashes.py +70 -0
  1868. pyromt-2.4.1/pyrogram/raw/functions/upload/get_web_file.py +78 -0
  1869. pyromt-2.4.1/pyrogram/raw/functions/upload/reupload_cdn_file.py +70 -0
  1870. pyromt-2.4.1/pyrogram/raw/functions/upload/save_big_file_part.py +86 -0
  1871. pyromt-2.4.1/pyrogram/raw/functions/upload/save_file_part.py +78 -0
  1872. pyromt-2.4.1/pyrogram/raw/functions/users/__init__.py +21 -0
  1873. pyromt-2.4.1/pyrogram/raw/functions/users/get_full_user.py +62 -0
  1874. pyromt-2.4.1/pyrogram/raw/functions/users/get_requirements_to_contact.py +62 -0
  1875. pyromt-2.4.1/pyrogram/raw/functions/users/get_saved_music.py +86 -0
  1876. pyromt-2.4.1/pyrogram/raw/functions/users/get_saved_music_by_id.py +70 -0
  1877. pyromt-2.4.1/pyrogram/raw/functions/users/get_users.py +62 -0
  1878. pyromt-2.4.1/pyrogram/raw/functions/users/set_secure_value_errors.py +70 -0
  1879. pyromt-2.4.1/pyrogram/raw/functions/users/suggest_birthday.py +70 -0
  1880. pyromt-2.4.1/pyrogram/raw/types/__init__.py +1278 -0
  1881. pyromt-2.4.1/pyrogram/raw/types/access_point_rule.py +78 -0
  1882. pyromt-2.4.1/pyrogram/raw/types/account/__init__.py +52 -0
  1883. pyromt-2.4.1/pyrogram/raw/types/account/authorization_form.py +106 -0
  1884. pyromt-2.4.1/pyrogram/raw/types/account/authorizations.py +79 -0
  1885. pyromt-2.4.1/pyrogram/raw/types/account/auto_download_settings.py +87 -0
  1886. pyromt-2.4.1/pyrogram/raw/types/account/auto_save_settings.py +111 -0
  1887. pyromt-2.4.1/pyrogram/raw/types/account/business_chat_links.py +87 -0
  1888. pyromt-2.4.1/pyrogram/raw/types/account/chat_themes.py +106 -0
  1889. pyromt-2.4.1/pyrogram/raw/types/account/chat_themes_not_modified.py +66 -0
  1890. pyromt-2.4.1/pyrogram/raw/types/account/connected_bots.py +79 -0
  1891. pyromt-2.4.1/pyrogram/raw/types/account/content_settings.py +77 -0
  1892. pyromt-2.4.1/pyrogram/raw/types/account/email_verified.py +71 -0
  1893. pyromt-2.4.1/pyrogram/raw/types/account/email_verified_login.py +79 -0
  1894. pyromt-2.4.1/pyrogram/raw/types/account/emoji_statuses.py +82 -0
  1895. pyromt-2.4.1/pyrogram/raw/types/account/emoji_statuses_not_modified.py +69 -0
  1896. pyromt-2.4.1/pyrogram/raw/types/account/paid_messages_revenue.py +71 -0
  1897. pyromt-2.4.1/pyrogram/raw/types/account/passkey_registration_options.py +71 -0
  1898. pyromt-2.4.1/pyrogram/raw/types/account/passkeys.py +71 -0
  1899. pyromt-2.4.1/pyrogram/raw/types/account/password.py +171 -0
  1900. pyromt-2.4.1/pyrogram/raw/types/account/password_input_settings.py +103 -0
  1901. pyromt-2.4.1/pyrogram/raw/types/account/password_settings.py +84 -0
  1902. pyromt-2.4.1/pyrogram/raw/types/account/privacy_rules.py +88 -0
  1903. pyromt-2.4.1/pyrogram/raw/types/account/reset_password_failed_wait.py +71 -0
  1904. pyromt-2.4.1/pyrogram/raw/types/account/reset_password_ok.py +66 -0
  1905. pyromt-2.4.1/pyrogram/raw/types/account/reset_password_requested_wait.py +71 -0
  1906. pyromt-2.4.1/pyrogram/raw/types/account/resolved_business_chat_links.py +107 -0
  1907. pyromt-2.4.1/pyrogram/raw/types/account/saved_music_ids.py +71 -0
  1908. pyromt-2.4.1/pyrogram/raw/types/account/saved_music_ids_not_modified.py +66 -0
  1909. pyromt-2.4.1/pyrogram/raw/types/account/saved_ringtone.py +66 -0
  1910. pyromt-2.4.1/pyrogram/raw/types/account/saved_ringtone_converted.py +71 -0
  1911. pyromt-2.4.1/pyrogram/raw/types/account/saved_ringtones.py +79 -0
  1912. pyromt-2.4.1/pyrogram/raw/types/account/saved_ringtones_not_modified.py +66 -0
  1913. pyromt-2.4.1/pyrogram/raw/types/account/sent_email_code.py +79 -0
  1914. pyromt-2.4.1/pyrogram/raw/types/account/takeout.py +71 -0
  1915. pyromt-2.4.1/pyrogram/raw/types/account/themes.py +80 -0
  1916. pyromt-2.4.1/pyrogram/raw/types/account/themes_not_modified.py +67 -0
  1917. pyromt-2.4.1/pyrogram/raw/types/account/tmp_password.py +79 -0
  1918. pyromt-2.4.1/pyrogram/raw/types/account/wall_papers.py +79 -0
  1919. pyromt-2.4.1/pyrogram/raw/types/account/wall_papers_not_modified.py +66 -0
  1920. pyromt-2.4.1/pyrogram/raw/types/account/web_authorizations.py +79 -0
  1921. pyromt-2.4.1/pyrogram/raw/types/account_days_ttl.py +71 -0
  1922. pyromt-2.4.1/pyrogram/raw/types/attach_menu_bot.py +126 -0
  1923. pyromt-2.4.1/pyrogram/raw/types/attach_menu_bot_icon.py +82 -0
  1924. pyromt-2.4.1/pyrogram/raw/types/attach_menu_bot_icon_color.py +70 -0
  1925. pyromt-2.4.1/pyrogram/raw/types/attach_menu_bots.py +87 -0
  1926. pyromt-2.4.1/pyrogram/raw/types/attach_menu_bots_bot.py +79 -0
  1927. pyromt-2.4.1/pyrogram/raw/types/attach_menu_bots_not_modified.py +66 -0
  1928. pyromt-2.4.1/pyrogram/raw/types/attach_menu_peer_type_bot_pm.py +57 -0
  1929. pyromt-2.4.1/pyrogram/raw/types/attach_menu_peer_type_broadcast.py +57 -0
  1930. pyromt-2.4.1/pyrogram/raw/types/attach_menu_peer_type_chat.py +57 -0
  1931. pyromt-2.4.1/pyrogram/raw/types/attach_menu_peer_type_pm.py +57 -0
  1932. pyromt-2.4.1/pyrogram/raw/types/attach_menu_peer_type_same_bot_pm.py +57 -0
  1933. pyromt-2.4.1/pyrogram/raw/types/auction_bid_level.py +78 -0
  1934. pyromt-2.4.1/pyrogram/raw/types/auth/__init__.py +42 -0
  1935. pyromt-2.4.1/pyrogram/raw/types/auth/authorization.py +113 -0
  1936. pyromt-2.4.1/pyrogram/raw/types/auth/authorization_sign_up_required.py +82 -0
  1937. pyromt-2.4.1/pyrogram/raw/types/auth/code_type_call.py +57 -0
  1938. pyromt-2.4.1/pyrogram/raw/types/auth/code_type_flash_call.py +57 -0
  1939. pyromt-2.4.1/pyrogram/raw/types/auth/code_type_fragment_sms.py +57 -0
  1940. pyromt-2.4.1/pyrogram/raw/types/auth/code_type_missed_call.py +57 -0
  1941. pyromt-2.4.1/pyrogram/raw/types/auth/code_type_sms.py +57 -0
  1942. pyromt-2.4.1/pyrogram/raw/types/auth/exported_authorization.py +79 -0
  1943. pyromt-2.4.1/pyrogram/raw/types/auth/logged_out.py +74 -0
  1944. pyromt-2.4.1/pyrogram/raw/types/auth/login_token.py +80 -0
  1945. pyromt-2.4.1/pyrogram/raw/types/auth/login_token_migrate_to.py +80 -0
  1946. pyromt-2.4.1/pyrogram/raw/types/auth/login_token_success.py +72 -0
  1947. pyromt-2.4.1/pyrogram/raw/types/auth/passkey_login_options.py +71 -0
  1948. pyromt-2.4.1/pyrogram/raw/types/auth/password_recovery.py +71 -0
  1949. pyromt-2.4.1/pyrogram/raw/types/auth/sent_code.py +106 -0
  1950. pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_payment_required.py +117 -0
  1951. pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_success.py +77 -0
  1952. pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_app.py +62 -0
  1953. pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_call.py +62 -0
  1954. pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_email_code.py +102 -0
  1955. pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_firebase_sms.py +109 -0
  1956. pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_flash_call.py +62 -0
  1957. pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_fragment_sms.py +70 -0
  1958. pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_missed_call.py +70 -0
  1959. pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_set_up_email_required.py +68 -0
  1960. pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_sms.py +62 -0
  1961. pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_sms_phrase.py +65 -0
  1962. pyromt-2.4.1/pyrogram/raw/types/auth/sent_code_type_sms_word.py +65 -0
  1963. pyromt-2.4.1/pyrogram/raw/types/authorization.py +197 -0
  1964. pyromt-2.4.1/pyrogram/raw/types/auto_download_settings.py +134 -0
  1965. pyromt-2.4.1/pyrogram/raw/types/auto_save_exception.py +70 -0
  1966. pyromt-2.4.1/pyrogram/raw/types/auto_save_settings.py +77 -0
  1967. pyromt-2.4.1/pyrogram/raw/types/available_effect.py +104 -0
  1968. pyromt-2.4.1/pyrogram/raw/types/available_reaction.py +144 -0
  1969. pyromt-2.4.1/pyrogram/raw/types/bad_msg_notification.py +78 -0
  1970. pyromt-2.4.1/pyrogram/raw/types/bad_server_salt.py +86 -0
  1971. pyromt-2.4.1/pyrogram/raw/types/bank_card_open_url.py +70 -0
  1972. pyromt-2.4.1/pyrogram/raw/types/base_theme_arctic.py +57 -0
  1973. pyromt-2.4.1/pyrogram/raw/types/base_theme_classic.py +57 -0
  1974. pyromt-2.4.1/pyrogram/raw/types/base_theme_day.py +57 -0
  1975. pyromt-2.4.1/pyrogram/raw/types/base_theme_night.py +57 -0
  1976. pyromt-2.4.1/pyrogram/raw/types/base_theme_tinted.py +57 -0
  1977. pyromt-2.4.1/pyrogram/raw/types/bind_auth_key_inner.py +94 -0
  1978. pyromt-2.4.1/pyrogram/raw/types/birthday.py +81 -0
  1979. pyromt-2.4.1/pyrogram/raw/types/bool_false.py +267 -0
  1980. pyromt-2.4.1/pyrogram/raw/types/bool_true.py +267 -0
  1981. pyromt-2.4.1/pyrogram/raw/types/boost.py +143 -0
  1982. pyromt-2.4.1/pyrogram/raw/types/bot_app.py +122 -0
  1983. pyromt-2.4.1/pyrogram/raw/types/bot_app_not_modified.py +57 -0
  1984. pyromt-2.4.1/pyrogram/raw/types/bot_app_settings.py +101 -0
  1985. pyromt-2.4.1/pyrogram/raw/types/bot_business_connection.py +104 -0
  1986. pyromt-2.4.1/pyrogram/raw/types/bot_command.py +79 -0
  1987. pyromt-2.4.1/pyrogram/raw/types/bot_command_scope_chat_admins.py +57 -0
  1988. pyromt-2.4.1/pyrogram/raw/types/bot_command_scope_chats.py +57 -0
  1989. pyromt-2.4.1/pyrogram/raw/types/bot_command_scope_default.py +57 -0
  1990. pyromt-2.4.1/pyrogram/raw/types/bot_command_scope_peer.py +62 -0
  1991. pyromt-2.4.1/pyrogram/raw/types/bot_command_scope_peer_admins.py +62 -0
  1992. pyromt-2.4.1/pyrogram/raw/types/bot_command_scope_peer_user.py +70 -0
  1993. pyromt-2.4.1/pyrogram/raw/types/bot_command_scope_users.py +57 -0
  1994. pyromt-2.4.1/pyrogram/raw/types/bot_info.py +149 -0
  1995. pyromt-2.4.1/pyrogram/raw/types/bot_inline_media_result.py +118 -0
  1996. pyromt-2.4.1/pyrogram/raw/types/bot_inline_message_media_auto.py +90 -0
  1997. pyromt-2.4.1/pyrogram/raw/types/bot_inline_message_media_contact.py +98 -0
  1998. pyromt-2.4.1/pyrogram/raw/types/bot_inline_message_media_geo.py +101 -0
  1999. pyromt-2.4.1/pyrogram/raw/types/bot_inline_message_media_invoice.py +120 -0
  2000. pyromt-2.4.1/pyrogram/raw/types/bot_inline_message_media_venue.py +114 -0
  2001. pyromt-2.4.1/pyrogram/raw/types/bot_inline_message_media_web_page.py +122 -0
  2002. pyromt-2.4.1/pyrogram/raw/types/bot_inline_message_text.py +96 -0
  2003. pyromt-2.4.1/pyrogram/raw/types/bot_inline_result.py +127 -0
  2004. pyromt-2.4.1/pyrogram/raw/types/bot_menu_button.py +79 -0
  2005. pyromt-2.4.1/pyrogram/raw/types/bot_menu_button_commands.py +66 -0
  2006. pyromt-2.4.1/pyrogram/raw/types/bot_menu_button_default.py +66 -0
  2007. pyromt-2.4.1/pyrogram/raw/types/bot_preview_media.py +81 -0
  2008. pyromt-2.4.1/pyrogram/raw/types/bot_verification.py +78 -0
  2009. pyromt-2.4.1/pyrogram/raw/types/bot_verifier_settings.py +87 -0
  2010. pyromt-2.4.1/pyrogram/raw/types/bots/__init__.py +17 -0
  2011. pyromt-2.4.1/pyrogram/raw/types/bots/bot_info.py +87 -0
  2012. pyromt-2.4.1/pyrogram/raw/types/bots/popular_app_bots.py +82 -0
  2013. pyromt-2.4.1/pyrogram/raw/types/bots/preview_info.py +79 -0
  2014. pyromt-2.4.1/pyrogram/raw/types/business_away_message.py +86 -0
  2015. pyromt-2.4.1/pyrogram/raw/types/business_away_message_schedule_always.py +57 -0
  2016. pyromt-2.4.1/pyrogram/raw/types/business_away_message_schedule_custom.py +70 -0
  2017. pyromt-2.4.1/pyrogram/raw/types/business_away_message_schedule_outside_work_hours.py +57 -0
  2018. pyromt-2.4.1/pyrogram/raw/types/business_bot_recipients.py +106 -0
  2019. pyromt-2.4.1/pyrogram/raw/types/business_bot_rights.py +140 -0
  2020. pyromt-2.4.1/pyrogram/raw/types/business_chat_link.py +109 -0
  2021. pyromt-2.4.1/pyrogram/raw/types/business_greeting_message.py +78 -0
  2022. pyromt-2.4.1/pyrogram/raw/types/business_intro.py +82 -0
  2023. pyromt-2.4.1/pyrogram/raw/types/business_location.py +74 -0
  2024. pyromt-2.4.1/pyrogram/raw/types/business_recipients.py +96 -0
  2025. pyromt-2.4.1/pyrogram/raw/types/business_weekly_open.py +70 -0
  2026. pyromt-2.4.1/pyrogram/raw/types/business_work_hours.py +78 -0
  2027. pyromt-2.4.1/pyrogram/raw/types/cdn_config.py +71 -0
  2028. pyromt-2.4.1/pyrogram/raw/types/cdn_public_key.py +70 -0
  2029. pyromt-2.4.1/pyrogram/raw/types/channel.py +422 -0
  2030. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event.py +86 -0
  2031. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_about.py +70 -0
  2032. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_available_reactions.py +70 -0
  2033. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_emoji_status.py +70 -0
  2034. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py +70 -0
  2035. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_history_ttl.py +70 -0
  2036. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_linked_chat.py +70 -0
  2037. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_location.py +70 -0
  2038. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_peer_color.py +70 -0
  2039. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_photo.py +70 -0
  2040. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py +70 -0
  2041. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_sticker_set.py +70 -0
  2042. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_title.py +70 -0
  2043. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_username.py +70 -0
  2044. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_usernames.py +70 -0
  2045. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_change_wallpaper.py +70 -0
  2046. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_create_topic.py +62 -0
  2047. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_default_banned_rights.py +70 -0
  2048. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_delete_message.py +62 -0
  2049. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_delete_topic.py +62 -0
  2050. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_discard_group_call.py +62 -0
  2051. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_edit_message.py +70 -0
  2052. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_edit_topic.py +70 -0
  2053. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_exported_invite_delete.py +62 -0
  2054. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_exported_invite_edit.py +70 -0
  2055. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py +62 -0
  2056. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_invite.py +62 -0
  2057. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_join.py +57 -0
  2058. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py +70 -0
  2059. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_request.py +70 -0
  2060. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_leave.py +57 -0
  2061. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_mute.py +62 -0
  2062. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_sub_extend.py +70 -0
  2063. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py +70 -0
  2064. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py +70 -0
  2065. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_unmute.py +62 -0
  2066. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_participant_volume.py +62 -0
  2067. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_pin_topic.py +76 -0
  2068. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_send_message.py +62 -0
  2069. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_start_group_call.py +62 -0
  2070. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_stop_poll.py +62 -0
  2071. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py +62 -0
  2072. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_autotranslation.py +62 -0
  2073. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_forum.py +62 -0
  2074. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py +62 -0
  2075. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_invites.py +62 -0
  2076. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py +62 -0
  2077. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py +62 -0
  2078. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_signature_profiles.py +62 -0
  2079. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_signatures.py +62 -0
  2080. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py +70 -0
  2081. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_event_action_update_pinned.py +62 -0
  2082. pyromt-2.4.1/pyrogram/raw/types/channel_admin_log_events_filter.py +170 -0
  2083. pyromt-2.4.1/pyrogram/raw/types/channel_forbidden.py +107 -0
  2084. pyromt-2.4.1/pyrogram/raw/types/channel_full.py +596 -0
  2085. pyromt-2.4.1/pyrogram/raw/types/channel_location.py +70 -0
  2086. pyromt-2.4.1/pyrogram/raw/types/channel_location_empty.py +57 -0
  2087. pyromt-2.4.1/pyrogram/raw/types/channel_messages_filter.py +70 -0
  2088. pyromt-2.4.1/pyrogram/raw/types/channel_messages_filter_empty.py +57 -0
  2089. pyromt-2.4.1/pyrogram/raw/types/channel_participant.py +81 -0
  2090. pyromt-2.4.1/pyrogram/raw/types/channel_participant_admin.py +118 -0
  2091. pyromt-2.4.1/pyrogram/raw/types/channel_participant_banned.py +94 -0
  2092. pyromt-2.4.1/pyrogram/raw/types/channel_participant_creator.py +81 -0
  2093. pyromt-2.4.1/pyrogram/raw/types/channel_participant_left.py +62 -0
  2094. pyromt-2.4.1/pyrogram/raw/types/channel_participant_self.py +95 -0
  2095. pyromt-2.4.1/pyrogram/raw/types/channel_participants_admins.py +57 -0
  2096. pyromt-2.4.1/pyrogram/raw/types/channel_participants_banned.py +62 -0
  2097. pyromt-2.4.1/pyrogram/raw/types/channel_participants_bots.py +57 -0
  2098. pyromt-2.4.1/pyrogram/raw/types/channel_participants_contacts.py +62 -0
  2099. pyromt-2.4.1/pyrogram/raw/types/channel_participants_kicked.py +62 -0
  2100. pyromt-2.4.1/pyrogram/raw/types/channel_participants_mentions.py +74 -0
  2101. pyromt-2.4.1/pyrogram/raw/types/channel_participants_recent.py +57 -0
  2102. pyromt-2.4.1/pyrogram/raw/types/channel_participants_search.py +62 -0
  2103. pyromt-2.4.1/pyrogram/raw/types/channels/__init__.py +22 -0
  2104. pyromt-2.4.1/pyrogram/raw/types/channels/admin_log_results.py +87 -0
  2105. pyromt-2.4.1/pyrogram/raw/types/channels/channel_participant.py +87 -0
  2106. pyromt-2.4.1/pyrogram/raw/types/channels/channel_participants.py +95 -0
  2107. pyromt-2.4.1/pyrogram/raw/types/channels/channel_participants_not_modified.py +66 -0
  2108. pyromt-2.4.1/pyrogram/raw/types/channels/send_as_peers.py +87 -0
  2109. pyromt-2.4.1/pyrogram/raw/types/channels/sponsored_message_report_result_ads_hidden.py +66 -0
  2110. pyromt-2.4.1/pyrogram/raw/types/channels/sponsored_message_report_result_choose_option.py +79 -0
  2111. pyromt-2.4.1/pyrogram/raw/types/channels/sponsored_message_report_result_reported.py +66 -0
  2112. pyromt-2.4.1/pyrogram/raw/types/chat.py +170 -0
  2113. pyromt-2.4.1/pyrogram/raw/types/chat_admin_rights.py +152 -0
  2114. pyromt-2.4.1/pyrogram/raw/types/chat_admin_with_invites.py +78 -0
  2115. pyromt-2.4.1/pyrogram/raw/types/chat_banned_rights.py +184 -0
  2116. pyromt-2.4.1/pyrogram/raw/types/chat_empty.py +62 -0
  2117. pyromt-2.4.1/pyrogram/raw/types/chat_forbidden.py +70 -0
  2118. pyromt-2.4.1/pyrogram/raw/types/chat_full.py +230 -0
  2119. pyromt-2.4.1/pyrogram/raw/types/chat_invite.py +199 -0
  2120. pyromt-2.4.1/pyrogram/raw/types/chat_invite_already.py +71 -0
  2121. pyromt-2.4.1/pyrogram/raw/types/chat_invite_exported.py +180 -0
  2122. pyromt-2.4.1/pyrogram/raw/types/chat_invite_importer.py +102 -0
  2123. pyromt-2.4.1/pyrogram/raw/types/chat_invite_peek.py +79 -0
  2124. pyromt-2.4.1/pyrogram/raw/types/chat_invite_public_join_requests.py +66 -0
  2125. pyromt-2.4.1/pyrogram/raw/types/chat_onlines.py +71 -0
  2126. pyromt-2.4.1/pyrogram/raw/types/chat_participant.py +78 -0
  2127. pyromt-2.4.1/pyrogram/raw/types/chat_participant_admin.py +78 -0
  2128. pyromt-2.4.1/pyrogram/raw/types/chat_participant_creator.py +62 -0
  2129. pyromt-2.4.1/pyrogram/raw/types/chat_participants.py +78 -0
  2130. pyromt-2.4.1/pyrogram/raw/types/chat_participants_forbidden.py +74 -0
  2131. pyromt-2.4.1/pyrogram/raw/types/chat_photo.py +87 -0
  2132. pyromt-2.4.1/pyrogram/raw/types/chat_photo_empty.py +57 -0
  2133. pyromt-2.4.1/pyrogram/raw/types/chat_reactions_all.py +62 -0
  2134. pyromt-2.4.1/pyrogram/raw/types/chat_reactions_none.py +57 -0
  2135. pyromt-2.4.1/pyrogram/raw/types/chat_reactions_some.py +62 -0
  2136. pyromt-2.4.1/pyrogram/raw/types/chat_theme.py +62 -0
  2137. pyromt-2.4.1/pyrogram/raw/types/chat_theme_unique_gift.py +70 -0
  2138. pyromt-2.4.1/pyrogram/raw/types/chatlists/__init__.py +19 -0
  2139. pyromt-2.4.1/pyrogram/raw/types/chatlists/chatlist_invite.py +112 -0
  2140. pyromt-2.4.1/pyrogram/raw/types/chatlists/chatlist_invite_already.py +103 -0
  2141. pyromt-2.4.1/pyrogram/raw/types/chatlists/chatlist_updates.py +87 -0
  2142. pyromt-2.4.1/pyrogram/raw/types/chatlists/exported_chatlist_invite.py +79 -0
  2143. pyromt-2.4.1/pyrogram/raw/types/chatlists/exported_invites.py +87 -0
  2144. pyromt-2.4.1/pyrogram/raw/types/client_dh_inner_data.py +86 -0
  2145. pyromt-2.4.1/pyrogram/raw/types/code_settings.py +120 -0
  2146. pyromt-2.4.1/pyrogram/raw/types/config.py +443 -0
  2147. pyromt-2.4.1/pyrogram/raw/types/connected_bot.py +81 -0
  2148. pyromt-2.4.1/pyrogram/raw/types/connected_bot_star_ref.py +119 -0
  2149. pyromt-2.4.1/pyrogram/raw/types/contact.py +70 -0
  2150. pyromt-2.4.1/pyrogram/raw/types/contact_birthday.py +70 -0
  2151. pyromt-2.4.1/pyrogram/raw/types/contact_status.py +79 -0
  2152. pyromt-2.4.1/pyrogram/raw/types/contacts/__init__.py +27 -0
  2153. pyromt-2.4.1/pyrogram/raw/types/contacts/blocked.py +87 -0
  2154. pyromt-2.4.1/pyrogram/raw/types/contacts/blocked_slice.py +95 -0
  2155. pyromt-2.4.1/pyrogram/raw/types/contacts/contact_birthdays.py +79 -0
  2156. pyromt-2.4.1/pyrogram/raw/types/contacts/contacts.py +87 -0
  2157. pyromt-2.4.1/pyrogram/raw/types/contacts/contacts_not_modified.py +66 -0
  2158. pyromt-2.4.1/pyrogram/raw/types/contacts/found.py +95 -0
  2159. pyromt-2.4.1/pyrogram/raw/types/contacts/imported_contacts.py +95 -0
  2160. pyromt-2.4.1/pyrogram/raw/types/contacts/resolved_peer.py +88 -0
  2161. pyromt-2.4.1/pyrogram/raw/types/contacts/sponsored_peers.py +87 -0
  2162. pyromt-2.4.1/pyrogram/raw/types/contacts/sponsored_peers_empty.py +66 -0
  2163. pyromt-2.4.1/pyrogram/raw/types/contacts/top_peers.py +87 -0
  2164. pyromt-2.4.1/pyrogram/raw/types/contacts/top_peers_disabled.py +66 -0
  2165. pyromt-2.4.1/pyrogram/raw/types/contacts/top_peers_not_modified.py +66 -0
  2166. pyromt-2.4.1/pyrogram/raw/types/data_json.py +73 -0
  2167. pyromt-2.4.1/pyrogram/raw/types/dc_option.py +125 -0
  2168. pyromt-2.4.1/pyrogram/raw/types/default_history_ttl.py +71 -0
  2169. pyromt-2.4.1/pyrogram/raw/types/destroy_auth_key_fail.py +66 -0
  2170. pyromt-2.4.1/pyrogram/raw/types/destroy_auth_key_none.py +66 -0
  2171. pyromt-2.4.1/pyrogram/raw/types/destroy_auth_key_ok.py +66 -0
  2172. pyromt-2.4.1/pyrogram/raw/types/destroy_session_none.py +71 -0
  2173. pyromt-2.4.1/pyrogram/raw/types/destroy_session_ok.py +71 -0
  2174. pyromt-2.4.1/pyrogram/raw/types/dh_gen_fail.py +87 -0
  2175. pyromt-2.4.1/pyrogram/raw/types/dh_gen_ok.py +87 -0
  2176. pyromt-2.4.1/pyrogram/raw/types/dh_gen_retry.py +87 -0
  2177. pyromt-2.4.1/pyrogram/raw/types/dialog.py +175 -0
  2178. pyromt-2.4.1/pyrogram/raw/types/dialog_filter.py +168 -0
  2179. pyromt-2.4.1/pyrogram/raw/types/dialog_filter_chatlist.py +118 -0
  2180. pyromt-2.4.1/pyrogram/raw/types/dialog_filter_default.py +57 -0
  2181. pyromt-2.4.1/pyrogram/raw/types/dialog_filter_suggested.py +79 -0
  2182. pyromt-2.4.1/pyrogram/raw/types/dialog_folder.py +118 -0
  2183. pyromt-2.4.1/pyrogram/raw/types/dialog_peer.py +71 -0
  2184. pyromt-2.4.1/pyrogram/raw/types/dialog_peer_folder.py +71 -0
  2185. pyromt-2.4.1/pyrogram/raw/types/disallowed_gifts_settings.py +86 -0
  2186. pyromt-2.4.1/pyrogram/raw/types/document.py +152 -0
  2187. pyromt-2.4.1/pyrogram/raw/types/document_attribute_animated.py +57 -0
  2188. pyromt-2.4.1/pyrogram/raw/types/document_attribute_audio.py +97 -0
  2189. pyromt-2.4.1/pyrogram/raw/types/document_attribute_custom_emoji.py +84 -0
  2190. pyromt-2.4.1/pyrogram/raw/types/document_attribute_filename.py +62 -0
  2191. pyromt-2.4.1/pyrogram/raw/types/document_attribute_has_stickers.py +57 -0
  2192. pyromt-2.4.1/pyrogram/raw/types/document_attribute_image_size.py +70 -0
  2193. pyromt-2.4.1/pyrogram/raw/types/document_attribute_sticker.py +88 -0
  2194. pyromt-2.4.1/pyrogram/raw/types/document_attribute_video.py +125 -0
  2195. pyromt-2.4.1/pyrogram/raw/types/document_empty.py +74 -0
  2196. pyromt-2.4.1/pyrogram/raw/types/draft_message.py +133 -0
  2197. pyromt-2.4.1/pyrogram/raw/types/draft_message_empty.py +65 -0
  2198. pyromt-2.4.1/pyrogram/raw/types/email_verification_apple.py +62 -0
  2199. pyromt-2.4.1/pyrogram/raw/types/email_verification_code.py +62 -0
  2200. pyromt-2.4.1/pyrogram/raw/types/email_verification_google.py +62 -0
  2201. pyromt-2.4.1/pyrogram/raw/types/email_verify_purpose_login_change.py +57 -0
  2202. pyromt-2.4.1/pyrogram/raw/types/email_verify_purpose_login_setup.py +70 -0
  2203. pyromt-2.4.1/pyrogram/raw/types/email_verify_purpose_passport.py +57 -0
  2204. pyromt-2.4.1/pyrogram/raw/types/emoji_group.py +78 -0
  2205. pyromt-2.4.1/pyrogram/raw/types/emoji_group_greeting.py +78 -0
  2206. pyromt-2.4.1/pyrogram/raw/types/emoji_group_premium.py +70 -0
  2207. pyromt-2.4.1/pyrogram/raw/types/emoji_keyword.py +70 -0
  2208. pyromt-2.4.1/pyrogram/raw/types/emoji_keyword_deleted.py +70 -0
  2209. pyromt-2.4.1/pyrogram/raw/types/emoji_keywords_difference.py +96 -0
  2210. pyromt-2.4.1/pyrogram/raw/types/emoji_language.py +71 -0
  2211. pyromt-2.4.1/pyrogram/raw/types/emoji_list.py +83 -0
  2212. pyromt-2.4.1/pyrogram/raw/types/emoji_list_not_modified.py +70 -0
  2213. pyromt-2.4.1/pyrogram/raw/types/emoji_status.py +73 -0
  2214. pyromt-2.4.1/pyrogram/raw/types/emoji_status_collectible.py +137 -0
  2215. pyromt-2.4.1/pyrogram/raw/types/emoji_status_empty.py +57 -0
  2216. pyromt-2.4.1/pyrogram/raw/types/emoji_url.py +71 -0
  2217. pyromt-2.4.1/pyrogram/raw/types/encrypted_chat.py +120 -0
  2218. pyromt-2.4.1/pyrogram/raw/types/encrypted_chat_discarded.py +80 -0
  2219. pyromt-2.4.1/pyrogram/raw/types/encrypted_chat_empty.py +72 -0
  2220. pyromt-2.4.1/pyrogram/raw/types/encrypted_chat_requested.py +123 -0
  2221. pyromt-2.4.1/pyrogram/raw/types/encrypted_chat_waiting.py +104 -0
  2222. pyromt-2.4.1/pyrogram/raw/types/encrypted_file.py +103 -0
  2223. pyromt-2.4.1/pyrogram/raw/types/encrypted_file_empty.py +66 -0
  2224. pyromt-2.4.1/pyrogram/raw/types/encrypted_message.py +94 -0
  2225. pyromt-2.4.1/pyrogram/raw/types/encrypted_message_service.py +86 -0
  2226. pyromt-2.4.1/pyrogram/raw/types/error.py +70 -0
  2227. pyromt-2.4.1/pyrogram/raw/types/exported_chatlist_invite.py +90 -0
  2228. pyromt-2.4.1/pyrogram/raw/types/exported_contact_token.py +79 -0
  2229. pyromt-2.4.1/pyrogram/raw/types/exported_message_link.py +79 -0
  2230. pyromt-2.4.1/pyrogram/raw/types/exported_story_link.py +71 -0
  2231. pyromt-2.4.1/pyrogram/raw/types/fact_check.py +98 -0
  2232. pyromt-2.4.1/pyrogram/raw/types/file_hash.py +89 -0
  2233. pyromt-2.4.1/pyrogram/raw/types/folder.py +100 -0
  2234. pyromt-2.4.1/pyrogram/raw/types/folder_peer.py +70 -0
  2235. pyromt-2.4.1/pyrogram/raw/types/forum_topic.py +215 -0
  2236. pyromt-2.4.1/pyrogram/raw/types/forum_topic_deleted.py +62 -0
  2237. pyromt-2.4.1/pyrogram/raw/types/found_story.py +70 -0
  2238. pyromt-2.4.1/pyrogram/raw/types/fragment/__init__.py +15 -0
  2239. pyromt-2.4.1/pyrogram/raw/types/fragment/collectible_info.py +111 -0
  2240. pyromt-2.4.1/pyrogram/raw/types/game.py +114 -0
  2241. pyromt-2.4.1/pyrogram/raw/types/geo_point.py +89 -0
  2242. pyromt-2.4.1/pyrogram/raw/types/geo_point_address.py +91 -0
  2243. pyromt-2.4.1/pyrogram/raw/types/geo_point_empty.py +57 -0
  2244. pyromt-2.4.1/pyrogram/raw/types/global_privacy_settings.py +121 -0
  2245. pyromt-2.4.1/pyrogram/raw/types/group_call.py +247 -0
  2246. pyromt-2.4.1/pyrogram/raw/types/group_call_discarded.py +78 -0
  2247. pyromt-2.4.1/pyrogram/raw/types/group_call_donor.py +86 -0
  2248. pyromt-2.4.1/pyrogram/raw/types/group_call_message.py +103 -0
  2249. pyromt-2.4.1/pyrogram/raw/types/group_call_participant.py +205 -0
  2250. pyromt-2.4.1/pyrogram/raw/types/group_call_participant_video.py +87 -0
  2251. pyromt-2.4.1/pyrogram/raw/types/group_call_participant_video_source_group.py +70 -0
  2252. pyromt-2.4.1/pyrogram/raw/types/group_call_stream_channel.py +78 -0
  2253. pyromt-2.4.1/pyrogram/raw/types/help/__init__.py +46 -0
  2254. pyromt-2.4.1/pyrogram/raw/types/help/app_config.py +79 -0
  2255. pyromt-2.4.1/pyrogram/raw/types/help/app_config_not_modified.py +66 -0
  2256. pyromt-2.4.1/pyrogram/raw/types/help/app_update.py +132 -0
  2257. pyromt-2.4.1/pyrogram/raw/types/help/config_simple.py +78 -0
  2258. pyromt-2.4.1/pyrogram/raw/types/help/countries_list.py +79 -0
  2259. pyromt-2.4.1/pyrogram/raw/types/help/countries_list_not_modified.py +66 -0
  2260. pyromt-2.4.1/pyrogram/raw/types/help/country.py +95 -0
  2261. pyromt-2.4.1/pyrogram/raw/types/help/country_code.py +84 -0
  2262. pyromt-2.4.1/pyrogram/raw/types/help/deep_link_info.py +89 -0
  2263. pyromt-2.4.1/pyrogram/raw/types/help/deep_link_info_empty.py +66 -0
  2264. pyromt-2.4.1/pyrogram/raw/types/help/invite_text.py +71 -0
  2265. pyromt-2.4.1/pyrogram/raw/types/help/no_app_update.py +66 -0
  2266. pyromt-2.4.1/pyrogram/raw/types/help/passport_config.py +79 -0
  2267. pyromt-2.4.1/pyrogram/raw/types/help/passport_config_not_modified.py +66 -0
  2268. pyromt-2.4.1/pyrogram/raw/types/help/peer_color_option.py +108 -0
  2269. pyromt-2.4.1/pyrogram/raw/types/help/peer_color_profile_set.py +78 -0
  2270. pyromt-2.4.1/pyrogram/raw/types/help/peer_color_set.py +62 -0
  2271. pyromt-2.4.1/pyrogram/raw/types/help/peer_colors.py +80 -0
  2272. pyromt-2.4.1/pyrogram/raw/types/help/peer_colors_not_modified.py +67 -0
  2273. pyromt-2.4.1/pyrogram/raw/types/help/premium_promo.py +111 -0
  2274. pyromt-2.4.1/pyrogram/raw/types/help/promo_data.py +149 -0
  2275. pyromt-2.4.1/pyrogram/raw/types/help/promo_data_empty.py +71 -0
  2276. pyromt-2.4.1/pyrogram/raw/types/help/recent_me_urls.py +87 -0
  2277. pyromt-2.4.1/pyrogram/raw/types/help/support.py +79 -0
  2278. pyromt-2.4.1/pyrogram/raw/types/help/support_name.py +71 -0
  2279. pyromt-2.4.1/pyrogram/raw/types/help/terms_of_service.py +95 -0
  2280. pyromt-2.4.1/pyrogram/raw/types/help/terms_of_service_update.py +79 -0
  2281. pyromt-2.4.1/pyrogram/raw/types/help/terms_of_service_update_empty.py +71 -0
  2282. pyromt-2.4.1/pyrogram/raw/types/help/timezones_list.py +79 -0
  2283. pyromt-2.4.1/pyrogram/raw/types/help/timezones_list_not_modified.py +66 -0
  2284. pyromt-2.4.1/pyrogram/raw/types/help/user_info.py +96 -0
  2285. pyromt-2.4.1/pyrogram/raw/types/help/user_info_empty.py +67 -0
  2286. pyromt-2.4.1/pyrogram/raw/types/high_score.py +78 -0
  2287. pyromt-2.4.1/pyrogram/raw/types/http_wait.py +78 -0
  2288. pyromt-2.4.1/pyrogram/raw/types/imported_contact.py +70 -0
  2289. pyromt-2.4.1/pyrogram/raw/types/inline_bot_switch_pm.py +70 -0
  2290. pyromt-2.4.1/pyrogram/raw/types/inline_bot_web_view.py +70 -0
  2291. pyromt-2.4.1/pyrogram/raw/types/inline_query_peer_type_bot_pm.py +57 -0
  2292. pyromt-2.4.1/pyrogram/raw/types/inline_query_peer_type_broadcast.py +57 -0
  2293. pyromt-2.4.1/pyrogram/raw/types/inline_query_peer_type_chat.py +57 -0
  2294. pyromt-2.4.1/pyrogram/raw/types/inline_query_peer_type_megagroup.py +57 -0
  2295. pyromt-2.4.1/pyrogram/raw/types/inline_query_peer_type_pm.py +57 -0
  2296. pyromt-2.4.1/pyrogram/raw/types/inline_query_peer_type_same_bot_pm.py +57 -0
  2297. pyromt-2.4.1/pyrogram/raw/types/input_app_event.py +86 -0
  2298. pyromt-2.4.1/pyrogram/raw/types/input_bot_app_id.py +70 -0
  2299. pyromt-2.4.1/pyrogram/raw/types/input_bot_app_short_name.py +70 -0
  2300. pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_game.py +66 -0
  2301. pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_id.py +78 -0
  2302. pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_id64.py +86 -0
  2303. pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_media_auto.py +90 -0
  2304. pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_media_contact.py +98 -0
  2305. pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_media_geo.py +101 -0
  2306. pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_media_invoice.py +124 -0
  2307. pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_media_venue.py +114 -0
  2308. pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_media_web_page.py +116 -0
  2309. pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_message_text.py +96 -0
  2310. pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_result.py +127 -0
  2311. pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_result_document.py +106 -0
  2312. pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_result_game.py +78 -0
  2313. pyromt-2.4.1/pyrogram/raw/types/input_bot_inline_result_photo.py +86 -0
  2314. pyromt-2.4.1/pyrogram/raw/types/input_business_away_message.py +86 -0
  2315. pyromt-2.4.1/pyrogram/raw/types/input_business_bot_recipients.py +106 -0
  2316. pyromt-2.4.1/pyrogram/raw/types/input_business_chat_link.py +83 -0
  2317. pyromt-2.4.1/pyrogram/raw/types/input_business_greeting_message.py +78 -0
  2318. pyromt-2.4.1/pyrogram/raw/types/input_business_intro.py +82 -0
  2319. pyromt-2.4.1/pyrogram/raw/types/input_business_recipients.py +96 -0
  2320. pyromt-2.4.1/pyrogram/raw/types/input_channel.py +70 -0
  2321. pyromt-2.4.1/pyrogram/raw/types/input_channel_empty.py +57 -0
  2322. pyromt-2.4.1/pyrogram/raw/types/input_channel_from_message.py +78 -0
  2323. pyromt-2.4.1/pyrogram/raw/types/input_chat_photo.py +62 -0
  2324. pyromt-2.4.1/pyrogram/raw/types/input_chat_photo_empty.py +57 -0
  2325. pyromt-2.4.1/pyrogram/raw/types/input_chat_theme.py +62 -0
  2326. pyromt-2.4.1/pyrogram/raw/types/input_chat_theme_empty.py +57 -0
  2327. pyromt-2.4.1/pyrogram/raw/types/input_chat_theme_unique_gift.py +62 -0
  2328. pyromt-2.4.1/pyrogram/raw/types/input_chat_uploaded_photo.py +95 -0
  2329. pyromt-2.4.1/pyrogram/raw/types/input_chatlist_dialog_filter.py +62 -0
  2330. pyromt-2.4.1/pyrogram/raw/types/input_check_password_empty.py +57 -0
  2331. pyromt-2.4.1/pyrogram/raw/types/input_check_password_srp.py +78 -0
  2332. pyromt-2.4.1/pyrogram/raw/types/input_client_proxy.py +70 -0
  2333. pyromt-2.4.1/pyrogram/raw/types/input_collectible_phone.py +62 -0
  2334. pyromt-2.4.1/pyrogram/raw/types/input_collectible_username.py +62 -0
  2335. pyromt-2.4.1/pyrogram/raw/types/input_dialog_peer.py +62 -0
  2336. pyromt-2.4.1/pyrogram/raw/types/input_dialog_peer_folder.py +62 -0
  2337. pyromt-2.4.1/pyrogram/raw/types/input_document.py +78 -0
  2338. pyromt-2.4.1/pyrogram/raw/types/input_document_empty.py +57 -0
  2339. pyromt-2.4.1/pyrogram/raw/types/input_document_file_location.py +86 -0
  2340. pyromt-2.4.1/pyrogram/raw/types/input_emoji_status_collectible.py +73 -0
  2341. pyromt-2.4.1/pyrogram/raw/types/input_encrypted_chat.py +70 -0
  2342. pyromt-2.4.1/pyrogram/raw/types/input_encrypted_file.py +70 -0
  2343. pyromt-2.4.1/pyrogram/raw/types/input_encrypted_file_big_uploaded.py +78 -0
  2344. pyromt-2.4.1/pyrogram/raw/types/input_encrypted_file_empty.py +57 -0
  2345. pyromt-2.4.1/pyrogram/raw/types/input_encrypted_file_location.py +70 -0
  2346. pyromt-2.4.1/pyrogram/raw/types/input_encrypted_file_uploaded.py +86 -0
  2347. pyromt-2.4.1/pyrogram/raw/types/input_file.py +86 -0
  2348. pyromt-2.4.1/pyrogram/raw/types/input_file_big.py +78 -0
  2349. pyromt-2.4.1/pyrogram/raw/types/input_file_location.py +86 -0
  2350. pyromt-2.4.1/pyrogram/raw/types/input_file_story_document.py +62 -0
  2351. pyromt-2.4.1/pyrogram/raw/types/input_folder_peer.py +70 -0
  2352. pyromt-2.4.1/pyrogram/raw/types/input_game_id.py +70 -0
  2353. pyromt-2.4.1/pyrogram/raw/types/input_game_short_name.py +70 -0
  2354. pyromt-2.4.1/pyrogram/raw/types/input_geo_point.py +81 -0
  2355. pyromt-2.4.1/pyrogram/raw/types/input_geo_point_empty.py +57 -0
  2356. pyromt-2.4.1/pyrogram/raw/types/input_group_call.py +70 -0
  2357. pyromt-2.4.1/pyrogram/raw/types/input_group_call_invite_message.py +62 -0
  2358. pyromt-2.4.1/pyrogram/raw/types/input_group_call_slug.py +62 -0
  2359. pyromt-2.4.1/pyrogram/raw/types/input_group_call_stream.py +98 -0
  2360. pyromt-2.4.1/pyrogram/raw/types/input_invoice_business_bot_transfer_stars.py +70 -0
  2361. pyromt-2.4.1/pyrogram/raw/types/input_invoice_chat_invite_subscription.py +62 -0
  2362. pyromt-2.4.1/pyrogram/raw/types/input_invoice_message.py +70 -0
  2363. pyromt-2.4.1/pyrogram/raw/types/input_invoice_premium_auth_code.py +62 -0
  2364. pyromt-2.4.1/pyrogram/raw/types/input_invoice_premium_gift_code.py +70 -0
  2365. pyromt-2.4.1/pyrogram/raw/types/input_invoice_premium_gift_stars.py +82 -0
  2366. pyromt-2.4.1/pyrogram/raw/types/input_invoice_slug.py +62 -0
  2367. pyromt-2.4.1/pyrogram/raw/types/input_invoice_star_gift.py +94 -0
  2368. pyromt-2.4.1/pyrogram/raw/types/input_invoice_star_gift_auction_bid.py +104 -0
  2369. pyromt-2.4.1/pyrogram/raw/types/input_invoice_star_gift_drop_original_details.py +62 -0
  2370. pyromt-2.4.1/pyrogram/raw/types/input_invoice_star_gift_prepaid_upgrade.py +70 -0
  2371. pyromt-2.4.1/pyrogram/raw/types/input_invoice_star_gift_resale.py +78 -0
  2372. pyromt-2.4.1/pyrogram/raw/types/input_invoice_star_gift_transfer.py +70 -0
  2373. pyromt-2.4.1/pyrogram/raw/types/input_invoice_star_gift_upgrade.py +70 -0
  2374. pyromt-2.4.1/pyrogram/raw/types/input_invoice_stars.py +62 -0
  2375. pyromt-2.4.1/pyrogram/raw/types/input_keyboard_button_request_peer.py +116 -0
  2376. pyromt-2.4.1/pyrogram/raw/types/input_keyboard_button_url_auth.py +105 -0
  2377. pyromt-2.4.1/pyrogram/raw/types/input_keyboard_button_user_profile.py +82 -0
  2378. pyromt-2.4.1/pyrogram/raw/types/input_media_area_channel_post.py +78 -0
  2379. pyromt-2.4.1/pyrogram/raw/types/input_media_area_venue.py +78 -0
  2380. pyromt-2.4.1/pyrogram/raw/types/input_media_contact.py +86 -0
  2381. pyromt-2.4.1/pyrogram/raw/types/input_media_dice.py +62 -0
  2382. pyromt-2.4.1/pyrogram/raw/types/input_media_document.py +107 -0
  2383. pyromt-2.4.1/pyrogram/raw/types/input_media_document_external.py +98 -0
  2384. pyromt-2.4.1/pyrogram/raw/types/input_media_empty.py +57 -0
  2385. pyromt-2.4.1/pyrogram/raw/types/input_media_game.py +62 -0
  2386. pyromt-2.4.1/pyrogram/raw/types/input_media_geo_live.py +97 -0
  2387. pyromt-2.4.1/pyrogram/raw/types/input_media_geo_point.py +62 -0
  2388. pyromt-2.4.1/pyrogram/raw/types/input_media_invoice.py +134 -0
  2389. pyromt-2.4.1/pyrogram/raw/types/input_media_paid_media.py +81 -0
  2390. pyromt-2.4.1/pyrogram/raw/types/input_media_photo.py +79 -0
  2391. pyromt-2.4.1/pyrogram/raw/types/input_media_photo_external.py +79 -0
  2392. pyromt-2.4.1/pyrogram/raw/types/input_media_poll.py +93 -0
  2393. pyromt-2.4.1/pyrogram/raw/types/input_media_stake_dice.py +78 -0
  2394. pyromt-2.4.1/pyrogram/raw/types/input_media_story.py +70 -0
  2395. pyromt-2.4.1/pyrogram/raw/types/input_media_todo.py +62 -0
  2396. pyromt-2.4.1/pyrogram/raw/types/input_media_uploaded_document.py +146 -0
  2397. pyromt-2.4.1/pyrogram/raw/types/input_media_uploaded_photo.py +89 -0
  2398. pyromt-2.4.1/pyrogram/raw/types/input_media_venue.py +102 -0
  2399. pyromt-2.4.1/pyrogram/raw/types/input_media_web_page.py +82 -0
  2400. pyromt-2.4.1/pyrogram/raw/types/input_message_callback_query.py +70 -0
  2401. pyromt-2.4.1/pyrogram/raw/types/input_message_entity_mention_name.py +78 -0
  2402. pyromt-2.4.1/pyrogram/raw/types/input_message_id.py +62 -0
  2403. pyromt-2.4.1/pyrogram/raw/types/input_message_pinned.py +57 -0
  2404. pyromt-2.4.1/pyrogram/raw/types/input_message_reply_to.py +62 -0
  2405. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_chat_photos.py +57 -0
  2406. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_contacts.py +57 -0
  2407. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_document.py +57 -0
  2408. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_empty.py +57 -0
  2409. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_geo.py +57 -0
  2410. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_gif.py +57 -0
  2411. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_music.py +57 -0
  2412. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_my_mentions.py +57 -0
  2413. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_phone_calls.py +62 -0
  2414. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_photo_video.py +57 -0
  2415. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_photos.py +57 -0
  2416. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_pinned.py +57 -0
  2417. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_round_video.py +57 -0
  2418. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_round_voice.py +57 -0
  2419. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_url.py +57 -0
  2420. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_video.py +57 -0
  2421. pyromt-2.4.1/pyrogram/raw/types/input_messages_filter_voice.py +57 -0
  2422. pyromt-2.4.1/pyrogram/raw/types/input_notify_broadcasts.py +57 -0
  2423. pyromt-2.4.1/pyrogram/raw/types/input_notify_chats.py +57 -0
  2424. pyromt-2.4.1/pyrogram/raw/types/input_notify_forum_topic.py +70 -0
  2425. pyromt-2.4.1/pyrogram/raw/types/input_notify_peer.py +62 -0
  2426. pyromt-2.4.1/pyrogram/raw/types/input_notify_users.py +57 -0
  2427. pyromt-2.4.1/pyrogram/raw/types/input_passkey_credential_firebase_pnv.py +62 -0
  2428. pyromt-2.4.1/pyrogram/raw/types/input_passkey_credential_public_key.py +78 -0
  2429. pyromt-2.4.1/pyrogram/raw/types/input_passkey_response_login.py +86 -0
  2430. pyromt-2.4.1/pyrogram/raw/types/input_passkey_response_register.py +70 -0
  2431. pyromt-2.4.1/pyrogram/raw/types/input_payment_credentials.py +70 -0
  2432. pyromt-2.4.1/pyrogram/raw/types/input_payment_credentials_apple_pay.py +62 -0
  2433. pyromt-2.4.1/pyrogram/raw/types/input_payment_credentials_google_pay.py +62 -0
  2434. pyromt-2.4.1/pyrogram/raw/types/input_payment_credentials_saved.py +70 -0
  2435. pyromt-2.4.1/pyrogram/raw/types/input_peer_channel.py +70 -0
  2436. pyromt-2.4.1/pyrogram/raw/types/input_peer_channel_from_message.py +78 -0
  2437. pyromt-2.4.1/pyrogram/raw/types/input_peer_chat.py +62 -0
  2438. pyromt-2.4.1/pyrogram/raw/types/input_peer_color_collectible.py +62 -0
  2439. pyromt-2.4.1/pyrogram/raw/types/input_peer_empty.py +57 -0
  2440. pyromt-2.4.1/pyrogram/raw/types/input_peer_notify_settings.py +121 -0
  2441. pyromt-2.4.1/pyrogram/raw/types/input_peer_photo_file_location.py +78 -0
  2442. pyromt-2.4.1/pyrogram/raw/types/input_peer_self.py +57 -0
  2443. pyromt-2.4.1/pyrogram/raw/types/input_peer_user.py +70 -0
  2444. pyromt-2.4.1/pyrogram/raw/types/input_peer_user_from_message.py +78 -0
  2445. pyromt-2.4.1/pyrogram/raw/types/input_phone_call.py +70 -0
  2446. pyromt-2.4.1/pyrogram/raw/types/input_phone_contact.py +98 -0
  2447. pyromt-2.4.1/pyrogram/raw/types/input_photo.py +78 -0
  2448. pyromt-2.4.1/pyrogram/raw/types/input_photo_empty.py +57 -0
  2449. pyromt-2.4.1/pyrogram/raw/types/input_photo_file_location.py +86 -0
  2450. pyromt-2.4.1/pyrogram/raw/types/input_photo_legacy_file_location.py +102 -0
  2451. pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_about.py +57 -0
  2452. pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_added_by_phone.py +57 -0
  2453. pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_birthday.py +57 -0
  2454. pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_chat_invite.py +57 -0
  2455. pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_forwards.py +57 -0
  2456. pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_no_paid_messages.py +57 -0
  2457. pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_phone_call.py +57 -0
  2458. pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_phone_number.py +57 -0
  2459. pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_phone_p2_p.py +57 -0
  2460. pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_profile_photo.py +57 -0
  2461. pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_saved_music.py +57 -0
  2462. pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_star_gifts_auto_save.py +57 -0
  2463. pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_status_timestamp.py +57 -0
  2464. pyromt-2.4.1/pyrogram/raw/types/input_privacy_key_voice_messages.py +57 -0
  2465. pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_allow_all.py +57 -0
  2466. pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_allow_bots.py +57 -0
  2467. pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_allow_chat_participants.py +62 -0
  2468. pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_allow_close_friends.py +57 -0
  2469. pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_allow_contacts.py +57 -0
  2470. pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_allow_premium.py +57 -0
  2471. pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_allow_users.py +62 -0
  2472. pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_disallow_all.py +57 -0
  2473. pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_disallow_bots.py +57 -0
  2474. pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_disallow_chat_participants.py +62 -0
  2475. pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_disallow_contacts.py +57 -0
  2476. pyromt-2.4.1/pyrogram/raw/types/input_privacy_value_disallow_users.py +62 -0
  2477. pyromt-2.4.1/pyrogram/raw/types/input_quick_reply_shortcut.py +62 -0
  2478. pyromt-2.4.1/pyrogram/raw/types/input_quick_reply_shortcut_id.py +62 -0
  2479. pyromt-2.4.1/pyrogram/raw/types/input_reply_to_message.py +130 -0
  2480. pyromt-2.4.1/pyrogram/raw/types/input_reply_to_mono_forum.py +62 -0
  2481. pyromt-2.4.1/pyrogram/raw/types/input_reply_to_story.py +70 -0
  2482. pyromt-2.4.1/pyrogram/raw/types/input_report_reason_child_abuse.py +57 -0
  2483. pyromt-2.4.1/pyrogram/raw/types/input_report_reason_copyright.py +57 -0
  2484. pyromt-2.4.1/pyrogram/raw/types/input_report_reason_fake.py +57 -0
  2485. pyromt-2.4.1/pyrogram/raw/types/input_report_reason_geo_irrelevant.py +57 -0
  2486. pyromt-2.4.1/pyrogram/raw/types/input_report_reason_illegal_drugs.py +57 -0
  2487. pyromt-2.4.1/pyrogram/raw/types/input_report_reason_other.py +57 -0
  2488. pyromt-2.4.1/pyrogram/raw/types/input_report_reason_personal_details.py +57 -0
  2489. pyromt-2.4.1/pyrogram/raw/types/input_report_reason_pornography.py +57 -0
  2490. pyromt-2.4.1/pyrogram/raw/types/input_report_reason_spam.py +57 -0
  2491. pyromt-2.4.1/pyrogram/raw/types/input_report_reason_violence.py +57 -0
  2492. pyromt-2.4.1/pyrogram/raw/types/input_saved_star_gift_chat.py +70 -0
  2493. pyromt-2.4.1/pyrogram/raw/types/input_saved_star_gift_slug.py +62 -0
  2494. pyromt-2.4.1/pyrogram/raw/types/input_saved_star_gift_user.py +62 -0
  2495. pyromt-2.4.1/pyrogram/raw/types/input_secure_file.py +70 -0
  2496. pyromt-2.4.1/pyrogram/raw/types/input_secure_file_location.py +70 -0
  2497. pyromt-2.4.1/pyrogram/raw/types/input_secure_file_uploaded.py +94 -0
  2498. pyromt-2.4.1/pyrogram/raw/types/input_secure_value.py +134 -0
  2499. pyromt-2.4.1/pyrogram/raw/types/input_single_media.py +90 -0
  2500. pyromt-2.4.1/pyrogram/raw/types/input_star_gift_auction.py +62 -0
  2501. pyromt-2.4.1/pyrogram/raw/types/input_star_gift_auction_slug.py +62 -0
  2502. pyromt-2.4.1/pyrogram/raw/types/input_stars_transaction.py +70 -0
  2503. pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_animated_emoji.py +57 -0
  2504. pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_animated_emoji_animations.py +57 -0
  2505. pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_dice.py +62 -0
  2506. pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_emoji_channel_default_statuses.py +57 -0
  2507. pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_emoji_default_statuses.py +57 -0
  2508. pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_emoji_default_topic_icons.py +57 -0
  2509. pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_emoji_generic_animations.py +57 -0
  2510. pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_empty.py +57 -0
  2511. pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_id.py +70 -0
  2512. pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_item.py +91 -0
  2513. pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_premium_gifts.py +57 -0
  2514. pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_short_name.py +62 -0
  2515. pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_thumb.py +70 -0
  2516. pyromt-2.4.1/pyrogram/raw/types/input_sticker_set_ton_gifts.py +57 -0
  2517. pyromt-2.4.1/pyrogram/raw/types/input_stickered_media_document.py +62 -0
  2518. pyromt-2.4.1/pyrogram/raw/types/input_stickered_media_photo.py +62 -0
  2519. pyromt-2.4.1/pyrogram/raw/types/input_store_payment_auth_code.py +94 -0
  2520. pyromt-2.4.1/pyrogram/raw/types/input_store_payment_gift_premium.py +78 -0
  2521. pyromt-2.4.1/pyrogram/raw/types/input_store_payment_premium_gift_code.py +100 -0
  2522. pyromt-2.4.1/pyrogram/raw/types/input_store_payment_premium_giveaway.py +137 -0
  2523. pyromt-2.4.1/pyrogram/raw/types/input_store_payment_premium_subscription.py +68 -0
  2524. pyromt-2.4.1/pyrogram/raw/types/input_store_payment_stars_gift.py +86 -0
  2525. pyromt-2.4.1/pyrogram/raw/types/input_store_payment_stars_giveaway.py +153 -0
  2526. pyromt-2.4.1/pyrogram/raw/types/input_store_payment_stars_topup.py +90 -0
  2527. pyromt-2.4.1/pyrogram/raw/types/input_takeout_file_location.py +57 -0
  2528. pyromt-2.4.1/pyrogram/raw/types/input_theme.py +70 -0
  2529. pyromt-2.4.1/pyrogram/raw/types/input_theme_settings.py +117 -0
  2530. pyromt-2.4.1/pyrogram/raw/types/input_theme_slug.py +62 -0
  2531. pyromt-2.4.1/pyrogram/raw/types/input_user.py +70 -0
  2532. pyromt-2.4.1/pyrogram/raw/types/input_user_empty.py +57 -0
  2533. pyromt-2.4.1/pyrogram/raw/types/input_user_from_message.py +78 -0
  2534. pyromt-2.4.1/pyrogram/raw/types/input_user_self.py +57 -0
  2535. pyromt-2.4.1/pyrogram/raw/types/input_wall_paper.py +70 -0
  2536. pyromt-2.4.1/pyrogram/raw/types/input_wall_paper_no_file.py +62 -0
  2537. pyromt-2.4.1/pyrogram/raw/types/input_wall_paper_slug.py +62 -0
  2538. pyromt-2.4.1/pyrogram/raw/types/input_web_document.py +86 -0
  2539. pyromt-2.4.1/pyrogram/raw/types/input_web_file_audio_album_thumb_location.py +90 -0
  2540. pyromt-2.4.1/pyrogram/raw/types/input_web_file_geo_point_location.py +102 -0
  2541. pyromt-2.4.1/pyrogram/raw/types/input_web_file_location.py +70 -0
  2542. pyromt-2.4.1/pyrogram/raw/types/invoice.py +163 -0
  2543. pyromt-2.4.1/pyrogram/raw/types/ip_port.py +70 -0
  2544. pyromt-2.4.1/pyrogram/raw/types/ip_port_secret.py +78 -0
  2545. pyromt-2.4.1/pyrogram/raw/types/json_array.py +62 -0
  2546. pyromt-2.4.1/pyrogram/raw/types/json_bool.py +62 -0
  2547. pyromt-2.4.1/pyrogram/raw/types/json_null.py +57 -0
  2548. pyromt-2.4.1/pyrogram/raw/types/json_number.py +62 -0
  2549. pyromt-2.4.1/pyrogram/raw/types/json_object.py +62 -0
  2550. pyromt-2.4.1/pyrogram/raw/types/json_object_value.py +70 -0
  2551. pyromt-2.4.1/pyrogram/raw/types/json_string.py +62 -0
  2552. pyromt-2.4.1/pyrogram/raw/types/keyboard_button.py +74 -0
  2553. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_buy.py +74 -0
  2554. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_callback.py +88 -0
  2555. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_copy.py +82 -0
  2556. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_game.py +74 -0
  2557. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_request_geo_location.py +74 -0
  2558. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_request_peer.py +98 -0
  2559. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_request_phone.py +74 -0
  2560. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_request_poll.py +83 -0
  2561. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_row.py +62 -0
  2562. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_simple_web_view.py +82 -0
  2563. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_style.py +83 -0
  2564. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_switch_inline.py +98 -0
  2565. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_url.py +82 -0
  2566. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_url_auth.py +99 -0
  2567. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_user_profile.py +82 -0
  2568. pyromt-2.4.1/pyrogram/raw/types/keyboard_button_web_view.py +82 -0
  2569. pyromt-2.4.1/pyrogram/raw/types/labeled_price.py +70 -0
  2570. pyromt-2.4.1/pyrogram/raw/types/lang_pack_difference.py +96 -0
  2571. pyromt-2.4.1/pyrogram/raw/types/lang_pack_language.py +149 -0
  2572. pyromt-2.4.1/pyrogram/raw/types/lang_pack_string.py +79 -0
  2573. pyromt-2.4.1/pyrogram/raw/types/lang_pack_string_deleted.py +71 -0
  2574. pyromt-2.4.1/pyrogram/raw/types/lang_pack_string_pluralized.py +126 -0
  2575. pyromt-2.4.1/pyrogram/raw/types/mask_coords.py +86 -0
  2576. pyromt-2.4.1/pyrogram/raw/types/media_area_channel_post.py +78 -0
  2577. pyromt-2.4.1/pyrogram/raw/types/media_area_coordinates.py +105 -0
  2578. pyromt-2.4.1/pyrogram/raw/types/media_area_geo_point.py +82 -0
  2579. pyromt-2.4.1/pyrogram/raw/types/media_area_star_gift.py +70 -0
  2580. pyromt-2.4.1/pyrogram/raw/types/media_area_suggested_reaction.py +84 -0
  2581. pyromt-2.4.1/pyrogram/raw/types/media_area_url.py +70 -0
  2582. pyromt-2.4.1/pyrogram/raw/types/media_area_venue.py +110 -0
  2583. pyromt-2.4.1/pyrogram/raw/types/media_area_weather.py +86 -0
  2584. pyromt-2.4.1/pyrogram/raw/types/message.py +437 -0
  2585. pyromt-2.4.1/pyrogram/raw/types/message_action_boost_apply.py +62 -0
  2586. pyromt-2.4.1/pyrogram/raw/types/message_action_bot_allowed.py +87 -0
  2587. pyromt-2.4.1/pyrogram/raw/types/message_action_change_creator.py +62 -0
  2588. pyromt-2.4.1/pyrogram/raw/types/message_action_channel_create.py +62 -0
  2589. pyromt-2.4.1/pyrogram/raw/types/message_action_channel_migrate_from.py +70 -0
  2590. pyromt-2.4.1/pyrogram/raw/types/message_action_chat_add_user.py +62 -0
  2591. pyromt-2.4.1/pyrogram/raw/types/message_action_chat_create.py +70 -0
  2592. pyromt-2.4.1/pyrogram/raw/types/message_action_chat_delete_photo.py +57 -0
  2593. pyromt-2.4.1/pyrogram/raw/types/message_action_chat_delete_user.py +62 -0
  2594. pyromt-2.4.1/pyrogram/raw/types/message_action_chat_edit_photo.py +62 -0
  2595. pyromt-2.4.1/pyrogram/raw/types/message_action_chat_edit_title.py +62 -0
  2596. pyromt-2.4.1/pyrogram/raw/types/message_action_chat_joined_by_link.py +62 -0
  2597. pyromt-2.4.1/pyrogram/raw/types/message_action_chat_joined_by_request.py +57 -0
  2598. pyromt-2.4.1/pyrogram/raw/types/message_action_chat_migrate_to.py +62 -0
  2599. pyromt-2.4.1/pyrogram/raw/types/message_action_conference_call.py +101 -0
  2600. pyromt-2.4.1/pyrogram/raw/types/message_action_contact_sign_up.py +57 -0
  2601. pyromt-2.4.1/pyrogram/raw/types/message_action_custom_action.py +62 -0
  2602. pyromt-2.4.1/pyrogram/raw/types/message_action_empty.py +57 -0
  2603. pyromt-2.4.1/pyrogram/raw/types/message_action_game_score.py +70 -0
  2604. pyromt-2.4.1/pyrogram/raw/types/message_action_geo_proximity_reached.py +78 -0
  2605. pyromt-2.4.1/pyrogram/raw/types/message_action_gift_code.py +140 -0
  2606. pyromt-2.4.1/pyrogram/raw/types/message_action_gift_premium.py +108 -0
  2607. pyromt-2.4.1/pyrogram/raw/types/message_action_gift_stars.py +107 -0
  2608. pyromt-2.4.1/pyrogram/raw/types/message_action_gift_ton.py +97 -0
  2609. pyromt-2.4.1/pyrogram/raw/types/message_action_giveaway_launch.py +65 -0
  2610. pyromt-2.4.1/pyrogram/raw/types/message_action_giveaway_results.py +78 -0
  2611. pyromt-2.4.1/pyrogram/raw/types/message_action_group_call.py +73 -0
  2612. pyromt-2.4.1/pyrogram/raw/types/message_action_group_call_scheduled.py +70 -0
  2613. pyromt-2.4.1/pyrogram/raw/types/message_action_history_clear.py +57 -0
  2614. pyromt-2.4.1/pyrogram/raw/types/message_action_invite_to_group_call.py +70 -0
  2615. pyromt-2.4.1/pyrogram/raw/types/message_action_new_creator_pending.py +62 -0
  2616. pyromt-2.4.1/pyrogram/raw/types/message_action_paid_messages_price.py +70 -0
  2617. pyromt-2.4.1/pyrogram/raw/types/message_action_paid_messages_refunded.py +70 -0
  2618. pyromt-2.4.1/pyrogram/raw/types/message_action_payment_refunded.py +97 -0
  2619. pyromt-2.4.1/pyrogram/raw/types/message_action_payment_sent.py +102 -0
  2620. pyromt-2.4.1/pyrogram/raw/types/message_action_payment_sent_me.py +128 -0
  2621. pyromt-2.4.1/pyrogram/raw/types/message_action_phone_call.py +89 -0
  2622. pyromt-2.4.1/pyrogram/raw/types/message_action_pin_message.py +57 -0
  2623. pyromt-2.4.1/pyrogram/raw/types/message_action_prize_stars.py +94 -0
  2624. pyromt-2.4.1/pyrogram/raw/types/message_action_requested_peer.py +70 -0
  2625. pyromt-2.4.1/pyrogram/raw/types/message_action_requested_peer_sent_me.py +70 -0
  2626. pyromt-2.4.1/pyrogram/raw/types/message_action_screenshot_taken.py +57 -0
  2627. pyromt-2.4.1/pyrogram/raw/types/message_action_secure_values_sent.py +62 -0
  2628. pyromt-2.4.1/pyrogram/raw/types/message_action_secure_values_sent_me.py +70 -0
  2629. pyromt-2.4.1/pyrogram/raw/types/message_action_set_chat_theme.py +62 -0
  2630. pyromt-2.4.1/pyrogram/raw/types/message_action_set_chat_wall_paper.py +76 -0
  2631. pyromt-2.4.1/pyrogram/raw/types/message_action_set_messages_ttl.py +73 -0
  2632. pyromt-2.4.1/pyrogram/raw/types/message_action_star_gift.py +221 -0
  2633. pyromt-2.4.1/pyrogram/raw/types/message_action_star_gift_purchase_offer.py +92 -0
  2634. pyromt-2.4.1/pyrogram/raw/types/message_action_star_gift_purchase_offer_declined.py +78 -0
  2635. pyromt-2.4.1/pyrogram/raw/types/message_action_star_gift_unique.py +205 -0
  2636. pyromt-2.4.1/pyrogram/raw/types/message_action_suggest_birthday.py +62 -0
  2637. pyromt-2.4.1/pyrogram/raw/types/message_action_suggest_profile_photo.py +62 -0
  2638. pyromt-2.4.1/pyrogram/raw/types/message_action_suggested_post_approval.py +96 -0
  2639. pyromt-2.4.1/pyrogram/raw/types/message_action_suggested_post_refund.py +62 -0
  2640. pyromt-2.4.1/pyrogram/raw/types/message_action_suggested_post_success.py +62 -0
  2641. pyromt-2.4.1/pyrogram/raw/types/message_action_todo_append_tasks.py +62 -0
  2642. pyromt-2.4.1/pyrogram/raw/types/message_action_todo_completions.py +70 -0
  2643. pyromt-2.4.1/pyrogram/raw/types/message_action_topic_create.py +87 -0
  2644. pyromt-2.4.1/pyrogram/raw/types/message_action_topic_edit.py +92 -0
  2645. pyromt-2.4.1/pyrogram/raw/types/message_action_web_view_data_sent.py +62 -0
  2646. pyromt-2.4.1/pyrogram/raw/types/message_action_web_view_data_sent_me.py +70 -0
  2647. pyromt-2.4.1/pyrogram/raw/types/message_empty.py +74 -0
  2648. pyromt-2.4.1/pyrogram/raw/types/message_entity_bank_card.py +70 -0
  2649. pyromt-2.4.1/pyrogram/raw/types/message_entity_blockquote.py +78 -0
  2650. pyromt-2.4.1/pyrogram/raw/types/message_entity_bold.py +70 -0
  2651. pyromt-2.4.1/pyrogram/raw/types/message_entity_bot_command.py +70 -0
  2652. pyromt-2.4.1/pyrogram/raw/types/message_entity_cashtag.py +70 -0
  2653. pyromt-2.4.1/pyrogram/raw/types/message_entity_code.py +70 -0
  2654. pyromt-2.4.1/pyrogram/raw/types/message_entity_custom_emoji.py +78 -0
  2655. pyromt-2.4.1/pyrogram/raw/types/message_entity_email.py +70 -0
  2656. pyromt-2.4.1/pyrogram/raw/types/message_entity_hashtag.py +70 -0
  2657. pyromt-2.4.1/pyrogram/raw/types/message_entity_italic.py +70 -0
  2658. pyromt-2.4.1/pyrogram/raw/types/message_entity_mention.py +70 -0
  2659. pyromt-2.4.1/pyrogram/raw/types/message_entity_mention_name.py +78 -0
  2660. pyromt-2.4.1/pyrogram/raw/types/message_entity_phone.py +70 -0
  2661. pyromt-2.4.1/pyrogram/raw/types/message_entity_pre.py +78 -0
  2662. pyromt-2.4.1/pyrogram/raw/types/message_entity_spoiler.py +70 -0
  2663. pyromt-2.4.1/pyrogram/raw/types/message_entity_strike.py +70 -0
  2664. pyromt-2.4.1/pyrogram/raw/types/message_entity_text_url.py +78 -0
  2665. pyromt-2.4.1/pyrogram/raw/types/message_entity_underline.py +70 -0
  2666. pyromt-2.4.1/pyrogram/raw/types/message_entity_unknown.py +70 -0
  2667. pyromt-2.4.1/pyrogram/raw/types/message_entity_url.py +70 -0
  2668. pyromt-2.4.1/pyrogram/raw/types/message_extended_media.py +62 -0
  2669. pyromt-2.4.1/pyrogram/raw/types/message_extended_media_preview.py +93 -0
  2670. pyromt-2.4.1/pyrogram/raw/types/message_fwd_header.py +169 -0
  2671. pyromt-2.4.1/pyrogram/raw/types/message_media_contact.py +104 -0
  2672. pyromt-2.4.1/pyrogram/raw/types/message_media_dice.py +92 -0
  2673. pyromt-2.4.1/pyrogram/raw/types/message_media_document.py +144 -0
  2674. pyromt-2.4.1/pyrogram/raw/types/message_media_empty.py +67 -0
  2675. pyromt-2.4.1/pyrogram/raw/types/message_media_game.py +72 -0
  2676. pyromt-2.4.1/pyrogram/raw/types/message_media_geo.py +72 -0
  2677. pyromt-2.4.1/pyrogram/raw/types/message_media_geo_live.py +100 -0
  2678. pyromt-2.4.1/pyrogram/raw/types/message_media_giveaway.py +139 -0
  2679. pyromt-2.4.1/pyrogram/raw/types/message_media_giveaway_results.py +162 -0
  2680. pyromt-2.4.1/pyrogram/raw/types/message_media_invoice.py +147 -0
  2681. pyromt-2.4.1/pyrogram/raw/types/message_media_paid_media.py +80 -0
  2682. pyromt-2.4.1/pyrogram/raw/types/message_media_photo.py +91 -0
  2683. pyromt-2.4.1/pyrogram/raw/types/message_media_poll.py +80 -0
  2684. pyromt-2.4.1/pyrogram/raw/types/message_media_story.py +98 -0
  2685. pyromt-2.4.1/pyrogram/raw/types/message_media_to_do.py +84 -0
  2686. pyromt-2.4.1/pyrogram/raw/types/message_media_unsupported.py +67 -0
  2687. pyromt-2.4.1/pyrogram/raw/types/message_media_venue.py +112 -0
  2688. pyromt-2.4.1/pyrogram/raw/types/message_media_video_stream.py +80 -0
  2689. pyromt-2.4.1/pyrogram/raw/types/message_media_web_page.py +98 -0
  2690. pyromt-2.4.1/pyrogram/raw/types/message_peer_reaction.py +98 -0
  2691. pyromt-2.4.1/pyrogram/raw/types/message_peer_vote.py +78 -0
  2692. pyromt-2.4.1/pyrogram/raw/types/message_peer_vote_input_option.py +70 -0
  2693. pyromt-2.4.1/pyrogram/raw/types/message_peer_vote_multiple.py +78 -0
  2694. pyromt-2.4.1/pyrogram/raw/types/message_range.py +79 -0
  2695. pyromt-2.4.1/pyrogram/raw/types/message_reactions.py +102 -0
  2696. pyromt-2.4.1/pyrogram/raw/types/message_reactor.py +92 -0
  2697. pyromt-2.4.1/pyrogram/raw/types/message_replies.py +115 -0
  2698. pyromt-2.4.1/pyrogram/raw/types/message_reply_header.py +159 -0
  2699. pyromt-2.4.1/pyrogram/raw/types/message_reply_story_header.py +70 -0
  2700. pyromt-2.4.1/pyrogram/raw/types/message_report_option.py +70 -0
  2701. pyromt-2.4.1/pyrogram/raw/types/message_service.py +179 -0
  2702. pyromt-2.4.1/pyrogram/raw/types/message_views.py +84 -0
  2703. pyromt-2.4.1/pyrogram/raw/types/messages/__init__.py +105 -0
  2704. pyromt-2.4.1/pyrogram/raw/types/messages/affected_found_messages.py +95 -0
  2705. pyromt-2.4.1/pyrogram/raw/types/messages/affected_history.py +93 -0
  2706. pyromt-2.4.1/pyrogram/raw/types/messages/affected_messages.py +82 -0
  2707. pyromt-2.4.1/pyrogram/raw/types/messages/all_stickers.py +81 -0
  2708. pyromt-2.4.1/pyrogram/raw/types/messages/all_stickers_not_modified.py +68 -0
  2709. pyromt-2.4.1/pyrogram/raw/types/messages/archived_stickers.py +79 -0
  2710. pyromt-2.4.1/pyrogram/raw/types/messages/available_effects.py +87 -0
  2711. pyromt-2.4.1/pyrogram/raw/types/messages/available_effects_not_modified.py +66 -0
  2712. pyromt-2.4.1/pyrogram/raw/types/messages/available_reactions.py +79 -0
  2713. pyromt-2.4.1/pyrogram/raw/types/messages/available_reactions_not_modified.py +66 -0
  2714. pyromt-2.4.1/pyrogram/raw/types/messages/bot_app.py +91 -0
  2715. pyromt-2.4.1/pyrogram/raw/types/messages/bot_callback_answer.py +109 -0
  2716. pyromt-2.4.1/pyrogram/raw/types/messages/bot_prepared_inline_message.py +79 -0
  2717. pyromt-2.4.1/pyrogram/raw/types/messages/bot_results.py +132 -0
  2718. pyromt-2.4.1/pyrogram/raw/types/messages/channel_messages.py +142 -0
  2719. pyromt-2.4.1/pyrogram/raw/types/messages/chat_admins_with_invites.py +79 -0
  2720. pyromt-2.4.1/pyrogram/raw/types/messages/chat_full.py +88 -0
  2721. pyromt-2.4.1/pyrogram/raw/types/messages/chat_invite_importers.py +87 -0
  2722. pyromt-2.4.1/pyrogram/raw/types/messages/chats.py +78 -0
  2723. pyromt-2.4.1/pyrogram/raw/types/messages/chats_slice.py +86 -0
  2724. pyromt-2.4.1/pyrogram/raw/types/messages/checked_history_import_peer.py +71 -0
  2725. pyromt-2.4.1/pyrogram/raw/types/messages/dh_config.py +95 -0
  2726. pyromt-2.4.1/pyrogram/raw/types/messages/dh_config_not_modified.py +71 -0
  2727. pyromt-2.4.1/pyrogram/raw/types/messages/dialog_filters.py +79 -0
  2728. pyromt-2.4.1/pyrogram/raw/types/messages/dialogs.py +95 -0
  2729. pyromt-2.4.1/pyrogram/raw/types/messages/dialogs_not_modified.py +71 -0
  2730. pyromt-2.4.1/pyrogram/raw/types/messages/dialogs_slice.py +103 -0
  2731. pyromt-2.4.1/pyrogram/raw/types/messages/discussion_message.py +124 -0
  2732. pyromt-2.4.1/pyrogram/raw/types/messages/emoji_game_dice_info.py +106 -0
  2733. pyromt-2.4.1/pyrogram/raw/types/messages/emoji_game_outcome.py +78 -0
  2734. pyromt-2.4.1/pyrogram/raw/types/messages/emoji_game_unavailable.py +66 -0
  2735. pyromt-2.4.1/pyrogram/raw/types/messages/emoji_groups.py +82 -0
  2736. pyromt-2.4.1/pyrogram/raw/types/messages/emoji_groups_not_modified.py +69 -0
  2737. pyromt-2.4.1/pyrogram/raw/types/messages/exported_chat_invite.py +80 -0
  2738. pyromt-2.4.1/pyrogram/raw/types/messages/exported_chat_invite_replaced.py +88 -0
  2739. pyromt-2.4.1/pyrogram/raw/types/messages/exported_chat_invites.py +87 -0
  2740. pyromt-2.4.1/pyrogram/raw/types/messages/faved_stickers.py +87 -0
  2741. pyromt-2.4.1/pyrogram/raw/types/messages/faved_stickers_not_modified.py +66 -0
  2742. pyromt-2.4.1/pyrogram/raw/types/messages/featured_stickers.py +105 -0
  2743. pyromt-2.4.1/pyrogram/raw/types/messages/featured_stickers_not_modified.py +73 -0
  2744. pyromt-2.4.1/pyrogram/raw/types/messages/forum_topics.py +120 -0
  2745. pyromt-2.4.1/pyrogram/raw/types/messages/found_sticker_sets.py +80 -0
  2746. pyromt-2.4.1/pyrogram/raw/types/messages/found_sticker_sets_not_modified.py +67 -0
  2747. pyromt-2.4.1/pyrogram/raw/types/messages/found_stickers.py +90 -0
  2748. pyromt-2.4.1/pyrogram/raw/types/messages/found_stickers_not_modified.py +74 -0
  2749. pyromt-2.4.1/pyrogram/raw/types/messages/high_scores.py +80 -0
  2750. pyromt-2.4.1/pyrogram/raw/types/messages/history_import.py +71 -0
  2751. pyromt-2.4.1/pyrogram/raw/types/messages/history_import_parsed.py +86 -0
  2752. pyromt-2.4.1/pyrogram/raw/types/messages/inactive_chats.py +87 -0
  2753. pyromt-2.4.1/pyrogram/raw/types/messages/invited_users.py +81 -0
  2754. pyromt-2.4.1/pyrogram/raw/types/messages/message_edit_data.py +71 -0
  2755. pyromt-2.4.1/pyrogram/raw/types/messages/message_reactions_list.py +106 -0
  2756. pyromt-2.4.1/pyrogram/raw/types/messages/message_views.py +87 -0
  2757. pyromt-2.4.1/pyrogram/raw/types/messages/messages.py +109 -0
  2758. pyromt-2.4.1/pyrogram/raw/types/messages/messages_not_modified.py +85 -0
  2759. pyromt-2.4.1/pyrogram/raw/types/messages/messages_slice.py +153 -0
  2760. pyromt-2.4.1/pyrogram/raw/types/messages/my_stickers.py +79 -0
  2761. pyromt-2.4.1/pyrogram/raw/types/messages/peer_dialogs.py +104 -0
  2762. pyromt-2.4.1/pyrogram/raw/types/messages/peer_settings.py +87 -0
  2763. pyromt-2.4.1/pyrogram/raw/types/messages/prepared_inline_message.py +103 -0
  2764. pyromt-2.4.1/pyrogram/raw/types/messages/quick_replies.py +95 -0
  2765. pyromt-2.4.1/pyrogram/raw/types/messages/quick_replies_not_modified.py +66 -0
  2766. pyromt-2.4.1/pyrogram/raw/types/messages/reactions.py +81 -0
  2767. pyromt-2.4.1/pyrogram/raw/types/messages/reactions_not_modified.py +68 -0
  2768. pyromt-2.4.1/pyrogram/raw/types/messages/recent_stickers.py +95 -0
  2769. pyromt-2.4.1/pyrogram/raw/types/messages/recent_stickers_not_modified.py +66 -0
  2770. pyromt-2.4.1/pyrogram/raw/types/messages/saved_dialogs.py +97 -0
  2771. pyromt-2.4.1/pyrogram/raw/types/messages/saved_dialogs_not_modified.py +73 -0
  2772. pyromt-2.4.1/pyrogram/raw/types/messages/saved_dialogs_slice.py +105 -0
  2773. pyromt-2.4.1/pyrogram/raw/types/messages/saved_gifs.py +79 -0
  2774. pyromt-2.4.1/pyrogram/raw/types/messages/saved_gifs_not_modified.py +66 -0
  2775. pyromt-2.4.1/pyrogram/raw/types/messages/saved_reaction_tags.py +79 -0
  2776. pyromt-2.4.1/pyrogram/raw/types/messages/saved_reaction_tags_not_modified.py +66 -0
  2777. pyromt-2.4.1/pyrogram/raw/types/messages/search_counter.py +87 -0
  2778. pyromt-2.4.1/pyrogram/raw/types/messages/search_results_calendar.py +136 -0
  2779. pyromt-2.4.1/pyrogram/raw/types/messages/search_results_positions.py +79 -0
  2780. pyromt-2.4.1/pyrogram/raw/types/messages/sent_encrypted_file.py +81 -0
  2781. pyromt-2.4.1/pyrogram/raw/types/messages/sent_encrypted_message.py +73 -0
  2782. pyromt-2.4.1/pyrogram/raw/types/messages/sponsored_messages.py +116 -0
  2783. pyromt-2.4.1/pyrogram/raw/types/messages/sponsored_messages_empty.py +66 -0
  2784. pyromt-2.4.1/pyrogram/raw/types/messages/sticker_set.py +103 -0
  2785. pyromt-2.4.1/pyrogram/raw/types/messages/sticker_set_install_result_archive.py +71 -0
  2786. pyromt-2.4.1/pyrogram/raw/types/messages/sticker_set_install_result_success.py +66 -0
  2787. pyromt-2.4.1/pyrogram/raw/types/messages/sticker_set_not_modified.py +74 -0
  2788. pyromt-2.4.1/pyrogram/raw/types/messages/stickers.py +79 -0
  2789. pyromt-2.4.1/pyrogram/raw/types/messages/stickers_not_modified.py +66 -0
  2790. pyromt-2.4.1/pyrogram/raw/types/messages/transcribed_audio.py +105 -0
  2791. pyromt-2.4.1/pyrogram/raw/types/messages/translate_result.py +71 -0
  2792. pyromt-2.4.1/pyrogram/raw/types/messages/votes_list.py +106 -0
  2793. pyromt-2.4.1/pyrogram/raw/types/messages/web_page.py +87 -0
  2794. pyromt-2.4.1/pyrogram/raw/types/messages/web_page_preview.py +87 -0
  2795. pyromt-2.4.1/pyrogram/raw/types/missing_invitee.py +76 -0
  2796. pyromt-2.4.1/pyrogram/raw/types/mono_forum_dialog.py +126 -0
  2797. pyromt-2.4.1/pyrogram/raw/types/msg_detailed_info.py +86 -0
  2798. pyromt-2.4.1/pyrogram/raw/types/msg_new_detailed_info.py +78 -0
  2799. pyromt-2.4.1/pyrogram/raw/types/msg_resend_ans_req.py +62 -0
  2800. pyromt-2.4.1/pyrogram/raw/types/msg_resend_req.py +62 -0
  2801. pyromt-2.4.1/pyrogram/raw/types/msgs_ack.py +62 -0
  2802. pyromt-2.4.1/pyrogram/raw/types/msgs_all_info.py +70 -0
  2803. pyromt-2.4.1/pyrogram/raw/types/msgs_state_info.py +70 -0
  2804. pyromt-2.4.1/pyrogram/raw/types/msgs_state_req.py +62 -0
  2805. pyromt-2.4.1/pyrogram/raw/types/my_boost.py +99 -0
  2806. pyromt-2.4.1/pyrogram/raw/types/nearest_dc.py +87 -0
  2807. pyromt-2.4.1/pyrogram/raw/types/new_session_created.py +78 -0
  2808. pyromt-2.4.1/pyrogram/raw/types/notification_sound_default.py +57 -0
  2809. pyromt-2.4.1/pyrogram/raw/types/notification_sound_local.py +70 -0
  2810. pyromt-2.4.1/pyrogram/raw/types/notification_sound_none.py +57 -0
  2811. pyromt-2.4.1/pyrogram/raw/types/notification_sound_ringtone.py +62 -0
  2812. pyromt-2.4.1/pyrogram/raw/types/notify_broadcasts.py +57 -0
  2813. pyromt-2.4.1/pyrogram/raw/types/notify_chats.py +57 -0
  2814. pyromt-2.4.1/pyrogram/raw/types/notify_forum_topic.py +70 -0
  2815. pyromt-2.4.1/pyrogram/raw/types/notify_peer.py +62 -0
  2816. pyromt-2.4.1/pyrogram/raw/types/notify_users.py +57 -0
  2817. pyromt-2.4.1/pyrogram/raw/types/null.py +57 -0
  2818. pyromt-2.4.1/pyrogram/raw/types/outbox_read_date.py +71 -0
  2819. pyromt-2.4.1/pyrogram/raw/types/page.py +115 -0
  2820. pyromt-2.4.1/pyrogram/raw/types/page_block_anchor.py +62 -0
  2821. pyromt-2.4.1/pyrogram/raw/types/page_block_audio.py +70 -0
  2822. pyromt-2.4.1/pyrogram/raw/types/page_block_author_date.py +70 -0
  2823. pyromt-2.4.1/pyrogram/raw/types/page_block_blockquote.py +70 -0
  2824. pyromt-2.4.1/pyrogram/raw/types/page_block_channel.py +62 -0
  2825. pyromt-2.4.1/pyrogram/raw/types/page_block_collage.py +70 -0
  2826. pyromt-2.4.1/pyrogram/raw/types/page_block_cover.py +62 -0
  2827. pyromt-2.4.1/pyrogram/raw/types/page_block_details.py +78 -0
  2828. pyromt-2.4.1/pyrogram/raw/types/page_block_divider.py +57 -0
  2829. pyromt-2.4.1/pyrogram/raw/types/page_block_embed.py +121 -0
  2830. pyromt-2.4.1/pyrogram/raw/types/page_block_embed_post.py +110 -0
  2831. pyromt-2.4.1/pyrogram/raw/types/page_block_footer.py +62 -0
  2832. pyromt-2.4.1/pyrogram/raw/types/page_block_header.py +62 -0
  2833. pyromt-2.4.1/pyrogram/raw/types/page_block_kicker.py +62 -0
  2834. pyromt-2.4.1/pyrogram/raw/types/page_block_list.py +62 -0
  2835. pyromt-2.4.1/pyrogram/raw/types/page_block_map.py +94 -0
  2836. pyromt-2.4.1/pyrogram/raw/types/page_block_ordered_list.py +62 -0
  2837. pyromt-2.4.1/pyrogram/raw/types/page_block_paragraph.py +62 -0
  2838. pyromt-2.4.1/pyrogram/raw/types/page_block_photo.py +90 -0
  2839. pyromt-2.4.1/pyrogram/raw/types/page_block_preformatted.py +70 -0
  2840. pyromt-2.4.1/pyrogram/raw/types/page_block_pullquote.py +70 -0
  2841. pyromt-2.4.1/pyrogram/raw/types/page_block_related_articles.py +70 -0
  2842. pyromt-2.4.1/pyrogram/raw/types/page_block_slideshow.py +70 -0
  2843. pyromt-2.4.1/pyrogram/raw/types/page_block_subheader.py +62 -0
  2844. pyromt-2.4.1/pyrogram/raw/types/page_block_subtitle.py +62 -0
  2845. pyromt-2.4.1/pyrogram/raw/types/page_block_table.py +84 -0
  2846. pyromt-2.4.1/pyrogram/raw/types/page_block_title.py +62 -0
  2847. pyromt-2.4.1/pyrogram/raw/types/page_block_unsupported.py +57 -0
  2848. pyromt-2.4.1/pyrogram/raw/types/page_block_video.py +84 -0
  2849. pyromt-2.4.1/pyrogram/raw/types/page_caption.py +70 -0
  2850. pyromt-2.4.1/pyrogram/raw/types/page_list_item_blocks.py +62 -0
  2851. pyromt-2.4.1/pyrogram/raw/types/page_list_item_text.py +62 -0
  2852. pyromt-2.4.1/pyrogram/raw/types/page_list_ordered_item_blocks.py +70 -0
  2853. pyromt-2.4.1/pyrogram/raw/types/page_list_ordered_item_text.py +70 -0
  2854. pyromt-2.4.1/pyrogram/raw/types/page_related_article.py +117 -0
  2855. pyromt-2.4.1/pyrogram/raw/types/page_table_cell.py +114 -0
  2856. pyromt-2.4.1/pyrogram/raw/types/page_table_row.py +62 -0
  2857. pyromt-2.4.1/pyrogram/raw/types/paid_reaction_privacy_anonymous.py +57 -0
  2858. pyromt-2.4.1/pyrogram/raw/types/paid_reaction_privacy_default.py +57 -0
  2859. pyromt-2.4.1/pyrogram/raw/types/paid_reaction_privacy_peer.py +62 -0
  2860. pyromt-2.4.1/pyrogram/raw/types/passkey.py +107 -0
  2861. pyromt-2.4.1/pyrogram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py +86 -0
  2862. pyromt-2.4.1/pyrogram/raw/types/password_kdf_algo_unknown.py +57 -0
  2863. pyromt-2.4.1/pyrogram/raw/types/payment_charge.py +70 -0
  2864. pyromt-2.4.1/pyrogram/raw/types/payment_form_method.py +70 -0
  2865. pyromt-2.4.1/pyrogram/raw/types/payment_requested_info.py +93 -0
  2866. pyromt-2.4.1/pyrogram/raw/types/payment_saved_credentials_card.py +70 -0
  2867. pyromt-2.4.1/pyrogram/raw/types/payments/__init__.py +51 -0
  2868. pyromt-2.4.1/pyrogram/raw/types/payments/bank_card_data.py +79 -0
  2869. pyromt-2.4.1/pyrogram/raw/types/payments/check_can_send_gift_result_fail.py +71 -0
  2870. pyromt-2.4.1/pyrogram/raw/types/payments/check_can_send_gift_result_ok.py +66 -0
  2871. pyromt-2.4.1/pyrogram/raw/types/payments/checked_gift_code.py +140 -0
  2872. pyromt-2.4.1/pyrogram/raw/types/payments/connected_star_ref_bots.py +90 -0
  2873. pyromt-2.4.1/pyrogram/raw/types/payments/exported_invoice.py +71 -0
  2874. pyromt-2.4.1/pyrogram/raw/types/payments/giveaway_info.py +112 -0
  2875. pyromt-2.4.1/pyrogram/raw/types/payments/giveaway_info_results.py +128 -0
  2876. pyromt-2.4.1/pyrogram/raw/types/payments/payment_form.py +200 -0
  2877. pyromt-2.4.1/pyrogram/raw/types/payments/payment_form_star_gift.py +79 -0
  2878. pyromt-2.4.1/pyrogram/raw/types/payments/payment_form_stars.py +123 -0
  2879. pyromt-2.4.1/pyrogram/raw/types/payments/payment_receipt.py +184 -0
  2880. pyromt-2.4.1/pyrogram/raw/types/payments/payment_receipt_stars.py +147 -0
  2881. pyromt-2.4.1/pyrogram/raw/types/payments/payment_result.py +72 -0
  2882. pyromt-2.4.1/pyrogram/raw/types/payments/payment_verification_needed.py +72 -0
  2883. pyromt-2.4.1/pyrogram/raw/types/payments/resale_star_gifts.py +135 -0
  2884. pyromt-2.4.1/pyrogram/raw/types/payments/saved_info.py +81 -0
  2885. pyromt-2.4.1/pyrogram/raw/types/payments/saved_star_gifts.py +117 -0
  2886. pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_active_auctions.py +87 -0
  2887. pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_active_auctions_not_modified.py +66 -0
  2888. pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_auction_acquired_gifts.py +87 -0
  2889. pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_auction_state.py +111 -0
  2890. pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_collections.py +71 -0
  2891. pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_collections_not_modified.py +66 -0
  2892. pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_upgrade_attributes.py +71 -0
  2893. pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_upgrade_preview.py +87 -0
  2894. pyromt-2.4.1/pyrogram/raw/types/payments/star_gift_withdrawal_url.py +71 -0
  2895. pyromt-2.4.1/pyrogram/raw/types/payments/star_gifts.py +95 -0
  2896. pyromt-2.4.1/pyrogram/raw/types/payments/star_gifts_not_modified.py +66 -0
  2897. pyromt-2.4.1/pyrogram/raw/types/payments/stars_revenue_ads_account_url.py +71 -0
  2898. pyromt-2.4.1/pyrogram/raw/types/payments/stars_revenue_stats.py +99 -0
  2899. pyromt-2.4.1/pyrogram/raw/types/payments/stars_revenue_withdrawal_url.py +71 -0
  2900. pyromt-2.4.1/pyrogram/raw/types/payments/stars_status.py +139 -0
  2901. pyromt-2.4.1/pyrogram/raw/types/payments/suggested_star_ref_bots.py +98 -0
  2902. pyromt-2.4.1/pyrogram/raw/types/payments/unique_star_gift.py +87 -0
  2903. pyromt-2.4.1/pyrogram/raw/types/payments/unique_star_gift_value_info.py +180 -0
  2904. pyromt-2.4.1/pyrogram/raw/types/payments/validated_requested_info.py +84 -0
  2905. pyromt-2.4.1/pyrogram/raw/types/peer_blocked.py +70 -0
  2906. pyromt-2.4.1/pyrogram/raw/types/peer_channel.py +71 -0
  2907. pyromt-2.4.1/pyrogram/raw/types/peer_chat.py +71 -0
  2908. pyromt-2.4.1/pyrogram/raw/types/peer_color.py +74 -0
  2909. pyromt-2.4.1/pyrogram/raw/types/peer_color_collectible.py +115 -0
  2910. pyromt-2.4.1/pyrogram/raw/types/peer_located.py +78 -0
  2911. pyromt-2.4.1/pyrogram/raw/types/peer_notify_settings.py +170 -0
  2912. pyromt-2.4.1/pyrogram/raw/types/peer_self_located.py +62 -0
  2913. pyromt-2.4.1/pyrogram/raw/types/peer_settings.py +212 -0
  2914. pyromt-2.4.1/pyrogram/raw/types/peer_stories.py +81 -0
  2915. pyromt-2.4.1/pyrogram/raw/types/peer_user.py +71 -0
  2916. pyromt-2.4.1/pyrogram/raw/types/pending_suggestion.py +86 -0
  2917. pyromt-2.4.1/pyrogram/raw/types/phone/__init__.py +22 -0
  2918. pyromt-2.4.1/pyrogram/raw/types/phone/exported_group_call_invite.py +71 -0
  2919. pyromt-2.4.1/pyrogram/raw/types/phone/group_call.py +103 -0
  2920. pyromt-2.4.1/pyrogram/raw/types/phone/group_call_stars.py +95 -0
  2921. pyromt-2.4.1/pyrogram/raw/types/phone/group_call_stream_channels.py +71 -0
  2922. pyromt-2.4.1/pyrogram/raw/types/phone/group_call_stream_rtmp_url.py +79 -0
  2923. pyromt-2.4.1/pyrogram/raw/types/phone/group_participants.py +111 -0
  2924. pyromt-2.4.1/pyrogram/raw/types/phone/join_as_peers.py +87 -0
  2925. pyromt-2.4.1/pyrogram/raw/types/phone/phone_call.py +81 -0
  2926. pyromt-2.4.1/pyrogram/raw/types/phone_call.py +164 -0
  2927. pyromt-2.4.1/pyrogram/raw/types/phone_call_accepted.py +118 -0
  2928. pyromt-2.4.1/pyrogram/raw/types/phone_call_discard_reason_busy.py +57 -0
  2929. pyromt-2.4.1/pyrogram/raw/types/phone_call_discard_reason_disconnect.py +57 -0
  2930. pyromt-2.4.1/pyrogram/raw/types/phone_call_discard_reason_hangup.py +57 -0
  2931. pyromt-2.4.1/pyrogram/raw/types/phone_call_discard_reason_migrate_conference_call.py +62 -0
  2932. pyromt-2.4.1/pyrogram/raw/types/phone_call_discard_reason_missed.py +57 -0
  2933. pyromt-2.4.1/pyrogram/raw/types/phone_call_discarded.py +101 -0
  2934. pyromt-2.4.1/pyrogram/raw/types/phone_call_empty.py +62 -0
  2935. pyromt-2.4.1/pyrogram/raw/types/phone_call_protocol.py +92 -0
  2936. pyromt-2.4.1/pyrogram/raw/types/phone_call_requested.py +118 -0
  2937. pyromt-2.4.1/pyrogram/raw/types/phone_call_waiting.py +119 -0
  2938. pyromt-2.4.1/pyrogram/raw/types/phone_connection.py +102 -0
  2939. pyromt-2.4.1/pyrogram/raw/types/phone_connection_webrtc.py +116 -0
  2940. pyromt-2.4.1/pyrogram/raw/types/photo.py +120 -0
  2941. pyromt-2.4.1/pyrogram/raw/types/photo_cached_size.py +86 -0
  2942. pyromt-2.4.1/pyrogram/raw/types/photo_empty.py +62 -0
  2943. pyromt-2.4.1/pyrogram/raw/types/photo_path_size.py +70 -0
  2944. pyromt-2.4.1/pyrogram/raw/types/photo_size.py +86 -0
  2945. pyromt-2.4.1/pyrogram/raw/types/photo_size_empty.py +62 -0
  2946. pyromt-2.4.1/pyrogram/raw/types/photo_size_progressive.py +86 -0
  2947. pyromt-2.4.1/pyrogram/raw/types/photo_stripped_size.py +70 -0
  2948. pyromt-2.4.1/pyrogram/raw/types/photos/__init__.py +17 -0
  2949. pyromt-2.4.1/pyrogram/raw/types/photos/photo.py +81 -0
  2950. pyromt-2.4.1/pyrogram/raw/types/photos/photos.py +79 -0
  2951. pyromt-2.4.1/pyrogram/raw/types/photos/photos_slice.py +87 -0
  2952. pyromt-2.4.1/pyrogram/raw/types/poll.py +122 -0
  2953. pyromt-2.4.1/pyrogram/raw/types/poll_answer.py +70 -0
  2954. pyromt-2.4.1/pyrogram/raw/types/poll_answer_voters.py +84 -0
  2955. pyromt-2.4.1/pyrogram/raw/types/poll_results.py +110 -0
  2956. pyromt-2.4.1/pyrogram/raw/types/pong.py +80 -0
  2957. pyromt-2.4.1/pyrogram/raw/types/popular_contact.py +70 -0
  2958. pyromt-2.4.1/pyrogram/raw/types/post_address.py +102 -0
  2959. pyromt-2.4.1/pyrogram/raw/types/post_interaction_counters_message.py +86 -0
  2960. pyromt-2.4.1/pyrogram/raw/types/post_interaction_counters_story.py +86 -0
  2961. pyromt-2.4.1/pyrogram/raw/types/pq_inner_data.py +102 -0
  2962. pyromt-2.4.1/pyrogram/raw/types/pq_inner_data_dc.py +110 -0
  2963. pyromt-2.4.1/pyrogram/raw/types/pq_inner_data_temp.py +110 -0
  2964. pyromt-2.4.1/pyrogram/raw/types/pq_inner_data_temp_dc.py +118 -0
  2965. pyromt-2.4.1/pyrogram/raw/types/premium/__init__.py +17 -0
  2966. pyromt-2.4.1/pyrogram/raw/types/premium/boosts_list.py +99 -0
  2967. pyromt-2.4.1/pyrogram/raw/types/premium/boosts_status.py +151 -0
  2968. pyromt-2.4.1/pyrogram/raw/types/premium/my_boosts.py +88 -0
  2969. pyromt-2.4.1/pyrogram/raw/types/premium_gift_code_option.py +115 -0
  2970. pyromt-2.4.1/pyrogram/raw/types/premium_subscription_option.py +118 -0
  2971. pyromt-2.4.1/pyrogram/raw/types/prepaid_giveaway.py +86 -0
  2972. pyromt-2.4.1/pyrogram/raw/types/prepaid_stars_giveaway.py +94 -0
  2973. pyromt-2.4.1/pyrogram/raw/types/privacy_key_about.py +57 -0
  2974. pyromt-2.4.1/pyrogram/raw/types/privacy_key_added_by_phone.py +57 -0
  2975. pyromt-2.4.1/pyrogram/raw/types/privacy_key_birthday.py +57 -0
  2976. pyromt-2.4.1/pyrogram/raw/types/privacy_key_chat_invite.py +57 -0
  2977. pyromt-2.4.1/pyrogram/raw/types/privacy_key_forwards.py +57 -0
  2978. pyromt-2.4.1/pyrogram/raw/types/privacy_key_no_paid_messages.py +57 -0
  2979. pyromt-2.4.1/pyrogram/raw/types/privacy_key_phone_call.py +57 -0
  2980. pyromt-2.4.1/pyrogram/raw/types/privacy_key_phone_number.py +57 -0
  2981. pyromt-2.4.1/pyrogram/raw/types/privacy_key_phone_p2_p.py +57 -0
  2982. pyromt-2.4.1/pyrogram/raw/types/privacy_key_profile_photo.py +57 -0
  2983. pyromt-2.4.1/pyrogram/raw/types/privacy_key_saved_music.py +57 -0
  2984. pyromt-2.4.1/pyrogram/raw/types/privacy_key_star_gifts_auto_save.py +57 -0
  2985. pyromt-2.4.1/pyrogram/raw/types/privacy_key_status_timestamp.py +57 -0
  2986. pyromt-2.4.1/pyrogram/raw/types/privacy_key_voice_messages.py +57 -0
  2987. pyromt-2.4.1/pyrogram/raw/types/privacy_value_allow_all.py +57 -0
  2988. pyromt-2.4.1/pyrogram/raw/types/privacy_value_allow_bots.py +57 -0
  2989. pyromt-2.4.1/pyrogram/raw/types/privacy_value_allow_chat_participants.py +62 -0
  2990. pyromt-2.4.1/pyrogram/raw/types/privacy_value_allow_close_friends.py +57 -0
  2991. pyromt-2.4.1/pyrogram/raw/types/privacy_value_allow_contacts.py +57 -0
  2992. pyromt-2.4.1/pyrogram/raw/types/privacy_value_allow_premium.py +57 -0
  2993. pyromt-2.4.1/pyrogram/raw/types/privacy_value_allow_users.py +62 -0
  2994. pyromt-2.4.1/pyrogram/raw/types/privacy_value_disallow_all.py +57 -0
  2995. pyromt-2.4.1/pyrogram/raw/types/privacy_value_disallow_bots.py +57 -0
  2996. pyromt-2.4.1/pyrogram/raw/types/privacy_value_disallow_chat_participants.py +62 -0
  2997. pyromt-2.4.1/pyrogram/raw/types/privacy_value_disallow_contacts.py +57 -0
  2998. pyromt-2.4.1/pyrogram/raw/types/privacy_value_disallow_users.py +62 -0
  2999. pyromt-2.4.1/pyrogram/raw/types/profile_tab_files.py +57 -0
  3000. pyromt-2.4.1/pyrogram/raw/types/profile_tab_gifs.py +57 -0
  3001. pyromt-2.4.1/pyrogram/raw/types/profile_tab_gifts.py +57 -0
  3002. pyromt-2.4.1/pyrogram/raw/types/profile_tab_links.py +57 -0
  3003. pyromt-2.4.1/pyrogram/raw/types/profile_tab_media.py +57 -0
  3004. pyromt-2.4.1/pyrogram/raw/types/profile_tab_music.py +57 -0
  3005. pyromt-2.4.1/pyrogram/raw/types/profile_tab_posts.py +57 -0
  3006. pyromt-2.4.1/pyrogram/raw/types/profile_tab_voice.py +57 -0
  3007. pyromt-2.4.1/pyrogram/raw/types/public_forward_message.py +62 -0
  3008. pyromt-2.4.1/pyrogram/raw/types/public_forward_story.py +70 -0
  3009. pyromt-2.4.1/pyrogram/raw/types/quick_reply.py +86 -0
  3010. pyromt-2.4.1/pyrogram/raw/types/reaction_count.py +81 -0
  3011. pyromt-2.4.1/pyrogram/raw/types/reaction_custom_emoji.py +62 -0
  3012. pyromt-2.4.1/pyrogram/raw/types/reaction_emoji.py +62 -0
  3013. pyromt-2.4.1/pyrogram/raw/types/reaction_empty.py +57 -0
  3014. pyromt-2.4.1/pyrogram/raw/types/reaction_notifications_from_all.py +57 -0
  3015. pyromt-2.4.1/pyrogram/raw/types/reaction_notifications_from_contacts.py +57 -0
  3016. pyromt-2.4.1/pyrogram/raw/types/reaction_paid.py +57 -0
  3017. pyromt-2.4.1/pyrogram/raw/types/reactions_notify_settings.py +102 -0
  3018. pyromt-2.4.1/pyrogram/raw/types/read_participant_date.py +79 -0
  3019. pyromt-2.4.1/pyrogram/raw/types/received_notify_message.py +79 -0
  3020. pyromt-2.4.1/pyrogram/raw/types/recent_me_url_chat.py +70 -0
  3021. pyromt-2.4.1/pyrogram/raw/types/recent_me_url_chat_invite.py +70 -0
  3022. pyromt-2.4.1/pyrogram/raw/types/recent_me_url_sticker_set.py +70 -0
  3023. pyromt-2.4.1/pyrogram/raw/types/recent_me_url_unknown.py +62 -0
  3024. pyromt-2.4.1/pyrogram/raw/types/recent_me_url_user.py +70 -0
  3025. pyromt-2.4.1/pyrogram/raw/types/recent_story.py +80 -0
  3026. pyromt-2.4.1/pyrogram/raw/types/reply_inline_markup.py +62 -0
  3027. pyromt-2.4.1/pyrogram/raw/types/reply_keyboard_force_reply.py +77 -0
  3028. pyromt-2.4.1/pyrogram/raw/types/reply_keyboard_hide.py +62 -0
  3029. pyromt-2.4.1/pyrogram/raw/types/reply_keyboard_markup.py +97 -0
  3030. pyromt-2.4.1/pyrogram/raw/types/report_result_add_comment.py +80 -0
  3031. pyromt-2.4.1/pyrogram/raw/types/report_result_choose_option.py +80 -0
  3032. pyromt-2.4.1/pyrogram/raw/types/report_result_reported.py +67 -0
  3033. pyromt-2.4.1/pyrogram/raw/types/request_peer_type_broadcast.py +91 -0
  3034. pyromt-2.4.1/pyrogram/raw/types/request_peer_type_chat.py +106 -0
  3035. pyromt-2.4.1/pyrogram/raw/types/request_peer_type_user.py +74 -0
  3036. pyromt-2.4.1/pyrogram/raw/types/requested_peer_channel.py +92 -0
  3037. pyromt-2.4.1/pyrogram/raw/types/requested_peer_chat.py +83 -0
  3038. pyromt-2.4.1/pyrogram/raw/types/requested_peer_user.py +101 -0
  3039. pyromt-2.4.1/pyrogram/raw/types/requirement_to_contact_empty.py +66 -0
  3040. pyromt-2.4.1/pyrogram/raw/types/requirement_to_contact_paid_messages.py +71 -0
  3041. pyromt-2.4.1/pyrogram/raw/types/requirement_to_contact_premium.py +66 -0
  3042. pyromt-2.4.1/pyrogram/raw/types/res_pq.py +96 -0
  3043. pyromt-2.4.1/pyrogram/raw/types/restriction_reason.py +78 -0
  3044. pyromt-2.4.1/pyrogram/raw/types/rpc_answer_dropped.py +87 -0
  3045. pyromt-2.4.1/pyrogram/raw/types/rpc_answer_dropped_running.py +66 -0
  3046. pyromt-2.4.1/pyrogram/raw/types/rpc_answer_unknown.py +66 -0
  3047. pyromt-2.4.1/pyrogram/raw/types/rpc_error.py +70 -0
  3048. pyromt-2.4.1/pyrogram/raw/types/rpc_result.py +70 -0
  3049. pyromt-2.4.1/pyrogram/raw/types/saved_dialog.py +78 -0
  3050. pyromt-2.4.1/pyrogram/raw/types/saved_phone_contact.py +95 -0
  3051. pyromt-2.4.1/pyrogram/raw/types/saved_reaction_tag.py +81 -0
  3052. pyromt-2.4.1/pyrogram/raw/types/saved_star_gift.py +246 -0
  3053. pyromt-2.4.1/pyrogram/raw/types/search_posts_flood.py +104 -0
  3054. pyromt-2.4.1/pyrogram/raw/types/search_result_position.py +78 -0
  3055. pyromt-2.4.1/pyrogram/raw/types/search_results_calendar_period.py +86 -0
  3056. pyromt-2.4.1/pyrogram/raw/types/secure_credentials_encrypted.py +78 -0
  3057. pyromt-2.4.1/pyrogram/raw/types/secure_data.py +78 -0
  3058. pyromt-2.4.1/pyrogram/raw/types/secure_file.py +110 -0
  3059. pyromt-2.4.1/pyrogram/raw/types/secure_file_empty.py +57 -0
  3060. pyromt-2.4.1/pyrogram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py +62 -0
  3061. pyromt-2.4.1/pyrogram/raw/types/secure_password_kdf_algo_sha512.py +62 -0
  3062. pyromt-2.4.1/pyrogram/raw/types/secure_password_kdf_algo_unknown.py +57 -0
  3063. pyromt-2.4.1/pyrogram/raw/types/secure_plain_email.py +62 -0
  3064. pyromt-2.4.1/pyrogram/raw/types/secure_plain_phone.py +62 -0
  3065. pyromt-2.4.1/pyrogram/raw/types/secure_required_type.py +82 -0
  3066. pyromt-2.4.1/pyrogram/raw/types/secure_required_type_one_of.py +62 -0
  3067. pyromt-2.4.1/pyrogram/raw/types/secure_secret_settings.py +78 -0
  3068. pyromt-2.4.1/pyrogram/raw/types/secure_value.py +153 -0
  3069. pyromt-2.4.1/pyrogram/raw/types/secure_value_error.py +78 -0
  3070. pyromt-2.4.1/pyrogram/raw/types/secure_value_error_data.py +86 -0
  3071. pyromt-2.4.1/pyrogram/raw/types/secure_value_error_file.py +78 -0
  3072. pyromt-2.4.1/pyrogram/raw/types/secure_value_error_files.py +78 -0
  3073. pyromt-2.4.1/pyrogram/raw/types/secure_value_error_front_side.py +78 -0
  3074. pyromt-2.4.1/pyrogram/raw/types/secure_value_error_reverse_side.py +78 -0
  3075. pyromt-2.4.1/pyrogram/raw/types/secure_value_error_selfie.py +78 -0
  3076. pyromt-2.4.1/pyrogram/raw/types/secure_value_error_translation_file.py +78 -0
  3077. pyromt-2.4.1/pyrogram/raw/types/secure_value_error_translation_files.py +78 -0
  3078. pyromt-2.4.1/pyrogram/raw/types/secure_value_hash.py +70 -0
  3079. pyromt-2.4.1/pyrogram/raw/types/secure_value_type_address.py +57 -0
  3080. pyromt-2.4.1/pyrogram/raw/types/secure_value_type_bank_statement.py +57 -0
  3081. pyromt-2.4.1/pyrogram/raw/types/secure_value_type_driver_license.py +57 -0
  3082. pyromt-2.4.1/pyrogram/raw/types/secure_value_type_email.py +57 -0
  3083. pyromt-2.4.1/pyrogram/raw/types/secure_value_type_identity_card.py +57 -0
  3084. pyromt-2.4.1/pyrogram/raw/types/secure_value_type_internal_passport.py +57 -0
  3085. pyromt-2.4.1/pyrogram/raw/types/secure_value_type_passport.py +57 -0
  3086. pyromt-2.4.1/pyrogram/raw/types/secure_value_type_passport_registration.py +57 -0
  3087. pyromt-2.4.1/pyrogram/raw/types/secure_value_type_personal_details.py +57 -0
  3088. pyromt-2.4.1/pyrogram/raw/types/secure_value_type_phone.py +57 -0
  3089. pyromt-2.4.1/pyrogram/raw/types/secure_value_type_rental_agreement.py +57 -0
  3090. pyromt-2.4.1/pyrogram/raw/types/secure_value_type_temporary_registration.py +57 -0
  3091. pyromt-2.4.1/pyrogram/raw/types/secure_value_type_utility_bill.py +57 -0
  3092. pyromt-2.4.1/pyrogram/raw/types/send_as_peer.py +70 -0
  3093. pyromt-2.4.1/pyrogram/raw/types/send_message_cancel_action.py +57 -0
  3094. pyromt-2.4.1/pyrogram/raw/types/send_message_choose_contact_action.py +57 -0
  3095. pyromt-2.4.1/pyrogram/raw/types/send_message_choose_sticker_action.py +57 -0
  3096. pyromt-2.4.1/pyrogram/raw/types/send_message_emoji_interaction.py +78 -0
  3097. pyromt-2.4.1/pyrogram/raw/types/send_message_emoji_interaction_seen.py +62 -0
  3098. pyromt-2.4.1/pyrogram/raw/types/send_message_game_play_action.py +57 -0
  3099. pyromt-2.4.1/pyrogram/raw/types/send_message_geo_location_action.py +57 -0
  3100. pyromt-2.4.1/pyrogram/raw/types/send_message_history_import_action.py +62 -0
  3101. pyromt-2.4.1/pyrogram/raw/types/send_message_record_audio_action.py +57 -0
  3102. pyromt-2.4.1/pyrogram/raw/types/send_message_record_round_action.py +57 -0
  3103. pyromt-2.4.1/pyrogram/raw/types/send_message_record_video_action.py +57 -0
  3104. pyromt-2.4.1/pyrogram/raw/types/send_message_text_draft_action.py +70 -0
  3105. pyromt-2.4.1/pyrogram/raw/types/send_message_typing_action.py +57 -0
  3106. pyromt-2.4.1/pyrogram/raw/types/send_message_upload_audio_action.py +62 -0
  3107. pyromt-2.4.1/pyrogram/raw/types/send_message_upload_document_action.py +62 -0
  3108. pyromt-2.4.1/pyrogram/raw/types/send_message_upload_photo_action.py +62 -0
  3109. pyromt-2.4.1/pyrogram/raw/types/send_message_upload_round_action.py +62 -0
  3110. pyromt-2.4.1/pyrogram/raw/types/send_message_upload_video_action.py +62 -0
  3111. pyromt-2.4.1/pyrogram/raw/types/server_dh_inner_data.py +102 -0
  3112. pyromt-2.4.1/pyrogram/raw/types/server_dh_params_fail.py +87 -0
  3113. pyromt-2.4.1/pyrogram/raw/types/server_dh_params_ok.py +87 -0
  3114. pyromt-2.4.1/pyrogram/raw/types/shipping_option.py +78 -0
  3115. pyromt-2.4.1/pyrogram/raw/types/sms_job.py +87 -0
  3116. pyromt-2.4.1/pyrogram/raw/types/smsjobs/__init__.py +16 -0
  3117. pyromt-2.4.1/pyrogram/raw/types/smsjobs/eligible_to_join.py +79 -0
  3118. pyromt-2.4.1/pyrogram/raw/types/smsjobs/status.py +128 -0
  3119. pyromt-2.4.1/pyrogram/raw/types/speaking_in_group_call_action.py +57 -0
  3120. pyromt-2.4.1/pyrogram/raw/types/sponsored_message.py +184 -0
  3121. pyromt-2.4.1/pyrogram/raw/types/sponsored_message_report_option.py +70 -0
  3122. pyromt-2.4.1/pyrogram/raw/types/sponsored_peer.py +90 -0
  3123. pyromt-2.4.1/pyrogram/raw/types/star_gift.py +285 -0
  3124. pyromt-2.4.1/pyrogram/raw/types/star_gift_active_auction_state.py +78 -0
  3125. pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_backdrop.py +110 -0
  3126. pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_counter.py +70 -0
  3127. pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_id_backdrop.py +62 -0
  3128. pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_id_model.py +62 -0
  3129. pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_id_pattern.py +62 -0
  3130. pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_model.py +86 -0
  3131. pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_original_details.py +92 -0
  3132. pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_pattern.py +78 -0
  3133. pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_rarity.py +62 -0
  3134. pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_rarity_epic.py +57 -0
  3135. pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_rarity_legendary.py +57 -0
  3136. pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_rarity_rare.py +57 -0
  3137. pyromt-2.4.1/pyrogram/raw/types/star_gift_attribute_rarity_uncommon.py +57 -0
  3138. pyromt-2.4.1/pyrogram/raw/types/star_gift_auction_acquired_gift.py +121 -0
  3139. pyromt-2.4.1/pyrogram/raw/types/star_gift_auction_round.py +70 -0
  3140. pyromt-2.4.1/pyrogram/raw/types/star_gift_auction_round_extendable.py +86 -0
  3141. pyromt-2.4.1/pyrogram/raw/types/star_gift_auction_state.py +150 -0
  3142. pyromt-2.4.1/pyrogram/raw/types/star_gift_auction_state_finished.py +107 -0
  3143. pyromt-2.4.1/pyrogram/raw/types/star_gift_auction_state_not_modified.py +57 -0
  3144. pyromt-2.4.1/pyrogram/raw/types/star_gift_auction_user_state.py +107 -0
  3145. pyromt-2.4.1/pyrogram/raw/types/star_gift_background.py +78 -0
  3146. pyromt-2.4.1/pyrogram/raw/types/star_gift_collection.py +108 -0
  3147. pyromt-2.4.1/pyrogram/raw/types/star_gift_unique.py +282 -0
  3148. pyromt-2.4.1/pyrogram/raw/types/star_gift_upgrade_price.py +70 -0
  3149. pyromt-2.4.1/pyrogram/raw/types/star_ref_program.py +109 -0
  3150. pyromt-2.4.1/pyrogram/raw/types/stars_amount.py +70 -0
  3151. pyromt-2.4.1/pyrogram/raw/types/stars_gift_option.py +104 -0
  3152. pyromt-2.4.1/pyrogram/raw/types/stars_giveaway_option.py +126 -0
  3153. pyromt-2.4.1/pyrogram/raw/types/stars_giveaway_winners_option.py +78 -0
  3154. pyromt-2.4.1/pyrogram/raw/types/stars_rating.py +89 -0
  3155. pyromt-2.4.1/pyrogram/raw/types/stars_revenue_status.py +95 -0
  3156. pyromt-2.4.1/pyrogram/raw/types/stars_subscription.py +149 -0
  3157. pyromt-2.4.1/pyrogram/raw/types/stars_subscription_pricing.py +70 -0
  3158. pyromt-2.4.1/pyrogram/raw/types/stars_ton_amount.py +62 -0
  3159. pyromt-2.4.1/pyrogram/raw/types/stars_topup_option.py +104 -0
  3160. pyromt-2.4.1/pyrogram/raw/types/stars_transaction.py +348 -0
  3161. pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer.py +62 -0
  3162. pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer_ads.py +57 -0
  3163. pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer_api.py +57 -0
  3164. pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer_app_store.py +57 -0
  3165. pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer_fragment.py +57 -0
  3166. pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer_play_market.py +57 -0
  3167. pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer_premium_bot.py +57 -0
  3168. pyromt-2.4.1/pyrogram/raw/types/stars_transaction_peer_unsupported.py +57 -0
  3169. pyromt-2.4.1/pyrogram/raw/types/stats/__init__.py +19 -0
  3170. pyromt-2.4.1/pyrogram/raw/types/stats/broadcast_stats.py +239 -0
  3171. pyromt-2.4.1/pyrogram/raw/types/stats/megagroup_stats.py +199 -0
  3172. pyromt-2.4.1/pyrogram/raw/types/stats/message_stats.py +79 -0
  3173. pyromt-2.4.1/pyrogram/raw/types/stats/public_forwards.py +107 -0
  3174. pyromt-2.4.1/pyrogram/raw/types/stats/story_stats.py +79 -0
  3175. pyromt-2.4.1/pyrogram/raw/types/stats_abs_value_and_prev.py +70 -0
  3176. pyromt-2.4.1/pyrogram/raw/types/stats_date_range_days.py +70 -0
  3177. pyromt-2.4.1/pyrogram/raw/types/stats_graph.py +82 -0
  3178. pyromt-2.4.1/pyrogram/raw/types/stats_graph_async.py +71 -0
  3179. pyromt-2.4.1/pyrogram/raw/types/stats_graph_error.py +71 -0
  3180. pyromt-2.4.1/pyrogram/raw/types/stats_group_top_admin.py +86 -0
  3181. pyromt-2.4.1/pyrogram/raw/types/stats_group_top_inviter.py +70 -0
  3182. pyromt-2.4.1/pyrogram/raw/types/stats_group_top_poster.py +78 -0
  3183. pyromt-2.4.1/pyrogram/raw/types/stats_percent_value.py +70 -0
  3184. pyromt-2.4.1/pyrogram/raw/types/stats_url.py +62 -0
  3185. pyromt-2.4.1/pyrogram/raw/types/sticker_keyword.py +70 -0
  3186. pyromt-2.4.1/pyrogram/raw/types/sticker_pack.py +70 -0
  3187. pyromt-2.4.1/pyrogram/raw/types/sticker_set.py +192 -0
  3188. pyromt-2.4.1/pyrogram/raw/types/sticker_set_covered.py +79 -0
  3189. pyromt-2.4.1/pyrogram/raw/types/sticker_set_full_covered.py +95 -0
  3190. pyromt-2.4.1/pyrogram/raw/types/sticker_set_multi_covered.py +79 -0
  3191. pyromt-2.4.1/pyrogram/raw/types/sticker_set_no_covered.py +71 -0
  3192. pyromt-2.4.1/pyrogram/raw/types/stickers/__init__.py +15 -0
  3193. pyromt-2.4.1/pyrogram/raw/types/stickers/suggested_short_name.py +71 -0
  3194. pyromt-2.4.1/pyrogram/raw/types/storage/__init__.py +24 -0
  3195. pyromt-2.4.1/pyrogram/raw/types/storage/file_gif.py +57 -0
  3196. pyromt-2.4.1/pyrogram/raw/types/storage/file_jpeg.py +57 -0
  3197. pyromt-2.4.1/pyrogram/raw/types/storage/file_mov.py +57 -0
  3198. pyromt-2.4.1/pyrogram/raw/types/storage/file_mp3.py +57 -0
  3199. pyromt-2.4.1/pyrogram/raw/types/storage/file_mp4.py +57 -0
  3200. pyromt-2.4.1/pyrogram/raw/types/storage/file_partial.py +57 -0
  3201. pyromt-2.4.1/pyrogram/raw/types/storage/file_pdf.py +57 -0
  3202. pyromt-2.4.1/pyrogram/raw/types/storage/file_png.py +57 -0
  3203. pyromt-2.4.1/pyrogram/raw/types/storage/file_unknown.py +57 -0
  3204. pyromt-2.4.1/pyrogram/raw/types/storage/file_webp.py +57 -0
  3205. pyromt-2.4.1/pyrogram/raw/types/stories/__init__.py +25 -0
  3206. pyromt-2.4.1/pyrogram/raw/types/stories/albums.py +79 -0
  3207. pyromt-2.4.1/pyrogram/raw/types/stories/albums_not_modified.py +66 -0
  3208. pyromt-2.4.1/pyrogram/raw/types/stories/all_stories.py +119 -0
  3209. pyromt-2.4.1/pyrogram/raw/types/stories/all_stories_not_modified.py +82 -0
  3210. pyromt-2.4.1/pyrogram/raw/types/stories/can_send_story_count.py +71 -0
  3211. pyromt-2.4.1/pyrogram/raw/types/stories/found_stories.py +106 -0
  3212. pyromt-2.4.1/pyrogram/raw/types/stories/peer_stories.py +87 -0
  3213. pyromt-2.4.1/pyrogram/raw/types/stories/stories.py +110 -0
  3214. pyromt-2.4.1/pyrogram/raw/types/stories/story_reactions_list.py +106 -0
  3215. pyromt-2.4.1/pyrogram/raw/types/stories/story_views.py +79 -0
  3216. pyromt-2.4.1/pyrogram/raw/types/stories/story_views_list.py +130 -0
  3217. pyromt-2.4.1/pyrogram/raw/types/stories_stealth_mode.py +74 -0
  3218. pyromt-2.4.1/pyrogram/raw/types/story_album.py +102 -0
  3219. pyromt-2.4.1/pyrogram/raw/types/story_fwd_header.py +90 -0
  3220. pyromt-2.4.1/pyrogram/raw/types/story_item.py +231 -0
  3221. pyromt-2.4.1/pyrogram/raw/types/story_item_deleted.py +62 -0
  3222. pyromt-2.4.1/pyrogram/raw/types/story_item_skipped.py +92 -0
  3223. pyromt-2.4.1/pyrogram/raw/types/story_reaction.py +78 -0
  3224. pyromt-2.4.1/pyrogram/raw/types/story_reaction_public_forward.py +62 -0
  3225. pyromt-2.4.1/pyrogram/raw/types/story_reaction_public_repost.py +70 -0
  3226. pyromt-2.4.1/pyrogram/raw/types/story_view.py +94 -0
  3227. pyromt-2.4.1/pyrogram/raw/types/story_view_public_forward.py +76 -0
  3228. pyromt-2.4.1/pyrogram/raw/types/story_view_public_repost.py +84 -0
  3229. pyromt-2.4.1/pyrogram/raw/types/story_views.py +108 -0
  3230. pyromt-2.4.1/pyrogram/raw/types/suggested_post.py +87 -0
  3231. pyromt-2.4.1/pyrogram/raw/types/text_anchor.py +70 -0
  3232. pyromt-2.4.1/pyrogram/raw/types/text_bold.py +62 -0
  3233. pyromt-2.4.1/pyrogram/raw/types/text_concat.py +62 -0
  3234. pyromt-2.4.1/pyrogram/raw/types/text_email.py +70 -0
  3235. pyromt-2.4.1/pyrogram/raw/types/text_empty.py +57 -0
  3236. pyromt-2.4.1/pyrogram/raw/types/text_fixed.py +62 -0
  3237. pyromt-2.4.1/pyrogram/raw/types/text_image.py +78 -0
  3238. pyromt-2.4.1/pyrogram/raw/types/text_italic.py +62 -0
  3239. pyromt-2.4.1/pyrogram/raw/types/text_marked.py +62 -0
  3240. pyromt-2.4.1/pyrogram/raw/types/text_phone.py +70 -0
  3241. pyromt-2.4.1/pyrogram/raw/types/text_plain.py +62 -0
  3242. pyromt-2.4.1/pyrogram/raw/types/text_strike.py +62 -0
  3243. pyromt-2.4.1/pyrogram/raw/types/text_subscript.py +62 -0
  3244. pyromt-2.4.1/pyrogram/raw/types/text_superscript.py +62 -0
  3245. pyromt-2.4.1/pyrogram/raw/types/text_underline.py +62 -0
  3246. pyromt-2.4.1/pyrogram/raw/types/text_url.py +78 -0
  3247. pyromt-2.4.1/pyrogram/raw/types/text_with_entities.py +79 -0
  3248. pyromt-2.4.1/pyrogram/raw/types/theme.py +155 -0
  3249. pyromt-2.4.1/pyrogram/raw/types/theme_settings.py +107 -0
  3250. pyromt-2.4.1/pyrogram/raw/types/timezone.py +78 -0
  3251. pyromt-2.4.1/pyrogram/raw/types/todo_completion.py +78 -0
  3252. pyromt-2.4.1/pyrogram/raw/types/todo_item.py +70 -0
  3253. pyromt-2.4.1/pyrogram/raw/types/todo_list.py +84 -0
  3254. pyromt-2.4.1/pyrogram/raw/types/top_peer.py +70 -0
  3255. pyromt-2.4.1/pyrogram/raw/types/top_peer_category_bots_app.py +57 -0
  3256. pyromt-2.4.1/pyrogram/raw/types/top_peer_category_bots_inline.py +57 -0
  3257. pyromt-2.4.1/pyrogram/raw/types/top_peer_category_bots_pm.py +57 -0
  3258. pyromt-2.4.1/pyrogram/raw/types/top_peer_category_channels.py +57 -0
  3259. pyromt-2.4.1/pyrogram/raw/types/top_peer_category_correspondents.py +57 -0
  3260. pyromt-2.4.1/pyrogram/raw/types/top_peer_category_forward_chats.py +57 -0
  3261. pyromt-2.4.1/pyrogram/raw/types/top_peer_category_forward_users.py +57 -0
  3262. pyromt-2.4.1/pyrogram/raw/types/top_peer_category_groups.py +57 -0
  3263. pyromt-2.4.1/pyrogram/raw/types/top_peer_category_peers.py +78 -0
  3264. pyromt-2.4.1/pyrogram/raw/types/top_peer_category_phone_calls.py +57 -0
  3265. pyromt-2.4.1/pyrogram/raw/types/true_.py +57 -0
  3266. pyromt-2.4.1/pyrogram/raw/types/update_attach_menu_bots.py +57 -0
  3267. pyromt-2.4.1/pyrogram/raw/types/update_auto_save_settings.py +57 -0
  3268. pyromt-2.4.1/pyrogram/raw/types/update_bot_business_connect.py +70 -0
  3269. pyromt-2.4.1/pyrogram/raw/types/update_bot_callback_query.py +114 -0
  3270. pyromt-2.4.1/pyrogram/raw/types/update_bot_chat_boost.py +78 -0
  3271. pyromt-2.4.1/pyrogram/raw/types/update_bot_chat_invite_requester.py +102 -0
  3272. pyromt-2.4.1/pyrogram/raw/types/update_bot_commands.py +78 -0
  3273. pyromt-2.4.1/pyrogram/raw/types/update_bot_delete_business_message.py +86 -0
  3274. pyromt-2.4.1/pyrogram/raw/types/update_bot_edit_business_message.py +90 -0
  3275. pyromt-2.4.1/pyrogram/raw/types/update_bot_inline_query.py +108 -0
  3276. pyromt-2.4.1/pyrogram/raw/types/update_bot_inline_send.py +100 -0
  3277. pyromt-2.4.1/pyrogram/raw/types/update_bot_menu_button.py +70 -0
  3278. pyromt-2.4.1/pyrogram/raw/types/update_bot_message_reaction.py +110 -0
  3279. pyromt-2.4.1/pyrogram/raw/types/update_bot_message_reactions.py +94 -0
  3280. pyromt-2.4.1/pyrogram/raw/types/update_bot_new_business_message.py +90 -0
  3281. pyromt-2.4.1/pyrogram/raw/types/update_bot_precheckout_query.py +115 -0
  3282. pyromt-2.4.1/pyrogram/raw/types/update_bot_purchased_paid_media.py +78 -0
  3283. pyromt-2.4.1/pyrogram/raw/types/update_bot_shipping_query.py +86 -0
  3284. pyromt-2.4.1/pyrogram/raw/types/update_bot_stopped.py +86 -0
  3285. pyromt-2.4.1/pyrogram/raw/types/update_bot_webhook_json.py +62 -0
  3286. pyromt-2.4.1/pyrogram/raw/types/update_bot_webhook_json_query.py +78 -0
  3287. pyromt-2.4.1/pyrogram/raw/types/update_business_bot_callback_query.py +115 -0
  3288. pyromt-2.4.1/pyrogram/raw/types/update_channel.py +62 -0
  3289. pyromt-2.4.1/pyrogram/raw/types/update_channel_available_messages.py +70 -0
  3290. pyromt-2.4.1/pyrogram/raw/types/update_channel_message_forwards.py +78 -0
  3291. pyromt-2.4.1/pyrogram/raw/types/update_channel_message_views.py +78 -0
  3292. pyromt-2.4.1/pyrogram/raw/types/update_channel_participant.py +132 -0
  3293. pyromt-2.4.1/pyrogram/raw/types/update_channel_read_messages_contents.py +91 -0
  3294. pyromt-2.4.1/pyrogram/raw/types/update_channel_too_long.py +73 -0
  3295. pyromt-2.4.1/pyrogram/raw/types/update_channel_user_typing.py +89 -0
  3296. pyromt-2.4.1/pyrogram/raw/types/update_channel_view_forum_as_messages.py +70 -0
  3297. pyromt-2.4.1/pyrogram/raw/types/update_channel_web_page.py +86 -0
  3298. pyromt-2.4.1/pyrogram/raw/types/update_chat.py +62 -0
  3299. pyromt-2.4.1/pyrogram/raw/types/update_chat_default_banned_rights.py +78 -0
  3300. pyromt-2.4.1/pyrogram/raw/types/update_chat_participant.py +126 -0
  3301. pyromt-2.4.1/pyrogram/raw/types/update_chat_participant_add.py +94 -0
  3302. pyromt-2.4.1/pyrogram/raw/types/update_chat_participant_admin.py +86 -0
  3303. pyromt-2.4.1/pyrogram/raw/types/update_chat_participant_delete.py +78 -0
  3304. pyromt-2.4.1/pyrogram/raw/types/update_chat_participants.py +62 -0
  3305. pyromt-2.4.1/pyrogram/raw/types/update_chat_user_typing.py +78 -0
  3306. pyromt-2.4.1/pyrogram/raw/types/update_config.py +57 -0
  3307. pyromt-2.4.1/pyrogram/raw/types/update_contacts_reset.py +57 -0
  3308. pyromt-2.4.1/pyrogram/raw/types/update_dc_options.py +62 -0
  3309. pyromt-2.4.1/pyrogram/raw/types/update_delete_channel_messages.py +86 -0
  3310. pyromt-2.4.1/pyrogram/raw/types/update_delete_group_call_messages.py +70 -0
  3311. pyromt-2.4.1/pyrogram/raw/types/update_delete_messages.py +78 -0
  3312. pyromt-2.4.1/pyrogram/raw/types/update_delete_quick_reply.py +62 -0
  3313. pyromt-2.4.1/pyrogram/raw/types/update_delete_quick_reply_messages.py +70 -0
  3314. pyromt-2.4.1/pyrogram/raw/types/update_delete_scheduled_messages.py +82 -0
  3315. pyromt-2.4.1/pyrogram/raw/types/update_dialog_filter.py +74 -0
  3316. pyromt-2.4.1/pyrogram/raw/types/update_dialog_filter_order.py +62 -0
  3317. pyromt-2.4.1/pyrogram/raw/types/update_dialog_filters.py +57 -0
  3318. pyromt-2.4.1/pyrogram/raw/types/update_dialog_pinned.py +79 -0
  3319. pyromt-2.4.1/pyrogram/raw/types/update_dialog_unread_mark.py +80 -0
  3320. pyromt-2.4.1/pyrogram/raw/types/update_draft_message.py +91 -0
  3321. pyromt-2.4.1/pyrogram/raw/types/update_edit_channel_message.py +78 -0
  3322. pyromt-2.4.1/pyrogram/raw/types/update_edit_message.py +78 -0
  3323. pyromt-2.4.1/pyrogram/raw/types/update_emoji_game_info.py +62 -0
  3324. pyromt-2.4.1/pyrogram/raw/types/update_encrypted_chat_typing.py +62 -0
  3325. pyromt-2.4.1/pyrogram/raw/types/update_encrypted_messages_read.py +78 -0
  3326. pyromt-2.4.1/pyrogram/raw/types/update_encryption.py +70 -0
  3327. pyromt-2.4.1/pyrogram/raw/types/update_faved_stickers.py +57 -0
  3328. pyromt-2.4.1/pyrogram/raw/types/update_folder_peers.py +78 -0
  3329. pyromt-2.4.1/pyrogram/raw/types/update_geo_live_viewed.py +70 -0
  3330. pyromt-2.4.1/pyrogram/raw/types/update_group_call.py +80 -0
  3331. pyromt-2.4.1/pyrogram/raw/types/update_group_call_chain_blocks.py +86 -0
  3332. pyromt-2.4.1/pyrogram/raw/types/update_group_call_connection.py +70 -0
  3333. pyromt-2.4.1/pyrogram/raw/types/update_group_call_encrypted_message.py +78 -0
  3334. pyromt-2.4.1/pyrogram/raw/types/update_group_call_message.py +70 -0
  3335. pyromt-2.4.1/pyrogram/raw/types/update_group_call_participants.py +78 -0
  3336. pyromt-2.4.1/pyrogram/raw/types/update_inline_bot_callback_query.py +106 -0
  3337. pyromt-2.4.1/pyrogram/raw/types/update_lang_pack.py +62 -0
  3338. pyromt-2.4.1/pyrogram/raw/types/update_lang_pack_too_long.py +62 -0
  3339. pyromt-2.4.1/pyrogram/raw/types/update_login_token.py +57 -0
  3340. pyromt-2.4.1/pyrogram/raw/types/update_message_extended_media.py +78 -0
  3341. pyromt-2.4.1/pyrogram/raw/types/update_message_id.py +70 -0
  3342. pyromt-2.4.1/pyrogram/raw/types/update_message_poll.py +82 -0
  3343. pyromt-2.4.1/pyrogram/raw/types/update_message_poll_vote.py +86 -0
  3344. pyromt-2.4.1/pyrogram/raw/types/update_message_reactions.py +99 -0
  3345. pyromt-2.4.1/pyrogram/raw/types/update_mono_forum_no_paid_exception.py +78 -0
  3346. pyromt-2.4.1/pyrogram/raw/types/update_move_sticker_set_to_top.py +76 -0
  3347. pyromt-2.4.1/pyrogram/raw/types/update_new_authorization.py +97 -0
  3348. pyromt-2.4.1/pyrogram/raw/types/update_new_channel_message.py +78 -0
  3349. pyromt-2.4.1/pyrogram/raw/types/update_new_encrypted_message.py +70 -0
  3350. pyromt-2.4.1/pyrogram/raw/types/update_new_message.py +78 -0
  3351. pyromt-2.4.1/pyrogram/raw/types/update_new_quick_reply.py +62 -0
  3352. pyromt-2.4.1/pyrogram/raw/types/update_new_scheduled_message.py +62 -0
  3353. pyromt-2.4.1/pyrogram/raw/types/update_new_sticker_set.py +62 -0
  3354. pyromt-2.4.1/pyrogram/raw/types/update_new_story_reaction.py +78 -0
  3355. pyromt-2.4.1/pyrogram/raw/types/update_notify_settings.py +70 -0
  3356. pyromt-2.4.1/pyrogram/raw/types/update_paid_reaction_privacy.py +62 -0
  3357. pyromt-2.4.1/pyrogram/raw/types/update_peer_blocked.py +76 -0
  3358. pyromt-2.4.1/pyrogram/raw/types/update_peer_history_ttl.py +73 -0
  3359. pyromt-2.4.1/pyrogram/raw/types/update_peer_located.py +62 -0
  3360. pyromt-2.4.1/pyrogram/raw/types/update_peer_settings.py +70 -0
  3361. pyromt-2.4.1/pyrogram/raw/types/update_peer_wallpaper.py +80 -0
  3362. pyromt-2.4.1/pyrogram/raw/types/update_pending_join_requests.py +78 -0
  3363. pyromt-2.4.1/pyrogram/raw/types/update_phone_call.py +62 -0
  3364. pyromt-2.4.1/pyrogram/raw/types/update_phone_call_signaling_data.py +70 -0
  3365. pyromt-2.4.1/pyrogram/raw/types/update_pinned_channel_messages.py +94 -0
  3366. pyromt-2.4.1/pyrogram/raw/types/update_pinned_dialogs.py +75 -0
  3367. pyromt-2.4.1/pyrogram/raw/types/update_pinned_forum_topic.py +78 -0
  3368. pyromt-2.4.1/pyrogram/raw/types/update_pinned_forum_topics.py +74 -0
  3369. pyromt-2.4.1/pyrogram/raw/types/update_pinned_messages.py +94 -0
  3370. pyromt-2.4.1/pyrogram/raw/types/update_pinned_saved_dialogs.py +66 -0
  3371. pyromt-2.4.1/pyrogram/raw/types/update_privacy.py +70 -0
  3372. pyromt-2.4.1/pyrogram/raw/types/update_pts_changed.py +57 -0
  3373. pyromt-2.4.1/pyrogram/raw/types/update_quick_replies.py +62 -0
  3374. pyromt-2.4.1/pyrogram/raw/types/update_quick_reply_message.py +62 -0
  3375. pyromt-2.4.1/pyrogram/raw/types/update_read_channel_discussion_inbox.py +98 -0
  3376. pyromt-2.4.1/pyrogram/raw/types/update_read_channel_discussion_outbox.py +78 -0
  3377. pyromt-2.4.1/pyrogram/raw/types/update_read_channel_inbox.py +97 -0
  3378. pyromt-2.4.1/pyrogram/raw/types/update_read_channel_outbox.py +70 -0
  3379. pyromt-2.4.1/pyrogram/raw/types/update_read_featured_emoji_stickers.py +57 -0
  3380. pyromt-2.4.1/pyrogram/raw/types/update_read_featured_stickers.py +57 -0
  3381. pyromt-2.4.1/pyrogram/raw/types/update_read_history_inbox.py +114 -0
  3382. pyromt-2.4.1/pyrogram/raw/types/update_read_history_outbox.py +86 -0
  3383. pyromt-2.4.1/pyrogram/raw/types/update_read_messages_contents.py +89 -0
  3384. pyromt-2.4.1/pyrogram/raw/types/update_read_mono_forum_inbox.py +78 -0
  3385. pyromt-2.4.1/pyrogram/raw/types/update_read_mono_forum_outbox.py +78 -0
  3386. pyromt-2.4.1/pyrogram/raw/types/update_read_stories.py +70 -0
  3387. pyromt-2.4.1/pyrogram/raw/types/update_recent_emoji_statuses.py +57 -0
  3388. pyromt-2.4.1/pyrogram/raw/types/update_recent_reactions.py +57 -0
  3389. pyromt-2.4.1/pyrogram/raw/types/update_recent_stickers.py +57 -0
  3390. pyromt-2.4.1/pyrogram/raw/types/update_saved_dialog_pinned.py +70 -0
  3391. pyromt-2.4.1/pyrogram/raw/types/update_saved_gifs.py +57 -0
  3392. pyromt-2.4.1/pyrogram/raw/types/update_saved_reaction_tags.py +57 -0
  3393. pyromt-2.4.1/pyrogram/raw/types/update_saved_ringtones.py +57 -0
  3394. pyromt-2.4.1/pyrogram/raw/types/update_sent_phone_code.py +62 -0
  3395. pyromt-2.4.1/pyrogram/raw/types/update_sent_story_reaction.py +78 -0
  3396. pyromt-2.4.1/pyrogram/raw/types/update_service_notification.py +109 -0
  3397. pyromt-2.4.1/pyrogram/raw/types/update_short.py +205 -0
  3398. pyromt-2.4.1/pyrogram/raw/types/update_short_chat_message.py +319 -0
  3399. pyromt-2.4.1/pyrogram/raw/types/update_short_message.py +311 -0
  3400. pyromt-2.4.1/pyrogram/raw/types/update_short_sent_message.py +258 -0
  3401. pyromt-2.4.1/pyrogram/raw/types/update_sms_job.py +62 -0
  3402. pyromt-2.4.1/pyrogram/raw/types/update_star_gift_auction_state.py +70 -0
  3403. pyromt-2.4.1/pyrogram/raw/types/update_star_gift_auction_user_state.py +70 -0
  3404. pyromt-2.4.1/pyrogram/raw/types/update_star_gift_craft_fail.py +57 -0
  3405. pyromt-2.4.1/pyrogram/raw/types/update_stars_balance.py +62 -0
  3406. pyromt-2.4.1/pyrogram/raw/types/update_stars_revenue_status.py +70 -0
  3407. pyromt-2.4.1/pyrogram/raw/types/update_sticker_sets.py +68 -0
  3408. pyromt-2.4.1/pyrogram/raw/types/update_sticker_sets_order.py +76 -0
  3409. pyromt-2.4.1/pyrogram/raw/types/update_stories_stealth_mode.py +62 -0
  3410. pyromt-2.4.1/pyrogram/raw/types/update_story.py +70 -0
  3411. pyromt-2.4.1/pyrogram/raw/types/update_story_id.py +70 -0
  3412. pyromt-2.4.1/pyrogram/raw/types/update_theme.py +62 -0
  3413. pyromt-2.4.1/pyrogram/raw/types/update_transcribed_audio.py +94 -0
  3414. pyromt-2.4.1/pyrogram/raw/types/update_user.py +62 -0
  3415. pyromt-2.4.1/pyrogram/raw/types/update_user_emoji_status.py +70 -0
  3416. pyromt-2.4.1/pyrogram/raw/types/update_user_name.py +86 -0
  3417. pyromt-2.4.1/pyrogram/raw/types/update_user_phone.py +70 -0
  3418. pyromt-2.4.1/pyrogram/raw/types/update_user_status.py +70 -0
  3419. pyromt-2.4.1/pyrogram/raw/types/update_user_typing.py +81 -0
  3420. pyromt-2.4.1/pyrogram/raw/types/update_web_page.py +78 -0
  3421. pyromt-2.4.1/pyrogram/raw/types/update_web_view_result_sent.py +62 -0
  3422. pyromt-2.4.1/pyrogram/raw/types/updates/__init__.py +22 -0
  3423. pyromt-2.4.1/pyrogram/raw/types/updates/channel_difference.py +120 -0
  3424. pyromt-2.4.1/pyrogram/raw/types/updates/channel_difference_empty.py +88 -0
  3425. pyromt-2.4.1/pyrogram/raw/types/updates/channel_difference_too_long.py +112 -0
  3426. pyromt-2.4.1/pyrogram/raw/types/updates/difference.py +111 -0
  3427. pyromt-2.4.1/pyrogram/raw/types/updates/difference_empty.py +79 -0
  3428. pyromt-2.4.1/pyrogram/raw/types/updates/difference_slice.py +111 -0
  3429. pyromt-2.4.1/pyrogram/raw/types/updates/difference_too_long.py +71 -0
  3430. pyromt-2.4.1/pyrogram/raw/types/updates/state.py +103 -0
  3431. pyromt-2.4.1/pyrogram/raw/types/updates_combined.py +237 -0
  3432. pyromt-2.4.1/pyrogram/raw/types/updates_t.py +229 -0
  3433. pyromt-2.4.1/pyrogram/raw/types/updates_too_long.py +192 -0
  3434. pyromt-2.4.1/pyrogram/raw/types/upload/__init__.py +19 -0
  3435. pyromt-2.4.1/pyrogram/raw/types/upload/cdn_file.py +71 -0
  3436. pyromt-2.4.1/pyrogram/raw/types/upload/cdn_file_reupload_needed.py +71 -0
  3437. pyromt-2.4.1/pyrogram/raw/types/upload/file.py +87 -0
  3438. pyromt-2.4.1/pyrogram/raw/types/upload/file_cdn_redirect.py +103 -0
  3439. pyromt-2.4.1/pyrogram/raw/types/upload/web_file.py +103 -0
  3440. pyromt-2.4.1/pyrogram/raw/types/url_auth_result_accepted.py +75 -0
  3441. pyromt-2.4.1/pyrogram/raw/types/url_auth_result_default.py +67 -0
  3442. pyromt-2.4.1/pyrogram/raw/types/url_auth_result_request.py +130 -0
  3443. pyromt-2.4.1/pyrogram/raw/types/user.py +425 -0
  3444. pyromt-2.4.1/pyrogram/raw/types/user_empty.py +78 -0
  3445. pyromt-2.4.1/pyrogram/raw/types/user_full.py +514 -0
  3446. pyromt-2.4.1/pyrogram/raw/types/user_profile_photo.py +93 -0
  3447. pyromt-2.4.1/pyrogram/raw/types/user_profile_photo_empty.py +57 -0
  3448. pyromt-2.4.1/pyrogram/raw/types/user_status_empty.py +57 -0
  3449. pyromt-2.4.1/pyrogram/raw/types/user_status_last_month.py +62 -0
  3450. pyromt-2.4.1/pyrogram/raw/types/user_status_last_week.py +62 -0
  3451. pyromt-2.4.1/pyrogram/raw/types/user_status_offline.py +62 -0
  3452. pyromt-2.4.1/pyrogram/raw/types/user_status_online.py +62 -0
  3453. pyromt-2.4.1/pyrogram/raw/types/user_status_recently.py +62 -0
  3454. pyromt-2.4.1/pyrogram/raw/types/username.py +76 -0
  3455. pyromt-2.4.1/pyrogram/raw/types/users/__init__.py +19 -0
  3456. pyromt-2.4.1/pyrogram/raw/types/users/saved_music.py +80 -0
  3457. pyromt-2.4.1/pyrogram/raw/types/users/saved_music_not_modified.py +72 -0
  3458. pyromt-2.4.1/pyrogram/raw/types/users/user_full.py +87 -0
  3459. pyromt-2.4.1/pyrogram/raw/types/users/users.py +71 -0
  3460. pyromt-2.4.1/pyrogram/raw/types/users/users_slice.py +79 -0
  3461. pyromt-2.4.1/pyrogram/raw/types/video_size.py +97 -0
  3462. pyromt-2.4.1/pyrogram/raw/types/video_size_emoji_markup.py +70 -0
  3463. pyromt-2.4.1/pyrogram/raw/types/video_size_sticker_markup.py +78 -0
  3464. pyromt-2.4.1/pyrogram/raw/types/wall_paper.py +133 -0
  3465. pyromt-2.4.1/pyrogram/raw/types/wall_paper_no_file.py +97 -0
  3466. pyromt-2.4.1/pyrogram/raw/types/wall_paper_settings.py +131 -0
  3467. pyromt-2.4.1/pyrogram/raw/types/web_authorization.py +126 -0
  3468. pyromt-2.4.1/pyrogram/raw/types/web_document.py +94 -0
  3469. pyromt-2.4.1/pyrogram/raw/types/web_document_no_proxy.py +86 -0
  3470. pyromt-2.4.1/pyrogram/raw/types/web_page.py +230 -0
  3471. pyromt-2.4.1/pyrogram/raw/types/web_page_attribute_star_gift_auction.py +70 -0
  3472. pyromt-2.4.1/pyrogram/raw/types/web_page_attribute_star_gift_collection.py +62 -0
  3473. pyromt-2.4.1/pyrogram/raw/types/web_page_attribute_sticker_set.py +76 -0
  3474. pyromt-2.4.1/pyrogram/raw/types/web_page_attribute_story.py +82 -0
  3475. pyromt-2.4.1/pyrogram/raw/types/web_page_attribute_theme.py +76 -0
  3476. pyromt-2.4.1/pyrogram/raw/types/web_page_attribute_unique_star_gift.py +62 -0
  3477. pyromt-2.4.1/pyrogram/raw/types/web_page_empty.py +73 -0
  3478. pyromt-2.4.1/pyrogram/raw/types/web_page_not_modified.py +65 -0
  3479. pyromt-2.4.1/pyrogram/raw/types/web_page_pending.py +81 -0
  3480. pyromt-2.4.1/pyrogram/raw/types/web_view_message_sent.py +75 -0
  3481. pyromt-2.4.1/pyrogram/raw/types/web_view_result_url.py +97 -0
  3482. pyromt-2.4.1/pyrogram/session/__init__.py +26 -0
  3483. pyromt-2.4.1/pyrogram/session/auth.py +299 -0
  3484. pyromt-2.4.1/pyrogram/session/internals/__init__.py +28 -0
  3485. pyromt-2.4.1/pyrogram/session/internals/data_center.py +83 -0
  3486. pyromt-2.4.1/pyrogram/session/internals/msg_factory.py +39 -0
  3487. pyromt-2.4.1/pyrogram/session/internals/msg_id.py +36 -0
  3488. pyromt-2.4.1/pyrogram/session/internals/seq_no.py +31 -0
  3489. pyromt-2.4.1/pyrogram/session/session.py +443 -0
  3490. pyromt-2.4.1/pyrogram/storage/__init__.py +38 -0
  3491. pyromt-2.4.1/pyrogram/storage/dummy_client.py +62 -0
  3492. pyromt-2.4.1/pyrogram/storage/file_storage.py +88 -0
  3493. pyromt-2.4.1/pyrogram/storage/memory_storage.py +74 -0
  3494. pyromt-2.4.1/pyrogram/storage/mongo_storage.py +257 -0
  3495. pyromt-2.4.1/pyrogram/storage/sqlite_storage.py +305 -0
  3496. pyromt-2.4.1/pyrogram/storage/storage.py +111 -0
  3497. pyromt-2.4.1/pyrogram/sync.py +118 -0
  3498. pyromt-2.4.1/pyrogram/types/__init__.py +49 -0
  3499. pyromt-2.4.1/pyrogram/types/authorization/__init__.py +32 -0
  3500. pyromt-2.4.1/pyrogram/types/authorization/active_session.py +150 -0
  3501. pyromt-2.4.1/pyrogram/types/authorization/active_sessions.py +57 -0
  3502. pyromt-2.4.1/pyrogram/types/authorization/login_token.py +46 -0
  3503. pyromt-2.4.1/pyrogram/types/authorization/sent_code.py +63 -0
  3504. pyromt-2.4.1/pyrogram/types/authorization/terms_of_service.py +57 -0
  3505. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/__init__.py +96 -0
  3506. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_allowed.py +68 -0
  3507. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_app.py +87 -0
  3508. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_business_connection.py +81 -0
  3509. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command.py +54 -0
  3510. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope.py +74 -0
  3511. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +33 -0
  3512. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +33 -0
  3513. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +33 -0
  3514. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py +44 -0
  3515. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +44 -0
  3516. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py +49 -0
  3517. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_command_scope_default.py +34 -0
  3518. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/bot_info.py +57 -0
  3519. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/callback_game.py +30 -0
  3520. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/callback_query.py +365 -0
  3521. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/collectible_item_info.py +74 -0
  3522. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/force_reply.py +67 -0
  3523. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/game_high_score.py +80 -0
  3524. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/inline_keyboard_button.py +264 -0
  3525. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/inline_keyboard_button_buy.py +51 -0
  3526. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py +79 -0
  3527. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/keyboard_button.py +259 -0
  3528. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/login_url.py +92 -0
  3529. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/menu_button.py +45 -0
  3530. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/menu_button_commands.py +33 -0
  3531. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/menu_button_default.py +33 -0
  3532. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/menu_button_web_app.py +52 -0
  3533. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py +114 -0
  3534. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py +59 -0
  3535. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/request_peer_type_channel.py +83 -0
  3536. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/request_peer_type_chat.py +92 -0
  3537. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/request_peer_type_user.py +70 -0
  3538. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/requested_chat.py +82 -0
  3539. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/requested_chats.py +77 -0
  3540. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/requested_user.py +84 -0
  3541. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/sent_web_app_message.py +43 -0
  3542. pyromt-2.4.1/pyrogram/types/bots_and_keyboards/web_app_info.py +38 -0
  3543. pyromt-2.4.1/pyrogram/types/business/__init__.py +29 -0
  3544. pyromt-2.4.1/pyrogram/types/business/pre_checkout_query.py +135 -0
  3545. pyromt-2.4.1/pyrogram/types/business/shipping_address.py +78 -0
  3546. pyromt-2.4.1/pyrogram/types/business/shipping_option.py +72 -0
  3547. pyromt-2.4.1/pyrogram/types/business/shipping_query.py +124 -0
  3548. pyromt-2.4.1/pyrogram/types/inline_mode/__init__.py +48 -0
  3549. pyromt-2.4.1/pyrogram/types/inline_mode/chosen_inline_result.py +100 -0
  3550. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query.py +186 -0
  3551. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result.py +64 -0
  3552. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_animation.py +156 -0
  3553. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_article.py +100 -0
  3554. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_audio.py +138 -0
  3555. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_cached_animation.py +109 -0
  3556. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_cached_audio.py +102 -0
  3557. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_cached_document.py +114 -0
  3558. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_cached_photo.py +112 -0
  3559. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_cached_sticker.py +79 -0
  3560. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_cached_video.py +115 -0
  3561. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_cached_voice.py +109 -0
  3562. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_contact.py +115 -0
  3563. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_document.py +146 -0
  3564. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_location.py +123 -0
  3565. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_photo.py +148 -0
  3566. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_venue.py +132 -0
  3567. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_video.py +152 -0
  3568. pyromt-2.4.1/pyrogram/types/inline_mode/inline_query_result_voice.py +115 -0
  3569. pyromt-2.4.1/pyrogram/types/input_media/__init__.py +33 -0
  3570. pyromt-2.4.1/pyrogram/types/input_media/input_media.py +50 -0
  3571. pyromt-2.4.1/pyrogram/types/input_media/input_media_animation.py +86 -0
  3572. pyromt-2.4.1/pyrogram/types/input_media/input_media_area.py +40 -0
  3573. pyromt-2.4.1/pyrogram/types/input_media/input_media_area_channel_post.py +58 -0
  3574. pyromt-2.4.1/pyrogram/types/input_media/input_media_audio.py +89 -0
  3575. pyromt-2.4.1/pyrogram/types/input_media/input_media_document.py +72 -0
  3576. pyromt-2.4.1/pyrogram/types/input_media/input_media_photo.py +64 -0
  3577. pyromt-2.4.1/pyrogram/types/input_media/input_media_video.py +98 -0
  3578. pyromt-2.4.1/pyrogram/types/input_media/input_phone_contact.py +52 -0
  3579. pyromt-2.4.1/pyrogram/types/input_message_content/__init__.py +42 -0
  3580. pyromt-2.4.1/pyrogram/types/input_message_content/input_contact_message_content.py +68 -0
  3581. pyromt-2.4.1/pyrogram/types/input_message_content/input_invoice_message_content.py +174 -0
  3582. pyromt-2.4.1/pyrogram/types/input_message_content/input_location_message_content.py +82 -0
  3583. pyromt-2.4.1/pyrogram/types/input_message_content/input_message_content.py +42 -0
  3584. pyromt-2.4.1/pyrogram/types/input_message_content/input_reply_to_message.py +90 -0
  3585. pyromt-2.4.1/pyrogram/types/input_message_content/input_reply_to_monoforum.py +43 -0
  3586. pyromt-2.4.1/pyrogram/types/input_message_content/input_reply_to_story.py +49 -0
  3587. pyromt-2.4.1/pyrogram/types/input_message_content/input_text_message_content.py +69 -0
  3588. pyromt-2.4.1/pyrogram/types/input_message_content/input_todo_task.py +37 -0
  3589. pyromt-2.4.1/pyrogram/types/input_message_content/input_venue_message_content.py +87 -0
  3590. pyromt-2.4.1/pyrogram/types/list.py +31 -0
  3591. pyromt-2.4.1/pyrogram/types/messages_and_media/__init__.py +156 -0
  3592. pyromt-2.4.1/pyrogram/types/messages_and_media/alternative_video.py +134 -0
  3593. pyromt-2.4.1/pyrogram/types/messages_and_media/animation.py +163 -0
  3594. pyromt-2.4.1/pyrogram/types/messages_and_media/audio.py +122 -0
  3595. pyromt-2.4.1/pyrogram/types/messages_and_media/available_effect.py +89 -0
  3596. pyromt-2.4.1/pyrogram/types/messages_and_media/chat_theme.py +38 -0
  3597. pyromt-2.4.1/pyrogram/types/messages_and_media/chat_wallpaper.py +55 -0
  3598. pyromt-2.4.1/pyrogram/types/messages_and_media/contact.py +72 -0
  3599. pyromt-2.4.1/pyrogram/types/messages_and_media/contact_registered.py +29 -0
  3600. pyromt-2.4.1/pyrogram/types/messages_and_media/dice.py +48 -0
  3601. pyromt-2.4.1/pyrogram/types/messages_and_media/document.py +99 -0
  3602. pyromt-2.4.1/pyrogram/types/messages_and_media/exported_story_link.py +43 -0
  3603. pyromt-2.4.1/pyrogram/types/messages_and_media/external_reply_info.py +327 -0
  3604. pyromt-2.4.1/pyrogram/types/messages_and_media/game.py +99 -0
  3605. pyromt-2.4.1/pyrogram/types/messages_and_media/giveaway.py +108 -0
  3606. pyromt-2.4.1/pyrogram/types/messages_and_media/giveaway_launched.py +51 -0
  3607. pyromt-2.4.1/pyrogram/types/messages_and_media/giveaway_result.py +140 -0
  3608. pyromt-2.4.1/pyrogram/types/messages_and_media/location.py +56 -0
  3609. pyromt-2.4.1/pyrogram/types/messages_and_media/media_area.py +46 -0
  3610. pyromt-2.4.1/pyrogram/types/messages_and_media/media_area_channel_post.py +70 -0
  3611. pyromt-2.4.1/pyrogram/types/messages_and_media/media_area_coordinates.py +77 -0
  3612. pyromt-2.4.1/pyrogram/types/messages_and_media/message.py +5675 -0
  3613. pyromt-2.4.1/pyrogram/types/messages_and_media/message_entity.py +141 -0
  3614. pyromt-2.4.1/pyrogram/types/messages_and_media/message_origin.py +95 -0
  3615. pyromt-2.4.1/pyrogram/types/messages_and_media/message_origin_channel.py +62 -0
  3616. pyromt-2.4.1/pyrogram/types/messages_and_media/message_origin_chat.py +57 -0
  3617. pyromt-2.4.1/pyrogram/types/messages_and_media/message_origin_hidden_user.py +52 -0
  3618. pyromt-2.4.1/pyrogram/types/messages_and_media/message_origin_import.py +51 -0
  3619. pyromt-2.4.1/pyrogram/types/messages_and_media/message_origin_user.py +52 -0
  3620. pyromt-2.4.1/pyrogram/types/messages_and_media/message_reaction_count_updated.py +89 -0
  3621. pyromt-2.4.1/pyrogram/types/messages_and_media/message_reaction_updated.py +126 -0
  3622. pyromt-2.4.1/pyrogram/types/messages_and_media/message_reactions.py +70 -0
  3623. pyromt-2.4.1/pyrogram/types/messages_and_media/message_reactor.py +102 -0
  3624. pyromt-2.4.1/pyrogram/types/messages_and_media/message_story.py +79 -0
  3625. pyromt-2.4.1/pyrogram/types/messages_and_media/photo.py +131 -0
  3626. pyromt-2.4.1/pyrogram/types/messages_and_media/poll.py +248 -0
  3627. pyromt-2.4.1/pyrogram/types/messages_and_media/poll_option.py +65 -0
  3628. pyromt-2.4.1/pyrogram/types/messages_and_media/reaction.py +99 -0
  3629. pyromt-2.4.1/pyrogram/types/messages_and_media/read_participant.py +56 -0
  3630. pyromt-2.4.1/pyrogram/types/messages_and_media/screenshot_taken.py +29 -0
  3631. pyromt-2.4.1/pyrogram/types/messages_and_media/sticker.py +222 -0
  3632. pyromt-2.4.1/pyrogram/types/messages_and_media/stickerset.py +74 -0
  3633. pyromt-2.4.1/pyrogram/types/messages_and_media/stories_privacy_rules.py +47 -0
  3634. pyromt-2.4.1/pyrogram/types/messages_and_media/story.py +1941 -0
  3635. pyromt-2.4.1/pyrogram/types/messages_and_media/story_deleted.py +73 -0
  3636. pyromt-2.4.1/pyrogram/types/messages_and_media/story_forward_header.py +81 -0
  3637. pyromt-2.4.1/pyrogram/types/messages_and_media/story_skipped.py +92 -0
  3638. pyromt-2.4.1/pyrogram/types/messages_and_media/story_views.py +50 -0
  3639. pyromt-2.4.1/pyrogram/types/messages_and_media/stripped_thumbnail.py +48 -0
  3640. pyromt-2.4.1/pyrogram/types/messages_and_media/text_quote.py +84 -0
  3641. pyromt-2.4.1/pyrogram/types/messages_and_media/thumbnail.py +112 -0
  3642. pyromt-2.4.1/pyrogram/types/messages_and_media/todo_list.py +83 -0
  3643. pyromt-2.4.1/pyrogram/types/messages_and_media/todo_task.py +85 -0
  3644. pyromt-2.4.1/pyrogram/types/messages_and_media/todo_tasks_added.py +45 -0
  3645. pyromt-2.4.1/pyrogram/types/messages_and_media/todo_tasks_completed.py +44 -0
  3646. pyromt-2.4.1/pyrogram/types/messages_and_media/todo_tasks_incompleted.py +44 -0
  3647. pyromt-2.4.1/pyrogram/types/messages_and_media/transcribed_audio.py +67 -0
  3648. pyromt-2.4.1/pyrogram/types/messages_and_media/translated_text.py +61 -0
  3649. pyromt-2.4.1/pyrogram/types/messages_and_media/venue.py +75 -0
  3650. pyromt-2.4.1/pyrogram/types/messages_and_media/video.py +148 -0
  3651. pyromt-2.4.1/pyrogram/types/messages_and_media/video_note.py +109 -0
  3652. pyromt-2.4.1/pyrogram/types/messages_and_media/voice.py +97 -0
  3653. pyromt-2.4.1/pyrogram/types/messages_and_media/wallpaper.py +95 -0
  3654. pyromt-2.4.1/pyrogram/types/messages_and_media/wallpaper_settings.py +92 -0
  3655. pyromt-2.4.1/pyrogram/types/messages_and_media/web_app_data.py +52 -0
  3656. pyromt-2.4.1/pyrogram/types/messages_and_media/web_page.py +188 -0
  3657. pyromt-2.4.1/pyrogram/types/messages_and_media/web_page_empty.py +53 -0
  3658. pyromt-2.4.1/pyrogram/types/messages_and_media/web_page_preview.py +76 -0
  3659. pyromt-2.4.1/pyrogram/types/object.py +128 -0
  3660. pyromt-2.4.1/pyrogram/types/payments/__init__.py +58 -0
  3661. pyromt-2.4.1/pyrogram/types/payments/checked_gift_code.py +93 -0
  3662. pyromt-2.4.1/pyrogram/types/payments/extended_media_preview.py +66 -0
  3663. pyromt-2.4.1/pyrogram/types/payments/gift.py +536 -0
  3664. pyromt-2.4.1/pyrogram/types/payments/gift_attribute.py +160 -0
  3665. pyromt-2.4.1/pyrogram/types/payments/gift_code.py +102 -0
  3666. pyromt-2.4.1/pyrogram/types/payments/gifted_premium.py +79 -0
  3667. pyromt-2.4.1/pyrogram/types/payments/input_stars_transaction.py +47 -0
  3668. pyromt-2.4.1/pyrogram/types/payments/invoice.py +89 -0
  3669. pyromt-2.4.1/pyrogram/types/payments/labeled_price.py +48 -0
  3670. pyromt-2.4.1/pyrogram/types/payments/paid_media.py +78 -0
  3671. pyromt-2.4.1/pyrogram/types/payments/paid_message_price_changed.py +49 -0
  3672. pyromt-2.4.1/pyrogram/types/payments/payment_form.py +117 -0
  3673. pyromt-2.4.1/pyrogram/types/payments/payment_info.py +54 -0
  3674. pyromt-2.4.1/pyrogram/types/payments/payment_refunded.py +82 -0
  3675. pyromt-2.4.1/pyrogram/types/payments/purchased_paid_media.py +50 -0
  3676. pyromt-2.4.1/pyrogram/types/payments/stars_status.py +52 -0
  3677. pyromt-2.4.1/pyrogram/types/payments/stars_transaction.py +126 -0
  3678. pyromt-2.4.1/pyrogram/types/payments/successful_payment.py +114 -0
  3679. pyromt-2.4.1/pyrogram/types/pyromod/__init__.py +23 -0
  3680. pyromt-2.4.1/pyrogram/types/pyromod/identifier.py +74 -0
  3681. pyromt-2.4.1/pyrogram/types/pyromod/listener.py +61 -0
  3682. pyromt-2.4.1/pyrogram/types/update.py +30 -0
  3683. pyromt-2.4.1/pyrogram/types/user_and_chats/__init__.py +114 -0
  3684. pyromt-2.4.1/pyrogram/types/user_and_chats/birthday.py +63 -0
  3685. pyromt-2.4.1/pyrogram/types/user_and_chats/bot_verification.py +63 -0
  3686. pyromt-2.4.1/pyrogram/types/user_and_chats/business_info.py +81 -0
  3687. pyromt-2.4.1/pyrogram/types/user_and_chats/business_message.py +111 -0
  3688. pyromt-2.4.1/pyrogram/types/user_and_chats/business_recipients.py +78 -0
  3689. pyromt-2.4.1/pyrogram/types/user_and_chats/business_weekly_open.py +49 -0
  3690. pyromt-2.4.1/pyrogram/types/user_and_chats/business_working_hours.py +62 -0
  3691. pyromt-2.4.1/pyrogram/types/user_and_chats/chat.py +1333 -0
  3692. pyromt-2.4.1/pyrogram/types/user_and_chats/chat_admin_with_invite_links.py +64 -0
  3693. pyromt-2.4.1/pyrogram/types/user_and_chats/chat_color.py +64 -0
  3694. pyromt-2.4.1/pyrogram/types/user_and_chats/chat_event.py +534 -0
  3695. pyromt-2.4.1/pyrogram/types/user_and_chats/chat_event_filter.py +176 -0
  3696. pyromt-2.4.1/pyrogram/types/user_and_chats/chat_invite_link.py +150 -0
  3697. pyromt-2.4.1/pyrogram/types/user_and_chats/chat_join_request.py +140 -0
  3698. pyromt-2.4.1/pyrogram/types/user_and_chats/chat_joined_by_request.py +29 -0
  3699. pyromt-2.4.1/pyrogram/types/user_and_chats/chat_joiner.py +83 -0
  3700. pyromt-2.4.1/pyrogram/types/user_and_chats/chat_member.py +235 -0
  3701. pyromt-2.4.1/pyrogram/types/user_and_chats/chat_member_updated.py +150 -0
  3702. pyromt-2.4.1/pyrogram/types/user_and_chats/chat_permissions.py +234 -0
  3703. pyromt-2.4.1/pyrogram/types/user_and_chats/chat_photo.py +128 -0
  3704. pyromt-2.4.1/pyrogram/types/user_and_chats/chat_preview.py +80 -0
  3705. pyromt-2.4.1/pyrogram/types/user_and_chats/chat_privileges.py +147 -0
  3706. pyromt-2.4.1/pyrogram/types/user_and_chats/chat_reactions.py +74 -0
  3707. pyromt-2.4.1/pyrogram/types/user_and_chats/dialog.py +80 -0
  3708. pyromt-2.4.1/pyrogram/types/user_and_chats/emoji_status.py +128 -0
  3709. pyromt-2.4.1/pyrogram/types/user_and_chats/exported_folder_link.py +55 -0
  3710. pyromt-2.4.1/pyrogram/types/user_and_chats/folder.py +499 -0
  3711. pyromt-2.4.1/pyrogram/types/user_and_chats/forum_topic.py +154 -0
  3712. pyromt-2.4.1/pyrogram/types/user_and_chats/forum_topic_closed.py +29 -0
  3713. pyromt-2.4.1/pyrogram/types/user_and_chats/forum_topic_created.py +64 -0
  3714. pyromt-2.4.1/pyrogram/types/user_and_chats/forum_topic_deleted.py +44 -0
  3715. pyromt-2.4.1/pyrogram/types/user_and_chats/forum_topic_edited.py +71 -0
  3716. pyromt-2.4.1/pyrogram/types/user_and_chats/forum_topic_reopened.py +29 -0
  3717. pyromt-2.4.1/pyrogram/types/user_and_chats/general_forum_topic_hidden.py +29 -0
  3718. pyromt-2.4.1/pyrogram/types/user_and_chats/general_forum_topic_unhidden.py +29 -0
  3719. pyromt-2.4.1/pyrogram/types/user_and_chats/group_call_member.py +149 -0
  3720. pyromt-2.4.1/pyrogram/types/user_and_chats/invite_link_importer.py +62 -0
  3721. pyromt-2.4.1/pyrogram/types/user_and_chats/peer_channel.py +46 -0
  3722. pyromt-2.4.1/pyrogram/types/user_and_chats/peer_user.py +46 -0
  3723. pyromt-2.4.1/pyrogram/types/user_and_chats/restriction.py +51 -0
  3724. pyromt-2.4.1/pyrogram/types/user_and_chats/user.py +559 -0
  3725. pyromt-2.4.1/pyrogram/types/user_and_chats/username.py +58 -0
  3726. pyromt-2.4.1/pyrogram/types/user_and_chats/video_chat_ended.py +42 -0
  3727. pyromt-2.4.1/pyrogram/types/user_and_chats/video_chat_members_invited.py +51 -0
  3728. pyromt-2.4.1/pyrogram/types/user_and_chats/video_chat_scheduled.py +44 -0
  3729. pyromt-2.4.1/pyrogram/types/user_and_chats/video_chat_started.py +30 -0
  3730. pyromt-2.4.1/pyrogram/utils.py +530 -0
  3731. pyromt-2.4.1/srigram/errors/exceptions/__init__.py +645 -0
  3732. pyromt-2.4.1/srigram/errors/exceptions/all.py +683 -0
  3733. pyromt-2.4.1/srigram/errors/exceptions/bad_request_400.py +3567 -0
  3734. pyromt-2.4.1/srigram/errors/exceptions/flood_420.py +74 -0
  3735. pyromt-2.4.1/srigram/errors/exceptions/forbidden_403.py +340 -0
  3736. pyromt-2.4.1/srigram/errors/exceptions/internal_server_error_500.py +347 -0
  3737. pyromt-2.4.1/srigram/errors/exceptions/not_acceptable_406.py +172 -0
  3738. pyromt-2.4.1/srigram/errors/exceptions/see_other_303.py +53 -0
  3739. pyromt-2.4.1/srigram/errors/exceptions/service_unavailable_503.py +39 -0
  3740. pyromt-2.4.1/srigram/errors/exceptions/unauthorized_401.py +81 -0
  3741. pyromt-2.4.1/srigram/raw/all.py +2371 -0
  3742. pyromt-2.4.1/srigram/raw/base/__init__.py +415 -0
  3743. pyromt-2.4.1/srigram/raw/base/access_point_rule.py +43 -0
  3744. pyromt-2.4.1/srigram/raw/base/account/__init__.py +42 -0
  3745. pyromt-2.4.1/srigram/raw/base/account/authorization_form.py +53 -0
  3746. pyromt-2.4.1/srigram/raw/base/account/authorizations.py +53 -0
  3747. pyromt-2.4.1/srigram/raw/base/account/auto_download_settings.py +53 -0
  3748. pyromt-2.4.1/srigram/raw/base/account/auto_save_settings.py +53 -0
  3749. pyromt-2.4.1/srigram/raw/base/account/business_chat_links.py +53 -0
  3750. pyromt-2.4.1/srigram/raw/base/account/chat_themes.py +54 -0
  3751. pyromt-2.4.1/srigram/raw/base/account/connected_bots.py +53 -0
  3752. pyromt-2.4.1/srigram/raw/base/account/content_settings.py +53 -0
  3753. pyromt-2.4.1/srigram/raw/base/account/email_verified.py +54 -0
  3754. pyromt-2.4.1/srigram/raw/base/account/emoji_statuses.py +57 -0
  3755. pyromt-2.4.1/srigram/raw/base/account/paid_messages_revenue.py +53 -0
  3756. pyromt-2.4.1/srigram/raw/base/account/passkey_registration_options.py +53 -0
  3757. pyromt-2.4.1/srigram/raw/base/account/passkeys.py +53 -0
  3758. pyromt-2.4.1/srigram/raw/base/account/password.py +53 -0
  3759. pyromt-2.4.1/srigram/raw/base/account/password_input_settings.py +43 -0
  3760. pyromt-2.4.1/srigram/raw/base/account/password_settings.py +53 -0
  3761. pyromt-2.4.1/srigram/raw/base/account/privacy_rules.py +54 -0
  3762. pyromt-2.4.1/srigram/raw/base/account/reset_password_result.py +55 -0
  3763. pyromt-2.4.1/srigram/raw/base/account/resolved_business_chat_links.py +53 -0
  3764. pyromt-2.4.1/srigram/raw/base/account/saved_music_ids.py +54 -0
  3765. pyromt-2.4.1/srigram/raw/base/account/saved_ringtone.py +54 -0
  3766. pyromt-2.4.1/srigram/raw/base/account/saved_ringtones.py +54 -0
  3767. pyromt-2.4.1/srigram/raw/base/account/sent_email_code.py +53 -0
  3768. pyromt-2.4.1/srigram/raw/base/account/takeout.py +53 -0
  3769. pyromt-2.4.1/srigram/raw/base/account/themes.py +55 -0
  3770. pyromt-2.4.1/srigram/raw/base/account/tmp_password.py +53 -0
  3771. pyromt-2.4.1/srigram/raw/base/account/wall_papers.py +54 -0
  3772. pyromt-2.4.1/srigram/raw/base/account/web_authorizations.py +53 -0
  3773. pyromt-2.4.1/srigram/raw/base/account_days_ttl.py +53 -0
  3774. pyromt-2.4.1/srigram/raw/base/attach_menu_bot.py +43 -0
  3775. pyromt-2.4.1/srigram/raw/base/attach_menu_bot_icon.py +43 -0
  3776. pyromt-2.4.1/srigram/raw/base/attach_menu_bot_icon_color.py +43 -0
  3777. pyromt-2.4.1/srigram/raw/base/attach_menu_bots.py +54 -0
  3778. pyromt-2.4.1/srigram/raw/base/attach_menu_bots_bot.py +53 -0
  3779. pyromt-2.4.1/srigram/raw/base/attach_menu_peer_type.py +47 -0
  3780. pyromt-2.4.1/srigram/raw/base/auction_bid_level.py +43 -0
  3781. pyromt-2.4.1/srigram/raw/base/auth/__init__.py +23 -0
  3782. pyromt-2.4.1/srigram/raw/base/auth/authorization.py +61 -0
  3783. pyromt-2.4.1/srigram/raw/base/auth/code_type.py +47 -0
  3784. pyromt-2.4.1/srigram/raw/base/auth/exported_authorization.py +53 -0
  3785. pyromt-2.4.1/srigram/raw/base/auth/logged_out.py +53 -0
  3786. pyromt-2.4.1/srigram/raw/base/auth/login_token.py +56 -0
  3787. pyromt-2.4.1/srigram/raw/base/auth/passkey_login_options.py +53 -0
  3788. pyromt-2.4.1/srigram/raw/base/auth/password_recovery.py +53 -0
  3789. pyromt-2.4.1/srigram/raw/base/auth/sent_code.py +61 -0
  3790. pyromt-2.4.1/srigram/raw/base/auth/sent_code_type.py +53 -0
  3791. pyromt-2.4.1/srigram/raw/base/authorization.py +53 -0
  3792. pyromt-2.4.1/srigram/raw/base/auto_download_settings.py +43 -0
  3793. pyromt-2.4.1/srigram/raw/base/auto_save_exception.py +43 -0
  3794. pyromt-2.4.1/srigram/raw/base/auto_save_settings.py +43 -0
  3795. pyromt-2.4.1/srigram/raw/base/available_effect.py +43 -0
  3796. pyromt-2.4.1/srigram/raw/base/available_reaction.py +43 -0
  3797. pyromt-2.4.1/srigram/raw/base/bad_msg_notification.py +44 -0
  3798. pyromt-2.4.1/srigram/raw/base/bank_card_open_url.py +43 -0
  3799. pyromt-2.4.1/srigram/raw/base/base_theme.py +47 -0
  3800. pyromt-2.4.1/srigram/raw/base/bind_auth_key_inner.py +43 -0
  3801. pyromt-2.4.1/srigram/raw/base/birthday.py +43 -0
  3802. pyromt-2.4.1/srigram/raw/base/bool.py +255 -0
  3803. pyromt-2.4.1/srigram/raw/base/boost.py +43 -0
  3804. pyromt-2.4.1/srigram/raw/base/bot_app.py +44 -0
  3805. pyromt-2.4.1/srigram/raw/base/bot_app_settings.py +43 -0
  3806. pyromt-2.4.1/srigram/raw/base/bot_business_connection.py +43 -0
  3807. pyromt-2.4.1/srigram/raw/base/bot_command.py +53 -0
  3808. pyromt-2.4.1/srigram/raw/base/bot_command_scope.py +49 -0
  3809. pyromt-2.4.1/srigram/raw/base/bot_info.py +43 -0
  3810. pyromt-2.4.1/srigram/raw/base/bot_inline_message.py +49 -0
  3811. pyromt-2.4.1/srigram/raw/base/bot_inline_result.py +44 -0
  3812. pyromt-2.4.1/srigram/raw/base/bot_menu_button.py +55 -0
  3813. pyromt-2.4.1/srigram/raw/base/bot_preview_media.py +55 -0
  3814. pyromt-2.4.1/srigram/raw/base/bot_verification.py +43 -0
  3815. pyromt-2.4.1/srigram/raw/base/bot_verifier_settings.py +43 -0
  3816. pyromt-2.4.1/srigram/raw/base/bots/__init__.py +17 -0
  3817. pyromt-2.4.1/srigram/raw/base/bots/bot_info.py +53 -0
  3818. pyromt-2.4.1/srigram/raw/base/bots/popular_app_bots.py +53 -0
  3819. pyromt-2.4.1/srigram/raw/base/bots/preview_info.py +53 -0
  3820. pyromt-2.4.1/srigram/raw/base/business_away_message.py +43 -0
  3821. pyromt-2.4.1/srigram/raw/base/business_away_message_schedule.py +45 -0
  3822. pyromt-2.4.1/srigram/raw/base/business_bot_recipients.py +43 -0
  3823. pyromt-2.4.1/srigram/raw/base/business_bot_rights.py +43 -0
  3824. pyromt-2.4.1/srigram/raw/base/business_chat_link.py +54 -0
  3825. pyromt-2.4.1/srigram/raw/base/business_greeting_message.py +43 -0
  3826. pyromt-2.4.1/srigram/raw/base/business_intro.py +43 -0
  3827. pyromt-2.4.1/srigram/raw/base/business_location.py +43 -0
  3828. pyromt-2.4.1/srigram/raw/base/business_recipients.py +43 -0
  3829. pyromt-2.4.1/srigram/raw/base/business_weekly_open.py +43 -0
  3830. pyromt-2.4.1/srigram/raw/base/business_work_hours.py +43 -0
  3831. pyromt-2.4.1/srigram/raw/base/cdn_config.py +53 -0
  3832. pyromt-2.4.1/srigram/raw/base/cdn_public_key.py +43 -0
  3833. pyromt-2.4.1/srigram/raw/base/channel_admin_log_event.py +43 -0
  3834. pyromt-2.4.1/srigram/raw/base/channel_admin_log_event_action.py +93 -0
  3835. pyromt-2.4.1/srigram/raw/base/channel_admin_log_events_filter.py +43 -0
  3836. pyromt-2.4.1/srigram/raw/base/channel_location.py +44 -0
  3837. pyromt-2.4.1/srigram/raw/base/channel_messages_filter.py +44 -0
  3838. pyromt-2.4.1/srigram/raw/base/channel_participant.py +48 -0
  3839. pyromt-2.4.1/srigram/raw/base/channel_participants_filter.py +50 -0
  3840. pyromt-2.4.1/srigram/raw/base/channels/__init__.py +19 -0
  3841. pyromt-2.4.1/srigram/raw/base/channels/admin_log_results.py +53 -0
  3842. pyromt-2.4.1/srigram/raw/base/channels/channel_participant.py +53 -0
  3843. pyromt-2.4.1/srigram/raw/base/channels/channel_participants.py +54 -0
  3844. pyromt-2.4.1/srigram/raw/base/channels/send_as_peers.py +53 -0
  3845. pyromt-2.4.1/srigram/raw/base/channels/sponsored_message_report_result.py +55 -0
  3846. pyromt-2.4.1/srigram/raw/base/chat.py +47 -0
  3847. pyromt-2.4.1/srigram/raw/base/chat_admin_rights.py +43 -0
  3848. pyromt-2.4.1/srigram/raw/base/chat_admin_with_invites.py +43 -0
  3849. pyromt-2.4.1/srigram/raw/base/chat_banned_rights.py +43 -0
  3850. pyromt-2.4.1/srigram/raw/base/chat_full.py +44 -0
  3851. pyromt-2.4.1/srigram/raw/base/chat_invite.py +55 -0
  3852. pyromt-2.4.1/srigram/raw/base/chat_invite_importer.py +43 -0
  3853. pyromt-2.4.1/srigram/raw/base/chat_onlines.py +53 -0
  3854. pyromt-2.4.1/srigram/raw/base/chat_participant.py +45 -0
  3855. pyromt-2.4.1/srigram/raw/base/chat_participants.py +44 -0
  3856. pyromt-2.4.1/srigram/raw/base/chat_photo.py +44 -0
  3857. pyromt-2.4.1/srigram/raw/base/chat_reactions.py +45 -0
  3858. pyromt-2.4.1/srigram/raw/base/chat_theme.py +44 -0
  3859. pyromt-2.4.1/srigram/raw/base/chatlists/__init__.py +18 -0
  3860. pyromt-2.4.1/srigram/raw/base/chatlists/chatlist_invite.py +54 -0
  3861. pyromt-2.4.1/srigram/raw/base/chatlists/chatlist_updates.py +53 -0
  3862. pyromt-2.4.1/srigram/raw/base/chatlists/exported_chatlist_invite.py +53 -0
  3863. pyromt-2.4.1/srigram/raw/base/chatlists/exported_invites.py +53 -0
  3864. pyromt-2.4.1/srigram/raw/base/client_dh_inner_data.py +43 -0
  3865. pyromt-2.4.1/srigram/raw/base/code_settings.py +43 -0
  3866. pyromt-2.4.1/srigram/raw/base/config.py +53 -0
  3867. pyromt-2.4.1/srigram/raw/base/connected_bot.py +43 -0
  3868. pyromt-2.4.1/srigram/raw/base/connected_bot_star_ref.py +43 -0
  3869. pyromt-2.4.1/srigram/raw/base/contact.py +43 -0
  3870. pyromt-2.4.1/srigram/raw/base/contact_birthday.py +43 -0
  3871. pyromt-2.4.1/srigram/raw/base/contact_status.py +53 -0
  3872. pyromt-2.4.1/srigram/raw/base/contacts/__init__.py +22 -0
  3873. pyromt-2.4.1/srigram/raw/base/contacts/blocked.py +54 -0
  3874. pyromt-2.4.1/srigram/raw/base/contacts/contact_birthdays.py +53 -0
  3875. pyromt-2.4.1/srigram/raw/base/contacts/contacts.py +54 -0
  3876. pyromt-2.4.1/srigram/raw/base/contacts/found.py +53 -0
  3877. pyromt-2.4.1/srigram/raw/base/contacts/imported_contacts.py +53 -0
  3878. pyromt-2.4.1/srigram/raw/base/contacts/resolved_peer.py +54 -0
  3879. pyromt-2.4.1/srigram/raw/base/contacts/sponsored_peers.py +54 -0
  3880. pyromt-2.4.1/srigram/raw/base/contacts/top_peers.py +55 -0
  3881. pyromt-2.4.1/srigram/raw/base/data_json.py +55 -0
  3882. pyromt-2.4.1/srigram/raw/base/dc_option.py +43 -0
  3883. pyromt-2.4.1/srigram/raw/base/default_history_ttl.py +53 -0
  3884. pyromt-2.4.1/srigram/raw/base/destroy_auth_key_res.py +55 -0
  3885. pyromt-2.4.1/srigram/raw/base/destroy_session_res.py +54 -0
  3886. pyromt-2.4.1/srigram/raw/base/dialog.py +44 -0
  3887. pyromt-2.4.1/srigram/raw/base/dialog_filter.py +45 -0
  3888. pyromt-2.4.1/srigram/raw/base/dialog_filter_suggested.py +53 -0
  3889. pyromt-2.4.1/srigram/raw/base/dialog_peer.py +54 -0
  3890. pyromt-2.4.1/srigram/raw/base/disallowed_gifts_settings.py +43 -0
  3891. pyromt-2.4.1/srigram/raw/base/document.py +57 -0
  3892. pyromt-2.4.1/srigram/raw/base/document_attribute.py +50 -0
  3893. pyromt-2.4.1/srigram/raw/base/draft_message.py +44 -0
  3894. pyromt-2.4.1/srigram/raw/base/email_verification.py +45 -0
  3895. pyromt-2.4.1/srigram/raw/base/email_verify_purpose.py +45 -0
  3896. pyromt-2.4.1/srigram/raw/base/emoji_group.py +45 -0
  3897. pyromt-2.4.1/srigram/raw/base/emoji_keyword.py +44 -0
  3898. pyromt-2.4.1/srigram/raw/base/emoji_keywords_difference.py +54 -0
  3899. pyromt-2.4.1/srigram/raw/base/emoji_language.py +53 -0
  3900. pyromt-2.4.1/srigram/raw/base/emoji_list.py +58 -0
  3901. pyromt-2.4.1/srigram/raw/base/emoji_status.py +46 -0
  3902. pyromt-2.4.1/srigram/raw/base/emoji_url.py +53 -0
  3903. pyromt-2.4.1/srigram/raw/base/encrypted_chat.py +58 -0
  3904. pyromt-2.4.1/srigram/raw/base/encrypted_file.py +54 -0
  3905. pyromt-2.4.1/srigram/raw/base/encrypted_message.py +44 -0
  3906. pyromt-2.4.1/srigram/raw/base/error.py +43 -0
  3907. pyromt-2.4.1/srigram/raw/base/exported_chat_invite.py +54 -0
  3908. pyromt-2.4.1/srigram/raw/base/exported_chatlist_invite.py +53 -0
  3909. pyromt-2.4.1/srigram/raw/base/exported_contact_token.py +53 -0
  3910. pyromt-2.4.1/srigram/raw/base/exported_message_link.py +53 -0
  3911. pyromt-2.4.1/srigram/raw/base/exported_story_link.py +53 -0
  3912. pyromt-2.4.1/srigram/raw/base/fact_check.py +53 -0
  3913. pyromt-2.4.1/srigram/raw/base/file_hash.py +55 -0
  3914. pyromt-2.4.1/srigram/raw/base/folder.py +43 -0
  3915. pyromt-2.4.1/srigram/raw/base/folder_peer.py +43 -0
  3916. pyromt-2.4.1/srigram/raw/base/forum_topic.py +44 -0
  3917. pyromt-2.4.1/srigram/raw/base/found_story.py +43 -0
  3918. pyromt-2.4.1/srigram/raw/base/fragment/__init__.py +15 -0
  3919. pyromt-2.4.1/srigram/raw/base/fragment/collectible_info.py +53 -0
  3920. pyromt-2.4.1/srigram/raw/base/game.py +43 -0
  3921. pyromt-2.4.1/srigram/raw/base/geo_point.py +44 -0
  3922. pyromt-2.4.1/srigram/raw/base/geo_point_address.py +43 -0
  3923. pyromt-2.4.1/srigram/raw/base/global_privacy_settings.py +54 -0
  3924. pyromt-2.4.1/srigram/raw/base/group_call.py +44 -0
  3925. pyromt-2.4.1/srigram/raw/base/group_call_donor.py +43 -0
  3926. pyromt-2.4.1/srigram/raw/base/group_call_message.py +43 -0
  3927. pyromt-2.4.1/srigram/raw/base/group_call_participant.py +43 -0
  3928. pyromt-2.4.1/srigram/raw/base/group_call_participant_video.py +43 -0
  3929. pyromt-2.4.1/srigram/raw/base/group_call_participant_video_source_group.py +43 -0
  3930. pyromt-2.4.1/srigram/raw/base/group_call_stream_channel.py +43 -0
  3931. pyromt-2.4.1/srigram/raw/base/help/__init__.py +35 -0
  3932. pyromt-2.4.1/srigram/raw/base/help/app_config.py +54 -0
  3933. pyromt-2.4.1/srigram/raw/base/help/app_update.py +54 -0
  3934. pyromt-2.4.1/srigram/raw/base/help/config_simple.py +43 -0
  3935. pyromt-2.4.1/srigram/raw/base/help/countries_list.py +54 -0
  3936. pyromt-2.4.1/srigram/raw/base/help/country.py +43 -0
  3937. pyromt-2.4.1/srigram/raw/base/help/country_code.py +43 -0
  3938. pyromt-2.4.1/srigram/raw/base/help/deep_link_info.py +54 -0
  3939. pyromt-2.4.1/srigram/raw/base/help/invite_text.py +53 -0
  3940. pyromt-2.4.1/srigram/raw/base/help/passport_config.py +54 -0
  3941. pyromt-2.4.1/srigram/raw/base/help/peer_color_option.py +43 -0
  3942. pyromt-2.4.1/srigram/raw/base/help/peer_color_set.py +44 -0
  3943. pyromt-2.4.1/srigram/raw/base/help/peer_colors.py +55 -0
  3944. pyromt-2.4.1/srigram/raw/base/help/premium_promo.py +53 -0
  3945. pyromt-2.4.1/srigram/raw/base/help/promo_data.py +54 -0
  3946. pyromt-2.4.1/srigram/raw/base/help/recent_me_urls.py +53 -0
  3947. pyromt-2.4.1/srigram/raw/base/help/support.py +53 -0
  3948. pyromt-2.4.1/srigram/raw/base/help/support_name.py +53 -0
  3949. pyromt-2.4.1/srigram/raw/base/help/terms_of_service.py +43 -0
  3950. pyromt-2.4.1/srigram/raw/base/help/terms_of_service_update.py +54 -0
  3951. pyromt-2.4.1/srigram/raw/base/help/timezones_list.py +54 -0
  3952. pyromt-2.4.1/srigram/raw/base/help/user_info.py +55 -0
  3953. pyromt-2.4.1/srigram/raw/base/high_score.py +43 -0
  3954. pyromt-2.4.1/srigram/raw/base/http_wait.py +43 -0
  3955. pyromt-2.4.1/srigram/raw/base/imported_contact.py +43 -0
  3956. pyromt-2.4.1/srigram/raw/base/inline_bot_switch_pm.py +43 -0
  3957. pyromt-2.4.1/srigram/raw/base/inline_bot_web_view.py +43 -0
  3958. pyromt-2.4.1/srigram/raw/base/inline_query_peer_type.py +48 -0
  3959. pyromt-2.4.1/srigram/raw/base/input_app_event.py +43 -0
  3960. pyromt-2.4.1/srigram/raw/base/input_bot_app.py +44 -0
  3961. pyromt-2.4.1/srigram/raw/base/input_bot_inline_message.py +50 -0
  3962. pyromt-2.4.1/srigram/raw/base/input_bot_inline_message_id.py +44 -0
  3963. pyromt-2.4.1/srigram/raw/base/input_bot_inline_result.py +46 -0
  3964. pyromt-2.4.1/srigram/raw/base/input_business_away_message.py +43 -0
  3965. pyromt-2.4.1/srigram/raw/base/input_business_bot_recipients.py +43 -0
  3966. pyromt-2.4.1/srigram/raw/base/input_business_chat_link.py +43 -0
  3967. pyromt-2.4.1/srigram/raw/base/input_business_greeting_message.py +43 -0
  3968. pyromt-2.4.1/srigram/raw/base/input_business_intro.py +43 -0
  3969. pyromt-2.4.1/srigram/raw/base/input_business_recipients.py +43 -0
  3970. pyromt-2.4.1/srigram/raw/base/input_channel.py +45 -0
  3971. pyromt-2.4.1/srigram/raw/base/input_chat_photo.py +45 -0
  3972. pyromt-2.4.1/srigram/raw/base/input_chat_theme.py +45 -0
  3973. pyromt-2.4.1/srigram/raw/base/input_chatlist.py +43 -0
  3974. pyromt-2.4.1/srigram/raw/base/input_check_password_srp.py +44 -0
  3975. pyromt-2.4.1/srigram/raw/base/input_client_proxy.py +43 -0
  3976. pyromt-2.4.1/srigram/raw/base/input_collectible.py +44 -0
  3977. pyromt-2.4.1/srigram/raw/base/input_contact.py +43 -0
  3978. pyromt-2.4.1/srigram/raw/base/input_dialog_peer.py +44 -0
  3979. pyromt-2.4.1/srigram/raw/base/input_document.py +44 -0
  3980. pyromt-2.4.1/srigram/raw/base/input_encrypted_chat.py +43 -0
  3981. pyromt-2.4.1/srigram/raw/base/input_encrypted_file.py +46 -0
  3982. pyromt-2.4.1/srigram/raw/base/input_file.py +45 -0
  3983. pyromt-2.4.1/srigram/raw/base/input_file_location.py +52 -0
  3984. pyromt-2.4.1/srigram/raw/base/input_folder_peer.py +43 -0
  3985. pyromt-2.4.1/srigram/raw/base/input_game.py +44 -0
  3986. pyromt-2.4.1/srigram/raw/base/input_geo_point.py +44 -0
  3987. pyromt-2.4.1/srigram/raw/base/input_group_call.py +45 -0
  3988. pyromt-2.4.1/srigram/raw/base/input_invoice.py +57 -0
  3989. pyromt-2.4.1/srigram/raw/base/input_media.py +62 -0
  3990. pyromt-2.4.1/srigram/raw/base/input_message.py +46 -0
  3991. pyromt-2.4.1/srigram/raw/base/input_notify_peer.py +47 -0
  3992. pyromt-2.4.1/srigram/raw/base/input_passkey_credential.py +44 -0
  3993. pyromt-2.4.1/srigram/raw/base/input_passkey_response.py +44 -0
  3994. pyromt-2.4.1/srigram/raw/base/input_payment_credentials.py +46 -0
  3995. pyromt-2.4.1/srigram/raw/base/input_peer.py +49 -0
  3996. pyromt-2.4.1/srigram/raw/base/input_peer_notify_settings.py +43 -0
  3997. pyromt-2.4.1/srigram/raw/base/input_phone_call.py +43 -0
  3998. pyromt-2.4.1/srigram/raw/base/input_photo.py +44 -0
  3999. pyromt-2.4.1/srigram/raw/base/input_privacy_key.py +56 -0
  4000. pyromt-2.4.1/srigram/raw/base/input_privacy_rule.py +54 -0
  4001. pyromt-2.4.1/srigram/raw/base/input_quick_reply_shortcut.py +44 -0
  4002. pyromt-2.4.1/srigram/raw/base/input_reply_to.py +45 -0
  4003. pyromt-2.4.1/srigram/raw/base/input_saved_star_gift.py +45 -0
  4004. pyromt-2.4.1/srigram/raw/base/input_secure_file.py +44 -0
  4005. pyromt-2.4.1/srigram/raw/base/input_secure_value.py +43 -0
  4006. pyromt-2.4.1/srigram/raw/base/input_single_media.py +43 -0
  4007. pyromt-2.4.1/srigram/raw/base/input_star_gift_auction.py +44 -0
  4008. pyromt-2.4.1/srigram/raw/base/input_stars_transaction.py +43 -0
  4009. pyromt-2.4.1/srigram/raw/base/input_sticker_set.py +54 -0
  4010. pyromt-2.4.1/srigram/raw/base/input_sticker_set_item.py +43 -0
  4011. pyromt-2.4.1/srigram/raw/base/input_stickered_media.py +44 -0
  4012. pyromt-2.4.1/srigram/raw/base/input_store_payment_purpose.py +50 -0
  4013. pyromt-2.4.1/srigram/raw/base/input_theme.py +44 -0
  4014. pyromt-2.4.1/srigram/raw/base/input_theme_settings.py +43 -0
  4015. pyromt-2.4.1/srigram/raw/base/input_user.py +46 -0
  4016. pyromt-2.4.1/srigram/raw/base/input_wall_paper.py +45 -0
  4017. pyromt-2.4.1/srigram/raw/base/input_web_document.py +43 -0
  4018. pyromt-2.4.1/srigram/raw/base/input_web_file_location.py +45 -0
  4019. pyromt-2.4.1/srigram/raw/base/invoice.py +43 -0
  4020. pyromt-2.4.1/srigram/raw/base/ip_port.py +44 -0
  4021. pyromt-2.4.1/srigram/raw/base/json_object_value.py +43 -0
  4022. pyromt-2.4.1/srigram/raw/base/json_value.py +48 -0
  4023. pyromt-2.4.1/srigram/raw/base/keyboard_button.py +60 -0
  4024. pyromt-2.4.1/srigram/raw/base/keyboard_button_row.py +43 -0
  4025. pyromt-2.4.1/srigram/raw/base/keyboard_button_style.py +43 -0
  4026. pyromt-2.4.1/srigram/raw/base/labeled_price.py +43 -0
  4027. pyromt-2.4.1/srigram/raw/base/lang_pack_difference.py +54 -0
  4028. pyromt-2.4.1/srigram/raw/base/lang_pack_language.py +54 -0
  4029. pyromt-2.4.1/srigram/raw/base/lang_pack_string.py +55 -0
  4030. pyromt-2.4.1/srigram/raw/base/mask_coords.py +43 -0
  4031. pyromt-2.4.1/srigram/raw/base/media_area.py +51 -0
  4032. pyromt-2.4.1/srigram/raw/base/media_area_coordinates.py +43 -0
  4033. pyromt-2.4.1/srigram/raw/base/message.py +45 -0
  4034. pyromt-2.4.1/srigram/raw/base/message_action.py +104 -0
  4035. pyromt-2.4.1/srigram/raw/base/message_entity.py +63 -0
  4036. pyromt-2.4.1/srigram/raw/base/message_extended_media.py +44 -0
  4037. pyromt-2.4.1/srigram/raw/base/message_fwd_header.py +43 -0
  4038. pyromt-2.4.1/srigram/raw/base/message_media.py +72 -0
  4039. pyromt-2.4.1/srigram/raw/base/message_peer_reaction.py +43 -0
  4040. pyromt-2.4.1/srigram/raw/base/message_peer_vote.py +45 -0
  4041. pyromt-2.4.1/srigram/raw/base/message_range.py +53 -0
  4042. pyromt-2.4.1/srigram/raw/base/message_reactions.py +43 -0
  4043. pyromt-2.4.1/srigram/raw/base/message_reactor.py +43 -0
  4044. pyromt-2.4.1/srigram/raw/base/message_replies.py +43 -0
  4045. pyromt-2.4.1/srigram/raw/base/message_reply_header.py +44 -0
  4046. pyromt-2.4.1/srigram/raw/base/message_report_option.py +43 -0
  4047. pyromt-2.4.1/srigram/raw/base/message_views.py +43 -0
  4048. pyromt-2.4.1/srigram/raw/base/messages/__init__.py +76 -0
  4049. pyromt-2.4.1/srigram/raw/base/messages/affected_found_messages.py +53 -0
  4050. pyromt-2.4.1/srigram/raw/base/messages/affected_history.py +59 -0
  4051. pyromt-2.4.1/srigram/raw/base/messages/affected_messages.py +56 -0
  4052. pyromt-2.4.1/srigram/raw/base/messages/all_stickers.py +56 -0
  4053. pyromt-2.4.1/srigram/raw/base/messages/archived_stickers.py +53 -0
  4054. pyromt-2.4.1/srigram/raw/base/messages/available_effects.py +54 -0
  4055. pyromt-2.4.1/srigram/raw/base/messages/available_reactions.py +54 -0
  4056. pyromt-2.4.1/srigram/raw/base/messages/bot_app.py +53 -0
  4057. pyromt-2.4.1/srigram/raw/base/messages/bot_callback_answer.py +53 -0
  4058. pyromt-2.4.1/srigram/raw/base/messages/bot_prepared_inline_message.py +53 -0
  4059. pyromt-2.4.1/srigram/raw/base/messages/bot_results.py +53 -0
  4060. pyromt-2.4.1/srigram/raw/base/messages/chat_admins_with_invites.py +53 -0
  4061. pyromt-2.4.1/srigram/raw/base/messages/chat_full.py +54 -0
  4062. pyromt-2.4.1/srigram/raw/base/messages/chat_invite_importers.py +53 -0
  4063. pyromt-2.4.1/srigram/raw/base/messages/chats.py +61 -0
  4064. pyromt-2.4.1/srigram/raw/base/messages/checked_history_import_peer.py +53 -0
  4065. pyromt-2.4.1/srigram/raw/base/messages/dh_config.py +54 -0
  4066. pyromt-2.4.1/srigram/raw/base/messages/dialog_filters.py +53 -0
  4067. pyromt-2.4.1/srigram/raw/base/messages/dialogs.py +55 -0
  4068. pyromt-2.4.1/srigram/raw/base/messages/discussion_message.py +53 -0
  4069. pyromt-2.4.1/srigram/raw/base/messages/emoji_game_info.py +54 -0
  4070. pyromt-2.4.1/srigram/raw/base/messages/emoji_game_outcome.py +43 -0
  4071. pyromt-2.4.1/srigram/raw/base/messages/emoji_groups.py +57 -0
  4072. pyromt-2.4.1/srigram/raw/base/messages/exported_chat_invite.py +55 -0
  4073. pyromt-2.4.1/srigram/raw/base/messages/exported_chat_invites.py +53 -0
  4074. pyromt-2.4.1/srigram/raw/base/messages/faved_stickers.py +54 -0
  4075. pyromt-2.4.1/srigram/raw/base/messages/featured_stickers.py +56 -0
  4076. pyromt-2.4.1/srigram/raw/base/messages/forum_topics.py +54 -0
  4077. pyromt-2.4.1/srigram/raw/base/messages/found_sticker_sets.py +55 -0
  4078. pyromt-2.4.1/srigram/raw/base/messages/found_stickers.py +54 -0
  4079. pyromt-2.4.1/srigram/raw/base/messages/high_scores.py +54 -0
  4080. pyromt-2.4.1/srigram/raw/base/messages/history_import.py +53 -0
  4081. pyromt-2.4.1/srigram/raw/base/messages/history_import_parsed.py +53 -0
  4082. pyromt-2.4.1/srigram/raw/base/messages/inactive_chats.py +53 -0
  4083. pyromt-2.4.1/srigram/raw/base/messages/invited_users.py +55 -0
  4084. pyromt-2.4.1/srigram/raw/base/messages/message_edit_data.py +53 -0
  4085. pyromt-2.4.1/srigram/raw/base/messages/message_reactions_list.py +53 -0
  4086. pyromt-2.4.1/srigram/raw/base/messages/message_views.py +53 -0
  4087. pyromt-2.4.1/srigram/raw/base/messages/messages.py +70 -0
  4088. pyromt-2.4.1/srigram/raw/base/messages/my_stickers.py +53 -0
  4089. pyromt-2.4.1/srigram/raw/base/messages/peer_dialogs.py +54 -0
  4090. pyromt-2.4.1/srigram/raw/base/messages/peer_settings.py +53 -0
  4091. pyromt-2.4.1/srigram/raw/base/messages/prepared_inline_message.py +53 -0
  4092. pyromt-2.4.1/srigram/raw/base/messages/quick_replies.py +54 -0
  4093. pyromt-2.4.1/srigram/raw/base/messages/reactions.py +56 -0
  4094. pyromt-2.4.1/srigram/raw/base/messages/recent_stickers.py +54 -0
  4095. pyromt-2.4.1/srigram/raw/base/messages/saved_dialogs.py +57 -0
  4096. pyromt-2.4.1/srigram/raw/base/messages/saved_gifs.py +54 -0
  4097. pyromt-2.4.1/srigram/raw/base/messages/saved_reaction_tags.py +54 -0
  4098. pyromt-2.4.1/srigram/raw/base/messages/search_counter.py +53 -0
  4099. pyromt-2.4.1/srigram/raw/base/messages/search_results_calendar.py +53 -0
  4100. pyromt-2.4.1/srigram/raw/base/messages/search_results_positions.py +53 -0
  4101. pyromt-2.4.1/srigram/raw/base/messages/sent_encrypted_message.py +56 -0
  4102. pyromt-2.4.1/srigram/raw/base/messages/sponsored_messages.py +54 -0
  4103. pyromt-2.4.1/srigram/raw/base/messages/sticker_set.py +62 -0
  4104. pyromt-2.4.1/srigram/raw/base/messages/sticker_set_install_result.py +54 -0
  4105. pyromt-2.4.1/srigram/raw/base/messages/stickers.py +54 -0
  4106. pyromt-2.4.1/srigram/raw/base/messages/transcribed_audio.py +53 -0
  4107. pyromt-2.4.1/srigram/raw/base/messages/translated_text.py +53 -0
  4108. pyromt-2.4.1/srigram/raw/base/messages/votes_list.py +53 -0
  4109. pyromt-2.4.1/srigram/raw/base/messages/web_page.py +53 -0
  4110. pyromt-2.4.1/srigram/raw/base/messages/web_page_preview.py +53 -0
  4111. pyromt-2.4.1/srigram/raw/base/messages_filter.py +59 -0
  4112. pyromt-2.4.1/srigram/raw/base/missing_invitee.py +43 -0
  4113. pyromt-2.4.1/srigram/raw/base/msg_detailed_info.py +44 -0
  4114. pyromt-2.4.1/srigram/raw/base/msg_resend_req.py +44 -0
  4115. pyromt-2.4.1/srigram/raw/base/msgs_ack.py +43 -0
  4116. pyromt-2.4.1/srigram/raw/base/msgs_all_info.py +43 -0
  4117. pyromt-2.4.1/srigram/raw/base/msgs_state_info.py +43 -0
  4118. pyromt-2.4.1/srigram/raw/base/msgs_state_req.py +43 -0
  4119. pyromt-2.4.1/srigram/raw/base/my_boost.py +43 -0
  4120. pyromt-2.4.1/srigram/raw/base/nearest_dc.py +53 -0
  4121. pyromt-2.4.1/srigram/raw/base/new_session.py +43 -0
  4122. pyromt-2.4.1/srigram/raw/base/notification_sound.py +46 -0
  4123. pyromt-2.4.1/srigram/raw/base/notify_peer.py +47 -0
  4124. pyromt-2.4.1/srigram/raw/base/null.py +43 -0
  4125. pyromt-2.4.1/srigram/raw/base/outbox_read_date.py +53 -0
  4126. pyromt-2.4.1/srigram/raw/base/page.py +43 -0
  4127. pyromt-2.4.1/srigram/raw/base/page_block.py +71 -0
  4128. pyromt-2.4.1/srigram/raw/base/page_caption.py +43 -0
  4129. pyromt-2.4.1/srigram/raw/base/page_list_item.py +44 -0
  4130. pyromt-2.4.1/srigram/raw/base/page_list_ordered_item.py +44 -0
  4131. pyromt-2.4.1/srigram/raw/base/page_related_article.py +43 -0
  4132. pyromt-2.4.1/srigram/raw/base/page_table_cell.py +43 -0
  4133. pyromt-2.4.1/srigram/raw/base/page_table_row.py +43 -0
  4134. pyromt-2.4.1/srigram/raw/base/paid_reaction_privacy.py +45 -0
  4135. pyromt-2.4.1/srigram/raw/base/passkey.py +53 -0
  4136. pyromt-2.4.1/srigram/raw/base/password_kdf_algo.py +44 -0
  4137. pyromt-2.4.1/srigram/raw/base/payment_charge.py +43 -0
  4138. pyromt-2.4.1/srigram/raw/base/payment_form_method.py +43 -0
  4139. pyromt-2.4.1/srigram/raw/base/payment_requested_info.py +43 -0
  4140. pyromt-2.4.1/srigram/raw/base/payment_saved_credentials.py +43 -0
  4141. pyromt-2.4.1/srigram/raw/base/payments/__init__.py +42 -0
  4142. pyromt-2.4.1/srigram/raw/base/payments/bank_card_data.py +53 -0
  4143. pyromt-2.4.1/srigram/raw/base/payments/check_can_send_gift_result.py +54 -0
  4144. pyromt-2.4.1/srigram/raw/base/payments/checked_gift_code.py +53 -0
  4145. pyromt-2.4.1/srigram/raw/base/payments/connected_star_ref_bots.py +56 -0
  4146. pyromt-2.4.1/srigram/raw/base/payments/exported_invoice.py +53 -0
  4147. pyromt-2.4.1/srigram/raw/base/payments/giveaway_info.py +54 -0
  4148. pyromt-2.4.1/srigram/raw/base/payments/payment_form.py +55 -0
  4149. pyromt-2.4.1/srigram/raw/base/payments/payment_receipt.py +54 -0
  4150. pyromt-2.4.1/srigram/raw/base/payments/payment_result.py +55 -0
  4151. pyromt-2.4.1/srigram/raw/base/payments/resale_star_gifts.py +53 -0
  4152. pyromt-2.4.1/srigram/raw/base/payments/saved_info.py +53 -0
  4153. pyromt-2.4.1/srigram/raw/base/payments/saved_star_gifts.py +55 -0
  4154. pyromt-2.4.1/srigram/raw/base/payments/star_gift_active_auctions.py +54 -0
  4155. pyromt-2.4.1/srigram/raw/base/payments/star_gift_auction_acquired_gifts.py +53 -0
  4156. pyromt-2.4.1/srigram/raw/base/payments/star_gift_auction_state.py +53 -0
  4157. pyromt-2.4.1/srigram/raw/base/payments/star_gift_collections.py +54 -0
  4158. pyromt-2.4.1/srigram/raw/base/payments/star_gift_upgrade_attributes.py +53 -0
  4159. pyromt-2.4.1/srigram/raw/base/payments/star_gift_upgrade_preview.py +53 -0
  4160. pyromt-2.4.1/srigram/raw/base/payments/star_gift_withdrawal_url.py +53 -0
  4161. pyromt-2.4.1/srigram/raw/base/payments/star_gifts.py +54 -0
  4162. pyromt-2.4.1/srigram/raw/base/payments/stars_revenue_ads_account_url.py +53 -0
  4163. pyromt-2.4.1/srigram/raw/base/payments/stars_revenue_stats.py +53 -0
  4164. pyromt-2.4.1/srigram/raw/base/payments/stars_revenue_withdrawal_url.py +53 -0
  4165. pyromt-2.4.1/srigram/raw/base/payments/stars_status.py +56 -0
  4166. pyromt-2.4.1/srigram/raw/base/payments/suggested_star_ref_bots.py +53 -0
  4167. pyromt-2.4.1/srigram/raw/base/payments/unique_star_gift.py +53 -0
  4168. pyromt-2.4.1/srigram/raw/base/payments/unique_star_gift_value_info.py +53 -0
  4169. pyromt-2.4.1/srigram/raw/base/payments/validated_requested_info.py +53 -0
  4170. pyromt-2.4.1/srigram/raw/base/peer.py +55 -0
  4171. pyromt-2.4.1/srigram/raw/base/peer_blocked.py +43 -0
  4172. pyromt-2.4.1/srigram/raw/base/peer_color.py +45 -0
  4173. pyromt-2.4.1/srigram/raw/base/peer_located.py +44 -0
  4174. pyromt-2.4.1/srigram/raw/base/peer_notify_settings.py +53 -0
  4175. pyromt-2.4.1/srigram/raw/base/peer_settings.py +43 -0
  4176. pyromt-2.4.1/srigram/raw/base/peer_stories.py +43 -0
  4177. pyromt-2.4.1/srigram/raw/base/pending_suggestion.py +43 -0
  4178. pyromt-2.4.1/srigram/raw/base/phone/__init__.py +22 -0
  4179. pyromt-2.4.1/srigram/raw/base/phone/exported_group_call_invite.py +53 -0
  4180. pyromt-2.4.1/srigram/raw/base/phone/group_call.py +53 -0
  4181. pyromt-2.4.1/srigram/raw/base/phone/group_call_stars.py +53 -0
  4182. pyromt-2.4.1/srigram/raw/base/phone/group_call_stream_channels.py +53 -0
  4183. pyromt-2.4.1/srigram/raw/base/phone/group_call_stream_rtmp_url.py +53 -0
  4184. pyromt-2.4.1/srigram/raw/base/phone/group_participants.py +53 -0
  4185. pyromt-2.4.1/srigram/raw/base/phone/join_as_peers.py +53 -0
  4186. pyromt-2.4.1/srigram/raw/base/phone/phone_call.py +55 -0
  4187. pyromt-2.4.1/srigram/raw/base/phone_call.py +48 -0
  4188. pyromt-2.4.1/srigram/raw/base/phone_call_discard_reason.py +47 -0
  4189. pyromt-2.4.1/srigram/raw/base/phone_call_protocol.py +43 -0
  4190. pyromt-2.4.1/srigram/raw/base/phone_connection.py +44 -0
  4191. pyromt-2.4.1/srigram/raw/base/photo.py +44 -0
  4192. pyromt-2.4.1/srigram/raw/base/photo_size.py +48 -0
  4193. pyromt-2.4.1/srigram/raw/base/photos/__init__.py +16 -0
  4194. pyromt-2.4.1/srigram/raw/base/photos/photo.py +55 -0
  4195. pyromt-2.4.1/srigram/raw/base/photos/photos.py +54 -0
  4196. pyromt-2.4.1/srigram/raw/base/poll.py +43 -0
  4197. pyromt-2.4.1/srigram/raw/base/poll_answer.py +43 -0
  4198. pyromt-2.4.1/srigram/raw/base/poll_answer_voters.py +43 -0
  4199. pyromt-2.4.1/srigram/raw/base/poll_results.py +43 -0
  4200. pyromt-2.4.1/srigram/raw/base/pong.py +54 -0
  4201. pyromt-2.4.1/srigram/raw/base/popular_contact.py +43 -0
  4202. pyromt-2.4.1/srigram/raw/base/post_address.py +43 -0
  4203. pyromt-2.4.1/srigram/raw/base/post_interaction_counters.py +44 -0
  4204. pyromt-2.4.1/srigram/raw/base/pq_inner_data.py +46 -0
  4205. pyromt-2.4.1/srigram/raw/base/premium/__init__.py +17 -0
  4206. pyromt-2.4.1/srigram/raw/base/premium/boosts_list.py +54 -0
  4207. pyromt-2.4.1/srigram/raw/base/premium/boosts_status.py +53 -0
  4208. pyromt-2.4.1/srigram/raw/base/premium/my_boosts.py +54 -0
  4209. pyromt-2.4.1/srigram/raw/base/premium_gift_code_option.py +53 -0
  4210. pyromt-2.4.1/srigram/raw/base/premium_subscription_option.py +43 -0
  4211. pyromt-2.4.1/srigram/raw/base/prepaid_giveaway.py +44 -0
  4212. pyromt-2.4.1/srigram/raw/base/privacy_key.py +56 -0
  4213. pyromt-2.4.1/srigram/raw/base/privacy_rule.py +54 -0
  4214. pyromt-2.4.1/srigram/raw/base/profile_tab.py +50 -0
  4215. pyromt-2.4.1/srigram/raw/base/public_forward.py +44 -0
  4216. pyromt-2.4.1/srigram/raw/base/quick_reply.py +43 -0
  4217. pyromt-2.4.1/srigram/raw/base/reaction.py +46 -0
  4218. pyromt-2.4.1/srigram/raw/base/reaction_count.py +43 -0
  4219. pyromt-2.4.1/srigram/raw/base/reaction_notifications_from.py +44 -0
  4220. pyromt-2.4.1/srigram/raw/base/reactions_notify_settings.py +54 -0
  4221. pyromt-2.4.1/srigram/raw/base/read_participant_date.py +53 -0
  4222. pyromt-2.4.1/srigram/raw/base/received_notify_message.py +53 -0
  4223. pyromt-2.4.1/srigram/raw/base/recent_me_url.py +47 -0
  4224. pyromt-2.4.1/srigram/raw/base/recent_story.py +53 -0
  4225. pyromt-2.4.1/srigram/raw/base/reply_markup.py +46 -0
  4226. pyromt-2.4.1/srigram/raw/base/report_reason.py +52 -0
  4227. pyromt-2.4.1/srigram/raw/base/report_result.py +56 -0
  4228. pyromt-2.4.1/srigram/raw/base/request_peer_type.py +45 -0
  4229. pyromt-2.4.1/srigram/raw/base/requested_peer.py +45 -0
  4230. pyromt-2.4.1/srigram/raw/base/requirement_to_contact.py +55 -0
  4231. pyromt-2.4.1/srigram/raw/base/res_pq.py +54 -0
  4232. pyromt-2.4.1/srigram/raw/base/restriction_reason.py +43 -0
  4233. pyromt-2.4.1/srigram/raw/base/rich_text.py +58 -0
  4234. pyromt-2.4.1/srigram/raw/base/rpc_drop_answer.py +55 -0
  4235. pyromt-2.4.1/srigram/raw/base/rpc_error.py +43 -0
  4236. pyromt-2.4.1/srigram/raw/base/rpc_result.py +43 -0
  4237. pyromt-2.4.1/srigram/raw/base/saved_contact.py +53 -0
  4238. pyromt-2.4.1/srigram/raw/base/saved_dialog.py +44 -0
  4239. pyromt-2.4.1/srigram/raw/base/saved_reaction_tag.py +43 -0
  4240. pyromt-2.4.1/srigram/raw/base/saved_star_gift.py +43 -0
  4241. pyromt-2.4.1/srigram/raw/base/search_posts_flood.py +53 -0
  4242. pyromt-2.4.1/srigram/raw/base/search_results_calendar_period.py +43 -0
  4243. pyromt-2.4.1/srigram/raw/base/search_results_position.py +43 -0
  4244. pyromt-2.4.1/srigram/raw/base/secure_credentials_encrypted.py +43 -0
  4245. pyromt-2.4.1/srigram/raw/base/secure_data.py +43 -0
  4246. pyromt-2.4.1/srigram/raw/base/secure_file.py +44 -0
  4247. pyromt-2.4.1/srigram/raw/base/secure_password_kdf_algo.py +45 -0
  4248. pyromt-2.4.1/srigram/raw/base/secure_plain_data.py +44 -0
  4249. pyromt-2.4.1/srigram/raw/base/secure_required_type.py +44 -0
  4250. pyromt-2.4.1/srigram/raw/base/secure_secret_settings.py +43 -0
  4251. pyromt-2.4.1/srigram/raw/base/secure_value.py +55 -0
  4252. pyromt-2.4.1/srigram/raw/base/secure_value_error.py +51 -0
  4253. pyromt-2.4.1/srigram/raw/base/secure_value_hash.py +43 -0
  4254. pyromt-2.4.1/srigram/raw/base/secure_value_type.py +55 -0
  4255. pyromt-2.4.1/srigram/raw/base/send_as_peer.py +43 -0
  4256. pyromt-2.4.1/srigram/raw/base/send_message_action.py +61 -0
  4257. pyromt-2.4.1/srigram/raw/base/server_dh_inner_data.py +43 -0
  4258. pyromt-2.4.1/srigram/raw/base/server_dh_params.py +54 -0
  4259. pyromt-2.4.1/srigram/raw/base/set_client_dh_params_answer.py +55 -0
  4260. pyromt-2.4.1/srigram/raw/base/shipping_option.py +43 -0
  4261. pyromt-2.4.1/srigram/raw/base/sms_job.py +53 -0
  4262. pyromt-2.4.1/srigram/raw/base/smsjobs/__init__.py +16 -0
  4263. pyromt-2.4.1/srigram/raw/base/smsjobs/eligibility_to_join.py +53 -0
  4264. pyromt-2.4.1/srigram/raw/base/smsjobs/status.py +53 -0
  4265. pyromt-2.4.1/srigram/raw/base/sponsored_message.py +43 -0
  4266. pyromt-2.4.1/srigram/raw/base/sponsored_message_report_option.py +43 -0
  4267. pyromt-2.4.1/srigram/raw/base/sponsored_peer.py +43 -0
  4268. pyromt-2.4.1/srigram/raw/base/star_gift.py +44 -0
  4269. pyromt-2.4.1/srigram/raw/base/star_gift_active_auction_state.py +43 -0
  4270. pyromt-2.4.1/srigram/raw/base/star_gift_attribute.py +46 -0
  4271. pyromt-2.4.1/srigram/raw/base/star_gift_attribute_counter.py +43 -0
  4272. pyromt-2.4.1/srigram/raw/base/star_gift_attribute_id.py +45 -0
  4273. pyromt-2.4.1/srigram/raw/base/star_gift_attribute_rarity.py +47 -0
  4274. pyromt-2.4.1/srigram/raw/base/star_gift_auction_acquired_gift.py +43 -0
  4275. pyromt-2.4.1/srigram/raw/base/star_gift_auction_round.py +44 -0
  4276. pyromt-2.4.1/srigram/raw/base/star_gift_auction_state.py +45 -0
  4277. pyromt-2.4.1/srigram/raw/base/star_gift_auction_user_state.py +43 -0
  4278. pyromt-2.4.1/srigram/raw/base/star_gift_background.py +43 -0
  4279. pyromt-2.4.1/srigram/raw/base/star_gift_collection.py +54 -0
  4280. pyromt-2.4.1/srigram/raw/base/star_gift_upgrade_price.py +43 -0
  4281. pyromt-2.4.1/srigram/raw/base/star_ref_program.py +53 -0
  4282. pyromt-2.4.1/srigram/raw/base/stars_amount.py +44 -0
  4283. pyromt-2.4.1/srigram/raw/base/stars_gift_option.py +53 -0
  4284. pyromt-2.4.1/srigram/raw/base/stars_giveaway_option.py +53 -0
  4285. pyromt-2.4.1/srigram/raw/base/stars_giveaway_winners_option.py +43 -0
  4286. pyromt-2.4.1/srigram/raw/base/stars_rating.py +43 -0
  4287. pyromt-2.4.1/srigram/raw/base/stars_revenue_status.py +43 -0
  4288. pyromt-2.4.1/srigram/raw/base/stars_subscription.py +43 -0
  4289. pyromt-2.4.1/srigram/raw/base/stars_subscription_pricing.py +43 -0
  4290. pyromt-2.4.1/srigram/raw/base/stars_topup_option.py +53 -0
  4291. pyromt-2.4.1/srigram/raw/base/stars_transaction.py +43 -0
  4292. pyromt-2.4.1/srigram/raw/base/stars_transaction_peer.py +50 -0
  4293. pyromt-2.4.1/srigram/raw/base/stats/__init__.py +19 -0
  4294. pyromt-2.4.1/srigram/raw/base/stats/broadcast_stats.py +53 -0
  4295. pyromt-2.4.1/srigram/raw/base/stats/megagroup_stats.py +53 -0
  4296. pyromt-2.4.1/srigram/raw/base/stats/message_stats.py +53 -0
  4297. pyromt-2.4.1/srigram/raw/base/stats/public_forwards.py +54 -0
  4298. pyromt-2.4.1/srigram/raw/base/stats/story_stats.py +53 -0
  4299. pyromt-2.4.1/srigram/raw/base/stats_abs_value_and_prev.py +43 -0
  4300. pyromt-2.4.1/srigram/raw/base/stats_date_range_days.py +43 -0
  4301. pyromt-2.4.1/srigram/raw/base/stats_graph.py +55 -0
  4302. pyromt-2.4.1/srigram/raw/base/stats_group_top_admin.py +43 -0
  4303. pyromt-2.4.1/srigram/raw/base/stats_group_top_inviter.py +43 -0
  4304. pyromt-2.4.1/srigram/raw/base/stats_group_top_poster.py +43 -0
  4305. pyromt-2.4.1/srigram/raw/base/stats_percent_value.py +43 -0
  4306. pyromt-2.4.1/srigram/raw/base/stats_url.py +43 -0
  4307. pyromt-2.4.1/srigram/raw/base/sticker_keyword.py +43 -0
  4308. pyromt-2.4.1/srigram/raw/base/sticker_pack.py +43 -0
  4309. pyromt-2.4.1/srigram/raw/base/sticker_set.py +43 -0
  4310. pyromt-2.4.1/srigram/raw/base/sticker_set_covered.py +56 -0
  4311. pyromt-2.4.1/srigram/raw/base/stickers/__init__.py +15 -0
  4312. pyromt-2.4.1/srigram/raw/base/stickers/suggested_short_name.py +53 -0
  4313. pyromt-2.4.1/srigram/raw/base/storage/__init__.py +15 -0
  4314. pyromt-2.4.1/srigram/raw/base/storage/file_type.py +52 -0
  4315. pyromt-2.4.1/srigram/raw/base/stories/__init__.py +23 -0
  4316. pyromt-2.4.1/srigram/raw/base/stories/albums.py +54 -0
  4317. pyromt-2.4.1/srigram/raw/base/stories/all_stories.py +54 -0
  4318. pyromt-2.4.1/srigram/raw/base/stories/can_send_story_count.py +53 -0
  4319. pyromt-2.4.1/srigram/raw/base/stories/found_stories.py +53 -0
  4320. pyromt-2.4.1/srigram/raw/base/stories/peer_stories.py +53 -0
  4321. pyromt-2.4.1/srigram/raw/base/stories/stories.py +56 -0
  4322. pyromt-2.4.1/srigram/raw/base/stories/story_reactions_list.py +53 -0
  4323. pyromt-2.4.1/srigram/raw/base/stories/story_views.py +53 -0
  4324. pyromt-2.4.1/srigram/raw/base/stories/story_views_list.py +53 -0
  4325. pyromt-2.4.1/srigram/raw/base/stories_stealth_mode.py +43 -0
  4326. pyromt-2.4.1/srigram/raw/base/story_album.py +54 -0
  4327. pyromt-2.4.1/srigram/raw/base/story_fwd_header.py +43 -0
  4328. pyromt-2.4.1/srigram/raw/base/story_item.py +45 -0
  4329. pyromt-2.4.1/srigram/raw/base/story_reaction.py +45 -0
  4330. pyromt-2.4.1/srigram/raw/base/story_view.py +45 -0
  4331. pyromt-2.4.1/srigram/raw/base/story_views.py +43 -0
  4332. pyromt-2.4.1/srigram/raw/base/suggested_post.py +43 -0
  4333. pyromt-2.4.1/srigram/raw/base/text_with_entities.py +53 -0
  4334. pyromt-2.4.1/srigram/raw/base/theme.py +55 -0
  4335. pyromt-2.4.1/srigram/raw/base/theme_settings.py +43 -0
  4336. pyromt-2.4.1/srigram/raw/base/timezone.py +43 -0
  4337. pyromt-2.4.1/srigram/raw/base/todo_completion.py +43 -0
  4338. pyromt-2.4.1/srigram/raw/base/todo_item.py +43 -0
  4339. pyromt-2.4.1/srigram/raw/base/todo_list.py +43 -0
  4340. pyromt-2.4.1/srigram/raw/base/top_peer.py +43 -0
  4341. pyromt-2.4.1/srigram/raw/base/top_peer_category.py +51 -0
  4342. pyromt-2.4.1/srigram/raw/base/top_peer_category_peers.py +43 -0
  4343. pyromt-2.4.1/srigram/raw/base/true_.py +43 -0
  4344. pyromt-2.4.1/srigram/raw/base/update.py +194 -0
  4345. pyromt-2.4.1/srigram/raw/base/updates/__init__.py +17 -0
  4346. pyromt-2.4.1/srigram/raw/base/updates/channel_difference.py +55 -0
  4347. pyromt-2.4.1/srigram/raw/base/updates/difference.py +56 -0
  4348. pyromt-2.4.1/srigram/raw/base/updates/state.py +53 -0
  4349. pyromt-2.4.1/srigram/raw/base/updates_t.py +185 -0
  4350. pyromt-2.4.1/srigram/raw/base/upload/__init__.py +17 -0
  4351. pyromt-2.4.1/srigram/raw/base/upload/cdn_file.py +54 -0
  4352. pyromt-2.4.1/srigram/raw/base/upload/file.py +54 -0
  4353. pyromt-2.4.1/srigram/raw/base/upload/web_file.py +53 -0
  4354. pyromt-2.4.1/srigram/raw/base/url_auth_result.py +56 -0
  4355. pyromt-2.4.1/srigram/raw/base/user.py +61 -0
  4356. pyromt-2.4.1/srigram/raw/base/user_full.py +43 -0
  4357. pyromt-2.4.1/srigram/raw/base/user_profile_photo.py +44 -0
  4358. pyromt-2.4.1/srigram/raw/base/user_status.py +48 -0
  4359. pyromt-2.4.1/srigram/raw/base/username.py +43 -0
  4360. pyromt-2.4.1/srigram/raw/base/users/__init__.py +17 -0
  4361. pyromt-2.4.1/srigram/raw/base/users/saved_music.py +55 -0
  4362. pyromt-2.4.1/srigram/raw/base/users/user_full.py +53 -0
  4363. pyromt-2.4.1/srigram/raw/base/users/users.py +54 -0
  4364. pyromt-2.4.1/srigram/raw/base/video_size.py +45 -0
  4365. pyromt-2.4.1/srigram/raw/base/wall_paper.py +56 -0
  4366. pyromt-2.4.1/srigram/raw/base/wall_paper_settings.py +43 -0
  4367. pyromt-2.4.1/srigram/raw/base/web_authorization.py +43 -0
  4368. pyromt-2.4.1/srigram/raw/base/web_document.py +44 -0
  4369. pyromt-2.4.1/srigram/raw/base/web_page.py +46 -0
  4370. pyromt-2.4.1/srigram/raw/base/web_page_attribute.py +48 -0
  4371. pyromt-2.4.1/srigram/raw/base/web_view_message_sent.py +53 -0
  4372. pyromt-2.4.1/srigram/raw/base/web_view_result.py +56 -0
  4373. pyromt-2.4.1/srigram/raw/functions/__init__.py +36 -0
  4374. pyromt-2.4.1/srigram/raw/functions/account/__init__.py +137 -0
  4375. pyromt-2.4.1/srigram/raw/functions/account/accept_authorization.py +94 -0
  4376. pyromt-2.4.1/srigram/raw/functions/account/cancel_password_email.py +57 -0
  4377. pyromt-2.4.1/srigram/raw/functions/account/change_authorization_settings.py +88 -0
  4378. pyromt-2.4.1/srigram/raw/functions/account/change_phone.py +78 -0
  4379. pyromt-2.4.1/srigram/raw/functions/account/check_username.py +62 -0
  4380. pyromt-2.4.1/srigram/raw/functions/account/clear_recent_emoji_statuses.py +57 -0
  4381. pyromt-2.4.1/srigram/raw/functions/account/confirm_password_email.py +62 -0
  4382. pyromt-2.4.1/srigram/raw/functions/account/confirm_phone.py +70 -0
  4383. pyromt-2.4.1/srigram/raw/functions/account/create_business_chat_link.py +62 -0
  4384. pyromt-2.4.1/srigram/raw/functions/account/create_theme.py +92 -0
  4385. pyromt-2.4.1/srigram/raw/functions/account/decline_password_reset.py +57 -0
  4386. pyromt-2.4.1/srigram/raw/functions/account/delete_account.py +74 -0
  4387. pyromt-2.4.1/srigram/raw/functions/account/delete_auto_save_exceptions.py +57 -0
  4388. pyromt-2.4.1/srigram/raw/functions/account/delete_business_chat_link.py +62 -0
  4389. pyromt-2.4.1/srigram/raw/functions/account/delete_passkey.py +62 -0
  4390. pyromt-2.4.1/srigram/raw/functions/account/delete_secure_value.py +62 -0
  4391. pyromt-2.4.1/srigram/raw/functions/account/disable_peer_connected_bot.py +62 -0
  4392. pyromt-2.4.1/srigram/raw/functions/account/edit_business_chat_link.py +70 -0
  4393. pyromt-2.4.1/srigram/raw/functions/account/finish_takeout_session.py +62 -0
  4394. pyromt-2.4.1/srigram/raw/functions/account/get_account_ttl.py +57 -0
  4395. pyromt-2.4.1/srigram/raw/functions/account/get_all_secure_values.py +57 -0
  4396. pyromt-2.4.1/srigram/raw/functions/account/get_authorization_form.py +78 -0
  4397. pyromt-2.4.1/srigram/raw/functions/account/get_authorizations.py +57 -0
  4398. pyromt-2.4.1/srigram/raw/functions/account/get_auto_download_settings.py +57 -0
  4399. pyromt-2.4.1/srigram/raw/functions/account/get_auto_save_settings.py +57 -0
  4400. pyromt-2.4.1/srigram/raw/functions/account/get_bot_business_connection.py +62 -0
  4401. pyromt-2.4.1/srigram/raw/functions/account/get_business_chat_links.py +57 -0
  4402. pyromt-2.4.1/srigram/raw/functions/account/get_channel_default_emoji_statuses.py +62 -0
  4403. pyromt-2.4.1/srigram/raw/functions/account/get_channel_restricted_status_emojis.py +62 -0
  4404. pyromt-2.4.1/srigram/raw/functions/account/get_chat_themes.py +62 -0
  4405. pyromt-2.4.1/srigram/raw/functions/account/get_collectible_emoji_statuses.py +62 -0
  4406. pyromt-2.4.1/srigram/raw/functions/account/get_connected_bots.py +57 -0
  4407. pyromt-2.4.1/srigram/raw/functions/account/get_contact_sign_up_notification.py +57 -0
  4408. pyromt-2.4.1/srigram/raw/functions/account/get_content_settings.py +57 -0
  4409. pyromt-2.4.1/srigram/raw/functions/account/get_default_background_emojis.py +62 -0
  4410. pyromt-2.4.1/srigram/raw/functions/account/get_default_emoji_statuses.py +62 -0
  4411. pyromt-2.4.1/srigram/raw/functions/account/get_default_group_photo_emojis.py +62 -0
  4412. pyromt-2.4.1/srigram/raw/functions/account/get_default_profile_photo_emojis.py +62 -0
  4413. pyromt-2.4.1/srigram/raw/functions/account/get_global_privacy_settings.py +57 -0
  4414. pyromt-2.4.1/srigram/raw/functions/account/get_multi_wall_papers.py +62 -0
  4415. pyromt-2.4.1/srigram/raw/functions/account/get_notify_exceptions.py +78 -0
  4416. pyromt-2.4.1/srigram/raw/functions/account/get_notify_settings.py +62 -0
  4417. pyromt-2.4.1/srigram/raw/functions/account/get_paid_messages_revenue.py +74 -0
  4418. pyromt-2.4.1/srigram/raw/functions/account/get_passkeys.py +57 -0
  4419. pyromt-2.4.1/srigram/raw/functions/account/get_password.py +57 -0
  4420. pyromt-2.4.1/srigram/raw/functions/account/get_password_settings.py +62 -0
  4421. pyromt-2.4.1/srigram/raw/functions/account/get_privacy.py +62 -0
  4422. pyromt-2.4.1/srigram/raw/functions/account/get_reactions_notify_settings.py +57 -0
  4423. pyromt-2.4.1/srigram/raw/functions/account/get_recent_emoji_statuses.py +62 -0
  4424. pyromt-2.4.1/srigram/raw/functions/account/get_saved_music_ids.py +62 -0
  4425. pyromt-2.4.1/srigram/raw/functions/account/get_saved_ringtones.py +62 -0
  4426. pyromt-2.4.1/srigram/raw/functions/account/get_secure_value.py +62 -0
  4427. pyromt-2.4.1/srigram/raw/functions/account/get_theme.py +70 -0
  4428. pyromt-2.4.1/srigram/raw/functions/account/get_themes.py +70 -0
  4429. pyromt-2.4.1/srigram/raw/functions/account/get_tmp_password.py +70 -0
  4430. pyromt-2.4.1/srigram/raw/functions/account/get_unique_gift_chat_themes.py +78 -0
  4431. pyromt-2.4.1/srigram/raw/functions/account/get_wall_paper.py +62 -0
  4432. pyromt-2.4.1/srigram/raw/functions/account/get_wall_papers.py +62 -0
  4433. pyromt-2.4.1/srigram/raw/functions/account/get_web_authorizations.py +57 -0
  4434. pyromt-2.4.1/srigram/raw/functions/account/init_passkey_registration.py +57 -0
  4435. pyromt-2.4.1/srigram/raw/functions/account/init_takeout_session.py +101 -0
  4436. pyromt-2.4.1/srigram/raw/functions/account/install_theme.py +91 -0
  4437. pyromt-2.4.1/srigram/raw/functions/account/install_wall_paper.py +70 -0
  4438. pyromt-2.4.1/srigram/raw/functions/account/invalidate_sign_in_codes.py +62 -0
  4439. pyromt-2.4.1/srigram/raw/functions/account/register_device.py +102 -0
  4440. pyromt-2.4.1/srigram/raw/functions/account/register_passkey.py +62 -0
  4441. pyromt-2.4.1/srigram/raw/functions/account/reorder_usernames.py +62 -0
  4442. pyromt-2.4.1/srigram/raw/functions/account/report_peer.py +78 -0
  4443. pyromt-2.4.1/srigram/raw/functions/account/report_profile_photo.py +86 -0
  4444. pyromt-2.4.1/srigram/raw/functions/account/resend_password_email.py +57 -0
  4445. pyromt-2.4.1/srigram/raw/functions/account/reset_authorization.py +62 -0
  4446. pyromt-2.4.1/srigram/raw/functions/account/reset_notify_settings.py +57 -0
  4447. pyromt-2.4.1/srigram/raw/functions/account/reset_password.py +57 -0
  4448. pyromt-2.4.1/srigram/raw/functions/account/reset_wall_papers.py +57 -0
  4449. pyromt-2.4.1/srigram/raw/functions/account/reset_web_authorization.py +62 -0
  4450. pyromt-2.4.1/srigram/raw/functions/account/reset_web_authorizations.py +57 -0
  4451. pyromt-2.4.1/srigram/raw/functions/account/resolve_business_chat_link.py +62 -0
  4452. pyromt-2.4.1/srigram/raw/functions/account/save_auto_download_settings.py +76 -0
  4453. pyromt-2.4.1/srigram/raw/functions/account/save_auto_save_settings.py +92 -0
  4454. pyromt-2.4.1/srigram/raw/functions/account/save_music.py +80 -0
  4455. pyromt-2.4.1/srigram/raw/functions/account/save_ringtone.py +70 -0
  4456. pyromt-2.4.1/srigram/raw/functions/account/save_secure_value.py +70 -0
  4457. pyromt-2.4.1/srigram/raw/functions/account/save_theme.py +70 -0
  4458. pyromt-2.4.1/srigram/raw/functions/account/save_wall_paper.py +78 -0
  4459. pyromt-2.4.1/srigram/raw/functions/account/send_change_phone_code.py +70 -0
  4460. pyromt-2.4.1/srigram/raw/functions/account/send_confirm_phone_code.py +70 -0
  4461. pyromt-2.4.1/srigram/raw/functions/account/send_verify_email_code.py +70 -0
  4462. pyromt-2.4.1/srigram/raw/functions/account/send_verify_phone_code.py +70 -0
  4463. pyromt-2.4.1/srigram/raw/functions/account/set_account_ttl.py +62 -0
  4464. pyromt-2.4.1/srigram/raw/functions/account/set_authorization_ttl.py +62 -0
  4465. pyromt-2.4.1/srigram/raw/functions/account/set_contact_sign_up_notification.py +62 -0
  4466. pyromt-2.4.1/srigram/raw/functions/account/set_content_settings.py +62 -0
  4467. pyromt-2.4.1/srigram/raw/functions/account/set_global_privacy_settings.py +62 -0
  4468. pyromt-2.4.1/srigram/raw/functions/account/set_main_profile_tab.py +62 -0
  4469. pyromt-2.4.1/srigram/raw/functions/account/set_privacy.py +70 -0
  4470. pyromt-2.4.1/srigram/raw/functions/account/set_reactions_notify_settings.py +62 -0
  4471. pyromt-2.4.1/srigram/raw/functions/account/toggle_connected_bot_paused.py +70 -0
  4472. pyromt-2.4.1/srigram/raw/functions/account/toggle_no_paid_messages_exception.py +86 -0
  4473. pyromt-2.4.1/srigram/raw/functions/account/toggle_sponsored_messages.py +62 -0
  4474. pyromt-2.4.1/srigram/raw/functions/account/toggle_username.py +70 -0
  4475. pyromt-2.4.1/srigram/raw/functions/account/unregister_device.py +78 -0
  4476. pyromt-2.4.1/srigram/raw/functions/account/update_birthday.py +66 -0
  4477. pyromt-2.4.1/srigram/raw/functions/account/update_business_away_message.py +66 -0
  4478. pyromt-2.4.1/srigram/raw/functions/account/update_business_greeting_message.py +66 -0
  4479. pyromt-2.4.1/srigram/raw/functions/account/update_business_intro.py +66 -0
  4480. pyromt-2.4.1/srigram/raw/functions/account/update_business_location.py +75 -0
  4481. pyromt-2.4.1/srigram/raw/functions/account/update_business_work_hours.py +66 -0
  4482. pyromt-2.4.1/srigram/raw/functions/account/update_color.py +72 -0
  4483. pyromt-2.4.1/srigram/raw/functions/account/update_connected_bot.py +88 -0
  4484. pyromt-2.4.1/srigram/raw/functions/account/update_device_locked.py +62 -0
  4485. pyromt-2.4.1/srigram/raw/functions/account/update_emoji_status.py +62 -0
  4486. pyromt-2.4.1/srigram/raw/functions/account/update_notify_settings.py +70 -0
  4487. pyromt-2.4.1/srigram/raw/functions/account/update_password_settings.py +70 -0
  4488. pyromt-2.4.1/srigram/raw/functions/account/update_personal_channel.py +62 -0
  4489. pyromt-2.4.1/srigram/raw/functions/account/update_profile.py +83 -0
  4490. pyromt-2.4.1/srigram/raw/functions/account/update_status.py +62 -0
  4491. pyromt-2.4.1/srigram/raw/functions/account/update_theme.py +110 -0
  4492. pyromt-2.4.1/srigram/raw/functions/account/update_username.py +62 -0
  4493. pyromt-2.4.1/srigram/raw/functions/account/upload_ringtone.py +78 -0
  4494. pyromt-2.4.1/srigram/raw/functions/account/upload_theme.py +90 -0
  4495. pyromt-2.4.1/srigram/raw/functions/account/upload_wall_paper.py +86 -0
  4496. pyromt-2.4.1/srigram/raw/functions/account/verify_email.py +70 -0
  4497. pyromt-2.4.1/srigram/raw/functions/account/verify_phone.py +78 -0
  4498. pyromt-2.4.1/srigram/raw/functions/auth/__init__.py +40 -0
  4499. pyromt-2.4.1/srigram/raw/functions/auth/accept_login_token.py +62 -0
  4500. pyromt-2.4.1/srigram/raw/functions/auth/bind_temp_auth_key.py +86 -0
  4501. pyromt-2.4.1/srigram/raw/functions/auth/cancel_code.py +70 -0
  4502. pyromt-2.4.1/srigram/raw/functions/auth/check_paid_auth.py +78 -0
  4503. pyromt-2.4.1/srigram/raw/functions/auth/check_password.py +62 -0
  4504. pyromt-2.4.1/srigram/raw/functions/auth/check_recovery_password.py +62 -0
  4505. pyromt-2.4.1/srigram/raw/functions/auth/drop_temp_auth_keys.py +62 -0
  4506. pyromt-2.4.1/srigram/raw/functions/auth/export_authorization.py +62 -0
  4507. pyromt-2.4.1/srigram/raw/functions/auth/export_login_token.py +78 -0
  4508. pyromt-2.4.1/srigram/raw/functions/auth/finish_passkey_login.py +82 -0
  4509. pyromt-2.4.1/srigram/raw/functions/auth/import_authorization.py +70 -0
  4510. pyromt-2.4.1/srigram/raw/functions/auth/import_bot_authorization.py +86 -0
  4511. pyromt-2.4.1/srigram/raw/functions/auth/import_login_token.py +62 -0
  4512. pyromt-2.4.1/srigram/raw/functions/auth/import_web_token_authorization.py +78 -0
  4513. pyromt-2.4.1/srigram/raw/functions/auth/init_passkey_login.py +70 -0
  4514. pyromt-2.4.1/srigram/raw/functions/auth/log_out.py +57 -0
  4515. pyromt-2.4.1/srigram/raw/functions/auth/recover_password.py +74 -0
  4516. pyromt-2.4.1/srigram/raw/functions/auth/report_missing_code.py +78 -0
  4517. pyromt-2.4.1/srigram/raw/functions/auth/request_firebase_sms.py +99 -0
  4518. pyromt-2.4.1/srigram/raw/functions/auth/request_password_recovery.py +57 -0
  4519. pyromt-2.4.1/srigram/raw/functions/auth/resend_code.py +81 -0
  4520. pyromt-2.4.1/srigram/raw/functions/auth/reset_authorizations.py +57 -0
  4521. pyromt-2.4.1/srigram/raw/functions/auth/reset_login_email.py +70 -0
  4522. pyromt-2.4.1/srigram/raw/functions/auth/send_code.py +86 -0
  4523. pyromt-2.4.1/srigram/raw/functions/auth/sign_in.py +91 -0
  4524. pyromt-2.4.1/srigram/raw/functions/auth/sign_up.py +94 -0
  4525. pyromt-2.4.1/srigram/raw/functions/bots/__init__.py +44 -0
  4526. pyromt-2.4.1/srigram/raw/functions/bots/add_preview_media.py +78 -0
  4527. pyromt-2.4.1/srigram/raw/functions/bots/allow_send_message.py +62 -0
  4528. pyromt-2.4.1/srigram/raw/functions/bots/answer_webhook_json_query.py +70 -0
  4529. pyromt-2.4.1/srigram/raw/functions/bots/can_send_message.py +62 -0
  4530. pyromt-2.4.1/srigram/raw/functions/bots/check_download_file_params.py +78 -0
  4531. pyromt-2.4.1/srigram/raw/functions/bots/delete_preview_media.py +78 -0
  4532. pyromt-2.4.1/srigram/raw/functions/bots/edit_preview_media.py +86 -0
  4533. pyromt-2.4.1/srigram/raw/functions/bots/get_admined_bots.py +57 -0
  4534. pyromt-2.4.1/srigram/raw/functions/bots/get_bot_commands.py +70 -0
  4535. pyromt-2.4.1/srigram/raw/functions/bots/get_bot_info.py +74 -0
  4536. pyromt-2.4.1/srigram/raw/functions/bots/get_bot_menu_button.py +62 -0
  4537. pyromt-2.4.1/srigram/raw/functions/bots/get_bot_recommendations.py +62 -0
  4538. pyromt-2.4.1/srigram/raw/functions/bots/get_popular_app_bots.py +70 -0
  4539. pyromt-2.4.1/srigram/raw/functions/bots/get_preview_info.py +70 -0
  4540. pyromt-2.4.1/srigram/raw/functions/bots/get_preview_medias.py +62 -0
  4541. pyromt-2.4.1/srigram/raw/functions/bots/invoke_web_view_custom_method.py +78 -0
  4542. pyromt-2.4.1/srigram/raw/functions/bots/reorder_preview_medias.py +78 -0
  4543. pyromt-2.4.1/srigram/raw/functions/bots/reorder_usernames.py +70 -0
  4544. pyromt-2.4.1/srigram/raw/functions/bots/reset_bot_commands.py +70 -0
  4545. pyromt-2.4.1/srigram/raw/functions/bots/send_custom_request.py +70 -0
  4546. pyromt-2.4.1/srigram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py +62 -0
  4547. pyromt-2.4.1/srigram/raw/functions/bots/set_bot_commands.py +78 -0
  4548. pyromt-2.4.1/srigram/raw/functions/bots/set_bot_group_default_admin_rights.py +62 -0
  4549. pyromt-2.4.1/srigram/raw/functions/bots/set_bot_info.py +101 -0
  4550. pyromt-2.4.1/srigram/raw/functions/bots/set_bot_menu_button.py +70 -0
  4551. pyromt-2.4.1/srigram/raw/functions/bots/set_custom_verification.py +89 -0
  4552. pyromt-2.4.1/srigram/raw/functions/bots/toggle_user_emoji_status_permission.py +70 -0
  4553. pyromt-2.4.1/srigram/raw/functions/bots/toggle_username.py +78 -0
  4554. pyromt-2.4.1/srigram/raw/functions/bots/update_star_ref_program.py +81 -0
  4555. pyromt-2.4.1/srigram/raw/functions/bots/update_user_emoji_status.py +70 -0
  4556. pyromt-2.4.1/srigram/raw/functions/channels/__init__.py +74 -0
  4557. pyromt-2.4.1/srigram/raw/functions/channels/check_search_posts_flood.py +65 -0
  4558. pyromt-2.4.1/srigram/raw/functions/channels/check_username.py +70 -0
  4559. pyromt-2.4.1/srigram/raw/functions/channels/convert_to_gigagroup.py +62 -0
  4560. pyromt-2.4.1/srigram/raw/functions/channels/create_channel.py +124 -0
  4561. pyromt-2.4.1/srigram/raw/functions/channels/deactivate_all_usernames.py +62 -0
  4562. pyromt-2.4.1/srigram/raw/functions/channels/delete_channel.py +62 -0
  4563. pyromt-2.4.1/srigram/raw/functions/channels/delete_history.py +78 -0
  4564. pyromt-2.4.1/srigram/raw/functions/channels/delete_messages.py +70 -0
  4565. pyromt-2.4.1/srigram/raw/functions/channels/delete_participant_history.py +70 -0
  4566. pyromt-2.4.1/srigram/raw/functions/channels/edit_admin.py +86 -0
  4567. pyromt-2.4.1/srigram/raw/functions/channels/edit_banned.py +78 -0
  4568. pyromt-2.4.1/srigram/raw/functions/channels/edit_creator.py +78 -0
  4569. pyromt-2.4.1/srigram/raw/functions/channels/edit_location.py +78 -0
  4570. pyromt-2.4.1/srigram/raw/functions/channels/edit_photo.py +70 -0
  4571. pyromt-2.4.1/srigram/raw/functions/channels/edit_title.py +70 -0
  4572. pyromt-2.4.1/srigram/raw/functions/channels/export_message_link.py +84 -0
  4573. pyromt-2.4.1/srigram/raw/functions/channels/get_admin_log.py +116 -0
  4574. pyromt-2.4.1/srigram/raw/functions/channels/get_admined_public_channels.py +74 -0
  4575. pyromt-2.4.1/srigram/raw/functions/channels/get_channel_recommendations.py +66 -0
  4576. pyromt-2.4.1/srigram/raw/functions/channels/get_channels.py +62 -0
  4577. pyromt-2.4.1/srigram/raw/functions/channels/get_full_channel.py +62 -0
  4578. pyromt-2.4.1/srigram/raw/functions/channels/get_future_creator_after_leave.py +62 -0
  4579. pyromt-2.4.1/srigram/raw/functions/channels/get_groups_for_discussion.py +57 -0
  4580. pyromt-2.4.1/srigram/raw/functions/channels/get_inactive_channels.py +57 -0
  4581. pyromt-2.4.1/srigram/raw/functions/channels/get_left_channels.py +62 -0
  4582. pyromt-2.4.1/srigram/raw/functions/channels/get_message_author.py +70 -0
  4583. pyromt-2.4.1/srigram/raw/functions/channels/get_messages.py +70 -0
  4584. pyromt-2.4.1/srigram/raw/functions/channels/get_participant.py +70 -0
  4585. pyromt-2.4.1/srigram/raw/functions/channels/get_participants.py +94 -0
  4586. pyromt-2.4.1/srigram/raw/functions/channels/get_send_as.py +76 -0
  4587. pyromt-2.4.1/srigram/raw/functions/channels/invite_to_channel.py +70 -0
  4588. pyromt-2.4.1/srigram/raw/functions/channels/join_channel.py +62 -0
  4589. pyromt-2.4.1/srigram/raw/functions/channels/leave_channel.py +62 -0
  4590. pyromt-2.4.1/srigram/raw/functions/channels/read_history.py +70 -0
  4591. pyromt-2.4.1/srigram/raw/functions/channels/read_message_contents.py +70 -0
  4592. pyromt-2.4.1/srigram/raw/functions/channels/reorder_usernames.py +70 -0
  4593. pyromt-2.4.1/srigram/raw/functions/channels/report_anti_spam_false_positive.py +70 -0
  4594. pyromt-2.4.1/srigram/raw/functions/channels/report_spam.py +78 -0
  4595. pyromt-2.4.1/srigram/raw/functions/channels/restrict_sponsored_messages.py +70 -0
  4596. pyromt-2.4.1/srigram/raw/functions/channels/search_posts.py +115 -0
  4597. pyromt-2.4.1/srigram/raw/functions/channels/set_boosts_to_unblock_restrictions.py +70 -0
  4598. pyromt-2.4.1/srigram/raw/functions/channels/set_discussion_group.py +70 -0
  4599. pyromt-2.4.1/srigram/raw/functions/channels/set_emoji_stickers.py +70 -0
  4600. pyromt-2.4.1/srigram/raw/functions/channels/set_main_profile_tab.py +70 -0
  4601. pyromt-2.4.1/srigram/raw/functions/channels/set_stickers.py +70 -0
  4602. pyromt-2.4.1/srigram/raw/functions/channels/toggle_anti_spam.py +70 -0
  4603. pyromt-2.4.1/srigram/raw/functions/channels/toggle_autotranslation.py +70 -0
  4604. pyromt-2.4.1/srigram/raw/functions/channels/toggle_forum.py +78 -0
  4605. pyromt-2.4.1/srigram/raw/functions/channels/toggle_join_request.py +70 -0
  4606. pyromt-2.4.1/srigram/raw/functions/channels/toggle_join_to_send.py +70 -0
  4607. pyromt-2.4.1/srigram/raw/functions/channels/toggle_participants_hidden.py +70 -0
  4608. pyromt-2.4.1/srigram/raw/functions/channels/toggle_pre_history_hidden.py +70 -0
  4609. pyromt-2.4.1/srigram/raw/functions/channels/toggle_signatures.py +76 -0
  4610. pyromt-2.4.1/srigram/raw/functions/channels/toggle_slow_mode.py +70 -0
  4611. pyromt-2.4.1/srigram/raw/functions/channels/toggle_username.py +78 -0
  4612. pyromt-2.4.1/srigram/raw/functions/channels/toggle_view_forum_as_messages.py +70 -0
  4613. pyromt-2.4.1/srigram/raw/functions/channels/update_color.py +88 -0
  4614. pyromt-2.4.1/srigram/raw/functions/channels/update_emoji_status.py +70 -0
  4615. pyromt-2.4.1/srigram/raw/functions/channels/update_paid_messages_price.py +78 -0
  4616. pyromt-2.4.1/srigram/raw/functions/channels/update_username.py +70 -0
  4617. pyromt-2.4.1/srigram/raw/functions/chatlists/__init__.py +25 -0
  4618. pyromt-2.4.1/srigram/raw/functions/chatlists/check_chatlist_invite.py +62 -0
  4619. pyromt-2.4.1/srigram/raw/functions/chatlists/delete_exported_invite.py +70 -0
  4620. pyromt-2.4.1/srigram/raw/functions/chatlists/edit_exported_invite.py +91 -0
  4621. pyromt-2.4.1/srigram/raw/functions/chatlists/export_chatlist_invite.py +78 -0
  4622. pyromt-2.4.1/srigram/raw/functions/chatlists/get_chatlist_updates.py +62 -0
  4623. pyromt-2.4.1/srigram/raw/functions/chatlists/get_exported_invites.py +62 -0
  4624. pyromt-2.4.1/srigram/raw/functions/chatlists/get_leave_chatlist_suggestions.py +62 -0
  4625. pyromt-2.4.1/srigram/raw/functions/chatlists/hide_chatlist_updates.py +62 -0
  4626. pyromt-2.4.1/srigram/raw/functions/chatlists/join_chatlist_invite.py +70 -0
  4627. pyromt-2.4.1/srigram/raw/functions/chatlists/join_chatlist_updates.py +70 -0
  4628. pyromt-2.4.1/srigram/raw/functions/chatlists/leave_chatlist.py +70 -0
  4629. pyromt-2.4.1/srigram/raw/functions/contacts/__init__.py +42 -0
  4630. pyromt-2.4.1/srigram/raw/functions/contacts/accept_contact.py +62 -0
  4631. pyromt-2.4.1/srigram/raw/functions/contacts/add_contact.py +104 -0
  4632. pyromt-2.4.1/srigram/raw/functions/contacts/block.py +70 -0
  4633. pyromt-2.4.1/srigram/raw/functions/contacts/block_from_replies.py +82 -0
  4634. pyromt-2.4.1/srigram/raw/functions/contacts/delete_by_phones.py +62 -0
  4635. pyromt-2.4.1/srigram/raw/functions/contacts/delete_contacts.py +62 -0
  4636. pyromt-2.4.1/srigram/raw/functions/contacts/edit_close_friends.py +62 -0
  4637. pyromt-2.4.1/srigram/raw/functions/contacts/export_contact_token.py +57 -0
  4638. pyromt-2.4.1/srigram/raw/functions/contacts/get_birthdays.py +57 -0
  4639. pyromt-2.4.1/srigram/raw/functions/contacts/get_blocked.py +78 -0
  4640. pyromt-2.4.1/srigram/raw/functions/contacts/get_contact_i_ds.py +62 -0
  4641. pyromt-2.4.1/srigram/raw/functions/contacts/get_contacts.py +62 -0
  4642. pyromt-2.4.1/srigram/raw/functions/contacts/get_located.py +79 -0
  4643. pyromt-2.4.1/srigram/raw/functions/contacts/get_saved.py +57 -0
  4644. pyromt-2.4.1/srigram/raw/functions/contacts/get_sponsored_peers.py +62 -0
  4645. pyromt-2.4.1/srigram/raw/functions/contacts/get_statuses.py +57 -0
  4646. pyromt-2.4.1/srigram/raw/functions/contacts/get_top_peers.py +134 -0
  4647. pyromt-2.4.1/srigram/raw/functions/contacts/import_contact_token.py +62 -0
  4648. pyromt-2.4.1/srigram/raw/functions/contacts/import_contacts.py +62 -0
  4649. pyromt-2.4.1/srigram/raw/functions/contacts/reset_saved.py +57 -0
  4650. pyromt-2.4.1/srigram/raw/functions/contacts/reset_top_peer_rating.py +70 -0
  4651. pyromt-2.4.1/srigram/raw/functions/contacts/resolve_phone.py +62 -0
  4652. pyromt-2.4.1/srigram/raw/functions/contacts/resolve_username.py +73 -0
  4653. pyromt-2.4.1/srigram/raw/functions/contacts/search.py +70 -0
  4654. pyromt-2.4.1/srigram/raw/functions/contacts/set_blocked.py +78 -0
  4655. pyromt-2.4.1/srigram/raw/functions/contacts/toggle_top_peers.py +62 -0
  4656. pyromt-2.4.1/srigram/raw/functions/contacts/unblock.py +70 -0
  4657. pyromt-2.4.1/srigram/raw/functions/contacts/update_contact_note.py +70 -0
  4658. pyromt-2.4.1/srigram/raw/functions/contest/__init__.py +15 -0
  4659. pyromt-2.4.1/srigram/raw/functions/contest/save_developer_info.py +94 -0
  4660. pyromt-2.4.1/srigram/raw/functions/destroy_auth_key.py +57 -0
  4661. pyromt-2.4.1/srigram/raw/functions/destroy_session.py +62 -0
  4662. pyromt-2.4.1/srigram/raw/functions/folders/__init__.py +15 -0
  4663. pyromt-2.4.1/srigram/raw/functions/folders/edit_peer_folders.py +62 -0
  4664. pyromt-2.4.1/srigram/raw/functions/fragment/__init__.py +15 -0
  4665. pyromt-2.4.1/srigram/raw/functions/fragment/get_collectible_info.py +62 -0
  4666. pyromt-2.4.1/srigram/raw/functions/get_future_salts.py +62 -0
  4667. pyromt-2.4.1/srigram/raw/functions/help/__init__.py +39 -0
  4668. pyromt-2.4.1/srigram/raw/functions/help/accept_terms_of_service.py +62 -0
  4669. pyromt-2.4.1/srigram/raw/functions/help/dismiss_suggestion.py +70 -0
  4670. pyromt-2.4.1/srigram/raw/functions/help/edit_user_info.py +78 -0
  4671. pyromt-2.4.1/srigram/raw/functions/help/get_app_config.py +62 -0
  4672. pyromt-2.4.1/srigram/raw/functions/help/get_app_update.py +62 -0
  4673. pyromt-2.4.1/srigram/raw/functions/help/get_cdn_config.py +57 -0
  4674. pyromt-2.4.1/srigram/raw/functions/help/get_config.py +57 -0
  4675. pyromt-2.4.1/srigram/raw/functions/help/get_countries_list.py +70 -0
  4676. pyromt-2.4.1/srigram/raw/functions/help/get_deep_link_info.py +62 -0
  4677. pyromt-2.4.1/srigram/raw/functions/help/get_invite_text.py +57 -0
  4678. pyromt-2.4.1/srigram/raw/functions/help/get_nearest_dc.py +57 -0
  4679. pyromt-2.4.1/srigram/raw/functions/help/get_passport_config.py +62 -0
  4680. pyromt-2.4.1/srigram/raw/functions/help/get_peer_colors.py +62 -0
  4681. pyromt-2.4.1/srigram/raw/functions/help/get_peer_profile_colors.py +62 -0
  4682. pyromt-2.4.1/srigram/raw/functions/help/get_premium_promo.py +57 -0
  4683. pyromt-2.4.1/srigram/raw/functions/help/get_promo_data.py +57 -0
  4684. pyromt-2.4.1/srigram/raw/functions/help/get_recent_me_urls.py +62 -0
  4685. pyromt-2.4.1/srigram/raw/functions/help/get_support.py +57 -0
  4686. pyromt-2.4.1/srigram/raw/functions/help/get_support_name.py +57 -0
  4687. pyromt-2.4.1/srigram/raw/functions/help/get_terms_of_service_update.py +57 -0
  4688. pyromt-2.4.1/srigram/raw/functions/help/get_timezones_list.py +62 -0
  4689. pyromt-2.4.1/srigram/raw/functions/help/get_user_info.py +62 -0
  4690. pyromt-2.4.1/srigram/raw/functions/help/hide_promo_data.py +62 -0
  4691. pyromt-2.4.1/srigram/raw/functions/help/save_app_log.py +62 -0
  4692. pyromt-2.4.1/srigram/raw/functions/help/set_bot_updates_status.py +70 -0
  4693. pyromt-2.4.1/srigram/raw/functions/init_connection.py +140 -0
  4694. pyromt-2.4.1/srigram/raw/functions/invoke_after_msg.py +70 -0
  4695. pyromt-2.4.1/srigram/raw/functions/invoke_after_msgs.py +70 -0
  4696. pyromt-2.4.1/srigram/raw/functions/invoke_with_apns_secret.py +78 -0
  4697. pyromt-2.4.1/srigram/raw/functions/invoke_with_business_connection.py +70 -0
  4698. pyromt-2.4.1/srigram/raw/functions/invoke_with_google_play_integrity.py +78 -0
  4699. pyromt-2.4.1/srigram/raw/functions/invoke_with_layer.py +70 -0
  4700. pyromt-2.4.1/srigram/raw/functions/invoke_with_messages_range.py +70 -0
  4701. pyromt-2.4.1/srigram/raw/functions/invoke_with_re_captcha.py +70 -0
  4702. pyromt-2.4.1/srigram/raw/functions/invoke_with_takeout.py +70 -0
  4703. pyromt-2.4.1/srigram/raw/functions/invoke_without_updates.py +62 -0
  4704. pyromt-2.4.1/srigram/raw/functions/langpack/__init__.py +19 -0
  4705. pyromt-2.4.1/srigram/raw/functions/langpack/get_difference.py +78 -0
  4706. pyromt-2.4.1/srigram/raw/functions/langpack/get_lang_pack.py +70 -0
  4707. pyromt-2.4.1/srigram/raw/functions/langpack/get_language.py +70 -0
  4708. pyromt-2.4.1/srigram/raw/functions/langpack/get_languages.py +62 -0
  4709. pyromt-2.4.1/srigram/raw/functions/langpack/get_strings.py +78 -0
  4710. pyromt-2.4.1/srigram/raw/functions/messages/__init__.py +253 -0
  4711. pyromt-2.4.1/srigram/raw/functions/messages/accept_encryption.py +78 -0
  4712. pyromt-2.4.1/srigram/raw/functions/messages/accept_url_auth.py +105 -0
  4713. pyromt-2.4.1/srigram/raw/functions/messages/add_chat_user.py +78 -0
  4714. pyromt-2.4.1/srigram/raw/functions/messages/append_todo_list.py +78 -0
  4715. pyromt-2.4.1/srigram/raw/functions/messages/check_chat_invite.py +62 -0
  4716. pyromt-2.4.1/srigram/raw/functions/messages/check_history_import.py +62 -0
  4717. pyromt-2.4.1/srigram/raw/functions/messages/check_history_import_peer.py +62 -0
  4718. pyromt-2.4.1/srigram/raw/functions/messages/check_quick_reply_shortcut.py +62 -0
  4719. pyromt-2.4.1/srigram/raw/functions/messages/clear_all_drafts.py +57 -0
  4720. pyromt-2.4.1/srigram/raw/functions/messages/clear_recent_reactions.py +57 -0
  4721. pyromt-2.4.1/srigram/raw/functions/messages/clear_recent_stickers.py +62 -0
  4722. pyromt-2.4.1/srigram/raw/functions/messages/click_sponsored_message.py +76 -0
  4723. pyromt-2.4.1/srigram/raw/functions/messages/create_chat.py +81 -0
  4724. pyromt-2.4.1/srigram/raw/functions/messages/create_forum_topic.py +114 -0
  4725. pyromt-2.4.1/srigram/raw/functions/messages/delete_chat.py +62 -0
  4726. pyromt-2.4.1/srigram/raw/functions/messages/delete_chat_user.py +78 -0
  4727. pyromt-2.4.1/srigram/raw/functions/messages/delete_exported_chat_invite.py +70 -0
  4728. pyromt-2.4.1/srigram/raw/functions/messages/delete_fact_check.py +70 -0
  4729. pyromt-2.4.1/srigram/raw/functions/messages/delete_history.py +102 -0
  4730. pyromt-2.4.1/srigram/raw/functions/messages/delete_messages.py +70 -0
  4731. pyromt-2.4.1/srigram/raw/functions/messages/delete_phone_call_history.py +62 -0
  4732. pyromt-2.4.1/srigram/raw/functions/messages/delete_quick_reply_messages.py +70 -0
  4733. pyromt-2.4.1/srigram/raw/functions/messages/delete_quick_reply_shortcut.py +62 -0
  4734. pyromt-2.4.1/srigram/raw/functions/messages/delete_revoked_exported_chat_invites.py +70 -0
  4735. pyromt-2.4.1/srigram/raw/functions/messages/delete_saved_history.py +100 -0
  4736. pyromt-2.4.1/srigram/raw/functions/messages/delete_scheduled_messages.py +70 -0
  4737. pyromt-2.4.1/srigram/raw/functions/messages/delete_topic_history.py +70 -0
  4738. pyromt-2.4.1/srigram/raw/functions/messages/discard_encryption.py +70 -0
  4739. pyromt-2.4.1/srigram/raw/functions/messages/edit_chat_about.py +70 -0
  4740. pyromt-2.4.1/srigram/raw/functions/messages/edit_chat_admin.py +78 -0
  4741. pyromt-2.4.1/srigram/raw/functions/messages/edit_chat_default_banned_rights.py +70 -0
  4742. pyromt-2.4.1/srigram/raw/functions/messages/edit_chat_photo.py +70 -0
  4743. pyromt-2.4.1/srigram/raw/functions/messages/edit_chat_title.py +70 -0
  4744. pyromt-2.4.1/srigram/raw/functions/messages/edit_exported_chat_invite.py +114 -0
  4745. pyromt-2.4.1/srigram/raw/functions/messages/edit_fact_check.py +78 -0
  4746. pyromt-2.4.1/srigram/raw/functions/messages/edit_forum_topic.py +108 -0
  4747. pyromt-2.4.1/srigram/raw/functions/messages/edit_inline_bot_message.py +115 -0
  4748. pyromt-2.4.1/srigram/raw/functions/messages/edit_message.py +150 -0
  4749. pyromt-2.4.1/srigram/raw/functions/messages/edit_quick_reply_shortcut.py +70 -0
  4750. pyromt-2.4.1/srigram/raw/functions/messages/export_chat_invite.py +113 -0
  4751. pyromt-2.4.1/srigram/raw/functions/messages/fave_sticker.py +70 -0
  4752. pyromt-2.4.1/srigram/raw/functions/messages/forward_messages.py +224 -0
  4753. pyromt-2.4.1/srigram/raw/functions/messages/get_admins_with_invites.py +62 -0
  4754. pyromt-2.4.1/srigram/raw/functions/messages/get_all_drafts.py +57 -0
  4755. pyromt-2.4.1/srigram/raw/functions/messages/get_all_stickers.py +62 -0
  4756. pyromt-2.4.1/srigram/raw/functions/messages/get_archived_stickers.py +84 -0
  4757. pyromt-2.4.1/srigram/raw/functions/messages/get_attach_menu_bot.py +62 -0
  4758. pyromt-2.4.1/srigram/raw/functions/messages/get_attach_menu_bots.py +62 -0
  4759. pyromt-2.4.1/srigram/raw/functions/messages/get_attached_stickers.py +62 -0
  4760. pyromt-2.4.1/srigram/raw/functions/messages/get_available_effects.py +62 -0
  4761. pyromt-2.4.1/srigram/raw/functions/messages/get_available_reactions.py +62 -0
  4762. pyromt-2.4.1/srigram/raw/functions/messages/get_bot_app.py +70 -0
  4763. pyromt-2.4.1/srigram/raw/functions/messages/get_bot_callback_answer.py +97 -0
  4764. pyromt-2.4.1/srigram/raw/functions/messages/get_chat_invite_importers.py +118 -0
  4765. pyromt-2.4.1/srigram/raw/functions/messages/get_chats.py +62 -0
  4766. pyromt-2.4.1/srigram/raw/functions/messages/get_common_chats.py +78 -0
  4767. pyromt-2.4.1/srigram/raw/functions/messages/get_custom_emoji_documents.py +62 -0
  4768. pyromt-2.4.1/srigram/raw/functions/messages/get_default_history_ttl.py +57 -0
  4769. pyromt-2.4.1/srigram/raw/functions/messages/get_default_tag_reactions.py +62 -0
  4770. pyromt-2.4.1/srigram/raw/functions/messages/get_dh_config.py +70 -0
  4771. pyromt-2.4.1/srigram/raw/functions/messages/get_dialog_filters.py +57 -0
  4772. pyromt-2.4.1/srigram/raw/functions/messages/get_dialog_unread_marks.py +66 -0
  4773. pyromt-2.4.1/srigram/raw/functions/messages/get_dialogs.py +111 -0
  4774. pyromt-2.4.1/srigram/raw/functions/messages/get_discussion_message.py +70 -0
  4775. pyromt-2.4.1/srigram/raw/functions/messages/get_document_by_hash.py +78 -0
  4776. pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_game_info.py +57 -0
  4777. pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_groups.py +62 -0
  4778. pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_keywords.py +62 -0
  4779. pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_keywords_difference.py +70 -0
  4780. pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_keywords_languages.py +62 -0
  4781. pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_profile_photo_groups.py +62 -0
  4782. pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_status_groups.py +62 -0
  4783. pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_sticker_groups.py +62 -0
  4784. pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_stickers.py +62 -0
  4785. pyromt-2.4.1/srigram/raw/functions/messages/get_emoji_url.py +62 -0
  4786. pyromt-2.4.1/srigram/raw/functions/messages/get_exported_chat_invite.py +70 -0
  4787. pyromt-2.4.1/srigram/raw/functions/messages/get_exported_chat_invites.py +104 -0
  4788. pyromt-2.4.1/srigram/raw/functions/messages/get_extended_media.py +70 -0
  4789. pyromt-2.4.1/srigram/raw/functions/messages/get_fact_check.py +70 -0
  4790. pyromt-2.4.1/srigram/raw/functions/messages/get_faved_stickers.py +62 -0
  4791. pyromt-2.4.1/srigram/raw/functions/messages/get_featured_emoji_stickers.py +62 -0
  4792. pyromt-2.4.1/srigram/raw/functions/messages/get_featured_stickers.py +62 -0
  4793. pyromt-2.4.1/srigram/raw/functions/messages/get_forum_topics.py +105 -0
  4794. pyromt-2.4.1/srigram/raw/functions/messages/get_forum_topics_by_id.py +70 -0
  4795. pyromt-2.4.1/srigram/raw/functions/messages/get_full_chat.py +62 -0
  4796. pyromt-2.4.1/srigram/raw/functions/messages/get_game_high_scores.py +78 -0
  4797. pyromt-2.4.1/srigram/raw/functions/messages/get_history.py +118 -0
  4798. pyromt-2.4.1/srigram/raw/functions/messages/get_inline_bot_results.py +98 -0
  4799. pyromt-2.4.1/srigram/raw/functions/messages/get_inline_game_high_scores.py +70 -0
  4800. pyromt-2.4.1/srigram/raw/functions/messages/get_mask_stickers.py +62 -0
  4801. pyromt-2.4.1/srigram/raw/functions/messages/get_message_edit_data.py +70 -0
  4802. pyromt-2.4.1/srigram/raw/functions/messages/get_message_reactions_list.py +99 -0
  4803. pyromt-2.4.1/srigram/raw/functions/messages/get_message_read_participants.py +70 -0
  4804. pyromt-2.4.1/srigram/raw/functions/messages/get_messages.py +62 -0
  4805. pyromt-2.4.1/srigram/raw/functions/messages/get_messages_reactions.py +70 -0
  4806. pyromt-2.4.1/srigram/raw/functions/messages/get_messages_views.py +78 -0
  4807. pyromt-2.4.1/srigram/raw/functions/messages/get_my_stickers.py +70 -0
  4808. pyromt-2.4.1/srigram/raw/functions/messages/get_old_featured_stickers.py +78 -0
  4809. pyromt-2.4.1/srigram/raw/functions/messages/get_onlines.py +62 -0
  4810. pyromt-2.4.1/srigram/raw/functions/messages/get_outbox_read_date.py +70 -0
  4811. pyromt-2.4.1/srigram/raw/functions/messages/get_paid_reaction_privacy.py +57 -0
  4812. pyromt-2.4.1/srigram/raw/functions/messages/get_peer_dialogs.py +62 -0
  4813. pyromt-2.4.1/srigram/raw/functions/messages/get_peer_settings.py +62 -0
  4814. pyromt-2.4.1/srigram/raw/functions/messages/get_pinned_dialogs.py +62 -0
  4815. pyromt-2.4.1/srigram/raw/functions/messages/get_pinned_saved_dialogs.py +57 -0
  4816. pyromt-2.4.1/srigram/raw/functions/messages/get_poll_results.py +70 -0
  4817. pyromt-2.4.1/srigram/raw/functions/messages/get_poll_votes.py +98 -0
  4818. pyromt-2.4.1/srigram/raw/functions/messages/get_prepared_inline_message.py +70 -0
  4819. pyromt-2.4.1/srigram/raw/functions/messages/get_quick_replies.py +62 -0
  4820. pyromt-2.4.1/srigram/raw/functions/messages/get_quick_reply_messages.py +82 -0
  4821. pyromt-2.4.1/srigram/raw/functions/messages/get_recent_locations.py +78 -0
  4822. pyromt-2.4.1/srigram/raw/functions/messages/get_recent_reactions.py +70 -0
  4823. pyromt-2.4.1/srigram/raw/functions/messages/get_recent_stickers.py +70 -0
  4824. pyromt-2.4.1/srigram/raw/functions/messages/get_replies.py +126 -0
  4825. pyromt-2.4.1/srigram/raw/functions/messages/get_saved_dialogs.py +112 -0
  4826. pyromt-2.4.1/srigram/raw/functions/messages/get_saved_dialogs_by_id.py +74 -0
  4827. pyromt-2.4.1/srigram/raw/functions/messages/get_saved_gifs.py +62 -0
  4828. pyromt-2.4.1/srigram/raw/functions/messages/get_saved_history.py +130 -0
  4829. pyromt-2.4.1/srigram/raw/functions/messages/get_saved_reaction_tags.py +74 -0
  4830. pyromt-2.4.1/srigram/raw/functions/messages/get_scheduled_history.py +70 -0
  4831. pyromt-2.4.1/srigram/raw/functions/messages/get_scheduled_messages.py +70 -0
  4832. pyromt-2.4.1/srigram/raw/functions/messages/get_search_counters.py +91 -0
  4833. pyromt-2.4.1/srigram/raw/functions/messages/get_search_results_calendar.py +98 -0
  4834. pyromt-2.4.1/srigram/raw/functions/messages/get_search_results_positions.py +98 -0
  4835. pyromt-2.4.1/srigram/raw/functions/messages/get_split_ranges.py +57 -0
  4836. pyromt-2.4.1/srigram/raw/functions/messages/get_sponsored_messages.py +73 -0
  4837. pyromt-2.4.1/srigram/raw/functions/messages/get_sticker_set.py +70 -0
  4838. pyromt-2.4.1/srigram/raw/functions/messages/get_stickers.py +70 -0
  4839. pyromt-2.4.1/srigram/raw/functions/messages/get_suggested_dialog_filters.py +57 -0
  4840. pyromt-2.4.1/srigram/raw/functions/messages/get_top_reactions.py +70 -0
  4841. pyromt-2.4.1/srigram/raw/functions/messages/get_unread_mentions.py +113 -0
  4842. pyromt-2.4.1/srigram/raw/functions/messages/get_unread_reactions.py +123 -0
  4843. pyromt-2.4.1/srigram/raw/functions/messages/get_web_page.py +70 -0
  4844. pyromt-2.4.1/srigram/raw/functions/messages/get_web_page_preview.py +74 -0
  4845. pyromt-2.4.1/srigram/raw/functions/messages/hide_all_chat_join_requests.py +79 -0
  4846. pyromt-2.4.1/srigram/raw/functions/messages/hide_chat_join_request.py +78 -0
  4847. pyromt-2.4.1/srigram/raw/functions/messages/hide_peer_settings_bar.py +62 -0
  4848. pyromt-2.4.1/srigram/raw/functions/messages/import_chat_invite.py +62 -0
  4849. pyromt-2.4.1/srigram/raw/functions/messages/init_history_import.py +78 -0
  4850. pyromt-2.4.1/srigram/raw/functions/messages/install_sticker_set.py +70 -0
  4851. pyromt-2.4.1/srigram/raw/functions/messages/mark_dialog_unread.py +80 -0
  4852. pyromt-2.4.1/srigram/raw/functions/messages/migrate_chat.py +62 -0
  4853. pyromt-2.4.1/srigram/raw/functions/messages/prolong_web_view.py +106 -0
  4854. pyromt-2.4.1/srigram/raw/functions/messages/rate_transcribed_audio.py +86 -0
  4855. pyromt-2.4.1/srigram/raw/functions/messages/read_discussion.py +78 -0
  4856. pyromt-2.4.1/srigram/raw/functions/messages/read_encrypted_history.py +70 -0
  4857. pyromt-2.4.1/srigram/raw/functions/messages/read_featured_stickers.py +62 -0
  4858. pyromt-2.4.1/srigram/raw/functions/messages/read_history.py +70 -0
  4859. pyromt-2.4.1/srigram/raw/functions/messages/read_mentions.py +73 -0
  4860. pyromt-2.4.1/srigram/raw/functions/messages/read_message_contents.py +62 -0
  4861. pyromt-2.4.1/srigram/raw/functions/messages/read_reactions.py +83 -0
  4862. pyromt-2.4.1/srigram/raw/functions/messages/read_saved_history.py +78 -0
  4863. pyromt-2.4.1/srigram/raw/functions/messages/received_messages.py +62 -0
  4864. pyromt-2.4.1/srigram/raw/functions/messages/received_queue.py +62 -0
  4865. pyromt-2.4.1/srigram/raw/functions/messages/reorder_pinned_dialogs.py +78 -0
  4866. pyromt-2.4.1/srigram/raw/functions/messages/reorder_pinned_forum_topics.py +78 -0
  4867. pyromt-2.4.1/srigram/raw/functions/messages/reorder_pinned_saved_dialogs.py +70 -0
  4868. pyromt-2.4.1/srigram/raw/functions/messages/reorder_quick_replies.py +62 -0
  4869. pyromt-2.4.1/srigram/raw/functions/messages/reorder_sticker_sets.py +76 -0
  4870. pyromt-2.4.1/srigram/raw/functions/messages/report.py +86 -0
  4871. pyromt-2.4.1/srigram/raw/functions/messages/report_encrypted_spam.py +62 -0
  4872. pyromt-2.4.1/srigram/raw/functions/messages/report_messages_delivery.py +78 -0
  4873. pyromt-2.4.1/srigram/raw/functions/messages/report_reaction.py +78 -0
  4874. pyromt-2.4.1/srigram/raw/functions/messages/report_spam.py +62 -0
  4875. pyromt-2.4.1/srigram/raw/functions/messages/report_sponsored_message.py +70 -0
  4876. pyromt-2.4.1/srigram/raw/functions/messages/request_app_web_view.py +117 -0
  4877. pyromt-2.4.1/srigram/raw/functions/messages/request_encryption.py +78 -0
  4878. pyromt-2.4.1/srigram/raw/functions/messages/request_main_web_view.py +111 -0
  4879. pyromt-2.4.1/srigram/raw/functions/messages/request_simple_web_view.py +124 -0
  4880. pyromt-2.4.1/srigram/raw/functions/messages/request_url_auth.py +93 -0
  4881. pyromt-2.4.1/srigram/raw/functions/messages/request_web_view.py +152 -0
  4882. pyromt-2.4.1/srigram/raw/functions/messages/save_default_send_as.py +70 -0
  4883. pyromt-2.4.1/srigram/raw/functions/messages/save_draft.py +133 -0
  4884. pyromt-2.4.1/srigram/raw/functions/messages/save_gif.py +70 -0
  4885. pyromt-2.4.1/srigram/raw/functions/messages/save_prepared_inline_message.py +82 -0
  4886. pyromt-2.4.1/srigram/raw/functions/messages/save_recent_sticker.py +78 -0
  4887. pyromt-2.4.1/srigram/raw/functions/messages/search.py +183 -0
  4888. pyromt-2.4.1/srigram/raw/functions/messages/search_custom_emoji.py +70 -0
  4889. pyromt-2.4.1/srigram/raw/functions/messages/search_emoji_sticker_sets.py +78 -0
  4890. pyromt-2.4.1/srigram/raw/functions/messages/search_global.py +147 -0
  4891. pyromt-2.4.1/srigram/raw/functions/messages/search_sent_media.py +78 -0
  4892. pyromt-2.4.1/srigram/raw/functions/messages/search_sticker_sets.py +78 -0
  4893. pyromt-2.4.1/srigram/raw/functions/messages/search_stickers.py +110 -0
  4894. pyromt-2.4.1/srigram/raw/functions/messages/send_bot_requested_peer.py +86 -0
  4895. pyromt-2.4.1/srigram/raw/functions/messages/send_encrypted.py +86 -0
  4896. pyromt-2.4.1/srigram/raw/functions/messages/send_encrypted_file.py +94 -0
  4897. pyromt-2.4.1/srigram/raw/functions/messages/send_encrypted_service.py +78 -0
  4898. pyromt-2.4.1/srigram/raw/functions/messages/send_inline_bot_result.py +160 -0
  4899. pyromt-2.4.1/srigram/raw/functions/messages/send_media.py +226 -0
  4900. pyromt-2.4.1/srigram/raw/functions/messages/send_message.py +224 -0
  4901. pyromt-2.4.1/srigram/raw/functions/messages/send_multi_media.py +171 -0
  4902. pyromt-2.4.1/srigram/raw/functions/messages/send_paid_reaction.py +98 -0
  4903. pyromt-2.4.1/srigram/raw/functions/messages/send_quick_reply_messages.py +86 -0
  4904. pyromt-2.4.1/srigram/raw/functions/messages/send_reaction.py +94 -0
  4905. pyromt-2.4.1/srigram/raw/functions/messages/send_scheduled_messages.py +70 -0
  4906. pyromt-2.4.1/srigram/raw/functions/messages/send_screenshot_notification.py +78 -0
  4907. pyromt-2.4.1/srigram/raw/functions/messages/send_vote.py +78 -0
  4908. pyromt-2.4.1/srigram/raw/functions/messages/send_web_view_data.py +86 -0
  4909. pyromt-2.4.1/srigram/raw/functions/messages/send_web_view_result_message.py +70 -0
  4910. pyromt-2.4.1/srigram/raw/functions/messages/set_bot_callback_answer.py +96 -0
  4911. pyromt-2.4.1/srigram/raw/functions/messages/set_bot_precheckout_results.py +79 -0
  4912. pyromt-2.4.1/srigram/raw/functions/messages/set_bot_shipping_results.py +83 -0
  4913. pyromt-2.4.1/srigram/raw/functions/messages/set_chat_available_reactions.py +90 -0
  4914. pyromt-2.4.1/srigram/raw/functions/messages/set_chat_theme.py +70 -0
  4915. pyromt-2.4.1/srigram/raw/functions/messages/set_chat_wall_paper.py +105 -0
  4916. pyromt-2.4.1/srigram/raw/functions/messages/set_default_history_ttl.py +62 -0
  4917. pyromt-2.4.1/srigram/raw/functions/messages/set_default_reaction.py +62 -0
  4918. pyromt-2.4.1/srigram/raw/functions/messages/set_encrypted_typing.py +70 -0
  4919. pyromt-2.4.1/srigram/raw/functions/messages/set_game_score.py +100 -0
  4920. pyromt-2.4.1/srigram/raw/functions/messages/set_history_ttl.py +70 -0
  4921. pyromt-2.4.1/srigram/raw/functions/messages/set_inline_bot_results.py +121 -0
  4922. pyromt-2.4.1/srigram/raw/functions/messages/set_inline_game_score.py +92 -0
  4923. pyromt-2.4.1/srigram/raw/functions/messages/set_typing.py +81 -0
  4924. pyromt-2.4.1/srigram/raw/functions/messages/start_bot.py +86 -0
  4925. pyromt-2.4.1/srigram/raw/functions/messages/start_history_import.py +70 -0
  4926. pyromt-2.4.1/srigram/raw/functions/messages/summarize_text.py +81 -0
  4927. pyromt-2.4.1/srigram/raw/functions/messages/toggle_bot_in_attach_menu.py +78 -0
  4928. pyromt-2.4.1/srigram/raw/functions/messages/toggle_dialog_filter_tags.py +62 -0
  4929. pyromt-2.4.1/srigram/raw/functions/messages/toggle_dialog_pin.py +70 -0
  4930. pyromt-2.4.1/srigram/raw/functions/messages/toggle_no_forwards.py +70 -0
  4931. pyromt-2.4.1/srigram/raw/functions/messages/toggle_paid_reaction_privacy.py +78 -0
  4932. pyromt-2.4.1/srigram/raw/functions/messages/toggle_peer_translations.py +70 -0
  4933. pyromt-2.4.1/srigram/raw/functions/messages/toggle_saved_dialog_pin.py +70 -0
  4934. pyromt-2.4.1/srigram/raw/functions/messages/toggle_sticker_sets.py +82 -0
  4935. pyromt-2.4.1/srigram/raw/functions/messages/toggle_suggested_post_approval.py +96 -0
  4936. pyromt-2.4.1/srigram/raw/functions/messages/toggle_todo_completed.py +86 -0
  4937. pyromt-2.4.1/srigram/raw/functions/messages/transcribe_audio.py +70 -0
  4938. pyromt-2.4.1/srigram/raw/functions/messages/translate_text.py +94 -0
  4939. pyromt-2.4.1/srigram/raw/functions/messages/uninstall_sticker_set.py +62 -0
  4940. pyromt-2.4.1/srigram/raw/functions/messages/unpin_all_messages.py +83 -0
  4941. pyromt-2.4.1/srigram/raw/functions/messages/update_dialog_filter.py +74 -0
  4942. pyromt-2.4.1/srigram/raw/functions/messages/update_dialog_filters_order.py +62 -0
  4943. pyromt-2.4.1/srigram/raw/functions/messages/update_pinned_forum_topic.py +78 -0
  4944. pyromt-2.4.1/srigram/raw/functions/messages/update_pinned_message.py +90 -0
  4945. pyromt-2.4.1/srigram/raw/functions/messages/update_saved_reaction_tag.py +73 -0
  4946. pyromt-2.4.1/srigram/raw/functions/messages/upload_encrypted_file.py +70 -0
  4947. pyromt-2.4.1/srigram/raw/functions/messages/upload_imported_media.py +86 -0
  4948. pyromt-2.4.1/srigram/raw/functions/messages/upload_media.py +81 -0
  4949. pyromt-2.4.1/srigram/raw/functions/messages/view_sponsored_message.py +62 -0
  4950. pyromt-2.4.1/srigram/raw/functions/payments/__init__.py +79 -0
  4951. pyromt-2.4.1/srigram/raw/functions/payments/apply_gift_code.py +62 -0
  4952. pyromt-2.4.1/srigram/raw/functions/payments/assign_app_store_transaction.py +70 -0
  4953. pyromt-2.4.1/srigram/raw/functions/payments/assign_play_market_transaction.py +70 -0
  4954. pyromt-2.4.1/srigram/raw/functions/payments/bot_cancel_stars_subscription.py +78 -0
  4955. pyromt-2.4.1/srigram/raw/functions/payments/can_purchase_store.py +62 -0
  4956. pyromt-2.4.1/srigram/raw/functions/payments/change_stars_subscription.py +81 -0
  4957. pyromt-2.4.1/srigram/raw/functions/payments/check_can_send_gift.py +62 -0
  4958. pyromt-2.4.1/srigram/raw/functions/payments/check_gift_code.py +62 -0
  4959. pyromt-2.4.1/srigram/raw/functions/payments/clear_saved_info.py +68 -0
  4960. pyromt-2.4.1/srigram/raw/functions/payments/connect_star_ref_bot.py +70 -0
  4961. pyromt-2.4.1/srigram/raw/functions/payments/convert_star_gift.py +62 -0
  4962. pyromt-2.4.1/srigram/raw/functions/payments/craft_star_gift.py +62 -0
  4963. pyromt-2.4.1/srigram/raw/functions/payments/create_star_gift_collection.py +78 -0
  4964. pyromt-2.4.1/srigram/raw/functions/payments/delete_star_gift_collection.py +70 -0
  4965. pyromt-2.4.1/srigram/raw/functions/payments/edit_connected_star_ref_bot.py +78 -0
  4966. pyromt-2.4.1/srigram/raw/functions/payments/export_invoice.py +62 -0
  4967. pyromt-2.4.1/srigram/raw/functions/payments/fulfill_stars_subscription.py +70 -0
  4968. pyromt-2.4.1/srigram/raw/functions/payments/get_bank_card_data.py +62 -0
  4969. pyromt-2.4.1/srigram/raw/functions/payments/get_connected_star_ref_bot.py +70 -0
  4970. pyromt-2.4.1/srigram/raw/functions/payments/get_connected_star_ref_bots.py +90 -0
  4971. pyromt-2.4.1/srigram/raw/functions/payments/get_craft_star_gifts.py +78 -0
  4972. pyromt-2.4.1/srigram/raw/functions/payments/get_giveaway_info.py +70 -0
  4973. pyromt-2.4.1/srigram/raw/functions/payments/get_payment_form.py +74 -0
  4974. pyromt-2.4.1/srigram/raw/functions/payments/get_payment_receipt.py +70 -0
  4975. pyromt-2.4.1/srigram/raw/functions/payments/get_premium_gift_code_options.py +66 -0
  4976. pyromt-2.4.1/srigram/raw/functions/payments/get_resale_star_gifts.py +117 -0
  4977. pyromt-2.4.1/srigram/raw/functions/payments/get_saved_info.py +57 -0
  4978. pyromt-2.4.1/srigram/raw/functions/payments/get_saved_star_gift.py +62 -0
  4979. pyromt-2.4.1/srigram/raw/functions/payments/get_saved_star_gifts.py +143 -0
  4980. pyromt-2.4.1/srigram/raw/functions/payments/get_star_gift_active_auctions.py +62 -0
  4981. pyromt-2.4.1/srigram/raw/functions/payments/get_star_gift_auction_acquired_gifts.py +62 -0
  4982. pyromt-2.4.1/srigram/raw/functions/payments/get_star_gift_auction_state.py +70 -0
  4983. pyromt-2.4.1/srigram/raw/functions/payments/get_star_gift_collections.py +70 -0
  4984. pyromt-2.4.1/srigram/raw/functions/payments/get_star_gift_upgrade_attributes.py +62 -0
  4985. pyromt-2.4.1/srigram/raw/functions/payments/get_star_gift_upgrade_preview.py +62 -0
  4986. pyromt-2.4.1/srigram/raw/functions/payments/get_star_gift_withdrawal_url.py +70 -0
  4987. pyromt-2.4.1/srigram/raw/functions/payments/get_star_gifts.py +62 -0
  4988. pyromt-2.4.1/srigram/raw/functions/payments/get_stars_gift_options.py +66 -0
  4989. pyromt-2.4.1/srigram/raw/functions/payments/get_stars_giveaway_options.py +57 -0
  4990. pyromt-2.4.1/srigram/raw/functions/payments/get_stars_revenue_ads_account_url.py +62 -0
  4991. pyromt-2.4.1/srigram/raw/functions/payments/get_stars_revenue_stats.py +76 -0
  4992. pyromt-2.4.1/srigram/raw/functions/payments/get_stars_revenue_withdrawal_url.py +87 -0
  4993. pyromt-2.4.1/srigram/raw/functions/payments/get_stars_status.py +70 -0
  4994. pyromt-2.4.1/srigram/raw/functions/payments/get_stars_subscriptions.py +78 -0
  4995. pyromt-2.4.1/srigram/raw/functions/payments/get_stars_topup_options.py +57 -0
  4996. pyromt-2.4.1/srigram/raw/functions/payments/get_stars_transactions.py +113 -0
  4997. pyromt-2.4.1/srigram/raw/functions/payments/get_stars_transactions_by_id.py +78 -0
  4998. pyromt-2.4.1/srigram/raw/functions/payments/get_suggested_star_ref_bots.py +92 -0
  4999. pyromt-2.4.1/srigram/raw/functions/payments/get_unique_star_gift.py +62 -0
  5000. pyromt-2.4.1/srigram/raw/functions/payments/get_unique_star_gift_value_info.py +62 -0
  5001. pyromt-2.4.1/srigram/raw/functions/payments/launch_prepaid_giveaway.py +78 -0
  5002. pyromt-2.4.1/srigram/raw/functions/payments/refund_stars_charge.py +70 -0
  5003. pyromt-2.4.1/srigram/raw/functions/payments/reorder_star_gift_collections.py +70 -0
  5004. pyromt-2.4.1/srigram/raw/functions/payments/resolve_star_gift_offer.py +70 -0
  5005. pyromt-2.4.1/srigram/raw/functions/payments/save_star_gift.py +70 -0
  5006. pyromt-2.4.1/srigram/raw/functions/payments/send_payment_form.py +107 -0
  5007. pyromt-2.4.1/srigram/raw/functions/payments/send_star_gift_offer.py +105 -0
  5008. pyromt-2.4.1/srigram/raw/functions/payments/send_stars_form.py +70 -0
  5009. pyromt-2.4.1/srigram/raw/functions/payments/toggle_chat_star_gift_notifications.py +70 -0
  5010. pyromt-2.4.1/srigram/raw/functions/payments/toggle_star_gifts_pinned_to_top.py +70 -0
  5011. pyromt-2.4.1/srigram/raw/functions/payments/transfer_star_gift.py +70 -0
  5012. pyromt-2.4.1/srigram/raw/functions/payments/update_star_gift_collection.py +111 -0
  5013. pyromt-2.4.1/srigram/raw/functions/payments/update_star_gift_price.py +70 -0
  5014. pyromt-2.4.1/srigram/raw/functions/payments/upgrade_star_gift.py +70 -0
  5015. pyromt-2.4.1/srigram/raw/functions/payments/validate_requested_info.py +78 -0
  5016. pyromt-2.4.1/srigram/raw/functions/phone/__init__.py +57 -0
  5017. pyromt-2.4.1/srigram/raw/functions/phone/accept_call.py +78 -0
  5018. pyromt-2.4.1/srigram/raw/functions/phone/check_group_call.py +70 -0
  5019. pyromt-2.4.1/srigram/raw/functions/phone/confirm_call.py +86 -0
  5020. pyromt-2.4.1/srigram/raw/functions/phone/create_conference_call.py +110 -0
  5021. pyromt-2.4.1/srigram/raw/functions/phone/create_group_call.py +96 -0
  5022. pyromt-2.4.1/srigram/raw/functions/phone/decline_conference_call_invite.py +62 -0
  5023. pyromt-2.4.1/srigram/raw/functions/phone/delete_conference_call_participants.py +92 -0
  5024. pyromt-2.4.1/srigram/raw/functions/phone/delete_group_call_messages.py +78 -0
  5025. pyromt-2.4.1/srigram/raw/functions/phone/delete_group_call_participant_messages.py +78 -0
  5026. pyromt-2.4.1/srigram/raw/functions/phone/discard_call.py +94 -0
  5027. pyromt-2.4.1/srigram/raw/functions/phone/discard_group_call.py +62 -0
  5028. pyromt-2.4.1/srigram/raw/functions/phone/edit_group_call_participant.py +126 -0
  5029. pyromt-2.4.1/srigram/raw/functions/phone/edit_group_call_title.py +70 -0
  5030. pyromt-2.4.1/srigram/raw/functions/phone/export_group_call_invite.py +70 -0
  5031. pyromt-2.4.1/srigram/raw/functions/phone/get_call_config.py +57 -0
  5032. pyromt-2.4.1/srigram/raw/functions/phone/get_group_call.py +70 -0
  5033. pyromt-2.4.1/srigram/raw/functions/phone/get_group_call_chain_blocks.py +86 -0
  5034. pyromt-2.4.1/srigram/raw/functions/phone/get_group_call_join_as.py +62 -0
  5035. pyromt-2.4.1/srigram/raw/functions/phone/get_group_call_stars.py +62 -0
  5036. pyromt-2.4.1/srigram/raw/functions/phone/get_group_call_stream_channels.py +62 -0
  5037. pyromt-2.4.1/srigram/raw/functions/phone/get_group_call_stream_rtmp_url.py +78 -0
  5038. pyromt-2.4.1/srigram/raw/functions/phone/get_group_participants.py +94 -0
  5039. pyromt-2.4.1/srigram/raw/functions/phone/invite_conference_call_participant.py +78 -0
  5040. pyromt-2.4.1/srigram/raw/functions/phone/invite_to_group_call.py +70 -0
  5041. pyromt-2.4.1/srigram/raw/functions/phone/join_group_call.py +119 -0
  5042. pyromt-2.4.1/srigram/raw/functions/phone/join_group_call_presentation.py +70 -0
  5043. pyromt-2.4.1/srigram/raw/functions/phone/leave_group_call.py +70 -0
  5044. pyromt-2.4.1/srigram/raw/functions/phone/leave_group_call_presentation.py +62 -0
  5045. pyromt-2.4.1/srigram/raw/functions/phone/received_call.py +62 -0
  5046. pyromt-2.4.1/srigram/raw/functions/phone/request_call.py +94 -0
  5047. pyromt-2.4.1/srigram/raw/functions/phone/save_call_debug.py +70 -0
  5048. pyromt-2.4.1/srigram/raw/functions/phone/save_call_log.py +70 -0
  5049. pyromt-2.4.1/srigram/raw/functions/phone/save_default_group_call_join_as.py +70 -0
  5050. pyromt-2.4.1/srigram/raw/functions/phone/save_default_send_as.py +70 -0
  5051. pyromt-2.4.1/srigram/raw/functions/phone/send_conference_call_broadcast.py +70 -0
  5052. pyromt-2.4.1/srigram/raw/functions/phone/send_group_call_encrypted_message.py +70 -0
  5053. pyromt-2.4.1/srigram/raw/functions/phone/send_group_call_message.py +99 -0
  5054. pyromt-2.4.1/srigram/raw/functions/phone/send_signaling_data.py +70 -0
  5055. pyromt-2.4.1/srigram/raw/functions/phone/set_call_rating.py +86 -0
  5056. pyromt-2.4.1/srigram/raw/functions/phone/start_scheduled_group_call.py +62 -0
  5057. pyromt-2.4.1/srigram/raw/functions/phone/toggle_group_call_record.py +94 -0
  5058. pyromt-2.4.1/srigram/raw/functions/phone/toggle_group_call_settings.py +97 -0
  5059. pyromt-2.4.1/srigram/raw/functions/phone/toggle_group_call_start_subscription.py +70 -0
  5060. pyromt-2.4.1/srigram/raw/functions/photos/__init__.py +19 -0
  5061. pyromt-2.4.1/srigram/raw/functions/photos/delete_photos.py +62 -0
  5062. pyromt-2.4.1/srigram/raw/functions/photos/get_user_photos.py +86 -0
  5063. pyromt-2.4.1/srigram/raw/functions/photos/update_profile_photo.py +80 -0
  5064. pyromt-2.4.1/srigram/raw/functions/photos/upload_contact_profile_photo.py +115 -0
  5065. pyromt-2.4.1/srigram/raw/functions/photos/upload_profile_photo.py +111 -0
  5066. pyromt-2.4.1/srigram/raw/functions/ping.py +62 -0
  5067. pyromt-2.4.1/srigram/raw/functions/ping_delay_disconnect.py +70 -0
  5068. pyromt-2.4.1/srigram/raw/functions/premium/__init__.py +19 -0
  5069. pyromt-2.4.1/srigram/raw/functions/premium/apply_boost.py +74 -0
  5070. pyromt-2.4.1/srigram/raw/functions/premium/get_boosts_list.py +86 -0
  5071. pyromt-2.4.1/srigram/raw/functions/premium/get_boosts_status.py +62 -0
  5072. pyromt-2.4.1/srigram/raw/functions/premium/get_my_boosts.py +57 -0
  5073. pyromt-2.4.1/srigram/raw/functions/premium/get_user_boosts.py +70 -0
  5074. pyromt-2.4.1/srigram/raw/functions/req_dh_params.py +102 -0
  5075. pyromt-2.4.1/srigram/raw/functions/req_pq.py +62 -0
  5076. pyromt-2.4.1/srigram/raw/functions/req_pq_multi.py +62 -0
  5077. pyromt-2.4.1/srigram/raw/functions/rpc_drop_answer.py +62 -0
  5078. pyromt-2.4.1/srigram/raw/functions/set_client_dh_params.py +78 -0
  5079. pyromt-2.4.1/srigram/raw/functions/smsjobs/__init__.py +21 -0
  5080. pyromt-2.4.1/srigram/raw/functions/smsjobs/finish_job.py +73 -0
  5081. pyromt-2.4.1/srigram/raw/functions/smsjobs/get_sms_job.py +62 -0
  5082. pyromt-2.4.1/srigram/raw/functions/smsjobs/get_status.py +57 -0
  5083. pyromt-2.4.1/srigram/raw/functions/smsjobs/is_eligible_to_join.py +57 -0
  5084. pyromt-2.4.1/srigram/raw/functions/smsjobs/join.py +57 -0
  5085. pyromt-2.4.1/srigram/raw/functions/smsjobs/leave.py +57 -0
  5086. pyromt-2.4.1/srigram/raw/functions/smsjobs/update_settings.py +62 -0
  5087. pyromt-2.4.1/srigram/raw/functions/stats/__init__.py +21 -0
  5088. pyromt-2.4.1/srigram/raw/functions/stats/get_broadcast_stats.py +70 -0
  5089. pyromt-2.4.1/srigram/raw/functions/stats/get_megagroup_stats.py +70 -0
  5090. pyromt-2.4.1/srigram/raw/functions/stats/get_message_public_forwards.py +86 -0
  5091. pyromt-2.4.1/srigram/raw/functions/stats/get_message_stats.py +78 -0
  5092. pyromt-2.4.1/srigram/raw/functions/stats/get_story_public_forwards.py +86 -0
  5093. pyromt-2.4.1/srigram/raw/functions/stats/get_story_stats.py +78 -0
  5094. pyromt-2.4.1/srigram/raw/functions/stats/load_async_graph.py +73 -0
  5095. pyromt-2.4.1/srigram/raw/functions/stickers/__init__.py +25 -0
  5096. pyromt-2.4.1/srigram/raw/functions/stickers/add_sticker_to_set.py +70 -0
  5097. pyromt-2.4.1/srigram/raw/functions/stickers/change_sticker.py +92 -0
  5098. pyromt-2.4.1/srigram/raw/functions/stickers/change_sticker_position.py +70 -0
  5099. pyromt-2.4.1/srigram/raw/functions/stickers/check_short_name.py +62 -0
  5100. pyromt-2.4.1/srigram/raw/functions/stickers/create_sticker_set.py +125 -0
  5101. pyromt-2.4.1/srigram/raw/functions/stickers/delete_sticker_set.py +62 -0
  5102. pyromt-2.4.1/srigram/raw/functions/stickers/remove_sticker_from_set.py +62 -0
  5103. pyromt-2.4.1/srigram/raw/functions/stickers/rename_sticker_set.py +70 -0
  5104. pyromt-2.4.1/srigram/raw/functions/stickers/replace_sticker.py +70 -0
  5105. pyromt-2.4.1/srigram/raw/functions/stickers/set_sticker_set_thumb.py +83 -0
  5106. pyromt-2.4.1/srigram/raw/functions/stickers/suggest_short_name.py +62 -0
  5107. pyromt-2.4.1/srigram/raw/functions/stories/__init__.py +47 -0
  5108. pyromt-2.4.1/srigram/raw/functions/stories/activate_stealth_mode.py +68 -0
  5109. pyromt-2.4.1/srigram/raw/functions/stories/can_send_story.py +62 -0
  5110. pyromt-2.4.1/srigram/raw/functions/stories/create_album.py +78 -0
  5111. pyromt-2.4.1/srigram/raw/functions/stories/delete_album.py +70 -0
  5112. pyromt-2.4.1/srigram/raw/functions/stories/delete_stories.py +70 -0
  5113. pyromt-2.4.1/srigram/raw/functions/stories/edit_story.py +121 -0
  5114. pyromt-2.4.1/srigram/raw/functions/stories/export_story_link.py +70 -0
  5115. pyromt-2.4.1/srigram/raw/functions/stories/get_album_stories.py +86 -0
  5116. pyromt-2.4.1/srigram/raw/functions/stories/get_albums.py +70 -0
  5117. pyromt-2.4.1/srigram/raw/functions/stories/get_all_read_peer_stories.py +57 -0
  5118. pyromt-2.4.1/srigram/raw/functions/stories/get_all_stories.py +77 -0
  5119. pyromt-2.4.1/srigram/raw/functions/stories/get_chats_to_send.py +57 -0
  5120. pyromt-2.4.1/srigram/raw/functions/stories/get_peer_max_i_ds.py +62 -0
  5121. pyromt-2.4.1/srigram/raw/functions/stories/get_peer_stories.py +62 -0
  5122. pyromt-2.4.1/srigram/raw/functions/stories/get_pinned_stories.py +78 -0
  5123. pyromt-2.4.1/srigram/raw/functions/stories/get_stories_archive.py +78 -0
  5124. pyromt-2.4.1/srigram/raw/functions/stories/get_stories_by_id.py +70 -0
  5125. pyromt-2.4.1/srigram/raw/functions/stories/get_stories_views.py +70 -0
  5126. pyromt-2.4.1/srigram/raw/functions/stories/get_story_reactions_list.py +105 -0
  5127. pyromt-2.4.1/srigram/raw/functions/stories/get_story_views_list.py +115 -0
  5128. pyromt-2.4.1/srigram/raw/functions/stories/increment_story_views.py +70 -0
  5129. pyromt-2.4.1/srigram/raw/functions/stories/read_stories.py +70 -0
  5130. pyromt-2.4.1/srigram/raw/functions/stories/reorder_albums.py +70 -0
  5131. pyromt-2.4.1/srigram/raw/functions/stories/report.py +86 -0
  5132. pyromt-2.4.1/srigram/raw/functions/stories/search_posts.py +101 -0
  5133. pyromt-2.4.1/srigram/raw/functions/stories/send_reaction.py +86 -0
  5134. pyromt-2.4.1/srigram/raw/functions/stories/send_story.py +173 -0
  5135. pyromt-2.4.1/srigram/raw/functions/stories/start_live.py +135 -0
  5136. pyromt-2.4.1/srigram/raw/functions/stories/toggle_all_stories_hidden.py +62 -0
  5137. pyromt-2.4.1/srigram/raw/functions/stories/toggle_peer_stories_hidden.py +70 -0
  5138. pyromt-2.4.1/srigram/raw/functions/stories/toggle_pinned.py +78 -0
  5139. pyromt-2.4.1/srigram/raw/functions/stories/toggle_pinned_to_top.py +70 -0
  5140. pyromt-2.4.1/srigram/raw/functions/stories/update_album.py +111 -0
  5141. pyromt-2.4.1/srigram/raw/functions/updates/__init__.py +17 -0
  5142. pyromt-2.4.1/srigram/raw/functions/updates/get_channel_difference.py +94 -0
  5143. pyromt-2.4.1/srigram/raw/functions/updates/get_difference.py +107 -0
  5144. pyromt-2.4.1/srigram/raw/functions/updates/get_state.py +57 -0
  5145. pyromt-2.4.1/srigram/raw/functions/upload/__init__.py +22 -0
  5146. pyromt-2.4.1/srigram/raw/functions/upload/get_cdn_file.py +78 -0
  5147. pyromt-2.4.1/srigram/raw/functions/upload/get_cdn_file_hashes.py +70 -0
  5148. pyromt-2.4.1/srigram/raw/functions/upload/get_file.py +92 -0
  5149. pyromt-2.4.1/srigram/raw/functions/upload/get_file_hashes.py +70 -0
  5150. pyromt-2.4.1/srigram/raw/functions/upload/get_web_file.py +78 -0
  5151. pyromt-2.4.1/srigram/raw/functions/upload/reupload_cdn_file.py +70 -0
  5152. pyromt-2.4.1/srigram/raw/functions/upload/save_big_file_part.py +86 -0
  5153. pyromt-2.4.1/srigram/raw/functions/upload/save_file_part.py +78 -0
  5154. pyromt-2.4.1/srigram/raw/functions/users/__init__.py +21 -0
  5155. pyromt-2.4.1/srigram/raw/functions/users/get_full_user.py +62 -0
  5156. pyromt-2.4.1/srigram/raw/functions/users/get_requirements_to_contact.py +62 -0
  5157. pyromt-2.4.1/srigram/raw/functions/users/get_saved_music.py +86 -0
  5158. pyromt-2.4.1/srigram/raw/functions/users/get_saved_music_by_id.py +70 -0
  5159. pyromt-2.4.1/srigram/raw/functions/users/get_users.py +62 -0
  5160. pyromt-2.4.1/srigram/raw/functions/users/set_secure_value_errors.py +70 -0
  5161. pyromt-2.4.1/srigram/raw/functions/users/suggest_birthday.py +70 -0
  5162. pyromt-2.4.1/srigram/raw/types/__init__.py +1278 -0
  5163. pyromt-2.4.1/srigram/raw/types/access_point_rule.py +78 -0
  5164. pyromt-2.4.1/srigram/raw/types/account/__init__.py +52 -0
  5165. pyromt-2.4.1/srigram/raw/types/account/authorization_form.py +106 -0
  5166. pyromt-2.4.1/srigram/raw/types/account/authorizations.py +79 -0
  5167. pyromt-2.4.1/srigram/raw/types/account/auto_download_settings.py +87 -0
  5168. pyromt-2.4.1/srigram/raw/types/account/auto_save_settings.py +111 -0
  5169. pyromt-2.4.1/srigram/raw/types/account/business_chat_links.py +87 -0
  5170. pyromt-2.4.1/srigram/raw/types/account/chat_themes.py +106 -0
  5171. pyromt-2.4.1/srigram/raw/types/account/chat_themes_not_modified.py +66 -0
  5172. pyromt-2.4.1/srigram/raw/types/account/connected_bots.py +79 -0
  5173. pyromt-2.4.1/srigram/raw/types/account/content_settings.py +77 -0
  5174. pyromt-2.4.1/srigram/raw/types/account/email_verified.py +71 -0
  5175. pyromt-2.4.1/srigram/raw/types/account/email_verified_login.py +79 -0
  5176. pyromt-2.4.1/srigram/raw/types/account/emoji_statuses.py +82 -0
  5177. pyromt-2.4.1/srigram/raw/types/account/emoji_statuses_not_modified.py +69 -0
  5178. pyromt-2.4.1/srigram/raw/types/account/paid_messages_revenue.py +71 -0
  5179. pyromt-2.4.1/srigram/raw/types/account/passkey_registration_options.py +71 -0
  5180. pyromt-2.4.1/srigram/raw/types/account/passkeys.py +71 -0
  5181. pyromt-2.4.1/srigram/raw/types/account/password.py +171 -0
  5182. pyromt-2.4.1/srigram/raw/types/account/password_input_settings.py +103 -0
  5183. pyromt-2.4.1/srigram/raw/types/account/password_settings.py +84 -0
  5184. pyromt-2.4.1/srigram/raw/types/account/privacy_rules.py +88 -0
  5185. pyromt-2.4.1/srigram/raw/types/account/reset_password_failed_wait.py +71 -0
  5186. pyromt-2.4.1/srigram/raw/types/account/reset_password_ok.py +66 -0
  5187. pyromt-2.4.1/srigram/raw/types/account/reset_password_requested_wait.py +71 -0
  5188. pyromt-2.4.1/srigram/raw/types/account/resolved_business_chat_links.py +107 -0
  5189. pyromt-2.4.1/srigram/raw/types/account/saved_music_ids.py +71 -0
  5190. pyromt-2.4.1/srigram/raw/types/account/saved_music_ids_not_modified.py +66 -0
  5191. pyromt-2.4.1/srigram/raw/types/account/saved_ringtone.py +66 -0
  5192. pyromt-2.4.1/srigram/raw/types/account/saved_ringtone_converted.py +71 -0
  5193. pyromt-2.4.1/srigram/raw/types/account/saved_ringtones.py +79 -0
  5194. pyromt-2.4.1/srigram/raw/types/account/saved_ringtones_not_modified.py +66 -0
  5195. pyromt-2.4.1/srigram/raw/types/account/sent_email_code.py +79 -0
  5196. pyromt-2.4.1/srigram/raw/types/account/takeout.py +71 -0
  5197. pyromt-2.4.1/srigram/raw/types/account/themes.py +80 -0
  5198. pyromt-2.4.1/srigram/raw/types/account/themes_not_modified.py +67 -0
  5199. pyromt-2.4.1/srigram/raw/types/account/tmp_password.py +79 -0
  5200. pyromt-2.4.1/srigram/raw/types/account/wall_papers.py +79 -0
  5201. pyromt-2.4.1/srigram/raw/types/account/wall_papers_not_modified.py +66 -0
  5202. pyromt-2.4.1/srigram/raw/types/account/web_authorizations.py +79 -0
  5203. pyromt-2.4.1/srigram/raw/types/account_days_ttl.py +71 -0
  5204. pyromt-2.4.1/srigram/raw/types/attach_menu_bot.py +126 -0
  5205. pyromt-2.4.1/srigram/raw/types/attach_menu_bot_icon.py +82 -0
  5206. pyromt-2.4.1/srigram/raw/types/attach_menu_bot_icon_color.py +70 -0
  5207. pyromt-2.4.1/srigram/raw/types/attach_menu_bots.py +87 -0
  5208. pyromt-2.4.1/srigram/raw/types/attach_menu_bots_bot.py +79 -0
  5209. pyromt-2.4.1/srigram/raw/types/attach_menu_bots_not_modified.py +66 -0
  5210. pyromt-2.4.1/srigram/raw/types/attach_menu_peer_type_bot_pm.py +57 -0
  5211. pyromt-2.4.1/srigram/raw/types/attach_menu_peer_type_broadcast.py +57 -0
  5212. pyromt-2.4.1/srigram/raw/types/attach_menu_peer_type_chat.py +57 -0
  5213. pyromt-2.4.1/srigram/raw/types/attach_menu_peer_type_pm.py +57 -0
  5214. pyromt-2.4.1/srigram/raw/types/attach_menu_peer_type_same_bot_pm.py +57 -0
  5215. pyromt-2.4.1/srigram/raw/types/auction_bid_level.py +78 -0
  5216. pyromt-2.4.1/srigram/raw/types/auth/__init__.py +42 -0
  5217. pyromt-2.4.1/srigram/raw/types/auth/authorization.py +113 -0
  5218. pyromt-2.4.1/srigram/raw/types/auth/authorization_sign_up_required.py +82 -0
  5219. pyromt-2.4.1/srigram/raw/types/auth/code_type_call.py +57 -0
  5220. pyromt-2.4.1/srigram/raw/types/auth/code_type_flash_call.py +57 -0
  5221. pyromt-2.4.1/srigram/raw/types/auth/code_type_fragment_sms.py +57 -0
  5222. pyromt-2.4.1/srigram/raw/types/auth/code_type_missed_call.py +57 -0
  5223. pyromt-2.4.1/srigram/raw/types/auth/code_type_sms.py +57 -0
  5224. pyromt-2.4.1/srigram/raw/types/auth/exported_authorization.py +79 -0
  5225. pyromt-2.4.1/srigram/raw/types/auth/logged_out.py +74 -0
  5226. pyromt-2.4.1/srigram/raw/types/auth/login_token.py +80 -0
  5227. pyromt-2.4.1/srigram/raw/types/auth/login_token_migrate_to.py +80 -0
  5228. pyromt-2.4.1/srigram/raw/types/auth/login_token_success.py +72 -0
  5229. pyromt-2.4.1/srigram/raw/types/auth/passkey_login_options.py +71 -0
  5230. pyromt-2.4.1/srigram/raw/types/auth/password_recovery.py +71 -0
  5231. pyromt-2.4.1/srigram/raw/types/auth/sent_code.py +106 -0
  5232. pyromt-2.4.1/srigram/raw/types/auth/sent_code_payment_required.py +117 -0
  5233. pyromt-2.4.1/srigram/raw/types/auth/sent_code_success.py +77 -0
  5234. pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_app.py +62 -0
  5235. pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_call.py +62 -0
  5236. pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_email_code.py +102 -0
  5237. pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_firebase_sms.py +109 -0
  5238. pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_flash_call.py +62 -0
  5239. pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_fragment_sms.py +70 -0
  5240. pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_missed_call.py +70 -0
  5241. pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_set_up_email_required.py +68 -0
  5242. pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_sms.py +62 -0
  5243. pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_sms_phrase.py +65 -0
  5244. pyromt-2.4.1/srigram/raw/types/auth/sent_code_type_sms_word.py +65 -0
  5245. pyromt-2.4.1/srigram/raw/types/authorization.py +197 -0
  5246. pyromt-2.4.1/srigram/raw/types/auto_download_settings.py +134 -0
  5247. pyromt-2.4.1/srigram/raw/types/auto_save_exception.py +70 -0
  5248. pyromt-2.4.1/srigram/raw/types/auto_save_settings.py +77 -0
  5249. pyromt-2.4.1/srigram/raw/types/available_effect.py +104 -0
  5250. pyromt-2.4.1/srigram/raw/types/available_reaction.py +144 -0
  5251. pyromt-2.4.1/srigram/raw/types/bad_msg_notification.py +78 -0
  5252. pyromt-2.4.1/srigram/raw/types/bad_server_salt.py +86 -0
  5253. pyromt-2.4.1/srigram/raw/types/bank_card_open_url.py +70 -0
  5254. pyromt-2.4.1/srigram/raw/types/base_theme_arctic.py +57 -0
  5255. pyromt-2.4.1/srigram/raw/types/base_theme_classic.py +57 -0
  5256. pyromt-2.4.1/srigram/raw/types/base_theme_day.py +57 -0
  5257. pyromt-2.4.1/srigram/raw/types/base_theme_night.py +57 -0
  5258. pyromt-2.4.1/srigram/raw/types/base_theme_tinted.py +57 -0
  5259. pyromt-2.4.1/srigram/raw/types/bind_auth_key_inner.py +94 -0
  5260. pyromt-2.4.1/srigram/raw/types/birthday.py +81 -0
  5261. pyromt-2.4.1/srigram/raw/types/bool_false.py +267 -0
  5262. pyromt-2.4.1/srigram/raw/types/bool_true.py +267 -0
  5263. pyromt-2.4.1/srigram/raw/types/boost.py +143 -0
  5264. pyromt-2.4.1/srigram/raw/types/bot_app.py +122 -0
  5265. pyromt-2.4.1/srigram/raw/types/bot_app_not_modified.py +57 -0
  5266. pyromt-2.4.1/srigram/raw/types/bot_app_settings.py +101 -0
  5267. pyromt-2.4.1/srigram/raw/types/bot_business_connection.py +104 -0
  5268. pyromt-2.4.1/srigram/raw/types/bot_command.py +79 -0
  5269. pyromt-2.4.1/srigram/raw/types/bot_command_scope_chat_admins.py +57 -0
  5270. pyromt-2.4.1/srigram/raw/types/bot_command_scope_chats.py +57 -0
  5271. pyromt-2.4.1/srigram/raw/types/bot_command_scope_default.py +57 -0
  5272. pyromt-2.4.1/srigram/raw/types/bot_command_scope_peer.py +62 -0
  5273. pyromt-2.4.1/srigram/raw/types/bot_command_scope_peer_admins.py +62 -0
  5274. pyromt-2.4.1/srigram/raw/types/bot_command_scope_peer_user.py +70 -0
  5275. pyromt-2.4.1/srigram/raw/types/bot_command_scope_users.py +57 -0
  5276. pyromt-2.4.1/srigram/raw/types/bot_info.py +149 -0
  5277. pyromt-2.4.1/srigram/raw/types/bot_inline_media_result.py +118 -0
  5278. pyromt-2.4.1/srigram/raw/types/bot_inline_message_media_auto.py +90 -0
  5279. pyromt-2.4.1/srigram/raw/types/bot_inline_message_media_contact.py +98 -0
  5280. pyromt-2.4.1/srigram/raw/types/bot_inline_message_media_geo.py +101 -0
  5281. pyromt-2.4.1/srigram/raw/types/bot_inline_message_media_invoice.py +120 -0
  5282. pyromt-2.4.1/srigram/raw/types/bot_inline_message_media_venue.py +114 -0
  5283. pyromt-2.4.1/srigram/raw/types/bot_inline_message_media_web_page.py +122 -0
  5284. pyromt-2.4.1/srigram/raw/types/bot_inline_message_text.py +96 -0
  5285. pyromt-2.4.1/srigram/raw/types/bot_inline_result.py +127 -0
  5286. pyromt-2.4.1/srigram/raw/types/bot_menu_button.py +79 -0
  5287. pyromt-2.4.1/srigram/raw/types/bot_menu_button_commands.py +66 -0
  5288. pyromt-2.4.1/srigram/raw/types/bot_menu_button_default.py +66 -0
  5289. pyromt-2.4.1/srigram/raw/types/bot_preview_media.py +81 -0
  5290. pyromt-2.4.1/srigram/raw/types/bot_verification.py +78 -0
  5291. pyromt-2.4.1/srigram/raw/types/bot_verifier_settings.py +87 -0
  5292. pyromt-2.4.1/srigram/raw/types/bots/__init__.py +17 -0
  5293. pyromt-2.4.1/srigram/raw/types/bots/bot_info.py +87 -0
  5294. pyromt-2.4.1/srigram/raw/types/bots/popular_app_bots.py +82 -0
  5295. pyromt-2.4.1/srigram/raw/types/bots/preview_info.py +79 -0
  5296. pyromt-2.4.1/srigram/raw/types/business_away_message.py +86 -0
  5297. pyromt-2.4.1/srigram/raw/types/business_away_message_schedule_always.py +57 -0
  5298. pyromt-2.4.1/srigram/raw/types/business_away_message_schedule_custom.py +70 -0
  5299. pyromt-2.4.1/srigram/raw/types/business_away_message_schedule_outside_work_hours.py +57 -0
  5300. pyromt-2.4.1/srigram/raw/types/business_bot_recipients.py +106 -0
  5301. pyromt-2.4.1/srigram/raw/types/business_bot_rights.py +140 -0
  5302. pyromt-2.4.1/srigram/raw/types/business_chat_link.py +109 -0
  5303. pyromt-2.4.1/srigram/raw/types/business_greeting_message.py +78 -0
  5304. pyromt-2.4.1/srigram/raw/types/business_intro.py +82 -0
  5305. pyromt-2.4.1/srigram/raw/types/business_location.py +74 -0
  5306. pyromt-2.4.1/srigram/raw/types/business_recipients.py +96 -0
  5307. pyromt-2.4.1/srigram/raw/types/business_weekly_open.py +70 -0
  5308. pyromt-2.4.1/srigram/raw/types/business_work_hours.py +78 -0
  5309. pyromt-2.4.1/srigram/raw/types/cdn_config.py +71 -0
  5310. pyromt-2.4.1/srigram/raw/types/cdn_public_key.py +70 -0
  5311. pyromt-2.4.1/srigram/raw/types/channel.py +422 -0
  5312. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event.py +86 -0
  5313. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_about.py +70 -0
  5314. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_available_reactions.py +70 -0
  5315. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_emoji_status.py +70 -0
  5316. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py +70 -0
  5317. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_history_ttl.py +70 -0
  5318. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_linked_chat.py +70 -0
  5319. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_location.py +70 -0
  5320. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_peer_color.py +70 -0
  5321. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_photo.py +70 -0
  5322. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py +70 -0
  5323. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_sticker_set.py +70 -0
  5324. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_title.py +70 -0
  5325. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_username.py +70 -0
  5326. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_usernames.py +70 -0
  5327. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_change_wallpaper.py +70 -0
  5328. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_create_topic.py +62 -0
  5329. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_default_banned_rights.py +70 -0
  5330. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_delete_message.py +62 -0
  5331. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_delete_topic.py +62 -0
  5332. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_discard_group_call.py +62 -0
  5333. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_edit_message.py +70 -0
  5334. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_edit_topic.py +70 -0
  5335. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_exported_invite_delete.py +62 -0
  5336. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_exported_invite_edit.py +70 -0
  5337. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py +62 -0
  5338. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_invite.py +62 -0
  5339. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_join.py +57 -0
  5340. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py +70 -0
  5341. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_join_by_request.py +70 -0
  5342. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_leave.py +57 -0
  5343. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_mute.py +62 -0
  5344. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_sub_extend.py +70 -0
  5345. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py +70 -0
  5346. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py +70 -0
  5347. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_unmute.py +62 -0
  5348. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_participant_volume.py +62 -0
  5349. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_pin_topic.py +76 -0
  5350. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_send_message.py +62 -0
  5351. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_start_group_call.py +62 -0
  5352. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_stop_poll.py +62 -0
  5353. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py +62 -0
  5354. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_autotranslation.py +62 -0
  5355. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_forum.py +62 -0
  5356. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py +62 -0
  5357. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_invites.py +62 -0
  5358. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py +62 -0
  5359. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py +62 -0
  5360. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_signature_profiles.py +62 -0
  5361. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_signatures.py +62 -0
  5362. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py +70 -0
  5363. pyromt-2.4.1/srigram/raw/types/channel_admin_log_event_action_update_pinned.py +62 -0
  5364. pyromt-2.4.1/srigram/raw/types/channel_admin_log_events_filter.py +170 -0
  5365. pyromt-2.4.1/srigram/raw/types/channel_forbidden.py +107 -0
  5366. pyromt-2.4.1/srigram/raw/types/channel_full.py +596 -0
  5367. pyromt-2.4.1/srigram/raw/types/channel_location.py +70 -0
  5368. pyromt-2.4.1/srigram/raw/types/channel_location_empty.py +57 -0
  5369. pyromt-2.4.1/srigram/raw/types/channel_messages_filter.py +70 -0
  5370. pyromt-2.4.1/srigram/raw/types/channel_messages_filter_empty.py +57 -0
  5371. pyromt-2.4.1/srigram/raw/types/channel_participant.py +81 -0
  5372. pyromt-2.4.1/srigram/raw/types/channel_participant_admin.py +118 -0
  5373. pyromt-2.4.1/srigram/raw/types/channel_participant_banned.py +94 -0
  5374. pyromt-2.4.1/srigram/raw/types/channel_participant_creator.py +81 -0
  5375. pyromt-2.4.1/srigram/raw/types/channel_participant_left.py +62 -0
  5376. pyromt-2.4.1/srigram/raw/types/channel_participant_self.py +95 -0
  5377. pyromt-2.4.1/srigram/raw/types/channel_participants_admins.py +57 -0
  5378. pyromt-2.4.1/srigram/raw/types/channel_participants_banned.py +62 -0
  5379. pyromt-2.4.1/srigram/raw/types/channel_participants_bots.py +57 -0
  5380. pyromt-2.4.1/srigram/raw/types/channel_participants_contacts.py +62 -0
  5381. pyromt-2.4.1/srigram/raw/types/channel_participants_kicked.py +62 -0
  5382. pyromt-2.4.1/srigram/raw/types/channel_participants_mentions.py +74 -0
  5383. pyromt-2.4.1/srigram/raw/types/channel_participants_recent.py +57 -0
  5384. pyromt-2.4.1/srigram/raw/types/channel_participants_search.py +62 -0
  5385. pyromt-2.4.1/srigram/raw/types/channels/__init__.py +22 -0
  5386. pyromt-2.4.1/srigram/raw/types/channels/admin_log_results.py +87 -0
  5387. pyromt-2.4.1/srigram/raw/types/channels/channel_participant.py +87 -0
  5388. pyromt-2.4.1/srigram/raw/types/channels/channel_participants.py +95 -0
  5389. pyromt-2.4.1/srigram/raw/types/channels/channel_participants_not_modified.py +66 -0
  5390. pyromt-2.4.1/srigram/raw/types/channels/send_as_peers.py +87 -0
  5391. pyromt-2.4.1/srigram/raw/types/channels/sponsored_message_report_result_ads_hidden.py +66 -0
  5392. pyromt-2.4.1/srigram/raw/types/channels/sponsored_message_report_result_choose_option.py +79 -0
  5393. pyromt-2.4.1/srigram/raw/types/channels/sponsored_message_report_result_reported.py +66 -0
  5394. pyromt-2.4.1/srigram/raw/types/chat.py +170 -0
  5395. pyromt-2.4.1/srigram/raw/types/chat_admin_rights.py +152 -0
  5396. pyromt-2.4.1/srigram/raw/types/chat_admin_with_invites.py +78 -0
  5397. pyromt-2.4.1/srigram/raw/types/chat_banned_rights.py +184 -0
  5398. pyromt-2.4.1/srigram/raw/types/chat_empty.py +62 -0
  5399. pyromt-2.4.1/srigram/raw/types/chat_forbidden.py +70 -0
  5400. pyromt-2.4.1/srigram/raw/types/chat_full.py +230 -0
  5401. pyromt-2.4.1/srigram/raw/types/chat_invite.py +199 -0
  5402. pyromt-2.4.1/srigram/raw/types/chat_invite_already.py +71 -0
  5403. pyromt-2.4.1/srigram/raw/types/chat_invite_exported.py +180 -0
  5404. pyromt-2.4.1/srigram/raw/types/chat_invite_importer.py +102 -0
  5405. pyromt-2.4.1/srigram/raw/types/chat_invite_peek.py +79 -0
  5406. pyromt-2.4.1/srigram/raw/types/chat_invite_public_join_requests.py +66 -0
  5407. pyromt-2.4.1/srigram/raw/types/chat_onlines.py +71 -0
  5408. pyromt-2.4.1/srigram/raw/types/chat_participant.py +78 -0
  5409. pyromt-2.4.1/srigram/raw/types/chat_participant_admin.py +78 -0
  5410. pyromt-2.4.1/srigram/raw/types/chat_participant_creator.py +62 -0
  5411. pyromt-2.4.1/srigram/raw/types/chat_participants.py +78 -0
  5412. pyromt-2.4.1/srigram/raw/types/chat_participants_forbidden.py +74 -0
  5413. pyromt-2.4.1/srigram/raw/types/chat_photo.py +87 -0
  5414. pyromt-2.4.1/srigram/raw/types/chat_photo_empty.py +57 -0
  5415. pyromt-2.4.1/srigram/raw/types/chat_reactions_all.py +62 -0
  5416. pyromt-2.4.1/srigram/raw/types/chat_reactions_none.py +57 -0
  5417. pyromt-2.4.1/srigram/raw/types/chat_reactions_some.py +62 -0
  5418. pyromt-2.4.1/srigram/raw/types/chat_theme.py +62 -0
  5419. pyromt-2.4.1/srigram/raw/types/chat_theme_unique_gift.py +70 -0
  5420. pyromt-2.4.1/srigram/raw/types/chatlists/__init__.py +19 -0
  5421. pyromt-2.4.1/srigram/raw/types/chatlists/chatlist_invite.py +112 -0
  5422. pyromt-2.4.1/srigram/raw/types/chatlists/chatlist_invite_already.py +103 -0
  5423. pyromt-2.4.1/srigram/raw/types/chatlists/chatlist_updates.py +87 -0
  5424. pyromt-2.4.1/srigram/raw/types/chatlists/exported_chatlist_invite.py +79 -0
  5425. pyromt-2.4.1/srigram/raw/types/chatlists/exported_invites.py +87 -0
  5426. pyromt-2.4.1/srigram/raw/types/client_dh_inner_data.py +86 -0
  5427. pyromt-2.4.1/srigram/raw/types/code_settings.py +120 -0
  5428. pyromt-2.4.1/srigram/raw/types/config.py +443 -0
  5429. pyromt-2.4.1/srigram/raw/types/connected_bot.py +81 -0
  5430. pyromt-2.4.1/srigram/raw/types/connected_bot_star_ref.py +119 -0
  5431. pyromt-2.4.1/srigram/raw/types/contact.py +70 -0
  5432. pyromt-2.4.1/srigram/raw/types/contact_birthday.py +70 -0
  5433. pyromt-2.4.1/srigram/raw/types/contact_status.py +79 -0
  5434. pyromt-2.4.1/srigram/raw/types/contacts/__init__.py +27 -0
  5435. pyromt-2.4.1/srigram/raw/types/contacts/blocked.py +87 -0
  5436. pyromt-2.4.1/srigram/raw/types/contacts/blocked_slice.py +95 -0
  5437. pyromt-2.4.1/srigram/raw/types/contacts/contact_birthdays.py +79 -0
  5438. pyromt-2.4.1/srigram/raw/types/contacts/contacts.py +87 -0
  5439. pyromt-2.4.1/srigram/raw/types/contacts/contacts_not_modified.py +66 -0
  5440. pyromt-2.4.1/srigram/raw/types/contacts/found.py +95 -0
  5441. pyromt-2.4.1/srigram/raw/types/contacts/imported_contacts.py +95 -0
  5442. pyromt-2.4.1/srigram/raw/types/contacts/resolved_peer.py +88 -0
  5443. pyromt-2.4.1/srigram/raw/types/contacts/sponsored_peers.py +87 -0
  5444. pyromt-2.4.1/srigram/raw/types/contacts/sponsored_peers_empty.py +66 -0
  5445. pyromt-2.4.1/srigram/raw/types/contacts/top_peers.py +87 -0
  5446. pyromt-2.4.1/srigram/raw/types/contacts/top_peers_disabled.py +66 -0
  5447. pyromt-2.4.1/srigram/raw/types/contacts/top_peers_not_modified.py +66 -0
  5448. pyromt-2.4.1/srigram/raw/types/data_json.py +73 -0
  5449. pyromt-2.4.1/srigram/raw/types/dc_option.py +125 -0
  5450. pyromt-2.4.1/srigram/raw/types/default_history_ttl.py +71 -0
  5451. pyromt-2.4.1/srigram/raw/types/destroy_auth_key_fail.py +66 -0
  5452. pyromt-2.4.1/srigram/raw/types/destroy_auth_key_none.py +66 -0
  5453. pyromt-2.4.1/srigram/raw/types/destroy_auth_key_ok.py +66 -0
  5454. pyromt-2.4.1/srigram/raw/types/destroy_session_none.py +71 -0
  5455. pyromt-2.4.1/srigram/raw/types/destroy_session_ok.py +71 -0
  5456. pyromt-2.4.1/srigram/raw/types/dh_gen_fail.py +87 -0
  5457. pyromt-2.4.1/srigram/raw/types/dh_gen_ok.py +87 -0
  5458. pyromt-2.4.1/srigram/raw/types/dh_gen_retry.py +87 -0
  5459. pyromt-2.4.1/srigram/raw/types/dialog.py +175 -0
  5460. pyromt-2.4.1/srigram/raw/types/dialog_filter.py +168 -0
  5461. pyromt-2.4.1/srigram/raw/types/dialog_filter_chatlist.py +118 -0
  5462. pyromt-2.4.1/srigram/raw/types/dialog_filter_default.py +57 -0
  5463. pyromt-2.4.1/srigram/raw/types/dialog_filter_suggested.py +79 -0
  5464. pyromt-2.4.1/srigram/raw/types/dialog_folder.py +118 -0
  5465. pyromt-2.4.1/srigram/raw/types/dialog_peer.py +71 -0
  5466. pyromt-2.4.1/srigram/raw/types/dialog_peer_folder.py +71 -0
  5467. pyromt-2.4.1/srigram/raw/types/disallowed_gifts_settings.py +86 -0
  5468. pyromt-2.4.1/srigram/raw/types/document.py +152 -0
  5469. pyromt-2.4.1/srigram/raw/types/document_attribute_animated.py +57 -0
  5470. pyromt-2.4.1/srigram/raw/types/document_attribute_audio.py +97 -0
  5471. pyromt-2.4.1/srigram/raw/types/document_attribute_custom_emoji.py +84 -0
  5472. pyromt-2.4.1/srigram/raw/types/document_attribute_filename.py +62 -0
  5473. pyromt-2.4.1/srigram/raw/types/document_attribute_has_stickers.py +57 -0
  5474. pyromt-2.4.1/srigram/raw/types/document_attribute_image_size.py +70 -0
  5475. pyromt-2.4.1/srigram/raw/types/document_attribute_sticker.py +88 -0
  5476. pyromt-2.4.1/srigram/raw/types/document_attribute_video.py +125 -0
  5477. pyromt-2.4.1/srigram/raw/types/document_empty.py +74 -0
  5478. pyromt-2.4.1/srigram/raw/types/draft_message.py +133 -0
  5479. pyromt-2.4.1/srigram/raw/types/draft_message_empty.py +65 -0
  5480. pyromt-2.4.1/srigram/raw/types/email_verification_apple.py +62 -0
  5481. pyromt-2.4.1/srigram/raw/types/email_verification_code.py +62 -0
  5482. pyromt-2.4.1/srigram/raw/types/email_verification_google.py +62 -0
  5483. pyromt-2.4.1/srigram/raw/types/email_verify_purpose_login_change.py +57 -0
  5484. pyromt-2.4.1/srigram/raw/types/email_verify_purpose_login_setup.py +70 -0
  5485. pyromt-2.4.1/srigram/raw/types/email_verify_purpose_passport.py +57 -0
  5486. pyromt-2.4.1/srigram/raw/types/emoji_group.py +78 -0
  5487. pyromt-2.4.1/srigram/raw/types/emoji_group_greeting.py +78 -0
  5488. pyromt-2.4.1/srigram/raw/types/emoji_group_premium.py +70 -0
  5489. pyromt-2.4.1/srigram/raw/types/emoji_keyword.py +70 -0
  5490. pyromt-2.4.1/srigram/raw/types/emoji_keyword_deleted.py +70 -0
  5491. pyromt-2.4.1/srigram/raw/types/emoji_keywords_difference.py +96 -0
  5492. pyromt-2.4.1/srigram/raw/types/emoji_language.py +71 -0
  5493. pyromt-2.4.1/srigram/raw/types/emoji_list.py +83 -0
  5494. pyromt-2.4.1/srigram/raw/types/emoji_list_not_modified.py +70 -0
  5495. pyromt-2.4.1/srigram/raw/types/emoji_status.py +73 -0
  5496. pyromt-2.4.1/srigram/raw/types/emoji_status_collectible.py +137 -0
  5497. pyromt-2.4.1/srigram/raw/types/emoji_status_empty.py +57 -0
  5498. pyromt-2.4.1/srigram/raw/types/emoji_url.py +71 -0
  5499. pyromt-2.4.1/srigram/raw/types/encrypted_chat.py +120 -0
  5500. pyromt-2.4.1/srigram/raw/types/encrypted_chat_discarded.py +80 -0
  5501. pyromt-2.4.1/srigram/raw/types/encrypted_chat_empty.py +72 -0
  5502. pyromt-2.4.1/srigram/raw/types/encrypted_chat_requested.py +123 -0
  5503. pyromt-2.4.1/srigram/raw/types/encrypted_chat_waiting.py +104 -0
  5504. pyromt-2.4.1/srigram/raw/types/encrypted_file.py +103 -0
  5505. pyromt-2.4.1/srigram/raw/types/encrypted_file_empty.py +66 -0
  5506. pyromt-2.4.1/srigram/raw/types/encrypted_message.py +94 -0
  5507. pyromt-2.4.1/srigram/raw/types/encrypted_message_service.py +86 -0
  5508. pyromt-2.4.1/srigram/raw/types/error.py +70 -0
  5509. pyromt-2.4.1/srigram/raw/types/exported_chatlist_invite.py +90 -0
  5510. pyromt-2.4.1/srigram/raw/types/exported_contact_token.py +79 -0
  5511. pyromt-2.4.1/srigram/raw/types/exported_message_link.py +79 -0
  5512. pyromt-2.4.1/srigram/raw/types/exported_story_link.py +71 -0
  5513. pyromt-2.4.1/srigram/raw/types/fact_check.py +98 -0
  5514. pyromt-2.4.1/srigram/raw/types/file_hash.py +89 -0
  5515. pyromt-2.4.1/srigram/raw/types/folder.py +100 -0
  5516. pyromt-2.4.1/srigram/raw/types/folder_peer.py +70 -0
  5517. pyromt-2.4.1/srigram/raw/types/forum_topic.py +215 -0
  5518. pyromt-2.4.1/srigram/raw/types/forum_topic_deleted.py +62 -0
  5519. pyromt-2.4.1/srigram/raw/types/found_story.py +70 -0
  5520. pyromt-2.4.1/srigram/raw/types/fragment/__init__.py +15 -0
  5521. pyromt-2.4.1/srigram/raw/types/fragment/collectible_info.py +111 -0
  5522. pyromt-2.4.1/srigram/raw/types/game.py +114 -0
  5523. pyromt-2.4.1/srigram/raw/types/geo_point.py +89 -0
  5524. pyromt-2.4.1/srigram/raw/types/geo_point_address.py +91 -0
  5525. pyromt-2.4.1/srigram/raw/types/geo_point_empty.py +57 -0
  5526. pyromt-2.4.1/srigram/raw/types/global_privacy_settings.py +121 -0
  5527. pyromt-2.4.1/srigram/raw/types/group_call.py +247 -0
  5528. pyromt-2.4.1/srigram/raw/types/group_call_discarded.py +78 -0
  5529. pyromt-2.4.1/srigram/raw/types/group_call_donor.py +86 -0
  5530. pyromt-2.4.1/srigram/raw/types/group_call_message.py +103 -0
  5531. pyromt-2.4.1/srigram/raw/types/group_call_participant.py +205 -0
  5532. pyromt-2.4.1/srigram/raw/types/group_call_participant_video.py +87 -0
  5533. pyromt-2.4.1/srigram/raw/types/group_call_participant_video_source_group.py +70 -0
  5534. pyromt-2.4.1/srigram/raw/types/group_call_stream_channel.py +78 -0
  5535. pyromt-2.4.1/srigram/raw/types/help/__init__.py +46 -0
  5536. pyromt-2.4.1/srigram/raw/types/help/app_config.py +79 -0
  5537. pyromt-2.4.1/srigram/raw/types/help/app_config_not_modified.py +66 -0
  5538. pyromt-2.4.1/srigram/raw/types/help/app_update.py +132 -0
  5539. pyromt-2.4.1/srigram/raw/types/help/config_simple.py +78 -0
  5540. pyromt-2.4.1/srigram/raw/types/help/countries_list.py +79 -0
  5541. pyromt-2.4.1/srigram/raw/types/help/countries_list_not_modified.py +66 -0
  5542. pyromt-2.4.1/srigram/raw/types/help/country.py +95 -0
  5543. pyromt-2.4.1/srigram/raw/types/help/country_code.py +84 -0
  5544. pyromt-2.4.1/srigram/raw/types/help/deep_link_info.py +89 -0
  5545. pyromt-2.4.1/srigram/raw/types/help/deep_link_info_empty.py +66 -0
  5546. pyromt-2.4.1/srigram/raw/types/help/invite_text.py +71 -0
  5547. pyromt-2.4.1/srigram/raw/types/help/no_app_update.py +66 -0
  5548. pyromt-2.4.1/srigram/raw/types/help/passport_config.py +79 -0
  5549. pyromt-2.4.1/srigram/raw/types/help/passport_config_not_modified.py +66 -0
  5550. pyromt-2.4.1/srigram/raw/types/help/peer_color_option.py +108 -0
  5551. pyromt-2.4.1/srigram/raw/types/help/peer_color_profile_set.py +78 -0
  5552. pyromt-2.4.1/srigram/raw/types/help/peer_color_set.py +62 -0
  5553. pyromt-2.4.1/srigram/raw/types/help/peer_colors.py +80 -0
  5554. pyromt-2.4.1/srigram/raw/types/help/peer_colors_not_modified.py +67 -0
  5555. pyromt-2.4.1/srigram/raw/types/help/premium_promo.py +111 -0
  5556. pyromt-2.4.1/srigram/raw/types/help/promo_data.py +149 -0
  5557. pyromt-2.4.1/srigram/raw/types/help/promo_data_empty.py +71 -0
  5558. pyromt-2.4.1/srigram/raw/types/help/recent_me_urls.py +87 -0
  5559. pyromt-2.4.1/srigram/raw/types/help/support.py +79 -0
  5560. pyromt-2.4.1/srigram/raw/types/help/support_name.py +71 -0
  5561. pyromt-2.4.1/srigram/raw/types/help/terms_of_service.py +95 -0
  5562. pyromt-2.4.1/srigram/raw/types/help/terms_of_service_update.py +79 -0
  5563. pyromt-2.4.1/srigram/raw/types/help/terms_of_service_update_empty.py +71 -0
  5564. pyromt-2.4.1/srigram/raw/types/help/timezones_list.py +79 -0
  5565. pyromt-2.4.1/srigram/raw/types/help/timezones_list_not_modified.py +66 -0
  5566. pyromt-2.4.1/srigram/raw/types/help/user_info.py +96 -0
  5567. pyromt-2.4.1/srigram/raw/types/help/user_info_empty.py +67 -0
  5568. pyromt-2.4.1/srigram/raw/types/high_score.py +78 -0
  5569. pyromt-2.4.1/srigram/raw/types/http_wait.py +78 -0
  5570. pyromt-2.4.1/srigram/raw/types/imported_contact.py +70 -0
  5571. pyromt-2.4.1/srigram/raw/types/inline_bot_switch_pm.py +70 -0
  5572. pyromt-2.4.1/srigram/raw/types/inline_bot_web_view.py +70 -0
  5573. pyromt-2.4.1/srigram/raw/types/inline_query_peer_type_bot_pm.py +57 -0
  5574. pyromt-2.4.1/srigram/raw/types/inline_query_peer_type_broadcast.py +57 -0
  5575. pyromt-2.4.1/srigram/raw/types/inline_query_peer_type_chat.py +57 -0
  5576. pyromt-2.4.1/srigram/raw/types/inline_query_peer_type_megagroup.py +57 -0
  5577. pyromt-2.4.1/srigram/raw/types/inline_query_peer_type_pm.py +57 -0
  5578. pyromt-2.4.1/srigram/raw/types/inline_query_peer_type_same_bot_pm.py +57 -0
  5579. pyromt-2.4.1/srigram/raw/types/input_app_event.py +86 -0
  5580. pyromt-2.4.1/srigram/raw/types/input_bot_app_id.py +70 -0
  5581. pyromt-2.4.1/srigram/raw/types/input_bot_app_short_name.py +70 -0
  5582. pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_game.py +66 -0
  5583. pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_id.py +78 -0
  5584. pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_id64.py +86 -0
  5585. pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_media_auto.py +90 -0
  5586. pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_media_contact.py +98 -0
  5587. pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_media_geo.py +101 -0
  5588. pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_media_invoice.py +124 -0
  5589. pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_media_venue.py +114 -0
  5590. pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_media_web_page.py +116 -0
  5591. pyromt-2.4.1/srigram/raw/types/input_bot_inline_message_text.py +96 -0
  5592. pyromt-2.4.1/srigram/raw/types/input_bot_inline_result.py +127 -0
  5593. pyromt-2.4.1/srigram/raw/types/input_bot_inline_result_document.py +106 -0
  5594. pyromt-2.4.1/srigram/raw/types/input_bot_inline_result_game.py +78 -0
  5595. pyromt-2.4.1/srigram/raw/types/input_bot_inline_result_photo.py +86 -0
  5596. pyromt-2.4.1/srigram/raw/types/input_business_away_message.py +86 -0
  5597. pyromt-2.4.1/srigram/raw/types/input_business_bot_recipients.py +106 -0
  5598. pyromt-2.4.1/srigram/raw/types/input_business_chat_link.py +83 -0
  5599. pyromt-2.4.1/srigram/raw/types/input_business_greeting_message.py +78 -0
  5600. pyromt-2.4.1/srigram/raw/types/input_business_intro.py +82 -0
  5601. pyromt-2.4.1/srigram/raw/types/input_business_recipients.py +96 -0
  5602. pyromt-2.4.1/srigram/raw/types/input_channel.py +70 -0
  5603. pyromt-2.4.1/srigram/raw/types/input_channel_empty.py +57 -0
  5604. pyromt-2.4.1/srigram/raw/types/input_channel_from_message.py +78 -0
  5605. pyromt-2.4.1/srigram/raw/types/input_chat_photo.py +62 -0
  5606. pyromt-2.4.1/srigram/raw/types/input_chat_photo_empty.py +57 -0
  5607. pyromt-2.4.1/srigram/raw/types/input_chat_theme.py +62 -0
  5608. pyromt-2.4.1/srigram/raw/types/input_chat_theme_empty.py +57 -0
  5609. pyromt-2.4.1/srigram/raw/types/input_chat_theme_unique_gift.py +62 -0
  5610. pyromt-2.4.1/srigram/raw/types/input_chat_uploaded_photo.py +95 -0
  5611. pyromt-2.4.1/srigram/raw/types/input_chatlist_dialog_filter.py +62 -0
  5612. pyromt-2.4.1/srigram/raw/types/input_check_password_empty.py +57 -0
  5613. pyromt-2.4.1/srigram/raw/types/input_check_password_srp.py +78 -0
  5614. pyromt-2.4.1/srigram/raw/types/input_client_proxy.py +70 -0
  5615. pyromt-2.4.1/srigram/raw/types/input_collectible_phone.py +62 -0
  5616. pyromt-2.4.1/srigram/raw/types/input_collectible_username.py +62 -0
  5617. pyromt-2.4.1/srigram/raw/types/input_dialog_peer.py +62 -0
  5618. pyromt-2.4.1/srigram/raw/types/input_dialog_peer_folder.py +62 -0
  5619. pyromt-2.4.1/srigram/raw/types/input_document.py +78 -0
  5620. pyromt-2.4.1/srigram/raw/types/input_document_empty.py +57 -0
  5621. pyromt-2.4.1/srigram/raw/types/input_document_file_location.py +86 -0
  5622. pyromt-2.4.1/srigram/raw/types/input_emoji_status_collectible.py +73 -0
  5623. pyromt-2.4.1/srigram/raw/types/input_encrypted_chat.py +70 -0
  5624. pyromt-2.4.1/srigram/raw/types/input_encrypted_file.py +70 -0
  5625. pyromt-2.4.1/srigram/raw/types/input_encrypted_file_big_uploaded.py +78 -0
  5626. pyromt-2.4.1/srigram/raw/types/input_encrypted_file_empty.py +57 -0
  5627. pyromt-2.4.1/srigram/raw/types/input_encrypted_file_location.py +70 -0
  5628. pyromt-2.4.1/srigram/raw/types/input_encrypted_file_uploaded.py +86 -0
  5629. pyromt-2.4.1/srigram/raw/types/input_file.py +86 -0
  5630. pyromt-2.4.1/srigram/raw/types/input_file_big.py +78 -0
  5631. pyromt-2.4.1/srigram/raw/types/input_file_location.py +86 -0
  5632. pyromt-2.4.1/srigram/raw/types/input_file_story_document.py +62 -0
  5633. pyromt-2.4.1/srigram/raw/types/input_folder_peer.py +70 -0
  5634. pyromt-2.4.1/srigram/raw/types/input_game_id.py +70 -0
  5635. pyromt-2.4.1/srigram/raw/types/input_game_short_name.py +70 -0
  5636. pyromt-2.4.1/srigram/raw/types/input_geo_point.py +81 -0
  5637. pyromt-2.4.1/srigram/raw/types/input_geo_point_empty.py +57 -0
  5638. pyromt-2.4.1/srigram/raw/types/input_group_call.py +70 -0
  5639. pyromt-2.4.1/srigram/raw/types/input_group_call_invite_message.py +62 -0
  5640. pyromt-2.4.1/srigram/raw/types/input_group_call_slug.py +62 -0
  5641. pyromt-2.4.1/srigram/raw/types/input_group_call_stream.py +98 -0
  5642. pyromt-2.4.1/srigram/raw/types/input_invoice_business_bot_transfer_stars.py +70 -0
  5643. pyromt-2.4.1/srigram/raw/types/input_invoice_chat_invite_subscription.py +62 -0
  5644. pyromt-2.4.1/srigram/raw/types/input_invoice_message.py +70 -0
  5645. pyromt-2.4.1/srigram/raw/types/input_invoice_premium_auth_code.py +62 -0
  5646. pyromt-2.4.1/srigram/raw/types/input_invoice_premium_gift_code.py +70 -0
  5647. pyromt-2.4.1/srigram/raw/types/input_invoice_premium_gift_stars.py +82 -0
  5648. pyromt-2.4.1/srigram/raw/types/input_invoice_slug.py +62 -0
  5649. pyromt-2.4.1/srigram/raw/types/input_invoice_star_gift.py +94 -0
  5650. pyromt-2.4.1/srigram/raw/types/input_invoice_star_gift_auction_bid.py +104 -0
  5651. pyromt-2.4.1/srigram/raw/types/input_invoice_star_gift_drop_original_details.py +62 -0
  5652. pyromt-2.4.1/srigram/raw/types/input_invoice_star_gift_prepaid_upgrade.py +70 -0
  5653. pyromt-2.4.1/srigram/raw/types/input_invoice_star_gift_resale.py +78 -0
  5654. pyromt-2.4.1/srigram/raw/types/input_invoice_star_gift_transfer.py +70 -0
  5655. pyromt-2.4.1/srigram/raw/types/input_invoice_star_gift_upgrade.py +70 -0
  5656. pyromt-2.4.1/srigram/raw/types/input_invoice_stars.py +62 -0
  5657. pyromt-2.4.1/srigram/raw/types/input_keyboard_button_request_peer.py +116 -0
  5658. pyromt-2.4.1/srigram/raw/types/input_keyboard_button_url_auth.py +105 -0
  5659. pyromt-2.4.1/srigram/raw/types/input_keyboard_button_user_profile.py +82 -0
  5660. pyromt-2.4.1/srigram/raw/types/input_media_area_channel_post.py +78 -0
  5661. pyromt-2.4.1/srigram/raw/types/input_media_area_venue.py +78 -0
  5662. pyromt-2.4.1/srigram/raw/types/input_media_contact.py +86 -0
  5663. pyromt-2.4.1/srigram/raw/types/input_media_dice.py +62 -0
  5664. pyromt-2.4.1/srigram/raw/types/input_media_document.py +107 -0
  5665. pyromt-2.4.1/srigram/raw/types/input_media_document_external.py +98 -0
  5666. pyromt-2.4.1/srigram/raw/types/input_media_empty.py +57 -0
  5667. pyromt-2.4.1/srigram/raw/types/input_media_game.py +62 -0
  5668. pyromt-2.4.1/srigram/raw/types/input_media_geo_live.py +97 -0
  5669. pyromt-2.4.1/srigram/raw/types/input_media_geo_point.py +62 -0
  5670. pyromt-2.4.1/srigram/raw/types/input_media_invoice.py +134 -0
  5671. pyromt-2.4.1/srigram/raw/types/input_media_paid_media.py +81 -0
  5672. pyromt-2.4.1/srigram/raw/types/input_media_photo.py +79 -0
  5673. pyromt-2.4.1/srigram/raw/types/input_media_photo_external.py +79 -0
  5674. pyromt-2.4.1/srigram/raw/types/input_media_poll.py +93 -0
  5675. pyromt-2.4.1/srigram/raw/types/input_media_stake_dice.py +78 -0
  5676. pyromt-2.4.1/srigram/raw/types/input_media_story.py +70 -0
  5677. pyromt-2.4.1/srigram/raw/types/input_media_todo.py +62 -0
  5678. pyromt-2.4.1/srigram/raw/types/input_media_uploaded_document.py +146 -0
  5679. pyromt-2.4.1/srigram/raw/types/input_media_uploaded_photo.py +89 -0
  5680. pyromt-2.4.1/srigram/raw/types/input_media_venue.py +102 -0
  5681. pyromt-2.4.1/srigram/raw/types/input_media_web_page.py +82 -0
  5682. pyromt-2.4.1/srigram/raw/types/input_message_callback_query.py +70 -0
  5683. pyromt-2.4.1/srigram/raw/types/input_message_entity_mention_name.py +78 -0
  5684. pyromt-2.4.1/srigram/raw/types/input_message_id.py +62 -0
  5685. pyromt-2.4.1/srigram/raw/types/input_message_pinned.py +57 -0
  5686. pyromt-2.4.1/srigram/raw/types/input_message_reply_to.py +62 -0
  5687. pyromt-2.4.1/srigram/raw/types/input_messages_filter_chat_photos.py +57 -0
  5688. pyromt-2.4.1/srigram/raw/types/input_messages_filter_contacts.py +57 -0
  5689. pyromt-2.4.1/srigram/raw/types/input_messages_filter_document.py +57 -0
  5690. pyromt-2.4.1/srigram/raw/types/input_messages_filter_empty.py +57 -0
  5691. pyromt-2.4.1/srigram/raw/types/input_messages_filter_geo.py +57 -0
  5692. pyromt-2.4.1/srigram/raw/types/input_messages_filter_gif.py +57 -0
  5693. pyromt-2.4.1/srigram/raw/types/input_messages_filter_music.py +57 -0
  5694. pyromt-2.4.1/srigram/raw/types/input_messages_filter_my_mentions.py +57 -0
  5695. pyromt-2.4.1/srigram/raw/types/input_messages_filter_phone_calls.py +62 -0
  5696. pyromt-2.4.1/srigram/raw/types/input_messages_filter_photo_video.py +57 -0
  5697. pyromt-2.4.1/srigram/raw/types/input_messages_filter_photos.py +57 -0
  5698. pyromt-2.4.1/srigram/raw/types/input_messages_filter_pinned.py +57 -0
  5699. pyromt-2.4.1/srigram/raw/types/input_messages_filter_round_video.py +57 -0
  5700. pyromt-2.4.1/srigram/raw/types/input_messages_filter_round_voice.py +57 -0
  5701. pyromt-2.4.1/srigram/raw/types/input_messages_filter_url.py +57 -0
  5702. pyromt-2.4.1/srigram/raw/types/input_messages_filter_video.py +57 -0
  5703. pyromt-2.4.1/srigram/raw/types/input_messages_filter_voice.py +57 -0
  5704. pyromt-2.4.1/srigram/raw/types/input_notify_broadcasts.py +57 -0
  5705. pyromt-2.4.1/srigram/raw/types/input_notify_chats.py +57 -0
  5706. pyromt-2.4.1/srigram/raw/types/input_notify_forum_topic.py +70 -0
  5707. pyromt-2.4.1/srigram/raw/types/input_notify_peer.py +62 -0
  5708. pyromt-2.4.1/srigram/raw/types/input_notify_users.py +57 -0
  5709. pyromt-2.4.1/srigram/raw/types/input_passkey_credential_firebase_pnv.py +62 -0
  5710. pyromt-2.4.1/srigram/raw/types/input_passkey_credential_public_key.py +78 -0
  5711. pyromt-2.4.1/srigram/raw/types/input_passkey_response_login.py +86 -0
  5712. pyromt-2.4.1/srigram/raw/types/input_passkey_response_register.py +70 -0
  5713. pyromt-2.4.1/srigram/raw/types/input_payment_credentials.py +70 -0
  5714. pyromt-2.4.1/srigram/raw/types/input_payment_credentials_apple_pay.py +62 -0
  5715. pyromt-2.4.1/srigram/raw/types/input_payment_credentials_google_pay.py +62 -0
  5716. pyromt-2.4.1/srigram/raw/types/input_payment_credentials_saved.py +70 -0
  5717. pyromt-2.4.1/srigram/raw/types/input_peer_channel.py +70 -0
  5718. pyromt-2.4.1/srigram/raw/types/input_peer_channel_from_message.py +78 -0
  5719. pyromt-2.4.1/srigram/raw/types/input_peer_chat.py +62 -0
  5720. pyromt-2.4.1/srigram/raw/types/input_peer_color_collectible.py +62 -0
  5721. pyromt-2.4.1/srigram/raw/types/input_peer_empty.py +57 -0
  5722. pyromt-2.4.1/srigram/raw/types/input_peer_notify_settings.py +121 -0
  5723. pyromt-2.4.1/srigram/raw/types/input_peer_photo_file_location.py +78 -0
  5724. pyromt-2.4.1/srigram/raw/types/input_peer_self.py +57 -0
  5725. pyromt-2.4.1/srigram/raw/types/input_peer_user.py +70 -0
  5726. pyromt-2.4.1/srigram/raw/types/input_peer_user_from_message.py +78 -0
  5727. pyromt-2.4.1/srigram/raw/types/input_phone_call.py +70 -0
  5728. pyromt-2.4.1/srigram/raw/types/input_phone_contact.py +98 -0
  5729. pyromt-2.4.1/srigram/raw/types/input_photo.py +78 -0
  5730. pyromt-2.4.1/srigram/raw/types/input_photo_empty.py +57 -0
  5731. pyromt-2.4.1/srigram/raw/types/input_photo_file_location.py +86 -0
  5732. pyromt-2.4.1/srigram/raw/types/input_photo_legacy_file_location.py +102 -0
  5733. pyromt-2.4.1/srigram/raw/types/input_privacy_key_about.py +57 -0
  5734. pyromt-2.4.1/srigram/raw/types/input_privacy_key_added_by_phone.py +57 -0
  5735. pyromt-2.4.1/srigram/raw/types/input_privacy_key_birthday.py +57 -0
  5736. pyromt-2.4.1/srigram/raw/types/input_privacy_key_chat_invite.py +57 -0
  5737. pyromt-2.4.1/srigram/raw/types/input_privacy_key_forwards.py +57 -0
  5738. pyromt-2.4.1/srigram/raw/types/input_privacy_key_no_paid_messages.py +57 -0
  5739. pyromt-2.4.1/srigram/raw/types/input_privacy_key_phone_call.py +57 -0
  5740. pyromt-2.4.1/srigram/raw/types/input_privacy_key_phone_number.py +57 -0
  5741. pyromt-2.4.1/srigram/raw/types/input_privacy_key_phone_p2_p.py +57 -0
  5742. pyromt-2.4.1/srigram/raw/types/input_privacy_key_profile_photo.py +57 -0
  5743. pyromt-2.4.1/srigram/raw/types/input_privacy_key_saved_music.py +57 -0
  5744. pyromt-2.4.1/srigram/raw/types/input_privacy_key_star_gifts_auto_save.py +57 -0
  5745. pyromt-2.4.1/srigram/raw/types/input_privacy_key_status_timestamp.py +57 -0
  5746. pyromt-2.4.1/srigram/raw/types/input_privacy_key_voice_messages.py +57 -0
  5747. pyromt-2.4.1/srigram/raw/types/input_privacy_value_allow_all.py +57 -0
  5748. pyromt-2.4.1/srigram/raw/types/input_privacy_value_allow_bots.py +57 -0
  5749. pyromt-2.4.1/srigram/raw/types/input_privacy_value_allow_chat_participants.py +62 -0
  5750. pyromt-2.4.1/srigram/raw/types/input_privacy_value_allow_close_friends.py +57 -0
  5751. pyromt-2.4.1/srigram/raw/types/input_privacy_value_allow_contacts.py +57 -0
  5752. pyromt-2.4.1/srigram/raw/types/input_privacy_value_allow_premium.py +57 -0
  5753. pyromt-2.4.1/srigram/raw/types/input_privacy_value_allow_users.py +62 -0
  5754. pyromt-2.4.1/srigram/raw/types/input_privacy_value_disallow_all.py +57 -0
  5755. pyromt-2.4.1/srigram/raw/types/input_privacy_value_disallow_bots.py +57 -0
  5756. pyromt-2.4.1/srigram/raw/types/input_privacy_value_disallow_chat_participants.py +62 -0
  5757. pyromt-2.4.1/srigram/raw/types/input_privacy_value_disallow_contacts.py +57 -0
  5758. pyromt-2.4.1/srigram/raw/types/input_privacy_value_disallow_users.py +62 -0
  5759. pyromt-2.4.1/srigram/raw/types/input_quick_reply_shortcut.py +62 -0
  5760. pyromt-2.4.1/srigram/raw/types/input_quick_reply_shortcut_id.py +62 -0
  5761. pyromt-2.4.1/srigram/raw/types/input_reply_to_message.py +130 -0
  5762. pyromt-2.4.1/srigram/raw/types/input_reply_to_mono_forum.py +62 -0
  5763. pyromt-2.4.1/srigram/raw/types/input_reply_to_story.py +70 -0
  5764. pyromt-2.4.1/srigram/raw/types/input_report_reason_child_abuse.py +57 -0
  5765. pyromt-2.4.1/srigram/raw/types/input_report_reason_copyright.py +57 -0
  5766. pyromt-2.4.1/srigram/raw/types/input_report_reason_fake.py +57 -0
  5767. pyromt-2.4.1/srigram/raw/types/input_report_reason_geo_irrelevant.py +57 -0
  5768. pyromt-2.4.1/srigram/raw/types/input_report_reason_illegal_drugs.py +57 -0
  5769. pyromt-2.4.1/srigram/raw/types/input_report_reason_other.py +57 -0
  5770. pyromt-2.4.1/srigram/raw/types/input_report_reason_personal_details.py +57 -0
  5771. pyromt-2.4.1/srigram/raw/types/input_report_reason_pornography.py +57 -0
  5772. pyromt-2.4.1/srigram/raw/types/input_report_reason_spam.py +57 -0
  5773. pyromt-2.4.1/srigram/raw/types/input_report_reason_violence.py +57 -0
  5774. pyromt-2.4.1/srigram/raw/types/input_saved_star_gift_chat.py +70 -0
  5775. pyromt-2.4.1/srigram/raw/types/input_saved_star_gift_slug.py +62 -0
  5776. pyromt-2.4.1/srigram/raw/types/input_saved_star_gift_user.py +62 -0
  5777. pyromt-2.4.1/srigram/raw/types/input_secure_file.py +70 -0
  5778. pyromt-2.4.1/srigram/raw/types/input_secure_file_location.py +70 -0
  5779. pyromt-2.4.1/srigram/raw/types/input_secure_file_uploaded.py +94 -0
  5780. pyromt-2.4.1/srigram/raw/types/input_secure_value.py +134 -0
  5781. pyromt-2.4.1/srigram/raw/types/input_single_media.py +90 -0
  5782. pyromt-2.4.1/srigram/raw/types/input_star_gift_auction.py +62 -0
  5783. pyromt-2.4.1/srigram/raw/types/input_star_gift_auction_slug.py +62 -0
  5784. pyromt-2.4.1/srigram/raw/types/input_stars_transaction.py +70 -0
  5785. pyromt-2.4.1/srigram/raw/types/input_sticker_set_animated_emoji.py +57 -0
  5786. pyromt-2.4.1/srigram/raw/types/input_sticker_set_animated_emoji_animations.py +57 -0
  5787. pyromt-2.4.1/srigram/raw/types/input_sticker_set_dice.py +62 -0
  5788. pyromt-2.4.1/srigram/raw/types/input_sticker_set_emoji_channel_default_statuses.py +57 -0
  5789. pyromt-2.4.1/srigram/raw/types/input_sticker_set_emoji_default_statuses.py +57 -0
  5790. pyromt-2.4.1/srigram/raw/types/input_sticker_set_emoji_default_topic_icons.py +57 -0
  5791. pyromt-2.4.1/srigram/raw/types/input_sticker_set_emoji_generic_animations.py +57 -0
  5792. pyromt-2.4.1/srigram/raw/types/input_sticker_set_empty.py +57 -0
  5793. pyromt-2.4.1/srigram/raw/types/input_sticker_set_id.py +70 -0
  5794. pyromt-2.4.1/srigram/raw/types/input_sticker_set_item.py +91 -0
  5795. pyromt-2.4.1/srigram/raw/types/input_sticker_set_premium_gifts.py +57 -0
  5796. pyromt-2.4.1/srigram/raw/types/input_sticker_set_short_name.py +62 -0
  5797. pyromt-2.4.1/srigram/raw/types/input_sticker_set_thumb.py +70 -0
  5798. pyromt-2.4.1/srigram/raw/types/input_sticker_set_ton_gifts.py +57 -0
  5799. pyromt-2.4.1/srigram/raw/types/input_stickered_media_document.py +62 -0
  5800. pyromt-2.4.1/srigram/raw/types/input_stickered_media_photo.py +62 -0
  5801. pyromt-2.4.1/srigram/raw/types/input_store_payment_auth_code.py +94 -0
  5802. pyromt-2.4.1/srigram/raw/types/input_store_payment_gift_premium.py +78 -0
  5803. pyromt-2.4.1/srigram/raw/types/input_store_payment_premium_gift_code.py +100 -0
  5804. pyromt-2.4.1/srigram/raw/types/input_store_payment_premium_giveaway.py +137 -0
  5805. pyromt-2.4.1/srigram/raw/types/input_store_payment_premium_subscription.py +68 -0
  5806. pyromt-2.4.1/srigram/raw/types/input_store_payment_stars_gift.py +86 -0
  5807. pyromt-2.4.1/srigram/raw/types/input_store_payment_stars_giveaway.py +153 -0
  5808. pyromt-2.4.1/srigram/raw/types/input_store_payment_stars_topup.py +90 -0
  5809. pyromt-2.4.1/srigram/raw/types/input_takeout_file_location.py +57 -0
  5810. pyromt-2.4.1/srigram/raw/types/input_theme.py +70 -0
  5811. pyromt-2.4.1/srigram/raw/types/input_theme_settings.py +117 -0
  5812. pyromt-2.4.1/srigram/raw/types/input_theme_slug.py +62 -0
  5813. pyromt-2.4.1/srigram/raw/types/input_user.py +70 -0
  5814. pyromt-2.4.1/srigram/raw/types/input_user_empty.py +57 -0
  5815. pyromt-2.4.1/srigram/raw/types/input_user_from_message.py +78 -0
  5816. pyromt-2.4.1/srigram/raw/types/input_user_self.py +57 -0
  5817. pyromt-2.4.1/srigram/raw/types/input_wall_paper.py +70 -0
  5818. pyromt-2.4.1/srigram/raw/types/input_wall_paper_no_file.py +62 -0
  5819. pyromt-2.4.1/srigram/raw/types/input_wall_paper_slug.py +62 -0
  5820. pyromt-2.4.1/srigram/raw/types/input_web_document.py +86 -0
  5821. pyromt-2.4.1/srigram/raw/types/input_web_file_audio_album_thumb_location.py +90 -0
  5822. pyromt-2.4.1/srigram/raw/types/input_web_file_geo_point_location.py +102 -0
  5823. pyromt-2.4.1/srigram/raw/types/input_web_file_location.py +70 -0
  5824. pyromt-2.4.1/srigram/raw/types/invoice.py +163 -0
  5825. pyromt-2.4.1/srigram/raw/types/ip_port.py +70 -0
  5826. pyromt-2.4.1/srigram/raw/types/ip_port_secret.py +78 -0
  5827. pyromt-2.4.1/srigram/raw/types/json_array.py +62 -0
  5828. pyromt-2.4.1/srigram/raw/types/json_bool.py +62 -0
  5829. pyromt-2.4.1/srigram/raw/types/json_null.py +57 -0
  5830. pyromt-2.4.1/srigram/raw/types/json_number.py +62 -0
  5831. pyromt-2.4.1/srigram/raw/types/json_object.py +62 -0
  5832. pyromt-2.4.1/srigram/raw/types/json_object_value.py +70 -0
  5833. pyromt-2.4.1/srigram/raw/types/json_string.py +62 -0
  5834. pyromt-2.4.1/srigram/raw/types/keyboard_button.py +74 -0
  5835. pyromt-2.4.1/srigram/raw/types/keyboard_button_buy.py +74 -0
  5836. pyromt-2.4.1/srigram/raw/types/keyboard_button_callback.py +88 -0
  5837. pyromt-2.4.1/srigram/raw/types/keyboard_button_copy.py +82 -0
  5838. pyromt-2.4.1/srigram/raw/types/keyboard_button_game.py +74 -0
  5839. pyromt-2.4.1/srigram/raw/types/keyboard_button_request_geo_location.py +74 -0
  5840. pyromt-2.4.1/srigram/raw/types/keyboard_button_request_peer.py +98 -0
  5841. pyromt-2.4.1/srigram/raw/types/keyboard_button_request_phone.py +74 -0
  5842. pyromt-2.4.1/srigram/raw/types/keyboard_button_request_poll.py +83 -0
  5843. pyromt-2.4.1/srigram/raw/types/keyboard_button_row.py +62 -0
  5844. pyromt-2.4.1/srigram/raw/types/keyboard_button_simple_web_view.py +82 -0
  5845. pyromt-2.4.1/srigram/raw/types/keyboard_button_style.py +83 -0
  5846. pyromt-2.4.1/srigram/raw/types/keyboard_button_switch_inline.py +98 -0
  5847. pyromt-2.4.1/srigram/raw/types/keyboard_button_url.py +82 -0
  5848. pyromt-2.4.1/srigram/raw/types/keyboard_button_url_auth.py +99 -0
  5849. pyromt-2.4.1/srigram/raw/types/keyboard_button_user_profile.py +82 -0
  5850. pyromt-2.4.1/srigram/raw/types/keyboard_button_web_view.py +82 -0
  5851. pyromt-2.4.1/srigram/raw/types/labeled_price.py +70 -0
  5852. pyromt-2.4.1/srigram/raw/types/lang_pack_difference.py +96 -0
  5853. pyromt-2.4.1/srigram/raw/types/lang_pack_language.py +149 -0
  5854. pyromt-2.4.1/srigram/raw/types/lang_pack_string.py +79 -0
  5855. pyromt-2.4.1/srigram/raw/types/lang_pack_string_deleted.py +71 -0
  5856. pyromt-2.4.1/srigram/raw/types/lang_pack_string_pluralized.py +126 -0
  5857. pyromt-2.4.1/srigram/raw/types/mask_coords.py +86 -0
  5858. pyromt-2.4.1/srigram/raw/types/media_area_channel_post.py +78 -0
  5859. pyromt-2.4.1/srigram/raw/types/media_area_coordinates.py +105 -0
  5860. pyromt-2.4.1/srigram/raw/types/media_area_geo_point.py +82 -0
  5861. pyromt-2.4.1/srigram/raw/types/media_area_star_gift.py +70 -0
  5862. pyromt-2.4.1/srigram/raw/types/media_area_suggested_reaction.py +84 -0
  5863. pyromt-2.4.1/srigram/raw/types/media_area_url.py +70 -0
  5864. pyromt-2.4.1/srigram/raw/types/media_area_venue.py +110 -0
  5865. pyromt-2.4.1/srigram/raw/types/media_area_weather.py +86 -0
  5866. pyromt-2.4.1/srigram/raw/types/message.py +437 -0
  5867. pyromt-2.4.1/srigram/raw/types/message_action_boost_apply.py +62 -0
  5868. pyromt-2.4.1/srigram/raw/types/message_action_bot_allowed.py +87 -0
  5869. pyromt-2.4.1/srigram/raw/types/message_action_change_creator.py +62 -0
  5870. pyromt-2.4.1/srigram/raw/types/message_action_channel_create.py +62 -0
  5871. pyromt-2.4.1/srigram/raw/types/message_action_channel_migrate_from.py +70 -0
  5872. pyromt-2.4.1/srigram/raw/types/message_action_chat_add_user.py +62 -0
  5873. pyromt-2.4.1/srigram/raw/types/message_action_chat_create.py +70 -0
  5874. pyromt-2.4.1/srigram/raw/types/message_action_chat_delete_photo.py +57 -0
  5875. pyromt-2.4.1/srigram/raw/types/message_action_chat_delete_user.py +62 -0
  5876. pyromt-2.4.1/srigram/raw/types/message_action_chat_edit_photo.py +62 -0
  5877. pyromt-2.4.1/srigram/raw/types/message_action_chat_edit_title.py +62 -0
  5878. pyromt-2.4.1/srigram/raw/types/message_action_chat_joined_by_link.py +62 -0
  5879. pyromt-2.4.1/srigram/raw/types/message_action_chat_joined_by_request.py +57 -0
  5880. pyromt-2.4.1/srigram/raw/types/message_action_chat_migrate_to.py +62 -0
  5881. pyromt-2.4.1/srigram/raw/types/message_action_conference_call.py +101 -0
  5882. pyromt-2.4.1/srigram/raw/types/message_action_contact_sign_up.py +57 -0
  5883. pyromt-2.4.1/srigram/raw/types/message_action_custom_action.py +62 -0
  5884. pyromt-2.4.1/srigram/raw/types/message_action_empty.py +57 -0
  5885. pyromt-2.4.1/srigram/raw/types/message_action_game_score.py +70 -0
  5886. pyromt-2.4.1/srigram/raw/types/message_action_geo_proximity_reached.py +78 -0
  5887. pyromt-2.4.1/srigram/raw/types/message_action_gift_code.py +140 -0
  5888. pyromt-2.4.1/srigram/raw/types/message_action_gift_premium.py +108 -0
  5889. pyromt-2.4.1/srigram/raw/types/message_action_gift_stars.py +107 -0
  5890. pyromt-2.4.1/srigram/raw/types/message_action_gift_ton.py +97 -0
  5891. pyromt-2.4.1/srigram/raw/types/message_action_giveaway_launch.py +65 -0
  5892. pyromt-2.4.1/srigram/raw/types/message_action_giveaway_results.py +78 -0
  5893. pyromt-2.4.1/srigram/raw/types/message_action_group_call.py +73 -0
  5894. pyromt-2.4.1/srigram/raw/types/message_action_group_call_scheduled.py +70 -0
  5895. pyromt-2.4.1/srigram/raw/types/message_action_history_clear.py +57 -0
  5896. pyromt-2.4.1/srigram/raw/types/message_action_invite_to_group_call.py +70 -0
  5897. pyromt-2.4.1/srigram/raw/types/message_action_new_creator_pending.py +62 -0
  5898. pyromt-2.4.1/srigram/raw/types/message_action_paid_messages_price.py +70 -0
  5899. pyromt-2.4.1/srigram/raw/types/message_action_paid_messages_refunded.py +70 -0
  5900. pyromt-2.4.1/srigram/raw/types/message_action_payment_refunded.py +97 -0
  5901. pyromt-2.4.1/srigram/raw/types/message_action_payment_sent.py +102 -0
  5902. pyromt-2.4.1/srigram/raw/types/message_action_payment_sent_me.py +128 -0
  5903. pyromt-2.4.1/srigram/raw/types/message_action_phone_call.py +89 -0
  5904. pyromt-2.4.1/srigram/raw/types/message_action_pin_message.py +57 -0
  5905. pyromt-2.4.1/srigram/raw/types/message_action_prize_stars.py +94 -0
  5906. pyromt-2.4.1/srigram/raw/types/message_action_requested_peer.py +70 -0
  5907. pyromt-2.4.1/srigram/raw/types/message_action_requested_peer_sent_me.py +70 -0
  5908. pyromt-2.4.1/srigram/raw/types/message_action_screenshot_taken.py +57 -0
  5909. pyromt-2.4.1/srigram/raw/types/message_action_secure_values_sent.py +62 -0
  5910. pyromt-2.4.1/srigram/raw/types/message_action_secure_values_sent_me.py +70 -0
  5911. pyromt-2.4.1/srigram/raw/types/message_action_set_chat_theme.py +62 -0
  5912. pyromt-2.4.1/srigram/raw/types/message_action_set_chat_wall_paper.py +76 -0
  5913. pyromt-2.4.1/srigram/raw/types/message_action_set_messages_ttl.py +73 -0
  5914. pyromt-2.4.1/srigram/raw/types/message_action_star_gift.py +221 -0
  5915. pyromt-2.4.1/srigram/raw/types/message_action_star_gift_purchase_offer.py +92 -0
  5916. pyromt-2.4.1/srigram/raw/types/message_action_star_gift_purchase_offer_declined.py +78 -0
  5917. pyromt-2.4.1/srigram/raw/types/message_action_star_gift_unique.py +205 -0
  5918. pyromt-2.4.1/srigram/raw/types/message_action_suggest_birthday.py +62 -0
  5919. pyromt-2.4.1/srigram/raw/types/message_action_suggest_profile_photo.py +62 -0
  5920. pyromt-2.4.1/srigram/raw/types/message_action_suggested_post_approval.py +96 -0
  5921. pyromt-2.4.1/srigram/raw/types/message_action_suggested_post_refund.py +62 -0
  5922. pyromt-2.4.1/srigram/raw/types/message_action_suggested_post_success.py +62 -0
  5923. pyromt-2.4.1/srigram/raw/types/message_action_todo_append_tasks.py +62 -0
  5924. pyromt-2.4.1/srigram/raw/types/message_action_todo_completions.py +70 -0
  5925. pyromt-2.4.1/srigram/raw/types/message_action_topic_create.py +87 -0
  5926. pyromt-2.4.1/srigram/raw/types/message_action_topic_edit.py +92 -0
  5927. pyromt-2.4.1/srigram/raw/types/message_action_web_view_data_sent.py +62 -0
  5928. pyromt-2.4.1/srigram/raw/types/message_action_web_view_data_sent_me.py +70 -0
  5929. pyromt-2.4.1/srigram/raw/types/message_empty.py +74 -0
  5930. pyromt-2.4.1/srigram/raw/types/message_entity_bank_card.py +70 -0
  5931. pyromt-2.4.1/srigram/raw/types/message_entity_blockquote.py +78 -0
  5932. pyromt-2.4.1/srigram/raw/types/message_entity_bold.py +70 -0
  5933. pyromt-2.4.1/srigram/raw/types/message_entity_bot_command.py +70 -0
  5934. pyromt-2.4.1/srigram/raw/types/message_entity_cashtag.py +70 -0
  5935. pyromt-2.4.1/srigram/raw/types/message_entity_code.py +70 -0
  5936. pyromt-2.4.1/srigram/raw/types/message_entity_custom_emoji.py +78 -0
  5937. pyromt-2.4.1/srigram/raw/types/message_entity_email.py +70 -0
  5938. pyromt-2.4.1/srigram/raw/types/message_entity_hashtag.py +70 -0
  5939. pyromt-2.4.1/srigram/raw/types/message_entity_italic.py +70 -0
  5940. pyromt-2.4.1/srigram/raw/types/message_entity_mention.py +70 -0
  5941. pyromt-2.4.1/srigram/raw/types/message_entity_mention_name.py +78 -0
  5942. pyromt-2.4.1/srigram/raw/types/message_entity_phone.py +70 -0
  5943. pyromt-2.4.1/srigram/raw/types/message_entity_pre.py +78 -0
  5944. pyromt-2.4.1/srigram/raw/types/message_entity_spoiler.py +70 -0
  5945. pyromt-2.4.1/srigram/raw/types/message_entity_strike.py +70 -0
  5946. pyromt-2.4.1/srigram/raw/types/message_entity_text_url.py +78 -0
  5947. pyromt-2.4.1/srigram/raw/types/message_entity_underline.py +70 -0
  5948. pyromt-2.4.1/srigram/raw/types/message_entity_unknown.py +70 -0
  5949. pyromt-2.4.1/srigram/raw/types/message_entity_url.py +70 -0
  5950. pyromt-2.4.1/srigram/raw/types/message_extended_media.py +62 -0
  5951. pyromt-2.4.1/srigram/raw/types/message_extended_media_preview.py +93 -0
  5952. pyromt-2.4.1/srigram/raw/types/message_fwd_header.py +169 -0
  5953. pyromt-2.4.1/srigram/raw/types/message_media_contact.py +104 -0
  5954. pyromt-2.4.1/srigram/raw/types/message_media_dice.py +92 -0
  5955. pyromt-2.4.1/srigram/raw/types/message_media_document.py +144 -0
  5956. pyromt-2.4.1/srigram/raw/types/message_media_empty.py +67 -0
  5957. pyromt-2.4.1/srigram/raw/types/message_media_game.py +72 -0
  5958. pyromt-2.4.1/srigram/raw/types/message_media_geo.py +72 -0
  5959. pyromt-2.4.1/srigram/raw/types/message_media_geo_live.py +100 -0
  5960. pyromt-2.4.1/srigram/raw/types/message_media_giveaway.py +139 -0
  5961. pyromt-2.4.1/srigram/raw/types/message_media_giveaway_results.py +162 -0
  5962. pyromt-2.4.1/srigram/raw/types/message_media_invoice.py +147 -0
  5963. pyromt-2.4.1/srigram/raw/types/message_media_paid_media.py +80 -0
  5964. pyromt-2.4.1/srigram/raw/types/message_media_photo.py +91 -0
  5965. pyromt-2.4.1/srigram/raw/types/message_media_poll.py +80 -0
  5966. pyromt-2.4.1/srigram/raw/types/message_media_story.py +98 -0
  5967. pyromt-2.4.1/srigram/raw/types/message_media_to_do.py +84 -0
  5968. pyromt-2.4.1/srigram/raw/types/message_media_unsupported.py +67 -0
  5969. pyromt-2.4.1/srigram/raw/types/message_media_venue.py +112 -0
  5970. pyromt-2.4.1/srigram/raw/types/message_media_video_stream.py +80 -0
  5971. pyromt-2.4.1/srigram/raw/types/message_media_web_page.py +98 -0
  5972. pyromt-2.4.1/srigram/raw/types/message_peer_reaction.py +98 -0
  5973. pyromt-2.4.1/srigram/raw/types/message_peer_vote.py +78 -0
  5974. pyromt-2.4.1/srigram/raw/types/message_peer_vote_input_option.py +70 -0
  5975. pyromt-2.4.1/srigram/raw/types/message_peer_vote_multiple.py +78 -0
  5976. pyromt-2.4.1/srigram/raw/types/message_range.py +79 -0
  5977. pyromt-2.4.1/srigram/raw/types/message_reactions.py +102 -0
  5978. pyromt-2.4.1/srigram/raw/types/message_reactor.py +92 -0
  5979. pyromt-2.4.1/srigram/raw/types/message_replies.py +115 -0
  5980. pyromt-2.4.1/srigram/raw/types/message_reply_header.py +159 -0
  5981. pyromt-2.4.1/srigram/raw/types/message_reply_story_header.py +70 -0
  5982. pyromt-2.4.1/srigram/raw/types/message_report_option.py +70 -0
  5983. pyromt-2.4.1/srigram/raw/types/message_service.py +179 -0
  5984. pyromt-2.4.1/srigram/raw/types/message_views.py +84 -0
  5985. pyromt-2.4.1/srigram/raw/types/messages/__init__.py +105 -0
  5986. pyromt-2.4.1/srigram/raw/types/messages/affected_found_messages.py +95 -0
  5987. pyromt-2.4.1/srigram/raw/types/messages/affected_history.py +93 -0
  5988. pyromt-2.4.1/srigram/raw/types/messages/affected_messages.py +82 -0
  5989. pyromt-2.4.1/srigram/raw/types/messages/all_stickers.py +81 -0
  5990. pyromt-2.4.1/srigram/raw/types/messages/all_stickers_not_modified.py +68 -0
  5991. pyromt-2.4.1/srigram/raw/types/messages/archived_stickers.py +79 -0
  5992. pyromt-2.4.1/srigram/raw/types/messages/available_effects.py +87 -0
  5993. pyromt-2.4.1/srigram/raw/types/messages/available_effects_not_modified.py +66 -0
  5994. pyromt-2.4.1/srigram/raw/types/messages/available_reactions.py +79 -0
  5995. pyromt-2.4.1/srigram/raw/types/messages/available_reactions_not_modified.py +66 -0
  5996. pyromt-2.4.1/srigram/raw/types/messages/bot_app.py +91 -0
  5997. pyromt-2.4.1/srigram/raw/types/messages/bot_callback_answer.py +109 -0
  5998. pyromt-2.4.1/srigram/raw/types/messages/bot_prepared_inline_message.py +79 -0
  5999. pyromt-2.4.1/srigram/raw/types/messages/bot_results.py +132 -0
  6000. pyromt-2.4.1/srigram/raw/types/messages/channel_messages.py +142 -0
  6001. pyromt-2.4.1/srigram/raw/types/messages/chat_admins_with_invites.py +79 -0
  6002. pyromt-2.4.1/srigram/raw/types/messages/chat_full.py +88 -0
  6003. pyromt-2.4.1/srigram/raw/types/messages/chat_invite_importers.py +87 -0
  6004. pyromt-2.4.1/srigram/raw/types/messages/chats.py +78 -0
  6005. pyromt-2.4.1/srigram/raw/types/messages/chats_slice.py +86 -0
  6006. pyromt-2.4.1/srigram/raw/types/messages/checked_history_import_peer.py +71 -0
  6007. pyromt-2.4.1/srigram/raw/types/messages/dh_config.py +95 -0
  6008. pyromt-2.4.1/srigram/raw/types/messages/dh_config_not_modified.py +71 -0
  6009. pyromt-2.4.1/srigram/raw/types/messages/dialog_filters.py +79 -0
  6010. pyromt-2.4.1/srigram/raw/types/messages/dialogs.py +95 -0
  6011. pyromt-2.4.1/srigram/raw/types/messages/dialogs_not_modified.py +71 -0
  6012. pyromt-2.4.1/srigram/raw/types/messages/dialogs_slice.py +103 -0
  6013. pyromt-2.4.1/srigram/raw/types/messages/discussion_message.py +124 -0
  6014. pyromt-2.4.1/srigram/raw/types/messages/emoji_game_dice_info.py +106 -0
  6015. pyromt-2.4.1/srigram/raw/types/messages/emoji_game_outcome.py +78 -0
  6016. pyromt-2.4.1/srigram/raw/types/messages/emoji_game_unavailable.py +66 -0
  6017. pyromt-2.4.1/srigram/raw/types/messages/emoji_groups.py +82 -0
  6018. pyromt-2.4.1/srigram/raw/types/messages/emoji_groups_not_modified.py +69 -0
  6019. pyromt-2.4.1/srigram/raw/types/messages/exported_chat_invite.py +80 -0
  6020. pyromt-2.4.1/srigram/raw/types/messages/exported_chat_invite_replaced.py +88 -0
  6021. pyromt-2.4.1/srigram/raw/types/messages/exported_chat_invites.py +87 -0
  6022. pyromt-2.4.1/srigram/raw/types/messages/faved_stickers.py +87 -0
  6023. pyromt-2.4.1/srigram/raw/types/messages/faved_stickers_not_modified.py +66 -0
  6024. pyromt-2.4.1/srigram/raw/types/messages/featured_stickers.py +105 -0
  6025. pyromt-2.4.1/srigram/raw/types/messages/featured_stickers_not_modified.py +73 -0
  6026. pyromt-2.4.1/srigram/raw/types/messages/forum_topics.py +120 -0
  6027. pyromt-2.4.1/srigram/raw/types/messages/found_sticker_sets.py +80 -0
  6028. pyromt-2.4.1/srigram/raw/types/messages/found_sticker_sets_not_modified.py +67 -0
  6029. pyromt-2.4.1/srigram/raw/types/messages/found_stickers.py +90 -0
  6030. pyromt-2.4.1/srigram/raw/types/messages/found_stickers_not_modified.py +74 -0
  6031. pyromt-2.4.1/srigram/raw/types/messages/high_scores.py +80 -0
  6032. pyromt-2.4.1/srigram/raw/types/messages/history_import.py +71 -0
  6033. pyromt-2.4.1/srigram/raw/types/messages/history_import_parsed.py +86 -0
  6034. pyromt-2.4.1/srigram/raw/types/messages/inactive_chats.py +87 -0
  6035. pyromt-2.4.1/srigram/raw/types/messages/invited_users.py +81 -0
  6036. pyromt-2.4.1/srigram/raw/types/messages/message_edit_data.py +71 -0
  6037. pyromt-2.4.1/srigram/raw/types/messages/message_reactions_list.py +106 -0
  6038. pyromt-2.4.1/srigram/raw/types/messages/message_views.py +87 -0
  6039. pyromt-2.4.1/srigram/raw/types/messages/messages.py +109 -0
  6040. pyromt-2.4.1/srigram/raw/types/messages/messages_not_modified.py +85 -0
  6041. pyromt-2.4.1/srigram/raw/types/messages/messages_slice.py +153 -0
  6042. pyromt-2.4.1/srigram/raw/types/messages/my_stickers.py +79 -0
  6043. pyromt-2.4.1/srigram/raw/types/messages/peer_dialogs.py +104 -0
  6044. pyromt-2.4.1/srigram/raw/types/messages/peer_settings.py +87 -0
  6045. pyromt-2.4.1/srigram/raw/types/messages/prepared_inline_message.py +103 -0
  6046. pyromt-2.4.1/srigram/raw/types/messages/quick_replies.py +95 -0
  6047. pyromt-2.4.1/srigram/raw/types/messages/quick_replies_not_modified.py +66 -0
  6048. pyromt-2.4.1/srigram/raw/types/messages/reactions.py +81 -0
  6049. pyromt-2.4.1/srigram/raw/types/messages/reactions_not_modified.py +68 -0
  6050. pyromt-2.4.1/srigram/raw/types/messages/recent_stickers.py +95 -0
  6051. pyromt-2.4.1/srigram/raw/types/messages/recent_stickers_not_modified.py +66 -0
  6052. pyromt-2.4.1/srigram/raw/types/messages/saved_dialogs.py +97 -0
  6053. pyromt-2.4.1/srigram/raw/types/messages/saved_dialogs_not_modified.py +73 -0
  6054. pyromt-2.4.1/srigram/raw/types/messages/saved_dialogs_slice.py +105 -0
  6055. pyromt-2.4.1/srigram/raw/types/messages/saved_gifs.py +79 -0
  6056. pyromt-2.4.1/srigram/raw/types/messages/saved_gifs_not_modified.py +66 -0
  6057. pyromt-2.4.1/srigram/raw/types/messages/saved_reaction_tags.py +79 -0
  6058. pyromt-2.4.1/srigram/raw/types/messages/saved_reaction_tags_not_modified.py +66 -0
  6059. pyromt-2.4.1/srigram/raw/types/messages/search_counter.py +87 -0
  6060. pyromt-2.4.1/srigram/raw/types/messages/search_results_calendar.py +136 -0
  6061. pyromt-2.4.1/srigram/raw/types/messages/search_results_positions.py +79 -0
  6062. pyromt-2.4.1/srigram/raw/types/messages/sent_encrypted_file.py +81 -0
  6063. pyromt-2.4.1/srigram/raw/types/messages/sent_encrypted_message.py +73 -0
  6064. pyromt-2.4.1/srigram/raw/types/messages/sponsored_messages.py +116 -0
  6065. pyromt-2.4.1/srigram/raw/types/messages/sponsored_messages_empty.py +66 -0
  6066. pyromt-2.4.1/srigram/raw/types/messages/sticker_set.py +103 -0
  6067. pyromt-2.4.1/srigram/raw/types/messages/sticker_set_install_result_archive.py +71 -0
  6068. pyromt-2.4.1/srigram/raw/types/messages/sticker_set_install_result_success.py +66 -0
  6069. pyromt-2.4.1/srigram/raw/types/messages/sticker_set_not_modified.py +74 -0
  6070. pyromt-2.4.1/srigram/raw/types/messages/stickers.py +79 -0
  6071. pyromt-2.4.1/srigram/raw/types/messages/stickers_not_modified.py +66 -0
  6072. pyromt-2.4.1/srigram/raw/types/messages/transcribed_audio.py +105 -0
  6073. pyromt-2.4.1/srigram/raw/types/messages/translate_result.py +71 -0
  6074. pyromt-2.4.1/srigram/raw/types/messages/votes_list.py +106 -0
  6075. pyromt-2.4.1/srigram/raw/types/messages/web_page.py +87 -0
  6076. pyromt-2.4.1/srigram/raw/types/messages/web_page_preview.py +87 -0
  6077. pyromt-2.4.1/srigram/raw/types/missing_invitee.py +76 -0
  6078. pyromt-2.4.1/srigram/raw/types/mono_forum_dialog.py +126 -0
  6079. pyromt-2.4.1/srigram/raw/types/msg_detailed_info.py +86 -0
  6080. pyromt-2.4.1/srigram/raw/types/msg_new_detailed_info.py +78 -0
  6081. pyromt-2.4.1/srigram/raw/types/msg_resend_ans_req.py +62 -0
  6082. pyromt-2.4.1/srigram/raw/types/msg_resend_req.py +62 -0
  6083. pyromt-2.4.1/srigram/raw/types/msgs_ack.py +62 -0
  6084. pyromt-2.4.1/srigram/raw/types/msgs_all_info.py +70 -0
  6085. pyromt-2.4.1/srigram/raw/types/msgs_state_info.py +70 -0
  6086. pyromt-2.4.1/srigram/raw/types/msgs_state_req.py +62 -0
  6087. pyromt-2.4.1/srigram/raw/types/my_boost.py +99 -0
  6088. pyromt-2.4.1/srigram/raw/types/nearest_dc.py +87 -0
  6089. pyromt-2.4.1/srigram/raw/types/new_session_created.py +78 -0
  6090. pyromt-2.4.1/srigram/raw/types/notification_sound_default.py +57 -0
  6091. pyromt-2.4.1/srigram/raw/types/notification_sound_local.py +70 -0
  6092. pyromt-2.4.1/srigram/raw/types/notification_sound_none.py +57 -0
  6093. pyromt-2.4.1/srigram/raw/types/notification_sound_ringtone.py +62 -0
  6094. pyromt-2.4.1/srigram/raw/types/notify_broadcasts.py +57 -0
  6095. pyromt-2.4.1/srigram/raw/types/notify_chats.py +57 -0
  6096. pyromt-2.4.1/srigram/raw/types/notify_forum_topic.py +70 -0
  6097. pyromt-2.4.1/srigram/raw/types/notify_peer.py +62 -0
  6098. pyromt-2.4.1/srigram/raw/types/notify_users.py +57 -0
  6099. pyromt-2.4.1/srigram/raw/types/null.py +57 -0
  6100. pyromt-2.4.1/srigram/raw/types/outbox_read_date.py +71 -0
  6101. pyromt-2.4.1/srigram/raw/types/page.py +115 -0
  6102. pyromt-2.4.1/srigram/raw/types/page_block_anchor.py +62 -0
  6103. pyromt-2.4.1/srigram/raw/types/page_block_audio.py +70 -0
  6104. pyromt-2.4.1/srigram/raw/types/page_block_author_date.py +70 -0
  6105. pyromt-2.4.1/srigram/raw/types/page_block_blockquote.py +70 -0
  6106. pyromt-2.4.1/srigram/raw/types/page_block_channel.py +62 -0
  6107. pyromt-2.4.1/srigram/raw/types/page_block_collage.py +70 -0
  6108. pyromt-2.4.1/srigram/raw/types/page_block_cover.py +62 -0
  6109. pyromt-2.4.1/srigram/raw/types/page_block_details.py +78 -0
  6110. pyromt-2.4.1/srigram/raw/types/page_block_divider.py +57 -0
  6111. pyromt-2.4.1/srigram/raw/types/page_block_embed.py +121 -0
  6112. pyromt-2.4.1/srigram/raw/types/page_block_embed_post.py +110 -0
  6113. pyromt-2.4.1/srigram/raw/types/page_block_footer.py +62 -0
  6114. pyromt-2.4.1/srigram/raw/types/page_block_header.py +62 -0
  6115. pyromt-2.4.1/srigram/raw/types/page_block_kicker.py +62 -0
  6116. pyromt-2.4.1/srigram/raw/types/page_block_list.py +62 -0
  6117. pyromt-2.4.1/srigram/raw/types/page_block_map.py +94 -0
  6118. pyromt-2.4.1/srigram/raw/types/page_block_ordered_list.py +62 -0
  6119. pyromt-2.4.1/srigram/raw/types/page_block_paragraph.py +62 -0
  6120. pyromt-2.4.1/srigram/raw/types/page_block_photo.py +90 -0
  6121. pyromt-2.4.1/srigram/raw/types/page_block_preformatted.py +70 -0
  6122. pyromt-2.4.1/srigram/raw/types/page_block_pullquote.py +70 -0
  6123. pyromt-2.4.1/srigram/raw/types/page_block_related_articles.py +70 -0
  6124. pyromt-2.4.1/srigram/raw/types/page_block_slideshow.py +70 -0
  6125. pyromt-2.4.1/srigram/raw/types/page_block_subheader.py +62 -0
  6126. pyromt-2.4.1/srigram/raw/types/page_block_subtitle.py +62 -0
  6127. pyromt-2.4.1/srigram/raw/types/page_block_table.py +84 -0
  6128. pyromt-2.4.1/srigram/raw/types/page_block_title.py +62 -0
  6129. pyromt-2.4.1/srigram/raw/types/page_block_unsupported.py +57 -0
  6130. pyromt-2.4.1/srigram/raw/types/page_block_video.py +84 -0
  6131. pyromt-2.4.1/srigram/raw/types/page_caption.py +70 -0
  6132. pyromt-2.4.1/srigram/raw/types/page_list_item_blocks.py +62 -0
  6133. pyromt-2.4.1/srigram/raw/types/page_list_item_text.py +62 -0
  6134. pyromt-2.4.1/srigram/raw/types/page_list_ordered_item_blocks.py +70 -0
  6135. pyromt-2.4.1/srigram/raw/types/page_list_ordered_item_text.py +70 -0
  6136. pyromt-2.4.1/srigram/raw/types/page_related_article.py +117 -0
  6137. pyromt-2.4.1/srigram/raw/types/page_table_cell.py +114 -0
  6138. pyromt-2.4.1/srigram/raw/types/page_table_row.py +62 -0
  6139. pyromt-2.4.1/srigram/raw/types/paid_reaction_privacy_anonymous.py +57 -0
  6140. pyromt-2.4.1/srigram/raw/types/paid_reaction_privacy_default.py +57 -0
  6141. pyromt-2.4.1/srigram/raw/types/paid_reaction_privacy_peer.py +62 -0
  6142. pyromt-2.4.1/srigram/raw/types/passkey.py +107 -0
  6143. pyromt-2.4.1/srigram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py +86 -0
  6144. pyromt-2.4.1/srigram/raw/types/password_kdf_algo_unknown.py +57 -0
  6145. pyromt-2.4.1/srigram/raw/types/payment_charge.py +70 -0
  6146. pyromt-2.4.1/srigram/raw/types/payment_form_method.py +70 -0
  6147. pyromt-2.4.1/srigram/raw/types/payment_requested_info.py +93 -0
  6148. pyromt-2.4.1/srigram/raw/types/payment_saved_credentials_card.py +70 -0
  6149. pyromt-2.4.1/srigram/raw/types/payments/__init__.py +51 -0
  6150. pyromt-2.4.1/srigram/raw/types/payments/bank_card_data.py +79 -0
  6151. pyromt-2.4.1/srigram/raw/types/payments/check_can_send_gift_result_fail.py +71 -0
  6152. pyromt-2.4.1/srigram/raw/types/payments/check_can_send_gift_result_ok.py +66 -0
  6153. pyromt-2.4.1/srigram/raw/types/payments/checked_gift_code.py +140 -0
  6154. pyromt-2.4.1/srigram/raw/types/payments/connected_star_ref_bots.py +90 -0
  6155. pyromt-2.4.1/srigram/raw/types/payments/exported_invoice.py +71 -0
  6156. pyromt-2.4.1/srigram/raw/types/payments/giveaway_info.py +112 -0
  6157. pyromt-2.4.1/srigram/raw/types/payments/giveaway_info_results.py +128 -0
  6158. pyromt-2.4.1/srigram/raw/types/payments/payment_form.py +200 -0
  6159. pyromt-2.4.1/srigram/raw/types/payments/payment_form_star_gift.py +79 -0
  6160. pyromt-2.4.1/srigram/raw/types/payments/payment_form_stars.py +123 -0
  6161. pyromt-2.4.1/srigram/raw/types/payments/payment_receipt.py +184 -0
  6162. pyromt-2.4.1/srigram/raw/types/payments/payment_receipt_stars.py +147 -0
  6163. pyromt-2.4.1/srigram/raw/types/payments/payment_result.py +72 -0
  6164. pyromt-2.4.1/srigram/raw/types/payments/payment_verification_needed.py +72 -0
  6165. pyromt-2.4.1/srigram/raw/types/payments/resale_star_gifts.py +135 -0
  6166. pyromt-2.4.1/srigram/raw/types/payments/saved_info.py +81 -0
  6167. pyromt-2.4.1/srigram/raw/types/payments/saved_star_gifts.py +117 -0
  6168. pyromt-2.4.1/srigram/raw/types/payments/star_gift_active_auctions.py +87 -0
  6169. pyromt-2.4.1/srigram/raw/types/payments/star_gift_active_auctions_not_modified.py +66 -0
  6170. pyromt-2.4.1/srigram/raw/types/payments/star_gift_auction_acquired_gifts.py +87 -0
  6171. pyromt-2.4.1/srigram/raw/types/payments/star_gift_auction_state.py +111 -0
  6172. pyromt-2.4.1/srigram/raw/types/payments/star_gift_collections.py +71 -0
  6173. pyromt-2.4.1/srigram/raw/types/payments/star_gift_collections_not_modified.py +66 -0
  6174. pyromt-2.4.1/srigram/raw/types/payments/star_gift_upgrade_attributes.py +71 -0
  6175. pyromt-2.4.1/srigram/raw/types/payments/star_gift_upgrade_preview.py +87 -0
  6176. pyromt-2.4.1/srigram/raw/types/payments/star_gift_withdrawal_url.py +71 -0
  6177. pyromt-2.4.1/srigram/raw/types/payments/star_gifts.py +95 -0
  6178. pyromt-2.4.1/srigram/raw/types/payments/star_gifts_not_modified.py +66 -0
  6179. pyromt-2.4.1/srigram/raw/types/payments/stars_revenue_ads_account_url.py +71 -0
  6180. pyromt-2.4.1/srigram/raw/types/payments/stars_revenue_stats.py +99 -0
  6181. pyromt-2.4.1/srigram/raw/types/payments/stars_revenue_withdrawal_url.py +71 -0
  6182. pyromt-2.4.1/srigram/raw/types/payments/stars_status.py +139 -0
  6183. pyromt-2.4.1/srigram/raw/types/payments/suggested_star_ref_bots.py +98 -0
  6184. pyromt-2.4.1/srigram/raw/types/payments/unique_star_gift.py +87 -0
  6185. pyromt-2.4.1/srigram/raw/types/payments/unique_star_gift_value_info.py +180 -0
  6186. pyromt-2.4.1/srigram/raw/types/payments/validated_requested_info.py +84 -0
  6187. pyromt-2.4.1/srigram/raw/types/peer_blocked.py +70 -0
  6188. pyromt-2.4.1/srigram/raw/types/peer_channel.py +71 -0
  6189. pyromt-2.4.1/srigram/raw/types/peer_chat.py +71 -0
  6190. pyromt-2.4.1/srigram/raw/types/peer_color.py +74 -0
  6191. pyromt-2.4.1/srigram/raw/types/peer_color_collectible.py +115 -0
  6192. pyromt-2.4.1/srigram/raw/types/peer_located.py +78 -0
  6193. pyromt-2.4.1/srigram/raw/types/peer_notify_settings.py +170 -0
  6194. pyromt-2.4.1/srigram/raw/types/peer_self_located.py +62 -0
  6195. pyromt-2.4.1/srigram/raw/types/peer_settings.py +212 -0
  6196. pyromt-2.4.1/srigram/raw/types/peer_stories.py +81 -0
  6197. pyromt-2.4.1/srigram/raw/types/peer_user.py +71 -0
  6198. pyromt-2.4.1/srigram/raw/types/pending_suggestion.py +86 -0
  6199. pyromt-2.4.1/srigram/raw/types/phone/__init__.py +22 -0
  6200. pyromt-2.4.1/srigram/raw/types/phone/exported_group_call_invite.py +71 -0
  6201. pyromt-2.4.1/srigram/raw/types/phone/group_call.py +103 -0
  6202. pyromt-2.4.1/srigram/raw/types/phone/group_call_stars.py +95 -0
  6203. pyromt-2.4.1/srigram/raw/types/phone/group_call_stream_channels.py +71 -0
  6204. pyromt-2.4.1/srigram/raw/types/phone/group_call_stream_rtmp_url.py +79 -0
  6205. pyromt-2.4.1/srigram/raw/types/phone/group_participants.py +111 -0
  6206. pyromt-2.4.1/srigram/raw/types/phone/join_as_peers.py +87 -0
  6207. pyromt-2.4.1/srigram/raw/types/phone/phone_call.py +81 -0
  6208. pyromt-2.4.1/srigram/raw/types/phone_call.py +164 -0
  6209. pyromt-2.4.1/srigram/raw/types/phone_call_accepted.py +118 -0
  6210. pyromt-2.4.1/srigram/raw/types/phone_call_discard_reason_busy.py +57 -0
  6211. pyromt-2.4.1/srigram/raw/types/phone_call_discard_reason_disconnect.py +57 -0
  6212. pyromt-2.4.1/srigram/raw/types/phone_call_discard_reason_hangup.py +57 -0
  6213. pyromt-2.4.1/srigram/raw/types/phone_call_discard_reason_migrate_conference_call.py +62 -0
  6214. pyromt-2.4.1/srigram/raw/types/phone_call_discard_reason_missed.py +57 -0
  6215. pyromt-2.4.1/srigram/raw/types/phone_call_discarded.py +101 -0
  6216. pyromt-2.4.1/srigram/raw/types/phone_call_empty.py +62 -0
  6217. pyromt-2.4.1/srigram/raw/types/phone_call_protocol.py +92 -0
  6218. pyromt-2.4.1/srigram/raw/types/phone_call_requested.py +118 -0
  6219. pyromt-2.4.1/srigram/raw/types/phone_call_waiting.py +119 -0
  6220. pyromt-2.4.1/srigram/raw/types/phone_connection.py +102 -0
  6221. pyromt-2.4.1/srigram/raw/types/phone_connection_webrtc.py +116 -0
  6222. pyromt-2.4.1/srigram/raw/types/photo.py +120 -0
  6223. pyromt-2.4.1/srigram/raw/types/photo_cached_size.py +86 -0
  6224. pyromt-2.4.1/srigram/raw/types/photo_empty.py +62 -0
  6225. pyromt-2.4.1/srigram/raw/types/photo_path_size.py +70 -0
  6226. pyromt-2.4.1/srigram/raw/types/photo_size.py +86 -0
  6227. pyromt-2.4.1/srigram/raw/types/photo_size_empty.py +62 -0
  6228. pyromt-2.4.1/srigram/raw/types/photo_size_progressive.py +86 -0
  6229. pyromt-2.4.1/srigram/raw/types/photo_stripped_size.py +70 -0
  6230. pyromt-2.4.1/srigram/raw/types/photos/__init__.py +17 -0
  6231. pyromt-2.4.1/srigram/raw/types/photos/photo.py +81 -0
  6232. pyromt-2.4.1/srigram/raw/types/photos/photos.py +79 -0
  6233. pyromt-2.4.1/srigram/raw/types/photos/photos_slice.py +87 -0
  6234. pyromt-2.4.1/srigram/raw/types/poll.py +122 -0
  6235. pyromt-2.4.1/srigram/raw/types/poll_answer.py +70 -0
  6236. pyromt-2.4.1/srigram/raw/types/poll_answer_voters.py +84 -0
  6237. pyromt-2.4.1/srigram/raw/types/poll_results.py +110 -0
  6238. pyromt-2.4.1/srigram/raw/types/pong.py +80 -0
  6239. pyromt-2.4.1/srigram/raw/types/popular_contact.py +70 -0
  6240. pyromt-2.4.1/srigram/raw/types/post_address.py +102 -0
  6241. pyromt-2.4.1/srigram/raw/types/post_interaction_counters_message.py +86 -0
  6242. pyromt-2.4.1/srigram/raw/types/post_interaction_counters_story.py +86 -0
  6243. pyromt-2.4.1/srigram/raw/types/pq_inner_data.py +102 -0
  6244. pyromt-2.4.1/srigram/raw/types/pq_inner_data_dc.py +110 -0
  6245. pyromt-2.4.1/srigram/raw/types/pq_inner_data_temp.py +110 -0
  6246. pyromt-2.4.1/srigram/raw/types/pq_inner_data_temp_dc.py +118 -0
  6247. pyromt-2.4.1/srigram/raw/types/premium/__init__.py +17 -0
  6248. pyromt-2.4.1/srigram/raw/types/premium/boosts_list.py +99 -0
  6249. pyromt-2.4.1/srigram/raw/types/premium/boosts_status.py +151 -0
  6250. pyromt-2.4.1/srigram/raw/types/premium/my_boosts.py +88 -0
  6251. pyromt-2.4.1/srigram/raw/types/premium_gift_code_option.py +115 -0
  6252. pyromt-2.4.1/srigram/raw/types/premium_subscription_option.py +118 -0
  6253. pyromt-2.4.1/srigram/raw/types/prepaid_giveaway.py +86 -0
  6254. pyromt-2.4.1/srigram/raw/types/prepaid_stars_giveaway.py +94 -0
  6255. pyromt-2.4.1/srigram/raw/types/privacy_key_about.py +57 -0
  6256. pyromt-2.4.1/srigram/raw/types/privacy_key_added_by_phone.py +57 -0
  6257. pyromt-2.4.1/srigram/raw/types/privacy_key_birthday.py +57 -0
  6258. pyromt-2.4.1/srigram/raw/types/privacy_key_chat_invite.py +57 -0
  6259. pyromt-2.4.1/srigram/raw/types/privacy_key_forwards.py +57 -0
  6260. pyromt-2.4.1/srigram/raw/types/privacy_key_no_paid_messages.py +57 -0
  6261. pyromt-2.4.1/srigram/raw/types/privacy_key_phone_call.py +57 -0
  6262. pyromt-2.4.1/srigram/raw/types/privacy_key_phone_number.py +57 -0
  6263. pyromt-2.4.1/srigram/raw/types/privacy_key_phone_p2_p.py +57 -0
  6264. pyromt-2.4.1/srigram/raw/types/privacy_key_profile_photo.py +57 -0
  6265. pyromt-2.4.1/srigram/raw/types/privacy_key_saved_music.py +57 -0
  6266. pyromt-2.4.1/srigram/raw/types/privacy_key_star_gifts_auto_save.py +57 -0
  6267. pyromt-2.4.1/srigram/raw/types/privacy_key_status_timestamp.py +57 -0
  6268. pyromt-2.4.1/srigram/raw/types/privacy_key_voice_messages.py +57 -0
  6269. pyromt-2.4.1/srigram/raw/types/privacy_value_allow_all.py +57 -0
  6270. pyromt-2.4.1/srigram/raw/types/privacy_value_allow_bots.py +57 -0
  6271. pyromt-2.4.1/srigram/raw/types/privacy_value_allow_chat_participants.py +62 -0
  6272. pyromt-2.4.1/srigram/raw/types/privacy_value_allow_close_friends.py +57 -0
  6273. pyromt-2.4.1/srigram/raw/types/privacy_value_allow_contacts.py +57 -0
  6274. pyromt-2.4.1/srigram/raw/types/privacy_value_allow_premium.py +57 -0
  6275. pyromt-2.4.1/srigram/raw/types/privacy_value_allow_users.py +62 -0
  6276. pyromt-2.4.1/srigram/raw/types/privacy_value_disallow_all.py +57 -0
  6277. pyromt-2.4.1/srigram/raw/types/privacy_value_disallow_bots.py +57 -0
  6278. pyromt-2.4.1/srigram/raw/types/privacy_value_disallow_chat_participants.py +62 -0
  6279. pyromt-2.4.1/srigram/raw/types/privacy_value_disallow_contacts.py +57 -0
  6280. pyromt-2.4.1/srigram/raw/types/privacy_value_disallow_users.py +62 -0
  6281. pyromt-2.4.1/srigram/raw/types/profile_tab_files.py +57 -0
  6282. pyromt-2.4.1/srigram/raw/types/profile_tab_gifs.py +57 -0
  6283. pyromt-2.4.1/srigram/raw/types/profile_tab_gifts.py +57 -0
  6284. pyromt-2.4.1/srigram/raw/types/profile_tab_links.py +57 -0
  6285. pyromt-2.4.1/srigram/raw/types/profile_tab_media.py +57 -0
  6286. pyromt-2.4.1/srigram/raw/types/profile_tab_music.py +57 -0
  6287. pyromt-2.4.1/srigram/raw/types/profile_tab_posts.py +57 -0
  6288. pyromt-2.4.1/srigram/raw/types/profile_tab_voice.py +57 -0
  6289. pyromt-2.4.1/srigram/raw/types/public_forward_message.py +62 -0
  6290. pyromt-2.4.1/srigram/raw/types/public_forward_story.py +70 -0
  6291. pyromt-2.4.1/srigram/raw/types/quick_reply.py +86 -0
  6292. pyromt-2.4.1/srigram/raw/types/reaction_count.py +81 -0
  6293. pyromt-2.4.1/srigram/raw/types/reaction_custom_emoji.py +62 -0
  6294. pyromt-2.4.1/srigram/raw/types/reaction_emoji.py +62 -0
  6295. pyromt-2.4.1/srigram/raw/types/reaction_empty.py +57 -0
  6296. pyromt-2.4.1/srigram/raw/types/reaction_notifications_from_all.py +57 -0
  6297. pyromt-2.4.1/srigram/raw/types/reaction_notifications_from_contacts.py +57 -0
  6298. pyromt-2.4.1/srigram/raw/types/reaction_paid.py +57 -0
  6299. pyromt-2.4.1/srigram/raw/types/reactions_notify_settings.py +102 -0
  6300. pyromt-2.4.1/srigram/raw/types/read_participant_date.py +79 -0
  6301. pyromt-2.4.1/srigram/raw/types/received_notify_message.py +79 -0
  6302. pyromt-2.4.1/srigram/raw/types/recent_me_url_chat.py +70 -0
  6303. pyromt-2.4.1/srigram/raw/types/recent_me_url_chat_invite.py +70 -0
  6304. pyromt-2.4.1/srigram/raw/types/recent_me_url_sticker_set.py +70 -0
  6305. pyromt-2.4.1/srigram/raw/types/recent_me_url_unknown.py +62 -0
  6306. pyromt-2.4.1/srigram/raw/types/recent_me_url_user.py +70 -0
  6307. pyromt-2.4.1/srigram/raw/types/recent_story.py +80 -0
  6308. pyromt-2.4.1/srigram/raw/types/reply_inline_markup.py +62 -0
  6309. pyromt-2.4.1/srigram/raw/types/reply_keyboard_force_reply.py +77 -0
  6310. pyromt-2.4.1/srigram/raw/types/reply_keyboard_hide.py +62 -0
  6311. pyromt-2.4.1/srigram/raw/types/reply_keyboard_markup.py +97 -0
  6312. pyromt-2.4.1/srigram/raw/types/report_result_add_comment.py +80 -0
  6313. pyromt-2.4.1/srigram/raw/types/report_result_choose_option.py +80 -0
  6314. pyromt-2.4.1/srigram/raw/types/report_result_reported.py +67 -0
  6315. pyromt-2.4.1/srigram/raw/types/request_peer_type_broadcast.py +91 -0
  6316. pyromt-2.4.1/srigram/raw/types/request_peer_type_chat.py +106 -0
  6317. pyromt-2.4.1/srigram/raw/types/request_peer_type_user.py +74 -0
  6318. pyromt-2.4.1/srigram/raw/types/requested_peer_channel.py +92 -0
  6319. pyromt-2.4.1/srigram/raw/types/requested_peer_chat.py +83 -0
  6320. pyromt-2.4.1/srigram/raw/types/requested_peer_user.py +101 -0
  6321. pyromt-2.4.1/srigram/raw/types/requirement_to_contact_empty.py +66 -0
  6322. pyromt-2.4.1/srigram/raw/types/requirement_to_contact_paid_messages.py +71 -0
  6323. pyromt-2.4.1/srigram/raw/types/requirement_to_contact_premium.py +66 -0
  6324. pyromt-2.4.1/srigram/raw/types/res_pq.py +96 -0
  6325. pyromt-2.4.1/srigram/raw/types/restriction_reason.py +78 -0
  6326. pyromt-2.4.1/srigram/raw/types/rpc_answer_dropped.py +87 -0
  6327. pyromt-2.4.1/srigram/raw/types/rpc_answer_dropped_running.py +66 -0
  6328. pyromt-2.4.1/srigram/raw/types/rpc_answer_unknown.py +66 -0
  6329. pyromt-2.4.1/srigram/raw/types/rpc_error.py +70 -0
  6330. pyromt-2.4.1/srigram/raw/types/rpc_result.py +70 -0
  6331. pyromt-2.4.1/srigram/raw/types/saved_dialog.py +78 -0
  6332. pyromt-2.4.1/srigram/raw/types/saved_phone_contact.py +95 -0
  6333. pyromt-2.4.1/srigram/raw/types/saved_reaction_tag.py +81 -0
  6334. pyromt-2.4.1/srigram/raw/types/saved_star_gift.py +246 -0
  6335. pyromt-2.4.1/srigram/raw/types/search_posts_flood.py +104 -0
  6336. pyromt-2.4.1/srigram/raw/types/search_result_position.py +78 -0
  6337. pyromt-2.4.1/srigram/raw/types/search_results_calendar_period.py +86 -0
  6338. pyromt-2.4.1/srigram/raw/types/secure_credentials_encrypted.py +78 -0
  6339. pyromt-2.4.1/srigram/raw/types/secure_data.py +78 -0
  6340. pyromt-2.4.1/srigram/raw/types/secure_file.py +110 -0
  6341. pyromt-2.4.1/srigram/raw/types/secure_file_empty.py +57 -0
  6342. pyromt-2.4.1/srigram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py +62 -0
  6343. pyromt-2.4.1/srigram/raw/types/secure_password_kdf_algo_sha512.py +62 -0
  6344. pyromt-2.4.1/srigram/raw/types/secure_password_kdf_algo_unknown.py +57 -0
  6345. pyromt-2.4.1/srigram/raw/types/secure_plain_email.py +62 -0
  6346. pyromt-2.4.1/srigram/raw/types/secure_plain_phone.py +62 -0
  6347. pyromt-2.4.1/srigram/raw/types/secure_required_type.py +82 -0
  6348. pyromt-2.4.1/srigram/raw/types/secure_required_type_one_of.py +62 -0
  6349. pyromt-2.4.1/srigram/raw/types/secure_secret_settings.py +78 -0
  6350. pyromt-2.4.1/srigram/raw/types/secure_value.py +153 -0
  6351. pyromt-2.4.1/srigram/raw/types/secure_value_error.py +78 -0
  6352. pyromt-2.4.1/srigram/raw/types/secure_value_error_data.py +86 -0
  6353. pyromt-2.4.1/srigram/raw/types/secure_value_error_file.py +78 -0
  6354. pyromt-2.4.1/srigram/raw/types/secure_value_error_files.py +78 -0
  6355. pyromt-2.4.1/srigram/raw/types/secure_value_error_front_side.py +78 -0
  6356. pyromt-2.4.1/srigram/raw/types/secure_value_error_reverse_side.py +78 -0
  6357. pyromt-2.4.1/srigram/raw/types/secure_value_error_selfie.py +78 -0
  6358. pyromt-2.4.1/srigram/raw/types/secure_value_error_translation_file.py +78 -0
  6359. pyromt-2.4.1/srigram/raw/types/secure_value_error_translation_files.py +78 -0
  6360. pyromt-2.4.1/srigram/raw/types/secure_value_hash.py +70 -0
  6361. pyromt-2.4.1/srigram/raw/types/secure_value_type_address.py +57 -0
  6362. pyromt-2.4.1/srigram/raw/types/secure_value_type_bank_statement.py +57 -0
  6363. pyromt-2.4.1/srigram/raw/types/secure_value_type_driver_license.py +57 -0
  6364. pyromt-2.4.1/srigram/raw/types/secure_value_type_email.py +57 -0
  6365. pyromt-2.4.1/srigram/raw/types/secure_value_type_identity_card.py +57 -0
  6366. pyromt-2.4.1/srigram/raw/types/secure_value_type_internal_passport.py +57 -0
  6367. pyromt-2.4.1/srigram/raw/types/secure_value_type_passport.py +57 -0
  6368. pyromt-2.4.1/srigram/raw/types/secure_value_type_passport_registration.py +57 -0
  6369. pyromt-2.4.1/srigram/raw/types/secure_value_type_personal_details.py +57 -0
  6370. pyromt-2.4.1/srigram/raw/types/secure_value_type_phone.py +57 -0
  6371. pyromt-2.4.1/srigram/raw/types/secure_value_type_rental_agreement.py +57 -0
  6372. pyromt-2.4.1/srigram/raw/types/secure_value_type_temporary_registration.py +57 -0
  6373. pyromt-2.4.1/srigram/raw/types/secure_value_type_utility_bill.py +57 -0
  6374. pyromt-2.4.1/srigram/raw/types/send_as_peer.py +70 -0
  6375. pyromt-2.4.1/srigram/raw/types/send_message_cancel_action.py +57 -0
  6376. pyromt-2.4.1/srigram/raw/types/send_message_choose_contact_action.py +57 -0
  6377. pyromt-2.4.1/srigram/raw/types/send_message_choose_sticker_action.py +57 -0
  6378. pyromt-2.4.1/srigram/raw/types/send_message_emoji_interaction.py +78 -0
  6379. pyromt-2.4.1/srigram/raw/types/send_message_emoji_interaction_seen.py +62 -0
  6380. pyromt-2.4.1/srigram/raw/types/send_message_game_play_action.py +57 -0
  6381. pyromt-2.4.1/srigram/raw/types/send_message_geo_location_action.py +57 -0
  6382. pyromt-2.4.1/srigram/raw/types/send_message_history_import_action.py +62 -0
  6383. pyromt-2.4.1/srigram/raw/types/send_message_record_audio_action.py +57 -0
  6384. pyromt-2.4.1/srigram/raw/types/send_message_record_round_action.py +57 -0
  6385. pyromt-2.4.1/srigram/raw/types/send_message_record_video_action.py +57 -0
  6386. pyromt-2.4.1/srigram/raw/types/send_message_text_draft_action.py +70 -0
  6387. pyromt-2.4.1/srigram/raw/types/send_message_typing_action.py +57 -0
  6388. pyromt-2.4.1/srigram/raw/types/send_message_upload_audio_action.py +62 -0
  6389. pyromt-2.4.1/srigram/raw/types/send_message_upload_document_action.py +62 -0
  6390. pyromt-2.4.1/srigram/raw/types/send_message_upload_photo_action.py +62 -0
  6391. pyromt-2.4.1/srigram/raw/types/send_message_upload_round_action.py +62 -0
  6392. pyromt-2.4.1/srigram/raw/types/send_message_upload_video_action.py +62 -0
  6393. pyromt-2.4.1/srigram/raw/types/server_dh_inner_data.py +102 -0
  6394. pyromt-2.4.1/srigram/raw/types/server_dh_params_fail.py +87 -0
  6395. pyromt-2.4.1/srigram/raw/types/server_dh_params_ok.py +87 -0
  6396. pyromt-2.4.1/srigram/raw/types/shipping_option.py +78 -0
  6397. pyromt-2.4.1/srigram/raw/types/sms_job.py +87 -0
  6398. pyromt-2.4.1/srigram/raw/types/smsjobs/__init__.py +16 -0
  6399. pyromt-2.4.1/srigram/raw/types/smsjobs/eligible_to_join.py +79 -0
  6400. pyromt-2.4.1/srigram/raw/types/smsjobs/status.py +128 -0
  6401. pyromt-2.4.1/srigram/raw/types/speaking_in_group_call_action.py +57 -0
  6402. pyromt-2.4.1/srigram/raw/types/sponsored_message.py +184 -0
  6403. pyromt-2.4.1/srigram/raw/types/sponsored_message_report_option.py +70 -0
  6404. pyromt-2.4.1/srigram/raw/types/sponsored_peer.py +90 -0
  6405. pyromt-2.4.1/srigram/raw/types/star_gift.py +285 -0
  6406. pyromt-2.4.1/srigram/raw/types/star_gift_active_auction_state.py +78 -0
  6407. pyromt-2.4.1/srigram/raw/types/star_gift_attribute_backdrop.py +110 -0
  6408. pyromt-2.4.1/srigram/raw/types/star_gift_attribute_counter.py +70 -0
  6409. pyromt-2.4.1/srigram/raw/types/star_gift_attribute_id_backdrop.py +62 -0
  6410. pyromt-2.4.1/srigram/raw/types/star_gift_attribute_id_model.py +62 -0
  6411. pyromt-2.4.1/srigram/raw/types/star_gift_attribute_id_pattern.py +62 -0
  6412. pyromt-2.4.1/srigram/raw/types/star_gift_attribute_model.py +86 -0
  6413. pyromt-2.4.1/srigram/raw/types/star_gift_attribute_original_details.py +92 -0
  6414. pyromt-2.4.1/srigram/raw/types/star_gift_attribute_pattern.py +78 -0
  6415. pyromt-2.4.1/srigram/raw/types/star_gift_attribute_rarity.py +62 -0
  6416. pyromt-2.4.1/srigram/raw/types/star_gift_attribute_rarity_epic.py +57 -0
  6417. pyromt-2.4.1/srigram/raw/types/star_gift_attribute_rarity_legendary.py +57 -0
  6418. pyromt-2.4.1/srigram/raw/types/star_gift_attribute_rarity_rare.py +57 -0
  6419. pyromt-2.4.1/srigram/raw/types/star_gift_attribute_rarity_uncommon.py +57 -0
  6420. pyromt-2.4.1/srigram/raw/types/star_gift_auction_acquired_gift.py +121 -0
  6421. pyromt-2.4.1/srigram/raw/types/star_gift_auction_round.py +70 -0
  6422. pyromt-2.4.1/srigram/raw/types/star_gift_auction_round_extendable.py +86 -0
  6423. pyromt-2.4.1/srigram/raw/types/star_gift_auction_state.py +150 -0
  6424. pyromt-2.4.1/srigram/raw/types/star_gift_auction_state_finished.py +107 -0
  6425. pyromt-2.4.1/srigram/raw/types/star_gift_auction_state_not_modified.py +57 -0
  6426. pyromt-2.4.1/srigram/raw/types/star_gift_auction_user_state.py +107 -0
  6427. pyromt-2.4.1/srigram/raw/types/star_gift_background.py +78 -0
  6428. pyromt-2.4.1/srigram/raw/types/star_gift_collection.py +108 -0
  6429. pyromt-2.4.1/srigram/raw/types/star_gift_unique.py +282 -0
  6430. pyromt-2.4.1/srigram/raw/types/star_gift_upgrade_price.py +70 -0
  6431. pyromt-2.4.1/srigram/raw/types/star_ref_program.py +109 -0
  6432. pyromt-2.4.1/srigram/raw/types/stars_amount.py +70 -0
  6433. pyromt-2.4.1/srigram/raw/types/stars_gift_option.py +104 -0
  6434. pyromt-2.4.1/srigram/raw/types/stars_giveaway_option.py +126 -0
  6435. pyromt-2.4.1/srigram/raw/types/stars_giveaway_winners_option.py +78 -0
  6436. pyromt-2.4.1/srigram/raw/types/stars_rating.py +89 -0
  6437. pyromt-2.4.1/srigram/raw/types/stars_revenue_status.py +95 -0
  6438. pyromt-2.4.1/srigram/raw/types/stars_subscription.py +149 -0
  6439. pyromt-2.4.1/srigram/raw/types/stars_subscription_pricing.py +70 -0
  6440. pyromt-2.4.1/srigram/raw/types/stars_ton_amount.py +62 -0
  6441. pyromt-2.4.1/srigram/raw/types/stars_topup_option.py +104 -0
  6442. pyromt-2.4.1/srigram/raw/types/stars_transaction.py +348 -0
  6443. pyromt-2.4.1/srigram/raw/types/stars_transaction_peer.py +62 -0
  6444. pyromt-2.4.1/srigram/raw/types/stars_transaction_peer_ads.py +57 -0
  6445. pyromt-2.4.1/srigram/raw/types/stars_transaction_peer_api.py +57 -0
  6446. pyromt-2.4.1/srigram/raw/types/stars_transaction_peer_app_store.py +57 -0
  6447. pyromt-2.4.1/srigram/raw/types/stars_transaction_peer_fragment.py +57 -0
  6448. pyromt-2.4.1/srigram/raw/types/stars_transaction_peer_play_market.py +57 -0
  6449. pyromt-2.4.1/srigram/raw/types/stars_transaction_peer_premium_bot.py +57 -0
  6450. pyromt-2.4.1/srigram/raw/types/stars_transaction_peer_unsupported.py +57 -0
  6451. pyromt-2.4.1/srigram/raw/types/stats/__init__.py +19 -0
  6452. pyromt-2.4.1/srigram/raw/types/stats/broadcast_stats.py +239 -0
  6453. pyromt-2.4.1/srigram/raw/types/stats/megagroup_stats.py +199 -0
  6454. pyromt-2.4.1/srigram/raw/types/stats/message_stats.py +79 -0
  6455. pyromt-2.4.1/srigram/raw/types/stats/public_forwards.py +107 -0
  6456. pyromt-2.4.1/srigram/raw/types/stats/story_stats.py +79 -0
  6457. pyromt-2.4.1/srigram/raw/types/stats_abs_value_and_prev.py +70 -0
  6458. pyromt-2.4.1/srigram/raw/types/stats_date_range_days.py +70 -0
  6459. pyromt-2.4.1/srigram/raw/types/stats_graph.py +82 -0
  6460. pyromt-2.4.1/srigram/raw/types/stats_graph_async.py +71 -0
  6461. pyromt-2.4.1/srigram/raw/types/stats_graph_error.py +71 -0
  6462. pyromt-2.4.1/srigram/raw/types/stats_group_top_admin.py +86 -0
  6463. pyromt-2.4.1/srigram/raw/types/stats_group_top_inviter.py +70 -0
  6464. pyromt-2.4.1/srigram/raw/types/stats_group_top_poster.py +78 -0
  6465. pyromt-2.4.1/srigram/raw/types/stats_percent_value.py +70 -0
  6466. pyromt-2.4.1/srigram/raw/types/stats_url.py +62 -0
  6467. pyromt-2.4.1/srigram/raw/types/sticker_keyword.py +70 -0
  6468. pyromt-2.4.1/srigram/raw/types/sticker_pack.py +70 -0
  6469. pyromt-2.4.1/srigram/raw/types/sticker_set.py +192 -0
  6470. pyromt-2.4.1/srigram/raw/types/sticker_set_covered.py +79 -0
  6471. pyromt-2.4.1/srigram/raw/types/sticker_set_full_covered.py +95 -0
  6472. pyromt-2.4.1/srigram/raw/types/sticker_set_multi_covered.py +79 -0
  6473. pyromt-2.4.1/srigram/raw/types/sticker_set_no_covered.py +71 -0
  6474. pyromt-2.4.1/srigram/raw/types/stickers/__init__.py +15 -0
  6475. pyromt-2.4.1/srigram/raw/types/stickers/suggested_short_name.py +71 -0
  6476. pyromt-2.4.1/srigram/raw/types/storage/__init__.py +24 -0
  6477. pyromt-2.4.1/srigram/raw/types/storage/file_gif.py +57 -0
  6478. pyromt-2.4.1/srigram/raw/types/storage/file_jpeg.py +57 -0
  6479. pyromt-2.4.1/srigram/raw/types/storage/file_mov.py +57 -0
  6480. pyromt-2.4.1/srigram/raw/types/storage/file_mp3.py +57 -0
  6481. pyromt-2.4.1/srigram/raw/types/storage/file_mp4.py +57 -0
  6482. pyromt-2.4.1/srigram/raw/types/storage/file_partial.py +57 -0
  6483. pyromt-2.4.1/srigram/raw/types/storage/file_pdf.py +57 -0
  6484. pyromt-2.4.1/srigram/raw/types/storage/file_png.py +57 -0
  6485. pyromt-2.4.1/srigram/raw/types/storage/file_unknown.py +57 -0
  6486. pyromt-2.4.1/srigram/raw/types/storage/file_webp.py +57 -0
  6487. pyromt-2.4.1/srigram/raw/types/stories/__init__.py +25 -0
  6488. pyromt-2.4.1/srigram/raw/types/stories/albums.py +79 -0
  6489. pyromt-2.4.1/srigram/raw/types/stories/albums_not_modified.py +66 -0
  6490. pyromt-2.4.1/srigram/raw/types/stories/all_stories.py +119 -0
  6491. pyromt-2.4.1/srigram/raw/types/stories/all_stories_not_modified.py +82 -0
  6492. pyromt-2.4.1/srigram/raw/types/stories/can_send_story_count.py +71 -0
  6493. pyromt-2.4.1/srigram/raw/types/stories/found_stories.py +106 -0
  6494. pyromt-2.4.1/srigram/raw/types/stories/peer_stories.py +87 -0
  6495. pyromt-2.4.1/srigram/raw/types/stories/stories.py +110 -0
  6496. pyromt-2.4.1/srigram/raw/types/stories/story_reactions_list.py +106 -0
  6497. pyromt-2.4.1/srigram/raw/types/stories/story_views.py +79 -0
  6498. pyromt-2.4.1/srigram/raw/types/stories/story_views_list.py +130 -0
  6499. pyromt-2.4.1/srigram/raw/types/stories_stealth_mode.py +74 -0
  6500. pyromt-2.4.1/srigram/raw/types/story_album.py +102 -0
  6501. pyromt-2.4.1/srigram/raw/types/story_fwd_header.py +90 -0
  6502. pyromt-2.4.1/srigram/raw/types/story_item.py +231 -0
  6503. pyromt-2.4.1/srigram/raw/types/story_item_deleted.py +62 -0
  6504. pyromt-2.4.1/srigram/raw/types/story_item_skipped.py +92 -0
  6505. pyromt-2.4.1/srigram/raw/types/story_reaction.py +78 -0
  6506. pyromt-2.4.1/srigram/raw/types/story_reaction_public_forward.py +62 -0
  6507. pyromt-2.4.1/srigram/raw/types/story_reaction_public_repost.py +70 -0
  6508. pyromt-2.4.1/srigram/raw/types/story_view.py +94 -0
  6509. pyromt-2.4.1/srigram/raw/types/story_view_public_forward.py +76 -0
  6510. pyromt-2.4.1/srigram/raw/types/story_view_public_repost.py +84 -0
  6511. pyromt-2.4.1/srigram/raw/types/story_views.py +108 -0
  6512. pyromt-2.4.1/srigram/raw/types/suggested_post.py +87 -0
  6513. pyromt-2.4.1/srigram/raw/types/text_anchor.py +70 -0
  6514. pyromt-2.4.1/srigram/raw/types/text_bold.py +62 -0
  6515. pyromt-2.4.1/srigram/raw/types/text_concat.py +62 -0
  6516. pyromt-2.4.1/srigram/raw/types/text_email.py +70 -0
  6517. pyromt-2.4.1/srigram/raw/types/text_empty.py +57 -0
  6518. pyromt-2.4.1/srigram/raw/types/text_fixed.py +62 -0
  6519. pyromt-2.4.1/srigram/raw/types/text_image.py +78 -0
  6520. pyromt-2.4.1/srigram/raw/types/text_italic.py +62 -0
  6521. pyromt-2.4.1/srigram/raw/types/text_marked.py +62 -0
  6522. pyromt-2.4.1/srigram/raw/types/text_phone.py +70 -0
  6523. pyromt-2.4.1/srigram/raw/types/text_plain.py +62 -0
  6524. pyromt-2.4.1/srigram/raw/types/text_strike.py +62 -0
  6525. pyromt-2.4.1/srigram/raw/types/text_subscript.py +62 -0
  6526. pyromt-2.4.1/srigram/raw/types/text_superscript.py +62 -0
  6527. pyromt-2.4.1/srigram/raw/types/text_underline.py +62 -0
  6528. pyromt-2.4.1/srigram/raw/types/text_url.py +78 -0
  6529. pyromt-2.4.1/srigram/raw/types/text_with_entities.py +79 -0
  6530. pyromt-2.4.1/srigram/raw/types/theme.py +155 -0
  6531. pyromt-2.4.1/srigram/raw/types/theme_settings.py +107 -0
  6532. pyromt-2.4.1/srigram/raw/types/timezone.py +78 -0
  6533. pyromt-2.4.1/srigram/raw/types/todo_completion.py +78 -0
  6534. pyromt-2.4.1/srigram/raw/types/todo_item.py +70 -0
  6535. pyromt-2.4.1/srigram/raw/types/todo_list.py +84 -0
  6536. pyromt-2.4.1/srigram/raw/types/top_peer.py +70 -0
  6537. pyromt-2.4.1/srigram/raw/types/top_peer_category_bots_app.py +57 -0
  6538. pyromt-2.4.1/srigram/raw/types/top_peer_category_bots_inline.py +57 -0
  6539. pyromt-2.4.1/srigram/raw/types/top_peer_category_bots_pm.py +57 -0
  6540. pyromt-2.4.1/srigram/raw/types/top_peer_category_channels.py +57 -0
  6541. pyromt-2.4.1/srigram/raw/types/top_peer_category_correspondents.py +57 -0
  6542. pyromt-2.4.1/srigram/raw/types/top_peer_category_forward_chats.py +57 -0
  6543. pyromt-2.4.1/srigram/raw/types/top_peer_category_forward_users.py +57 -0
  6544. pyromt-2.4.1/srigram/raw/types/top_peer_category_groups.py +57 -0
  6545. pyromt-2.4.1/srigram/raw/types/top_peer_category_peers.py +78 -0
  6546. pyromt-2.4.1/srigram/raw/types/top_peer_category_phone_calls.py +57 -0
  6547. pyromt-2.4.1/srigram/raw/types/true_.py +57 -0
  6548. pyromt-2.4.1/srigram/raw/types/update_attach_menu_bots.py +57 -0
  6549. pyromt-2.4.1/srigram/raw/types/update_auto_save_settings.py +57 -0
  6550. pyromt-2.4.1/srigram/raw/types/update_bot_business_connect.py +70 -0
  6551. pyromt-2.4.1/srigram/raw/types/update_bot_callback_query.py +114 -0
  6552. pyromt-2.4.1/srigram/raw/types/update_bot_chat_boost.py +78 -0
  6553. pyromt-2.4.1/srigram/raw/types/update_bot_chat_invite_requester.py +102 -0
  6554. pyromt-2.4.1/srigram/raw/types/update_bot_commands.py +78 -0
  6555. pyromt-2.4.1/srigram/raw/types/update_bot_delete_business_message.py +86 -0
  6556. pyromt-2.4.1/srigram/raw/types/update_bot_edit_business_message.py +90 -0
  6557. pyromt-2.4.1/srigram/raw/types/update_bot_inline_query.py +108 -0
  6558. pyromt-2.4.1/srigram/raw/types/update_bot_inline_send.py +100 -0
  6559. pyromt-2.4.1/srigram/raw/types/update_bot_menu_button.py +70 -0
  6560. pyromt-2.4.1/srigram/raw/types/update_bot_message_reaction.py +110 -0
  6561. pyromt-2.4.1/srigram/raw/types/update_bot_message_reactions.py +94 -0
  6562. pyromt-2.4.1/srigram/raw/types/update_bot_new_business_message.py +90 -0
  6563. pyromt-2.4.1/srigram/raw/types/update_bot_precheckout_query.py +115 -0
  6564. pyromt-2.4.1/srigram/raw/types/update_bot_purchased_paid_media.py +78 -0
  6565. pyromt-2.4.1/srigram/raw/types/update_bot_shipping_query.py +86 -0
  6566. pyromt-2.4.1/srigram/raw/types/update_bot_stopped.py +86 -0
  6567. pyromt-2.4.1/srigram/raw/types/update_bot_webhook_json.py +62 -0
  6568. pyromt-2.4.1/srigram/raw/types/update_bot_webhook_json_query.py +78 -0
  6569. pyromt-2.4.1/srigram/raw/types/update_business_bot_callback_query.py +115 -0
  6570. pyromt-2.4.1/srigram/raw/types/update_channel.py +62 -0
  6571. pyromt-2.4.1/srigram/raw/types/update_channel_available_messages.py +70 -0
  6572. pyromt-2.4.1/srigram/raw/types/update_channel_message_forwards.py +78 -0
  6573. pyromt-2.4.1/srigram/raw/types/update_channel_message_views.py +78 -0
  6574. pyromt-2.4.1/srigram/raw/types/update_channel_participant.py +132 -0
  6575. pyromt-2.4.1/srigram/raw/types/update_channel_read_messages_contents.py +91 -0
  6576. pyromt-2.4.1/srigram/raw/types/update_channel_too_long.py +73 -0
  6577. pyromt-2.4.1/srigram/raw/types/update_channel_user_typing.py +89 -0
  6578. pyromt-2.4.1/srigram/raw/types/update_channel_view_forum_as_messages.py +70 -0
  6579. pyromt-2.4.1/srigram/raw/types/update_channel_web_page.py +86 -0
  6580. pyromt-2.4.1/srigram/raw/types/update_chat.py +62 -0
  6581. pyromt-2.4.1/srigram/raw/types/update_chat_default_banned_rights.py +78 -0
  6582. pyromt-2.4.1/srigram/raw/types/update_chat_participant.py +126 -0
  6583. pyromt-2.4.1/srigram/raw/types/update_chat_participant_add.py +94 -0
  6584. pyromt-2.4.1/srigram/raw/types/update_chat_participant_admin.py +86 -0
  6585. pyromt-2.4.1/srigram/raw/types/update_chat_participant_delete.py +78 -0
  6586. pyromt-2.4.1/srigram/raw/types/update_chat_participants.py +62 -0
  6587. pyromt-2.4.1/srigram/raw/types/update_chat_user_typing.py +78 -0
  6588. pyromt-2.4.1/srigram/raw/types/update_config.py +57 -0
  6589. pyromt-2.4.1/srigram/raw/types/update_contacts_reset.py +57 -0
  6590. pyromt-2.4.1/srigram/raw/types/update_dc_options.py +62 -0
  6591. pyromt-2.4.1/srigram/raw/types/update_delete_channel_messages.py +86 -0
  6592. pyromt-2.4.1/srigram/raw/types/update_delete_group_call_messages.py +70 -0
  6593. pyromt-2.4.1/srigram/raw/types/update_delete_messages.py +78 -0
  6594. pyromt-2.4.1/srigram/raw/types/update_delete_quick_reply.py +62 -0
  6595. pyromt-2.4.1/srigram/raw/types/update_delete_quick_reply_messages.py +70 -0
  6596. pyromt-2.4.1/srigram/raw/types/update_delete_scheduled_messages.py +82 -0
  6597. pyromt-2.4.1/srigram/raw/types/update_dialog_filter.py +74 -0
  6598. pyromt-2.4.1/srigram/raw/types/update_dialog_filter_order.py +62 -0
  6599. pyromt-2.4.1/srigram/raw/types/update_dialog_filters.py +57 -0
  6600. pyromt-2.4.1/srigram/raw/types/update_dialog_pinned.py +79 -0
  6601. pyromt-2.4.1/srigram/raw/types/update_dialog_unread_mark.py +80 -0
  6602. pyromt-2.4.1/srigram/raw/types/update_draft_message.py +91 -0
  6603. pyromt-2.4.1/srigram/raw/types/update_edit_channel_message.py +78 -0
  6604. pyromt-2.4.1/srigram/raw/types/update_edit_message.py +78 -0
  6605. pyromt-2.4.1/srigram/raw/types/update_emoji_game_info.py +62 -0
  6606. pyromt-2.4.1/srigram/raw/types/update_encrypted_chat_typing.py +62 -0
  6607. pyromt-2.4.1/srigram/raw/types/update_encrypted_messages_read.py +78 -0
  6608. pyromt-2.4.1/srigram/raw/types/update_encryption.py +70 -0
  6609. pyromt-2.4.1/srigram/raw/types/update_faved_stickers.py +57 -0
  6610. pyromt-2.4.1/srigram/raw/types/update_folder_peers.py +78 -0
  6611. pyromt-2.4.1/srigram/raw/types/update_geo_live_viewed.py +70 -0
  6612. pyromt-2.4.1/srigram/raw/types/update_group_call.py +80 -0
  6613. pyromt-2.4.1/srigram/raw/types/update_group_call_chain_blocks.py +86 -0
  6614. pyromt-2.4.1/srigram/raw/types/update_group_call_connection.py +70 -0
  6615. pyromt-2.4.1/srigram/raw/types/update_group_call_encrypted_message.py +78 -0
  6616. pyromt-2.4.1/srigram/raw/types/update_group_call_message.py +70 -0
  6617. pyromt-2.4.1/srigram/raw/types/update_group_call_participants.py +78 -0
  6618. pyromt-2.4.1/srigram/raw/types/update_inline_bot_callback_query.py +106 -0
  6619. pyromt-2.4.1/srigram/raw/types/update_lang_pack.py +62 -0
  6620. pyromt-2.4.1/srigram/raw/types/update_lang_pack_too_long.py +62 -0
  6621. pyromt-2.4.1/srigram/raw/types/update_login_token.py +57 -0
  6622. pyromt-2.4.1/srigram/raw/types/update_message_extended_media.py +78 -0
  6623. pyromt-2.4.1/srigram/raw/types/update_message_id.py +70 -0
  6624. pyromt-2.4.1/srigram/raw/types/update_message_poll.py +82 -0
  6625. pyromt-2.4.1/srigram/raw/types/update_message_poll_vote.py +86 -0
  6626. pyromt-2.4.1/srigram/raw/types/update_message_reactions.py +99 -0
  6627. pyromt-2.4.1/srigram/raw/types/update_mono_forum_no_paid_exception.py +78 -0
  6628. pyromt-2.4.1/srigram/raw/types/update_move_sticker_set_to_top.py +76 -0
  6629. pyromt-2.4.1/srigram/raw/types/update_new_authorization.py +97 -0
  6630. pyromt-2.4.1/srigram/raw/types/update_new_channel_message.py +78 -0
  6631. pyromt-2.4.1/srigram/raw/types/update_new_encrypted_message.py +70 -0
  6632. pyromt-2.4.1/srigram/raw/types/update_new_message.py +78 -0
  6633. pyromt-2.4.1/srigram/raw/types/update_new_quick_reply.py +62 -0
  6634. pyromt-2.4.1/srigram/raw/types/update_new_scheduled_message.py +62 -0
  6635. pyromt-2.4.1/srigram/raw/types/update_new_sticker_set.py +62 -0
  6636. pyromt-2.4.1/srigram/raw/types/update_new_story_reaction.py +78 -0
  6637. pyromt-2.4.1/srigram/raw/types/update_notify_settings.py +70 -0
  6638. pyromt-2.4.1/srigram/raw/types/update_paid_reaction_privacy.py +62 -0
  6639. pyromt-2.4.1/srigram/raw/types/update_peer_blocked.py +76 -0
  6640. pyromt-2.4.1/srigram/raw/types/update_peer_history_ttl.py +73 -0
  6641. pyromt-2.4.1/srigram/raw/types/update_peer_located.py +62 -0
  6642. pyromt-2.4.1/srigram/raw/types/update_peer_settings.py +70 -0
  6643. pyromt-2.4.1/srigram/raw/types/update_peer_wallpaper.py +80 -0
  6644. pyromt-2.4.1/srigram/raw/types/update_pending_join_requests.py +78 -0
  6645. pyromt-2.4.1/srigram/raw/types/update_phone_call.py +62 -0
  6646. pyromt-2.4.1/srigram/raw/types/update_phone_call_signaling_data.py +70 -0
  6647. pyromt-2.4.1/srigram/raw/types/update_pinned_channel_messages.py +94 -0
  6648. pyromt-2.4.1/srigram/raw/types/update_pinned_dialogs.py +75 -0
  6649. pyromt-2.4.1/srigram/raw/types/update_pinned_forum_topic.py +78 -0
  6650. pyromt-2.4.1/srigram/raw/types/update_pinned_forum_topics.py +74 -0
  6651. pyromt-2.4.1/srigram/raw/types/update_pinned_messages.py +94 -0
  6652. pyromt-2.4.1/srigram/raw/types/update_pinned_saved_dialogs.py +66 -0
  6653. pyromt-2.4.1/srigram/raw/types/update_privacy.py +70 -0
  6654. pyromt-2.4.1/srigram/raw/types/update_pts_changed.py +57 -0
  6655. pyromt-2.4.1/srigram/raw/types/update_quick_replies.py +62 -0
  6656. pyromt-2.4.1/srigram/raw/types/update_quick_reply_message.py +62 -0
  6657. pyromt-2.4.1/srigram/raw/types/update_read_channel_discussion_inbox.py +98 -0
  6658. pyromt-2.4.1/srigram/raw/types/update_read_channel_discussion_outbox.py +78 -0
  6659. pyromt-2.4.1/srigram/raw/types/update_read_channel_inbox.py +97 -0
  6660. pyromt-2.4.1/srigram/raw/types/update_read_channel_outbox.py +70 -0
  6661. pyromt-2.4.1/srigram/raw/types/update_read_featured_emoji_stickers.py +57 -0
  6662. pyromt-2.4.1/srigram/raw/types/update_read_featured_stickers.py +57 -0
  6663. pyromt-2.4.1/srigram/raw/types/update_read_history_inbox.py +114 -0
  6664. pyromt-2.4.1/srigram/raw/types/update_read_history_outbox.py +86 -0
  6665. pyromt-2.4.1/srigram/raw/types/update_read_messages_contents.py +89 -0
  6666. pyromt-2.4.1/srigram/raw/types/update_read_mono_forum_inbox.py +78 -0
  6667. pyromt-2.4.1/srigram/raw/types/update_read_mono_forum_outbox.py +78 -0
  6668. pyromt-2.4.1/srigram/raw/types/update_read_stories.py +70 -0
  6669. pyromt-2.4.1/srigram/raw/types/update_recent_emoji_statuses.py +57 -0
  6670. pyromt-2.4.1/srigram/raw/types/update_recent_reactions.py +57 -0
  6671. pyromt-2.4.1/srigram/raw/types/update_recent_stickers.py +57 -0
  6672. pyromt-2.4.1/srigram/raw/types/update_saved_dialog_pinned.py +70 -0
  6673. pyromt-2.4.1/srigram/raw/types/update_saved_gifs.py +57 -0
  6674. pyromt-2.4.1/srigram/raw/types/update_saved_reaction_tags.py +57 -0
  6675. pyromt-2.4.1/srigram/raw/types/update_saved_ringtones.py +57 -0
  6676. pyromt-2.4.1/srigram/raw/types/update_sent_phone_code.py +62 -0
  6677. pyromt-2.4.1/srigram/raw/types/update_sent_story_reaction.py +78 -0
  6678. pyromt-2.4.1/srigram/raw/types/update_service_notification.py +109 -0
  6679. pyromt-2.4.1/srigram/raw/types/update_short.py +205 -0
  6680. pyromt-2.4.1/srigram/raw/types/update_short_chat_message.py +319 -0
  6681. pyromt-2.4.1/srigram/raw/types/update_short_message.py +311 -0
  6682. pyromt-2.4.1/srigram/raw/types/update_short_sent_message.py +258 -0
  6683. pyromt-2.4.1/srigram/raw/types/update_sms_job.py +62 -0
  6684. pyromt-2.4.1/srigram/raw/types/update_star_gift_auction_state.py +70 -0
  6685. pyromt-2.4.1/srigram/raw/types/update_star_gift_auction_user_state.py +70 -0
  6686. pyromt-2.4.1/srigram/raw/types/update_star_gift_craft_fail.py +57 -0
  6687. pyromt-2.4.1/srigram/raw/types/update_stars_balance.py +62 -0
  6688. pyromt-2.4.1/srigram/raw/types/update_stars_revenue_status.py +70 -0
  6689. pyromt-2.4.1/srigram/raw/types/update_sticker_sets.py +68 -0
  6690. pyromt-2.4.1/srigram/raw/types/update_sticker_sets_order.py +76 -0
  6691. pyromt-2.4.1/srigram/raw/types/update_stories_stealth_mode.py +62 -0
  6692. pyromt-2.4.1/srigram/raw/types/update_story.py +70 -0
  6693. pyromt-2.4.1/srigram/raw/types/update_story_id.py +70 -0
  6694. pyromt-2.4.1/srigram/raw/types/update_theme.py +62 -0
  6695. pyromt-2.4.1/srigram/raw/types/update_transcribed_audio.py +94 -0
  6696. pyromt-2.4.1/srigram/raw/types/update_user.py +62 -0
  6697. pyromt-2.4.1/srigram/raw/types/update_user_emoji_status.py +70 -0
  6698. pyromt-2.4.1/srigram/raw/types/update_user_name.py +86 -0
  6699. pyromt-2.4.1/srigram/raw/types/update_user_phone.py +70 -0
  6700. pyromt-2.4.1/srigram/raw/types/update_user_status.py +70 -0
  6701. pyromt-2.4.1/srigram/raw/types/update_user_typing.py +81 -0
  6702. pyromt-2.4.1/srigram/raw/types/update_web_page.py +78 -0
  6703. pyromt-2.4.1/srigram/raw/types/update_web_view_result_sent.py +62 -0
  6704. pyromt-2.4.1/srigram/raw/types/updates/__init__.py +22 -0
  6705. pyromt-2.4.1/srigram/raw/types/updates/channel_difference.py +120 -0
  6706. pyromt-2.4.1/srigram/raw/types/updates/channel_difference_empty.py +88 -0
  6707. pyromt-2.4.1/srigram/raw/types/updates/channel_difference_too_long.py +112 -0
  6708. pyromt-2.4.1/srigram/raw/types/updates/difference.py +111 -0
  6709. pyromt-2.4.1/srigram/raw/types/updates/difference_empty.py +79 -0
  6710. pyromt-2.4.1/srigram/raw/types/updates/difference_slice.py +111 -0
  6711. pyromt-2.4.1/srigram/raw/types/updates/difference_too_long.py +71 -0
  6712. pyromt-2.4.1/srigram/raw/types/updates/state.py +103 -0
  6713. pyromt-2.4.1/srigram/raw/types/updates_combined.py +237 -0
  6714. pyromt-2.4.1/srigram/raw/types/updates_t.py +229 -0
  6715. pyromt-2.4.1/srigram/raw/types/updates_too_long.py +192 -0
  6716. pyromt-2.4.1/srigram/raw/types/upload/__init__.py +19 -0
  6717. pyromt-2.4.1/srigram/raw/types/upload/cdn_file.py +71 -0
  6718. pyromt-2.4.1/srigram/raw/types/upload/cdn_file_reupload_needed.py +71 -0
  6719. pyromt-2.4.1/srigram/raw/types/upload/file.py +87 -0
  6720. pyromt-2.4.1/srigram/raw/types/upload/file_cdn_redirect.py +103 -0
  6721. pyromt-2.4.1/srigram/raw/types/upload/web_file.py +103 -0
  6722. pyromt-2.4.1/srigram/raw/types/url_auth_result_accepted.py +75 -0
  6723. pyromt-2.4.1/srigram/raw/types/url_auth_result_default.py +67 -0
  6724. pyromt-2.4.1/srigram/raw/types/url_auth_result_request.py +130 -0
  6725. pyromt-2.4.1/srigram/raw/types/user.py +425 -0
  6726. pyromt-2.4.1/srigram/raw/types/user_empty.py +78 -0
  6727. pyromt-2.4.1/srigram/raw/types/user_full.py +514 -0
  6728. pyromt-2.4.1/srigram/raw/types/user_profile_photo.py +93 -0
  6729. pyromt-2.4.1/srigram/raw/types/user_profile_photo_empty.py +57 -0
  6730. pyromt-2.4.1/srigram/raw/types/user_status_empty.py +57 -0
  6731. pyromt-2.4.1/srigram/raw/types/user_status_last_month.py +62 -0
  6732. pyromt-2.4.1/srigram/raw/types/user_status_last_week.py +62 -0
  6733. pyromt-2.4.1/srigram/raw/types/user_status_offline.py +62 -0
  6734. pyromt-2.4.1/srigram/raw/types/user_status_online.py +62 -0
  6735. pyromt-2.4.1/srigram/raw/types/user_status_recently.py +62 -0
  6736. pyromt-2.4.1/srigram/raw/types/username.py +76 -0
  6737. pyromt-2.4.1/srigram/raw/types/users/__init__.py +19 -0
  6738. pyromt-2.4.1/srigram/raw/types/users/saved_music.py +80 -0
  6739. pyromt-2.4.1/srigram/raw/types/users/saved_music_not_modified.py +72 -0
  6740. pyromt-2.4.1/srigram/raw/types/users/user_full.py +87 -0
  6741. pyromt-2.4.1/srigram/raw/types/users/users.py +71 -0
  6742. pyromt-2.4.1/srigram/raw/types/users/users_slice.py +79 -0
  6743. pyromt-2.4.1/srigram/raw/types/video_size.py +97 -0
  6744. pyromt-2.4.1/srigram/raw/types/video_size_emoji_markup.py +70 -0
  6745. pyromt-2.4.1/srigram/raw/types/video_size_sticker_markup.py +78 -0
  6746. pyromt-2.4.1/srigram/raw/types/wall_paper.py +133 -0
  6747. pyromt-2.4.1/srigram/raw/types/wall_paper_no_file.py +97 -0
  6748. pyromt-2.4.1/srigram/raw/types/wall_paper_settings.py +131 -0
  6749. pyromt-2.4.1/srigram/raw/types/web_authorization.py +126 -0
  6750. pyromt-2.4.1/srigram/raw/types/web_document.py +94 -0
  6751. pyromt-2.4.1/srigram/raw/types/web_document_no_proxy.py +86 -0
  6752. pyromt-2.4.1/srigram/raw/types/web_page.py +230 -0
  6753. pyromt-2.4.1/srigram/raw/types/web_page_attribute_star_gift_auction.py +70 -0
  6754. pyromt-2.4.1/srigram/raw/types/web_page_attribute_star_gift_collection.py +62 -0
  6755. pyromt-2.4.1/srigram/raw/types/web_page_attribute_sticker_set.py +76 -0
  6756. pyromt-2.4.1/srigram/raw/types/web_page_attribute_story.py +82 -0
  6757. pyromt-2.4.1/srigram/raw/types/web_page_attribute_theme.py +76 -0
  6758. pyromt-2.4.1/srigram/raw/types/web_page_attribute_unique_star_gift.py +62 -0
  6759. pyromt-2.4.1/srigram/raw/types/web_page_empty.py +73 -0
  6760. pyromt-2.4.1/srigram/raw/types/web_page_not_modified.py +65 -0
  6761. pyromt-2.4.1/srigram/raw/types/web_page_pending.py +81 -0
  6762. pyromt-2.4.1/srigram/raw/types/web_view_message_sent.py +75 -0
  6763. pyromt-2.4.1/srigram/raw/types/web_view_result_url.py +97 -0
  6764. pyromt-2.0.106/COPYING +0 -674
  6765. pyromt-2.0.106/COPYING.lesser +0 -165
  6766. pyromt-2.0.106/MANIFEST.in +0 -13
  6767. pyromt-2.0.106/NOTICE +0 -17
  6768. pyromt-2.0.106/PKG-INFO +0 -127
  6769. pyromt-2.0.106/PyroMt.egg-info/PKG-INFO +0 -127
  6770. pyromt-2.0.106/PyroMt.egg-info/SOURCES.txt +0 -442
  6771. pyromt-2.0.106/PyroMt.egg-info/dependency_links.txt +0 -1
  6772. pyromt-2.0.106/PyroMt.egg-info/not-zip-safe +0 -1
  6773. pyromt-2.0.106/PyroMt.egg-info/requires.txt +0 -2
  6774. pyromt-2.0.106/PyroMt.egg-info/top_level.txt +0 -1
  6775. pyromt-2.0.106/README.md +0 -70
  6776. pyromt-2.0.106/compiler/__init__.py +0 -17
  6777. pyromt-2.0.106/compiler/api/__init__.py +0 -17
  6778. pyromt-2.0.106/compiler/api/compiler.py +0 -652
  6779. pyromt-2.0.106/compiler/api/source/main_api.tl +0 -2056
  6780. pyromt-2.0.106/compiler/api/template/combinator.txt +0 -35
  6781. pyromt-2.0.106/compiler/api/template/type.txt +0 -23
  6782. pyromt-2.0.106/compiler/docs/__init__.py +0 -17
  6783. pyromt-2.0.106/compiler/docs/compiler.py +0 -665
  6784. pyromt-2.0.106/compiler/docs/template/page.txt +0 -5
  6785. pyromt-2.0.106/compiler/docs/template/toctree.txt +0 -9
  6786. pyromt-2.0.106/compiler/errors/__init__.py +0 -17
  6787. pyromt-2.0.106/compiler/errors/compiler.py +0 -142
  6788. pyromt-2.0.106/compiler/errors/sort.py +0 -35
  6789. pyromt-2.0.106/compiler/errors/source/400_BAD_REQUEST.tsv +0 -360
  6790. pyromt-2.0.106/compiler/errors/source/403_FORBIDDEN.tsv +0 -28
  6791. pyromt-2.0.106/compiler/errors/source/406_NOT_ACCEPTABLE.tsv +0 -13
  6792. pyromt-2.0.106/compiler/errors/source/420_FLOOD.tsv +0 -6
  6793. pyromt-2.0.106/compiler/errors/source/500_INTERNAL_SERVER_ERROR.tsv +0 -45
  6794. pyromt-2.0.106/compiler/errors/source/503_SERVICE_UNAVAILABLE.tsv +0 -3
  6795. pyromt-2.0.106/pyrogram/__init__.py +0 -42
  6796. pyromt-2.0.106/pyrogram/client.py +0 -1048
  6797. pyromt-2.0.106/pyrogram/connection/__init__.py +0 -19
  6798. pyromt-2.0.106/pyrogram/connection/connection.py +0 -72
  6799. pyromt-2.0.106/pyrogram/connection/transport/__init__.py +0 -19
  6800. pyromt-2.0.106/pyrogram/connection/transport/tcp/__init__.py +0 -24
  6801. pyromt-2.0.106/pyrogram/connection/transport/tcp/tcp.py +0 -123
  6802. pyromt-2.0.106/pyrogram/connection/transport/tcp/tcp_abridged.py +0 -57
  6803. pyromt-2.0.106/pyrogram/connection/transport/tcp/tcp_abridged_o.py +0 -86
  6804. pyromt-2.0.106/pyrogram/connection/transport/tcp/tcp_full.py +0 -64
  6805. pyromt-2.0.106/pyrogram/connection/transport/tcp/tcp_intermediate.py +0 -45
  6806. pyromt-2.0.106/pyrogram/connection/transport/tcp/tcp_intermediate_o.py +0 -79
  6807. pyromt-2.0.106/pyrogram/crypto/__init__.py +0 -17
  6808. pyromt-2.0.106/pyrogram/crypto/aes.py +0 -130
  6809. pyromt-2.0.106/pyrogram/crypto/mtproto.py +0 -100
  6810. pyromt-2.0.106/pyrogram/crypto/prime.py +0 -82
  6811. pyromt-2.0.106/pyrogram/crypto/rsa.py +0 -259
  6812. pyromt-2.0.106/pyrogram/dispatcher.py +0 -259
  6813. pyromt-2.0.106/pyrogram/emoji.py +0 -4019
  6814. pyromt-2.0.106/pyrogram/enums/__init__.py +0 -49
  6815. pyromt-2.0.106/pyrogram/enums/auto_name.py +0 -27
  6816. pyromt-2.0.106/pyrogram/enums/chat_action.py +0 -72
  6817. pyromt-2.0.106/pyrogram/enums/chat_event_action.py +0 -127
  6818. pyromt-2.0.106/pyrogram/enums/chat_member_status.py +0 -43
  6819. pyromt-2.0.106/pyrogram/enums/chat_members_filter.py +0 -42
  6820. pyromt-2.0.106/pyrogram/enums/chat_type.py +0 -40
  6821. pyromt-2.0.106/pyrogram/enums/message_entity_type.py +0 -84
  6822. pyromt-2.0.106/pyrogram/enums/message_media_type.py +0 -70
  6823. pyromt-2.0.106/pyrogram/enums/message_service_type.py +0 -73
  6824. pyromt-2.0.106/pyrogram/enums/messages_filter.py +0 -75
  6825. pyromt-2.0.106/pyrogram/enums/next_code_type.py +0 -39
  6826. pyromt-2.0.106/pyrogram/enums/parse_mode.py +0 -37
  6827. pyromt-2.0.106/pyrogram/enums/poll_type.py +0 -31
  6828. pyromt-2.0.106/pyrogram/enums/sent_code_type.py +0 -45
  6829. pyromt-2.0.106/pyrogram/enums/user_status.py +0 -43
  6830. pyromt-2.0.106/pyrogram/errors/__init__.py +0 -65
  6831. pyromt-2.0.106/pyrogram/errors/rpc_error.py +0 -103
  6832. pyromt-2.0.106/pyrogram/file_id.py +0 -481
  6833. pyromt-2.0.106/pyrogram/filters.py +0 -929
  6834. pyromt-2.0.106/pyrogram/handlers/__init__.py +0 -30
  6835. pyromt-2.0.106/pyrogram/handlers/callback_query_handler.py +0 -49
  6836. pyromt-2.0.106/pyrogram/handlers/chat_join_request_handler.py +0 -49
  6837. pyromt-2.0.106/pyrogram/handlers/chat_member_updated_handler.py +0 -49
  6838. pyromt-2.0.106/pyrogram/handlers/chosen_inline_result_handler.py +0 -50
  6839. pyromt-2.0.106/pyrogram/handlers/deleted_messages_handler.py +0 -61
  6840. pyromt-2.0.106/pyrogram/handlers/disconnect_handler.py +0 -43
  6841. pyromt-2.0.106/pyrogram/handlers/edited_message_handler.py +0 -49
  6842. pyromt-2.0.106/pyrogram/handlers/handler.py +0 -43
  6843. pyromt-2.0.106/pyrogram/handlers/inline_query_handler.py +0 -49
  6844. pyromt-2.0.106/pyrogram/handlers/message_handler.py +0 -49
  6845. pyromt-2.0.106/pyrogram/handlers/poll_handler.py +0 -50
  6846. pyromt-2.0.106/pyrogram/handlers/raw_update_handler.py +0 -67
  6847. pyromt-2.0.106/pyrogram/handlers/user_status_handler.py +0 -47
  6848. pyromt-2.0.106/pyrogram/methods/__init__.py +0 -45
  6849. pyromt-2.0.106/pyrogram/methods/advanced/__init__.py +0 -29
  6850. pyromt-2.0.106/pyrogram/methods/advanced/invoke.py +0 -89
  6851. pyromt-2.0.106/pyrogram/methods/advanced/resolve_peer.py +0 -125
  6852. pyromt-2.0.106/pyrogram/methods/advanced/save_file.py +0 -226
  6853. pyromt-2.0.106/pyrogram/methods/auth/__init__.py +0 -53
  6854. pyromt-2.0.106/pyrogram/methods/auth/accept_terms_of_service.py +0 -44
  6855. pyromt-2.0.106/pyrogram/methods/auth/check_password.py +0 -60
  6856. pyromt-2.0.106/pyrogram/methods/auth/connect.py +0 -51
  6857. pyromt-2.0.106/pyrogram/methods/auth/disconnect.py +0 -40
  6858. pyromt-2.0.106/pyrogram/methods/auth/get_password_hint.py +0 -38
  6859. pyromt-2.0.106/pyrogram/methods/auth/initialize.py +0 -52
  6860. pyromt-2.0.106/pyrogram/methods/auth/log_out.py +0 -51
  6861. pyromt-2.0.106/pyrogram/methods/auth/recover_password.py +0 -57
  6862. pyromt-2.0.106/pyrogram/methods/auth/resend_code.py +0 -64
  6863. pyromt-2.0.106/pyrogram/methods/auth/send_code.py +0 -79
  6864. pyromt-2.0.106/pyrogram/methods/auth/send_recovery_code.py +0 -43
  6865. pyromt-2.0.106/pyrogram/methods/auth/sign_in.py +0 -80
  6866. pyromt-2.0.106/pyrogram/methods/auth/sign_in_bot.py +0 -79
  6867. pyromt-2.0.106/pyrogram/methods/auth/sign_up.py +0 -73
  6868. pyromt-2.0.106/pyrogram/methods/auth/terminate.py +0 -61
  6869. pyromt-2.0.106/pyrogram/methods/bots/__init__.py +0 -55
  6870. pyromt-2.0.106/pyrogram/methods/bots/answer_callback_query.py +0 -81
  6871. pyromt-2.0.106/pyrogram/methods/bots/answer_inline_query.py +0 -112
  6872. pyromt-2.0.106/pyrogram/methods/bots/answer_web_app_query.py +0 -53
  6873. pyromt-2.0.106/pyrogram/methods/bots/delete_bot_commands.py +0 -62
  6874. pyromt-2.0.106/pyrogram/methods/bots/get_bot_commands.py +0 -67
  6875. pyromt-2.0.106/pyrogram/methods/bots/get_bot_default_privileges.py +0 -59
  6876. pyromt-2.0.106/pyrogram/methods/bots/get_chat_menu_button.py +0 -66
  6877. pyromt-2.0.106/pyrogram/methods/bots/get_game_high_scores.py +0 -72
  6878. pyromt-2.0.106/pyrogram/methods/bots/get_inline_bot_results.py +0 -92
  6879. pyromt-2.0.106/pyrogram/methods/bots/request_callback_answer.py +0 -77
  6880. pyromt-2.0.106/pyrogram/methods/bots/send_game.py +0 -100
  6881. pyromt-2.0.106/pyrogram/methods/bots/send_inline_bot_result.py +0 -75
  6882. pyromt-2.0.106/pyrogram/methods/bots/set_bot_commands.py +0 -73
  6883. pyromt-2.0.106/pyrogram/methods/bots/set_bot_default_privileges.py +0 -81
  6884. pyromt-2.0.106/pyrogram/methods/bots/set_chat_menu_button.py +0 -56
  6885. pyromt-2.0.106/pyrogram/methods/bots/set_game_score.py +0 -100
  6886. pyromt-2.0.106/pyrogram/methods/chats/__init__.py +0 -101
  6887. pyromt-2.0.106/pyrogram/methods/chats/add_chat_members.py +0 -90
  6888. pyromt-2.0.106/pyrogram/methods/chats/archive_chats.py +0 -71
  6889. pyromt-2.0.106/pyrogram/methods/chats/ban_chat_member.py +0 -111
  6890. pyromt-2.0.106/pyrogram/methods/chats/create_channel.py +0 -56
  6891. pyromt-2.0.106/pyrogram/methods/chats/create_group.py +0 -67
  6892. pyromt-2.0.106/pyrogram/methods/chats/create_supergroup.py +0 -60
  6893. pyromt-2.0.106/pyrogram/methods/chats/delete_channel.py +0 -52
  6894. pyromt-2.0.106/pyrogram/methods/chats/delete_chat_photo.py +0 -70
  6895. pyromt-2.0.106/pyrogram/methods/chats/delete_supergroup.py +0 -52
  6896. pyromt-2.0.106/pyrogram/methods/chats/delete_user_history.py +0 -55
  6897. pyromt-2.0.106/pyrogram/methods/chats/get_chat.py +0 -87
  6898. pyromt-2.0.106/pyrogram/methods/chats/get_chat_event_log.py +0 -109
  6899. pyromt-2.0.106/pyrogram/methods/chats/get_chat_member.py +0 -92
  6900. pyromt-2.0.106/pyrogram/methods/chats/get_chat_members.py +0 -158
  6901. pyromt-2.0.106/pyrogram/methods/chats/get_chat_members_count.py +0 -69
  6902. pyromt-2.0.106/pyrogram/methods/chats/get_chat_online_count.py +0 -51
  6903. pyromt-2.0.106/pyrogram/methods/chats/get_dialogs.py +0 -104
  6904. pyromt-2.0.106/pyrogram/methods/chats/get_dialogs_count.py +0 -63
  6905. pyromt-2.0.106/pyrogram/methods/chats/get_nearby_chats.py +0 -78
  6906. pyromt-2.0.106/pyrogram/methods/chats/get_send_as_chats.py +0 -65
  6907. pyromt-2.0.106/pyrogram/methods/chats/join_chat.py +0 -74
  6908. pyromt-2.0.106/pyrogram/methods/chats/leave_chat.py +0 -77
  6909. pyromt-2.0.106/pyrogram/methods/chats/mark_chat_unread.py +0 -47
  6910. pyromt-2.0.106/pyrogram/methods/chats/pin_chat_message.py +0 -81
  6911. pyromt-2.0.106/pyrogram/methods/chats/promote_chat_member.py +0 -101
  6912. pyromt-2.0.106/pyrogram/methods/chats/restrict_chat_member.py +0 -99
  6913. pyromt-2.0.106/pyrogram/methods/chats/set_administrator_title.py +0 -85
  6914. pyromt-2.0.106/pyrogram/methods/chats/set_chat_description.py +0 -66
  6915. pyromt-2.0.106/pyrogram/methods/chats/set_chat_permissions.py +0 -87
  6916. pyromt-2.0.106/pyrogram/methods/chats/set_chat_photo.py +0 -121
  6917. pyromt-2.0.106/pyrogram/methods/chats/set_chat_protected_content.py +0 -53
  6918. pyromt-2.0.106/pyrogram/methods/chats/set_chat_title.py +0 -78
  6919. pyromt-2.0.106/pyrogram/methods/chats/set_chat_username.py +0 -68
  6920. pyromt-2.0.106/pyrogram/methods/chats/set_send_as_chat.py +0 -57
  6921. pyromt-2.0.106/pyrogram/methods/chats/set_slow_mode.py +0 -63
  6922. pyromt-2.0.106/pyrogram/methods/chats/unarchive_chats.py +0 -71
  6923. pyromt-2.0.106/pyrogram/methods/chats/unban_chat_member.py +0 -64
  6924. pyromt-2.0.106/pyrogram/methods/chats/unpin_all_chat_messages.py +0 -55
  6925. pyromt-2.0.106/pyrogram/methods/chats/unpin_chat_message.py +0 -61
  6926. pyromt-2.0.106/pyrogram/methods/contacts/__init__.py +0 -33
  6927. pyromt-2.0.106/pyrogram/methods/contacts/add_contact.py +0 -78
  6928. pyromt-2.0.106/pyrogram/methods/contacts/delete_contacts.py +0 -66
  6929. pyromt-2.0.106/pyrogram/methods/contacts/get_contacts.py +0 -47
  6930. pyromt-2.0.106/pyrogram/methods/contacts/get_contacts_count.py +0 -41
  6931. pyromt-2.0.106/pyrogram/methods/contacts/import_contacts.py +0 -58
  6932. pyromt-2.0.106/pyrogram/methods/decorators/__init__.py +0 -47
  6933. pyromt-2.0.106/pyrogram/methods/decorators/on_callback_query.py +0 -61
  6934. pyromt-2.0.106/pyrogram/methods/decorators/on_chat_join_request.py +0 -60
  6935. pyromt-2.0.106/pyrogram/methods/decorators/on_chat_member_updated.py +0 -60
  6936. pyromt-2.0.106/pyrogram/methods/decorators/on_chosen_inline_result.py +0 -61
  6937. pyromt-2.0.106/pyrogram/methods/decorators/on_deleted_messages.py +0 -61
  6938. pyromt-2.0.106/pyrogram/methods/decorators/on_disconnect.py +0 -43
  6939. pyromt-2.0.106/pyrogram/methods/decorators/on_edited_message.py +0 -61
  6940. pyromt-2.0.106/pyrogram/methods/decorators/on_inline_query.py +0 -61
  6941. pyromt-2.0.106/pyrogram/methods/decorators/on_message.py +0 -61
  6942. pyromt-2.0.106/pyrogram/methods/decorators/on_poll.py +0 -61
  6943. pyromt-2.0.106/pyrogram/methods/decorators/on_raw_update.py +0 -55
  6944. pyromt-2.0.106/pyrogram/methods/decorators/on_user_status.py +0 -59
  6945. pyromt-2.0.106/pyrogram/methods/invite_links/__init__.py +0 -58
  6946. pyromt-2.0.106/pyrogram/methods/invite_links/approve_all_chat_join_requests.py +0 -55
  6947. pyromt-2.0.106/pyrogram/methods/invite_links/approve_chat_join_request.py +0 -57
  6948. pyromt-2.0.106/pyrogram/methods/invite_links/create_chat_invite_link.py +0 -87
  6949. pyromt-2.0.106/pyrogram/methods/invite_links/decline_all_chat_join_requests.py +0 -55
  6950. pyromt-2.0.106/pyrogram/methods/invite_links/decline_chat_join_request.py +0 -57
  6951. pyromt-2.0.106/pyrogram/methods/invite_links/delete_chat_admin_invite_links.py +0 -54
  6952. pyromt-2.0.106/pyrogram/methods/invite_links/delete_chat_invite_link.py +0 -52
  6953. pyromt-2.0.106/pyrogram/methods/invite_links/edit_chat_invite_link.py +0 -92
  6954. pyromt-2.0.106/pyrogram/methods/invite_links/export_chat_invite_link.py +0 -65
  6955. pyromt-2.0.106/pyrogram/methods/invite_links/get_chat_admin_invite_links.py +0 -100
  6956. pyromt-2.0.106/pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py +0 -62
  6957. pyromt-2.0.106/pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py +0 -56
  6958. pyromt-2.0.106/pyrogram/methods/invite_links/get_chat_invite_link.py +0 -56
  6959. pyromt-2.0.106/pyrogram/methods/invite_links/get_chat_invite_link_joiners.py +0 -87
  6960. pyromt-2.0.106/pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py +0 -56
  6961. pyromt-2.0.106/pyrogram/methods/invite_links/get_chat_join_requests.py +0 -88
  6962. pyromt-2.0.106/pyrogram/methods/invite_links/revoke_chat_invite_link.py +0 -68
  6963. pyromt-2.0.106/pyrogram/methods/messages/__init__.py +0 -119
  6964. pyromt-2.0.106/pyrogram/methods/messages/copy_media_group.py +0 -140
  6965. pyromt-2.0.106/pyrogram/methods/messages/copy_message.py +0 -121
  6966. pyromt-2.0.106/pyrogram/methods/messages/delete_messages.py +0 -84
  6967. pyromt-2.0.106/pyrogram/methods/messages/download_media.py +0 -187
  6968. pyromt-2.0.106/pyrogram/methods/messages/edit_inline_caption.py +0 -65
  6969. pyromt-2.0.106/pyrogram/methods/messages/edit_inline_media.py +0 -244
  6970. pyromt-2.0.106/pyrogram/methods/messages/edit_inline_reply_markup.py +0 -69
  6971. pyromt-2.0.106/pyrogram/methods/messages/edit_inline_text.py +0 -88
  6972. pyromt-2.0.106/pyrogram/methods/messages/edit_message_caption.py +0 -76
  6973. pyromt-2.0.106/pyrogram/methods/messages/edit_message_media.py +0 -287
  6974. pyromt-2.0.106/pyrogram/methods/messages/edit_message_reply_markup.py +0 -77
  6975. pyromt-2.0.106/pyrogram/methods/messages/edit_message_text.py +0 -98
  6976. pyromt-2.0.106/pyrogram/methods/messages/forward_messages.py +0 -110
  6977. pyromt-2.0.106/pyrogram/methods/messages/get_chat_history.py +0 -121
  6978. pyromt-2.0.106/pyrogram/methods/messages/get_chat_history_count.py +0 -72
  6979. pyromt-2.0.106/pyrogram/methods/messages/get_custom_emoji_stickers.py +0 -55
  6980. pyromt-2.0.106/pyrogram/methods/messages/get_discussion_message.py +0 -65
  6981. pyromt-2.0.106/pyrogram/methods/messages/get_discussion_replies.py +0 -86
  6982. pyromt-2.0.106/pyrogram/methods/messages/get_discussion_replies_count.py +0 -62
  6983. pyromt-2.0.106/pyrogram/methods/messages/get_media_group.py +0 -73
  6984. pyromt-2.0.106/pyrogram/methods/messages/get_messages.py +0 -119
  6985. pyromt-2.0.106/pyrogram/methods/messages/inline_session.py +0 -64
  6986. pyromt-2.0.106/pyrogram/methods/messages/read_chat_history.py +0 -73
  6987. pyromt-2.0.106/pyrogram/methods/messages/retract_vote.py +0 -61
  6988. pyromt-2.0.106/pyrogram/methods/messages/search_global.py +0 -117
  6989. pyromt-2.0.106/pyrogram/methods/messages/search_global_count.py +0 -62
  6990. pyromt-2.0.106/pyrogram/methods/messages/search_messages.py +0 -151
  6991. pyromt-2.0.106/pyrogram/methods/messages/search_messages_count.py +0 -84
  6992. pyromt-2.0.106/pyrogram/methods/messages/send_animation.py +0 -271
  6993. pyromt-2.0.106/pyrogram/methods/messages/send_audio.py +0 -242
  6994. pyromt-2.0.106/pyrogram/methods/messages/send_cached_media.py +0 -124
  6995. pyromt-2.0.106/pyrogram/methods/messages/send_chat_action.py +0 -80
  6996. pyromt-2.0.106/pyrogram/methods/messages/send_contact.py +0 -121
  6997. pyromt-2.0.106/pyrogram/methods/messages/send_dice.py +0 -116
  6998. pyromt-2.0.106/pyrogram/methods/messages/send_document.py +0 -220
  6999. pyromt-2.0.106/pyrogram/methods/messages/send_location.py +0 -113
  7000. pyromt-2.0.106/pyrogram/methods/messages/send_media_group.py +0 -417
  7001. pyromt-2.0.106/pyrogram/methods/messages/send_message.py +0 -180
  7002. pyromt-2.0.106/pyrogram/methods/messages/send_photo.py +0 -204
  7003. pyromt-2.0.106/pyrogram/methods/messages/send_poll.py +0 -181
  7004. pyromt-2.0.106/pyrogram/methods/messages/send_reaction.py +0 -73
  7005. pyromt-2.0.106/pyrogram/methods/messages/send_sticker.py +0 -179
  7006. pyromt-2.0.106/pyrogram/methods/messages/send_venue.py +0 -137
  7007. pyromt-2.0.106/pyrogram/methods/messages/send_video.py +0 -261
  7008. pyromt-2.0.106/pyrogram/methods/messages/send_video_note.py +0 -203
  7009. pyromt-2.0.106/pyrogram/methods/messages/send_voice.py +0 -204
  7010. pyromt-2.0.106/pyrogram/methods/messages/stop_poll.py +0 -77
  7011. pyromt-2.0.106/pyrogram/methods/messages/stream_media.py +0 -106
  7012. pyromt-2.0.106/pyrogram/methods/messages/vote_poll.py +0 -69
  7013. pyromt-2.0.106/pyrogram/methods/password/__init__.py +0 -29
  7014. pyromt-2.0.106/pyrogram/methods/password/change_cloud_password.py +0 -82
  7015. pyromt-2.0.106/pyrogram/methods/password/enable_cloud_password.py +0 -88
  7016. pyromt-2.0.106/pyrogram/methods/password/remove_cloud_password.py +0 -64
  7017. pyromt-2.0.106/pyrogram/methods/users/__init__.py +0 -49
  7018. pyromt-2.0.106/pyrogram/methods/users/block_user.py +0 -54
  7019. pyromt-2.0.106/pyrogram/methods/users/delete_profile_photos.py +0 -63
  7020. pyromt-2.0.106/pyrogram/methods/users/get_chat_photos.py +0 -135
  7021. pyromt-2.0.106/pyrogram/methods/users/get_chat_photos_count.py +0 -74
  7022. pyromt-2.0.106/pyrogram/methods/users/get_common_chats.py +0 -67
  7023. pyromt-2.0.106/pyrogram/methods/users/get_default_emoji_statuses.py +0 -47
  7024. pyromt-2.0.106/pyrogram/methods/users/get_me.py +0 -49
  7025. pyromt-2.0.106/pyrogram/methods/users/get_users.py +0 -71
  7026. pyromt-2.0.106/pyrogram/methods/users/set_emoji_status.py +0 -58
  7027. pyromt-2.0.106/pyrogram/methods/users/set_profile_photo.py +0 -75
  7028. pyromt-2.0.106/pyrogram/methods/users/set_username.py +0 -57
  7029. pyromt-2.0.106/pyrogram/methods/users/unblock_user.py +0 -54
  7030. pyromt-2.0.106/pyrogram/methods/users/update_profile.py +0 -72
  7031. pyromt-2.0.106/pyrogram/methods/utilities/__init__.py +0 -39
  7032. pyromt-2.0.106/pyrogram/methods/utilities/add_handler.py +0 -67
  7033. pyromt-2.0.106/pyrogram/methods/utilities/compose.py +0 -78
  7034. pyromt-2.0.106/pyrogram/methods/utilities/export_session_string.py +0 -40
  7035. pyromt-2.0.106/pyrogram/methods/utilities/idle.py +0 -87
  7036. pyromt-2.0.106/pyrogram/methods/utilities/remove_handler.py +0 -63
  7037. pyromt-2.0.106/pyrogram/methods/utilities/restart.py +0 -72
  7038. pyromt-2.0.106/pyrogram/methods/utilities/run.py +0 -86
  7039. pyromt-2.0.106/pyrogram/methods/utilities/start.py +0 -76
  7040. pyromt-2.0.106/pyrogram/methods/utilities/stop.py +0 -69
  7041. pyromt-2.0.106/pyrogram/methods/utilities/stop_transmission.py +0 -43
  7042. pyromt-2.0.106/pyrogram/mime_types.py +0 -1881
  7043. pyromt-2.0.106/pyrogram/parser/__init__.py +0 -19
  7044. pyromt-2.0.106/pyrogram/parser/html.py +0 -243
  7045. pyromt-2.0.106/pyrogram/parser/markdown.py +0 -173
  7046. pyromt-2.0.106/pyrogram/parser/parser.py +0 -61
  7047. pyromt-2.0.106/pyrogram/parser/utils.py +0 -41
  7048. pyromt-2.0.106/pyrogram/raw/__init__.py +0 -26
  7049. pyromt-2.0.106/pyrogram/raw/core/__init__.py +0 -31
  7050. pyromt-2.0.106/pyrogram/raw/core/future_salt.py +0 -53
  7051. pyromt-2.0.106/pyrogram/raw/core/future_salts.py +0 -63
  7052. pyromt-2.0.106/pyrogram/raw/core/gzip_packed.py +0 -62
  7053. pyromt-2.0.106/pyrogram/raw/core/list.py +0 -26
  7054. pyromt-2.0.106/pyrogram/raw/core/message.py +0 -56
  7055. pyromt-2.0.106/pyrogram/raw/core/msg_container.py +0 -53
  7056. pyromt-2.0.106/pyrogram/raw/core/primitives/__init__.py +0 -24
  7057. pyromt-2.0.106/pyrogram/raw/core/primitives/bool.py +0 -48
  7058. pyromt-2.0.106/pyrogram/raw/core/primitives/bytes.py +0 -55
  7059. pyromt-2.0.106/pyrogram/raw/core/primitives/double.py +0 -32
  7060. pyromt-2.0.106/pyrogram/raw/core/primitives/int.py +0 -45
  7061. pyromt-2.0.106/pyrogram/raw/core/primitives/string.py +0 -31
  7062. pyromt-2.0.106/pyrogram/raw/core/primitives/vector.py +0 -59
  7063. pyromt-2.0.106/pyrogram/raw/core/tl_object.py +0 -82
  7064. pyromt-2.0.106/pyrogram/session/__init__.py +0 -20
  7065. pyromt-2.0.106/pyrogram/session/auth.py +0 -281
  7066. pyromt-2.0.106/pyrogram/session/internals/__init__.py +0 -21
  7067. pyromt-2.0.106/pyrogram/session/internals/data_center.py +0 -83
  7068. pyromt-2.0.106/pyrogram/session/internals/msg_factory.py +0 -38
  7069. pyromt-2.0.106/pyrogram/session/internals/msg_id.py +0 -35
  7070. pyromt-2.0.106/pyrogram/session/internals/seq_no.py +0 -30
  7071. pyromt-2.0.106/pyrogram/session/session.py +0 -412
  7072. pyromt-2.0.106/pyrogram/storage/__init__.py +0 -21
  7073. pyromt-2.0.106/pyrogram/storage/file_storage.py +0 -69
  7074. pyromt-2.0.106/pyrogram/storage/memory_storage.py +0 -73
  7075. pyromt-2.0.106/pyrogram/storage/sqlite_storage.py +0 -222
  7076. pyromt-2.0.106/pyrogram/storage/storage.py +0 -91
  7077. pyromt-2.0.106/pyrogram/sync.py +0 -113
  7078. pyromt-2.0.106/pyrogram/types/__init__.py +0 -28
  7079. pyromt-2.0.106/pyrogram/types/authorization/__init__.py +0 -22
  7080. pyromt-2.0.106/pyrogram/types/authorization/sent_code.py +0 -62
  7081. pyromt-2.0.106/pyrogram/types/authorization/terms_of_service.py +0 -56
  7082. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/__init__.py +0 -71
  7083. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command.py +0 -53
  7084. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope.py +0 -73
  7085. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +0 -32
  7086. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +0 -32
  7087. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +0 -32
  7088. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py +0 -43
  7089. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +0 -43
  7090. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py +0 -48
  7091. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/bot_command_scope_default.py +0 -33
  7092. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/callback_game.py +0 -29
  7093. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/callback_query.py +0 -313
  7094. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/force_reply.py +0 -66
  7095. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/game_high_score.py +0 -70
  7096. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/inline_keyboard_button.py +0 -224
  7097. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py +0 -76
  7098. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/keyboard_button.py +0 -95
  7099. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/login_url.py +0 -90
  7100. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/menu_button.py +0 -44
  7101. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/menu_button_commands.py +0 -32
  7102. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/menu_button_default.py +0 -32
  7103. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/menu_button_web_app.py +0 -51
  7104. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py +0 -112
  7105. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py +0 -58
  7106. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/sent_web_app_message.py +0 -42
  7107. pyromt-2.0.106/pyrogram/types/bots_and_keyboards/web_app_info.py +0 -37
  7108. pyromt-2.0.106/pyrogram/types/inline_mode/__init__.py +0 -47
  7109. pyromt-2.0.106/pyrogram/types/inline_mode/chosen_inline_result.py +0 -99
  7110. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query.py +0 -181
  7111. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result.py +0 -63
  7112. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_animation.py +0 -155
  7113. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_article.py +0 -99
  7114. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_audio.py +0 -120
  7115. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_cached_animation.py +0 -108
  7116. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_cached_audio.py +0 -101
  7117. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_cached_document.py +0 -113
  7118. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_cached_photo.py +0 -111
  7119. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_cached_sticker.py +0 -78
  7120. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_cached_video.py +0 -114
  7121. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_cached_voice.py +0 -108
  7122. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_contact.py +0 -114
  7123. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_document.py +0 -145
  7124. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_location.py +0 -122
  7125. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_photo.py +0 -147
  7126. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_venue.py +0 -131
  7127. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_video.py +0 -151
  7128. pyromt-2.0.106/pyrogram/types/inline_mode/inline_query_result_voice.py +0 -114
  7129. pyromt-2.0.106/pyrogram/types/input_media/__init__.py +0 -30
  7130. pyromt-2.0.106/pyrogram/types/input_media/input_media.py +0 -49
  7131. pyromt-2.0.106/pyrogram/types/input_media/input_media_animation.py +0 -85
  7132. pyromt-2.0.106/pyrogram/types/input_media/input_media_audio.py +0 -82
  7133. pyromt-2.0.106/pyrogram/types/input_media/input_media_document.py +0 -65
  7134. pyromt-2.0.106/pyrogram/types/input_media/input_media_photo.py +0 -63
  7135. pyromt-2.0.106/pyrogram/types/input_media/input_media_video.py +0 -91
  7136. pyromt-2.0.106/pyrogram/types/input_media/input_phone_contact.py +0 -51
  7137. pyromt-2.0.106/pyrogram/types/input_message_content/__init__.py +0 -24
  7138. pyromt-2.0.106/pyrogram/types/input_message_content/input_message_content.py +0 -40
  7139. pyromt-2.0.106/pyrogram/types/input_message_content/input_text_message_content.py +0 -68
  7140. pyromt-2.0.106/pyrogram/types/list.py +0 -30
  7141. pyromt-2.0.106/pyrogram/types/messages_and_media/__init__.py +0 -47
  7142. pyromt-2.0.106/pyrogram/types/messages_and_media/animation.py +0 -121
  7143. pyromt-2.0.106/pyrogram/types/messages_and_media/audio.py +0 -121
  7144. pyromt-2.0.106/pyrogram/types/messages_and_media/contact.py +0 -71
  7145. pyromt-2.0.106/pyrogram/types/messages_and_media/dice.py +0 -47
  7146. pyromt-2.0.106/pyrogram/types/messages_and_media/document.py +0 -98
  7147. pyromt-2.0.106/pyrogram/types/messages_and_media/game.py +0 -99
  7148. pyromt-2.0.106/pyrogram/types/messages_and_media/location.py +0 -55
  7149. pyromt-2.0.106/pyrogram/types/messages_and_media/message.py +0 -3590
  7150. pyromt-2.0.106/pyrogram/types/messages_and_media/message_entity.py +0 -124
  7151. pyromt-2.0.106/pyrogram/types/messages_and_media/message_reactions.py +0 -56
  7152. pyromt-2.0.106/pyrogram/types/messages_and_media/photo.py +0 -130
  7153. pyromt-2.0.106/pyrogram/types/messages_and_media/poll.py +0 -203
  7154. pyromt-2.0.106/pyrogram/types/messages_and_media/poll_option.py +0 -50
  7155. pyromt-2.0.106/pyrogram/types/messages_and_media/reaction.py +0 -86
  7156. pyromt-2.0.106/pyrogram/types/messages_and_media/sticker.py +0 -206
  7157. pyromt-2.0.106/pyrogram/types/messages_and_media/stripped_thumbnail.py +0 -47
  7158. pyromt-2.0.106/pyrogram/types/messages_and_media/thumbnail.py +0 -111
  7159. pyromt-2.0.106/pyrogram/types/messages_and_media/venue.py +0 -74
  7160. pyromt-2.0.106/pyrogram/types/messages_and_media/video.py +0 -134
  7161. pyromt-2.0.106/pyrogram/types/messages_and_media/video_note.py +0 -108
  7162. pyromt-2.0.106/pyrogram/types/messages_and_media/voice.py +0 -96
  7163. pyromt-2.0.106/pyrogram/types/messages_and_media/web_app_data.py +0 -51
  7164. pyromt-2.0.106/pyrogram/types/messages_and_media/web_page.py +0 -187
  7165. pyromt-2.0.106/pyrogram/types/object.py +0 -121
  7166. pyromt-2.0.106/pyrogram/types/update.py +0 -27
  7167. pyromt-2.0.106/pyrogram/types/user_and_chats/__init__.py +0 -67
  7168. pyromt-2.0.106/pyrogram/types/user_and_chats/chat.py +0 -963
  7169. pyromt-2.0.106/pyrogram/types/user_and_chats/chat_admin_with_invite_links.py +0 -63
  7170. pyromt-2.0.106/pyrogram/types/user_and_chats/chat_event.py +0 -489
  7171. pyromt-2.0.106/pyrogram/types/user_and_chats/chat_event_filter.py +0 -175
  7172. pyromt-2.0.106/pyrogram/types/user_and_chats/chat_invite_link.py +0 -130
  7173. pyromt-2.0.106/pyrogram/types/user_and_chats/chat_join_request.py +0 -139
  7174. pyromt-2.0.106/pyrogram/types/user_and_chats/chat_joiner.py +0 -82
  7175. pyromt-2.0.106/pyrogram/types/user_and_chats/chat_member.py +0 -227
  7176. pyromt-2.0.106/pyrogram/types/user_and_chats/chat_member_updated.py +0 -102
  7177. pyromt-2.0.106/pyrogram/types/user_and_chats/chat_permissions.py +0 -98
  7178. pyromt-2.0.106/pyrogram/types/user_and_chats/chat_photo.py +0 -107
  7179. pyromt-2.0.106/pyrogram/types/user_and_chats/chat_preview.py +0 -79
  7180. pyromt-2.0.106/pyrogram/types/user_and_chats/chat_privileges.py +0 -112
  7181. pyromt-2.0.106/pyrogram/types/user_and_chats/chat_reactions.py +0 -69
  7182. pyromt-2.0.106/pyrogram/types/user_and_chats/dialog.py +0 -79
  7183. pyromt-2.0.106/pyrogram/types/user_and_chats/emoji_status.py +0 -77
  7184. pyromt-2.0.106/pyrogram/types/user_and_chats/invite_link_importer.py +0 -61
  7185. pyromt-2.0.106/pyrogram/types/user_and_chats/restriction.py +0 -50
  7186. pyromt-2.0.106/pyrogram/types/user_and_chats/user.py +0 -399
  7187. pyromt-2.0.106/pyrogram/types/user_and_chats/video_chat_ended.py +0 -41
  7188. pyromt-2.0.106/pyrogram/types/user_and_chats/video_chat_members_invited.py +0 -50
  7189. pyromt-2.0.106/pyrogram/types/user_and_chats/video_chat_scheduled.py +0 -43
  7190. pyromt-2.0.106/pyrogram/types/user_and_chats/video_chat_started.py +0 -29
  7191. pyromt-2.0.106/pyrogram/utils.py +0 -371
  7192. pyromt-2.0.106/requirements.txt +0 -2
  7193. pyromt-2.0.106/setup.cfg +0 -4
  7194. pyromt-2.0.106/setup.py +0 -88
  7195. pyromt-2.0.106/tests/__init__.py +0 -17
  7196. pyromt-2.0.106/tests/filters/__init__.py +0 -36
  7197. pyromt-2.0.106/tests/filters/test_command.py +0 -148
  7198. pyromt-2.0.106/tests/parser/__init__.py +0 -17
  7199. pyromt-2.0.106/tests/parser/test_html.py +0 -147
  7200. pyromt-2.0.106/tests/test_file_id.py +0 -194
  7201. {pyromt-2.0.106 → pyromt-2.4.1}/compiler/api/source/auth_key.tl +0 -0
  7202. {pyromt-2.0.106 → pyromt-2.4.1}/compiler/api/source/sys_msgs.tl +0 -0
  7203. {pyromt-2.0.106 → pyromt-2.4.1}/compiler/errors/source/303_SEE_OTHER.tsv +0 -0
  7204. {pyromt-2.0.106 → pyromt-2.4.1}/compiler/errors/source/401_UNAUTHORIZED.tsv +0 -0
  7205. {pyromt-2.0.106 → pyromt-2.4.1}/compiler/errors/template/class.txt +0 -0
  7206. {pyromt-2.0.106 → pyromt-2.4.1}/compiler/errors/template/sub_class.txt +0 -0
  7207. {pyromt-2.0.106 → pyromt-2.4.1}/pyrogram/py.typed +0 -0
@@ -0,0 +1,13 @@
1
+ # Python caches
2
+ __pycache__/
3
+ *.py[cod]
4
+
5
+ # Build folders
6
+ build/
7
+ dist/
8
+ *.egg-info/
9
+ srigram.egg-info/
10
+
11
+ # Environments and Secrets
12
+ .env
13
+ venv/
pyromt-2.4.1/.pylintrc ADDED
@@ -0,0 +1,651 @@
1
+ [MAIN]
2
+
3
+ # Analyse import fallback blocks. This can be used to support both Python 2 and
4
+ # 3 compatible code, which means that the block might have code that exists
5
+ # only in one or another interpreter, leading to false positives when analysed.
6
+ analyse-fallback-blocks=no
7
+
8
+ # Clear in-memory caches upon conclusion of linting. Useful if running pylint
9
+ # in a server-like mode.
10
+ clear-cache-post-run=no
11
+
12
+ # Load and enable all available extensions. Use --list-extensions to see a list
13
+ # all available extensions.
14
+ #enable-all-extensions=
15
+
16
+ # In error mode, messages with a category besides ERROR or FATAL are
17
+ # suppressed, and no reports are done by default. Error mode is compatible with
18
+ # disabling specific errors.
19
+ #errors-only=
20
+
21
+ # Always return a 0 (non-error) status code, even if lint errors are found.
22
+ # This is primarily useful in continuous integration scripts.
23
+ #exit-zero=
24
+
25
+ # A comma-separated list of package or module names from where C extensions may
26
+ # be loaded. Extensions are loading into the active Python interpreter and may
27
+ # run arbitrary code.
28
+ extension-pkg-allow-list=
29
+
30
+ # A comma-separated list of package or module names from where C extensions may
31
+ # be loaded. Extensions are loading into the active Python interpreter and may
32
+ # run arbitrary code. (This is an alternative name to extension-pkg-allow-list
33
+ # for backward compatibility.)
34
+ extension-pkg-whitelist=
35
+
36
+ # Return non-zero exit code if any of these messages/categories are detected,
37
+ # even if score is above --fail-under value. Syntax same as enable. Messages
38
+ # specified are enabled, while categories only check already-enabled messages.
39
+ fail-on=
40
+
41
+ # Specify a score threshold under which the program will exit with error.
42
+ fail-under=10
43
+
44
+ # Interpret the stdin as a python script, whose filename needs to be passed as
45
+ # the module_or_package argument.
46
+ #from-stdin=
47
+
48
+ # Files or directories to be skipped. They should be base names, not paths.
49
+ ignore=CVS
50
+
51
+ # Add files or directories matching the regular expressions patterns to the
52
+ # ignore-list. The regex matches against paths and can be in Posix or Windows
53
+ # format. Because '\\' represents the directory delimiter on Windows systems,
54
+ # it can't be used as an escape character.
55
+ ignore-paths=
56
+
57
+ # Files or directories matching the regular expression patterns are skipped.
58
+ # The regex matches against base names, not paths. The default value ignores
59
+ # Emacs file locks
60
+ ignore-patterns=^\.#
61
+
62
+ # List of module names for which member attributes should not be checked and
63
+ # will not be imported (useful for modules/projects where namespaces are
64
+ # manipulated during runtime and thus existing member attributes cannot be
65
+ # deduced by static analysis). It supports qualified module names, as well as
66
+ # Unix pattern matching.
67
+ ignored-modules=
68
+
69
+ # Python code to execute, usually for sys.path manipulation such as
70
+ # pygtk.require().
71
+ #init-hook=
72
+
73
+ # Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
74
+ # number of processors available to use, and will cap the count on Windows to
75
+ # avoid hangs.
76
+ jobs=1
77
+
78
+ # Control the amount of potential inferred values when inferring a single
79
+ # object. This can help the performance when dealing with large functions or
80
+ # complex, nested conditions.
81
+ limit-inference-results=100
82
+
83
+ # List of plugins (as comma separated values of python module names) to load,
84
+ # usually to register additional checkers.
85
+ load-plugins=
86
+
87
+ # Pickle collected data for later comparisons.
88
+ persistent=yes
89
+
90
+ # Resolve imports to .pyi stubs if available. May reduce no-member messages and
91
+ # increase not-an-iterable messages.
92
+ prefer-stubs=no
93
+
94
+ # Minimum Python version to use for version dependent checks. Will default to
95
+ # the version used to run pylint.
96
+ py-version=3.13
97
+
98
+ # Discover python modules and packages in the file system subtree.
99
+ recursive=no
100
+
101
+ # Add paths to the list of the source roots. Supports globbing patterns. The
102
+ # source root is an absolute path or a path relative to the current working
103
+ # directory used to determine a package namespace for modules located under the
104
+ # source root.
105
+ source-roots=
106
+
107
+ # When enabled, pylint would attempt to guess common misconfiguration and emit
108
+ # user-friendly hints instead of false-positive error messages.
109
+ suggestion-mode=yes
110
+
111
+ # Allow loading of arbitrary C extensions. Extensions are imported into the
112
+ # active Python interpreter and may run arbitrary code.
113
+ unsafe-load-any-extension=no
114
+
115
+ # In verbose mode, extra non-checker-related info will be displayed.
116
+ #verbose=
117
+
118
+
119
+ [BASIC]
120
+
121
+ # Naming style matching correct argument names.
122
+ argument-naming-style=snake_case
123
+
124
+ # Regular expression matching correct argument names. Overrides argument-
125
+ # naming-style. If left empty, argument names will be checked with the set
126
+ # naming style.
127
+ #argument-rgx=
128
+
129
+ # Naming style matching correct attribute names.
130
+ attr-naming-style=snake_case
131
+
132
+ # Regular expression matching correct attribute names. Overrides attr-naming-
133
+ # style. If left empty, attribute names will be checked with the set naming
134
+ # style.
135
+ #attr-rgx=
136
+
137
+ # Bad variable names which should always be refused, separated by a comma.
138
+ bad-names=foo,
139
+ bar,
140
+ baz,
141
+ toto,
142
+ tutu,
143
+ tata
144
+
145
+ # Bad variable names regexes, separated by a comma. If names match any regex,
146
+ # they will always be refused
147
+ bad-names-rgxs=
148
+
149
+ # Naming style matching correct class attribute names.
150
+ class-attribute-naming-style=any
151
+
152
+ # Regular expression matching correct class attribute names. Overrides class-
153
+ # attribute-naming-style. If left empty, class attribute names will be checked
154
+ # with the set naming style.
155
+ #class-attribute-rgx=
156
+
157
+ # Naming style matching correct class constant names.
158
+ class-const-naming-style=UPPER_CASE
159
+
160
+ # Regular expression matching correct class constant names. Overrides class-
161
+ # const-naming-style. If left empty, class constant names will be checked with
162
+ # the set naming style.
163
+ #class-const-rgx=
164
+
165
+ # Naming style matching correct class names.
166
+ class-naming-style=PascalCase
167
+
168
+ # Regular expression matching correct class names. Overrides class-naming-
169
+ # style. If left empty, class names will be checked with the set naming style.
170
+ #class-rgx=
171
+
172
+ # Naming style matching correct constant names.
173
+ const-naming-style=UPPER_CASE
174
+
175
+ # Regular expression matching correct constant names. Overrides const-naming-
176
+ # style. If left empty, constant names will be checked with the set naming
177
+ # style.
178
+ #const-rgx=
179
+
180
+ # Minimum line length for functions/classes that require docstrings, shorter
181
+ # ones are exempt.
182
+ docstring-min-length=-1
183
+
184
+ # Naming style matching correct function names.
185
+ function-naming-style=snake_case
186
+
187
+ # Regular expression matching correct function names. Overrides function-
188
+ # naming-style. If left empty, function names will be checked with the set
189
+ # naming style.
190
+ #function-rgx=
191
+
192
+ # Good variable names which should always be accepted, separated by a comma.
193
+ good-names=i,
194
+ j,
195
+ k,
196
+ ex,
197
+ Run,
198
+ _
199
+
200
+ # Good variable names regexes, separated by a comma. If names match any regex,
201
+ # they will always be accepted
202
+ good-names-rgxs=
203
+
204
+ # Include a hint for the correct naming format with invalid-name.
205
+ include-naming-hint=no
206
+
207
+ # Naming style matching correct inline iteration names.
208
+ inlinevar-naming-style=any
209
+
210
+ # Regular expression matching correct inline iteration names. Overrides
211
+ # inlinevar-naming-style. If left empty, inline iteration names will be checked
212
+ # with the set naming style.
213
+ #inlinevar-rgx=
214
+
215
+ # Naming style matching correct method names.
216
+ method-naming-style=snake_case
217
+
218
+ # Regular expression matching correct method names. Overrides method-naming-
219
+ # style. If left empty, method names will be checked with the set naming style.
220
+ #method-rgx=
221
+
222
+ # Naming style matching correct module names.
223
+ module-naming-style=snake_case
224
+
225
+ # Regular expression matching correct module names. Overrides module-naming-
226
+ # style. If left empty, module names will be checked with the set naming style.
227
+ #module-rgx=
228
+
229
+ # Colon-delimited sets of names that determine each other's naming style when
230
+ # the name regexes allow several styles.
231
+ name-group=
232
+
233
+ # Regular expression which should only match function or class names that do
234
+ # not require a docstring.
235
+ no-docstring-rgx=^_
236
+
237
+ # List of decorators that produce properties, such as abc.abstractproperty. Add
238
+ # to this list to register other decorators that produce valid properties.
239
+ # These decorators are taken in consideration only for invalid-name.
240
+ property-classes=abc.abstractproperty
241
+
242
+ # Regular expression matching correct type alias names. If left empty, type
243
+ # alias names will be checked with the set naming style.
244
+ #typealias-rgx=
245
+
246
+ # Regular expression matching correct type variable names. If left empty, type
247
+ # variable names will be checked with the set naming style.
248
+ #typevar-rgx=
249
+
250
+ # Naming style matching correct variable names.
251
+ variable-naming-style=snake_case
252
+
253
+ # Regular expression matching correct variable names. Overrides variable-
254
+ # naming-style. If left empty, variable names will be checked with the set
255
+ # naming style.
256
+ #variable-rgx=
257
+
258
+
259
+ [CLASSES]
260
+
261
+ # Warn about protected attribute access inside special methods
262
+ check-protected-access-in-special-methods=no
263
+
264
+ # List of method names used to declare (i.e. assign) instance attributes.
265
+ defining-attr-methods=__init__,
266
+ __new__,
267
+ setUp,
268
+ asyncSetUp,
269
+ __post_init__
270
+
271
+ # List of member names, which should be excluded from the protected access
272
+ # warning.
273
+ exclude-protected=_asdict,_fields,_replace,_source,_make,os._exit
274
+
275
+ # List of valid names for the first argument in a class method.
276
+ valid-classmethod-first-arg=cls
277
+
278
+ # List of valid names for the first argument in a metaclass class method.
279
+ valid-metaclass-classmethod-first-arg=mcs
280
+
281
+
282
+ [DESIGN]
283
+
284
+ # List of regular expressions of class ancestor names to ignore when counting
285
+ # public methods (see R0903)
286
+ exclude-too-few-public-methods=
287
+
288
+ # List of qualified class names to ignore when counting class parents (see
289
+ # R0901)
290
+ ignored-parents=
291
+
292
+ # Maximum number of arguments for function / method.
293
+ max-args=5
294
+
295
+ # Maximum number of attributes for a class (see R0902).
296
+ max-attributes=7
297
+
298
+ # Maximum number of boolean expressions in an if statement (see R0916).
299
+ max-bool-expr=5
300
+
301
+ # Maximum number of branch for function / method body.
302
+ max-branches=12
303
+
304
+ # Maximum number of locals for function / method body.
305
+ max-locals=15
306
+
307
+ # Maximum number of parents for a class (see R0901).
308
+ max-parents=7
309
+
310
+ # Maximum number of positional arguments for function / method.
311
+ max-positional-arguments=5
312
+
313
+ # Maximum number of public methods for a class (see R0904).
314
+ max-public-methods=20
315
+
316
+ # Maximum number of return / yield for function / method body.
317
+ max-returns=6
318
+
319
+ # Maximum number of statements in function / method body.
320
+ max-statements=50
321
+
322
+ # Minimum number of public methods for a class (see R0903).
323
+ min-public-methods=2
324
+
325
+
326
+ [EXCEPTIONS]
327
+
328
+ # Exceptions that will emit a warning when caught.
329
+ overgeneral-exceptions=builtins.BaseException,builtins.Exception
330
+
331
+
332
+ [FORMAT]
333
+
334
+ # Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
335
+ expected-line-ending-format=
336
+
337
+ # Regexp for a line that is allowed to be longer than the limit.
338
+ ignore-long-lines=^\s*(# )?<?https?://\S+>?$
339
+
340
+ # Number of spaces of indent required inside a hanging or continued line.
341
+ indent-after-paren=4
342
+
343
+ # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
344
+ # tab).
345
+ indent-string=' '
346
+
347
+ # Maximum number of characters on a single line.
348
+ max-line-length=100
349
+
350
+ # Maximum number of lines in a module.
351
+ max-module-lines=1000
352
+
353
+ # Allow the body of a class to be on the same line as the declaration if body
354
+ # contains single statement.
355
+ single-line-class-stmt=no
356
+
357
+ # Allow the body of an if to be on the same line as the test if there is no
358
+ # else.
359
+ single-line-if-stmt=no
360
+
361
+
362
+ [IMPORTS]
363
+
364
+ # List of modules that can be imported at any level, not just the top level
365
+ # one.
366
+ allow-any-import-level=
367
+
368
+ # Allow explicit reexports by alias from a package __init__.
369
+ allow-reexport-from-package=no
370
+
371
+ # Allow wildcard imports from modules that define __all__.
372
+ allow-wildcard-with-all=no
373
+
374
+ # Deprecated modules which should not be used, separated by a comma.
375
+ deprecated-modules=
376
+
377
+ # Output a graph (.gv or any supported image format) of external dependencies
378
+ # to the given file (report RP0402 must not be disabled).
379
+ ext-import-graph=
380
+
381
+ # Output a graph (.gv or any supported image format) of all (i.e. internal and
382
+ # external) dependencies to the given file (report RP0402 must not be
383
+ # disabled).
384
+ import-graph=
385
+
386
+ # Output a graph (.gv or any supported image format) of internal dependencies
387
+ # to the given file (report RP0402 must not be disabled).
388
+ int-import-graph=
389
+
390
+ # Force import order to recognize a module as part of the standard
391
+ # compatibility libraries.
392
+ known-standard-library=
393
+
394
+ # Force import order to recognize a module as part of a third party library.
395
+ known-third-party=enchant
396
+
397
+ # Couples of modules and preferred modules, separated by a comma.
398
+ preferred-modules=
399
+
400
+
401
+ [LOGGING]
402
+
403
+ # The type of string formatting that logging methods do. `old` means using %
404
+ # formatting, `new` is for `{}` formatting.
405
+ logging-format-style=old
406
+
407
+ # Logging modules to check that the string format arguments are in logging
408
+ # function parameter format.
409
+ logging-modules=logging
410
+
411
+
412
+ [MESSAGES CONTROL]
413
+
414
+ # Only show warnings with the listed confidence levels. Leave empty to show
415
+ # all. Valid levels: HIGH, CONTROL_FLOW, INFERENCE, INFERENCE_FAILURE,
416
+ # UNDEFINED.
417
+ confidence=HIGH,
418
+ CONTROL_FLOW,
419
+ INFERENCE,
420
+ INFERENCE_FAILURE,
421
+ UNDEFINED
422
+
423
+ # Disable the message, report, category or checker with the given id(s). You
424
+ # can either give multiple identifiers separated by comma (,) or put this
425
+ # option multiple times (only on the command line, not in the configuration
426
+ # file where it should appear only once). You can also use "--disable=all" to
427
+ # disable everything first and then re-enable specific checks. For example, if
428
+ # you want to run only the similarities checker, you can use "--disable=all
429
+ # --enable=similarities". If you want to run only the classes checker, but have
430
+ # no Warning level messages displayed, use "--disable=all --enable=classes
431
+ # --disable=W".
432
+ disable=raw-checker-failed,
433
+ bad-inline-option,
434
+ locally-disabled,
435
+ file-ignored,
436
+ suppressed-message,
437
+ useless-suppression,
438
+ deprecated-pragma,
439
+ use-implicit-booleaness-not-comparison-to-string,
440
+ use-implicit-booleaness-not-comparison-to-zero,
441
+ use-symbolic-message-instead,
442
+ missing-module-docstring,
443
+ missing-class-docstring,
444
+ missing-function-docstring,
445
+ redefined-builtin
446
+
447
+ # Enable the message, report, category or checker with the given id(s). You can
448
+ # either give multiple identifier separated by comma (,) or put this option
449
+ # multiple time (only on the command line, not in the configuration file where
450
+ # it should appear only once). See also the "--disable" option for examples.
451
+ enable=
452
+
453
+
454
+ [METHOD_ARGS]
455
+
456
+ # List of qualified names (i.e., library.method) which require a timeout
457
+ # parameter e.g. 'requests.api.get,requests.api.post'
458
+ timeout-methods=requests.api.delete,requests.api.get,requests.api.head,requests.api.options,requests.api.patch,requests.api.post,requests.api.put,requests.api.request
459
+
460
+
461
+ [MISCELLANEOUS]
462
+
463
+ # List of note tags to take in consideration, separated by a comma.
464
+ notes=FIXME,
465
+ XXX,
466
+ TODO
467
+
468
+ # Regular expression of note tags to take in consideration.
469
+ notes-rgx=
470
+
471
+
472
+ [REFACTORING]
473
+
474
+ # Maximum number of nested blocks for function / method body
475
+ max-nested-blocks=5
476
+
477
+ # Complete name of functions that never returns. When checking for
478
+ # inconsistent-return-statements if a never returning function is called then
479
+ # it will be considered as an explicit return statement and no message will be
480
+ # printed.
481
+ never-returning-functions=sys.exit,argparse.parse_error
482
+
483
+ # Let 'consider-using-join' be raised when the separator to join on would be
484
+ # non-empty (resulting in expected fixes of the type: ``"- " + " -
485
+ # ".join(items)``)
486
+ suggest-join-with-non-empty-separator=yes
487
+
488
+
489
+ [REPORTS]
490
+
491
+ # Python expression which should return a score less than or equal to 10. You
492
+ # have access to the variables 'fatal', 'error', 'warning', 'refactor',
493
+ # 'convention', and 'info' which contain the number of messages in each
494
+ # category, as well as 'statement' which is the total number of statements
495
+ # analyzed. This score is used by the global evaluation report (RP0004).
496
+ evaluation=max(0, 0 if fatal else 10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10))
497
+
498
+ # Template used to display messages. This is a python new-style format string
499
+ # used to format the message information. See doc for all details.
500
+ msg-template=
501
+
502
+ # Set the output format. Available formats are: 'text', 'parseable',
503
+ # 'colorized', 'json2' (improved json format), 'json' (old json format), msvs
504
+ # (visual studio) and 'github' (GitHub actions). You can also give a reporter
505
+ # class, e.g. mypackage.mymodule.MyReporterClass.
506
+ #output-format=
507
+
508
+ # Tells whether to display a full report or only the messages.
509
+ reports=no
510
+
511
+ # Activate the evaluation score.
512
+ score=yes
513
+
514
+
515
+ [SIMILARITIES]
516
+
517
+ # Comments are removed from the similarity computation
518
+ ignore-comments=yes
519
+
520
+ # Docstrings are removed from the similarity computation
521
+ ignore-docstrings=yes
522
+
523
+ # Imports are removed from the similarity computation
524
+ ignore-imports=yes
525
+
526
+ # Signatures are removed from the similarity computation
527
+ ignore-signatures=yes
528
+
529
+ # Minimum lines number of a similarity.
530
+ min-similarity-lines=4
531
+
532
+
533
+ [SPELLING]
534
+
535
+ # Limits count of emitted suggestions for spelling mistakes.
536
+ max-spelling-suggestions=4
537
+
538
+ # Spelling dictionary name. No available dictionaries : You need to install
539
+ # both the python package and the system dependency for enchant to work.
540
+ spelling-dict=
541
+
542
+ # List of comma separated words that should be considered directives if they
543
+ # appear at the beginning of a comment and should not be checked.
544
+ spelling-ignore-comment-directives=fmt: on,fmt: off,noqa:,noqa,nosec,isort:skip,mypy:
545
+
546
+ # List of comma separated words that should not be checked.
547
+ spelling-ignore-words=
548
+
549
+ # A path to a file that contains the private dictionary; one word per line.
550
+ spelling-private-dict-file=
551
+
552
+ # Tells whether to store unknown words to the private dictionary (see the
553
+ # --spelling-private-dict-file option) instead of raising a message.
554
+ spelling-store-unknown-words=no
555
+
556
+
557
+ [STRING]
558
+
559
+ # This flag controls whether inconsistent-quotes generates a warning when the
560
+ # character used as a quote delimiter is used inconsistently within a module.
561
+ check-quote-consistency=no
562
+
563
+ # This flag controls whether the implicit-str-concat should generate a warning
564
+ # on implicit string concatenation in sequences defined over several lines.
565
+ check-str-concat-over-line-jumps=no
566
+
567
+
568
+ [TYPECHECK]
569
+
570
+ # List of decorators that produce context managers, such as
571
+ # contextlib.contextmanager. Add to this list to register other decorators that
572
+ # produce valid context managers.
573
+ contextmanager-decorators=contextlib.contextmanager
574
+
575
+ # List of members which are set dynamically and missed by pylint inference
576
+ # system, and so shouldn't trigger E1101 when accessed. Python regular
577
+ # expressions are accepted.
578
+ generated-members=
579
+
580
+ # Tells whether to warn about missing members when the owner of the attribute
581
+ # is inferred to be None.
582
+ ignore-none=yes
583
+
584
+ # This flag controls whether pylint should warn about no-member and similar
585
+ # checks whenever an opaque object is returned when inferring. The inference
586
+ # can return multiple potential results while evaluating a Python object, but
587
+ # some branches might not be evaluated, which results in partial inference. In
588
+ # that case, it might be useful to still emit no-member and other checks for
589
+ # the rest of the inferred objects.
590
+ ignore-on-opaque-inference=yes
591
+
592
+ # List of symbolic message names to ignore for Mixin members.
593
+ ignored-checks-for-mixins=no-member,
594
+ not-async-context-manager,
595
+ not-context-manager,
596
+ attribute-defined-outside-init
597
+
598
+ # List of class names for which member attributes should not be checked (useful
599
+ # for classes with dynamically set attributes). This supports the use of
600
+ # qualified names.
601
+ ignored-classes=optparse.Values,thread._local,_thread._local,argparse.Namespace
602
+
603
+ # Show a hint with possible names when a member name was not found. The aspect
604
+ # of finding the hint is based on edit distance.
605
+ missing-member-hint=yes
606
+
607
+ # The minimum edit distance a name should have in order to be considered a
608
+ # similar match for a missing member name.
609
+ missing-member-hint-distance=1
610
+
611
+ # The total number of similar names that should be taken in consideration when
612
+ # showing a hint for a missing member.
613
+ missing-member-max-choices=1
614
+
615
+ # Regex pattern to define which classes are considered mixins.
616
+ mixin-class-rgx=.*[Mm]ixin
617
+
618
+ # List of decorators that change the signature of a decorated function.
619
+ signature-mutators=
620
+
621
+
622
+ [VARIABLES]
623
+
624
+ # List of additional names supposed to be defined in builtins. Remember that
625
+ # you should avoid defining new builtins when possible.
626
+ additional-builtins=
627
+
628
+ # Tells whether unused global variables should be treated as a violation.
629
+ allow-global-unused-variables=yes
630
+
631
+ # List of names allowed to shadow builtins
632
+ allowed-redefined-builtins=
633
+
634
+ # List of strings which can identify a callback function by name. A callback
635
+ # name must start or end with one of those strings.
636
+ callbacks=cb_,
637
+ _cb
638
+
639
+ # A regular expression matching the name of dummy variables (i.e. expected to
640
+ # not be used).
641
+ dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
642
+
643
+ # Argument names that match this expression will be ignored.
644
+ ignored-argument-names=_.*|^ignored_|^unused_
645
+
646
+ # Tells whether we should check for unused import in __init__ files.
647
+ init-import=no
648
+
649
+ # List of qualified module names which can have objects that can redefine
650
+ # builtins.
651
+ redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io
@@ -0,0 +1,16 @@
1
+ # Changelog
2
+
3
+ ## [28-03-26]
4
+ ### Version [2.4.0]
5
+
6
+ **✨ Telegram Bot API Updates (Buttons & Styling)**
7
+ Srigram now fully supports the newest Telegram UI features for both Inline and Standard Reply Keyboards!
8
+
9
+ * **Custom Emojis on Buttons:** Added native support for `icon_custom_emoji_id`. You can now attach premium and custom animated emojis directly to `InlineKeyboardButton` and `KeyboardButton`.
10
+ * **Button Styling:** Added support for the new `style` parameter. You can now color your buttons using `"primary"` (Blue), `"danger"` (Red), and `"success"` (Green).
11
+ * **Framework Optimization:** Safely implemented these features using the native `KeyboardButtonStyle` MTProto object to ensure complete stability with existing bot features (like Business Away Messages).
12
+
13
+ **Code Example:**
14
+ `InlineKeyboardButton("Click Me", style="primary", icon_custom_emoji_id=5368324170671202286)`
15
+
16
+