Skip to content

Commit bcea6ed

Browse files
authored
Merge pull request #102 from trickest/fix/version-definition
Update workflow version definition
2 parents 0f54b24 + 033721e commit bcea6ed

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

cmd/execute/execute.go

+2
Original file line numberDiff line numberDiff line change
@@ -837,6 +837,7 @@ func readWorkflowYAMLandCreateVersion(fileName string, workflowName string, obje
837837
Nodes map[string]*types.Node `json:"nodes"`
838838
Connections []types.Connection `json:"connections"`
839839
PrimitiveNodes map[string]*types.PrimitiveNode `json:"primitiveNodes"`
840+
Annotations map[string]*types.Annotation `json:"annotations"`
840841
}{
841842
Nodes: nodes,
842843
Connections: connections,
@@ -965,6 +966,7 @@ func createToolWorkflow(wfName string, space *types.SpaceDetailed, project *type
965966
Nodes map[string]*types.Node `json:"nodes"`
966967
Connections []types.Connection `json:"connections"`
967968
PrimitiveNodes map[string]*types.PrimitiveNode `json:"primitiveNodes"`
969+
Annotations map[string]*types.Annotation `json:"annotations"`
968970
}{
969971
Nodes: map[string]*types.Node{
970972
node.Name: node,

types/download.go

+14
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,21 @@ type WorkflowVersionDetailed struct {
5050
Nodes map[string]*Node `json:"nodes"`
5151
Connections []Connection `json:"connections"`
5252
PrimitiveNodes map[string]*PrimitiveNode `json:"primitiveNodes"`
53+
Annotations map[string]*Annotation `json:"annotations"`
5354
} `json:"data"`
5455
}
5556

57+
type Annotation struct {
58+
Content string `json:"content"`
59+
Width float64 `json:"width"`
60+
Height float64 `json:"height"`
61+
Name string `json:"name"`
62+
Coordinates struct {
63+
X float64 `json:"x"`
64+
Y float64 `json:"y"`
65+
} `json:"coordinates"`
66+
}
67+
5668
type WorkflowVersionStripped struct {
5769
ID uuid.UUID `json:"id"`
5870
WorkflowInfo uuid.UUID `json:"workflow_info"`
@@ -64,6 +76,7 @@ type WorkflowVersionStripped struct {
6476
Nodes map[string]*Node `json:"nodes"`
6577
Connections []Connection `json:"connections"`
6678
PrimitiveNodes map[string]*PrimitiveNode `json:"primitiveNodes"`
79+
Annotations map[string]*Annotation `json:"annotations"`
6780
} `json:"data"`
6881
}
6982

@@ -139,4 +152,5 @@ type NodeInput struct {
139152
Description *string `json:"description,omitempty"`
140153
WorkerConnected *bool `json:"workerConnected,omitempty"`
141154
Multi *bool `json:"multi,omitempty"`
155+
Visible *bool `json:"visible"`
142156
}

0 commit comments

Comments
 (0)