Skip to content

Commit 8f18089

Browse files
committed
feat: added display_message for data-type and for flow-type
1 parent 39e996a commit 8f18089

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

proto/shared/shared.data_type.proto

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

4142
message ExecutionDataType {

proto/shared/shared.flow_definition.proto

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ 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;
20+
repeated shared.Translation display_message = 9;
21+
repeated shared.Translation alias = 10;
2122
// Version of the flow type
22-
shared.Version version = 10;
23+
shared.Version version = 11;
2324
}
2425

2526
message FlowTypeSetting {

proto/shared/shared.runtime_function.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ message RuntimeFunctionDefinition {
2121
repeated Translation documentation = 8;
2222
repeated Translation deprecation_message = 9;
2323
repeated Translation display_message = 10;
24-
repeated Translation aliases = 11;
24+
repeated Translation alias = 11;
2525
// Version of the runtime function
2626
shared.Version version = 12;
2727
}

0 commit comments

Comments
 (0)