@wenlarge/communication 1.1.8 → 1.1.9

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.
@@ -43,6 +43,7 @@ export interface TriggerNodeRequest {
43
43
  nodeId: string;
44
44
  }
45
45
  export interface CreateWorkflowNodeRequest {
46
+ id: string;
46
47
  workflowId: string;
47
48
  name: string;
48
49
  positionX: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wenlarge/communication",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
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",
@@ -70,14 +70,15 @@ message TriggerNodeRequest{
70
70
 
71
71
 
72
72
  message CreateWorkflowNodeRequest{
73
- string workflowId = 1;
74
- string name = 2;
75
- int32 positionX = 3;
76
- int32 positionY = 4;
77
- google.protobuf.Struct inputSchema = 5;
78
- google.protobuf.Struct outputSchema = 6;
79
- google.protobuf.Struct config = 7;
80
- string nodeTypeId = 8;
73
+ string id = 1;
74
+ string workflowId = 2;
75
+ string name = 3;
76
+ int32 positionX = 4;
77
+ int32 positionY = 5;
78
+ google.protobuf.Struct inputSchema = 6;
79
+ google.protobuf.Struct outputSchema = 7;
80
+ google.protobuf.Struct config = 8;
81
+ string nodeTypeId = 9;
81
82
  }
82
83
 
83
84
  message UpdateWorkflowNodeRequest{
@@ -64,6 +64,7 @@ export interface TriggerNodeRequest {
64
64
  }
65
65
 
66
66
  export interface CreateWorkflowNodeRequest {
67
+ id: string;
67
68
  workflowId: string;
68
69
  name: string;
69
70
  positionX: number;