Bot API 6.3 (#1063)

* Added API changes

* Added changelog

* Oops. Move changelog

* Update tests

* Remove experimental

* Added message content type

* Update message aliases

* Update changes

* Update texts

* Bump version

* Remove versionadded badge
This commit is contained in:
Alex Root Junior 2022-11-06 14:28:21 +02:00 committed by GitHub
parent 3ae5d904c9
commit b287551590
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
275 changed files with 5821 additions and 1133 deletions

View file

@ -2,7 +2,7 @@
getChatMenuButton
#################
Returns: :obj:`MenuButton`
Returns: :obj:`Union[MenuButtonDefault, MenuButtonWebApp, MenuButtonCommands]`
.. automodule:: aiogram.methods.get_chat_menu_button
:members:
@ -18,7 +18,7 @@ As bot method
.. code-block::
result: MenuButton = await bot.get_chat_menu_button(...)
result: Union[MenuButtonDefault, MenuButtonWebApp, MenuButtonCommands] = await bot.get_chat_menu_button(...)
Method as object
@ -34,4 +34,4 @@ With specific bot
.. code-block:: python
result: MenuButton = await bot(GetChatMenuButton(...))
result: Union[MenuButtonDefault, MenuButtonWebApp, MenuButtonCommands] = await bot(GetChatMenuButton(...))