From 1439b4ec6ab0837ccb2b5f6b0c6f4fd2464a3349 Mon Sep 17 00:00:00 2001 From: David Chen Date: Wed, 22 Apr 2026 10:56:56 -0700 Subject: [PATCH 1/3] Add SDK capabilities to ClientInfo (#1505) * add capabilities * generated protobuf * update to CAP_UNKNOWN * generated protobuf --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- livekit/livekit_models.pb.go | 342 ++++++++++++++++++++------------- protobufs/livekit_models.proto | 12 ++ 2 files changed, 217 insertions(+), 137 deletions(-) diff --git a/livekit/livekit_models.pb.go b/livekit/livekit_models.pb.go index 1fc255d89..d9cb42bc1 100644 --- a/livekit/livekit_models.pb.go +++ b/livekit/livekit_models.pb.go @@ -1322,6 +1322,56 @@ func (ClientInfo_SDK) EnumDescriptor() ([]byte, []int) { return file_livekit_models_proto_rawDescGZIP(), []int{31, 0} } +// Optional capabilities advertised by the client at connect time. The SFU +// 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). +type ClientInfo_Capability int32 + +const ( + ClientInfo_CAP_UNUSED ClientInfo_Capability = 0 + ClientInfo_CAP_PACKET_TRAILER ClientInfo_Capability = 1 +) + +// Enum value maps for ClientInfo_Capability. +var ( + ClientInfo_Capability_name = map[int32]string{ + 0: "CAP_UNUSED", + 1: "CAP_PACKET_TRAILER", + } + ClientInfo_Capability_value = map[string]int32{ + "CAP_UNUSED": 0, + "CAP_PACKET_TRAILER": 1, + } +) + +func (x ClientInfo_Capability) Enum() *ClientInfo_Capability { + p := new(ClientInfo_Capability) + *p = x + return p +} + +func (x ClientInfo_Capability) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (ClientInfo_Capability) Descriptor() protoreflect.EnumDescriptor { + return file_livekit_models_proto_enumTypes[23].Descriptor() +} + +func (ClientInfo_Capability) Type() protoreflect.EnumType { + return &file_livekit_models_proto_enumTypes[23] +} + +func (x ClientInfo_Capability) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use ClientInfo_Capability.Descriptor instead. +func (ClientInfo_Capability) EnumDescriptor() ([]byte, []int) { + return file_livekit_models_proto_rawDescGZIP(), []int{31, 1} +} + // enum for operation types (specific to TextHeader) type DataStream_OperationType int32 @@ -1359,11 +1409,11 @@ func (x DataStream_OperationType) String() string { } func (DataStream_OperationType) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[23].Descriptor() + return file_livekit_models_proto_enumTypes[24].Descriptor() } func (DataStream_OperationType) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[23] + return &file_livekit_models_proto_enumTypes[24] } func (x DataStream_OperationType) Number() protoreflect.EnumNumber { @@ -4276,8 +4326,11 @@ type ClientInfo struct { OtherSdks string `protobuf:"bytes,11,opt,name=other_sdks,json=otherSdks,proto3" json:"other_sdks,omitempty"` // client protocol version ClientProtocol int32 `protobuf:"varint,12,opt,name=client_protocol,json=clientProtocol,proto3" json:"client_protocol,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // capabilities the client advertises. Populated automatically by each SDK; + // not a user-configurable setting. + Capabilities []ClientInfo_Capability `protobuf:"varint,13,rep,packed,name=capabilities,proto3,enum=livekit.ClientInfo_Capability" json:"capabilities,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } func (x *ClientInfo) Reset() { @@ -4394,6 +4447,13 @@ func (x *ClientInfo) GetClientProtocol() int32 { return 0 } +func (x *ClientInfo) GetCapabilities() []ClientInfo_Capability { + if x != nil { + return x.Capabilities + } + return nil +} + // server provided client configuration type ClientConfiguration struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -6425,7 +6485,7 @@ const file_livekit_models_proto_rawDesc = "" + "\x0eagent_protocol\x18\a \x01(\x05R\ragentProtocol\"\"\n" + "\aEdition\x12\f\n" + "\bStandard\x10\x00\x12\t\n" + - "\x05Cloud\x10\x01\"\xb4\x04\n" + + "\x05Cloud\x10\x01\"\xae\x05\n" + "\n" + "ClientInfo\x12)\n" + "\x03sdk\x18\x01 \x01(\x0e2\x17.livekit.ClientInfo.SDKR\x03sdk\x12\x18\n" + @@ -6442,7 +6502,8 @@ const file_livekit_models_proto_rawDesc = "" + " \x01(\tR\anetwork\x12\x1d\n" + "\n" + "other_sdks\x18\v \x01(\tR\totherSdks\x12'\n" + - "\x0fclient_protocol\x18\f \x01(\x05R\x0eclientProtocol\"\xb3\x01\n" + + "\x0fclient_protocol\x18\f \x01(\x05R\x0eclientProtocol\x12B\n" + + "\fcapabilities\x18\r \x03(\x0e2\x1e.livekit.ClientInfo.CapabilityR\fcapabilities\"\xb3\x01\n" + "\x03SDK\x12\v\n" + "\aUNKNOWN\x10\x00\x12\x06\n" + "\x02JS\x10\x01\x12\t\n" + @@ -6461,7 +6522,12 @@ const file_livekit_models_proto_rawDesc = "" + "\x04NODE\x10\f\x12\n" + "\n" + "\x06UNREAL\x10\r\x12\t\n" + - "\x05ESP32\x10\x0e\"\xc9\x02\n" + + "\x05ESP32\x10\x0e\"4\n" + + "\n" + + "Capability\x12\x0e\n" + + "\n" + + "CAP_UNUSED\x10\x00\x12\x16\n" + + "\x12CAP_PACKET_TRAILER\x10\x01\"\xc9\x02\n" + "\x13ClientConfiguration\x121\n" + "\x05video\x18\x01 \x01(\v2\x1b.livekit.VideoConfigurationR\x05video\x123\n" + "\x06screen\x18\x02 \x01(\v2\x1b.livekit.VideoConfigurationR\x06screen\x12I\n" + @@ -6766,7 +6832,7 @@ func file_livekit_models_proto_rawDescGZIP() []byte { return file_livekit_models_proto_rawDescData } -var file_livekit_models_proto_enumTypes = make([]protoimpl.EnumInfo, 24) +var file_livekit_models_proto_enumTypes = make([]protoimpl.EnumInfo, 25) var file_livekit_models_proto_msgTypes = make([]protoimpl.MessageInfo, 55) var file_livekit_models_proto_goTypes = []any{ (AudioCodec)(0), // 0: livekit.AudioCodec @@ -6792,85 +6858,86 @@ var file_livekit_models_proto_goTypes = []any{ (DataPacket_Kind)(0), // 20: livekit.DataPacket.Kind (ServerInfo_Edition)(0), // 21: livekit.ServerInfo.Edition (ClientInfo_SDK)(0), // 22: livekit.ClientInfo.SDK - (DataStream_OperationType)(0), // 23: livekit.DataStream.OperationType - (*Pagination)(nil), // 24: livekit.Pagination - (*TokenPagination)(nil), // 25: livekit.TokenPagination - (*ListUpdate)(nil), // 26: livekit.ListUpdate - (*Room)(nil), // 27: livekit.Room - (*Codec)(nil), // 28: livekit.Codec - (*PlayoutDelay)(nil), // 29: livekit.PlayoutDelay - (*ParticipantPermission)(nil), // 30: livekit.ParticipantPermission - (*ParticipantInfo)(nil), // 31: livekit.ParticipantInfo - (*Encryption)(nil), // 32: livekit.Encryption - (*SimulcastCodecInfo)(nil), // 33: livekit.SimulcastCodecInfo - (*TrackInfo)(nil), // 34: livekit.TrackInfo - (*DataTrackInfo)(nil), // 35: livekit.DataTrackInfo - (*DataTrackExtensionParticipantSid)(nil), // 36: livekit.DataTrackExtensionParticipantSid - (*DataTrackSubscriptionOptions)(nil), // 37: livekit.DataTrackSubscriptionOptions - (*VideoLayer)(nil), // 38: livekit.VideoLayer - (*DataPacket)(nil), // 39: livekit.DataPacket - (*EncryptedPacket)(nil), // 40: livekit.EncryptedPacket - (*EncryptedPacketPayload)(nil), // 41: livekit.EncryptedPacketPayload - (*ActiveSpeakerUpdate)(nil), // 42: livekit.ActiveSpeakerUpdate - (*SpeakerInfo)(nil), // 43: livekit.SpeakerInfo - (*UserPacket)(nil), // 44: livekit.UserPacket - (*SipDTMF)(nil), // 45: livekit.SipDTMF - (*Transcription)(nil), // 46: livekit.Transcription - (*TranscriptionSegment)(nil), // 47: livekit.TranscriptionSegment - (*ChatMessage)(nil), // 48: livekit.ChatMessage - (*RpcRequest)(nil), // 49: livekit.RpcRequest - (*RpcAck)(nil), // 50: livekit.RpcAck - (*RpcResponse)(nil), // 51: livekit.RpcResponse - (*RpcError)(nil), // 52: livekit.RpcError - (*ParticipantTracks)(nil), // 53: livekit.ParticipantTracks - (*ServerInfo)(nil), // 54: livekit.ServerInfo - (*ClientInfo)(nil), // 55: livekit.ClientInfo - (*ClientConfiguration)(nil), // 56: livekit.ClientConfiguration - (*VideoConfiguration)(nil), // 57: livekit.VideoConfiguration - (*DisabledCodecs)(nil), // 58: livekit.DisabledCodecs - (*RTPDrift)(nil), // 59: livekit.RTPDrift - (*RTPStats)(nil), // 60: livekit.RTPStats - (*RTCPSenderReportState)(nil), // 61: livekit.RTCPSenderReportState - (*RTPForwarderState)(nil), // 62: livekit.RTPForwarderState - (*RTPMungerState)(nil), // 63: livekit.RTPMungerState - (*VP8MungerState)(nil), // 64: livekit.VP8MungerState - (*TimedVersion)(nil), // 65: livekit.TimedVersion - (*DataStream)(nil), // 66: livekit.DataStream - (*FilterParams)(nil), // 67: livekit.FilterParams - (*WebhookConfig)(nil), // 68: livekit.WebhookConfig - (*SubscribedAudioCodec)(nil), // 69: livekit.SubscribedAudioCodec - nil, // 70: livekit.ParticipantInfo.AttributesEntry - nil, // 71: livekit.RTPStats.GapHistogramEntry - (*DataStream_TextHeader)(nil), // 72: livekit.DataStream.TextHeader - (*DataStream_ByteHeader)(nil), // 73: livekit.DataStream.ByteHeader - (*DataStream_Header)(nil), // 74: livekit.DataStream.Header - (*DataStream_Chunk)(nil), // 75: livekit.DataStream.Chunk - (*DataStream_Trailer)(nil), // 76: livekit.DataStream.Trailer - nil, // 77: livekit.DataStream.Header.AttributesEntry - nil, // 78: livekit.DataStream.Trailer.AttributesEntry - (*MetricsBatch)(nil), // 79: livekit.MetricsBatch - (*timestamppb.Timestamp)(nil), // 80: google.protobuf.Timestamp + (ClientInfo_Capability)(0), // 23: livekit.ClientInfo.Capability + (DataStream_OperationType)(0), // 24: livekit.DataStream.OperationType + (*Pagination)(nil), // 25: livekit.Pagination + (*TokenPagination)(nil), // 26: livekit.TokenPagination + (*ListUpdate)(nil), // 27: livekit.ListUpdate + (*Room)(nil), // 28: livekit.Room + (*Codec)(nil), // 29: livekit.Codec + (*PlayoutDelay)(nil), // 30: livekit.PlayoutDelay + (*ParticipantPermission)(nil), // 31: livekit.ParticipantPermission + (*ParticipantInfo)(nil), // 32: livekit.ParticipantInfo + (*Encryption)(nil), // 33: livekit.Encryption + (*SimulcastCodecInfo)(nil), // 34: livekit.SimulcastCodecInfo + (*TrackInfo)(nil), // 35: livekit.TrackInfo + (*DataTrackInfo)(nil), // 36: livekit.DataTrackInfo + (*DataTrackExtensionParticipantSid)(nil), // 37: livekit.DataTrackExtensionParticipantSid + (*DataTrackSubscriptionOptions)(nil), // 38: livekit.DataTrackSubscriptionOptions + (*VideoLayer)(nil), // 39: livekit.VideoLayer + (*DataPacket)(nil), // 40: livekit.DataPacket + (*EncryptedPacket)(nil), // 41: livekit.EncryptedPacket + (*EncryptedPacketPayload)(nil), // 42: livekit.EncryptedPacketPayload + (*ActiveSpeakerUpdate)(nil), // 43: livekit.ActiveSpeakerUpdate + (*SpeakerInfo)(nil), // 44: livekit.SpeakerInfo + (*UserPacket)(nil), // 45: livekit.UserPacket + (*SipDTMF)(nil), // 46: livekit.SipDTMF + (*Transcription)(nil), // 47: livekit.Transcription + (*TranscriptionSegment)(nil), // 48: livekit.TranscriptionSegment + (*ChatMessage)(nil), // 49: livekit.ChatMessage + (*RpcRequest)(nil), // 50: livekit.RpcRequest + (*RpcAck)(nil), // 51: livekit.RpcAck + (*RpcResponse)(nil), // 52: livekit.RpcResponse + (*RpcError)(nil), // 53: livekit.RpcError + (*ParticipantTracks)(nil), // 54: livekit.ParticipantTracks + (*ServerInfo)(nil), // 55: livekit.ServerInfo + (*ClientInfo)(nil), // 56: livekit.ClientInfo + (*ClientConfiguration)(nil), // 57: livekit.ClientConfiguration + (*VideoConfiguration)(nil), // 58: livekit.VideoConfiguration + (*DisabledCodecs)(nil), // 59: livekit.DisabledCodecs + (*RTPDrift)(nil), // 60: livekit.RTPDrift + (*RTPStats)(nil), // 61: livekit.RTPStats + (*RTCPSenderReportState)(nil), // 62: livekit.RTCPSenderReportState + (*RTPForwarderState)(nil), // 63: livekit.RTPForwarderState + (*RTPMungerState)(nil), // 64: livekit.RTPMungerState + (*VP8MungerState)(nil), // 65: livekit.VP8MungerState + (*TimedVersion)(nil), // 66: livekit.TimedVersion + (*DataStream)(nil), // 67: livekit.DataStream + (*FilterParams)(nil), // 68: livekit.FilterParams + (*WebhookConfig)(nil), // 69: livekit.WebhookConfig + (*SubscribedAudioCodec)(nil), // 70: livekit.SubscribedAudioCodec + nil, // 71: livekit.ParticipantInfo.AttributesEntry + nil, // 72: livekit.RTPStats.GapHistogramEntry + (*DataStream_TextHeader)(nil), // 73: livekit.DataStream.TextHeader + (*DataStream_ByteHeader)(nil), // 74: livekit.DataStream.ByteHeader + (*DataStream_Header)(nil), // 75: livekit.DataStream.Header + (*DataStream_Chunk)(nil), // 76: livekit.DataStream.Chunk + (*DataStream_Trailer)(nil), // 77: livekit.DataStream.Trailer + nil, // 78: livekit.DataStream.Header.AttributesEntry + nil, // 79: livekit.DataStream.Trailer.AttributesEntry + (*MetricsBatch)(nil), // 80: livekit.MetricsBatch + (*timestamppb.Timestamp)(nil), // 81: google.protobuf.Timestamp } var file_livekit_models_proto_depIdxs = []int32{ - 28, // 0: livekit.Room.enabled_codecs:type_name -> livekit.Codec - 65, // 1: livekit.Room.version:type_name -> livekit.TimedVersion + 29, // 0: livekit.Room.enabled_codecs:type_name -> livekit.Codec + 66, // 1: livekit.Room.version:type_name -> livekit.TimedVersion 5, // 2: livekit.ParticipantPermission.can_publish_sources:type_name -> livekit.TrackSource 15, // 3: livekit.ParticipantInfo.state:type_name -> livekit.ParticipantInfo.State - 34, // 4: livekit.ParticipantInfo.tracks:type_name -> livekit.TrackInfo - 30, // 5: livekit.ParticipantInfo.permission:type_name -> livekit.ParticipantPermission + 35, // 4: livekit.ParticipantInfo.tracks:type_name -> livekit.TrackInfo + 31, // 5: livekit.ParticipantInfo.permission:type_name -> livekit.ParticipantPermission 16, // 6: livekit.ParticipantInfo.kind:type_name -> livekit.ParticipantInfo.Kind - 70, // 7: livekit.ParticipantInfo.attributes:type_name -> livekit.ParticipantInfo.AttributesEntry + 71, // 7: livekit.ParticipantInfo.attributes:type_name -> livekit.ParticipantInfo.AttributesEntry 10, // 8: livekit.ParticipantInfo.disconnect_reason:type_name -> livekit.DisconnectReason 17, // 9: livekit.ParticipantInfo.kind_details:type_name -> livekit.ParticipantInfo.KindDetail - 35, // 10: livekit.ParticipantInfo.data_tracks:type_name -> livekit.DataTrackInfo - 38, // 11: livekit.SimulcastCodecInfo.layers:type_name -> livekit.VideoLayer + 36, // 10: livekit.ParticipantInfo.data_tracks:type_name -> livekit.DataTrackInfo + 39, // 11: livekit.SimulcastCodecInfo.layers:type_name -> livekit.VideoLayer 19, // 12: livekit.SimulcastCodecInfo.video_layer_mode:type_name -> livekit.VideoLayer.Mode 4, // 13: livekit.TrackInfo.type:type_name -> livekit.TrackType 5, // 14: livekit.TrackInfo.source:type_name -> livekit.TrackSource - 38, // 15: livekit.TrackInfo.layers:type_name -> livekit.VideoLayer - 33, // 16: livekit.TrackInfo.codecs:type_name -> livekit.SimulcastCodecInfo + 39, // 15: livekit.TrackInfo.layers:type_name -> livekit.VideoLayer + 34, // 16: livekit.TrackInfo.codecs:type_name -> livekit.SimulcastCodecInfo 18, // 17: livekit.TrackInfo.encryption:type_name -> livekit.Encryption.Type - 65, // 18: livekit.TrackInfo.version:type_name -> livekit.TimedVersion + 66, // 18: livekit.TrackInfo.version:type_name -> livekit.TimedVersion 13, // 19: livekit.TrackInfo.audio_features:type_name -> livekit.AudioTrackFeature 3, // 20: livekit.TrackInfo.backup_codec_policy:type_name -> livekit.BackupCodecPolicy 14, // 21: livekit.TrackInfo.packet_trailer_features:type_name -> livekit.PacketTrailerFeature @@ -6878,69 +6945,70 @@ var file_livekit_models_proto_depIdxs = []int32{ 6, // 23: livekit.DataTrackExtensionParticipantSid.id:type_name -> livekit.DataTrackExtensionID 7, // 24: livekit.VideoLayer.quality:type_name -> livekit.VideoQuality 20, // 25: livekit.DataPacket.kind:type_name -> livekit.DataPacket.Kind - 44, // 26: livekit.DataPacket.user:type_name -> livekit.UserPacket - 42, // 27: livekit.DataPacket.speaker:type_name -> livekit.ActiveSpeakerUpdate - 45, // 28: livekit.DataPacket.sip_dtmf:type_name -> livekit.SipDTMF - 46, // 29: livekit.DataPacket.transcription:type_name -> livekit.Transcription - 79, // 30: livekit.DataPacket.metrics:type_name -> livekit.MetricsBatch - 48, // 31: livekit.DataPacket.chat_message:type_name -> livekit.ChatMessage - 49, // 32: livekit.DataPacket.rpc_request:type_name -> livekit.RpcRequest - 50, // 33: livekit.DataPacket.rpc_ack:type_name -> livekit.RpcAck - 51, // 34: livekit.DataPacket.rpc_response:type_name -> livekit.RpcResponse - 74, // 35: livekit.DataPacket.stream_header:type_name -> livekit.DataStream.Header - 75, // 36: livekit.DataPacket.stream_chunk:type_name -> livekit.DataStream.Chunk - 76, // 37: livekit.DataPacket.stream_trailer:type_name -> livekit.DataStream.Trailer - 40, // 38: livekit.DataPacket.encrypted_packet:type_name -> livekit.EncryptedPacket + 45, // 26: livekit.DataPacket.user:type_name -> livekit.UserPacket + 43, // 27: livekit.DataPacket.speaker:type_name -> livekit.ActiveSpeakerUpdate + 46, // 28: livekit.DataPacket.sip_dtmf:type_name -> livekit.SipDTMF + 47, // 29: livekit.DataPacket.transcription:type_name -> livekit.Transcription + 80, // 30: livekit.DataPacket.metrics:type_name -> livekit.MetricsBatch + 49, // 31: livekit.DataPacket.chat_message:type_name -> livekit.ChatMessage + 50, // 32: livekit.DataPacket.rpc_request:type_name -> livekit.RpcRequest + 51, // 33: livekit.DataPacket.rpc_ack:type_name -> livekit.RpcAck + 52, // 34: livekit.DataPacket.rpc_response:type_name -> livekit.RpcResponse + 75, // 35: livekit.DataPacket.stream_header:type_name -> livekit.DataStream.Header + 76, // 36: livekit.DataPacket.stream_chunk:type_name -> livekit.DataStream.Chunk + 77, // 37: livekit.DataPacket.stream_trailer:type_name -> livekit.DataStream.Trailer + 41, // 38: livekit.DataPacket.encrypted_packet:type_name -> livekit.EncryptedPacket 18, // 39: livekit.EncryptedPacket.encryption_type:type_name -> livekit.Encryption.Type - 44, // 40: livekit.EncryptedPacketPayload.user:type_name -> livekit.UserPacket - 48, // 41: livekit.EncryptedPacketPayload.chat_message:type_name -> livekit.ChatMessage - 49, // 42: livekit.EncryptedPacketPayload.rpc_request:type_name -> livekit.RpcRequest - 50, // 43: livekit.EncryptedPacketPayload.rpc_ack:type_name -> livekit.RpcAck - 51, // 44: livekit.EncryptedPacketPayload.rpc_response:type_name -> livekit.RpcResponse - 74, // 45: livekit.EncryptedPacketPayload.stream_header:type_name -> livekit.DataStream.Header - 75, // 46: livekit.EncryptedPacketPayload.stream_chunk:type_name -> livekit.DataStream.Chunk - 76, // 47: livekit.EncryptedPacketPayload.stream_trailer:type_name -> livekit.DataStream.Trailer - 43, // 48: livekit.ActiveSpeakerUpdate.speakers:type_name -> livekit.SpeakerInfo - 47, // 49: livekit.Transcription.segments:type_name -> livekit.TranscriptionSegment - 52, // 50: livekit.RpcResponse.error:type_name -> livekit.RpcError + 45, // 40: livekit.EncryptedPacketPayload.user:type_name -> livekit.UserPacket + 49, // 41: livekit.EncryptedPacketPayload.chat_message:type_name -> livekit.ChatMessage + 50, // 42: livekit.EncryptedPacketPayload.rpc_request:type_name -> livekit.RpcRequest + 51, // 43: livekit.EncryptedPacketPayload.rpc_ack:type_name -> livekit.RpcAck + 52, // 44: livekit.EncryptedPacketPayload.rpc_response:type_name -> livekit.RpcResponse + 75, // 45: livekit.EncryptedPacketPayload.stream_header:type_name -> livekit.DataStream.Header + 76, // 46: livekit.EncryptedPacketPayload.stream_chunk:type_name -> livekit.DataStream.Chunk + 77, // 47: livekit.EncryptedPacketPayload.stream_trailer:type_name -> livekit.DataStream.Trailer + 44, // 48: livekit.ActiveSpeakerUpdate.speakers:type_name -> livekit.SpeakerInfo + 48, // 49: livekit.Transcription.segments:type_name -> livekit.TranscriptionSegment + 53, // 50: livekit.RpcResponse.error:type_name -> livekit.RpcError 21, // 51: livekit.ServerInfo.edition:type_name -> livekit.ServerInfo.Edition 22, // 52: livekit.ClientInfo.sdk:type_name -> livekit.ClientInfo.SDK - 57, // 53: livekit.ClientConfiguration.video:type_name -> livekit.VideoConfiguration - 57, // 54: livekit.ClientConfiguration.screen:type_name -> livekit.VideoConfiguration - 9, // 55: livekit.ClientConfiguration.resume_connection:type_name -> livekit.ClientConfigSetting - 58, // 56: livekit.ClientConfiguration.disabled_codecs:type_name -> livekit.DisabledCodecs - 9, // 57: livekit.ClientConfiguration.force_relay:type_name -> livekit.ClientConfigSetting - 9, // 58: livekit.VideoConfiguration.hardware_encoder:type_name -> livekit.ClientConfigSetting - 28, // 59: livekit.DisabledCodecs.codecs:type_name -> livekit.Codec - 28, // 60: livekit.DisabledCodecs.publish:type_name -> livekit.Codec - 80, // 61: livekit.RTPDrift.start_time:type_name -> google.protobuf.Timestamp - 80, // 62: livekit.RTPDrift.end_time:type_name -> google.protobuf.Timestamp - 80, // 63: livekit.RTPStats.start_time:type_name -> google.protobuf.Timestamp - 80, // 64: livekit.RTPStats.end_time:type_name -> google.protobuf.Timestamp - 71, // 65: livekit.RTPStats.gap_histogram:type_name -> livekit.RTPStats.GapHistogramEntry - 80, // 66: livekit.RTPStats.last_pli:type_name -> google.protobuf.Timestamp - 80, // 67: livekit.RTPStats.last_fir:type_name -> google.protobuf.Timestamp - 80, // 68: livekit.RTPStats.last_key_frame:type_name -> google.protobuf.Timestamp - 80, // 69: livekit.RTPStats.last_layer_lock_pli:type_name -> google.protobuf.Timestamp - 59, // 70: livekit.RTPStats.packet_drift:type_name -> livekit.RTPDrift - 59, // 71: livekit.RTPStats.ntp_report_drift:type_name -> livekit.RTPDrift - 59, // 72: livekit.RTPStats.rebased_report_drift:type_name -> livekit.RTPDrift - 59, // 73: livekit.RTPStats.received_report_drift:type_name -> livekit.RTPDrift - 63, // 74: livekit.RTPForwarderState.rtp_munger:type_name -> livekit.RTPMungerState - 64, // 75: livekit.RTPForwarderState.vp8_munger:type_name -> livekit.VP8MungerState - 61, // 76: livekit.RTPForwarderState.sender_report_state:type_name -> livekit.RTCPSenderReportState - 67, // 77: livekit.WebhookConfig.filter_params:type_name -> livekit.FilterParams - 23, // 78: livekit.DataStream.TextHeader.operation_type:type_name -> livekit.DataStream.OperationType - 18, // 79: livekit.DataStream.Header.encryption_type:type_name -> livekit.Encryption.Type - 77, // 80: livekit.DataStream.Header.attributes:type_name -> livekit.DataStream.Header.AttributesEntry - 72, // 81: livekit.DataStream.Header.text_header:type_name -> livekit.DataStream.TextHeader - 73, // 82: livekit.DataStream.Header.byte_header:type_name -> livekit.DataStream.ByteHeader - 78, // 83: livekit.DataStream.Trailer.attributes:type_name -> livekit.DataStream.Trailer.AttributesEntry - 84, // [84:84] is the sub-list for method output_type - 84, // [84:84] is the sub-list for method input_type - 84, // [84:84] is the sub-list for extension type_name - 84, // [84:84] is the sub-list for extension extendee - 0, // [0:84] is the sub-list for field type_name + 23, // 53: livekit.ClientInfo.capabilities:type_name -> livekit.ClientInfo.Capability + 58, // 54: livekit.ClientConfiguration.video:type_name -> livekit.VideoConfiguration + 58, // 55: livekit.ClientConfiguration.screen:type_name -> livekit.VideoConfiguration + 9, // 56: livekit.ClientConfiguration.resume_connection:type_name -> livekit.ClientConfigSetting + 59, // 57: livekit.ClientConfiguration.disabled_codecs:type_name -> livekit.DisabledCodecs + 9, // 58: livekit.ClientConfiguration.force_relay:type_name -> livekit.ClientConfigSetting + 9, // 59: livekit.VideoConfiguration.hardware_encoder:type_name -> livekit.ClientConfigSetting + 29, // 60: livekit.DisabledCodecs.codecs:type_name -> livekit.Codec + 29, // 61: livekit.DisabledCodecs.publish:type_name -> livekit.Codec + 81, // 62: livekit.RTPDrift.start_time:type_name -> google.protobuf.Timestamp + 81, // 63: livekit.RTPDrift.end_time:type_name -> google.protobuf.Timestamp + 81, // 64: livekit.RTPStats.start_time:type_name -> google.protobuf.Timestamp + 81, // 65: livekit.RTPStats.end_time:type_name -> google.protobuf.Timestamp + 72, // 66: livekit.RTPStats.gap_histogram:type_name -> livekit.RTPStats.GapHistogramEntry + 81, // 67: livekit.RTPStats.last_pli:type_name -> google.protobuf.Timestamp + 81, // 68: livekit.RTPStats.last_fir:type_name -> google.protobuf.Timestamp + 81, // 69: livekit.RTPStats.last_key_frame:type_name -> google.protobuf.Timestamp + 81, // 70: livekit.RTPStats.last_layer_lock_pli:type_name -> google.protobuf.Timestamp + 60, // 71: livekit.RTPStats.packet_drift:type_name -> livekit.RTPDrift + 60, // 72: livekit.RTPStats.ntp_report_drift:type_name -> livekit.RTPDrift + 60, // 73: livekit.RTPStats.rebased_report_drift:type_name -> livekit.RTPDrift + 60, // 74: livekit.RTPStats.received_report_drift:type_name -> livekit.RTPDrift + 64, // 75: livekit.RTPForwarderState.rtp_munger:type_name -> livekit.RTPMungerState + 65, // 76: livekit.RTPForwarderState.vp8_munger:type_name -> livekit.VP8MungerState + 62, // 77: livekit.RTPForwarderState.sender_report_state:type_name -> livekit.RTCPSenderReportState + 68, // 78: livekit.WebhookConfig.filter_params:type_name -> livekit.FilterParams + 24, // 79: livekit.DataStream.TextHeader.operation_type:type_name -> livekit.DataStream.OperationType + 18, // 80: livekit.DataStream.Header.encryption_type:type_name -> livekit.Encryption.Type + 78, // 81: livekit.DataStream.Header.attributes:type_name -> livekit.DataStream.Header.AttributesEntry + 73, // 82: livekit.DataStream.Header.text_header:type_name -> livekit.DataStream.TextHeader + 74, // 83: livekit.DataStream.Header.byte_header:type_name -> livekit.DataStream.ByteHeader + 79, // 84: livekit.DataStream.Trailer.attributes:type_name -> livekit.DataStream.Trailer.AttributesEntry + 85, // [85:85] is the sub-list for method output_type + 85, // [85:85] is the sub-list for method input_type + 85, // [85:85] is the sub-list for extension type_name + 85, // [85:85] is the sub-list for extension extendee + 0, // [0:85] is the sub-list for field type_name } func init() { file_livekit_models_proto_init() } @@ -6995,7 +7063,7 @@ func file_livekit_models_proto_init() { File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_livekit_models_proto_rawDesc), len(file_livekit_models_proto_rawDesc)), - NumEnums: 24, + NumEnums: 25, NumMessages: 55, NumExtensions: 0, NumServices: 0, diff --git a/protobufs/livekit_models.proto b/protobufs/livekit_models.proto index 83fc31a30..6b98a008d 100644 --- a/protobufs/livekit_models.proto +++ b/protobufs/livekit_models.proto @@ -532,6 +532,15 @@ message ClientInfo { ESP32 = 14; } + // Optional capabilities advertised by the client at connect time. The SFU + // 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 { + CAP_UNUSED = 0; + CAP_PACKET_TRAILER = 1; + } + SDK sdk = 1; string version = 2; int32 protocol = 3; @@ -548,6 +557,9 @@ message ClientInfo { string other_sdks = 11; // client protocol version int32 client_protocol = 12; + // capabilities the client advertises. Populated automatically by each SDK; + // not a user-configurable setting. + repeated Capability capabilities = 13; } // server provided client configuration From e9229019f04bacf3f8f958162b125262fa4361a2 Mon Sep 17 00:00:00 2001 From: shishirng Date: Wed, 22 Apr 2026 16:50:54 -0400 Subject: [PATCH 2/3] update room schema (#1512) Signed-off-by: shishir gowda --- observability/roomobs/gen_reporter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/observability/roomobs/gen_reporter.go b/observability/roomobs/gen_reporter.go index d1a1593cf..a9b5f9bd1 100644 --- a/observability/roomobs/gen_reporter.go +++ b/observability/roomobs/gen_reporter.go @@ -6,7 +6,7 @@ import ( "time" ) -const Version_36L6N6G = true +const Version_G1QTVIG = true type KeyResolver interface { Resolve(string) From c6ecd4e818f743111b0297bbebaed94e897f4b93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Monnom?= Date: Wed, 22 Apr 2026 15:35:58 -0700 Subject: [PATCH 3/3] add `code_entrypoint` to ConfirmSourceUpload (#1513) * Update livekit_agent_simulation.proto * generated protobuf --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- livekit/livekit_agent_simulation.pb.go | 17 +- livekit/livekit_agent_simulation.twirp.go | 236 +++++++++++----------- protobufs/livekit_agent_simulation.proto | 1 + 3 files changed, 133 insertions(+), 121 deletions(-) diff --git a/livekit/livekit_agent_simulation.pb.go b/livekit/livekit_agent_simulation.pb.go index 82d6383ff..6b38b18eb 100644 --- a/livekit/livekit_agent_simulation.pb.go +++ b/livekit/livekit_agent_simulation.pb.go @@ -1195,6 +1195,7 @@ type SimulationRun_ConfirmSourceUpload_Request struct { state protoimpl.MessageState `protogen:"open.v1"` ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` SimulationRunId string `protobuf:"bytes,2,opt,name=simulation_run_id,json=simulationRunId,proto3" json:"simulation_run_id,omitempty"` + CodeEntrypoint string `protobuf:"bytes,3,opt,name=code_entrypoint,json=codeEntrypoint,proto3" json:"code_entrypoint,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -1243,6 +1244,13 @@ func (x *SimulationRun_ConfirmSourceUpload_Request) GetSimulationRunId() string return "" } +func (x *SimulationRun_ConfirmSourceUpload_Request) GetCodeEntrypoint() string { + if x != nil { + return x.CodeEntrypoint + } + return "" +} + type SimulationRun_ConfirmSourceUpload_Response struct { state protoimpl.MessageState `protogen:"open.v1"` unknownFields protoimpl.UnknownFields @@ -2724,7 +2732,7 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\vdescription\x18\x01 \x01(\tR\vdescription\x12\x1e\n" + "\n" + "suggestion\x18\x02 \x01(\tR\n" + - "suggestion\"\x9b\x12\n" + + "suggestion\"\xc5\x12\n" + "\rSimulationRun\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x1d\n" + "\n" + @@ -2773,12 +2781,13 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\x06source\x1a\x8b\x01\n" + "\bResponse\x12*\n" + "\x11simulation_run_id\x18\x01 \x01(\tR\x0fsimulationRunId\x12S\n" + - "\x16presigned_post_request\x18\x02 \x01(\v2\x1d.livekit.PresignedPostRequestR\x14presignedPostRequest\x1aw\n" + - "\x13ConfirmSourceUpload\x1aT\n" + + "\x16presigned_post_request\x18\x02 \x01(\v2\x1d.livekit.PresignedPostRequestR\x14presignedPostRequest\x1a\xa0\x01\n" + + "\x13ConfirmSourceUpload\x1a}\n" + "\aRequest\x12\x1d\n" + "\n" + "project_id\x18\x01 \x01(\tR\tprojectId\x12*\n" + - "\x11simulation_run_id\x18\x02 \x01(\tR\x0fsimulationRunId\x1a\n" + + "\x11simulation_run_id\x18\x02 \x01(\tR\x0fsimulationRunId\x12'\n" + + "\x0fcode_entrypoint\x18\x03 \x01(\tR\x0ecodeEntrypoint\x1a\n" + "\n" + "\bResponse\x1a\x91\x01\n" + "\x03Get\x1aT\n" + diff --git a/livekit/livekit_agent_simulation.twirp.go b/livekit/livekit_agent_simulation.twirp.go index 8226a9bc1..b9a1ca4a1 100644 --- a/livekit/livekit_agent_simulation.twirp.go +++ b/livekit/livekit_agent_simulation.twirp.go @@ -3865,121 +3865,123 @@ func (s *agentSimulationServer) PathPrefix() string { } var twirpFileDescriptor9 = []byte{ - // 1852 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x59, 0x4f, 0x6f, 0xdb, 0xc8, - 0x15, 0x37, 0xa9, 0x7f, 0xd6, 0x53, 0x24, 0xcb, 0xb3, 0xde, 0x54, 0x66, 0xe1, 0xc4, 0x51, 0x76, - 0xb3, 0x46, 0xb7, 0xab, 0x2c, 0xbc, 0x5b, 0xb4, 0x49, 0xfa, 0x4f, 0xb1, 0x14, 0x5b, 0x59, 0xc7, - 0xab, 0xa5, 0x6c, 0x14, 0x9b, 0x1e, 0x08, 0x5a, 0x9a, 0x28, 0x4c, 0x24, 0x8e, 0xca, 0x19, 0x7a, - 0x93, 0x43, 0x2f, 0x3d, 0x05, 0x2d, 0x7a, 0x28, 0x0a, 0xf4, 0xd2, 0x9e, 0x0a, 0xec, 0xa5, 0xa7, - 0x5e, 0x7a, 0x6a, 0x81, 0xf6, 0x53, 0xf4, 0xd2, 0x6f, 0xd0, 0xaf, 0xd0, 0x4b, 0xc1, 0x99, 0x21, - 0x39, 0x94, 0x48, 0x45, 0x41, 0x92, 0xa2, 0x37, 0xf3, 0xf1, 0x37, 0x6f, 0xde, 0xfb, 0xbd, 0xbf, - 0xb4, 0xe0, 0xca, 0xc4, 0xb9, 0xc0, 0x4f, 0x1d, 0x66, 0xd9, 0x63, 0xec, 0x32, 0x8b, 0x3a, 0x53, - 0x7f, 0x62, 0x33, 0x87, 0xb8, 0xad, 0x99, 0x47, 0x18, 0x41, 0x25, 0xf9, 0xde, 0xb8, 0x3a, 0x26, - 0x64, 0x3c, 0xc1, 0x37, 0xb9, 0xf8, 0xdc, 0x7f, 0x74, 0x93, 0x39, 0x53, 0x4c, 0x99, 0x3d, 0x9d, - 0x09, 0xa4, 0xb1, 0x1d, 0x6a, 0x1a, 0x4e, 0x88, 0x3f, 0x12, 0xfa, 0xe4, 0xab, 0xad, 0xf0, 0xd5, - 0x94, 0x8c, 0xf0, 0x84, 0x4a, 0xe9, 0x35, 0x0e, 0xb9, 0x39, 0x67, 0x00, 0xa6, 0x34, 0xba, 0xbd, - 0xf9, 0xd7, 0x1c, 0x6c, 0x0d, 0x22, 0x93, 0x4c, 0xdf, 0x1d, 0xf8, 0xd3, 0xa9, 0xed, 0x3d, 0x47, - 0x97, 0xa1, 0x38, 0xb3, 0x29, 0xc5, 0xa3, 0x86, 0xb6, 0xab, 0xed, 0x15, 0x4c, 0xf9, 0x14, 0xc8, - 0x1f, 0xd9, 0xce, 0x04, 0x8f, 0x1a, 0xba, 0x90, 0x8b, 0x27, 0xb4, 0x03, 0x30, 0x26, 0x8e, 0x3b, - 0xb6, 0xbe, 0xc2, 0x93, 0x49, 0x23, 0xb7, 0xab, 0xed, 0x95, 0xcd, 0x32, 0x97, 0xfc, 0x04, 0x4f, - 0x26, 0xc1, 0x6b, 0x46, 0x2c, 0x67, 0x3a, 0xf3, 0xc8, 0x05, 0x6e, 0xe4, 0xc5, 0x6b, 0x46, 0x7a, - 0x42, 0x80, 0xee, 0x40, 0xd1, 0xa1, 0xd4, 0xc7, 0xb4, 0x51, 0xd8, 0xcd, 0xed, 0x55, 0xf6, 0xaf, - 0xb7, 0xa4, 0xd1, 0xad, 0x34, 0xe3, 0x5a, 0xbd, 0x00, 0x6b, 0xca, 0x23, 0xe8, 0x0b, 0xb8, 0x34, - 0x7c, 0x6c, 0x33, 0xeb, 0xb1, 0x43, 0x19, 0xf1, 0x9e, 0x37, 0x8a, 0x5c, 0x45, 0x6b, 0xb9, 0x8a, - 0x83, 0xc7, 0x36, 0x3b, 0x12, 0x07, 0xba, 0x2e, 0xf3, 0x9e, 0x9b, 0x95, 0x61, 0x2c, 0x31, 0x1e, - 0x42, 0x7d, 0x1e, 0x80, 0xea, 0x90, 0x7b, 0x8a, 0x9f, 0x73, 0x3a, 0xca, 0x66, 0xf0, 0x27, 0xfa, - 0x18, 0x0a, 0x17, 0xf6, 0xc4, 0xc7, 0x9c, 0x8a, 0xca, 0xbe, 0x11, 0xdd, 0x28, 0x42, 0x13, 0x68, - 0x38, 0x20, 0x2e, 0xc3, 0xcf, 0x98, 0x29, 0x80, 0xb7, 0xf5, 0xef, 0x69, 0x46, 0x0f, 0x0a, 0xdc, - 0x7e, 0xb4, 0x0b, 0x95, 0x11, 0xa6, 0x43, 0xcf, 0x99, 0x05, 0xb6, 0x49, 0xc5, 0xaa, 0x08, 0x5d, - 0x01, 0xa0, 0xfe, 0x78, 0x8c, 0x29, 0x07, 0xe8, 0x1c, 0xa0, 0x48, 0x9a, 0xbf, 0x47, 0x50, 0x4d, - 0x78, 0x87, 0x6a, 0xa0, 0x3b, 0x23, 0xa9, 0x4a, 0x77, 0x78, 0x58, 0x66, 0x1e, 0x79, 0x82, 0x87, - 0xcc, 0x72, 0x46, 0x52, 0x43, 0x59, 0x4a, 0x7a, 0x23, 0xf4, 0x1d, 0x28, 0x52, 0x66, 0x33, 0x9f, - 0xf2, 0x88, 0xd5, 0xf6, 0x77, 0xd2, 0x49, 0x6b, 0x0d, 0x38, 0xc8, 0x94, 0x60, 0xf4, 0x21, 0x6c, - 0x8a, 0x64, 0x52, 0xed, 0x17, 0x41, 0xad, 0xf3, 0x17, 0x1d, 0xc5, 0x89, 0x2d, 0x28, 0x60, 0xcf, - 0x23, 0x5e, 0xa3, 0xc0, 0x01, 0xe2, 0x01, 0xdd, 0x02, 0x18, 0x7a, 0xd8, 0x66, 0x78, 0x64, 0xd9, - 0xac, 0x51, 0x94, 0x04, 0x8a, 0x12, 0x68, 0x85, 0x25, 0xd0, 0x3a, 0x0d, 0x4b, 0xc0, 0x2c, 0x4b, - 0x74, 0x9b, 0xa1, 0x16, 0xe4, 0x9f, 0x90, 0x73, 0xda, 0x28, 0xf1, 0x38, 0x1b, 0x19, 0x26, 0xdf, - 0x27, 0xe7, 0x26, 0xc7, 0xa1, 0xef, 0x42, 0x89, 0x8a, 0xa8, 0x37, 0xd6, 0xf9, 0x3d, 0x3b, 0x4b, - 0x53, 0xc3, 0x0c, 0xd1, 0xc6, 0x3f, 0x74, 0xc8, 0xdd, 0x27, 0xe7, 0x0b, 0xa4, 0xde, 0x8a, 0x58, - 0xd3, 0x39, 0x6b, 0xd7, 0xb2, 0x4d, 0x98, 0x67, 0xae, 0x09, 0x97, 0x1c, 0x97, 0x32, 0xcf, 0x1f, - 0x06, 0x20, 0x2a, 0x0b, 0x25, 0x21, 0x8b, 0x09, 0xcb, 0xab, 0x84, 0x7d, 0x04, 0x48, 0x70, 0x8e, - 0x9f, 0xcd, 0xf0, 0x90, 0xd9, 0xe2, 0xbc, 0xe0, 0x54, 0x44, 0xa3, 0xab, 0xbc, 0x08, 0x94, 0x4c, - 0xec, 0x73, 0x3c, 0xe1, 0xd4, 0x96, 0x4d, 0xf1, 0xd0, 0x24, 0x50, 0x14, 0x06, 0x21, 0x04, 0xb5, - 0xc1, 0x69, 0xfb, 0xf4, 0x6c, 0x60, 0xf5, 0xbb, 0x27, 0x9d, 0xde, 0xc9, 0x61, 0x7d, 0x4d, 0x91, - 0x99, 0x67, 0x27, 0x27, 0x81, 0x4c, 0x43, 0x5b, 0x50, 0x97, 0xb2, 0x83, 0xcf, 0x1f, 0xf4, 0x8f, - 0xbb, 0xa7, 0xdd, 0x4e, 0x5d, 0x47, 0x9b, 0x50, 0x95, 0xd2, 0x7b, 0xed, 0xde, 0x71, 0xb7, 0x53, - 0xcf, 0xa9, 0xc0, 0xf6, 0xc9, 0x41, 0xf7, 0x38, 0x90, 0xe6, 0x8d, 0xdf, 0x15, 0xa1, 0x78, 0xc0, - 0x23, 0x67, 0xfc, 0x42, 0x87, 0xf5, 0xc1, 0x10, 0xbb, 0xb6, 0xe7, 0x90, 0x05, 0x1e, 0xb4, 0x14, - 0x1e, 0xd2, 0x3d, 0xd6, 0xb3, 0x3c, 0xee, 0xc3, 0xfa, 0x14, 0x33, 0x7b, 0x64, 0x33, 0xbb, 0x91, - 0xe3, 0xa9, 0xf1, 0x69, 0x46, 0x5c, 0x84, 0x41, 0xad, 0xd0, 0x98, 0xd6, 0x03, 0x79, 0x4c, 0x34, - 0x82, 0x48, 0x4b, 0xcc, 0x61, 0x5e, 0xe1, 0xd0, 0xb8, 0x03, 0xd5, 0xc4, 0x81, 0x94, 0xc6, 0xb0, - 0xa5, 0x36, 0x86, 0xb2, 0x5a, 0xfc, 0x5f, 0x40, 0x39, 0xbc, 0x96, 0xa2, 0x0e, 0x94, 0x69, 0xf8, - 0xd0, 0xd0, 0xb8, 0xc9, 0x37, 0x56, 0x33, 0xd9, 0x8c, 0x0f, 0x1a, 0x5f, 0xeb, 0x50, 0x32, 0xf1, - 0xcf, 0x7c, 0x4c, 0xd9, 0x5c, 0xb9, 0x6b, 0xf3, 0xe5, 0xbe, 0x03, 0x20, 0x18, 0x75, 0xed, 0x69, - 0x68, 0x5c, 0x99, 0x4b, 0x4e, 0xec, 0x29, 0x4e, 0x2f, 0xeb, 0x5c, 0x46, 0x59, 0x7f, 0x00, 0x1b, - 0xae, 0x3f, 0x55, 0xe6, 0x19, 0xe5, 0x34, 0x15, 0xcc, 0x9a, 0xeb, 0x4f, 0x63, 0xe3, 0x69, 0x30, - 0x31, 0x3c, 0x3c, 0x0e, 0x54, 0x89, 0x54, 0x94, 0x4f, 0xe8, 0x50, 0xf5, 0xbe, 0xc4, 0x0b, 0xf3, - 0x83, 0xd5, 0xbc, 0xa7, 0x47, 0x6b, 0x0a, 0x01, 0xe8, 0x9b, 0xb0, 0x3e, 0xf6, 0x88, 0x3f, 0x0b, - 0x5c, 0xe6, 0xf5, 0x70, 0xb4, 0x66, 0x96, 0xb8, 0xa4, 0x37, 0xba, 0xbb, 0x0e, 0x45, 0x4a, 0x7c, - 0x6f, 0x88, 0x8d, 0x5f, 0x69, 0xb0, 0x6e, 0x62, 0x3a, 0x23, 0x2e, 0xc5, 0xe8, 0x5b, 0xb0, 0x19, - 0x5b, 0x6e, 0x79, 0xbe, 0x1b, 0xf3, 0xb5, 0x41, 0xd5, 0xbb, 0x7b, 0x23, 0x34, 0x80, 0xcb, 0x33, - 0x0f, 0x53, 0x67, 0xec, 0xe2, 0x91, 0x35, 0x23, 0x94, 0x59, 0x9e, 0xa0, 0x5b, 0xf6, 0xfd, 0xb8, - 0x9d, 0xf4, 0x43, 0x58, 0x9f, 0x50, 0x26, 0x63, 0x62, 0x6e, 0xcd, 0x52, 0xa4, 0xc6, 0x57, 0xf0, - 0xce, 0x01, 0x71, 0x1f, 0x39, 0xde, 0x74, 0xc0, 0xcd, 0x3b, 0x9b, 0x4d, 0x88, 0x3d, 0x32, 0x4e, - 0x57, 0x8e, 0x65, 0xaa, 0x07, 0x7a, 0xaa, 0x07, 0x06, 0xc4, 0x9e, 0x1b, 0xbf, 0xd1, 0x20, 0x77, - 0x88, 0xd9, 0x5b, 0xba, 0xe9, 0x53, 0x85, 0xe3, 0x3d, 0xc8, 0x79, 0xbe, 0x98, 0x6b, 0x95, 0xfd, - 0xcb, 0xe9, 0xa1, 0x35, 0x03, 0x88, 0xf1, 0x77, 0x1d, 0xf2, 0xc7, 0x0e, 0x65, 0xc6, 0xdf, 0xb4, - 0x95, 0xad, 0xba, 0x3d, 0xd7, 0x84, 0x97, 0x8f, 0xae, 0xa3, 0xb5, 0xb0, 0x05, 0xbf, 0xd0, 0x34, - 0xf4, 0x7d, 0x80, 0x99, 0x3d, 0xc6, 0x16, 0x23, 0x4f, 0xb1, 0xc8, 0xf0, 0xca, 0x7e, 0x23, 0x3a, - 0x7f, 0x1a, 0x48, 0xfb, 0xf6, 0xd8, 0x71, 0xb9, 0x92, 0x23, 0xcd, 0x2c, 0x07, 0x68, 0x2e, 0x7e, - 0xa1, 0x69, 0x77, 0xcb, 0x50, 0xb2, 0x84, 0xae, 0xbb, 0x55, 0xa8, 0x58, 0xb1, 0x26, 0xe3, 0x59, - 0x22, 0xc3, 0xf2, 0x9e, 0xef, 0x86, 0x75, 0x9d, 0xe5, 0x3e, 0xc7, 0xa0, 0x1f, 0xc3, 0x86, 0x8b, - 0x9f, 0x31, 0x45, 0x95, 0x4c, 0xad, 0x4c, 0xa3, 0xcc, 0x6a, 0x70, 0xa0, 0x1f, 0x9a, 0x65, 0x3c, - 0x81, 0xe2, 0x81, 0xed, 0x0e, 0xf1, 0xe4, 0xed, 0x67, 0x50, 0xf3, 0x6b, 0x2d, 0x9a, 0x22, 0xdb, - 0xf0, 0x6e, 0x72, 0x8a, 0x58, 0x67, 0xfd, 0xe3, 0xcf, 0xdb, 0x9d, 0xfa, 0x1a, 0x7a, 0x17, 0x36, - 0xe5, 0xab, 0xc3, 0xee, 0x49, 0xd7, 0x6c, 0x9f, 0x8a, 0x79, 0xb2, 0x38, 0x63, 0x74, 0x74, 0x19, - 0x90, 0x94, 0x0d, 0xce, 0x1e, 0x3c, 0x68, 0x9b, 0xbd, 0x87, 0x81, 0x3c, 0x97, 0x3a, 0x7b, 0xf2, - 0x8b, 0xb3, 0xa7, 0x90, 0x3a, 0x7b, 0x8a, 0xcd, 0x5f, 0xd7, 0x94, 0x81, 0xf3, 0x8a, 0x8b, 0x51, - 0xd4, 0xfa, 0x73, 0x4a, 0xeb, 0x5f, 0x98, 0x5a, 0xf9, 0x95, 0xa7, 0x56, 0xe6, 0x9c, 0x7e, 0x0f, - 0x6a, 0xa2, 0x3f, 0x59, 0x1e, 0x21, 0xd3, 0xc0, 0x16, 0xd1, 0x25, 0x2f, 0x09, 0xa9, 0x49, 0xc8, - 0xb4, 0x37, 0x9a, 0xdb, 0x96, 0x4a, 0xaf, 0xb2, 0x2d, 0x7d, 0x1c, 0xd5, 0xc9, 0x3a, 0xaf, 0x93, - 0x38, 0xa5, 0xa2, 0xf9, 0x37, 0xb7, 0xa3, 0x44, 0xfb, 0x47, 0x59, 0xdd, 0x3f, 0xb6, 0x95, 0x2e, - 0x0b, 0xfc, 0x45, 0xd8, 0x63, 0xd1, 0x1d, 0x65, 0xf2, 0x56, 0x78, 0xba, 0x5f, 0x5d, 0xbc, 0x24, - 0x63, 0xc8, 0x1a, 0xff, 0xd1, 0xa3, 0x0d, 0xe1, 0x2f, 0xab, 0x4f, 0xb2, 0x28, 0x3e, 0xfa, 0xb2, - 0xf8, 0xe4, 0x56, 0x8e, 0x4f, 0x3e, 0x2b, 0x3e, 0xdb, 0xf3, 0xc3, 0x25, 0x76, 0xfb, 0xbe, 0xe2, - 0xf6, 0xc2, 0x37, 0x47, 0xe8, 0xb6, 0x1c, 0x5d, 0xd2, 0xad, 0x4c, 0x16, 0x5e, 0x6b, 0xa9, 0xb8, - 0xa5, 0xb4, 0x9d, 0x8f, 0x60, 0x3d, 0x9c, 0x8c, 0xb2, 0xf3, 0x6e, 0x2e, 0x18, 0x65, 0x46, 0x10, - 0xe3, 0x5f, 0x1a, 0x6c, 0x0a, 0x13, 0xef, 0x79, 0x64, 0x3a, 0x10, 0xdf, 0x86, 0xc6, 0x2f, 0x57, - 0x6f, 0xc3, 0xdf, 0x80, 0x52, 0x98, 0xb8, 0xba, 0x1c, 0xef, 0x22, 0x65, 0x55, 0xe2, 0x72, 0x49, - 0xe2, 0x52, 0xf7, 0x2a, 0x65, 0x4f, 0x28, 0xa8, 0x7b, 0xc2, 0xeb, 0x78, 0x67, 0x41, 0xb1, 0x83, - 0x27, 0x98, 0x61, 0xa3, 0xb7, 0xb2, 0x43, 0x57, 0xa1, 0x12, 0x9e, 0x8f, 0x9d, 0x82, 0x50, 0x34, - 0x37, 0x4c, 0xff, 0x90, 0x83, 0xe2, 0xd9, 0x6c, 0x14, 0x24, 0xef, 0x3f, 0xf5, 0x37, 0x76, 0xc5, - 0xff, 0xae, 0xfb, 0xa8, 0x41, 0x2a, 0x66, 0x67, 0x77, 0x29, 0x2b, 0xbb, 0x85, 0xef, 0xff, 0xb7, - 0xd9, 0xfd, 0x42, 0x93, 0x7b, 0xc5, 0xc1, 0xca, 0xb1, 0x51, 0x19, 0xd1, 0x13, 0x8c, 0x18, 0x77, - 0x14, 0x43, 0x6e, 0x2e, 0xae, 0xee, 0x29, 0x96, 0x28, 0x5b, 0xfa, 0xeb, 0x50, 0xd0, 0xec, 0x44, - 0x03, 0x37, 0x75, 0xaa, 0xae, 0xa1, 0x3a, 0x5c, 0x0a, 0xa7, 0x6a, 0xb7, 0xdd, 0xf9, 0xb2, 0xae, - 0x2d, 0x4e, 0x49, 0xbd, 0xf9, 0xe7, 0x3c, 0x54, 0x43, 0xd3, 0x0e, 0x03, 0x9f, 0xde, 0xcc, 0x50, - 0x4c, 0xce, 0xa6, 0xfc, 0xab, 0xcc, 0xa6, 0x04, 0x8b, 0x85, 0x15, 0x58, 0xfc, 0xad, 0x16, 0x0d, - 0x8b, 0x1f, 0xbe, 0xde, 0xac, 0x30, 0x7a, 0x4a, 0x34, 0x7f, 0x00, 0xb5, 0xa8, 0x20, 0x79, 0xb4, - 0x17, 0x97, 0x56, 0x95, 0x37, 0xb3, 0x4a, 0xd5, 0x47, 0xe3, 0xcb, 0xa8, 0xcd, 0xbc, 0x91, 0x3c, - 0x53, 0x1b, 0xcc, 0xcf, 0x65, 0x02, 0xef, 0xad, 0xaa, 0xd8, 0xf8, 0x4c, 0xf1, 0xeb, 0x47, 0xb0, - 0x91, 0xf4, 0x2b, 0x65, 0x1d, 0x4d, 0x38, 0x56, 0x4b, 0x38, 0x46, 0xf7, 0xff, 0x08, 0xb0, 0xd1, - 0x0e, 0xba, 0x46, 0xbc, 0xb5, 0xa2, 0x11, 0xbc, 0x23, 0x42, 0x90, 0xfc, 0xcf, 0xd3, 0xfb, 0xcb, - 0xbf, 0xdd, 0xc2, 0xef, 0x9e, 0x1b, 0x2f, 0x83, 0x49, 0xd3, 0x5f, 0x68, 0xb0, 0x13, 0x7e, 0x20, - 0x45, 0x40, 0xf5, 0x53, 0x09, 0xed, 0x67, 0x69, 0x5a, 0xfc, 0xac, 0x8a, 0x6e, 0xff, 0xe4, 0x95, - 0xce, 0x48, 0x53, 0x7e, 0x0a, 0xf5, 0x43, 0xcc, 0x92, 0xde, 0x36, 0x33, 0x14, 0x1d, 0x62, 0x16, - 0x5d, 0x76, 0x7d, 0x29, 0x46, 0x2a, 0xb7, 0x00, 0x05, 0x01, 0x4e, 0x20, 0x28, 0xca, 0x3a, 0x1a, - 0x40, 0x23, 0xfd, 0xef, 0x2d, 0x07, 0xc9, 0x0b, 0x82, 0x70, 0xf1, 0x2f, 0x83, 0x15, 0xc3, 0xc5, - 0xb1, 0x2f, 0x0f, 0x57, 0x08, 0x93, 0xb7, 0x9c, 0x41, 0x4d, 0x26, 0x45, 0xb8, 0x70, 0xef, 0xbe, - 0x6c, 0x17, 0x32, 0xae, 0x2d, 0x41, 0x48, 0xb5, 0x17, 0xb0, 0x9d, 0x54, 0xab, 0x6c, 0x29, 0xe8, - 0xc3, 0xac, 0xf3, 0x0a, 0x28, 0xba, 0xec, 0xdb, 0xab, 0x81, 0x63, 0x77, 0x44, 0x45, 0x2f, 0x73, - 0x47, 0x20, 0x96, 0xb9, 0x13, 0x21, 0x62, 0xb5, 0x62, 0x62, 0x2e, 0x53, 0x9b, 0x9c, 0xa9, 0x69, - 0x6a, 0x23, 0x84, 0x12, 0xe2, 0x04, 0x4b, 0xa2, 0xbb, 0xbf, 0x9f, 0x5e, 0xe4, 0x4b, 0x2a, 0x32, - 0x1d, 0x16, 0xdf, 0x92, 0xe4, 0x64, 0xf9, 0x2d, 0x73, 0xec, 0xdc, 0x78, 0x19, 0x6c, 0xae, 0x1e, - 0x12, 0x7d, 0x48, 0xad, 0x87, 0xc4, 0xe9, 0xac, 0x7a, 0x48, 0x03, 0xc9, 0x0b, 0xfa, 0x50, 0x55, - 0x2f, 0xa0, 0xe8, 0xca, 0x22, 0xc1, 0x09, 0xb5, 0x57, 0x33, 0xdf, 0x0b, 0x8d, 0x77, 0xef, 0x3d, - 0xbc, 0x3e, 0x76, 0xd8, 0x63, 0xff, 0xbc, 0x35, 0x24, 0xd3, 0xf0, 0xd7, 0x16, 0xf1, 0x33, 0xce, - 0x90, 0x4c, 0x42, 0xc1, 0x9f, 0xf4, 0xea, 0xb1, 0x73, 0x81, 0x3f, 0xe3, 0xff, 0x26, 0x22, 0x8c, - 0xfc, 0x5b, 0xaf, 0xc9, 0xe7, 0xdb, 0xb7, 0xb9, 0xe0, 0xbc, 0xc8, 0x8f, 0x7c, 0xf2, 0xdf, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x3e, 0x19, 0x09, 0xac, 0x32, 0x1a, 0x00, 0x00, + // 1882 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x59, 0xcf, 0x6f, 0xdb, 0xc8, + 0xf5, 0x37, 0xa9, 0x5f, 0xd6, 0x53, 0x24, 0xcb, 0xb3, 0xde, 0x7c, 0x65, 0x7e, 0xe1, 0xc4, 0x51, + 0x76, 0x13, 0xa3, 0xdb, 0x55, 0x16, 0xde, 0x2d, 0xda, 0x24, 0xfd, 0xa5, 0x58, 0x8a, 0xad, 0xac, + 0xe3, 0xd5, 0x52, 0x36, 0x8a, 0x4d, 0x0f, 0x04, 0x2d, 0x4e, 0x14, 0x26, 0x12, 0x47, 0xe5, 0x0c, + 0xdd, 0xe4, 0xb0, 0x97, 0x9e, 0x82, 0x16, 0x3d, 0x14, 0x05, 0x7a, 0xea, 0xa1, 0x28, 0xb0, 0x97, + 0x9e, 0x7a, 0xe9, 0xa9, 0x05, 0xda, 0x4b, 0xff, 0x85, 0x5e, 0xfa, 0x1f, 0xf4, 0x5f, 0xe8, 0xa5, + 0xe0, 0xcc, 0x90, 0x1a, 0x4a, 0xa4, 0xa2, 0x20, 0xd9, 0xa2, 0x37, 0xf3, 0xf1, 0x33, 0x6f, 0xde, + 0xfb, 0xbc, 0x9f, 0xb4, 0xe0, 0xca, 0xd8, 0xbd, 0xc0, 0xcf, 0x5c, 0x66, 0xd9, 0x23, 0xec, 0x31, + 0x8b, 0xba, 0x93, 0x60, 0x6c, 0x33, 0x97, 0x78, 0xad, 0xa9, 0x4f, 0x18, 0x41, 0x25, 0xf9, 0xde, + 0xb8, 0x3a, 0x22, 0x64, 0x34, 0xc6, 0xb7, 0xb8, 0xf8, 0x3c, 0x78, 0x7c, 0x8b, 0xb9, 0x13, 0x4c, + 0x99, 0x3d, 0x99, 0x0a, 0xa4, 0xb1, 0x1d, 0x69, 0x1a, 0x8e, 0x49, 0xe0, 0x08, 0x7d, 0xf2, 0xd5, + 0x56, 0xf4, 0x6a, 0x42, 0x1c, 0x3c, 0xa6, 0x52, 0x7a, 0x8d, 0x43, 0x6e, 0xcd, 0x19, 0x80, 0x29, + 0x8d, 0x6f, 0x6f, 0xfe, 0x39, 0x07, 0x5b, 0x83, 0xd8, 0x24, 0x33, 0xf0, 0x06, 0xc1, 0x64, 0x62, + 0xfb, 0x2f, 0xd0, 0x65, 0x28, 0x4e, 0x6d, 0x4a, 0xb1, 0xd3, 0xd0, 0x76, 0xb5, 0xbd, 0x82, 0x29, + 0x9f, 0x42, 0xf9, 0x63, 0xdb, 0x1d, 0x63, 0xa7, 0xa1, 0x0b, 0xb9, 0x78, 0x42, 0x3b, 0x00, 0x23, + 0xe2, 0x7a, 0x23, 0xeb, 0xa7, 0x78, 0x3c, 0x6e, 0xe4, 0x76, 0xb5, 0xbd, 0xb2, 0x59, 0xe6, 0x92, + 0x1f, 0xe1, 0xf1, 0x38, 0x7c, 0xcd, 0x88, 0xe5, 0x4e, 0xa6, 0x3e, 0xb9, 0xc0, 0x8d, 0xbc, 0x78, + 0xcd, 0x48, 0x4f, 0x08, 0xd0, 0x5d, 0x28, 0xba, 0x94, 0x06, 0x98, 0x36, 0x0a, 0xbb, 0xb9, 0xbd, + 0xca, 0xfe, 0xf5, 0x96, 0x34, 0xba, 0x95, 0x66, 0x5c, 0xab, 0x17, 0x62, 0x4d, 0x79, 0x04, 0x7d, + 0x0e, 0x97, 0x86, 0x4f, 0x6c, 0x66, 0x3d, 0x71, 0x29, 0x23, 0xfe, 0x8b, 0x46, 0x91, 0xab, 0x68, + 0x2d, 0x57, 0x71, 0xf0, 0xc4, 0x66, 0x47, 0xe2, 0x40, 0xd7, 0x63, 0xfe, 0x0b, 0xb3, 0x32, 0x9c, + 0x49, 0x8c, 0x47, 0x50, 0x9f, 0x07, 0xa0, 0x3a, 0xe4, 0x9e, 0xe1, 0x17, 0x9c, 0x8e, 0xb2, 0x19, + 0xfe, 0x89, 0x3e, 0x82, 0xc2, 0x85, 0x3d, 0x0e, 0x30, 0xa7, 0xa2, 0xb2, 0x6f, 0xc4, 0x37, 0x8a, + 0xd0, 0x84, 0x1a, 0x0e, 0x88, 0xc7, 0xf0, 0x73, 0x66, 0x0a, 0xe0, 0x1d, 0xfd, 0x3b, 0x9a, 0xd1, + 0x83, 0x02, 0xb7, 0x1f, 0xed, 0x42, 0xc5, 0xc1, 0x74, 0xe8, 0xbb, 0xd3, 0xd0, 0x36, 0xa9, 0x58, + 0x15, 0xa1, 0x2b, 0x00, 0x34, 0x18, 0x8d, 0x30, 0xe5, 0x00, 0x9d, 0x03, 0x14, 0x49, 0xf3, 0xef, + 0x08, 0xaa, 0x09, 0xef, 0x50, 0x0d, 0x74, 0xd7, 0x91, 0xaa, 0x74, 0x97, 0x87, 0x65, 0xea, 0x93, + 0xa7, 0x78, 0xc8, 0x2c, 0xd7, 0x91, 0x1a, 0xca, 0x52, 0xd2, 0x73, 0xd0, 0xb7, 0xa0, 0x48, 0x99, + 0xcd, 0x02, 0xca, 0x23, 0x56, 0xdb, 0xdf, 0x49, 0x27, 0xad, 0x35, 0xe0, 0x20, 0x53, 0x82, 0xd1, + 0x07, 0xb0, 0x29, 0x92, 0x49, 0xb5, 0x5f, 0x04, 0xb5, 0xce, 0x5f, 0x74, 0x14, 0x27, 0xb6, 0xa0, + 0x80, 0x7d, 0x9f, 0xf8, 0x8d, 0x02, 0x07, 0x88, 0x07, 0x74, 0x1b, 0x60, 0xe8, 0x63, 0x9b, 0x61, + 0xc7, 0xb2, 0x59, 0xa3, 0x28, 0x09, 0x14, 0x25, 0xd0, 0x8a, 0x4a, 0xa0, 0x75, 0x1a, 0x95, 0x80, + 0x59, 0x96, 0xe8, 0x36, 0x43, 0x2d, 0xc8, 0x3f, 0x25, 0xe7, 0xb4, 0x51, 0xe2, 0x71, 0x36, 0x32, + 0x4c, 0x7e, 0x40, 0xce, 0x4d, 0x8e, 0x43, 0xdf, 0x86, 0x12, 0x15, 0x51, 0x6f, 0xac, 0xf3, 0x7b, + 0x76, 0x96, 0xa6, 0x86, 0x19, 0xa1, 0x8d, 0xbf, 0xe9, 0x90, 0x7b, 0x40, 0xce, 0x17, 0x48, 0xbd, + 0x1d, 0xb3, 0xa6, 0x73, 0xd6, 0xae, 0x65, 0x9b, 0x30, 0xcf, 0x5c, 0x13, 0x2e, 0xb9, 0x1e, 0x65, + 0x7e, 0x30, 0x0c, 0x41, 0x54, 0x16, 0x4a, 0x42, 0x36, 0x23, 0x2c, 0xaf, 0x12, 0xf6, 0x21, 0x20, + 0xc1, 0x39, 0x7e, 0x3e, 0xc5, 0x43, 0x66, 0x8b, 0xf3, 0x82, 0x53, 0x11, 0x8d, 0xae, 0xf2, 0x22, + 0x54, 0x32, 0xb6, 0xcf, 0xf1, 0x98, 0x53, 0x5b, 0x36, 0xc5, 0x43, 0x93, 0x40, 0x51, 0x18, 0x84, + 0x10, 0xd4, 0x06, 0xa7, 0xed, 0xd3, 0xb3, 0x81, 0xd5, 0xef, 0x9e, 0x74, 0x7a, 0x27, 0x87, 0xf5, + 0x35, 0x45, 0x66, 0x9e, 0x9d, 0x9c, 0x84, 0x32, 0x0d, 0x6d, 0x41, 0x5d, 0xca, 0x0e, 0x3e, 0x7b, + 0xd8, 0x3f, 0xee, 0x9e, 0x76, 0x3b, 0x75, 0x1d, 0x6d, 0x42, 0x55, 0x4a, 0xef, 0xb7, 0x7b, 0xc7, + 0xdd, 0x4e, 0x3d, 0xa7, 0x02, 0xdb, 0x27, 0x07, 0xdd, 0xe3, 0x50, 0x9a, 0x37, 0x7e, 0x53, 0x84, + 0xe2, 0x01, 0x8f, 0x9c, 0xf1, 0x33, 0x1d, 0xd6, 0x07, 0x43, 0xec, 0xd9, 0xbe, 0x4b, 0x16, 0x78, + 0xd0, 0x52, 0x78, 0x48, 0xf7, 0x58, 0xcf, 0xf2, 0xb8, 0x0f, 0xeb, 0x13, 0xcc, 0x6c, 0xc7, 0x66, + 0x76, 0x23, 0xc7, 0x53, 0xe3, 0x93, 0x8c, 0xb8, 0x08, 0x83, 0x5a, 0x91, 0x31, 0xad, 0x87, 0xf2, + 0x98, 0x68, 0x04, 0xb1, 0x96, 0x19, 0x87, 0x79, 0x85, 0x43, 0xe3, 0x2e, 0x54, 0x13, 0x07, 0x52, + 0x1a, 0xc3, 0x96, 0xda, 0x18, 0xca, 0x6a, 0xf1, 0x7f, 0x0e, 0xe5, 0xe8, 0x5a, 0x8a, 0x3a, 0x50, + 0xa6, 0xd1, 0x43, 0x43, 0xe3, 0x26, 0xdf, 0x58, 0xcd, 0x64, 0x73, 0x76, 0xd0, 0xf8, 0x4a, 0x87, + 0x92, 0x89, 0x7f, 0x12, 0x60, 0xca, 0xe6, 0xca, 0x5d, 0x9b, 0x2f, 0xf7, 0x1d, 0x00, 0xc1, 0xa8, + 0x67, 0x4f, 0x22, 0xe3, 0xca, 0x5c, 0x72, 0x62, 0x4f, 0x70, 0x7a, 0x59, 0xe7, 0x32, 0xca, 0xfa, + 0x26, 0x6c, 0x78, 0xc1, 0x44, 0x99, 0x67, 0x94, 0xd3, 0x54, 0x30, 0x6b, 0x5e, 0x30, 0x99, 0x19, + 0x4f, 0xc3, 0x89, 0xe1, 0xe3, 0x51, 0xa8, 0x4a, 0xa4, 0xa2, 0x7c, 0x42, 0x87, 0xaa, 0xf7, 0x25, + 0x5e, 0x98, 0x37, 0x57, 0xf3, 0x9e, 0x1e, 0xad, 0x29, 0x04, 0xa0, 0xff, 0x87, 0xf5, 0x91, 0x4f, + 0x82, 0x69, 0xe8, 0x32, 0xaf, 0x87, 0xa3, 0x35, 0xb3, 0xc4, 0x25, 0x3d, 0xe7, 0xde, 0x3a, 0x14, + 0x29, 0x09, 0xfc, 0x21, 0x36, 0x7e, 0xa1, 0xc1, 0xba, 0x89, 0xe9, 0x94, 0x78, 0x14, 0xa3, 0x6f, + 0xc0, 0xe6, 0xcc, 0x72, 0xcb, 0x0f, 0xbc, 0x19, 0x5f, 0x1b, 0x54, 0xbd, 0xbb, 0xe7, 0xa0, 0x01, + 0x5c, 0x9e, 0xfa, 0x98, 0xba, 0x23, 0x0f, 0x3b, 0xd6, 0x94, 0x50, 0x66, 0xf9, 0x82, 0x6e, 0xd9, + 0xf7, 0x67, 0xed, 0xa4, 0x1f, 0xc1, 0xfa, 0x84, 0x32, 0x19, 0x13, 0x73, 0x6b, 0x9a, 0x22, 0x35, + 0x7e, 0xa7, 0xc1, 0x3b, 0x07, 0xc4, 0x7b, 0xec, 0xfa, 0x93, 0x01, 0xb7, 0xef, 0x6c, 0x3a, 0x26, + 0xb6, 0x63, 0x7c, 0xb9, 0x72, 0x30, 0x53, 0x5d, 0xd0, 0xd3, 0x5d, 0xb8, 0x09, 0x1b, 0x43, 0xe2, + 0x60, 0x0b, 0x87, 0x09, 0x3b, 0x25, 0xae, 0xc7, 0x64, 0x5c, 0x6b, 0xa1, 0xb8, 0x1b, 0x4b, 0x0d, + 0x98, 0x71, 0x64, 0xfc, 0x4a, 0x83, 0xdc, 0x21, 0x66, 0xc6, 0xe9, 0xd7, 0x61, 0x92, 0xf1, 0x89, + 0x12, 0x8d, 0x3d, 0xc8, 0xf9, 0x81, 0x98, 0x80, 0x95, 0xfd, 0xcb, 0xe9, 0x49, 0x60, 0x86, 0x10, + 0xe3, 0xaf, 0x3a, 0xe4, 0x8f, 0x5d, 0xca, 0x8c, 0xbf, 0x68, 0x2b, 0x5b, 0x75, 0x67, 0xae, 0x5d, + 0x2f, 0x1f, 0x72, 0x47, 0x6b, 0x51, 0xb3, 0x7e, 0xa9, 0x69, 0xe8, 0xbb, 0x00, 0x53, 0x7b, 0x84, + 0x2d, 0x46, 0x9e, 0x61, 0x51, 0x0b, 0x95, 0xfd, 0x46, 0x7c, 0xfe, 0x34, 0x94, 0xf6, 0xed, 0x91, + 0xeb, 0x71, 0x25, 0x47, 0x9a, 0x59, 0x0e, 0xd1, 0x5c, 0xfc, 0x52, 0xd3, 0xee, 0x95, 0xa1, 0x64, + 0x09, 0x5d, 0xf7, 0xaa, 0x50, 0xb1, 0x66, 0x9a, 0x8c, 0xe7, 0x89, 0x5c, 0xcc, 0xfb, 0x81, 0x17, + 0x75, 0x80, 0x2c, 0xf7, 0x39, 0x06, 0xfd, 0x10, 0x36, 0x3c, 0xfc, 0x9c, 0x29, 0xaa, 0x64, 0x12, + 0x66, 0x1a, 0x65, 0x56, 0xc3, 0x03, 0xfd, 0xc8, 0x2c, 0xe3, 0x29, 0x14, 0x0f, 0x6c, 0x6f, 0x88, + 0xc7, 0x5f, 0x53, 0x5c, 0x95, 0x0c, 0x6a, 0x7e, 0xa5, 0xc5, 0xf3, 0x66, 0x1b, 0xde, 0x4d, 0xce, + 0x1b, 0xeb, 0xac, 0x7f, 0xfc, 0x59, 0xbb, 0x53, 0x5f, 0x43, 0xef, 0xc2, 0xa6, 0x7c, 0x75, 0xd8, + 0x3d, 0xe9, 0x9a, 0xed, 0x53, 0x31, 0x79, 0x16, 0xa7, 0x91, 0x8e, 0x2e, 0x03, 0x92, 0xb2, 0xc1, + 0xd9, 0xc3, 0x87, 0x6d, 0xb3, 0xf7, 0x28, 0x94, 0xe7, 0x52, 0xa7, 0x54, 0x7e, 0x71, 0x4a, 0x15, + 0x52, 0xa7, 0x54, 0xb1, 0xf9, 0xcb, 0x9a, 0x32, 0x9a, 0x5e, 0x73, 0x85, 0x8a, 0x87, 0x44, 0x4e, + 0x19, 0x12, 0x0b, 0xf3, 0x2d, 0xbf, 0xf2, 0x7c, 0xcb, 0x9c, 0xe8, 0xef, 0x41, 0x4d, 0x74, 0x32, + 0xcb, 0x27, 0x64, 0x12, 0xda, 0x22, 0xfa, 0xe9, 0x25, 0x21, 0x35, 0x09, 0x99, 0xf4, 0x9c, 0xb9, + 0xbd, 0xaa, 0xf4, 0x3a, 0x7b, 0xd5, 0x47, 0x71, 0x9d, 0xac, 0xf3, 0x3a, 0x99, 0xa5, 0x54, 0x3c, + 0x29, 0xe7, 0xb6, 0x99, 0x78, 0x53, 0x29, 0xab, 0x9b, 0xca, 0xb6, 0xd2, 0x8f, 0x81, 0xbf, 0x88, + 0xba, 0x31, 0xba, 0xab, 0xcc, 0xe8, 0x0a, 0x4f, 0xf7, 0xab, 0x8b, 0x97, 0x64, 0x8c, 0x63, 0xe3, + 0xdf, 0x7a, 0xbc, 0x4b, 0xfc, 0x69, 0xf5, 0x99, 0x17, 0xc7, 0x47, 0x5f, 0x16, 0x9f, 0xdc, 0xca, + 0xf1, 0xc9, 0x67, 0xc5, 0x67, 0x7b, 0x7e, 0x0c, 0xcd, 0xdc, 0x7e, 0xa0, 0xb8, 0xbd, 0xf0, 0x75, + 0x12, 0xb9, 0x2d, 0x87, 0x9c, 0x74, 0x2b, 0x93, 0x85, 0x37, 0x5a, 0x3f, 0x6e, 0x2b, 0x6d, 0xe7, + 0x43, 0x58, 0x8f, 0x66, 0xa8, 0xec, 0xbc, 0x9b, 0x0b, 0x46, 0x99, 0x31, 0xc4, 0xf8, 0xa7, 0x06, + 0x9b, 0xc2, 0xc4, 0xfb, 0x3e, 0x99, 0x0c, 0xc4, 0x57, 0xa4, 0xf1, 0xf3, 0xd5, 0xdb, 0xf0, 0xff, + 0x41, 0x29, 0x4a, 0x5c, 0x5d, 0x2e, 0x02, 0x22, 0x65, 0x55, 0xe2, 0x72, 0x49, 0xe2, 0x52, 0x37, + 0x30, 0x65, 0xa3, 0x28, 0xa8, 0x1b, 0xc5, 0x9b, 0x78, 0x67, 0x41, 0xb1, 0x83, 0xc7, 0x98, 0x61, + 0xa3, 0xb7, 0xb2, 0x43, 0x57, 0xa1, 0x12, 0x9d, 0x9f, 0x39, 0x05, 0x91, 0x28, 0xd9, 0x0a, 0x8d, + 0xdf, 0xe6, 0xa0, 0x78, 0x36, 0x75, 0xc2, 0xe4, 0xfd, 0x87, 0xfe, 0xd6, 0xae, 0xf8, 0xef, 0x75, + 0x1f, 0x35, 0x48, 0xc5, 0xec, 0xec, 0x2e, 0x65, 0x65, 0xb7, 0xf0, 0xfd, 0x7f, 0x36, 0xbb, 0x5f, + 0x6a, 0x72, 0xaf, 0x38, 0x58, 0x39, 0x36, 0x2a, 0x23, 0x7a, 0x82, 0x11, 0xe3, 0xae, 0x62, 0xc8, + 0xad, 0xc5, 0x25, 0x3f, 0xc5, 0x12, 0x65, 0x9f, 0x7f, 0x13, 0x0a, 0x9a, 0x9d, 0x78, 0xe0, 0xa6, + 0x4e, 0xd5, 0x35, 0x54, 0x87, 0x4b, 0xd1, 0x54, 0xed, 0xb6, 0x3b, 0x5f, 0xd4, 0xb5, 0xc5, 0x29, + 0xa9, 0x37, 0xff, 0x98, 0x87, 0x6a, 0x64, 0xda, 0x61, 0xe8, 0xd3, 0xdb, 0x19, 0x8a, 0xc9, 0xd9, + 0x94, 0x7f, 0x9d, 0xd9, 0x94, 0x60, 0xb1, 0xb0, 0x02, 0x8b, 0xbf, 0xd6, 0xe2, 0x61, 0xf1, 0xfd, + 0x37, 0x9b, 0x15, 0x46, 0x4f, 0x89, 0xe6, 0xf7, 0xa0, 0x16, 0x17, 0x24, 0x8f, 0xf6, 0xe2, 0xd2, + 0xaa, 0xf2, 0x66, 0x56, 0xa9, 0xfa, 0x68, 0x7c, 0x11, 0xb7, 0x99, 0xb7, 0x92, 0x67, 0x6a, 0x83, + 0xf9, 0x52, 0x26, 0xf0, 0xde, 0xaa, 0x8a, 0x8d, 0x4f, 0x15, 0xbf, 0x7e, 0x00, 0x1b, 0x49, 0xbf, + 0x52, 0xd6, 0xd1, 0x84, 0x63, 0xb5, 0x84, 0x63, 0x74, 0xff, 0xf7, 0x00, 0x1b, 0xed, 0xb0, 0x6b, + 0xcc, 0xb6, 0x56, 0xe4, 0xc0, 0x3b, 0x22, 0x04, 0xc9, 0xff, 0x51, 0xbd, 0xbf, 0xfc, 0x2b, 0x2f, + 0xfa, 0x42, 0xba, 0xf1, 0x2a, 0x98, 0x34, 0xfd, 0xa5, 0x06, 0x3b, 0xd1, 0x97, 0x54, 0x0c, 0x54, + 0xbf, 0xa9, 0xd0, 0x7e, 0x96, 0xa6, 0xc5, 0xef, 0xaf, 0xf8, 0xf6, 0x8f, 0x5f, 0xeb, 0x8c, 0x34, + 0xe5, 0xc7, 0x50, 0x3f, 0xc4, 0x2c, 0xe9, 0x6d, 0x33, 0x43, 0xd1, 0x21, 0x66, 0xf1, 0x65, 0xd7, + 0x97, 0x62, 0xa4, 0x72, 0x0b, 0x50, 0x18, 0xe0, 0x04, 0x82, 0xa2, 0xac, 0xa3, 0x21, 0x34, 0xd6, + 0xff, 0xde, 0x72, 0x90, 0xbc, 0x20, 0x0c, 0x17, 0xff, 0x32, 0x58, 0x31, 0x5c, 0x1c, 0xfb, 0xea, + 0x70, 0x45, 0x30, 0x79, 0xcb, 0x19, 0xd4, 0x64, 0x52, 0x44, 0x0b, 0xf7, 0xee, 0xab, 0x76, 0x21, + 0xe3, 0xda, 0x12, 0x84, 0x54, 0x7b, 0x01, 0xdb, 0x49, 0xb5, 0xca, 0x96, 0x82, 0x3e, 0xc8, 0x3a, + 0xaf, 0x80, 0xe2, 0xcb, 0xbe, 0xb9, 0x1a, 0x78, 0xe6, 0x8e, 0xa8, 0xe8, 0x65, 0xee, 0x08, 0xc4, + 0x32, 0x77, 0x62, 0xc4, 0x4c, 0xad, 0x98, 0x98, 0xcb, 0xd4, 0x26, 0x67, 0x6a, 0x9a, 0xda, 0x18, + 0xa1, 0x84, 0x38, 0xc1, 0x92, 0xe8, 0xee, 0xef, 0xa7, 0x17, 0xf9, 0x92, 0x8a, 0x4c, 0x87, 0xcd, + 0x6e, 0x49, 0x72, 0xb2, 0xfc, 0x96, 0x39, 0x76, 0x6e, 0xbc, 0x0a, 0x36, 0x57, 0x0f, 0x89, 0x3e, + 0xa4, 0xd6, 0x43, 0xe2, 0x74, 0x56, 0x3d, 0xa4, 0x81, 0xe4, 0x05, 0x7d, 0xa8, 0xaa, 0x17, 0x50, + 0x74, 0x65, 0x91, 0xe0, 0x84, 0xda, 0xab, 0x99, 0xef, 0x85, 0xc6, 0x7b, 0xf7, 0x1f, 0x5d, 0x1f, + 0xb9, 0xec, 0x49, 0x70, 0xde, 0x1a, 0x92, 0x49, 0xf4, 0xbb, 0x8c, 0xf8, 0xc1, 0x67, 0x48, 0xc6, + 0x91, 0xe0, 0x0f, 0x7a, 0xf5, 0xd8, 0xbd, 0xc0, 0x9f, 0xf2, 0x7f, 0x28, 0x11, 0x46, 0xfe, 0xa5, + 0xd7, 0xe4, 0xf3, 0x9d, 0x3b, 0x5c, 0x70, 0x5e, 0xe4, 0x47, 0x3e, 0xfe, 0x4f, 0x00, 0x00, 0x00, + 0xff, 0xff, 0x2f, 0x02, 0xe2, 0x1d, 0x5c, 0x1a, 0x00, 0x00, } diff --git a/protobufs/livekit_agent_simulation.proto b/protobufs/livekit_agent_simulation.proto index 7a63a67ab..ca1a855ed 100644 --- a/protobufs/livekit_agent_simulation.proto +++ b/protobufs/livekit_agent_simulation.proto @@ -98,6 +98,7 @@ message SimulationRun { message Request { string project_id = 1; string simulation_run_id = 2; + string code_entrypoint = 3; } message Response {} }