tango-app-api-client 3.3.3-beta.3 → 3.4.3-beta.4
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
package/src/dtos/client.dtos.js
CHANGED
|
@@ -121,6 +121,8 @@ export const featureConfigurationSchemaBody = joi.object(
|
|
|
121
121
|
isNewZoneV2: joi.boolean().optional(),
|
|
122
122
|
isTrax: joi.boolean().optional(),
|
|
123
123
|
isControlCenter: joi.boolean().optional(),
|
|
124
|
+
isFootfallDirectoryAudit: joi.boolean().optional(),
|
|
125
|
+
isFootfallDirectoryLimit: joi.boolean().optional(),
|
|
124
126
|
},
|
|
125
127
|
);
|
|
126
128
|
|
|
@@ -161,6 +161,8 @@ export function featureConfigurationUpdate( query, inputData ) {
|
|
|
161
161
|
'featureConfigs.isNewZoneV2': inputData?.isNewZoneV2,
|
|
162
162
|
'featureConfigs.isTrax': inputData?.isTrax,
|
|
163
163
|
'featureConfigs.isControlCenter': inputData?.isControlCenter,
|
|
164
|
+
'featureConfigs.isFootfallDirectoryAudit': inputData?.isFootfallDirectoryAudit,
|
|
165
|
+
'featureConfigs.isFootfallDirectoryLimit': inputData?.isFootfallDirectoryLimit,
|
|
164
166
|
},
|
|
165
167
|
} );
|
|
166
168
|
}
|