mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-12 02:03:04 +00:00
[3.x] Bot API 6.0 (#890)
* Base implementation * Bump license * Revert re-generated tests * Fix tests, improved docs * Remove TODO * Removed unreachable code * Changed type of `last_synchronization_error_date` * Fixed wrongly cleaned code
This commit is contained in:
parent
286cf39c8a
commit
497436595d
81 changed files with 1942 additions and 147 deletions
9
docs/api/types/chat_administrator_rights.rst
Normal file
9
docs/api/types/chat_administrator_rights.rst
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#######################
|
||||
ChatAdministratorRights
|
||||
#######################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.chat_administrator_rights
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
|
|
@ -40,14 +40,16 @@ Available types
|
|||
poll
|
||||
location
|
||||
venue
|
||||
web_app_data
|
||||
proximity_alert_triggered
|
||||
message_auto_delete_timer_changed
|
||||
voice_chat_scheduled
|
||||
voice_chat_started
|
||||
voice_chat_ended
|
||||
voice_chat_participants_invited
|
||||
video_chat_scheduled
|
||||
video_chat_started
|
||||
video_chat_ended
|
||||
video_chat_participants_invited
|
||||
user_profile_photos
|
||||
file
|
||||
web_app_info
|
||||
reply_keyboard_markup
|
||||
keyboard_button
|
||||
keyboard_button_poll_type
|
||||
|
|
@ -59,6 +61,7 @@ Available types
|
|||
force_reply
|
||||
chat_photo
|
||||
chat_invite_link
|
||||
chat_administrator_rights
|
||||
chat_member
|
||||
chat_member_owner
|
||||
chat_member_administrator
|
||||
|
|
@ -79,6 +82,10 @@ Available types
|
|||
bot_command_scope_chat
|
||||
bot_command_scope_chat_administrators
|
||||
bot_command_scope_chat_member
|
||||
menu_button
|
||||
menu_button_commands
|
||||
menu_button_web_app
|
||||
menu_button_default
|
||||
response_parameters
|
||||
input_media
|
||||
input_media_photo
|
||||
|
|
@ -135,6 +142,7 @@ Inline mode
|
|||
input_contact_message_content
|
||||
input_invoice_message_content
|
||||
chosen_inline_result
|
||||
sent_web_app_message
|
||||
|
||||
Payments
|
||||
========
|
||||
|
|
|
|||
9
docs/api/types/menu_button.rst
Normal file
9
docs/api/types/menu_button.rst
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
##########
|
||||
MenuButton
|
||||
##########
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.menu_button
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
##################
|
||||
VoiceChatScheduled
|
||||
MenuButtonCommands
|
||||
##################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.voice_chat_scheduled
|
||||
.. automodule:: aiogram.types.menu_button_commands
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
9
docs/api/types/menu_button_default.rst
Normal file
9
docs/api/types/menu_button_default.rst
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#################
|
||||
MenuButtonDefault
|
||||
#################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.menu_button_default
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
9
docs/api/types/menu_button_web_app.rst
Normal file
9
docs/api/types/menu_button_web_app.rst
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
################
|
||||
MenuButtonWebApp
|
||||
################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.menu_button_web_app
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
9
docs/api/types/sent_web_app_message.rst
Normal file
9
docs/api/types/sent_web_app_message.rst
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#################
|
||||
SentWebAppMessage
|
||||
#################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.sent_web_app_message
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
##############
|
||||
VoiceChatEnded
|
||||
VideoChatEnded
|
||||
##############
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.voice_chat_ended
|
||||
.. automodule:: aiogram.types.video_chat_ended
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
############################
|
||||
VoiceChatParticipantsInvited
|
||||
VideoChatParticipantsInvited
|
||||
############################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.voice_chat_participants_invited
|
||||
.. automodule:: aiogram.types.video_chat_participants_invited
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
9
docs/api/types/video_chat_scheduled.rst
Normal file
9
docs/api/types/video_chat_scheduled.rst
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
##################
|
||||
VideoChatScheduled
|
||||
##################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.video_chat_scheduled
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
################
|
||||
VoiceChatStarted
|
||||
VideoChatStarted
|
||||
################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.voice_chat_started
|
||||
.. automodule:: aiogram.types.video_chat_started
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
9
docs/api/types/web_app_data.rst
Normal file
9
docs/api/types/web_app_data.rst
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
##########
|
||||
WebAppData
|
||||
##########
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.web_app_data
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
9
docs/api/types/web_app_info.rst
Normal file
9
docs/api/types/web_app_info.rst
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
##########
|
||||
WebAppInfo
|
||||
##########
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.web_app_info
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
Loading…
Add table
Add a link
Reference in a new issue