@wenlarge/communication 1.1.7 → 1.1.8

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.
@@ -18,6 +18,7 @@ export interface WorkflowResponse {
18
18
  projectId: string;
19
19
  createdAt: string;
20
20
  updatedAt: string;
21
+ status: WorkflowStatus;
21
22
  }
22
23
  export interface DeleteWorkflowRequest {
23
24
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wenlarge/communication",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
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",
@@ -37,6 +37,7 @@ message WorkflowResponse {
37
37
  string projectId = 4;
38
38
  string createdAt = 5;
39
39
  string updatedAt = 6;
40
+ WorkflowStatus status = 7;
40
41
  }
41
42
 
42
43
  message DeleteWorkflowRequest{
@@ -32,6 +32,7 @@ export interface WorkflowResponse {
32
32
  projectId: string;
33
33
  createdAt: string;
34
34
  updatedAt: string;
35
+ status: WorkflowStatus;
35
36
  }
36
37
 
37
38
  export interface DeleteWorkflowRequest {