tango-app-api-trax 3.7.4-runai-airtelv2-8 → 3.7.4-runai-airtelv2-9

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-api-trax",
3
- "version": "3.7.4-runai-airtelv2-8",
3
+ "version": "3.7.4-runai-airtelv2-9",
4
4
  "description": "Trax",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -2933,7 +2933,7 @@ export async function checklistv1( req, res ) {
2933
2933
 
2934
2934
  const [ checklistResult, taskResult ] = await Promise.allSettled( [
2935
2935
  processedchecklist.aggregate( buildPipeline( [ { checkListType: 'custom' } ], { isPlano: 1, planoId: 1, planoType: 1, floorId: 1 } ) ),
2936
- processedTask.aggregate( taskBuildPipeline( [], { isPlano: 1, planoId: 1, planoType: 1, floorId: 1, refTaskId: 1 } ) ),
2936
+ processedTask.aggregate( taskBuildPipeline( [], { isPlano: 1, planoId: 1, planoType: 1, floorId: 1, refTaskId: 1, store_id: 1 } ) ),
2937
2937
  ] );
2938
2938
 
2939
2939
  const checklistData = checklistResult.status === 'fulfilled' ? checklistResult.value : [];