Skip to content

Commit 3035949

Browse files
committed
feat: added back runtime name to RuntimeParameterDefinition
1 parent b6493a8 commit 3035949

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

proto/shared/shared.runtime_function.proto

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ message RuntimeFunctionDefinition {
3131

3232
// Definition of a parameter used for execution
3333
message RuntimeParameterDefinition {
34-
optional shared.Value default_value = 1;
35-
repeated Translation name = 2;
36-
repeated Translation description = 3;
37-
repeated Translation documentation = 4;
34+
string runtime_name = 1;
35+
optional shared.Value default_value = 2;
36+
repeated Translation name = 3;
37+
repeated Translation description = 4;
38+
repeated Translation documentation = 5;
3839
}

0 commit comments

Comments
 (0)