vcomply-workflow-engine 6.1.80 → 6.1.82

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 (20) hide show
  1. package/esm2022/lib/report-a-case/workflow-case/workflow-case.component.mjs +1 -1
  2. package/esm2022/lib/sharedComponents/assessment-list/assessment-list.component.mjs +2 -2
  3. package/esm2022/lib/sharedComponents/format-and-evidence/format-and-evidence.component.mjs +45 -15
  4. package/esm2022/lib/sharedComponents/program-list/constant.mjs +2 -2
  5. package/esm2022/lib/sharedComponents/program-list/program-list/program-list.component.mjs +3 -3
  6. package/esm2022/lib/sharedComponents/review-frequency/review-frequency.component.mjs +2 -2
  7. package/esm2022/lib/sharedComponents/risk-classification/risk-classification.component.mjs +2 -2
  8. package/esm2022/lib/workflow/shared/components/grc-object-list/grc-object-list.component.mjs +3 -3
  9. package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +5 -4
  10. package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +2 -2
  11. package/esm2022/lib/workflow-policy/workflow-policy.component.mjs +1 -1
  12. package/esm2022/lib/workflow-services/common-workflow-services/compliance-common.service.mjs +8 -1
  13. package/esm2022/lib/workflow-services/responsibility.service.mjs +14 -1
  14. package/fesm2022/vcomply-workflow-engine.mjs +83 -32
  15. package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
  16. package/lib/sharedComponents/format-and-evidence/format-and-evidence.component.d.ts +4 -1
  17. package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
  18. package/lib/workflow-services/common-workflow-services/compliance-common.service.d.ts +1 -0
  19. package/lib/workflow-services/responsibility.service.d.ts +2 -0
  20. package/package.json +1 -1
@@ -68,6 +68,7 @@ export declare class FormatAndEvidenceComponent implements OnInit {
68
68
  mode: string;
69
69
  categories: any[];
70
70
  organization_id: any;
71
+ orgDetails: any;
71
72
  set formatEvidanceData(value: any);
72
73
  isNewLinkDisabled: boolean;
73
74
  isEditDisabled: boolean;
@@ -89,6 +90,8 @@ export declare class FormatAndEvidenceComponent implements OnInit {
89
90
  private fileProcessing;
90
91
  onFileDropped(files: any): void;
91
92
  uploadFile(file: any, uid: string): void;
93
+ getSignedUrl(fileMetaData: any, file: File, uid: any): void;
94
+ saveToS3(file: any, data: any, fileMetaData: any, uid: any): void;
92
95
  deleteAttachment(index: number): void;
93
96
  emitValue(): void;
94
97
  getLinksArray(links: any): any;
@@ -99,5 +102,5 @@ export declare class FormatAndEvidenceComponent implements OnInit {
99
102
  addMoreDocumentsDetails(index: number): void;
100
103
  uploadPolicyAttachments(formData: any): void;
101
104
  static ɵfac: i0.ɵɵFactoryDeclaration<FormatAndEvidenceComponent, never>;
102
- static ɵcmp: i0.ɵɵComponentDeclaration<FormatAndEvidenceComponent, "app-format-and-evidence", never, { "mode": { "alias": "mode"; "required": false; }; "categories": { "alias": "categories"; "required": false; }; "organization_id": { "alias": "organization_id"; "required": false; }; "formatEvidanceData": { "alias": "formatEvidanceData"; "required": false; }; }, { "updateFiles": "updateFiles"; }, never, never, false, never>;
105
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormatAndEvidenceComponent, "app-format-and-evidence", never, { "mode": { "alias": "mode"; "required": false; }; "categories": { "alias": "categories"; "required": false; }; "organization_id": { "alias": "organization_id"; "required": false; }; "orgDetails": { "alias": "orgDetails"; "required": false; }; "formatEvidanceData": { "alias": "formatEvidanceData"; "required": false; }; }, { "updateFiles": "updateFiles"; }, never, never, false, never>;
103
106
  }
@@ -168,7 +168,7 @@ export declare class WorkflowRiskComponent implements OnInit {
168
168
  setPopupButtons(): void;
169
169
  getRiskDetails(riskId: any): void;
170
170
  populateOptionalFields(): void;
171
- setCategoryType(type: any): "strategic" | "compliance" | "others" | "operational";
171
+ setCategoryType(type: any): "compliance" | "others" | "strategic" | "operational";
172
172
  getRCList(): void;
173
173
  getCategoryList(): void;
174
174
  getOwnersList(): void;
@@ -12,6 +12,7 @@ export declare class ComplianceCommonService {
12
12
  private getRcList;
13
13
  private setRcList;
14
14
  getRcListInfo(params?: HttpParams, allVisible?: boolean): import("rxjs").Observable<any>;
15
+ extractErrorMessage(str: string): string | null;
15
16
  static ɵfac: i0.ɵɵFactoryDeclaration<ComplianceCommonService, [null, null, { optional: true; }]>;
16
17
  static ɵprov: i0.ɵɵInjectableDeclaration<ComplianceCommonService>;
17
18
  }
@@ -42,6 +42,8 @@ export declare class ResponsibilityService {
42
42
  editResponsibility(objectId: any): Observable<Object>;
43
43
  addBulkResponsibility(entrust_body: any): Observable<Object>;
44
44
  uploadToNode(payload: any, des: any): Observable<any>;
45
+ getSignedUrl(payload: any): Observable<any>;
46
+ saveToS3(file: File, url: string): Observable<import("@angular/common/http").HttpResponse<Object>>;
45
47
  filesUploading: any[];
46
48
  filesUploaded: any[];
47
49
  filesUploadedAndUploading: any[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "6.1.80",
3
+ "version": "6.1.82",
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 "