@valtimo/process 4.15.3-next-main.14 → 4.15.3-next-main.15
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/bundles/valtimo-process.umd.js +435 -435
- package/esm2015/lib/process-diagram/process-diagram.component.js +255 -255
- package/esm2015/lib/process.module.js +46 -46
- package/esm2015/lib/process.service.js +122 -122
- package/esm2015/public_api.js +21 -21
- package/esm2015/valtimo-process.js +4 -4
- package/fesm2015/valtimo-process.js +420 -420
- package/lib/process-diagram/process-diagram.component.d.ts +47 -47
- package/lib/process.module.d.ts +2 -2
- package/lib/process.service.d.ts +28 -28
- package/package.json +1 -1
- package/public_api.d.ts +3 -3
- package/valtimo-process.d.ts +4 -4
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { ProcessService } from '../process.service';
|
|
3
|
-
export declare class ProcessDiagramComponent implements OnInit, OnDestroy, OnChanges {
|
|
4
|
-
private processService;
|
|
5
|
-
private bpmnJS;
|
|
6
|
-
private heatMapInstance;
|
|
7
|
-
el: ElementRef;
|
|
8
|
-
importDone: EventEmitter<any>;
|
|
9
|
-
processDefinitionKey?: string;
|
|
10
|
-
processInstanceId?: string;
|
|
11
|
-
processDiagram: any;
|
|
12
|
-
processDefinition: any;
|
|
13
|
-
processDefinitionVersions: any;
|
|
14
|
-
heatmapCount: any;
|
|
15
|
-
heatmapDuration: any;
|
|
16
|
-
tasksCount: any;
|
|
17
|
-
showHeatmap: boolean;
|
|
18
|
-
enumHeatmapOptions: string[];
|
|
19
|
-
heatmapOption: string;
|
|
20
|
-
version: any;
|
|
21
|
-
heatPoints: any;
|
|
22
|
-
min: number;
|
|
23
|
-
max: number;
|
|
24
|
-
inputData: any;
|
|
25
|
-
valueKey: any;
|
|
26
|
-
constructor(processService: ProcessService);
|
|
27
|
-
ngOnInit(): void;
|
|
28
|
-
ngOnChanges(): void;
|
|
29
|
-
ngOnDestroy(): void;
|
|
30
|
-
loadProcessDefinition(processDefinitionKey: any): void;
|
|
31
|
-
loadProcessDefinitionVersions(processDefinitionKey: any): void;
|
|
32
|
-
loadProcessDefinitionFromKey(processDefinitionKey: any): void;
|
|
33
|
-
loadProcessDefinitionXml(processDefinitionId: any): void;
|
|
34
|
-
private loadProcessInstanceXml;
|
|
35
|
-
loadProcessDefinitionHeatmapCount(processDefinition: any): void;
|
|
36
|
-
onWindowResize(): void;
|
|
37
|
-
loadProcessDefinitionHeatmapDuration(processDefinition: any): void;
|
|
38
|
-
setProcessDefinitionKey(processDefinitionKey: any): void;
|
|
39
|
-
setProcessDefinitionVersion(version: any): void;
|
|
40
|
-
setHeatmapOption(heatmapOption: any): void;
|
|
41
|
-
toggleShowHeatmap(): void;
|
|
42
|
-
loadHeatmap(): void;
|
|
43
|
-
clearHeatmap(): void;
|
|
44
|
-
loadHeatmapData(): void;
|
|
45
|
-
setMax(key: any): void;
|
|
46
|
-
addCounterActiveOverlays(key: any, inputData: any): void;
|
|
47
|
-
}
|
|
1
|
+
import { ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { ProcessService } from '../process.service';
|
|
3
|
+
export declare class ProcessDiagramComponent implements OnInit, OnDestroy, OnChanges {
|
|
4
|
+
private processService;
|
|
5
|
+
private bpmnJS;
|
|
6
|
+
private heatMapInstance;
|
|
7
|
+
el: ElementRef;
|
|
8
|
+
importDone: EventEmitter<any>;
|
|
9
|
+
processDefinitionKey?: string;
|
|
10
|
+
processInstanceId?: string;
|
|
11
|
+
processDiagram: any;
|
|
12
|
+
processDefinition: any;
|
|
13
|
+
processDefinitionVersions: any;
|
|
14
|
+
heatmapCount: any;
|
|
15
|
+
heatmapDuration: any;
|
|
16
|
+
tasksCount: any;
|
|
17
|
+
showHeatmap: boolean;
|
|
18
|
+
enumHeatmapOptions: string[];
|
|
19
|
+
heatmapOption: string;
|
|
20
|
+
version: any;
|
|
21
|
+
heatPoints: any;
|
|
22
|
+
min: number;
|
|
23
|
+
max: number;
|
|
24
|
+
inputData: any;
|
|
25
|
+
valueKey: any;
|
|
26
|
+
constructor(processService: ProcessService);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
ngOnChanges(): void;
|
|
29
|
+
ngOnDestroy(): void;
|
|
30
|
+
loadProcessDefinition(processDefinitionKey: any): void;
|
|
31
|
+
loadProcessDefinitionVersions(processDefinitionKey: any): void;
|
|
32
|
+
loadProcessDefinitionFromKey(processDefinitionKey: any): void;
|
|
33
|
+
loadProcessDefinitionXml(processDefinitionId: any): void;
|
|
34
|
+
private loadProcessInstanceXml;
|
|
35
|
+
loadProcessDefinitionHeatmapCount(processDefinition: any): void;
|
|
36
|
+
onWindowResize(): void;
|
|
37
|
+
loadProcessDefinitionHeatmapDuration(processDefinition: any): void;
|
|
38
|
+
setProcessDefinitionKey(processDefinitionKey: any): void;
|
|
39
|
+
setProcessDefinitionVersion(version: any): void;
|
|
40
|
+
setHeatmapOption(heatmapOption: any): void;
|
|
41
|
+
toggleShowHeatmap(): void;
|
|
42
|
+
loadHeatmap(): void;
|
|
43
|
+
clearHeatmap(): void;
|
|
44
|
+
loadHeatmapData(): void;
|
|
45
|
+
setMax(key: any): void;
|
|
46
|
+
addCounterActiveOverlays(key: any, inputData: any): void;
|
|
47
|
+
}
|
package/lib/process.module.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare class ProcessModule {
|
|
2
|
-
}
|
|
1
|
+
export declare class ProcessModule {
|
|
2
|
+
}
|
package/lib/process.service.d.ts
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { ProcessDefinition, ProcessDefinitionStartForm, ProcessInstance, ProcessInstanceTask } from '@valtimo/contract';
|
|
4
|
-
import { ConfigService } from '@valtimo/config';
|
|
5
|
-
export declare class ProcessService {
|
|
6
|
-
private http;
|
|
7
|
-
private valtimoEndpointUri;
|
|
8
|
-
constructor(http: HttpClient, configService: ConfigService);
|
|
9
|
-
getProcessDefinitions(): Observable<ProcessDefinition[]>;
|
|
10
|
-
getProcessDefinitionVersions(key: string): Observable<ProcessDefinition[]>;
|
|
11
|
-
getProcessDefinition(key: string): Observable<ProcessDefinition>;
|
|
12
|
-
getProcessDefinitionStartFormData(processDefinitionKey: string): Observable<ProcessDefinitionStartForm>;
|
|
13
|
-
startProcesInstance(key: string, businessKey: string, variables: Map<string, any>): Observable<any>;
|
|
14
|
-
getProcessDefinitionXml(processDefinitionId: string): Observable<any>;
|
|
15
|
-
getProcessXml(id: string): Observable<any>;
|
|
16
|
-
getProcessCount(id: string): Observable<any>;
|
|
17
|
-
getProcessHeatmapCount(processDefinition: ProcessDefinition): Observable<any[]>;
|
|
18
|
-
getProcessHeatmapDuration(processDefinition: ProcessDefinition): Observable<any[]>;
|
|
19
|
-
getProcessInstances(key: string, page: number, size: number, sort: string): Observable<any>;
|
|
20
|
-
getProcessInstance(processInstanceId: string): Observable<ProcessInstance>;
|
|
21
|
-
getProcessInstanceTasks(id: string): Observable<ProcessInstanceTask[]>;
|
|
22
|
-
getProcessInstanceVariables(id: string, variableNames: Array<any>): Observable<any>;
|
|
23
|
-
addProcessInstancesDefaultVariablesValues(processInstances: Array<any>): any[];
|
|
24
|
-
addDefaultVariablesValues(processInstance: any): any;
|
|
25
|
-
getInstancesStatistics(fromDate?: string, toDate?: string, processFilter?: string): Observable<any[]>;
|
|
26
|
-
deployProcess(processXml: string): Observable<Object>;
|
|
27
|
-
migrateProcess(processDefinition1Id: string, processDefinition2Id: string, params: any): Observable<any>;
|
|
28
|
-
}
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ProcessDefinition, ProcessDefinitionStartForm, ProcessInstance, ProcessInstanceTask } from '@valtimo/contract';
|
|
4
|
+
import { ConfigService } from '@valtimo/config';
|
|
5
|
+
export declare class ProcessService {
|
|
6
|
+
private http;
|
|
7
|
+
private valtimoEndpointUri;
|
|
8
|
+
constructor(http: HttpClient, configService: ConfigService);
|
|
9
|
+
getProcessDefinitions(): Observable<ProcessDefinition[]>;
|
|
10
|
+
getProcessDefinitionVersions(key: string): Observable<ProcessDefinition[]>;
|
|
11
|
+
getProcessDefinition(key: string): Observable<ProcessDefinition>;
|
|
12
|
+
getProcessDefinitionStartFormData(processDefinitionKey: string): Observable<ProcessDefinitionStartForm>;
|
|
13
|
+
startProcesInstance(key: string, businessKey: string, variables: Map<string, any>): Observable<any>;
|
|
14
|
+
getProcessDefinitionXml(processDefinitionId: string): Observable<any>;
|
|
15
|
+
getProcessXml(id: string): Observable<any>;
|
|
16
|
+
getProcessCount(id: string): Observable<any>;
|
|
17
|
+
getProcessHeatmapCount(processDefinition: ProcessDefinition): Observable<any[]>;
|
|
18
|
+
getProcessHeatmapDuration(processDefinition: ProcessDefinition): Observable<any[]>;
|
|
19
|
+
getProcessInstances(key: string, page: number, size: number, sort: string): Observable<any>;
|
|
20
|
+
getProcessInstance(processInstanceId: string): Observable<ProcessInstance>;
|
|
21
|
+
getProcessInstanceTasks(id: string): Observable<ProcessInstanceTask[]>;
|
|
22
|
+
getProcessInstanceVariables(id: string, variableNames: Array<any>): Observable<any>;
|
|
23
|
+
addProcessInstancesDefaultVariablesValues(processInstances: Array<any>): any[];
|
|
24
|
+
addDefaultVariablesValues(processInstance: any): any;
|
|
25
|
+
getInstancesStatistics(fromDate?: string, toDate?: string, processFilter?: string): Observable<any[]>;
|
|
26
|
+
deployProcess(processXml: string): Observable<Object>;
|
|
27
|
+
migrateProcess(processDefinition1Id: string, processDefinition2Id: string, params: any): Observable<any>;
|
|
28
|
+
}
|
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './lib/process.service';
|
|
2
|
-
export * from './lib/process.module';
|
|
3
|
-
export * from './lib/process-diagram/process-diagram.component';
|
|
1
|
+
export * from './lib/process.service';
|
|
2
|
+
export * from './lib/process.module';
|
|
3
|
+
export * from './lib/process-diagram/process-diagram.component';
|
package/valtimo-process.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './public_api';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public_api';
|