vcomply-workflow-engine 6.0.81 → 6.0.83

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.
@@ -2,10 +2,12 @@ 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';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class FrequencyService {
7
8
  private http;
8
9
  private authService;
10
+ private grcService;
9
11
  monthArray: Array<string>;
10
12
  dayName: Array<string>;
11
13
  quarterlyMonth: Array<string>;
@@ -31,7 +33,7 @@ export declare class FrequencyService {
31
33
  };
32
34
  frequencyDetails: object;
33
35
  private env;
34
- constructor(http: HttpClient, authService: AuthService, config?: Configurations);
36
+ constructor(http: HttpClient, authService: AuthService, grcService: GrcService, config?: Configurations);
35
37
  timeFrom12hTo24h(value: string): string;
36
38
  timeIn12(value: any): string;
37
39
  frameworkStartDate(row: any): number;
@@ -135,6 +137,6 @@ export declare class FrequencyService {
135
137
  * ```
136
138
  */
137
139
  formatDateString(dateString: string): string;
138
- static ɵfac: i0.ɵɵFactoryDeclaration<FrequencyService, [null, null, { optional: true; }]>;
140
+ static ɵfac: i0.ɵɵFactoryDeclaration<FrequencyService, [null, null, null, { optional: true; }]>;
139
141
  static ɵprov: i0.ɵɵInjectableDeclaration<FrequencyService>;
140
142
  }
@@ -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): "others" | "strategic" | "operational" | "compliance";
170
+ setCategoryType(type: any): "strategic" | "compliance" | "others" | "operational";
171
171
  getRCList(): void;
172
172
  getCategoryList(): void;
173
173
  getOwnersList(): void;
@@ -4,10 +4,12 @@ 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';
7
8
  import * as i0 from "@angular/core";
8
9
  export declare class ResponsibilityService {
9
10
  private http;
10
11
  private authService;
12
+ private grcService;
11
13
  env: any;
12
14
  dataPerPage: number;
13
15
  responsibilityPageNumber: number;
@@ -19,7 +21,7 @@ export declare class ResponsibilityService {
19
21
  AssuranceCategoryList: BehaviorSubject<any>;
20
22
  private overseerList;
21
23
  private policyGroups;
22
- constructor(http: HttpClient, authService: AuthService, config?: Configurations);
24
+ constructor(http: HttpClient, authService: AuthService, grcService: GrcService, config?: Configurations);
23
25
  getResponsibilityCenterList(params?: HttpParams): Observable<any>;
24
26
  getOrganizationGroups(params?: HttpParams): Observable<any>;
25
27
  getOrganizationPolicyGroups(params?: HttpParams): Observable<any>;
@@ -68,6 +70,6 @@ export declare class ResponsibilityService {
68
70
  } | undefined;
69
71
  transformData(input: any): any;
70
72
  getAllResponsibilities(): Observable<any[]>;
71
- static ɵfac: i0.ɵɵFactoryDeclaration<ResponsibilityService, [null, null, { optional: true; }]>;
73
+ static ɵfac: i0.ɵɵFactoryDeclaration<ResponsibilityService, [null, null, null, { optional: true; }]>;
72
74
  static ɵprov: i0.ɵɵInjectableDeclaration<ResponsibilityService>;
73
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "6.0.81",
3
+ "version": "6.0.83",
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 "