tango-app-api-analysis-traffic 3.8.7-vms.32 → 3.8.7-vms.34

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.8.7-vms.32",
3
+ "version": "3.8.7-vms.34",
4
4
  "description": "Traffic Analysis",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -584,7 +584,7 @@ export async function migrateRevopIndex( req, res ) {
584
584
  export async function expireReviewStatus( req, res ) {
585
585
  try {
586
586
  const {
587
- thresholdDate = '2025-12-20',
587
+ thresholdDate = '2025-12-22',
588
588
  batchSize = 500,
589
589
  storeId,
590
590
  dateString,
@@ -1099,7 +1099,7 @@ export async function footFallImages( req, res ) {
1099
1099
  actionType: type,
1100
1100
  footfall: footfallValue,
1101
1101
  revicedFootfall: mapping.revicedFootfall ?? 0,
1102
- revicedPerc: mapping.revicedPerc ?? '--',
1102
+ revicedPerc: mapping?.reviced?.toString() ?? '--',
1103
1103
  count: countObj,
1104
1104
  createdAt: mapping.createdAt ?? '',
1105
1105
  createdByEmail: mapping.createdByEmail ?? '',
@@ -1114,7 +1114,7 @@ export async function footFallImages( req, res ) {
1114
1114
  actionType: type,
1115
1115
  footfall: footfallValue,
1116
1116
  revicedFootfall: mapping.revicedFootfall ?? 0,
1117
- revicedPerc: mapping.revicedPerc ?? '--',
1117
+ revicedPerc: mapping?.reviced?.toString() ?? '--',
1118
1118
  count: countObj,
1119
1119
  createdAt: mapping.createdAt ?? '',
1120
1120
  createdByEmail: mapping.createdByEmail ?? '',