@@ -257,7 +257,7 @@ message StreamJobsResponse {
257
257
string pool_id = 2 ; // ID of the pool containing the record
258
258
string record_id = 3 ; // ID of the record to pop
259
259
string call_sid = 4 ; // Session ID of the call
260
- string call_type = 5 ; // Type of call (inbound, outbound)
260
+ CallType call_type = 5 ; // Type of call (inbound, outbound)
261
261
// AlternateID (usually the caller_id)
262
262
repeated tcnapi.exile.core.v2.Filter filters = 6 ;
263
263
}
@@ -680,7 +680,7 @@ message DialRequest {
680
680
message DialResponse {
681
681
string phone_number = 1 ; // Phone number that was dialed
682
682
string caller_id = 2 ; // Caller ID that was used
683
- int64 call_sid = 3 ; // Session ID for the call
683
+ string call_sid = 3 ; // Session ID for the call
684
684
CallType call_type = 4 ; // Type of call (inbound, outbound)
685
685
string org_id = 5 ; // Organization ID making the call
686
686
string partner_agent_id = 6 ; // Partner agent ID making the call
@@ -707,7 +707,7 @@ message GetAgentStatusResponse {
707
707
* Message representing a party connected to an agent.
708
708
*/
709
709
message ConnectedParty {
710
- int64 call_sid = 1 ; // Session ID of the call
710
+ string call_sid = 1 ; // Session ID of the call
711
711
CallType call_type = 2 ; // Type of call (inbound, outbound)
712
712
bool is_inbound = 3 ; // Whether this is an inbound call
713
713
}
0 commit comments