vcomply-workflow-engine 6.0.80 → 6.0.81
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/interfaces/responsibilty.interface.mjs +1 -1
- package/esm2022/lib/sharedComponents/frequency/frequency.service.mjs +6 -17
- package/esm2022/lib/workflow/shared/services/grc.service.mjs +2 -11
- package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +2 -2
- package/esm2022/lib/workflow-services/responsibility.service.mjs +7 -18
- package/fesm2022/vcomply-workflow-engine.mjs +12 -38
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/interfaces/responsibilty.interface.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency.service.d.ts +2 -4
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/lib/workflow-services/responsibility.service.d.ts +2 -4
- package/package.json +1 -1
|
@@ -2,12 +2,10 @@ import { HttpClient } from '@angular/common/http';
|
|
|
2
2
|
import { Configurations } from '../../configurations';
|
|
3
3
|
import { AuthService } from '../../workflow-services/auth.service';
|
|
4
4
|
import { FrequencyObject } from '../../interfaces/frequency.interface';
|
|
5
|
-
import { GrcService } from '../../workflow/shared/services/grc.service';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class FrequencyService {
|
|
8
7
|
private http;
|
|
9
8
|
private authService;
|
|
10
|
-
private grcService;
|
|
11
9
|
monthArray: Array<string>;
|
|
12
10
|
dayName: Array<string>;
|
|
13
11
|
quarterlyMonth: Array<string>;
|
|
@@ -33,7 +31,7 @@ export declare class FrequencyService {
|
|
|
33
31
|
};
|
|
34
32
|
frequencyDetails: object;
|
|
35
33
|
private env;
|
|
36
|
-
constructor(http: HttpClient, authService: AuthService,
|
|
34
|
+
constructor(http: HttpClient, authService: AuthService, config?: Configurations);
|
|
37
35
|
timeFrom12hTo24h(value: string): string;
|
|
38
36
|
timeIn12(value: any): string;
|
|
39
37
|
frameworkStartDate(row: any): number;
|
|
@@ -137,6 +135,6 @@ export declare class FrequencyService {
|
|
|
137
135
|
* ```
|
|
138
136
|
*/
|
|
139
137
|
formatDateString(dateString: string): string;
|
|
140
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FrequencyService, [null, null,
|
|
138
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrequencyService, [null, null, { optional: true; }]>;
|
|
141
139
|
static ɵprov: i0.ɵɵInjectableDeclaration<FrequencyService>;
|
|
142
140
|
}
|
|
@@ -167,7 +167,7 @@ export declare class WorkflowRiskComponent implements OnInit {
|
|
|
167
167
|
setPopupButtons(): void;
|
|
168
168
|
getRiskDetails(riskId: any): void;
|
|
169
169
|
populateOptionalFields(): void;
|
|
170
|
-
setCategoryType(type: any): "
|
|
170
|
+
setCategoryType(type: any): "others" | "strategic" | "operational" | "compliance";
|
|
171
171
|
getRCList(): void;
|
|
172
172
|
getCategoryList(): void;
|
|
173
173
|
getOwnersList(): void;
|
|
@@ -4,12 +4,10 @@ import { AuthService } from './auth.service';
|
|
|
4
4
|
import { AssessmentList } from '../sharedComponents/assessment-list/service/assessment.interface';
|
|
5
5
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
6
6
|
import { Responsibility } from '../interfaces/responsibilty.interface';
|
|
7
|
-
import { GrcService } from '../workflow/shared/services/grc.service';
|
|
8
7
|
import * as i0 from "@angular/core";
|
|
9
8
|
export declare class ResponsibilityService {
|
|
10
9
|
private http;
|
|
11
10
|
private authService;
|
|
12
|
-
private grcService;
|
|
13
11
|
env: any;
|
|
14
12
|
dataPerPage: number;
|
|
15
13
|
responsibilityPageNumber: number;
|
|
@@ -21,7 +19,7 @@ export declare class ResponsibilityService {
|
|
|
21
19
|
AssuranceCategoryList: BehaviorSubject<any>;
|
|
22
20
|
private overseerList;
|
|
23
21
|
private policyGroups;
|
|
24
|
-
constructor(http: HttpClient, authService: AuthService,
|
|
22
|
+
constructor(http: HttpClient, authService: AuthService, config?: Configurations);
|
|
25
23
|
getResponsibilityCenterList(params?: HttpParams): Observable<any>;
|
|
26
24
|
getOrganizationGroups(params?: HttpParams): Observable<any>;
|
|
27
25
|
getOrganizationPolicyGroups(params?: HttpParams): Observable<any>;
|
|
@@ -70,6 +68,6 @@ export declare class ResponsibilityService {
|
|
|
70
68
|
} | undefined;
|
|
71
69
|
transformData(input: any): any;
|
|
72
70
|
getAllResponsibilities(): Observable<any[]>;
|
|
73
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ResponsibilityService, [null, null,
|
|
71
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResponsibilityService, [null, null, { optional: true; }]>;
|
|
74
72
|
static ɵprov: i0.ɵɵInjectableDeclaration<ResponsibilityService>;
|
|
75
73
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.81",
|
|
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 "
|