@5minds/node-red-contrib-processcube 0.14.0-feature-ef048b-lyy1ngi6 → 0.14.0-fix-error-in-process-instance-query-433395-lyzh0xul
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/Dockerfile +1 -1
 - package/docker-compose.yml +0 -11
 - package/externaltask-error.js +13 -14
 - package/externaltask-input.js +43 -98
 - package/externaltask-output.js +3 -3
 - package/nodered/node-red-contrib-processcube-flows.json +133 -108
 - package/nodered/settings.js +1 -1
 - package/package.json +1 -1
 - package/processcube-engine-config.js +2 -17
 - package/processes/CheckError.bpmn +78 -0
 - package/processes/NodeRedExternalTask.bpmn +77 -0
 - package/processes/SampleUserTask.bpmn +95 -0
 - package/processinstance-query.js +36 -22
 - package/examples/External-Task-Sample.json +0 -252
 - package/processes/External-Task-Sample.bpmn +0 -94
 
| 
         @@ -13,29 +13,14 @@ module.exports = function(RED) { 
     | 
|
| 
       13 
13 
     | 
    
         
             
                    this.identity = null;
         
     | 
| 
       14 
14 
     | 
    
         
             
                    this.registerOnIdentityChanged = function (callback) {
         
     | 
| 
       15 
15 
     | 
    
         
             
                        identityChangedCallbacks.push(callback);
         
     | 
| 
       16 
     | 
    
         
            -
                    } 
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
      
 16 
     | 
    
         
            +
                    }
         
     | 
| 
       18 
17 
     | 
    
         
             
                    this.setIdentity = (identity)  => {
         
     | 
| 
       19 
18 
     | 
    
         
             
                        this.identity = identity;
         
     | 
| 
       20 
19 
     | 
    
         | 
| 
       21 
20 
     | 
    
         
             
                        for (const callback of identityChangedCallbacks) {
         
     | 
| 
       22 
21 
     | 
    
         
             
                            callback(identity);
         
     | 
| 
       23 
22 
     | 
    
         
             
                        }
         
     | 
| 
       24 
     | 
    
         
            -
                    } 
     | 
| 
       25 
     | 
    
         
            -
             
     | 
| 
       26 
     | 
    
         
            -
                    var nodeContext = node.context();
         
     | 
| 
       27 
     | 
    
         
            -
             
     | 
| 
       28 
     | 
    
         
            -
                    this.getEngineClient = () => {
         
     | 
| 
       29 
     | 
    
         
            -
                        const engineUrl = this.url || process.env.ENGINE_URL || 'http://engine:8000';
         
     | 
| 
       30 
     | 
    
         
            -
                        let client = nodeContext.get('client');
         
     | 
| 
       31 
     | 
    
         
            -
             
     | 
| 
       32 
     | 
    
         
            -
                        if (!client) {
         
     | 
| 
       33 
     | 
    
         
            -
                            nodeContext.set('client', new engine_client.EngineClient(engineUrl));
         
     | 
| 
       34 
     | 
    
         
            -
                            client = nodeContext.get('client');
         
     | 
| 
       35 
     | 
    
         
            -
                        }   
         
     | 
| 
       36 
     | 
    
         
            -
             
     | 
| 
       37 
     | 
    
         
            -
                        return client;
         
     | 
| 
       38 
     | 
    
         
            -
                    };
         
     | 
| 
      
 23 
     | 
    
         
            +
                    }
         
     | 
| 
       39 
24 
     | 
    
         | 
| 
       40 
25 
     | 
    
         
             
                    if (this.credentials.clientId && this.credentials.clientSecret) {
         
     | 
| 
       41 
26 
     | 
    
         
             
                        const engineClient = new engine_client.EngineClient(this.url);
         
     | 
| 
         @@ -0,0 +1,78 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="CheckError_Definition" targetNamespace="http://bpmn.io/schema/bpmn" exporter="5Minds Studio" exporterVersion="1">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <bpmn:collaboration id="Collaboration_1cidyxu" name="">
         
     | 
| 
      
 4 
     | 
    
         
            +
                <bpmn:participant id="Participant_0px403d" name="CheckError" processRef="CheckError_Process" />
         
     | 
| 
      
 5 
     | 
    
         
            +
              </bpmn:collaboration>
         
     | 
| 
      
 6 
     | 
    
         
            +
              <bpmn:process id="CheckError_Process" name="CheckError" isExecutable="true">
         
     | 
| 
      
 7 
     | 
    
         
            +
                <bpmn:laneSet>
         
     | 
| 
      
 8 
     | 
    
         
            +
                  <bpmn:lane id="Lane_1xzf0d3" name="Lane">
         
     | 
| 
      
 9 
     | 
    
         
            +
                    <bpmn:flowNodeRef>StartEvent_1</bpmn:flowNodeRef>
         
     | 
| 
      
 10 
     | 
    
         
            +
                    <bpmn:flowNodeRef>Event_0kmuys0</bpmn:flowNodeRef>
         
     | 
| 
      
 11 
     | 
    
         
            +
                    <bpmn:flowNodeRef>Activity_09zn4t5</bpmn:flowNodeRef>
         
     | 
| 
      
 12 
     | 
    
         
            +
                    <bpmn:flowNodeRef>Event_1gy657v</bpmn:flowNodeRef>
         
     | 
| 
      
 13 
     | 
    
         
            +
                    <bpmn:flowNodeRef>Event_1w4tivm</bpmn:flowNodeRef>
         
     | 
| 
      
 14 
     | 
    
         
            +
                  </bpmn:lane>
         
     | 
| 
      
 15 
     | 
    
         
            +
                </bpmn:laneSet>
         
     | 
| 
      
 16 
     | 
    
         
            +
                <bpmn:startEvent id="StartEvent_1" name="Start">
         
     | 
| 
      
 17 
     | 
    
         
            +
                  <bpmn:outgoing>Flow_14izvt0</bpmn:outgoing>
         
     | 
| 
      
 18 
     | 
    
         
            +
                </bpmn:startEvent>
         
     | 
| 
      
 19 
     | 
    
         
            +
                <bpmn:sequenceFlow id="Flow_14izvt0" sourceRef="StartEvent_1" targetRef="Activity_09zn4t5" />
         
     | 
| 
      
 20 
     | 
    
         
            +
                <bpmn:endEvent id="Event_0kmuys0">
         
     | 
| 
      
 21 
     | 
    
         
            +
                  <bpmn:incoming>Flow_1ukmuxb</bpmn:incoming>
         
     | 
| 
      
 22 
     | 
    
         
            +
                </bpmn:endEvent>
         
     | 
| 
      
 23 
     | 
    
         
            +
                <bpmn:sequenceFlow id="Flow_1ukmuxb" sourceRef="Activity_09zn4t5" targetRef="Event_0kmuys0" />
         
     | 
| 
      
 24 
     | 
    
         
            +
                <bpmn:serviceTask id="Activity_09zn4t5" name="ETW with error" camunda:type="external" camunda:topic="SampleError">
         
     | 
| 
      
 25 
     | 
    
         
            +
                  <bpmn:incoming>Flow_14izvt0</bpmn:incoming>
         
     | 
| 
      
 26 
     | 
    
         
            +
                  <bpmn:outgoing>Flow_1ukmuxb</bpmn:outgoing>
         
     | 
| 
      
 27 
     | 
    
         
            +
                </bpmn:serviceTask>
         
     | 
| 
      
 28 
     | 
    
         
            +
                <bpmn:sequenceFlow id="Flow_0tgf785" sourceRef="Event_1w4tivm" targetRef="Event_1gy657v" />
         
     | 
| 
      
 29 
     | 
    
         
            +
                <bpmn:endEvent id="Event_1gy657v">
         
     | 
| 
      
 30 
     | 
    
         
            +
                  <bpmn:incoming>Flow_0tgf785</bpmn:incoming>
         
     | 
| 
      
 31 
     | 
    
         
            +
                </bpmn:endEvent>
         
     | 
| 
      
 32 
     | 
    
         
            +
                <bpmn:boundaryEvent id="Event_1w4tivm" attachedToRef="Activity_09zn4t5">
         
     | 
| 
      
 33 
     | 
    
         
            +
                  <bpmn:outgoing>Flow_0tgf785</bpmn:outgoing>
         
     | 
| 
      
 34 
     | 
    
         
            +
                  <bpmn:errorEventDefinition id="ErrorEventDefinition_0nesf0j" />
         
     | 
| 
      
 35 
     | 
    
         
            +
                </bpmn:boundaryEvent>
         
     | 
| 
      
 36 
     | 
    
         
            +
              </bpmn:process>
         
     | 
| 
      
 37 
     | 
    
         
            +
              <bpmndi:BPMNDiagram id="BPMNDiagram_1">
         
     | 
| 
      
 38 
     | 
    
         
            +
                <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1cidyxu">
         
     | 
| 
      
 39 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Participant_0px403d_di" bpmnElement="Participant_0px403d" isHorizontal="true">
         
     | 
| 
      
 40 
     | 
    
         
            +
                    <dc:Bounds x="5" y="4" width="525" height="346" />
         
     | 
| 
      
 41 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 42 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Lane_1xzf0d3_di" bpmnElement="Lane_1xzf0d3" isHorizontal="true">
         
     | 
| 
      
 43 
     | 
    
         
            +
                    <dc:Bounds x="35" y="4" width="495" height="346" />
         
     | 
| 
      
 44 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 45 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="StartEvent_1_di" bpmnElement="StartEvent_1">
         
     | 
| 
      
 46 
     | 
    
         
            +
                    <dc:Bounds x="92" y="152" width="36" height="36" />
         
     | 
| 
      
 47 
     | 
    
         
            +
                    <bpmndi:BPMNLabel>
         
     | 
| 
      
 48 
     | 
    
         
            +
                      <dc:Bounds x="98" y="195" width="24" height="14" />
         
     | 
| 
      
 49 
     | 
    
         
            +
                    </bpmndi:BPMNLabel>
         
     | 
| 
      
 50 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 51 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Event_0kmuys0_di" bpmnElement="Event_0kmuys0">
         
     | 
| 
      
 52 
     | 
    
         
            +
                    <dc:Bounds x="332" y="152" width="36" height="36" />
         
     | 
| 
      
 53 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 54 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Activity_04h2kr7_di" bpmnElement="Activity_09zn4t5">
         
     | 
| 
      
 55 
     | 
    
         
            +
                    <dc:Bounds x="180" y="130" width="100" height="80" />
         
     | 
| 
      
 56 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 57 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Event_1gy657v_di" bpmnElement="Event_1gy657v">
         
     | 
| 
      
 58 
     | 
    
         
            +
                    <dc:Bounds x="362" y="272" width="36" height="36" />
         
     | 
| 
      
 59 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 60 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Event_0s7ur9g_di" bpmnElement="Event_1w4tivm">
         
     | 
| 
      
 61 
     | 
    
         
            +
                    <dc:Bounds x="222" y="192" width="36" height="36" />
         
     | 
| 
      
 62 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 63 
     | 
    
         
            +
                  <bpmndi:BPMNEdge id="Flow_14izvt0_di" bpmnElement="Flow_14izvt0">
         
     | 
| 
      
 64 
     | 
    
         
            +
                    <di:waypoint x="128" y="170" />
         
     | 
| 
      
 65 
     | 
    
         
            +
                    <di:waypoint x="180" y="170" />
         
     | 
| 
      
 66 
     | 
    
         
            +
                  </bpmndi:BPMNEdge>
         
     | 
| 
      
 67 
     | 
    
         
            +
                  <bpmndi:BPMNEdge id="Flow_1ukmuxb_di" bpmnElement="Flow_1ukmuxb">
         
     | 
| 
      
 68 
     | 
    
         
            +
                    <di:waypoint x="280" y="170" />
         
     | 
| 
      
 69 
     | 
    
         
            +
                    <di:waypoint x="332" y="170" />
         
     | 
| 
      
 70 
     | 
    
         
            +
                  </bpmndi:BPMNEdge>
         
     | 
| 
      
 71 
     | 
    
         
            +
                  <bpmndi:BPMNEdge id="Flow_0tgf785_di" bpmnElement="Flow_0tgf785">
         
     | 
| 
      
 72 
     | 
    
         
            +
                    <di:waypoint x="240" y="228" />
         
     | 
| 
      
 73 
     | 
    
         
            +
                    <di:waypoint x="240" y="290" />
         
     | 
| 
      
 74 
     | 
    
         
            +
                    <di:waypoint x="362" y="290" />
         
     | 
| 
      
 75 
     | 
    
         
            +
                  </bpmndi:BPMNEdge>
         
     | 
| 
      
 76 
     | 
    
         
            +
                </bpmndi:BPMNPlane>
         
     | 
| 
      
 77 
     | 
    
         
            +
              </bpmndi:BPMNDiagram>
         
     | 
| 
      
 78 
     | 
    
         
            +
            </bpmn:definitions>
         
     | 
| 
         @@ -0,0 +1,77 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="NodeRedExternalTask_Definition" targetNamespace="http://bpmn.io/schema/bpmn" exporter="5Minds Studio" exporterVersion="1">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <bpmn:collaboration id="Collaboration_1cidyxu" name="">
         
     | 
| 
      
 4 
     | 
    
         
            +
                <bpmn:participant id="Participant_0px403d" name="NodeRedExternalTask" processRef="NodeRedExternalTask_Process" />
         
     | 
| 
      
 5 
     | 
    
         
            +
              </bpmn:collaboration>
         
     | 
| 
      
 6 
     | 
    
         
            +
              <bpmn:process id="NodeRedExternalTask_Process" name="NodeRedExternalTask" isExecutable="true">
         
     | 
| 
      
 7 
     | 
    
         
            +
                <bpmn:laneSet>
         
     | 
| 
      
 8 
     | 
    
         
            +
                  <bpmn:lane id="Lane_1xzf0d3">
         
     | 
| 
      
 9 
     | 
    
         
            +
                    <bpmn:flowNodeRef>StartEvent_1</bpmn:flowNodeRef>
         
     | 
| 
      
 10 
     | 
    
         
            +
                    <bpmn:flowNodeRef>Activity_1h843f0</bpmn:flowNodeRef>
         
     | 
| 
      
 11 
     | 
    
         
            +
                    <bpmn:flowNodeRef>Activity_1duxvq1</bpmn:flowNodeRef>
         
     | 
| 
      
 12 
     | 
    
         
            +
                    <bpmn:flowNodeRef>Event_0z1wtnd</bpmn:flowNodeRef>
         
     | 
| 
      
 13 
     | 
    
         
            +
                  </bpmn:lane>
         
     | 
| 
      
 14 
     | 
    
         
            +
                </bpmn:laneSet>
         
     | 
| 
      
 15 
     | 
    
         
            +
                <bpmn:startEvent id="StartEvent_1" name="Start">
         
     | 
| 
      
 16 
     | 
    
         
            +
                  <bpmn:outgoing>Flow_1xfzejj</bpmn:outgoing>
         
     | 
| 
      
 17 
     | 
    
         
            +
                </bpmn:startEvent>
         
     | 
| 
      
 18 
     | 
    
         
            +
                <bpmn:sequenceFlow id="Flow_1xfzejj" sourceRef="StartEvent_1" targetRef="Activity_1h843f0" />
         
     | 
| 
      
 19 
     | 
    
         
            +
                <bpmn:serviceTask id="Activity_1h843f0" name="Node Red Flow" camunda:type="external" camunda:topic="Test">
         
     | 
| 
      
 20 
     | 
    
         
            +
                  <bpmn:extensionElements>
         
     | 
| 
      
 21 
     | 
    
         
            +
                    <camunda:properties>
         
     | 
| 
      
 22 
     | 
    
         
            +
                      <camunda:property name="payload" value="{
    test: 1
}" />
         
     | 
| 
      
 23 
     | 
    
         
            +
                    </camunda:properties>
         
     | 
| 
      
 24 
     | 
    
         
            +
                  </bpmn:extensionElements>
         
     | 
| 
      
 25 
     | 
    
         
            +
                  <bpmn:incoming>Flow_1xfzejj</bpmn:incoming>
         
     | 
| 
      
 26 
     | 
    
         
            +
                  <bpmn:outgoing>Flow_110cohh</bpmn:outgoing>
         
     | 
| 
      
 27 
     | 
    
         
            +
                </bpmn:serviceTask>
         
     | 
| 
      
 28 
     | 
    
         
            +
                <bpmn:sequenceFlow id="Flow_110cohh" sourceRef="Activity_1h843f0" targetRef="Activity_1duxvq1" />
         
     | 
| 
      
 29 
     | 
    
         
            +
                <bpmn:serviceTask id="Activity_1duxvq1" name="SampleError" camunda:type="external" camunda:topic="SampleError">
         
     | 
| 
      
 30 
     | 
    
         
            +
                  <bpmn:incoming>Flow_110cohh</bpmn:incoming>
         
     | 
| 
      
 31 
     | 
    
         
            +
                  <bpmn:outgoing>Flow_1u1afua</bpmn:outgoing>
         
     | 
| 
      
 32 
     | 
    
         
            +
                </bpmn:serviceTask>
         
     | 
| 
      
 33 
     | 
    
         
            +
                <bpmn:sequenceFlow id="Flow_1u1afua" sourceRef="Activity_1duxvq1" targetRef="Event_0z1wtnd" />
         
     | 
| 
      
 34 
     | 
    
         
            +
                <bpmn:endEvent id="Event_0z1wtnd">
         
     | 
| 
      
 35 
     | 
    
         
            +
                  <bpmn:incoming>Flow_1u1afua</bpmn:incoming>
         
     | 
| 
      
 36 
     | 
    
         
            +
                </bpmn:endEvent>
         
     | 
| 
      
 37 
     | 
    
         
            +
              </bpmn:process>
         
     | 
| 
      
 38 
     | 
    
         
            +
              <bpmndi:BPMNDiagram id="BPMNDiagram_1">
         
     | 
| 
      
 39 
     | 
    
         
            +
                <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1cidyxu">
         
     | 
| 
      
 40 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Participant_0px403d_di" bpmnElement="Participant_0px403d" isHorizontal="true">
         
     | 
| 
      
 41 
     | 
    
         
            +
                    <dc:Bounds x="5" y="4" width="695" height="346" />
         
     | 
| 
      
 42 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 43 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Lane_1xzf0d3_di" bpmnElement="Lane_1xzf0d3" isHorizontal="true">
         
     | 
| 
      
 44 
     | 
    
         
            +
                    <dc:Bounds x="35" y="4" width="665" height="346" />
         
     | 
| 
      
 45 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 46 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="StartEvent_1_di" bpmnElement="StartEvent_1">
         
     | 
| 
      
 47 
     | 
    
         
            +
                    <dc:Bounds x="92" y="152" width="36" height="36" />
         
     | 
| 
      
 48 
     | 
    
         
            +
                    <bpmndi:BPMNLabel>
         
     | 
| 
      
 49 
     | 
    
         
            +
                      <dc:Bounds x="98" y="195" width="24" height="14" />
         
     | 
| 
      
 50 
     | 
    
         
            +
                    </bpmndi:BPMNLabel>
         
     | 
| 
      
 51 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 52 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Activity_0sg2du2_di" bpmnElement="Activity_1h843f0">
         
     | 
| 
      
 53 
     | 
    
         
            +
                    <dc:Bounds x="180" y="130" width="100" height="80" />
         
     | 
| 
      
 54 
     | 
    
         
            +
                    <bpmndi:BPMNLabel />
         
     | 
| 
      
 55 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 56 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Activity_1ohliek_di" bpmnElement="Activity_1duxvq1">
         
     | 
| 
      
 57 
     | 
    
         
            +
                    <dc:Bounds x="370" y="130" width="100" height="80" />
         
     | 
| 
      
 58 
     | 
    
         
            +
                    <bpmndi:BPMNLabel />
         
     | 
| 
      
 59 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 60 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Event_0z1wtnd_di" bpmnElement="Event_0z1wtnd">
         
     | 
| 
      
 61 
     | 
    
         
            +
                    <dc:Bounds x="562" y="152" width="36" height="36" />
         
     | 
| 
      
 62 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 63 
     | 
    
         
            +
                  <bpmndi:BPMNEdge id="Flow_1xfzejj_di" bpmnElement="Flow_1xfzejj">
         
     | 
| 
      
 64 
     | 
    
         
            +
                    <di:waypoint x="128" y="170" />
         
     | 
| 
      
 65 
     | 
    
         
            +
                    <di:waypoint x="180" y="170" />
         
     | 
| 
      
 66 
     | 
    
         
            +
                  </bpmndi:BPMNEdge>
         
     | 
| 
      
 67 
     | 
    
         
            +
                  <bpmndi:BPMNEdge id="Flow_110cohh_di" bpmnElement="Flow_110cohh">
         
     | 
| 
      
 68 
     | 
    
         
            +
                    <di:waypoint x="280" y="170" />
         
     | 
| 
      
 69 
     | 
    
         
            +
                    <di:waypoint x="370" y="170" />
         
     | 
| 
      
 70 
     | 
    
         
            +
                  </bpmndi:BPMNEdge>
         
     | 
| 
      
 71 
     | 
    
         
            +
                  <bpmndi:BPMNEdge id="Flow_1u1afua_di" bpmnElement="Flow_1u1afua">
         
     | 
| 
      
 72 
     | 
    
         
            +
                    <di:waypoint x="470" y="170" />
         
     | 
| 
      
 73 
     | 
    
         
            +
                    <di:waypoint x="562" y="170" />
         
     | 
| 
      
 74 
     | 
    
         
            +
                  </bpmndi:BPMNEdge>
         
     | 
| 
      
 75 
     | 
    
         
            +
                </bpmndi:BPMNPlane>
         
     | 
| 
      
 76 
     | 
    
         
            +
              </bpmndi:BPMNDiagram>
         
     | 
| 
      
 77 
     | 
    
         
            +
            </bpmn:definitions>
         
     | 
| 
         @@ -0,0 +1,95 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="SampleUserTask_Definition" targetNamespace="http://bpmn.io/schema/bpmn" exporter="5Minds Studio" exporterVersion="1">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <bpmn:collaboration id="Collaboration_1cidyxu" name="">
         
     | 
| 
      
 4 
     | 
    
         
            +
                <bpmn:participant id="Participant_0px403d" name="SampleUserTask" processRef="SampleUserTask_Process" />
         
     | 
| 
      
 5 
     | 
    
         
            +
              </bpmn:collaboration>
         
     | 
| 
      
 6 
     | 
    
         
            +
              <bpmn:process id="SampleUserTask_Process" name="SampleUserTask" isExecutable="true">
         
     | 
| 
      
 7 
     | 
    
         
            +
                <bpmn:laneSet>
         
     | 
| 
      
 8 
     | 
    
         
            +
                  <bpmn:lane id="Lane_1xzf0d3" name="Lane">
         
     | 
| 
      
 9 
     | 
    
         
            +
                    <bpmn:flowNodeRef>StartEvent_1</bpmn:flowNodeRef>
         
     | 
| 
      
 10 
     | 
    
         
            +
                    <bpmn:flowNodeRef>Activity_0ljiko7</bpmn:flowNodeRef>
         
     | 
| 
      
 11 
     | 
    
         
            +
                    <bpmn:flowNodeRef>Event_1eeiwx4</bpmn:flowNodeRef>
         
     | 
| 
      
 12 
     | 
    
         
            +
                    <bpmn:flowNodeRef>Activity_0glvmjk</bpmn:flowNodeRef>
         
     | 
| 
      
 13 
     | 
    
         
            +
                  </bpmn:lane>
         
     | 
| 
      
 14 
     | 
    
         
            +
                </bpmn:laneSet>
         
     | 
| 
      
 15 
     | 
    
         
            +
                <bpmn:startEvent id="StartEvent_1" name="Start">
         
     | 
| 
      
 16 
     | 
    
         
            +
                  <bpmn:extensionElements>
         
     | 
| 
      
 17 
     | 
    
         
            +
                    <camunda:properties>
         
     | 
| 
      
 18 
     | 
    
         
            +
                      <camunda:property name="studio.defaultCustomStartToken" value="{
    "sample": "hello"
}" />
         
     | 
| 
      
 19 
     | 
    
         
            +
                    </camunda:properties>
         
     | 
| 
      
 20 
     | 
    
         
            +
                  </bpmn:extensionElements>
         
     | 
| 
      
 21 
     | 
    
         
            +
                  <bpmn:outgoing>Flow_1h0giih</bpmn:outgoing>
         
     | 
| 
      
 22 
     | 
    
         
            +
                </bpmn:startEvent>
         
     | 
| 
      
 23 
     | 
    
         
            +
                <bpmn:sequenceFlow id="Flow_1h0giih" sourceRef="StartEvent_1" targetRef="Activity_0ljiko7" />
         
     | 
| 
      
 24 
     | 
    
         
            +
                <bpmn:userTask id="Activity_0ljiko7" name="Hello world">
         
     | 
| 
      
 25 
     | 
    
         
            +
                  <bpmn:extensionElements>
         
     | 
| 
      
 26 
     | 
    
         
            +
                    <camunda:formData>
         
     | 
| 
      
 27 
     | 
    
         
            +
                      <camunda:formField id="text_id" label="Text Label" type="string" />
         
     | 
| 
      
 28 
     | 
    
         
            +
                      <camunda:formField id="number_id" label="Number Label" type="long" defaultValue="${token.current.sample}" customForm="{"hint":"Sample"}" />
         
     | 
| 
      
 29 
     | 
    
         
            +
                      <camunda:formField id="date_id" label="Date Label" type="date" />
         
     | 
| 
      
 30 
     | 
    
         
            +
                      <camunda:formField id="select_id" label="Select Label" type="enum">
         
     | 
| 
      
 31 
     | 
    
         
            +
                        <camunda:value id="value_01" name="Value 01" />
         
     | 
| 
      
 32 
     | 
    
         
            +
                        <camunda:value id="value_02" name="Value 02" />
         
     | 
| 
      
 33 
     | 
    
         
            +
                      </camunda:formField>
         
     | 
| 
      
 34 
     | 
    
         
            +
                      <camunda:formField id="boolean_id" label="Boolean Label" type="boolean" />
         
     | 
| 
      
 35 
     | 
    
         
            +
                    </camunda:formData>
         
     | 
| 
      
 36 
     | 
    
         
            +
                  </bpmn:extensionElements>
         
     | 
| 
      
 37 
     | 
    
         
            +
                  <bpmn:incoming>Flow_1h0giih</bpmn:incoming>
         
     | 
| 
      
 38 
     | 
    
         
            +
                  <bpmn:outgoing>Flow_06e5qq4</bpmn:outgoing>
         
     | 
| 
      
 39 
     | 
    
         
            +
                </bpmn:userTask>
         
     | 
| 
      
 40 
     | 
    
         
            +
                <bpmn:sequenceFlow id="Flow_06e5qq4" sourceRef="Activity_0ljiko7" targetRef="Activity_0glvmjk" />
         
     | 
| 
      
 41 
     | 
    
         
            +
                <bpmn:endEvent id="Event_1eeiwx4">
         
     | 
| 
      
 42 
     | 
    
         
            +
                  <bpmn:incoming>Flow_02dyxfy</bpmn:incoming>
         
     | 
| 
      
 43 
     | 
    
         
            +
                </bpmn:endEvent>
         
     | 
| 
      
 44 
     | 
    
         
            +
                <bpmn:sequenceFlow id="Flow_02dyxfy" sourceRef="Activity_0glvmjk" targetRef="Event_1eeiwx4" />
         
     | 
| 
      
 45 
     | 
    
         
            +
                <bpmn:userTask id="Activity_0glvmjk" name="foo">
         
     | 
| 
      
 46 
     | 
    
         
            +
                  <bpmn:extensionElements>
         
     | 
| 
      
 47 
     | 
    
         
            +
                    <camunda:formData>
         
     | 
| 
      
 48 
     | 
    
         
            +
                      <camunda:formField id="FormField_BeDNcjma" label="Label 1" type="string" />
         
     | 
| 
      
 49 
     | 
    
         
            +
                      <camunda:formField id="FormField_Qv2INvg4" label="Label 2" type="string" />
         
     | 
| 
      
 50 
     | 
    
         
            +
                    </camunda:formData>
         
     | 
| 
      
 51 
     | 
    
         
            +
                  </bpmn:extensionElements>
         
     | 
| 
      
 52 
     | 
    
         
            +
                  <bpmn:incoming>Flow_06e5qq4</bpmn:incoming>
         
     | 
| 
      
 53 
     | 
    
         
            +
                  <bpmn:outgoing>Flow_02dyxfy</bpmn:outgoing>
         
     | 
| 
      
 54 
     | 
    
         
            +
                </bpmn:userTask>
         
     | 
| 
      
 55 
     | 
    
         
            +
              </bpmn:process>
         
     | 
| 
      
 56 
     | 
    
         
            +
              <bpmndi:BPMNDiagram id="BPMNDiagram_1">
         
     | 
| 
      
 57 
     | 
    
         
            +
                <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1cidyxu">
         
     | 
| 
      
 58 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Participant_0px403d_di" bpmnElement="Participant_0px403d" isHorizontal="true">
         
     | 
| 
      
 59 
     | 
    
         
            +
                    <dc:Bounds x="5" y="4" width="665" height="346" />
         
     | 
| 
      
 60 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 61 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Lane_1xzf0d3_di" bpmnElement="Lane_1xzf0d3" isHorizontal="true">
         
     | 
| 
      
 62 
     | 
    
         
            +
                    <dc:Bounds x="35" y="4" width="635" height="346" />
         
     | 
| 
      
 63 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 64 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="StartEvent_1_di" bpmnElement="StartEvent_1">
         
     | 
| 
      
 65 
     | 
    
         
            +
                    <dc:Bounds x="92" y="152" width="36" height="36" />
         
     | 
| 
      
 66 
     | 
    
         
            +
                    <bpmndi:BPMNLabel>
         
     | 
| 
      
 67 
     | 
    
         
            +
                      <dc:Bounds x="98" y="195" width="24" height="14" />
         
     | 
| 
      
 68 
     | 
    
         
            +
                    </bpmndi:BPMNLabel>
         
     | 
| 
      
 69 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 70 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Activity_1uodwbi_di" bpmnElement="Activity_0ljiko7">
         
     | 
| 
      
 71 
     | 
    
         
            +
                    <dc:Bounds x="180" y="130" width="100" height="80" />
         
     | 
| 
      
 72 
     | 
    
         
            +
                    <bpmndi:BPMNLabel />
         
     | 
| 
      
 73 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 74 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Event_1eeiwx4_di" bpmnElement="Event_1eeiwx4">
         
     | 
| 
      
 75 
     | 
    
         
            +
                    <dc:Bounds x="482" y="152" width="36" height="36" />
         
     | 
| 
      
 76 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 77 
     | 
    
         
            +
                  <bpmndi:BPMNShape id="Activity_0vcm0z0_di" bpmnElement="Activity_0glvmjk">
         
     | 
| 
      
 78 
     | 
    
         
            +
                    <dc:Bounds x="330" y="130" width="100" height="80" />
         
     | 
| 
      
 79 
     | 
    
         
            +
                    <bpmndi:BPMNLabel />
         
     | 
| 
      
 80 
     | 
    
         
            +
                  </bpmndi:BPMNShape>
         
     | 
| 
      
 81 
     | 
    
         
            +
                  <bpmndi:BPMNEdge id="Flow_1h0giih_di" bpmnElement="Flow_1h0giih">
         
     | 
| 
      
 82 
     | 
    
         
            +
                    <di:waypoint x="128" y="170" />
         
     | 
| 
      
 83 
     | 
    
         
            +
                    <di:waypoint x="180" y="170" />
         
     | 
| 
      
 84 
     | 
    
         
            +
                  </bpmndi:BPMNEdge>
         
     | 
| 
      
 85 
     | 
    
         
            +
                  <bpmndi:BPMNEdge id="Flow_06e5qq4_di" bpmnElement="Flow_06e5qq4">
         
     | 
| 
      
 86 
     | 
    
         
            +
                    <di:waypoint x="280" y="170" />
         
     | 
| 
      
 87 
     | 
    
         
            +
                    <di:waypoint x="330" y="170" />
         
     | 
| 
      
 88 
     | 
    
         
            +
                  </bpmndi:BPMNEdge>
         
     | 
| 
      
 89 
     | 
    
         
            +
                  <bpmndi:BPMNEdge id="Flow_02dyxfy_di" bpmnElement="Flow_02dyxfy">
         
     | 
| 
      
 90 
     | 
    
         
            +
                    <di:waypoint x="430" y="170" />
         
     | 
| 
      
 91 
     | 
    
         
            +
                    <di:waypoint x="482" y="170" />
         
     | 
| 
      
 92 
     | 
    
         
            +
                  </bpmndi:BPMNEdge>
         
     | 
| 
      
 93 
     | 
    
         
            +
                </bpmndi:BPMNPlane>
         
     | 
| 
      
 94 
     | 
    
         
            +
              </bpmndi:BPMNDiagram>
         
     | 
| 
      
 95 
     | 
    
         
            +
            </bpmn:definitions>
         
     | 
    
        package/processinstance-query.js
    CHANGED
    
    | 
         @@ -1,31 +1,35 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            const process = require( 
     | 
| 
       2 
     | 
    
         
            -
            const EventEmitter = require( 
     | 
| 
      
 1 
     | 
    
         
            +
            const process = require("process");
         
     | 
| 
      
 2 
     | 
    
         
            +
            const EventEmitter = require("node:events");
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            const engine_client = require( 
     | 
| 
      
 4 
     | 
    
         
            +
            const engine_client = require("@5minds/processcube_engine_client");
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
            module.exports = function(RED) {
         
     | 
| 
      
 6 
     | 
    
         
            +
            module.exports = function (RED) {
         
     | 
| 
       7 
7 
     | 
    
         
             
                function ProcessinstanceQuery(config) {
         
     | 
| 
       8 
     | 
    
         
            -
                    RED.nodes.createNode(this,config);
         
     | 
| 
      
 8 
     | 
    
         
            +
                    RED.nodes.createNode(this, config);
         
     | 
| 
       9 
9 
     | 
    
         
             
                    var node = this;
         
     | 
| 
       10 
10 
     | 
    
         
             
                    var flowContext = node.context().flow;
         
     | 
| 
       11 
11 
     | 
    
         
             
                    var nodeContext = node.context();
         
     | 
| 
       12 
12 
     | 
    
         | 
| 
       13 
13 
     | 
    
         
             
                    this.engine = this.server = RED.nodes.getNode(config.engine);
         
     | 
| 
       14 
14 
     | 
    
         | 
| 
       15 
     | 
    
         
            -
                    const engineUrl = 
     | 
| 
      
 15 
     | 
    
         
            +
                    const engineUrl =
         
     | 
| 
      
 16 
     | 
    
         
            +
                        this.engine?.url || process.env.ENGINE_URL || "http://engine:8000";
         
     | 
| 
       16 
17 
     | 
    
         | 
| 
       17 
     | 
    
         
            -
                    var client = nodeContext.get( 
     | 
| 
      
 18 
     | 
    
         
            +
                    var client = nodeContext.get("client");
         
     | 
| 
       18 
19 
     | 
    
         | 
| 
       19 
20 
     | 
    
         
             
                    if (!client) {
         
     | 
| 
       20 
     | 
    
         
            -
                        nodeContext.set( 
     | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
      
 21 
     | 
    
         
            +
                        nodeContext.set(
         
     | 
| 
      
 22 
     | 
    
         
            +
                            "client",
         
     | 
| 
      
 23 
     | 
    
         
            +
                            new engine_client.EngineClient(engineUrl)
         
     | 
| 
      
 24 
     | 
    
         
            +
                        );
         
     | 
| 
      
 25 
     | 
    
         
            +
                        client = nodeContext.get("client");
         
     | 
| 
       22 
26 
     | 
    
         
             
                    }
         
     | 
| 
       23 
27 
     | 
    
         | 
| 
       24 
     | 
    
         
            -
                    var eventEmitter = flowContext.get( 
     | 
| 
      
 28 
     | 
    
         
            +
                    var eventEmitter = flowContext.get("emitter");
         
     | 
| 
       25 
29 
     | 
    
         | 
| 
       26 
30 
     | 
    
         
             
                    if (!eventEmitter) {
         
     | 
| 
       27 
     | 
    
         
            -
                        flowContext.set( 
     | 
| 
       28 
     | 
    
         
            -
                        eventEmitter = flowContext.get( 
     | 
| 
      
 31 
     | 
    
         
            +
                        flowContext.set("emitter", new EventEmitter());
         
     | 
| 
      
 32 
     | 
    
         
            +
                        eventEmitter = flowContext.get("emitter");
         
     | 
| 
       29 
33 
     | 
    
         
             
                    }
         
     | 
| 
       30 
34 
     | 
    
         | 
| 
       31 
35 
     | 
    
         
             
                    node.on("close", async () => {
         
     | 
| 
         @@ -33,16 +37,26 @@ module.exports = function(RED) { 
     | 
|
| 
       33 
37 
     | 
    
         
             
                        client = null;
         
     | 
| 
       34 
38 
     | 
    
         
             
                    });
         
     | 
| 
       35 
39 
     | 
    
         | 
| 
       36 
     | 
    
         
            -
                    node.on( 
     | 
| 
       37 
     | 
    
         
            -
                        let query = RED.util.evaluateNodeProperty( 
     | 
| 
       38 
     | 
    
         
            -
             
     | 
| 
       39 
     | 
    
         
            -
             
     | 
| 
       40 
     | 
    
         
            -
             
     | 
| 
       41 
     | 
    
         
            -
                            msg 
     | 
| 
       42 
     | 
    
         
            -
             
     | 
| 
       43 
     | 
    
         
            -
             
     | 
| 
       44 
     | 
    
         
            -
                         
     | 
| 
      
 40 
     | 
    
         
            +
                    node.on("input", function (msg) {
         
     | 
| 
      
 41 
     | 
    
         
            +
                        let query = RED.util.evaluateNodeProperty(
         
     | 
| 
      
 42 
     | 
    
         
            +
                            config.query,
         
     | 
| 
      
 43 
     | 
    
         
            +
                            config.query_type,
         
     | 
| 
      
 44 
     | 
    
         
            +
                            node,
         
     | 
| 
      
 45 
     | 
    
         
            +
                            msg
         
     | 
| 
      
 46 
     | 
    
         
            +
                        );
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
                        client.processInstances
         
     | 
| 
      
 49 
     | 
    
         
            +
                            .query(query, { identity: node.server.identity })
         
     | 
| 
      
 50 
     | 
    
         
            +
                            .then((matchingInstances) => {
         
     | 
| 
      
 51 
     | 
    
         
            +
                                console.log(matchingInstances);
         
     | 
| 
      
 52 
     | 
    
         
            +
                                msg.payload = matchingInstances;
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
                                node.send(msg);
         
     | 
| 
      
 55 
     | 
    
         
            +
                            })
         
     | 
| 
      
 56 
     | 
    
         
            +
                            .catch((error) => {
         
     | 
| 
      
 57 
     | 
    
         
            +
                                node.error(`Processinstancequery failed: ${error.message}`);
         
     | 
| 
      
 58 
     | 
    
         
            +
                            });
         
     | 
| 
       45 
59 
     | 
    
         
             
                    });
         
     | 
| 
       46 
60 
     | 
    
         
             
                }
         
     | 
| 
       47 
61 
     | 
    
         
             
                RED.nodes.registerType("processinstance-query", ProcessinstanceQuery);
         
     | 
| 
       48 
     | 
    
         
            -
            }
         
     | 
| 
      
 62 
     | 
    
         
            +
            };
         
     | 
| 
         @@ -1,252 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            [
         
     | 
| 
       2 
     | 
    
         
            -
                {
         
     | 
| 
       3 
     | 
    
         
            -
                    "id": "a23d2e782beb66f4",
         
     | 
| 
       4 
     | 
    
         
            -
                    "type": "tab",
         
     | 
| 
       5 
     | 
    
         
            -
                    "label": "External Task Sample",
         
     | 
| 
       6 
     | 
    
         
            -
                    "disabled": false,
         
     | 
| 
       7 
     | 
    
         
            -
                    "info": "",
         
     | 
| 
       8 
     | 
    
         
            -
                    "env": []
         
     | 
| 
       9 
     | 
    
         
            -
                },
         
     | 
| 
       10 
     | 
    
         
            -
                {
         
     | 
| 
       11 
     | 
    
         
            -
                    "id": "70d7a70e375b162a",
         
     | 
| 
       12 
     | 
    
         
            -
                    "type": "group",
         
     | 
| 
       13 
     | 
    
         
            -
                    "z": "a23d2e782beb66f4",
         
     | 
| 
       14 
     | 
    
         
            -
                    "style": {
         
     | 
| 
       15 
     | 
    
         
            -
                        "stroke": "#999999",
         
     | 
| 
       16 
     | 
    
         
            -
                        "stroke-opacity": "1",
         
     | 
| 
       17 
     | 
    
         
            -
                        "fill": "none",
         
     | 
| 
       18 
     | 
    
         
            -
                        "fill-opacity": "1",
         
     | 
| 
       19 
     | 
    
         
            -
                        "label": true,
         
     | 
| 
       20 
     | 
    
         
            -
                        "label-position": "nw",
         
     | 
| 
       21 
     | 
    
         
            -
                        "color": "#a4a4a4"
         
     | 
| 
       22 
     | 
    
         
            -
                    },
         
     | 
| 
       23 
     | 
    
         
            -
                    "nodes": [
         
     | 
| 
       24 
     | 
    
         
            -
                        "2991a5e6df2b87d2",
         
     | 
| 
       25 
     | 
    
         
            -
                        "911fde53bcbb7e3f",
         
     | 
| 
       26 
     | 
    
         
            -
                        "d56bb7cd73fd220c",
         
     | 
| 
       27 
     | 
    
         
            -
                        "15a5f64b9e2e05fc"
         
     | 
| 
       28 
     | 
    
         
            -
                    ],
         
     | 
| 
       29 
     | 
    
         
            -
                    "x": 34,
         
     | 
| 
       30 
     | 
    
         
            -
                    "y": 79,
         
     | 
| 
       31 
     | 
    
         
            -
                    "w": 512,
         
     | 
| 
       32 
     | 
    
         
            -
                    "h": 142
         
     | 
| 
       33 
     | 
    
         
            -
                },
         
     | 
| 
       34 
     | 
    
         
            -
                {
         
     | 
| 
       35 
     | 
    
         
            -
                    "id": "31cb6729aac0ba46",
         
     | 
| 
       36 
     | 
    
         
            -
                    "type": "group",
         
     | 
| 
       37 
     | 
    
         
            -
                    "z": "a23d2e782beb66f4",
         
     | 
| 
       38 
     | 
    
         
            -
                    "style": {
         
     | 
| 
       39 
     | 
    
         
            -
                        "stroke": "#999999",
         
     | 
| 
       40 
     | 
    
         
            -
                        "stroke-opacity": "1",
         
     | 
| 
       41 
     | 
    
         
            -
                        "fill": "none",
         
     | 
| 
       42 
     | 
    
         
            -
                        "fill-opacity": "1",
         
     | 
| 
       43 
     | 
    
         
            -
                        "label": true,
         
     | 
| 
       44 
     | 
    
         
            -
                        "label-position": "nw",
         
     | 
| 
       45 
     | 
    
         
            -
                        "color": "#a4a4a4"
         
     | 
| 
       46 
     | 
    
         
            -
                    },
         
     | 
| 
       47 
     | 
    
         
            -
                    "nodes": [
         
     | 
| 
       48 
     | 
    
         
            -
                        "18e05d562d48f32d",
         
     | 
| 
       49 
     | 
    
         
            -
                        "49aee03a7885fae8",
         
     | 
| 
       50 
     | 
    
         
            -
                        "e4555d9019cd3f47",
         
     | 
| 
       51 
     | 
    
         
            -
                        "bd68c4bdc53b8f80",
         
     | 
| 
       52 
     | 
    
         
            -
                        "fb87f79852b22e4a",
         
     | 
| 
       53 
     | 
    
         
            -
                        "1ba1e62c9935255f",
         
     | 
| 
       54 
     | 
    
         
            -
                        "b49f226ba865e164"
         
     | 
| 
       55 
     | 
    
         
            -
                    ],
         
     | 
| 
       56 
     | 
    
         
            -
                    "x": 34,
         
     | 
| 
       57 
     | 
    
         
            -
                    "y": 259,
         
     | 
| 
       58 
     | 
    
         
            -
                    "w": 812,
         
     | 
| 
       59 
     | 
    
         
            -
                    "h": 202
         
     | 
| 
       60 
     | 
    
         
            -
                },
         
     | 
| 
       61 
     | 
    
         
            -
                {
         
     | 
| 
       62 
     | 
    
         
            -
                    "id": "2991a5e6df2b87d2",
         
     | 
| 
       63 
     | 
    
         
            -
                    "type": "externaltask-input",
         
     | 
| 
       64 
     | 
    
         
            -
                    "z": "a23d2e782beb66f4",
         
     | 
| 
       65 
     | 
    
         
            -
                    "g": "70d7a70e375b162a",
         
     | 
| 
       66 
     | 
    
         
            -
                    "name": "Test",
         
     | 
| 
       67 
     | 
    
         
            -
                    "engine": "42e6796dddd9d4db",
         
     | 
| 
       68 
     | 
    
         
            -
                    "topic": "Test",
         
     | 
| 
       69 
     | 
    
         
            -
                    "x": 110,
         
     | 
| 
       70 
     | 
    
         
            -
                    "y": 180,
         
     | 
| 
       71 
     | 
    
         
            -
                    "wires": [
         
     | 
| 
       72 
     | 
    
         
            -
                        [
         
     | 
| 
       73 
     | 
    
         
            -
                            "d56bb7cd73fd220c"
         
     | 
| 
       74 
     | 
    
         
            -
                        ]
         
     | 
| 
       75 
     | 
    
         
            -
                    ]
         
     | 
| 
       76 
     | 
    
         
            -
                },
         
     | 
| 
       77 
     | 
    
         
            -
                {
         
     | 
| 
       78 
     | 
    
         
            -
                    "id": "911fde53bcbb7e3f",
         
     | 
| 
       79 
     | 
    
         
            -
                    "type": "externaltask-output",
         
     | 
| 
       80 
     | 
    
         
            -
                    "z": "a23d2e782beb66f4",
         
     | 
| 
       81 
     | 
    
         
            -
                    "g": "70d7a70e375b162a",
         
     | 
| 
       82 
     | 
    
         
            -
                    "name": "Test Ende",
         
     | 
| 
       83 
     | 
    
         
            -
                    "x": 460,
         
     | 
| 
       84 
     | 
    
         
            -
                    "y": 180,
         
     | 
| 
       85 
     | 
    
         
            -
                    "wires": []
         
     | 
| 
       86 
     | 
    
         
            -
                },
         
     | 
| 
       87 
     | 
    
         
            -
                {
         
     | 
| 
       88 
     | 
    
         
            -
                    "id": "d56bb7cd73fd220c",
         
     | 
| 
       89 
     | 
    
         
            -
                    "type": "delay",
         
     | 
| 
       90 
     | 
    
         
            -
                    "z": "a23d2e782beb66f4",
         
     | 
| 
       91 
     | 
    
         
            -
                    "g": "70d7a70e375b162a",
         
     | 
| 
       92 
     | 
    
         
            -
                    "name": "",
         
     | 
| 
       93 
     | 
    
         
            -
                    "pauseType": "delay",
         
     | 
| 
       94 
     | 
    
         
            -
                    "timeout": "1",
         
     | 
| 
       95 
     | 
    
         
            -
                    "timeoutUnits": "seconds",
         
     | 
| 
       96 
     | 
    
         
            -
                    "rate": "1",
         
     | 
| 
       97 
     | 
    
         
            -
                    "nbRateUnits": "1",
         
     | 
| 
       98 
     | 
    
         
            -
                    "rateUnits": "second",
         
     | 
| 
       99 
     | 
    
         
            -
                    "randomFirst": "1",
         
     | 
| 
       100 
     | 
    
         
            -
                    "randomLast": "5",
         
     | 
| 
       101 
     | 
    
         
            -
                    "randomUnits": "seconds",
         
     | 
| 
       102 
     | 
    
         
            -
                    "drop": false,
         
     | 
| 
       103 
     | 
    
         
            -
                    "allowrate": false,
         
     | 
| 
       104 
     | 
    
         
            -
                    "outputs": 1,
         
     | 
| 
       105 
     | 
    
         
            -
                    "x": 280,
         
     | 
| 
       106 
     | 
    
         
            -
                    "y": 180,
         
     | 
| 
       107 
     | 
    
         
            -
                    "wires": [
         
     | 
| 
       108 
     | 
    
         
            -
                        [
         
     | 
| 
       109 
     | 
    
         
            -
                            "911fde53bcbb7e3f"
         
     | 
| 
       110 
     | 
    
         
            -
                        ]
         
     | 
| 
       111 
     | 
    
         
            -
                    ]
         
     | 
| 
       112 
     | 
    
         
            -
                },
         
     | 
| 
       113 
     | 
    
         
            -
                {
         
     | 
| 
       114 
     | 
    
         
            -
                    "id": "18e05d562d48f32d",
         
     | 
| 
       115 
     | 
    
         
            -
                    "type": "externaltask-input",
         
     | 
| 
       116 
     | 
    
         
            -
                    "z": "a23d2e782beb66f4",
         
     | 
| 
       117 
     | 
    
         
            -
                    "g": "31cb6729aac0ba46",
         
     | 
| 
       118 
     | 
    
         
            -
                    "name": "SampleError",
         
     | 
| 
       119 
     | 
    
         
            -
                    "engine": "42e6796dddd9d4db",
         
     | 
| 
       120 
     | 
    
         
            -
                    "topic": "SampleError",
         
     | 
| 
       121 
     | 
    
         
            -
                    "x": 130,
         
     | 
| 
       122 
     | 
    
         
            -
                    "y": 360,
         
     | 
| 
       123 
     | 
    
         
            -
                    "wires": [
         
     | 
| 
       124 
     | 
    
         
            -
                        [
         
     | 
| 
       125 
     | 
    
         
            -
                            "49aee03a7885fae8"
         
     | 
| 
       126 
     | 
    
         
            -
                        ]
         
     | 
| 
       127 
     | 
    
         
            -
                    ]
         
     | 
| 
       128 
     | 
    
         
            -
                },
         
     | 
| 
       129 
     | 
    
         
            -
                {
         
     | 
| 
       130 
     | 
    
         
            -
                    "id": "49aee03a7885fae8",
         
     | 
| 
       131 
     | 
    
         
            -
                    "type": "delay",
         
     | 
| 
       132 
     | 
    
         
            -
                    "z": "a23d2e782beb66f4",
         
     | 
| 
       133 
     | 
    
         
            -
                    "g": "31cb6729aac0ba46",
         
     | 
| 
       134 
     | 
    
         
            -
                    "name": "",
         
     | 
| 
       135 
     | 
    
         
            -
                    "pauseType": "delay",
         
     | 
| 
       136 
     | 
    
         
            -
                    "timeout": "5",
         
     | 
| 
       137 
     | 
    
         
            -
                    "timeoutUnits": "seconds",
         
     | 
| 
       138 
     | 
    
         
            -
                    "rate": "1",
         
     | 
| 
       139 
     | 
    
         
            -
                    "nbRateUnits": "1",
         
     | 
| 
       140 
     | 
    
         
            -
                    "rateUnits": "second",
         
     | 
| 
       141 
     | 
    
         
            -
                    "randomFirst": "1",
         
     | 
| 
       142 
     | 
    
         
            -
                    "randomLast": "5",
         
     | 
| 
       143 
     | 
    
         
            -
                    "randomUnits": "seconds",
         
     | 
| 
       144 
     | 
    
         
            -
                    "drop": false,
         
     | 
| 
       145 
     | 
    
         
            -
                    "allowrate": false,
         
     | 
| 
       146 
     | 
    
         
            -
                    "outputs": 1,
         
     | 
| 
       147 
     | 
    
         
            -
                    "x": 320,
         
     | 
| 
       148 
     | 
    
         
            -
                    "y": 360,
         
     | 
| 
       149 
     | 
    
         
            -
                    "wires": [
         
     | 
| 
       150 
     | 
    
         
            -
                        [
         
     | 
| 
       151 
     | 
    
         
            -
                            "bd68c4bdc53b8f80"
         
     | 
| 
       152 
     | 
    
         
            -
                        ]
         
     | 
| 
       153 
     | 
    
         
            -
                    ]
         
     | 
| 
       154 
     | 
    
         
            -
                },
         
     | 
| 
       155 
     | 
    
         
            -
                {
         
     | 
| 
       156 
     | 
    
         
            -
                    "id": "e4555d9019cd3f47",
         
     | 
| 
       157 
     | 
    
         
            -
                    "type": "catch",
         
     | 
| 
       158 
     | 
    
         
            -
                    "z": "a23d2e782beb66f4",
         
     | 
| 
       159 
     | 
    
         
            -
                    "g": "31cb6729aac0ba46",
         
     | 
| 
       160 
     | 
    
         
            -
                    "name": "",
         
     | 
| 
       161 
     | 
    
         
            -
                    "scope": "group",
         
     | 
| 
       162 
     | 
    
         
            -
                    "uncaught": false,
         
     | 
| 
       163 
     | 
    
         
            -
                    "x": 510,
         
     | 
| 
       164 
     | 
    
         
            -
                    "y": 420,
         
     | 
| 
       165 
     | 
    
         
            -
                    "wires": [
         
     | 
| 
       166 
     | 
    
         
            -
                        [
         
     | 
| 
       167 
     | 
    
         
            -
                            "fb87f79852b22e4a"
         
     | 
| 
       168 
     | 
    
         
            -
                        ]
         
     | 
| 
       169 
     | 
    
         
            -
                    ]
         
     | 
| 
       170 
     | 
    
         
            -
                },
         
     | 
| 
       171 
     | 
    
         
            -
                {
         
     | 
| 
       172 
     | 
    
         
            -
                    "id": "bd68c4bdc53b8f80",
         
     | 
| 
       173 
     | 
    
         
            -
                    "type": "function",
         
     | 
| 
       174 
     | 
    
         
            -
                    "z": "a23d2e782beb66f4",
         
     | 
| 
       175 
     | 
    
         
            -
                    "g": "31cb6729aac0ba46",
         
     | 
| 
       176 
     | 
    
         
            -
                    "name": "raise Error",
         
     | 
| 
       177 
     | 
    
         
            -
                    "func": "throw Error(\"hello error\");\n\nreturn msg;",
         
     | 
| 
       178 
     | 
    
         
            -
                    "outputs": 1,
         
     | 
| 
       179 
     | 
    
         
            -
                    "timeout": 0,
         
     | 
| 
       180 
     | 
    
         
            -
                    "noerr": 0,
         
     | 
| 
       181 
     | 
    
         
            -
                    "initialize": "",
         
     | 
| 
       182 
     | 
    
         
            -
                    "finalize": "",
         
     | 
| 
       183 
     | 
    
         
            -
                    "libs": [],
         
     | 
| 
       184 
     | 
    
         
            -
                    "x": 510,
         
     | 
| 
       185 
     | 
    
         
            -
                    "y": 360,
         
     | 
| 
       186 
     | 
    
         
            -
                    "wires": [
         
     | 
| 
       187 
     | 
    
         
            -
                        [
         
     | 
| 
       188 
     | 
    
         
            -
                            "1ba1e62c9935255f"
         
     | 
| 
       189 
     | 
    
         
            -
                        ]
         
     | 
| 
       190 
     | 
    
         
            -
                    ]
         
     | 
| 
       191 
     | 
    
         
            -
                },
         
     | 
| 
       192 
     | 
    
         
            -
                {
         
     | 
| 
       193 
     | 
    
         
            -
                    "id": "fb87f79852b22e4a",
         
     | 
| 
       194 
     | 
    
         
            -
                    "type": "externaltask-error",
         
     | 
| 
       195 
     | 
    
         
            -
                    "z": "a23d2e782beb66f4",
         
     | 
| 
       196 
     | 
    
         
            -
                    "g": "31cb6729aac0ba46",
         
     | 
| 
       197 
     | 
    
         
            -
                    "name": "Send Error to Engine",
         
     | 
| 
       198 
     | 
    
         
            -
                    "error": "MyErrorCode",
         
     | 
| 
       199 
     | 
    
         
            -
                    "x": 720,
         
     | 
| 
       200 
     | 
    
         
            -
                    "y": 420,
         
     | 
| 
       201 
     | 
    
         
            -
                    "wires": [
         
     | 
| 
       202 
     | 
    
         
            -
                        []
         
     | 
| 
       203 
     | 
    
         
            -
                    ]
         
     | 
| 
       204 
     | 
    
         
            -
                },
         
     | 
| 
       205 
     | 
    
         
            -
                {
         
     | 
| 
       206 
     | 
    
         
            -
                    "id": "1ba1e62c9935255f",
         
     | 
| 
       207 
     | 
    
         
            -
                    "type": "externaltask-output",
         
     | 
| 
       208 
     | 
    
         
            -
                    "z": "a23d2e782beb66f4",
         
     | 
| 
       209 
     | 
    
         
            -
                    "g": "31cb6729aac0ba46",
         
     | 
| 
       210 
     | 
    
         
            -
                    "name": "",
         
     | 
| 
       211 
     | 
    
         
            -
                    "x": 710,
         
     | 
| 
       212 
     | 
    
         
            -
                    "y": 360,
         
     | 
| 
       213 
     | 
    
         
            -
                    "wires": []
         
     | 
| 
       214 
     | 
    
         
            -
                },
         
     | 
| 
       215 
     | 
    
         
            -
                {
         
     | 
| 
       216 
     | 
    
         
            -
                    "id": "15a5f64b9e2e05fc",
         
     | 
| 
       217 
     | 
    
         
            -
                    "type": "comment",
         
     | 
| 
       218 
     | 
    
         
            -
                    "z": "a23d2e782beb66f4",
         
     | 
| 
       219 
     | 
    
         
            -
                    "g": "70d7a70e375b162a",
         
     | 
| 
       220 
     | 
    
         
            -
                    "name": "Simple External Task handling",
         
     | 
| 
       221 
     | 
    
         
            -
                    "info": "",
         
     | 
| 
       222 
     | 
    
         
            -
                    "x": 180,
         
     | 
| 
       223 
     | 
    
         
            -
                    "y": 120,
         
     | 
| 
       224 
     | 
    
         
            -
                    "wires": []
         
     | 
| 
       225 
     | 
    
         
            -
                },
         
     | 
| 
       226 
     | 
    
         
            -
                {
         
     | 
| 
       227 
     | 
    
         
            -
                    "id": "b49f226ba865e164",
         
     | 
| 
       228 
     | 
    
         
            -
                    "type": "comment",
         
     | 
| 
       229 
     | 
    
         
            -
                    "z": "a23d2e782beb66f4",
         
     | 
| 
       230 
     | 
    
         
            -
                    "g": "31cb6729aac0ba46",
         
     | 
| 
       231 
     | 
    
         
            -
                    "name": "Error handling with external tasks",
         
     | 
| 
       232 
     | 
    
         
            -
                    "info": "",
         
     | 
| 
       233 
     | 
    
         
            -
                    "x": 190,
         
     | 
| 
       234 
     | 
    
         
            -
                    "y": 300,
         
     | 
| 
       235 
     | 
    
         
            -
                    "wires": []
         
     | 
| 
       236 
     | 
    
         
            -
                },
         
     | 
| 
       237 
     | 
    
         
            -
                {
         
     | 
| 
       238 
     | 
    
         
            -
                    "id": "799125e21de02f13",
         
     | 
| 
       239 
     | 
    
         
            -
                    "type": "comment",
         
     | 
| 
       240 
     | 
    
         
            -
                    "z": "a23d2e782beb66f4",
         
     | 
| 
       241 
     | 
    
         
            -
                    "name": "For Testing, deploy \"External-Task-Sample.bpmn\" and start the process.",
         
     | 
| 
       242 
     | 
    
         
            -
                    "info": "",
         
     | 
| 
       243 
     | 
    
         
            -
                    "x": 300,
         
     | 
| 
       244 
     | 
    
         
            -
                    "y": 40,
         
     | 
| 
       245 
     | 
    
         
            -
                    "wires": []
         
     | 
| 
       246 
     | 
    
         
            -
                },
         
     | 
| 
       247 
     | 
    
         
            -
                {
         
     | 
| 
       248 
     | 
    
         
            -
                    "id": "42e6796dddd9d4db",
         
     | 
| 
       249 
     | 
    
         
            -
                    "type": "processcube-engine-config",
         
     | 
| 
       250 
     | 
    
         
            -
                    "url": "http://engine:8000"
         
     | 
| 
       251 
     | 
    
         
            -
                }
         
     | 
| 
       252 
     | 
    
         
            -
            ]
         
     |