bpmn-elements 17.0.0 → 17.1.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/README.md CHANGED
@@ -14,6 +14,7 @@ The following elements are tested and supported.
14
14
 
15
15
  - [Definition](/docs/Definition.md): Executable BPMN 2 definition
16
16
  - [Process](/docs/Process.md): Executes and keeps track of activity elements
17
+ - AdHocSubProcess
17
18
  - BpmnError
18
19
  - BoundaryEvent
19
20
  - [CallActivity](/docs/CallActivity.md)
package/dist/index.js CHANGED
@@ -15,6 +15,12 @@ Object.defineProperty(exports, "ActivityError", {
15
15
  return _Errors.ActivityError;
16
16
  }
17
17
  });
18
+ Object.defineProperty(exports, "AdHocSubProcess", {
19
+ enumerable: true,
20
+ get: function () {
21
+ return _index4.SubProcess;
22
+ }
23
+ });
18
24
  Object.defineProperty(exports, "Association", {
19
25
  enumerable: true,
20
26
  get: function () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bpmn-elements",
3
- "version": "17.0.0",
3
+ "version": "17.1.0",
4
4
  "description": "Executable workflow elements based on BPMN 2.0",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -93,14 +93,14 @@
93
93
  "chronokinesis": "^6.0.0",
94
94
  "debug": "^4.3.4",
95
95
  "eslint": "^9.0.0",
96
- "globals": "^15.0.0",
96
+ "globals": "^16.0.0",
97
97
  "got": "^14.2.1",
98
98
  "mocha": "^11.0.1",
99
99
  "mocha-cakes-2": "^3.3.0",
100
100
  "moddle-context-serializer": "^4.2.1",
101
101
  "nock": "^14.0.0",
102
102
  "prettier": "^3.2.5",
103
- "texample": "^0.0.6"
103
+ "texample": "^0.0.8"
104
104
  },
105
105
  "dependencies": {
106
106
  "@0dep/piso": "^2.4.0",
package/src/index.js CHANGED
@@ -38,6 +38,7 @@ import { Timers } from './Timers.js';
38
38
  export { ActivityError, RunError } from './error/Errors.js';
39
39
 
40
40
  export {
41
+ SubProcess as AdHocSubProcess,
41
42
  Association,
42
43
  Activity,
43
44
  BoundaryEvent,