tango-api-schema 2.4.10 → 2.4.12

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.4.10",
3
+ "version": "2.4.12",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -380,6 +380,10 @@ const checklistconfigSchema = new mongoose.Schema({
380
380
  runAIQuestionCount:{
381
381
  type:Number
382
382
  },
383
+ videoUploadTimeLimit:{
384
+ type:Number,
385
+ default:0
386
+ },
383
387
  },
384
388
  {
385
389
  strict: true,
@@ -472,6 +472,10 @@ const client = new mongoose.Schema(
472
472
  type: Boolean,
473
473
  default:false
474
474
  },
475
+ loginSSO:{
476
+ type: Boolean,
477
+ default:false
478
+ },
475
479
 
476
480
  },
477
481
  document: {
@@ -245,6 +245,10 @@ const processedchecklistSchema = new mongoose.Schema({
245
245
  runAIFlag:{
246
246
  type: Number,
247
247
  default: 0
248
+ },
249
+ videoUploadTimeLimit:{
250
+ type:Number,
251
+ default:0
248
252
  },
249
253
  },
250
254
  {
@@ -311,6 +311,10 @@ const processedchecklistconfigSchema = new mongoose.Schema({
311
311
  runAIQuestionCount:{
312
312
  type:Number
313
313
  },
314
+ videoUploadTimeLimit:{
315
+ type:Number,
316
+ default:0
317
+ },
314
318
  },
315
319
  {
316
320
  strict: true,