telegrinder 0.5.0__py3-none-any.whl → 0.5.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of telegrinder might be problematic. Click here for more details.
- telegrinder/__meta__.py +1 -1
- telegrinder/bot/cute_types/message.py +2621 -2621
- telegrinder/types/enums.py +4 -0
- telegrinder/types/objects.py +7846 -7846
- {telegrinder-0.5.0.dist-info → telegrinder-0.5.1.dist-info}/METADATA +4 -4
- {telegrinder-0.5.0.dist-info → telegrinder-0.5.1.dist-info}/RECORD +8 -8
- {telegrinder-0.5.0.dist-info → telegrinder-0.5.1.dist-info}/WHEEL +0 -0
- {telegrinder-0.5.0.dist-info → telegrinder-0.5.1.dist-info}/licenses/LICENSE +0 -0
telegrinder/types/enums.py
CHANGED
|
@@ -220,6 +220,7 @@ class ContentType(enum.StrEnum, metaclass=BaseEnumMeta):
|
|
|
220
220
|
VIDEO = "video"
|
|
221
221
|
VIDEO_NOTE = "video_note"
|
|
222
222
|
VOICE = "voice"
|
|
223
|
+
CHECKLIST = "checklist"
|
|
223
224
|
CONTACT = "contact"
|
|
224
225
|
DICE = "dice"
|
|
225
226
|
GAME = "game"
|
|
@@ -251,6 +252,9 @@ class ContentType(enum.StrEnum, metaclass=BaseEnumMeta):
|
|
|
251
252
|
PASSPORT_DATA = "passport_data"
|
|
252
253
|
PROXIMITY_ALERT_TRIGGERED = "proximity_alert_triggered"
|
|
253
254
|
CHAT_BACKGROUND_SET = "chat_background_set"
|
|
255
|
+
CHECKLIST_TASKS_DONE = "checklist_tasks_done"
|
|
256
|
+
CHECKLIST_TASKS_ADDED = "checklist_tasks_added"
|
|
257
|
+
DIRECT_MESSAGE_PRICE_CHANGED = "direct_message_price_changed"
|
|
254
258
|
FORUM_TOPIC_CREATED = "forum_topic_created"
|
|
255
259
|
FORUM_TOPIC_EDITED = "forum_topic_edited"
|
|
256
260
|
FORUM_TOPIC_CLOSED = "forum_topic_closed"
|