@5minds/node-red-contrib-processcube 1.15.1-develop-d4d471-mapda5nn → 1.15.1-develop-1a7787-maqgn1n9
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/package.json
CHANGED
@@ -37,40 +37,43 @@
|
|
37
37
|
<input type="text" id="node-input-name" placeholder="Name" />
|
38
38
|
</div>
|
39
39
|
<div class="form-row">
|
40
|
-
<label for="node-input-engine"><i class="fa fa-
|
40
|
+
<label for="node-input-engine"><i class="fa fa-link"></i> Engine-URL</label>
|
41
41
|
<input type="text" id="node-input-engine" placeholder="Engine-URL" />
|
42
42
|
</div>
|
43
43
|
<div class="form-row">
|
44
|
-
<label for="node-input-query"><i class="fa fa-
|
44
|
+
<label for="node-input-query"><i class="fa fa-search"></i> Query</label>
|
45
45
|
<input type="text" id="node-input-query" />
|
46
46
|
</div>
|
47
47
|
<div class="form-row" style="margin-bottom: 3px;">
|
48
|
-
|
49
|
-
|
48
|
+
<label style="width:auto" for="node-input-delete_releated"><i class="fa fa-trash"></i> Related Data</label>
|
49
|
+
<input
|
50
|
+
type="checkbox"
|
51
|
+
checked
|
52
|
+
id="node-input-delete_releated"
|
53
|
+
style="display: inline-block; width: auto; vertical-align: top; margin-left: 5px; margin-right: 3px;"
|
54
|
+
/>
|
55
|
+
<label style="width:auto"> Delete</label>
|
50
56
|
</div>
|
51
57
|
</script>
|
52
58
|
|
53
59
|
<script type="text/markdown" data-help-name="processinstance-delete-advanced">
|
54
|
-
Delete
|
60
|
+
Delete outdated instances of a process model in ProcessCube.
|
55
61
|
|
56
|
-
|
62
|
+
*Supported only on engines version 19 or higher.*
|
57
63
|
|
58
64
|
## Inputs
|
59
65
|
|
60
|
-
|
66
|
+
The node can take an input query from either a specific field on the msg object or as a json object directly in the nodes configuration.
|
67
|
+
In both cases the node supports the following fields in the query:
|
61
68
|
|
62
69
|
|
63
|
-
|
70
|
+
: processInstanceId (String): The IDs of the ProcessInstances to delete.
|
71
|
+
: processModelId (String): The ID of the ProcessModel to delete the instances from.
|
72
|
+
: finishedBefore (Datetime): The date before which the instances should be deleted.
|
73
|
+
: finshedAfter (Datetime): The date after which the instances should be deleted.
|
64
74
|
|
65
|
-
: Explanation of the payload:
|
66
75
|
|
67
|
-
|
68
|
-
{
|
69
|
-
processInstanceId: The IDs of the ProcessInstances to delete (Example : 12345678,87654321).
|
70
|
-
processModelId: The ID of the ProcessModel to delete the instances from.
|
71
|
-
finishedBefore: The date before which the instances should be deleted.
|
72
|
-
finshedAfter: The date after which the instances should be deleted.
|
73
|
-
}
|
76
|
+
## Outputs
|
74
77
|
|
75
78
|
### References
|
76
79
|
|