tango-app-api-analysis-traffic 3.8.7-vms.20 → 3.8.7-vms.22

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.20",
3
+ "version": "3.8.7-vms.22",
4
4
  "description": "Traffic Analysis",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -548,7 +548,7 @@ export async function footFallImages( req, res ) {
548
548
  actionType: type,
549
549
  footfall: footfallValue,
550
550
  revicedFootfall: mapping.revicedFootfall ?? 0,
551
- revicedPerc: mapping.revisedPerc ?? '--',
551
+ revicedPerc: mapping.revicedPerc ?? '--',
552
552
  count: countObj,
553
553
  createdAt: mapping.createdAt ?? '',
554
554
  createdByEmail: mapping.createdByEmail ?? '',
@@ -563,7 +563,7 @@ export async function footFallImages( req, res ) {
563
563
  actionType: type,
564
564
  footfall: footfallValue,
565
565
  revicedFootfall: mapping.revicedFootfall ?? 0,
566
- revicedPerc: mapping.revisedPerc ?? '--',
566
+ revicedPerc: mapping.revicedPerc ?? '--',
567
567
  count: countObj,
568
568
  createdAt: mapping.createdAt ?? '',
569
569
  createdByEmail: mapping.createdByEmail ?? '',
@@ -243,7 +243,7 @@ export const validateCountryHeaderParamsv2 = {
243
243
  export const validateGetStoreListSchemav2 = joi.object( {
244
244
  clientId: joi.string().required(),
245
245
  storeId: joi.array().items( joi.string().required() ).required(),
246
- downtime: joi.array().items( joi.string().required() ).required(),
246
+ downtime: joi.array().items( joi.string().required() ).optional(),
247
247
  fromDate: joi.string().required(),
248
248
  toDate: joi.string().required(),
249
249
  } );