tango-api-schema 2.6.14 → 2.6.16

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.6.14",
3
+ "version": "2.6.16",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -312,6 +312,10 @@ const checklistconfigSchema = new mongoose.Schema({
312
312
  tableClutterDetection: {
313
313
  enabled: { type: Boolean, default: false },
314
314
  duration: { type: Number, default: 2 }
315
+ },
316
+ floorClutterDetection:{
317
+ enabled: { type: Boolean, default: false },
318
+ duration: { type: Number, default: 4 }
315
319
  },
316
320
  objectDetection: {
317
321
  enabled: { type: Boolean, default: false },
@@ -665,9 +669,16 @@ const checklistconfigSchema = new mongoose.Schema({
665
669
  scheduletype: {
666
670
  type: String
667
671
  },
668
- times:{
669
- type:Array
670
- },
672
+ times:[
673
+ {
674
+ start:{
675
+ type: String
676
+ },
677
+ end:{
678
+ type: String
679
+ }
680
+ }
681
+ ],
671
682
  recurrence: {
672
683
  status: {
673
684
  type: Boolean,
@@ -268,6 +268,10 @@ const processedchecklistconfigSchema = new mongoose.Schema({
268
268
  tableClutterDetection: {
269
269
  enabled: { type: Boolean, default: false },
270
270
  duration: { type: Number, default: 2 }
271
+ },
272
+ floorClutterDetection:{
273
+ enabled: { type: Boolean, default: false },
274
+ duration: { type: Number, default: 4 }
271
275
  },
272
276
  objectDetection: {
273
277
  enabled: { type: Boolean, default: false },
@@ -604,9 +608,16 @@ const processedchecklistconfigSchema = new mongoose.Schema({
604
608
  scheduletype: {
605
609
  type: String
606
610
  },
607
- times:{
608
- type:Array
609
- },
611
+ times: [
612
+ {
613
+ start:{
614
+ type: String
615
+ },
616
+ end:{
617
+ type: String
618
+ }
619
+ }
620
+ ],
610
621
  recurrence: {
611
622
  status: {
612
623
  type: Boolean,