tango-app-api-report 3.5.1 → 3.5.2
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
|
@@ -353,7 +353,7 @@ export async function isFeatureRunning( req, res, next ) {
|
|
|
353
353
|
const openSearch = JSON.parse( process.env.OPENSEARCH );
|
|
354
354
|
const REIDURL = url.REIDStatus;
|
|
355
355
|
const FeatureURL = url.FeatureStatus;
|
|
356
|
-
const data = { 'client_id': inputData.clientId, 'store_date': inputData?.fileDate };
|
|
356
|
+
const data = { 'client_id': inputData.clientId, 'store_date': inputData?.fileDate.split( '-' ).reverse().join( '-' ) };
|
|
357
357
|
|
|
358
358
|
const isFeature = await callLambdaWithData( data, FeatureURL );
|
|
359
359
|
const logInfo = {
|