Change "download conversion compression level" type to Double (#1535)

https://opensource.expediagroup.com/graphql-kotlin/docs/schema-generator/writing-schemas/scalars/#primitive-types
This commit is contained in:
schroda
2025-07-20 23:00:00 +02:00
committed by GitHub
parent 5057a57f7f
commit 192136e66c
4 changed files with 5 additions and 5 deletions

View File

@@ -117,13 +117,13 @@ interface Settings : Node {
interface SettingsDownloadConversion {
val mimeType: String
val target: String
val compressionLevel: Float?
val compressionLevel: Double?
}
class SettingsDownloadConversionType(
override val mimeType: String,
override val target: String,
override val compressionLevel: Float?,
override val compressionLevel: Double?,
) : SettingsDownloadConversion
data class PartialSettingsType(