@wenlarge/communication 1.2.9 → 1.3.0
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 +1 -1
- package/proto/workflow.proto +6 -6
package/package.json
CHANGED
package/proto/workflow.proto
CHANGED
|
@@ -25,7 +25,7 @@ service WorkflowService {
|
|
|
25
25
|
message CreateWorkflowRequest {
|
|
26
26
|
string name = 1;
|
|
27
27
|
string projectId = 2;
|
|
28
|
-
optional string
|
|
28
|
+
optional string defaultEnvironmentId = 3;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
message WorkflowResponse {
|
|
@@ -36,7 +36,7 @@ message WorkflowResponse {
|
|
|
36
36
|
string createdAt = 5;
|
|
37
37
|
string updatedAt = 6;
|
|
38
38
|
WorkflowStatus status = 7;
|
|
39
|
-
optional string
|
|
39
|
+
optional string defaultEnvironmentId = 8;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
message DeleteWorkflowRequest{
|
|
@@ -46,7 +46,7 @@ message DeleteWorkflowRequest{
|
|
|
46
46
|
message UpdateWorkflowRequest{
|
|
47
47
|
string id = 1;
|
|
48
48
|
string name = 2;
|
|
49
|
-
optional string
|
|
49
|
+
optional string defaultEnvironmentId = 3;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
message FindManyWorkflowRequest{
|
|
@@ -82,7 +82,7 @@ message WorkflowNodeRequest{
|
|
|
82
82
|
google.protobuf.Struct outputSchema = 5;
|
|
83
83
|
google.protobuf.Struct config = 6;
|
|
84
84
|
string nodeTypeId = 7;
|
|
85
|
-
optional string
|
|
85
|
+
optional string environmentId = 8;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
message FindManyWorkflowNodeRequest{
|
|
@@ -103,7 +103,7 @@ message WorkflowNodeResponse{
|
|
|
103
103
|
google.protobuf.Struct config = 7;
|
|
104
104
|
string createdAt = 8;
|
|
105
105
|
string updatedAt = 9;
|
|
106
|
-
optional string
|
|
106
|
+
optional string environmentId = 10;
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
message WorkflowNodeConnection {
|
|
@@ -119,7 +119,7 @@ message SaveWorkflowBatchRequest {
|
|
|
119
119
|
string workflowName = 2;
|
|
120
120
|
repeated WorkflowNodeRequest nodes = 3;
|
|
121
121
|
repeated UpdateBatchConnection connections = 4;
|
|
122
|
-
optional string
|
|
122
|
+
optional string defaultEnvironmentId = 5;
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
message UpdateBatchConnection {
|