tango-app-api-analysis-traffic 3.8.7-vms.17 → 3.8.7-vms.18
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
|
@@ -311,6 +311,11 @@ export async function storeProcessedData( req, res ) {
|
|
|
311
311
|
{ term: { 'storeId.keyword': storeId } },
|
|
312
312
|
{ term: { 'dateString': currentDate } },
|
|
313
313
|
{ term: { 'ticketName.keyword': 'footfall-directory' } },
|
|
314
|
+
{
|
|
315
|
+
'term': {
|
|
316
|
+
'type.keyword': 'store',
|
|
317
|
+
},
|
|
318
|
+
},
|
|
314
319
|
],
|
|
315
320
|
},
|
|
316
321
|
},
|
|
@@ -412,6 +417,11 @@ export async function footFallImages( req, res ) {
|
|
|
412
417
|
'ticketName.keyword': 'footfall-directory',
|
|
413
418
|
},
|
|
414
419
|
},
|
|
420
|
+
{
|
|
421
|
+
'term': {
|
|
422
|
+
'type.keyword': 'store',
|
|
423
|
+
},
|
|
424
|
+
},
|
|
415
425
|
],
|
|
416
426
|
},
|
|
417
427
|
},
|
|
@@ -18,7 +18,6 @@ revopRouter
|
|
|
18
18
|
.get( '/footfall-images', isAllowedSessionHandler, validate( footfallImagesValid ), getTaggingConfig, footFallImages )
|
|
19
19
|
.post( '/tag-tempId', isAllowedSessionHandler, validate( tagTempIdValid ), deleteTaggedDuplicate, mappingConfig, tagTempId )
|
|
20
20
|
|
|
21
|
-
|
|
22
21
|
.post( '/get-categorized-images', isAllowedSessionHandler, validate( getCategorizedImagesValid ), getCategorizedImages );
|
|
23
22
|
|
|
24
23
|
|