tango-app-api-client 3.3.3-beta.2 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-api-client",
3
- "version": "3.3.3-beta.2",
3
+ "version": "3.4.3-beta.4",
4
4
  "description": "client",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -27,7 +27,7 @@
27
27
  "nodemon": "^3.0.3",
28
28
  "npm": "^10.9.1",
29
29
  "swagger-ui-express": "^5.0.0",
30
- "tango-api-schema": "2.2.6",
30
+ "tango-api-schema": "^2.2.7",
31
31
  "tango-app-api-middleware": "3.1.43-alpha.10",
32
32
  "winston": "^3.11.0",
33
33
  "winston-daily-rotate-file": "^5.0.0"
@@ -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
  }