diff --git a/.changeset/nervous-chicken-sparkle.md b/.changeset/nervous-chicken-sparkle.md new file mode 100644 index 0000000..1800203 --- /dev/null +++ b/.changeset/nervous-chicken-sparkle.md @@ -0,0 +1,5 @@ +--- +"@livekit/protocol": patch +--- + +Add "Enabled" flag to ingresses to allow preventing an ingress to become active without deleting it. diff --git a/infra/link.pb.go b/infra/link.pb.go index 337f795..0419601 100644 --- a/infra/link.pb.go +++ b/infra/link.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: infra/link.proto diff --git a/ingress/validation.go b/ingress/validation.go index a07501a..aaa9975 100644 --- a/ingress/validation.go +++ b/ingress/validation.go @@ -56,7 +56,7 @@ func ValidateForSerialization(info *livekit.IngressInfo) error { if info.Url == "" { return ErrInvalidIngress("no source URL") } - if !info.Enabled { + if info.Enabled != nil && !*info.Enabled { return ErrInvalidIngress("disabled non reusable ingress") } } diff --git a/ingress/validation_test.go b/ingress/validation_test.go index 33dc96e..fb1f290 100644 --- a/ingress/validation_test.go +++ b/ingress/validation_test.go @@ -143,6 +143,41 @@ func TestValidateEnableTranscoding(t *testing.T) { require.NoError(t, err) } +func TestValidateEnabled(t *testing.T) { + info := &livekit.IngressInfo{ + StreamKey: "sk", + RoomName: "room_name", + ParticipantIdentity: "id", + } + T := true + F := false + + err := Validate(info) + require.NoError(t, err) + + info.Enabled = &T + err = Validate(info) + require.NoError(t, err) + + info.Enabled = &F + err = Validate(info) + require.NoError(t, err) + + info.InputType = livekit.IngressInput_URL_INPUT + info.Url = "url" + info.Enabled = nil + err = Validate(info) + require.NoError(t, err) + + info.Enabled = &T + err = Validate(info) + require.NoError(t, err) + + info.Enabled = &F + err = Validate(info) + require.Error(t, err) +} + func TestValidateVideoOptionsConsistency(t *testing.T) { video := &livekit.IngressVideoOptions{} err := ValidateVideoOptionsConsistency(video) diff --git a/livekit/livekit_agent.pb.go b/livekit/livekit_agent.pb.go index f117960..c358a62 100644 --- a/livekit/livekit_agent.pb.go +++ b/livekit/livekit_agent.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: livekit_agent.proto diff --git a/livekit/livekit_agent_dispatch.pb.go b/livekit/livekit_agent_dispatch.pb.go index 84ad947..5c31fc4 100644 --- a/livekit/livekit_agent_dispatch.pb.go +++ b/livekit/livekit_agent_dispatch.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: livekit_agent_dispatch.proto diff --git a/livekit/livekit_analytics.pb.go b/livekit/livekit_analytics.pb.go index 737b369..4423473 100644 --- a/livekit/livekit_analytics.pb.go +++ b/livekit/livekit_analytics.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: livekit_analytics.proto diff --git a/livekit/livekit_egress.pb.go b/livekit/livekit_egress.pb.go index b977742..0a9fa23 100644 --- a/livekit/livekit_egress.pb.go +++ b/livekit/livekit_egress.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: livekit_egress.proto diff --git a/livekit/livekit_ingress.pb.go b/livekit/livekit_ingress.pb.go index 3e0907f..445035a 100644 --- a/livekit/livekit_ingress.pb.go +++ b/livekit/livekit_ingress.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: livekit_ingress.proto @@ -744,8 +744,8 @@ type IngressInfo struct { ParticipantName string `protobuf:"bytes,10,opt,name=participant_name,json=participantName,proto3" json:"participant_name,omitempty"` ParticipantMetadata string `protobuf:"bytes,14,opt,name=participant_metadata,json=participantMetadata,proto3" json:"participant_metadata,omitempty"` Reusable bool `protobuf:"varint,11,opt,name=reusable,proto3" json:"reusable,omitempty"` - State *IngressState `protobuf:"bytes,12,opt,name=state,proto3" json:"state,omitempty"` // Description of error/stream non compliance and debug info for publisher otherwise (received bitrate, resolution, bandwidth) - Enabled bool `protobuf:"varint,16,opt,name=enabled,proto3" json:"enabled,omitempty"` // The default value is true and when set to false, the new connection attempts will be rejected + State *IngressState `protobuf:"bytes,12,opt,name=state,proto3" json:"state,omitempty"` // Description of error/stream non compliance and debug info for publisher otherwise (received bitrate, resolution, bandwidth) + Enabled *bool `protobuf:"varint,16,opt,name=enabled,proto3,oneof" json:"enabled,omitempty"` // The default value is true and when set to false, the new connection attempts will be rejected unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -887,8 +887,8 @@ func (x *IngressInfo) GetState() *IngressState { } func (x *IngressInfo) GetEnabled() bool { - if x != nil { - return x.Enabled + if x != nil && x.Enabled != nil { + return *x.Enabled } return false } @@ -1512,7 +1512,7 @@ var file_livekit_ingress_proto_rawDesc = []byte{ 0x09, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x52, 0x61, 0x74, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4c, 0x61, 0x79, 0x65, 0x72, 0x52, - 0x06, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x22, 0x9e, 0x05, 0x0a, 0x0b, 0x49, 0x6e, 0x67, 0x72, + 0x06, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x22, 0xaf, 0x05, 0x0a, 0x0b, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x69, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, @@ -1551,165 +1551,166 @@ var file_livekit_ingress_proto_rawDesc = []byte{ 0x52, 0x08, 0x72, 0x65, 0x75, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2b, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x53, 0x74, 0x61, 0x74, 0x65, - 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, - 0x65, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, - 0x64, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x74, 0x72, 0x61, - 0x6e, 0x73, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x22, 0xf6, 0x03, 0x0a, 0x0c, 0x49, 0x6e, 0x67, - 0x72, 0x65, 0x73, 0x73, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x34, 0x0a, 0x06, 0x73, 0x74, 0x61, - 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1c, 0x2e, 0x6c, 0x69, 0x76, 0x65, - 0x6b, 0x69, 0x74, 0x2e, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x53, 0x74, 0x61, 0x74, 0x65, - 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, - 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, - 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x2e, 0x0a, 0x05, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, 0x49, - 0x6e, 0x70, 0x75, 0x74, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, - 0x76, 0x69, 0x64, 0x65, 0x6f, 0x12, 0x2e, 0x0a, 0x05, 0x61, 0x75, 0x64, 0x69, 0x6f, 0x18, 0x04, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, 0x49, - 0x6e, 0x70, 0x75, 0x74, 0x41, 0x75, 0x64, 0x69, 0x6f, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, - 0x61, 0x75, 0x64, 0x69, 0x6f, 0x12, 0x17, 0x0a, 0x07, 0x72, 0x6f, 0x6f, 0x6d, 0x5f, 0x69, 0x64, - 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x1d, - 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x07, 0x20, 0x01, - 0x28, 0x03, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x19, 0x0a, - 0x08, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, - 0x07, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x41, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, - 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x70, - 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x06, 0x74, 0x72, 0x61, 0x63, - 0x6b, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, - 0x69, 0x74, 0x2e, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x06, 0x74, 0x72, - 0x61, 0x63, 0x6b, 0x73, 0x22, 0x7b, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, - 0x0a, 0x11, 0x45, 0x4e, 0x44, 0x50, 0x4f, 0x49, 0x4e, 0x54, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, - 0x49, 0x56, 0x45, 0x10, 0x00, 0x12, 0x16, 0x0a, 0x12, 0x45, 0x4e, 0x44, 0x50, 0x4f, 0x49, 0x4e, - 0x54, 0x5f, 0x42, 0x55, 0x46, 0x46, 0x45, 0x52, 0x49, 0x4e, 0x47, 0x10, 0x01, 0x12, 0x17, 0x0a, - 0x13, 0x45, 0x4e, 0x44, 0x50, 0x4f, 0x49, 0x4e, 0x54, 0x5f, 0x50, 0x55, 0x42, 0x4c, 0x49, 0x53, - 0x48, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x12, 0x12, 0x0a, 0x0e, 0x45, 0x4e, 0x44, 0x50, 0x4f, 0x49, - 0x4e, 0x54, 0x5f, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0x03, 0x12, 0x15, 0x0a, 0x11, 0x45, 0x4e, - 0x44, 0x50, 0x4f, 0x49, 0x4e, 0x54, 0x5f, 0x43, 0x4f, 0x4d, 0x50, 0x4c, 0x45, 0x54, 0x45, 0x10, - 0x04, 0x22, 0xa3, 0x01, 0x0a, 0x0f, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x56, 0x69, 0x64, 0x65, 0x6f, - 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x79, - 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x69, 0x6d, 0x65, 0x54, 0x79, - 0x70, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x62, 0x69, - 0x74, 0x72, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x61, 0x76, 0x65, - 0x72, 0x61, 0x67, 0x65, 0x42, 0x69, 0x74, 0x72, 0x61, 0x74, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x77, - 0x69, 0x64, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x77, 0x69, 0x64, 0x74, - 0x68, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, - 0x0d, 0x52, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x66, 0x72, 0x61, - 0x6d, 0x65, 0x72, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x72, - 0x61, 0x6d, 0x65, 0x72, 0x61, 0x74, 0x65, 0x22, 0x94, 0x01, 0x0a, 0x0f, 0x49, 0x6e, 0x70, 0x75, - 0x74, 0x41, 0x75, 0x64, 0x69, 0x6f, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6d, - 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, - 0x6d, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x61, 0x76, 0x65, 0x72, - 0x61, 0x67, 0x65, 0x5f, 0x62, 0x69, 0x74, 0x72, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x0d, 0x52, 0x0e, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x42, 0x69, 0x74, 0x72, 0x61, 0x74, - 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x0d, 0x52, 0x08, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x12, 0x1f, 0x0a, - 0x0b, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, - 0x28, 0x0d, 0x52, 0x0a, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x52, 0x61, 0x74, 0x65, 0x22, 0xa4, - 0x04, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x6e, 0x67, 0x72, 0x65, - 0x73, 0x73, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x69, 0x6e, 0x67, - 0x72, 0x65, 0x73, 0x73, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x6f, - 0x6f, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, - 0x6f, 0x6f, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x31, 0x0a, 0x14, 0x70, 0x61, 0x72, 0x74, 0x69, - 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x18, - 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x13, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, - 0x6e, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x61, - 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, - 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x31, 0x0a, 0x14, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, - 0x70, 0x61, 0x6e, 0x74, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x09, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x13, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, - 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x36, 0x0a, 0x12, 0x62, 0x79, 0x70, 0x61, - 0x73, 0x73, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x08, - 0x20, 0x01, 0x28, 0x08, 0x42, 0x02, 0x18, 0x01, 0x48, 0x00, 0x52, 0x11, 0x62, 0x79, 0x70, 0x61, - 0x73, 0x73, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x88, 0x01, 0x01, - 0x12, 0x32, 0x0a, 0x12, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, - 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x48, 0x01, 0x52, 0x11, - 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x63, 0x6f, 0x64, 0x69, 0x6e, - 0x67, 0x88, 0x01, 0x01, 0x12, 0x32, 0x0a, 0x05, 0x61, 0x75, 0x64, 0x69, 0x6f, 0x18, 0x06, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, 0x49, 0x6e, - 0x67, 0x72, 0x65, 0x73, 0x73, 0x41, 0x75, 0x64, 0x69, 0x6f, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x52, 0x05, 0x61, 0x75, 0x64, 0x69, 0x6f, 0x12, 0x32, 0x0a, 0x05, 0x76, 0x69, 0x64, 0x65, - 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, - 0x74, 0x2e, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4f, 0x70, - 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x05, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x12, 0x1d, 0x0a, 0x07, - 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x48, 0x02, 0x52, - 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x88, 0x01, 0x01, 0x42, 0x15, 0x0a, 0x13, 0x5f, - 0x62, 0x79, 0x70, 0x61, 0x73, 0x73, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x63, 0x6f, 0x64, 0x69, - 0x6e, 0x67, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x74, 0x72, - 0x61, 0x6e, 0x73, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x65, 0x6e, - 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x50, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x67, - 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x72, - 0x6f, 0x6f, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, - 0x72, 0x6f, 0x6f, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x6e, 0x67, 0x72, - 0x65, 0x73, 0x73, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x69, 0x6e, - 0x67, 0x72, 0x65, 0x73, 0x73, 0x49, 0x64, 0x22, 0x41, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x49, - 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, - 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, - 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x49, - 0x6e, 0x66, 0x6f, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x22, 0x35, 0x0a, 0x14, 0x44, 0x65, - 0x6c, 0x65, 0x74, 0x65, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x64, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x69, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x49, - 0x64, 0x2a, 0x3d, 0x0a, 0x0c, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x70, 0x75, - 0x74, 0x12, 0x0e, 0x0a, 0x0a, 0x52, 0x54, 0x4d, 0x50, 0x5f, 0x49, 0x4e, 0x50, 0x55, 0x54, 0x10, - 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x57, 0x48, 0x49, 0x50, 0x5f, 0x49, 0x4e, 0x50, 0x55, 0x54, 0x10, - 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x55, 0x52, 0x4c, 0x5f, 0x49, 0x4e, 0x50, 0x55, 0x54, 0x10, 0x02, - 0x2a, 0x49, 0x0a, 0x1a, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x41, 0x75, 0x64, 0x69, 0x6f, - 0x45, 0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x65, 0x73, 0x65, 0x74, 0x12, 0x16, - 0x0a, 0x12, 0x4f, 0x50, 0x55, 0x53, 0x5f, 0x53, 0x54, 0x45, 0x52, 0x45, 0x4f, 0x5f, 0x39, 0x36, - 0x4b, 0x42, 0x50, 0x53, 0x10, 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x4f, 0x50, 0x55, 0x53, 0x5f, 0x4d, - 0x4f, 0x4e, 0x4f, 0x5f, 0x36, 0x34, 0x4b, 0x42, 0x53, 0x10, 0x01, 0x2a, 0x84, 0x03, 0x0a, 0x1a, - 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x45, 0x6e, 0x63, 0x6f, - 0x64, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x65, 0x73, 0x65, 0x74, 0x12, 0x1c, 0x0a, 0x18, 0x48, 0x32, - 0x36, 0x34, 0x5f, 0x37, 0x32, 0x30, 0x50, 0x5f, 0x33, 0x30, 0x46, 0x50, 0x53, 0x5f, 0x33, 0x5f, - 0x4c, 0x41, 0x59, 0x45, 0x52, 0x53, 0x10, 0x00, 0x12, 0x1d, 0x0a, 0x19, 0x48, 0x32, 0x36, 0x34, - 0x5f, 0x31, 0x30, 0x38, 0x30, 0x50, 0x5f, 0x33, 0x30, 0x46, 0x50, 0x53, 0x5f, 0x33, 0x5f, 0x4c, - 0x41, 0x59, 0x45, 0x52, 0x53, 0x10, 0x01, 0x12, 0x1c, 0x0a, 0x18, 0x48, 0x32, 0x36, 0x34, 0x5f, - 0x35, 0x34, 0x30, 0x50, 0x5f, 0x32, 0x35, 0x46, 0x50, 0x53, 0x5f, 0x32, 0x5f, 0x4c, 0x41, 0x59, - 0x45, 0x52, 0x53, 0x10, 0x02, 0x12, 0x1b, 0x0a, 0x17, 0x48, 0x32, 0x36, 0x34, 0x5f, 0x37, 0x32, - 0x30, 0x50, 0x5f, 0x33, 0x30, 0x46, 0x50, 0x53, 0x5f, 0x31, 0x5f, 0x4c, 0x41, 0x59, 0x45, 0x52, - 0x10, 0x03, 0x12, 0x1c, 0x0a, 0x18, 0x48, 0x32, 0x36, 0x34, 0x5f, 0x31, 0x30, 0x38, 0x30, 0x50, - 0x5f, 0x33, 0x30, 0x46, 0x50, 0x53, 0x5f, 0x31, 0x5f, 0x4c, 0x41, 0x59, 0x45, 0x52, 0x10, 0x04, - 0x12, 0x28, 0x0a, 0x24, 0x48, 0x32, 0x36, 0x34, 0x5f, 0x37, 0x32, 0x30, 0x50, 0x5f, 0x33, 0x30, - 0x46, 0x50, 0x53, 0x5f, 0x33, 0x5f, 0x4c, 0x41, 0x59, 0x45, 0x52, 0x53, 0x5f, 0x48, 0x49, 0x47, - 0x48, 0x5f, 0x4d, 0x4f, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x05, 0x12, 0x29, 0x0a, 0x25, 0x48, 0x32, - 0x36, 0x34, 0x5f, 0x31, 0x30, 0x38, 0x30, 0x50, 0x5f, 0x33, 0x30, 0x46, 0x50, 0x53, 0x5f, 0x33, - 0x5f, 0x4c, 0x41, 0x59, 0x45, 0x52, 0x53, 0x5f, 0x48, 0x49, 0x47, 0x48, 0x5f, 0x4d, 0x4f, 0x54, - 0x49, 0x4f, 0x4e, 0x10, 0x06, 0x12, 0x28, 0x0a, 0x24, 0x48, 0x32, 0x36, 0x34, 0x5f, 0x35, 0x34, - 0x30, 0x50, 0x5f, 0x32, 0x35, 0x46, 0x50, 0x53, 0x5f, 0x32, 0x5f, 0x4c, 0x41, 0x59, 0x45, 0x52, - 0x53, 0x5f, 0x48, 0x49, 0x47, 0x48, 0x5f, 0x4d, 0x4f, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x07, 0x12, - 0x27, 0x0a, 0x23, 0x48, 0x32, 0x36, 0x34, 0x5f, 0x37, 0x32, 0x30, 0x50, 0x5f, 0x33, 0x30, 0x46, - 0x50, 0x53, 0x5f, 0x31, 0x5f, 0x4c, 0x41, 0x59, 0x45, 0x52, 0x5f, 0x48, 0x49, 0x47, 0x48, 0x5f, - 0x4d, 0x4f, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x08, 0x12, 0x28, 0x0a, 0x24, 0x48, 0x32, 0x36, 0x34, - 0x5f, 0x31, 0x30, 0x38, 0x30, 0x50, 0x5f, 0x33, 0x30, 0x46, 0x50, 0x53, 0x5f, 0x31, 0x5f, 0x4c, - 0x41, 0x59, 0x45, 0x52, 0x5f, 0x48, 0x49, 0x47, 0x48, 0x5f, 0x4d, 0x4f, 0x54, 0x49, 0x4f, 0x4e, - 0x10, 0x09, 0x32, 0xa5, 0x02, 0x0a, 0x07, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x12, 0x44, - 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x12, - 0x1d, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, + 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, + 0x65, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x48, 0x01, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, + 0x6c, 0x65, 0x64, 0x88, 0x01, 0x01, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, + 0x65, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x0a, 0x0a, + 0x08, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0xf6, 0x03, 0x0a, 0x0c, 0x49, 0x6e, + 0x67, 0x72, 0x65, 0x73, 0x73, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x34, 0x0a, 0x06, 0x73, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1c, 0x2e, 0x6c, 0x69, 0x76, + 0x65, 0x6b, 0x69, 0x74, 0x2e, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x53, 0x74, 0x61, 0x74, + 0x65, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, + 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x2e, 0x0a, 0x05, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x18, + 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, + 0x49, 0x6e, 0x70, 0x75, 0x74, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, + 0x05, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x12, 0x2e, 0x0a, 0x05, 0x61, 0x75, 0x64, 0x69, 0x6f, 0x18, + 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, + 0x49, 0x6e, 0x70, 0x75, 0x74, 0x41, 0x75, 0x64, 0x69, 0x6f, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, + 0x05, 0x61, 0x75, 0x64, 0x69, 0x6f, 0x12, 0x17, 0x0a, 0x07, 0x72, 0x6f, 0x6f, 0x6d, 0x5f, 0x69, + 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, + 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x07, 0x20, + 0x01, 0x28, 0x03, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x19, + 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, + 0x52, 0x07, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x41, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x75, 0x70, 0x64, + 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, + 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x06, 0x74, 0x72, 0x61, + 0x63, 0x6b, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6c, 0x69, 0x76, 0x65, + 0x6b, 0x69, 0x74, 0x2e, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x06, 0x74, + 0x72, 0x61, 0x63, 0x6b, 0x73, 0x22, 0x7b, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, + 0x15, 0x0a, 0x11, 0x45, 0x4e, 0x44, 0x50, 0x4f, 0x49, 0x4e, 0x54, 0x5f, 0x49, 0x4e, 0x41, 0x43, + 0x54, 0x49, 0x56, 0x45, 0x10, 0x00, 0x12, 0x16, 0x0a, 0x12, 0x45, 0x4e, 0x44, 0x50, 0x4f, 0x49, + 0x4e, 0x54, 0x5f, 0x42, 0x55, 0x46, 0x46, 0x45, 0x52, 0x49, 0x4e, 0x47, 0x10, 0x01, 0x12, 0x17, + 0x0a, 0x13, 0x45, 0x4e, 0x44, 0x50, 0x4f, 0x49, 0x4e, 0x54, 0x5f, 0x50, 0x55, 0x42, 0x4c, 0x49, + 0x53, 0x48, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x12, 0x12, 0x0a, 0x0e, 0x45, 0x4e, 0x44, 0x50, 0x4f, + 0x49, 0x4e, 0x54, 0x5f, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0x03, 0x12, 0x15, 0x0a, 0x11, 0x45, + 0x4e, 0x44, 0x50, 0x4f, 0x49, 0x4e, 0x54, 0x5f, 0x43, 0x4f, 0x4d, 0x50, 0x4c, 0x45, 0x54, 0x45, + 0x10, 0x04, 0x22, 0xa3, 0x01, 0x0a, 0x0f, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x56, 0x69, 0x64, 0x65, + 0x6f, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x69, 0x6d, 0x65, 0x5f, 0x74, + 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x69, 0x6d, 0x65, 0x54, + 0x79, 0x70, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x62, + 0x69, 0x74, 0x72, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x61, 0x76, + 0x65, 0x72, 0x61, 0x67, 0x65, 0x42, 0x69, 0x74, 0x72, 0x61, 0x74, 0x65, 0x12, 0x14, 0x0a, 0x05, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x04, 0x20, 0x01, + 0x28, 0x0d, 0x52, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x66, 0x72, + 0x61, 0x6d, 0x65, 0x72, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, + 0x72, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x74, 0x65, 0x22, 0x94, 0x01, 0x0a, 0x0f, 0x49, 0x6e, 0x70, + 0x75, 0x74, 0x41, 0x75, 0x64, 0x69, 0x6f, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1b, 0x0a, 0x09, + 0x6d, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x08, 0x6d, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x61, 0x76, 0x65, + 0x72, 0x61, 0x67, 0x65, 0x5f, 0x62, 0x69, 0x74, 0x72, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x0d, 0x52, 0x0e, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x42, 0x69, 0x74, 0x72, 0x61, + 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x12, 0x1f, + 0x0a, 0x0b, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, + 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x52, 0x61, 0x74, 0x65, 0x22, + 0xa4, 0x04, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, + 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x6e, 0x67, 0x72, + 0x65, 0x73, 0x73, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x69, 0x6e, + 0x67, 0x72, 0x65, 0x73, 0x73, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x72, + 0x6f, 0x6f, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, + 0x72, 0x6f, 0x6f, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x31, 0x0a, 0x14, 0x70, 0x61, 0x72, 0x74, + 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, + 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x13, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, + 0x61, 0x6e, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x29, 0x0a, 0x10, 0x70, + 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, + 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, + 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x31, 0x0a, 0x14, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, + 0x69, 0x70, 0x61, 0x6e, 0x74, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x09, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x13, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, + 0x74, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x36, 0x0a, 0x12, 0x62, 0x79, 0x70, + 0x61, 0x73, 0x73, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x18, + 0x08, 0x20, 0x01, 0x28, 0x08, 0x42, 0x02, 0x18, 0x01, 0x48, 0x00, 0x52, 0x11, 0x62, 0x79, 0x70, + 0x61, 0x73, 0x73, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x88, 0x01, + 0x01, 0x12, 0x32, 0x0a, 0x12, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x74, 0x72, 0x61, 0x6e, + 0x73, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x48, 0x01, 0x52, + 0x11, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x63, 0x6f, 0x64, 0x69, + 0x6e, 0x67, 0x88, 0x01, 0x01, 0x12, 0x32, 0x0a, 0x05, 0x61, 0x75, 0x64, 0x69, 0x6f, 0x18, 0x06, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, 0x49, + 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x41, 0x75, 0x64, 0x69, 0x6f, 0x4f, 0x70, 0x74, 0x69, 0x6f, + 0x6e, 0x73, 0x52, 0x05, 0x61, 0x75, 0x64, 0x69, 0x6f, 0x12, 0x32, 0x0a, 0x05, 0x76, 0x69, 0x64, + 0x65, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, + 0x69, 0x74, 0x2e, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4f, + 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x05, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x12, 0x1d, 0x0a, + 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x48, 0x02, + 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x88, 0x01, 0x01, 0x42, 0x15, 0x0a, 0x13, + 0x5f, 0x62, 0x79, 0x70, 0x61, 0x73, 0x73, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x63, 0x6f, 0x64, + 0x69, 0x6e, 0x67, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x74, + 0x72, 0x61, 0x6e, 0x73, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x65, + 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x50, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, + 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, + 0x72, 0x6f, 0x6f, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x08, 0x72, 0x6f, 0x6f, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x6e, 0x67, + 0x72, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x69, + 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x49, 0x64, 0x22, 0x41, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, + 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, + 0x2a, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, - 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x44, 0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, - 0x67, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1d, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, - 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, 0x49, - 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x48, 0x0a, 0x0b, 0x4c, 0x69, - 0x73, 0x74, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1b, 0x2e, 0x6c, 0x69, 0x76, 0x65, - 0x6b, 0x69, 0x74, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, - 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x44, 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x6e, - 0x67, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1d, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, - 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, 0x49, - 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x46, 0x5a, 0x23, 0x67, 0x69, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, - 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2f, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, - 0x74, 0xaa, 0x02, 0x0d, 0x4c, 0x69, 0x76, 0x65, 0x4b, 0x69, 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x74, - 0x6f, 0xea, 0x02, 0x0e, 0x4c, 0x69, 0x76, 0x65, 0x4b, 0x69, 0x74, 0x3a, 0x3a, 0x50, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x22, 0x35, 0x0a, 0x14, 0x44, + 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x5f, 0x69, + 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x69, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, + 0x49, 0x64, 0x2a, 0x3d, 0x0a, 0x0c, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x70, + 0x75, 0x74, 0x12, 0x0e, 0x0a, 0x0a, 0x52, 0x54, 0x4d, 0x50, 0x5f, 0x49, 0x4e, 0x50, 0x55, 0x54, + 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x57, 0x48, 0x49, 0x50, 0x5f, 0x49, 0x4e, 0x50, 0x55, 0x54, + 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x55, 0x52, 0x4c, 0x5f, 0x49, 0x4e, 0x50, 0x55, 0x54, 0x10, + 0x02, 0x2a, 0x49, 0x0a, 0x1a, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x41, 0x75, 0x64, 0x69, + 0x6f, 0x45, 0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x65, 0x73, 0x65, 0x74, 0x12, + 0x16, 0x0a, 0x12, 0x4f, 0x50, 0x55, 0x53, 0x5f, 0x53, 0x54, 0x45, 0x52, 0x45, 0x4f, 0x5f, 0x39, + 0x36, 0x4b, 0x42, 0x50, 0x53, 0x10, 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x4f, 0x50, 0x55, 0x53, 0x5f, + 0x4d, 0x4f, 0x4e, 0x4f, 0x5f, 0x36, 0x34, 0x4b, 0x42, 0x53, 0x10, 0x01, 0x2a, 0x84, 0x03, 0x0a, + 0x1a, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x45, 0x6e, 0x63, + 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x65, 0x73, 0x65, 0x74, 0x12, 0x1c, 0x0a, 0x18, 0x48, + 0x32, 0x36, 0x34, 0x5f, 0x37, 0x32, 0x30, 0x50, 0x5f, 0x33, 0x30, 0x46, 0x50, 0x53, 0x5f, 0x33, + 0x5f, 0x4c, 0x41, 0x59, 0x45, 0x52, 0x53, 0x10, 0x00, 0x12, 0x1d, 0x0a, 0x19, 0x48, 0x32, 0x36, + 0x34, 0x5f, 0x31, 0x30, 0x38, 0x30, 0x50, 0x5f, 0x33, 0x30, 0x46, 0x50, 0x53, 0x5f, 0x33, 0x5f, + 0x4c, 0x41, 0x59, 0x45, 0x52, 0x53, 0x10, 0x01, 0x12, 0x1c, 0x0a, 0x18, 0x48, 0x32, 0x36, 0x34, + 0x5f, 0x35, 0x34, 0x30, 0x50, 0x5f, 0x32, 0x35, 0x46, 0x50, 0x53, 0x5f, 0x32, 0x5f, 0x4c, 0x41, + 0x59, 0x45, 0x52, 0x53, 0x10, 0x02, 0x12, 0x1b, 0x0a, 0x17, 0x48, 0x32, 0x36, 0x34, 0x5f, 0x37, + 0x32, 0x30, 0x50, 0x5f, 0x33, 0x30, 0x46, 0x50, 0x53, 0x5f, 0x31, 0x5f, 0x4c, 0x41, 0x59, 0x45, + 0x52, 0x10, 0x03, 0x12, 0x1c, 0x0a, 0x18, 0x48, 0x32, 0x36, 0x34, 0x5f, 0x31, 0x30, 0x38, 0x30, + 0x50, 0x5f, 0x33, 0x30, 0x46, 0x50, 0x53, 0x5f, 0x31, 0x5f, 0x4c, 0x41, 0x59, 0x45, 0x52, 0x10, + 0x04, 0x12, 0x28, 0x0a, 0x24, 0x48, 0x32, 0x36, 0x34, 0x5f, 0x37, 0x32, 0x30, 0x50, 0x5f, 0x33, + 0x30, 0x46, 0x50, 0x53, 0x5f, 0x33, 0x5f, 0x4c, 0x41, 0x59, 0x45, 0x52, 0x53, 0x5f, 0x48, 0x49, + 0x47, 0x48, 0x5f, 0x4d, 0x4f, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x05, 0x12, 0x29, 0x0a, 0x25, 0x48, + 0x32, 0x36, 0x34, 0x5f, 0x31, 0x30, 0x38, 0x30, 0x50, 0x5f, 0x33, 0x30, 0x46, 0x50, 0x53, 0x5f, + 0x33, 0x5f, 0x4c, 0x41, 0x59, 0x45, 0x52, 0x53, 0x5f, 0x48, 0x49, 0x47, 0x48, 0x5f, 0x4d, 0x4f, + 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x06, 0x12, 0x28, 0x0a, 0x24, 0x48, 0x32, 0x36, 0x34, 0x5f, 0x35, + 0x34, 0x30, 0x50, 0x5f, 0x32, 0x35, 0x46, 0x50, 0x53, 0x5f, 0x32, 0x5f, 0x4c, 0x41, 0x59, 0x45, + 0x52, 0x53, 0x5f, 0x48, 0x49, 0x47, 0x48, 0x5f, 0x4d, 0x4f, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x07, + 0x12, 0x27, 0x0a, 0x23, 0x48, 0x32, 0x36, 0x34, 0x5f, 0x37, 0x32, 0x30, 0x50, 0x5f, 0x33, 0x30, + 0x46, 0x50, 0x53, 0x5f, 0x31, 0x5f, 0x4c, 0x41, 0x59, 0x45, 0x52, 0x5f, 0x48, 0x49, 0x47, 0x48, + 0x5f, 0x4d, 0x4f, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x08, 0x12, 0x28, 0x0a, 0x24, 0x48, 0x32, 0x36, + 0x34, 0x5f, 0x31, 0x30, 0x38, 0x30, 0x50, 0x5f, 0x33, 0x30, 0x46, 0x50, 0x53, 0x5f, 0x31, 0x5f, + 0x4c, 0x41, 0x59, 0x45, 0x52, 0x5f, 0x48, 0x49, 0x47, 0x48, 0x5f, 0x4d, 0x4f, 0x54, 0x49, 0x4f, + 0x4e, 0x10, 0x09, 0x32, 0xa5, 0x02, 0x0a, 0x07, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x12, + 0x44, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, + 0x12, 0x1d, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, + 0x65, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, + 0x14, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, + 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x44, 0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, + 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1d, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, + 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, + 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x48, 0x0a, 0x0b, 0x4c, + 0x69, 0x73, 0x74, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1b, 0x2e, 0x6c, 0x69, 0x76, + 0x65, 0x6b, 0x69, 0x74, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, + 0x74, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x44, 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, + 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1d, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, + 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, 0x74, 0x2e, + 0x49, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x46, 0x5a, 0x23, 0x67, + 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6c, 0x69, 0x76, 0x65, 0x6b, 0x69, + 0x74, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2f, 0x6c, 0x69, 0x76, 0x65, 0x6b, + 0x69, 0x74, 0xaa, 0x02, 0x0d, 0x4c, 0x69, 0x76, 0x65, 0x4b, 0x69, 0x74, 0x2e, 0x50, 0x72, 0x6f, + 0x74, 0x6f, 0xea, 0x02, 0x0e, 0x4c, 0x69, 0x76, 0x65, 0x4b, 0x69, 0x74, 0x3a, 0x3a, 0x50, 0x72, + 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/livekit/livekit_ingress.twirp.go b/livekit/livekit_ingress.twirp.go index 68b4222..a711d1f 100644 --- a/livekit/livekit_ingress.twirp.go +++ b/livekit/livekit_ingress.twirp.go @@ -1356,99 +1356,98 @@ func (s *ingressServer) PathPrefix() string { } var twirpFileDescriptor2 = []byte{ - // 1490 bytes of a gzipped FileDescriptorProto + // 1485 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0x4d, 0x6f, 0xdb, 0x46, 0x13, 0x36, 0xf5, 0xad, 0x51, 0x24, 0x2b, 0x6b, 0x39, 0x61, 0xfc, 0x81, 0xd7, 0x50, 0xf2, 0x22, - 0x8e, 0x53, 0x28, 0xb6, 0xe2, 0xb8, 0x6d, 0x80, 0x00, 0xb5, 0x6c, 0x39, 0x22, 0x6c, 0x4b, 0xc2, - 0x4a, 0x4e, 0xd1, 0x5e, 0x08, 0x5a, 0xdc, 0xd8, 0x44, 0x24, 0x51, 0x25, 0x57, 0x6e, 0x8c, 0x5e, - 0x7b, 0xc8, 0x0f, 0xe8, 0xb9, 0x3d, 0xb4, 0xbd, 0xe4, 0xd6, 0xbf, 0x55, 0xf4, 0xdc, 0x73, 0xb1, - 0x1f, 0xa4, 0x49, 0x89, 0x0a, 0xec, 0xb6, 0x28, 0x72, 0xd3, 0xcc, 0x33, 0x33, 0x9c, 0xdd, 0x99, - 0x79, 0x66, 0x21, 0x58, 0xec, 0x5b, 0x17, 0xe4, 0x8d, 0x45, 0x75, 0x6b, 0x78, 0xe6, 0x10, 0xd7, - 0xad, 0x8c, 0x1c, 0x9b, 0xda, 0x28, 0x2d, 0xd5, 0x4b, 0x25, 0x0f, 0x1f, 0xd8, 0x26, 0xe9, 0x4b, - 0xb8, 0xfc, 0x5b, 0x02, 0x4a, 0x7b, 0x0e, 0x31, 0x28, 0xd1, 0x84, 0x1b, 0x26, 0xdf, 0x8c, 0x89, - 0x4b, 0xd1, 0x36, 0x80, 0x35, 0x1c, 0x8d, 0xa9, 0x4e, 0x2f, 0x47, 0x44, 0x55, 0xd6, 0x94, 0xf5, - 0x42, 0x75, 0xb1, 0x22, 0x63, 0x54, 0xa4, 0xb1, 0xc6, 0x2c, 0x70, 0x96, 0x1b, 0x76, 0x2f, 0x47, - 0x04, 0x15, 0x21, 0x3e, 0x76, 0xfa, 0x6a, 0x76, 0x4d, 0x59, 0xcf, 0x62, 0xf6, 0x13, 0x21, 0x48, - 0x0c, 0x8d, 0x01, 0x51, 0x63, 0x5c, 0xc5, 0x7f, 0xa3, 0x65, 0xc8, 0x3a, 0xb6, 0x3d, 0xd0, 0x39, - 0x10, 0xe7, 0x40, 0x86, 0x29, 0x9a, 0x0c, 0xdc, 0x82, 0xd2, 0xc8, 0x70, 0xa8, 0xd5, 0xb3, 0x46, - 0xc6, 0x90, 0xea, 0x96, 0x49, 0x86, 0xd4, 0xa2, 0x97, 0x6a, 0x82, 0xdb, 0x2d, 0x04, 0x30, 0x4d, - 0x42, 0xe8, 0x11, 0x14, 0x83, 0x2e, 0x3c, 0x6c, 0x92, 0x9b, 0xcf, 0x07, 0xf4, 0x51, 0xd1, 0x07, - 0x84, 0x1a, 0xa6, 0x41, 0x0d, 0x15, 0xa6, 0xa2, 0x1f, 0x4b, 0x08, 0x6d, 0x01, 0x3a, 0xbd, 0x1c, - 0x19, 0xae, 0xab, 0x53, 0xc7, 0x18, 0xba, 0x3d, 0xdb, 0xb4, 0x86, 0x67, 0x6a, 0x66, 0x4d, 0x59, - 0xcf, 0xd4, 0x62, 0xaa, 0x82, 0x6f, 0x0b, 0xb4, 0x7b, 0x05, 0xa2, 0x2a, 0x20, 0x32, 0x34, 0x4e, - 0xfb, 0x24, 0xe4, 0x92, 0x63, 0x2e, 0x8d, 0x39, 0x7c, 0x5b, 0x60, 0x01, 0x87, 0x77, 0x8a, 0x82, - 0xaa, 0x90, 0x34, 0xc6, 0xa6, 0x65, 0xab, 0xa9, 0x35, 0x65, 0x3d, 0x57, 0x5d, 0x99, 0xbc, 0xeb, - 0x5d, 0x06, 0xb6, 0x46, 0xd4, 0xb2, 0x87, 0x2e, 0x16, 0xa6, 0xcc, 0xe7, 0xc2, 0x32, 0x89, 0xad, - 0xa6, 0xa3, 0x7d, 0x5e, 0x31, 0xd0, 0xf7, 0xe1, 0xa6, 0x68, 0x15, 0xd2, 0xe2, 0xfb, 0xa6, 0x7a, - 0x8b, 0x27, 0xa4, 0x60, 0x4f, 0xf1, 0x4e, 0x51, 0x6a, 0x8b, 0xb0, 0xa0, 0x4f, 0xe7, 0x5e, 0x03, - 0xc8, 0x48, 0xb5, 0x59, 0xfe, 0x43, 0x81, 0x85, 0x88, 0xa4, 0xfc, 0x52, 0x2b, 0x81, 0x52, 0x7f, - 0x02, 0x29, 0xd7, 0x1e, 0x3b, 0x3d, 0xd1, 0x00, 0x85, 0x6a, 0xc9, 0x4f, 0xb1, 0xeb, 0x18, 0xbd, - 0x37, 0x1d, 0x8e, 0x61, 0x69, 0x83, 0x5e, 0x40, 0x6a, 0xe4, 0x10, 0x97, 0x50, 0xde, 0x15, 0x85, - 0xea, 0xfd, 0xc8, 0x4b, 0xa8, 0x0f, 0x45, 0x52, 0x6d, 0x6e, 0xda, 0x98, 0xc3, 0xd2, 0x09, 0x7d, - 0x01, 0x69, 0x5b, 0xe4, 0xc2, 0xbb, 0x25, 0x57, 0x7d, 0xf0, 0x41, 0x7f, 0x99, 0x77, 0x63, 0x0e, - 0x7b, 0x6e, 0x35, 0x04, 0x45, 0x22, 0x51, 0x5d, 0xea, 0x82, 0xc7, 0x0d, 0xde, 0xe7, 0x7f, 0x71, - 0x5c, 0xfe, 0xbd, 0x7f, 0x70, 0xdc, 0x90, 0xff, 0x35, 0x8f, 0xfb, 0x5e, 0x81, 0xe5, 0x0f, 0xdc, - 0x16, 0xda, 0x86, 0x1c, 0x6f, 0x3e, 0xbd, 0x67, 0x9b, 0xa4, 0x27, 0x99, 0x61, 0xc1, 0xff, 0x32, - 0xf7, 0xd9, 0x63, 0x10, 0x06, 0xc3, 0xff, 0x8d, 0x54, 0x48, 0x9f, 0x5a, 0xd4, 0x31, 0xa8, 0xb8, - 0x99, 0x3c, 0xf6, 0x44, 0xf4, 0x3f, 0xc8, 0x99, 0x96, 0xcb, 0x1b, 0xce, 0xa4, 0x6f, 0xf9, 0x4d, - 0x64, 0x30, 0x48, 0xd5, 0x3e, 0x7d, 0x8b, 0x96, 0x20, 0xd3, 0x3b, 0x37, 0x86, 0x43, 0xd2, 0x17, - 0xe7, 0xcc, 0x63, 0x5f, 0x2e, 0xff, 0x74, 0x95, 0x6c, 0xd4, 0x59, 0x59, 0xb2, 0xbc, 0xeb, 0x67, - 0x24, 0xcb, 0x7d, 0x64, 0xb2, 0x17, 0xfe, 0x6f, 0xb4, 0x0a, 0xf0, 0xda, 0x31, 0x06, 0x44, 0xf7, - 0xf3, 0x55, 0x70, 0x96, 0x6b, 0x30, 0xcb, 0xf8, 0x31, 0xa4, 0xfa, 0xc6, 0x25, 0x71, 0x5c, 0x35, - 0xbe, 0x16, 0x5f, 0xcf, 0x4d, 0xc6, 0x3b, 0x62, 0x18, 0x96, 0x26, 0xe5, 0x1f, 0x93, 0x90, 0xf3, - 0xd9, 0xf2, 0x35, 0x1b, 0x3f, 0x90, 0x04, 0xad, 0x5b, 0xa6, 0xec, 0x9d, 0xac, 0xd4, 0x68, 0x66, - 0x24, 0x5d, 0xae, 0x02, 0xb8, 0xd4, 0x21, 0xc6, 0x40, 0x7f, 0x43, 0x2e, 0x25, 0x5f, 0x66, 0x85, - 0xe6, 0x90, 0x5c, 0x7a, 0x9c, 0x9b, 0xb8, 0xe2, 0xdc, 0x30, 0x77, 0x27, 0xaf, 0xc9, 0xdd, 0xd1, - 0x3c, 0x97, 0xbf, 0x39, 0xcf, 0xcd, 0x7f, 0x14, 0x3c, 0x17, 0x5a, 0x32, 0x99, 0x6b, 0x2e, 0x99, - 0xec, 0xcd, 0x96, 0x0c, 0xdc, 0x6c, 0xc9, 0x14, 0x66, 0x2f, 0x99, 0x25, 0xc8, 0x38, 0x64, 0xcc, - 0x7b, 0x5e, 0xec, 0x09, 0xec, 0xcb, 0xe8, 0x31, 0x24, 0x5d, 0xca, 0x3a, 0xf1, 0x16, 0x3f, 0xfd, - 0x54, 0x25, 0x3b, 0x0c, 0xc4, 0xc2, 0x86, 0x0d, 0x9a, 0x47, 0xef, 0x45, 0x1e, 0xc7, 0x13, 0x67, - 0x30, 0x7b, 0xf9, 0xcf, 0x38, 0xdc, 0x0a, 0x06, 0x42, 0xdb, 0x90, 0x62, 0xa1, 0xc6, 0xae, 0x1c, - 0x97, 0x95, 0xc8, 0xef, 0x55, 0x3a, 0xdc, 0x06, 0x4b, 0x5b, 0x54, 0x82, 0x24, 0x71, 0x1c, 0xdb, - 0x91, 0x9d, 0x2b, 0x04, 0x54, 0xf1, 0x0a, 0x17, 0xe7, 0xa9, 0xab, 0x81, 0x50, 0xa3, 0x31, 0xe5, - 0x65, 0x93, 0xd9, 0x8b, 0xa2, 0x55, 0xbc, 0xe6, 0x48, 0x44, 0xd9, 0xf3, 0xd6, 0x90, 0xf6, 0xa2, - 0x31, 0xee, 0x42, 0x9a, 0x17, 0xd9, 0x32, 0xe5, 0xc2, 0x4f, 0x31, 0x51, 0x33, 0xc5, 0xcc, 0x18, - 0x0e, 0x25, 0xa6, 0x6e, 0x50, 0xde, 0x36, 0x71, 0x36, 0x33, 0x5c, 0xb3, 0x4b, 0xd1, 0x3d, 0xc8, - 0x90, 0xa1, 0x29, 0xc0, 0x0c, 0x07, 0xd3, 0x5c, 0xde, 0xa5, 0xcc, 0x73, 0x3c, 0x32, 0x0d, 0xe9, - 0x09, 0xc2, 0x53, 0x6a, 0x76, 0x29, 0xa3, 0x2b, 0x87, 0x08, 0xfe, 0x66, 0x5f, 0x15, 0x0d, 0x03, - 0x9e, 0x4a, 0x33, 0xd1, 0x06, 0xa4, 0x28, 0xe3, 0x7a, 0x57, 0x4d, 0x71, 0x76, 0x40, 0xe1, 0x15, - 0xc0, 0x48, 0x00, 0x4b, 0x8b, 0xf2, 0x77, 0x90, 0x12, 0xd7, 0x88, 0x16, 0xe1, 0x76, 0xbd, 0xb9, - 0xdf, 0x6e, 0x69, 0xcd, 0xae, 0xae, 0x35, 0x77, 0xf7, 0xba, 0xda, 0xab, 0x7a, 0x71, 0x0e, 0xdd, - 0x01, 0xe4, 0xab, 0x6b, 0x27, 0x07, 0x07, 0x75, 0xac, 0x35, 0x5f, 0x16, 0x15, 0x74, 0x17, 0x16, - 0x7c, 0x7d, 0xfb, 0xa4, 0x76, 0xa4, 0x75, 0x1a, 0x0c, 0x88, 0x21, 0x04, 0x05, 0x1f, 0xa8, 0x63, - 0xdc, 0xc2, 0xc5, 0x78, 0x28, 0xf6, 0x5e, 0xeb, 0xb8, 0x7d, 0x54, 0xef, 0xd6, 0x8b, 0x89, 0xf2, - 0xcf, 0x0a, 0xcc, 0x4f, 0x94, 0x81, 0x0d, 0xcd, 0xc0, 0x1a, 0x90, 0xab, 0x47, 0x5f, 0x16, 0x67, - 0x98, 0x82, 0x13, 0xc4, 0x43, 0x98, 0x37, 0x2e, 0x88, 0x63, 0x9c, 0x11, 0x3d, 0xcc, 0xe5, 0x05, - 0xa9, 0xae, 0x49, 0x4a, 0x2f, 0x41, 0xf2, 0x5b, 0xcb, 0xa4, 0xe7, 0xbc, 0xea, 0x79, 0x2c, 0x04, - 0x74, 0x07, 0x52, 0xe7, 0xc4, 0x3a, 0x3b, 0xa7, 0x92, 0xc5, 0xa5, 0x84, 0x56, 0x40, 0x70, 0x2b, - 0x0f, 0x98, 0x0c, 0x90, 0x2d, 0x53, 0x94, 0x7f, 0xf0, 0xb2, 0xbc, 0x2a, 0xfe, 0xbf, 0x94, 0x65, - 0x70, 0xaf, 0xc4, 0xc3, 0x7b, 0x85, 0x55, 0xd9, 0x35, 0x06, 0xa3, 0xbe, 0x5c, 0x01, 0x22, 0x61, - 0x10, 0x2a, 0xb6, 0x03, 0xca, 0xbf, 0x24, 0xa0, 0x74, 0xc2, 0x9b, 0x62, 0xe2, 0xdd, 0xfc, 0x37, - 0xf8, 0xfd, 0x23, 0x7c, 0x0e, 0x67, 0x67, 0x33, 0xd5, 0xce, 0x87, 0x9f, 0xc3, 0x8c, 0xf7, 0xa7, - 0x16, 0x85, 0xe0, 0xfd, 0xa8, 0x5d, 0x01, 0xf2, 0x09, 0xfa, 0xd1, 0xbc, 0x89, 0xc5, 0x23, 0x3d, - 0x36, 0xf5, 0x26, 0x9e, 0x3e, 0xf3, 0x75, 0x9e, 0xca, 0x6d, 0x40, 0x47, 0x96, 0x4b, 0x27, 0x7a, - 0x24, 0x54, 0x70, 0x65, 0xa2, 0xe0, 0xe1, 0x06, 0x8a, 0x4d, 0x34, 0x50, 0x79, 0x17, 0x16, 0x42, - 0x11, 0xdd, 0x91, 0x3d, 0x74, 0x09, 0xda, 0x80, 0xa4, 0x45, 0xc9, 0x80, 0x71, 0x36, 0x23, 0x9d, - 0xd2, 0xf4, 0xb6, 0x7f, 0x6d, 0x63, 0x61, 0x52, 0x7e, 0x06, 0xa5, 0x7d, 0xd2, 0x27, 0x37, 0x6c, - 0xdd, 0x8d, 0x17, 0xfe, 0x9e, 0xe0, 0xf3, 0x88, 0x0a, 0x00, 0xb8, 0x7b, 0xdc, 0xd6, 0xb5, 0x66, - 0xfb, 0xa4, 0x5b, 0x9c, 0x63, 0xf2, 0x97, 0x0d, 0xcd, 0x93, 0x15, 0x94, 0x87, 0xec, 0x09, 0x3e, - 0x92, 0x62, 0x6c, 0x43, 0x83, 0xa5, 0xd9, 0x8f, 0x78, 0x46, 0x74, 0xad, 0xf6, 0x49, 0x47, 0xef, - 0x74, 0xeb, 0xb8, 0xde, 0xd2, 0x3f, 0xdf, 0x39, 0xac, 0xb5, 0x3b, 0xc5, 0x39, 0xb4, 0x00, 0xf3, - 0x5c, 0x7f, 0xdc, 0x6a, 0xb6, 0xf4, 0x9d, 0xed, 0xc3, 0x5a, 0xa7, 0xa8, 0x6c, 0x7c, 0x1f, 0xf7, - 0x63, 0x45, 0xbc, 0x90, 0xd1, 0x0a, 0xa8, 0x8d, 0xea, 0xce, 0xb6, 0xfe, 0x69, 0x75, 0xb3, 0xad, - 0x3f, 0xdd, 0x3c, 0x68, 0x77, 0xf4, 0xa7, 0xfa, 0xd1, 0xee, 0x57, 0x75, 0xcc, 0x22, 0xae, 0xc2, - 0x3d, 0x8e, 0x6e, 0x6d, 0x7e, 0x36, 0x0d, 0x2b, 0xbe, 0xf3, 0xb3, 0xed, 0xcd, 0xb6, 0x5e, 0x7d, - 0xc6, 0xd0, 0xaa, 0x87, 0xc6, 0xd0, 0x32, 0xdc, 0x9d, 0x0c, 0xbd, 0x25, 0xd0, 0x62, 0xdc, 0x77, - 0x0d, 0x46, 0xf6, 0xd0, 0x04, 0x5a, 0x87, 0x07, 0xb3, 0xb2, 0xd2, 0x1b, 0xda, 0xcb, 0x86, 0x7e, - 0xdc, 0xea, 0x6a, 0xad, 0x66, 0x31, 0x89, 0x1e, 0xc1, 0xff, 0x67, 0x66, 0x18, 0x32, 0x4d, 0xf9, - 0x41, 0x23, 0xb2, 0x0d, 0x59, 0xa6, 0xd1, 0x43, 0xb8, 0x3f, 0x23, 0xf3, 0x90, 0x61, 0xc6, 0x0f, - 0x19, 0x71, 0x8a, 0x90, 0x65, 0xb6, 0xfa, 0x6b, 0x0c, 0xd2, 0xb2, 0x0c, 0x68, 0x1f, 0xf2, 0xa1, - 0xbf, 0x11, 0xd0, 0xaa, 0xdf, 0x81, 0x51, 0x7f, 0x2f, 0x2c, 0x45, 0x36, 0x28, 0x8b, 0x12, 0x22, - 0xd5, 0x40, 0x94, 0x28, 0xb2, 0x9d, 0x11, 0xa5, 0x01, 0xb9, 0xc0, 0x88, 0xa0, 0x65, 0xdf, 0x68, - 0x7a, 0x14, 0x97, 0x56, 0xa2, 0x41, 0x39, 0x55, 0xfb, 0x90, 0x0f, 0x4d, 0x4a, 0x20, 0x9f, 0xa8, - 0x09, 0x8a, 0xce, 0xa7, 0x76, 0xf0, 0xf5, 0xfd, 0x33, 0x8b, 0x9e, 0x8f, 0x4f, 0x2b, 0x3d, 0x7b, - 0xf0, 0x44, 0x5a, 0x3c, 0xe1, 0xff, 0xbf, 0xf4, 0xec, 0xbe, 0xa7, 0x78, 0x1f, 0xcb, 0x1f, 0x59, - 0x17, 0xe4, 0xd0, 0xa2, 0x95, 0x36, 0x83, 0x7e, 0x8f, 0x15, 0xa4, 0xfc, 0xfc, 0x39, 0x57, 0x9c, - 0xa6, 0xb8, 0xcb, 0xd3, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x47, 0x5d, 0x51, 0x10, 0xea, 0x11, - 0x00, 0x00, + 0x8e, 0xf3, 0x42, 0xb1, 0x15, 0xc7, 0x6f, 0x1b, 0x20, 0x40, 0x2d, 0x5b, 0x8e, 0x08, 0xdb, 0x92, + 0xb0, 0x92, 0x53, 0xb4, 0x17, 0x82, 0x16, 0x37, 0x36, 0x11, 0x89, 0x54, 0xc9, 0x95, 0x1b, 0xa3, + 0xd7, 0x1e, 0xf2, 0x03, 0x7a, 0xef, 0xa1, 0xed, 0x25, 0x97, 0xa2, 0x7f, 0xab, 0xe8, 0xb9, 0xe7, + 0x62, 0x3f, 0x44, 0x93, 0x12, 0x15, 0xd8, 0x69, 0x51, 0xe4, 0xa6, 0x9d, 0x67, 0x66, 0xf8, 0xec, + 0xce, 0xec, 0x33, 0x0b, 0xc1, 0x62, 0xdf, 0xba, 0x20, 0x6f, 0x2c, 0xaa, 0x5b, 0xf6, 0x99, 0x4b, + 0x3c, 0xaf, 0x32, 0x74, 0x1d, 0xea, 0xa0, 0xb4, 0x34, 0x2f, 0x95, 0xc6, 0xf8, 0xc0, 0x31, 0x49, + 0x5f, 0xc2, 0xe5, 0xdf, 0x12, 0x50, 0xda, 0x73, 0x89, 0x41, 0x89, 0x26, 0xc2, 0x30, 0xf9, 0x66, + 0x44, 0x3c, 0x8a, 0xb6, 0x01, 0x2c, 0x7b, 0x38, 0xa2, 0x3a, 0xbd, 0x1c, 0x12, 0x55, 0x59, 0x53, + 0xd6, 0x0b, 0xd5, 0xc5, 0x8a, 0xcc, 0x51, 0x91, 0xce, 0x1a, 0xf3, 0xc0, 0x59, 0xee, 0xd8, 0xbd, + 0x1c, 0x12, 0x54, 0x84, 0xf8, 0xc8, 0xed, 0xab, 0xd9, 0x35, 0x65, 0x3d, 0x8b, 0xd9, 0x4f, 0x84, + 0x20, 0x61, 0x1b, 0x03, 0xa2, 0xc6, 0xb8, 0x89, 0xff, 0x46, 0xcb, 0x90, 0x75, 0x1d, 0x67, 0xa0, + 0x73, 0x20, 0xce, 0x81, 0x0c, 0x33, 0x34, 0x19, 0xb8, 0x05, 0xa5, 0xa1, 0xe1, 0x52, 0xab, 0x67, + 0x0d, 0x0d, 0x9b, 0xea, 0x96, 0x49, 0x6c, 0x6a, 0xd1, 0x4b, 0x35, 0xc1, 0xfd, 0x16, 0x02, 0x98, + 0x26, 0x21, 0xf4, 0x08, 0x8a, 0xc1, 0x10, 0x9e, 0x36, 0xc9, 0xdd, 0xe7, 0x03, 0xf6, 0xa8, 0xec, + 0x03, 0x42, 0x0d, 0xd3, 0xa0, 0x86, 0x0a, 0x53, 0xd9, 0x8f, 0x25, 0x84, 0xb6, 0x00, 0x9d, 0x5e, + 0x0e, 0x0d, 0xcf, 0xd3, 0xa9, 0x6b, 0xd8, 0x5e, 0xcf, 0x31, 0x2d, 0xfb, 0x4c, 0xcd, 0xac, 0x29, + 0xeb, 0x99, 0x5a, 0x4c, 0x55, 0xf0, 0x6d, 0x81, 0x76, 0xaf, 0x40, 0x54, 0x05, 0x44, 0x6c, 0xe3, + 0xb4, 0x4f, 0x42, 0x21, 0x39, 0x16, 0xd2, 0x98, 0xc3, 0xb7, 0x05, 0x16, 0x08, 0x78, 0xa7, 0x28, + 0xa8, 0x0a, 0x49, 0x63, 0x64, 0x5a, 0x8e, 0x9a, 0x5a, 0x53, 0xd6, 0x73, 0xd5, 0x95, 0xc9, 0xb3, + 0xde, 0x65, 0x60, 0x6b, 0x48, 0x2d, 0xc7, 0xf6, 0xb0, 0x70, 0x65, 0x31, 0x17, 0x96, 0x49, 0x1c, + 0x35, 0x1d, 0x1d, 0xf3, 0x8a, 0x81, 0x7e, 0x0c, 0x77, 0x45, 0xab, 0x90, 0x16, 0xdf, 0x37, 0xd5, + 0x5b, 0x9c, 0x90, 0x82, 0xc7, 0x86, 0x77, 0x8a, 0x52, 0x5b, 0x84, 0x05, 0x7d, 0x9a, 0x7b, 0x0d, + 0x20, 0x23, 0xcd, 0x66, 0xf9, 0x0f, 0x05, 0x16, 0x22, 0x48, 0xf9, 0xa5, 0x56, 0x02, 0xa5, 0xfe, + 0x1f, 0xa4, 0x3c, 0x67, 0xe4, 0xf6, 0x44, 0x03, 0x14, 0xaa, 0x25, 0x9f, 0x62, 0xd7, 0x35, 0x7a, + 0x6f, 0x3a, 0x1c, 0xc3, 0xd2, 0x07, 0xbd, 0x80, 0xd4, 0xd0, 0x25, 0x1e, 0xa1, 0xbc, 0x2b, 0x0a, + 0xd5, 0xfb, 0x91, 0x87, 0x50, 0xb7, 0x05, 0xa9, 0x36, 0x77, 0x6d, 0xcc, 0x61, 0x19, 0x84, 0xbe, + 0x80, 0xb4, 0x23, 0xb8, 0xf0, 0x6e, 0xc9, 0x55, 0x1f, 0x7c, 0x30, 0x5e, 0xf2, 0x6e, 0xcc, 0xe1, + 0x71, 0x58, 0x0d, 0x41, 0x91, 0x48, 0x54, 0x97, 0xb6, 0xe0, 0x76, 0x83, 0xe7, 0xf9, 0x6f, 0x6c, + 0x97, 0x7f, 0xef, 0x6f, 0x6c, 0x37, 0x14, 0x7f, 0xcd, 0xed, 0xbe, 0x57, 0x60, 0xf9, 0x03, 0xa7, + 0x85, 0xb6, 0x21, 0xc7, 0x9b, 0x4f, 0xef, 0x39, 0x26, 0xe9, 0x49, 0x65, 0x58, 0xf0, 0xbf, 0xcc, + 0x63, 0xf6, 0x18, 0x84, 0xc1, 0xf0, 0x7f, 0x23, 0x15, 0xd2, 0xa7, 0x16, 0x75, 0x0d, 0x2a, 0x4e, + 0x26, 0x8f, 0xc7, 0x4b, 0xf4, 0x1f, 0xc8, 0x99, 0x96, 0xc7, 0x1b, 0xce, 0xa4, 0x6f, 0xf9, 0x49, + 0x64, 0x30, 0x48, 0xd3, 0x3e, 0x7d, 0x8b, 0x96, 0x20, 0xd3, 0x3b, 0x37, 0x6c, 0x9b, 0xf4, 0xc5, + 0x3e, 0xf3, 0xd8, 0x5f, 0x97, 0x7f, 0xbc, 0x22, 0x1b, 0xb5, 0x57, 0x46, 0x96, 0x77, 0xfd, 0x0c, + 0xb2, 0x3c, 0x46, 0x92, 0xbd, 0xf0, 0x7f, 0xa3, 0x55, 0x80, 0xd7, 0xae, 0x31, 0x20, 0xba, 0xcf, + 0x57, 0xc1, 0x59, 0x6e, 0xc1, 0x8c, 0xf1, 0x63, 0x48, 0xf5, 0x8d, 0x4b, 0xe2, 0x7a, 0x6a, 0x7c, + 0x2d, 0xbe, 0x9e, 0x9b, 0xcc, 0x77, 0xc4, 0x30, 0x2c, 0x5d, 0xca, 0xbf, 0x26, 0x21, 0xe7, 0xab, + 0xe5, 0x6b, 0x76, 0xfd, 0x40, 0x0a, 0xb4, 0x6e, 0x99, 0xb2, 0x77, 0xb2, 0xd2, 0xa2, 0x99, 0x91, + 0x72, 0xb9, 0x0a, 0xe0, 0x51, 0x97, 0x18, 0x03, 0xfd, 0x0d, 0xb9, 0x94, 0x7a, 0x99, 0x15, 0x96, + 0x43, 0x72, 0x39, 0xd6, 0xdc, 0xc4, 0x95, 0xe6, 0x86, 0xb5, 0x3b, 0x79, 0x4d, 0xed, 0x8e, 0xd6, + 0xb9, 0xfc, 0xcd, 0x75, 0x6e, 0xfe, 0x93, 0xd0, 0xb9, 0xd0, 0x90, 0xc9, 0x5c, 0x73, 0xc8, 0x64, + 0x6f, 0x36, 0x64, 0xe0, 0x66, 0x43, 0xa6, 0x30, 0x7b, 0xc8, 0x2c, 0x41, 0xc6, 0x25, 0x23, 0xde, + 0xf3, 0x62, 0x4e, 0x60, 0x7f, 0x8d, 0x1e, 0x43, 0xd2, 0xa3, 0xac, 0x13, 0x6f, 0xf1, 0xdd, 0x4f, + 0x55, 0xb2, 0xc3, 0x40, 0x2c, 0x7c, 0x82, 0xf2, 0x5e, 0xfc, 0x38, 0x79, 0xff, 0x33, 0x0e, 0xb7, + 0x82, 0x99, 0xd1, 0x36, 0xa4, 0x58, 0xee, 0x91, 0x27, 0xef, 0xcf, 0x4a, 0x24, 0x81, 0x4a, 0x87, + 0xfb, 0x60, 0xe9, 0x8b, 0x4a, 0x90, 0x24, 0xae, 0xeb, 0xb8, 0xb2, 0x95, 0xc5, 0x02, 0x55, 0xc6, + 0x95, 0x8c, 0xf3, 0xbd, 0xa8, 0x81, 0x54, 0xc3, 0x11, 0xe5, 0x75, 0x94, 0xdb, 0x11, 0x55, 0xac, + 0x8c, 0xbb, 0x25, 0x11, 0xe5, 0xcf, 0x7b, 0x45, 0xfa, 0x8b, 0x4e, 0xb9, 0x0b, 0x69, 0x5e, 0x75, + 0xcb, 0x94, 0x2f, 0x80, 0x14, 0x5b, 0x6a, 0xa6, 0xb8, 0x44, 0x86, 0x4b, 0x89, 0xa9, 0x1b, 0x94, + 0xf7, 0x51, 0x9c, 0x5d, 0x22, 0x6e, 0xd9, 0xa5, 0xe8, 0x1e, 0x64, 0x88, 0x6d, 0x0a, 0x30, 0xc3, + 0xc1, 0x34, 0x5f, 0xef, 0x52, 0x16, 0x39, 0x1a, 0x9a, 0x86, 0x8c, 0x04, 0x11, 0x29, 0x2d, 0xbb, + 0x94, 0xe9, 0x97, 0x4b, 0x84, 0xa0, 0xb3, 0xaf, 0x8a, 0x0e, 0x82, 0xb1, 0x49, 0x33, 0xd1, 0x06, + 0xa4, 0x28, 0x13, 0x7f, 0x4f, 0x4d, 0x71, 0xb9, 0x40, 0xe1, 0x99, 0xc0, 0x54, 0x01, 0x4b, 0x8f, + 0xf2, 0x77, 0x90, 0x12, 0xc7, 0x88, 0x16, 0xe1, 0x76, 0xbd, 0xb9, 0xdf, 0x6e, 0x69, 0xcd, 0xae, + 0xae, 0x35, 0x77, 0xf7, 0xba, 0xda, 0xab, 0x7a, 0x71, 0x0e, 0xdd, 0x01, 0xe4, 0x9b, 0x6b, 0x27, + 0x07, 0x07, 0x75, 0xac, 0x35, 0x5f, 0x16, 0x15, 0x74, 0x17, 0x16, 0x7c, 0x7b, 0xfb, 0xa4, 0x76, + 0xa4, 0x75, 0x1a, 0x0c, 0x88, 0x21, 0x04, 0x05, 0x1f, 0xa8, 0x63, 0xdc, 0xc2, 0xc5, 0x78, 0x28, + 0xf7, 0x5e, 0xeb, 0xb8, 0x7d, 0x54, 0xef, 0xd6, 0x8b, 0x89, 0xf2, 0x4f, 0x0a, 0xcc, 0x4f, 0x94, + 0x81, 0xdd, 0xa2, 0x81, 0x35, 0x20, 0x57, 0xaf, 0xc0, 0x2c, 0xce, 0x30, 0x03, 0x57, 0x8c, 0x87, + 0x30, 0x6f, 0x5c, 0x10, 0xd7, 0x38, 0x23, 0x7a, 0x58, 0xdc, 0x0b, 0xd2, 0x5c, 0x93, 0x1a, 0x5f, + 0x82, 0xe4, 0xb7, 0x96, 0x49, 0xcf, 0x79, 0xd5, 0xf3, 0x58, 0x2c, 0xd0, 0x1d, 0x48, 0x9d, 0x13, + 0xeb, 0xec, 0x9c, 0x4a, 0x59, 0x97, 0x2b, 0xb4, 0x02, 0x42, 0x6c, 0x79, 0xc2, 0x64, 0x40, 0x7d, + 0x99, 0xa1, 0xfc, 0xc3, 0x98, 0xe5, 0x55, 0xf1, 0xff, 0x21, 0x96, 0xc1, 0x41, 0x13, 0x0f, 0x0f, + 0x1a, 0x56, 0x65, 0xcf, 0x18, 0x0c, 0xfb, 0x72, 0x26, 0x08, 0xc2, 0x20, 0x4c, 0x6c, 0x28, 0x94, + 0x7f, 0x4e, 0x40, 0xe9, 0x84, 0x37, 0xc5, 0xc4, 0x43, 0xfa, 0x23, 0x04, 0xff, 0x13, 0x7c, 0x1f, + 0x67, 0x67, 0x4b, 0xd7, 0xce, 0x87, 0xdf, 0xc7, 0x6c, 0x10, 0x4c, 0x4d, 0x0e, 0x31, 0x08, 0xa2, + 0x86, 0x07, 0x48, 0xd1, 0xfa, 0x64, 0x1e, 0xc9, 0xe2, 0xd5, 0x1e, 0x9b, 0x52, 0xd1, 0xe9, 0x3d, + 0x5f, 0x47, 0x5c, 0xdb, 0x80, 0x8e, 0x2c, 0x8f, 0x4e, 0xf4, 0x48, 0xa8, 0xe0, 0xca, 0x44, 0xc1, + 0xc3, 0x0d, 0x14, 0x9b, 0x68, 0xa0, 0xf2, 0x2e, 0x2c, 0x84, 0x32, 0x7a, 0x43, 0xc7, 0xf6, 0x08, + 0xda, 0x80, 0xa4, 0x45, 0xc9, 0x80, 0x69, 0x36, 0x13, 0x9d, 0xd2, 0xf4, 0xf8, 0x7f, 0xed, 0x60, + 0xe1, 0x52, 0x7e, 0x06, 0xa5, 0x7d, 0xd2, 0x27, 0x37, 0x6c, 0xdd, 0x8d, 0x17, 0xfe, 0x9c, 0xe0, + 0xf7, 0x11, 0x15, 0x00, 0x70, 0xf7, 0xb8, 0xad, 0x6b, 0xcd, 0xf6, 0x49, 0xb7, 0x38, 0xc7, 0xd6, + 0x5f, 0x36, 0xb4, 0xf1, 0x5a, 0x41, 0x79, 0xc8, 0x9e, 0xe0, 0x23, 0xb9, 0x8c, 0x6d, 0x68, 0xb0, + 0x34, 0xfb, 0x55, 0xcf, 0x84, 0xae, 0xd5, 0x3e, 0xe9, 0xe8, 0x9d, 0x6e, 0x1d, 0xd7, 0x5b, 0xfa, + 0xe7, 0x3b, 0x87, 0xb5, 0x76, 0xa7, 0x38, 0x87, 0x16, 0x60, 0x9e, 0xdb, 0x8f, 0x5b, 0xcd, 0x96, + 0xbe, 0xb3, 0x7d, 0x58, 0xeb, 0x14, 0x95, 0x8d, 0xef, 0xe3, 0x7e, 0xae, 0x88, 0x27, 0x33, 0x5a, + 0x01, 0xb5, 0x51, 0xdd, 0xd9, 0xd6, 0xff, 0x5f, 0xdd, 0x6c, 0xeb, 0x4f, 0x37, 0x0f, 0xda, 0x1d, + 0xfd, 0xa9, 0x7e, 0xb4, 0xfb, 0x55, 0x1d, 0xb3, 0x8c, 0xab, 0x70, 0x8f, 0xa3, 0x5b, 0x9b, 0x9f, + 0x4d, 0xc3, 0x8a, 0x1f, 0xfc, 0x6c, 0x7b, 0xb3, 0xad, 0x57, 0x9f, 0x31, 0xb4, 0x3a, 0x46, 0x63, + 0x68, 0x19, 0xee, 0x4e, 0xa6, 0xde, 0x12, 0x68, 0x31, 0xee, 0x87, 0x06, 0x33, 0x8f, 0xd1, 0x04, + 0x5a, 0x87, 0x07, 0xb3, 0x58, 0xe9, 0x0d, 0xed, 0x65, 0x43, 0x3f, 0x6e, 0x75, 0xb5, 0x56, 0xb3, + 0x98, 0x44, 0x8f, 0xe0, 0xbf, 0x33, 0x19, 0x86, 0x5c, 0x53, 0x7e, 0xd2, 0x08, 0xb6, 0x21, 0xcf, + 0x34, 0x7a, 0x08, 0xf7, 0x67, 0x30, 0x0f, 0x39, 0x66, 0xfc, 0x94, 0x11, 0xbb, 0x08, 0x79, 0x66, + 0xab, 0xbf, 0xc4, 0x20, 0x2d, 0xcb, 0x80, 0xf6, 0x21, 0x1f, 0xfa, 0x5f, 0x01, 0xad, 0xfa, 0x1d, + 0x18, 0xf5, 0x7f, 0xc3, 0x52, 0x64, 0x83, 0xb2, 0x2c, 0x21, 0x51, 0x0d, 0x64, 0x89, 0x12, 0xdb, + 0x19, 0x59, 0x1a, 0x90, 0x0b, 0x5c, 0x11, 0xb4, 0xec, 0x3b, 0x4d, 0x5f, 0xc5, 0xa5, 0x95, 0x68, + 0x50, 0xde, 0xaa, 0x7d, 0xc8, 0x87, 0x6e, 0x4a, 0x80, 0x4f, 0xd4, 0x0d, 0x8a, 0xe6, 0x53, 0x3b, + 0xf8, 0xfa, 0xfe, 0x99, 0x45, 0xcf, 0x47, 0xa7, 0x95, 0x9e, 0x33, 0x78, 0x22, 0x3d, 0x9e, 0xf0, + 0x3f, 0x64, 0x7a, 0x4e, 0x7f, 0x6c, 0x78, 0x1f, 0xcb, 0x1f, 0x59, 0x17, 0xe4, 0xd0, 0xa2, 0x95, + 0x36, 0x83, 0x7e, 0x8f, 0x15, 0xe4, 0xfa, 0xf9, 0x73, 0x6e, 0x38, 0x4d, 0xf1, 0x90, 0xa7, 0x7f, + 0x05, 0x00, 0x00, 0xff, 0xff, 0x22, 0x5c, 0x1b, 0x0e, 0xfb, 0x11, 0x00, 0x00, } diff --git a/livekit/livekit_internal.pb.go b/livekit/livekit_internal.pb.go index e5e7e20..c73067d 100644 --- a/livekit/livekit_internal.pb.go +++ b/livekit/livekit_internal.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: livekit_internal.proto diff --git a/livekit/livekit_metrics.pb.go b/livekit/livekit_metrics.pb.go index cca4b68..1004ecd 100644 --- a/livekit/livekit_metrics.pb.go +++ b/livekit/livekit_metrics.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: livekit_metrics.proto diff --git a/livekit/livekit_models.pb.go b/livekit/livekit_models.pb.go index 16113ab..373294a 100644 --- a/livekit/livekit_models.pb.go +++ b/livekit/livekit_models.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: livekit_models.proto diff --git a/livekit/livekit_room.pb.go b/livekit/livekit_room.pb.go index e9098ba..51bbb7f 100644 --- a/livekit/livekit_room.pb.go +++ b/livekit/livekit_room.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: livekit_room.proto diff --git a/livekit/livekit_rtc.pb.go b/livekit/livekit_rtc.pb.go index 3ba3c84..a20c97d 100644 --- a/livekit/livekit_rtc.pb.go +++ b/livekit/livekit_rtc.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: livekit_rtc.proto diff --git a/livekit/livekit_sip.pb.go b/livekit/livekit_sip.pb.go index 0f47f89..ed2a003 100644 --- a/livekit/livekit_sip.pb.go +++ b/livekit/livekit_sip.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: livekit_sip.proto diff --git a/livekit/livekit_webhook.pb.go b/livekit/livekit_webhook.pb.go index 891791f..107d362 100644 --- a/livekit/livekit_webhook.pb.go +++ b/livekit/livekit_webhook.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: livekit_webhook.proto diff --git a/protobufs/livekit_ingress.proto b/protobufs/livekit_ingress.proto index 57c65bb..ea5e9bf 100644 --- a/protobufs/livekit_ingress.proto +++ b/protobufs/livekit_ingress.proto @@ -135,7 +135,7 @@ message IngressInfo { string participant_metadata = 14; bool reusable = 11; IngressState state = 12; // Description of error/stream non compliance and debug info for publisher otherwise (received bitrate, resolution, bandwidth) - bool enabled = 16; // The default value is true and when set to false, the new connection attempts will be rejected + optional bool enabled = 16; // The default value is true and when set to false, the new connection attempts will be rejected // NEXT_ID: 17 } diff --git a/rpc/agent.pb.go b/rpc/agent.pb.go index fd45880..45be5fb 100644 --- a/rpc/agent.pb.go +++ b/rpc/agent.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: rpc/agent.proto diff --git a/rpc/agent_dispatch.pb.go b/rpc/agent_dispatch.pb.go index 1d9d778..63bccc6 100644 --- a/rpc/agent_dispatch.pb.go +++ b/rpc/agent_dispatch.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: rpc/agent_dispatch.proto diff --git a/rpc/analytics.pb.go b/rpc/analytics.pb.go index f04653c..f04d621 100644 --- a/rpc/analytics.pb.go +++ b/rpc/analytics.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: rpc/analytics.proto diff --git a/rpc/egress.pb.go b/rpc/egress.pb.go index a921d83..e7ef39a 100644 --- a/rpc/egress.pb.go +++ b/rpc/egress.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: rpc/egress.proto diff --git a/rpc/ingress.pb.go b/rpc/ingress.pb.go index 5cc1aa9..ec48e5e 100644 --- a/rpc/ingress.pb.go +++ b/rpc/ingress.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: rpc/ingress.proto diff --git a/rpc/io.pb.go b/rpc/io.pb.go index 509fdd4..6c88d68 100644 --- a/rpc/io.pb.go +++ b/rpc/io.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: rpc/io.proto diff --git a/rpc/keepalive.pb.go b/rpc/keepalive.pb.go index 3da1ec2..011b023 100644 --- a/rpc/keepalive.pb.go +++ b/rpc/keepalive.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: rpc/keepalive.proto diff --git a/rpc/participant.pb.go b/rpc/participant.pb.go index 7539300..f97f1b6 100644 --- a/rpc/participant.pb.go +++ b/rpc/participant.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: rpc/participant.proto diff --git a/rpc/room.pb.go b/rpc/room.pb.go index 333737c..d2f3905 100644 --- a/rpc/room.pb.go +++ b/rpc/room.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: rpc/room.proto diff --git a/rpc/roommanager.pb.go b/rpc/roommanager.pb.go index 07ebbc9..c23c566 100644 --- a/rpc/roommanager.pb.go +++ b/rpc/roommanager.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: rpc/roommanager.proto diff --git a/rpc/signal.pb.go b/rpc/signal.pb.go index ad1f5ba..823aa87 100644 --- a/rpc/signal.pb.go +++ b/rpc/signal.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: rpc/signal.proto diff --git a/rpc/sip.pb.go b/rpc/sip.pb.go index c2d40a8..fb5d5e5 100644 --- a/rpc/sip.pb.go +++ b/rpc/sip.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.1 +// protoc-gen-go v1.36.2 // protoc v4.23.4 // source: rpc/sip.proto