File tree Expand file tree Collapse file tree 4 files changed +6
-17
lines changed
Expand file tree Collapse file tree 4 files changed +6
-17
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ package shared;
66
77import "shared.struct.proto" ;
88import "shared.translation.proto" ;
9- import "shared.version.proto" ;
109
1110/*
1211 A data type is a custom implementation that could be compared to an object
@@ -36,7 +35,8 @@ message DefinitionDataType {
3635 // List of generic keys
3736 repeated string generic_keys = 7 ;
3837 // Version of the data type
39- shared.Version version = 8 ;
38+ // Format: "major.minor.patch", e.g. "1.2.3"
39+ string version = 8 ;
4040}
4141
4242message ExecutionDataType {
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ package shared;
66
77import "shared.translation.proto" ;
88import "shared.struct.proto" ;
9- import "shared.version.proto" ;
109
1110message FlowType {
1211 string identifier = 1 ;
@@ -20,7 +19,8 @@ message FlowType {
2019 repeated shared.Translation display_message = 9 ;
2120 repeated shared.Translation alias = 10 ;
2221 // Version of the flow type
23- shared.Version version = 11 ;
22+ // Format: "major.minor.patch", e.g. "1.2.3"
23+ string version = 11 ;
2424}
2525
2626message FlowTypeSetting {
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ package shared;
77import "shared.translation.proto" ;
88import "shared.data_type.proto" ;
99import "shared.struct.proto" ;
10- import "shared.version.proto" ;
1110
1211// Definition of a function used for execution
1312message RuntimeFunctionDefinition {
@@ -23,7 +22,8 @@ message RuntimeFunctionDefinition {
2322 repeated Translation display_message = 10 ;
2423 repeated Translation alias = 11 ;
2524 // Version of the runtime function
26- shared.Version version = 12 ;
25+ // Format: "major.minor.patch", e.g. "1.2.3"
26+ string version = 12 ;
2727}
2828
2929// Definition of a parameter used for execution
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments