Skip to content

Commit

Permalink
Merge pull request #30 from webitel/WTEL-4446
Browse files Browse the repository at this point in the history
Wtel 4446
  • Loading branch information
navrotskyj committed Apr 25, 2024
2 parents 0f85a3f + 375649b commit 2956e86
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
10 changes: 10 additions & 0 deletions cc/cc_member.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@ service MemberService {
rpc ProcessingFormAction(ProcessingFormActionRequest) returns (ProcessingFormActionResponse) {}

rpc InterceptAttempt(InterceptAttemptRequest) returns (InterceptAttemptResponse) {}
rpc ResumeAttempt(ResumeAttemptRequest) returns (ResumeAttemptResponse) {}
}

message ResumeAttemptRequest {
int64 domain_id = 1;
int64 attempt_id = 2;
}

message ResumeAttemptResponse {
bool ok = 1;
}

message InterceptAttemptRequest {
Expand Down
11 changes: 9 additions & 2 deletions fs/fs.proto
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
syntax = "proto3";

option go_package = "github.com/webitel/protos/fs";

package fs;

service Api {
Expand All @@ -22,6 +20,15 @@ service Api {
rpc Broadcast(BroadcastRequest) returns (BroadcastResponse) {}
rpc SetEavesdropState(SetEavesdropStateRequest) returns (SetEavesdropStateResponse) {}
rpc BlindTransfer(BlindTransferRequest) returns (BlindTransferResponse) {}
rpc BreakPark(BreakParkRequest) returns (BreakParkResponse) {}
}

message BreakParkRequest {
string id = 1;
map<string,string> variables = 2;
}
message BreakParkResponse {
bool ok = 1;
}

message BlindTransferRequest {
Expand Down

0 comments on commit 2956e86

Please sign in to comment.