File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -66,7 +66,6 @@ services that Sagittarius must implement as a server.
6666│ └── test_execution - Service and Types for the test execution
6767└── shared
6868 ├── data_type - Defines types for data types
69- ├── event - Defines types for events
7069 ├── flow - Defines types for flows
7170 ├── flow_definition - Defines a definition for a Flow
7271 ├── runtime_function - Defines types for runtime functions
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ package aquila;
77import "shared.struct.proto" ;
88import "shared.runtime_function.proto" ;
99import "shared.data_type.proto" ;
10+ import "shared.flow_definition.proto" ;
1011import "shared.translation.proto" ;
11- import "shared.event.proto" ;
1212
1313// Event that gets admitted by an action
1414message Event {
@@ -22,12 +22,15 @@ message Event {
2222message Configuration {
2323 // Action identifier
2424 string identifier = 1 ;
25+ string version = 2 ;
26+
2527 // Flow Configuration
26- repeated shared.RuntimeFunctionDefinition function_definitions = 2 ;
27- // Event Configuration
28- repeated shared.EventType event_types = 3 ;
28+ repeated shared.RuntimeFunctionDefinition function_definitions = 3 ;
29+ repeated shared.DefinitionDataType data_types = 4 ;
30+ repeated shared.FlowType flow_types = 5 ;
31+
2932 // Application Configuration
30- repeated ActionConfiguration action_configurations = 4 ;
33+ repeated ActionConfiguration action_configurations = 6 ;
3134}
3235
3336message ActionConfiguration {
Load diff This file was deleted.
You can’t perform that action at this time.
0 commit comments