fun createClient(clientId: String, rootUrl: String, redirectUris: List) { // blah blah } kcManager.createClient("eco-dmc", "http://localhost:9184/manage/", listOf("http://localhost:9184/manage/*")) I get the following error: scripts/eco/MainApp.kts:60:68: error: cannot choose among the following candidates without completing type inference: public fun listOf(vararg elements: String): List defined in kotlin.collections public fun listOf(element: String): List defined in kotlin.collections public fun listOf(element: String): List defined in kotlin.collections kcManager.createClient("eco-dmc", "http://localhost:9184/manage/", listOf("http://localhost:9184/manage/*")) ^ scripts/eco/MainApp.kts:284:29: error: cannot choose among the following candidates without completing type inference: public fun listOf(vararg elements: String): List defined in kotlin.collections public fun listOf(element: String): List defined in kotlin.collections public fun listOf(element: String): List defined in kotlin.collections client.webOrigins = listOf("*")