tango-api-schema 2.5.69 → 2.5.70

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.5.69",
3
+ "version": "2.5.70",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -296,14 +296,54 @@ const checklistconfigSchema = new mongoose.Schema({
296
296
  beforeCloseTime: {
297
297
  type: Number
298
298
  },
299
+ duration:{
300
+ type:Number
301
+ }
299
302
  },
300
303
  },
304
+ hygieneMonitoring:{
305
+ schedule: {
306
+ scheduletype: {
307
+ type: String
308
+ },
309
+ openTime: {
310
+ type: String
311
+ },
312
+ closeTime: {
313
+ type: String
314
+ },
315
+ },
316
+ recurrence: {
317
+ status: {
318
+ type: Boolean,
319
+ default: false
320
+ },
321
+ time: {
322
+ type: Number
323
+ },
324
+ type:{
325
+ type:String
326
+ }
327
+ }
328
+ },
301
329
  cameraAngle: {
302
330
  enabled: {
303
331
  type: Boolean,
304
332
  default: false
305
333
  }
306
334
  },
335
+ IPChanged:{
336
+ enabled: {
337
+ type: Boolean,
338
+ default: false
339
+ }
340
+ },
341
+ resolutionChange:{
342
+ enabled: {
343
+ type: Boolean,
344
+ default: false
345
+ }
346
+ },
307
347
  tvcompliance: {
308
348
  schedule: {
309
349
  scheduletype: {
@@ -377,6 +417,17 @@ const checklistconfigSchema = new mongoose.Schema({
377
417
  web: {
378
418
  type: Array
379
419
  },
420
+ email:{
421
+ type:{
422
+ type:Array
423
+ },
424
+ users:{
425
+ type:Array
426
+ },
427
+ teams:{
428
+ type:Array
429
+ }
430
+ }
380
431
  },
381
432
  },
382
433
  autoTaskConfig: {
@@ -388,6 +439,23 @@ const checklistconfigSchema = new mongoose.Schema({
388
439
  type: Array,
389
440
  default: []
390
441
  },
442
+ taskAssignedTo: {
443
+ type:String
444
+ },
445
+ users:{
446
+ type:Array
447
+ },
448
+ approverEnabled:{
449
+ type:Boolean
450
+ },
451
+ taskValidity:{
452
+ time:{
453
+ type:Number
454
+ },
455
+ type:{
456
+ type:String
457
+ }
458
+ }
391
459
  },
392
460
  exportConfig: {
393
461
  enabled: {
@@ -269,6 +269,9 @@ const processedTaskSchema = new mongoose.Schema(
269
269
  },
270
270
  fixtureNewUI:{
271
271
  type:Boolean
272
+ },
273
+ aiType:{
274
+ type:String
272
275
  }
273
276
  },
274
277
  {