@wenlarge/communication 1.1.10 → 1.1.11

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.
@@ -121,6 +121,10 @@ 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
128
  }
125
129
  export interface SaveWorkflowBatchRequest {
126
130
  workflowId: string;
@@ -130,6 +134,7 @@ export interface SaveWorkflowBatchRequest {
130
134
  export interface UpdateBatchConnection {
131
135
  fromNodeId: string;
132
136
  toNodeId: string;
137
+ pointer?: ConnectionPointer | undefined;
133
138
  }
134
139
  export interface WorkflowNodeTypeResponse {
135
140
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wenlarge/communication",
3
- "version": "1.1.10",
3
+ "version": "1.1.11",
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",
@@ -139,6 +139,11 @@ 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
147
  }
143
148
 
144
149
  message SaveWorkflowBatchRequest {
@@ -150,6 +155,7 @@ message SaveWorkflowBatchRequest {
150
155
  message UpdateBatchConnection {
151
156
  string fromNodeId = 1;
152
157
  string toNodeId = 2;
158
+ ConnectionPointer pointer = 3;
153
159
  }
154
160
 
155
161
  message WorkflowNodeTypeResponse {
@@ -133,6 +133,11 @@ 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
141
  }
137
142
 
138
143
  export interface SaveWorkflowBatchRequest {
@@ -144,6 +149,7 @@ export interface SaveWorkflowBatchRequest {
144
149
  export interface UpdateBatchConnection {
145
150
  fromNodeId: string;
146
151
  toNodeId: string;
152
+ pointer?: ConnectionPointer | undefined;
147
153
  }
148
154
 
149
155
  export interface WorkflowNodeTypeResponse {