Skip to content

Commit 92c3037

Browse files
committed
feat: added ActionConfigurations to TransferResponse
1 parent 86dcb56 commit 92c3037

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

proto/aquila/aquila.action.proto

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ option ruby_package = "Tucana::Aquila";
44

55
package aquila;
66

7+
import "shared.action_configuration.proto";
78
import "shared.struct.proto";
89

910
// Event that gets admitted by an action
@@ -54,8 +55,12 @@ message TransferRequest {
5455
}
5556

5657
message TransferResponse {
57-
// Execution request
58-
ExecutionRequest execution = 1;
58+
oneof data {
59+
// Execution request
60+
ExecutionRequest execution = 1;
61+
// ActionConfigurations that have been configured by the user
62+
shared.ActionConfigurations action_configurations = 2;
63+
}
5964
}
6065

6166
service ActionTransferService {

0 commit comments

Comments
 (0)