tango-app-api-task 3.2.1-beta-39 → 3.2.1-beta-40
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.
package/package.json
CHANGED
|
@@ -1009,6 +1009,7 @@ export async function insertSingleProcessData( checklistId ) {
|
|
|
1009
1009
|
insertdata.remainder = getCLconfig?.remainder || [];
|
|
1010
1010
|
insertdata.approver = getCLconfig?.approver || [];
|
|
1011
1011
|
insertdata.restrictAttendance = getCLconfig?.restrictAttendance;
|
|
1012
|
+
insertdata.coverage = getCLconfig?.coverage;
|
|
1012
1013
|
let collectSections = [];
|
|
1013
1014
|
let sectionQuery = [];
|
|
1014
1015
|
sectionQuery.push( {
|
|
@@ -1252,6 +1253,7 @@ async function insertPCBulkV3( getCLconfig, checklistId, updatedchecklist, date,
|
|
|
1252
1253
|
element4.priorityType = getCLconfig.priorityType;
|
|
1253
1254
|
element4.remainder = getCLconfig?.remainder || [];
|
|
1254
1255
|
element4.restrictAttendance = getCLconfig?.restrictAttendance;
|
|
1256
|
+
element4.coverage = getCLconfig?.coverage;
|
|
1255
1257
|
assignUserList.push( element4 );
|
|
1256
1258
|
}
|
|
1257
1259
|
} ) );
|