@5minds/node-red-contrib-processcube 1.5.2 → 1.5.4-develop-5e0b5a-m36zyoaj

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@5minds/node-red-contrib-processcube",
3
- "version": "1.5.2",
3
+ "version": "1.5.4-develop-5e0b5a-m36zyoaj",
4
4
  "license": "MIT",
5
5
  "description": "Node-RED nodes for ProcessCube",
6
6
  "scripts": {
@@ -29,9 +29,8 @@ module.exports = function (RED) {
29
29
 
30
30
  try {
31
31
  const result = await client.processInstances.query({
32
- processModelId: modelId,
33
- identity: engine.identity,
34
- });
32
+ processModelId: modelId
33
+ }, { identity: engine.identity });
35
34
 
36
35
  let allInstances = result.processInstances.filter((instance) => instance.state != 'suspended');
37
36