Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added antd-kotlin/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
248 changes: 248 additions & 0 deletions antd-kotlin/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions antd-kotlin/lib/src/main/kotlin/com/autonomi/sdk/Models.kt
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ internal fun HealthResponseDto.toHealthStatus(): HealthStatus = HealthStatus(

@Serializable
internal data class DataPutPublicDto(
val cost: String,
val cost: String = "",
val address: String,
)

Expand All @@ -129,7 +129,7 @@ internal data class FileUploadPublicDto(

@Serializable
internal data class DataPutPrivateDto(
val cost: String,
val cost: String = "",
@SerialName("data_map") val dataMap: String,
)

Expand Down