@wenlarge/communication 1.1.11 → 1.1.13
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.
|
@@ -12,7 +12,9 @@ export interface ExecuteNodeRequest {
|
|
|
12
12
|
} | undefined;
|
|
13
13
|
}
|
|
14
14
|
export interface ExecuteNodeResponse {
|
|
15
|
-
output
|
|
15
|
+
output?: {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
} | undefined;
|
|
16
18
|
}
|
|
17
19
|
export declare const EXECUTOR_CORE_PACKAGE_NAME = "executor_core";
|
|
18
20
|
export interface CoreExecutionServiceClient {
|
|
@@ -121,10 +121,9 @@ export interface WorkflowNodeConnection {
|
|
|
121
121
|
workflowId: string;
|
|
122
122
|
fromNodeId: string;
|
|
123
123
|
toNodeId: string;
|
|
124
|
-
pointer?:
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
branch: string;
|
|
124
|
+
pointer?: {
|
|
125
|
+
[key: string]: any;
|
|
126
|
+
} | undefined;
|
|
128
127
|
}
|
|
129
128
|
export interface SaveWorkflowBatchRequest {
|
|
130
129
|
workflowId: string;
|
|
@@ -134,7 +133,9 @@ export interface SaveWorkflowBatchRequest {
|
|
|
134
133
|
export interface UpdateBatchConnection {
|
|
135
134
|
fromNodeId: string;
|
|
136
135
|
toNodeId: string;
|
|
137
|
-
pointer?:
|
|
136
|
+
pointer?: {
|
|
137
|
+
[key: string]: any;
|
|
138
|
+
} | undefined;
|
|
138
139
|
}
|
|
139
140
|
export interface WorkflowNodeTypeResponse {
|
|
140
141
|
id: string;
|
package/package.json
CHANGED
package/proto/workflow.proto
CHANGED
|
@@ -139,11 +139,7 @@ message WorkflowNodeConnection {
|
|
|
139
139
|
string workflowId = 2;
|
|
140
140
|
string fromNodeId = 3;
|
|
141
141
|
string toNodeId = 4;
|
|
142
|
-
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
message ConnectionPointer {
|
|
146
|
-
string branch = 1;
|
|
142
|
+
google.protobuf.Struct pointer = 5;
|
|
147
143
|
}
|
|
148
144
|
|
|
149
145
|
message SaveWorkflowBatchRequest {
|
|
@@ -155,7 +151,7 @@ message SaveWorkflowBatchRequest {
|
|
|
155
151
|
message UpdateBatchConnection {
|
|
156
152
|
string fromNodeId = 1;
|
|
157
153
|
string toNodeId = 2;
|
|
158
|
-
|
|
154
|
+
google.protobuf.Struct pointer = 3;
|
|
159
155
|
}
|
|
160
156
|
|
|
161
157
|
message WorkflowNodeTypeResponse {
|
|
@@ -133,11 +133,7 @@ export interface WorkflowNodeConnection {
|
|
|
133
133
|
workflowId: string;
|
|
134
134
|
fromNodeId: string;
|
|
135
135
|
toNodeId: string;
|
|
136
|
-
pointer?:
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
export interface ConnectionPointer {
|
|
140
|
-
branch: string;
|
|
136
|
+
pointer?: { [key: string]: any } | undefined;
|
|
141
137
|
}
|
|
142
138
|
|
|
143
139
|
export interface SaveWorkflowBatchRequest {
|
|
@@ -149,7 +145,7 @@ export interface SaveWorkflowBatchRequest {
|
|
|
149
145
|
export interface UpdateBatchConnection {
|
|
150
146
|
fromNodeId: string;
|
|
151
147
|
toNodeId: string;
|
|
152
|
-
pointer?:
|
|
148
|
+
pointer?: { [key: string]: any } | undefined;
|
|
153
149
|
}
|
|
154
150
|
|
|
155
151
|
export interface WorkflowNodeTypeResponse {
|