From ce875b229d92fa9c8a7ddeb4b234d601941e95c9 Mon Sep 17 00:00:00 2001 From: Sean DuBois Date: Mon, 4 Dec 2023 13:37:19 -0500 Subject: [PATCH] Add token and ws_url to EvaluateSIPDispatchRulesResponse --- rpc/io.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rpc/io.proto b/rpc/io.proto index c67eb627f..e9790d553 100644 --- a/rpc/io.proto +++ b/rpc/io.proto @@ -111,4 +111,10 @@ message EvaluateSIPDispatchRulesResponse { // Pin should be requested from SIPParticipant bool request_pin = 3; + + // optional token that should be used when creating LiveKit participant + string token = 4; + + // optional websocket url that should be used when creating LiveKit participant + string ws_url = 5; }