tango-app-api-audit 3.5.16 → 3.5.17

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-audit",
3
- "version": "3.5.16",
3
+ "version": "3.5.17",
4
4
  "description": "audit & audit metrics apis",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -1246,8 +1246,9 @@ export async function saveBinary( req, res ) {
1246
1246
  configTime: getCleaningFilePath?.sqs?.Body?.configTime,
1247
1247
  isDownTime: getCleaningFilePath?.sqs?.Body?.isDownTime,
1248
1248
  downTime: getCleaningFilePath?.sqs?.Body?.downTime,
1249
+ thumbnail_image: getCleaningFilePath?.sqs?.Body?.thumbnail_image,
1249
1250
  inputBucketName: getCleaningFilePath?.sqs?.Body?.inputBucketName,
1250
- folderPath: getCleaningFilePath?.sqs?.Body?.fileDetails[0]?.outputFilePath,
1251
+ folderPath: getCleaningFilePath?.sqs?.Body?.fileDetails?.[0]?.outputFilePath,
1251
1252
  createdAt: new Date(),
1252
1253
  };
1253
1254
  const cleaningSearchData= await getOpenSearchData( openSearch.traxDetectionOutput, cleaningSearchQuery );
@@ -1364,8 +1365,9 @@ export async function saveBinary( req, res ) {
1364
1365
  huddleSlot: getScrumFilePath?.sqs?.Body?.huddleSlot,
1365
1366
  isDownTime: getScrumFilePath?.sqs?.Body?.isDownTime,
1366
1367
  downTime: getScrumFilePath?.sqs?.Body?.downTime,
1368
+ thumbnail_image: getScrumFilePath?.sqs?.Body?.thumbnail_image,
1367
1369
  inputBucketName: getScrumFilePath?.sqs?.Body?.inputBucketName,
1368
- folderPath: getScrumFilePath?.sqs?.Body?.fileDetails[0]?.outputFilePath,
1370
+ folderPath: getScrumFilePath?.sqs?.Body?.fileDetails?.[0]?.outputFilePath,
1369
1371
  createdAt: new Date(),
1370
1372
  };
1371
1373
  const scrumSearchData= await getOpenSearchData( openSearch.traxDetectionOutput, scrumSearchQuery );