bpmn-elements 15.0.1 → 15.0.3
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/package.json +2 -2
- package/types/types.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bpmn-elements",
|
|
3
|
-
"version": "15.0.
|
|
3
|
+
"version": "15.0.3",
|
|
4
4
|
"description": "Executable workflow elements based on BPMN 2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"texample": "^0.0.5"
|
|
89
89
|
},
|
|
90
90
|
"dependencies": {
|
|
91
|
-
"@0dep/piso": "^0.
|
|
91
|
+
"@0dep/piso": "^2.0.0",
|
|
92
92
|
"smqp": "^9.0.2"
|
|
93
93
|
}
|
|
94
94
|
}
|
package/types/types.d.ts
CHANGED
|
@@ -258,6 +258,7 @@ declare interface Api<T> extends ElementBrokerMessage {
|
|
|
258
258
|
sendApiMessage(action: string, content?: signalMessage, options?: any): void;
|
|
259
259
|
getPostponed(...args: any[]): any[];
|
|
260
260
|
createMessage(content?: Record<string, any>): any;
|
|
261
|
+
getExecuting(): Api<T>[];
|
|
261
262
|
}
|
|
262
263
|
|
|
263
264
|
interface ExecutionScope {
|