tango-api-schema 2.5.54 → 2.5.56

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.5.54",
3
+ "version": "2.5.56",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -131,7 +131,7 @@ const checklistconfigSchema = new mongoose.Schema({
131
131
  checkListType: {
132
132
  type: String,
133
133
  default: "custom",
134
- enum: ["storeopenandclose", "mobileusagedetection", "uniformdetection", "custom", "customerunattended", "staffleftinthemiddle", 'eyetest', 'remoteoptometrist', 'storehygienemonitoring', 'queuealert', 'cleaning', 'scrum', 'suspiciousactivity', 'boxalert', 'suspiciousfootfall', 'drinking', 'bagdetection', 'inventorycount', 'carsattended', 'numberplateinfo', 'vehicle_check_in', 'unauthorisedentry', 'backroommonitoring', 'outsidebusinesshoursqueuetracking', 'halfshutter', 'tvcompliance','cameratampering']
134
+ enum: ["storeopenandclose", "mobileusagedetection", "uniformdetection", "custom", "customerunattended", "staffleftinthemiddle", 'eyetest', 'remoteoptometrist', 'storehygienemonitoring', 'queuealert', 'cleaning', 'scrum', 'suspiciousactivity', 'boxalert', 'suspiciousfootfall', 'drinking', 'bagdetection', 'inventorycount', 'carsattended', 'numberplateinfo', 'vehicle_check_in', 'unauthorisedentry', 'backroommonitoring', 'outsidebusinesshoursqueuetracking', 'halfshutter', 'tvcompliance', 'cameratampering']
135
135
  },
136
136
  createdAt: {
137
137
  type: Date,
@@ -298,7 +298,13 @@ const checklistconfigSchema = new mongoose.Schema({
298
298
  },
299
299
  },
300
300
  },
301
- tvcompliance: {
301
+ camerAngle: {
302
+ enabled: {
303
+ type: Boolean,
304
+ default: false
305
+ }
306
+ },
307
+ tvcompliance: {
302
308
  schedule: {
303
309
  scheduletype: {
304
310
  type: String
@@ -320,27 +326,27 @@ const checklistconfigSchema = new mongoose.Schema({
320
326
  }
321
327
  },
322
328
  detectedStatus: {
323
- status: {
324
- type: Boolean,
325
- default: false
326
- },
327
- detections: {
328
- type: Number
329
+ status: {
330
+ type: Boolean,
331
+ default: false
332
+ },
333
+ detections: {
334
+ type: Number
335
+ },
329
336
  },
330
337
  },
331
- },
332
- queuealert:{
333
- queueLengthEnabled:{
334
- type:Boolean
338
+ queuealert: {
339
+ queueLengthEnabled: {
340
+ type: Boolean
335
341
  },
336
- queueLimit:{
337
- type:String
342
+ queueLimit: {
343
+ type: String
338
344
  },
339
- waitTimeEnabled:{
340
- type:Boolean
345
+ waitTimeEnabled: {
346
+ type: Boolean
341
347
  },
342
- waitTimeLimit:{
343
- type:String
348
+ waitTimeLimit: {
349
+ type: String
344
350
  }
345
351
  },
346
352
  alertConfig: {
@@ -218,6 +218,12 @@ const processedchecklistconfigSchema = new mongoose.Schema({
218
218
  persondetectiontimethreshold: {
219
219
  type: String
220
220
  },
221
+ },
222
+ camerAngle: {
223
+ enabled: {
224
+ type: Boolean,
225
+ default: false
226
+ }
221
227
  },
222
228
  halfshutter: {
223
229
  schedule: {
@@ -43,7 +43,7 @@ const storeLayoutSchema = new mongoose.Schema( {
43
43
  },
44
44
  status: {
45
45
  type: String,
46
- enum: [ 'draft', 'completed' ],
46
+ enum: [ 'draft','allocationPending', 'completed' ],
47
47
  default: 'draft',
48
48
  },
49
49
  planoId: {