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
5 changes: 5 additions & 0 deletions .changeset/yellow-clocks-join.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@livekit/protocol": mintor
---

feat: initial connector implementation
13 changes: 7 additions & 6 deletions livekit/livekit_connector_whatsapp.pb.go

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

5 changes: 3 additions & 2 deletions protobufs/livekit_connector_whatsapp.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,15 @@ option ruby_package = "LiveKit::Proto";

import "livekit_agent_dispatch.proto";
import "livekit_rtc.proto";
import "logger/options.proto";

message DialWhatsAppCallRequest {
// Required - The number of the business that is initiating the call
string whatsapp_phone_number_id = 1;
// Required - The number of the user that is supossed to receive the call
string whatsapp_to_phone_number = 2;
// Required - The API key of the business that is initiating the call
string whatsapp_api_key = 3;
string whatsapp_api_key = 3 [(logger.redact) = true];
// Required - WhatsApp Cloud API version, eg: 23.0, 24.0, etc.
string whatsapp_cloud_api_version = 12;
// Optional - An arbitrary string you can pass in that is useful for tracking and logging purposes.
Expand Down Expand Up @@ -82,7 +83,7 @@ message AcceptWhatsAppCallRequest {
// Required - The number of the business that is conencting the call
string whatsapp_phone_number_id = 1;
// Required - The API key of the business that is connecting the call
string whatsapp_api_key = 2;
string whatsapp_api_key = 2 [(logger.redact) = true];
// Required - WhatsApp Cloud API version, eg: 23.0, 24.0, etc.
string whatsapp_cloud_api_version = 13;
// Required - Call ID sent by Meta
Expand Down
Loading