mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2026-06-19 07:35:19 +00:00
Full Support for Bot API 10.0 (#5229)
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com> Co-authored-by: poolitzer <github@poolitzer.eu> Co-authored-by: Phil Bazun <Phil9lne@gmail.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
ab2996713d
commit
0fb5678180
@@ -52,6 +52,7 @@ PRIVATE_BASE_CLASSES = {
|
||||
"_BaseMedium": "TelegramObject",
|
||||
"_CredentialsBase": "TelegramObject",
|
||||
"_ChatBase": "TelegramObject",
|
||||
"_BaseInputMedia": "TelegramObject",
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -41,6 +41,8 @@
|
||||
- Used for sending paid media to channels
|
||||
* - :meth:`~telegram.Bot.send_photo`
|
||||
- Used for sending photos
|
||||
* - :meth:`~telegram.Bot.send_live_photo`
|
||||
- Used for sending live photos
|
||||
* - :meth:`~telegram.Bot.send_poll`
|
||||
- Used for sending polls
|
||||
* - :meth:`~telegram.Bot.send_sticker`
|
||||
@@ -80,6 +82,8 @@
|
||||
- Used for answering the callback query
|
||||
* - :meth:`~telegram.Bot.answer_inline_query`
|
||||
- Used for answering the inline query
|
||||
* - :meth:`~telegram.Bot.answer_guest_query`
|
||||
- Used for replying to a received guest message
|
||||
* - :meth:`~telegram.Bot.answer_pre_checkout_query`
|
||||
- Used for answering a pre checkout query
|
||||
* - :meth:`~telegram.Bot.answer_shipping_query`
|
||||
@@ -104,6 +108,10 @@
|
||||
- Used for stopping the running poll
|
||||
* - :meth:`~telegram.Bot.set_message_reaction`
|
||||
- Used for setting reactions on messages
|
||||
* - :meth:`~telegram.Bot.delete_message_reaction`
|
||||
- Used for deleting reactions on messages
|
||||
* - :meth:`~telegram.Bot.delete_all_message_reactions`
|
||||
- Used for deleting all reactions by a chat or user
|
||||
|
||||
.. raw:: html
|
||||
|
||||
@@ -167,6 +175,8 @@
|
||||
- Used for unpinning a message
|
||||
* - :meth:`~telegram.Bot.unpin_all_chat_messages`
|
||||
- Used for unpinning all pinned chat messages
|
||||
* - :meth:`~telegram.Bot.get_user_personal_chat_messages`
|
||||
- Used for obtaining the personal chat messages of a user
|
||||
* - :meth:`~telegram.Bot.get_user_profile_audios`
|
||||
- Used for obtaining user's profile audios
|
||||
* - :meth:`~telegram.Bot.get_user_profile_photos`
|
||||
@@ -237,6 +247,10 @@
|
||||
- Used for obtaining the menu button of a private chat or the default menu button
|
||||
* - :meth:`~telegram.Bot.set_chat_menu_button`
|
||||
- Used for setting the menu button of a private chat or the default menu button
|
||||
* - :meth:`~telegram.Bot.set_managed_bot_access_settings`
|
||||
- Used for changing the access settings of a managed bot
|
||||
* - :meth:`~telegram.Bot.get_managed_bot_access_settings`
|
||||
- Used for obtaining the access settings of a managed bot
|
||||
* - :meth:`~telegram.Bot.set_my_description`
|
||||
- Used for setting the description of the bot
|
||||
* - :meth:`~telegram.Bot.get_my_description`
|
||||
|
||||
@@ -8,6 +8,7 @@ Available Types
|
||||
telegram.animation
|
||||
telegram.audio
|
||||
telegram.birthdate
|
||||
telegram.botaccesssettings
|
||||
telegram.botcommand
|
||||
telegram.botcommandscope
|
||||
telegram.botcommandscopeallchatadministrators
|
||||
@@ -101,15 +102,22 @@ Available Types
|
||||
telegram.inputmediaanimation
|
||||
telegram.inputmediaaudio
|
||||
telegram.inputmediadocument
|
||||
telegram.inputmedialivephoto
|
||||
telegram.inputmedialocation
|
||||
telegram.inputmediaphoto
|
||||
telegram.inputmediasticker
|
||||
telegram.inputmediavenue
|
||||
telegram.inputmediavideo
|
||||
telegram.inputpaidmedia
|
||||
telegram.inputpaidmedialivephoto
|
||||
telegram.inputpaidmediaphoto
|
||||
telegram.inputpaidmediavideo
|
||||
telegram.inputpollmedia
|
||||
telegram.inputprofilephoto
|
||||
telegram.inputprofilephotoanimated
|
||||
telegram.inputprofilephotostatic
|
||||
telegram.inputpolloption
|
||||
telegram.inputpolloptionmedia
|
||||
telegram.inputstorycontent
|
||||
telegram.inputstorycontentphoto
|
||||
telegram.inputstorycontentvideo
|
||||
@@ -119,6 +127,7 @@ Available Types
|
||||
telegram.keyboardbuttonrequestmanagedbot
|
||||
telegram.keyboardbuttonrequestusers
|
||||
telegram.linkpreviewoptions
|
||||
telegram.livephoto
|
||||
telegram.location
|
||||
telegram.locationaddress
|
||||
telegram.loginurl
|
||||
@@ -146,6 +155,7 @@ Available Types
|
||||
telegram.ownedgiftunique
|
||||
telegram.paidmedia
|
||||
telegram.paidmediainfo
|
||||
telegram.paidmedialivephoto
|
||||
telegram.paidmediaphoto
|
||||
telegram.paidmediapreview
|
||||
telegram.paidmediapurchased
|
||||
@@ -154,6 +164,7 @@ Available Types
|
||||
telegram.photosize
|
||||
telegram.poll
|
||||
telegram.pollanswer
|
||||
telegram.pollmedia
|
||||
telegram.polloptionadded
|
||||
telegram.polloptiondeleted
|
||||
telegram.preparedkeyboardbutton
|
||||
@@ -166,6 +177,7 @@ Available Types
|
||||
telegram.replykeyboardmarkup
|
||||
telegram.replykeyboardremove
|
||||
telegram.replyparameters
|
||||
telegram.sentguestmessage
|
||||
telegram.sentwebappmessage
|
||||
telegram.shareduser
|
||||
telegram.story
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
BotAccessSettings
|
||||
=================
|
||||
|
||||
.. autoclass:: telegram.BotAccessSettings
|
||||
:members:
|
||||
:show-inheritance:
|
||||
@@ -0,0 +1,6 @@
|
||||
InputMediaLivePhoto
|
||||
===================
|
||||
|
||||
.. autoclass:: telegram.InputMediaLivePhoto
|
||||
:members:
|
||||
:show-inheritance:
|
||||
@@ -0,0 +1,6 @@
|
||||
InputMediaLocation
|
||||
==================
|
||||
|
||||
.. autoclass:: telegram.InputMediaLocation
|
||||
:members:
|
||||
:show-inheritance:
|
||||
@@ -0,0 +1,6 @@
|
||||
InputMediaSticker
|
||||
=================
|
||||
|
||||
.. autoclass:: telegram.InputMediaSticker
|
||||
:members:
|
||||
:show-inheritance:
|
||||
@@ -0,0 +1,6 @@
|
||||
InputMediaVenue
|
||||
===============
|
||||
|
||||
.. autoclass:: telegram.InputMediaVenue
|
||||
:members:
|
||||
:show-inheritance:
|
||||
@@ -0,0 +1,6 @@
|
||||
InputPaidMediaLivePhoto
|
||||
======================
|
||||
|
||||
.. autoclass:: telegram.InputPaidMediaLivePhoto
|
||||
:members:
|
||||
:show-inheritance:
|
||||
@@ -0,0 +1,6 @@
|
||||
InputPollMedia
|
||||
==============
|
||||
|
||||
.. versionadded:: NEXT.VERSION
|
||||
|
||||
.. autoclass:: telegram.InputPollMedia
|
||||
@@ -0,0 +1,6 @@
|
||||
InputPollOptionMedia
|
||||
====================
|
||||
|
||||
.. versionadded:: NEXT.VERSION
|
||||
|
||||
.. autoclass:: telegram.InputPollOptionMedia
|
||||
@@ -0,0 +1,6 @@
|
||||
LivePhoto
|
||||
=========
|
||||
|
||||
.. autoclass:: telegram.LivePhoto
|
||||
:members:
|
||||
:show-inheritance:
|
||||
@@ -0,0 +1,6 @@
|
||||
PaidMediaLivePhoto
|
||||
==================
|
||||
|
||||
.. autoclass:: telegram.PaidMediaLivePhoto
|
||||
:members:
|
||||
:show-inheritance:
|
||||
@@ -0,0 +1,6 @@
|
||||
PollMedia
|
||||
=========
|
||||
|
||||
.. autoclass:: telegram.PollMedia
|
||||
:members:
|
||||
:show-inheritance:
|
||||
@@ -0,0 +1,6 @@
|
||||
SentGuestMessage
|
||||
================
|
||||
|
||||
.. autoclass:: telegram.SentGuestMessage
|
||||
:members:
|
||||
:show-inheritance:
|
||||
Reference in New Issue
Block a user