Skip to content

Commit f0163ae

Browse files
committed
fixes
1 parent 3d25f9b commit f0163ae

File tree

1 file changed

+3
-26
lines changed

1 file changed

+3
-26
lines changed

tcnapi/exile/gate/v2/public.proto

Lines changed: 3 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -306,9 +306,6 @@ service GateService {
306306
body: "*"
307307
};
308308
}
309-
rpc ListRecordingSegments(ListRecordingSegmentsRequest) returns (ListRecordingSegmentsResponse) {
310-
option (google.api.http) = {get: "/tcnapi/exile/gate/v2/list_recording_segments"};
311-
}
312309
rpc Transfer(TransferRequest) returns (TransferResponse) {
313310
option (google.api.http) = {
314311
get: "/tcnapi/exile/gate/v2/transfer"
@@ -1373,15 +1370,6 @@ message CreateRecordingLabelRequest {
13731370
}
13741371
message CreateRecordingLabelResponse {}
13751372

1376-
message ListRecordingSegmentsRequest {
1377-
// the recording we are fetching segments for
1378-
string recording_name = 1;
1379-
repeated SearchOption search_options = 2;
1380-
}
1381-
message ListRecordingSegmentsResponse {
1382-
repeated RecordingSegment segments = 1;
1383-
}
1384-
13851373
/**
13861374
* Request message for searching voice recordings.
13871375
*/
@@ -1396,27 +1384,16 @@ message SearchVoiceRecordingsResponse {
13961384
repeated Recording recordings = 1;
13971385
}
13981386

1399-
message RecordingSegment {
1400-
google.protobuf.Duration start_offset = 1;
1401-
google.protobuf.Duration end_offset = 2;
1402-
string key = 3;
1403-
string value = 4;
1404-
}
1405-
14061387
/**
14071388
* Message representing a voice recording.
14081389
*/
14091390
message Recording {
1410-
string name = 1; // The fully qualified resource name of the recording. Format: "orgs/{org}/regions/{region}/zones/{zone}/recordings/{recording}"
1391+
string recording_id = 1; // The fully qualified resource name of the recording. Format: "orgs/{org}/regions/{region}/zones/{zone}/recordings/{recording}"
14111392
int64 call_sid = 2; // The unique identifier of the call recorded.
14121393
CallType call_type = 3; // The type of call recorded.
1413-
google.protobuf.Duration duration = 4; // The duration of the recording.
1414-
string agent_phone = 5; // The phone number of the agent.
1415-
string client_phone = 6; // The phone number of the client.
1416-
string campaign = 7; // The name of the campaign.
1417-
RecordingType recording_type = 8; // The type of the recording.
1394+
google.protobuf.Duration start_offset = 1;
1395+
google.protobuf.Duration end_offset = 2;
14181396
google.protobuf.Timestamp start_time = 9; // The start time of the recording.
1419-
repeated string partner_agent_ids = 10; // The user IDs of participating agents.
14201397
}
14211398

14221399
/**

0 commit comments

Comments
 (0)