tango-app-api-client 3.0.49-dev → 3.0.50-dev
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
|
@@ -788,6 +788,7 @@ export async function updateFeatureConfiguration( req, res ) {
|
|
|
788
788
|
close: req.body?.close, conversionCalculation: req.body?.conversionCalculation, conversionCondition: req.body?.conversionCondition,
|
|
789
789
|
conversionValue: req.body?.conversionValue, infraAlertCondition: req.body?.infraAlertCondition, infraAlertValue: req.body?.infraAlertValue, isFootfallDirectory: req.body?.isFootfallDirectory,
|
|
790
790
|
isNormalized: req.body?.isNormalized, isPasserByData: req.body?.isPasserByData, missedOpportunityCalculation: req.body?.missedOpportunityCalculation, open: req.body?.open,
|
|
791
|
+
isExcludedArea: req.body?.isExcludedArea,
|
|
791
792
|
} );
|
|
792
793
|
|
|
793
794
|
let updateKeys = [];
|
package/src/dtos/client.dtos.js
CHANGED
|
@@ -108,6 +108,7 @@ export const featureConfigurationSchemaBody = joi.object(
|
|
|
108
108
|
isNormalized: joi.boolean().optional(),
|
|
109
109
|
isPasserByData: joi.boolean().optional(),
|
|
110
110
|
isFootfallDirectory: joi.boolean().optional(),
|
|
111
|
+
isExcludedArea: joi.boolean().optional(),
|
|
111
112
|
},
|
|
112
113
|
);
|
|
113
114
|
|
|
@@ -131,7 +131,7 @@ export function featureConfigurationUpdate( {
|
|
|
131
131
|
clientId, billableCalculation, bouncedLimitCondition, bouncedLimitValue,
|
|
132
132
|
close, conversionCalculation, conversionCondition,
|
|
133
133
|
conversionValue, infraAlertCondition, infraAlertValue, isFootfallDirectory,
|
|
134
|
-
isNormalized, isPasserByData, missedOpportunityCalculation, open,
|
|
134
|
+
isNormalized, isPasserByData, missedOpportunityCalculation, open, isExcludedArea,
|
|
135
135
|
} ) {
|
|
136
136
|
return clientModel.updateOne( { clientId: clientId },
|
|
137
137
|
{
|
|
@@ -150,6 +150,7 @@ export function featureConfigurationUpdate( {
|
|
|
150
150
|
'featureConfigs.isNormalized': isNormalized,
|
|
151
151
|
'featureConfigs.isPasserByData': isPasserByData,
|
|
152
152
|
'featureConfigs.isFootfallDirectory': isFootfallDirectory,
|
|
153
|
+
'featureConfigs.isExcludedArea': isExcludedArea,
|
|
153
154
|
},
|
|
154
155
|
} );
|
|
155
156
|
}
|