override suspend fun getSnapshotDependencies()

in teamcity-rest-client-impl/src/main/kotlin/org/jetbrains/teamcity/rest/coroutines/implementation.kt [1374:1380]


    override suspend fun getSnapshotDependencies(): List<SnapshotDependency> {
        return instance.service
            .buildTypeSnapshotDependencies(idString)
            .`snapshot-dependency`
            ?.filter { it.disabled == false }
            ?.map { SnapshotDependencyImpl(it, true, instance) }.orEmpty()
    }