vcomply-workflow-engine 6.0.48 → 6.0.49

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.
Files changed (68) hide show
  1. package/esm2022/lib/constants/mock.mjs +130 -0
  2. package/esm2022/lib/interfaces/frequency.interface.mjs +2 -0
  3. package/esm2022/lib/interfaces/responsibilty.interface.mjs +1 -1
  4. package/esm2022/lib/more-option/more-option.component.mjs +3 -46
  5. package/esm2022/lib/sharedComponents/document-section/document-section.component.mjs +9 -41
  6. package/esm2022/lib/sharedComponents/frequency/frequency-annual/frequency-annual.component.mjs +5 -1
  7. package/esm2022/lib/sharedComponents/frequency/frequency-biannual/frequency-biannual.component.mjs +5 -1
  8. package/esm2022/lib/sharedComponents/frequency/frequency-daily/frequency-daily.component.mjs +2 -1
  9. package/esm2022/lib/sharedComponents/frequency/frequency-monthly/frequency-monthly.component.mjs +6 -2
  10. package/esm2022/lib/sharedComponents/frequency/frequency-one-time/frequency-one-time.component.mjs +2 -1
  11. package/esm2022/lib/sharedComponents/frequency/frequency-ongoing/frequency-ongoing.component.mjs +3 -1
  12. package/esm2022/lib/sharedComponents/frequency/frequency-quarterly/frequency-quarterly.component.mjs +5 -1
  13. package/esm2022/lib/sharedComponents/frequency/frequency-random/frequency-random.component.mjs +3 -1
  14. package/esm2022/lib/sharedComponents/frequency/frequency-weekly/frequency-weekly.component.mjs +4 -2
  15. package/esm2022/lib/sharedComponents/frequency/frequency.service.mjs +185 -1
  16. package/esm2022/lib/sharedComponents/list-container/list-container.component.mjs +52 -0
  17. package/esm2022/lib/sharedComponents/policy-template/policy-template.module.mjs +5 -5
  18. package/esm2022/lib/sharedComponents/policy-template/select-template-list/select-template-list.component.mjs +33 -31
  19. package/esm2022/lib/sharedComponents/policy-template/template-list-table/template-list-table.component.mjs +3 -9
  20. package/esm2022/lib/sharedComponents/policy-template/view-policy/view-policy/view-policy.component.mjs +93 -0
  21. package/esm2022/lib/sharedComponents/policy-template/view-policy/view-policy.module.mjs +19 -0
  22. package/esm2022/lib/sharedComponents/program-list/constant.mjs +10 -0
  23. package/esm2022/lib/sharedComponents/program-list/interfaces/data-source.interface.mjs +2 -0
  24. package/esm2022/lib/sharedComponents/program-list/interfaces/list-item.interface.mjs +2 -0
  25. package/esm2022/lib/sharedComponents/program-list/interfaces/selection-predicate.interface.mjs +2 -0
  26. package/esm2022/lib/sharedComponents/program-list/program-list/program-list.component.mjs +162 -0
  27. package/esm2022/lib/sharedComponents/program-list/program-list.module.mjs +40 -0
  28. package/esm2022/lib/sharedComponents/program-list/services/list-utils.service.mjs +27 -0
  29. package/esm2022/lib/sharedComponents/program-list/services/program-list-api.service.mjs +32 -0
  30. package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +303 -153
  31. package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +5 -13
  32. package/esm2022/lib/workflow-engine.module.mjs +13 -6
  33. package/esm2022/lib/workflow-policy/workflow-policy.component.mjs +3 -3
  34. package/esm2022/lib/workflow-program/workflow-program.component.mjs +83 -240
  35. package/esm2022/lib/workflow-services/programs.service.mjs +28 -112
  36. package/esm2022/lib/workflow-services/responsibility.service.mjs +9 -9
  37. package/fesm2022/vcomply-workflow-engine.mjs +1220 -709
  38. package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
  39. package/lib/constants/mock.d.ts +15 -0
  40. package/lib/interfaces/frequency.interface.d.ts +37 -0
  41. package/lib/interfaces/responsibilty.interface.d.ts +1 -1
  42. package/lib/sharedComponents/document-section/document-section.component.d.ts +2 -10
  43. package/lib/sharedComponents/frequency/frequency.service.d.ts +30 -0
  44. package/lib/sharedComponents/list-container/list-container.component.d.ts +9 -0
  45. package/lib/sharedComponents/policy-template/policy-template.module.d.ts +2 -2
  46. package/lib/sharedComponents/policy-template/select-template-list/select-template-list.component.d.ts +5 -7
  47. package/lib/sharedComponents/policy-template/template-list-table/template-list-table.component.d.ts +3 -6
  48. package/lib/sharedComponents/policy-template/view-policy/view-policy/view-policy.component.d.ts +25 -0
  49. package/lib/sharedComponents/policy-template/view-policy/view-policy.module.d.ts +9 -0
  50. package/lib/sharedComponents/program-list/constant.d.ts +5 -0
  51. package/lib/sharedComponents/program-list/interfaces/data-source.interface.d.ts +4 -0
  52. package/lib/sharedComponents/program-list/interfaces/list-item.interface.d.ts +5 -0
  53. package/lib/sharedComponents/program-list/interfaces/selection-predicate.interface.d.ts +3 -0
  54. package/lib/sharedComponents/program-list/program-list/program-list.component.d.ts +42 -0
  55. package/lib/sharedComponents/program-list/program-list.module.d.ts +12 -0
  56. package/lib/sharedComponents/program-list/services/list-utils.service.d.ts +7 -0
  57. package/lib/sharedComponents/program-list/services/program-list-api.service.d.ts +14 -0
  58. package/lib/workflow-compliance/workflow-compliance.component.d.ts +33 -5
  59. package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +2 -3
  60. package/lib/workflow-engine.module.d.ts +42 -40
  61. package/lib/workflow-program/workflow-program.component.d.ts +6 -4
  62. package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
  63. package/lib/workflow-services/programs.service.d.ts +13 -53
  64. package/package.json +1 -1
  65. package/esm2022/lib/workflow-policy/ms-word.constants.mjs +0 -21
  66. package/esm2022/lib/workflow-services/policy-api.service.mjs +0 -38
  67. package/lib/workflow-policy/ms-word.constants.d.ts +0 -20
  68. package/lib/workflow-services/policy-api.service.d.ts +0 -27
@@ -91,48 +91,50 @@ import * as i87 from "./sharedComponents/approval-workflow/approval-create-form/
91
91
  import * as i88 from "./sharedComponents/link-program/link-program/link-program.component";
92
92
  import * as i89 from "./sharedComponents/link-program/tooltip-validation.pipe";
93
93
  import * as i90 from "./link-related-policies/link-related-policies.component";
94
- import * as i91 from "@angular/forms";
95
- import * as i92 from "./sharedComponents/assessment-editor/create-assessment.module";
96
- import * as i93 from "@vcomply/editor";
97
- import * as i94 from "@angular/common";
98
- import * as i95 from "./formgroup/formgroup.module";
99
- import * as i96 from "./ui-kit/tooltip/tooltip.module";
100
- import * as i97 from "./ui-kit/popover/popover.module";
101
- import * as i98 from "./ui-kit/line-loader/line-loader.module";
102
- import * as i99 from "./formgroup/select/select.module";
103
- import * as i100 from "ngx-material-timepicker";
104
- import * as i101 from "ng2-date-picker";
105
- import * as i102 from "./sharedComponents/no-data/no-data.module";
106
- import * as i103 from "./sharedComponents/v-loader/v-loader.module";
107
- import * as i104 from "./ui-kit/smiley-dialog/smiley-dialog.module";
108
- import * as i105 from "./ui-kit/snack-bar/snack-bar.module";
109
- import * as i106 from "@angular/common/http";
110
- import * as i107 from "./ui-kit/smiley-dialog-inline/smiley-dialog-inline.module";
111
- import * as i108 from "./ui-kit/click-outside/click-outside.module";
112
- import * as i109 from "./ui-kit/popover-hover/popover-hover.module";
113
- import * as i110 from "./ui-kit/pagination/pagination.module";
114
- import * as i111 from "./ui-kit/action-dialog/action-dialog.module";
115
- import * as i112 from "./sharedComponents/assessment-preview/assessment-preview.module";
116
- import * as i113 from "./workflow-program/create-program-ui/create-program-ui.module";
117
- import * as i114 from "./ui-kit/directive/directive.module";
118
- import * as i115 from "./workflow/grc-object/grc-object.module";
119
- import * as i116 from "./sharedComponents/responsibility-centers-list/rc-list.module";
120
- import * as i117 from "./pipes/pipes.module";
121
- import * as i118 from "./sharedComponents/floating-bar/floating-bar.module";
122
- import * as i119 from "./sharedComponents/group-users-list/group-users-list.component";
123
- import * as i120 from "./sharedComponents/list-loader/list-loader.module";
124
- import * as i121 from "./workflow/shared/components/grc-object-list/grc-object-list.component";
125
- import * as i122 from "./ui-kit/time-picker/time-picker.module";
126
- import * as i123 from "./ui-kit/multi-select/multi-select.module";
127
- import * as i124 from "./sharedComponents/policy-template/policy-template.module";
128
- import * as i125 from "./report-a-case/report-case.module";
129
- import * as i126 from "./sharedComponents/format-and-evidence/format-and-evidence.module";
130
- import * as i127 from "./sharedComponents/checkbox-list/checkbox-list.module";
131
- import * as i128 from "./sharedComponents/radio-list-with-pagination/radio-list-with-pagination.module";
132
- import * as i129 from "./sharedComponents/link-responsibility/link-responsibility.module";
94
+ import * as i91 from "./sharedComponents/list-container/list-container.component";
95
+ import * as i92 from "@angular/forms";
96
+ import * as i93 from "./sharedComponents/assessment-editor/create-assessment.module";
97
+ import * as i94 from "@vcomply/editor";
98
+ import * as i95 from "@angular/common";
99
+ import * as i96 from "./formgroup/formgroup.module";
100
+ import * as i97 from "./ui-kit/tooltip/tooltip.module";
101
+ import * as i98 from "./ui-kit/popover/popover.module";
102
+ import * as i99 from "./ui-kit/line-loader/line-loader.module";
103
+ import * as i100 from "./formgroup/select/select.module";
104
+ import * as i101 from "ngx-material-timepicker";
105
+ import * as i102 from "ng2-date-picker";
106
+ import * as i103 from "./sharedComponents/no-data/no-data.module";
107
+ import * as i104 from "./sharedComponents/v-loader/v-loader.module";
108
+ import * as i105 from "./ui-kit/smiley-dialog/smiley-dialog.module";
109
+ import * as i106 from "./ui-kit/snack-bar/snack-bar.module";
110
+ import * as i107 from "@angular/common/http";
111
+ import * as i108 from "./ui-kit/smiley-dialog-inline/smiley-dialog-inline.module";
112
+ import * as i109 from "./ui-kit/click-outside/click-outside.module";
113
+ import * as i110 from "./ui-kit/popover-hover/popover-hover.module";
114
+ import * as i111 from "./ui-kit/pagination/pagination.module";
115
+ import * as i112 from "./ui-kit/action-dialog/action-dialog.module";
116
+ import * as i113 from "./sharedComponents/assessment-preview/assessment-preview.module";
117
+ import * as i114 from "./workflow-program/create-program-ui/create-program-ui.module";
118
+ import * as i115 from "./ui-kit/directive/directive.module";
119
+ import * as i116 from "./workflow/grc-object/grc-object.module";
120
+ import * as i117 from "./sharedComponents/responsibility-centers-list/rc-list.module";
121
+ import * as i118 from "./pipes/pipes.module";
122
+ import * as i119 from "./sharedComponents/floating-bar/floating-bar.module";
123
+ import * as i120 from "./sharedComponents/group-users-list/group-users-list.component";
124
+ import * as i121 from "./sharedComponents/list-loader/list-loader.module";
125
+ import * as i122 from "./workflow/shared/components/grc-object-list/grc-object-list.component";
126
+ import * as i123 from "./ui-kit/time-picker/time-picker.module";
127
+ import * as i124 from "./ui-kit/multi-select/multi-select.module";
128
+ import * as i125 from "./sharedComponents/policy-template/policy-template.module";
129
+ import * as i126 from "./report-a-case/report-case.module";
130
+ import * as i127 from "./sharedComponents/format-and-evidence/format-and-evidence.module";
131
+ import * as i128 from "./sharedComponents/checkbox-list/checkbox-list.module";
132
+ import * as i129 from "./sharedComponents/radio-list-with-pagination/radio-list-with-pagination.module";
133
+ import * as i130 from "./sharedComponents/link-responsibility/link-responsibility.module";
134
+ import * as i131 from "./sharedComponents/program-list/program-list.module";
133
135
  export declare class VComplyWorkflowEngineModule {
134
136
  static forRoot(environmentConfig: Configurations): ModuleWithProviders<VComplyWorkflowEngineModule>;
135
137
  static ɵfac: i0.ɵɵFactoryDeclaration<VComplyWorkflowEngineModule, never>;
136
- static ɵmod: i0.ɵɵNgModuleDeclaration<VComplyWorkflowEngineModule, [typeof i1.WorkflowEngineContainerComponent, typeof i2.WorkflowRiskComponent, typeof i3.WorkflowComplianceComponent, typeof i4.WorkflowPolicyComponent, typeof i5.MoreOptionComponent, typeof i6.OwnerListComponent, typeof i7.UserRadioListComponent, typeof i8.CategoryListComponent, typeof i9.CategoryMultiSelectComponent, typeof i10.WorkflowPaginationComponent, typeof i11.AddMultipleRiskComponent, typeof i12.BulkViewComponent, typeof i13.CheckpointsComponent, typeof i14.ConfirmationAlertComponent, typeof i15.CheckpointsQuestionsComponent, typeof i16.CheckpointsListComponent, typeof i17.ReviewFrequencyComponent, typeof i18.FrequencyContainerComponent, typeof i19.FrequencyDailyComponent, typeof i20.FrequencyWeeklyComponent, typeof i21.FrequencyMonthlyComponent, typeof i22.FrequencyQuarterlyComponent, typeof i23.FrequencyBiannualComponent, typeof i24.FrequencyAnnualComponent, typeof i25.FrequencyOneTimeComponent, typeof i26.FrequencyRandomComponent, typeof i27.FrequencyOnCompletionOfComponent, typeof i28.FrequencyOngoingComponent, typeof i29.FrequencyTopComponent, typeof i30.FrequencyLifecycleComponent, typeof i31.FrequencyDueDateComponent, typeof i32.FrequencyCheckboxListComponent, typeof i33.FrequencyRadioListComponent, typeof i34.AddMultipleResponsibilityComponent, typeof i35.BulkResponsibilityViewComponent, typeof i36.CheckpointsPolicyContainerComponent, typeof i37.CheckpointsPolicyListComponent, typeof i38.CheckpointsPolicyQuestionsComponent, typeof i39.WorkflowSurveyFormComponent, typeof i40.LogAnIssueComponent, typeof i41.FilterPipe, typeof i42.RadioListComponent, typeof i43.CreateDocumentsComponent, typeof i44.FrameworkListComponent, typeof i45.ParentTableComponent, typeof i46.CheckpointFloatingBarComponent, typeof i47.RiskClassificationComponent, typeof i48.ShortMergePipe, typeof i49.FormatHtmlPipe, typeof i50.WithinDataPipe, typeof i51.rcTreeToolTipPipe, typeof i52.ResponsibilityRiskSelectorComponent, typeof i53.ArrayFilterPipe, typeof i54.AuditCategoryListComponent, typeof i55.DocumentSectionComponent, typeof i55.DocumentSectionComponent, typeof i56.WorkflowAssessmentComponent, typeof i57.ImportAnAssessmentComponent, typeof i58.AssessmentListComponent, typeof i59.AssessmentListLoaderComponent, typeof i60.AssessmentListSubLoaderComponent, typeof i61.ProgramListingComponent, typeof i62.WorkflowProgramComponent, typeof i63.RolesListComponent, typeof i64.FrameworkListTableComponent, typeof i65.FrameworkResponsibilityTableComponent, typeof i66.FrameworkTableLoaderComponent, typeof i67.ArrayConcatPipe, typeof i68.SpaceTrimPipe, typeof i69.FrequencyDialogContainerComponent, typeof i70.FrequencyDialogWeeklyComponent, typeof i71.FrequencyDialogTopComponent, typeof i72.FrequencyDialogDueDateComponent, typeof i73.FrequencyDialogCheckboxListComponent, typeof i74.FrequencyDialogMonthlyComponent, typeof i75.FrequencyDialogQuarterlyComponent, typeof i76.FrequencyDialogRadioListComponent, typeof i77.FrequencyDialogBiannualComponent, typeof i78.FrequencyDialogAnnualComponent, typeof i79.FrequencyDialogOneTimeComponent, typeof i80.AddMultipleResponsibilityContainerComponent, typeof i81.AddMultipleResponsibilityWithTabComponent, typeof i82.FrequencyResponsibilityListComponent, typeof i83.ApprovalWorkflowComponent, typeof i84.SelectApproversComponent, typeof i85.PolicyAccessComponent, typeof i86.ApprovalWorkflowListComponent, typeof i87.ApprovalCreateFormComponent, typeof i88.LinkProgramComponent, typeof i89.TooltipValidationPipe, typeof i90.LinkRelatedPoliciesComponent], [typeof i91.ReactiveFormsModule, typeof i92.CreateAssessmentModule, typeof i93.VcomplyEditorModule, typeof i94.CommonModule, typeof i95.FormgroupModule, typeof i96.TooltipModule, typeof i97.PopoverModule, typeof i98.LineLoaderModule, typeof i91.FormsModule, typeof i99.SelectModule, typeof i100.NgxMaterialTimepickerModule, typeof i101.DpDatePickerModule, typeof i102.NoDataModule, typeof i103.VLoaderModule, typeof i104.SmileyDialogModule, typeof i105.SnackBarModule, typeof i106.HttpClientModule, typeof i107.SmileyDialogInlineModule, typeof i108.ClickOutsideModule, typeof i109.PopoverHoverModule, typeof i110.PaginationModule, typeof i92.CreateAssessmentModule, typeof i111.ActionDialogModule, typeof i112.AssessmentPreviewModule, typeof i113.CreateProgramUiModule, typeof i114.DirectiveModule, typeof i115.GrcObjectModule, typeof i116.RcListModule, typeof i117.PipesModule, typeof i118.FloatingBarModule, typeof i119.GroupUsersListComponent, typeof i120.ListLoaderModule, typeof i121.GrcObjectListComponent, typeof i122.TimePickerModule, typeof i123.MultiSelectModule, typeof i124.PolicyTemplateModule, typeof i125.ReportCaseModule, typeof i126.FormatAndEvidenceModule, typeof i127.CheckboxListModule, typeof i128.RadioListWithPaginationModule, typeof i129.LinkResponsibilityModule], [typeof i1.WorkflowEngineContainerComponent]>;
138
+ static ɵmod: i0.ɵɵNgModuleDeclaration<VComplyWorkflowEngineModule, [typeof i1.WorkflowEngineContainerComponent, typeof i2.WorkflowRiskComponent, typeof i3.WorkflowComplianceComponent, typeof i4.WorkflowPolicyComponent, typeof i5.MoreOptionComponent, typeof i6.OwnerListComponent, typeof i7.UserRadioListComponent, typeof i8.CategoryListComponent, typeof i9.CategoryMultiSelectComponent, typeof i10.WorkflowPaginationComponent, typeof i11.AddMultipleRiskComponent, typeof i12.BulkViewComponent, typeof i13.CheckpointsComponent, typeof i14.ConfirmationAlertComponent, typeof i15.CheckpointsQuestionsComponent, typeof i16.CheckpointsListComponent, typeof i17.ReviewFrequencyComponent, typeof i18.FrequencyContainerComponent, typeof i19.FrequencyDailyComponent, typeof i20.FrequencyWeeklyComponent, typeof i21.FrequencyMonthlyComponent, typeof i22.FrequencyQuarterlyComponent, typeof i23.FrequencyBiannualComponent, typeof i24.FrequencyAnnualComponent, typeof i25.FrequencyOneTimeComponent, typeof i26.FrequencyRandomComponent, typeof i27.FrequencyOnCompletionOfComponent, typeof i28.FrequencyOngoingComponent, typeof i29.FrequencyTopComponent, typeof i30.FrequencyLifecycleComponent, typeof i31.FrequencyDueDateComponent, typeof i32.FrequencyCheckboxListComponent, typeof i33.FrequencyRadioListComponent, typeof i34.AddMultipleResponsibilityComponent, typeof i35.BulkResponsibilityViewComponent, typeof i36.CheckpointsPolicyContainerComponent, typeof i37.CheckpointsPolicyListComponent, typeof i38.CheckpointsPolicyQuestionsComponent, typeof i39.WorkflowSurveyFormComponent, typeof i40.LogAnIssueComponent, typeof i41.FilterPipe, typeof i42.RadioListComponent, typeof i43.CreateDocumentsComponent, typeof i44.FrameworkListComponent, typeof i45.ParentTableComponent, typeof i46.CheckpointFloatingBarComponent, typeof i47.RiskClassificationComponent, typeof i48.ShortMergePipe, typeof i49.FormatHtmlPipe, typeof i50.WithinDataPipe, typeof i51.rcTreeToolTipPipe, typeof i52.ResponsibilityRiskSelectorComponent, typeof i53.ArrayFilterPipe, typeof i54.AuditCategoryListComponent, typeof i55.DocumentSectionComponent, typeof i55.DocumentSectionComponent, typeof i56.WorkflowAssessmentComponent, typeof i57.ImportAnAssessmentComponent, typeof i58.AssessmentListComponent, typeof i59.AssessmentListLoaderComponent, typeof i60.AssessmentListSubLoaderComponent, typeof i61.ProgramListingComponent, typeof i62.WorkflowProgramComponent, typeof i63.RolesListComponent, typeof i64.FrameworkListTableComponent, typeof i65.FrameworkResponsibilityTableComponent, typeof i66.FrameworkTableLoaderComponent, typeof i67.ArrayConcatPipe, typeof i68.SpaceTrimPipe, typeof i69.FrequencyDialogContainerComponent, typeof i70.FrequencyDialogWeeklyComponent, typeof i71.FrequencyDialogTopComponent, typeof i72.FrequencyDialogDueDateComponent, typeof i73.FrequencyDialogCheckboxListComponent, typeof i74.FrequencyDialogMonthlyComponent, typeof i75.FrequencyDialogQuarterlyComponent, typeof i76.FrequencyDialogRadioListComponent, typeof i77.FrequencyDialogBiannualComponent, typeof i78.FrequencyDialogAnnualComponent, typeof i79.FrequencyDialogOneTimeComponent, typeof i80.AddMultipleResponsibilityContainerComponent, typeof i81.AddMultipleResponsibilityWithTabComponent, typeof i82.FrequencyResponsibilityListComponent, typeof i83.ApprovalWorkflowComponent, typeof i84.SelectApproversComponent, typeof i85.PolicyAccessComponent, typeof i86.ApprovalWorkflowListComponent, typeof i87.ApprovalCreateFormComponent, typeof i88.LinkProgramComponent, typeof i89.TooltipValidationPipe, typeof i90.LinkRelatedPoliciesComponent, typeof i91.ListContainerComponent], [typeof i92.ReactiveFormsModule, typeof i93.CreateAssessmentModule, typeof i94.VcomplyEditorModule, typeof i95.CommonModule, typeof i96.FormgroupModule, typeof i97.TooltipModule, typeof i98.PopoverModule, typeof i99.LineLoaderModule, typeof i92.FormsModule, typeof i100.SelectModule, typeof i101.NgxMaterialTimepickerModule, typeof i102.DpDatePickerModule, typeof i103.NoDataModule, typeof i104.VLoaderModule, typeof i105.SmileyDialogModule, typeof i106.SnackBarModule, typeof i107.HttpClientModule, typeof i108.SmileyDialogInlineModule, typeof i109.ClickOutsideModule, typeof i110.PopoverHoverModule, typeof i111.PaginationModule, typeof i93.CreateAssessmentModule, typeof i112.ActionDialogModule, typeof i113.AssessmentPreviewModule, typeof i114.CreateProgramUiModule, typeof i115.DirectiveModule, typeof i116.GrcObjectModule, typeof i117.RcListModule, typeof i118.PipesModule, typeof i119.FloatingBarModule, typeof i120.GroupUsersListComponent, typeof i121.ListLoaderModule, typeof i122.GrcObjectListComponent, typeof i123.TimePickerModule, typeof i124.MultiSelectModule, typeof i125.PolicyTemplateModule, typeof i126.ReportCaseModule, typeof i127.FormatAndEvidenceModule, typeof i128.CheckboxListModule, typeof i129.RadioListWithPaginationModule, typeof i130.LinkResponsibilityModule, typeof i131.ProgramListModule], [typeof i1.WorkflowEngineContainerComponent]>;
137
139
  static ɵinj: i0.ɵɵInjectorDeclaration<VComplyWorkflowEngineModule>;
138
140
  }
@@ -11,8 +11,8 @@ export declare class WorkflowProgramComponent implements OnInit {
11
11
  private programService;
12
12
  private authService;
13
13
  private uiKitService;
14
- private iframeService;
15
14
  private changeRef;
15
+ private iframeService;
16
16
  constants: {
17
17
  categoryType: {
18
18
  label: string;
@@ -85,6 +85,7 @@ export declare class WorkflowProgramComponent implements OnInit {
85
85
  allowedFeature: any;
86
86
  addToProgramDetails: any;
87
87
  orgDetails: any;
88
+ programDetails: any;
88
89
  panelTitleDefaultReviewer: string;
89
90
  panelTitleOwner: string;
90
91
  panelTitleReviewer: string;
@@ -103,7 +104,7 @@ export declare class WorkflowProgramComponent implements OnInit {
103
104
  assignorId: number[];
104
105
  disableReviewerIds: any[];
105
106
  disableOverseerIds: any[];
106
- constructor(fb: UntypedFormBuilder, programService: ProgramsService, authService: AuthService, uiKitService: UiKitService, iframeService: IframeService, changeRef: ChangeDetectorRef);
107
+ constructor(fb: UntypedFormBuilder, programService: ProgramsService, authService: AuthService, uiKitService: UiKitService, changeRef: ChangeDetectorRef, iframeService: IframeService);
107
108
  noWhitespaceValidator(control: UntypedFormControl): {
108
109
  whitespace: boolean;
109
110
  } | null;
@@ -164,7 +165,6 @@ export declare class WorkflowProgramComponent implements OnInit {
164
165
  returnIds(list: any[], key: string): any[];
165
166
  refreshList(): void;
166
167
  removeRole(evt: any): void;
167
- setDefaultAssignee(evt: any): void;
168
168
  setDefaultAssigneeOnRemove(evt: any, type: any): void;
169
169
  setDefaultReviewer(evt: any): void;
170
170
  setDefaultOverseer(evt: any): void;
@@ -207,11 +207,13 @@ export declare class WorkflowProgramComponent implements OnInit {
207
207
  * Get program details when user is trying to edit program
208
208
  */
209
209
  getProgramDetails(): void;
210
+ populateProgramDetails(res: any): void;
210
211
  populateMembers(res: any): void;
211
212
  populateGroups(res: any): void;
212
213
  resetAdditionalOption(): void;
213
214
  checkProgramOptionField(): any;
214
215
  enablefeature(): void;
216
+ handleDataPopulation(): void;
215
217
  static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowProgramComponent, never>;
216
- static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowProgramComponent, "app-workflow-program", never, { "canFrameworkChange": { "alias": "canFrameworkChange"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "programId": { "alias": "programId"; "required": false; }; "programType": { "alias": "programType"; "required": false; }; "allowedFeature": { "alias": "allowedFeature"; "required": false; }; "addToProgramDetails": { "alias": "addToProgramDetails"; "required": false; }; "orgDetails": { "alias": "orgDetails"; "required": false; }; }, { "pickerChanged": "pickerChanged"; "populateOption": "populateOption"; "closeWorkflow": "closeWorkflow"; "showConfirmationAlert": "showConfirmationAlert"; "disconnectRefresh": "disconnectRefresh"; "refreshForm": "refreshForm"; "hideElementsFromMoreOptions": "hideElementsFromMoreOptions"; "onRemovingRole": "onRemovingRole"; "disableElementsFromMoreOptions": "disableElementsFromMoreOptions"; }, never, never, false, never>;
218
+ static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowProgramComponent, "app-workflow-program", never, { "canFrameworkChange": { "alias": "canFrameworkChange"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "programId": { "alias": "programId"; "required": false; }; "programType": { "alias": "programType"; "required": false; }; "allowedFeature": { "alias": "allowedFeature"; "required": false; }; "addToProgramDetails": { "alias": "addToProgramDetails"; "required": false; }; "orgDetails": { "alias": "orgDetails"; "required": false; }; "programDetails": { "alias": "programDetails"; "required": false; }; }, { "pickerChanged": "pickerChanged"; "populateOption": "populateOption"; "closeWorkflow": "closeWorkflow"; "showConfirmationAlert": "showConfirmationAlert"; "disconnectRefresh": "disconnectRefresh"; "refreshForm": "refreshForm"; "hideElementsFromMoreOptions": "hideElementsFromMoreOptions"; "onRemovingRole": "onRemovingRole"; "disableElementsFromMoreOptions": "disableElementsFromMoreOptions"; }, never, never, false, never>;
217
219
  }
@@ -113,7 +113,7 @@ export declare class WorkflowRiskComponent implements OnInit {
113
113
  setPopupButtons(): void;
114
114
  getRiskDetails(riskId: any): void;
115
115
  populateOptionalFields(): void;
116
- setCategoryType(type: any): "strategic" | "compliance" | "operational" | "others";
116
+ setCategoryType(type: any): "others" | "strategic" | "operational" | "compliance";
117
117
  getRCList(): void;
118
118
  getCategoryList(): void;
119
119
  getOwnersList(): void;
@@ -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
- description: {
35
- text: any;
36
- attachments: any;
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
- program_objective: {
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.48",
3
+ "version": "6.0.49",
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 "
@@ -1,21 +0,0 @@
1
- export const WORD_CONSTANTS = {
2
- MS_WORD_OPTION: 'Create a Policy using MS Word',
3
- createWordPolicy_snackbar_message: "Oops! Something went wrong and we were unable to complete this action. Let's give it another try, shall we?",
4
- };
5
- export const WORD_PAYLOAD = {
6
- module_name: 'POLICY',
7
- increment: 'MAJOR',
8
- action: 'CREATED',
9
- ms_word_type: 1,
10
- docx_file_path: '',
11
- url: {
12
- edit: '',
13
- preview: '',
14
- },
15
- };
16
- export const WORD_URL_CONSTANTS = {
17
- new_word_policy_url: 'https://word.new',
18
- createVersion: 'createVersion',
19
- workroom_url: '/all/policy/workroom?id=',
20
- };
21
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibXMtd29yZC5jb25zdGFudHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy92eC13b3JrZmxvdy1lbmdpbmUvc3JjL2xpYi93b3JrZmxvdy1wb2xpY3kvbXMtd29yZC5jb25zdGFudHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFDLE1BQU0sY0FBYyxHQUFHO0lBQzVCLGNBQWMsRUFBRSwrQkFBK0I7SUFDL0MsaUNBQWlDLEVBQy9CLDZHQUE2RztDQUNoSCxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0sWUFBWSxHQUFHO0lBQzFCLFdBQVcsRUFBRSxRQUFRO0lBQ3JCLFNBQVMsRUFBRSxPQUFPO0lBQ2xCLE1BQU0sRUFBRSxTQUFTO0lBQ2pCLFlBQVksRUFBRSxDQUFDO0lBQ2YsY0FBYyxFQUFFLEVBQUU7SUFDbEIsR0FBRyxFQUFFO1FBQ0gsSUFBSSxFQUFFLEVBQUU7UUFDUixPQUFPLEVBQUUsRUFBRTtLQUNaO0NBQ0YsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLGtCQUFrQixHQUFHO0lBQ2hDLG1CQUFtQixFQUFFLGtCQUFrQjtJQUN2QyxhQUFhLEVBQUUsZUFBZTtJQUM5QixZQUFZLEVBQUUsMEJBQTBCO0NBQ3pDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3QgV09SRF9DT05TVEFOVFMgPSB7XG4gIE1TX1dPUkRfT1BUSU9OOiAnQ3JlYXRlIGEgUG9saWN5IHVzaW5nIE1TIFdvcmQnLFxuICBjcmVhdGVXb3JkUG9saWN5X3NuYWNrYmFyX21lc3NhZ2U6XG4gICAgXCJPb3BzISBTb21ldGhpbmcgd2VudCB3cm9uZyBhbmQgd2Ugd2VyZSB1bmFibGUgdG8gY29tcGxldGUgdGhpcyBhY3Rpb24uIExldCdzIGdpdmUgaXQgYW5vdGhlciB0cnksIHNoYWxsIHdlP1wiLFxufTtcblxuZXhwb3J0IGNvbnN0IFdPUkRfUEFZTE9BRCA9IHtcbiAgbW9kdWxlX25hbWU6ICdQT0xJQ1knLFxuICBpbmNyZW1lbnQ6ICdNQUpPUicsXG4gIGFjdGlvbjogJ0NSRUFURUQnLFxuICBtc193b3JkX3R5cGU6IDEsXG4gIGRvY3hfZmlsZV9wYXRoOiAnJyxcbiAgdXJsOiB7XG4gICAgZWRpdDogJycsXG4gICAgcHJldmlldzogJycsXG4gIH0sXG59O1xuXG5leHBvcnQgY29uc3QgV09SRF9VUkxfQ09OU1RBTlRTID0ge1xuICBuZXdfd29yZF9wb2xpY3lfdXJsOiAnaHR0cHM6Ly93b3JkLm5ldycsXG4gIGNyZWF0ZVZlcnNpb246ICdjcmVhdGVWZXJzaW9uJyxcbiAgd29ya3Jvb21fdXJsOiAnL2FsbC9wb2xpY3kvd29ya3Jvb20/aWQ9Jyxcbn07XG4iXX0=
@@ -1,38 +0,0 @@
1
- import { HttpHeaders } from '@angular/common/http';
2
- import { Injectable } from '@angular/core';
3
- import { WORD_PAYLOAD, WORD_URL_CONSTANTS } from '../workflow-policy/ms-word.constants';
4
- import * as i0 from "@angular/core";
5
- import * as i1 from "@angular/common/http";
6
- import * as i2 from "./auth.service";
7
- import * as i3 from "../configurations";
8
- export class PolicyAPIService {
9
- constructor(http, authService, config) {
10
- this.http = http;
11
- this.authService = authService;
12
- this.config = config;
13
- this.env = config?.envConfig;
14
- }
15
- payloadBuilder_wordPolicy(policyId) {
16
- const tokenDetails = this.authService.getUserDetails();
17
- const memberId = tokenDetails.user.id;
18
- return {
19
- member_id: memberId,
20
- document_id: policyId,
21
- ...WORD_PAYLOAD,
22
- };
23
- }
24
- createWordPolicy(policyId) {
25
- const payload = this.payloadBuilder_wordPolicy(policyId);
26
- const headers = new HttpHeaders().set('token', this.authService.getAuthorizationToken());
27
- return this.http.post(this.env.createVersion + WORD_URL_CONSTANTS.createVersion, payload, { headers });
28
- }
29
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PolicyAPIService, deps: [{ token: i1.HttpClient }, { token: i2.AuthService }, { token: i3.Configurations }], target: i0.ɵɵFactoryTarget.Injectable }); }
30
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PolicyAPIService, providedIn: 'root' }); }
31
- }
32
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PolicyAPIService, decorators: [{
33
- type: Injectable,
34
- args: [{
35
- providedIn: 'root',
36
- }]
37
- }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: i2.AuthService }, { type: i3.Configurations }]; } });
38
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9saWN5LWFwaS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdngtd29ya2Zsb3ctZW5naW5lL3NyYy9saWIvd29ya2Zsb3ctc2VydmljZXMvcG9saWN5LWFwaS5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBYyxXQUFXLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUMvRCxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRTNDLE9BQU8sRUFBRyxZQUFZLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQzs7Ozs7QUFNekYsTUFBTSxPQUFPLGdCQUFnQjtJQUczQixZQUFvQixJQUFnQixFQUFVLFdBQXdCLEVBQVUsTUFBc0I7UUFBbEYsU0FBSSxHQUFKLElBQUksQ0FBWTtRQUFVLGdCQUFXLEdBQVgsV0FBVyxDQUFhO1FBQVUsV0FBTSxHQUFOLE1BQU0sQ0FBZ0I7UUFDcEcsSUFBSSxDQUFDLEdBQUcsR0FBRyxNQUFNLEVBQUUsU0FBUyxDQUFDO0lBQy9CLENBQUM7SUFFRCx5QkFBeUIsQ0FBQyxRQUFnQjtRQUN4QyxNQUFNLFlBQVksR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQ3ZELE1BQU0sUUFBUSxHQUFHLFlBQVksQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDO1FBQ3RDLE9BQU87WUFDTCxTQUFTLEVBQUUsUUFBUTtZQUNuQixXQUFXLEVBQUUsUUFBUTtZQUNyQixHQUFHLFlBQVk7U0FDaEIsQ0FBQztJQUNKLENBQUM7SUFFRCxnQkFBZ0IsQ0FBQyxRQUFnQjtRQUMvQixNQUFNLE9BQU8sR0FBRyxJQUFJLENBQUMseUJBQXlCLENBQUMsUUFBUSxDQUFDLENBQUM7UUFDekQsTUFBTSxPQUFPLEdBQUcsSUFBSSxXQUFXLEVBQUUsQ0FBQyxHQUFHLENBQ25DLE9BQU8sRUFDUCxJQUFJLENBQUMsV0FBVyxDQUFDLHFCQUFxQixFQUFFLENBQ3pDLENBQUM7UUFDRixPQUFPLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFNLElBQUksQ0FBQyxHQUFHLENBQUMsYUFBYSxHQUFHLGtCQUFrQixDQUFDLGFBQWEsRUFBRSxPQUFPLEVBQUUsRUFBRSxPQUFPLEVBQUUsQ0FBQyxDQUFDO0lBQzlHLENBQUM7K0dBeEJVLGdCQUFnQjttSEFBaEIsZ0JBQWdCLGNBRmYsTUFBTTs7NEZBRVAsZ0JBQWdCO2tCQUg1QixVQUFVO21CQUFDO29CQUNWLFVBQVUsRUFBRSxNQUFNO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBDbGllbnQsIEh0dHBIZWFkZXJzIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uL2h0dHAnO1xuaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQXV0aFNlcnZpY2UgfSBmcm9tICcuL2F1dGguc2VydmljZSc7XG5pbXBvcnQgeyAgV09SRF9QQVlMT0FELCBXT1JEX1VSTF9DT05TVEFOVFMgfSBmcm9tICcuLi93b3JrZmxvdy1wb2xpY3kvbXMtd29yZC5jb25zdGFudHMnO1xuXG5pbXBvcnQgeyBDb25maWd1cmF0aW9ucyB9IGZyb20gJy4uL2NvbmZpZ3VyYXRpb25zJztcbkBJbmplY3RhYmxlKHtcbiAgcHJvdmlkZWRJbjogJ3Jvb3QnLFxufSlcbmV4cG9ydCBjbGFzcyBQb2xpY3lBUElTZXJ2aWNlIHtcbiAgZW52OiBhbnk7XG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSBodHRwOiBIdHRwQ2xpZW50LCBwcml2YXRlIGF1dGhTZXJ2aWNlOiBBdXRoU2VydmljZSwgcHJpdmF0ZSBjb25maWc6IENvbmZpZ3VyYXRpb25zKSB7XG4gICAgdGhpcy5lbnYgPSBjb25maWc/LmVudkNvbmZpZztcbiAgfVxuXG4gIHBheWxvYWRCdWlsZGVyX3dvcmRQb2xpY3kocG9saWN5SWQ6IHN0cmluZykge1xuICAgIGNvbnN0IHRva2VuRGV0YWlscyA9IHRoaXMuYXV0aFNlcnZpY2UuZ2V0VXNlckRldGFpbHMoKTtcbiAgICBjb25zdCBtZW1iZXJJZCA9IHRva2VuRGV0YWlscy51c2VyLmlkO1xuICAgIHJldHVybiB7XG4gICAgICBtZW1iZXJfaWQ6IG1lbWJlcklkLFxuICAgICAgZG9jdW1lbnRfaWQ6IHBvbGljeUlkLFxuICAgICAgLi4uV09SRF9QQVlMT0FELFxuICAgIH07XG4gIH1cblxuICBjcmVhdGVXb3JkUG9saWN5KHBvbGljeUlkOiBzdHJpbmcpIHtcbiAgICBjb25zdCBwYXlsb2FkID0gdGhpcy5wYXlsb2FkQnVpbGRlcl93b3JkUG9saWN5KHBvbGljeUlkKTtcbiAgICBjb25zdCBoZWFkZXJzID0gbmV3IEh0dHBIZWFkZXJzKCkuc2V0KFxuICAgICAgJ3Rva2VuJyxcbiAgICAgIHRoaXMuYXV0aFNlcnZpY2UuZ2V0QXV0aG9yaXphdGlvblRva2VuKClcbiAgICApO1xuICAgIHJldHVybiB0aGlzLmh0dHAucG9zdDxhbnk+KHRoaXMuZW52LmNyZWF0ZVZlcnNpb24gKyBXT1JEX1VSTF9DT05TVEFOVFMuY3JlYXRlVmVyc2lvbiwgcGF5bG9hZCwgeyBoZWFkZXJzIH0pO1xuICB9XG59XG4iXX0=
@@ -1,20 +0,0 @@
1
- export declare const WORD_CONSTANTS: {
2
- MS_WORD_OPTION: string;
3
- createWordPolicy_snackbar_message: string;
4
- };
5
- export declare const WORD_PAYLOAD: {
6
- module_name: string;
7
- increment: string;
8
- action: string;
9
- ms_word_type: number;
10
- docx_file_path: string;
11
- url: {
12
- edit: string;
13
- preview: string;
14
- };
15
- };
16
- export declare const WORD_URL_CONSTANTS: {
17
- new_word_policy_url: string;
18
- createVersion: string;
19
- workroom_url: string;
20
- };
@@ -1,27 +0,0 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { AuthService } from './auth.service';
3
- import { Configurations } from '../configurations';
4
- import * as i0 from "@angular/core";
5
- export declare class PolicyAPIService {
6
- private http;
7
- private authService;
8
- private config;
9
- env: any;
10
- constructor(http: HttpClient, authService: AuthService, config: Configurations);
11
- payloadBuilder_wordPolicy(policyId: string): {
12
- module_name: string;
13
- increment: string;
14
- action: string;
15
- ms_word_type: number;
16
- docx_file_path: string;
17
- url: {
18
- edit: string;
19
- preview: string;
20
- };
21
- member_id: any;
22
- document_id: string;
23
- };
24
- createWordPolicy(policyId: string): import("rxjs").Observable<any>;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<PolicyAPIService, never>;
26
- static ɵprov: i0.ɵɵInjectableDeclaration<PolicyAPIService>;
27
- }