From 90d5833021dcb464bcd7396b3b13d753c7ba1666 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Thu, 6 Feb 2020 13:29:14 +0600 Subject: [PATCH] CommonMultipartFileRequest now is internal --- CHANGELOG.md | 1 + .../requests/common/CommonMultipartFileRequest.kt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b99e1792e1..01928c9549 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,7 @@ * Klock `1.8.6` -> `1.8.7` * Ktor `1.3.0` -> `1.3.1` * Now it is possible to get updates by polling with custom executor engine +* `CommonMultipartFileRequest` now is internal ## 0.22.0 diff --git a/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/requests/common/CommonMultipartFileRequest.kt b/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/requests/common/CommonMultipartFileRequest.kt index 783eb02400..723661b011 100644 --- a/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/requests/common/CommonMultipartFileRequest.kt +++ b/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/requests/common/CommonMultipartFileRequest.kt @@ -3,7 +3,7 @@ package com.github.insanusmokrassar.TelegramBotAPI.requests.common import com.github.insanusmokrassar.TelegramBotAPI.requests.abstracts.* import kotlinx.serialization.json.JsonObject -data class CommonMultipartFileRequest( +internal data class CommonMultipartFileRequest( val data: SimpleRequest, override val mediaMap: Map ) : MultipartRequest, Request by data {