Skip to content

Commit 75e5063

Browse files
committed
ref: renamed node to runnable
1 parent 42c4d1f commit 75e5063

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

definitions/standard/data_type/node/node.proto.json renamed to definitions/standard/data_type/node/runnable.proto.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variant": "NODE",
3-
"identifier": "NODE",
3+
"identifier": "RUNNABLE",
44
"name": [
55
{
66
"code": "en-US",

definitions/standard/runtime_definition/control/std_control_if.proto.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,32 +22,32 @@
2222
"documentation": [
2323
{
2424
"code": "en-US",
25-
"content": "Specifies the condition that determines whether the provided node should be executed. If this condition evaluates to true, the execution proceeds with the node defined in the second parameter."
25+
"content": "Specifies the condition that determines whether the provided runnable should be executed. If this condition evaluates to true, the execution proceeds with the runnable defined in the second parameter."
2626
}
2727
]
2828
},
2929
{
3030
"dataTypeIdentifier": {
31-
"dataTypeIdentifier": "NODE"
31+
"dataTypeIdentifier": "RUNNABLE"
3232
},
33-
"runtimeName": "thenNode",
33+
"runtimeName": "then_runnable",
3434
"defaultValue": null,
3535
"name": [
3636
{
3737
"code": "en-US",
38-
"content": "Then Node"
38+
"content": "Then Runnable"
3939
}
4040
],
4141
"description": [
4242
{
4343
"code": "en-US",
44-
"content": "Node that will be executed if the condition is true."
44+
"content": "Runnable to execute when the condition is true."
4545
}
4646
],
4747
"documentation": [
4848
{
4949
"code": "en-US",
50-
"content": "Defines the node to be executed when the condition evaluates to true. If the condition is false, this node will be skipped and execution will continue with the next element in the flow."
50+
"content": "Defines the runnable that runs if the condition evaluates to true."
5151
}
5252
]
5353
}
@@ -64,13 +64,13 @@
6464
"description": [
6565
{
6666
"code": "en-US",
67-
"content": "Executes the specified node if the condition evaluates to true."
67+
"content": "Executes the specified runnable if the condition evaluates to true."
6868
}
6969
],
7070
"documentation": [
7171
{
7272
"code": "en-US",
73-
"content": "The 'If' node evaluates a boolean condition and, if it is true, executes the provided node. If the condition is false, execution continues without running the node. This behavior corresponds to a standard 'if' statement in programming languages."
73+
"content": "The 'If' runnable evaluates a boolean condition and, if it is true, executes the provided runnable. If the condition is false, execution continues without running the runnable. This behavior corresponds to a standard 'if' statement in programming languages."
7474
}
7575
],
7676
"deprecationMessage": []

definitions/standard/runtime_definition/control/std_control_if_else.proto.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,57 +22,57 @@
2222
"documentation": [
2323
{
2424
"code": "en-US",
25-
"content": "Determines which branch to execute. If true the Then Node runs otherwise the Else Node runs."
25+
"content": "Determines which branch to execute. If true the Then Runnable runs otherwise the Else Runnable runs."
2626
}
2727
]
2828
},
2929
{
3030
"dataTypeIdentifier": {
31-
"dataTypeIdentifier": "NODE"
31+
"dataTypeIdentifier": "RUNNABLE"
3232
},
33-
"runtimeName": "then_node",
33+
"runtimeName": "then_runnable",
3434
"defaultValue": null,
3535
"name": [
3636
{
3737
"code": "en-US",
38-
"content": "Then Node"
38+
"content": "Then Runnable"
3939
}
4040
],
4141
"description": [
4242
{
4343
"code": "en-US",
44-
"content": "Node to execute when the condition is true."
44+
"content": "Runnable to execute when the condition is true."
4545
}
4646
],
4747
"documentation": [
4848
{
4949
"code": "en-US",
50-
"content": "Defines the node that runs if the condition evaluates to true."
50+
"content": "Defines the runnable that runs if the condition evaluates to true."
5151
}
5252
]
5353
},
5454
{
5555
"dataTypeIdentifier": {
56-
"dataTypeIdentifier": "NODE"
56+
"dataTypeIdentifier": "RUNNABLE"
5757
},
58-
"runtimeName": "else_node",
58+
"runtimeName": "else_runnable",
5959
"defaultValue": null,
6060
"name": [
6161
{
6262
"code": "en-US",
63-
"content": "Else Node"
63+
"content": "Else Runnable"
6464
}
6565
],
6666
"description": [
6767
{
6868
"code": "en-US",
69-
"content": "Node to execute when the condition is false."
69+
"content": "Runnable to execute when the condition is false."
7070
}
7171
],
7272
"documentation": [
7373
{
7474
"code": "en-US",
75-
"content": "Defines the node that runs if the condition evaluates to false."
75+
"content": "Defines the runnable that runs if the condition evaluates to false."
7676
}
7777
]
7878
}
@@ -89,13 +89,13 @@
8989
"description": [
9090
{
9191
"code": "en-US",
92-
"content": "Evaluates a condition and executes either the Then Node or the Else Node."
92+
"content": "Evaluates a condition and executes either the Then Runnable or the Else Runnable."
9393
}
9494
],
9595
"documentation": [
9696
{
9797
"code": "en-US",
98-
"content": "Evaluates a boolean condition. If true, executes the Then Node; otherwise, executes the Else Node. Mirrors a standard 'if/else' control structure in programming languages."
98+
"content": "Evaluates a boolean condition. If true, executes the Then Runnable; otherwise, executes the Else Runnable. Mirrors a standard 'if/else' control structure in programming languages."
9999
}
100100
],
101101
"deprecationMessage": []

0 commit comments

Comments
 (0)