From cf2894dcfcfa3b0bd94866a1f78e8c0c6bfcaf6d Mon Sep 17 00:00:00 2001 From: Ryan Gaus Date: Thu, 28 May 2026 15:46:58 -0400 Subject: [PATCH 1/7] fix: add maxRoundTripLatency option --- Sources/LiveKit/Core/RpcClientManager.swift | 9 +++- .../Participant/LocalParticipant+RPC.swift | 41 ++++++++++++++++++- 2 files changed, 46 insertions(+), 4 deletions(-) diff --git a/Sources/LiveKit/Core/RpcClientManager.swift b/Sources/LiveKit/Core/RpcClientManager.swift index c6291b9b6..3bdc73cb4 100644 --- a/Sources/LiveKit/Core/RpcClientManager.swift +++ b/Sources/LiveKit/Core/RpcClientManager.swift @@ -22,6 +22,11 @@ import Foundation /// publishing of v1 RPC packets / v2 RPC request streams. `LocalParticipant.performRpc` /// is a one-line proxy that forwards into this actor. actor RpcClientManager: Loggable { + /// Default upper bound on round-trip latency to the destination, in seconds. Used by the + /// ack watchdog and to clamp the effective response timeout. Exposed so the public + /// `LocalParticipant.performRpc` overloads can share the same default. + static let defaultMaxRoundTripLatency: TimeInterval = 7 + private weak var room: Room? private var pendingAcks: Set = Set() @@ -50,7 +55,8 @@ actor RpcClientManager: Loggable { func performRpc(destinationIdentity: Participant.Identity, method: String, payload: String, - responseTimeout: TimeInterval = 15) async throws -> String + responseTimeout: TimeInterval = 15, + maxRoundTripLatency: TimeInterval = RpcClientManager.defaultMaxRoundTripLatency) async throws -> String { let room = try requireRoom() @@ -58,7 +64,6 @@ actor RpcClientManager: Loggable { let useStreamTransport = remoteClientProtocol >= .v1 && Self.serverSupportsRpcV2(room.serverVersion) let requestId = UUID().uuidString - let maxRoundTripLatency: TimeInterval = 7 let minEffectiveTimeout: TimeInterval = maxRoundTripLatency + 1 let effectiveTimeout = max(responseTimeout, minEffectiveTimeout) diff --git a/Sources/LiveKit/Participant/LocalParticipant+RPC.swift b/Sources/LiveKit/Participant/LocalParticipant+RPC.swift index f87de0c6f..6ec4c203e 100644 --- a/Sources/LiveKit/Participant/LocalParticipant+RPC.swift +++ b/Sources/LiveKit/Participant/LocalParticipant+RPC.swift @@ -33,11 +33,13 @@ public extension LocalParticipant { /// - method: The method name to call /// - payload: The payload to pass to the method /// - responseTimeout: Timeout for receiving a response after the initial connection (in seconds). - /// If a value less than 8s is provided, it will be automatically clamped to 8s - /// to ensure sufficient time for round-trip latency buffering. + /// If a value less than `maxRoundTripLatency + 1` is provided, it will be automatically + /// clamped to that floor to ensure sufficient time for round-trip latency buffering. /// Default: 15s. /// - Returns: The response payload /// - Throws: RpcError on failure. Details in RpcError.message + /// - SeeAlso: ``performRpc(destinationIdentity:method:payload:responseTimeout:maxRoundTripLatency:)`` + /// for an overload that lets callers customize the ack-watchdog deadline. func performRpc(destinationIdentity: Identity, method: String, payload: String, @@ -49,6 +51,41 @@ public extension LocalParticipant { responseTimeout: responseTimeout) } + /// Initiate an RPC call to a remote participant, customizing the ack-watchdog deadline. + /// + /// Behaves identically to ``performRpc(destinationIdentity:method:payload:responseTimeout:)`` + /// but exposes `maxRoundTripLatency`, the upper bound on round-trip latency before the call + /// is rejected with `RpcError.BuiltInError.connectionTimeout`. Increase this on high-latency + /// links where the default 7s ack budget is too tight. + /// + /// ObjC: auto-generated as + /// `performRpcWithDestinationIdentity:method:payload:responseTimeout:maxRoundTripLatency:completionHandler:`. + /// + /// - Parameters: + /// - destinationIdentity: The identity of the destination participant + /// - method: The method name to call + /// - payload: The payload to pass to the method + /// - responseTimeout: Timeout for receiving a response after the initial connection (in seconds). + /// If a value less than `maxRoundTripLatency + 1` is provided, it will be automatically + /// clamped to that floor to ensure sufficient time for round-trip latency buffering. + /// - maxRoundTripLatency: Upper bound on round-trip latency to the destination, in seconds. + /// If no ack arrives within this window the call is rejected with + /// `RpcError.BuiltInError.connectionTimeout`. + /// - Returns: The response payload + /// - Throws: RpcError on failure. Details in RpcError.message + func performRpc(destinationIdentity: Identity, + method: String, + payload: String, + responseTimeout: TimeInterval, + maxRoundTripLatency: TimeInterval) async throws -> String + { + try await requireRoom().rpcClient.performRpc(destinationIdentity: destinationIdentity, + method: method, + payload: payload, + responseTimeout: responseTimeout, + maxRoundTripLatency: maxRoundTripLatency) + } + @available(*, deprecated, message: "registerRpcMethod(_:handler:) has been moved to room.") func registerRpcMethod(_ method: String, handler: @escaping RpcHandler) async From 4e09cc0d07849e4583a027594f08eff27bd3cd50 Mon Sep 17 00:00:00 2001 From: Ryan Gaus Date: Thu, 28 May 2026 15:48:54 -0400 Subject: [PATCH 2/7] fix: add RpcClientManager.defaultResponseTimeout --- Sources/LiveKit/Core/RpcClientManager.swift | 5 ++++- Sources/LiveKit/Participant/LocalParticipant+RPC.swift | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Sources/LiveKit/Core/RpcClientManager.swift b/Sources/LiveKit/Core/RpcClientManager.swift index 3bdc73cb4..71868b3b5 100644 --- a/Sources/LiveKit/Core/RpcClientManager.swift +++ b/Sources/LiveKit/Core/RpcClientManager.swift @@ -27,6 +27,9 @@ actor RpcClientManager: Loggable { /// `LocalParticipant.performRpc` overloads can share the same default. static let defaultMaxRoundTripLatency: TimeInterval = 7 + /// Default timeout for receiving a response after the initial connection, in seconds. + static let defaultResponseTimeout: TimeInterval = 15 + private weak var room: Room? private var pendingAcks: Set = Set() @@ -55,7 +58,7 @@ actor RpcClientManager: Loggable { func performRpc(destinationIdentity: Participant.Identity, method: String, payload: String, - responseTimeout: TimeInterval = 15, + responseTimeout: TimeInterval = RpcClientManager.defaultResponseTimeout, maxRoundTripLatency: TimeInterval = RpcClientManager.defaultMaxRoundTripLatency) async throws -> String { let room = try requireRoom() diff --git a/Sources/LiveKit/Participant/LocalParticipant+RPC.swift b/Sources/LiveKit/Participant/LocalParticipant+RPC.swift index 6ec4c203e..6c440970a 100644 --- a/Sources/LiveKit/Participant/LocalParticipant+RPC.swift +++ b/Sources/LiveKit/Participant/LocalParticipant+RPC.swift @@ -43,7 +43,7 @@ public extension LocalParticipant { func performRpc(destinationIdentity: Identity, method: String, payload: String, - responseTimeout: TimeInterval = 15) async throws -> String + responseTimeout: TimeInterval = RpcClientManager.defaultResponseTimeout) async throws -> String { try await requireRoom().rpcClient.performRpc(destinationIdentity: destinationIdentity, method: method, From e87eff01e7b98345205e4f1f78682747f3af6048 Mon Sep 17 00:00:00 2001 From: Ryan Gaus Date: Thu, 28 May 2026 16:01:10 -0400 Subject: [PATCH 3/7] fix: work around build issue --- Sources/LiveKit/Participant/LocalParticipant+RPC.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/LiveKit/Participant/LocalParticipant+RPC.swift b/Sources/LiveKit/Participant/LocalParticipant+RPC.swift index 6c440970a..6ec4c203e 100644 --- a/Sources/LiveKit/Participant/LocalParticipant+RPC.swift +++ b/Sources/LiveKit/Participant/LocalParticipant+RPC.swift @@ -43,7 +43,7 @@ public extension LocalParticipant { func performRpc(destinationIdentity: Identity, method: String, payload: String, - responseTimeout: TimeInterval = RpcClientManager.defaultResponseTimeout) async throws -> String + responseTimeout: TimeInterval = 15) async throws -> String { try await requireRoom().rpcClient.performRpc(destinationIdentity: destinationIdentity, method: method, From 7ec59c6e24b85499a02a5171408353f073134428 Mon Sep 17 00:00:00 2001 From: Ryan Gaus Date: Thu, 28 May 2026 16:05:50 -0400 Subject: [PATCH 4/7] fix: add changeset --- .changes/rpc-max-round-trip-latency | 1 + 1 file changed, 1 insertion(+) create mode 100644 .changes/rpc-max-round-trip-latency diff --git a/.changes/rpc-max-round-trip-latency b/.changes/rpc-max-round-trip-latency new file mode 100644 index 000000000..267d96572 --- /dev/null +++ b/.changes/rpc-max-round-trip-latency @@ -0,0 +1 @@ +patch type="added" "Allow customizing `maxRoundTripLatency` on `LocalParticipant.performRpc` for high-latency networks From 6015b732f9bccc5406ab2c7de25b5ee7e8de4369 Mon Sep 17 00:00:00 2001 From: Ryan Gaus Date: Thu, 28 May 2026 16:36:48 -0400 Subject: [PATCH 5/7] fix: commit new proto updates --- .../LiveKit/Protos/livekit_metrics.pb.swift | 28 +- .../LiveKit/Protos/livekit_models.pb.swift | 318 +++++++++--------- Sources/LiveKit/Protos/livekit_rtc.pb.swift | 264 +++++++-------- 3 files changed, 305 insertions(+), 305 deletions(-) diff --git a/Sources/LiveKit/Protos/livekit_metrics.pb.swift b/Sources/LiveKit/Protos/livekit_metrics.pb.swift index 2819d684a..d43424ee4 100644 --- a/Sources/LiveKit/Protos/livekit_metrics.pb.swift +++ b/Sources/LiveKit/Protos/livekit_metrics.pb.swift @@ -19,13 +19,13 @@ import SwiftProtobuf // incompatible with the version of SwiftProtobuf to which you are linking. // Please ensure that you are building against the same version of the API // that was used to generate this file. -fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck { +fileprivate nonisolated struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck { struct _2: SwiftProtobuf.ProtobufAPIVersion_2 {} typealias Version = _2 } /// index from [0: MAX_LABEL_PREDEFINED_MAX_VALUE) are for predefined labels (`MetricLabel`) -enum Livekit_MetricLabel: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_MetricLabel: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int /// time to first token from LLM @@ -175,7 +175,7 @@ enum Livekit_MetricLabel: SwiftProtobuf.Enum, Swift.CaseIterable { } -struct Livekit_MetricsBatch: Sendable { +nonisolated struct Livekit_MetricsBatch: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -211,7 +211,7 @@ struct Livekit_MetricsBatch: Sendable { fileprivate var _normalizedTimestamp: SwiftProtobuf.Google_Protobuf_Timestamp? = nil } -struct Livekit_TimeSeriesMetric: Sendable { +nonisolated struct Livekit_TimeSeriesMetric: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -236,7 +236,7 @@ struct Livekit_TimeSeriesMetric: Sendable { init() {} } -struct Livekit_MetricSample: Sendable { +nonisolated struct Livekit_MetricSample: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -262,7 +262,7 @@ struct Livekit_MetricSample: Sendable { fileprivate var _normalizedTimestamp: SwiftProtobuf.Google_Protobuf_Timestamp? = nil } -struct Livekit_EventMetric: Sendable { +nonisolated struct Livekit_EventMetric: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -320,7 +320,7 @@ struct Livekit_EventMetric: Sendable { fileprivate var _normalizedEndTimestamp: SwiftProtobuf.Google_Protobuf_Timestamp? = nil } -struct Livekit_MetricsRecordingHeader: Sendable { +nonisolated struct Livekit_MetricsRecordingHeader: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -362,13 +362,13 @@ struct Livekit_MetricsRecordingHeader: Sendable { // MARK: - Code below here is support for the SwiftProtobuf runtime. -fileprivate let _protobuf_package = "livekit" +fileprivate nonisolated let _protobuf_package = "livekit" -extension Livekit_MetricLabel: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_MetricLabel: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0AGENTS_LLM_TTFT\0\u{1}AGENTS_STT_TTFT\0\u{1}AGENTS_TTS_TTFB\0\u{1}CLIENT_VIDEO_SUBSCRIBER_FREEZE_COUNT\0\u{1}CLIENT_VIDEO_SUBSCRIBER_TOTAL_FREEZE_DURATION\0\u{1}CLIENT_VIDEO_SUBSCRIBER_PAUSE_COUNT\0\u{1}CLIENT_VIDEO_SUBSCRIBER_TOTAL_PAUSES_DURATION\0\u{1}CLIENT_AUDIO_SUBSCRIBER_CONCEALED_SAMPLES\0\u{1}CLIENT_AUDIO_SUBSCRIBER_SILENT_CONCEALED_SAMPLES\0\u{1}CLIENT_AUDIO_SUBSCRIBER_CONCEALMENT_EVENTS\0\u{1}CLIENT_AUDIO_SUBSCRIBER_INTERRUPTION_COUNT\0\u{1}CLIENT_AUDIO_SUBSCRIBER_TOTAL_INTERRUPTION_DURATION\0\u{1}CLIENT_SUBSCRIBER_JITTER_BUFFER_DELAY\0\u{1}CLIENT_SUBSCRIBER_JITTER_BUFFER_EMITTED_COUNT\0\u{1}CLIENT_VIDEO_PUBLISHER_QUALITY_LIMITATION_DURATION_BANDWIDTH\0\u{1}CLIENT_VIDEO_PUBLISHER_QUALITY_LIMITATION_DURATION_CPU\0\u{1}CLIENT_VIDEO_PUBLISHER_QUALITY_LIMITATION_DURATION_OTHER\0\u{1}PUBLISHER_RTT\0\u{1}SERVER_MESH_RTT\0\u{1}SUBSCRIBER_RTT\0\u{2}m?METRIC_LABEL_PREDEFINED_MAX_VALUE\0") } -extension Livekit_MetricsBatch: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_MetricsBatch: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".MetricsBatch" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}timestamp_ms\0\u{3}normalized_timestamp\0\u{3}str_data\0\u{3}time_series\0\u{1}events\0") @@ -422,7 +422,7 @@ extension Livekit_MetricsBatch: SwiftProtobuf.Message, SwiftProtobuf._MessageImp } } -extension Livekit_TimeSeriesMetric: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_TimeSeriesMetric: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TimeSeriesMetric" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}label\0\u{3}participant_identity\0\u{3}track_sid\0\u{1}samples\0\u{1}rid\0") @@ -472,7 +472,7 @@ extension Livekit_TimeSeriesMetric: SwiftProtobuf.Message, SwiftProtobuf._Messag } } -extension Livekit_MetricSample: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_MetricSample: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".MetricSample" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}timestamp_ms\0\u{3}normalized_timestamp\0\u{1}value\0") @@ -516,7 +516,7 @@ extension Livekit_MetricSample: SwiftProtobuf.Message, SwiftProtobuf._MessageImp } } -extension Livekit_EventMetric: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_EventMetric: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".EventMetric" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}label\0\u{3}participant_identity\0\u{3}track_sid\0\u{3}start_timestamp_ms\0\u{3}end_timestamp_ms\0\u{3}normalized_start_timestamp\0\u{3}normalized_end_timestamp\0\u{1}metadata\0\u{1}rid\0") @@ -590,7 +590,7 @@ extension Livekit_EventMetric: SwiftProtobuf.Message, SwiftProtobuf._MessageImpl } } -extension Livekit_MetricsRecordingHeader: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_MetricsRecordingHeader: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".MetricsRecordingHeader" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}room_id\0\u{2}\u{2}duration\0\u{3}start_time\0\u{3}room_tags\0\u{3}room_name\0\u{3}room_start_time\0") diff --git a/Sources/LiveKit/Protos/livekit_models.pb.swift b/Sources/LiveKit/Protos/livekit_models.pb.swift index 2f73c5791..a971f1718 100644 --- a/Sources/LiveKit/Protos/livekit_models.pb.swift +++ b/Sources/LiveKit/Protos/livekit_models.pb.swift @@ -38,12 +38,12 @@ import SwiftProtobuf // incompatible with the version of SwiftProtobuf to which you are linking. // Please ensure that you are building against the same version of the API // that was used to generate this file. -fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck { +fileprivate nonisolated struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck { struct _2: SwiftProtobuf.ProtobufAPIVersion_2 {} typealias Version = _2 } -enum Livekit_AudioCodec: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_AudioCodec: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case defaultAc // = 0 case opus // = 1 @@ -85,7 +85,7 @@ enum Livekit_AudioCodec: SwiftProtobuf.Enum, Swift.CaseIterable { } -enum Livekit_VideoCodec: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_VideoCodec: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case defaultVc // = 0 case h264Baseline // = 1 @@ -131,7 +131,7 @@ enum Livekit_VideoCodec: SwiftProtobuf.Enum, Swift.CaseIterable { } -enum Livekit_ImageCodec: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_ImageCodec: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case icDefault // = 0 case icJpeg // = 1 @@ -166,7 +166,7 @@ enum Livekit_ImageCodec: SwiftProtobuf.Enum, Swift.CaseIterable { } /// Policy for publisher to handle subscribers that are unable to support the primary codec of a track -enum Livekit_BackupCodecPolicy: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_BackupCodecPolicy: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int /// default behavior, the track prefer to regress to backup codec and all subscribers will receive the backup codec, @@ -211,7 +211,7 @@ enum Livekit_BackupCodecPolicy: SwiftProtobuf.Enum, Swift.CaseIterable { } -enum Livekit_TrackType: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_TrackType: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case audio // = 0 case video // = 1 @@ -249,7 +249,7 @@ enum Livekit_TrackType: SwiftProtobuf.Enum, Swift.CaseIterable { } -enum Livekit_TrackSource: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_TrackSource: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case unknown // = 0 case camera // = 1 @@ -295,7 +295,7 @@ enum Livekit_TrackSource: SwiftProtobuf.Enum, Swift.CaseIterable { } -enum Livekit_DataTrackExtensionID: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_DataTrackExtensionID: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case dteiInvalid // = 0 case dteiParticipantSid // = 1 @@ -329,7 +329,7 @@ enum Livekit_DataTrackExtensionID: SwiftProtobuf.Enum, Swift.CaseIterable { } -enum Livekit_VideoQuality: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_VideoQuality: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case low // = 0 case medium // = 1 @@ -371,7 +371,7 @@ enum Livekit_VideoQuality: SwiftProtobuf.Enum, Swift.CaseIterable { } -enum Livekit_ConnectionQuality: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_ConnectionQuality: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case poor // = 0 case good // = 1 @@ -413,7 +413,7 @@ enum Livekit_ConnectionQuality: SwiftProtobuf.Enum, Swift.CaseIterable { } -enum Livekit_ClientConfigSetting: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_ClientConfigSetting: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case unset // = 0 case disabled // = 1 @@ -451,7 +451,7 @@ enum Livekit_ClientConfigSetting: SwiftProtobuf.Enum, Swift.CaseIterable { } -enum Livekit_DisconnectReason: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_DisconnectReason: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case unknownReason // = 0 @@ -577,7 +577,7 @@ enum Livekit_DisconnectReason: SwiftProtobuf.Enum, Swift.CaseIterable { } -enum Livekit_ReconnectReason: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_ReconnectReason: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case rrUnknown // = 0 case rrSignalDisconnected // = 1 @@ -623,7 +623,7 @@ enum Livekit_ReconnectReason: SwiftProtobuf.Enum, Swift.CaseIterable { } -enum Livekit_SubscriptionError: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_SubscriptionError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case seUnknown // = 0 case seCodecUnsupported // = 1 @@ -661,7 +661,7 @@ enum Livekit_SubscriptionError: SwiftProtobuf.Enum, Swift.CaseIterable { } -enum Livekit_AudioTrackFeature: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_AudioTrackFeature: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case tfStereo // = 0 case tfNoDtx // = 1 @@ -717,7 +717,7 @@ enum Livekit_AudioTrackFeature: SwiftProtobuf.Enum, Swift.CaseIterable { } -enum Livekit_PacketTrailerFeature: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_PacketTrailerFeature: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case ptfUserTimestamp // = 0 case ptfFrameID // = 1 @@ -751,7 +751,7 @@ enum Livekit_PacketTrailerFeature: SwiftProtobuf.Enum, Swift.CaseIterable { } -struct Livekit_Pagination: Sendable { +nonisolated struct Livekit_Pagination: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -766,7 +766,7 @@ struct Livekit_Pagination: Sendable { init() {} } -struct Livekit_TokenPagination: Sendable { +nonisolated struct Livekit_TokenPagination: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -779,7 +779,7 @@ struct Livekit_TokenPagination: Sendable { } /// ListUpdate is used for updated APIs where 'repeated string' field is modified. -struct Livekit_ListUpdate: Sendable { +nonisolated struct Livekit_ListUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -801,7 +801,7 @@ struct Livekit_ListUpdate: Sendable { init() {} } -struct Livekit_Room: Sendable { +nonisolated struct Livekit_Room: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -848,7 +848,7 @@ struct Livekit_Room: Sendable { fileprivate var _version: Livekit_TimedVersion? = nil } -struct Livekit_Codec: Sendable { +nonisolated struct Livekit_Codec: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -862,7 +862,7 @@ struct Livekit_Codec: Sendable { init() {} } -struct Livekit_PlayoutDelay: Sendable { +nonisolated struct Livekit_PlayoutDelay: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -878,7 +878,7 @@ struct Livekit_PlayoutDelay: Sendable { init() {} } -struct Livekit_ParticipantPermission: Sendable { +nonisolated struct Livekit_ParticipantPermission: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -924,7 +924,7 @@ struct Livekit_ParticipantPermission: Sendable { init() {} } -struct Livekit_ParticipantInfo: @unchecked Sendable { +nonisolated struct Livekit_ParticipantInfo: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1030,7 +1030,7 @@ struct Livekit_ParticipantInfo: @unchecked Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - enum State: SwiftProtobuf.Enum, Swift.CaseIterable { + nonisolated enum State: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int /// websocket' connected, but not offered yet @@ -1080,7 +1080,7 @@ struct Livekit_ParticipantInfo: @unchecked Sendable { } - enum Kind: SwiftProtobuf.Enum, Swift.CaseIterable { + nonisolated enum Kind: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int /// standard participants, e.g. web clients @@ -1148,7 +1148,7 @@ struct Livekit_ParticipantInfo: @unchecked Sendable { } - enum KindDetail: SwiftProtobuf.Enum, Swift.CaseIterable { + nonisolated enum KindDetail: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case cloudAgent // = 0 case forwarded // = 1 @@ -1201,14 +1201,14 @@ struct Livekit_ParticipantInfo: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -struct Livekit_Encryption: Sendable { +nonisolated struct Livekit_Encryption: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. var unknownFields = SwiftProtobuf.UnknownStorage() - enum TypeEnum: SwiftProtobuf.Enum, Swift.CaseIterable { + nonisolated enum TypeEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case none // = 0 case gcm // = 1 @@ -1249,7 +1249,7 @@ struct Livekit_Encryption: Sendable { init() {} } -struct Livekit_SimulcastCodecInfo: Sendable { +nonisolated struct Livekit_SimulcastCodecInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1275,7 +1275,7 @@ struct Livekit_SimulcastCodecInfo: Sendable { init() {} } -struct Livekit_TrackInfo: @unchecked Sendable { +nonisolated struct Livekit_TrackInfo: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1414,7 +1414,7 @@ struct Livekit_TrackInfo: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -struct Livekit_DataTrackInfo: Sendable { +nonisolated struct Livekit_DataTrackInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1436,7 +1436,7 @@ struct Livekit_DataTrackInfo: Sendable { init() {} } -struct Livekit_DataTrackExtensionParticipantSid: Sendable { +nonisolated struct Livekit_DataTrackExtensionParticipantSid: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1450,7 +1450,7 @@ struct Livekit_DataTrackExtensionParticipantSid: Sendable { init() {} } -struct Livekit_DataTrackSubscriptionOptions: Sendable { +nonisolated struct Livekit_DataTrackSubscriptionOptions: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1474,7 +1474,7 @@ struct Livekit_DataTrackSubscriptionOptions: Sendable { } /// provide information about available spatial layers -struct Livekit_VideoLayer: Sendable { +nonisolated struct Livekit_VideoLayer: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1499,7 +1499,7 @@ struct Livekit_VideoLayer: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - enum Mode: SwiftProtobuf.Enum, Swift.CaseIterable { + nonisolated enum Mode: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case unused // = 0 case oneSpatialLayerPerStream // = 1 @@ -1545,7 +1545,7 @@ struct Livekit_VideoLayer: Sendable { } /// new DataPacket API -struct Livekit_DataPacket: @unchecked Sendable { +nonisolated struct Livekit_DataPacket: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1692,7 +1692,7 @@ struct Livekit_DataPacket: @unchecked Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - enum OneOf_Value: Equatable, Sendable { + nonisolated enum OneOf_Value: Equatable, Sendable { case user(Livekit_UserPacket) /// NOTE: This field was marked as deprecated in the .proto file. case speaker(Livekit_ActiveSpeakerUpdate) @@ -1710,7 +1710,7 @@ struct Livekit_DataPacket: @unchecked Sendable { } - enum Kind: SwiftProtobuf.Enum, Swift.CaseIterable { + nonisolated enum Kind: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case reliable // = 0 case lossy // = 1 @@ -1749,7 +1749,7 @@ struct Livekit_DataPacket: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -struct Livekit_EncryptedPacket: Sendable { +nonisolated struct Livekit_EncryptedPacket: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1768,7 +1768,7 @@ struct Livekit_EncryptedPacket: Sendable { init() {} } -struct Livekit_EncryptedPacketPayload: Sendable { +nonisolated struct Livekit_EncryptedPacketPayload: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1841,7 +1841,7 @@ struct Livekit_EncryptedPacketPayload: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - enum OneOf_Value: Equatable, Sendable { + nonisolated enum OneOf_Value: Equatable, Sendable { case user(Livekit_UserPacket) case chatMessage(Livekit_ChatMessage) case rpcRequest(Livekit_RpcRequest) @@ -1857,7 +1857,7 @@ struct Livekit_EncryptedPacketPayload: Sendable { } /// NOTE: This message was marked as deprecated in the .proto file. -struct Livekit_ActiveSpeakerUpdate: Sendable { +nonisolated struct Livekit_ActiveSpeakerUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1869,7 +1869,7 @@ struct Livekit_ActiveSpeakerUpdate: Sendable { init() {} } -struct Livekit_SpeakerInfo: Sendable { +nonisolated struct Livekit_SpeakerInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1887,7 +1887,7 @@ struct Livekit_SpeakerInfo: Sendable { init() {} } -struct Livekit_UserPacket: Sendable { +nonisolated struct Livekit_UserPacket: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1965,7 +1965,7 @@ struct Livekit_UserPacket: Sendable { fileprivate var _endTime: UInt64? = nil } -struct Livekit_SipDTMF: Sendable { +nonisolated struct Livekit_SipDTMF: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1979,7 +1979,7 @@ struct Livekit_SipDTMF: Sendable { init() {} } -struct Livekit_Transcription: Sendable { +nonisolated struct Livekit_Transcription: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1996,7 +1996,7 @@ struct Livekit_Transcription: Sendable { init() {} } -struct Livekit_TranscriptionSegment: Sendable { +nonisolated struct Livekit_TranscriptionSegment: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2018,7 +2018,7 @@ struct Livekit_TranscriptionSegment: Sendable { init() {} } -struct Livekit_ChatMessage: Sendable { +nonisolated struct Livekit_ChatMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2053,7 +2053,7 @@ struct Livekit_ChatMessage: Sendable { fileprivate var _editTimestamp: Int64? = nil } -struct Livekit_RpcRequest: Sendable { +nonisolated struct Livekit_RpcRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2076,7 +2076,7 @@ struct Livekit_RpcRequest: Sendable { init() {} } -struct Livekit_RpcAck: Sendable { +nonisolated struct Livekit_RpcAck: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2088,7 +2088,7 @@ struct Livekit_RpcAck: Sendable { init() {} } -struct Livekit_RpcResponse: Sendable { +nonisolated struct Livekit_RpcResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2124,7 +2124,7 @@ struct Livekit_RpcResponse: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - enum OneOf_Value: Equatable, Sendable { + nonisolated enum OneOf_Value: Equatable, Sendable { case payload(String) case error(Livekit_RpcError) /// Compressed payload data. When set, this field is used instead of `payload`. @@ -2135,7 +2135,7 @@ struct Livekit_RpcResponse: Sendable { init() {} } -struct Livekit_RpcError: Sendable { +nonisolated struct Livekit_RpcError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2151,7 +2151,7 @@ struct Livekit_RpcError: Sendable { init() {} } -struct Livekit_ParticipantTracks: Sendable { +nonisolated struct Livekit_ParticipantTracks: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2167,7 +2167,7 @@ struct Livekit_ParticipantTracks: Sendable { } /// details about the server -struct Livekit_ServerInfo: Sendable { +nonisolated struct Livekit_ServerInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2189,7 +2189,7 @@ struct Livekit_ServerInfo: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - enum Edition: SwiftProtobuf.Enum, Swift.CaseIterable { + nonisolated enum Edition: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case standard // = 0 case cloud // = 1 @@ -2227,7 +2227,7 @@ struct Livekit_ServerInfo: Sendable { } /// details about the client -struct Livekit_ClientInfo: Sendable { +nonisolated struct Livekit_ClientInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2266,7 +2266,7 @@ struct Livekit_ClientInfo: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - enum SDK: SwiftProtobuf.Enum, Swift.CaseIterable { + nonisolated enum SDK: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case unknown // = 0 case js // = 1 @@ -2356,7 +2356,7 @@ struct Livekit_ClientInfo: Sendable { /// uses these flags to decide whether to enable features that require /// client-side support (e.g. passing RTP packet trailers through to the /// subscriber instead of stripping them). - enum Capability: SwiftProtobuf.Enum, Swift.CaseIterable { + nonisolated enum Capability: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case capUnused // = 0 case capPacketTrailer // = 1 @@ -2394,7 +2394,7 @@ struct Livekit_ClientInfo: Sendable { } /// server provided client configuration -struct Livekit_ClientConfiguration: Sendable { +nonisolated struct Livekit_ClientConfiguration: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2439,7 +2439,7 @@ struct Livekit_ClientConfiguration: Sendable { fileprivate var _disabledCodecs: Livekit_DisabledCodecs? = nil } -struct Livekit_VideoConfiguration: Sendable { +nonisolated struct Livekit_VideoConfiguration: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2451,7 +2451,7 @@ struct Livekit_VideoConfiguration: Sendable { init() {} } -struct Livekit_DisabledCodecs: Sendable { +nonisolated struct Livekit_DisabledCodecs: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2467,7 +2467,7 @@ struct Livekit_DisabledCodecs: Sendable { init() {} } -struct Livekit_RTPDrift: Sendable { +nonisolated struct Livekit_RTPDrift: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2512,7 +2512,7 @@ struct Livekit_RTPDrift: Sendable { fileprivate var _endTime: SwiftProtobuf.Google_Protobuf_Timestamp? = nil } -struct Livekit_RTPStats: @unchecked Sendable { +nonisolated struct Livekit_RTPStats: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2790,7 +2790,7 @@ struct Livekit_RTPStats: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -struct Livekit_RTCPSenderReportState: Sendable { +nonisolated struct Livekit_RTCPSenderReportState: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2815,7 +2815,7 @@ struct Livekit_RTCPSenderReportState: Sendable { init() {} } -struct Livekit_RTPForwarderState: @unchecked Sendable { +nonisolated struct Livekit_RTPForwarderState: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2874,7 +2874,7 @@ struct Livekit_RTPForwarderState: @unchecked Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - enum OneOf_CodecMunger: Equatable, Sendable { + nonisolated enum OneOf_CodecMunger: Equatable, Sendable { case vp8Munger(Livekit_VP8MungerState) } @@ -2884,7 +2884,7 @@ struct Livekit_RTPForwarderState: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -struct Livekit_RTPMungerState: Sendable { +nonisolated struct Livekit_RTPMungerState: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2906,7 +2906,7 @@ struct Livekit_RTPMungerState: Sendable { init() {} } -struct Livekit_VP8MungerState: Sendable { +nonisolated struct Livekit_VP8MungerState: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2930,7 +2930,7 @@ struct Livekit_VP8MungerState: Sendable { init() {} } -struct Livekit_TimedVersion: Sendable { +nonisolated struct Livekit_TimedVersion: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2944,7 +2944,7 @@ struct Livekit_TimedVersion: Sendable { init() {} } -struct Livekit_DataStream: Sendable { +nonisolated struct Livekit_DataStream: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2952,7 +2952,7 @@ struct Livekit_DataStream: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() /// enum for operation types (specific to TextHeader) - enum OperationType: SwiftProtobuf.Enum, Swift.CaseIterable { + nonisolated enum OperationType: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case create // = 0 case update // = 1 @@ -2995,7 +2995,7 @@ struct Livekit_DataStream: Sendable { } /// header properties specific to text streams - struct TextHeader: Sendable { + nonisolated struct TextHeader: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3020,7 +3020,7 @@ struct Livekit_DataStream: Sendable { } /// header properties specific to byte or file streams - struct ByteHeader: Sendable { + nonisolated struct ByteHeader: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3033,7 +3033,7 @@ struct Livekit_DataStream: Sendable { } /// main DataStream.Header that contains a oneof for specific headers - struct Header: Sendable { + nonisolated struct Header: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3088,7 +3088,7 @@ struct Livekit_DataStream: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() /// oneof to choose between specific header types - enum OneOf_ContentHeader: Equatable, Sendable { + nonisolated enum OneOf_ContentHeader: Equatable, Sendable { case textHeader(Livekit_DataStream.TextHeader) case byteHeader(Livekit_DataStream.ByteHeader) @@ -3099,7 +3099,7 @@ struct Livekit_DataStream: Sendable { fileprivate var _totalLength: UInt64? = nil } - struct Chunk: Sendable { + nonisolated struct Chunk: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3134,7 +3134,7 @@ struct Livekit_DataStream: Sendable { fileprivate var _iv: Data? = nil } - struct Trailer: Sendable { + nonisolated struct Trailer: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3156,7 +3156,7 @@ struct Livekit_DataStream: Sendable { init() {} } -struct Livekit_FilterParams: Sendable { +nonisolated struct Livekit_FilterParams: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3170,7 +3170,7 @@ struct Livekit_FilterParams: Sendable { init() {} } -struct Livekit_WebhookConfig: Sendable { +nonisolated struct Livekit_WebhookConfig: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3195,7 +3195,7 @@ struct Livekit_WebhookConfig: Sendable { fileprivate var _filterParams: Livekit_FilterParams? = nil } -struct Livekit_SubscribedAudioCodec: Sendable { +nonisolated struct Livekit_SubscribedAudioCodec: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3211,69 +3211,69 @@ struct Livekit_SubscribedAudioCodec: Sendable { // MARK: - Code below here is support for the SwiftProtobuf runtime. -fileprivate let _protobuf_package = "livekit" +fileprivate nonisolated let _protobuf_package = "livekit" -extension Livekit_AudioCodec: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_AudioCodec: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0DEFAULT_AC\0\u{1}OPUS\0\u{1}AAC\0\u{1}AC_MP3\0") } -extension Livekit_VideoCodec: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_VideoCodec: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0DEFAULT_VC\0\u{1}H264_BASELINE\0\u{1}H264_MAIN\0\u{1}H264_HIGH\0\u{1}VP8\0") } -extension Livekit_ImageCodec: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ImageCodec: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0IC_DEFAULT\0\u{1}IC_JPEG\0") } -extension Livekit_BackupCodecPolicy: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_BackupCodecPolicy: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0PREFER_REGRESSION\0\u{1}SIMULCAST\0\u{1}REGRESSION\0") } -extension Livekit_TrackType: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_TrackType: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0AUDIO\0\u{1}VIDEO\0\u{1}DATA\0") } -extension Livekit_TrackSource: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_TrackSource: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0UNKNOWN\0\u{1}CAMERA\0\u{1}MICROPHONE\0\u{1}SCREEN_SHARE\0\u{1}SCREEN_SHARE_AUDIO\0") } -extension Livekit_DataTrackExtensionID: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataTrackExtensionID: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0DTEI_INVALID\0\u{1}DTEI_PARTICIPANT_SID\0") } -extension Livekit_VideoQuality: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_VideoQuality: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0LOW\0\u{1}MEDIUM\0\u{1}HIGH\0\u{1}OFF\0") } -extension Livekit_ConnectionQuality: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ConnectionQuality: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0POOR\0\u{1}GOOD\0\u{1}EXCELLENT\0\u{1}LOST\0") } -extension Livekit_ClientConfigSetting: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ClientConfigSetting: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0UNSET\0\u{1}DISABLED\0\u{1}ENABLED\0") } -extension Livekit_DisconnectReason: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DisconnectReason: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0UNKNOWN_REASON\0\u{1}CLIENT_INITIATED\0\u{1}DUPLICATE_IDENTITY\0\u{1}SERVER_SHUTDOWN\0\u{1}PARTICIPANT_REMOVED\0\u{1}ROOM_DELETED\0\u{1}STATE_MISMATCH\0\u{1}JOIN_FAILURE\0\u{1}MIGRATION\0\u{1}SIGNAL_CLOSE\0\u{1}ROOM_CLOSED\0\u{1}USER_UNAVAILABLE\0\u{1}USER_REJECTED\0\u{1}SIP_TRUNK_FAILURE\0\u{1}CONNECTION_TIMEOUT\0\u{1}MEDIA_FAILURE\0\u{1}AGENT_ERROR\0") } -extension Livekit_ReconnectReason: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ReconnectReason: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0RR_UNKNOWN\0\u{1}RR_SIGNAL_DISCONNECTED\0\u{1}RR_PUBLISHER_FAILED\0\u{1}RR_SUBSCRIBER_FAILED\0\u{1}RR_SWITCH_CANDIDATE\0") } -extension Livekit_SubscriptionError: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SubscriptionError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0SE_UNKNOWN\0\u{1}SE_CODEC_UNSUPPORTED\0\u{1}SE_TRACK_NOTFOUND\0") } -extension Livekit_AudioTrackFeature: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_AudioTrackFeature: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0TF_STEREO\0\u{1}TF_NO_DTX\0\u{1}TF_AUTO_GAIN_CONTROL\0\u{1}TF_ECHO_CANCELLATION\0\u{1}TF_NOISE_SUPPRESSION\0\u{1}TF_ENHANCED_NOISE_CANCELLATION\0\u{1}TF_PRECONNECT_BUFFER\0") } -extension Livekit_PacketTrailerFeature: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_PacketTrailerFeature: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0PTF_USER_TIMESTAMP\0\u{1}PTF_FRAME_ID\0") } -extension Livekit_Pagination: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_Pagination: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".Pagination" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}after_id\0\u{1}limit\0") @@ -3308,7 +3308,7 @@ extension Livekit_Pagination: SwiftProtobuf.Message, SwiftProtobuf._MessageImple } } -extension Livekit_TokenPagination: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_TokenPagination: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TokenPagination" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}token\0") @@ -3338,7 +3338,7 @@ extension Livekit_TokenPagination: SwiftProtobuf.Message, SwiftProtobuf._Message } } -extension Livekit_ListUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ListUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ListUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}set\0\u{1}add\0\u{1}remove\0\u{1}clear\0") @@ -3383,7 +3383,7 @@ extension Livekit_ListUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImple } } -extension Livekit_Room: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_Room: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".Room" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}sid\0\u{1}name\0\u{3}empty_timeout\0\u{3}max_participants\0\u{3}creation_time\0\u{3}turn_password\0\u{3}enabled_codecs\0\u{1}metadata\0\u{3}num_participants\0\u{3}active_recording\0\u{3}num_publishers\0\u{2}\u{2}version\0\u{3}departure_timeout\0\u{3}creation_time_ms\0") @@ -3482,7 +3482,7 @@ extension Livekit_Room: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementat } } -extension Livekit_Codec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_Codec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".Codec" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}mime\0\u{3}fmtp_line\0") @@ -3517,7 +3517,7 @@ extension Livekit_Codec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementa } } -extension Livekit_PlayoutDelay: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_PlayoutDelay: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".PlayoutDelay" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}enabled\0\u{1}min\0\u{1}max\0") @@ -3557,7 +3557,7 @@ extension Livekit_PlayoutDelay: SwiftProtobuf.Message, SwiftProtobuf._MessageImp } } -extension Livekit_ParticipantPermission: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ParticipantPermission: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ParticipantPermission" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}can_subscribe\0\u{3}can_publish\0\u{3}can_publish_data\0\u{2}\u{4}hidden\0\u{1}recorder\0\u{3}can_publish_sources\0\u{3}can_update_metadata\0\u{1}agent\0\u{3}can_subscribe_metrics\0\u{3}can_manage_agent_session\0") @@ -3632,7 +3632,7 @@ extension Livekit_ParticipantPermission: SwiftProtobuf.Message, SwiftProtobuf._M } } -extension Livekit_ParticipantInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ParticipantInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ParticipantInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}sid\0\u{1}identity\0\u{1}state\0\u{1}tracks\0\u{1}metadata\0\u{3}joined_at\0\u{2}\u{3}name\0\u{1}version\0\u{1}permission\0\u{1}region\0\u{3}is_publisher\0\u{1}kind\0\u{1}attributes\0\u{3}disconnect_reason\0\u{3}joined_at_ms\0\u{3}kind_details\0\u{3}data_tracks\0\u{3}client_protocol\0") @@ -3821,19 +3821,19 @@ extension Livekit_ParticipantInfo: SwiftProtobuf.Message, SwiftProtobuf._Message } } -extension Livekit_ParticipantInfo.State: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ParticipantInfo.State: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0JOINING\0\u{1}JOINED\0\u{1}ACTIVE\0\u{1}DISCONNECTED\0") } -extension Livekit_ParticipantInfo.Kind: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ParticipantInfo.Kind: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0STANDARD\0\u{1}INGRESS\0\u{1}EGRESS\0\u{1}SIP\0\u{1}AGENT\0\u{2}\u{3}CONNECTOR\0\u{1}BRIDGE\0") } -extension Livekit_ParticipantInfo.KindDetail: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ParticipantInfo.KindDetail: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0CLOUD_AGENT\0\u{1}FORWARDED\0\u{1}CONNECTOR_WHATSAPP\0\u{1}CONNECTOR_TWILIO\0\u{1}BRIDGE_RTSP\0") } -extension Livekit_Encryption: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_Encryption: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".Encryption" static let _protobuf_nameMap = SwiftProtobuf._NameMap() @@ -3852,11 +3852,11 @@ extension Livekit_Encryption: SwiftProtobuf.Message, SwiftProtobuf._MessageImple } } -extension Livekit_Encryption.TypeEnum: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_Encryption.TypeEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0NONE\0\u{1}GCM\0\u{1}CUSTOM\0") } -extension Livekit_SimulcastCodecInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SimulcastCodecInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SimulcastCodecInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}mime_type\0\u{1}mid\0\u{1}cid\0\u{1}layers\0\u{3}video_layer_mode\0\u{3}sdp_cid\0") @@ -3911,7 +3911,7 @@ extension Livekit_SimulcastCodecInfo: SwiftProtobuf.Message, SwiftProtobuf._Mess } } -extension Livekit_TrackInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_TrackInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TrackInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}sid\0\u{1}type\0\u{1}name\0\u{1}muted\0\u{1}width\0\u{1}height\0\u{1}simulcast\0\u{3}disable_dtx\0\u{1}source\0\u{1}layers\0\u{3}mime_type\0\u{1}mid\0\u{1}codecs\0\u{1}stereo\0\u{3}disable_red\0\u{1}encryption\0\u{1}stream\0\u{1}version\0\u{3}audio_features\0\u{3}backup_codec_policy\0\u{3}packet_trailer_features\0") @@ -4121,7 +4121,7 @@ extension Livekit_TrackInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplem } } -extension Livekit_DataTrackInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataTrackInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataTrackInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}pub_handle\0\u{1}sid\0\u{1}name\0\u{1}encryption\0") @@ -4166,7 +4166,7 @@ extension Livekit_DataTrackInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageIm } } -extension Livekit_DataTrackExtensionParticipantSid: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataTrackExtensionParticipantSid: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataTrackExtensionParticipantSid" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}id\0\u{3}participant_sid\0") @@ -4201,7 +4201,7 @@ extension Livekit_DataTrackExtensionParticipantSid: SwiftProtobuf.Message, Swift } } -extension Livekit_DataTrackSubscriptionOptions: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataTrackSubscriptionOptions: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataTrackSubscriptionOptions" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}target_fps\0") @@ -4235,7 +4235,7 @@ extension Livekit_DataTrackSubscriptionOptions: SwiftProtobuf.Message, SwiftProt } } -extension Livekit_VideoLayer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_VideoLayer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".VideoLayer" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}quality\0\u{1}width\0\u{1}height\0\u{1}bitrate\0\u{1}ssrc\0\u{3}spatial_layer\0\u{1}rid\0\u{3}repair_ssrc\0") @@ -4300,11 +4300,11 @@ extension Livekit_VideoLayer: SwiftProtobuf.Message, SwiftProtobuf._MessageImple } } -extension Livekit_VideoLayer.Mode: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_VideoLayer.Mode: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0MODE_UNUSED\0\u{1}ONE_SPATIAL_LAYER_PER_STREAM\0\u{1}MULTIPLE_SPATIAL_LAYERS_PER_STREAM\0\u{1}ONE_SPATIAL_LAYER_PER_STREAM_INCOMPLETE_RTCP_SR\0") } -extension Livekit_DataPacket: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataPacket: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataPacket" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}kind\0\u{1}user\0\u{1}speaker\0\u{3}participant_identity\0\u{3}destination_identities\0\u{3}sip_dtmf\0\u{1}transcription\0\u{1}metrics\0\u{3}chat_message\0\u{3}rpc_request\0\u{3}rpc_ack\0\u{3}rpc_response\0\u{3}stream_header\0\u{3}stream_chunk\0\u{3}stream_trailer\0\u{1}sequence\0\u{3}participant_sid\0\u{3}encrypted_packet\0") @@ -4631,11 +4631,11 @@ extension Livekit_DataPacket: SwiftProtobuf.Message, SwiftProtobuf._MessageImple } } -extension Livekit_DataPacket.Kind: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataPacket.Kind: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0RELIABLE\0\u{1}LOSSY\0") } -extension Livekit_EncryptedPacket: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_EncryptedPacket: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".EncryptedPacket" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}encryption_type\0\u{1}iv\0\u{3}key_index\0\u{3}encrypted_value\0") @@ -4680,7 +4680,7 @@ extension Livekit_EncryptedPacket: SwiftProtobuf.Message, SwiftProtobuf._Message } } -extension Livekit_EncryptedPacketPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_EncryptedPacketPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".EncryptedPacketPayload" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}user\0\u{4}\u{2}chat_message\0\u{3}rpc_request\0\u{3}rpc_ack\0\u{3}rpc_response\0\u{3}stream_header\0\u{3}stream_chunk\0\u{3}stream_trailer\0") @@ -4849,7 +4849,7 @@ extension Livekit_EncryptedPacketPayload: SwiftProtobuf.Message, SwiftProtobuf._ } } -extension Livekit_ActiveSpeakerUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ActiveSpeakerUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ActiveSpeakerUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}speakers\0") @@ -4879,7 +4879,7 @@ extension Livekit_ActiveSpeakerUpdate: SwiftProtobuf.Message, SwiftProtobuf._Mes } } -extension Livekit_SpeakerInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SpeakerInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SpeakerInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}sid\0\u{1}level\0\u{1}active\0") @@ -4919,7 +4919,7 @@ extension Livekit_SpeakerInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImpl } } -extension Livekit_UserPacket: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_UserPacket: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UserPacket" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}participant_sid\0\u{1}payload\0\u{3}destination_sids\0\u{1}topic\0\u{3}participant_identity\0\u{3}destination_identities\0\u{2}\u{2}id\0\u{3}start_time\0\u{3}end_time\0\u{1}nonce\0") @@ -4998,7 +4998,7 @@ extension Livekit_UserPacket: SwiftProtobuf.Message, SwiftProtobuf._MessageImple } } -extension Livekit_SipDTMF: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SipDTMF: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SipDTMF" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\u{3}code\0\u{1}digit\0") @@ -5033,7 +5033,7 @@ extension Livekit_SipDTMF: SwiftProtobuf.Message, SwiftProtobuf._MessageImplemen } } -extension Livekit_Transcription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_Transcription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".Transcription" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{4}\u{2}transcribed_participant_identity\0\u{3}track_id\0\u{1}segments\0") @@ -5073,7 +5073,7 @@ extension Livekit_Transcription: SwiftProtobuf.Message, SwiftProtobuf._MessageIm } } -extension Livekit_TranscriptionSegment: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_TranscriptionSegment: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TranscriptionSegment" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}id\0\u{1}text\0\u{3}start_time\0\u{3}end_time\0\u{1}final\0\u{1}language\0") @@ -5128,7 +5128,7 @@ extension Livekit_TranscriptionSegment: SwiftProtobuf.Message, SwiftProtobuf._Me } } -extension Livekit_ChatMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ChatMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ChatMessage" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}id\0\u{1}timestamp\0\u{3}edit_timestamp\0\u{1}message\0\u{1}deleted\0\u{1}generated\0") @@ -5187,7 +5187,7 @@ extension Livekit_ChatMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImpl } } -extension Livekit_RpcRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_RpcRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RpcRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}id\0\u{1}method\0\u{1}payload\0\u{3}response_timeout_ms\0\u{1}version\0\u{3}compressed_payload\0") @@ -5242,7 +5242,7 @@ extension Livekit_RpcRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImple } } -extension Livekit_RpcAck: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_RpcAck: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RpcAck" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}request_id\0") @@ -5272,7 +5272,7 @@ extension Livekit_RpcAck: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement } } -extension Livekit_RpcResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_RpcResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RpcResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}request_id\0\u{1}payload\0\u{1}error\0\u{3}compressed_payload\0") @@ -5351,7 +5351,7 @@ extension Livekit_RpcResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImpl } } -extension Livekit_RpcError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_RpcError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RpcError" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}code\0\u{1}message\0\u{1}data\0") @@ -5391,7 +5391,7 @@ extension Livekit_RpcError: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme } } -extension Livekit_ParticipantTracks: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ParticipantTracks: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ParticipantTracks" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}participant_sid\0\u{3}track_sids\0") @@ -5426,7 +5426,7 @@ extension Livekit_ParticipantTracks: SwiftProtobuf.Message, SwiftProtobuf._Messa } } -extension Livekit_ServerInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ServerInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ServerInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}edition\0\u{1}version\0\u{1}protocol\0\u{1}region\0\u{3}node_id\0\u{3}debug_info\0\u{3}agent_protocol\0") @@ -5486,11 +5486,11 @@ extension Livekit_ServerInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImple } } -extension Livekit_ServerInfo.Edition: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ServerInfo.Edition: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0Standard\0\u{1}Cloud\0") } -extension Livekit_ClientInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ClientInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ClientInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}sdk\0\u{1}version\0\u{1}protocol\0\u{1}os\0\u{3}os_version\0\u{3}device_model\0\u{1}browser\0\u{3}browser_version\0\u{1}address\0\u{1}network\0\u{3}other_sdks\0\u{3}client_protocol\0\u{1}capabilities\0") @@ -5580,15 +5580,15 @@ extension Livekit_ClientInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImple } } -extension Livekit_ClientInfo.SDK: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ClientInfo.SDK: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0UNKNOWN\0\u{1}JS\0\u{1}SWIFT\0\u{1}ANDROID\0\u{1}FLUTTER\0\u{1}GO\0\u{1}UNITY\0\u{1}REACT_NATIVE\0\u{1}RUST\0\u{1}PYTHON\0\u{1}CPP\0\u{1}UNITY_WEB\0\u{1}NODE\0\u{1}UNREAL\0\u{1}ESP32\0") } -extension Livekit_ClientInfo.Capability: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ClientInfo.Capability: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0CAP_UNUSED\0\u{1}CAP_PACKET_TRAILER\0") } -extension Livekit_ClientConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ClientConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ClientConfiguration" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}video\0\u{1}screen\0\u{3}resume_connection\0\u{3}disabled_codecs\0\u{3}force_relay\0") @@ -5642,7 +5642,7 @@ extension Livekit_ClientConfiguration: SwiftProtobuf.Message, SwiftProtobuf._Mes } } -extension Livekit_VideoConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_VideoConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".VideoConfiguration" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}hardware_encoder\0") @@ -5672,7 +5672,7 @@ extension Livekit_VideoConfiguration: SwiftProtobuf.Message, SwiftProtobuf._Mess } } -extension Livekit_DisabledCodecs: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DisabledCodecs: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DisabledCodecs" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}codecs\0\u{1}publish\0") @@ -5707,7 +5707,7 @@ extension Livekit_DisabledCodecs: SwiftProtobuf.Message, SwiftProtobuf._MessageI } } -extension Livekit_RTPDrift: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_RTPDrift: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RTPDrift" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}start_time\0\u{3}end_time\0\u{1}duration\0\u{3}start_timestamp\0\u{3}end_timestamp\0\u{3}rtp_clock_ticks\0\u{3}drift_samples\0\u{3}drift_ms\0\u{3}clock_rate\0") @@ -5781,7 +5781,7 @@ extension Livekit_RTPDrift: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme } } -extension Livekit_RTPStats: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_RTPStats: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RTPStats" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}start_time\0\u{3}end_time\0\u{1}duration\0\u{1}packets\0\u{3}packet_rate\0\u{1}bytes\0\u{1}bitrate\0\u{3}packets_lost\0\u{3}packet_loss_rate\0\u{3}packet_loss_percentage\0\u{3}packets_duplicate\0\u{3}packet_duplicate_rate\0\u{3}bytes_duplicate\0\u{3}bitrate_duplicate\0\u{3}packets_padding\0\u{3}packet_padding_rate\0\u{3}bytes_padding\0\u{3}bitrate_padding\0\u{3}packets_out_of_order\0\u{1}frames\0\u{3}frame_rate\0\u{3}jitter_current\0\u{3}jitter_max\0\u{3}gap_histogram\0\u{1}nacks\0\u{3}nack_misses\0\u{1}plis\0\u{3}last_pli\0\u{1}firs\0\u{3}last_fir\0\u{3}rtt_current\0\u{3}rtt_max\0\u{3}key_frames\0\u{3}last_key_frame\0\u{3}layer_lock_plis\0\u{3}last_layer_lock_pli\0\u{3}nack_acks\0\u{3}nack_repeated\0\u{3}header_bytes\0\u{3}header_bytes_duplicate\0\u{3}header_bytes_padding\0\u{4}\u{3}packet_drift\0\u{3}ntp_report_drift\0\u{3}rebased_report_drift\0\u{3}received_report_drift\0") @@ -6159,7 +6159,7 @@ extension Livekit_RTPStats: SwiftProtobuf.Message, SwiftProtobuf._MessageImpleme } } -extension Livekit_RTCPSenderReportState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_RTCPSenderReportState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RTCPSenderReportState" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}rtp_timestamp\0\u{3}rtp_timestamp_ext\0\u{3}ntp_timestamp\0\u{1}at\0\u{3}at_adjusted\0\u{1}packets\0\u{1}octets\0") @@ -6219,7 +6219,7 @@ extension Livekit_RTCPSenderReportState: SwiftProtobuf.Message, SwiftProtobuf._M } } -extension Livekit_RTPForwarderState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_RTPForwarderState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RTPForwarderState" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}started\0\u{3}reference_layer_spatial\0\u{3}pre_start_time\0\u{3}ext_first_timestamp\0\u{3}dummy_start_timestamp_offset\0\u{3}rtp_munger\0\u{3}vp8_munger\0\u{3}sender_report_state\0") @@ -6350,7 +6350,7 @@ extension Livekit_RTPForwarderState: SwiftProtobuf.Message, SwiftProtobuf._Messa } } -extension Livekit_RTPMungerState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_RTPMungerState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RTPMungerState" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}ext_last_sequence_number\0\u{3}ext_second_last_sequence_number\0\u{3}ext_last_timestamp\0\u{3}ext_second_last_timestamp\0\u{3}last_marker\0\u{3}second_last_marker\0") @@ -6405,7 +6405,7 @@ extension Livekit_RTPMungerState: SwiftProtobuf.Message, SwiftProtobuf._MessageI } } -extension Livekit_VP8MungerState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_VP8MungerState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".VP8MungerState" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}ext_last_picture_id\0\u{3}picture_id_used\0\u{3}last_tl0_pic_idx\0\u{3}tl0_pic_idx_used\0\u{3}tid_used\0\u{3}last_key_idx\0\u{3}key_idx_used\0") @@ -6465,7 +6465,7 @@ extension Livekit_VP8MungerState: SwiftProtobuf.Message, SwiftProtobuf._MessageI } } -extension Livekit_TimedVersion: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_TimedVersion: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TimedVersion" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}unix_micro\0\u{1}ticks\0") @@ -6500,7 +6500,7 @@ extension Livekit_TimedVersion: SwiftProtobuf.Message, SwiftProtobuf._MessageImp } } -extension Livekit_DataStream: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataStream: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataStream" static let _protobuf_nameMap = SwiftProtobuf._NameMap() @@ -6519,11 +6519,11 @@ extension Livekit_DataStream: SwiftProtobuf.Message, SwiftProtobuf._MessageImple } } -extension Livekit_DataStream.OperationType: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataStream.OperationType: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0CREATE\0\u{1}UPDATE\0\u{1}DELETE\0\u{1}REACTION\0") } -extension Livekit_DataStream.TextHeader: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataStream.TextHeader: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = Livekit_DataStream.protoMessageName + ".TextHeader" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}operation_type\0\u{1}version\0\u{3}reply_to_stream_id\0\u{3}attached_stream_ids\0\u{1}generated\0") @@ -6573,7 +6573,7 @@ extension Livekit_DataStream.TextHeader: SwiftProtobuf.Message, SwiftProtobuf._M } } -extension Livekit_DataStream.ByteHeader: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataStream.ByteHeader: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = Livekit_DataStream.protoMessageName + ".ByteHeader" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}name\0") @@ -6603,7 +6603,7 @@ extension Livekit_DataStream.ByteHeader: SwiftProtobuf.Message, SwiftProtobuf._M } } -extension Livekit_DataStream.Header: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataStream.Header: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = Livekit_DataStream.protoMessageName + ".Header" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}stream_id\0\u{1}timestamp\0\u{1}topic\0\u{3}mime_type\0\u{3}total_length\0\u{4}\u{2}encryption_type\0\u{1}attributes\0\u{3}text_header\0\u{3}byte_header\0") @@ -6705,7 +6705,7 @@ extension Livekit_DataStream.Header: SwiftProtobuf.Message, SwiftProtobuf._Messa } } -extension Livekit_DataStream.Chunk: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataStream.Chunk: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = Livekit_DataStream.protoMessageName + ".Chunk" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}stream_id\0\u{3}chunk_index\0\u{1}content\0\u{1}version\0\u{1}iv\0") @@ -6759,7 +6759,7 @@ extension Livekit_DataStream.Chunk: SwiftProtobuf.Message, SwiftProtobuf._Messag } } -extension Livekit_DataStream.Trailer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataStream.Trailer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = Livekit_DataStream.protoMessageName + ".Trailer" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}stream_id\0\u{1}reason\0\u{1}attributes\0") @@ -6799,7 +6799,7 @@ extension Livekit_DataStream.Trailer: SwiftProtobuf.Message, SwiftProtobuf._Mess } } -extension Livekit_FilterParams: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_FilterParams: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".FilterParams" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}include_events\0\u{3}exclude_events\0") @@ -6834,7 +6834,7 @@ extension Livekit_FilterParams: SwiftProtobuf.Message, SwiftProtobuf._MessageImp } } -extension Livekit_WebhookConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_WebhookConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".WebhookConfig" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}url\0\u{3}signing_key\0\u{3}filter_params\0") @@ -6878,7 +6878,7 @@ extension Livekit_WebhookConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageIm } } -extension Livekit_SubscribedAudioCodec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SubscribedAudioCodec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscribedAudioCodec" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}codec\0\u{1}enabled\0") diff --git a/Sources/LiveKit/Protos/livekit_rtc.pb.swift b/Sources/LiveKit/Protos/livekit_rtc.pb.swift index 3bca9ed15..7b019cd17 100644 --- a/Sources/LiveKit/Protos/livekit_rtc.pb.swift +++ b/Sources/LiveKit/Protos/livekit_rtc.pb.swift @@ -38,12 +38,12 @@ import SwiftProtobuf // incompatible with the version of SwiftProtobuf to which you are linking. // Please ensure that you are building against the same version of the API // that was used to generate this file. -fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck { +fileprivate nonisolated struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck { struct _2: SwiftProtobuf.ProtobufAPIVersion_2 {} typealias Version = _2 } -enum Livekit_SignalTarget: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_SignalTarget: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case publisher // = 0 case subscriber // = 1 @@ -77,7 +77,7 @@ enum Livekit_SignalTarget: SwiftProtobuf.Enum, Swift.CaseIterable { } -enum Livekit_StreamState: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_StreamState: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case active // = 0 case paused // = 1 @@ -111,7 +111,7 @@ enum Livekit_StreamState: SwiftProtobuf.Enum, Swift.CaseIterable { } -enum Livekit_CandidateProtocol: SwiftProtobuf.Enum, Swift.CaseIterable { +nonisolated enum Livekit_CandidateProtocol: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case udp // = 0 case tcp // = 1 @@ -149,7 +149,7 @@ enum Livekit_CandidateProtocol: SwiftProtobuf.Enum, Swift.CaseIterable { } -struct Livekit_SignalRequest: Sendable { +nonisolated struct Livekit_SignalRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -338,7 +338,7 @@ struct Livekit_SignalRequest: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - enum OneOf_Message: Equatable, Sendable { + nonisolated enum OneOf_Message: Equatable, Sendable { /// participant offer for publisher case offer(Livekit_SessionDescription) /// participant answering subscriber offer @@ -385,7 +385,7 @@ struct Livekit_SignalRequest: Sendable { init() {} } -struct Livekit_SignalResponse: Sendable { +nonisolated struct Livekit_SignalResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -647,7 +647,7 @@ struct Livekit_SignalResponse: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - enum OneOf_Message: Equatable, Sendable { + nonisolated enum OneOf_Message: Equatable, Sendable { /// sent when join is accepted case join(Livekit_JoinResponse) /// sent when server answers publisher @@ -711,7 +711,7 @@ struct Livekit_SignalResponse: Sendable { init() {} } -struct Livekit_SimulcastCodec: Sendable { +nonisolated struct Livekit_SimulcastCodec: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -729,7 +729,7 @@ struct Livekit_SimulcastCodec: Sendable { init() {} } -struct Livekit_AddTrackRequest: @unchecked Sendable { +nonisolated struct Livekit_AddTrackRequest: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -843,7 +843,7 @@ struct Livekit_AddTrackRequest: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -struct Livekit_PublishDataTrackRequest: Sendable { +nonisolated struct Livekit_PublishDataTrackRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -864,7 +864,7 @@ struct Livekit_PublishDataTrackRequest: Sendable { init() {} } -struct Livekit_PublishDataTrackResponse: Sendable { +nonisolated struct Livekit_PublishDataTrackResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -886,7 +886,7 @@ struct Livekit_PublishDataTrackResponse: Sendable { fileprivate var _info: Livekit_DataTrackInfo? = nil } -struct Livekit_UnpublishDataTrackRequest: Sendable { +nonisolated struct Livekit_UnpublishDataTrackRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -899,7 +899,7 @@ struct Livekit_UnpublishDataTrackRequest: Sendable { init() {} } -struct Livekit_UnpublishDataTrackResponse: Sendable { +nonisolated struct Livekit_UnpublishDataTrackResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -921,7 +921,7 @@ struct Livekit_UnpublishDataTrackResponse: Sendable { fileprivate var _info: Livekit_DataTrackInfo? = nil } -struct Livekit_DataTrackSubscriberHandles: Sendable { +nonisolated struct Livekit_DataTrackSubscriberHandles: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -931,7 +931,7 @@ struct Livekit_DataTrackSubscriberHandles: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - struct PublishedDataTrack: Sendable { + nonisolated struct PublishedDataTrack: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -950,7 +950,7 @@ struct Livekit_DataTrackSubscriberHandles: Sendable { init() {} } -struct Livekit_TrickleRequest: Sendable { +nonisolated struct Livekit_TrickleRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -966,7 +966,7 @@ struct Livekit_TrickleRequest: Sendable { init() {} } -struct Livekit_MuteTrackRequest: Sendable { +nonisolated struct Livekit_MuteTrackRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -980,7 +980,7 @@ struct Livekit_MuteTrackRequest: Sendable { init() {} } -struct Livekit_JoinResponse: @unchecked Sendable { +nonisolated struct Livekit_JoinResponse: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1090,7 +1090,7 @@ struct Livekit_JoinResponse: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -struct Livekit_ReconnectResponse: Sendable { +nonisolated struct Livekit_ReconnectResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1126,7 +1126,7 @@ struct Livekit_ReconnectResponse: Sendable { fileprivate var _serverInfo: Livekit_ServerInfo? = nil } -struct Livekit_TrackPublishedResponse: Sendable { +nonisolated struct Livekit_TrackPublishedResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1149,7 +1149,7 @@ struct Livekit_TrackPublishedResponse: Sendable { fileprivate var _track: Livekit_TrackInfo? = nil } -struct Livekit_TrackUnpublishedResponse: Sendable { +nonisolated struct Livekit_TrackUnpublishedResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1161,7 +1161,7 @@ struct Livekit_TrackUnpublishedResponse: Sendable { init() {} } -struct Livekit_SessionDescription: Sendable { +nonisolated struct Livekit_SessionDescription: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1180,7 +1180,7 @@ struct Livekit_SessionDescription: Sendable { init() {} } -struct Livekit_ParticipantUpdate: Sendable { +nonisolated struct Livekit_ParticipantUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1192,7 +1192,7 @@ struct Livekit_ParticipantUpdate: Sendable { init() {} } -struct Livekit_UpdateSubscription: Sendable { +nonisolated struct Livekit_UpdateSubscription: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1208,7 +1208,7 @@ struct Livekit_UpdateSubscription: Sendable { init() {} } -struct Livekit_UpdateDataSubscription: Sendable { +nonisolated struct Livekit_UpdateDataSubscription: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1217,7 +1217,7 @@ struct Livekit_UpdateDataSubscription: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - struct Update: Sendable { + nonisolated struct Update: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1247,7 +1247,7 @@ struct Livekit_UpdateDataSubscription: Sendable { init() {} } -struct Livekit_UpdateTrackSettings: Sendable { +nonisolated struct Livekit_UpdateTrackSettings: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1282,7 +1282,7 @@ struct Livekit_UpdateTrackSettings: Sendable { init() {} } -struct Livekit_UpdateLocalAudioTrack: Sendable { +nonisolated struct Livekit_UpdateLocalAudioTrack: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1296,7 +1296,7 @@ struct Livekit_UpdateLocalAudioTrack: Sendable { init() {} } -struct Livekit_UpdateLocalVideoTrack: Sendable { +nonisolated struct Livekit_UpdateLocalVideoTrack: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1312,7 +1312,7 @@ struct Livekit_UpdateLocalVideoTrack: Sendable { init() {} } -struct Livekit_LeaveRequest: Sendable { +nonisolated struct Livekit_LeaveRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1338,7 +1338,7 @@ struct Livekit_LeaveRequest: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() /// indicates action clients should take on receiving this message - enum Action: SwiftProtobuf.Enum, Swift.CaseIterable { + nonisolated enum Action: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int /// should disconnect @@ -1390,7 +1390,7 @@ struct Livekit_LeaveRequest: Sendable { /// message to indicate published video track dimensions are changing /// /// NOTE: This message was marked as deprecated in the .proto file. -struct Livekit_UpdateVideoLayers: Sendable { +nonisolated struct Livekit_UpdateVideoLayers: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1404,7 +1404,7 @@ struct Livekit_UpdateVideoLayers: Sendable { init() {} } -struct Livekit_UpdateParticipantMetadata: Sendable { +nonisolated struct Livekit_UpdateParticipantMetadata: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1424,7 +1424,7 @@ struct Livekit_UpdateParticipantMetadata: Sendable { init() {} } -struct Livekit_ICEServer: Sendable { +nonisolated struct Livekit_ICEServer: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1440,7 +1440,7 @@ struct Livekit_ICEServer: Sendable { init() {} } -struct Livekit_SpeakersChanged: Sendable { +nonisolated struct Livekit_SpeakersChanged: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1452,7 +1452,7 @@ struct Livekit_SpeakersChanged: Sendable { init() {} } -struct Livekit_RoomUpdate: Sendable { +nonisolated struct Livekit_RoomUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1473,7 +1473,7 @@ struct Livekit_RoomUpdate: Sendable { fileprivate var _room: Livekit_Room? = nil } -struct Livekit_ConnectionQualityInfo: Sendable { +nonisolated struct Livekit_ConnectionQualityInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1489,7 +1489,7 @@ struct Livekit_ConnectionQualityInfo: Sendable { init() {} } -struct Livekit_ConnectionQualityUpdate: Sendable { +nonisolated struct Livekit_ConnectionQualityUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1501,7 +1501,7 @@ struct Livekit_ConnectionQualityUpdate: Sendable { init() {} } -struct Livekit_StreamStateInfo: Sendable { +nonisolated struct Livekit_StreamStateInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1517,7 +1517,7 @@ struct Livekit_StreamStateInfo: Sendable { init() {} } -struct Livekit_StreamStateUpdate: Sendable { +nonisolated struct Livekit_StreamStateUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1529,7 +1529,7 @@ struct Livekit_StreamStateUpdate: Sendable { init() {} } -struct Livekit_SubscribedQuality: Sendable { +nonisolated struct Livekit_SubscribedQuality: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1543,7 +1543,7 @@ struct Livekit_SubscribedQuality: Sendable { init() {} } -struct Livekit_SubscribedCodec: Sendable { +nonisolated struct Livekit_SubscribedCodec: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1557,7 +1557,7 @@ struct Livekit_SubscribedCodec: Sendable { init() {} } -struct Livekit_SubscribedQualityUpdate: Sendable { +nonisolated struct Livekit_SubscribedQualityUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1574,7 +1574,7 @@ struct Livekit_SubscribedQualityUpdate: Sendable { init() {} } -struct Livekit_SubscribedAudioCodecUpdate: Sendable { +nonisolated struct Livekit_SubscribedAudioCodecUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1588,7 +1588,7 @@ struct Livekit_SubscribedAudioCodecUpdate: Sendable { init() {} } -struct Livekit_TrackPermission: Sendable { +nonisolated struct Livekit_TrackPermission: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1607,7 +1607,7 @@ struct Livekit_TrackPermission: Sendable { init() {} } -struct Livekit_SubscriptionPermission: Sendable { +nonisolated struct Livekit_SubscriptionPermission: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1621,7 +1621,7 @@ struct Livekit_SubscriptionPermission: Sendable { init() {} } -struct Livekit_SubscriptionPermissionUpdate: Sendable { +nonisolated struct Livekit_SubscriptionPermissionUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1637,7 +1637,7 @@ struct Livekit_SubscriptionPermissionUpdate: Sendable { init() {} } -struct Livekit_RoomMovedResponse: @unchecked Sendable { +nonisolated struct Livekit_RoomMovedResponse: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1679,7 +1679,7 @@ struct Livekit_RoomMovedResponse: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -struct Livekit_SyncState: Sendable { +nonisolated struct Livekit_SyncState: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1736,7 +1736,7 @@ struct Livekit_SyncState: Sendable { fileprivate var _offer: Livekit_SessionDescription? = nil } -struct Livekit_DataChannelReceiveState: Sendable { +nonisolated struct Livekit_DataChannelReceiveState: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1750,7 +1750,7 @@ struct Livekit_DataChannelReceiveState: Sendable { init() {} } -struct Livekit_DataChannelInfo: Sendable { +nonisolated struct Livekit_DataChannelInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1766,7 +1766,7 @@ struct Livekit_DataChannelInfo: Sendable { init() {} } -struct Livekit_SimulateScenario: Sendable { +nonisolated struct Livekit_SimulateScenario: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1857,7 +1857,7 @@ struct Livekit_SimulateScenario: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - enum OneOf_Scenario: Equatable, Sendable { + nonisolated enum OneOf_Scenario: Equatable, Sendable { /// simulate N seconds of speaker activity case speakerUpdate(Int32) /// simulate local node failure @@ -1883,7 +1883,7 @@ struct Livekit_SimulateScenario: Sendable { init() {} } -struct Livekit_Ping: Sendable { +nonisolated struct Livekit_Ping: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1898,7 +1898,7 @@ struct Livekit_Ping: Sendable { init() {} } -struct Livekit_Pong: Sendable { +nonisolated struct Livekit_Pong: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1913,7 +1913,7 @@ struct Livekit_Pong: Sendable { init() {} } -struct Livekit_RegionSettings: Sendable { +nonisolated struct Livekit_RegionSettings: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1925,7 +1925,7 @@ struct Livekit_RegionSettings: Sendable { init() {} } -struct Livekit_RegionInfo: Sendable { +nonisolated struct Livekit_RegionInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1941,7 +1941,7 @@ struct Livekit_RegionInfo: Sendable { init() {} } -struct Livekit_SubscriptionResponse: Sendable { +nonisolated struct Livekit_SubscriptionResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1955,7 +1955,7 @@ struct Livekit_SubscriptionResponse: Sendable { init() {} } -struct Livekit_RequestResponse: Sendable { +nonisolated struct Livekit_RequestResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2034,7 +2034,7 @@ struct Livekit_RequestResponse: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - enum OneOf_Request: Equatable, Sendable { + nonisolated enum OneOf_Request: Equatable, Sendable { case trickle(Livekit_TrickleRequest) case addTrack(Livekit_AddTrackRequest) case mute(Livekit_MuteTrackRequest) @@ -2046,7 +2046,7 @@ struct Livekit_RequestResponse: Sendable { } - enum Reason: SwiftProtobuf.Enum, Swift.CaseIterable { + nonisolated enum Reason: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case ok // = 0 case notFound // = 1 @@ -2119,7 +2119,7 @@ struct Livekit_RequestResponse: Sendable { init() {} } -struct Livekit_TrackSubscribed: Sendable { +nonisolated struct Livekit_TrackSubscribed: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2131,7 +2131,7 @@ struct Livekit_TrackSubscribed: Sendable { init() {} } -struct Livekit_ConnectionSettings: Sendable { +nonisolated struct Livekit_ConnectionSettings: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2168,7 +2168,7 @@ struct Livekit_ConnectionSettings: Sendable { fileprivate var _autoSubscribeDataTrack: Bool? = nil } -struct Livekit_JoinRequest: @unchecked Sendable { +nonisolated struct Livekit_JoinRequest: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2250,7 +2250,7 @@ struct Livekit_JoinRequest: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -struct Livekit_WrappedJoinRequest: Sendable { +nonisolated struct Livekit_WrappedJoinRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2262,7 +2262,7 @@ struct Livekit_WrappedJoinRequest: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - enum Compression: SwiftProtobuf.Enum, Swift.CaseIterable { + nonisolated enum Compression: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case none // = 0 case gzip // = 1 @@ -2299,7 +2299,7 @@ struct Livekit_WrappedJoinRequest: Sendable { init() {} } -struct Livekit_MediaSectionsRequirement: Sendable { +nonisolated struct Livekit_MediaSectionsRequirement: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2315,21 +2315,21 @@ struct Livekit_MediaSectionsRequirement: Sendable { // MARK: - Code below here is support for the SwiftProtobuf runtime. -fileprivate let _protobuf_package = "livekit" +fileprivate nonisolated let _protobuf_package = "livekit" -extension Livekit_SignalTarget: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SignalTarget: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0PUBLISHER\0\u{1}SUBSCRIBER\0") } -extension Livekit_StreamState: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_StreamState: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0ACTIVE\0\u{1}PAUSED\0") } -extension Livekit_CandidateProtocol: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_CandidateProtocol: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0UDP\0\u{1}TCP\0\u{1}TLS\0") } -extension Livekit_SignalRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SignalRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SignalRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}offer\0\u{1}answer\0\u{1}trickle\0\u{3}add_track\0\u{1}mute\0\u{1}subscription\0\u{3}track_setting\0\u{1}leave\0\u{4}\u{2}update_layers\0\u{3}subscription_permission\0\u{3}sync_state\0\u{1}simulate\0\u{1}ping\0\u{3}update_metadata\0\u{3}ping_req\0\u{3}update_audio_track\0\u{3}update_video_track\0\u{3}publish_data_track_request\0\u{3}unpublish_data_track_request\0\u{3}update_data_subscription\0") @@ -2697,7 +2697,7 @@ extension Livekit_SignalRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageIm } } -extension Livekit_SignalResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SignalResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SignalResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}join\0\u{1}answer\0\u{1}offer\0\u{1}trickle\0\u{1}update\0\u{3}track_published\0\u{2}\u{2}leave\0\u{1}mute\0\u{3}speakers_changed\0\u{3}room_update\0\u{3}connection_quality\0\u{3}stream_state_update\0\u{3}subscribed_quality_update\0\u{3}subscription_permission_update\0\u{3}refresh_token\0\u{3}track_unpublished\0\u{1}pong\0\u{1}reconnect\0\u{3}pong_resp\0\u{3}subscription_response\0\u{3}request_response\0\u{3}track_subscribed\0\u{3}room_moved\0\u{3}media_sections_requirement\0\u{3}subscribed_audio_codec_update\0\u{3}publish_data_track_response\0\u{3}unpublish_data_track_response\0\u{3}data_track_subscriber_handles\0") @@ -3196,7 +3196,7 @@ extension Livekit_SignalResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageI } } -extension Livekit_SimulcastCodec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SimulcastCodec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SimulcastCodec" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}codec\0\u{1}cid\0\u{2}\u{2}layers\0\u{3}video_layer_mode\0") @@ -3241,7 +3241,7 @@ extension Livekit_SimulcastCodec: SwiftProtobuf.Message, SwiftProtobuf._MessageI } } -extension Livekit_AddTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_AddTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".AddTrackRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}cid\0\u{1}name\0\u{1}type\0\u{1}width\0\u{1}height\0\u{1}muted\0\u{3}disable_dtx\0\u{1}source\0\u{1}layers\0\u{3}simulcast_codecs\0\u{1}sid\0\u{1}stereo\0\u{3}disable_red\0\u{1}encryption\0\u{1}stream\0\u{3}backup_codec_policy\0\u{3}audio_features\0\u{3}packet_trailer_features\0") @@ -3426,7 +3426,7 @@ extension Livekit_AddTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._Message } } -extension Livekit_PublishDataTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_PublishDataTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".PublishDataTrackRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}pub_handle\0\u{1}name\0\u{1}encryption\0") @@ -3466,7 +3466,7 @@ extension Livekit_PublishDataTrackRequest: SwiftProtobuf.Message, SwiftProtobuf. } } -extension Livekit_PublishDataTrackResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_PublishDataTrackResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".PublishDataTrackResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}info\0") @@ -3500,7 +3500,7 @@ extension Livekit_PublishDataTrackResponse: SwiftProtobuf.Message, SwiftProtobuf } } -extension Livekit_UnpublishDataTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_UnpublishDataTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UnpublishDataTrackRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}pub_handle\0") @@ -3530,7 +3530,7 @@ extension Livekit_UnpublishDataTrackRequest: SwiftProtobuf.Message, SwiftProtobu } } -extension Livekit_UnpublishDataTrackResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_UnpublishDataTrackResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UnpublishDataTrackResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}info\0") @@ -3564,7 +3564,7 @@ extension Livekit_UnpublishDataTrackResponse: SwiftProtobuf.Message, SwiftProtob } } -extension Livekit_DataTrackSubscriberHandles: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataTrackSubscriberHandles: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataTrackSubscriberHandles" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}sub_handles\0") @@ -3594,7 +3594,7 @@ extension Livekit_DataTrackSubscriberHandles: SwiftProtobuf.Message, SwiftProtob } } -extension Livekit_DataTrackSubscriberHandles.PublishedDataTrack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataTrackSubscriberHandles.PublishedDataTrack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = Livekit_DataTrackSubscriberHandles.protoMessageName + ".PublishedDataTrack" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}publisher_identity\0\u{3}publisher_sid\0\u{3}track_sid\0") @@ -3634,7 +3634,7 @@ extension Livekit_DataTrackSubscriberHandles.PublishedDataTrack: SwiftProtobuf.M } } -extension Livekit_TrickleRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_TrickleRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TrickleRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}candidateInit\0\u{1}target\0\u{1}final\0") @@ -3674,7 +3674,7 @@ extension Livekit_TrickleRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageI } } -extension Livekit_MuteTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_MuteTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".MuteTrackRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}sid\0\u{1}muted\0") @@ -3709,7 +3709,7 @@ extension Livekit_MuteTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._Messag } } -extension Livekit_JoinResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_JoinResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".JoinResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}room\0\u{1}participant\0\u{3}other_participants\0\u{3}server_version\0\u{3}ice_servers\0\u{3}subscriber_primary\0\u{3}alternative_url\0\u{3}client_configuration\0\u{3}server_region\0\u{3}ping_timeout\0\u{3}ping_interval\0\u{3}server_info\0\u{3}sif_trailer\0\u{3}enabled_publish_codecs\0\u{3}fast_publish\0") @@ -3877,7 +3877,7 @@ extension Livekit_JoinResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImp } } -extension Livekit_ReconnectResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ReconnectResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ReconnectResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}ice_servers\0\u{3}client_configuration\0\u{3}server_info\0\u{3}last_message_seq\0") @@ -3926,7 +3926,7 @@ extension Livekit_ReconnectResponse: SwiftProtobuf.Message, SwiftProtobuf._Messa } } -extension Livekit_TrackPublishedResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_TrackPublishedResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TrackPublishedResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}cid\0\u{1}track\0") @@ -3965,7 +3965,7 @@ extension Livekit_TrackPublishedResponse: SwiftProtobuf.Message, SwiftProtobuf._ } } -extension Livekit_TrackUnpublishedResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_TrackUnpublishedResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TrackUnpublishedResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0") @@ -3995,7 +3995,7 @@ extension Livekit_TrackUnpublishedResponse: SwiftProtobuf.Message, SwiftProtobuf } } -extension Livekit_SessionDescription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SessionDescription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SessionDescription" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}type\0\u{1}sdp\0\u{1}id\0\u{3}mid_to_track_id\0") @@ -4040,7 +4040,7 @@ extension Livekit_SessionDescription: SwiftProtobuf.Message, SwiftProtobuf._Mess } } -extension Livekit_ParticipantUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ParticipantUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ParticipantUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}participants\0") @@ -4070,7 +4070,7 @@ extension Livekit_ParticipantUpdate: SwiftProtobuf.Message, SwiftProtobuf._Messa } } -extension Livekit_UpdateSubscription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_UpdateSubscription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UpdateSubscription" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sids\0\u{1}subscribe\0\u{3}participant_tracks\0") @@ -4110,7 +4110,7 @@ extension Livekit_UpdateSubscription: SwiftProtobuf.Message, SwiftProtobuf._Mess } } -extension Livekit_UpdateDataSubscription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_UpdateDataSubscription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UpdateDataSubscription" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}updates\0") @@ -4140,7 +4140,7 @@ extension Livekit_UpdateDataSubscription: SwiftProtobuf.Message, SwiftProtobuf._ } } -extension Livekit_UpdateDataSubscription.Update: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_UpdateDataSubscription.Update: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = Livekit_UpdateDataSubscription.protoMessageName + ".Update" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0\u{1}subscribe\0\u{1}options\0") @@ -4184,7 +4184,7 @@ extension Livekit_UpdateDataSubscription.Update: SwiftProtobuf.Message, SwiftPro } } -extension Livekit_UpdateTrackSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_UpdateTrackSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UpdateTrackSettings" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sids\0\u{2}\u{2}disabled\0\u{1}quality\0\u{1}width\0\u{1}height\0\u{1}fps\0\u{1}priority\0") @@ -4244,7 +4244,7 @@ extension Livekit_UpdateTrackSettings: SwiftProtobuf.Message, SwiftProtobuf._Mes } } -extension Livekit_UpdateLocalAudioTrack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_UpdateLocalAudioTrack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UpdateLocalAudioTrack" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0\u{1}features\0") @@ -4279,7 +4279,7 @@ extension Livekit_UpdateLocalAudioTrack: SwiftProtobuf.Message, SwiftProtobuf._M } } -extension Livekit_UpdateLocalVideoTrack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_UpdateLocalVideoTrack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UpdateLocalVideoTrack" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0\u{1}width\0\u{1}height\0") @@ -4319,7 +4319,7 @@ extension Livekit_UpdateLocalVideoTrack: SwiftProtobuf.Message, SwiftProtobuf._M } } -extension Livekit_LeaveRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_LeaveRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".LeaveRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}can_reconnect\0\u{1}reason\0\u{1}action\0\u{1}regions\0") @@ -4368,11 +4368,11 @@ extension Livekit_LeaveRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImp } } -extension Livekit_LeaveRequest.Action: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_LeaveRequest.Action: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0DISCONNECT\0\u{1}RESUME\0\u{1}RECONNECT\0") } -extension Livekit_UpdateVideoLayers: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_UpdateVideoLayers: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UpdateVideoLayers" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0\u{1}layers\0") @@ -4407,7 +4407,7 @@ extension Livekit_UpdateVideoLayers: SwiftProtobuf.Message, SwiftProtobuf._Messa } } -extension Livekit_UpdateParticipantMetadata: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_UpdateParticipantMetadata: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UpdateParticipantMetadata" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}metadata\0\u{1}name\0\u{1}attributes\0\u{3}request_id\0") @@ -4452,7 +4452,7 @@ extension Livekit_UpdateParticipantMetadata: SwiftProtobuf.Message, SwiftProtobu } } -extension Livekit_ICEServer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ICEServer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ICEServer" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}urls\0\u{1}username\0\u{1}credential\0") @@ -4492,7 +4492,7 @@ extension Livekit_ICEServer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplem } } -extension Livekit_SpeakersChanged: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SpeakersChanged: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SpeakersChanged" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}speakers\0") @@ -4522,7 +4522,7 @@ extension Livekit_SpeakersChanged: SwiftProtobuf.Message, SwiftProtobuf._Message } } -extension Livekit_RoomUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_RoomUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RoomUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}room\0") @@ -4556,7 +4556,7 @@ extension Livekit_RoomUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImple } } -extension Livekit_ConnectionQualityInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ConnectionQualityInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ConnectionQualityInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}participant_sid\0\u{1}quality\0\u{1}score\0") @@ -4596,7 +4596,7 @@ extension Livekit_ConnectionQualityInfo: SwiftProtobuf.Message, SwiftProtobuf._M } } -extension Livekit_ConnectionQualityUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ConnectionQualityUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ConnectionQualityUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}updates\0") @@ -4626,7 +4626,7 @@ extension Livekit_ConnectionQualityUpdate: SwiftProtobuf.Message, SwiftProtobuf. } } -extension Livekit_StreamStateInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_StreamStateInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".StreamStateInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}participant_sid\0\u{3}track_sid\0\u{1}state\0") @@ -4666,7 +4666,7 @@ extension Livekit_StreamStateInfo: SwiftProtobuf.Message, SwiftProtobuf._Message } } -extension Livekit_StreamStateUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_StreamStateUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".StreamStateUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}stream_states\0") @@ -4696,7 +4696,7 @@ extension Livekit_StreamStateUpdate: SwiftProtobuf.Message, SwiftProtobuf._Messa } } -extension Livekit_SubscribedQuality: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SubscribedQuality: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscribedQuality" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}quality\0\u{1}enabled\0") @@ -4731,7 +4731,7 @@ extension Livekit_SubscribedQuality: SwiftProtobuf.Message, SwiftProtobuf._Messa } } -extension Livekit_SubscribedCodec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SubscribedCodec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscribedCodec" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}codec\0\u{1}qualities\0") @@ -4766,7 +4766,7 @@ extension Livekit_SubscribedCodec: SwiftProtobuf.Message, SwiftProtobuf._Message } } -extension Livekit_SubscribedQualityUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SubscribedQualityUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscribedQualityUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0\u{3}subscribed_qualities\0\u{3}subscribed_codecs\0") @@ -4806,7 +4806,7 @@ extension Livekit_SubscribedQualityUpdate: SwiftProtobuf.Message, SwiftProtobuf. } } -extension Livekit_SubscribedAudioCodecUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SubscribedAudioCodecUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscribedAudioCodecUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0\u{3}subscribed_audio_codecs\0") @@ -4841,7 +4841,7 @@ extension Livekit_SubscribedAudioCodecUpdate: SwiftProtobuf.Message, SwiftProtob } } -extension Livekit_TrackPermission: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_TrackPermission: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TrackPermission" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}participant_sid\0\u{3}all_tracks\0\u{3}track_sids\0\u{3}participant_identity\0") @@ -4886,7 +4886,7 @@ extension Livekit_TrackPermission: SwiftProtobuf.Message, SwiftProtobuf._Message } } -extension Livekit_SubscriptionPermission: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SubscriptionPermission: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscriptionPermission" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}all_participants\0\u{3}track_permissions\0") @@ -4921,7 +4921,7 @@ extension Livekit_SubscriptionPermission: SwiftProtobuf.Message, SwiftProtobuf._ } } -extension Livekit_SubscriptionPermissionUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SubscriptionPermissionUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscriptionPermissionUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}participant_sid\0\u{3}track_sid\0\u{1}allowed\0") @@ -4961,7 +4961,7 @@ extension Livekit_SubscriptionPermissionUpdate: SwiftProtobuf.Message, SwiftProt } } -extension Livekit_RoomMovedResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_RoomMovedResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RoomMovedResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}room\0\u{1}token\0\u{1}participant\0\u{3}other_participants\0") @@ -5052,7 +5052,7 @@ extension Livekit_RoomMovedResponse: SwiftProtobuf.Message, SwiftProtobuf._Messa } } -extension Livekit_SyncState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SyncState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SyncState" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}answer\0\u{1}subscription\0\u{3}publish_tracks\0\u{3}data_channels\0\u{1}offer\0\u{3}track_sids_disabled\0\u{3}datachannel_receive_states\0\u{3}publish_data_tracks\0") @@ -5121,7 +5121,7 @@ extension Livekit_SyncState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplem } } -extension Livekit_DataChannelReceiveState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataChannelReceiveState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataChannelReceiveState" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}publisher_sid\0\u{3}last_seq\0") @@ -5156,7 +5156,7 @@ extension Livekit_DataChannelReceiveState: SwiftProtobuf.Message, SwiftProtobuf. } } -extension Livekit_DataChannelInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_DataChannelInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataChannelInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}label\0\u{1}id\0\u{1}target\0") @@ -5196,7 +5196,7 @@ extension Livekit_DataChannelInfo: SwiftProtobuf.Message, SwiftProtobuf._Message } } -extension Livekit_SimulateScenario: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SimulateScenario: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SimulateScenario" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}speaker_update\0\u{3}node_failure\0\u{1}migration\0\u{3}server_leave\0\u{3}switch_candidate_protocol\0\u{3}subscriber_bandwidth\0\u{3}disconnect_signal_on_resume\0\u{3}disconnect_signal_on_resume_no_messages\0\u{3}leave_request_full_reconnect\0") @@ -5337,7 +5337,7 @@ extension Livekit_SimulateScenario: SwiftProtobuf.Message, SwiftProtobuf._Messag } } -extension Livekit_Ping: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_Ping: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".Ping" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}timestamp\0\u{1}rtt\0") @@ -5372,7 +5372,7 @@ extension Livekit_Ping: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementat } } -extension Livekit_Pong: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_Pong: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".Pong" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}last_ping_timestamp\0\u{1}timestamp\0") @@ -5407,7 +5407,7 @@ extension Livekit_Pong: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementat } } -extension Livekit_RegionSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_RegionSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RegionSettings" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}regions\0") @@ -5437,7 +5437,7 @@ extension Livekit_RegionSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageI } } -extension Livekit_RegionInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_RegionInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RegionInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}region\0\u{1}url\0\u{1}distance\0") @@ -5477,7 +5477,7 @@ extension Livekit_RegionInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImple } } -extension Livekit_SubscriptionResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_SubscriptionResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscriptionResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0\u{1}err\0") @@ -5512,7 +5512,7 @@ extension Livekit_SubscriptionResponse: SwiftProtobuf.Message, SwiftProtobuf._Me } } -extension Livekit_RequestResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_RequestResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RequestResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}request_id\0\u{1}reason\0\u{1}message\0\u{1}trickle\0\u{3}add_track\0\u{1}mute\0\u{3}update_metadata\0\u{3}update_audio_track\0\u{3}update_video_track\0\u{3}publish_data_track\0\u{3}unpublish_data_track\0") @@ -5696,11 +5696,11 @@ extension Livekit_RequestResponse: SwiftProtobuf.Message, SwiftProtobuf._Message } } -extension Livekit_RequestResponse.Reason: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_RequestResponse.Reason: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0OK\0\u{1}NOT_FOUND\0\u{1}NOT_ALLOWED\0\u{1}LIMIT_EXCEEDED\0\u{1}QUEUED\0\u{1}UNSUPPORTED_TYPE\0\u{1}UNCLASSIFIED_ERROR\0\u{1}INVALID_HANDLE\0\u{1}INVALID_NAME\0\u{1}DUPLICATE_HANDLE\0\u{1}DUPLICATE_NAME\0") } -extension Livekit_TrackSubscribed: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_TrackSubscribed: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TrackSubscribed" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0") @@ -5730,7 +5730,7 @@ extension Livekit_TrackSubscribed: SwiftProtobuf.Message, SwiftProtobuf._Message } } -extension Livekit_ConnectionSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_ConnectionSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ConnectionSettings" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}auto_subscribe\0\u{3}adaptive_stream\0\u{3}subscriber_allow_pause\0\u{3}disable_ice_lite\0\u{3}auto_subscribe_data_track\0") @@ -5784,7 +5784,7 @@ extension Livekit_ConnectionSettings: SwiftProtobuf.Message, SwiftProtobuf._Mess } } -extension Livekit_JoinRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_JoinRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".JoinRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}client_info\0\u{3}connection_settings\0\u{1}metadata\0\u{3}participant_attributes\0\u{3}add_track_requests\0\u{3}publisher_offer\0\u{1}reconnect\0\u{3}reconnect_reason\0\u{3}participant_sid\0\u{3}sync_state\0") @@ -5917,7 +5917,7 @@ extension Livekit_JoinRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImpl } } -extension Livekit_WrappedJoinRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_WrappedJoinRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".WrappedJoinRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}compression\0\u{3}join_request\0") @@ -5952,11 +5952,11 @@ extension Livekit_WrappedJoinRequest: SwiftProtobuf.Message, SwiftProtobuf._Mess } } -extension Livekit_WrappedJoinRequest.Compression: SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_WrappedJoinRequest.Compression: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0NONE\0\u{1}GZIP\0") } -extension Livekit_MediaSectionsRequirement: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +nonisolated extension Livekit_MediaSectionsRequirement: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".MediaSectionsRequirement" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}num_audios\0\u{3}num_videos\0") From 8477bc99c9f50ffe58a3b2e8f59ccc1f1594f41b Mon Sep 17 00:00:00 2001 From: Ryan Gaus Date: Fri, 29 May 2026 09:38:58 -0400 Subject: [PATCH 6/7] Revert "fix: commit new proto updates" This reverts commit 6015b732f9bccc5406ab2c7de25b5ee7e8de4369. --- .../LiveKit/Protos/livekit_metrics.pb.swift | 28 +- .../LiveKit/Protos/livekit_models.pb.swift | 318 +++++++++--------- Sources/LiveKit/Protos/livekit_rtc.pb.swift | 264 +++++++-------- 3 files changed, 305 insertions(+), 305 deletions(-) diff --git a/Sources/LiveKit/Protos/livekit_metrics.pb.swift b/Sources/LiveKit/Protos/livekit_metrics.pb.swift index d43424ee4..2819d684a 100644 --- a/Sources/LiveKit/Protos/livekit_metrics.pb.swift +++ b/Sources/LiveKit/Protos/livekit_metrics.pb.swift @@ -19,13 +19,13 @@ import SwiftProtobuf // incompatible with the version of SwiftProtobuf to which you are linking. // Please ensure that you are building against the same version of the API // that was used to generate this file. -fileprivate nonisolated struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck { +fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck { struct _2: SwiftProtobuf.ProtobufAPIVersion_2 {} typealias Version = _2 } /// index from [0: MAX_LABEL_PREDEFINED_MAX_VALUE) are for predefined labels (`MetricLabel`) -nonisolated enum Livekit_MetricLabel: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_MetricLabel: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int /// time to first token from LLM @@ -175,7 +175,7 @@ nonisolated enum Livekit_MetricLabel: SwiftProtobuf.Enum, Swift.CaseIterable { } -nonisolated struct Livekit_MetricsBatch: Sendable { +struct Livekit_MetricsBatch: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -211,7 +211,7 @@ nonisolated struct Livekit_MetricsBatch: Sendable { fileprivate var _normalizedTimestamp: SwiftProtobuf.Google_Protobuf_Timestamp? = nil } -nonisolated struct Livekit_TimeSeriesMetric: Sendable { +struct Livekit_TimeSeriesMetric: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -236,7 +236,7 @@ nonisolated struct Livekit_TimeSeriesMetric: Sendable { init() {} } -nonisolated struct Livekit_MetricSample: Sendable { +struct Livekit_MetricSample: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -262,7 +262,7 @@ nonisolated struct Livekit_MetricSample: Sendable { fileprivate var _normalizedTimestamp: SwiftProtobuf.Google_Protobuf_Timestamp? = nil } -nonisolated struct Livekit_EventMetric: Sendable { +struct Livekit_EventMetric: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -320,7 +320,7 @@ nonisolated struct Livekit_EventMetric: Sendable { fileprivate var _normalizedEndTimestamp: SwiftProtobuf.Google_Protobuf_Timestamp? = nil } -nonisolated struct Livekit_MetricsRecordingHeader: Sendable { +struct Livekit_MetricsRecordingHeader: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -362,13 +362,13 @@ nonisolated struct Livekit_MetricsRecordingHeader: Sendable { // MARK: - Code below here is support for the SwiftProtobuf runtime. -fileprivate nonisolated let _protobuf_package = "livekit" +fileprivate let _protobuf_package = "livekit" -nonisolated extension Livekit_MetricLabel: SwiftProtobuf._ProtoNameProviding { +extension Livekit_MetricLabel: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0AGENTS_LLM_TTFT\0\u{1}AGENTS_STT_TTFT\0\u{1}AGENTS_TTS_TTFB\0\u{1}CLIENT_VIDEO_SUBSCRIBER_FREEZE_COUNT\0\u{1}CLIENT_VIDEO_SUBSCRIBER_TOTAL_FREEZE_DURATION\0\u{1}CLIENT_VIDEO_SUBSCRIBER_PAUSE_COUNT\0\u{1}CLIENT_VIDEO_SUBSCRIBER_TOTAL_PAUSES_DURATION\0\u{1}CLIENT_AUDIO_SUBSCRIBER_CONCEALED_SAMPLES\0\u{1}CLIENT_AUDIO_SUBSCRIBER_SILENT_CONCEALED_SAMPLES\0\u{1}CLIENT_AUDIO_SUBSCRIBER_CONCEALMENT_EVENTS\0\u{1}CLIENT_AUDIO_SUBSCRIBER_INTERRUPTION_COUNT\0\u{1}CLIENT_AUDIO_SUBSCRIBER_TOTAL_INTERRUPTION_DURATION\0\u{1}CLIENT_SUBSCRIBER_JITTER_BUFFER_DELAY\0\u{1}CLIENT_SUBSCRIBER_JITTER_BUFFER_EMITTED_COUNT\0\u{1}CLIENT_VIDEO_PUBLISHER_QUALITY_LIMITATION_DURATION_BANDWIDTH\0\u{1}CLIENT_VIDEO_PUBLISHER_QUALITY_LIMITATION_DURATION_CPU\0\u{1}CLIENT_VIDEO_PUBLISHER_QUALITY_LIMITATION_DURATION_OTHER\0\u{1}PUBLISHER_RTT\0\u{1}SERVER_MESH_RTT\0\u{1}SUBSCRIBER_RTT\0\u{2}m?METRIC_LABEL_PREDEFINED_MAX_VALUE\0") } -nonisolated extension Livekit_MetricsBatch: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_MetricsBatch: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".MetricsBatch" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}timestamp_ms\0\u{3}normalized_timestamp\0\u{3}str_data\0\u{3}time_series\0\u{1}events\0") @@ -422,7 +422,7 @@ nonisolated extension Livekit_MetricsBatch: SwiftProtobuf.Message, SwiftProtobuf } } -nonisolated extension Livekit_TimeSeriesMetric: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_TimeSeriesMetric: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TimeSeriesMetric" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}label\0\u{3}participant_identity\0\u{3}track_sid\0\u{1}samples\0\u{1}rid\0") @@ -472,7 +472,7 @@ nonisolated extension Livekit_TimeSeriesMetric: SwiftProtobuf.Message, SwiftProt } } -nonisolated extension Livekit_MetricSample: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_MetricSample: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".MetricSample" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}timestamp_ms\0\u{3}normalized_timestamp\0\u{1}value\0") @@ -516,7 +516,7 @@ nonisolated extension Livekit_MetricSample: SwiftProtobuf.Message, SwiftProtobuf } } -nonisolated extension Livekit_EventMetric: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_EventMetric: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".EventMetric" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}label\0\u{3}participant_identity\0\u{3}track_sid\0\u{3}start_timestamp_ms\0\u{3}end_timestamp_ms\0\u{3}normalized_start_timestamp\0\u{3}normalized_end_timestamp\0\u{1}metadata\0\u{1}rid\0") @@ -590,7 +590,7 @@ nonisolated extension Livekit_EventMetric: SwiftProtobuf.Message, SwiftProtobuf. } } -nonisolated extension Livekit_MetricsRecordingHeader: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_MetricsRecordingHeader: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".MetricsRecordingHeader" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}room_id\0\u{2}\u{2}duration\0\u{3}start_time\0\u{3}room_tags\0\u{3}room_name\0\u{3}room_start_time\0") diff --git a/Sources/LiveKit/Protos/livekit_models.pb.swift b/Sources/LiveKit/Protos/livekit_models.pb.swift index a971f1718..2f73c5791 100644 --- a/Sources/LiveKit/Protos/livekit_models.pb.swift +++ b/Sources/LiveKit/Protos/livekit_models.pb.swift @@ -38,12 +38,12 @@ import SwiftProtobuf // incompatible with the version of SwiftProtobuf to which you are linking. // Please ensure that you are building against the same version of the API // that was used to generate this file. -fileprivate nonisolated struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck { +fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck { struct _2: SwiftProtobuf.ProtobufAPIVersion_2 {} typealias Version = _2 } -nonisolated enum Livekit_AudioCodec: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_AudioCodec: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case defaultAc // = 0 case opus // = 1 @@ -85,7 +85,7 @@ nonisolated enum Livekit_AudioCodec: SwiftProtobuf.Enum, Swift.CaseIterable { } -nonisolated enum Livekit_VideoCodec: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_VideoCodec: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case defaultVc // = 0 case h264Baseline // = 1 @@ -131,7 +131,7 @@ nonisolated enum Livekit_VideoCodec: SwiftProtobuf.Enum, Swift.CaseIterable { } -nonisolated enum Livekit_ImageCodec: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_ImageCodec: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case icDefault // = 0 case icJpeg // = 1 @@ -166,7 +166,7 @@ nonisolated enum Livekit_ImageCodec: SwiftProtobuf.Enum, Swift.CaseIterable { } /// Policy for publisher to handle subscribers that are unable to support the primary codec of a track -nonisolated enum Livekit_BackupCodecPolicy: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_BackupCodecPolicy: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int /// default behavior, the track prefer to regress to backup codec and all subscribers will receive the backup codec, @@ -211,7 +211,7 @@ nonisolated enum Livekit_BackupCodecPolicy: SwiftProtobuf.Enum, Swift.CaseIterab } -nonisolated enum Livekit_TrackType: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_TrackType: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case audio // = 0 case video // = 1 @@ -249,7 +249,7 @@ nonisolated enum Livekit_TrackType: SwiftProtobuf.Enum, Swift.CaseIterable { } -nonisolated enum Livekit_TrackSource: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_TrackSource: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case unknown // = 0 case camera // = 1 @@ -295,7 +295,7 @@ nonisolated enum Livekit_TrackSource: SwiftProtobuf.Enum, Swift.CaseIterable { } -nonisolated enum Livekit_DataTrackExtensionID: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_DataTrackExtensionID: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case dteiInvalid // = 0 case dteiParticipantSid // = 1 @@ -329,7 +329,7 @@ nonisolated enum Livekit_DataTrackExtensionID: SwiftProtobuf.Enum, Swift.CaseIte } -nonisolated enum Livekit_VideoQuality: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_VideoQuality: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case low // = 0 case medium // = 1 @@ -371,7 +371,7 @@ nonisolated enum Livekit_VideoQuality: SwiftProtobuf.Enum, Swift.CaseIterable { } -nonisolated enum Livekit_ConnectionQuality: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_ConnectionQuality: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case poor // = 0 case good // = 1 @@ -413,7 +413,7 @@ nonisolated enum Livekit_ConnectionQuality: SwiftProtobuf.Enum, Swift.CaseIterab } -nonisolated enum Livekit_ClientConfigSetting: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_ClientConfigSetting: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case unset // = 0 case disabled // = 1 @@ -451,7 +451,7 @@ nonisolated enum Livekit_ClientConfigSetting: SwiftProtobuf.Enum, Swift.CaseIter } -nonisolated enum Livekit_DisconnectReason: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_DisconnectReason: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case unknownReason // = 0 @@ -577,7 +577,7 @@ nonisolated enum Livekit_DisconnectReason: SwiftProtobuf.Enum, Swift.CaseIterabl } -nonisolated enum Livekit_ReconnectReason: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_ReconnectReason: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case rrUnknown // = 0 case rrSignalDisconnected // = 1 @@ -623,7 +623,7 @@ nonisolated enum Livekit_ReconnectReason: SwiftProtobuf.Enum, Swift.CaseIterable } -nonisolated enum Livekit_SubscriptionError: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_SubscriptionError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case seUnknown // = 0 case seCodecUnsupported // = 1 @@ -661,7 +661,7 @@ nonisolated enum Livekit_SubscriptionError: SwiftProtobuf.Enum, Swift.CaseIterab } -nonisolated enum Livekit_AudioTrackFeature: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_AudioTrackFeature: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case tfStereo // = 0 case tfNoDtx // = 1 @@ -717,7 +717,7 @@ nonisolated enum Livekit_AudioTrackFeature: SwiftProtobuf.Enum, Swift.CaseIterab } -nonisolated enum Livekit_PacketTrailerFeature: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_PacketTrailerFeature: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case ptfUserTimestamp // = 0 case ptfFrameID // = 1 @@ -751,7 +751,7 @@ nonisolated enum Livekit_PacketTrailerFeature: SwiftProtobuf.Enum, Swift.CaseIte } -nonisolated struct Livekit_Pagination: Sendable { +struct Livekit_Pagination: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -766,7 +766,7 @@ nonisolated struct Livekit_Pagination: Sendable { init() {} } -nonisolated struct Livekit_TokenPagination: Sendable { +struct Livekit_TokenPagination: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -779,7 +779,7 @@ nonisolated struct Livekit_TokenPagination: Sendable { } /// ListUpdate is used for updated APIs where 'repeated string' field is modified. -nonisolated struct Livekit_ListUpdate: Sendable { +struct Livekit_ListUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -801,7 +801,7 @@ nonisolated struct Livekit_ListUpdate: Sendable { init() {} } -nonisolated struct Livekit_Room: Sendable { +struct Livekit_Room: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -848,7 +848,7 @@ nonisolated struct Livekit_Room: Sendable { fileprivate var _version: Livekit_TimedVersion? = nil } -nonisolated struct Livekit_Codec: Sendable { +struct Livekit_Codec: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -862,7 +862,7 @@ nonisolated struct Livekit_Codec: Sendable { init() {} } -nonisolated struct Livekit_PlayoutDelay: Sendable { +struct Livekit_PlayoutDelay: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -878,7 +878,7 @@ nonisolated struct Livekit_PlayoutDelay: Sendable { init() {} } -nonisolated struct Livekit_ParticipantPermission: Sendable { +struct Livekit_ParticipantPermission: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -924,7 +924,7 @@ nonisolated struct Livekit_ParticipantPermission: Sendable { init() {} } -nonisolated struct Livekit_ParticipantInfo: @unchecked Sendable { +struct Livekit_ParticipantInfo: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1030,7 +1030,7 @@ nonisolated struct Livekit_ParticipantInfo: @unchecked Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated enum State: SwiftProtobuf.Enum, Swift.CaseIterable { + enum State: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int /// websocket' connected, but not offered yet @@ -1080,7 +1080,7 @@ nonisolated struct Livekit_ParticipantInfo: @unchecked Sendable { } - nonisolated enum Kind: SwiftProtobuf.Enum, Swift.CaseIterable { + enum Kind: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int /// standard participants, e.g. web clients @@ -1148,7 +1148,7 @@ nonisolated struct Livekit_ParticipantInfo: @unchecked Sendable { } - nonisolated enum KindDetail: SwiftProtobuf.Enum, Swift.CaseIterable { + enum KindDetail: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case cloudAgent // = 0 case forwarded // = 1 @@ -1201,14 +1201,14 @@ nonisolated struct Livekit_ParticipantInfo: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -nonisolated struct Livekit_Encryption: Sendable { +struct Livekit_Encryption: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated enum TypeEnum: SwiftProtobuf.Enum, Swift.CaseIterable { + enum TypeEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case none // = 0 case gcm // = 1 @@ -1249,7 +1249,7 @@ nonisolated struct Livekit_Encryption: Sendable { init() {} } -nonisolated struct Livekit_SimulcastCodecInfo: Sendable { +struct Livekit_SimulcastCodecInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1275,7 +1275,7 @@ nonisolated struct Livekit_SimulcastCodecInfo: Sendable { init() {} } -nonisolated struct Livekit_TrackInfo: @unchecked Sendable { +struct Livekit_TrackInfo: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1414,7 +1414,7 @@ nonisolated struct Livekit_TrackInfo: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -nonisolated struct Livekit_DataTrackInfo: Sendable { +struct Livekit_DataTrackInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1436,7 +1436,7 @@ nonisolated struct Livekit_DataTrackInfo: Sendable { init() {} } -nonisolated struct Livekit_DataTrackExtensionParticipantSid: Sendable { +struct Livekit_DataTrackExtensionParticipantSid: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1450,7 +1450,7 @@ nonisolated struct Livekit_DataTrackExtensionParticipantSid: Sendable { init() {} } -nonisolated struct Livekit_DataTrackSubscriptionOptions: Sendable { +struct Livekit_DataTrackSubscriptionOptions: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1474,7 +1474,7 @@ nonisolated struct Livekit_DataTrackSubscriptionOptions: Sendable { } /// provide information about available spatial layers -nonisolated struct Livekit_VideoLayer: Sendable { +struct Livekit_VideoLayer: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1499,7 +1499,7 @@ nonisolated struct Livekit_VideoLayer: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated enum Mode: SwiftProtobuf.Enum, Swift.CaseIterable { + enum Mode: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case unused // = 0 case oneSpatialLayerPerStream // = 1 @@ -1545,7 +1545,7 @@ nonisolated struct Livekit_VideoLayer: Sendable { } /// new DataPacket API -nonisolated struct Livekit_DataPacket: @unchecked Sendable { +struct Livekit_DataPacket: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1692,7 +1692,7 @@ nonisolated struct Livekit_DataPacket: @unchecked Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated enum OneOf_Value: Equatable, Sendable { + enum OneOf_Value: Equatable, Sendable { case user(Livekit_UserPacket) /// NOTE: This field was marked as deprecated in the .proto file. case speaker(Livekit_ActiveSpeakerUpdate) @@ -1710,7 +1710,7 @@ nonisolated struct Livekit_DataPacket: @unchecked Sendable { } - nonisolated enum Kind: SwiftProtobuf.Enum, Swift.CaseIterable { + enum Kind: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case reliable // = 0 case lossy // = 1 @@ -1749,7 +1749,7 @@ nonisolated struct Livekit_DataPacket: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -nonisolated struct Livekit_EncryptedPacket: Sendable { +struct Livekit_EncryptedPacket: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1768,7 +1768,7 @@ nonisolated struct Livekit_EncryptedPacket: Sendable { init() {} } -nonisolated struct Livekit_EncryptedPacketPayload: Sendable { +struct Livekit_EncryptedPacketPayload: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1841,7 +1841,7 @@ nonisolated struct Livekit_EncryptedPacketPayload: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated enum OneOf_Value: Equatable, Sendable { + enum OneOf_Value: Equatable, Sendable { case user(Livekit_UserPacket) case chatMessage(Livekit_ChatMessage) case rpcRequest(Livekit_RpcRequest) @@ -1857,7 +1857,7 @@ nonisolated struct Livekit_EncryptedPacketPayload: Sendable { } /// NOTE: This message was marked as deprecated in the .proto file. -nonisolated struct Livekit_ActiveSpeakerUpdate: Sendable { +struct Livekit_ActiveSpeakerUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1869,7 +1869,7 @@ nonisolated struct Livekit_ActiveSpeakerUpdate: Sendable { init() {} } -nonisolated struct Livekit_SpeakerInfo: Sendable { +struct Livekit_SpeakerInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1887,7 +1887,7 @@ nonisolated struct Livekit_SpeakerInfo: Sendable { init() {} } -nonisolated struct Livekit_UserPacket: Sendable { +struct Livekit_UserPacket: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1965,7 +1965,7 @@ nonisolated struct Livekit_UserPacket: Sendable { fileprivate var _endTime: UInt64? = nil } -nonisolated struct Livekit_SipDTMF: Sendable { +struct Livekit_SipDTMF: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1979,7 +1979,7 @@ nonisolated struct Livekit_SipDTMF: Sendable { init() {} } -nonisolated struct Livekit_Transcription: Sendable { +struct Livekit_Transcription: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1996,7 +1996,7 @@ nonisolated struct Livekit_Transcription: Sendable { init() {} } -nonisolated struct Livekit_TranscriptionSegment: Sendable { +struct Livekit_TranscriptionSegment: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2018,7 +2018,7 @@ nonisolated struct Livekit_TranscriptionSegment: Sendable { init() {} } -nonisolated struct Livekit_ChatMessage: Sendable { +struct Livekit_ChatMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2053,7 +2053,7 @@ nonisolated struct Livekit_ChatMessage: Sendable { fileprivate var _editTimestamp: Int64? = nil } -nonisolated struct Livekit_RpcRequest: Sendable { +struct Livekit_RpcRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2076,7 +2076,7 @@ nonisolated struct Livekit_RpcRequest: Sendable { init() {} } -nonisolated struct Livekit_RpcAck: Sendable { +struct Livekit_RpcAck: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2088,7 +2088,7 @@ nonisolated struct Livekit_RpcAck: Sendable { init() {} } -nonisolated struct Livekit_RpcResponse: Sendable { +struct Livekit_RpcResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2124,7 +2124,7 @@ nonisolated struct Livekit_RpcResponse: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated enum OneOf_Value: Equatable, Sendable { + enum OneOf_Value: Equatable, Sendable { case payload(String) case error(Livekit_RpcError) /// Compressed payload data. When set, this field is used instead of `payload`. @@ -2135,7 +2135,7 @@ nonisolated struct Livekit_RpcResponse: Sendable { init() {} } -nonisolated struct Livekit_RpcError: Sendable { +struct Livekit_RpcError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2151,7 +2151,7 @@ nonisolated struct Livekit_RpcError: Sendable { init() {} } -nonisolated struct Livekit_ParticipantTracks: Sendable { +struct Livekit_ParticipantTracks: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2167,7 +2167,7 @@ nonisolated struct Livekit_ParticipantTracks: Sendable { } /// details about the server -nonisolated struct Livekit_ServerInfo: Sendable { +struct Livekit_ServerInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2189,7 +2189,7 @@ nonisolated struct Livekit_ServerInfo: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated enum Edition: SwiftProtobuf.Enum, Swift.CaseIterable { + enum Edition: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case standard // = 0 case cloud // = 1 @@ -2227,7 +2227,7 @@ nonisolated struct Livekit_ServerInfo: Sendable { } /// details about the client -nonisolated struct Livekit_ClientInfo: Sendable { +struct Livekit_ClientInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2266,7 +2266,7 @@ nonisolated struct Livekit_ClientInfo: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated enum SDK: SwiftProtobuf.Enum, Swift.CaseIterable { + enum SDK: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case unknown // = 0 case js // = 1 @@ -2356,7 +2356,7 @@ nonisolated struct Livekit_ClientInfo: Sendable { /// uses these flags to decide whether to enable features that require /// client-side support (e.g. passing RTP packet trailers through to the /// subscriber instead of stripping them). - nonisolated enum Capability: SwiftProtobuf.Enum, Swift.CaseIterable { + enum Capability: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case capUnused // = 0 case capPacketTrailer // = 1 @@ -2394,7 +2394,7 @@ nonisolated struct Livekit_ClientInfo: Sendable { } /// server provided client configuration -nonisolated struct Livekit_ClientConfiguration: Sendable { +struct Livekit_ClientConfiguration: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2439,7 +2439,7 @@ nonisolated struct Livekit_ClientConfiguration: Sendable { fileprivate var _disabledCodecs: Livekit_DisabledCodecs? = nil } -nonisolated struct Livekit_VideoConfiguration: Sendable { +struct Livekit_VideoConfiguration: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2451,7 +2451,7 @@ nonisolated struct Livekit_VideoConfiguration: Sendable { init() {} } -nonisolated struct Livekit_DisabledCodecs: Sendable { +struct Livekit_DisabledCodecs: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2467,7 +2467,7 @@ nonisolated struct Livekit_DisabledCodecs: Sendable { init() {} } -nonisolated struct Livekit_RTPDrift: Sendable { +struct Livekit_RTPDrift: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2512,7 +2512,7 @@ nonisolated struct Livekit_RTPDrift: Sendable { fileprivate var _endTime: SwiftProtobuf.Google_Protobuf_Timestamp? = nil } -nonisolated struct Livekit_RTPStats: @unchecked Sendable { +struct Livekit_RTPStats: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2790,7 +2790,7 @@ nonisolated struct Livekit_RTPStats: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -nonisolated struct Livekit_RTCPSenderReportState: Sendable { +struct Livekit_RTCPSenderReportState: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2815,7 +2815,7 @@ nonisolated struct Livekit_RTCPSenderReportState: Sendable { init() {} } -nonisolated struct Livekit_RTPForwarderState: @unchecked Sendable { +struct Livekit_RTPForwarderState: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2874,7 +2874,7 @@ nonisolated struct Livekit_RTPForwarderState: @unchecked Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated enum OneOf_CodecMunger: Equatable, Sendable { + enum OneOf_CodecMunger: Equatable, Sendable { case vp8Munger(Livekit_VP8MungerState) } @@ -2884,7 +2884,7 @@ nonisolated struct Livekit_RTPForwarderState: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -nonisolated struct Livekit_RTPMungerState: Sendable { +struct Livekit_RTPMungerState: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2906,7 +2906,7 @@ nonisolated struct Livekit_RTPMungerState: Sendable { init() {} } -nonisolated struct Livekit_VP8MungerState: Sendable { +struct Livekit_VP8MungerState: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2930,7 +2930,7 @@ nonisolated struct Livekit_VP8MungerState: Sendable { init() {} } -nonisolated struct Livekit_TimedVersion: Sendable { +struct Livekit_TimedVersion: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2944,7 +2944,7 @@ nonisolated struct Livekit_TimedVersion: Sendable { init() {} } -nonisolated struct Livekit_DataStream: Sendable { +struct Livekit_DataStream: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2952,7 +2952,7 @@ nonisolated struct Livekit_DataStream: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() /// enum for operation types (specific to TextHeader) - nonisolated enum OperationType: SwiftProtobuf.Enum, Swift.CaseIterable { + enum OperationType: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case create // = 0 case update // = 1 @@ -2995,7 +2995,7 @@ nonisolated struct Livekit_DataStream: Sendable { } /// header properties specific to text streams - nonisolated struct TextHeader: Sendable { + struct TextHeader: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3020,7 +3020,7 @@ nonisolated struct Livekit_DataStream: Sendable { } /// header properties specific to byte or file streams - nonisolated struct ByteHeader: Sendable { + struct ByteHeader: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3033,7 +3033,7 @@ nonisolated struct Livekit_DataStream: Sendable { } /// main DataStream.Header that contains a oneof for specific headers - nonisolated struct Header: Sendable { + struct Header: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3088,7 +3088,7 @@ nonisolated struct Livekit_DataStream: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() /// oneof to choose between specific header types - nonisolated enum OneOf_ContentHeader: Equatable, Sendable { + enum OneOf_ContentHeader: Equatable, Sendable { case textHeader(Livekit_DataStream.TextHeader) case byteHeader(Livekit_DataStream.ByteHeader) @@ -3099,7 +3099,7 @@ nonisolated struct Livekit_DataStream: Sendable { fileprivate var _totalLength: UInt64? = nil } - nonisolated struct Chunk: Sendable { + struct Chunk: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3134,7 +3134,7 @@ nonisolated struct Livekit_DataStream: Sendable { fileprivate var _iv: Data? = nil } - nonisolated struct Trailer: Sendable { + struct Trailer: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3156,7 +3156,7 @@ nonisolated struct Livekit_DataStream: Sendable { init() {} } -nonisolated struct Livekit_FilterParams: Sendable { +struct Livekit_FilterParams: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3170,7 +3170,7 @@ nonisolated struct Livekit_FilterParams: Sendable { init() {} } -nonisolated struct Livekit_WebhookConfig: Sendable { +struct Livekit_WebhookConfig: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3195,7 +3195,7 @@ nonisolated struct Livekit_WebhookConfig: Sendable { fileprivate var _filterParams: Livekit_FilterParams? = nil } -nonisolated struct Livekit_SubscribedAudioCodec: Sendable { +struct Livekit_SubscribedAudioCodec: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -3211,69 +3211,69 @@ nonisolated struct Livekit_SubscribedAudioCodec: Sendable { // MARK: - Code below here is support for the SwiftProtobuf runtime. -fileprivate nonisolated let _protobuf_package = "livekit" +fileprivate let _protobuf_package = "livekit" -nonisolated extension Livekit_AudioCodec: SwiftProtobuf._ProtoNameProviding { +extension Livekit_AudioCodec: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0DEFAULT_AC\0\u{1}OPUS\0\u{1}AAC\0\u{1}AC_MP3\0") } -nonisolated extension Livekit_VideoCodec: SwiftProtobuf._ProtoNameProviding { +extension Livekit_VideoCodec: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0DEFAULT_VC\0\u{1}H264_BASELINE\0\u{1}H264_MAIN\0\u{1}H264_HIGH\0\u{1}VP8\0") } -nonisolated extension Livekit_ImageCodec: SwiftProtobuf._ProtoNameProviding { +extension Livekit_ImageCodec: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0IC_DEFAULT\0\u{1}IC_JPEG\0") } -nonisolated extension Livekit_BackupCodecPolicy: SwiftProtobuf._ProtoNameProviding { +extension Livekit_BackupCodecPolicy: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0PREFER_REGRESSION\0\u{1}SIMULCAST\0\u{1}REGRESSION\0") } -nonisolated extension Livekit_TrackType: SwiftProtobuf._ProtoNameProviding { +extension Livekit_TrackType: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0AUDIO\0\u{1}VIDEO\0\u{1}DATA\0") } -nonisolated extension Livekit_TrackSource: SwiftProtobuf._ProtoNameProviding { +extension Livekit_TrackSource: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0UNKNOWN\0\u{1}CAMERA\0\u{1}MICROPHONE\0\u{1}SCREEN_SHARE\0\u{1}SCREEN_SHARE_AUDIO\0") } -nonisolated extension Livekit_DataTrackExtensionID: SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataTrackExtensionID: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0DTEI_INVALID\0\u{1}DTEI_PARTICIPANT_SID\0") } -nonisolated extension Livekit_VideoQuality: SwiftProtobuf._ProtoNameProviding { +extension Livekit_VideoQuality: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0LOW\0\u{1}MEDIUM\0\u{1}HIGH\0\u{1}OFF\0") } -nonisolated extension Livekit_ConnectionQuality: SwiftProtobuf._ProtoNameProviding { +extension Livekit_ConnectionQuality: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0POOR\0\u{1}GOOD\0\u{1}EXCELLENT\0\u{1}LOST\0") } -nonisolated extension Livekit_ClientConfigSetting: SwiftProtobuf._ProtoNameProviding { +extension Livekit_ClientConfigSetting: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0UNSET\0\u{1}DISABLED\0\u{1}ENABLED\0") } -nonisolated extension Livekit_DisconnectReason: SwiftProtobuf._ProtoNameProviding { +extension Livekit_DisconnectReason: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0UNKNOWN_REASON\0\u{1}CLIENT_INITIATED\0\u{1}DUPLICATE_IDENTITY\0\u{1}SERVER_SHUTDOWN\0\u{1}PARTICIPANT_REMOVED\0\u{1}ROOM_DELETED\0\u{1}STATE_MISMATCH\0\u{1}JOIN_FAILURE\0\u{1}MIGRATION\0\u{1}SIGNAL_CLOSE\0\u{1}ROOM_CLOSED\0\u{1}USER_UNAVAILABLE\0\u{1}USER_REJECTED\0\u{1}SIP_TRUNK_FAILURE\0\u{1}CONNECTION_TIMEOUT\0\u{1}MEDIA_FAILURE\0\u{1}AGENT_ERROR\0") } -nonisolated extension Livekit_ReconnectReason: SwiftProtobuf._ProtoNameProviding { +extension Livekit_ReconnectReason: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0RR_UNKNOWN\0\u{1}RR_SIGNAL_DISCONNECTED\0\u{1}RR_PUBLISHER_FAILED\0\u{1}RR_SUBSCRIBER_FAILED\0\u{1}RR_SWITCH_CANDIDATE\0") } -nonisolated extension Livekit_SubscriptionError: SwiftProtobuf._ProtoNameProviding { +extension Livekit_SubscriptionError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0SE_UNKNOWN\0\u{1}SE_CODEC_UNSUPPORTED\0\u{1}SE_TRACK_NOTFOUND\0") } -nonisolated extension Livekit_AudioTrackFeature: SwiftProtobuf._ProtoNameProviding { +extension Livekit_AudioTrackFeature: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0TF_STEREO\0\u{1}TF_NO_DTX\0\u{1}TF_AUTO_GAIN_CONTROL\0\u{1}TF_ECHO_CANCELLATION\0\u{1}TF_NOISE_SUPPRESSION\0\u{1}TF_ENHANCED_NOISE_CANCELLATION\0\u{1}TF_PRECONNECT_BUFFER\0") } -nonisolated extension Livekit_PacketTrailerFeature: SwiftProtobuf._ProtoNameProviding { +extension Livekit_PacketTrailerFeature: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0PTF_USER_TIMESTAMP\0\u{1}PTF_FRAME_ID\0") } -nonisolated extension Livekit_Pagination: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_Pagination: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".Pagination" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}after_id\0\u{1}limit\0") @@ -3308,7 +3308,7 @@ nonisolated extension Livekit_Pagination: SwiftProtobuf.Message, SwiftProtobuf._ } } -nonisolated extension Livekit_TokenPagination: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_TokenPagination: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TokenPagination" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}token\0") @@ -3338,7 +3338,7 @@ nonisolated extension Livekit_TokenPagination: SwiftProtobuf.Message, SwiftProto } } -nonisolated extension Livekit_ListUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_ListUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ListUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}set\0\u{1}add\0\u{1}remove\0\u{1}clear\0") @@ -3383,7 +3383,7 @@ nonisolated extension Livekit_ListUpdate: SwiftProtobuf.Message, SwiftProtobuf._ } } -nonisolated extension Livekit_Room: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_Room: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".Room" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}sid\0\u{1}name\0\u{3}empty_timeout\0\u{3}max_participants\0\u{3}creation_time\0\u{3}turn_password\0\u{3}enabled_codecs\0\u{1}metadata\0\u{3}num_participants\0\u{3}active_recording\0\u{3}num_publishers\0\u{2}\u{2}version\0\u{3}departure_timeout\0\u{3}creation_time_ms\0") @@ -3482,7 +3482,7 @@ nonisolated extension Livekit_Room: SwiftProtobuf.Message, SwiftProtobuf._Messag } } -nonisolated extension Livekit_Codec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_Codec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".Codec" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}mime\0\u{3}fmtp_line\0") @@ -3517,7 +3517,7 @@ nonisolated extension Livekit_Codec: SwiftProtobuf.Message, SwiftProtobuf._Messa } } -nonisolated extension Livekit_PlayoutDelay: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_PlayoutDelay: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".PlayoutDelay" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}enabled\0\u{1}min\0\u{1}max\0") @@ -3557,7 +3557,7 @@ nonisolated extension Livekit_PlayoutDelay: SwiftProtobuf.Message, SwiftProtobuf } } -nonisolated extension Livekit_ParticipantPermission: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_ParticipantPermission: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ParticipantPermission" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}can_subscribe\0\u{3}can_publish\0\u{3}can_publish_data\0\u{2}\u{4}hidden\0\u{1}recorder\0\u{3}can_publish_sources\0\u{3}can_update_metadata\0\u{1}agent\0\u{3}can_subscribe_metrics\0\u{3}can_manage_agent_session\0") @@ -3632,7 +3632,7 @@ nonisolated extension Livekit_ParticipantPermission: SwiftProtobuf.Message, Swif } } -nonisolated extension Livekit_ParticipantInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_ParticipantInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ParticipantInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}sid\0\u{1}identity\0\u{1}state\0\u{1}tracks\0\u{1}metadata\0\u{3}joined_at\0\u{2}\u{3}name\0\u{1}version\0\u{1}permission\0\u{1}region\0\u{3}is_publisher\0\u{1}kind\0\u{1}attributes\0\u{3}disconnect_reason\0\u{3}joined_at_ms\0\u{3}kind_details\0\u{3}data_tracks\0\u{3}client_protocol\0") @@ -3821,19 +3821,19 @@ nonisolated extension Livekit_ParticipantInfo: SwiftProtobuf.Message, SwiftProto } } -nonisolated extension Livekit_ParticipantInfo.State: SwiftProtobuf._ProtoNameProviding { +extension Livekit_ParticipantInfo.State: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0JOINING\0\u{1}JOINED\0\u{1}ACTIVE\0\u{1}DISCONNECTED\0") } -nonisolated extension Livekit_ParticipantInfo.Kind: SwiftProtobuf._ProtoNameProviding { +extension Livekit_ParticipantInfo.Kind: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0STANDARD\0\u{1}INGRESS\0\u{1}EGRESS\0\u{1}SIP\0\u{1}AGENT\0\u{2}\u{3}CONNECTOR\0\u{1}BRIDGE\0") } -nonisolated extension Livekit_ParticipantInfo.KindDetail: SwiftProtobuf._ProtoNameProviding { +extension Livekit_ParticipantInfo.KindDetail: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0CLOUD_AGENT\0\u{1}FORWARDED\0\u{1}CONNECTOR_WHATSAPP\0\u{1}CONNECTOR_TWILIO\0\u{1}BRIDGE_RTSP\0") } -nonisolated extension Livekit_Encryption: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_Encryption: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".Encryption" static let _protobuf_nameMap = SwiftProtobuf._NameMap() @@ -3852,11 +3852,11 @@ nonisolated extension Livekit_Encryption: SwiftProtobuf.Message, SwiftProtobuf._ } } -nonisolated extension Livekit_Encryption.TypeEnum: SwiftProtobuf._ProtoNameProviding { +extension Livekit_Encryption.TypeEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0NONE\0\u{1}GCM\0\u{1}CUSTOM\0") } -nonisolated extension Livekit_SimulcastCodecInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SimulcastCodecInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SimulcastCodecInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}mime_type\0\u{1}mid\0\u{1}cid\0\u{1}layers\0\u{3}video_layer_mode\0\u{3}sdp_cid\0") @@ -3911,7 +3911,7 @@ nonisolated extension Livekit_SimulcastCodecInfo: SwiftProtobuf.Message, SwiftPr } } -nonisolated extension Livekit_TrackInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_TrackInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TrackInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}sid\0\u{1}type\0\u{1}name\0\u{1}muted\0\u{1}width\0\u{1}height\0\u{1}simulcast\0\u{3}disable_dtx\0\u{1}source\0\u{1}layers\0\u{3}mime_type\0\u{1}mid\0\u{1}codecs\0\u{1}stereo\0\u{3}disable_red\0\u{1}encryption\0\u{1}stream\0\u{1}version\0\u{3}audio_features\0\u{3}backup_codec_policy\0\u{3}packet_trailer_features\0") @@ -4121,7 +4121,7 @@ nonisolated extension Livekit_TrackInfo: SwiftProtobuf.Message, SwiftProtobuf._M } } -nonisolated extension Livekit_DataTrackInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataTrackInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataTrackInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}pub_handle\0\u{1}sid\0\u{1}name\0\u{1}encryption\0") @@ -4166,7 +4166,7 @@ nonisolated extension Livekit_DataTrackInfo: SwiftProtobuf.Message, SwiftProtobu } } -nonisolated extension Livekit_DataTrackExtensionParticipantSid: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataTrackExtensionParticipantSid: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataTrackExtensionParticipantSid" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}id\0\u{3}participant_sid\0") @@ -4201,7 +4201,7 @@ nonisolated extension Livekit_DataTrackExtensionParticipantSid: SwiftProtobuf.Me } } -nonisolated extension Livekit_DataTrackSubscriptionOptions: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataTrackSubscriptionOptions: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataTrackSubscriptionOptions" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}target_fps\0") @@ -4235,7 +4235,7 @@ nonisolated extension Livekit_DataTrackSubscriptionOptions: SwiftProtobuf.Messag } } -nonisolated extension Livekit_VideoLayer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_VideoLayer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".VideoLayer" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}quality\0\u{1}width\0\u{1}height\0\u{1}bitrate\0\u{1}ssrc\0\u{3}spatial_layer\0\u{1}rid\0\u{3}repair_ssrc\0") @@ -4300,11 +4300,11 @@ nonisolated extension Livekit_VideoLayer: SwiftProtobuf.Message, SwiftProtobuf._ } } -nonisolated extension Livekit_VideoLayer.Mode: SwiftProtobuf._ProtoNameProviding { +extension Livekit_VideoLayer.Mode: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0MODE_UNUSED\0\u{1}ONE_SPATIAL_LAYER_PER_STREAM\0\u{1}MULTIPLE_SPATIAL_LAYERS_PER_STREAM\0\u{1}ONE_SPATIAL_LAYER_PER_STREAM_INCOMPLETE_RTCP_SR\0") } -nonisolated extension Livekit_DataPacket: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataPacket: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataPacket" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}kind\0\u{1}user\0\u{1}speaker\0\u{3}participant_identity\0\u{3}destination_identities\0\u{3}sip_dtmf\0\u{1}transcription\0\u{1}metrics\0\u{3}chat_message\0\u{3}rpc_request\0\u{3}rpc_ack\0\u{3}rpc_response\0\u{3}stream_header\0\u{3}stream_chunk\0\u{3}stream_trailer\0\u{1}sequence\0\u{3}participant_sid\0\u{3}encrypted_packet\0") @@ -4631,11 +4631,11 @@ nonisolated extension Livekit_DataPacket: SwiftProtobuf.Message, SwiftProtobuf._ } } -nonisolated extension Livekit_DataPacket.Kind: SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataPacket.Kind: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0RELIABLE\0\u{1}LOSSY\0") } -nonisolated extension Livekit_EncryptedPacket: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_EncryptedPacket: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".EncryptedPacket" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}encryption_type\0\u{1}iv\0\u{3}key_index\0\u{3}encrypted_value\0") @@ -4680,7 +4680,7 @@ nonisolated extension Livekit_EncryptedPacket: SwiftProtobuf.Message, SwiftProto } } -nonisolated extension Livekit_EncryptedPacketPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_EncryptedPacketPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".EncryptedPacketPayload" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}user\0\u{4}\u{2}chat_message\0\u{3}rpc_request\0\u{3}rpc_ack\0\u{3}rpc_response\0\u{3}stream_header\0\u{3}stream_chunk\0\u{3}stream_trailer\0") @@ -4849,7 +4849,7 @@ nonisolated extension Livekit_EncryptedPacketPayload: SwiftProtobuf.Message, Swi } } -nonisolated extension Livekit_ActiveSpeakerUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_ActiveSpeakerUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ActiveSpeakerUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}speakers\0") @@ -4879,7 +4879,7 @@ nonisolated extension Livekit_ActiveSpeakerUpdate: SwiftProtobuf.Message, SwiftP } } -nonisolated extension Livekit_SpeakerInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SpeakerInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SpeakerInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}sid\0\u{1}level\0\u{1}active\0") @@ -4919,7 +4919,7 @@ nonisolated extension Livekit_SpeakerInfo: SwiftProtobuf.Message, SwiftProtobuf. } } -nonisolated extension Livekit_UserPacket: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_UserPacket: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UserPacket" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}participant_sid\0\u{1}payload\0\u{3}destination_sids\0\u{1}topic\0\u{3}participant_identity\0\u{3}destination_identities\0\u{2}\u{2}id\0\u{3}start_time\0\u{3}end_time\0\u{1}nonce\0") @@ -4998,7 +4998,7 @@ nonisolated extension Livekit_UserPacket: SwiftProtobuf.Message, SwiftProtobuf._ } } -nonisolated extension Livekit_SipDTMF: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SipDTMF: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SipDTMF" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\u{3}code\0\u{1}digit\0") @@ -5033,7 +5033,7 @@ nonisolated extension Livekit_SipDTMF: SwiftProtobuf.Message, SwiftProtobuf._Mes } } -nonisolated extension Livekit_Transcription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_Transcription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".Transcription" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{4}\u{2}transcribed_participant_identity\0\u{3}track_id\0\u{1}segments\0") @@ -5073,7 +5073,7 @@ nonisolated extension Livekit_Transcription: SwiftProtobuf.Message, SwiftProtobu } } -nonisolated extension Livekit_TranscriptionSegment: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_TranscriptionSegment: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TranscriptionSegment" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}id\0\u{1}text\0\u{3}start_time\0\u{3}end_time\0\u{1}final\0\u{1}language\0") @@ -5128,7 +5128,7 @@ nonisolated extension Livekit_TranscriptionSegment: SwiftProtobuf.Message, Swift } } -nonisolated extension Livekit_ChatMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_ChatMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ChatMessage" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}id\0\u{1}timestamp\0\u{3}edit_timestamp\0\u{1}message\0\u{1}deleted\0\u{1}generated\0") @@ -5187,7 +5187,7 @@ nonisolated extension Livekit_ChatMessage: SwiftProtobuf.Message, SwiftProtobuf. } } -nonisolated extension Livekit_RpcRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_RpcRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RpcRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}id\0\u{1}method\0\u{1}payload\0\u{3}response_timeout_ms\0\u{1}version\0\u{3}compressed_payload\0") @@ -5242,7 +5242,7 @@ nonisolated extension Livekit_RpcRequest: SwiftProtobuf.Message, SwiftProtobuf._ } } -nonisolated extension Livekit_RpcAck: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_RpcAck: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RpcAck" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}request_id\0") @@ -5272,7 +5272,7 @@ nonisolated extension Livekit_RpcAck: SwiftProtobuf.Message, SwiftProtobuf._Mess } } -nonisolated extension Livekit_RpcResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_RpcResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RpcResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}request_id\0\u{1}payload\0\u{1}error\0\u{3}compressed_payload\0") @@ -5351,7 +5351,7 @@ nonisolated extension Livekit_RpcResponse: SwiftProtobuf.Message, SwiftProtobuf. } } -nonisolated extension Livekit_RpcError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_RpcError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RpcError" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}code\0\u{1}message\0\u{1}data\0") @@ -5391,7 +5391,7 @@ nonisolated extension Livekit_RpcError: SwiftProtobuf.Message, SwiftProtobuf._Me } } -nonisolated extension Livekit_ParticipantTracks: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_ParticipantTracks: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ParticipantTracks" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}participant_sid\0\u{3}track_sids\0") @@ -5426,7 +5426,7 @@ nonisolated extension Livekit_ParticipantTracks: SwiftProtobuf.Message, SwiftPro } } -nonisolated extension Livekit_ServerInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_ServerInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ServerInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}edition\0\u{1}version\0\u{1}protocol\0\u{1}region\0\u{3}node_id\0\u{3}debug_info\0\u{3}agent_protocol\0") @@ -5486,11 +5486,11 @@ nonisolated extension Livekit_ServerInfo: SwiftProtobuf.Message, SwiftProtobuf._ } } -nonisolated extension Livekit_ServerInfo.Edition: SwiftProtobuf._ProtoNameProviding { +extension Livekit_ServerInfo.Edition: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0Standard\0\u{1}Cloud\0") } -nonisolated extension Livekit_ClientInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_ClientInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ClientInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}sdk\0\u{1}version\0\u{1}protocol\0\u{1}os\0\u{3}os_version\0\u{3}device_model\0\u{1}browser\0\u{3}browser_version\0\u{1}address\0\u{1}network\0\u{3}other_sdks\0\u{3}client_protocol\0\u{1}capabilities\0") @@ -5580,15 +5580,15 @@ nonisolated extension Livekit_ClientInfo: SwiftProtobuf.Message, SwiftProtobuf._ } } -nonisolated extension Livekit_ClientInfo.SDK: SwiftProtobuf._ProtoNameProviding { +extension Livekit_ClientInfo.SDK: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0UNKNOWN\0\u{1}JS\0\u{1}SWIFT\0\u{1}ANDROID\0\u{1}FLUTTER\0\u{1}GO\0\u{1}UNITY\0\u{1}REACT_NATIVE\0\u{1}RUST\0\u{1}PYTHON\0\u{1}CPP\0\u{1}UNITY_WEB\0\u{1}NODE\0\u{1}UNREAL\0\u{1}ESP32\0") } -nonisolated extension Livekit_ClientInfo.Capability: SwiftProtobuf._ProtoNameProviding { +extension Livekit_ClientInfo.Capability: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0CAP_UNUSED\0\u{1}CAP_PACKET_TRAILER\0") } -nonisolated extension Livekit_ClientConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_ClientConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ClientConfiguration" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}video\0\u{1}screen\0\u{3}resume_connection\0\u{3}disabled_codecs\0\u{3}force_relay\0") @@ -5642,7 +5642,7 @@ nonisolated extension Livekit_ClientConfiguration: SwiftProtobuf.Message, SwiftP } } -nonisolated extension Livekit_VideoConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_VideoConfiguration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".VideoConfiguration" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}hardware_encoder\0") @@ -5672,7 +5672,7 @@ nonisolated extension Livekit_VideoConfiguration: SwiftProtobuf.Message, SwiftPr } } -nonisolated extension Livekit_DisabledCodecs: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_DisabledCodecs: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DisabledCodecs" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}codecs\0\u{1}publish\0") @@ -5707,7 +5707,7 @@ nonisolated extension Livekit_DisabledCodecs: SwiftProtobuf.Message, SwiftProtob } } -nonisolated extension Livekit_RTPDrift: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_RTPDrift: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RTPDrift" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}start_time\0\u{3}end_time\0\u{1}duration\0\u{3}start_timestamp\0\u{3}end_timestamp\0\u{3}rtp_clock_ticks\0\u{3}drift_samples\0\u{3}drift_ms\0\u{3}clock_rate\0") @@ -5781,7 +5781,7 @@ nonisolated extension Livekit_RTPDrift: SwiftProtobuf.Message, SwiftProtobuf._Me } } -nonisolated extension Livekit_RTPStats: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_RTPStats: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RTPStats" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}start_time\0\u{3}end_time\0\u{1}duration\0\u{1}packets\0\u{3}packet_rate\0\u{1}bytes\0\u{1}bitrate\0\u{3}packets_lost\0\u{3}packet_loss_rate\0\u{3}packet_loss_percentage\0\u{3}packets_duplicate\0\u{3}packet_duplicate_rate\0\u{3}bytes_duplicate\0\u{3}bitrate_duplicate\0\u{3}packets_padding\0\u{3}packet_padding_rate\0\u{3}bytes_padding\0\u{3}bitrate_padding\0\u{3}packets_out_of_order\0\u{1}frames\0\u{3}frame_rate\0\u{3}jitter_current\0\u{3}jitter_max\0\u{3}gap_histogram\0\u{1}nacks\0\u{3}nack_misses\0\u{1}plis\0\u{3}last_pli\0\u{1}firs\0\u{3}last_fir\0\u{3}rtt_current\0\u{3}rtt_max\0\u{3}key_frames\0\u{3}last_key_frame\0\u{3}layer_lock_plis\0\u{3}last_layer_lock_pli\0\u{3}nack_acks\0\u{3}nack_repeated\0\u{3}header_bytes\0\u{3}header_bytes_duplicate\0\u{3}header_bytes_padding\0\u{4}\u{3}packet_drift\0\u{3}ntp_report_drift\0\u{3}rebased_report_drift\0\u{3}received_report_drift\0") @@ -6159,7 +6159,7 @@ nonisolated extension Livekit_RTPStats: SwiftProtobuf.Message, SwiftProtobuf._Me } } -nonisolated extension Livekit_RTCPSenderReportState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_RTCPSenderReportState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RTCPSenderReportState" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}rtp_timestamp\0\u{3}rtp_timestamp_ext\0\u{3}ntp_timestamp\0\u{1}at\0\u{3}at_adjusted\0\u{1}packets\0\u{1}octets\0") @@ -6219,7 +6219,7 @@ nonisolated extension Livekit_RTCPSenderReportState: SwiftProtobuf.Message, Swif } } -nonisolated extension Livekit_RTPForwarderState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_RTPForwarderState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RTPForwarderState" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}started\0\u{3}reference_layer_spatial\0\u{3}pre_start_time\0\u{3}ext_first_timestamp\0\u{3}dummy_start_timestamp_offset\0\u{3}rtp_munger\0\u{3}vp8_munger\0\u{3}sender_report_state\0") @@ -6350,7 +6350,7 @@ nonisolated extension Livekit_RTPForwarderState: SwiftProtobuf.Message, SwiftPro } } -nonisolated extension Livekit_RTPMungerState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_RTPMungerState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RTPMungerState" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}ext_last_sequence_number\0\u{3}ext_second_last_sequence_number\0\u{3}ext_last_timestamp\0\u{3}ext_second_last_timestamp\0\u{3}last_marker\0\u{3}second_last_marker\0") @@ -6405,7 +6405,7 @@ nonisolated extension Livekit_RTPMungerState: SwiftProtobuf.Message, SwiftProtob } } -nonisolated extension Livekit_VP8MungerState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_VP8MungerState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".VP8MungerState" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}ext_last_picture_id\0\u{3}picture_id_used\0\u{3}last_tl0_pic_idx\0\u{3}tl0_pic_idx_used\0\u{3}tid_used\0\u{3}last_key_idx\0\u{3}key_idx_used\0") @@ -6465,7 +6465,7 @@ nonisolated extension Livekit_VP8MungerState: SwiftProtobuf.Message, SwiftProtob } } -nonisolated extension Livekit_TimedVersion: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_TimedVersion: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TimedVersion" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}unix_micro\0\u{1}ticks\0") @@ -6500,7 +6500,7 @@ nonisolated extension Livekit_TimedVersion: SwiftProtobuf.Message, SwiftProtobuf } } -nonisolated extension Livekit_DataStream: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataStream: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataStream" static let _protobuf_nameMap = SwiftProtobuf._NameMap() @@ -6519,11 +6519,11 @@ nonisolated extension Livekit_DataStream: SwiftProtobuf.Message, SwiftProtobuf._ } } -nonisolated extension Livekit_DataStream.OperationType: SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataStream.OperationType: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0CREATE\0\u{1}UPDATE\0\u{1}DELETE\0\u{1}REACTION\0") } -nonisolated extension Livekit_DataStream.TextHeader: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataStream.TextHeader: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = Livekit_DataStream.protoMessageName + ".TextHeader" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}operation_type\0\u{1}version\0\u{3}reply_to_stream_id\0\u{3}attached_stream_ids\0\u{1}generated\0") @@ -6573,7 +6573,7 @@ nonisolated extension Livekit_DataStream.TextHeader: SwiftProtobuf.Message, Swif } } -nonisolated extension Livekit_DataStream.ByteHeader: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataStream.ByteHeader: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = Livekit_DataStream.protoMessageName + ".ByteHeader" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}name\0") @@ -6603,7 +6603,7 @@ nonisolated extension Livekit_DataStream.ByteHeader: SwiftProtobuf.Message, Swif } } -nonisolated extension Livekit_DataStream.Header: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataStream.Header: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = Livekit_DataStream.protoMessageName + ".Header" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}stream_id\0\u{1}timestamp\0\u{1}topic\0\u{3}mime_type\0\u{3}total_length\0\u{4}\u{2}encryption_type\0\u{1}attributes\0\u{3}text_header\0\u{3}byte_header\0") @@ -6705,7 +6705,7 @@ nonisolated extension Livekit_DataStream.Header: SwiftProtobuf.Message, SwiftPro } } -nonisolated extension Livekit_DataStream.Chunk: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataStream.Chunk: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = Livekit_DataStream.protoMessageName + ".Chunk" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}stream_id\0\u{3}chunk_index\0\u{1}content\0\u{1}version\0\u{1}iv\0") @@ -6759,7 +6759,7 @@ nonisolated extension Livekit_DataStream.Chunk: SwiftProtobuf.Message, SwiftProt } } -nonisolated extension Livekit_DataStream.Trailer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataStream.Trailer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = Livekit_DataStream.protoMessageName + ".Trailer" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}stream_id\0\u{1}reason\0\u{1}attributes\0") @@ -6799,7 +6799,7 @@ nonisolated extension Livekit_DataStream.Trailer: SwiftProtobuf.Message, SwiftPr } } -nonisolated extension Livekit_FilterParams: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_FilterParams: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".FilterParams" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}include_events\0\u{3}exclude_events\0") @@ -6834,7 +6834,7 @@ nonisolated extension Livekit_FilterParams: SwiftProtobuf.Message, SwiftProtobuf } } -nonisolated extension Livekit_WebhookConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_WebhookConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".WebhookConfig" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}url\0\u{3}signing_key\0\u{3}filter_params\0") @@ -6878,7 +6878,7 @@ nonisolated extension Livekit_WebhookConfig: SwiftProtobuf.Message, SwiftProtobu } } -nonisolated extension Livekit_SubscribedAudioCodec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SubscribedAudioCodec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscribedAudioCodec" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}codec\0\u{1}enabled\0") diff --git a/Sources/LiveKit/Protos/livekit_rtc.pb.swift b/Sources/LiveKit/Protos/livekit_rtc.pb.swift index 7b019cd17..3bca9ed15 100644 --- a/Sources/LiveKit/Protos/livekit_rtc.pb.swift +++ b/Sources/LiveKit/Protos/livekit_rtc.pb.swift @@ -38,12 +38,12 @@ import SwiftProtobuf // incompatible with the version of SwiftProtobuf to which you are linking. // Please ensure that you are building against the same version of the API // that was used to generate this file. -fileprivate nonisolated struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck { +fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck { struct _2: SwiftProtobuf.ProtobufAPIVersion_2 {} typealias Version = _2 } -nonisolated enum Livekit_SignalTarget: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_SignalTarget: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case publisher // = 0 case subscriber // = 1 @@ -77,7 +77,7 @@ nonisolated enum Livekit_SignalTarget: SwiftProtobuf.Enum, Swift.CaseIterable { } -nonisolated enum Livekit_StreamState: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_StreamState: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case active // = 0 case paused // = 1 @@ -111,7 +111,7 @@ nonisolated enum Livekit_StreamState: SwiftProtobuf.Enum, Swift.CaseIterable { } -nonisolated enum Livekit_CandidateProtocol: SwiftProtobuf.Enum, Swift.CaseIterable { +enum Livekit_CandidateProtocol: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case udp // = 0 case tcp // = 1 @@ -149,7 +149,7 @@ nonisolated enum Livekit_CandidateProtocol: SwiftProtobuf.Enum, Swift.CaseIterab } -nonisolated struct Livekit_SignalRequest: Sendable { +struct Livekit_SignalRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -338,7 +338,7 @@ nonisolated struct Livekit_SignalRequest: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated enum OneOf_Message: Equatable, Sendable { + enum OneOf_Message: Equatable, Sendable { /// participant offer for publisher case offer(Livekit_SessionDescription) /// participant answering subscriber offer @@ -385,7 +385,7 @@ nonisolated struct Livekit_SignalRequest: Sendable { init() {} } -nonisolated struct Livekit_SignalResponse: Sendable { +struct Livekit_SignalResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -647,7 +647,7 @@ nonisolated struct Livekit_SignalResponse: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated enum OneOf_Message: Equatable, Sendable { + enum OneOf_Message: Equatable, Sendable { /// sent when join is accepted case join(Livekit_JoinResponse) /// sent when server answers publisher @@ -711,7 +711,7 @@ nonisolated struct Livekit_SignalResponse: Sendable { init() {} } -nonisolated struct Livekit_SimulcastCodec: Sendable { +struct Livekit_SimulcastCodec: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -729,7 +729,7 @@ nonisolated struct Livekit_SimulcastCodec: Sendable { init() {} } -nonisolated struct Livekit_AddTrackRequest: @unchecked Sendable { +struct Livekit_AddTrackRequest: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -843,7 +843,7 @@ nonisolated struct Livekit_AddTrackRequest: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -nonisolated struct Livekit_PublishDataTrackRequest: Sendable { +struct Livekit_PublishDataTrackRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -864,7 +864,7 @@ nonisolated struct Livekit_PublishDataTrackRequest: Sendable { init() {} } -nonisolated struct Livekit_PublishDataTrackResponse: Sendable { +struct Livekit_PublishDataTrackResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -886,7 +886,7 @@ nonisolated struct Livekit_PublishDataTrackResponse: Sendable { fileprivate var _info: Livekit_DataTrackInfo? = nil } -nonisolated struct Livekit_UnpublishDataTrackRequest: Sendable { +struct Livekit_UnpublishDataTrackRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -899,7 +899,7 @@ nonisolated struct Livekit_UnpublishDataTrackRequest: Sendable { init() {} } -nonisolated struct Livekit_UnpublishDataTrackResponse: Sendable { +struct Livekit_UnpublishDataTrackResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -921,7 +921,7 @@ nonisolated struct Livekit_UnpublishDataTrackResponse: Sendable { fileprivate var _info: Livekit_DataTrackInfo? = nil } -nonisolated struct Livekit_DataTrackSubscriberHandles: Sendable { +struct Livekit_DataTrackSubscriberHandles: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -931,7 +931,7 @@ nonisolated struct Livekit_DataTrackSubscriberHandles: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated struct PublishedDataTrack: Sendable { + struct PublishedDataTrack: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -950,7 +950,7 @@ nonisolated struct Livekit_DataTrackSubscriberHandles: Sendable { init() {} } -nonisolated struct Livekit_TrickleRequest: Sendable { +struct Livekit_TrickleRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -966,7 +966,7 @@ nonisolated struct Livekit_TrickleRequest: Sendable { init() {} } -nonisolated struct Livekit_MuteTrackRequest: Sendable { +struct Livekit_MuteTrackRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -980,7 +980,7 @@ nonisolated struct Livekit_MuteTrackRequest: Sendable { init() {} } -nonisolated struct Livekit_JoinResponse: @unchecked Sendable { +struct Livekit_JoinResponse: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1090,7 +1090,7 @@ nonisolated struct Livekit_JoinResponse: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -nonisolated struct Livekit_ReconnectResponse: Sendable { +struct Livekit_ReconnectResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1126,7 +1126,7 @@ nonisolated struct Livekit_ReconnectResponse: Sendable { fileprivate var _serverInfo: Livekit_ServerInfo? = nil } -nonisolated struct Livekit_TrackPublishedResponse: Sendable { +struct Livekit_TrackPublishedResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1149,7 +1149,7 @@ nonisolated struct Livekit_TrackPublishedResponse: Sendable { fileprivate var _track: Livekit_TrackInfo? = nil } -nonisolated struct Livekit_TrackUnpublishedResponse: Sendable { +struct Livekit_TrackUnpublishedResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1161,7 +1161,7 @@ nonisolated struct Livekit_TrackUnpublishedResponse: Sendable { init() {} } -nonisolated struct Livekit_SessionDescription: Sendable { +struct Livekit_SessionDescription: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1180,7 +1180,7 @@ nonisolated struct Livekit_SessionDescription: Sendable { init() {} } -nonisolated struct Livekit_ParticipantUpdate: Sendable { +struct Livekit_ParticipantUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1192,7 +1192,7 @@ nonisolated struct Livekit_ParticipantUpdate: Sendable { init() {} } -nonisolated struct Livekit_UpdateSubscription: Sendable { +struct Livekit_UpdateSubscription: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1208,7 +1208,7 @@ nonisolated struct Livekit_UpdateSubscription: Sendable { init() {} } -nonisolated struct Livekit_UpdateDataSubscription: Sendable { +struct Livekit_UpdateDataSubscription: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1217,7 +1217,7 @@ nonisolated struct Livekit_UpdateDataSubscription: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated struct Update: Sendable { + struct Update: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1247,7 +1247,7 @@ nonisolated struct Livekit_UpdateDataSubscription: Sendable { init() {} } -nonisolated struct Livekit_UpdateTrackSettings: Sendable { +struct Livekit_UpdateTrackSettings: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1282,7 +1282,7 @@ nonisolated struct Livekit_UpdateTrackSettings: Sendable { init() {} } -nonisolated struct Livekit_UpdateLocalAudioTrack: Sendable { +struct Livekit_UpdateLocalAudioTrack: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1296,7 +1296,7 @@ nonisolated struct Livekit_UpdateLocalAudioTrack: Sendable { init() {} } -nonisolated struct Livekit_UpdateLocalVideoTrack: Sendable { +struct Livekit_UpdateLocalVideoTrack: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1312,7 +1312,7 @@ nonisolated struct Livekit_UpdateLocalVideoTrack: Sendable { init() {} } -nonisolated struct Livekit_LeaveRequest: Sendable { +struct Livekit_LeaveRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1338,7 +1338,7 @@ nonisolated struct Livekit_LeaveRequest: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() /// indicates action clients should take on receiving this message - nonisolated enum Action: SwiftProtobuf.Enum, Swift.CaseIterable { + enum Action: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int /// should disconnect @@ -1390,7 +1390,7 @@ nonisolated struct Livekit_LeaveRequest: Sendable { /// message to indicate published video track dimensions are changing /// /// NOTE: This message was marked as deprecated in the .proto file. -nonisolated struct Livekit_UpdateVideoLayers: Sendable { +struct Livekit_UpdateVideoLayers: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1404,7 +1404,7 @@ nonisolated struct Livekit_UpdateVideoLayers: Sendable { init() {} } -nonisolated struct Livekit_UpdateParticipantMetadata: Sendable { +struct Livekit_UpdateParticipantMetadata: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1424,7 +1424,7 @@ nonisolated struct Livekit_UpdateParticipantMetadata: Sendable { init() {} } -nonisolated struct Livekit_ICEServer: Sendable { +struct Livekit_ICEServer: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1440,7 +1440,7 @@ nonisolated struct Livekit_ICEServer: Sendable { init() {} } -nonisolated struct Livekit_SpeakersChanged: Sendable { +struct Livekit_SpeakersChanged: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1452,7 +1452,7 @@ nonisolated struct Livekit_SpeakersChanged: Sendable { init() {} } -nonisolated struct Livekit_RoomUpdate: Sendable { +struct Livekit_RoomUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1473,7 +1473,7 @@ nonisolated struct Livekit_RoomUpdate: Sendable { fileprivate var _room: Livekit_Room? = nil } -nonisolated struct Livekit_ConnectionQualityInfo: Sendable { +struct Livekit_ConnectionQualityInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1489,7 +1489,7 @@ nonisolated struct Livekit_ConnectionQualityInfo: Sendable { init() {} } -nonisolated struct Livekit_ConnectionQualityUpdate: Sendable { +struct Livekit_ConnectionQualityUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1501,7 +1501,7 @@ nonisolated struct Livekit_ConnectionQualityUpdate: Sendable { init() {} } -nonisolated struct Livekit_StreamStateInfo: Sendable { +struct Livekit_StreamStateInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1517,7 +1517,7 @@ nonisolated struct Livekit_StreamStateInfo: Sendable { init() {} } -nonisolated struct Livekit_StreamStateUpdate: Sendable { +struct Livekit_StreamStateUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1529,7 +1529,7 @@ nonisolated struct Livekit_StreamStateUpdate: Sendable { init() {} } -nonisolated struct Livekit_SubscribedQuality: Sendable { +struct Livekit_SubscribedQuality: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1543,7 +1543,7 @@ nonisolated struct Livekit_SubscribedQuality: Sendable { init() {} } -nonisolated struct Livekit_SubscribedCodec: Sendable { +struct Livekit_SubscribedCodec: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1557,7 +1557,7 @@ nonisolated struct Livekit_SubscribedCodec: Sendable { init() {} } -nonisolated struct Livekit_SubscribedQualityUpdate: Sendable { +struct Livekit_SubscribedQualityUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1574,7 +1574,7 @@ nonisolated struct Livekit_SubscribedQualityUpdate: Sendable { init() {} } -nonisolated struct Livekit_SubscribedAudioCodecUpdate: Sendable { +struct Livekit_SubscribedAudioCodecUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1588,7 +1588,7 @@ nonisolated struct Livekit_SubscribedAudioCodecUpdate: Sendable { init() {} } -nonisolated struct Livekit_TrackPermission: Sendable { +struct Livekit_TrackPermission: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1607,7 +1607,7 @@ nonisolated struct Livekit_TrackPermission: Sendable { init() {} } -nonisolated struct Livekit_SubscriptionPermission: Sendable { +struct Livekit_SubscriptionPermission: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1621,7 +1621,7 @@ nonisolated struct Livekit_SubscriptionPermission: Sendable { init() {} } -nonisolated struct Livekit_SubscriptionPermissionUpdate: Sendable { +struct Livekit_SubscriptionPermissionUpdate: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1637,7 +1637,7 @@ nonisolated struct Livekit_SubscriptionPermissionUpdate: Sendable { init() {} } -nonisolated struct Livekit_RoomMovedResponse: @unchecked Sendable { +struct Livekit_RoomMovedResponse: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1679,7 +1679,7 @@ nonisolated struct Livekit_RoomMovedResponse: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -nonisolated struct Livekit_SyncState: Sendable { +struct Livekit_SyncState: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1736,7 +1736,7 @@ nonisolated struct Livekit_SyncState: Sendable { fileprivate var _offer: Livekit_SessionDescription? = nil } -nonisolated struct Livekit_DataChannelReceiveState: Sendable { +struct Livekit_DataChannelReceiveState: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1750,7 +1750,7 @@ nonisolated struct Livekit_DataChannelReceiveState: Sendable { init() {} } -nonisolated struct Livekit_DataChannelInfo: Sendable { +struct Livekit_DataChannelInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1766,7 +1766,7 @@ nonisolated struct Livekit_DataChannelInfo: Sendable { init() {} } -nonisolated struct Livekit_SimulateScenario: Sendable { +struct Livekit_SimulateScenario: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1857,7 +1857,7 @@ nonisolated struct Livekit_SimulateScenario: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated enum OneOf_Scenario: Equatable, Sendable { + enum OneOf_Scenario: Equatable, Sendable { /// simulate N seconds of speaker activity case speakerUpdate(Int32) /// simulate local node failure @@ -1883,7 +1883,7 @@ nonisolated struct Livekit_SimulateScenario: Sendable { init() {} } -nonisolated struct Livekit_Ping: Sendable { +struct Livekit_Ping: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1898,7 +1898,7 @@ nonisolated struct Livekit_Ping: Sendable { init() {} } -nonisolated struct Livekit_Pong: Sendable { +struct Livekit_Pong: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1913,7 +1913,7 @@ nonisolated struct Livekit_Pong: Sendable { init() {} } -nonisolated struct Livekit_RegionSettings: Sendable { +struct Livekit_RegionSettings: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1925,7 +1925,7 @@ nonisolated struct Livekit_RegionSettings: Sendable { init() {} } -nonisolated struct Livekit_RegionInfo: Sendable { +struct Livekit_RegionInfo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1941,7 +1941,7 @@ nonisolated struct Livekit_RegionInfo: Sendable { init() {} } -nonisolated struct Livekit_SubscriptionResponse: Sendable { +struct Livekit_SubscriptionResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -1955,7 +1955,7 @@ nonisolated struct Livekit_SubscriptionResponse: Sendable { init() {} } -nonisolated struct Livekit_RequestResponse: Sendable { +struct Livekit_RequestResponse: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2034,7 +2034,7 @@ nonisolated struct Livekit_RequestResponse: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated enum OneOf_Request: Equatable, Sendable { + enum OneOf_Request: Equatable, Sendable { case trickle(Livekit_TrickleRequest) case addTrack(Livekit_AddTrackRequest) case mute(Livekit_MuteTrackRequest) @@ -2046,7 +2046,7 @@ nonisolated struct Livekit_RequestResponse: Sendable { } - nonisolated enum Reason: SwiftProtobuf.Enum, Swift.CaseIterable { + enum Reason: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case ok // = 0 case notFound // = 1 @@ -2119,7 +2119,7 @@ nonisolated struct Livekit_RequestResponse: Sendable { init() {} } -nonisolated struct Livekit_TrackSubscribed: Sendable { +struct Livekit_TrackSubscribed: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2131,7 +2131,7 @@ nonisolated struct Livekit_TrackSubscribed: Sendable { init() {} } -nonisolated struct Livekit_ConnectionSettings: Sendable { +struct Livekit_ConnectionSettings: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2168,7 +2168,7 @@ nonisolated struct Livekit_ConnectionSettings: Sendable { fileprivate var _autoSubscribeDataTrack: Bool? = nil } -nonisolated struct Livekit_JoinRequest: @unchecked Sendable { +struct Livekit_JoinRequest: @unchecked Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2250,7 +2250,7 @@ nonisolated struct Livekit_JoinRequest: @unchecked Sendable { fileprivate var _storage = _StorageClass.defaultInstance } -nonisolated struct Livekit_WrappedJoinRequest: Sendable { +struct Livekit_WrappedJoinRequest: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2262,7 +2262,7 @@ nonisolated struct Livekit_WrappedJoinRequest: Sendable { var unknownFields = SwiftProtobuf.UnknownStorage() - nonisolated enum Compression: SwiftProtobuf.Enum, Swift.CaseIterable { + enum Compression: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case none // = 0 case gzip // = 1 @@ -2299,7 +2299,7 @@ nonisolated struct Livekit_WrappedJoinRequest: Sendable { init() {} } -nonisolated struct Livekit_MediaSectionsRequirement: Sendable { +struct Livekit_MediaSectionsRequirement: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -2315,21 +2315,21 @@ nonisolated struct Livekit_MediaSectionsRequirement: Sendable { // MARK: - Code below here is support for the SwiftProtobuf runtime. -fileprivate nonisolated let _protobuf_package = "livekit" +fileprivate let _protobuf_package = "livekit" -nonisolated extension Livekit_SignalTarget: SwiftProtobuf._ProtoNameProviding { +extension Livekit_SignalTarget: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0PUBLISHER\0\u{1}SUBSCRIBER\0") } -nonisolated extension Livekit_StreamState: SwiftProtobuf._ProtoNameProviding { +extension Livekit_StreamState: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0ACTIVE\0\u{1}PAUSED\0") } -nonisolated extension Livekit_CandidateProtocol: SwiftProtobuf._ProtoNameProviding { +extension Livekit_CandidateProtocol: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0UDP\0\u{1}TCP\0\u{1}TLS\0") } -nonisolated extension Livekit_SignalRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SignalRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SignalRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}offer\0\u{1}answer\0\u{1}trickle\0\u{3}add_track\0\u{1}mute\0\u{1}subscription\0\u{3}track_setting\0\u{1}leave\0\u{4}\u{2}update_layers\0\u{3}subscription_permission\0\u{3}sync_state\0\u{1}simulate\0\u{1}ping\0\u{3}update_metadata\0\u{3}ping_req\0\u{3}update_audio_track\0\u{3}update_video_track\0\u{3}publish_data_track_request\0\u{3}unpublish_data_track_request\0\u{3}update_data_subscription\0") @@ -2697,7 +2697,7 @@ nonisolated extension Livekit_SignalRequest: SwiftProtobuf.Message, SwiftProtobu } } -nonisolated extension Livekit_SignalResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SignalResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SignalResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}join\0\u{1}answer\0\u{1}offer\0\u{1}trickle\0\u{1}update\0\u{3}track_published\0\u{2}\u{2}leave\0\u{1}mute\0\u{3}speakers_changed\0\u{3}room_update\0\u{3}connection_quality\0\u{3}stream_state_update\0\u{3}subscribed_quality_update\0\u{3}subscription_permission_update\0\u{3}refresh_token\0\u{3}track_unpublished\0\u{1}pong\0\u{1}reconnect\0\u{3}pong_resp\0\u{3}subscription_response\0\u{3}request_response\0\u{3}track_subscribed\0\u{3}room_moved\0\u{3}media_sections_requirement\0\u{3}subscribed_audio_codec_update\0\u{3}publish_data_track_response\0\u{3}unpublish_data_track_response\0\u{3}data_track_subscriber_handles\0") @@ -3196,7 +3196,7 @@ nonisolated extension Livekit_SignalResponse: SwiftProtobuf.Message, SwiftProtob } } -nonisolated extension Livekit_SimulcastCodec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SimulcastCodec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SimulcastCodec" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}codec\0\u{1}cid\0\u{2}\u{2}layers\0\u{3}video_layer_mode\0") @@ -3241,7 +3241,7 @@ nonisolated extension Livekit_SimulcastCodec: SwiftProtobuf.Message, SwiftProtob } } -nonisolated extension Livekit_AddTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_AddTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".AddTrackRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}cid\0\u{1}name\0\u{1}type\0\u{1}width\0\u{1}height\0\u{1}muted\0\u{3}disable_dtx\0\u{1}source\0\u{1}layers\0\u{3}simulcast_codecs\0\u{1}sid\0\u{1}stereo\0\u{3}disable_red\0\u{1}encryption\0\u{1}stream\0\u{3}backup_codec_policy\0\u{3}audio_features\0\u{3}packet_trailer_features\0") @@ -3426,7 +3426,7 @@ nonisolated extension Livekit_AddTrackRequest: SwiftProtobuf.Message, SwiftProto } } -nonisolated extension Livekit_PublishDataTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_PublishDataTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".PublishDataTrackRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}pub_handle\0\u{1}name\0\u{1}encryption\0") @@ -3466,7 +3466,7 @@ nonisolated extension Livekit_PublishDataTrackRequest: SwiftProtobuf.Message, Sw } } -nonisolated extension Livekit_PublishDataTrackResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_PublishDataTrackResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".PublishDataTrackResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}info\0") @@ -3500,7 +3500,7 @@ nonisolated extension Livekit_PublishDataTrackResponse: SwiftProtobuf.Message, S } } -nonisolated extension Livekit_UnpublishDataTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_UnpublishDataTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UnpublishDataTrackRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}pub_handle\0") @@ -3530,7 +3530,7 @@ nonisolated extension Livekit_UnpublishDataTrackRequest: SwiftProtobuf.Message, } } -nonisolated extension Livekit_UnpublishDataTrackResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_UnpublishDataTrackResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UnpublishDataTrackResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}info\0") @@ -3564,7 +3564,7 @@ nonisolated extension Livekit_UnpublishDataTrackResponse: SwiftProtobuf.Message, } } -nonisolated extension Livekit_DataTrackSubscriberHandles: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataTrackSubscriberHandles: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataTrackSubscriberHandles" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}sub_handles\0") @@ -3594,7 +3594,7 @@ nonisolated extension Livekit_DataTrackSubscriberHandles: SwiftProtobuf.Message, } } -nonisolated extension Livekit_DataTrackSubscriberHandles.PublishedDataTrack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataTrackSubscriberHandles.PublishedDataTrack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = Livekit_DataTrackSubscriberHandles.protoMessageName + ".PublishedDataTrack" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}publisher_identity\0\u{3}publisher_sid\0\u{3}track_sid\0") @@ -3634,7 +3634,7 @@ nonisolated extension Livekit_DataTrackSubscriberHandles.PublishedDataTrack: Swi } } -nonisolated extension Livekit_TrickleRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_TrickleRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TrickleRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}candidateInit\0\u{1}target\0\u{1}final\0") @@ -3674,7 +3674,7 @@ nonisolated extension Livekit_TrickleRequest: SwiftProtobuf.Message, SwiftProtob } } -nonisolated extension Livekit_MuteTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_MuteTrackRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".MuteTrackRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}sid\0\u{1}muted\0") @@ -3709,7 +3709,7 @@ nonisolated extension Livekit_MuteTrackRequest: SwiftProtobuf.Message, SwiftProt } } -nonisolated extension Livekit_JoinResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_JoinResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".JoinResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}room\0\u{1}participant\0\u{3}other_participants\0\u{3}server_version\0\u{3}ice_servers\0\u{3}subscriber_primary\0\u{3}alternative_url\0\u{3}client_configuration\0\u{3}server_region\0\u{3}ping_timeout\0\u{3}ping_interval\0\u{3}server_info\0\u{3}sif_trailer\0\u{3}enabled_publish_codecs\0\u{3}fast_publish\0") @@ -3877,7 +3877,7 @@ nonisolated extension Livekit_JoinResponse: SwiftProtobuf.Message, SwiftProtobuf } } -nonisolated extension Livekit_ReconnectResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_ReconnectResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ReconnectResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}ice_servers\0\u{3}client_configuration\0\u{3}server_info\0\u{3}last_message_seq\0") @@ -3926,7 +3926,7 @@ nonisolated extension Livekit_ReconnectResponse: SwiftProtobuf.Message, SwiftPro } } -nonisolated extension Livekit_TrackPublishedResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_TrackPublishedResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TrackPublishedResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}cid\0\u{1}track\0") @@ -3965,7 +3965,7 @@ nonisolated extension Livekit_TrackPublishedResponse: SwiftProtobuf.Message, Swi } } -nonisolated extension Livekit_TrackUnpublishedResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_TrackUnpublishedResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TrackUnpublishedResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0") @@ -3995,7 +3995,7 @@ nonisolated extension Livekit_TrackUnpublishedResponse: SwiftProtobuf.Message, S } } -nonisolated extension Livekit_SessionDescription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SessionDescription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SessionDescription" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}type\0\u{1}sdp\0\u{1}id\0\u{3}mid_to_track_id\0") @@ -4040,7 +4040,7 @@ nonisolated extension Livekit_SessionDescription: SwiftProtobuf.Message, SwiftPr } } -nonisolated extension Livekit_ParticipantUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_ParticipantUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ParticipantUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}participants\0") @@ -4070,7 +4070,7 @@ nonisolated extension Livekit_ParticipantUpdate: SwiftProtobuf.Message, SwiftPro } } -nonisolated extension Livekit_UpdateSubscription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_UpdateSubscription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UpdateSubscription" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sids\0\u{1}subscribe\0\u{3}participant_tracks\0") @@ -4110,7 +4110,7 @@ nonisolated extension Livekit_UpdateSubscription: SwiftProtobuf.Message, SwiftPr } } -nonisolated extension Livekit_UpdateDataSubscription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_UpdateDataSubscription: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UpdateDataSubscription" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}updates\0") @@ -4140,7 +4140,7 @@ nonisolated extension Livekit_UpdateDataSubscription: SwiftProtobuf.Message, Swi } } -nonisolated extension Livekit_UpdateDataSubscription.Update: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_UpdateDataSubscription.Update: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = Livekit_UpdateDataSubscription.protoMessageName + ".Update" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0\u{1}subscribe\0\u{1}options\0") @@ -4184,7 +4184,7 @@ nonisolated extension Livekit_UpdateDataSubscription.Update: SwiftProtobuf.Messa } } -nonisolated extension Livekit_UpdateTrackSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_UpdateTrackSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UpdateTrackSettings" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sids\0\u{2}\u{2}disabled\0\u{1}quality\0\u{1}width\0\u{1}height\0\u{1}fps\0\u{1}priority\0") @@ -4244,7 +4244,7 @@ nonisolated extension Livekit_UpdateTrackSettings: SwiftProtobuf.Message, SwiftP } } -nonisolated extension Livekit_UpdateLocalAudioTrack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_UpdateLocalAudioTrack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UpdateLocalAudioTrack" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0\u{1}features\0") @@ -4279,7 +4279,7 @@ nonisolated extension Livekit_UpdateLocalAudioTrack: SwiftProtobuf.Message, Swif } } -nonisolated extension Livekit_UpdateLocalVideoTrack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_UpdateLocalVideoTrack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UpdateLocalVideoTrack" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0\u{1}width\0\u{1}height\0") @@ -4319,7 +4319,7 @@ nonisolated extension Livekit_UpdateLocalVideoTrack: SwiftProtobuf.Message, Swif } } -nonisolated extension Livekit_LeaveRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_LeaveRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".LeaveRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}can_reconnect\0\u{1}reason\0\u{1}action\0\u{1}regions\0") @@ -4368,11 +4368,11 @@ nonisolated extension Livekit_LeaveRequest: SwiftProtobuf.Message, SwiftProtobuf } } -nonisolated extension Livekit_LeaveRequest.Action: SwiftProtobuf._ProtoNameProviding { +extension Livekit_LeaveRequest.Action: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0DISCONNECT\0\u{1}RESUME\0\u{1}RECONNECT\0") } -nonisolated extension Livekit_UpdateVideoLayers: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_UpdateVideoLayers: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UpdateVideoLayers" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0\u{1}layers\0") @@ -4407,7 +4407,7 @@ nonisolated extension Livekit_UpdateVideoLayers: SwiftProtobuf.Message, SwiftPro } } -nonisolated extension Livekit_UpdateParticipantMetadata: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_UpdateParticipantMetadata: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UpdateParticipantMetadata" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}metadata\0\u{1}name\0\u{1}attributes\0\u{3}request_id\0") @@ -4452,7 +4452,7 @@ nonisolated extension Livekit_UpdateParticipantMetadata: SwiftProtobuf.Message, } } -nonisolated extension Livekit_ICEServer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_ICEServer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ICEServer" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}urls\0\u{1}username\0\u{1}credential\0") @@ -4492,7 +4492,7 @@ nonisolated extension Livekit_ICEServer: SwiftProtobuf.Message, SwiftProtobuf._M } } -nonisolated extension Livekit_SpeakersChanged: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SpeakersChanged: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SpeakersChanged" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}speakers\0") @@ -4522,7 +4522,7 @@ nonisolated extension Livekit_SpeakersChanged: SwiftProtobuf.Message, SwiftProto } } -nonisolated extension Livekit_RoomUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_RoomUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RoomUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}room\0") @@ -4556,7 +4556,7 @@ nonisolated extension Livekit_RoomUpdate: SwiftProtobuf.Message, SwiftProtobuf._ } } -nonisolated extension Livekit_ConnectionQualityInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_ConnectionQualityInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ConnectionQualityInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}participant_sid\0\u{1}quality\0\u{1}score\0") @@ -4596,7 +4596,7 @@ nonisolated extension Livekit_ConnectionQualityInfo: SwiftProtobuf.Message, Swif } } -nonisolated extension Livekit_ConnectionQualityUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_ConnectionQualityUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ConnectionQualityUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}updates\0") @@ -4626,7 +4626,7 @@ nonisolated extension Livekit_ConnectionQualityUpdate: SwiftProtobuf.Message, Sw } } -nonisolated extension Livekit_StreamStateInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_StreamStateInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".StreamStateInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}participant_sid\0\u{3}track_sid\0\u{1}state\0") @@ -4666,7 +4666,7 @@ nonisolated extension Livekit_StreamStateInfo: SwiftProtobuf.Message, SwiftProto } } -nonisolated extension Livekit_StreamStateUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_StreamStateUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".StreamStateUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}stream_states\0") @@ -4696,7 +4696,7 @@ nonisolated extension Livekit_StreamStateUpdate: SwiftProtobuf.Message, SwiftPro } } -nonisolated extension Livekit_SubscribedQuality: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SubscribedQuality: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscribedQuality" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}quality\0\u{1}enabled\0") @@ -4731,7 +4731,7 @@ nonisolated extension Livekit_SubscribedQuality: SwiftProtobuf.Message, SwiftPro } } -nonisolated extension Livekit_SubscribedCodec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SubscribedCodec: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscribedCodec" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}codec\0\u{1}qualities\0") @@ -4766,7 +4766,7 @@ nonisolated extension Livekit_SubscribedCodec: SwiftProtobuf.Message, SwiftProto } } -nonisolated extension Livekit_SubscribedQualityUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SubscribedQualityUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscribedQualityUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0\u{3}subscribed_qualities\0\u{3}subscribed_codecs\0") @@ -4806,7 +4806,7 @@ nonisolated extension Livekit_SubscribedQualityUpdate: SwiftProtobuf.Message, Sw } } -nonisolated extension Livekit_SubscribedAudioCodecUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SubscribedAudioCodecUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscribedAudioCodecUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0\u{3}subscribed_audio_codecs\0") @@ -4841,7 +4841,7 @@ nonisolated extension Livekit_SubscribedAudioCodecUpdate: SwiftProtobuf.Message, } } -nonisolated extension Livekit_TrackPermission: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_TrackPermission: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TrackPermission" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}participant_sid\0\u{3}all_tracks\0\u{3}track_sids\0\u{3}participant_identity\0") @@ -4886,7 +4886,7 @@ nonisolated extension Livekit_TrackPermission: SwiftProtobuf.Message, SwiftProto } } -nonisolated extension Livekit_SubscriptionPermission: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SubscriptionPermission: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscriptionPermission" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}all_participants\0\u{3}track_permissions\0") @@ -4921,7 +4921,7 @@ nonisolated extension Livekit_SubscriptionPermission: SwiftProtobuf.Message, Swi } } -nonisolated extension Livekit_SubscriptionPermissionUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SubscriptionPermissionUpdate: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscriptionPermissionUpdate" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}participant_sid\0\u{3}track_sid\0\u{1}allowed\0") @@ -4961,7 +4961,7 @@ nonisolated extension Livekit_SubscriptionPermissionUpdate: SwiftProtobuf.Messag } } -nonisolated extension Livekit_RoomMovedResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_RoomMovedResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RoomMovedResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}room\0\u{1}token\0\u{1}participant\0\u{3}other_participants\0") @@ -5052,7 +5052,7 @@ nonisolated extension Livekit_RoomMovedResponse: SwiftProtobuf.Message, SwiftPro } } -nonisolated extension Livekit_SyncState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SyncState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SyncState" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}answer\0\u{1}subscription\0\u{3}publish_tracks\0\u{3}data_channels\0\u{1}offer\0\u{3}track_sids_disabled\0\u{3}datachannel_receive_states\0\u{3}publish_data_tracks\0") @@ -5121,7 +5121,7 @@ nonisolated extension Livekit_SyncState: SwiftProtobuf.Message, SwiftProtobuf._M } } -nonisolated extension Livekit_DataChannelReceiveState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataChannelReceiveState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataChannelReceiveState" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}publisher_sid\0\u{3}last_seq\0") @@ -5156,7 +5156,7 @@ nonisolated extension Livekit_DataChannelReceiveState: SwiftProtobuf.Message, Sw } } -nonisolated extension Livekit_DataChannelInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_DataChannelInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".DataChannelInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}label\0\u{1}id\0\u{1}target\0") @@ -5196,7 +5196,7 @@ nonisolated extension Livekit_DataChannelInfo: SwiftProtobuf.Message, SwiftProto } } -nonisolated extension Livekit_SimulateScenario: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SimulateScenario: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SimulateScenario" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}speaker_update\0\u{3}node_failure\0\u{1}migration\0\u{3}server_leave\0\u{3}switch_candidate_protocol\0\u{3}subscriber_bandwidth\0\u{3}disconnect_signal_on_resume\0\u{3}disconnect_signal_on_resume_no_messages\0\u{3}leave_request_full_reconnect\0") @@ -5337,7 +5337,7 @@ nonisolated extension Livekit_SimulateScenario: SwiftProtobuf.Message, SwiftProt } } -nonisolated extension Livekit_Ping: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_Ping: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".Ping" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}timestamp\0\u{1}rtt\0") @@ -5372,7 +5372,7 @@ nonisolated extension Livekit_Ping: SwiftProtobuf.Message, SwiftProtobuf._Messag } } -nonisolated extension Livekit_Pong: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_Pong: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".Pong" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}last_ping_timestamp\0\u{1}timestamp\0") @@ -5407,7 +5407,7 @@ nonisolated extension Livekit_Pong: SwiftProtobuf.Message, SwiftProtobuf._Messag } } -nonisolated extension Livekit_RegionSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_RegionSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RegionSettings" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}regions\0") @@ -5437,7 +5437,7 @@ nonisolated extension Livekit_RegionSettings: SwiftProtobuf.Message, SwiftProtob } } -nonisolated extension Livekit_RegionInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_RegionInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RegionInfo" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}region\0\u{1}url\0\u{1}distance\0") @@ -5477,7 +5477,7 @@ nonisolated extension Livekit_RegionInfo: SwiftProtobuf.Message, SwiftProtobuf._ } } -nonisolated extension Livekit_SubscriptionResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_SubscriptionResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".SubscriptionResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0\u{1}err\0") @@ -5512,7 +5512,7 @@ nonisolated extension Livekit_SubscriptionResponse: SwiftProtobuf.Message, Swift } } -nonisolated extension Livekit_RequestResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_RequestResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".RequestResponse" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}request_id\0\u{1}reason\0\u{1}message\0\u{1}trickle\0\u{3}add_track\0\u{1}mute\0\u{3}update_metadata\0\u{3}update_audio_track\0\u{3}update_video_track\0\u{3}publish_data_track\0\u{3}unpublish_data_track\0") @@ -5696,11 +5696,11 @@ nonisolated extension Livekit_RequestResponse: SwiftProtobuf.Message, SwiftProto } } -nonisolated extension Livekit_RequestResponse.Reason: SwiftProtobuf._ProtoNameProviding { +extension Livekit_RequestResponse.Reason: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0OK\0\u{1}NOT_FOUND\0\u{1}NOT_ALLOWED\0\u{1}LIMIT_EXCEEDED\0\u{1}QUEUED\0\u{1}UNSUPPORTED_TYPE\0\u{1}UNCLASSIFIED_ERROR\0\u{1}INVALID_HANDLE\0\u{1}INVALID_NAME\0\u{1}DUPLICATE_HANDLE\0\u{1}DUPLICATE_NAME\0") } -nonisolated extension Livekit_TrackSubscribed: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_TrackSubscribed: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TrackSubscribed" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}track_sid\0") @@ -5730,7 +5730,7 @@ nonisolated extension Livekit_TrackSubscribed: SwiftProtobuf.Message, SwiftProto } } -nonisolated extension Livekit_ConnectionSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_ConnectionSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".ConnectionSettings" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}auto_subscribe\0\u{3}adaptive_stream\0\u{3}subscriber_allow_pause\0\u{3}disable_ice_lite\0\u{3}auto_subscribe_data_track\0") @@ -5784,7 +5784,7 @@ nonisolated extension Livekit_ConnectionSettings: SwiftProtobuf.Message, SwiftPr } } -nonisolated extension Livekit_JoinRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_JoinRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".JoinRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}client_info\0\u{3}connection_settings\0\u{1}metadata\0\u{3}participant_attributes\0\u{3}add_track_requests\0\u{3}publisher_offer\0\u{1}reconnect\0\u{3}reconnect_reason\0\u{3}participant_sid\0\u{3}sync_state\0") @@ -5917,7 +5917,7 @@ nonisolated extension Livekit_JoinRequest: SwiftProtobuf.Message, SwiftProtobuf. } } -nonisolated extension Livekit_WrappedJoinRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_WrappedJoinRequest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".WrappedJoinRequest" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}compression\0\u{3}join_request\0") @@ -5952,11 +5952,11 @@ nonisolated extension Livekit_WrappedJoinRequest: SwiftProtobuf.Message, SwiftPr } } -nonisolated extension Livekit_WrappedJoinRequest.Compression: SwiftProtobuf._ProtoNameProviding { +extension Livekit_WrappedJoinRequest.Compression: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0NONE\0\u{1}GZIP\0") } -nonisolated extension Livekit_MediaSectionsRequirement: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension Livekit_MediaSectionsRequirement: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".MediaSectionsRequirement" static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}num_audios\0\u{3}num_videos\0") From 4a470f167b4c749491fe54a894da4404b49f86e3 Mon Sep 17 00:00:00 2001 From: Ryan Gaus Date: Fri, 29 May 2026 09:42:44 -0400 Subject: [PATCH 7/7] refactor: combine two performRpc method signatures into one with defaults --- .../Participant/LocalParticipant+RPC.swift | 41 +++---------------- Tests/LiveKitObjCTests/RpcObjCTests.m | 1 + 2 files changed, 6 insertions(+), 36 deletions(-) diff --git a/Sources/LiveKit/Participant/LocalParticipant+RPC.swift b/Sources/LiveKit/Participant/LocalParticipant+RPC.swift index 6ec4c203e..32d13dfc2 100644 --- a/Sources/LiveKit/Participant/LocalParticipant+RPC.swift +++ b/Sources/LiveKit/Participant/LocalParticipant+RPC.swift @@ -26,39 +26,6 @@ public extension LocalParticipant { /// 15 KB payload size limit (otherwise rejected with `REQUEST_PAYLOAD_TOO_LARGE`). /// /// ObjC: auto-generated as - /// `performRpcWithDestinationIdentity:method:payload:responseTimeout:completionHandler:`. - /// - /// - Parameters: - /// - destinationIdentity: The identity of the destination participant - /// - method: The method name to call - /// - payload: The payload to pass to the method - /// - responseTimeout: Timeout for receiving a response after the initial connection (in seconds). - /// If a value less than `maxRoundTripLatency + 1` is provided, it will be automatically - /// clamped to that floor to ensure sufficient time for round-trip latency buffering. - /// Default: 15s. - /// - Returns: The response payload - /// - Throws: RpcError on failure. Details in RpcError.message - /// - SeeAlso: ``performRpc(destinationIdentity:method:payload:responseTimeout:maxRoundTripLatency:)`` - /// for an overload that lets callers customize the ack-watchdog deadline. - func performRpc(destinationIdentity: Identity, - method: String, - payload: String, - responseTimeout: TimeInterval = 15) async throws -> String - { - try await requireRoom().rpcClient.performRpc(destinationIdentity: destinationIdentity, - method: method, - payload: payload, - responseTimeout: responseTimeout) - } - - /// Initiate an RPC call to a remote participant, customizing the ack-watchdog deadline. - /// - /// Behaves identically to ``performRpc(destinationIdentity:method:payload:responseTimeout:)`` - /// but exposes `maxRoundTripLatency`, the upper bound on round-trip latency before the call - /// is rejected with `RpcError.BuiltInError.connectionTimeout`. Increase this on high-latency - /// links where the default 7s ack budget is too tight. - /// - /// ObjC: auto-generated as /// `performRpcWithDestinationIdentity:method:payload:responseTimeout:maxRoundTripLatency:completionHandler:`. /// /// - Parameters: @@ -68,16 +35,18 @@ public extension LocalParticipant { /// - responseTimeout: Timeout for receiving a response after the initial connection (in seconds). /// If a value less than `maxRoundTripLatency + 1` is provided, it will be automatically /// clamped to that floor to ensure sufficient time for round-trip latency buffering. + /// Default: 15s. /// - maxRoundTripLatency: Upper bound on round-trip latency to the destination, in seconds. /// If no ack arrives within this window the call is rejected with - /// `RpcError.BuiltInError.connectionTimeout`. + /// `RpcError.BuiltInError.connectionTimeout`. Increase this on high-latency links where + /// the default is too tight. Default: 7s. /// - Returns: The response payload /// - Throws: RpcError on failure. Details in RpcError.message func performRpc(destinationIdentity: Identity, method: String, payload: String, - responseTimeout: TimeInterval, - maxRoundTripLatency: TimeInterval) async throws -> String + responseTimeout: TimeInterval = 15, + maxRoundTripLatency: TimeInterval = 7) async throws -> String { try await requireRoom().rpcClient.performRpc(destinationIdentity: destinationIdentity, method: method, diff --git a/Tests/LiveKitObjCTests/RpcObjCTests.m b/Tests/LiveKitObjCTests/RpcObjCTests.m index 480a91277..0e549c3ad 100644 --- a/Tests/LiveKitObjCTests/RpcObjCTests.m +++ b/Tests/LiveKitObjCTests/RpcObjCTests.m @@ -94,6 +94,7 @@ - (void)testRegisterAndCallRpc { method:@"greet" payload:@"World" responseTimeout:15.0 + maxRoundTripLatency:7.0 completionHandler:^(NSString *response, NSError *err) { XCTAssertNil(err); rpcResponse = response;