@5minds/node-red-contrib-processcube 2.0.0-feature-629c78-m2dq1ygt → 7.6.0-develop-51b534-mjy3s4sm
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/README.md +3 -58
- package/check-authorization.html +138 -0
- package/check-authorization.js +27 -0
- package/dataobject-instance-query.html +141 -0
- package/dataobject-instance-query.js +45 -0
- package/endevent-finished-listener.js +14 -25
- package/examples/Check-Authorization-Sample.json +109 -0
- package/examples/Dataobject-Instance-Query-Sample.json +109 -0
- package/externaltask-error.html +8 -3
- package/externaltask-error.js +43 -29
- package/externaltask-event-listener.js +11 -28
- package/externaltask-input.html +48 -3
- package/externaltask-input.js +581 -114
- package/externaltask-output.js +20 -16
- package/icons/data-object-query.svg +5 -0
- package/message-event-trigger.html +1 -1
- package/message-event-trigger.js +8 -7
- package/package.json +74 -67
- package/process-event-listener.js +166 -225
- package/process-start.html +6 -0
- package/process-start.js +29 -6
- package/process-terminate.html +1 -1
- package/process-terminate.js +7 -5
- package/processcube-engine-config.html +25 -7
- package/processcube-engine-config.js +25 -135
- package/processcube-google-docs-mail-template.html +150 -0
- package/processcube-google-docs-mail-template.js +158 -0
- package/processdefinition-deploy.html +44 -0
- package/processdefinition-deploy.js +28 -0
- package/processdefinition-query.html +18 -13
- package/processdefinition-query.js +33 -31
- package/processinstance-delete-advanced.html +82 -0
- package/processinstance-delete-advanced.js +33 -0
- package/processinstance-delete.html +60 -8
- package/processinstance-delete.js +84 -30
- package/processinstance-query.html +116 -109
- package/processinstance-query.js +28 -5
- package/signal-event-trigger.js +8 -6
- package/usertask-event-listener.html +123 -1
- package/usertask-event-listener.js +30 -45
- package/usertask-input.html +119 -0
- package/usertask-input.js +7 -9
- package/usertask-output.js +15 -8
- package/wait-for-usertask.html +122 -6
- package/wait-for-usertask.js +44 -47
- package/.github/workflows/build-and-publish.yml +0 -72
- package/.processcube/authority/config/config.json +0 -36
- package/.processcube/authority/config/upeSeedingData.json +0 -12
- package/Dockerfile +0 -9
- package/doc_generator/_process_instances_query.md +0 -115
- package/doc_generator/generator.js +0 -41
- package/doc_generator/generator_with_swagger.js +0 -72
- package/doc_generator/package-lock.json +0 -176
- package/doc_generator/package.json +0 -15
- package/doc_generator/query_template.mustache +0 -20
- package/doc_generator/swagger.json +0 -4110
- package/docker-compose.yml +0 -44
- package/nodered/flows.json +0 -2156
- package/nodered/flows_cred.json +0 -3
- package/nodered/settings.js +0 -562
- package/nodered/static/ProcessCube_Logo.svg +0 -53
- package/processes/Call-Activity-Sample.bpmn +0 -88
- package/processes/External-Task-Auth-Sample.bpmn +0 -82
- package/processes/External-Task-Sample.bpmn +0 -94
- package/processes/SampleEvent.bpmn +0 -73
- package/processes/User-Task-Auth-Sample.bpmn +0 -63
- package/processes/User-Task-Sample.bpmn +0 -76
- package/processes/Wait-For-Usertask.bpmn +0 -74
package/docker-compose.yml
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
services:
|
|
2
|
-
node-red:
|
|
3
|
-
image: 5minds/node-red:node-red-contrib-processcube-4
|
|
4
|
-
build:
|
|
5
|
-
context: .
|
|
6
|
-
ports:
|
|
7
|
-
- "1880:1880"
|
|
8
|
-
environment:
|
|
9
|
-
- TZ=Europe/Berlin
|
|
10
|
-
- ENGINE_URL=http://engine:8000
|
|
11
|
-
volumes:
|
|
12
|
-
- ./nodered/:/data/
|
|
13
|
-
depends_on:
|
|
14
|
-
- engine
|
|
15
|
-
- authority
|
|
16
|
-
|
|
17
|
-
engine:
|
|
18
|
-
image: 5minds/processcube_engine:2024-1
|
|
19
|
-
#image: 5minds/processcube_engine:17.1.2
|
|
20
|
-
ports:
|
|
21
|
-
- 8000:8000
|
|
22
|
-
volumes:
|
|
23
|
-
- ./processes:/processes:ro
|
|
24
|
-
environment:
|
|
25
|
-
application__name: Engine for Node-RED contrib
|
|
26
|
-
iam__baseUrl: http://authority:11560
|
|
27
|
-
iam__allowAnonymousRootAccess: true
|
|
28
|
-
command: --seed-dir=/processes --port 8000
|
|
29
|
-
depends_on:
|
|
30
|
-
- authority
|
|
31
|
-
healthcheck:
|
|
32
|
-
test: bash -c "[ -f /tmp/healthy ]"
|
|
33
|
-
timeout: 1s
|
|
34
|
-
retries: 20
|
|
35
|
-
|
|
36
|
-
authority:
|
|
37
|
-
image: 5minds/processcube_authority:3.0.4
|
|
38
|
-
ports:
|
|
39
|
-
- 11560:11560
|
|
40
|
-
volumes:
|
|
41
|
-
- ./.processcube/authority/config:/etc/authority/config:ro
|
|
42
|
-
- ./.processcube/authority/db:/app/authority/storage/
|
|
43
|
-
environment:
|
|
44
|
-
UPE_SEED_PATH: /etc/authority/config/upeSeedingData.json
|