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
1 change: 1 addition & 0 deletions livekit-api/src/services/connector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ impl ConnectorClient {
proto::DisconnectWhatsAppCallRequest {
whatsapp_call_id: call_id.into(),
whatsapp_api_key: api_key.into(),
..Default::default()
},
self.base
.auth_header(VideoGrants { room_create: true, ..Default::default() }, None)?,
Expand Down
12 changes: 12 additions & 0 deletions livekit-ffi-node-bindings/src/proto/participant_pb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ export enum ParticipantKind {
* @generated from enum value: PARTICIPANT_KIND_CONNECTOR = 5;
*/
CONNECTOR = 5,

/**
* @generated from enum value: PARTICIPANT_KIND_BRIDGE = 6;
*/
BRIDGE = 6,
}
// Retrieve enum metadata with: proto2.getEnumType(ParticipantKind)
proto2.util.setEnumType(ParticipantKind, "livekit.proto.ParticipantKind", [
Expand All @@ -64,6 +69,7 @@ proto2.util.setEnumType(ParticipantKind, "livekit.proto.ParticipantKind", [
{ no: 3, name: "PARTICIPANT_KIND_SIP" },
{ no: 4, name: "PARTICIPANT_KIND_AGENT" },
{ no: 5, name: "PARTICIPANT_KIND_CONNECTOR" },
{ no: 6, name: "PARTICIPANT_KIND_BRIDGE" },
]);

/**
Expand All @@ -89,13 +95,19 @@ export enum ParticipantKindDetail {
* @generated from enum value: PARTICIPANT_KIND_DETAIL_CONNECTOR_TWILIO = 3;
*/
CONNECTOR_TWILIO = 3,

/**
* @generated from enum value: PARTICIPANT_KIND_DETAIL_BRIDGE_RTSP = 4;
*/
BRIDGE_RTSP = 4,
}
// Retrieve enum metadata with: proto2.getEnumType(ParticipantKindDetail)
proto2.util.setEnumType(ParticipantKindDetail, "livekit.proto.ParticipantKindDetail", [
{ no: 0, name: "PARTICIPANT_KIND_DETAIL_CLOUD_AGENT" },
{ no: 1, name: "PARTICIPANT_KIND_DETAIL_FORWARDED" },
{ no: 2, name: "PARTICIPANT_KIND_DETAIL_CONNECTOR_WHATSAPP" },
{ no: 3, name: "PARTICIPANT_KIND_DETAIL_CONNECTOR_TWILIO" },
{ no: 4, name: "PARTICIPANT_KIND_DETAIL_BRIDGE_RTSP" },
]);

/**
Expand Down
2 changes: 2 additions & 0 deletions livekit-ffi/protocol/participant.proto
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,15 @@ enum ParticipantKind {
PARTICIPANT_KIND_SIP = 3;
PARTICIPANT_KIND_AGENT = 4;
PARTICIPANT_KIND_CONNECTOR = 5;
PARTICIPANT_KIND_BRIDGE = 6;
}

enum ParticipantKindDetail {
PARTICIPANT_KIND_DETAIL_CLOUD_AGENT = 0;
PARTICIPANT_KIND_DETAIL_FORWARDED = 1;
PARTICIPANT_KIND_DETAIL_CONNECTOR_WHATSAPP = 2;
PARTICIPANT_KIND_DETAIL_CONNECTOR_TWILIO = 3;
PARTICIPANT_KIND_DETAIL_BRIDGE_RTSP = 4;
}

enum DisconnectReason {
Expand Down
2 changes: 2 additions & 0 deletions livekit-ffi/src/conversion/participant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ impl From<ParticipantKind> for proto::ParticipantKind {
ParticipantKind::Egress => proto::ParticipantKind::Egress,
ParticipantKind::Agent => proto::ParticipantKind::Agent,
ParticipantKind::Connector => proto::ParticipantKind::Connector,
ParticipantKind::Bridge => proto::ParticipantKind::Bridge
}
}
}
Expand All @@ -71,6 +72,7 @@ impl From<ParticipantKindDetail> for proto::ParticipantKindDetail {
proto::ParticipantKindDetail::ConnectorWhatsapp
}
ParticipantKindDetail::ConnectorTwilio => proto::ParticipantKindDetail::ConnectorTwilio,
ParticipantKindDetail::BridgeRtsp => proto::ParticipantKindDetail::BridgeRtsp
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion livekit-protocol/protocol
Submodule protocol updated 110 files
Loading