feat(ban): accept delete_message_seconds and app options (#2086)

This commit is contained in:
Hampus
2026-08-29 16:22:12 +02:00
committed by GitHub
parent 9f099a9127
commit 805acf4e5e
48 changed files with 1358 additions and 121 deletions
+8 -1
View File
@@ -11854,7 +11854,14 @@
"minimum": 0,
"maximum": 7,
"format": "int32",
"description": "Number of days of messages to delete from the banned user (0-7)"
"description": "Number of days of messages to delete from the banned user (0-7). Deprecated in favor of delete_message_seconds."
},
"delete_message_seconds": {
"type": "integer",
"minimum": 0,
"maximum": 604800,
"format": "int32",
"description": "Number of seconds of messages to delete for the banned user (0-604800, default 0)"
},
"reason": {"description": "The reason for the ban (max 512 characters)", "nullable": true, "type": "string"},
"ban_duration_seconds": {