vcomply-workflow-engine 6.0.53 → 6.0.55
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/constants/api.constants.mjs +8 -0
- package/esm2022/lib/constants/mock.mjs +152 -0
- package/esm2022/lib/interfaces/frequency.interface.mjs +2 -0
- package/esm2022/lib/interfaces/responsibilty.interface.mjs +1 -1
- package/esm2022/lib/more-option/more-option.component.mjs +5 -51
- package/esm2022/lib/sharedComponents/frequency/frequency-annual/frequency-annual.component.mjs +5 -1
- package/esm2022/lib/sharedComponents/frequency/frequency-biannual/frequency-biannual.component.mjs +5 -1
- package/esm2022/lib/sharedComponents/frequency/frequency-daily/frequency-daily.component.mjs +2 -1
- package/esm2022/lib/sharedComponents/frequency/frequency-monthly/frequency-monthly.component.mjs +6 -2
- package/esm2022/lib/sharedComponents/frequency/frequency-one-time/frequency-one-time.component.mjs +2 -1
- package/esm2022/lib/sharedComponents/frequency/frequency-ongoing/frequency-ongoing.component.mjs +3 -1
- package/esm2022/lib/sharedComponents/frequency/frequency-quarterly/frequency-quarterly.component.mjs +5 -1
- package/esm2022/lib/sharedComponents/frequency/frequency-random/frequency-random.component.mjs +3 -1
- package/esm2022/lib/sharedComponents/frequency/frequency-weekly/frequency-weekly.component.mjs +4 -2
- package/esm2022/lib/sharedComponents/frequency/frequency.service.mjs +183 -1
- package/esm2022/lib/sharedComponents/list-container/list-container.component.mjs +52 -0
- package/esm2022/lib/sharedComponents/program-list/constant.mjs +16 -0
- package/esm2022/lib/sharedComponents/program-list/interfaces/data-source.interface.mjs +2 -0
- package/esm2022/lib/sharedComponents/program-list/interfaces/list-item.interface.mjs +2 -0
- package/esm2022/lib/sharedComponents/program-list/pipes/check-selected-items.pipes.mjs +20 -0
- package/esm2022/lib/sharedComponents/program-list/program-list/program-list.component.mjs +183 -0
- package/esm2022/lib/sharedComponents/program-list/program-list.module.mjs +47 -0
- package/esm2022/lib/sharedComponents/program-list/services/list-utils.service.mjs +27 -0
- package/esm2022/lib/sharedComponents/program-list/services/program-list-api.service.mjs +32 -0
- package/esm2022/lib/ui-kit/loaders/loaders.module.mjs +24 -0
- package/esm2022/lib/ui-kit/loaders/table-loader/table-loader.component.mjs +19 -0
- package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +257 -138
- package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +5 -31
- package/esm2022/lib/workflow-engine.module.mjs +13 -6
- package/esm2022/lib/workflow-policy/workflow-policy.component.mjs +39 -19
- package/esm2022/lib/workflow-program/workflow-program.component.mjs +83 -240
- package/esm2022/lib/workflow-services/programs.service.mjs +28 -112
- package/esm2022/lib/workflow-services/responsibility.service.mjs +9 -9
- package/fesm2022/vcomply-workflow-engine.mjs +2697 -2277
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/constants/api.constants.d.ts +7 -0
- package/lib/constants/mock.d.ts +15 -0
- package/lib/interfaces/frequency.interface.d.ts +37 -0
- package/lib/interfaces/responsibilty.interface.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency.service.d.ts +30 -0
- package/lib/sharedComponents/list-container/list-container.component.d.ts +9 -0
- package/lib/sharedComponents/program-list/constant.d.ts +9 -0
- package/lib/sharedComponents/program-list/interfaces/data-source.interface.d.ts +4 -0
- package/lib/sharedComponents/program-list/interfaces/list-item.interface.d.ts +5 -0
- package/lib/sharedComponents/program-list/pipes/check-selected-items.pipes.d.ts +7 -0
- package/lib/sharedComponents/program-list/program-list/program-list.component.d.ts +46 -0
- package/lib/sharedComponents/program-list/program-list.module.d.ts +14 -0
- package/lib/sharedComponents/program-list/services/list-utils.service.d.ts +7 -0
- package/lib/sharedComponents/program-list/services/program-list-api.service.d.ts +14 -0
- package/lib/ui-kit/loaders/loaders.module.d.ts +8 -0
- package/lib/ui-kit/loaders/table-loader/table-loader.component.d.ts +9 -0
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +30 -4
- package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +2 -1
- package/lib/workflow-engine.module.d.ts +42 -40
- package/lib/workflow-policy/workflow-policy.component.d.ts +6 -0
- package/lib/workflow-program/workflow-program.component.d.ts +6 -4
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/lib/workflow-services/programs.service.d.ts +13 -53
- package/package.json +1 -1
|
@@ -29,61 +29,20 @@ export declare class ProgramsService {
|
|
|
29
29
|
};
|
|
30
30
|
saveProgram(payload: any): import("rxjs").Observable<any[]>;
|
|
31
31
|
buildPayload(formData: any, instance: any): {
|
|
32
|
-
mode: string;
|
|
33
32
|
name: any;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
33
|
+
type: string;
|
|
34
|
+
description: any;
|
|
35
|
+
owners: {
|
|
36
|
+
admins: {
|
|
37
|
+
users: any;
|
|
38
|
+
userGroups: any;
|
|
39
|
+
};
|
|
40
|
+
managers: {
|
|
41
|
+
users: any;
|
|
42
|
+
userGroups: any;
|
|
43
|
+
};
|
|
37
44
|
};
|
|
38
|
-
|
|
39
|
-
text: any;
|
|
40
|
-
attachments: any;
|
|
41
|
-
};
|
|
42
|
-
roles: any;
|
|
43
|
-
owners: any;
|
|
44
|
-
owners_group: any;
|
|
45
|
-
all_user_in_role: any;
|
|
46
|
-
programType: any;
|
|
47
|
-
state: any;
|
|
48
|
-
approvers: any;
|
|
49
|
-
calculate_past_upcoming_event: any;
|
|
50
|
-
program_frequency: number;
|
|
51
|
-
lock_scope: number;
|
|
52
|
-
rc_ids: any;
|
|
53
|
-
assignee_ids: any;
|
|
54
|
-
assignee_group_ids: any;
|
|
55
|
-
default_assignee_ids: any;
|
|
56
|
-
default_assignee_group_ids: any;
|
|
57
|
-
default_assignee_type: any;
|
|
58
|
-
reviewers: any;
|
|
59
|
-
reviewer_group_ids: any;
|
|
60
|
-
default_reviewers: any;
|
|
61
|
-
default_reviewer_group_ids: any;
|
|
62
|
-
default_reviewers_type: any;
|
|
63
|
-
overseers: {
|
|
64
|
-
cc_email: any;
|
|
65
|
-
cc_email_groups: any;
|
|
66
|
-
failure_cc_email: never[];
|
|
67
|
-
failure_cc_email_groups: never[];
|
|
68
|
-
};
|
|
69
|
-
default_overseers: {
|
|
70
|
-
cc_email: any;
|
|
71
|
-
cc_email_groups: any;
|
|
72
|
-
failure_cc_email: any;
|
|
73
|
-
failure_cc_email_groups: any;
|
|
74
|
-
};
|
|
75
|
-
assessment: any;
|
|
76
|
-
evidence_upload_flag: number;
|
|
77
|
-
is_key_evidence: any;
|
|
78
|
-
custom_fields: any;
|
|
79
|
-
framework: {
|
|
80
|
-
_id: any;
|
|
81
|
-
framework_name: any;
|
|
82
|
-
type: any;
|
|
83
|
-
in_scope: any;
|
|
84
|
-
out_scope: any;
|
|
85
|
-
}[];
|
|
86
|
-
_id: any;
|
|
45
|
+
customFields: any;
|
|
87
46
|
};
|
|
88
47
|
generateAssessment(assessment: any): any;
|
|
89
48
|
getFramework(input: any): {
|
|
@@ -108,6 +67,7 @@ export declare class ProgramsService {
|
|
|
108
67
|
*/
|
|
109
68
|
updateProgram(payload: any, id: string): import("rxjs").Observable<any[]>;
|
|
110
69
|
getMemeberByIds(ids: any): import("rxjs").Observable<any[]>;
|
|
70
|
+
getMemeberByUIds(ids: any): import("rxjs").Observable<any[]>;
|
|
111
71
|
getMemberByGroups(ids: any): import("rxjs").Observable<any[]>;
|
|
112
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProgramsService, [null, null, { optional: true; }]>;
|
|
113
73
|
static ɵprov: i0.ɵɵInjectableDeclaration<ProgramsService>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.55",
|
|
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 "
|