@5minds/node-red-contrib-processcube 1.1.4-feature-db7b89-m14muv3d → 1.1.4-feature-e25f70-m14zy2lq
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/docker-compose.yml +1 -0
- package/examples/Endevent-Finished-Sample.json +46 -0
- package/examples/Externaltask-Event-Sample.json +48 -0
- package/examples/Message-Event-Trigger-Sample.json +47 -0
- package/examples/Process-Event-Listener.json +50 -0
- package/examples/Process-Start-Sample.json +48 -0
- package/examples/Process-Terminate-Sample.json +75 -0
- package/examples/Signal-Event-Trigger-Sample.json +47 -0
- package/examples/User-Task-Sample.json +92 -67
- package/externaltask-input.html +0 -14
- package/externaltask-input.js +61 -63
- package/nodered/flows.json +143 -170
- package/package.json +1 -1
- package/processes/Call-Activity-Sample.bpmn +88 -0
@@ -0,0 +1,88 @@
|
|
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="Call-Activity-Sample_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="Call-Activity-Sample" processRef="Call-Activity-Sample_Process" />
|
5
|
+
</bpmn:collaboration>
|
6
|
+
<bpmn:process id="Call-Activity-Sample_Process" name="Call-Activity-Sample" isExecutable="true">
|
7
|
+
<bpmn:laneSet>
|
8
|
+
<bpmn:lane id="Lane_1xzf0d3" name="Lane">
|
9
|
+
<bpmn:flowNodeRef>StartEvent_1</bpmn:flowNodeRef>
|
10
|
+
<bpmn:flowNodeRef>Activity_1483lxt</bpmn:flowNodeRef>
|
11
|
+
<bpmn:flowNodeRef>Event_051opo1</bpmn:flowNodeRef>
|
12
|
+
<bpmn:flowNodeRef>Activity_1m883u3</bpmn:flowNodeRef>
|
13
|
+
</bpmn:lane>
|
14
|
+
</bpmn:laneSet>
|
15
|
+
<bpmn:startEvent id="StartEvent_1" name="Start">
|
16
|
+
<bpmn:outgoing>Flow_0jchwpf</bpmn:outgoing>
|
17
|
+
</bpmn:startEvent>
|
18
|
+
<bpmn:sequenceFlow id="Flow_0jchwpf" sourceRef="StartEvent_1" targetRef="Activity_1483lxt" />
|
19
|
+
<bpmn:scriptTask id="Activity_1483lxt" name="make multi">
|
20
|
+
<bpmn:incoming>Flow_0jchwpf</bpmn:incoming>
|
21
|
+
<bpmn:outgoing>Flow_1kbc11o</bpmn:outgoing>
|
22
|
+
<bpmn:script>const data = [
|
23
|
+
{
|
24
|
+
"uid": 14200
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"uid": 14201
|
28
|
+
}
|
29
|
+
];
|
30
|
+
|
31
|
+
return data;</bpmn:script>
|
32
|
+
</bpmn:scriptTask>
|
33
|
+
<bpmn:sequenceFlow id="Flow_1kbc11o" sourceRef="Activity_1483lxt" targetRef="Activity_1m883u3" />
|
34
|
+
<bpmn:endEvent id="Event_051opo1">
|
35
|
+
<bpmn:incoming>Flow_0pjaqpi</bpmn:incoming>
|
36
|
+
</bpmn:endEvent>
|
37
|
+
<bpmn:sequenceFlow id="Flow_0pjaqpi" sourceRef="Activity_1m883u3" targetRef="Event_051opo1" />
|
38
|
+
<bpmn:callActivity id="Activity_1m883u3" name="call sub" calledElement="External-Task-Sample_Process">
|
39
|
+
<bpmn:extensionElements>
|
40
|
+
<camunda:properties>
|
41
|
+
<camunda:property name="startEventId" value="StartEvent_1" />
|
42
|
+
</camunda:properties>
|
43
|
+
</bpmn:extensionElements>
|
44
|
+
<bpmn:incoming>Flow_1kbc11o</bpmn:incoming>
|
45
|
+
<bpmn:outgoing>Flow_0pjaqpi</bpmn:outgoing>
|
46
|
+
<bpmn:multiInstanceLoopCharacteristics />
|
47
|
+
</bpmn:callActivity>
|
48
|
+
</bpmn:process>
|
49
|
+
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
|
50
|
+
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1cidyxu">
|
51
|
+
<bpmndi:BPMNShape id="Participant_0px403d_di" bpmnElement="Participant_0px403d" isHorizontal="true">
|
52
|
+
<dc:Bounds x="5" y="4" width="885" height="346" />
|
53
|
+
</bpmndi:BPMNShape>
|
54
|
+
<bpmndi:BPMNShape id="Lane_1xzf0d3_di" bpmnElement="Lane_1xzf0d3" isHorizontal="true">
|
55
|
+
<dc:Bounds x="35" y="4" width="855" height="346" />
|
56
|
+
</bpmndi:BPMNShape>
|
57
|
+
<bpmndi:BPMNShape id="StartEvent_1_di" bpmnElement="StartEvent_1">
|
58
|
+
<dc:Bounds x="92" y="152" width="36" height="36" />
|
59
|
+
<bpmndi:BPMNLabel>
|
60
|
+
<dc:Bounds x="98" y="195" width="24" height="14" />
|
61
|
+
</bpmndi:BPMNLabel>
|
62
|
+
</bpmndi:BPMNShape>
|
63
|
+
<bpmndi:BPMNShape id="Activity_0uc2tzt_di" bpmnElement="Activity_1483lxt">
|
64
|
+
<dc:Bounds x="180" y="130" width="100" height="80" />
|
65
|
+
<bpmndi:BPMNLabel />
|
66
|
+
</bpmndi:BPMNShape>
|
67
|
+
<bpmndi:BPMNShape id="Event_051opo1_di" bpmnElement="Event_051opo1">
|
68
|
+
<dc:Bounds x="502" y="152" width="36" height="36" />
|
69
|
+
</bpmndi:BPMNShape>
|
70
|
+
<bpmndi:BPMNShape id="Activity_0t5p0pc_di" bpmnElement="Activity_1m883u3">
|
71
|
+
<dc:Bounds x="340" y="130" width="100" height="80" />
|
72
|
+
<bpmndi:BPMNLabel />
|
73
|
+
</bpmndi:BPMNShape>
|
74
|
+
<bpmndi:BPMNEdge id="Flow_0jchwpf_di" bpmnElement="Flow_0jchwpf">
|
75
|
+
<di:waypoint x="128" y="170" />
|
76
|
+
<di:waypoint x="180" y="170" />
|
77
|
+
</bpmndi:BPMNEdge>
|
78
|
+
<bpmndi:BPMNEdge id="Flow_1kbc11o_di" bpmnElement="Flow_1kbc11o">
|
79
|
+
<di:waypoint x="280" y="170" />
|
80
|
+
<di:waypoint x="340" y="170" />
|
81
|
+
</bpmndi:BPMNEdge>
|
82
|
+
<bpmndi:BPMNEdge id="Flow_0pjaqpi_di" bpmnElement="Flow_0pjaqpi">
|
83
|
+
<di:waypoint x="440" y="170" />
|
84
|
+
<di:waypoint x="502" y="170" />
|
85
|
+
</bpmndi:BPMNEdge>
|
86
|
+
</bpmndi:BPMNPlane>
|
87
|
+
</bpmndi:BPMNDiagram>
|
88
|
+
</bpmn:definitions>
|