Skip to content

Commit 7ccf800

Browse files
committed
feat: update RuntimeParameterDefinition to include optional and hidden fields
1 parent d52e2b4 commit 7ccf800

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

proto/shared/shared.runtime_function.proto

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ message RuntimeFunctionDefinition {
3333
message 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
}

0 commit comments

Comments
 (0)