We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 146050f commit 9740ca6Copy full SHA for 9740ca6
1 file changed
proto/shared/shared.flow.proto
@@ -68,7 +68,7 @@ message NodeParameter {
68
message ReferenceValue {
69
oneof target {
70
// Ref Value points to flow input
71
- int64 flow_input = 1;
+ FlowInput flow_input = 1;
72
// Ref Value points to a Result of a node, the int is the id of the node
73
int64 result = 2;
74
// Points to Value that is contained inside of a node
@@ -77,6 +77,8 @@ message ReferenceValue {
77
repeated ReferencePath paths = 4;
78
}
79
80
+message FlowInput {}
81
+
82
message InputType {
83
// Id of the node
84
int64 node_id = 1;
0 commit comments