@5minds/node-red-contrib-processcube 1.9.3-develop-c9db83-m8k3pb8w → 1.9.3-develop-6cf3d1-m8mrrpqs

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.
Files changed (41) hide show
  1. package/externaltask-input.js +2 -6
  2. package/package.json +1 -1
  3. package/.github/workflows/build-and-publish.yml +0 -72
  4. package/.processcube/authority/config/config.json +0 -36
  5. package/.processcube/authority/config/upeSeedingData.json +0 -12
  6. package/.processcube/engine/config/config.json +0 -17
  7. package/.processcube/nodered/.config.nodes.json +0 -658
  8. package/.processcube/nodered/.config.runtime.json +0 -3
  9. package/.processcube/nodered/.config.users.json +0 -31
  10. package/.processcube/nodered/config.js +0 -20
  11. package/.processcube/nodered/flows.json +0 -3349
  12. package/.processcube/nodered/flows_cred.json +0 -3
  13. package/.processcube/nodered/package-lock.json +0 -5169
  14. package/.processcube/nodered/package.json +0 -6
  15. package/.processcube/nodered/settings.js +0 -562
  16. package/.processcube/nodered/static/ProcessCube_Logo.svg +0 -53
  17. package/DEVELOPMENT.md +0 -16
  18. package/Dockerfile +0 -22
  19. package/doc_generator/README.md +0 -6
  20. package/doc_generator/_process_instances_query.md +0 -121
  21. package/doc_generator/generator.js +0 -41
  22. package/doc_generator/generator_with_swagger.js +0 -89
  23. package/doc_generator/outputs/.gitkeep +0 -0
  24. package/doc_generator/package-lock.json +0 -176
  25. package/doc_generator/package.json +0 -15
  26. package/doc_generator/query_template.mustache +0 -20
  27. package/doc_generator/swagger.json +0 -4110
  28. package/docker-compose.yml +0 -78
  29. package/postgres/init.sql +0 -13
  30. package/processes/Call-Activity-Sample.bpmn +0 -88
  31. package/processes/External-Task-Auth-Sample.bpmn +0 -82
  32. package/processes/External-Task-Env-Topic.bpmn +0 -57
  33. package/processes/External-Task-Sample.bpmn +0 -122
  34. package/processes/ProcessModelToDeploy.bpmn +0 -58
  35. package/processes/SampleEvent.bpmn +0 -73
  36. package/processes/SimpleExternalTask.bpmn +0 -52
  37. package/processes/StartProcessSample.bpmn +0 -54
  38. package/processes/TriggerMessageEvent.bpmn +0 -79
  39. package/processes/User-Task-Auth-Sample.bpmn +0 -63
  40. package/processes/User-Task-Sample.bpmn +0 -76
  41. package/processes/Wait-For-Usertask.bpmn +0 -74
@@ -73,9 +73,7 @@ module.exports = function (RED) {
73
73
  node._tracking_for_etw[msg.flowNodeInstanceId].push(theNode);
74
74
  }
75
75
 
76
- if (!theNode.type === 'delay') {
77
- theNode.status({ fill: 'blue', shape: 'dot', text: `tasks(${node._tracking_nodes[theNode.id].count})` });
78
- }
76
+ theNode.status({ fill: 'blue', shape: 'dot', text: `tasks(${node._tracking_nodes[theNode.id].count})` });
79
77
  };
80
78
 
81
79
  node.decrMsgOnNode = (theNode, msg) => {
@@ -120,9 +118,7 @@ module.exports = function (RED) {
120
118
  }
121
119
  }
122
120
 
123
- if (!theNode.type === 'delay') {
124
- theNode.status({ fill: 'blue', shape: 'dot', text: `tasks(${node._tracking_nodes[theNode.id].count})` });
125
- }
121
+ theNode.status({ fill: 'blue', shape: 'dot', text: `tasks(${node._tracking_nodes[theNode.id].count})` });
126
122
  };
127
123
 
128
124
  RED.hooks.add('preDeliver', (sendEvent) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@5minds/node-red-contrib-processcube",
3
- "version": "1.9.3-develop-c9db83-m8k3pb8w",
3
+ "version": "1.9.3-develop-6cf3d1-m8mrrpqs",
4
4
  "license": "MIT",
5
5
  "description": "Node-RED nodes for ProcessCube",
6
6
  "scripts": {
@@ -1,72 +0,0 @@
1
- name: Build and Publish
2
-
3
- on:
4
- push:
5
- branches:
6
- - '*'
7
- - '*/*'
8
-
9
- env:
10
- CI_TOOLS_VERSION: '^5.0.0'
11
- # NOTE: Um den Releasezyklus von Alpha nach Beta zu ändern, einfach die nachfolgend deklarierten Env Variablen switchen.
12
- CI_TOOLS_ALPHA_BRANCH: next
13
- CI_TOOLS_ALPHA_NPM_TAG: next
14
- # CI_TOOLS_BETA_BRANCH: next
15
- # CI_TOOLS_BETA_NPM_TAG: next
16
- BOX_RELEASE_TAG: 2025-1
17
-
18
- jobs:
19
- build_and_publish:
20
- name: 'Build and publish sources'
21
- runs-on: ubuntu-latest
22
- if: "!(contains(github.actor, 'process-engine-ci') || contains(github.actor, 'admin'))"
23
-
24
- steps:
25
- - uses: actions/checkout@v4
26
- with:
27
- fetch-depth: 0
28
- token: ${{ secrets.GH_TOKEN }}
29
-
30
- - name: Use Node.js 22
31
- uses: actions/setup-node@v4
32
- with:
33
- node-version: '22'
34
- registry-url: 'https://registry.npmjs.org'
35
-
36
- - name: Install CI Tools
37
- env:
38
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
39
- run: npm i -g @5minds/product_ci_tools@${{ env.CI_TOOLS_VERSION }}
40
-
41
- - name: 'Install Dependencies'
42
- env:
43
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
44
- run: npm ci
45
-
46
- - name: 'Prepare Version'
47
- if: "!startsWith(github.ref_name, 'renovate')"
48
- run: ci_tools prepare-version --allow-dirty-workdir
49
-
50
- - name: 'Commit & Tag Version'
51
- if: "!startsWith(github.ref_name, 'renovate')"
52
- env:
53
- GH_USER: ${{ secrets.GH_USER }}
54
- GH_TOKEN: ${{ secrets.GH_TOKEN }}
55
- run: |
56
- ci_tools commit-and-tag-version --only-on-primary-branches
57
- ci_tools update-github-release --only-on-primary-branches --use-title-and-text-from-git-tag
58
-
59
- - name: 'Publish Version'
60
- if: "!startsWith(github.ref_name, 'renovate')"
61
- env:
62
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
63
- run: ci_tools publish-npm-package --create-tag-from-branch-name
64
-
65
- - name: Add Box-Release Tag
66
- if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/next'
67
- env:
68
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
69
- run: |
70
- VERSION="$(ci_tools get-version)"
71
- PACKAGE_NAME="$(npm pkg get name | tr -d \")"
72
- npm dist-tag add $PACKAGE_NAME@$VERSION ${{ env.BOX_RELEASE_TAG }}
@@ -1,36 +0,0 @@
1
- {
2
- "issuerUrl": "http://authority:11560",
3
- "applicationPort": 11560,
4
- "development": {
5
- "builtInReactDevServer": false,
6
- "detailedErrors": true,
7
- "disableHttpsEnforcement": true,
8
- "enableLocalhostImplicit": true,
9
- "fixWrongHostnames": true
10
- },
11
- "studio": true,
12
- "engines": [
13
- {
14
- "clientId": "5minds_engine",
15
- "clientSecret": "5minds_engine"
16
- }
17
- ],
18
- "database": {
19
- "dialect": "sqlite",
20
- "storage": "storage/database.sqlite",
21
- "logging": false
22
- },
23
- "extensions": {
24
- "path": "/app/extensions",
25
- "configs": {
26
- "username_password": {}
27
- }
28
- },
29
- "externalTaskWorkers": [
30
- {
31
- "clientId": "nodered",
32
- "clientSecret": "nodered",
33
- "scope": "engine_etw engine_read engine_write"
34
- }
35
- ]
36
- }
@@ -1,12 +0,0 @@
1
- {
2
- "users": [
3
- {
4
- "username": "admin",
5
- "password": "admin",
6
- "scopes": ["openid", "profile", "email", "engine_read", "engine_write", "upe_admin"],
7
- "claims": {
8
- "email": "admin@admin.de"
9
- }
10
- }
11
- ]
12
- }
@@ -1,17 +0,0 @@
1
- {
2
- "logging": {
3
- "outputPath": "logs",
4
- "minLogLevel": "info"
5
- },
6
- "database": {
7
- "username": "engine_user",
8
- "password": "enigne_password",
9
- "database": "engine_db",
10
- "host": "postgres",
11
- "port": 5432,
12
- "dialect": "postgres",
13
- "supportBigNumbers": true,
14
- "resetPasswordRequestTimeToLive": 12,
15
- "logging": false
16
- }
17
- }