pyroherd 0.2.2__tar.gz → 0.2.4__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 (921) hide show
  1. {pyroherd-0.2.2 → pyroherd-0.2.4}/PKG-INFO +1 -1
  2. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/__init__.py +1 -1
  3. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/advanced/__init__.py +0 -2
  4. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/advanced/invoke.py +11 -25
  5. pyroherd-0.2.4/pyroherd/methods/advanced/resolve_peer.py +125 -0
  6. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/advanced/save_file.py +7 -1
  7. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd.egg-info/PKG-INFO +1 -1
  8. pyroherd-0.2.2/pyroherd/methods/advanced/resolve_peer.py +0 -153
  9. {pyroherd-0.2.2 → pyroherd-0.2.4}/COPYING +0 -0
  10. {pyroherd-0.2.2 → pyroherd-0.2.4}/COPYING.lesser +0 -0
  11. {pyroherd-0.2.2 → pyroherd-0.2.4}/MANIFEST.in +0 -0
  12. {pyroherd-0.2.2 → pyroherd-0.2.4}/NOTICE +0 -0
  13. {pyroherd-0.2.2 → pyroherd-0.2.4}/README.md +0 -0
  14. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/__init__.py +0 -0
  15. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/api/__init__.py +0 -0
  16. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/api/compiler.py +0 -0
  17. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/api/source/auth_key.tl +0 -0
  18. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/api/source/main_api.tl +0 -0
  19. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/api/source/sys_msgs.tl +0 -0
  20. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/api/template/combinator.txt +0 -0
  21. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/api/template/type.txt +0 -0
  22. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/errors/__init__.py +0 -0
  23. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/errors/compiler.py +0 -0
  24. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/errors/sort.py +0 -0
  25. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/errors/source/303_SEE_OTHER.tsv +0 -0
  26. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/errors/source/400_BAD_REQUEST.tsv +0 -0
  27. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/errors/source/401_UNAUTHORIZED.tsv +0 -0
  28. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/errors/source/403_FORBIDDEN.tsv +0 -0
  29. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/errors/source/406_NOT_ACCEPTABLE.tsv +0 -0
  30. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/errors/source/420_FLOOD.tsv +0 -0
  31. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/errors/source/500_INTERNAL_SERVER_ERROR.tsv +0 -0
  32. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/errors/source/503_SERVICE_UNAVAILABLE.tsv +0 -0
  33. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/errors/template/class.txt +0 -0
  34. {pyroherd-0.2.2 → pyroherd-0.2.4}/compiler/errors/template/sub_class.txt +0 -0
  35. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/client.py +0 -0
  36. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/connection/__init__.py +0 -0
  37. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/connection/connection.py +0 -0
  38. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/connection/transport/__init__.py +0 -0
  39. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/connection/transport/tcp/__init__.py +0 -0
  40. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/connection/transport/tcp/tcp.py +0 -0
  41. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/connection/transport/tcp/tcp_abridged.py +0 -0
  42. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/connection/transport/tcp/tcp_abridged_o.py +0 -0
  43. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/connection/transport/tcp/tcp_full.py +0 -0
  44. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/connection/transport/tcp/tcp_intermediate.py +0 -0
  45. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/connection/transport/tcp/tcp_intermediate_o.py +0 -0
  46. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/crypto/__init__.py +0 -0
  47. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/crypto/aes.py +0 -0
  48. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/crypto/mtproto.py +0 -0
  49. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/crypto/prime.py +0 -0
  50. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/crypto/rsa.py +0 -0
  51. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/dispatcher.py +0 -0
  52. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/emoji.py +0 -0
  53. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/__init__.py +0 -0
  54. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/auto_name.py +0 -0
  55. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/block_list.py +0 -0
  56. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/business_schedule.py +0 -0
  57. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/button_style.py +0 -0
  58. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/chat_action.py +0 -0
  59. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/chat_event_action.py +0 -0
  60. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/chat_join_type.py +0 -0
  61. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/chat_member_status.py +0 -0
  62. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/chat_members_filter.py +0 -0
  63. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/chat_type.py +0 -0
  64. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/client_platform.py +0 -0
  65. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/folder_color.py +0 -0
  66. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/gift_attribute_type.py +0 -0
  67. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/gift_for_resale_order.py +0 -0
  68. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/gift_purchase_offer_state.py +0 -0
  69. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/gift_type.py +0 -0
  70. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/mask_point_type.py +0 -0
  71. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/media_area_type.py +0 -0
  72. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/message_entity_type.py +0 -0
  73. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/message_media_type.py +0 -0
  74. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/message_origin_type.py +0 -0
  75. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/message_service_type.py +0 -0
  76. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/messages_filter.py +0 -0
  77. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/next_code_type.py +0 -0
  78. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/paid_reaction_privacy.py +0 -0
  79. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/parse_mode.py +0 -0
  80. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/payment_form_type.py +0 -0
  81. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/phone_call_discard_reason.py +0 -0
  82. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/phone_number_code_type.py +0 -0
  83. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/poll_type.py +0 -0
  84. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/privacy_key.py +0 -0
  85. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/privacy_rule_type.py +0 -0
  86. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/profile_color.py +0 -0
  87. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/profile_tab.py +0 -0
  88. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/reply_color.py +0 -0
  89. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/sent_code_type.py +0 -0
  90. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/sticker_type.py +0 -0
  91. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/stories_privacy_rules.py +0 -0
  92. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/suggested_post_refund_reason.py +0 -0
  93. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/suggested_post_state.py +0 -0
  94. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/top_chat_category.py +0 -0
  95. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/upgraded_gift_origin.py +0 -0
  96. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/enums/user_status.py +0 -0
  97. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/errors/__init__.py +0 -0
  98. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/errors/rpc_error.py +0 -0
  99. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/file_id.py +0 -0
  100. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/filters.py +0 -0
  101. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/__init__.py +0 -0
  102. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/business_connection_handler.py +0 -0
  103. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/business_message_handler.py +0 -0
  104. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/callback_query_handler.py +0 -0
  105. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/chat_boost_handler.py +0 -0
  106. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/chat_join_request_handler.py +0 -0
  107. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/chat_member_updated_handler.py +0 -0
  108. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/chosen_inline_result_handler.py +0 -0
  109. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/connect_handler.py +0 -0
  110. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/deleted_business_messages_handler.py +0 -0
  111. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/deleted_messages_handler.py +0 -0
  112. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/disconnect_handler.py +0 -0
  113. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/edited_business_message_handler.py +0 -0
  114. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/edited_message_handler.py +0 -0
  115. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/error_handler.py +0 -0
  116. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/guest_message_handler.py +0 -0
  117. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/handler.py +0 -0
  118. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/inline_query_handler.py +0 -0
  119. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/managed_bot_updated_handler.py +0 -0
  120. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/message_handler.py +0 -0
  121. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/message_reaction_count_handler.py +0 -0
  122. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/message_reaction_handler.py +0 -0
  123. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/poll_handler.py +0 -0
  124. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/pre_checkout_query_handler.py +0 -0
  125. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/purchased_paid_media_handler.py +0 -0
  126. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/raw_update_handler.py +0 -0
  127. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/shipping_query_handler.py +0 -0
  128. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/start_handler.py +0 -0
  129. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/stop_handler.py +0 -0
  130. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/story_handler.py +0 -0
  131. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/handlers/user_status_handler.py +0 -0
  132. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/__init__.py +0 -0
  133. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/account/__init__.py +0 -0
  134. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/account/add_profile_audio.py +0 -0
  135. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/account/get_account_ttl.py +0 -0
  136. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/account/get_global_privacy_settings.py +0 -0
  137. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/account/get_privacy.py +0 -0
  138. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/account/remove_profile_audio.py +0 -0
  139. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/account/set_account_ttl.py +0 -0
  140. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/account/set_global_privacy_settings.py +0 -0
  141. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/account/set_inactive_session_ttl.py +0 -0
  142. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/account/set_privacy.py +0 -0
  143. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/account/set_profile_audio_position.py +0 -0
  144. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/advanced/recover_gaps.py +0 -0
  145. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/__init__.py +0 -0
  146. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/accept_terms_of_service.py +0 -0
  147. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/change_phone_number.py +0 -0
  148. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/check_password.py +0 -0
  149. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/connect.py +0 -0
  150. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/disconnect.py +0 -0
  151. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/get_active_sessions.py +0 -0
  152. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/get_password_hint.py +0 -0
  153. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/initialize.py +0 -0
  154. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/log_out.py +0 -0
  155. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/recover_password.py +0 -0
  156. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/resend_code.py +0 -0
  157. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/resend_phone_number_code.py +0 -0
  158. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/reset_session.py +0 -0
  159. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/reset_sessions.py +0 -0
  160. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/send_code.py +0 -0
  161. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/send_phone_number_code.py +0 -0
  162. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/send_recovery_code.py +0 -0
  163. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/sign_in.py +0 -0
  164. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/sign_in_bot.py +0 -0
  165. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/sign_up.py +0 -0
  166. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/auth/terminate.py +0 -0
  167. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/__init__.py +0 -0
  168. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/answer_callback_query.py +0 -0
  169. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/answer_guest_query.py +0 -0
  170. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/answer_inline_query.py +0 -0
  171. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/answer_pre_checkout_query.py +0 -0
  172. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/answer_shipping_query.py +0 -0
  173. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/answer_web_app_query.py +0 -0
  174. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/check_bot_username.py +0 -0
  175. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/create_bot.py +0 -0
  176. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/create_invoice_link.py +0 -0
  177. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/delete_bot_commands.py +0 -0
  178. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/edit_user_star_subscription.py +0 -0
  179. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/get_bot_commands.py +0 -0
  180. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/get_bot_default_privileges.py +0 -0
  181. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/get_bot_info_description.py +0 -0
  182. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/get_bot_info_short_description.py +0 -0
  183. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/get_bot_name.py +0 -0
  184. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/get_chat_menu_button.py +0 -0
  185. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/get_game_high_scores.py +0 -0
  186. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/get_inline_bot_results.py +0 -0
  187. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/get_managed_bot_access_settings.py +0 -0
  188. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/get_managed_bot_token.py +0 -0
  189. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/get_owned_bots.py +0 -0
  190. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/refund_star_payment.py +0 -0
  191. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/replace_managed_bot_token.py +0 -0
  192. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/request_callback_answer.py +0 -0
  193. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/send_game.py +0 -0
  194. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/send_inline_bot_result.py +0 -0
  195. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/send_invoice.py +0 -0
  196. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/set_bot_commands.py +0 -0
  197. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/set_bot_default_privileges.py +0 -0
  198. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/set_bot_info_description.py +0 -0
  199. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/set_bot_info_short_description.py +0 -0
  200. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/set_bot_name.py +0 -0
  201. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/set_chat_menu_button.py +0 -0
  202. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/set_game_score.py +0 -0
  203. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/bots/set_managed_bot_access_settings.py +0 -0
  204. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/business/__init__.py +0 -0
  205. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/business/delete_business_messages.py +0 -0
  206. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/business/get_business_account_gifts.py +0 -0
  207. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/business/get_business_account_star_balance.py +0 -0
  208. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/business/get_business_connection.py +0 -0
  209. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/business/transfer_business_account_stars.py +0 -0
  210. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/__init__.py +0 -0
  211. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/add_chat_members.py +0 -0
  212. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/archive_chats.py +0 -0
  213. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/ban_chat_member.py +0 -0
  214. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/close_forum_topic.py +0 -0
  215. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/create_channel.py +0 -0
  216. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/create_folder.py +0 -0
  217. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/create_folder_invite_link.py +0 -0
  218. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/create_forum_topic.py +0 -0
  219. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/create_group.py +0 -0
  220. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/create_supergroup.py +0 -0
  221. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/delete_all_message_reactions.py +0 -0
  222. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/delete_channel.py +0 -0
  223. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/delete_chat_photo.py +0 -0
  224. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/delete_folder.py +0 -0
  225. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/delete_folder_invite_link.py +0 -0
  226. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/delete_forum_topic.py +0 -0
  227. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/delete_message_reaction.py +0 -0
  228. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/delete_supergroup.py +0 -0
  229. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/delete_user_history.py +0 -0
  230. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/edit_folder.py +0 -0
  231. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/edit_folder_invite_link.py +0 -0
  232. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/edit_forum_topic.py +0 -0
  233. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/export_folder_link.py +0 -0
  234. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_chat.py +0 -0
  235. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_chat_event_log.py +0 -0
  236. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_chat_member.py +0 -0
  237. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_chat_members.py +0 -0
  238. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_chat_members_count.py +0 -0
  239. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_chat_online_count.py +0 -0
  240. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_chat_settings.py +0 -0
  241. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_chats_for_folder_invite_link.py +0 -0
  242. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_dialogs.py +0 -0
  243. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_dialogs_count.py +0 -0
  244. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_direct_messages_topics.py +0 -0
  245. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_direct_messages_topics_by_id.py +0 -0
  246. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_folder_invite_links.py +0 -0
  247. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_folders.py +0 -0
  248. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_forum_topics.py +0 -0
  249. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_forum_topics_by_id.py +0 -0
  250. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_nearby_chats.py +0 -0
  251. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_personal_channels.py +0 -0
  252. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_send_as_chats.py +0 -0
  253. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_similar_channels.py +0 -0
  254. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_suitable_discussion_chats.py +0 -0
  255. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/get_top_chats.py +0 -0
  256. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/join_chat.py +0 -0
  257. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/join_folder.py +0 -0
  258. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/leave_chat.py +0 -0
  259. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/leave_folder.py +0 -0
  260. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/mark_chat_unread.py +0 -0
  261. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/pin_chat_message.py +0 -0
  262. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/pin_forum_topic.py +0 -0
  263. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/process_chat_has_protected_content_disable_request.py +0 -0
  264. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/promote_chat_member.py +0 -0
  265. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/reorder_folders.py +0 -0
  266. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/restrict_chat_member.py +0 -0
  267. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/set_administrator_title.py +0 -0
  268. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/set_chat_description.py +0 -0
  269. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/set_chat_direct_messages_group.py +0 -0
  270. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/set_chat_discussion_group.py +0 -0
  271. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/set_chat_member_tag.py +0 -0
  272. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/set_chat_permissions.py +0 -0
  273. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/set_chat_photo.py +0 -0
  274. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/set_chat_protected_content.py +0 -0
  275. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/set_chat_title.py +0 -0
  276. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/set_chat_ttl.py +0 -0
  277. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/set_chat_username.py +0 -0
  278. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/set_main_profile_tab.py +0 -0
  279. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/set_send_as_chat.py +0 -0
  280. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/set_slow_mode.py +0 -0
  281. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/set_upgraded_gift_colors.py +0 -0
  282. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/toggle_folder_tags.py +0 -0
  283. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/toggle_forum_topics.py +0 -0
  284. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/toggle_join_to_send.py +0 -0
  285. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/transfer_chat_ownership.py +0 -0
  286. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/unarchive_chats.py +0 -0
  287. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/unban_chat_member.py +0 -0
  288. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/unpin_all_chat_messages.py +0 -0
  289. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/unpin_chat_message.py +0 -0
  290. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/unpin_forum_topic.py +0 -0
  291. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/update_chat_notifications.py +0 -0
  292. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/update_color.py +0 -0
  293. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/chats/update_folder.py +0 -0
  294. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/contacts/__init__.py +0 -0
  295. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/contacts/add_contact.py +0 -0
  296. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/contacts/delete_contacts.py +0 -0
  297. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/contacts/get_blocked_message_senders.py +0 -0
  298. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/contacts/get_contacts.py +0 -0
  299. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/contacts/get_contacts_count.py +0 -0
  300. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/contacts/import_contacts.py +0 -0
  301. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/contacts/search_contacts.py +0 -0
  302. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/contacts/set_contact_note.py +0 -0
  303. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/__init__.py +0 -0
  304. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_business_connection.py +0 -0
  305. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_business_message.py +0 -0
  306. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_cb.py +0 -0
  307. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_chat_boost.py +0 -0
  308. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_chat_join_request.py +0 -0
  309. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_chat_member_updated.py +0 -0
  310. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_chosen_inline_result.py +0 -0
  311. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_connect.py +0 -0
  312. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_deleted_business_messages.py +0 -0
  313. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_deleted_messages.py +0 -0
  314. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_disconnect.py +0 -0
  315. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_edited_business_message.py +0 -0
  316. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_edited_message.py +0 -0
  317. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_error.py +0 -0
  318. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_guest_message.py +0 -0
  319. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_inline_query.py +0 -0
  320. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_managed_bot.py +0 -0
  321. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_message_reaction.py +0 -0
  322. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_message_reaction_count.py +0 -0
  323. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_msg.py +0 -0
  324. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_poll.py +0 -0
  325. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_pre_checkout_query.py +0 -0
  326. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_purchased_paid_media.py +0 -0
  327. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_raw_update.py +0 -0
  328. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_shipping_query.py +0 -0
  329. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_start.py +0 -0
  330. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_stop.py +0 -0
  331. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_story.py +0 -0
  332. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/decorators/on_user_status.py +0 -0
  333. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/folders/__init__.py +0 -0
  334. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/folders/check_chat_folder_invite_link.py +0 -0
  335. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/__init__.py +0 -0
  336. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/approve_all_chat_join_requests.py +0 -0
  337. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/approve_chat_join_request.py +0 -0
  338. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/create_chat_invite_link.py +0 -0
  339. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/decline_all_chat_join_requests.py +0 -0
  340. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/decline_chat_join_request.py +0 -0
  341. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/delete_chat_admin_invite_links.py +0 -0
  342. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/delete_chat_invite_link.py +0 -0
  343. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/edit_chat_invite_link.py +0 -0
  344. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/export_chat_invite_link.py +0 -0
  345. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/get_chat_admin_invite_links.py +0 -0
  346. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/get_chat_admin_invite_links_count.py +0 -0
  347. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/get_chat_admins_with_invite_links.py +0 -0
  348. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/get_chat_invite_link.py +0 -0
  349. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/get_chat_invite_link_joiners.py +0 -0
  350. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/get_chat_invite_link_joiners_count.py +0 -0
  351. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/get_chat_join_requests.py +0 -0
  352. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/invite_links/revoke_chat_invite_link.py +0 -0
  353. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/__init__.py +0 -0
  354. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/add_checklist_tasks.py +0 -0
  355. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/add_poll_option.py +0 -0
  356. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/add_to_gifs.py +0 -0
  357. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/approve_suggested_post.py +0 -0
  358. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/business_session.py +0 -0
  359. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/compose_text_with_ai.py +0 -0
  360. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/copy_media_group.py +0 -0
  361. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/copy_message.py +0 -0
  362. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/decline_suggested_post.py +0 -0
  363. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/delete_chat_history.py +0 -0
  364. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/delete_direct_messages_chat_topic_history.py +0 -0
  365. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/delete_messages.py +0 -0
  366. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/delete_poll_option.py +0 -0
  367. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/download_media.py +0 -0
  368. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/edit_inline_caption.py +0 -0
  369. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/edit_inline_media.py +0 -0
  370. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/edit_inline_reply_markup.py +0 -0
  371. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/edit_inline_text.py +0 -0
  372. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/edit_message_caption.py +0 -0
  373. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/edit_message_checklist.py +0 -0
  374. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/edit_message_media.py +0 -0
  375. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/edit_message_reply_markup.py +0 -0
  376. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/edit_message_text.py +0 -0
  377. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/fix_text_with_ai.py +0 -0
  378. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/forward_media_group.py +0 -0
  379. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/forward_messages.py +0 -0
  380. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_available_effects.py +0 -0
  381. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_chat_history.py +0 -0
  382. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_chat_history_count.py +0 -0
  383. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_custom_emoji_stickers.py +0 -0
  384. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_direct_messages_chat_topic_history.py +0 -0
  385. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_discussion_message.py +0 -0
  386. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_discussion_replies.py +0 -0
  387. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_discussion_replies_count.py +0 -0
  388. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_main_web_app.py +0 -0
  389. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_media_group.py +0 -0
  390. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_messages.py +0 -0
  391. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_scheduled_messages.py +0 -0
  392. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_stickers.py +0 -0
  393. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_user_personal_chat_messages.py +0 -0
  394. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_web_app_link_url.py +0 -0
  395. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/get_web_app_url.py +0 -0
  396. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/inline_session.py +0 -0
  397. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/mark_checklist_tasks_as_done.py +0 -0
  398. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/open_web_app.py +0 -0
  399. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/read_chat_history.py +0 -0
  400. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/read_mentions.py +0 -0
  401. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/read_reactions.py +0 -0
  402. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/retract_vote.py +0 -0
  403. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/search_global.py +0 -0
  404. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/search_global_count.py +0 -0
  405. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/search_messages.py +0 -0
  406. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/search_messages_count.py +0 -0
  407. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/search_posts.py +0 -0
  408. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/search_posts_count.py +0 -0
  409. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_animation.py +0 -0
  410. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_audio.py +0 -0
  411. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_cached_media.py +0 -0
  412. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_chat_action.py +0 -0
  413. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_checklist.py +0 -0
  414. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_contact.py +0 -0
  415. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_dice.py +0 -0
  416. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_document.py +0 -0
  417. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_live_photo.py +0 -0
  418. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_location.py +0 -0
  419. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_media_group.py +0 -0
  420. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_message.py +0 -0
  421. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_message_draft.py +0 -0
  422. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_paid_media.py +0 -0
  423. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_paid_reaction.py +0 -0
  424. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_photo.py +0 -0
  425. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_poll.py +0 -0
  426. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_reaction.py +0 -0
  427. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_screenshot_notification.py +0 -0
  428. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_sticker.py +0 -0
  429. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_venue.py +0 -0
  430. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_video.py +0 -0
  431. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_video_note.py +0 -0
  432. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_voice.py +0 -0
  433. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/send_web_page.py +0 -0
  434. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/set_direct_messages_chat_topic_is_marked_as_unread.py +0 -0
  435. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/start_bot.py +0 -0
  436. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/stop_poll.py +0 -0
  437. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/stream_media.py +0 -0
  438. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/summarize_message.py +0 -0
  439. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/translate_message_text.py +0 -0
  440. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/translate_text.py +0 -0
  441. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/view_messages.py +0 -0
  442. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/messages/vote_poll.py +0 -0
  443. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/password/__init__.py +0 -0
  444. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/password/change_cloud_password.py +0 -0
  445. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/password/enable_cloud_password.py +0 -0
  446. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/password/remove_cloud_password.py +0 -0
  447. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/__init__.py +0 -0
  448. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/add_collection_gifts.py +0 -0
  449. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/apply_gift_code.py +0 -0
  450. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/buy_gift_upgrade.py +0 -0
  451. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/check_gift_code.py +0 -0
  452. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/convert_gift_to_stars.py +0 -0
  453. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/craft_gift.py +0 -0
  454. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/create_gift_collection.py +0 -0
  455. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/delete_gift_collection.py +0 -0
  456. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/drop_gift_original_details.py +0 -0
  457. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/edit_star_subscription.py +0 -0
  458. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/get_available_gifts.py +0 -0
  459. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/get_chat_gifts.py +0 -0
  460. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/get_chat_gifts_count.py +0 -0
  461. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/get_gift_auction_state.py +0 -0
  462. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/get_gift_collections.py +0 -0
  463. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/get_gift_upgrade_preview.py +0 -0
  464. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/get_gift_upgrade_variants.py +0 -0
  465. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/get_gifts_for_crafting.py +0 -0
  466. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/get_payment_form.py +0 -0
  467. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/get_stars_balance.py +0 -0
  468. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/get_ton_balance.py +0 -0
  469. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/get_upgraded_gift.py +0 -0
  470. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/get_upgraded_gift_value_info.py +0 -0
  471. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/gift_premium_with_stars.py +0 -0
  472. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/hide_gift.py +0 -0
  473. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/increase_gift_auction_bid.py +0 -0
  474. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/place_gift_auction_bid.py +0 -0
  475. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/process_gift_purchase_offer.py +0 -0
  476. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/remove_collection_gifts.py +0 -0
  477. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/reorder_collection_gifts.py +0 -0
  478. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/reorder_gift_collections.py +0 -0
  479. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/reuse_star_subscription.py +0 -0
  480. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/search_gifts_for_resale.py +0 -0
  481. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/send_gift.py +0 -0
  482. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/send_gift_purchase_offer.py +0 -0
  483. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/send_payment_form.py +0 -0
  484. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/send_resold_gift.py +0 -0
  485. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/set_gift_collection_name.py +0 -0
  486. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/set_gift_resale_price.py +0 -0
  487. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/set_pinned_gifts.py +0 -0
  488. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/show_gift.py +0 -0
  489. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/suggest_birthday.py +0 -0
  490. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/transfer_gift.py +0 -0
  491. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/payments/upgrade_gift.py +0 -0
  492. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/phone/__init__.py +0 -0
  493. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/phone/get_call_members.py +0 -0
  494. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/premium/__init__.py +0 -0
  495. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/premium/apply_boost.py +0 -0
  496. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/premium/get_boosts.py +0 -0
  497. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/premium/get_boosts_status.py +0 -0
  498. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/__init__.py +0 -0
  499. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/can_post_stories.py +0 -0
  500. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/can_send_story.py +0 -0
  501. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/copy_story.py +0 -0
  502. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/delete_stories.py +0 -0
  503. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/edit_story_caption.py +0 -0
  504. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/edit_story_media.py +0 -0
  505. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/edit_story_privacy.py +0 -0
  506. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/enable_stealth_mode.py +0 -0
  507. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/forward_story.py +0 -0
  508. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/get_all_stories.py +0 -0
  509. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/get_archived_stories.py +0 -0
  510. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/get_chat_stories.py +0 -0
  511. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/get_pinned_stories.py +0 -0
  512. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/get_stories.py +0 -0
  513. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/get_stories_archive.py +0 -0
  514. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/get_story_views.py +0 -0
  515. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/hide_chat_stories.py +0 -0
  516. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/hide_stories.py +0 -0
  517. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/pin_chat_stories.py +0 -0
  518. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/pin_stories.py +0 -0
  519. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/read_chat_stories.py +0 -0
  520. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/read_stories.py +0 -0
  521. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/send_story.py +0 -0
  522. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/show_chat_stories.py +0 -0
  523. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/unpin_chat_stories.py +0 -0
  524. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/stories/view_stories.py +0 -0
  525. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/__init__.py +0 -0
  526. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/block_user.py +0 -0
  527. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/check_username.py +0 -0
  528. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/delete_profile_photos.py +0 -0
  529. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/get_chat_audios.py +0 -0
  530. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/get_chat_audios_count.py +0 -0
  531. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/get_chat_photos.py +0 -0
  532. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/get_chat_photos_count.py +0 -0
  533. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/get_common_chats.py +0 -0
  534. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/get_default_emoji_statuses.py +0 -0
  535. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/get_me.py +0 -0
  536. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/get_users.py +0 -0
  537. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/set_emoji_status.py +0 -0
  538. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/set_personal_channel.py +0 -0
  539. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/set_profile_photo.py +0 -0
  540. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/set_username.py +0 -0
  541. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/unblock_user.py +0 -0
  542. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/update_birthday.py +0 -0
  543. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/update_profile.py +0 -0
  544. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/users/update_status.py +0 -0
  545. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/utilities/__init__.py +0 -0
  546. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/utilities/add_handler.py +0 -0
  547. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/utilities/compose.py +0 -0
  548. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/utilities/export_session_string.py +0 -0
  549. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/utilities/idle.py +0 -0
  550. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/utilities/remove_handler.py +0 -0
  551. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/utilities/restart.py +0 -0
  552. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/utilities/run.py +0 -0
  553. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/utilities/start.py +0 -0
  554. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/utilities/stop.py +0 -0
  555. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/methods/utilities/stop_transmission.py +0 -0
  556. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/mime_types.py +0 -0
  557. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/parser/__init__.py +0 -0
  558. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/parser/html.py +0 -0
  559. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/parser/markdown.py +0 -0
  560. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/parser/parser.py +0 -0
  561. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/parser/utils.py +0 -0
  562. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/py.typed +0 -0
  563. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/qrlogin.py +0 -0
  564. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/__init__.py +0 -0
  565. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/__init__.py +0 -0
  566. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/base_type_meta.py +0 -0
  567. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/future_salt.py +0 -0
  568. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/future_salts.py +0 -0
  569. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/gzip_packed.py +0 -0
  570. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/list.py +0 -0
  571. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/message.py +0 -0
  572. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/msg_container.py +0 -0
  573. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/primitives/__init__.py +0 -0
  574. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/primitives/bool.py +0 -0
  575. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/primitives/bytes.py +0 -0
  576. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/primitives/double.py +0 -0
  577. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/primitives/int.py +0 -0
  578. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/primitives/string.py +0 -0
  579. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/primitives/vector.py +0 -0
  580. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/raw/core/tl_object.py +0 -0
  581. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/session/__init__.py +0 -0
  582. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/session/auth.py +0 -0
  583. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/session/internals/__init__.py +0 -0
  584. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/session/internals/data_center.py +0 -0
  585. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/session/internals/msg_factory.py +0 -0
  586. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/session/internals/msg_id.py +0 -0
  587. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/session/internals/seq_no.py +0 -0
  588. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/session/session.py +0 -0
  589. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/storage/__init__.py +0 -0
  590. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/storage/file_storage.py +0 -0
  591. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/storage/memory_storage.py +0 -0
  592. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/storage/sqlite_storage.py +0 -0
  593. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/storage/storage.py +0 -0
  594. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/sync.py +0 -0
  595. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/__init__.py +0 -0
  596. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/authorization/__init__.py +0 -0
  597. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/authorization/active_session.py +0 -0
  598. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/authorization/active_sessions.py +0 -0
  599. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/authorization/firebase_authentication_settings.py +0 -0
  600. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/authorization/phone_number_authentication_settings.py +0 -0
  601. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/authorization/sent_code.py +0 -0
  602. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/authorization/terms_of_service.py +0 -0
  603. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/__init__.py +0 -0
  604. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/bot_access_settings.py +0 -0
  605. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/bot_command.py +0 -0
  606. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/bot_command_scope.py +0 -0
  607. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +0 -0
  608. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +0 -0
  609. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +0 -0
  610. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/bot_command_scope_chat.py +0 -0
  611. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +0 -0
  612. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/bot_command_scope_chat_member.py +0 -0
  613. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/bot_command_scope_default.py +0 -0
  614. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/callback_game.py +0 -0
  615. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/callback_query.py +0 -0
  616. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/chat_boost_updated.py +0 -0
  617. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/chat_shared.py +0 -0
  618. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/force_reply.py +0 -0
  619. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/game_high_score.py +0 -0
  620. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/inline_keyboard_button.py +0 -0
  621. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/inline_keyboard_markup.py +0 -0
  622. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/keyboard_button.py +0 -0
  623. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/keyboard_button_poll_type.py +0 -0
  624. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/keyboard_button_request_chat.py +0 -0
  625. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/keyboard_button_request_managed_bot.py +0 -0
  626. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/keyboard_button_request_users.py +0 -0
  627. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/labeled_price.py +0 -0
  628. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/login_url.py +0 -0
  629. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/managed_bot_updated.py +0 -0
  630. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/menu_button.py +0 -0
  631. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/menu_button_commands.py +0 -0
  632. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/menu_button_default.py +0 -0
  633. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/menu_button_web_app.py +0 -0
  634. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/message_reaction_count_updated.py +0 -0
  635. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/message_reaction_updated.py +0 -0
  636. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/order_info.py +0 -0
  637. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/pre_checkout_query.py +0 -0
  638. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/purchased_paid_media.py +0 -0
  639. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/reply_keyboard_markup.py +0 -0
  640. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/reply_keyboard_remove.py +0 -0
  641. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/request_channel_info.py +0 -0
  642. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/request_chat_info.py +0 -0
  643. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/request_poll_info.py +0 -0
  644. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/request_user_info.py +0 -0
  645. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/requested_chats.py +0 -0
  646. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/sent_guest_message.py +0 -0
  647. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/sent_web_app_message.py +0 -0
  648. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/shipping_address.py +0 -0
  649. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/shipping_option.py +0 -0
  650. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/shipping_query.py +0 -0
  651. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/users_shared.py +0 -0
  652. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/bots_and_keyboards/web_app_info.py +0 -0
  653. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/__init__.py +0 -0
  654. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/chosen_inline_result.py +0 -0
  655. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query.py +0 -0
  656. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result.py +0 -0
  657. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_animation.py +0 -0
  658. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_article.py +0 -0
  659. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_audio.py +0 -0
  660. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_cached_animation.py +0 -0
  661. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_cached_audio.py +0 -0
  662. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_cached_document.py +0 -0
  663. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_cached_photo.py +0 -0
  664. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_cached_sticker.py +0 -0
  665. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_cached_video.py +0 -0
  666. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_cached_voice.py +0 -0
  667. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_contact.py +0 -0
  668. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_document.py +0 -0
  669. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_location.py +0 -0
  670. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_photo.py +0 -0
  671. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_venue.py +0 -0
  672. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_video.py +0 -0
  673. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/inline_mode/inline_query_result_voice.py +0 -0
  674. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/__init__.py +0 -0
  675. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_chat_photo.py +0 -0
  676. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_checklist.py +0 -0
  677. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_contact_message_content.py +0 -0
  678. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_credentials.py +0 -0
  679. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_credentials_apple_pay.py +0 -0
  680. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_credentials_google_pay.py +0 -0
  681. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_credentials_new.py +0 -0
  682. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_credentials_saved.py +0 -0
  683. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_invoice.py +0 -0
  684. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_invoice_message.py +0 -0
  685. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_invoice_message_content.py +0 -0
  686. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_invoice_name.py +0 -0
  687. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_location_message_content.py +0 -0
  688. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_media.py +0 -0
  689. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_media_animation.py +0 -0
  690. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_media_audio.py +0 -0
  691. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_media_document.py +0 -0
  692. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_media_live_photo.py +0 -0
  693. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_media_location.py +0 -0
  694. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_media_photo.py +0 -0
  695. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_media_sticker.py +0 -0
  696. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_media_venue.py +0 -0
  697. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_media_video.py +0 -0
  698. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_message_content.py +0 -0
  699. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_phone_contact.py +0 -0
  700. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_poll_media.py +0 -0
  701. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_poll_option.py +0 -0
  702. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_poll_option_media.py +0 -0
  703. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_privacy_rule.py +0 -0
  704. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_privacy_rule_allow_all.py +0 -0
  705. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_privacy_rule_allow_bots.py +0 -0
  706. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_privacy_rule_allow_chats.py +0 -0
  707. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_privacy_rule_allow_close_friends.py +0 -0
  708. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_privacy_rule_allow_contacts.py +0 -0
  709. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_privacy_rule_allow_premium.py +0 -0
  710. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_privacy_rule_allow_users.py +0 -0
  711. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_privacy_rule_disallow_all.py +0 -0
  712. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_privacy_rule_disallow_bots.py +0 -0
  713. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_privacy_rule_disallow_chats.py +0 -0
  714. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_privacy_rule_disallow_contacts.py +0 -0
  715. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_privacy_rule_disallow_users.py +0 -0
  716. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_text_message_content.py +0 -0
  717. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/input_content/input_venue_message_content.py +0 -0
  718. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/list.py +0 -0
  719. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/__init__.py +0 -0
  720. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/animation.py +0 -0
  721. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/auction_bid.py +0 -0
  722. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/auction_round.py +0 -0
  723. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/auction_state.py +0 -0
  724. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/audio.py +0 -0
  725. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/available_effect.py +0 -0
  726. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/boosts_status.py +0 -0
  727. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/business_message.py +0 -0
  728. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/chat_background.py +0 -0
  729. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/chat_boost.py +0 -0
  730. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/chat_has_protected_content_disable_requested.py +0 -0
  731. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/chat_has_protected_content_toggled.py +0 -0
  732. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/chat_owner_changed.py +0 -0
  733. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/chat_owner_left.py +0 -0
  734. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/chat_theme.py +0 -0
  735. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/checked_gift_code.py +0 -0
  736. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/checklist.py +0 -0
  737. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/checklist_task.py +0 -0
  738. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/checklist_tasks_added.py +0 -0
  739. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/checklist_tasks_done.py +0 -0
  740. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/contact.py +0 -0
  741. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/contact_registered.py +0 -0
  742. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/craft_gift_result.py +0 -0
  743. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/dice.py +0 -0
  744. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/direct_message_price_changed.py +0 -0
  745. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/direct_messages_topic.py +0 -0
  746. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/document.py +0 -0
  747. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/external_reply_info.py +0 -0
  748. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/fact_check.py +0 -0
  749. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/formatted_text.py +0 -0
  750. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/forum_topic.py +0 -0
  751. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/forum_topic_closed.py +0 -0
  752. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/forum_topic_created.py +0 -0
  753. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/forum_topic_edited.py +0 -0
  754. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/forum_topic_reopened.py +0 -0
  755. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/game.py +0 -0
  756. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/general_forum_topic_hidden.py +0 -0
  757. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/general_forum_topic_unhidden.py +0 -0
  758. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/gift.py +0 -0
  759. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/gift_attribute.py +0 -0
  760. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/gift_auction.py +0 -0
  761. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/gift_auction_state.py +0 -0
  762. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/gift_code.py +0 -0
  763. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/gift_collection.py +0 -0
  764. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/gift_purchase_limit.py +0 -0
  765. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/gift_resale_parameters.py +0 -0
  766. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/gift_resale_price.py +0 -0
  767. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/gift_upgrade_preview.py +0 -0
  768. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/gift_upgrade_price.py +0 -0
  769. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/gift_upgrade_variants.py +0 -0
  770. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/gifted_premium.py +0 -0
  771. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/gifted_stars.py +0 -0
  772. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/gifted_ton.py +0 -0
  773. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/giveaway.py +0 -0
  774. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/giveaway_completed.py +0 -0
  775. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/giveaway_created.py +0 -0
  776. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/giveaway_prize_stars.py +0 -0
  777. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/giveaway_result.py +0 -0
  778. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/giveaway_winners.py +0 -0
  779. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/input_checklist_task.py +0 -0
  780. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/invoice.py +0 -0
  781. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/link_preview_options.py +0 -0
  782. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/live_photo.py +0 -0
  783. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/location.py +0 -0
  784. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/managed_bot_created.py +0 -0
  785. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/mask_position.py +0 -0
  786. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/media_area.py +0 -0
  787. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/message.py +0 -0
  788. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/message_content.py +0 -0
  789. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/message_entity.py +0 -0
  790. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/message_origin.py +0 -0
  791. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/message_origin_channel.py +0 -0
  792. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/message_origin_chat.py +0 -0
  793. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/message_origin_hidden_user.py +0 -0
  794. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/message_origin_import.py +0 -0
  795. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/message_origin_user.py +0 -0
  796. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/message_reactions.py +0 -0
  797. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/my_boost.py +0 -0
  798. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/paid_media_info.py +0 -0
  799. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/paid_media_preview.py +0 -0
  800. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/paid_messages_price.py +0 -0
  801. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/paid_messages_price_changed.py +0 -0
  802. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/paid_messages_refunded.py +0 -0
  803. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/paid_reactor.py +0 -0
  804. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/payment_form.py +0 -0
  805. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/payment_option.py +0 -0
  806. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/payment_result.py +0 -0
  807. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/photo.py +0 -0
  808. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/poll.py +0 -0
  809. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/poll_option.py +0 -0
  810. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/poll_option_added.py +0 -0
  811. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/poll_option_deleted.py +0 -0
  812. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/premium_gift_code.py +0 -0
  813. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/proximity_alert_triggered.py +0 -0
  814. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/reaction.py +0 -0
  815. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/refunded_payment.py +0 -0
  816. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/reply_parameters.py +0 -0
  817. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/restriction_reason.py +0 -0
  818. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/saved_credentials.py +0 -0
  819. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/screenshot_taken.py +0 -0
  820. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/star_amount.py +0 -0
  821. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/sticker.py +0 -0
  822. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/story.py +0 -0
  823. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/story_view.py +0 -0
  824. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/stripped_thumbnail.py +0 -0
  825. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/successful_payment.py +0 -0
  826. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/suggested_post_approval_failed.py +0 -0
  827. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/suggested_post_approved.py +0 -0
  828. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/suggested_post_declined.py +0 -0
  829. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/suggested_post_info.py +0 -0
  830. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/suggested_post_paid.py +0 -0
  831. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/suggested_post_parameters.py +0 -0
  832. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/suggested_post_price.py +0 -0
  833. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/suggested_post_refunded.py +0 -0
  834. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/text_quote.py +0 -0
  835. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/thumbnail.py +0 -0
  836. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/upgraded_gift_attribute_id.py +0 -0
  837. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/upgraded_gift_attribute_id_backdrop.py +0 -0
  838. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/upgraded_gift_attribute_id_model.py +0 -0
  839. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/upgraded_gift_attribute_id_symbol.py +0 -0
  840. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/upgraded_gift_attribute_rarity.py +0 -0
  841. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/upgraded_gift_original_details.py +0 -0
  842. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/upgraded_gift_purchase_offer.py +0 -0
  843. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/upgraded_gift_value_info.py +0 -0
  844. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/venue.py +0 -0
  845. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/video.py +0 -0
  846. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/video_note.py +0 -0
  847. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/voice.py +0 -0
  848. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/web_app_data.py +0 -0
  849. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/web_page.py +0 -0
  850. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/messages_and_media/write_access_allowed.py +0 -0
  851. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/object.py +0 -0
  852. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/update.py +0 -0
  853. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/__init__.py +0 -0
  854. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/accepted_gift_types.py +0 -0
  855. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/allowed_gifts_settings.py +0 -0
  856. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/birthday.py +0 -0
  857. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/bot_verification.py +0 -0
  858. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/business_bot_permissions.py +0 -0
  859. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/business_bot_rights.py +0 -0
  860. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/business_connection.py +0 -0
  861. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/business_info.py +0 -0
  862. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/business_intro.py +0 -0
  863. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/business_recipients.py +0 -0
  864. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/business_weekly_open.py +0 -0
  865. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/business_working_hours.py +0 -0
  866. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat.py +0 -0
  867. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_admin_with_invite_links.py +0 -0
  868. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_administrator_rights.py +0 -0
  869. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_color.py +0 -0
  870. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_event.py +0 -0
  871. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_event_filter.py +0 -0
  872. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_folder_invite_link_info.py +0 -0
  873. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_invite_link.py +0 -0
  874. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_join_request.py +0 -0
  875. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_joiner.py +0 -0
  876. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_member.py +0 -0
  877. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_member_updated.py +0 -0
  878. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_permissions.py +0 -0
  879. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_photo.py +0 -0
  880. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_privileges.py +0 -0
  881. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_reactions.py +0 -0
  882. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/chat_settings.py +0 -0
  883. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/dialog.py +0 -0
  884. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/emoji_status.py +0 -0
  885. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/failed_to_add_member.py +0 -0
  886. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/folder.py +0 -0
  887. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/folder_invite_link.py +0 -0
  888. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/found_contacts.py +0 -0
  889. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/global_privacy_settings.py +0 -0
  890. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/group_call_member.py +0 -0
  891. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/history_cleared.py +0 -0
  892. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/invite_link_importer.py +0 -0
  893. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/phone_call_ended.py +0 -0
  894. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/phone_call_started.py +0 -0
  895. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/privacy_rule.py +0 -0
  896. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/restriction.py +0 -0
  897. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/stories_stealth_mode.py +0 -0
  898. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/user.py +0 -0
  899. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/user_rating.py +0 -0
  900. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/username.py +0 -0
  901. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/verification_status.py +0 -0
  902. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/video_chat_ended.py +0 -0
  903. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/video_chat_members_invited.py +0 -0
  904. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/video_chat_scheduled.py +0 -0
  905. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/types/user_and_chats/video_chat_started.py +0 -0
  906. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd/utils.py +0 -0
  907. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd.egg-info/SOURCES.txt +0 -0
  908. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd.egg-info/dependency_links.txt +0 -0
  909. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd.egg-info/not-zip-safe +0 -0
  910. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd.egg-info/requires.txt +0 -0
  911. {pyroherd-0.2.2 → pyroherd-0.2.4}/pyroherd.egg-info/top_level.txt +0 -0
  912. {pyroherd-0.2.2 → pyroherd-0.2.4}/requirements.txt +0 -0
  913. {pyroherd-0.2.2 → pyroherd-0.2.4}/setup.cfg +0 -0
  914. {pyroherd-0.2.2 → pyroherd-0.2.4}/setup.py +0 -0
  915. {pyroherd-0.2.2 → pyroherd-0.2.4}/tests/__init__.py +0 -0
  916. {pyroherd-0.2.2 → pyroherd-0.2.4}/tests/filters/__init__.py +0 -0
  917. {pyroherd-0.2.2 → pyroherd-0.2.4}/tests/filters/test_command.py +0 -0
  918. {pyroherd-0.2.2 → pyroherd-0.2.4}/tests/parser/__init__.py +0 -0
  919. {pyroherd-0.2.2 → pyroherd-0.2.4}/tests/parser/test_html.py +0 -0
  920. {pyroherd-0.2.2 → pyroherd-0.2.4}/tests/parser/test_markdown.py +0 -0
  921. {pyroherd-0.2.2 → pyroherd-0.2.4}/tests/test_file_id.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyroherd
3
- Version: 0.2.2
3
+ Version: 0.2.4
4
4
  Summary: Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots
5
5
  Home-page: https://github.com/SatrugnaFD
6
6
  Download-URL: https://github.com/SatrugnaFD/pyroherd/releases/latest
@@ -16,7 +16,7 @@
16
16
  # You should have received a copy of the GNU Lesser General Public License
17
17
  # along with Pyroherd. If not, see <http://www.gnu.org/licenses/>.
18
18
 
19
- __version__ = "0.2.2"
19
+ __version__ = "0.2.4"
20
20
  __license__ = "GNU Lesser General Public License v3.0 (LGPL-3.0)"
21
21
  __copyright__ = "Copyright (C) 2023-present SatrugnaFD <https://github.com/SatrugnaFD>"
22
22
 
@@ -17,14 +17,12 @@
17
17
  # along with Pyroherd. If not, see <http://www.gnu.org/licenses/>.
18
18
 
19
19
  from .invoke import Invoke
20
- from .recover_gaps import RecoverGaps
21
20
  from .resolve_peer import ResolvePeer
22
21
  from .save_file import SaveFile
23
22
 
24
23
 
25
24
  class Advanced(
26
25
  Invoke,
27
- RecoverGaps,
28
26
  ResolvePeer,
29
27
  SaveFile
30
28
  ):
@@ -17,29 +17,25 @@
17
17
  # along with Pyroherd. If not, see <http://www.gnu.org/licenses/>.
18
18
 
19
19
  import logging
20
- from typing import TypeVar
21
20
 
22
21
  import pyroherd
23
22
  from pyroherd import raw
24
23
  from pyroherd.raw.core import TLObject
25
24
  from pyroherd.session import Session
25
+ from pyroherd.methods.messages.business_session import get_session
26
26
 
27
27
  log = logging.getLogger(__name__)
28
28
 
29
- ReturnType = TypeVar('ReturnType')
30
-
31
29
 
32
30
  class Invoke:
33
31
  async def invoke(
34
32
  self: "pyroherd.Client",
35
- query: TLObject[ReturnType],
33
+ query: TLObject,
36
34
  retries: int = Session.MAX_RETRIES,
37
35
  timeout: float = Session.WAIT_TIMEOUT,
38
36
  sleep_threshold: float = None,
39
- retry_delay: float = Session.RETRY_DELAY,
40
- recaptcha_token: str = None,
41
37
  business_connection_id: str = None
42
- ) -> ReturnType:
38
+ ):
43
39
  """Invoke raw Telegram functions.
44
40
 
45
41
  This method makes it possible to manually call every single Telegram API method in a low-level manner.
@@ -58,21 +54,15 @@ class Invoke:
58
54
  query (``RawFunction``):
59
55
  The API Schema function filled with proper arguments.
60
56
 
61
- retries (``int``, *optional*):
57
+ retries (``int``):
62
58
  Number of retries.
63
59
 
64
- timeout (``float``, *optional*):
60
+ timeout (``float``):
65
61
  Timeout in seconds.
66
62
 
67
- sleep_threshold (``float``, *optional*):
63
+ sleep_threshold (``float``):
68
64
  Sleep threshold in seconds.
69
65
 
70
- retry_delay (``float``, *optional*):
71
- Retry delay in seconds on errors.
72
-
73
- recaptcha_token (``str``, *optional*):
74
- ReCaptcha token.
75
-
76
66
  business_connection_id (``str``, *optional*):
77
67
  Unique identifier of the business connection.
78
68
 
@@ -93,10 +83,7 @@ class Invoke:
93
83
  query=query
94
84
  )
95
85
 
96
- session = await self.get_session(business_connection_id=business_connection_id)
97
-
98
- if recaptcha_token:
99
- query = raw.functions.InvokeWithReCaptcha(token=recaptcha_token, query=query)
86
+ session = await get_session(self, business_connection_id)
100
87
 
101
88
  if self.no_updates:
102
89
  query = raw.functions.InvokeWithoutUpdates(query=query)
@@ -105,11 +92,10 @@ class Invoke:
105
92
  query = raw.functions.InvokeWithTakeout(takeout_id=self.takeout_id, query=query)
106
93
 
107
94
  r = await session.invoke(
108
- query=query, retries=retries, timeout=timeout,
109
- sleep_threshold=(
110
- sleep_threshold if sleep_threshold is not None else self.sleep_threshold
111
- ),
112
- retry_delay=retry_delay
95
+ query, retries, timeout,
96
+ (sleep_threshold
97
+ if sleep_threshold is not None
98
+ else self.sleep_threshold)
113
99
  )
114
100
 
115
101
  await self.fetch_peers(getattr(r, "users", []))
@@ -0,0 +1,125 @@
1
+ # Pyroherd - Telegram MTProto API Client Library for Python
2
+ # Copyright (C) 2023-present SatrugnaFD <https://github.com/SatrugnaFD>
3
+ #
4
+ # This file is part of Pyroherd.
5
+ #
6
+ # Pyroherd is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as published
8
+ # by the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
+ #
11
+ # Pyroherd is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
+ #
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Pyroherd. If not, see <http://www.gnu.org/licenses/>.
18
+
19
+ import logging
20
+ import re
21
+ from typing import Union
22
+
23
+ import pyroherd
24
+ from pyroherd import raw
25
+ from pyroherd import utils
26
+ from pyroherd.errors import PeerIdInvalid
27
+
28
+ log = logging.getLogger(__name__)
29
+
30
+
31
+ class ResolvePeer:
32
+ async def resolve_peer(
33
+ self: "pyroherd.Client",
34
+ peer_id: Union[int, str]
35
+ ) -> Union[raw.base.InputPeer, raw.base.InputUser, raw.base.InputChannel]:
36
+ """Get the InputPeer of a known peer id.
37
+ Useful whenever an InputPeer type is required.
38
+
39
+ .. note::
40
+
41
+ This is a utility method intended to be used **only** when working with raw
42
+ :obj:`functions <pyroherd.api.functions>` (i.e: a Telegram API method you wish to use which is not
43
+ available yet in the Client class as an easy-to-use method).
44
+
45
+ .. include:: /_includes/usable-by/users-bots.rst
46
+
47
+ Parameters:
48
+ peer_id (``int`` | ``str``):
49
+ The peer id you want to extract the InputPeer from.
50
+ Can be a direct id (int), a username (str) or a phone number (str).
51
+
52
+ Returns:
53
+ ``InputPeer``: On success, the resolved peer id is returned in form of an InputPeer object.
54
+
55
+ Raises:
56
+ KeyError: In case the peer doesn't exist in the internal database.
57
+ """
58
+ if not self.is_connected:
59
+ raise ConnectionError("Client has not been started yet")
60
+
61
+ try:
62
+ return await self.storage.get_peer_by_id(peer_id)
63
+ except KeyError:
64
+ if isinstance(peer_id, str):
65
+ if peer_id in ("self", "me"):
66
+ return raw.types.InputPeerSelf()
67
+
68
+ peer_id = re.sub(r"[@+\s]", "", peer_id.lower())
69
+
70
+ try:
71
+ int(peer_id)
72
+ except ValueError:
73
+ try:
74
+ return await self.storage.get_peer_by_username(peer_id)
75
+ except KeyError:
76
+ await self.invoke(
77
+ raw.functions.contacts.ResolveUsername(
78
+ username=peer_id
79
+ )
80
+ )
81
+
82
+ return await self.storage.get_peer_by_username(peer_id)
83
+ else:
84
+ try:
85
+ return await self.storage.get_peer_by_phone_number(peer_id)
86
+ except KeyError:
87
+ raise PeerIdInvalid
88
+
89
+ peer_type = utils.get_peer_type(peer_id)
90
+
91
+ if peer_type == "user":
92
+ await self.fetch_peers(
93
+ await self.invoke(
94
+ raw.functions.users.GetUsers(
95
+ id=[
96
+ raw.types.InputUser(
97
+ user_id=peer_id,
98
+ access_hash=0
99
+ )
100
+ ]
101
+ )
102
+ )
103
+ )
104
+ elif peer_type == "chat":
105
+ await self.invoke(
106
+ raw.functions.messages.GetChats(
107
+ id=[-peer_id]
108
+ )
109
+ )
110
+ else:
111
+ await self.invoke(
112
+ raw.functions.channels.GetChannels(
113
+ id=[
114
+ raw.types.InputChannel(
115
+ channel_id=utils.get_channel_id(peer_id),
116
+ access_hash=0
117
+ )
118
+ ]
119
+ )
120
+ )
121
+
122
+ try:
123
+ return await self.storage.get_peer_by_id(peer_id)
124
+ except KeyError:
125
+ raise PeerIdInvalid
@@ -144,7 +144,13 @@ class SaveFile:
144
144
  md5_sum = md5() if not is_big and not is_missing_part else None
145
145
  dc_id = await self.storage.dc_id()
146
146
 
147
- session = await self.get_session(dc_id, is_media=True)
147
+ session = self.media_sessions.get(dc_id)
148
+ if not session:
149
+ session = self.media_sessions[dc_id] = Session(
150
+ self, dc_id, await self.storage.auth_key(),
151
+ await self.storage.test_mode(), is_media=True
152
+ )
153
+ await session.start()
148
154
 
149
155
  workers = [self.loop.create_task(worker(session)) for _ in range(workers_count)]
150
156
  queue = asyncio.Queue(1)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyroherd
3
- Version: 0.2.2
3
+ Version: 0.2.4
4
4
  Summary: Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots
5
5
  Home-page: https://github.com/SatrugnaFD
6
6
  Download-URL: https://github.com/SatrugnaFD/pyroherd/releases/latest
@@ -1,153 +0,0 @@
1
- # Pyroherd - Telegram MTProto API Client Library for Python
2
- # Copyright (C) 2023-present SatrugnaFD <https://github.com/SatrugnaFD>
3
- #
4
- # This file is part of Pyroherd.
5
- #
6
- # Pyroherd is free software: you can redistribute it and/or modify
7
- # it under the terms of the GNU Lesser General Public License as published
8
- # by the Free Software Foundation, either version 3 of the License, or
9
- # (at your option) any later version.
10
- #
11
- # Pyroherd is distributed in the hope that it will be useful,
12
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
- # GNU Lesser General Public License for more details.
15
- #
16
- # You should have received a copy of the GNU Lesser General Public License
17
- # along with Pyroherd. If not, see <http://www.gnu.org/licenses/>.
18
-
19
- import re
20
- from typing import Optional, Union
21
-
22
- import pyroherd
23
- from pyroherd import raw, utils
24
- from pyroherd.errors import PeerIdInvalid
25
-
26
-
27
- class ResolvePeer:
28
- async def resolve_peer(
29
- self: "pyroherd.Client",
30
- peer_id: Union[int, str]
31
- ) -> Optional["raw.base.InputPeer"]:
32
- """Get the InputPeer of a known peer id. Useful whenever an InputPeer type is required.
33
-
34
- .. note::
35
-
36
- This is a utility method intended to be used **only** when working with raw
37
- :obj:`functions <pyroherd.api.functions>` (i.e: a Telegram API method you wish to use which is not
38
- available yet in the Client class as an easy-to-use method).
39
-
40
- .. include:: /_includes/usable-by/users-bots.rst
41
-
42
- Parameters:
43
- peer_id (``int`` | ``str``):
44
- The peer id you want to extract the InputPeer from.
45
- Can be a direct id (int), a username (str), a link (str) or a phone number (str).
46
-
47
- Returns:
48
- :obj:`~pyroherd.raw.base.InputPeer`: On success, the resolved peer id is returned in form of an InputPeer object.
49
-
50
- Raises:
51
- KeyError: In case the peer doesn't exist in the internal database.
52
- """
53
- if not self.is_connected:
54
- raise ConnectionError("Client has not been started yet")
55
-
56
- if peer_id is None:
57
- return None
58
-
59
- if peer_id in ("self", "me"):
60
- return raw.types.InputPeerSelf()
61
-
62
- if peer_id == "empty":
63
- return raw.types.InputPeerEmpty()
64
-
65
- if isinstance(peer_id, int):
66
- try:
67
- return await self.storage.get_peer_by_id(peer_id)
68
- except KeyError:
69
- peer_type = utils.get_peer_type(peer_id)
70
-
71
- if peer_type == "user":
72
- await self.fetch_peers(
73
- await self.invoke(
74
- raw.functions.users.GetUsers(
75
- id=[
76
- raw.types.InputUser(
77
- user_id=utils.get_raw_peer_id(peer_id),
78
- access_hash=0
79
- )
80
- ]
81
- )
82
- )
83
- )
84
- elif peer_type == "chat":
85
- await self.invoke(
86
- raw.functions.messages.GetChats(
87
- id=[utils.get_raw_peer_id(peer_id)]
88
- )
89
- )
90
- else:
91
- await self.invoke(
92
- raw.functions.channels.GetChannels(
93
- id=[
94
- raw.types.InputChannel(
95
- channel_id=utils.get_raw_peer_id(peer_id),
96
- access_hash=0
97
- )
98
- ]
99
- )
100
- )
101
-
102
- try:
103
- return await self.storage.get_peer_by_id(peer_id)
104
- except KeyError as e:
105
- raise PeerIdInvalid from e
106
- elif isinstance(peer_id, str):
107
- phone = re.sub(r'[+()\s-]', '', peer_id)
108
-
109
- if phone.isdigit():
110
- try:
111
- return await self.storage.get_peer_by_phone_number(phone)
112
- except KeyError:
113
- r = await self.invoke(
114
- raw.functions.contacts.ResolvePhone(
115
- phone=phone
116
- )
117
- )
118
-
119
- return await self.storage.get_peer_by_id(utils.get_peer_id(r.peer))
120
- else:
121
- username = None
122
- channel_id = None
123
-
124
- match = self.CHANNEL_MESSAGE_LINK_RE.match(peer_id.lower())
125
-
126
- if match:
127
- try:
128
- channel_id = utils.get_channel_id(int(match.group(1)))
129
- except ValueError:
130
- username = match.group(1)
131
- else:
132
- username = re.sub(r"[@+\s]", "", peer_id.lower())
133
-
134
- if channel_id:
135
- try:
136
- return await self.storage.get_peer_by_id(channel_id)
137
- except KeyError as e:
138
- raise PeerIdInvalid from e
139
- elif username:
140
- try:
141
- return await self.storage.get_peer_by_username(username)
142
- except KeyError:
143
- r = await self.invoke(
144
- raw.functions.contacts.ResolveUsername(
145
- username=username
146
- )
147
- )
148
-
149
- return await self.storage.get_peer_by_id(utils.get_peer_id(r.peer))
150
- else:
151
- raise PeerIdInvalid
152
- else:
153
- raise PeerIdInvalid
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes