File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,13 +27,17 @@ message FunctionDefinition {
2727 string display_icon = 13 ;
2828 // Identifier of the service that defines this definition
2929 string definition_source = 14 ;
30+ string runtime_definition_name = 15 ;
3031}
3132
3233// Definition of a parameter used for execution
3334message ParameterDefinition {
3435 string runtime_name = 1 ;
3536 optional shared.Value default_value = 2 ;
36- repeated Translation name = 3 ;
37- repeated Translation description = 4 ;
38- repeated Translation documentation = 5 ;
37+ optional bool optional = 3 ;
38+ optional bool hidden = 4 ;
39+ repeated Translation name = 5 ;
40+ repeated Translation description = 6 ;
41+ repeated Translation documentation = 7 ;
42+ string runtime_definition_name = 8 ;
3943}
Original file line number Diff line number Diff line change @@ -33,7 +33,9 @@ message RuntimeFunctionDefinition {
3333message RuntimeParameterDefinition {
3434 string runtime_name = 1 ;
3535 optional shared.Value default_value = 2 ;
36- repeated Translation name = 3 ;
37- repeated Translation description = 4 ;
38- repeated Translation documentation = 5 ;
36+ optional bool optional = 3 ;
37+ optional bool hidden = 4 ;
38+ repeated Translation name = 5 ;
39+ repeated Translation description = 6 ;
40+ repeated Translation documentation = 7 ;
3941}
You can’t perform that action at this time.
0 commit comments