We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e77a127 commit d52e2b4Copy full SHA for d52e2b4
1 file changed
proto/shared/shared.function.proto
@@ -27,13 +27,17 @@ message FunctionDefinition {
27
string display_icon = 13;
28
// Identifier of the service that defines this definition
29
string definition_source = 14;
30
+ string runtime_definition_name = 15;
31
}
32
33
// Definition of a parameter used for execution
34
message ParameterDefinition {
35
string runtime_name = 1;
36
optional shared.Value default_value = 2;
- repeated Translation name = 3;
37
- repeated Translation description = 4;
38
- repeated Translation documentation = 5;
+ optional bool optional = 3;
+ 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;
43
0 commit comments