Skip to content

Commit 240669b

Browse files
Merge pull request #206 from code0-tech/204-rename-action-identifier
Rename Action Identifier
2 parents d3674b0 + d82513b commit 240669b

4 files changed

Lines changed: 7 additions & 9 deletions

File tree

proto/shared/shared.data_type.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ message DefinitionDataType {
3737
// Version of the data type
3838
// Format: "major.minor.patch", e.g. "1.2.3"
3939
string version = 8;
40-
// Field will be set by an action to distinguish an action function from a runtime function
41-
optional string action_identifier = 9;
40+
// Identifier of the service that defines this definition
41+
optional string definition_source = 9;
4242
}
4343

4444
message ExecutionDataType {

proto/shared/shared.flow.proto

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,7 @@ message NodeFunction {
4646
string runtime_function_id = 2;
4747
repeated NodeParameter parameters = 3;
4848
optional int64 next_node_id = 4;
49-
// Identifier of the action that can execute this function
50-
// If not present it should be a runtime function
51-
optional string action_identifier = 5;
49+
string definition_source = 5;
5250
}
5351

5452
message NodeValue {

proto/shared/shared.flow_definition.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ message FlowType {
2222
// Format: "major.minor.patch", e.g. "1.2.3"
2323
string version = 11;
2424
string display_icon = 12;
25-
// Field will be set by an action to distinguish an action function from a runtime function
26-
optional string action_identifier = 13;
25+
// Identifier of the service that defines this definition
26+
optional string definition_source = 13;
2727
}
2828

2929
message FlowTypeSetting {

proto/shared/shared.runtime_function.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ message RuntimeFunctionDefinition {
2525
// Format: "major.minor.patch", e.g. "1.2.3"
2626
string version = 12;
2727
string display_icon = 13;
28-
// Field will be set by an action to distinguish an action function from a runtime function
29-
optional string action_identifier = 14;
28+
// Identifier of the service that defines this definition
29+
optional string definition_source = 14;
3030
}
3131

3232
// Definition of a parameter used for execution

0 commit comments

Comments
 (0)