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
|
@@ -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,
|