mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Added full support for the Bot API 9.0 (#1671)
* Added full support for the Bot API 9.0 * Bump version
This commit is contained in:
parent
25e9127db9
commit
2c2bd61551
231 changed files with 9565 additions and 389 deletions
10
docs/api/types/accepted_gift_types.rst
Normal file
10
docs/api/types/accepted_gift_types.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#################
|
||||
AcceptedGiftTypes
|
||||
#################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.accepted_gift_types
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/business_bot_rights.rst
Normal file
10
docs/api/types/business_bot_rights.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#################
|
||||
BusinessBotRights
|
||||
#################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.business_bot_rights
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/gift_info.rst
Normal file
10
docs/api/types/gift_info.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
########
|
||||
GiftInfo
|
||||
########
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.gift_info
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
|
|
@ -11,6 +11,7 @@ Available types
|
|||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
accepted_gift_types
|
||||
animation
|
||||
audio
|
||||
background_fill
|
||||
|
|
@ -35,6 +36,7 @@ Available types
|
|||
bot_description
|
||||
bot_name
|
||||
bot_short_description
|
||||
business_bot_rights
|
||||
business_connection
|
||||
business_intro
|
||||
business_location
|
||||
|
|
@ -82,6 +84,9 @@ Available types
|
|||
forum_topic_reopened
|
||||
general_forum_topic_hidden
|
||||
general_forum_topic_unhidden
|
||||
gift
|
||||
gift_info
|
||||
gifts
|
||||
giveaway
|
||||
giveaway_completed
|
||||
giveaway_created
|
||||
|
|
@ -100,6 +105,12 @@ Available types
|
|||
input_paid_media_photo
|
||||
input_paid_media_video
|
||||
input_poll_option
|
||||
input_profile_photo
|
||||
input_profile_photo_animated
|
||||
input_profile_photo_static
|
||||
input_story_content
|
||||
input_story_content_photo
|
||||
input_story_content_video
|
||||
keyboard_button
|
||||
keyboard_button_poll_type
|
||||
keyboard_button_request_chat
|
||||
|
|
@ -107,6 +118,7 @@ Available types
|
|||
keyboard_button_request_users
|
||||
link_preview_options
|
||||
location
|
||||
location_address
|
||||
login_url
|
||||
maybe_inaccessible_message
|
||||
menu_button
|
||||
|
|
@ -124,11 +136,16 @@ Available types
|
|||
message_origin_user
|
||||
message_reaction_count_updated
|
||||
message_reaction_updated
|
||||
owned_gift
|
||||
owned_gift_regular
|
||||
owned_gift_unique
|
||||
owned_gifts
|
||||
paid_media
|
||||
paid_media_info
|
||||
paid_media_photo
|
||||
paid_media_preview
|
||||
paid_media_video
|
||||
paid_message_price_changed
|
||||
photo_size
|
||||
poll
|
||||
poll_answer
|
||||
|
|
@ -144,9 +161,24 @@ Available types
|
|||
reply_parameters
|
||||
response_parameters
|
||||
shared_user
|
||||
star_amount
|
||||
story
|
||||
story_area
|
||||
story_area_position
|
||||
story_area_type
|
||||
story_area_type_link
|
||||
story_area_type_location
|
||||
story_area_type_suggested_reaction
|
||||
story_area_type_unique_gift
|
||||
story_area_type_weather
|
||||
switch_inline_query_chosen_chat
|
||||
text_quote
|
||||
unique_gift
|
||||
unique_gift_backdrop
|
||||
unique_gift_backdrop_colors
|
||||
unique_gift_info
|
||||
unique_gift_model
|
||||
unique_gift_symbol
|
||||
user
|
||||
user_chat_boosts
|
||||
user_profile_photos
|
||||
|
|
@ -241,8 +273,6 @@ Stickers
|
|||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
gift
|
||||
gifts
|
||||
input_sticker
|
||||
mask_position
|
||||
sticker
|
||||
|
|
|
|||
10
docs/api/types/input_profile_photo.rst
Normal file
10
docs/api/types/input_profile_photo.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#################
|
||||
InputProfilePhoto
|
||||
#################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.input_profile_photo
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/input_profile_photo_animated.rst
Normal file
10
docs/api/types/input_profile_photo_animated.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#########################
|
||||
InputProfilePhotoAnimated
|
||||
#########################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.input_profile_photo_animated
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/input_profile_photo_static.rst
Normal file
10
docs/api/types/input_profile_photo_static.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#######################
|
||||
InputProfilePhotoStatic
|
||||
#######################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.input_profile_photo_static
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/input_story_content.rst
Normal file
10
docs/api/types/input_story_content.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#################
|
||||
InputStoryContent
|
||||
#################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.input_story_content
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/input_story_content_photo.rst
Normal file
10
docs/api/types/input_story_content_photo.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
######################
|
||||
InputStoryContentPhoto
|
||||
######################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.input_story_content_photo
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/input_story_content_video.rst
Normal file
10
docs/api/types/input_story_content_video.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
######################
|
||||
InputStoryContentVideo
|
||||
######################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.input_story_content_video
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/location_address.rst
Normal file
10
docs/api/types/location_address.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
###############
|
||||
LocationAddress
|
||||
###############
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.location_address
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/owned_gift.rst
Normal file
10
docs/api/types/owned_gift.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#########
|
||||
OwnedGift
|
||||
#########
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.owned_gift
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/owned_gift_regular.rst
Normal file
10
docs/api/types/owned_gift_regular.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
################
|
||||
OwnedGiftRegular
|
||||
################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.owned_gift_regular
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/owned_gift_unique.rst
Normal file
10
docs/api/types/owned_gift_unique.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
###############
|
||||
OwnedGiftUnique
|
||||
###############
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.owned_gift_unique
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/owned_gifts.rst
Normal file
10
docs/api/types/owned_gifts.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
##########
|
||||
OwnedGifts
|
||||
##########
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.owned_gifts
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/paid_message_price_changed.rst
Normal file
10
docs/api/types/paid_message_price_changed.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#######################
|
||||
PaidMessagePriceChanged
|
||||
#######################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.paid_message_price_changed
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/star_amount.rst
Normal file
10
docs/api/types/star_amount.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
##########
|
||||
StarAmount
|
||||
##########
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.star_amount
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/story_area.rst
Normal file
10
docs/api/types/story_area.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#########
|
||||
StoryArea
|
||||
#########
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.story_area
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/story_area_position.rst
Normal file
10
docs/api/types/story_area_position.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#################
|
||||
StoryAreaPosition
|
||||
#################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.story_area_position
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/story_area_type.rst
Normal file
10
docs/api/types/story_area_type.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#############
|
||||
StoryAreaType
|
||||
#############
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.story_area_type
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/story_area_type_link.rst
Normal file
10
docs/api/types/story_area_type_link.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#################
|
||||
StoryAreaTypeLink
|
||||
#################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.story_area_type_link
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/story_area_type_location.rst
Normal file
10
docs/api/types/story_area_type_location.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#####################
|
||||
StoryAreaTypeLocation
|
||||
#####################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.story_area_type_location
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/story_area_type_suggested_reaction.rst
Normal file
10
docs/api/types/story_area_type_suggested_reaction.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
##############################
|
||||
StoryAreaTypeSuggestedReaction
|
||||
##############################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.story_area_type_suggested_reaction
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/story_area_type_unique_gift.rst
Normal file
10
docs/api/types/story_area_type_unique_gift.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#######################
|
||||
StoryAreaTypeUniqueGift
|
||||
#######################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.story_area_type_unique_gift
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/story_area_type_weather.rst
Normal file
10
docs/api/types/story_area_type_weather.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
####################
|
||||
StoryAreaTypeWeather
|
||||
####################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.story_area_type_weather
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/unique_gift.rst
Normal file
10
docs/api/types/unique_gift.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
##########
|
||||
UniqueGift
|
||||
##########
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.unique_gift
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/unique_gift_backdrop.rst
Normal file
10
docs/api/types/unique_gift_backdrop.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
##################
|
||||
UniqueGiftBackdrop
|
||||
##################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.unique_gift_backdrop
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/unique_gift_backdrop_colors.rst
Normal file
10
docs/api/types/unique_gift_backdrop_colors.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
########################
|
||||
UniqueGiftBackdropColors
|
||||
########################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.unique_gift_backdrop_colors
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/unique_gift_info.rst
Normal file
10
docs/api/types/unique_gift_info.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
##############
|
||||
UniqueGiftInfo
|
||||
##############
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.unique_gift_info
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/unique_gift_model.rst
Normal file
10
docs/api/types/unique_gift_model.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
###############
|
||||
UniqueGiftModel
|
||||
###############
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.unique_gift_model
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
10
docs/api/types/unique_gift_symbol.rst
Normal file
10
docs/api/types/unique_gift_symbol.rst
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
################
|
||||
UniqueGiftSymbol
|
||||
################
|
||||
|
||||
|
||||
.. automodule:: aiogram.types.unique_gift_symbol
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
Loading…
Add table
Add a link
Reference in a new issue