vcomply-workflow-engine 2.1.90 → 2.1.91
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/vcomply-workflow-engine.umd.js +51 -27
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/sharedComponents/assessment-list/assessment-list.component.js +5 -3
- package/esm2015/lib/sharedComponents/assessment-list/assessment-list.component.ngfactory.js +1 -1
- package/esm2015/lib/sharedComponents/assessment-list/assessment-list.component.ngsummary.json +1 -1
- package/esm2015/lib/sharedComponents/program-listing/program-listing.component.js +3 -2
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +40 -19
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngfactory.js +2 -2
- package/esm2015/lib/workflow-services/responsibility.service.js +7 -7
- package/fesm2015/vcomply-workflow-engine.js +51 -27
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/sharedComponents/assessment-list/assessment-list.component.d.ts +1 -0
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +1 -1
- package/lib/workflow-services/responsibility.service.d.ts +3 -3
- package/package.json +1 -1
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -33,6 +33,7 @@ export declare class AssessmentListComponent implements OnInit, OnChanges {
|
|
|
33
33
|
previewQuestionData: any;
|
|
34
34
|
isPreview: boolean;
|
|
35
35
|
selectedAssessmentData: any;
|
|
36
|
+
program_ids: string;
|
|
36
37
|
onAssessmentSelect: EventEmitter<any>;
|
|
37
38
|
cancelAssessment: EventEmitter<any>;
|
|
38
39
|
constructor(responsibilityService: ResponsibilityService, assessmentService: AssessmentService, auth: AuthService);
|
|
@@ -140,7 +140,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
140
140
|
getAssignorsList(): void;
|
|
141
141
|
getAssigneesList(program_id?: string): void;
|
|
142
142
|
getPeopleListAgainstPID(program_id: string): void;
|
|
143
|
-
getGroupsList(): void;
|
|
143
|
+
getGroupsList(program_id?: string): void;
|
|
144
144
|
getEditResponsibilityDetails(id: any): void;
|
|
145
145
|
setMoreOptions(): void;
|
|
146
146
|
setList(list: any[], ids: any[], key: string): any;
|
|
@@ -9,7 +9,7 @@ export declare class ResponsibilityService {
|
|
|
9
9
|
dataPerPage: number;
|
|
10
10
|
constructor(http: HttpClient, authService: AuthService, config?: Configurations);
|
|
11
11
|
getResponsibilityCenterList(params?: HttpParams): import("rxjs").Observable<any[]>;
|
|
12
|
-
getOrganizationGroups(): import("rxjs").Observable<any[]>;
|
|
12
|
+
getOrganizationGroups(params?: HttpParams): import("rxjs").Observable<any[]>;
|
|
13
13
|
getOrganizationUsers(): import("rxjs").Observable<any[]>;
|
|
14
14
|
getOrganizationPeople(params?: HttpParams): import("rxjs").Observable<any[]>;
|
|
15
15
|
getAssignorsList(): import("rxjs").Observable<any[]>;
|
|
@@ -29,7 +29,7 @@ export declare class ResponsibilityService {
|
|
|
29
29
|
filesUploadedAndUploading: any[];
|
|
30
30
|
getCategoryDetailsById(id: any): import("rxjs").Observable<any[]>;
|
|
31
31
|
fileUpload(file: any): import("rxjs").Observable<Object>;
|
|
32
|
-
getAssessmentCategory(payload: any): import("rxjs").Observable<Object>;
|
|
33
|
-
getAssessmentList(payload: any, id: string): import("rxjs").Observable<AssessmentList[]>;
|
|
32
|
+
getAssessmentCategory(payload: any, program_ids?: string): import("rxjs").Observable<Object>;
|
|
33
|
+
getAssessmentList(payload: any, id: string, program_ids?: string): import("rxjs").Observable<AssessmentList[]>;
|
|
34
34
|
getAssessmentDetailsByID(id: string): import("rxjs").Observable<AssessmentList[]>;
|
|
35
35
|
}
|