diff --git a/proto/shared/shared.flow.proto b/proto/shared/shared.flow.proto index 76428ea..03c496f 100644 --- a/proto/shared/shared.flow.proto +++ b/proto/shared/shared.flow.proto @@ -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 { diff --git a/proto/shared/shared.flow_definition.proto b/proto/shared/shared.flow_definition.proto index b08a419..29f39f6 100644 --- a/proto/shared/shared.flow_definition.proto +++ b/proto/shared/shared.flow_definition.proto @@ -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 { @@ -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; }