-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into benjamin/agents
- Loading branch information
Showing
40 changed files
with
6,635 additions
and
3,299 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@livekit/protocol": patch | ||
--- | ||
|
||
Add ErrorResponse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package livekit | ||
|
||
// Names of participant attributes for SIP. | ||
const ( | ||
// AttrSIPPrefix is shared for all SIP attributes. | ||
AttrSIPPrefix = "sip." | ||
// AttrSIPCallID attribute contains LiveKit SIP call ID. | ||
AttrSIPCallID = AttrSIPPrefix + "callID" | ||
// AttrSIPTrunkID attribute contains LiveKit SIP Trunk ID used for the call. | ||
AttrSIPTrunkID = AttrSIPPrefix + "trunkID" | ||
// AttrSIPDispatchRuleID attribute contains LiveKit SIP DispatchRule ID used for the inbound call. | ||
AttrSIPDispatchRuleID = AttrSIPPrefix + "ruleID" | ||
// AttrSIPTrunkNumber attribute contains number associate with LiveKit SIP Trunk. | ||
// This attribute will be omitted if HidePhoneNumber is set. | ||
AttrSIPTrunkNumber = AttrSIPPrefix + "trunkPhoneNumber" | ||
// AttrSIPPhoneNumber attribute contains number external to LiveKit SIP (caller for inbound and called number for outbound). | ||
// This attribute will be omitted if HidePhoneNumber is set. | ||
AttrSIPPhoneNumber = AttrSIPPrefix + "phoneNumber" | ||
) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.