@5minds/node-red-contrib-processcube 1.7.0-develop-0341ad-m65hjby2 → 1.7.1-develop-5ca024-m693kc4b
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/.processcube/nodered/.config.nodes.json +995 -0
- package/.processcube/nodered/.config.runtime.json +3 -0
- package/.processcube/nodered/.config.users.json +28 -0
- package/.processcube/nodered/config.js +20 -0
- package/{nodered → .processcube/nodered}/flows.json +90 -0
- package/.processcube/nodered/package-lock.json +5169 -0
- package/.processcube/nodered/package.json +6 -0
- package/Dockerfile +14 -4
- package/docker-compose.yml +10 -2
- package/package.json +1 -1
- package/processes/SimpleExternalTask.bpmn +52 -0
- /package/{nodered → .processcube/nodered}/flows_cred.json +0 -0
- /package/{nodered → .processcube/nodered}/settings.js +0 -0
- /package/{nodered → .processcube/nodered}/static/ProcessCube_Logo.svg +0 -0
@@ -0,0 +1,28 @@
|
|
1
|
+
{
|
2
|
+
"_": {
|
3
|
+
"editor": {
|
4
|
+
"view": {
|
5
|
+
"view-store-zoom": false,
|
6
|
+
"view-store-position": false,
|
7
|
+
"view-show-grid": true,
|
8
|
+
"view-snap-grid": true,
|
9
|
+
"view-grid-size": 20,
|
10
|
+
"view-node-status": true,
|
11
|
+
"view-node-show-label": true,
|
12
|
+
"view-show-tips": true,
|
13
|
+
"view-show-welcome-tours": true
|
14
|
+
},
|
15
|
+
"tours": {
|
16
|
+
"welcome": "4.0.2"
|
17
|
+
},
|
18
|
+
"dialog": {
|
19
|
+
"export": {
|
20
|
+
"pretty": true,
|
21
|
+
"json-view": false
|
22
|
+
}
|
23
|
+
}
|
24
|
+
},
|
25
|
+
"menu-menu-item-sidebar": false,
|
26
|
+
"menu-menu-item-palette": true
|
27
|
+
}
|
28
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
|
2
|
+
// let cause of merge custom settings
|
3
|
+
|
4
|
+
let config = {};
|
5
|
+
|
6
|
+
try {
|
7
|
+
config = require('./settings.js');
|
8
|
+
} catch (e) {
|
9
|
+
console.log(">>>", e);
|
10
|
+
}
|
11
|
+
|
12
|
+
process.on('uncaughtException', (err) => {
|
13
|
+
console.error(`Uncaught Exception: ${err}`, {});
|
14
|
+
});
|
15
|
+
|
16
|
+
process.on('unhandledRejection', (reason, promise) => {
|
17
|
+
console.error(`Unhandled Rejection at ${promise} reason: ${reason}`, {});
|
18
|
+
});
|
19
|
+
|
20
|
+
module.exports = config;
|
@@ -635,6 +635,30 @@
|
|
635
635
|
"w": 792,
|
636
636
|
"h": 142
|
637
637
|
},
|
638
|
+
{
|
639
|
+
"id": "be22a2d8eb2e28c4",
|
640
|
+
"type": "group",
|
641
|
+
"z": "a23d2e782beb66f4",
|
642
|
+
"style": {
|
643
|
+
"stroke": "#999999",
|
644
|
+
"stroke-opacity": "1",
|
645
|
+
"fill": "none",
|
646
|
+
"fill-opacity": "1",
|
647
|
+
"label": true,
|
648
|
+
"label-position": "nw",
|
649
|
+
"color": "#a4a4a4"
|
650
|
+
},
|
651
|
+
"nodes": [
|
652
|
+
"53a1d67f1dfa05fe",
|
653
|
+
"d513d7e0c850c44d",
|
654
|
+
"6f6e80c41332e9c1",
|
655
|
+
"0cf6a2ec7112f5f6"
|
656
|
+
],
|
657
|
+
"x": 34,
|
658
|
+
"y": 979,
|
659
|
+
"w": 652,
|
660
|
+
"h": 142
|
661
|
+
},
|
638
662
|
{
|
639
663
|
"id": "42e6796dddd9d4db",
|
640
664
|
"type": "processcube-engine-config",
|
@@ -1047,6 +1071,72 @@
|
|
1047
1071
|
"y": 780,
|
1048
1072
|
"wires": []
|
1049
1073
|
},
|
1074
|
+
{
|
1075
|
+
"id": "53a1d67f1dfa05fe",
|
1076
|
+
"type": "externaltask-input",
|
1077
|
+
"z": "a23d2e782beb66f4",
|
1078
|
+
"g": "be22a2d8eb2e28c4",
|
1079
|
+
"name": "the_simple_topic",
|
1080
|
+
"engine": "42e6796dddd9d4db",
|
1081
|
+
"topic": "the_simple_topic",
|
1082
|
+
"topicType": "str",
|
1083
|
+
"workerConfig": "{}",
|
1084
|
+
"workerConfigType": "json",
|
1085
|
+
"x": 140,
|
1086
|
+
"y": 1080,
|
1087
|
+
"wires": [
|
1088
|
+
[
|
1089
|
+
"d513d7e0c850c44d"
|
1090
|
+
]
|
1091
|
+
]
|
1092
|
+
},
|
1093
|
+
{
|
1094
|
+
"id": "d513d7e0c850c44d",
|
1095
|
+
"type": "delay",
|
1096
|
+
"z": "a23d2e782beb66f4",
|
1097
|
+
"g": "be22a2d8eb2e28c4",
|
1098
|
+
"name": "",
|
1099
|
+
"pauseType": "delay",
|
1100
|
+
"timeout": "10",
|
1101
|
+
"timeoutUnits": "seconds",
|
1102
|
+
"rate": "1",
|
1103
|
+
"nbRateUnits": "1",
|
1104
|
+
"rateUnits": "second",
|
1105
|
+
"randomFirst": "1",
|
1106
|
+
"randomLast": "5",
|
1107
|
+
"randomUnits": "seconds",
|
1108
|
+
"drop": false,
|
1109
|
+
"allowrate": false,
|
1110
|
+
"outputs": 1,
|
1111
|
+
"x": 350,
|
1112
|
+
"y": 1080,
|
1113
|
+
"wires": [
|
1114
|
+
[
|
1115
|
+
"6f6e80c41332e9c1"
|
1116
|
+
]
|
1117
|
+
]
|
1118
|
+
},
|
1119
|
+
{
|
1120
|
+
"id": "6f6e80c41332e9c1",
|
1121
|
+
"type": "externaltask-output",
|
1122
|
+
"z": "a23d2e782beb66f4",
|
1123
|
+
"g": "be22a2d8eb2e28c4",
|
1124
|
+
"name": "",
|
1125
|
+
"x": 570,
|
1126
|
+
"y": 1080,
|
1127
|
+
"wires": []
|
1128
|
+
},
|
1129
|
+
{
|
1130
|
+
"id": "0cf6a2ec7112f5f6",
|
1131
|
+
"type": "comment",
|
1132
|
+
"z": "a23d2e782beb66f4",
|
1133
|
+
"g": "be22a2d8eb2e28c4",
|
1134
|
+
"name": "Handle: the_simple_topic",
|
1135
|
+
"info": "",
|
1136
|
+
"x": 170,
|
1137
|
+
"y": 1020,
|
1138
|
+
"wires": []
|
1139
|
+
},
|
1050
1140
|
{
|
1051
1141
|
"id": "82533b02fb9a9f04",
|
1052
1142
|
"type": "comment",
|