5ea1abaadd
fix typo in docs
2023-06-18 01:57:08 +02:00
26575dc5e7
Added support for launching Web Apps from inline query results by replacing the parameters switch_pm_text and switch_pm_parameter of the method answerInlineQuery with the parameter button of type InlineQueryResultsButton.
2023-04-22 20:51:08 +04:00
1d62adc262
Added the ability to get the current bot name in the given language as the class BotName using the method getMyName.
2023-04-22 18:30:46 +04:00
77e1928628
Added the ability to set different bot names for different user languages using the method setMyName.
2023-04-22 18:25:24 +04:00
3f07dc4ce8
thumb
...
Co-authored-by: _run <khumogo1@gmail.com >
2023-03-26 20:04:29 +03:00
2e589ab6e1
Thumb type spec
2023-03-26 18:00:35 +03:00
39360e0640
send_video thumbnail hint
...
Co-authored-by: _run <khumogo1@gmail.com >
2023-03-25 16:38:16 +03:00
b1c172c421
send_document thumbnail hint
...
Co-authored-by: _run <khumogo1@gmail.com >
2023-03-25 16:38:05 +03:00
14434b398e
send_animation thumbnail hint
...
Co-authored-by: _run <khumogo1@gmail.com >
2023-03-25 16:34:08 +03:00
c9ef0d71f0
Deprecation warnings equalisation
2023-03-25 15:17:29 +03:00
6a9c25cf80
Fix set_sticker_set_thumb and set_sticker_set_thumbnail
2023-03-25 14:56:31 +03:00
e56c60ac00
thumb deprecation typo and thumb->thumbnail param rename
2023-03-25 14:44:50 +03:00
7c7a063fb6
Fix some code hints
2023-03-25 14:38:02 +03:00
1e450ebd15
Bot API 6.6 review changes
2023-03-19 17:31:53 +04:00
3b4e6fed04
Renamed the method setStickerSetThumb to setStickerSetThumbnail and its parameter thumb to thumbnail.
2023-03-11 23:37:32 +04:00
5c6b867582
Renamed the field thumb in the classes Animation, Audio, Document, Sticker, Video, VideoNote, InputMediaAnimation, InputMediaAudio, InputMediaDocument, InputMediaVideo, StickerSet to thumbnail. Renamed the parameter thumb in the methods sendAnimation, sendAudio, sendDocument, sendVideo, sendVideoNote to thumbnail.
2023-03-11 23:34:17 +04:00
715aabaf49
Added the method setStickerMaskPosition for changing the mask position of a mask sticker.
2023-03-11 23:06:57 +04:00
9fa5b91e58
Added the method setStickerKeywords for changing the search keywords assigned to a sticker.
2023-03-11 22:58:41 +04:00
de5a32e45c
Fixed custom_emoji_ids and added set_sticker_emoji_list, and and fixed some typehints
2023-03-11 22:53:33 +04:00
db087427fc
Added the method deleteStickerSet for complete deletion of a given sticker set that was created by the bot.
2023-03-11 22:27:37 +04:00
385fc6a6da
Added the method setStickerSetTitle for editing the title of sticker sets created by the bot.
2023-03-11 22:24:34 +04:00
ac0b386625
Added the method setCustomEmojiStickerSetThumbnail for editing the thumbnail of custom emoji sticker sets created by the bot.
2023-03-11 22:19:49 +04:00
ae44b0022d
Added support for .WEBP, .TGS, and .WEBM files in uploadStickerFile by replacing the parameter png_sticker in the method uploadStickerFile with the parameters sticker and sticker_format.
2023-03-11 22:15:31 +04:00
73135d6012
Added support for .WEBP files in createNewStickerSet and addStickerToSet.
2023-03-11 22:03:37 +04:00
19dcce0d5b
Added support for the creation of sticker sets with multiple initial stickers in createNewStickerSet by replacing the parameters png_sticker, tgs_sticker, webm_sticker, emojis and mask_position with the parameters stickers and sticker_format.
2023-03-11 21:59:22 +04:00
f527fc91f6
Replaced the parameters png_sticker, tgs_sticker, webm_sticker, emojis and mask_position in the method addStickerToSet with the parameter sticker of the type InputSticker.
2023-03-11 18:18:07 +04:00
8a858cac4e
Added the parameter needs_repainting to the method createNewStickerSet to automatically change the color of emoji based on context (e.g., use text color in messages, accent color in statuses, etc.).
2023-03-11 16:39:04 +04:00
f30457bd75
Added support for the creation of custom emoji sticker sets in createNewStickerSet.
2023-03-11 16:33:02 +04:00
54caf30f69
Added the parameter emoji to the method sendSticker to specify an emoji for just uploaded stickers.
2023-03-11 15:50:09 +04:00
09e4a2a437
Added the ability to get the current bot short description in the given language as the class BotShortDescription using the method getMyShortDescription.
2023-03-11 15:46:35 +04:00
9b81a29a6a
Added the ability to set different bot short descriptions for different user languages using the method setMyShortDescription.
2023-03-11 15:40:54 +04:00
65dcd67140
Added the ability to get the current bot description in the given language as the class BotDescription using the method getMyDescription.
2023-03-11 15:35:00 +04:00
c84b771e5a
Added the ability to set different bot descriptions for different user languages using the method setMyDescription.
2023-03-10 21:36:44 +04:00
c9b6d3f868
New content types added + typo fix
2023-02-22 09:49:29 +03:00
4179e502c3
Fix description
2023-02-05 11:13:31 +04:00
a9b878107c
Fix can_send_media_messages param, added warnings
2023-02-04 22:24:26 +04:00
d1348606e3
Added use_independent_chat_permissions to setchatpermissions
2023-02-04 20:04:07 +04:00
d0d03d0c09
Added use_independent_chat_permissions for restrictchatmember
2023-02-04 19:59:49 +04:00
5e0da40fcd
Fix "invite link must be non-empty" error
...
`bot.edit_chat_invite_link` method contained a mistake: `invite_link` and `name` were supposed to be vice-versa in `apihelper.edit_chat_invite_link(...)` call. This caused to be invite_link empty or contain invalid value, resulting to get `Bad Request: invite link must be non-empty` error.
This also affected the async version.
2023-01-21 17:00:36 +04:00
651db29cb2
Fix typehints for stop_poll reply markup
2023-01-03 23:45:59 +02:00
9f8256607a
Added the parameter message_thread_id to the method sendChatAction for sending chat actions to a specific message thread or a forum topic.
...
Added the parameter message_thread_id to the method sendChatAction for sending chat actions to a specific message thread or a forum topic.
2022-12-30 20:23:53 +04:00
f297ad23c7
Added methods for topic management
...
Added the methods editGeneralForumTopic, closeGeneralForumTopic, reopenGeneralForumTopic, hideGeneralForumTopic, unhideGeneralForumTopic for managing the General topic in forums.
2022-12-30 20:19:50 +04:00
107f92314b
icon_custom_emoji_id and name parameters made optional for edit_forum_topic
...
The parameters name and icon_custom_emoji_id of the method editForumTopic are now optional. If they are omitted, the existing values are kept.
2022-12-30 19:50:14 +04:00
4d11e97c25
has_spoiler parameter
...
Added the parameter has_spoiler to the methods sendPhoto, sendVideo, and sendAnimation.
2022-12-30 19:20:23 +04:00
ba64180b5f
Merge pull request #1854 from Cub11k/master
...
Fixed typehints for reply markup in editing methods
2022-12-30 16:44:31 +03:00
69afd7232e
Fixed typehints for reply markup in editing methods
2022-12-30 14:02:02 +02:00
625ae09573
Merge pull request #1839 from coder2020official/master
...
Fix bug with asyncwebhooks
2022-12-19 17:35:23 +04:00
5b279b7ad9
(A)SyncWebhookListener changes
2022-12-19 17:28:05 +04:00
43abedbff7
Fixed register_next_step_handler_by_chat_id chat_id description
2022-12-02 23:59:59 +03:00
0759c8e081
Update __init__.py
2022-11-26 20:07:08 +04:00