@5minds/processcube_engine_sdk 6.1.0-develop-4e3b6b-m3uazmlk → 6.1.0-develop-8ab2af-m464e172
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.
- package/dist/DataModels/FlowNodeInstance/FlowNodeInstance.d.ts +5 -0
- package/dist/DataModels/FlowNodeInstance/Queries.d.ts +1 -0
- package/dist/commonjs/DataModels/FlowNodeInstance/FlowNodeInstance.js +1 -0
- package/dist/commonjs/DataModels/FlowNodeInstance/FlowNodeInstance.js.map +1 -1
- package/package.json +1 -1
|
@@ -78,6 +78,9 @@ export type FlowNodeInstanceList = {
|
|
|
78
78
|
* embeddedProcessModelId:
|
|
79
79
|
* description: The ID of the SubProcess that contains this FlowNodeInstance
|
|
80
80
|
* type: string
|
|
81
|
+
* processModelName:
|
|
82
|
+
* description: The Name of the ProcessModel that contains this FlowNodeInstance
|
|
83
|
+
* type: string
|
|
81
84
|
* processInstanceId:
|
|
82
85
|
* description: The ID of the ProcessInstance that contains this FlowNodeInstance
|
|
83
86
|
* type: string
|
|
@@ -145,6 +148,7 @@ export type FlowNodeInstance = {
|
|
|
145
148
|
processDefinitionId: string;
|
|
146
149
|
processModelId: string;
|
|
147
150
|
embeddedProcessModelId?: string;
|
|
151
|
+
processModelName?: string;
|
|
148
152
|
processInstanceId: string;
|
|
149
153
|
correlationId: string;
|
|
150
154
|
/**
|
|
@@ -205,6 +209,7 @@ export declare enum FlowNodeInstanceSortableColumns {
|
|
|
205
209
|
processDefinitionId = "processDefinitionId",
|
|
206
210
|
processModelId = "processModelId",
|
|
207
211
|
embeddedProcessModelId = "embeddedProcessModelId",
|
|
212
|
+
processModelName = "processModelName",
|
|
208
213
|
processInstanceId = "processInstanceId",
|
|
209
214
|
correlationId = "correlationId",
|
|
210
215
|
ownerId = "ownerId",
|
|
@@ -9,6 +9,7 @@ type FlowNodeInstanceBaseQuery = {
|
|
|
9
9
|
processDefinitionId?: Array<string> | string;
|
|
10
10
|
processModelId?: Array<string> | string;
|
|
11
11
|
embeddedProcessModelId?: Array<string> | string;
|
|
12
|
+
processModelName?: Array<string> | string;
|
|
12
13
|
processInstanceId?: Array<string> | string;
|
|
13
14
|
correlationId?: Array<string> | string;
|
|
14
15
|
parentProcessInstanceId?: Array<string> | string;
|
|
@@ -39,6 +39,7 @@ var FlowNodeInstanceSortableColumns;
|
|
|
39
39
|
FlowNodeInstanceSortableColumns["processDefinitionId"] = "processDefinitionId";
|
|
40
40
|
FlowNodeInstanceSortableColumns["processModelId"] = "processModelId";
|
|
41
41
|
FlowNodeInstanceSortableColumns["embeddedProcessModelId"] = "embeddedProcessModelId";
|
|
42
|
+
FlowNodeInstanceSortableColumns["processModelName"] = "processModelName";
|
|
42
43
|
FlowNodeInstanceSortableColumns["processInstanceId"] = "processInstanceId";
|
|
43
44
|
FlowNodeInstanceSortableColumns["correlationId"] = "correlationId";
|
|
44
45
|
FlowNodeInstanceSortableColumns["ownerId"] = "ownerId";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FlowNodeInstance.js","sourceRoot":"","sources":["../../../../src/DataModels/FlowNodeInstance/FlowNodeInstance.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"FlowNodeInstance.js","sourceRoot":"","sources":["../../../../src/DataModels/FlowNodeInstance/FlowNodeInstance.ts"],"names":[],"mappings":";;;AA+KA;;;;;;;;;;;;;;GAcG;AACH,IAAY,qBAOX;AAPD,WAAY,qBAAqB;IAC/B,4CAAmB,CAAA;IACnB,gDAAuB,CAAA;IACvB,8CAAqB,CAAA;IACrB,kDAAyB,CAAA;IACzB,wCAAe,CAAA;IACf,8CAAqB,CAAA;AACvB,CAAC,EAPW,qBAAqB,qCAArB,qBAAqB,QAOhC;AAOD,IAAY,+BAoBX;AApBD,WAAY,+BAA+B;IACzC,4EAAyC,CAAA;IACzC,4DAAyB,CAAA;IACzB,gEAA6B,CAAA;IAC7B,gEAA6B,CAAA;IAC7B,gEAA6B,CAAA;IAC7B,0DAAuB,CAAA;IACvB,kDAAe,CAAA;IACf,4FAAyD,CAAA;IACzD,sFAAmD,CAAA;IACnD,8EAA2C,CAAA;IAC3C,oEAAiC,CAAA;IACjC,oFAAiD,CAAA;IACjD,wEAAqC,CAAA;IACrC,0EAAuC,CAAA;IACvC,kEAA+B,CAAA;IAC/B,sDAAmB,CAAA;IACnB,0DAAuB,CAAA;IACvB,4DAAyB,CAAA;IACzB,8FAA2D,CAAA;AAC7D,CAAC,EApBW,+BAA+B,+CAA/B,+BAA+B,QAoB1C"}
|
package/package.json
CHANGED