vcomply-workflow-engine 2.7.13 → 2.7.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/vcomply-workflow-engine.umd.js +9 -3
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/formgroup/select/cs-select/cs-select.component.js +3 -3
- package/esm2015/lib/formgroup/select/cs-select/cs-select.component.ngfactory.js +3 -3
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +8 -2
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngfactory.js +4 -4
- package/esm2015/lib/workflow-services/responsibility.service.js +1 -1
- package/fesm2015/vcomply-workflow-engine.js +9 -3
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +1 -0
- package/lib/workflow-services/responsibility.service.d.ts +29 -28
- package/package.json +1 -1
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -161,6 +161,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
161
161
|
isGroupAssigned: boolean;
|
|
162
162
|
responsibilityData: any;
|
|
163
163
|
originalAssignee: any;
|
|
164
|
+
userListLoader: boolean;
|
|
164
165
|
whatInput: ElementRef;
|
|
165
166
|
unSubscribeProgram: Subject<void>;
|
|
166
167
|
constructor(authService: AuthService, responsibilityService: ResponsibilityService, frequencyService: FrequencyService, uiKitService: UiKitService, snackBar: SnackBarService, permission: AuthService, programService: ProgramsService);
|
|
@@ -2,41 +2,42 @@ import { HttpClient, HttpParams } from '@angular/common/http';
|
|
|
2
2
|
import { Configurations } from '../configurations';
|
|
3
3
|
import { AuthService } from './auth.service';
|
|
4
4
|
import { AssessmentList } from '../sharedComponents/assessment-list/service/assessment.interface';
|
|
5
|
+
import { Observable } from 'rxjs';
|
|
5
6
|
export declare class ResponsibilityService {
|
|
6
7
|
private http;
|
|
7
8
|
private authService;
|
|
8
9
|
env: any;
|
|
9
10
|
dataPerPage: number;
|
|
10
11
|
constructor(http: HttpClient, authService: AuthService, config?: Configurations);
|
|
11
|
-
getResponsibilityCenterList(params?: HttpParams):
|
|
12
|
-
getOrganizationGroups(params?: HttpParams):
|
|
13
|
-
getOrganizationPolicyGroups(params?: HttpParams):
|
|
14
|
-
getOrganizationOverseersGroups(params?: HttpParams):
|
|
15
|
-
getOrganizationUsers():
|
|
16
|
-
getOrganizationPeople(params?: HttpParams):
|
|
17
|
-
getAssignorsList(params?: HttpParams):
|
|
18
|
-
getCategoriesList():
|
|
19
|
-
getProgramsList(params: HttpParams, ids?: any):
|
|
20
|
-
getProgramsListCount(params: HttpParams, ids?: any):
|
|
21
|
-
getCategoriesUnderProgram(params: HttpParams):
|
|
22
|
-
getAssurance():
|
|
23
|
-
getAssuranceForRequiresAudit():
|
|
24
|
-
getRCDetailsOfFramework(rc_id: any, category_id: any):
|
|
25
|
-
submitEntrust(entrust_body: any):
|
|
26
|
-
updateEntrust(entrust_body: any, object_id: any, isDelegate: any):
|
|
27
|
-
editResponsibility(objectId: any):
|
|
28
|
-
addBulkResponsibility(entrust_body: any):
|
|
29
|
-
uploadToNode(payload: any, des: any):
|
|
12
|
+
getResponsibilityCenterList(params?: HttpParams): Observable<any[]>;
|
|
13
|
+
getOrganizationGroups(params?: HttpParams): Observable<any[]>;
|
|
14
|
+
getOrganizationPolicyGroups(params?: HttpParams): Observable<any[]>;
|
|
15
|
+
getOrganizationOverseersGroups(params?: HttpParams): Observable<any[]>;
|
|
16
|
+
getOrganizationUsers(): Observable<any[]>;
|
|
17
|
+
getOrganizationPeople(params?: HttpParams): Observable<any>;
|
|
18
|
+
getAssignorsList(params?: HttpParams): Observable<any[]>;
|
|
19
|
+
getCategoriesList(): Observable<any[]>;
|
|
20
|
+
getProgramsList(params: HttpParams, ids?: any): Observable<any[]>;
|
|
21
|
+
getProgramsListCount(params: HttpParams, ids?: any): Observable<any[]>;
|
|
22
|
+
getCategoriesUnderProgram(params: HttpParams): Observable<any[]>;
|
|
23
|
+
getAssurance(): Observable<any[]>;
|
|
24
|
+
getAssuranceForRequiresAudit(): Observable<any[]>;
|
|
25
|
+
getRCDetailsOfFramework(rc_id: any, category_id: any): Observable<Object>;
|
|
26
|
+
submitEntrust(entrust_body: any): Observable<Object>;
|
|
27
|
+
updateEntrust(entrust_body: any, object_id: any, isDelegate: any): Observable<Object>;
|
|
28
|
+
editResponsibility(objectId: any): Observable<Object>;
|
|
29
|
+
addBulkResponsibility(entrust_body: any): Observable<Object>;
|
|
30
|
+
uploadToNode(payload: any, des: any): Observable<any>;
|
|
30
31
|
filesUploading: any[];
|
|
31
32
|
filesUploaded: any[];
|
|
32
33
|
filesUploadedAndUploading: any[];
|
|
33
|
-
getCategoryDetailsById(id: any):
|
|
34
|
-
getFrameWorkCount(params?: HttpParams):
|
|
35
|
-
getFrameWorkList(params: HttpParams):
|
|
36
|
-
getFrameworkSubCategories(id: any, params: HttpParams):
|
|
37
|
-
getFrameworkControls(id: any, params: HttpParams):
|
|
38
|
-
fileUpload(file: any):
|
|
39
|
-
getAssessmentCategory(payload: any, program_ids?: string):
|
|
40
|
-
getAssessmentList(payload: any, id: string, program_ids?: string):
|
|
41
|
-
getAssessmentDetailsByID(id: string):
|
|
34
|
+
getCategoryDetailsById(id: any): Observable<any[]>;
|
|
35
|
+
getFrameWorkCount(params?: HttpParams): Observable<import("@angular/common/http").HttpEvent<any[]>>;
|
|
36
|
+
getFrameWorkList(params: HttpParams): Observable<import("@angular/common/http").HttpEvent<any[]>>;
|
|
37
|
+
getFrameworkSubCategories(id: any, params: HttpParams): Observable<import("@angular/common/http").HttpEvent<any[]>>;
|
|
38
|
+
getFrameworkControls(id: any, params: HttpParams): Observable<import("@angular/common/http").HttpEvent<any[]>>;
|
|
39
|
+
fileUpload(file: any): Observable<Object>;
|
|
40
|
+
getAssessmentCategory(payload: any, program_ids?: string): Observable<Object>;
|
|
41
|
+
getAssessmentList(payload: any, id: string, program_ids?: string): Observable<AssessmentList[]>;
|
|
42
|
+
getAssessmentDetailsByID(id: string): Observable<AssessmentList[]>;
|
|
42
43
|
}
|
package/package.json
CHANGED