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
5 changes: 5 additions & 0 deletions .changeset/twelve-ghosts-warn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@livekit/protocol": patch
---

Add latest CreateRoomRequest fields to RoomConfiguration
14 changes: 12 additions & 2 deletions livekit/livekit_room.pb.go

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

174 changes: 87 additions & 87 deletions livekit/livekit_room.twirp.go

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

4 changes: 4 additions & 0 deletions protobufs/livekit_room.proto
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,8 @@ message RoomConfiguration {
uint32 departure_timeout = 3;
// limit number of participants that can be in a room, excluding Egress and Ingress participants
uint32 max_participants = 4;
// metadata of room
string metadata = 11;
// egress
RoomEgress egress = 5;
// playout delay of subscriber
Expand All @@ -239,6 +241,8 @@ message RoomConfiguration {

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

// NEXT_ID: 12
}

message ForwardParticipantRequest {
Expand Down