@wenlarge/communication 1.1.11 → 1.1.12

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,10 @@ export interface ExecuteNodeRequest {
12
12
  } | undefined;
13
13
  }
14
14
  export interface ExecuteNodeResponse {
15
- output: string;
15
+ output?: {
16
+ [key: string]: any;
17
+ } | undefined;
18
+ branch: string;
16
19
  }
17
20
  export declare const EXECUTOR_CORE_PACKAGE_NAME = "executor_core";
18
21
  export interface CoreExecutionServiceClient {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wenlarge/communication",
3
- "version": "1.1.11",
3
+ "version": "1.1.12",
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",
@@ -11,7 +11,8 @@ message ExecuteNodeRequest {
11
11
  }
12
12
 
13
13
  message ExecuteNodeResponse {
14
- string output = 1;
14
+ google.protobuf.Struct output = 1;
15
+ string branch = 2;
15
16
  }
16
17
 
17
18
  service CoreExecutionService {
@@ -21,7 +21,8 @@ export interface ExecuteNodeRequest {
21
21
  }
22
22
 
23
23
  export interface ExecuteNodeResponse {
24
- output: string;
24
+ output?: { [key: string]: any } | undefined;
25
+ branch: string;
25
26
  }
26
27
 
27
28
  export const EXECUTOR_CORE_PACKAGE_NAME = "executor_core";