File tree Expand file tree Collapse file tree 4 files changed +18
-2
lines changed
src/jsMain/kotlin/io/modelcontextprotocol/kotlin/sdk/internal Expand file tree Collapse file tree 4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 77
88jobs :
99 validate-pr :
10- runs-on : ubuntu -latest
10+ runs-on : macos -latest
1111 name : Validate PR
1212 steps :
1313 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ public synthetic class io/modelcontextprotocol/kotlin/sdk/AudioContent$$serializ
2222 public final fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
2323 public final fun serialize (Lkotlinx/serialization/encoding/Encoder;Lio/modelcontextprotocol/kotlin/sdk/AudioContent;)V
2424 public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
25- public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer;
2625}
2726
2827public final class io/modelcontextprotocol/kotlin/sdk/AudioContent$Companion {
Original file line number Diff line number Diff line change @@ -223,6 +223,16 @@ kotlin {
223223 iosX64()
224224 iosSimulatorArm64()
225225
226+ js(IR ) {
227+ nodejs {
228+ testTask {
229+ useMocha {
230+ timeout = " 30s"
231+ }
232+ }
233+ }
234+ }
235+
226236 wasmJs {
227237 nodejs()
228238 }
Original file line number Diff line number Diff line change 1+ package io.modelcontextprotocol.kotlin.sdk.internal
2+
3+ import kotlinx.coroutines.CoroutineDispatcher
4+ import kotlinx.coroutines.Dispatchers
5+
6+ internal actual val IODispatcher : CoroutineDispatcher
7+ get() = Dispatchers .Default
You can’t perform that action at this time.
0 commit comments