tango-api-schema 2.5.99 → 2.6.0

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.99",
3
+ "version": "2.6.0",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -324,6 +324,10 @@ const checklistconfigSchema = new mongoose.Schema({
324
324
  floorDetection: {
325
325
  enabled: { type: Boolean, default: false },
326
326
  duration: { type: Number, default: 2 }
327
+ },
328
+ unattendedDetection: {
329
+ enabled: { type: Boolean, default: false },
330
+ duration: { type: Number, default: 2 }
327
331
  },
328
332
  recurrence: {
329
333
  status: {
@@ -277,6 +277,10 @@ const processedchecklistconfigSchema = new mongoose.Schema({
277
277
  enabled: { type: Boolean, default: false },
278
278
  duration: { type: Number, default: 4 }
279
279
  },
280
+ unattendedDetection: {
281
+ enabled: { type: Boolean, default: false },
282
+ duration: { type: Number, default: 2 }
283
+ },
280
284
  },
281
285
  cameraAngle: {
282
286
  enabled: {