@onify/flow-extensions 9.0.0 → 9.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/dist/index.js +1 -0
- package/package.json +4 -4
- package/src/index.js +1 -0
package/dist/index.js
CHANGED
|
@@ -27,6 +27,7 @@ function extensions(element, context) {
|
|
|
27
27
|
switch (element.type) {
|
|
28
28
|
case 'bpmn:Process':
|
|
29
29
|
return new _OnifyProcessExtensions.OnifyProcessExtensions(element, context);
|
|
30
|
+
case 'bpmn:AdHocSubProcess':
|
|
30
31
|
case 'bpmn:SubProcess':
|
|
31
32
|
case 'bpmn:Transaction':
|
|
32
33
|
return new _OnifySubProcessExtensions.OnifySubProcessExtensions(element, context);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onify/flow-extensions",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.1.0",
|
|
4
4
|
"description": "Onify Flow extensions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "src/index.js",
|
|
@@ -60,12 +60,12 @@
|
|
|
60
60
|
"chronokinesis": "^6.0.0",
|
|
61
61
|
"debug": "^4.3.4",
|
|
62
62
|
"eslint": "^9.3.0",
|
|
63
|
-
"mocha": "^
|
|
63
|
+
"mocha": "^11.0.1",
|
|
64
64
|
"mocha-cakes-2": "^3.3.0",
|
|
65
65
|
"moddle-context-serializer": "^4.1.1",
|
|
66
|
-
"nock": "^
|
|
66
|
+
"nock": "^14.0.1",
|
|
67
67
|
"prettier": "^3.2.4",
|
|
68
|
-
"texample": "^0.0.
|
|
68
|
+
"texample": "^0.0.8"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
71
|
"@0dep/piso": ">=2",
|
package/src/index.js
CHANGED
|
@@ -10,6 +10,7 @@ export function extensions(element, context) {
|
|
|
10
10
|
switch (element.type) {
|
|
11
11
|
case 'bpmn:Process':
|
|
12
12
|
return new OnifyProcessExtensions(element, context);
|
|
13
|
+
case 'bpmn:AdHocSubProcess':
|
|
13
14
|
case 'bpmn:SubProcess':
|
|
14
15
|
case 'bpmn:Transaction':
|
|
15
16
|
return new OnifySubProcessExtensions(element, context);
|