WPyrogram 2.0.139__tar.gz → 2.0.141__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 (558) hide show
  1. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/PKG-INFO +3 -3
  2. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/WPyrogram.egg-info/PKG-INFO +3 -3
  3. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/WPyrogram.egg-info/SOURCES.txt +16 -0
  4. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/api/source/main_api.tl +119 -25
  5. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/docs/compiler.py +112 -2
  6. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/errors/source/400_BAD_REQUEST.tsv +14 -5
  7. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/errors/source/403_FORBIDDEN.tsv +7 -5
  8. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/errors/source/406_NOT_ACCEPTABLE.tsv +2 -0
  9. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/errors/source/420_FLOOD.tsv +3 -1
  10. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/errors/source/500_INTERNAL_SERVER_ERROR.tsv +2 -2
  11. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/errors/source/503_SERVICE_UNAVAILABLE.tsv +1 -1
  12. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/__init__.py +4 -4
  13. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/client.py +73 -10
  14. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/dispatcher.py +93 -2
  15. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/__init__.py +4 -0
  16. WPyrogram-2.0.141/pyrogram/enums/business_schedule.py +33 -0
  17. WPyrogram-2.0.141/pyrogram/enums/folder_color.py +47 -0
  18. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/message_service_type.py +6 -0
  19. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/filters.py +8 -11
  20. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/story_handler.py +1 -1
  21. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/send_code.py +52 -2
  22. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/send_inline_bot_result.py +16 -5
  23. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/__init__.py +5 -1
  24. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/close_forum_topic.py +1 -1
  25. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/create_forum_topic.py +1 -1
  26. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/delete_folder.py +1 -1
  27. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/delete_forum_topic.py +1 -1
  28. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/edit_forum_topic.py +1 -1
  29. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/export_folder_link.py +1 -1
  30. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/get_chat_event_log.py +1 -1
  31. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/get_chat_members.py +1 -1
  32. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/get_dialogs.py +11 -4
  33. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/get_folders.py +31 -24
  34. WPyrogram-2.0.141/pyrogram/methods/chats/get_forum_topics.py +103 -0
  35. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/get_forum_topics_by_id.py +12 -4
  36. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/get_send_as_chats.py +3 -3
  37. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/get_similar_channels.py +1 -1
  38. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/join_folder.py +1 -1
  39. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/leave_folder.py +1 -1
  40. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/promote_chat_member.py +3 -0
  41. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/set_chat_ttl.py +10 -2
  42. WPyrogram-2.0.141/pyrogram/methods/chats/toggle_folder_tags.py +50 -0
  43. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/toggle_forum_topics.py +1 -1
  44. WPyrogram-2.0.141/pyrogram/methods/chats/toggle_join_to_send.py +65 -0
  45. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/update_chat_notifications.py +1 -1
  46. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/update_color.py +1 -1
  47. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/update_folder.py +9 -2
  48. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/decorators/on_callback_query.py +4 -4
  49. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/decorators/on_chat_join_request.py +4 -4
  50. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/decorators/on_chat_member_updated.py +4 -4
  51. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/decorators/on_chosen_inline_result.py +4 -4
  52. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/decorators/on_deleted_messages.py +4 -4
  53. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/decorators/on_disconnect.py +2 -2
  54. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/decorators/on_edited_message.py +4 -4
  55. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/decorators/on_inline_query.py +4 -4
  56. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/decorators/on_message.py +4 -4
  57. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/decorators/on_poll.py +4 -4
  58. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/decorators/on_raw_update.py +3 -3
  59. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/decorators/on_story.py +5 -5
  60. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/decorators/on_user_status.py +4 -4
  61. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/get_chat_invite_link.py +1 -1
  62. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/__init__.py +8 -0
  63. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/copy_media_group.py +3 -3
  64. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/download_media.py +13 -6
  65. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/edit_message_media.py +3 -3
  66. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/edit_message_text.py +6 -0
  67. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/forward_messages.py +10 -0
  68. WPyrogram-2.0.141/pyrogram/methods/messages/get_history.py +79 -0
  69. WPyrogram-2.0.141/pyrogram/methods/messages/get_message_by_link.py +118 -0
  70. WPyrogram-2.0.141/pyrogram/methods/messages/get_scheduled_messages.py +61 -0
  71. WPyrogram-2.0.141/pyrogram/methods/messages/get_stickers.py +64 -0
  72. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_audio.py +8 -2
  73. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_cached_media.py +3 -3
  74. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_media_group.py +5 -3
  75. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_message.py +3 -3
  76. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_video.py +7 -0
  77. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_video_note.py +12 -2
  78. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_voice.py +13 -8
  79. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_web_page.py +30 -16
  80. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/vote_poll.py +1 -1
  81. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/__init__.py +0 -2
  82. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/increment_story_views.py +7 -5
  83. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/send_story.py +6 -1
  84. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/users/__init__.py +2 -0
  85. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/users/block_user.py +2 -4
  86. WPyrogram-2.0.141/pyrogram/methods/users/check_username.py +66 -0
  87. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/users/set_profile_photo.py +11 -1
  88. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/users/unblock_user.py +2 -4
  89. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/utilities/stop_transmission.py +1 -2
  90. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/parser/html.py +2 -2
  91. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/parser/markdown.py +55 -4
  92. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/parser/parser.py +3 -3
  93. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/parser/utils.py +2 -2
  94. WPyrogram-2.0.141/pyrogram/py.typed +0 -0
  95. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/core/primitives/vector.py +7 -0
  96. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/session/session.py +19 -4
  97. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/storage/file_storage.py +19 -2
  98. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/storage/sqlite_storage.py +48 -14
  99. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/storage/storage.py +40 -2
  100. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/__init__.py +2 -0
  101. WPyrogram-2.0.141/pyrogram/types/bots_and_keyboards/keyboard_button.py +276 -0
  102. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/request_channel_info.py +1 -1
  103. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/request_chat_info.py +1 -1
  104. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/request_poll_info.py +1 -1
  105. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/request_user_info.py +1 -1
  106. WPyrogram-2.0.141/pyrogram/types/bots_and_keyboards/requested_chats.py +77 -0
  107. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/input_media/input_media_video.py +6 -0
  108. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/input_message_content/__init__.py +2 -4
  109. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/__init__.py +1 -1
  110. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/forum_topic.py +9 -1
  111. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/gift_code.py +1 -1
  112. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/giveaway.py +1 -1
  113. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/giveaway_result.py +1 -1
  114. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/message.py +235 -52
  115. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/my_boost.py +3 -3
  116. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/poll.py +0 -37
  117. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/story.py +34 -28
  118. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/video_note.py +9 -2
  119. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/voice.py +8 -2
  120. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/web_page.py +12 -12
  121. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/object.py +14 -8
  122. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/update.py +2 -4
  123. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/__init__.py +11 -1
  124. WPyrogram-2.0.141/pyrogram/types/user_and_chats/business_info.py +81 -0
  125. WPyrogram-2.0.141/pyrogram/types/user_and_chats/business_message.py +111 -0
  126. WPyrogram-2.0.141/pyrogram/types/user_and_chats/business_recipients.py +78 -0
  127. WPyrogram-2.0.141/pyrogram/types/user_and_chats/business_weekly_open.py +49 -0
  128. WPyrogram-2.0.141/pyrogram/types/user_and_chats/business_working_hours.py +62 -0
  129. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/chat.py +9 -3
  130. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/chat_event.py +1 -1
  131. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/folder.py +48 -2
  132. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/user.py +6 -3
  133. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/utils.py +11 -1
  134. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/setup.py +2 -2
  135. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/tests/parser/test_markdown.py +24 -0
  136. WPyrogram-2.0.139/pyrogram/methods/chats/get_forum_topics.py +0 -64
  137. WPyrogram-2.0.139/pyrogram/types/bots_and_keyboards/keyboard_button.py +0 -95
  138. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/COPYING +0 -0
  139. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/COPYING.lesser +0 -0
  140. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/MANIFEST.in +0 -0
  141. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/NOTICE +0 -0
  142. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/README.md +0 -0
  143. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/WPyrogram.egg-info/dependency_links.txt +0 -0
  144. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/WPyrogram.egg-info/not-zip-safe +0 -0
  145. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/WPyrogram.egg-info/requires.txt +0 -0
  146. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/WPyrogram.egg-info/top_level.txt +0 -0
  147. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/__init__.py +0 -0
  148. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/api/__init__.py +0 -0
  149. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/api/compiler.py +0 -0
  150. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/api/source/auth_key.tl +0 -0
  151. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/api/source/sys_msgs.tl +0 -0
  152. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/api/template/combinator.txt +0 -0
  153. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/api/template/type.txt +0 -0
  154. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/docs/__init__.py +0 -0
  155. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/docs/template/page.txt +0 -0
  156. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/docs/template/toctree.txt +0 -0
  157. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/errors/__init__.py +0 -0
  158. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/errors/compiler.py +0 -0
  159. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/errors/sort.py +0 -0
  160. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/errors/source/303_SEE_OTHER.tsv +0 -0
  161. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/errors/source/401_UNAUTHORIZED.tsv +0 -0
  162. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/errors/template/class.txt +0 -0
  163. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/compiler/errors/template/sub_class.txt +0 -0
  164. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/connection/__init__.py +0 -0
  165. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/connection/connection.py +0 -0
  166. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/connection/transport/__init__.py +0 -0
  167. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/connection/transport/tcp/__init__.py +0 -0
  168. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/connection/transport/tcp/tcp.py +0 -0
  169. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/connection/transport/tcp/tcp_abridged.py +0 -0
  170. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/connection/transport/tcp/tcp_abridged_o.py +0 -0
  171. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/connection/transport/tcp/tcp_full.py +0 -0
  172. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/connection/transport/tcp/tcp_intermediate.py +0 -0
  173. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/connection/transport/tcp/tcp_intermediate_o.py +0 -0
  174. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/crypto/__init__.py +0 -0
  175. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/crypto/aes.py +0 -0
  176. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/crypto/mtproto.py +0 -0
  177. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/crypto/prime.py +0 -0
  178. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/crypto/rsa.py +0 -0
  179. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/emoji.py +0 -0
  180. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/auto_name.py +0 -0
  181. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/chat_action.py +0 -0
  182. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/chat_event_action.py +0 -0
  183. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/chat_member_status.py +0 -0
  184. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/chat_members_filter.py +0 -0
  185. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/chat_type.py +0 -0
  186. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/message_entity_type.py +0 -0
  187. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/message_media_type.py +0 -0
  188. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/messages_filter.py +0 -0
  189. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/next_code_type.py +0 -0
  190. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/parse_mode.py +0 -0
  191. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/poll_type.py +0 -0
  192. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/profile_color.py +0 -0
  193. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/reply_color.py +0 -0
  194. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/sent_code_type.py +0 -0
  195. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/stories_privacy_rules.py +0 -0
  196. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/enums/user_status.py +0 -0
  197. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/errors/__init__.py +0 -0
  198. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/errors/rpc_error.py +0 -0
  199. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/file_id.py +0 -0
  200. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/__init__.py +0 -0
  201. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/callback_query_handler.py +0 -0
  202. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/chat_join_request_handler.py +0 -0
  203. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/chat_member_updated_handler.py +0 -0
  204. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/chosen_inline_result_handler.py +0 -0
  205. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/conversation_handler.py +0 -0
  206. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/deleted_messages_handler.py +0 -0
  207. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/disconnect_handler.py +0 -0
  208. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/edited_message_handler.py +0 -0
  209. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/handler.py +0 -0
  210. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/inline_query_handler.py +0 -0
  211. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/message_handler.py +0 -0
  212. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/poll_handler.py +0 -0
  213. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/raw_update_handler.py +0 -0
  214. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/handlers/user_status_handler.py +0 -0
  215. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/helpers/__init__.py +0 -0
  216. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/helpers/helpers.py +0 -0
  217. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/__init__.py +0 -0
  218. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/advanced/__init__.py +0 -0
  219. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/advanced/invoke.py +0 -0
  220. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/advanced/resolve_peer.py +0 -0
  221. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/advanced/save_file.py +0 -0
  222. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/__init__.py +0 -0
  223. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/accept_terms_of_service.py +0 -0
  224. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/check_password.py +0 -0
  225. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/connect.py +0 -0
  226. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/disconnect.py +0 -0
  227. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/get_password_hint.py +0 -0
  228. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/initialize.py +0 -0
  229. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/log_out.py +0 -0
  230. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/recover_password.py +0 -0
  231. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/resend_code.py +0 -0
  232. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/send_recovery_code.py +0 -0
  233. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/sign_in.py +0 -0
  234. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/sign_in_bot.py +0 -0
  235. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/sign_up.py +0 -0
  236. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/auth/terminate.py +0 -0
  237. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/__init__.py +0 -0
  238. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/answer_callback_query.py +0 -0
  239. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/answer_inline_query.py +0 -0
  240. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/answer_web_app_query.py +0 -0
  241. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/delete_bot_commands.py +0 -0
  242. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/get_bot_commands.py +0 -0
  243. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/get_bot_default_privileges.py +0 -0
  244. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/get_chat_menu_button.py +0 -0
  245. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/get_game_high_scores.py +0 -0
  246. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/get_inline_bot_results.py +0 -0
  247. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/request_callback_answer.py +0 -0
  248. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/send_game.py +0 -0
  249. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/set_bot_commands.py +0 -0
  250. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/set_bot_default_privileges.py +0 -0
  251. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/set_chat_menu_button.py +0 -0
  252. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/bots/set_game_score.py +0 -0
  253. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/add_chat_members.py +0 -0
  254. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/archive_chats.py +0 -0
  255. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/ban_chat_member.py +0 -0
  256. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/create_channel.py +0 -0
  257. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/create_group.py +0 -0
  258. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/create_supergroup.py +0 -0
  259. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/delete_channel.py +0 -0
  260. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/delete_chat_photo.py +0 -0
  261. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/delete_supergroup.py +0 -0
  262. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/delete_user_history.py +0 -0
  263. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/get_chat.py +0 -0
  264. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/get_chat_member.py +0 -0
  265. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/get_chat_members_count.py +0 -0
  266. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/get_chat_online_count.py +0 -0
  267. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/get_dialogs_count.py +0 -0
  268. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/get_nearby_chats.py +0 -0
  269. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/join_chat.py +0 -0
  270. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/leave_chat.py +0 -0
  271. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/mark_chat_unread.py +0 -0
  272. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/pin_chat_message.py +0 -0
  273. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/restrict_chat_member.py +0 -0
  274. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/set_administrator_title.py +0 -0
  275. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/set_chat_description.py +0 -0
  276. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/set_chat_permissions.py +0 -0
  277. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/set_chat_photo.py +0 -0
  278. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/set_chat_protected_content.py +0 -0
  279. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/set_chat_title.py +0 -0
  280. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/set_chat_username.py +0 -0
  281. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/set_send_as_chat.py +0 -0
  282. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/set_slow_mode.py +0 -0
  283. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/unarchive_chats.py +0 -0
  284. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/unban_chat_member.py +0 -0
  285. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/unpin_all_chat_messages.py +0 -0
  286. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/chats/unpin_chat_message.py +0 -0
  287. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/contacts/__init__.py +0 -0
  288. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/contacts/add_contact.py +0 -0
  289. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/contacts/delete_contacts.py +0 -0
  290. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/contacts/get_contacts.py +0 -0
  291. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/contacts/get_contacts_count.py +0 -0
  292. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/contacts/import_contacts.py +0 -0
  293. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/decorators/__init__.py +0 -0
  294. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/__init__.py +0 -0
  295. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/approve_all_chat_join_requests.py +0 -0
  296. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/approve_chat_join_request.py +0 -0
  297. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/create_chat_invite_link.py +0 -0
  298. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/decline_all_chat_join_requests.py +0 -0
  299. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/decline_chat_join_request.py +0 -0
  300. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/delete_chat_admin_invite_links.py +0 -0
  301. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/delete_chat_invite_link.py +0 -0
  302. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/edit_chat_invite_link.py +0 -0
  303. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/export_chat_invite_link.py +0 -0
  304. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/get_chat_admin_invite_links.py +0 -0
  305. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py +0 -0
  306. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py +0 -0
  307. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/get_chat_invite_link_joiners.py +0 -0
  308. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py +0 -0
  309. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/get_chat_join_requests.py +0 -0
  310. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/invite_links/revoke_chat_invite_link.py +0 -0
  311. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/copy_message.py +0 -0
  312. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/delete_messages.py +0 -0
  313. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/edit_inline_caption.py +0 -0
  314. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/edit_inline_media.py +0 -0
  315. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/edit_inline_reply_markup.py +0 -0
  316. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/edit_inline_text.py +0 -0
  317. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/edit_message_caption.py +0 -0
  318. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/edit_message_reply_markup.py +0 -0
  319. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/get_chat_history.py +0 -0
  320. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/get_chat_history_count.py +0 -0
  321. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/get_custom_emoji_stickers.py +0 -0
  322. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/get_discussion_message.py +0 -0
  323. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/get_discussion_replies.py +0 -0
  324. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/get_discussion_replies_count.py +0 -0
  325. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/get_media_group.py +0 -0
  326. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/get_messages.py +0 -0
  327. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/inline_session.py +0 -0
  328. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/read_chat_history.py +0 -0
  329. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/read_mentions.py +0 -0
  330. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/read_reactions.py +0 -0
  331. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/retract_vote.py +0 -0
  332. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/search_global.py +0 -0
  333. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/search_global_count.py +0 -0
  334. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/search_messages.py +0 -0
  335. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/search_messages_count.py +0 -0
  336. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_animation.py +0 -0
  337. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_chat_action.py +0 -0
  338. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_contact.py +0 -0
  339. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_dice.py +0 -0
  340. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_document.py +0 -0
  341. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_location.py +0 -0
  342. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_photo.py +0 -0
  343. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_poll.py +0 -0
  344. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_reaction.py +4 -4
  345. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_sticker.py +0 -0
  346. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/send_venue.py +0 -0
  347. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/start_bot.py +0 -0
  348. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/stop_poll.py +0 -0
  349. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/stream_media.py +0 -0
  350. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/wait_for_callback_query.py +0 -0
  351. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/messages/wait_for_message.py +0 -0
  352. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/password/__init__.py +0 -0
  353. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/password/change_cloud_password.py +0 -0
  354. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/password/enable_cloud_password.py +0 -0
  355. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/password/remove_cloud_password.py +0 -0
  356. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/premium/__init__.py +0 -0
  357. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/premium/apply_boost.py +0 -0
  358. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/premium/get_boosts.py +0 -0
  359. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/premium/get_boosts_status.py +0 -0
  360. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/can_send_story.py +0 -0
  361. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/copy_story.py +0 -0
  362. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/delete_stories.py +0 -0
  363. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/edit_story_caption.py +0 -0
  364. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/edit_story_media.py +0 -0
  365. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/edit_story_privacy.py +0 -0
  366. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/export_story_link.py +0 -0
  367. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/forward_story.py +0 -0
  368. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/get_all_stories.py +0 -0
  369. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/get_chat_stories.py +0 -0
  370. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/get_pinned_stories.py +0 -0
  371. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/get_stories.py +0 -0
  372. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/get_stories_archive.py +0 -0
  373. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/hide_stories.py +0 -0
  374. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/pin_stories.py +0 -0
  375. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/stories/read_stories.py +0 -0
  376. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/users/delete_profile_photos.py +0 -0
  377. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/users/get_chat_photos.py +0 -0
  378. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/users/get_chat_photos_count.py +0 -0
  379. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/users/get_common_chats.py +0 -0
  380. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/users/get_default_emoji_statuses.py +0 -0
  381. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/users/get_me.py +0 -0
  382. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/users/get_users.py +0 -0
  383. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/users/set_emoji_status.py +0 -0
  384. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/users/set_username.py +0 -0
  385. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/users/update_profile.py +0 -0
  386. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/users/update_status.py +0 -0
  387. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/utilities/__init__.py +0 -0
  388. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/utilities/add_handler.py +0 -0
  389. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/utilities/compose.py +0 -0
  390. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/utilities/export_session_string.py +0 -0
  391. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/utilities/idle.py +0 -0
  392. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/utilities/remove_handler.py +0 -0
  393. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/utilities/restart.py +0 -0
  394. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/utilities/run.py +0 -0
  395. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/utilities/start.py +0 -0
  396. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/methods/utilities/stop.py +0 -0
  397. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/mime_types.py +0 -0
  398. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/nav/__init__.py +0 -0
  399. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/nav/pagination.py +0 -0
  400. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/parser/__init__.py +0 -0
  401. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/__init__.py +0 -0
  402. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/core/__init__.py +0 -0
  403. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/core/future_salt.py +0 -0
  404. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/core/future_salts.py +0 -0
  405. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/core/gzip_packed.py +0 -0
  406. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/core/list.py +0 -0
  407. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/core/message.py +0 -0
  408. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/core/msg_container.py +0 -0
  409. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/core/primitives/__init__.py +0 -0
  410. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/core/primitives/bool.py +0 -0
  411. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/core/primitives/bytes.py +0 -0
  412. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/core/primitives/double.py +0 -0
  413. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/core/primitives/int.py +0 -0
  414. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/core/primitives/string.py +0 -0
  415. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/raw/core/tl_object.py +0 -0
  416. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/session/__init__.py +0 -0
  417. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/session/auth.py +0 -0
  418. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/session/internals/__init__.py +0 -0
  419. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/session/internals/data_center.py +0 -0
  420. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/session/internals/msg_factory.py +0 -0
  421. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/session/internals/msg_id.py +0 -0
  422. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/session/internals/seq_no.py +0 -0
  423. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/storage/__init__.py +0 -0
  424. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/storage/memory_storage.py +0 -0
  425. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/sync.py +0 -0
  426. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/__init__.py +0 -0
  427. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/authorization/__init__.py +0 -0
  428. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/authorization/sent_code.py +0 -0
  429. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/authorization/terms_of_service.py +0 -0
  430. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/bot_command.py +0 -0
  431. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/bot_command_scope.py +0 -0
  432. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +0 -0
  433. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +0 -0
  434. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +0 -0
  435. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py +0 -0
  436. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +0 -0
  437. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py +0 -0
  438. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/bot_command_scope_default.py +0 -0
  439. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/callback_game.py +0 -0
  440. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/callback_query.py +0 -0
  441. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/force_reply.py +0 -0
  442. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/game_high_score.py +0 -0
  443. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/inline_keyboard_button.py +0 -0
  444. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py +0 -0
  445. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/login_url.py +0 -0
  446. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/menu_button.py +0 -0
  447. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/menu_button_commands.py +0 -0
  448. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/menu_button_default.py +0 -0
  449. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/menu_button_web_app.py +0 -0
  450. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py +0 -0
  451. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py +0 -0
  452. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/sent_web_app_message.py +0 -0
  453. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/bots_and_keyboards/web_app_info.py +0 -0
  454. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/__init__.py +0 -0
  455. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/chosen_inline_result.py +0 -0
  456. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query.py +0 -0
  457. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result.py +0 -0
  458. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_animation.py +0 -0
  459. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_article.py +0 -0
  460. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_audio.py +0 -0
  461. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_cached_animation.py +0 -0
  462. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_cached_audio.py +0 -0
  463. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_cached_document.py +0 -0
  464. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_cached_photo.py +0 -0
  465. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_cached_sticker.py +0 -0
  466. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_cached_video.py +0 -0
  467. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_cached_voice.py +0 -0
  468. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_contact.py +0 -0
  469. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_document.py +0 -0
  470. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_location.py +0 -0
  471. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_photo.py +0 -0
  472. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_venue.py +0 -0
  473. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_video.py +0 -0
  474. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/inline_mode/inline_query_result_voice.py +0 -0
  475. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/input_media/__init__.py +0 -0
  476. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/input_media/input_media.py +0 -0
  477. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/input_media/input_media_animation.py +0 -0
  478. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/input_media/input_media_audio.py +0 -0
  479. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/input_media/input_media_document.py +0 -0
  480. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/input_media/input_media_photo.py +0 -0
  481. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/input_media/input_phone_contact.py +0 -0
  482. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/input_message_content/input_message_content.py +0 -0
  483. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/input_message_content/input_reply_to_message.py +0 -0
  484. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/input_message_content/input_reply_to_story.py +0 -0
  485. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/input_message_content/input_text_message_content.py +0 -0
  486. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/list.py +0 -0
  487. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/animation.py +0 -0
  488. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/audio.py +0 -0
  489. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/auto_name.py +0 -0
  490. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/boosts_status.py +0 -0
  491. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/chat_action.py +0 -0
  492. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/chat_event_action.py +0 -0
  493. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/chat_member_status.py +0 -0
  494. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/chat_members_filter.py +0 -0
  495. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/chat_type.py +0 -0
  496. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/contact.py +0 -0
  497. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/dice.py +0 -0
  498. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/document.py +0 -0
  499. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/forum_topic_closed.py +0 -0
  500. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/forum_topic_created.py +0 -0
  501. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/forum_topic_edited.py +0 -0
  502. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/forum_topic_reopened.py +0 -0
  503. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/game.py +0 -0
  504. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/general_forum_topic_hidden.py +0 -0
  505. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/general_forum_topic_unhidden.py +0 -0
  506. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/location.py +0 -0
  507. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/message_entity.py +0 -0
  508. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/message_entity_type.py +0 -0
  509. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/message_media_type.py +0 -0
  510. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/message_reactions.py +0 -0
  511. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/message_service_type.py +0 -0
  512. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/message_story.py +0 -0
  513. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/messages_filter.py +0 -0
  514. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/next_code_type.py +0 -0
  515. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/parse_mode.py +0 -0
  516. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/photo.py +0 -0
  517. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/poll_option.py +0 -0
  518. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/poll_type.py +0 -0
  519. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/reaction.py +0 -0
  520. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/sent_code_type.py +0 -0
  521. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/sticker.py +0 -0
  522. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/stripped_thumbnail.py +0 -0
  523. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/thumbnail.py +0 -0
  524. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/user_status.py +0 -0
  525. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/venue.py +0 -0
  526. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/video.py +0 -0
  527. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/messages_and_media/web_app_data.py +0 -0
  528. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/pyromod.py +0 -0
  529. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/chat_admin_with_invite_links.py +0 -0
  530. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/chat_color.py +0 -0
  531. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/chat_event_filter.py +0 -0
  532. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/chat_invite_link.py +0 -0
  533. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/chat_join_request.py +0 -0
  534. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/chat_joiner.py +0 -0
  535. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/chat_member.py +0 -0
  536. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/chat_member_updated.py +0 -0
  537. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/chat_permissions.py +0 -0
  538. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/chat_photo.py +0 -0
  539. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/chat_preview.py +0 -0
  540. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/chat_privileges.py +0 -0
  541. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/chat_reactions.py +0 -0
  542. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/dialog.py +0 -0
  543. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/emoji_status.py +0 -0
  544. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/invite_link_importer.py +0 -0
  545. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/restriction.py +0 -0
  546. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/username.py +0 -0
  547. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/video_chat_ended.py +0 -0
  548. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/video_chat_members_invited.py +0 -0
  549. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/video_chat_scheduled.py +0 -0
  550. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/pyrogram/types/user_and_chats/video_chat_started.py +0 -0
  551. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/requirements.txt +0 -0
  552. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/setup.cfg +0 -0
  553. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/tests/__init__.py +0 -0
  554. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/tests/filters/__init__.py +0 -0
  555. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/tests/filters/test_command.py +0 -0
  556. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/tests/parser/__init__.py +0 -0
  557. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/tests/parser/test_html.py +0 -0
  558. {WPyrogram-2.0.139 → WPyrogram-2.0.141}/tests/test_file_id.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: WPyrogram
3
- Version: 2.0.139
3
+ Version: 2.0.141
4
4
  Summary: Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots - Woto's experimental fork
5
5
  Home-page: https://github.com/ALiwoto/WPyrogram
6
6
  Download-URL: https://github.com/ALiwoto/WPyrogram
@@ -19,11 +19,11 @@ Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGP
19
19
  Classifier: Operating System :: OS Independent
20
20
  Classifier: Programming Language :: Python
21
21
  Classifier: Programming Language :: Python :: 3
22
- Classifier: Programming Language :: Python :: 3.7
23
22
  Classifier: Programming Language :: Python :: 3.8
24
23
  Classifier: Programming Language :: Python :: 3.9
25
24
  Classifier: Programming Language :: Python :: 3.10
26
25
  Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Programming Language :: Python :: 3.12
27
27
  Classifier: Programming Language :: Python :: Implementation
28
28
  Classifier: Programming Language :: Python :: Implementation :: CPython
29
29
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -33,7 +33,7 @@ Classifier: Topic :: Communications :: Chat
33
33
  Classifier: Topic :: Software Development :: Libraries
34
34
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
35
35
  Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
36
- Requires-Python: ~=3.7
36
+ Requires-Python: ~=3.8
37
37
  Description-Content-Type: text/markdown
38
38
  License-File: COPYING
39
39
  License-File: COPYING.lesser
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: WPyrogram
3
- Version: 2.0.139
3
+ Version: 2.0.141
4
4
  Summary: Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots - Woto's experimental fork
5
5
  Home-page: https://github.com/ALiwoto/WPyrogram
6
6
  Download-URL: https://github.com/ALiwoto/WPyrogram
@@ -19,11 +19,11 @@ Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGP
19
19
  Classifier: Operating System :: OS Independent
20
20
  Classifier: Programming Language :: Python
21
21
  Classifier: Programming Language :: Python :: 3
22
- Classifier: Programming Language :: Python :: 3.7
23
22
  Classifier: Programming Language :: Python :: 3.8
24
23
  Classifier: Programming Language :: Python :: 3.9
25
24
  Classifier: Programming Language :: Python :: 3.10
26
25
  Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Programming Language :: Python :: 3.12
27
27
  Classifier: Programming Language :: Python :: Implementation
28
28
  Classifier: Programming Language :: Python :: Implementation :: CPython
29
29
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -33,7 +33,7 @@ Classifier: Topic :: Communications :: Chat
33
33
  Classifier: Topic :: Software Development :: Libraries
34
34
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
35
35
  Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
36
- Requires-Python: ~=3.7
36
+ Requires-Python: ~=3.8
37
37
  Description-Content-Type: text/markdown
38
38
  License-File: COPYING
39
39
  License-File: COPYING.lesser
@@ -43,6 +43,7 @@ pyrogram/emoji.py
43
43
  pyrogram/file_id.py
44
44
  pyrogram/filters.py
45
45
  pyrogram/mime_types.py
46
+ pyrogram/py.typed
46
47
  pyrogram/sync.py
47
48
  pyrogram/utils.py
48
49
  pyrogram/connection/__init__.py
@@ -62,11 +63,13 @@ pyrogram/crypto/prime.py
62
63
  pyrogram/crypto/rsa.py
63
64
  pyrogram/enums/__init__.py
64
65
  pyrogram/enums/auto_name.py
66
+ pyrogram/enums/business_schedule.py
65
67
  pyrogram/enums/chat_action.py
66
68
  pyrogram/enums/chat_event_action.py
67
69
  pyrogram/enums/chat_member_status.py
68
70
  pyrogram/enums/chat_members_filter.py
69
71
  pyrogram/enums/chat_type.py
72
+ pyrogram/enums/folder_color.py
70
73
  pyrogram/enums/message_entity_type.py
71
74
  pyrogram/enums/message_media_type.py
72
75
  pyrogram/enums/message_service_type.py
@@ -186,7 +189,9 @@ pyrogram/methods/chats/set_chat_ttl.py
186
189
  pyrogram/methods/chats/set_chat_username.py
187
190
  pyrogram/methods/chats/set_send_as_chat.py
188
191
  pyrogram/methods/chats/set_slow_mode.py
192
+ pyrogram/methods/chats/toggle_folder_tags.py
189
193
  pyrogram/methods/chats/toggle_forum_topics.py
194
+ pyrogram/methods/chats/toggle_join_to_send.py
190
195
  pyrogram/methods/chats/unarchive_chats.py
191
196
  pyrogram/methods/chats/unban_chat_member.py
192
197
  pyrogram/methods/chats/unpin_all_chat_messages.py
@@ -252,8 +257,12 @@ pyrogram/methods/messages/get_custom_emoji_stickers.py
252
257
  pyrogram/methods/messages/get_discussion_message.py
253
258
  pyrogram/methods/messages/get_discussion_replies.py
254
259
  pyrogram/methods/messages/get_discussion_replies_count.py
260
+ pyrogram/methods/messages/get_history.py
255
261
  pyrogram/methods/messages/get_media_group.py
262
+ pyrogram/methods/messages/get_message_by_link.py
256
263
  pyrogram/methods/messages/get_messages.py
264
+ pyrogram/methods/messages/get_scheduled_messages.py
265
+ pyrogram/methods/messages/get_stickers.py
257
266
  pyrogram/methods/messages/inline_session.py
258
267
  pyrogram/methods/messages/read_chat_history.py
259
268
  pyrogram/methods/messages/read_mentions.py
@@ -317,6 +326,7 @@ pyrogram/methods/stories/read_stories.py
317
326
  pyrogram/methods/stories/send_story.py
318
327
  pyrogram/methods/users/__init__.py
319
328
  pyrogram/methods/users/block_user.py
329
+ pyrogram/methods/users/check_username.py
320
330
  pyrogram/methods/users/delete_profile_photos.py
321
331
  pyrogram/methods/users/get_chat_photos.py
322
332
  pyrogram/methods/users/get_chat_photos_count.py
@@ -413,6 +423,7 @@ pyrogram/types/bots_and_keyboards/request_channel_info.py
413
423
  pyrogram/types/bots_and_keyboards/request_chat_info.py
414
424
  pyrogram/types/bots_and_keyboards/request_poll_info.py
415
425
  pyrogram/types/bots_and_keyboards/request_user_info.py
426
+ pyrogram/types/bots_and_keyboards/requested_chats.py
416
427
  pyrogram/types/bots_and_keyboards/sent_web_app_message.py
417
428
  pyrogram/types/bots_and_keyboards/web_app_info.py
418
429
  pyrogram/types/inline_mode/__init__.py
@@ -503,6 +514,11 @@ pyrogram/types/messages_and_media/voice.py
503
514
  pyrogram/types/messages_and_media/web_app_data.py
504
515
  pyrogram/types/messages_and_media/web_page.py
505
516
  pyrogram/types/user_and_chats/__init__.py
517
+ pyrogram/types/user_and_chats/business_info.py
518
+ pyrogram/types/user_and_chats/business_message.py
519
+ pyrogram/types/user_and_chats/business_recipients.py
520
+ pyrogram/types/user_and_chats/business_weekly_open.py
521
+ pyrogram/types/user_and_chats/business_working_hours.py
506
522
  pyrogram/types/user_and_chats/chat.py
507
523
  pyrogram/types/user_and_chats/chat_admin_with_invite_links.py
508
524
  pyrogram/types/user_and_chats/chat_color.py
@@ -90,7 +90,7 @@ storage.fileMp4#b3cea0e4 = storage.FileType;
90
90
  storage.fileWebp#1081464c = storage.FileType;
91
91
 
92
92
  userEmpty#d3bc4b7a id:long = User;
93
- user#215c4438 flags:# self:flags.10?true contact:flags.11?true mutual_contact:flags.12?true deleted:flags.13?true bot:flags.14?true bot_chat_history:flags.15?true bot_nochats:flags.16?true verified:flags.17?true restricted:flags.18?true min:flags.20?true bot_inline_geo:flags.21?true support:flags.23?true scam:flags.24?true apply_min_photo:flags.25?true fake:flags.26?true bot_attach_menu:flags.27?true premium:flags.28?true attach_menu_enabled:flags.29?true flags2:# bot_can_edit:flags2.1?true close_friend:flags2.2?true stories_hidden:flags2.3?true stories_unavailable:flags2.4?true id:long access_hash:flags.0?long first_name:flags.1?string last_name:flags.2?string username:flags.3?string phone:flags.4?string photo:flags.5?UserProfilePhoto status:flags.6?UserStatus bot_info_version:flags.14?int restriction_reason:flags.18?Vector<RestrictionReason> bot_inline_placeholder:flags.19?string lang_code:flags.22?string emoji_status:flags.30?EmojiStatus usernames:flags2.0?Vector<Username> stories_max_id:flags2.5?int color:flags2.8?PeerColor profile_color:flags2.9?PeerColor = User;
93
+ user#215c4438 flags:# self:flags.10?true contact:flags.11?true mutual_contact:flags.12?true deleted:flags.13?true bot:flags.14?true bot_chat_history:flags.15?true bot_nochats:flags.16?true verified:flags.17?true restricted:flags.18?true min:flags.20?true bot_inline_geo:flags.21?true support:flags.23?true scam:flags.24?true apply_min_photo:flags.25?true fake:flags.26?true bot_attach_menu:flags.27?true premium:flags.28?true attach_menu_enabled:flags.29?true flags2:# bot_can_edit:flags2.1?true close_friend:flags2.2?true stories_hidden:flags2.3?true stories_unavailable:flags2.4?true contact_require_premium:flags2.10?true id:long access_hash:flags.0?long first_name:flags.1?string last_name:flags.2?string username:flags.3?string phone:flags.4?string photo:flags.5?UserProfilePhoto status:flags.6?UserStatus bot_info_version:flags.14?int restriction_reason:flags.18?Vector<RestrictionReason> bot_inline_placeholder:flags.19?string lang_code:flags.22?string emoji_status:flags.30?EmojiStatus usernames:flags2.0?Vector<Username> stories_max_id:flags2.5?int color:flags2.8?PeerColor profile_color:flags2.9?PeerColor = User;
94
94
 
95
95
  userProfilePhotoEmpty#4f11bae1 = UserProfilePhoto;
96
96
  userProfilePhoto#82d1f706 flags:# has_video:flags.0?true personal:flags.2?true photo_id:long stripped_thumb:flags.1?bytes dc_id:int = UserProfilePhoto;
@@ -98,9 +98,9 @@ userProfilePhoto#82d1f706 flags:# has_video:flags.0?true personal:flags.2?true p
98
98
  userStatusEmpty#9d05049 = UserStatus;
99
99
  userStatusOnline#edb93949 expires:int = UserStatus;
100
100
  userStatusOffline#8c703f was_online:int = UserStatus;
101
- userStatusRecently#e26f42f1 = UserStatus;
102
- userStatusLastWeek#7bf09fc = UserStatus;
103
- userStatusLastMonth#77ebc742 = UserStatus;
101
+ userStatusRecently#7b197dc8 flags:# by_me:flags.0?true = UserStatus;
102
+ userStatusLastWeek#541a1d1a flags:# by_me:flags.0?true = UserStatus;
103
+ userStatusLastMonth#65899777 flags:# by_me:flags.0?true = UserStatus;
104
104
 
105
105
  chatEmpty#29562865 id:long = Chat;
106
106
  chat#41cbf256 flags:# creator:flags.0?true left:flags.2?true deactivated:flags.5?true call_active:flags.23?true call_not_empty:flags.24?true noforwards:flags.25?true id:long title:string photo:ChatPhoto participants_count:int date:int version:int migrated_to:flags.6?InputChannel admin_rights:flags.14?ChatAdminRights default_banned_rights:flags.18?ChatBannedRights = Chat;
@@ -109,7 +109,7 @@ channel#aadfc8f flags:# creator:flags.0?true left:flags.2?true broadcast:flags.5
109
109
  channelForbidden#17d493d5 flags:# broadcast:flags.5?true megagroup:flags.8?true id:long access_hash:long title:string until_date:flags.16?int = Chat;
110
110
 
111
111
  chatFull#c9d31138 flags:# can_set_username:flags.7?true has_scheduled:flags.8?true translations_disabled:flags.19?true id:long about:string participants:ChatParticipants chat_photo:flags.2?Photo notify_settings:PeerNotifySettings exported_invite:flags.13?ExportedChatInvite bot_info:flags.3?Vector<BotInfo> pinned_msg_id:flags.6?int folder_id:flags.11?int call:flags.12?InputGroupCall ttl_period:flags.14?int groupcall_default_join_as:flags.15?Peer theme_emoticon:flags.16?string requests_pending:flags.17?int recent_requesters:flags.17?Vector<long> available_reactions:flags.18?ChatReactions = ChatFull;
112
- channelFull#f2bcb6f flags:# can_view_participants:flags.3?true can_set_username:flags.6?true can_set_stickers:flags.7?true hidden_prehistory:flags.10?true can_set_location:flags.16?true has_scheduled:flags.19?true can_view_stats:flags.20?true blocked:flags.22?true flags2:# can_delete_channel:flags2.0?true antispam:flags2.1?true participants_hidden:flags2.2?true translations_disabled:flags2.3?true stories_pinned_available:flags2.5?true view_forum_as_messages:flags2.6?true id:long about:string participants_count:flags.0?int admins_count:flags.1?int kicked_count:flags.2?int banned_count:flags.2?int online_count:flags.13?int read_inbox_max_id:int read_outbox_max_id:int unread_count:int chat_photo:Photo notify_settings:PeerNotifySettings exported_invite:flags.23?ExportedChatInvite bot_info:Vector<BotInfo> migrated_from_chat_id:flags.4?long migrated_from_max_id:flags.4?int pinned_msg_id:flags.5?int stickerset:flags.8?StickerSet available_min_id:flags.9?int folder_id:flags.11?int linked_chat_id:flags.14?long location:flags.15?ChannelLocation slowmode_seconds:flags.17?int slowmode_next_send_date:flags.18?int stats_dc:flags.12?int pts:int call:flags.21?InputGroupCall ttl_period:flags.24?int pending_suggestions:flags.25?Vector<string> groupcall_default_join_as:flags.26?Peer theme_emoticon:flags.27?string requests_pending:flags.28?int recent_requesters:flags.28?Vector<long> default_send_as:flags.29?Peer available_reactions:flags.30?ChatReactions stories:flags2.4?PeerStories wallpaper:flags2.7?WallPaper = ChatFull;
112
+ channelFull#44c054a7 flags:# can_view_participants:flags.3?true can_set_username:flags.6?true can_set_stickers:flags.7?true hidden_prehistory:flags.10?true can_set_location:flags.16?true has_scheduled:flags.19?true can_view_stats:flags.20?true blocked:flags.22?true flags2:# can_delete_channel:flags2.0?true antispam:flags2.1?true participants_hidden:flags2.2?true translations_disabled:flags2.3?true stories_pinned_available:flags2.5?true view_forum_as_messages:flags2.6?true id:long about:string participants_count:flags.0?int admins_count:flags.1?int kicked_count:flags.2?int banned_count:flags.2?int online_count:flags.13?int read_inbox_max_id:int read_outbox_max_id:int unread_count:int chat_photo:Photo notify_settings:PeerNotifySettings exported_invite:flags.23?ExportedChatInvite bot_info:Vector<BotInfo> migrated_from_chat_id:flags.4?long migrated_from_max_id:flags.4?int pinned_msg_id:flags.5?int stickerset:flags.8?StickerSet available_min_id:flags.9?int folder_id:flags.11?int linked_chat_id:flags.14?long location:flags.15?ChannelLocation slowmode_seconds:flags.17?int slowmode_next_send_date:flags.18?int stats_dc:flags.12?int pts:int call:flags.21?InputGroupCall ttl_period:flags.24?int pending_suggestions:flags.25?Vector<string> groupcall_default_join_as:flags.26?Peer theme_emoticon:flags.27?string requests_pending:flags.28?int recent_requesters:flags.28?Vector<long> default_send_as:flags.29?Peer available_reactions:flags.30?ChatReactions stories:flags2.4?PeerStories wallpaper:flags2.7?WallPaper boosts_applied:flags2.8?int boosts_unrestrict:flags2.9?int emojiset:flags2.10?StickerSet = ChatFull;
113
113
 
114
114
  chatParticipant#c02d4007 user_id:long inviter_id:long date:int = ChatParticipant;
115
115
  chatParticipantCreator#e46bcee4 user_id:long = ChatParticipant;
@@ -122,7 +122,7 @@ chatPhotoEmpty#37c1011c = ChatPhoto;
122
122
  chatPhoto#1c6e1c11 flags:# has_video:flags.0?true photo_id:long stripped_thumb:flags.1?bytes dc_id:int = ChatPhoto;
123
123
 
124
124
  messageEmpty#90a6ca84 flags:# id:int peer_id:flags.0?Peer = Message;
125
- message#76bec211 flags:# out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true silent:flags.13?true post:flags.14?true from_scheduled:flags.18?true legacy:flags.19?true edit_hide:flags.21?true pinned:flags.24?true noforwards:flags.26?true invert_media:flags.27?true id:int from_id:flags.8?Peer peer_id:Peer saved_peer_id:flags.28?Peer fwd_from:flags.2?MessageFwdHeader via_bot_id:flags.11?long reply_to:flags.3?MessageReplyHeader date:int message:string media:flags.9?MessageMedia reply_markup:flags.6?ReplyMarkup entities:flags.7?Vector<MessageEntity> views:flags.10?int forwards:flags.10?int replies:flags.23?MessageReplies edit_date:flags.15?int post_author:flags.16?string grouped_id:flags.17?long reactions:flags.20?MessageReactions restriction_reason:flags.22?Vector<RestrictionReason> ttl_period:flags.25?int = Message;
125
+ message#a66c7efc flags:# out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true silent:flags.13?true post:flags.14?true from_scheduled:flags.18?true legacy:flags.19?true edit_hide:flags.21?true pinned:flags.24?true noforwards:flags.26?true invert_media:flags.27?true id:int from_id:flags.8?Peer from_boosts_applied:flags.29?int peer_id:Peer saved_peer_id:flags.28?Peer fwd_from:flags.2?MessageFwdHeader via_bot_id:flags.11?long reply_to:flags.3?MessageReplyHeader date:int message:string media:flags.9?MessageMedia reply_markup:flags.6?ReplyMarkup entities:flags.7?Vector<MessageEntity> views:flags.10?int forwards:flags.10?int replies:flags.23?MessageReplies edit_date:flags.15?int post_author:flags.16?string grouped_id:flags.17?long reactions:flags.20?MessageReactions restriction_reason:flags.22?Vector<RestrictionReason> ttl_period:flags.25?int quick_reply_shortcut_id:flags.30?int = Message;
126
126
  messageService#2b085862 flags:# out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true silent:flags.13?true post:flags.14?true legacy:flags.19?true id:int from_id:flags.8?Peer peer_id:Peer reply_to:flags.3?MessageReplyHeader date:int action:MessageAction ttl_period:flags.25?int = Message;
127
127
 
128
128
  messageMediaEmpty#3ded6320 = MessageMedia;
@@ -183,6 +183,7 @@ messageActionSetChatWallPaper#5060a3f4 flags:# same:flags.0?true for_both:flags.
183
183
  messageActionGiftCode#678c2e09 flags:# via_giveaway:flags.0?true unclaimed:flags.2?true boost_peer:flags.1?Peer months:int slug:string currency:flags.2?string amount:flags.2?long crypto_currency:flags.3?string crypto_amount:flags.3?long = MessageAction;
184
184
  messageActionGiveawayLaunch#332ba9ed = MessageAction;
185
185
  messageActionGiveawayResults#2a9fadc5 winners_count:int unclaimed_count:int = MessageAction;
186
+ messageActionBoostApply#cc02aa6d boosts:int = MessageAction;
186
187
 
187
188
  dialog#d58a08c6 flags:# pinned:flags.2?true unread_mark:flags.3?true view_forum_as_messages:flags.6?true peer:Peer top_message:int read_inbox_max_id:int read_outbox_max_id:int unread_count:int unread_mentions_count:int unread_reactions_count:int notify_settings:PeerNotifySettings pts:flags.0?int draft:flags.1?DraftMessage folder_id:flags.4?int ttl_period:flags.5?int = Dialog;
188
189
  dialogFolder#71bd134c flags:# pinned:flags.2?true folder:Folder peer:Peer top_message:int unread_muted_peers_count:int unread_unmuted_peers_count:int unread_muted_messages_count:int unread_unmuted_messages_count:int = Dialog;
@@ -234,7 +235,7 @@ inputReportReasonFake#f5ddd6e7 = ReportReason;
234
235
  inputReportReasonIllegalDrugs#a8eb2be = ReportReason;
235
236
  inputReportReasonPersonalDetails#9ec7863d = ReportReason;
236
237
 
237
- userFull#b9b12c6c flags:# blocked:flags.0?true phone_calls_available:flags.4?true phone_calls_private:flags.5?true can_pin_message:flags.7?true has_scheduled:flags.12?true video_calls_available:flags.13?true voice_messages_forbidden:flags.20?true translations_disabled:flags.23?true stories_pinned_available:flags.26?true blocked_my_stories_from:flags.27?true wallpaper_overridden:flags.28?true id:long about:flags.1?string settings:PeerSettings personal_photo:flags.21?Photo profile_photo:flags.2?Photo fallback_photo:flags.22?Photo notify_settings:PeerNotifySettings bot_info:flags.3?BotInfo pinned_msg_id:flags.6?int common_chats_count:int folder_id:flags.11?int ttl_period:flags.14?int theme_emoticon:flags.15?string private_forward_name:flags.16?string bot_group_admin_rights:flags.17?ChatAdminRights bot_broadcast_admin_rights:flags.18?ChatAdminRights premium_gifts:flags.19?Vector<PremiumGiftOption> wallpaper:flags.24?WallPaper stories:flags.25?PeerStories = UserFull;
238
+ userFull#22ff3e85 flags:# blocked:flags.0?true phone_calls_available:flags.4?true phone_calls_private:flags.5?true can_pin_message:flags.7?true has_scheduled:flags.12?true video_calls_available:flags.13?true voice_messages_forbidden:flags.20?true translations_disabled:flags.23?true stories_pinned_available:flags.26?true blocked_my_stories_from:flags.27?true wallpaper_overridden:flags.28?true contact_require_premium:flags.29?true read_dates_private:flags.30?true flags2:# id:long about:flags.1?string settings:PeerSettings personal_photo:flags.21?Photo profile_photo:flags.2?Photo fallback_photo:flags.22?Photo notify_settings:PeerNotifySettings bot_info:flags.3?BotInfo pinned_msg_id:flags.6?int common_chats_count:int folder_id:flags.11?int ttl_period:flags.14?int theme_emoticon:flags.15?string private_forward_name:flags.16?string bot_group_admin_rights:flags.17?ChatAdminRights bot_broadcast_admin_rights:flags.18?ChatAdminRights premium_gifts:flags.19?Vector<PremiumGiftOption> wallpaper:flags.24?WallPaper stories:flags.25?PeerStories business_work_hours:flags2.0?BusinessWorkHours business_location:flags2.1?BusinessLocation business_greeting_message:flags2.2?BusinessGreetingMessage business_away_message:flags2.3?BusinessAwayMessage = UserFull;
238
239
 
239
240
  contact#145ade0b user_id:long mutual:Bool = Contact;
240
241
 
@@ -408,6 +409,13 @@ updateBotMessageReaction#ac21d3ce peer:Peer msg_id:int date:int actor:Peer old_r
408
409
  updateBotMessageReactions#9cb7759 peer:Peer msg_id:int date:int reactions:Vector<ReactionCount> qts:int = Update;
409
410
  updateSavedDialogPinned#aeaf9e74 flags:# pinned:flags.0?true peer:DialogPeer = Update;
410
411
  updatePinnedSavedDialogs#686c85a6 flags:# order:flags.0?Vector<DialogPeer> = Update;
412
+ updateSavedReactionTags#39c67432 = Update;
413
+ updateSmsJob#f16269d4 job_id:string = Update;
414
+ updateQuickReplies#f9470ab2 quick_replies:Vector<QuickReply> = Update;
415
+ updateNewQuickReply#f53da717 quick_reply:QuickReply = Update;
416
+ updateDeleteQuickReply#53e6f1ec shortcut_id:int = Update;
417
+ updateQuickReplyMessage#3e050d0f message:Message = Update;
418
+ updateDeleteQuickReplyMessages#566fe7cd shortcut_id:int messages:Vector<int> = Update;
411
419
 
412
420
  updates.state#a56c2a3e pts:int qts:int date:int seq:int unread_count:int = updates.State;
413
421
 
@@ -987,6 +995,7 @@ channelAdminLogEventActionChangePeerColor#5796e780 prev_value:PeerColor new_valu
987
995
  channelAdminLogEventActionChangeProfilePeerColor#5e477b25 prev_value:PeerColor new_value:PeerColor = ChannelAdminLogEventAction;
988
996
  channelAdminLogEventActionChangeWallpaper#31bb5d52 prev_value:WallPaper new_value:WallPaper = ChannelAdminLogEventAction;
989
997
  channelAdminLogEventActionChangeEmojiStatus#3ea9feb1 prev_value:EmojiStatus new_value:EmojiStatus = ChannelAdminLogEventAction;
998
+ channelAdminLogEventActionChangeEmojiStickerSet#46d840ab prev_stickerset:InputStickerSet new_stickerset:InputStickerSet = ChannelAdminLogEventAction;
990
999
 
991
1000
  channelAdminLogEvent#1fad68cd id:long date:int user_id:long action:ChannelAdminLogEventAction = ChannelAdminLogEvent;
992
1001
 
@@ -1233,9 +1242,9 @@ bankCardOpenUrl#f568028a url:string name:string = BankCardOpenUrl;
1233
1242
 
1234
1243
  payments.bankCardData#3e24e573 title:string open_urls:Vector<BankCardOpenUrl> = payments.BankCardData;
1235
1244
 
1236
- dialogFilter#7438f7e8 flags:# contacts:flags.0?true non_contacts:flags.1?true groups:flags.2?true broadcasts:flags.3?true bots:flags.4?true exclude_muted:flags.11?true exclude_read:flags.12?true exclude_archived:flags.13?true id:int title:string emoticon:flags.25?string pinned_peers:Vector<InputPeer> include_peers:Vector<InputPeer> exclude_peers:Vector<InputPeer> = DialogFilter;
1245
+ dialogFilter#5fb5523b flags:# contacts:flags.0?true non_contacts:flags.1?true groups:flags.2?true broadcasts:flags.3?true bots:flags.4?true exclude_muted:flags.11?true exclude_read:flags.12?true exclude_archived:flags.13?true id:int title:string emoticon:flags.25?string color:flags.27?int pinned_peers:Vector<InputPeer> include_peers:Vector<InputPeer> exclude_peers:Vector<InputPeer> = DialogFilter;
1237
1246
  dialogFilterDefault#363293ae = DialogFilter;
1238
- dialogFilterChatlist#d64a04a8 flags:# has_my_invites:flags.26?true id:int title:string emoticon:flags.25?string pinned_peers:Vector<InputPeer> include_peers:Vector<InputPeer> = DialogFilter;
1247
+ dialogFilterChatlist#9fe28ea4 flags:# has_my_invites:flags.26?true id:int title:string emoticon:flags.25?string color:flags.27?int pinned_peers:Vector<InputPeer> include_peers:Vector<InputPeer> = DialogFilter;
1239
1248
 
1240
1249
  dialogFilterSuggested#77744d4a filter:DialogFilter description:string = DialogFilterSuggested;
1241
1250
 
@@ -1266,7 +1275,7 @@ statsGroupTopInviter#535f779d user_id:long invitations:int = StatsGroupTopInvite
1266
1275
 
1267
1276
  stats.megagroupStats#ef7ff916 period:StatsDateRangeDays members:StatsAbsValueAndPrev messages:StatsAbsValueAndPrev viewers:StatsAbsValueAndPrev posters:StatsAbsValueAndPrev growth_graph:StatsGraph members_graph:StatsGraph new_members_by_source_graph:StatsGraph languages_graph:StatsGraph messages_graph:StatsGraph actions_graph:StatsGraph top_hours_graph:StatsGraph weekdays_graph:StatsGraph top_posters:Vector<StatsGroupTopPoster> top_admins:Vector<StatsGroupTopAdmin> top_inviters:Vector<StatsGroupTopInviter> users:Vector<User> = stats.MegagroupStats;
1268
1277
 
1269
- globalPrivacySettings#734c4ccb flags:# archive_and_mute_new_noncontact_peers:flags.0?true keep_archived_unmuted:flags.1?true keep_archived_folders:flags.2?true = GlobalPrivacySettings;
1278
+ globalPrivacySettings#734c4ccb flags:# archive_and_mute_new_noncontact_peers:flags.0?true keep_archived_unmuted:flags.1?true keep_archived_folders:flags.2?true hide_read_marks:flags.3?true new_noncontact_peers_require_premium:flags.4?true = GlobalPrivacySettings;
1270
1279
 
1271
1280
  help.countryCode#4203c5ef flags:# country_code:string prefixes:flags.0?Vector<string> patterns:flags.1?Vector<string> = help.CountryCode;
1272
1281
 
@@ -1282,7 +1291,7 @@ messages.messageViews#b6c4f543 views:Vector<MessageViews> chats:Vector<Chat> use
1282
1291
  messages.discussionMessage#a6341782 flags:# messages:Vector<Message> max_id:flags.0?int read_inbox_max_id:flags.1?int read_outbox_max_id:flags.2?int unread_count:int chats:Vector<Chat> users:Vector<User> = messages.DiscussionMessage;
1283
1292
 
1284
1293
  messageReplyHeader#afbc09db flags:# reply_to_scheduled:flags.2?true forum_topic:flags.3?true quote:flags.9?true reply_to_msg_id:flags.4?int reply_to_peer_id:flags.0?Peer reply_from:flags.5?MessageFwdHeader reply_media:flags.8?MessageMedia reply_to_top_id:flags.1?int quote_text:flags.6?string quote_entities:flags.7?Vector<MessageEntity> quote_offset:flags.10?int = MessageReplyHeader;
1285
- messageReplyStoryHeader#9c98bfc1 user_id:long story_id:int = MessageReplyHeader;
1294
+ messageReplyStoryHeader#e5af939 peer:Peer story_id:int = MessageReplyHeader;
1286
1295
 
1287
1296
  messageReplies#83d60fc2 flags:# comments:flags.0?true replies:int replies_pts:int recent_repliers:flags.1?Vector<Peer> channel_id:flags.0?long max_id:flags.2?int read_max_id:flags.3?int = MessageReplies;
1288
1297
 
@@ -1374,7 +1383,7 @@ auth.loggedOut#c3a2835f flags:# future_auth_token:flags.0?bytes = auth.LoggedOut
1374
1383
 
1375
1384
  reactionCount#a3d1cb80 flags:# chosen_order:flags.0?int reaction:Reaction count:int = ReactionCount;
1376
1385
 
1377
- messageReactions#4f2b9479 flags:# min:flags.0?true can_see_list:flags.2?true results:Vector<ReactionCount> recent_reactions:flags.1?Vector<MessagePeerReaction> = MessageReactions;
1386
+ messageReactions#4f2b9479 flags:# min:flags.0?true can_see_list:flags.2?true reactions_as_tags:flags.3?true results:Vector<ReactionCount> recent_reactions:flags.1?Vector<MessagePeerReaction> = MessageReactions;
1378
1387
 
1379
1388
  messages.messageReactionsList#31bd492d flags:# count:int reactions:Vector<MessagePeerReaction> chats:Vector<Chat> users:Vector<User> next_offset:flags.0?string = messages.MessageReactionsList;
1380
1389
 
@@ -1561,7 +1570,7 @@ storyViews#8d595cd6 flags:# has_viewers:flags.1?true views_count:int forwards_co
1561
1570
 
1562
1571
  storyItemDeleted#51e6ee4f id:int = StoryItem;
1563
1572
  storyItemSkipped#ffadc913 flags:# close_friends:flags.8?true id:int date:int expire_date:int = StoryItem;
1564
- storyItem#af6365a1 flags:# pinned:flags.5?true public:flags.7?true close_friends:flags.8?true min:flags.9?true noforwards:flags.10?true edited:flags.11?true contacts:flags.12?true selected_contacts:flags.13?true out:flags.16?true id:int date:int fwd_from:flags.17?StoryFwdHeader expire_date:int caption:flags.0?string entities:flags.1?Vector<MessageEntity> media:MessageMedia media_areas:flags.14?Vector<MediaArea> privacy:flags.2?Vector<PrivacyRule> views:flags.3?StoryViews sent_reaction:flags.15?Reaction = StoryItem;
1573
+ storyItem#79b26a24 flags:# pinned:flags.5?true public:flags.7?true close_friends:flags.8?true min:flags.9?true noforwards:flags.10?true edited:flags.11?true contacts:flags.12?true selected_contacts:flags.13?true out:flags.16?true id:int date:int from_id:flags.18?Peer fwd_from:flags.17?StoryFwdHeader expire_date:int caption:flags.0?string entities:flags.1?Vector<MessageEntity> media:MessageMedia media_areas:flags.14?Vector<MediaArea> privacy:flags.2?Vector<PrivacyRule> views:flags.3?StoryViews sent_reaction:flags.15?Reaction = StoryItem;
1565
1574
 
1566
1575
  stories.allStoriesNotModified#1158fe3e flags:# state:string stealth_mode:StoriesStealthMode = stories.AllStories;
1567
1576
  stories.allStories#6efc5e81 flags:# has_more:flags.0?true count:int state:string peer_stories:Vector<PeerStories> chats:Vector<Chat> users:Vector<User> stealth_mode:StoriesStealthMode = stories.AllStories;
@@ -1577,7 +1586,7 @@ stories.storyViewsList#59d78fc5 flags:# count:int views_count:int forwards_count
1577
1586
  stories.storyViews#de9eed1d views:Vector<StoryViews> users:Vector<User> = stories.StoryViews;
1578
1587
 
1579
1588
  inputReplyToMessage#22c0f6d5 flags:# reply_to_msg_id:int top_msg_id:flags.0?int reply_to_peer_id:flags.1?InputPeer quote_text:flags.2?string quote_entities:flags.3?Vector<MessageEntity> quote_offset:flags.4?int = InputReplyTo;
1580
- inputReplyToStory#15b0f283 user_id:InputUser story_id:int = InputReplyTo;
1589
+ inputReplyToStory#5881323a peer:InputPeer story_id:int = InputReplyTo;
1581
1590
 
1582
1591
  exportedStoryLink#3fc9053b link:string = ExportedStoryLink;
1583
1592
 
@@ -1634,7 +1643,7 @@ peerColor#b54b5acf flags:# color:flags.0?int background_emoji_id:flags.1?long =
1634
1643
  help.peerColorSet#26219a58 colors:Vector<int> = help.PeerColorSet;
1635
1644
  help.peerColorProfileSet#767d61eb palette_colors:Vector<int> bg_colors:Vector<int> story_colors:Vector<int> = help.PeerColorSet;
1636
1645
 
1637
- help.peerColorOption#ef8430ab flags:# hidden:flags.0?true color_id:int colors:flags.1?help.PeerColorSet dark_colors:flags.2?help.PeerColorSet channel_min_level:flags.3?int = help.PeerColorOption;
1646
+ help.peerColorOption#adec6ebe flags:# hidden:flags.0?true color_id:int colors:flags.1?help.PeerColorSet dark_colors:flags.2?help.PeerColorSet channel_min_level:flags.3?int group_min_level:flags.4?int = help.PeerColorOption;
1638
1647
 
1639
1648
  help.peerColorsNotModified#2ba1f5ce = help.PeerColors;
1640
1649
  help.peerColors#f8ed08 hash:int colors:Vector<help.PeerColorOption> = help.PeerColors;
@@ -1651,6 +1660,60 @@ messages.savedDialogs#f83ae221 dialogs:Vector<SavedDialog> messages:Vector<Messa
1651
1660
  messages.savedDialogsSlice#44ba9dd9 count:int dialogs:Vector<SavedDialog> messages:Vector<Message> chats:Vector<Chat> users:Vector<User> = messages.SavedDialogs;
1652
1661
  messages.savedDialogsNotModified#c01f6fe8 count:int = messages.SavedDialogs;
1653
1662
 
1663
+ savedReactionTag#cb6ff828 flags:# reaction:Reaction title:flags.0?string count:int = SavedReactionTag;
1664
+
1665
+ messages.savedReactionTagsNotModified#889b59ef = messages.SavedReactionTags;
1666
+ messages.savedReactionTags#3259950a tags:Vector<SavedReactionTag> hash:long = messages.SavedReactionTags;
1667
+
1668
+ outboxReadDate#3bb842ac date:int = OutboxReadDate;
1669
+
1670
+ smsjobs.eligibleToJoin#dc8b44cf terms_url:string monthly_sent_sms:int = smsjobs.EligibilityToJoin;
1671
+
1672
+ smsjobs.status#2aee9191 flags:# allow_international:flags.0?true recent_sent:int recent_since:int recent_remains:int total_sent:int total_since:int last_gift_slug:flags.1?string terms_url:string = smsjobs.Status;
1673
+
1674
+ smsJob#e6a1eeb8 job_id:string phone_number:string text:string = SmsJob;
1675
+
1676
+ businessWeeklyOpen#120b1ab9 start_minute:int end_minute:int = BusinessWeeklyOpen;
1677
+
1678
+ businessWorkHours#8c92b098 flags:# open_now:flags.0?true timezone_id:string weekly_open:Vector<BusinessWeeklyOpen> = BusinessWorkHours;
1679
+
1680
+ businessLocation#ac5c1af7 flags:# geo_point:flags.0?GeoPoint address:string = BusinessLocation;
1681
+
1682
+ inputBusinessRecipients#6f8b32aa flags:# existing_chats:flags.0?true new_chats:flags.1?true contacts:flags.2?true non_contacts:flags.3?true exclude_selected:flags.5?true users:flags.4?Vector<InputUser> = InputBusinessRecipients;
1683
+
1684
+ businessRecipients#21108ff7 flags:# existing_chats:flags.0?true new_chats:flags.1?true contacts:flags.2?true non_contacts:flags.3?true exclude_selected:flags.5?true users:flags.4?Vector<long> = BusinessRecipients;
1685
+
1686
+ businessAwayMessageScheduleAlways#c9b9e2b9 = BusinessAwayMessageSchedule;
1687
+ businessAwayMessageScheduleOutsideWorkHours#c3f2f501 = BusinessAwayMessageSchedule;
1688
+ businessAwayMessageScheduleCustom#cc4d9ecc start_date:int end_date:int = BusinessAwayMessageSchedule;
1689
+
1690
+ inputBusinessGreetingMessage#194cb3b shortcut_id:int recipients:InputBusinessRecipients no_activity_days:int = InputBusinessGreetingMessage;
1691
+
1692
+ businessGreetingMessage#e519abab shortcut_id:int recipients:BusinessRecipients no_activity_days:int = BusinessGreetingMessage;
1693
+
1694
+ inputBusinessAwayMessage#832175e0 flags:# offline_only:flags.0?true shortcut_id:int schedule:BusinessAwayMessageSchedule recipients:InputBusinessRecipients = InputBusinessAwayMessage;
1695
+
1696
+ businessAwayMessage#ef156a5c flags:# offline_only:flags.0?true shortcut_id:int schedule:BusinessAwayMessageSchedule recipients:BusinessRecipients = BusinessAwayMessage;
1697
+
1698
+ timezone#ff9289f5 id:string name:string utc_offset:int = Timezone;
1699
+
1700
+ help.timezonesListNotModified#970708cc = help.TimezonesList;
1701
+ help.timezonesList#7b74ed71 timezones:Vector<Timezone> hash:int = help.TimezonesList;
1702
+
1703
+ quickReply#697102b shortcut_id:int shortcut:string top_message:int count:int = QuickReply;
1704
+
1705
+ inputQuickReplyShortcut#24596d41 shortcut:string = InputQuickReplyShortcut;
1706
+ inputQuickReplyShortcutId#1190cf1 shortcut_id:int = InputQuickReplyShortcut;
1707
+
1708
+ messages.quickReplies#c68d6695 quick_replies:Vector<QuickReply> messages:Vector<Message> chats:Vector<Chat> users:Vector<User> = messages.QuickReplies;
1709
+ messages.quickRepliesNotModified#5f91eb5b = messages.QuickReplies;
1710
+
1711
+ connectedBot#e7e999e7 flags:# can_reply:flags.0?true bot_id:long recipients:BusinessRecipients = ConnectedBot;
1712
+
1713
+ account.connectedBots#17d7f87b connected_bots:Vector<ConnectedBot> users:Vector<User> = account.ConnectedBots;
1714
+
1715
+ messages.dialogFilters#2ad93719 flags:# tags_enabled:flags.0?true filters:Vector<DialogFilter> = messages.DialogFilters;
1716
+
1654
1717
  ---functions---
1655
1718
 
1656
1719
  invokeAfterMsg#cb9f372d {X:Type} msg_id:long query:!X = X;
@@ -1662,7 +1725,7 @@ invokeWithMessagesRange#365275f2 {X:Type} range:MessageRange query:!X = X;
1662
1725
  invokeWithTakeout#aca9fd2e {X:Type} takeout_id:long query:!X = X;
1663
1726
 
1664
1727
  auth.sendCode#a677244f phone_number:string api_id:int api_hash:string settings:CodeSettings = auth.SentCode;
1665
- auth.signUp#80eee427 phone_number:string phone_code_hash:string first_name:string last_name:string = auth.Authorization;
1728
+ auth.signUp#aac7b717 flags:# no_joined_notifications:flags.0?true phone_number:string phone_code_hash:string first_name:string last_name:string = auth.Authorization;
1666
1729
  auth.signIn#8d52a951 flags:# phone_number:string phone_code_hash:string phone_code:flags.0?string email_verification:flags.1?EmailVerification = auth.Authorization;
1667
1730
  auth.logOut#3e72ba19 = auth.LoggedOut;
1668
1731
  auth.resetAuthorizations#9fab0d1a = Bool;
@@ -1776,10 +1839,17 @@ account.updateColor#7cefa15d flags:# for_profile:flags.1?true color:flags.2?int
1776
1839
  account.getDefaultBackgroundEmojis#a60ab9ce hash:long = EmojiList;
1777
1840
  account.getChannelDefaultEmojiStatuses#7727a7d5 hash:long = account.EmojiStatuses;
1778
1841
  account.getChannelRestrictedStatusEmojis#35a9e0d5 hash:long = EmojiList;
1842
+ account.updateBusinessWorkHours#4b00e066 flags:# business_work_hours:flags.0?BusinessWorkHours = Bool;
1843
+ account.updateBusinessLocation#9e6b131a flags:# geo_point:flags.1?InputGeoPoint address:flags.0?string = Bool;
1844
+ account.updateBusinessGreetingMessage#66cdafc4 flags:# message:flags.0?InputBusinessGreetingMessage = Bool;
1845
+ account.updateBusinessAwayMessage#a26a7fa5 flags:# message:flags.0?InputBusinessAwayMessage = Bool;
1846
+ account.updateConnectedBot#9c2d527d flags:# can_reply:flags.0?true deleted:flags.1?true bot:InputUser recipients:InputBusinessRecipients = Updates;
1847
+ account.getConnectedBots#4ea4c80f = account.ConnectedBots;
1779
1848
 
1780
1849
  users.getUsers#d91a548 id:Vector<InputUser> = Vector<User>;
1781
1850
  users.getFullUser#b60f5918 id:InputUser = users.UserFull;
1782
1851
  users.setSecureValueErrors#90c894b5 id:InputUser errors:Vector<SecureValueError> = Bool;
1852
+ users.getIsPremiumRequiredToContact#a622aa10 id:Vector<InputUser> = Vector<Bool>;
1783
1853
 
1784
1854
  contacts.getContactIDs#7adc669d hash:long = Vector<int>;
1785
1855
  contacts.getStatuses#c4a353ee = Vector<ContactStatus>;
@@ -1810,15 +1880,15 @@ contacts.setBlocked#94c65c76 flags:# my_stories_from:flags.0?true id:Vector<Inpu
1810
1880
  messages.getMessages#63c66506 id:Vector<InputMessage> = messages.Messages;
1811
1881
  messages.getDialogs#a0f4cb4f flags:# exclude_pinned:flags.0?true folder_id:flags.1?int offset_date:int offset_id:int offset_peer:InputPeer limit:int hash:long = messages.Dialogs;
1812
1882
  messages.getHistory#4423e6c5 peer:InputPeer offset_id:int offset_date:int add_offset:int limit:int max_id:int min_id:int hash:long = messages.Messages;
1813
- messages.search#a7b4e929 flags:# peer:InputPeer q:string from_id:flags.0?InputPeer saved_peer_id:flags.2?InputPeer top_msg_id:flags.1?int filter:MessagesFilter min_date:int max_date:int offset_id:int add_offset:int limit:int max_id:int min_id:int hash:long = messages.Messages;
1883
+ messages.search#29ee847a flags:# peer:InputPeer q:string from_id:flags.0?InputPeer saved_peer_id:flags.2?InputPeer saved_reaction:flags.3?Vector<Reaction> top_msg_id:flags.1?int filter:MessagesFilter min_date:int max_date:int offset_id:int add_offset:int limit:int max_id:int min_id:int hash:long = messages.Messages;
1814
1884
  messages.readHistory#e306d3a peer:InputPeer max_id:int = messages.AffectedMessages;
1815
1885
  messages.deleteHistory#b08f922a flags:# just_clear:flags.0?true revoke:flags.1?true peer:InputPeer max_id:int min_date:flags.2?int max_date:flags.3?int = messages.AffectedHistory;
1816
1886
  messages.deleteMessages#e58e95d2 flags:# revoke:flags.0?true id:Vector<int> = messages.AffectedMessages;
1817
1887
  messages.receivedMessages#5a954c0 max_id:int = Vector<ReceivedNotifyMessage>;
1818
1888
  messages.setTyping#58943ee2 flags:# peer:InputPeer top_msg_id:flags.0?int action:SendMessageAction = Bool;
1819
- messages.sendMessage#280d096f flags:# no_webpage:flags.1?true silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true peer:InputPeer reply_to:flags.0?InputReplyTo message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int send_as:flags.13?InputPeer = Updates;
1820
- messages.sendMedia#72ccc23d flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true peer:InputPeer reply_to:flags.0?InputReplyTo media:InputMedia message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int send_as:flags.13?InputPeer = Updates;
1821
- messages.forwardMessages#c661bbc4 flags:# silent:flags.5?true background:flags.6?true with_my_score:flags.8?true drop_author:flags.11?true drop_media_captions:flags.12?true noforwards:flags.14?true from_peer:InputPeer id:Vector<int> random_id:Vector<long> to_peer:InputPeer top_msg_id:flags.9?int schedule_date:flags.10?int send_as:flags.13?InputPeer = Updates;
1889
+ messages.sendMessage#dff8042c flags:# no_webpage:flags.1?true silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true peer:InputPeer reply_to:flags.0?InputReplyTo message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut = Updates;
1890
+ messages.sendMedia#7bd66041 flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true peer:InputPeer reply_to:flags.0?InputReplyTo media:InputMedia message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut = Updates;
1891
+ messages.forwardMessages#d5039208 flags:# silent:flags.5?true background:flags.6?true with_my_score:flags.8?true drop_author:flags.11?true drop_media_captions:flags.12?true noforwards:flags.14?true from_peer:InputPeer id:Vector<int> random_id:Vector<long> to_peer:InputPeer top_msg_id:flags.9?int schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut = Updates;
1822
1892
  messages.reportSpam#cf1592db peer:InputPeer = Bool;
1823
1893
  messages.getPeerSettings#efd9a6a2 peer:InputPeer = messages.PeerSettings;
1824
1894
  messages.report#8953ab4e peer:InputPeer id:Vector<int> reason:ReportReason message:string = Bool;
@@ -1861,9 +1931,9 @@ messages.getSavedGifs#5cf09635 hash:long = messages.SavedGifs;
1861
1931
  messages.saveGif#327a30cb id:InputDocument unsave:Bool = Bool;
1862
1932
  messages.getInlineBotResults#514e999d flags:# bot:InputUser peer:InputPeer geo_point:flags.0?InputGeoPoint query:string offset:string = messages.BotResults;
1863
1933
  messages.setInlineBotResults#bb12a419 flags:# gallery:flags.0?true private:flags.1?true query_id:long results:Vector<InputBotInlineResult> cache_time:int next_offset:flags.2?string switch_pm:flags.3?InlineBotSwitchPM switch_webview:flags.4?InlineBotWebView = Bool;
1864
- messages.sendInlineBotResult#f7bc68ba flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true hide_via:flags.11?true peer:InputPeer reply_to:flags.0?InputReplyTo random_id:long query_id:long id:string schedule_date:flags.10?int send_as:flags.13?InputPeer = Updates;
1934
+ messages.sendInlineBotResult#3ebee86a flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true hide_via:flags.11?true peer:InputPeer reply_to:flags.0?InputReplyTo random_id:long query_id:long id:string schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut = Updates;
1865
1935
  messages.getMessageEditData#fda68d36 peer:InputPeer id:int = messages.MessageEditData;
1866
- messages.editMessage#48f71778 flags:# no_webpage:flags.1?true invert_media:flags.16?true peer:InputPeer id:int message:flags.11?string media:flags.14?InputMedia reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.15?int = Updates;
1936
+ messages.editMessage#dfd14005 flags:# no_webpage:flags.1?true invert_media:flags.16?true peer:InputPeer id:int message:flags.11?string media:flags.14?InputMedia reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.15?int quick_reply_shortcut_id:flags.17?int = Updates;
1867
1937
  messages.editInlineBotMessage#83557dba flags:# no_webpage:flags.1?true invert_media:flags.16?true id:InputBotInlineMessageID message:flags.11?string media:flags.14?InputMedia reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> = Bool;
1868
1938
  messages.getBotCallbackAnswer#9342ca07 flags:# game:flags.1?true peer:InputPeer msg_id:int data:flags.0?bytes password:flags.2?InputCheckPasswordSRP = messages.BotCallbackAnswer;
1869
1939
  messages.setBotCallbackAnswer#d58f130a flags:# alert:flags.1?true query_id:long message:flags.0?string url:flags.2?string cache_time:int = Bool;
@@ -1896,7 +1966,7 @@ messages.faveSticker#b9ffc55b id:InputDocument unfave:Bool = Bool;
1896
1966
  messages.getUnreadMentions#f107e790 flags:# peer:InputPeer top_msg_id:flags.0?int offset_id:int add_offset:int limit:int max_id:int min_id:int = messages.Messages;
1897
1967
  messages.readMentions#36e5bf4d flags:# peer:InputPeer top_msg_id:flags.0?int = messages.AffectedHistory;
1898
1968
  messages.getRecentLocations#702a40e0 peer:InputPeer limit:int hash:long = messages.Messages;
1899
- messages.sendMultiMedia#456e8987 flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true peer:InputPeer reply_to:flags.0?InputReplyTo multi_media:Vector<InputSingleMedia> schedule_date:flags.10?int send_as:flags.13?InputPeer = Updates;
1969
+ messages.sendMultiMedia#c964709 flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true peer:InputPeer reply_to:flags.0?InputReplyTo multi_media:Vector<InputSingleMedia> schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut = Updates;
1900
1970
  messages.uploadEncryptedFile#5057c497 peer:InputEncryptedChat file:InputEncryptedFile = EncryptedFile;
1901
1971
  messages.searchStickerSets#35705b8a flags:# exclude_featured:flags.0?true q:string hash:long = messages.FoundStickerSets;
1902
1972
  messages.getSplitRanges#1cff7e08 = Vector<MessageRange>;
@@ -1923,7 +1993,7 @@ messages.sendScheduledMessages#bd38850a peer:InputPeer id:Vector<int> = Updates;
1923
1993
  messages.deleteScheduledMessages#59ae2b16 peer:InputPeer id:Vector<int> = Updates;
1924
1994
  messages.getPollVotes#b86e380e flags:# peer:InputPeer id:int option:flags.0?bytes offset:flags.1?string limit:int = messages.VotesList;
1925
1995
  messages.toggleStickerSets#b5052fea flags:# uninstall:flags.0?true archive:flags.1?true unarchive:flags.2?true stickersets:Vector<InputStickerSet> = Bool;
1926
- messages.getDialogFilters#f19ed96d = Vector<DialogFilter>;
1996
+ messages.getDialogFilters#efd48c89 = messages.DialogFilters;
1927
1997
  messages.getSuggestedDialogFilters#a29cd42c = Vector<DialogFilterSuggested>;
1928
1998
  messages.updateDialogFilter#1ad4a04a flags:# id:int filter:flags.0?DialogFilter = Bool;
1929
1999
  messages.updateDialogFiltersOrder#c563c1e4 order:Vector<int> = Bool;
@@ -2001,6 +2071,19 @@ messages.deleteSavedHistory#6e98102b flags:# peer:InputPeer max_id:int min_date:
2001
2071
  messages.getPinnedSavedDialogs#d63d94e0 = messages.SavedDialogs;
2002
2072
  messages.toggleSavedDialogPin#ac81bbde flags:# pinned:flags.0?true peer:InputDialogPeer = Bool;
2003
2073
  messages.reorderPinnedSavedDialogs#8b716587 flags:# force:flags.0?true order:Vector<InputDialogPeer> = Bool;
2074
+ messages.getSavedReactionTags#3637e05b flags:# peer:flags.0?InputPeer hash:long = messages.SavedReactionTags;
2075
+ messages.updateSavedReactionTag#60297dec flags:# reaction:Reaction title:flags.0?string = Bool;
2076
+ messages.getDefaultTagReactions#bdf93428 hash:long = messages.Reactions;
2077
+ messages.getOutboxReadDate#8c4bfe5d peer:InputPeer msg_id:int = OutboxReadDate;
2078
+ messages.getQuickReplies#d483f2a8 hash:long = messages.QuickReplies;
2079
+ messages.reorderQuickReplies#60331907 order:Vector<int> = Bool;
2080
+ messages.checkQuickReplyShortcut#f1d0fbd3 shortcut:string = Bool;
2081
+ messages.editQuickReplyShortcut#5c003cef shortcut_id:int shortcut:string = Bool;
2082
+ messages.deleteQuickReplyShortcut#3cc04740 shortcut_id:int = Bool;
2083
+ messages.getQuickReplyMessages#94a495c3 flags:# shortcut_id:int id:flags.0?Vector<int> hash:long = messages.Messages;
2084
+ messages.sendQuickReplyMessages#33153ad4 peer:InputPeer shortcut_id:int = Updates;
2085
+ messages.deleteQuickReplyMessages#e105e910 shortcut_id:int id:Vector<int> = Updates;
2086
+ messages.toggleDialogFilterTags#fd2dda49 enabled:Bool = Bool;
2004
2087
 
2005
2088
  updates.getState#edd4882a = updates.State;
2006
2089
  updates.getDifference#19c2f763 flags:# pts:int pts_limit:flags.1?int pts_total_limit:flags.0?int date:int qts:int qts_limit:flags.2?int = updates.Difference;
@@ -2045,6 +2128,7 @@ help.getCountriesList#735787a8 lang_code:string hash:int = help.CountriesList;
2045
2128
  help.getPremiumPromo#b81b93d4 = help.PremiumPromo;
2046
2129
  help.getPeerColors#da80f42f hash:int = help.PeerColors;
2047
2130
  help.getPeerProfileColors#abcfa9fd hash:int = help.PeerColors;
2131
+ help.getTimezonesList#49b30240 hash:int = help.TimezonesList;
2048
2132
 
2049
2133
  channels.readHistory#cc104937 channel:InputChannel max_id:int = Bool;
2050
2134
  channels.deleteMessages#84c1fd4e channel:InputChannel id:Vector<int> = messages.AffectedMessages;
@@ -2106,6 +2190,8 @@ channels.updateColor#d8aa3671 flags:# for_profile:flags.1?true channel:InputChan
2106
2190
  channels.toggleViewForumAsMessages#9738bb15 channel:InputChannel enabled:Bool = Updates;
2107
2191
  channels.getChannelRecommendations#83b70d97 channel:InputChannel = messages.Chats;
2108
2192
  channels.updateEmojiStatus#f0d3e6a8 channel:InputChannel emoji_status:EmojiStatus = Updates;
2193
+ channels.setBoostsToUnblockRestrictions#ad399cee channel:InputChannel boosts:int = Updates;
2194
+ channels.setEmojiStickers#3cd930b7 channel:InputChannel stickerset:InputStickerSet = Bool;
2109
2195
 
2110
2196
  bots.sendCustomRequest#aa2769ed custom_method:string params:DataJSON = DataJSON;
2111
2197
  bots.answerWebhookJSONQuery#e6213f4d query_id:long data:DataJSON = Bool;
@@ -2243,4 +2329,12 @@ premium.applyBoost#6b7da746 flags:# slots:flags.0?Vector<int> peer:InputPeer = p
2243
2329
  premium.getBoostsStatus#42f1f61 peer:InputPeer = premium.BoostsStatus;
2244
2330
  premium.getUserBoosts#39854d1f peer:InputPeer user_id:InputUser = premium.BoostsList;
2245
2331
 
2246
- // LAYER 170
2332
+ smsjobs.isEligibleToJoin#edc39d0 = smsjobs.EligibilityToJoin;
2333
+ smsjobs.join#a74ece2d = Bool;
2334
+ smsjobs.leave#9898ad73 = Bool;
2335
+ smsjobs.updateSettings#93fa0bf flags:# allow_international:flags.0?true = Bool;
2336
+ smsjobs.getStatus#10a698e8 = smsjobs.Status;
2337
+ smsjobs.getSmsJob#778d902f job_id:string = SmsJob;
2338
+ smsjobs.finishJob#4f1ebf24 flags:# job_id:string error:flags.0?string = Bool;
2339
+
2340
+ // LAYER 176