@wenlarge/communication 1.1.12 → 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.
@@ -15,7 +15,6 @@ export interface ExecuteNodeResponse {
15
15
  output?: {
16
16
  [key: string]: any;
17
17
  } | undefined;
18
- branch: string;
19
18
  }
20
19
  export declare const EXECUTOR_CORE_PACKAGE_NAME = "executor_core";
21
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?: ConnectionPointer | undefined;
125
- }
126
- export interface ConnectionPointer {
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?: ConnectionPointer | undefined;
136
+ pointer?: {
137
+ [key: string]: any;
138
+ } | undefined;
138
139
  }
139
140
  export interface WorkflowNodeTypeResponse {
140
141
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wenlarge/communication",
3
- "version": "1.1.12",
3
+ "version": "1.1.13",
4
4
  "description": "Shared gRPC proto interfaces and generated clients for Wenlarge microservices.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -12,7 +12,6 @@ message ExecuteNodeRequest {
12
12
 
13
13
  message ExecuteNodeResponse {
14
14
  google.protobuf.Struct output = 1;
15
- string branch = 2;
16
15
  }
17
16
 
18
17
  service CoreExecutionService {
@@ -139,11 +139,7 @@ message WorkflowNodeConnection {
139
139
  string workflowId = 2;
140
140
  string fromNodeId = 3;
141
141
  string toNodeId = 4;
142
- ConnectionPointer pointer = 5;
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
- ConnectionPointer pointer = 3;
154
+ google.protobuf.Struct pointer = 3;
159
155
  }
160
156
 
161
157
  message WorkflowNodeTypeResponse {
@@ -22,7 +22,6 @@ export interface ExecuteNodeRequest {
22
22
 
23
23
  export interface ExecuteNodeResponse {
24
24
  output?: { [key: string]: any } | undefined;
25
- branch: string;
26
25
  }
27
26
 
28
27
  export const EXECUTOR_CORE_PACKAGE_NAME = "executor_core";
@@ -133,11 +133,7 @@ export interface WorkflowNodeConnection {
133
133
  workflowId: string;
134
134
  fromNodeId: string;
135
135
  toNodeId: string;
136
- pointer?: ConnectionPointer | undefined;
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?: ConnectionPointer | undefined;
148
+ pointer?: { [key: string]: any } | undefined;
153
149
  }
154
150
 
155
151
  export interface WorkflowNodeTypeResponse {