tango-api-schema 2.6.20 → 2.6.23

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.20",
3
+ "version": "2.6.23",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -718,6 +718,11 @@ const checklistconfigSchema = new mongoose.Schema({
718
718
  detections: {
719
719
  type: Number,
720
720
  default: 0
721
+ },
722
+ detectionsCondition:{
723
+ type: String,
724
+ enum: ['<', '>', '=', '!=', '>=', '<='],
725
+ default: '>'
721
726
  },
722
727
  iscoolDown:{
723
728
  type:Boolean,
@@ -658,6 +658,11 @@ const processedchecklistconfigSchema = new mongoose.Schema({
658
658
  detections: {
659
659
  type: Number,
660
660
  default: 0
661
+ },
662
+ detectionsCondition:{
663
+ type: String,
664
+ enum: ['<', '>', '=', '!=', '>=', '<='],
665
+ default: '>'
661
666
  },
662
667
  iscoolDown:{
663
668
  type:Boolean,