Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 18 additions & 8 deletions livekit/livekit_cloud_agent.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

280 changes: 141 additions & 139 deletions livekit/livekit_cloud_agent.twirp.go

Large diffs are not rendered by default.

14 changes: 12 additions & 2 deletions livekit/livekit_internal.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion livekit/livekit_room.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions protobufs/livekit_cloud_agent.proto
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ message CreatePrivateLinkRequest {
string region = 3;
uint32 port = 4;
string endpoint = 5;
optional string cloud_region = 6;
oneof config {
AWSCreateConfig aws = 2 [deprecated=true];
}
Expand Down
1 change: 1 addition & 0 deletions protobufs/livekit_internal.proto
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ message RoomInternal {
repeated RoomAgentDispatch agent_dispatches = 5;
bool sync_streams = 4;
bool replay_enabled = 6;
bool export_room = 7;
}

enum ICECandidateType {
Expand Down
6 changes: 3 additions & 3 deletions protobufs/livekit_room.proto
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ service RoomService {
rpc UpdateRoomMetadata (UpdateRoomMetadataRequest) returns (Room);

// Cloud-only
// Forward a connected participant's track(s) to another room. Requires `roomAdmin` and `destinationRoom`. The forwarding will
// stop when the participant leaves the room or `RemoveParticipant` has been called in the destination room.
// Forward a connected participant's track(s) to another room. Requires `roomAdmin` and `destinationRoom`. The forwarding will
// stop when the participant leaves the room or `RemoveParticipant` has been called in the destination room.
// A participant can be forwarded to multiple rooms. The destination room will be created if it does not exist.
rpc ForwardParticipant(ForwardParticipantRequest) returns (ForwardParticipantResponse);

Expand Down Expand Up @@ -109,6 +109,7 @@ message CreateRoomRequest {

// Define agents that should be dispatched to this room
repeated RoomAgentDispatch agents = 14;

// NEXT-ID: 15
}

Expand Down Expand Up @@ -305,4 +306,3 @@ message PerformRpcRequest {
message PerformRpcResponse {
string payload = 1;
}

1 change: 1 addition & 0 deletions protobufs/rpc/egress.proto
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ message StartEgressRequest {

// connection info
string room_id = 3 [(logger.name) = "roomID"];
string room_name = 18;
string token = 8 [(logger.redact) = true];
string ws_url = 9;

Expand Down
19 changes: 14 additions & 5 deletions rpc/egress.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

95 changes: 48 additions & 47 deletions rpc/egress.psrpc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading