mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ACS-5839] migrate to latest JS-API types (#8859)
* [ci:force] migrate Minimal Node to Node * [ci:force] remove js-api wrappers and use real types * [ci:force] remove js-api wrappers and use real types * [ci:force] fix linting errors * [ci:force] fix linting errors * [ci:force] security fixes * [ci:force] sonarcloud bug fixes * [ci:force] dead code elimination, sonar suggested fixes
This commit is contained in:
@@ -18,28 +18,6 @@
|
||||
/* spell-checker: disable */
|
||||
import { ProcessInstance } from '../../process-list/models/process-instance.model';
|
||||
|
||||
export class ProcessList {
|
||||
|
||||
data: ProcessInstance[];
|
||||
size: number;
|
||||
start: number;
|
||||
total: number;
|
||||
|
||||
constructor(data?: ProcessInstance[]) {
|
||||
this.data = data || [];
|
||||
}
|
||||
}
|
||||
|
||||
export class SingleProcessList extends ProcessList {
|
||||
constructor(name?: string) {
|
||||
const instance = new ProcessInstance({
|
||||
id: '123',
|
||||
name
|
||||
});
|
||||
super([instance]);
|
||||
}
|
||||
}
|
||||
|
||||
export const exampleProcess = new ProcessInstance({
|
||||
id: '123',
|
||||
name: 'Process 123',
|
||||
@@ -90,86 +68,3 @@ export const exampleProcessNoName = new ProcessInstance({
|
||||
},
|
||||
processDefinitionName: 'My Process'
|
||||
});
|
||||
|
||||
export const fakeProcessInstances = {
|
||||
size: 2,
|
||||
total: 2,
|
||||
start: 0,
|
||||
data: [
|
||||
{
|
||||
id: '340124',
|
||||
name: 'James Franklin EMEA Onboarding',
|
||||
businessKey: null,
|
||||
processDefinitionId: 'HROnboarding:60:338704',
|
||||
tenantId: 'tenant_1',
|
||||
started: new Date('2017-10-09T12:19:44.560+0000'),
|
||||
ended: null,
|
||||
startedBy: {
|
||||
id: 4004,
|
||||
firstName: 'Integration',
|
||||
lastName: 'Test',
|
||||
email: 'srintegrationtest@test.com'
|
||||
},
|
||||
processDefinitionName: 'HROnboarding',
|
||||
processDefinitionDescription: 'HR Onboarding Workflow',
|
||||
processDefinitionKey: 'fakeProcessDefinitionKey1',
|
||||
processDefinitionCategory: 'http://www.activiti.org/processdef',
|
||||
processDefinitionVersion: 60,
|
||||
processDefinitionDeploymentId: '338695',
|
||||
graphicalNotationDefined: true,
|
||||
startFormDefined: false,
|
||||
suspended: false,
|
||||
variables: []
|
||||
},
|
||||
{
|
||||
id: '340063',
|
||||
name: 'Mary Franklin AMERICAS Onboarding',
|
||||
businessKey: null,
|
||||
processDefinitionId: 'HROnboarding:60:338704',
|
||||
tenantId: 'tenant_1',
|
||||
started: '2017-10-09T12:18:07.484+0000',
|
||||
ended: null,
|
||||
startedBy: {
|
||||
id: 4004,
|
||||
firstName: 'Integration',
|
||||
lastName: 'Test',
|
||||
email: 'srintegrationtest@test.com'
|
||||
},
|
||||
processDefinitionName: 'HROnboarding',
|
||||
processDefinitionDescription: 'HR Onboarding Workflow',
|
||||
processDefinitionKey: 'HROnboarding',
|
||||
processDefinitionCategory: 'http://www.activiti.org/processdef',
|
||||
processDefinitionVersion: 60,
|
||||
processDefinitionDeploymentId: '338695',
|
||||
graphicalNotationDefined: true,
|
||||
startFormDefined: false,
|
||||
suspended: false,
|
||||
variables: []
|
||||
},
|
||||
{
|
||||
id: '337604',
|
||||
name: 'John Jacobs AMERICAS Onboarding',
|
||||
businessKey: null,
|
||||
processDefinitionId: 'HROnboarding:49:303243',
|
||||
tenantId: 'tenant_1',
|
||||
started: '2017-09-25T10:02:23.522+0000',
|
||||
ended: null,
|
||||
startedBy: {
|
||||
id: 4004,
|
||||
firstName: 'Integration',
|
||||
lastName: 'Test',
|
||||
email: 'srintegrationtest@test.com'
|
||||
},
|
||||
processDefinitionName: 'HROnboarding',
|
||||
processDefinitionDescription: 'HR Onboarding Workflow',
|
||||
processDefinitionKey: 'fakeProcessDefinitionKey2',
|
||||
processDefinitionCategory: 'http://www.activiti.org/processdef',
|
||||
processDefinitionVersion: 49,
|
||||
processDefinitionDeploymentId: '303234',
|
||||
graphicalNotationDefined: true,
|
||||
startFormDefined: false,
|
||||
suspended: false,
|
||||
variables: []
|
||||
}
|
||||
]
|
||||
};
|
||||
|
Reference in New Issue
Block a user