⚠ This page is served via a proxy. Original site: https://github.com
This service does not collect credentials or authentication data.
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
5 changes: 5 additions & 0 deletions .changeset/free-moles-hug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"github.com/livekit/protocol": patch
---

Adding feature_flags field to InternalTransferSIPParticipantRequest, InternalCreateSIPParticipantRequest, and EvaluateSIPDispatchRulesResponse
4 changes: 3 additions & 1 deletion protobufs/rpc/io.proto
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,9 @@ message EvaluateSIPDispatchRulesResponse {

livekit.SIPMediaEncryption media_encryption = 22;

// NEXT ID: 23
map<string, string> feature_flags = 23;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It should be on GetTrunkAuth, otherwise it might be too late for some features. Or we could put it in both.


// NEXT ID: 24
}

message UpdateSIPCallStateRequest {
Expand Down
8 changes: 7 additions & 1 deletion protobufs/rpc/sip.proto
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,10 @@ message InternalCreateSIPParticipantRequest {
// Destination information for routing decisions
livekit.Destination destination = 32;

// NEXT ID: 33
// Project-level feature flags from ProjectSettings.FeatureFlags
map<string, string> feature_flags = 33;

// NEXT ID: 34
}

message InternalCreateSIPParticipantResponse {
Expand All @@ -165,5 +168,8 @@ message InternalTransferSIPParticipantRequest {

// Max time for the transfer destination to answer the call.
google.protobuf.Duration ringing_timeout = 5;

// Project-level feature flags from ProjectSettings.FeatureFlags
map<string, string> feature_flags = 6;
}

144 changes: 79 additions & 65 deletions rpc/io.pb.go

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

Loading
Loading