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.
@@ -15,7 +15,7 @@ interface ReviewerFrequency {
15
15
  endAfter: number;
16
16
  }
17
17
  interface Reviewer {
18
- type: 'sequential' | 'any_one';
18
+ type: 'sequential' | 'any';
19
19
  frequency: ReviewerFrequency;
20
20
  userId: number[];
21
21
  }
@@ -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, grcService: GrcService, config?: Configurations);
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, null, { optional: true; }]>;
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): "strategic" | "compliance" | "others" | "operational";
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, grcService: GrcService, config?: Configurations);
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, null, { optional: true; }]>;
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.80",
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 "