@nanobpm/nano-workforce 0.111.0 → 0.112.0
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/CHANGELOG.md +14 -0
- package/app/deliveryGraph.ts +46 -0
- package/app/deliveryGraphCompiler.test.ts +275 -0
- package/app/deliveryGraphCompiler.ts +487 -0
- package/app/escalationTaxonomy.test.ts +1 -1
- package/app/escalationTaxonomy.ts +4 -2
- package/app/github.test.ts +225 -1
- package/app/github.ts +102 -2
- package/app/planFanoutCleanTerminal.test.ts +40 -0
- package/app/pollUserTasks.test.ts +208 -0
- package/app/readiness.test.ts +2 -0
- package/app/readiness.ts +3 -1
- package/app/service.ts +216 -198
- package/app/userTasks.test.ts +20 -2
- package/app/userTasks.ts +11 -4
- package/nano.app.json +4 -0
- package/openapi.yaml +248 -0
- package/operations/compileDeliveryGraph.test.ts +60 -0
- package/operations/compileDeliveryGraph.ts +35 -0
- package/package.json +1 -1
- package/resources/processes/plan-fanout.bpmn +161 -135
- package/workers/record-wave/worker.test.ts +181 -0
- package/workers/record-wave/worker.ts +44 -11
- package/workers/record-wave-escalation/worker.test.ts +95 -0
- package/workers/record-wave-escalation/worker.ts +69 -0
|
@@ -59,6 +59,11 @@
|
|
|
59
59
|
<nano:reference name="waveTasks" ref="RecordWaveTaskRef" list="true" />
|
|
60
60
|
<nano:reference name="waveResults" ref="RecordWaveResult" list="true" />
|
|
61
61
|
</nano:shape>
|
|
62
|
+
<nano:shape id="RecordWaveEscalationIn" name="Record wave escalation — input">
|
|
63
|
+
<nano:extend name="planKey" type="string" />
|
|
64
|
+
<nano:extend name="status" type="string" optional="true" />
|
|
65
|
+
<nano:extend name="question" type="string" optional="true" />
|
|
66
|
+
</nano:shape>
|
|
62
67
|
<nano:shape id="RecordTrialMergeHead" name="Record trial merge — open head">
|
|
63
68
|
<nano:extend name="repo" type="string" />
|
|
64
69
|
<nano:extend name="prNumber" type="integer" />
|
|
@@ -375,18 +380,31 @@
|
|
|
375
380
|
<bpmn:incoming>w_answerLoop</bpmn:incoming>
|
|
376
381
|
<bpmn:outgoing>w_toGw</bpmn:outgoing>
|
|
377
382
|
</bpmn:serviceTask>
|
|
378
|
-
<bpmn:exclusiveGateway id="w_gw" name="
|
|
383
|
+
<bpmn:exclusiveGateway id="w_gw" name="clean terminal?" default="w_escalate">
|
|
379
384
|
<bpmn:incoming>w_toGw</bpmn:incoming>
|
|
380
385
|
<bpmn:outgoing>w_escalate</bpmn:outgoing>
|
|
381
386
|
<bpmn:outgoing>w_done</bpmn:outgoing>
|
|
382
387
|
</bpmn:exclusiveGateway>
|
|
388
|
+
<bpmn:serviceTask id="record-wave-escalation" name="Record escalation">
|
|
389
|
+
<bpmn:extensionElements>
|
|
390
|
+
<zeebe:taskDefinition type="pr.record-wave-escalation" />
|
|
391
|
+
<zeebe:properties>
|
|
392
|
+
<zeebe:property name="io.nanobpm.dataEnvelope.in" value="RecordWaveEscalationIn" />
|
|
393
|
+
</zeebe:properties>
|
|
394
|
+
<zeebe:ioMapping>
|
|
395
|
+
<zeebe:output source="=question" target="question" />
|
|
396
|
+
</zeebe:ioMapping>
|
|
397
|
+
</bpmn:extensionElements>
|
|
398
|
+
<bpmn:incoming>w_escalate</bpmn:incoming>
|
|
399
|
+
<bpmn:outgoing>w_toEscalationTask</bpmn:outgoing>
|
|
400
|
+
</bpmn:serviceTask>
|
|
383
401
|
<bpmn:userTask id="feature-escalation" name="Task escalation (human)">
|
|
384
402
|
<bpmn:extensionElements>
|
|
385
403
|
<zeebe:formDefinition formId="feature-escalation" />
|
|
386
404
|
<zeebe:userTask />
|
|
387
405
|
<zeebe:assignmentDefinition candidateGroups="operators" assignee="=escalationAssignee" />
|
|
388
406
|
</bpmn:extensionElements>
|
|
389
|
-
<bpmn:incoming>
|
|
407
|
+
<bpmn:incoming>w_toEscalationTask</bpmn:incoming>
|
|
390
408
|
<bpmn:incoming>w_capsTimeout</bpmn:incoming>
|
|
391
409
|
<bpmn:outgoing>w_toAnswerGw</bpmn:outgoing>
|
|
392
410
|
</bpmn:userTask>
|
|
@@ -417,10 +435,11 @@
|
|
|
417
435
|
<bpmn:sequenceFlow id="w_noNeeds" name="none" sourceRef="w_gw_needs" targetRef="implement-task" />
|
|
418
436
|
<bpmn:sequenceFlow id="w_capsResolved" sourceRef="wait-caps-resolved" targetRef="implement-task" />
|
|
419
437
|
<bpmn:sequenceFlow id="w_toGw" sourceRef="implement-task" targetRef="w_gw" />
|
|
420
|
-
<bpmn:sequenceFlow id="w_escalate" name="
|
|
421
|
-
|
|
438
|
+
<bpmn:sequenceFlow id="w_escalate" name="not clean" sourceRef="w_gw" targetRef="record-wave-escalation" />
|
|
439
|
+
<bpmn:sequenceFlow id="w_toEscalationTask" sourceRef="record-wave-escalation" targetRef="feature-escalation" />
|
|
440
|
+
<bpmn:sequenceFlow id="w_done" name="done" sourceRef="w_gw" targetRef="w_end">
|
|
441
|
+
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=status = "opened" or status = "blocked" or status = "skipped"</bpmn:conditionExpression>
|
|
422
442
|
</bpmn:sequenceFlow>
|
|
423
|
-
<bpmn:sequenceFlow id="w_done" name="done" sourceRef="w_gw" targetRef="w_end" />
|
|
424
443
|
<bpmn:sequenceFlow id="w_toAnswerGw" sourceRef="feature-escalation" targetRef="w_gw_answer" />
|
|
425
444
|
<bpmn:sequenceFlow id="w_answerLoop" name="answer" sourceRef="w_gw_answer" targetRef="implement-task">
|
|
426
445
|
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=resolution = "answer"</bpmn:conditionExpression>
|
|
@@ -639,60 +658,60 @@
|
|
|
639
658
|
<dc:Bounds x="2066" y="269" width="100" height="80" />
|
|
640
659
|
</bpmndi:BPMNShape>
|
|
641
660
|
<bpmndi:BPMNShape id="BPMNShape_implement" bpmnElement="implement" isExpanded="true">
|
|
642
|
-
<dc:Bounds x="2266" y="80" width="
|
|
661
|
+
<dc:Bounds x="2266" y="80" width="1788" height="458" />
|
|
643
662
|
</bpmndi:BPMNShape>
|
|
644
663
|
<bpmndi:BPMNShape id="BPMNShape_record-wave" bpmnElement="record-wave">
|
|
645
|
-
<dc:Bounds x="
|
|
664
|
+
<dc:Bounds x="4154" y="269" width="100" height="80" />
|
|
646
665
|
</bpmndi:BPMNShape>
|
|
647
666
|
<bpmndi:BPMNShape id="BPMNShape_gw-trial-needed" bpmnElement="gw-trial-needed" isMarkerVisible="true">
|
|
648
|
-
<dc:Bounds x="
|
|
667
|
+
<dc:Bounds x="4354" y="284" width="50" height="50" />
|
|
649
668
|
<bpmndi:BPMNLabel>
|
|
650
|
-
<dc:Bounds x="
|
|
669
|
+
<dc:Bounds x="4335" y="265" width="88" height="14" />
|
|
651
670
|
</bpmndi:BPMNLabel>
|
|
652
671
|
</bpmndi:BPMNShape>
|
|
653
672
|
<bpmndi:BPMNShape id="BPMNShape_trial-merge" bpmnElement="trial-merge">
|
|
654
|
-
<dc:Bounds x="
|
|
673
|
+
<dc:Bounds x="4504" y="909" width="100" height="80" />
|
|
655
674
|
</bpmndi:BPMNShape>
|
|
656
675
|
<bpmndi:BPMNShape id="BPMNShape_record-trial-merge" bpmnElement="record-trial-merge">
|
|
657
|
-
<dc:Bounds x="
|
|
676
|
+
<dc:Bounds x="4704" y="909" width="100" height="80" />
|
|
658
677
|
</bpmndi:BPMNShape>
|
|
659
678
|
<bpmndi:BPMNShape id="BPMNShape_gw-trial" bpmnElement="gw-trial" isMarkerVisible="true">
|
|
660
|
-
<dc:Bounds x="
|
|
679
|
+
<dc:Bounds x="4904" y="924" width="50" height="50" />
|
|
661
680
|
<bpmndi:BPMNLabel>
|
|
662
|
-
<dc:Bounds x="
|
|
681
|
+
<dc:Bounds x="4894" y="979" width="71" height="14" />
|
|
663
682
|
</bpmndi:BPMNLabel>
|
|
664
683
|
</bpmndi:BPMNShape>
|
|
665
684
|
<bpmndi:BPMNShape id="BPMNShape_trial-merge-decision" bpmnElement="trial-merge-decision">
|
|
666
|
-
<dc:Bounds x="
|
|
685
|
+
<dc:Bounds x="5054" y="429" width="100" height="80" />
|
|
667
686
|
</bpmndi:BPMNShape>
|
|
668
687
|
<bpmndi:BPMNShape id="BPMNShape_resolve-trial-attention" bpmnElement="resolve-trial-attention">
|
|
669
|
-
<dc:Bounds x="
|
|
688
|
+
<dc:Bounds x="5254" y="429" width="100" height="80" />
|
|
670
689
|
</bpmndi:BPMNShape>
|
|
671
690
|
<bpmndi:BPMNShape id="BPMNShape_gw-trial-answer" bpmnElement="gw-trial-answer" isMarkerVisible="true">
|
|
672
|
-
<dc:Bounds x="
|
|
691
|
+
<dc:Bounds x="5454" y="444" width="50" height="50" />
|
|
673
692
|
<bpmndi:BPMNLabel>
|
|
674
|
-
<dc:Bounds x="
|
|
693
|
+
<dc:Bounds x="5453" y="499" width="53" height="14" />
|
|
675
694
|
</bpmndi:BPMNLabel>
|
|
676
695
|
</bpmndi:BPMNShape>
|
|
677
696
|
<bpmndi:BPMNShape id="BPMNShape_gw-more" bpmnElement="gw-more" isMarkerVisible="true">
|
|
678
|
-
<dc:Bounds x="
|
|
697
|
+
<dc:Bounds x="5604" y="284" width="50" height="50" />
|
|
679
698
|
<bpmndi:BPMNLabel>
|
|
680
|
-
<dc:Bounds x="
|
|
699
|
+
<dc:Bounds x="5527" y="339" width="84" height="14" />
|
|
681
700
|
</bpmndi:BPMNLabel>
|
|
682
701
|
</bpmndi:BPMNShape>
|
|
683
702
|
<bpmndi:BPMNShape id="BPMNShape_wait-wave-merged" bpmnElement="wait-wave-merged">
|
|
684
|
-
<dc:Bounds x="
|
|
703
|
+
<dc:Bounds x="5786" y="451" width="36" height="36" />
|
|
685
704
|
<bpmndi:BPMNLabel>
|
|
686
|
-
<dc:Bounds x="
|
|
705
|
+
<dc:Bounds x="5765" y="418" width="78" height="28" />
|
|
687
706
|
</bpmndi:BPMNLabel>
|
|
688
707
|
</bpmndi:BPMNShape>
|
|
689
708
|
<bpmndi:BPMNShape id="BPMNShape_record-results" bpmnElement="record-results">
|
|
690
|
-
<dc:Bounds x="
|
|
709
|
+
<dc:Bounds x="5754" y="269" width="100" height="80" />
|
|
691
710
|
</bpmndi:BPMNShape>
|
|
692
711
|
<bpmndi:BPMNShape id="BPMNShape_End" bpmnElement="End">
|
|
693
|
-
<dc:Bounds x="
|
|
712
|
+
<dc:Bounds x="5954" y="291" width="36" height="36" />
|
|
694
713
|
<bpmndi:BPMNLabel>
|
|
695
|
-
<dc:Bounds x="
|
|
714
|
+
<dc:Bounds x="5935" y="332" width="74" height="28" />
|
|
696
715
|
</bpmndi:BPMNLabel>
|
|
697
716
|
</bpmndi:BPMNShape>
|
|
698
717
|
<bpmndi:BPMNShape id="BPMNShape_be_plan_sla" bpmnElement="be_plan_sla">
|
|
@@ -702,9 +721,9 @@
|
|
|
702
721
|
</bpmndi:BPMNLabel>
|
|
703
722
|
</bpmndi:BPMNShape>
|
|
704
723
|
<bpmndi:BPMNShape id="BPMNShape_be_trial_sla" bpmnElement="be_trial_sla">
|
|
705
|
-
<dc:Bounds x="
|
|
724
|
+
<dc:Bounds x="5086" y="491" width="36" height="36" />
|
|
706
725
|
<bpmndi:BPMNLabel>
|
|
707
|
-
<dc:Bounds x="
|
|
726
|
+
<dc:Bounds x="5002" y="532" width="84" height="14" />
|
|
708
727
|
</bpmndi:BPMNLabel>
|
|
709
728
|
</bpmndi:BPMNShape>
|
|
710
729
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toReadinessGw" bpmnElement="f_toReadinessGw">
|
|
@@ -750,30 +769,30 @@
|
|
|
750
769
|
<di:waypoint x="2266" y="309" />
|
|
751
770
|
</bpmndi:BPMNEdge>
|
|
752
771
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toRecordWave" bpmnElement="f_toRecordWave">
|
|
753
|
-
<di:waypoint x="3854" y="309" />
|
|
754
|
-
<di:waypoint x="3954" y="309" />
|
|
755
|
-
</bpmndi:BPMNEdge>
|
|
756
|
-
<bpmndi:BPMNEdge id="BPMNEdge_f_toTrialNeeded" bpmnElement="f_toTrialNeeded">
|
|
757
772
|
<di:waypoint x="4054" y="309" />
|
|
758
773
|
<di:waypoint x="4154" y="309" />
|
|
759
774
|
</bpmndi:BPMNEdge>
|
|
775
|
+
<bpmndi:BPMNEdge id="BPMNEdge_f_toTrialNeeded" bpmnElement="f_toTrialNeeded">
|
|
776
|
+
<di:waypoint x="4254" y="309" />
|
|
777
|
+
<di:waypoint x="4354" y="309" />
|
|
778
|
+
</bpmndi:BPMNEdge>
|
|
760
779
|
<bpmndi:BPMNEdge id="BPMNEdge_f_skipTrialMerge" bpmnElement="f_skipTrialMerge">
|
|
761
|
-
<di:waypoint x="
|
|
762
|
-
<di:waypoint x="
|
|
780
|
+
<di:waypoint x="4404" y="309" />
|
|
781
|
+
<di:waypoint x="5604" y="309" />
|
|
763
782
|
<bpmndi:BPMNLabel>
|
|
764
|
-
<dc:Bounds x="
|
|
783
|
+
<dc:Bounds x="4926" y="287" width="32" height="14" />
|
|
765
784
|
</bpmndi:BPMNLabel>
|
|
766
785
|
</bpmndi:BPMNEdge>
|
|
767
786
|
<bpmndi:BPMNEdge id="BPMNEdge_f_done" bpmnElement="f_done">
|
|
768
|
-
<di:waypoint x="
|
|
769
|
-
<di:waypoint x="
|
|
787
|
+
<di:waypoint x="5654" y="309" />
|
|
788
|
+
<di:waypoint x="5754" y="309" />
|
|
770
789
|
<bpmndi:BPMNLabel>
|
|
771
|
-
<dc:Bounds x="
|
|
790
|
+
<dc:Bounds x="5688" y="287" width="32" height="14" />
|
|
772
791
|
</bpmndi:BPMNLabel>
|
|
773
792
|
</bpmndi:BPMNEdge>
|
|
774
793
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toEnd" bpmnElement="f_toEnd">
|
|
775
|
-
<di:waypoint x="
|
|
776
|
-
<di:waypoint x="
|
|
794
|
+
<di:waypoint x="5854" y="309" />
|
|
795
|
+
<di:waypoint x="5954" y="309" />
|
|
777
796
|
</bpmndi:BPMNEdge>
|
|
778
797
|
<bpmndi:BPMNEdge id="BPMNEdge_f_plan_answer_revise" bpmnElement="f_plan_answer_revise">
|
|
779
798
|
<di:waypoint x="1941" y="494" />
|
|
@@ -785,28 +804,28 @@
|
|
|
785
804
|
</bpmndi:BPMNLabel>
|
|
786
805
|
</bpmndi:BPMNEdge>
|
|
787
806
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toRecordTrialMerge" bpmnElement="f_toRecordTrialMerge">
|
|
788
|
-
<di:waypoint x="4404" y="949" />
|
|
789
|
-
<di:waypoint x="4504" y="949" />
|
|
790
|
-
</bpmndi:BPMNEdge>
|
|
791
|
-
<bpmndi:BPMNEdge id="BPMNEdge_f_toGwTrial" bpmnElement="f_toGwTrial">
|
|
792
807
|
<di:waypoint x="4604" y="949" />
|
|
793
808
|
<di:waypoint x="4704" y="949" />
|
|
794
809
|
</bpmndi:BPMNEdge>
|
|
810
|
+
<bpmndi:BPMNEdge id="BPMNEdge_f_toGwTrial" bpmnElement="f_toGwTrial">
|
|
811
|
+
<di:waypoint x="4804" y="949" />
|
|
812
|
+
<di:waypoint x="4904" y="949" />
|
|
813
|
+
</bpmndi:BPMNEdge>
|
|
795
814
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trialProceed" bpmnElement="f_trialProceed">
|
|
796
|
-
<di:waypoint x="
|
|
797
|
-
<di:waypoint x="
|
|
798
|
-
<di:waypoint x="
|
|
815
|
+
<di:waypoint x="4954" y="949" />
|
|
816
|
+
<di:waypoint x="5629" y="949" />
|
|
817
|
+
<di:waypoint x="5629" y="334" />
|
|
799
818
|
<bpmndi:BPMNLabel>
|
|
800
|
-
<dc:Bounds x="
|
|
819
|
+
<dc:Bounds x="5265" y="927" width="53" height="14" />
|
|
801
820
|
</bpmndi:BPMNLabel>
|
|
802
821
|
</bpmndi:BPMNEdge>
|
|
803
822
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerRerun" bpmnElement="f_trialAnswerRerun">
|
|
804
|
-
<di:waypoint x="
|
|
805
|
-
<di:waypoint x="
|
|
806
|
-
<di:waypoint x="
|
|
807
|
-
<di:waypoint x="
|
|
823
|
+
<di:waypoint x="5479" y="444" />
|
|
824
|
+
<di:waypoint x="5479" y="409" />
|
|
825
|
+
<di:waypoint x="4554" y="409" />
|
|
826
|
+
<di:waypoint x="4554" y="909" />
|
|
808
827
|
<bpmndi:BPMNLabel>
|
|
809
|
-
<dc:Bounds x="
|
|
828
|
+
<dc:Bounds x="4994" y="387" width="46" height="14" />
|
|
810
829
|
</bpmndi:BPMNLabel>
|
|
811
830
|
</bpmndi:BPMNEdge>
|
|
812
831
|
<bpmndi:BPMNEdge id="BPMNEdge_f_readiness_gate" bpmnElement="f_readiness_gate">
|
|
@@ -834,51 +853,51 @@
|
|
|
834
853
|
</bpmndi:BPMNLabel>
|
|
835
854
|
</bpmndi:BPMNEdge>
|
|
836
855
|
<bpmndi:BPMNEdge id="BPMNEdge_f_runTrialMerge" bpmnElement="f_runTrialMerge">
|
|
837
|
-
<di:waypoint x="
|
|
838
|
-
<di:waypoint x="
|
|
839
|
-
<di:waypoint x="
|
|
856
|
+
<di:waypoint x="4379" y="334" />
|
|
857
|
+
<di:waypoint x="4379" y="949" />
|
|
858
|
+
<di:waypoint x="4504" y="949" />
|
|
840
859
|
<bpmndi:BPMNLabel>
|
|
841
|
-
<dc:Bounds x="
|
|
860
|
+
<dc:Bounds x="4384" y="635" width="25" height="14" />
|
|
842
861
|
</bpmndi:BPMNLabel>
|
|
843
862
|
</bpmndi:BPMNEdge>
|
|
844
863
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trialEscalate" bpmnElement="f_trialEscalate">
|
|
845
|
-
<di:waypoint x="
|
|
846
|
-
<di:waypoint x="
|
|
847
|
-
<di:waypoint x="
|
|
864
|
+
<di:waypoint x="4929" y="924" />
|
|
865
|
+
<di:waypoint x="4929" y="469" />
|
|
866
|
+
<di:waypoint x="5054" y="469" />
|
|
848
867
|
<bpmndi:BPMNLabel>
|
|
849
|
-
<dc:Bounds x="
|
|
868
|
+
<dc:Bounds x="4934" y="690" width="85" height="14" />
|
|
850
869
|
</bpmndi:BPMNLabel>
|
|
851
870
|
</bpmndi:BPMNEdge>
|
|
852
871
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerProceed" bpmnElement="f_trialAnswerProceed">
|
|
853
|
-
<di:waypoint x="
|
|
854
|
-
<di:waypoint x="
|
|
855
|
-
<di:waypoint x="
|
|
872
|
+
<di:waypoint x="5479" y="444" />
|
|
873
|
+
<di:waypoint x="5479" y="309" />
|
|
874
|
+
<di:waypoint x="5604" y="309" />
|
|
856
875
|
<bpmndi:BPMNLabel>
|
|
857
|
-
<dc:Bounds x="
|
|
876
|
+
<dc:Bounds x="5484" y="370" width="53" height="14" />
|
|
858
877
|
</bpmndi:BPMNLabel>
|
|
859
878
|
</bpmndi:BPMNEdge>
|
|
860
879
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerAbandon" bpmnElement="f_trialAnswerAbandon">
|
|
861
|
-
<di:waypoint x="
|
|
862
|
-
<di:waypoint x="
|
|
863
|
-
<di:waypoint x="
|
|
864
|
-
<di:waypoint x="
|
|
865
|
-
<di:waypoint x="
|
|
880
|
+
<di:waypoint x="5479" y="444" />
|
|
881
|
+
<di:waypoint x="5479" y="282" />
|
|
882
|
+
<di:waypoint x="5734" y="282" />
|
|
883
|
+
<di:waypoint x="5734" y="309" />
|
|
884
|
+
<di:waypoint x="5754" y="309" />
|
|
866
885
|
<bpmndi:BPMNLabel>
|
|
867
|
-
<dc:Bounds x="
|
|
886
|
+
<dc:Bounds x="5580" y="260" width="53" height="14" />
|
|
868
887
|
</bpmndi:BPMNLabel>
|
|
869
888
|
</bpmndi:BPMNEdge>
|
|
870
889
|
<bpmndi:BPMNEdge id="BPMNEdge_f_moreWaves" bpmnElement="f_moreWaves">
|
|
871
|
-
<di:waypoint x="
|
|
872
|
-
<di:waypoint x="
|
|
873
|
-
<di:waypoint x="
|
|
874
|
-
<di:waypoint x="
|
|
875
|
-
<di:waypoint x="
|
|
876
|
-
<di:waypoint x="
|
|
877
|
-
<di:waypoint x="
|
|
878
|
-
<di:waypoint x="
|
|
879
|
-
<di:waypoint x="
|
|
890
|
+
<di:waypoint x="5654" y="309" />
|
|
891
|
+
<di:waypoint x="5674" y="309" />
|
|
892
|
+
<di:waypoint x="5674" y="334" />
|
|
893
|
+
<di:waypoint x="5708" y="334" />
|
|
894
|
+
<di:waypoint x="5708" y="489" />
|
|
895
|
+
<di:waypoint x="5786" y="489" />
|
|
896
|
+
<di:waypoint x="5786" y="507" />
|
|
897
|
+
<di:waypoint x="5804" y="507" />
|
|
898
|
+
<di:waypoint x="5804" y="487" />
|
|
880
899
|
<bpmndi:BPMNLabel>
|
|
881
|
-
<dc:Bounds x="
|
|
900
|
+
<dc:Bounds x="5713" y="405" width="35" height="14" />
|
|
882
901
|
</bpmndi:BPMNLabel>
|
|
883
902
|
</bpmndi:BPMNEdge>
|
|
884
903
|
<bpmndi:BPMNEdge id="BPMNEdge_f_readiness_done" bpmnElement="f_readiness_done">
|
|
@@ -891,13 +910,13 @@
|
|
|
891
910
|
<di:waypoint x="1916" y="469" />
|
|
892
911
|
</bpmndi:BPMNEdge>
|
|
893
912
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toGwTrialAnswer" bpmnElement="f_toGwTrialAnswer">
|
|
894
|
-
<di:waypoint x="4954" y="469" />
|
|
895
|
-
<di:waypoint x="5054" y="469" />
|
|
896
|
-
</bpmndi:BPMNEdge>
|
|
897
|
-
<bpmndi:BPMNEdge id="BPMNEdge_f_resolveToTrialAnswer" bpmnElement="f_resolveToTrialAnswer">
|
|
898
913
|
<di:waypoint x="5154" y="469" />
|
|
899
914
|
<di:waypoint x="5254" y="469" />
|
|
900
915
|
</bpmndi:BPMNEdge>
|
|
916
|
+
<bpmndi:BPMNEdge id="BPMNEdge_f_resolveToTrialAnswer" bpmnElement="f_resolveToTrialAnswer">
|
|
917
|
+
<di:waypoint x="5354" y="469" />
|
|
918
|
+
<di:waypoint x="5454" y="469" />
|
|
919
|
+
</bpmndi:BPMNEdge>
|
|
901
920
|
<bpmndi:BPMNEdge id="BPMNEdge_f_plan_revise" bpmnElement="f_plan_revise">
|
|
902
921
|
<di:waypoint x="1591" y="284" />
|
|
903
922
|
<di:waypoint x="1591" y="249" />
|
|
@@ -908,8 +927,8 @@
|
|
|
908
927
|
</bpmndi:BPMNLabel>
|
|
909
928
|
</bpmndi:BPMNEdge>
|
|
910
929
|
<bpmndi:BPMNEdge id="BPMNEdge_f_waveMerged" bpmnElement="f_waveMerged">
|
|
911
|
-
<di:waypoint x="
|
|
912
|
-
<di:waypoint x="
|
|
930
|
+
<di:waypoint x="5804" y="487" />
|
|
931
|
+
<di:waypoint x="5804" y="558" />
|
|
913
932
|
<di:waypoint x="2116" y="558" />
|
|
914
933
|
<di:waypoint x="2116" y="349" />
|
|
915
934
|
</bpmndi:BPMNEdge>
|
|
@@ -923,12 +942,12 @@
|
|
|
923
942
|
</bpmndi:BPMNLabel>
|
|
924
943
|
</bpmndi:BPMNEdge>
|
|
925
944
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trial_sla" bpmnElement="f_trial_sla">
|
|
926
|
-
<di:waypoint x="
|
|
927
|
-
<di:waypoint x="
|
|
928
|
-
<di:waypoint x="
|
|
929
|
-
<di:waypoint x="
|
|
945
|
+
<di:waypoint x="5104" y="527" />
|
|
946
|
+
<di:waypoint x="5104" y="889" />
|
|
947
|
+
<di:waypoint x="4554" y="889" />
|
|
948
|
+
<di:waypoint x="4554" y="909" />
|
|
930
949
|
<bpmndi:BPMNLabel>
|
|
931
|
-
<dc:Bounds x="
|
|
950
|
+
<dc:Bounds x="4792" y="856" width="74" height="28" />
|
|
932
951
|
</bpmndi:BPMNLabel>
|
|
933
952
|
</bpmndi:BPMNEdge>
|
|
934
953
|
<bpmndi:BPMNShape id="BPMNShape_w_start" bpmnElement="w_start">
|
|
@@ -943,7 +962,7 @@
|
|
|
943
962
|
<bpmndi:BPMNShape id="BPMNShape_w_gw_needs" bpmnElement="w_gw_needs" isMarkerVisible="true">
|
|
944
963
|
<dc:Bounds x="2642" y="135" width="50" height="50" />
|
|
945
964
|
<bpmndi:BPMNLabel>
|
|
946
|
-
<dc:Bounds x="
|
|
965
|
+
<dc:Bounds x="2630" y="102" width="74" height="28" />
|
|
947
966
|
</bpmndi:BPMNLabel>
|
|
948
967
|
</bpmndi:BPMNShape>
|
|
949
968
|
<bpmndi:BPMNShape id="BPMNShape_w_gw_caps" bpmnElement="w_gw_caps" isMarkerVisible="true">
|
|
@@ -970,28 +989,31 @@
|
|
|
970
989
|
<bpmndi:BPMNShape id="BPMNShape_w_gw" bpmnElement="w_gw" isMarkerVisible="true">
|
|
971
990
|
<dc:Bounds x="3278" y="135" width="50" height="50" />
|
|
972
991
|
<bpmndi:BPMNLabel>
|
|
973
|
-
<dc:Bounds x="
|
|
992
|
+
<dc:Bounds x="3268" y="102" width="70" height="28" />
|
|
974
993
|
</bpmndi:BPMNLabel>
|
|
975
994
|
</bpmndi:BPMNShape>
|
|
995
|
+
<bpmndi:BPMNShape id="BPMNShape_record-wave-escalation" bpmnElement="record-wave-escalation">
|
|
996
|
+
<dc:Bounds x="3428" y="120" width="100" height="80" />
|
|
997
|
+
</bpmndi:BPMNShape>
|
|
976
998
|
<bpmndi:BPMNShape id="BPMNShape_feature-escalation" bpmnElement="feature-escalation">
|
|
977
|
-
<dc:Bounds x="
|
|
999
|
+
<dc:Bounds x="3628" y="120" width="100" height="80" />
|
|
978
1000
|
</bpmndi:BPMNShape>
|
|
979
1001
|
<bpmndi:BPMNShape id="BPMNShape_w_gw_answer" bpmnElement="w_gw_answer" isMarkerVisible="true">
|
|
980
|
-
<dc:Bounds x="
|
|
1002
|
+
<dc:Bounds x="3828" y="135" width="50" height="50" />
|
|
981
1003
|
<bpmndi:BPMNLabel>
|
|
982
|
-
<dc:Bounds x="
|
|
1004
|
+
<dc:Bounds x="3825" y="116" width="56" height="14" />
|
|
983
1005
|
</bpmndi:BPMNLabel>
|
|
984
1006
|
</bpmndi:BPMNShape>
|
|
985
1007
|
<bpmndi:BPMNShape id="BPMNShape_w_end" bpmnElement="w_end">
|
|
986
|
-
<dc:Bounds x="
|
|
1008
|
+
<dc:Bounds x="3978" y="142" width="36" height="36" />
|
|
987
1009
|
<bpmndi:BPMNLabel>
|
|
988
|
-
<dc:Bounds x="
|
|
1010
|
+
<dc:Bounds x="3963" y="123" width="66" height="14" />
|
|
989
1011
|
</bpmndi:BPMNLabel>
|
|
990
1012
|
</bpmndi:BPMNShape>
|
|
991
1013
|
<bpmndi:BPMNShape id="BPMNShape_be_feature_sla" bpmnElement="be_feature_sla">
|
|
992
|
-
<dc:Bounds x="
|
|
1014
|
+
<dc:Bounds x="3660" y="182" width="36" height="36" />
|
|
993
1015
|
<bpmndi:BPMNLabel>
|
|
994
|
-
<dc:Bounds x="
|
|
1016
|
+
<dc:Bounds x="3636" y="263" width="84" height="14" />
|
|
995
1017
|
</bpmndi:BPMNLabel>
|
|
996
1018
|
</bpmndi:BPMNShape>
|
|
997
1019
|
<bpmndi:BPMNEdge id="BPMNEdge_w_toCapsPrepare" bpmnElement="w_toCapsPrepare">
|
|
@@ -1013,11 +1035,26 @@
|
|
|
1013
1035
|
<di:waypoint x="3178" y="160" />
|
|
1014
1036
|
<di:waypoint x="3278" y="160" />
|
|
1015
1037
|
</bpmndi:BPMNEdge>
|
|
1016
|
-
<bpmndi:BPMNEdge id="
|
|
1038
|
+
<bpmndi:BPMNEdge id="BPMNEdge_w_escalate" bpmnElement="w_escalate">
|
|
1017
1039
|
<di:waypoint x="3328" y="160" />
|
|
1018
|
-
<di:waypoint x="
|
|
1040
|
+
<di:waypoint x="3428" y="160" />
|
|
1019
1041
|
<bpmndi:BPMNLabel>
|
|
1020
|
-
<dc:Bounds x="
|
|
1042
|
+
<dc:Bounds x="3346" y="168" width="64" height="14" />
|
|
1043
|
+
</bpmndi:BPMNLabel>
|
|
1044
|
+
</bpmndi:BPMNEdge>
|
|
1045
|
+
<bpmndi:BPMNEdge id="BPMNEdge_w_toEscalationTask" bpmnElement="w_toEscalationTask">
|
|
1046
|
+
<di:waypoint x="3528" y="160" />
|
|
1047
|
+
<di:waypoint x="3628" y="160" />
|
|
1048
|
+
</bpmndi:BPMNEdge>
|
|
1049
|
+
<bpmndi:BPMNEdge id="BPMNEdge_w_toAnswerGw" bpmnElement="w_toAnswerGw">
|
|
1050
|
+
<di:waypoint x="3728" y="160" />
|
|
1051
|
+
<di:waypoint x="3828" y="160" />
|
|
1052
|
+
</bpmndi:BPMNEdge>
|
|
1053
|
+
<bpmndi:BPMNEdge id="BPMNEdge_w_abandon" bpmnElement="w_abandon">
|
|
1054
|
+
<di:waypoint x="3878" y="160" />
|
|
1055
|
+
<di:waypoint x="3978" y="160" />
|
|
1056
|
+
<bpmndi:BPMNLabel>
|
|
1057
|
+
<dc:Bounds x="3902" y="168" width="53" height="14" />
|
|
1021
1058
|
</bpmndi:BPMNLabel>
|
|
1022
1059
|
</bpmndi:BPMNEdge>
|
|
1023
1060
|
<bpmndi:BPMNEdge id="BPMNEdge_w_capsToWait" bpmnElement="w_capsToWait">
|
|
@@ -1029,14 +1066,6 @@
|
|
|
1029
1066
|
<di:waypoint x="3128" y="320" />
|
|
1030
1067
|
<di:waypoint x="3128" y="200" />
|
|
1031
1068
|
</bpmndi:BPMNEdge>
|
|
1032
|
-
<bpmndi:BPMNEdge id="BPMNEdge_w_abandon" bpmnElement="w_abandon">
|
|
1033
|
-
<di:waypoint x="3678" y="320" />
|
|
1034
|
-
<di:waypoint x="3796" y="320" />
|
|
1035
|
-
<di:waypoint x="3796" y="178" />
|
|
1036
|
-
<bpmndi:BPMNLabel>
|
|
1037
|
-
<dc:Bounds x="3711" y="298" width="53" height="14" />
|
|
1038
|
-
</bpmndi:BPMNLabel>
|
|
1039
|
-
</bpmndi:BPMNEdge>
|
|
1040
1069
|
<bpmndi:BPMNEdge id="BPMNEdge_w_toWaitCaps" bpmnElement="w_toWaitCaps">
|
|
1041
1070
|
<di:waypoint x="2667" y="185" />
|
|
1042
1071
|
<di:waypoint x="2667" y="320" />
|
|
@@ -1050,44 +1079,41 @@
|
|
|
1050
1079
|
<di:waypoint x="2817" y="480" />
|
|
1051
1080
|
<di:waypoint x="2942" y="480" />
|
|
1052
1081
|
</bpmndi:BPMNEdge>
|
|
1053
|
-
<bpmndi:BPMNEdge id="
|
|
1054
|
-
<di:waypoint x="
|
|
1055
|
-
<di:waypoint x="
|
|
1056
|
-
<di:waypoint x="
|
|
1082
|
+
<bpmndi:BPMNEdge id="BPMNEdge_w_capsTimeout" bpmnElement="w_capsTimeout">
|
|
1083
|
+
<di:waypoint x="2978" y="480" />
|
|
1084
|
+
<di:waypoint x="4034" y="480" />
|
|
1085
|
+
<di:waypoint x="4034" y="100" />
|
|
1086
|
+
<di:waypoint x="3678" y="100" />
|
|
1087
|
+
<di:waypoint x="3678" y="120" />
|
|
1057
1088
|
<bpmndi:BPMNLabel>
|
|
1058
|
-
<dc:Bounds x="
|
|
1089
|
+
<dc:Bounds x="3966" y="283" width="63" height="14" />
|
|
1059
1090
|
</bpmndi:BPMNLabel>
|
|
1060
1091
|
</bpmndi:BPMNEdge>
|
|
1061
|
-
<bpmndi:BPMNEdge id="
|
|
1062
|
-
<di:waypoint x="
|
|
1063
|
-
<di:waypoint x="
|
|
1064
|
-
<di:waypoint x="
|
|
1065
|
-
<di:waypoint x="
|
|
1066
|
-
<di:waypoint x="3478" y="280" />
|
|
1092
|
+
<bpmndi:BPMNEdge id="BPMNEdge_w_done" bpmnElement="w_done">
|
|
1093
|
+
<di:waypoint x="3303" y="185" />
|
|
1094
|
+
<di:waypoint x="3303" y="240" />
|
|
1095
|
+
<di:waypoint x="3996" y="240" />
|
|
1096
|
+
<di:waypoint x="3996" y="178" />
|
|
1067
1097
|
<bpmndi:BPMNLabel>
|
|
1068
|
-
<dc:Bounds x="
|
|
1098
|
+
<dc:Bounds x="3909" y="218" width="32" height="14" />
|
|
1069
1099
|
</bpmndi:BPMNLabel>
|
|
1070
1100
|
</bpmndi:BPMNEdge>
|
|
1071
|
-
<bpmndi:BPMNEdge id="BPMNEdge_w_toAnswerGw" bpmnElement="w_toAnswerGw">
|
|
1072
|
-
<di:waypoint x="3528" y="320" />
|
|
1073
|
-
<di:waypoint x="3628" y="320" />
|
|
1074
|
-
</bpmndi:BPMNEdge>
|
|
1075
1101
|
<bpmndi:BPMNEdge id="BPMNEdge_w_sla" bpmnElement="w_sla">
|
|
1076
|
-
<di:waypoint x="
|
|
1077
|
-
<di:waypoint x="
|
|
1078
|
-
<di:waypoint x="
|
|
1079
|
-
<di:waypoint x="
|
|
1102
|
+
<di:waypoint x="3678" y="218" />
|
|
1103
|
+
<di:waypoint x="3678" y="238" />
|
|
1104
|
+
<di:waypoint x="3996" y="238" />
|
|
1105
|
+
<di:waypoint x="3996" y="178" />
|
|
1080
1106
|
<bpmndi:BPMNLabel>
|
|
1081
|
-
<dc:Bounds x="
|
|
1107
|
+
<dc:Bounds x="3753" y="205" width="88" height="28" />
|
|
1082
1108
|
</bpmndi:BPMNLabel>
|
|
1083
1109
|
</bpmndi:BPMNEdge>
|
|
1084
1110
|
<bpmndi:BPMNEdge id="BPMNEdge_w_answerLoop" bpmnElement="w_answerLoop">
|
|
1085
|
-
<di:waypoint x="
|
|
1086
|
-
<di:waypoint x="
|
|
1087
|
-
<di:waypoint x="3128" y="
|
|
1111
|
+
<di:waypoint x="3853" y="185" />
|
|
1112
|
+
<di:waypoint x="3853" y="240" />
|
|
1113
|
+
<di:waypoint x="3128" y="240" />
|
|
1088
1114
|
<di:waypoint x="3128" y="200" />
|
|
1089
1115
|
<bpmndi:BPMNLabel>
|
|
1090
|
-
<dc:Bounds x="
|
|
1116
|
+
<dc:Bounds x="3191" y="218" width="49" height="14" />
|
|
1091
1117
|
</bpmndi:BPMNLabel>
|
|
1092
1118
|
</bpmndi:BPMNEdge>
|
|
1093
1119
|
</bpmndi:BPMNPlane>
|