fix: restore ios build stability

This commit is contained in:
joshavant
2026-05-26 15:37:32 -07:00
parent 7d6b7f434c
commit 1daef79f80
2 changed files with 5 additions and 5 deletions

View File

@@ -24,7 +24,7 @@ private final class StreamFailureBox: @unchecked Sendable {
}
}
enum TalkGatewayPermissionState: Equatable, Sendable {
enum TalkGatewayPermissionState: Equatable {
case unknown
case ready
case missingScope(String)

View File

@@ -9,7 +9,7 @@ struct TalkRealtimeClientCreateParams: Encodable {
var voice: String?
}
struct TalkRealtimeClientSession: Decodable, Sendable {
struct TalkRealtimeClientSession: Decodable {
let provider: String
let transport: String
let clientSecret: String
@@ -24,12 +24,12 @@ struct TalkRealtimeClientSession: Decodable, Sendable {
}
}
struct TalkRealtimeToolCallResponse: Decodable, Sendable {
struct TalkRealtimeToolCallResponse: Decodable {
let runId: String?
let idempotencyKey: String?
}
struct TalkRealtimeServerEvent: Decodable, Sendable {
struct TalkRealtimeServerEvent: Decodable {
let type: String
let itemId: String?
let item: TalkRealtimeServerItem?
@@ -69,7 +69,7 @@ struct TalkRealtimeServerEvent: Decodable, Sendable {
}
}
struct TalkRealtimeServerItem: Decodable, Sendable {
struct TalkRealtimeServerItem: Decodable {
let id: String?
let type: String?
let callId: String?