vcomply-workflow-engine 2.6.85 → 2.6.87

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.
@@ -7,6 +7,7 @@ export declare class AddMultipleResponsibilityContainerComponent implements OnIn
7
7
  private authService;
8
8
  private bulkUploadService;
9
9
  downloadStatus: string;
10
+ downloadStatusV2: string;
10
11
  downloadPercent: number;
11
12
  fileValue: any;
12
13
  showSmiley: boolean;
@@ -133,13 +133,24 @@ export declare class AddMultipleResponsibilityWithTabComponent implements OnInit
133
133
  * @returns A boolean value.
134
134
  */
135
135
  isValidData(data: any): boolean;
136
+ /**
137
+ * If the assignor is the same as the overseer or the NotifyOnFailure, or if the assignor is not set
138
+ * and the defaultOwner is the same as the overseer or the NotifyOnFailure, or if the assignee is the
139
+ * same as the reviewer, overseer, or NotifyOnFailure, or if the assignee is not set and the
140
+ * defaultOwner is the same as the overseer or the NotifyOnFailure, or if the reviewer is the same as
141
+ * the overseer or the NotifyOnFailure, or if the assignee is not set, then return false. Otherwise,
142
+ * return true
143
+ * @param {any} data - any - this is the data that is passed in from the form.
144
+ * @returns A boolean value.
145
+ */
146
+ isValidUsers(data: any): boolean;
136
147
  /**
137
148
  * It takes in a data object and returns an object with 4 boolean properties.
138
149
  * The boolean properties are determined by the values of the data object.
139
150
  * @param {any} data - any = {
140
151
  * @returns {
141
152
  * isValidAssignee: true,
142
- * isValidAssigner: true,
153
+ * isValidAssignor: true,
143
154
  * isValidReviewer: true,
144
155
  * isValidOverseer: true
145
156
  * }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "2.6.85",
3
+ "version": "2.6.87",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "10.x || 11.x || 12.x || 13.x || 14.x || 15.x || 16.x",
6
6
  "@angular/core": "10.x || 11.x || 12.x || 13.x || 14.x || 15.x || 16.x"