Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wtel 4446 #30

Merged
merged 2 commits into from
Apr 25, 2024
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
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