tango-api-schema 2.6.15 → 2.6.17
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
|
@@ -122,7 +122,7 @@ const checklistconfigSchema = new mongoose.Schema({
|
|
|
122
122
|
checkListType: {
|
|
123
123
|
type: String,
|
|
124
124
|
default: "custom",
|
|
125
|
-
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', 'staffgrouping','employeeCount','unattendeddetection']
|
|
125
|
+
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', 'staffgrouping','employeeCount','unattendeddetection',"employeemonitoring"]
|
|
126
126
|
},
|
|
127
127
|
createdAt: {
|
|
128
128
|
type: Date,
|
|
@@ -669,9 +669,16 @@ const checklistconfigSchema = new mongoose.Schema({
|
|
|
669
669
|
scheduletype: {
|
|
670
670
|
type: String
|
|
671
671
|
},
|
|
672
|
-
times:
|
|
673
|
-
|
|
674
|
-
|
|
672
|
+
times:[
|
|
673
|
+
{
|
|
674
|
+
start:{
|
|
675
|
+
type: String
|
|
676
|
+
},
|
|
677
|
+
end:{
|
|
678
|
+
type: String
|
|
679
|
+
}
|
|
680
|
+
}
|
|
681
|
+
],
|
|
675
682
|
recurrence: {
|
|
676
683
|
status: {
|
|
677
684
|
type: Boolean,
|
|
@@ -81,7 +81,7 @@ const processedchecklistconfigSchema = new mongoose.Schema({
|
|
|
81
81
|
checkListType: {
|
|
82
82
|
type: String,
|
|
83
83
|
default: "custom",
|
|
84
|
-
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','staffgrouping','employeeCount','unattendeddetection']
|
|
84
|
+
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','staffgrouping','employeeCount','unattendeddetection','employeemonitoring']
|
|
85
85
|
},
|
|
86
86
|
startTime: {
|
|
87
87
|
type: Date
|
|
@@ -608,9 +608,16 @@ const processedchecklistconfigSchema = new mongoose.Schema({
|
|
|
608
608
|
scheduletype: {
|
|
609
609
|
type: String
|
|
610
610
|
},
|
|
611
|
-
times:
|
|
612
|
-
|
|
613
|
-
|
|
611
|
+
times: [
|
|
612
|
+
{
|
|
613
|
+
start:{
|
|
614
|
+
type: String
|
|
615
|
+
},
|
|
616
|
+
end:{
|
|
617
|
+
type: String
|
|
618
|
+
}
|
|
619
|
+
}
|
|
620
|
+
],
|
|
614
621
|
recurrence: {
|
|
615
622
|
status: {
|
|
616
623
|
type: Boolean,
|