tango-app-api-analysis-zone 3.0.0-alpha.15 → 3.0.0-alpha.16
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
|
@@ -80,7 +80,6 @@ export const topPerformingStoresV1 = async ( req, res ) => {
|
|
|
80
80
|
'Zone Name': element.zoneName,
|
|
81
81
|
'Concentration': element.concentrationRate,
|
|
82
82
|
'AVG DwellTime': element.avgDwellTime,
|
|
83
|
-
'Overall Footfall': element.overallFootfall,
|
|
84
83
|
'Zone Footfall': element.zoneFootfall,
|
|
85
84
|
} );
|
|
86
85
|
} );
|
|
@@ -130,12 +129,11 @@ export const zoneSummaryTableV1 = async ( req, res ) => {
|
|
|
130
129
|
'Age Below 12': element.below12,
|
|
131
130
|
'Age 13-19': element['13-19'],
|
|
132
131
|
'Age 20-30': element['20-30'],
|
|
133
|
-
'Age 31-
|
|
134
|
-
'Age
|
|
135
|
-
'Age 51-60': element['51-60'],
|
|
132
|
+
'Age 31-45': element['31-45'],
|
|
133
|
+
'Age 46-59': element['46-59'],
|
|
136
134
|
'Age 60+': element['60 above'],
|
|
137
|
-
'Male': element.
|
|
138
|
-
'Female': element.
|
|
135
|
+
'Male': element.maleCount,
|
|
136
|
+
'Female': element.femaleCount,
|
|
139
137
|
} );
|
|
140
138
|
} );
|
|
141
139
|
return await download( exportdata, res );
|