tango-api-schema 2.5.55 → 2.5.57
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
|
@@ -131,7 +131,7 @@ const checklistconfigSchema = new mongoose.Schema({
|
|
|
131
131
|
checkListType: {
|
|
132
132
|
type: String,
|
|
133
133
|
default: "custom",
|
|
134
|
-
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']
|
|
134
|
+
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']
|
|
135
135
|
},
|
|
136
136
|
createdAt: {
|
|
137
137
|
type: Date,
|
|
@@ -298,7 +298,13 @@ const checklistconfigSchema = new mongoose.Schema({
|
|
|
298
298
|
},
|
|
299
299
|
},
|
|
300
300
|
},
|
|
301
|
-
|
|
301
|
+
cameraAngle: {
|
|
302
|
+
enabled: {
|
|
303
|
+
type: Boolean,
|
|
304
|
+
default: false
|
|
305
|
+
}
|
|
306
|
+
},
|
|
307
|
+
tvcompliance: {
|
|
302
308
|
schedule: {
|
|
303
309
|
scheduletype: {
|
|
304
310
|
type: String
|
|
@@ -320,27 +326,27 @@ const checklistconfigSchema = new mongoose.Schema({
|
|
|
320
326
|
}
|
|
321
327
|
},
|
|
322
328
|
detectedStatus: {
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
+
status: {
|
|
330
|
+
type: Boolean,
|
|
331
|
+
default: false
|
|
332
|
+
},
|
|
333
|
+
detections: {
|
|
334
|
+
type: Number
|
|
335
|
+
},
|
|
329
336
|
},
|
|
330
337
|
},
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
type:Boolean
|
|
338
|
+
queuealert: {
|
|
339
|
+
queueLengthEnabled: {
|
|
340
|
+
type: Boolean
|
|
335
341
|
},
|
|
336
|
-
queueLimit:{
|
|
337
|
-
type:String
|
|
342
|
+
queueLimit: {
|
|
343
|
+
type: String
|
|
338
344
|
},
|
|
339
|
-
waitTimeEnabled:{
|
|
340
|
-
type:Boolean
|
|
345
|
+
waitTimeEnabled: {
|
|
346
|
+
type: Boolean
|
|
341
347
|
},
|
|
342
|
-
waitTimeLimit:{
|
|
343
|
-
type:String
|
|
348
|
+
waitTimeLimit: {
|
|
349
|
+
type: String
|
|
344
350
|
}
|
|
345
351
|
},
|
|
346
352
|
alertConfig: {
|
|
@@ -218,6 +218,12 @@ const processedchecklistconfigSchema = new mongoose.Schema({
|
|
|
218
218
|
persondetectiontimethreshold: {
|
|
219
219
|
type: String
|
|
220
220
|
},
|
|
221
|
+
},
|
|
222
|
+
cameraAngle: {
|
|
223
|
+
enabled: {
|
|
224
|
+
type: Boolean,
|
|
225
|
+
default: false
|
|
226
|
+
}
|
|
221
227
|
},
|
|
222
228
|
halfshutter: {
|
|
223
229
|
schedule: {
|