Skip to content

Commit 39e996a

Browse files
committed
feat: added aliases and display_name field as fields for definitions
1 parent 0e2b0bf commit 39e996a

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

proto/shared/shared.data_type.proto

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,13 @@ message DefinitionDataType {
2929
// Unique identifier of the data type
3030
string identifier = 2;
3131
repeated Translation name = 3;
32+
repeated Translation aliases = 4;
3233
// Rules of the data type (e.g. Regex, contains...)
33-
repeated DefinitionDataTypeRule rules = 4;
34+
repeated DefinitionDataTypeRule rules = 5;
3435
// List of generic keys
35-
repeated string generic_keys = 5;
36+
repeated string generic_keys = 6;
3637
// Version of the data type
37-
shared.Version version = 6;
38+
shared.Version version = 7;
3839
}
3940

4041
message ExecutionDataType {

proto/shared/shared.flow_definition.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ message FlowType {
1717
repeated shared.Translation name = 6;
1818
repeated shared.Translation description = 7;
1919
repeated shared.Translation documentation = 8;
20+
repeated shared.Translation aliases = 9;
2021
// Version of the flow type
21-
shared.Version version = 9;
22+
shared.Version version = 10;
2223
}
2324

2425
message FlowTypeSetting {

proto/shared/shared.runtime_function.proto

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ message RuntimeFunctionDefinition {
2020
repeated Translation description = 7;
2121
repeated Translation documentation = 8;
2222
repeated Translation deprecation_message = 9;
23+
repeated Translation display_message = 10;
24+
repeated Translation aliases = 11;
2325
// Version of the runtime function
24-
shared.Version version = 10;
26+
shared.Version version = 12;
2527
}
2628

2729
// Definition of a parameter used for execution
@@ -32,4 +34,4 @@ message RuntimeParameterDefinition {
3234
repeated Translation name = 4;
3335
repeated Translation description = 5;
3436
repeated Translation documentation = 6;
35-
}
37+
}

0 commit comments

Comments
 (0)