tango-api-schema 2.2.157 → 2.2.159

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-api-schema",
3
- "version": "2.2.157",
3
+ "version": "2.2.159",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -224,7 +224,39 @@ const externalParameter = new mongoose.Schema(
224
224
  dynamicFrameRate:{
225
225
  type:Boolean,
226
226
  default:true
227
- }
227
+ },
228
+ CheckForEmployee: {
229
+ type: Boolean,
230
+ default: false
231
+ },
232
+ CheckUniqueCustomers: {
233
+ type: Boolean,
234
+ default: false
235
+ },
236
+ AuditCustomers: {
237
+ type: Boolean,
238
+ default: false
239
+ },
240
+ EnableTesting: {
241
+ type: Boolean,
242
+ default: true
243
+ },
244
+ TimestampLimit: {
245
+ type: String,
246
+ default: "2"
247
+ },
248
+ DecisionThreshold: {
249
+ type: Boolean,
250
+ default: false
251
+ },
252
+ StoreProcessingStatus: {
253
+ type: String,
254
+ default: "EOD"
255
+ },
256
+ LiveTimeGap: {
257
+ type: String,
258
+ default: "30"
259
+ },
228
260
  }
229
261
 
230
262