tango-app-api-analysis-traffic 3.0.0-alpha.53 → 3.0.0-alpha.54

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-analysis-traffic",
3
- "version": "3.0.0-alpha.53",
3
+ "version": "3.0.0-alpha.54",
4
4
  "description": "Traffic Analysis",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -324,7 +324,7 @@ export async function getNobData( req, res ) {
324
324
  footfallCount: temp[0]?.footfallCount || null,
325
325
  engagersCount: temp[0]?.engagersCount || null,
326
326
  potentialBuyers: temp[0]?.potentialBuyers || null,
327
- conversionRate: conversionCount == null ? null :parseFloat( conversionCount.toFixed( 1 ) ),
327
+ conversionRate: conversionCount == null ? null :Math.round( conversionCount ),
328
328
 
329
329
  } );
330
330
  } else {