vcomply-workflow-engine 3.5.9 → 3.6.0
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/constants/time.constants.mjs +2 -2
- package/esm2022/lib/log-an-issue/log-an-issue.component.mjs +28 -12
- package/esm2022/lib/sharedComponents/responsibility-centers-list/rc-list.module.mjs +7 -3
- package/esm2022/lib/sharedComponents/responsibility-centers-list/responsibility-centers-list.component.mjs +8 -4
- package/esm2022/lib/sharedComponents/users-radio-list/users-radio-list.component.mjs +10 -6
- package/esm2022/lib/workflow/shared/components/list-popup/list-popup.component.mjs +2 -2
- package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +45 -22
- package/esm2022/lib/workflow-policy/workflow-policy.component.mjs +1 -1
- package/esm2022/lib/workflow-program/workflow-program.component.mjs +1 -1
- package/esm2022/lib/workflow-risk/workflow-risk.component.mjs +1 -1
- package/esm2022/lib/workflow-services/auth.service.mjs +33 -1
- package/esm2022/lib/workflow-services/responsibility.service.mjs +43 -3
- package/fesm2022/vcomply-workflow-engine.mjs +215 -95
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/sharedComponents/responsibility-centers-list/rc-list.module.d.ts +2 -1
- package/lib/sharedComponents/responsibility-centers-list/responsibility-centers-list.component.d.ts +2 -1
- package/lib/sharedComponents/users-radio-list/users-radio-list.component.d.ts +2 -1
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +2 -0
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/lib/workflow-services/auth.service.d.ts +1 -0
- package/lib/workflow-services/responsibility.service.d.ts +10 -5
- package/package.json +1 -1
|
@@ -6,8 +6,9 @@ import * as i4 from "../../pipes/pipes.module";
|
|
|
6
6
|
import * as i5 from "../floating-bar/floating-bar.module";
|
|
7
7
|
import * as i6 from "../../formgroup/formgroup.module";
|
|
8
8
|
import * as i7 from "../no-data/no-data.module";
|
|
9
|
+
import * as i8 from "../v-loader/v-loader.module";
|
|
9
10
|
export declare class RcListModule {
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<RcListModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RcListModule, [typeof i1.ResponsibilityCentersListComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.PipesModule, typeof i5.FloatingBarModule, typeof i6.FormgroupModule, typeof i7.NoDataModule], [typeof i1.ResponsibilityCentersListComponent]>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RcListModule, [typeof i1.ResponsibilityCentersListComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.PipesModule, typeof i5.FloatingBarModule, typeof i6.FormgroupModule, typeof i7.NoDataModule, typeof i8.VLoaderModule], [typeof i1.ResponsibilityCentersListComponent]>;
|
|
12
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<RcListModule>;
|
|
13
14
|
}
|
package/lib/sharedComponents/responsibility-centers-list/responsibility-centers-list.component.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export declare class ResponsibilityCentersListComponent implements OnInit, OnCha
|
|
|
10
10
|
closeRcList: EventEmitter<any>;
|
|
11
11
|
pluralText: string;
|
|
12
12
|
singularText: string;
|
|
13
|
+
loader: boolean;
|
|
13
14
|
selectedIds: any[];
|
|
14
15
|
animation: boolean;
|
|
15
16
|
search: string;
|
|
@@ -25,5 +26,5 @@ export declare class ResponsibilityCentersListComponent implements OnInit, OnCha
|
|
|
25
26
|
save(selectedIds: any): void;
|
|
26
27
|
close(): void;
|
|
27
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResponsibilityCentersListComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ResponsibilityCentersListComponent, "app-responsibility-centers-list", never, { "responsibilityCentersList": { "alias": "responsibilityCentersList"; "required": false; }; "selectedResponsibilityCenters": { "alias": "selectedResponsibilityCenters"; "required": false; }; "rcIdKey": { "alias": "rcIdKey"; "required": false; }; "radioSelection": { "alias": "radioSelection"; "required": false; }; "pluralText": { "alias": "pluralText"; "required": false; }; "singularText": { "alias": "singularText"; "required": false; }; }, { "saveSelectedList": "saveSelectedList"; "closeRcList": "closeRcList"; }, never, never, false, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResponsibilityCentersListComponent, "app-responsibility-centers-list", never, { "responsibilityCentersList": { "alias": "responsibilityCentersList"; "required": false; }; "selectedResponsibilityCenters": { "alias": "selectedResponsibilityCenters"; "required": false; }; "rcIdKey": { "alias": "rcIdKey"; "required": false; }; "radioSelection": { "alias": "radioSelection"; "required": false; }; "pluralText": { "alias": "pluralText"; "required": false; }; "singularText": { "alias": "singularText"; "required": false; }; "loader": { "alias": "loader"; "required": false; }; }, { "saveSelectedList": "saveSelectedList"; "closeRcList": "closeRcList"; }, never, never, false, never>;
|
|
29
30
|
}
|
|
@@ -15,6 +15,7 @@ export declare class UserRadioListComponent implements OnInit, OnChanges {
|
|
|
15
15
|
assignorId: any[];
|
|
16
16
|
selectedUser: any;
|
|
17
17
|
headerText: string;
|
|
18
|
+
loader: boolean;
|
|
18
19
|
search: string;
|
|
19
20
|
selectedIds: any[];
|
|
20
21
|
animation: boolean;
|
|
@@ -26,5 +27,5 @@ export declare class UserRadioListComponent implements OnInit, OnChanges {
|
|
|
26
27
|
save(): void;
|
|
27
28
|
close(): void;
|
|
28
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserRadioListComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UserRadioListComponent, "app-users-radio-list", never, { "usersList": { "alias": "usersList"; "required": false; }; "selectedUsers": { "alias": "selectedUsers"; "required": false; }; "userIdKey": { "alias": "userIdKey"; "required": false; }; "itemNameKey": { "alias": "itemNameKey"; "required": false; }; "itemEmailKey": { "alias": "itemEmailKey"; "required": false; }; "disabledId": { "alias": "disabledId"; "required": false; }; "fromResponsibility": { "alias": "fromResponsibility"; "required": false; }; "reviewerIds": { "alias": "reviewerIds"; "required": false; }; "overseerIds": { "alias": "overseerIds"; "required": false; }; "assignorId": { "alias": "assignorId"; "required": false; }; "headerText": { "alias": "headerText"; "required": false; }; }, { "saveSelectedList": "saveSelectedList"; "closeUsersList": "closeUsersList"; }, never, never, false, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserRadioListComponent, "app-users-radio-list", never, { "usersList": { "alias": "usersList"; "required": false; }; "selectedUsers": { "alias": "selectedUsers"; "required": false; }; "userIdKey": { "alias": "userIdKey"; "required": false; }; "itemNameKey": { "alias": "itemNameKey"; "required": false; }; "itemEmailKey": { "alias": "itemEmailKey"; "required": false; }; "disabledId": { "alias": "disabledId"; "required": false; }; "fromResponsibility": { "alias": "fromResponsibility"; "required": false; }; "reviewerIds": { "alias": "reviewerIds"; "required": false; }; "overseerIds": { "alias": "overseerIds"; "required": false; }; "assignorId": { "alias": "assignorId"; "required": false; }; "headerText": { "alias": "headerText"; "required": false; }; "loader": { "alias": "loader"; "required": false; }; }, { "saveSelectedList": "saveSelectedList"; "closeUsersList": "closeUsersList"; }, never, never, false, never>;
|
|
30
31
|
}
|
|
@@ -185,6 +185,8 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
185
185
|
unSubscribeProgram: Subject<void>;
|
|
186
186
|
constructor(authService: AuthService, responsibilityService: ResponsibilityService, frequencyService: FrequencyService, uiKitService: UiKitService, snackBar: SnackBarService, permission: AuthService, programService: ProgramsService, grcService: GrcService);
|
|
187
187
|
ngOnInit(): void;
|
|
188
|
+
setFeatureFlags(): void;
|
|
189
|
+
getInitialData(): void;
|
|
188
190
|
activateSelector(type: any, event: boolean): void;
|
|
189
191
|
setResponsibilityName(): void;
|
|
190
192
|
whatChanged(event: any): void;
|
|
@@ -104,7 +104,7 @@ export declare class WorkflowRiskComponent implements OnInit {
|
|
|
104
104
|
setPopupButtons(): void;
|
|
105
105
|
getRiskDetails(riskId: any): void;
|
|
106
106
|
populateOptionalFields(): void;
|
|
107
|
-
setCategoryType(type: any): "strategic" | "
|
|
107
|
+
setCategoryType(type: any): "strategic" | "operational" | "compliance" | "others";
|
|
108
108
|
getRCList(): void;
|
|
109
109
|
getCategoryList(): void;
|
|
110
110
|
getOwnersList(): void;
|
|
@@ -28,6 +28,7 @@ export declare class AuthService {
|
|
|
28
28
|
getOrganizationDetails(): import("rxjs").Observable<Object>;
|
|
29
29
|
getUserInfo(): import("rxjs").Observable<Object>;
|
|
30
30
|
getSubscriptionDetails(): import("rxjs").Observable<Object>;
|
|
31
|
+
convertUtcToLocalDateTime(timestamp: string | number): string;
|
|
31
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, [null, null, { optional: true; }]>;
|
|
32
33
|
static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
|
|
33
34
|
}
|
|
@@ -10,20 +10,25 @@ export declare class ResponsibilityService {
|
|
|
10
10
|
env: any;
|
|
11
11
|
dataPerPage: number;
|
|
12
12
|
grcOwners$: BehaviorSubject<any>;
|
|
13
|
+
RCList: BehaviorSubject<any>;
|
|
14
|
+
AssignorList: BehaviorSubject<any>;
|
|
15
|
+
AssuranceListForAudit: BehaviorSubject<any>;
|
|
16
|
+
GroupList: BehaviorSubject<any>;
|
|
17
|
+
AssuranceCategoryList: BehaviorSubject<any>;
|
|
13
18
|
constructor(http: HttpClient, authService: AuthService, config?: Configurations);
|
|
14
|
-
getResponsibilityCenterList(params?: HttpParams): Observable<any
|
|
15
|
-
getOrganizationGroups(params?: HttpParams): Observable<any
|
|
19
|
+
getResponsibilityCenterList(params?: HttpParams): Observable<any>;
|
|
20
|
+
getOrganizationGroups(params?: HttpParams): Observable<any>;
|
|
16
21
|
getOrganizationPolicyGroups(params?: HttpParams): Observable<any[]>;
|
|
17
22
|
getOrganizationOverseersGroups(params?: HttpParams): Observable<any[]>;
|
|
18
23
|
getOrganizationUsers(): Observable<any[]>;
|
|
19
24
|
getOrganizationPeople(params?: HttpParams): Observable<any>;
|
|
20
|
-
getAssignorsList(params?: HttpParams): Observable<any
|
|
25
|
+
getAssignorsList(params?: HttpParams): Observable<any>;
|
|
21
26
|
getCategoriesList(): Observable<any[]>;
|
|
22
27
|
getProgramsList(params: HttpParams, ids?: any): Observable<any[]>;
|
|
23
28
|
getProgramsListCount(params: HttpParams, ids?: any): Observable<any[]>;
|
|
24
29
|
getCategoriesUnderProgram(params: HttpParams): Observable<any[]>;
|
|
25
|
-
getAssurance(): Observable<any
|
|
26
|
-
getAssuranceForRequiresAudit(): Observable<any
|
|
30
|
+
getAssurance(): Observable<any>;
|
|
31
|
+
getAssuranceForRequiresAudit(): Observable<any>;
|
|
27
32
|
getRCDetailsOfFramework(rc_id: any, category_id: any): Observable<Object>;
|
|
28
33
|
submitEntrust(entrust_body: any): Observable<Object>;
|
|
29
34
|
updateEntrust(entrust_body: any, object_id: any, isDelegate: any): Observable<Object>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.0",
|
|
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 "
|