@eo-sdk/client 8.12.0 → 8.12.2
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/app/eo-framework/form-elements/id-reference/reference-finder-entry/reference-finder-entry.component.d.ts +0 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +32 -8
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js.map +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js.map +1 -1
- package/bundles/eo-sdk-client.umd.js +21 -20
- package/bundles/eo-sdk-client.umd.js.map +1 -1
- package/bundles/eo-sdk-client.umd.min.js +1 -1
- package/bundles/eo-sdk-client.umd.min.js.map +1 -1
- package/eo-sdk-client.metadata.json +1 -1
- package/esm2015/app/eo-client/about-state/about-state.component.js +3 -3
- package/esm2015/app/eo-framework/app-shell/app-bar/app-process/app-process.component.js +17 -14
- package/esm2015/app/eo-framework/form-elements/id-reference/reference-finder-entry/reference-finder-entry.component.js +2 -5
- package/esm2015/app/eo-framework/form-elements/id-reference/service/reference-finder.service.js +2 -2
- package/esm2015/projects/eo-sdk/core/lib/service/bpm/bpm.service.js +32 -8
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +31 -7
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
- package/fesm2015/eo-sdk-client.js +20 -20
- package/fesm2015/eo-sdk-client.js.map +1 -1
- package/package.json +2 -2
- package/projects/eo-sdk/core/lib/service/bpm/bpm.service.d.ts +6 -1
- package/projects/eo-sdk/core/package.json +1 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@eo-sdk/client",
|
|
3
3
|
"description": "yuuvis RAD client",
|
|
4
4
|
"author": "OPTIMAL SYSTEMS GmbH <npm@optimal-systems.de>",
|
|
5
|
-
"version": "8.12.
|
|
5
|
+
"version": "8.12.2",
|
|
6
6
|
"main": "bundles/eo-sdk-client.umd.js",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"angular-cli": {},
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@angular/platform-browser": "11.2.0",
|
|
30
30
|
"@angular/platform-browser-dynamic": "11.2.0",
|
|
31
31
|
"@angular/router": "11.2.0",
|
|
32
|
-
"@eo-sdk/core": "8.12.
|
|
32
|
+
"@eo-sdk/core": "8.12.2",
|
|
33
33
|
"@ngx-pwa/local-storage": "11.1.0",
|
|
34
34
|
"@ngx-translate/core": "13.0.0",
|
|
35
35
|
"@types/lodash": "4.14.88",
|
|
@@ -42,9 +42,12 @@ export declare class BpmService {
|
|
|
42
42
|
* Getter for the executable Processes. If types are provided, you'll get
|
|
43
43
|
* only the processes that are executable for all of them
|
|
44
44
|
* @param types List of dms object types to fetch executable processes for
|
|
45
|
+
* @param useCached If the cached data should be returned rather than requesting again
|
|
46
|
+
* @param additionalData If the additional form data should be also included
|
|
47
|
+
* @param modelid The process model ID to only return the data for one process
|
|
45
48
|
* @returns List of executable processes
|
|
46
49
|
*/
|
|
47
|
-
getExecutableProcesses(types?: string[], useCached?: boolean): Observable<ExecutableProcess[]>;
|
|
50
|
+
getExecutableProcesses(types?: string[], useCached?: boolean, additionalData?: boolean, modelid?: string): Observable<ExecutableProcess[]>;
|
|
48
51
|
initExecutableProcesses(): Observable<any>;
|
|
49
52
|
/**
|
|
50
53
|
* Gets executable Processes for a given set of dms object.You'll get
|
|
@@ -56,6 +59,8 @@ export declare class BpmService {
|
|
|
56
59
|
/**
|
|
57
60
|
* Fetches executable Processes from the backend.
|
|
58
61
|
* @param types List of dms object types to fetch executable processes for
|
|
62
|
+
* @param additionalData If the additional form data should be also included
|
|
63
|
+
* @param modelid The process model ID to only return the data for one process
|
|
59
64
|
* @returns List of executable processes
|
|
60
65
|
*/
|
|
61
66
|
private fetchExecutableProcesses;
|