Skip to content

Commit

Permalink
feat: support api v6 (#2940)
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamadJaara authored and github-actions[bot] committed Aug 9, 2024
1 parent 3ee7419 commit c3117a6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import com.wire.kalium.network.api.unbound.configuration.ApiVersionDTO
import com.wire.kalium.network.api.unbound.configuration.ServerConfigDTO
import com.wire.kalium.network.api.unbound.versioning.VersionInfoDTO

val SupportedApiVersions = setOf(0, 1, 2, 4, 5)
val DevelopmentApiVersions = setOf(6)
val SupportedApiVersions: Set<Int> = setOf(0, 1, 2, 4, 5, 6)
val DevelopmentApiVersions: Set<Int> = emptySet()

interface BackendMetaDataUtil {
fun calculateApiVersion(
Expand Down

0 comments on commit c3117a6

Please sign in to comment.