vcomply-workflow-engine 5.0.2 → 5.0.4

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 (65) hide show
  1. package/esm2022/lib/constants/assessts.constants.mjs +5 -3
  2. package/esm2022/lib/more-option/more-option.component.mjs +98 -11
  3. package/esm2022/lib/pipes/pipes.module.mjs +10 -5
  4. package/esm2022/lib/pipes/user.pipe.mjs +17 -0
  5. package/esm2022/lib/report-a-case/components/assignee/assignee.component.mjs +42 -6
  6. package/esm2022/lib/report-a-case/components/case-assignees/case-assignees.component.mjs +131 -25
  7. package/esm2022/lib/report-a-case/components/case-category/case-category.component.mjs +157 -11
  8. package/esm2022/lib/report-a-case/components/case-details/case-details.component.mjs +61 -15
  9. package/esm2022/lib/report-a-case/components/case-owners/case-owners.component.mjs +222 -0
  10. package/esm2022/lib/report-a-case/components/case-priority/case-priority.component.mjs +88 -21
  11. package/esm2022/lib/report-a-case/components/case-resolution-deadline/case-resolution-deadline.component.mjs +62 -30
  12. package/esm2022/lib/report-a-case/components/case-type-dropdown/case-dropdown.component.mjs +81 -12
  13. package/esm2022/lib/report-a-case/components/chip-capsule/chip-capsule.component.mjs +4 -4
  14. package/esm2022/lib/report-a-case/components/due-date/due-date.component.mjs +196 -20
  15. package/esm2022/lib/report-a-case/components/field-holder/field-holder.component.mjs +5 -5
  16. package/esm2022/lib/report-a-case/components/form-selectBox/form-selectBox.component.mjs +42 -30
  17. package/esm2022/lib/report-a-case/components/information-block/information-block.component.mjs +19 -6
  18. package/esm2022/lib/report-a-case/components/rc-details/rc-details.component.mjs +246 -15
  19. package/esm2022/lib/report-a-case/components/report-date/report-date.component.mjs +44 -21
  20. package/esm2022/lib/report-a-case/constants/api.constants.mjs +3 -2
  21. package/esm2022/lib/report-a-case/constants/report-case.constants.mjs +196 -7
  22. package/esm2022/lib/report-a-case/report-case.module.mjs +5 -2
  23. package/esm2022/lib/report-a-case/services/report-a-case.service.mjs +14 -1
  24. package/esm2022/lib/report-a-case/workflow-case/workflow-case.component.mjs +413 -132
  25. package/esm2022/lib/services/RBAC.service.mjs +66 -0
  26. package/esm2022/lib/services/api.service.mjs +32 -0
  27. package/esm2022/lib/services/report-case-permission.service.mjs +37 -0
  28. package/esm2022/lib/sharedComponents/category-list-selection/category-list-selection/category-list-selection.component.mjs +22 -11
  29. package/esm2022/lib/sharedComponents/format-and-evidence/format-and-evidence.component.mjs +14 -5
  30. package/esm2022/lib/sharedComponents/radio-list-with-pagination/radio-list-with-pagination.module.mjs +5 -4
  31. package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +60 -27
  32. package/fesm2022/vcomply-workflow-engine.mjs +3490 -1408
  33. package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
  34. package/lib/constants/assessts.constants.d.ts +2 -0
  35. package/lib/more-option/more-option.component.d.ts +4 -1
  36. package/lib/pipes/pipes.module.d.ts +3 -2
  37. package/lib/pipes/user.pipe.d.ts +7 -0
  38. package/lib/report-a-case/components/assignee/assignee.component.d.ts +14 -2
  39. package/lib/report-a-case/components/case-assignees/case-assignees.component.d.ts +48 -5
  40. package/lib/report-a-case/components/case-category/case-category.component.d.ts +48 -2
  41. package/lib/report-a-case/components/case-details/case-details.component.d.ts +35 -1
  42. package/lib/report-a-case/components/case-owners/case-owners.component.d.ts +132 -0
  43. package/lib/report-a-case/components/case-priority/case-priority.component.d.ts +44 -2
  44. package/lib/report-a-case/components/case-resolution-deadline/case-resolution-deadline.component.d.ts +42 -7
  45. package/lib/report-a-case/components/case-type-dropdown/case-dropdown.component.d.ts +43 -2
  46. package/lib/report-a-case/components/case-type-slider/case-type.component.d.ts +28 -0
  47. package/lib/report-a-case/components/due-date/due-date.component.d.ts +72 -11
  48. package/lib/report-a-case/components/field-holder/field-holder.component.d.ts +2 -0
  49. package/lib/report-a-case/components/form-selectBox/form-selectBox.component.d.ts +9 -15
  50. package/lib/report-a-case/components/information-block/information-block.component.d.ts +6 -0
  51. package/lib/report-a-case/components/rc-details/rc-details.component.d.ts +47 -1
  52. package/lib/report-a-case/components/report-date/report-date.component.d.ts +34 -0
  53. package/lib/report-a-case/constants/api.constants.d.ts +1 -0
  54. package/lib/report-a-case/constants/report-case.constants.d.ts +192 -2
  55. package/lib/report-a-case/report-case.module.d.ts +21 -20
  56. package/lib/report-a-case/services/report-a-case.service.d.ts +3 -0
  57. package/lib/report-a-case/workflow-case/workflow-case.component.d.ts +268 -65
  58. package/lib/services/RBAC.service.d.ts +27 -0
  59. package/lib/services/api.service.d.ts +13 -0
  60. package/lib/services/report-case-permission.service.d.ts +13 -0
  61. package/lib/sharedComponents/category-list-selection/category-list-selection/category-list-selection.component.d.ts +2 -1
  62. package/lib/sharedComponents/radio-list-with-pagination/radio-list-with-pagination.module.d.ts +2 -1
  63. package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +10 -1
  64. package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
  65. package/package.json +1 -1
@@ -1,7 +1,9 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { DatePickerComponent } from 'ng2-date-picker';
3
+ import { CommonService } from '../../../services/common.service';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class ReportDateComponent {
6
+ private commonService;
5
7
  ASSETS: {
6
8
  responsibility_center: string;
7
9
  case_type: string;
@@ -10,11 +12,15 @@ export declare class ReportDateComponent {
10
12
  what: string;
11
13
  case_resolution_deadline: string;
12
14
  case_assignees: string;
15
+ format_evidence: string;
16
+ case_owners: string;
13
17
  };
14
18
  reportTexts: {
15
19
  case_type: string;
16
20
  report_case: string;
17
21
  add_case: string;
22
+ default_flow: string;
23
+ receive_updates: string;
18
24
  case_details: {
19
25
  name: {
20
26
  title: string;
@@ -27,6 +33,13 @@ export declare class ReportDateComponent {
27
33
  rc: {
28
34
  title: string;
29
35
  placeholder: string;
36
+ singularText: string;
37
+ pluralText: string;
38
+ mainRcPlaceholder: string;
39
+ separateRcText: string;
40
+ separateRcTooltip: string;
41
+ sameRcText: string;
42
+ sameRcTooltip: string;
30
43
  };
31
44
  case_type: {
32
45
  title: string;
@@ -36,6 +49,10 @@ export declare class ReportDateComponent {
36
49
  title: string;
37
50
  placeholder: string;
38
51
  };
52
+ additional_category: {
53
+ title: string;
54
+ placeholder: string;
55
+ };
39
56
  when: {
40
57
  title: string;
41
58
  placeholder: string;
@@ -57,14 +74,29 @@ export declare class ReportDateComponent {
57
74
  title: string;
58
75
  placeholder: string;
59
76
  };
77
+ owners: {
78
+ title: string;
79
+ placeholder: string;
80
+ };
60
81
  };
61
82
  tooltipMessage: {
62
83
  report_case: string;
63
84
  add_case: string;
85
+ receive_updates: string;
64
86
  rc: string;
65
87
  };
66
88
  errorMessage: {
67
89
  rc: string;
90
+ name: string;
91
+ description: string;
92
+ caseType: string;
93
+ reportDate: string;
94
+ priority: string;
95
+ mainRc: string;
96
+ caseOwner: string;
97
+ caseAssignee: string;
98
+ dueDate: string;
99
+ stageAssignee: string;
68
100
  };
69
101
  };
70
102
  datePickerOverlay: boolean;
@@ -78,10 +110,12 @@ export declare class ReportDateComponent {
78
110
  payload: any;
79
111
  fieldSelected: string;
80
112
  validationError: any;
113
+ constructor(commonService: CommonService);
81
114
  datePicker: DatePickerComponent;
82
115
  datePickerPopUp: ElementRef;
83
116
  openDatePicker(): void;
84
117
  closeDatePicker(evt: any): void;
118
+ documentClick(event: any): void;
85
119
  static ɵfac: i0.ɵɵFactoryDeclaration<ReportDateComponent, never>;
86
120
  static ɵcmp: i0.ɵɵComponentDeclaration<ReportDateComponent, "app-report-date", never, { "payload": { "alias": "payload"; "required": false; }; "fieldSelected": { "alias": "fieldSelected"; "required": false; }; "validationError": { "alias": "validationError"; "required": false; }; }, {}, never, never, false, never>;
87
121
  }
@@ -3,4 +3,5 @@ export declare const API_URLS: {
3
3
  GET_ALL_PRIORITIES: string;
4
4
  GET_ALL_CATEGORIES: string;
5
5
  GET_STAGE_DETAILS: string;
6
+ GET_CASE_OWNERS: string;
6
7
  };
@@ -2,6 +2,8 @@ export declare const REPORT_CASE: {
2
2
  case_type: string;
3
3
  report_case: string;
4
4
  add_case: string;
5
+ default_flow: string;
6
+ receive_updates: string;
5
7
  case_details: {
6
8
  name: {
7
9
  title: string;
@@ -14,6 +16,13 @@ export declare const REPORT_CASE: {
14
16
  rc: {
15
17
  title: string;
16
18
  placeholder: string;
19
+ singularText: string;
20
+ pluralText: string;
21
+ mainRcPlaceholder: string;
22
+ separateRcText: string;
23
+ separateRcTooltip: string;
24
+ sameRcText: string;
25
+ sameRcTooltip: string;
17
26
  };
18
27
  case_type: {
19
28
  title: string;
@@ -23,6 +32,10 @@ export declare const REPORT_CASE: {
23
32
  title: string;
24
33
  placeholder: string;
25
34
  };
35
+ additional_category: {
36
+ title: string;
37
+ placeholder: string;
38
+ };
26
39
  when: {
27
40
  title: string;
28
41
  placeholder: string;
@@ -44,14 +57,29 @@ export declare const REPORT_CASE: {
44
57
  title: string;
45
58
  placeholder: string;
46
59
  };
60
+ owners: {
61
+ title: string;
62
+ placeholder: string;
63
+ };
47
64
  };
48
65
  tooltipMessage: {
49
66
  report_case: string;
50
67
  add_case: string;
68
+ receive_updates: string;
51
69
  rc: string;
52
70
  };
53
71
  errorMessage: {
54
72
  rc: string;
73
+ name: string;
74
+ description: string;
75
+ caseType: string;
76
+ reportDate: string;
77
+ priority: string;
78
+ mainRc: string;
79
+ caseOwner: string;
80
+ caseAssignee: string;
81
+ dueDate: string;
82
+ stageAssignee: string;
55
83
  };
56
84
  };
57
85
  export declare const DEFAULT_FORM_CONFIG: {
@@ -110,6 +138,74 @@ export declare const REPORT_CASE_PAYLOAD: {
110
138
  linked_assessment_issues: {};
111
139
  source: string;
112
140
  };
141
+ export declare const ADD_TO_CASE_WORKFLOW: {
142
+ name: string;
143
+ description: {
144
+ text: string;
145
+ attachments: never[];
146
+ };
147
+ receive_updates: boolean;
148
+ rc_details: {
149
+ ids: never[];
150
+ separate_rc_cases: boolean;
151
+ main_rc_id: string;
152
+ };
153
+ reported_date: string;
154
+ case_type: {
155
+ id: string;
156
+ custom_fields: never[];
157
+ };
158
+ priority: {
159
+ id: string;
160
+ custom_fields: never[];
161
+ };
162
+ category: {
163
+ ids: never[];
164
+ custom_fields: never[];
165
+ };
166
+ additional_category: {
167
+ ids: never[];
168
+ custom_fields: never[];
169
+ };
170
+ supporting_documents: never[];
171
+ stage: string;
172
+ risk_class: number;
173
+ caseToWorkflow: {
174
+ workflow_id: string;
175
+ owners: never[];
176
+ assignees: never[];
177
+ assignees_group: never[];
178
+ resolution_deadline: {
179
+ due_date: string;
180
+ stages_assignees: never[];
181
+ assignee_remind_before: number;
182
+ owner_remind_before: number;
183
+ };
184
+ exception_type: string;
185
+ associated_risks: {
186
+ text: string;
187
+ attachments: never[];
188
+ };
189
+ oversights: {
190
+ cc_ids: never[];
191
+ cc_failures_ids: never[];
192
+ };
193
+ evidence_enabled: boolean;
194
+ recommendations: {
195
+ text: string;
196
+ attachments: never[];
197
+ };
198
+ };
199
+ responsibilities_Linked: never[];
200
+ linked_assessment_issues: {
201
+ resp_id: string;
202
+ due_date_id: string;
203
+ assessment_id: string;
204
+ question_id: string;
205
+ auditee_id: number;
206
+ };
207
+ source: string;
208
+ };
113
209
  export declare const ADDITIONAL_OPTION_PAYLOAD: {
114
210
  workflow_id: string;
115
211
  owners: never[];
@@ -168,7 +264,7 @@ export declare const HELPER_TEXT: {
168
264
  };
169
265
  export declare const WORKFLOW_DETAILS_PARAMS: {
170
266
  rc_details: {
171
- ids: string[];
267
+ id: string;
172
268
  };
173
269
  case_type: {
174
270
  id: string;
@@ -177,6 +273,100 @@ export declare const WORKFLOW_DETAILS_PARAMS: {
177
273
  id: string;
178
274
  };
179
275
  category: {
180
- ids: never[];
276
+ id: string;
277
+ };
278
+ };
279
+ export declare const SIDE_SELECTOR_ELEMENTS: string[];
280
+ export declare const RISK_CLASSIFICATION: {
281
+ name: string;
282
+ value: number;
283
+ class: string;
284
+ }[];
285
+ export declare const ADDITIONAL_OPTION_STATUS: {
286
+ EXCEPTION_TYPE: boolean;
287
+ EVIDENCE: boolean;
288
+ PRIORITY: boolean;
289
+ ISSUE_TYPE: boolean;
290
+ ASSOCIATED_RISKS: boolean;
291
+ OVERSIGHT: boolean;
292
+ RECOMMENDED_ACTIONS: boolean;
293
+ RISK_CLASSIFICATION: boolean;
294
+ };
295
+ export declare const VALIDATION_ERROR: {
296
+ name: {
297
+ isError: boolean;
298
+ message: string;
299
+ };
300
+ description: {
301
+ isError: boolean;
302
+ message: string;
303
+ };
304
+ reportDate: {
305
+ isError: boolean;
306
+ message: string;
307
+ };
308
+ caseType: {
309
+ isError: boolean;
310
+ message: string;
311
+ };
312
+ priority: {
313
+ isError: boolean;
314
+ message: string;
315
+ };
316
+ rc: {
317
+ isError: boolean;
318
+ message: string;
319
+ };
320
+ mainRc: {
321
+ isError: boolean;
322
+ message: string;
323
+ };
324
+ caseOwner: {
325
+ isError: boolean;
326
+ message: string;
327
+ };
328
+ caseAssignee: {
329
+ isError: boolean;
330
+ message: string;
181
331
  };
182
332
  };
333
+ export declare const ACTION_BUTTONS: {
334
+ buttonText: string;
335
+ class: string;
336
+ id: string;
337
+ }[];
338
+ export declare const SMILEY_MESSAGE = "You're all set!";
339
+ export declare const ADD_TO_WORKFLOW_MOCK: {
340
+ workflow_id: string;
341
+ owners: string[];
342
+ assignees: string[];
343
+ assignees_group: string[];
344
+ resolution_deadline: {
345
+ due_date: string;
346
+ stages_assignees: {
347
+ stage_id: string;
348
+ assignee_id: string;
349
+ due_date: string;
350
+ }[];
351
+ assignee_remind_before: number;
352
+ owner_remind_before: number;
353
+ };
354
+ exception_type: string;
355
+ associated_risks: {
356
+ text: string;
357
+ attachments: never[];
358
+ };
359
+ oversights: {
360
+ cc_ids: string[];
361
+ cc_failures_ids: string[];
362
+ };
363
+ evidence_enabled: boolean;
364
+ recommendations: {
365
+ text: string;
366
+ attachments: never[];
367
+ };
368
+ };
369
+ export declare const EMAIL_REMINDERS: {
370
+ email_reminder: number;
371
+ escalation_email_reminder: number;
372
+ };
@@ -15,27 +15,28 @@ import * as i13 from "./components/case-priority/case-priority.component";
15
15
  import * as i14 from "./components/case-category/case-category.component";
16
16
  import * as i15 from "./components/case-resolution-deadline/case-resolution-deadline.component";
17
17
  import * as i16 from "./components/case-assignees/case-assignees.component";
18
- import * as i17 from "@angular/common";
19
- import * as i18 from "../ui-kit/tooltip/tooltip.module";
20
- import * as i19 from "../sharedComponents/floating-bar/floating-bar.module";
21
- import * as i20 from "../formgroup/formgroup.module";
22
- import * as i21 from "ng2-date-picker";
23
- import * as i22 from "@vcomply/editor";
24
- import * as i23 from "../ui-kit/popover/popover.module";
25
- import * as i24 from "./components/vc-dropdown/vc-dropdown.module";
26
- import * as i25 from "./components/form-selectBox/form-selectBox.module";
27
- import * as i26 from "@angular/forms";
28
- import * as i27 from "../sharedComponents/responsibility-centers-list/rc-list.module";
29
- import * as i28 from "../sharedComponents/format-and-evidence/format-and-evidence.module";
30
- import * as i29 from "../sharedComponents/v-loader/v-loader.module";
31
- import * as i30 from "../ui-kit/smiley-dialog-inline/smiley-dialog-inline.module";
32
- import * as i31 from "../sharedComponents/category-list-selection/category-list-selection.module";
33
- import * as i32 from "../sharedComponents/directive/directive.module";
34
- import * as i33 from "../sharedComponents/checkbox-list/checkbox-list.module";
35
- import * as i34 from "../pipes/pipes.module";
36
- import * as i35 from "../sharedComponents/group-users-list/group-users-list.component";
18
+ import * as i17 from "./components/case-owners/case-owners.component";
19
+ import * as i18 from "@angular/common";
20
+ import * as i19 from "../ui-kit/tooltip/tooltip.module";
21
+ import * as i20 from "../sharedComponents/floating-bar/floating-bar.module";
22
+ import * as i21 from "../formgroup/formgroup.module";
23
+ import * as i22 from "ng2-date-picker";
24
+ import * as i23 from "@vcomply/editor";
25
+ import * as i24 from "../ui-kit/popover/popover.module";
26
+ import * as i25 from "./components/vc-dropdown/vc-dropdown.module";
27
+ import * as i26 from "./components/form-selectBox/form-selectBox.module";
28
+ import * as i27 from "@angular/forms";
29
+ import * as i28 from "../sharedComponents/responsibility-centers-list/rc-list.module";
30
+ import * as i29 from "../sharedComponents/format-and-evidence/format-and-evidence.module";
31
+ import * as i30 from "../sharedComponents/v-loader/v-loader.module";
32
+ import * as i31 from "../ui-kit/smiley-dialog-inline/smiley-dialog-inline.module";
33
+ import * as i32 from "../sharedComponents/category-list-selection/category-list-selection.module";
34
+ import * as i33 from "../sharedComponents/directive/directive.module";
35
+ import * as i34 from "../sharedComponents/checkbox-list/checkbox-list.module";
36
+ import * as i35 from "../pipes/pipes.module";
37
+ import * as i36 from "../sharedComponents/group-users-list/group-users-list.component";
37
38
  export declare class ReportCaseModule {
38
39
  static ɵfac: i0.ɵɵFactoryDeclaration<ReportCaseModule, never>;
39
- static ɵmod: i0.ɵɵNgModuleDeclaration<ReportCaseModule, [typeof i1.CaseTypeComponent, typeof i2.WorkflowCaseComponent, typeof i3.AssigneeComponent, typeof i4.DueDateComponent, typeof i5.InformationBlockComponent, typeof i6.CaseDetailsComponent, typeof i7.VCInputComponent, typeof i8.VCFormLabelComponent, typeof i9.FieldHolderComponent, typeof i10.RcDetailsComponent, typeof i11.CaseDropdownComponent, typeof i12.ReportDateComponent, typeof i13.CasePriorityComponent, typeof i14.CaseCategoryComponent, typeof i15.CaseResolutionDeadlineComponent, typeof i16.CaseAssigneesComponent], [typeof i17.CommonModule, typeof i18.TooltipModule, typeof i19.FloatingBarModule, typeof i20.FormgroupModule, typeof i21.DpDatePickerModule, typeof i22.VcomplyEditorModule, typeof i23.PopoverModule, typeof i24.VcDropdownModule, typeof i25.FormSelectBoxModule, typeof i26.FormsModule, typeof i27.RcListModule, typeof i28.FormatAndEvidenceModule, typeof i29.VLoaderModule, typeof i30.SmileyDialogInlineModule, typeof i31.CategoryListSelectionModule, typeof i32.SharedDirectiveModule, typeof i33.CheckboxListModule, typeof i34.PipesModule, typeof i35.GroupUsersListComponent], [typeof i2.WorkflowCaseComponent]>;
40
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ReportCaseModule, [typeof i1.CaseTypeComponent, typeof i2.WorkflowCaseComponent, typeof i3.AssigneeComponent, typeof i4.DueDateComponent, typeof i5.InformationBlockComponent, typeof i6.CaseDetailsComponent, typeof i7.VCInputComponent, typeof i8.VCFormLabelComponent, typeof i9.FieldHolderComponent, typeof i10.RcDetailsComponent, typeof i11.CaseDropdownComponent, typeof i12.ReportDateComponent, typeof i13.CasePriorityComponent, typeof i14.CaseCategoryComponent, typeof i15.CaseResolutionDeadlineComponent, typeof i16.CaseAssigneesComponent, typeof i17.CaseOwnersComponent], [typeof i18.CommonModule, typeof i19.TooltipModule, typeof i20.FloatingBarModule, typeof i21.FormgroupModule, typeof i22.DpDatePickerModule, typeof i23.VcomplyEditorModule, typeof i24.PopoverModule, typeof i25.VcDropdownModule, typeof i26.FormSelectBoxModule, typeof i27.FormsModule, typeof i28.RcListModule, typeof i29.FormatAndEvidenceModule, typeof i30.VLoaderModule, typeof i31.SmileyDialogInlineModule, typeof i32.CategoryListSelectionModule, typeof i33.SharedDirectiveModule, typeof i34.CheckboxListModule, typeof i35.PipesModule, typeof i36.GroupUsersListComponent], [typeof i2.WorkflowCaseComponent]>;
40
41
  static ɵinj: i0.ɵɵInjectorDeclaration<ReportCaseModule>;
41
42
  }
@@ -12,6 +12,7 @@ export declare class ReportACaseService {
12
12
  private workflowSubject;
13
13
  workflow$: Observable<any>;
14
14
  workflowCode: Subject<string>;
15
+ resetMoreOption: Subject<boolean>;
15
16
  env: any;
16
17
  constructor(http: HttpClient, authService: AuthService, config?: Configurations);
17
18
  private fetchAllTypes;
@@ -22,6 +23,8 @@ export declare class ReportACaseService {
22
23
  getAllPriorities(): Observable<any>;
23
24
  reportACase(payload: any): Observable<any>;
24
25
  getWorkflowDetails(params: any): import("rxjs").Subscription;
26
+ getCaseOwners(workflow_id: string): Observable<Object>;
27
+ getCaseDetails(caseId: string): Observable<Object>;
25
28
  static ɵfac: i0.ɵɵFactoryDeclaration<ReportACaseService, [null, null, { optional: true; }]>;
26
29
  static ɵprov: i0.ɵɵInjectableDeclaration<ReportACaseService>;
27
30
  }