@wenlarge/communication 1.1.8 → 1.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/proto/workflow.proto
CHANGED
|
@@ -70,14 +70,15 @@ message TriggerNodeRequest{
|
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
message CreateWorkflowNodeRequest{
|
|
73
|
-
string
|
|
74
|
-
string
|
|
75
|
-
|
|
76
|
-
int32
|
|
77
|
-
|
|
78
|
-
google.protobuf.Struct
|
|
79
|
-
google.protobuf.Struct
|
|
80
|
-
|
|
73
|
+
string id = 1;
|
|
74
|
+
string workflowId = 2;
|
|
75
|
+
string name = 3;
|
|
76
|
+
int32 positionX = 4;
|
|
77
|
+
int32 positionY = 5;
|
|
78
|
+
google.protobuf.Struct inputSchema = 6;
|
|
79
|
+
google.protobuf.Struct outputSchema = 7;
|
|
80
|
+
google.protobuf.Struct config = 8;
|
|
81
|
+
string nodeTypeId = 9;
|
|
81
82
|
}
|
|
82
83
|
|
|
83
84
|
message UpdateWorkflowNodeRequest{
|