mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-09-17 14:21:29 +00:00
[ACA-4647] Fix for e2e (#8104)
* [ci:force] ACA-4647 Fix for e2e * ACA-4647 added missing parameters to unit test * ACA-4647 added unit test to cover changes in startProcess * ACA-4647 changed property name to fix build error * ACA-4647 changed json to object to avoid lint errors * ACA-4647 added missing semicolon Co-authored-by: tomek.hanaj <tomek.hanaj@hyland.com>
This commit is contained in:
@@ -18,16 +18,23 @@
|
||||
import { ProcessInstanceVariable } from '../../../models/process-instance-variable.model';
|
||||
export interface ProcessInstanceCloud {
|
||||
appName?: string;
|
||||
id?: string;
|
||||
name?: string;
|
||||
startDate?: Date;
|
||||
initiator?: string;
|
||||
status?: string;
|
||||
appVersion?: string;
|
||||
businessKey?: string;
|
||||
completedDate?: string;
|
||||
id?: string;
|
||||
initiator?: string;
|
||||
lastModified?: Date;
|
||||
name?: string;
|
||||
parentId?: string;
|
||||
processDefinitionId?: string;
|
||||
processDefinitionKey?: string;
|
||||
processDefinitionName?: string;
|
||||
processDefinitionVersion?: string;
|
||||
serviceName?: string;
|
||||
serviceFullName?: string;
|
||||
serviceType?: string;
|
||||
serviceVersion?: string;
|
||||
startDate?: Date;
|
||||
status?: string;
|
||||
variables?: ProcessInstanceVariable[];
|
||||
}
|
||||
|
Reference in New Issue
Block a user