Skip to content
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
13 changes: 6 additions & 7 deletions proto/shared/shared.flow.proto
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@ message ValidationFlow {
string type = 3;
// All custom data types used in this flow
repeated shared.ExecutionDataType data_types = 4;
optional string input_type = 5;
optional string return_type = 6;
repeated FlowSetting settings = 7;
int64 starting_node_id = 8;
repeated NodeFunction node_functions = 9;
string project_slug = 10;
optional string disable_reason = 11;
repeated FlowSetting settings = 5;
int64 starting_node_id = 6;
repeated NodeFunction node_functions = 7;
string project_slug = 8;
optional string disable_reason = 9;
string signature = 10;
}

message ExecutionFlow {
Expand Down
31 changes: 14 additions & 17 deletions proto/shared/shared.flow_definition.proto
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,20 @@ import "shared.struct.proto";
message FlowType {
string identifier = 1;
repeated FlowTypeSetting settings = 2;
optional string input_type = 3;
optional string return_type = 4;
bool editable = 5;
repeated shared.Translation name = 6;
repeated shared.Translation description = 7;
repeated shared.Translation documentation = 8;
repeated shared.Translation display_message = 9;
repeated shared.Translation alias = 10;
bool editable = 3;
repeated shared.Translation name = 4;
repeated shared.Translation description = 5;
repeated shared.Translation documentation = 6;
repeated shared.Translation display_message = 7;
repeated shared.Translation alias = 8;
// Version of the flow type
// Format: "major.minor.patch", e.g. "1.2.3"
string version = 11;
string display_icon = 12;
string version = 9;
string display_icon = 10;
// Identifier of the service that defines this definition
optional string definition_source = 13;
repeated string linked_data_type_identifiers = 14;
optional string definition_source = 11;
repeated string linked_data_type_identifiers = 12;
string signature = 13;
}

message FlowTypeSetting {
Expand All @@ -36,9 +35,7 @@ message FlowTypeSetting {

string identifier = 1;
UniquenessScope unique = 2;
string type = 3;
optional shared.Value default_value = 4;
repeated shared.Translation name = 5;
repeated shared.Translation description = 6;
repeated string linked_data_type_identifiers = 7;
optional shared.Value default_value = 3;
repeated shared.Translation name = 4;
repeated shared.Translation description = 5;
}