1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2025-09-03 15:19:30 +00:00

fix of captionLength

This commit is contained in:
2025-06-01 22:02:46 +06:00
parent 8aa29e56d3
commit 5a7741faf6
2 changed files with 3 additions and 1 deletions

View File

@@ -10187,6 +10187,7 @@ public final class dev/inmo/tgbotapi/types/CommonKt {
public static final fun getPollOptionTextLength ()Lkotlin/ranges/IntRange;
public static final fun getPollOptionsLimit ()Lkotlin/ranges/IntRange;
public static final fun getPollQuestionTextLength ()Lkotlin/ranges/IntRange;
public static final fun getPostCaptionLength ()Lkotlin/ranges/IntRange;
public static final fun getSlotMachineDiceResultLimit ()Lkotlin/ranges/IntRange;
public static final fun getStickerKeywordLengthLimit ()Lkotlin/ranges/IntRange;
public static final fun getSuggestedTipAmountsLimit ()Lkotlin/ranges/IntRange;

View File

@@ -55,7 +55,8 @@ val horizontalAccuracyLimit = 0F .. 1500F
val getUpdatesLimit = 1 .. 100
val callbackQueryAnswerLength = 0 until 200
val captionLength = 0 .. 2048
val captionLength = 0 .. 1024
val postCaptionLength = 0 .. 2048
val textLength = 1 .. 4096
val userProfilePhotosRequestLimit = 0 .. 100
val chatTitleLength = 1 until 255