@5minds/processcube_engine_sdk 7.2.0-alpha.10 → 7.2.0-alpha.11
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.
|
@@ -23,6 +23,10 @@ export interface IProcessInstanceExtensionAdapter {
|
|
|
23
23
|
/**
|
|
24
24
|
* @deprecated Use "delete" instead.
|
|
25
25
|
*/
|
|
26
|
-
deleteProcessInstances(processInstanceIds: Array<string>, deleteAllRelatedData: boolean, identity?: Identity): Promise<
|
|
27
|
-
|
|
26
|
+
deleteProcessInstances(processInstanceIds: Array<string>, deleteAllRelatedData: boolean, identity?: Identity): Promise<number>;
|
|
27
|
+
/**
|
|
28
|
+
* Deletes process instances matching the given query.
|
|
29
|
+
* @returns The number of deleted process instances.
|
|
30
|
+
*/
|
|
31
|
+
delete(processInstanceQuery: DeleteProcessInstanceQuery, deleteAllRelatedData: boolean, identity?: Identity): Promise<number>;
|
|
28
32
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@5minds/processcube_engine_sdk",
|
|
3
|
-
"version": "7.2.0-alpha.
|
|
3
|
+
"version": "7.2.0-alpha.11",
|
|
4
4
|
"description": "Software development kit for the Engine.",
|
|
5
5
|
"main": "dist/commonjs/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -9,20 +9,23 @@
|
|
|
9
9
|
"url": "git+https://github.com/5minds/ProcessCube.Engine.SDK.git"
|
|
10
10
|
},
|
|
11
11
|
"author": {
|
|
12
|
-
"name": "
|
|
13
|
-
"email": "info@
|
|
14
|
-
"url": "https://
|
|
12
|
+
"name": "ProcessCube UG (haftungsbeschränkt)",
|
|
13
|
+
"email": "info@processcube.io",
|
|
14
|
+
"url": "https://processcube.io/"
|
|
15
15
|
},
|
|
16
16
|
"maintainers": [
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
17
|
+
"Martin Moellenbeck <mm@processcube.io>",
|
|
18
|
+
"Robin Lenz <rl@processcube.io>",
|
|
19
|
+
"Cuby ProcessCube <cuby@processcube.io>"
|
|
20
20
|
],
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"homepage": "https://github.com/5minds/ProcessCube.Engine.SDK#readme",
|
|
23
23
|
"bugs": {
|
|
24
24
|
"url": "https://github.com/5minds/ProcessCube.Engine.SDK/issues"
|
|
25
25
|
},
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"registry": "https://registry.npmjs.org/"
|
|
28
|
+
},
|
|
26
29
|
"dependencies": {
|
|
27
30
|
"dayjs": "^1.11.18",
|
|
28
31
|
"lodash.clonedeep": "^4.5.0",
|