vcomply-workflow-engine 5.0.24 → 5.0.26

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.
@@ -113,44 +113,7 @@ export declare enum ACTION_CODE {
113
113
  RC = "RC",
114
114
  CC = "CC"
115
115
  }
116
- export declare const REPORT_CASE_PAYLOAD: {
117
- name: string;
118
- description: {
119
- text: string;
120
- attachments: never[];
121
- };
122
- receive_updates: boolean;
123
- rc_details: {
124
- ids: never[];
125
- };
126
- reported_date: string;
127
- case_type: {
128
- id: string;
129
- custom_fields: never[];
130
- };
131
- priority: {
132
- id: string;
133
- custom_fields: never[];
134
- };
135
- category: {
136
- ids: never[];
137
- custom_fields: never[];
138
- };
139
- supporting_documents: never[];
140
- status: string;
141
- stage: string;
142
- risk_class: number;
143
- caseToWorkflow: {};
144
- responsibilities_Linked: never[];
145
- linked_assessment_issues: {
146
- resp_id: string;
147
- due_date_id: string;
148
- assessment_id: string;
149
- question_id: string;
150
- auditee_id: number;
151
- };
152
- source: string;
153
- };
116
+ export declare const REPORT_CASE_PAYLOAD: any;
154
117
  export declare const ADD_TO_CASE_WORKFLOW: {
155
118
  name: string;
156
119
  description: {
@@ -4,14 +4,12 @@ import { ReportACaseService } from '../services/report-a-case.service';
4
4
  import { UiKitService } from '../../workflow-services/ui-kit.service';
5
5
  import { OrganizationUserService } from '../../workflow-services/organization-user.service';
6
6
  import { ResponsibilityService } from '../../workflow-services/responsibility.service';
7
- import { ReportCasePermissionService } from '../../services/report-case-permission.service';
8
7
  import * as i0 from "@angular/core";
9
8
  export declare class WorkflowCaseComponent implements OnInit, OnDestroy {
10
9
  private reportACaseService;
11
10
  private uiKitService;
12
11
  private organizationUserService;
13
12
  private responsibilityService;
14
- private permissionService;
15
13
  reportTexts: {
16
14
  case_type: string;
17
15
  report_case: string;
@@ -118,44 +116,7 @@ export declare class WorkflowCaseComponent implements OnInit, OnDestroy {
118
116
  };
119
117
  caseType: typeof report;
120
118
  caseTypeSelected: report;
121
- payload: {
122
- name: string;
123
- description: {
124
- text: string;
125
- attachments: never[];
126
- };
127
- receive_updates: boolean;
128
- rc_details: {
129
- ids: never[];
130
- };
131
- reported_date: string;
132
- case_type: {
133
- id: string;
134
- custom_fields: never[];
135
- };
136
- priority: {
137
- id: string;
138
- custom_fields: never[];
139
- };
140
- category: {
141
- ids: never[];
142
- custom_fields: never[];
143
- };
144
- supporting_documents: never[];
145
- status: string;
146
- stage: string;
147
- risk_class: number;
148
- caseToWorkflow: {};
149
- responsibilities_Linked: never[];
150
- linked_assessment_issues: {
151
- resp_id: string;
152
- due_date_id: string;
153
- assessment_id: string;
154
- question_id: string;
155
- auditee_id: number;
156
- };
157
- source: string;
158
- };
119
+ payload: any;
159
120
  params: {
160
121
  rc_details: {
161
122
  id: string;
@@ -334,7 +295,7 @@ export declare class WorkflowCaseComponent implements OnInit, OnDestroy {
334
295
  caseReportedBy: EventEmitter<any>;
335
296
  userListEmitter: EventEmitter<any>;
336
297
  disconnectRefresh: EventEmitter<any>;
337
- constructor(reportACaseService: ReportACaseService, uiKitService: UiKitService, organizationUserService: OrganizationUserService, responsibilityService: ResponsibilityService, permissionService: ReportCasePermissionService);
298
+ constructor(reportACaseService: ReportACaseService, uiKitService: UiKitService, organizationUserService: OrganizationUserService, responsibilityService: ResponsibilityService);
338
299
  ngOnDestroy(): void;
339
300
  ngOnInit(): void;
340
301
  permissionLoader(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "5.0.24",
3
+ "version": "5.0.26",
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 "