vcomply-workflow-engine 6.0.69 → 6.0.70
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/more-option/more-option.component.mjs +133 -13
- package/esm2022/lib/services/common.service.mjs +2 -2
- package/esm2022/lib/sharedComponents/frequency/frequency-container/frequency-container.component.mjs +5 -5
- package/esm2022/lib/sharedComponents/frequency/frequency-one-time/frequency-one-time.component.mjs +2 -2
- package/esm2022/lib/sharedComponents/frequency/frequency.service.mjs +6 -2
- package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +37 -20
- package/esm2022/lib/workflow-engine-container/api-constants.mjs +2 -3
- package/esm2022/lib/workflow-policy/workflow-policy.component.mjs +36 -9
- package/esm2022/lib/workflow-program/constants.mjs +3 -3
- package/esm2022/lib/workflow-program/workflow-program.component.mjs +79 -43
- package/esm2022/lib/workflow-services/policy.service.mjs +1 -5
- package/esm2022/lib/workflow-services/programs.service.mjs +8 -5
- package/esm2022/lib/workflow-services/responsibility.service.mjs +13 -3
- package/fesm2022/vcomply-workflow-engine.mjs +314 -102
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/interfaces/responsibilty.interface.d.ts +1 -1
- package/lib/services/common.service.d.ts +4 -4
- package/lib/workflow-engine-container/api-constants.d.ts +0 -1
- package/lib/workflow-policy/workflow-policy.component.d.ts +1 -1
- package/lib/workflow-program/workflow-program.component.d.ts +0 -1
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/lib/workflow-services/policy.service.d.ts +0 -1
- package/lib/workflow-services/responsibility.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -28,10 +28,10 @@ export declare class CommonService {
|
|
|
28
28
|
* // Returns { added: [2, 3], removed: [4] }
|
|
29
29
|
*/
|
|
30
30
|
transformProgramData(input: Record<string, Array<{
|
|
31
|
-
|
|
32
|
-
}>>, linkedProgramIds?:
|
|
33
|
-
added:
|
|
34
|
-
removed:
|
|
31
|
+
id: number;
|
|
32
|
+
}>>, linkedProgramIds?: number[]): {
|
|
33
|
+
added: number[];
|
|
34
|
+
removed: number[];
|
|
35
35
|
};
|
|
36
36
|
transformResponsibilitiesData(currentResponsibilityIds: number[], linkedResponsibilityIds?: number[]): {
|
|
37
37
|
added: number[];
|
|
@@ -419,7 +419,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
419
419
|
onItemsSelectedChange(items: ListItem[]): void;
|
|
420
420
|
selectCategory(): void;
|
|
421
421
|
removeProgram(program: any): void;
|
|
422
|
-
getLinkProgram(
|
|
422
|
+
getLinkProgram(): void;
|
|
423
423
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowPolicyComponent, never>;
|
|
424
424
|
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowPolicyComponent, "app-workflow-policy", never, { "mode": { "alias": "mode"; "required": false; }; "policyId": { "alias": "policyId"; "required": false; }; "feature": { "alias": "feature"; "required": false; }; "convertFileData": { "alias": "convertFileData"; "required": false; }; "selectedCategory": { "alias": "selectedCategory"; "required": false; }; "isSendForAttestation": { "alias": "isSendForAttestation"; "required": false; }; "templateId": { "alias": "templateId"; "required": false; }; }, { "pickerChanged": "pickerChanged"; "showConfirmationAlert": "showConfirmationAlert"; "populateOption": "populateOption"; "disconnectRefresh": "disconnectRefresh"; "shiftToEditMode": "shiftToEditMode"; }, never, never, false, never>;
|
|
425
425
|
}
|
|
@@ -264,7 +264,6 @@ export declare class WorkflowProgramComponent implements OnInit {
|
|
|
264
264
|
populateProgramDetails(res: any): void;
|
|
265
265
|
populateMembers(res: any): void;
|
|
266
266
|
populateGroups(res: any): void;
|
|
267
|
-
populateGroupsByGID(programDetails: any, type: string): void;
|
|
268
267
|
resetAdditionalOption(): void;
|
|
269
268
|
checkProgramOptionField(): any;
|
|
270
269
|
enablefeature(): void;
|
|
@@ -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): "strategic" | "compliance" | "others" | "operational";
|
|
171
171
|
getRCList(): void;
|
|
172
172
|
getCategoryList(): void;
|
|
173
173
|
getOwnersList(): void;
|
|
@@ -30,7 +30,6 @@ export declare class PolicyService {
|
|
|
30
30
|
createApprovalWorkflow(payload: any): import("rxjs").Observable<any>;
|
|
31
31
|
editApprovalWorkflow(payload: any, id: string): import("rxjs").Observable<any>;
|
|
32
32
|
LinkedPoliciesList(policyId: string): import("rxjs").Observable<Object>;
|
|
33
|
-
getLinkedPrograms(policyId: string): import("rxjs").Observable<Object>;
|
|
34
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<PolicyService, [null, null, { optional: true; }]>;
|
|
35
34
|
static ɵprov: i0.ɵɵInjectableDeclaration<PolicyService>;
|
|
36
35
|
}
|
|
@@ -66,6 +66,7 @@ export declare class ResponsibilityService {
|
|
|
66
66
|
userGroupId: any;
|
|
67
67
|
};
|
|
68
68
|
} | undefined;
|
|
69
|
+
getRiskClass(riskClass: 0 | 1 | 2 | 3): 'low' | 'low_medium' | 'medium_high' | 'high';
|
|
69
70
|
transformData(input: any): any;
|
|
70
71
|
getAllResponsibilities(): Observable<any[]>;
|
|
71
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResponsibilityService, [null, null, { optional: true; }]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.70",
|
|
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 "
|