ftmgram 2.2.17__py3-none-any.whl

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