vcomply-workflow-engine 3.6.4 → 3.6.6
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/esm2022/lib/sharedComponents/responsibility-centers-list/responsibility-centers-list.component.mjs +2 -2
- package/esm2022/lib/sharedComponents/users-radio-list/users-radio-list.component.mjs +2 -2
- package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +88 -80
- package/esm2022/lib/workflow-services/organization-user.service.mjs +64 -0
- package/fesm2022/vcomply-workflow-engine.mjs +123 -59
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +5 -1
- package/lib/workflow-services/organization-user.service.d.ts +19 -0
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ import { SnackBarService } from '../ui-kit/snack-bar/snack-bar.service';
|
|
|
8
8
|
import { Subject, Subscription } from 'rxjs';
|
|
9
9
|
import { ProgramsService } from '../workflow-services/programs.service';
|
|
10
10
|
import { GrcService } from '../workflow/shared/services/grc.service';
|
|
11
|
+
import { OrganizationUserService } from '../workflow-services/organization-user.service';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
export declare class WorkflowComplianceComponent implements OnInit {
|
|
13
14
|
private authService;
|
|
@@ -18,6 +19,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
18
19
|
private permission;
|
|
19
20
|
private programService;
|
|
20
21
|
private grcService;
|
|
22
|
+
private organizationUserService;
|
|
21
23
|
mode: string;
|
|
22
24
|
responsibilityId: string;
|
|
23
25
|
frameworkDetails: Array<any>;
|
|
@@ -184,7 +186,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
184
186
|
allowEditDueDateFeatureFlag: boolean;
|
|
185
187
|
whatInput: ElementRef;
|
|
186
188
|
unSubscribeProgram: Subject<void>;
|
|
187
|
-
constructor(authService: AuthService, responsibilityService: ResponsibilityService, frequencyService: FrequencyService, uiKitService: UiKitService, snackBar: SnackBarService, permission: AuthService, programService: ProgramsService, grcService: GrcService);
|
|
189
|
+
constructor(authService: AuthService, responsibilityService: ResponsibilityService, frequencyService: FrequencyService, uiKitService: UiKitService, snackBar: SnackBarService, permission: AuthService, programService: ProgramsService, grcService: GrcService, organizationUserService: OrganizationUserService);
|
|
188
190
|
ngOnInit(): void;
|
|
189
191
|
setFeatureFlags(): void;
|
|
190
192
|
getInitialData(): void;
|
|
@@ -205,7 +207,9 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
205
207
|
getListsAccordingToProgram(program_id: string): void;
|
|
206
208
|
getAssignorsList(program_id?: string): void;
|
|
207
209
|
getAssigneesList(program_id?: string): void;
|
|
210
|
+
fetchAssignee(program_id?: string): void;
|
|
208
211
|
getPeopleListAgainstPID(program_id: string): void;
|
|
212
|
+
setOrganizationUserList(res: any): void;
|
|
209
213
|
getGroupsList(program_id?: string): void;
|
|
210
214
|
getEditResponsibilityDetails(id: any): void;
|
|
211
215
|
setList(list: any[], ids: any[], key: string): any;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { AuthService } from './auth.service';
|
|
4
|
+
import { Configurations } from '../configurations';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class OrganizationUserService {
|
|
7
|
+
private http;
|
|
8
|
+
private authService;
|
|
9
|
+
private organizationUsers;
|
|
10
|
+
env: any;
|
|
11
|
+
permissions: any;
|
|
12
|
+
constructor(http: HttpClient, authService: AuthService, config?: Configurations);
|
|
13
|
+
private getAllOrgUser;
|
|
14
|
+
private setOrganizationUsers;
|
|
15
|
+
private dataMap;
|
|
16
|
+
getOrganizationUsers(): Observable<any[]>;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrganizationUserService, [null, null, { optional: true; }]>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OrganizationUserService>;
|
|
19
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.6",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x ",
|
|
6
6
|
"@angular/core": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x "
|