@wenlarge/communication 1.1.19 → 1.2.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.
@@ -135,7 +135,7 @@ export interface GetNodeExecutionLogRequest {
135
135
  take: number;
136
136
  }
137
137
  export interface GetExecutionLogResponse {
138
- logs: ExecutionLogEntry[];
138
+ data: ExecutionLogEntry[];
139
139
  total: number;
140
140
  }
141
141
  export interface GetWorkflowExecutionLogRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wenlarge/communication",
3
- "version": "1.1.19",
3
+ "version": "1.2.0",
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",
@@ -159,7 +159,7 @@ message GetNodeExecutionLogRequest {
159
159
  }
160
160
 
161
161
  message GetExecutionLogResponse {
162
- repeated ExecutionLogEntry logs = 1;
162
+ repeated ExecutionLogEntry data = 1;
163
163
  int32 total = 2;
164
164
  }
165
165
 
@@ -152,7 +152,7 @@ export interface GetNodeExecutionLogRequest {
152
152
  }
153
153
 
154
154
  export interface GetExecutionLogResponse {
155
- logs: ExecutionLogEntry[];
155
+ data: ExecutionLogEntry[];
156
156
  total: number;
157
157
  }
158
158