diff --git a/proto/shared/shared.data_type.proto b/proto/shared/shared.data_type.proto index 9ac13ed..64f392c 100644 --- a/proto/shared/shared.data_type.proto +++ b/proto/shared/shared.data_type.proto @@ -29,12 +29,14 @@ message DefinitionDataType { // Unique identifier of the data type string identifier = 2; repeated Translation name = 3; + repeated Translation display_message = 4; + repeated Translation alias = 5; // Rules of the data type (e.g. Regex, contains...) - repeated DefinitionDataTypeRule rules = 4; + repeated DefinitionDataTypeRule rules = 6; // List of generic keys - repeated string generic_keys = 5; + repeated string generic_keys = 7; // Version of the data type - shared.Version version = 6; + shared.Version version = 8; } message ExecutionDataType { diff --git a/proto/shared/shared.flow_definition.proto b/proto/shared/shared.flow_definition.proto index ed83937..0cfb846 100644 --- a/proto/shared/shared.flow_definition.proto +++ b/proto/shared/shared.flow_definition.proto @@ -17,8 +17,10 @@ message FlowType { 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; // Version of the flow type - shared.Version version = 9; + shared.Version version = 11; } message FlowTypeSetting { diff --git a/proto/shared/shared.runtime_function.proto b/proto/shared/shared.runtime_function.proto index c2834eb..c04d77a 100644 --- a/proto/shared/shared.runtime_function.proto +++ b/proto/shared/shared.runtime_function.proto @@ -20,8 +20,10 @@ message RuntimeFunctionDefinition { repeated Translation description = 7; repeated Translation documentation = 8; repeated Translation deprecation_message = 9; + repeated Translation display_message = 10; + repeated Translation alias = 11; // Version of the runtime function - shared.Version version = 10; + shared.Version version = 12; } // Definition of a parameter used for execution @@ -32,4 +34,4 @@ message RuntimeParameterDefinition { repeated Translation name = 4; repeated Translation description = 5; repeated Translation documentation = 6; -} \ No newline at end of file +}