tango-app-api-trax 3.4.1-activitylog-6 → 3.4.1-activitylog-8
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
|
@@ -559,6 +559,8 @@ export const getChecklistFromZipId = async ( req, res ) => {
|
|
|
559
559
|
resultData.questions = getzipdata.questions;
|
|
560
560
|
resultData.insertType = getzipdata.insertType;
|
|
561
561
|
resultData.status = getzipdata.status;
|
|
562
|
+
resultData.fromDate = getzipdata.fromDate;
|
|
563
|
+
resultData.toDate = getzipdata.toDate;
|
|
562
564
|
return res.sendSuccess( resultData );
|
|
563
565
|
}
|
|
564
566
|
} else {
|
|
@@ -26,6 +26,7 @@ export const validateDownloadInsertSchema = joi.object( {
|
|
|
26
26
|
filter: joi.string().optional().allow( '' ),
|
|
27
27
|
filtertype: joi.string().optional().allow( '' ),
|
|
28
28
|
checkListType: joi.string().required(),
|
|
29
|
+
approveFilter: joi.string().optional().allow( '' ),
|
|
29
30
|
} );
|
|
30
31
|
|
|
31
32
|
export const validateDownloadInsertParams = {
|