Skip to content

Commit

Permalink
fix: adjusted messages after required changes
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael-goetz committed Nov 24, 2024
1 parent 9d184e4 commit 8631773
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
10 changes: 6 additions & 4 deletions proto/aquila/action_execute.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ option ruby_package = "Tucana::Aquila";
package aquila;

message ActionCallRequest {
repeated string parameters = 1;
string identifier = 1;
repeated string parameters = 2;
}

message ActionCallResponse {
Expand All @@ -16,11 +17,12 @@ message ActionResult {
repeated string result = 1;
}

message ActionResultRequest {}
message ActionResultRequest {
string execution_identifier = 1;
}

message ActionResultResponse {
string execution_identifier = 1;
optional ActionResult action_result = 2;
optional ActionResult action_result = 1;
}

service ActionCallService {
Expand Down
3 changes: 2 additions & 1 deletion proto/aquila/transfer.proto
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ message InformationResponse {

message ActionExecuteRequest {
string execution_identifier = 1;
repeated string parameters = 2;
string function_identifier = 2;
repeated string parameters = 3;
}

message ActionExecuteResponse {
Expand Down

0 comments on commit 8631773

Please sign in to comment.