Skip to content
Open
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
6 changes: 6 additions & 0 deletions .changeset/eighty-emus-marry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@livekit/protocol": patch
"github.com/livekit/protocol": patch
---

Add capabilities to ParticipantInfo
180 changes: 96 additions & 84 deletions livekit/livekit_models.pb.go

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

8 changes: 6 additions & 2 deletions protobufs/livekit_models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,12 @@ message ParticipantInfo {

// protocol version used for client feature compatibility
int32 client_protocol = 20;

// NEXT_ID: 21

// capabilities the participant's client advertises, mirrored from ClientInfo.
// Lets other participants perform client-side feature detection.
repeated ClientInfo.Capability capabilities = 21;

// NEXT_ID: 22
}

enum TrackType {
Expand Down
Loading