vcomply-workflow-engine 3.8.9 → 3.9.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.
@@ -13,6 +13,7 @@ export declare class LinkRelatedPoliciesComponent implements OnInit {
13
13
  policySortBy: 'desc' | 'asc';
14
14
  selectedControlIds: Array<any>;
15
15
  selectedPolicyList: Array<any>;
16
+ deletedList: Array<any>;
16
17
  searchText: searchText;
17
18
  loader: boolean;
18
19
  recentPage: number;
@@ -74,7 +74,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
74
74
  usersAccessListIds: any[];
75
75
  groupsAccessListIds: any[];
76
76
  groupsAccessList: any[];
77
- listOfPolicies: any[];
77
+ SelectedListOfPolicies: any[];
78
78
  loader: boolean;
79
79
  categoriesListLoaded: boolean;
80
80
  groupsListLoaded: boolean;
@@ -171,7 +171,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
171
171
  _initiateAPI(): void;
172
172
  _initiateEditAPI(): void;
173
173
  getOrgDetails(): void;
174
- getLinkedPolicies(policyId: number): void;
174
+ getLinkedPolicies(policyId: string): void;
175
175
  /**
176
176
  * Displays the listing pages the left side of policy form to set and edit the dropdown fields values
177
177
  * @param type holds name of particular list is to be displayed
@@ -246,6 +246,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
246
246
  * @param selectedItems contains the list of selected items from the list
247
247
  */
248
248
  saveSelectedList(type: string, selectedItems: any): void;
249
+ listOfSelectedPolicies(selectedPolicies: any): any;
249
250
  getGroupObjectId(overseerGroup?: any): any;
250
251
  /**
251
252
  * Removes the particular element from selected list
@@ -29,7 +29,7 @@ export declare class PolicyService {
29
29
  extractFile(extension: any, path: any, id: any): import("rxjs").Observable<Object>;
30
30
  createApprovalWorkflow(payload: any): import("rxjs").Observable<any>;
31
31
  editApprovalWorkflow(payload: any, id: string): import("rxjs").Observable<any>;
32
- LinkedPoliciesList(policyId: number): import("rxjs").Observable<Object>;
32
+ LinkedPoliciesList(policyId: string): import("rxjs").Observable<Object>;
33
33
  static ɵfac: i0.ɵɵFactoryDeclaration<PolicyService, [null, null, { optional: true; }]>;
34
34
  static ɵprov: i0.ɵɵInjectableDeclaration<PolicyService>;
35
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "3.8.9",
3
+ "version": "3.9.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 "