tango-app-api-trax 3.7.96 → 3.7.97

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.96",
3
+ "version": "3.7.97",
4
4
  "description": "Trax",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -3190,7 +3190,7 @@ export async function checklistv1( req, res ) {
3190
3190
 
3191
3191
  const [ checklistResult, taskResult ] = await Promise.allSettled( [
3192
3192
  processedchecklist.aggregate( buildPipeline( [ { checkListType: 'custom' } ], { isPlano: 1, planoId: 1, planoType: 1, floorId: 1 } ) ),
3193
- processedTask.aggregate( taskBuildPipeline( [], { isPlano: 1, planoId: 1, planoType: 1, floorId: 1, refTaskId: 1, store_id: 1, fixtureNewUI: 1, aiType: 1 } ) ),
3193
+ processedTask.aggregate( taskBuildPipeline( [], { isPlano: 1, planoId: 1, planoType: 1, floorId: 1, refTaskId: 1, store_id: 1, fixtureNewUI: 1 } ) ),
3194
3194
  ] );
3195
3195
 
3196
3196
  const checklistData = checklistResult.status === 'fulfilled' ? checklistResult.value : [];
@@ -3822,6 +3822,7 @@ export async function taskQuestionList( req, res ) {
3822
3822
  rawImageUpload: { $ifNull: [ '$rawImageUpload', false ] },
3823
3823
  rawVideoUpload: { $ifNull: [ '$rawVideoUpload', false ] },
3824
3824
  videoUploadTimeLimit: { $ifNull: [ '$videoUploadTimeLimit', 0 ] },
3825
+ aiType: 1,
3825
3826
  },
3826
3827
  } );
3827
3828