tango-api-schema 2.4.4 → 2.4.6

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.4",
3
+ "version": "2.4.6",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -143,6 +143,9 @@ const checklistquestionconfigSchema = new mongoose.Schema({
143
143
  sectionNumber:{
144
144
  type: Number,
145
145
  },
146
+ maxQuestionNumber:{
147
+ type: Number,
148
+ },
146
149
  },
147
150
  {
148
151
  strict: true,
@@ -358,7 +358,15 @@ const planoTaskCompliance = new mongoose.Schema(
358
358
  type:String
359
359
  }
360
360
  }
361
- ]
361
+ ],
362
+ fixtureWidth:{
363
+ value:{
364
+ type:Number
365
+ },
366
+ unit:{
367
+ type:String
368
+ }
369
+ }
362
370
  }],
363
371
  planoId: {
364
372
  type: mongoose.Types.ObjectId,
@@ -373,7 +381,7 @@ const planoTaskCompliance = new mongoose.Schema(
373
381
  },
374
382
  type: {
375
383
  type: String,
376
- enum: ['fixture', 'vm', 'product', 'layout', 'merchRollout', 'vmRollout'],
384
+ enum: ['fixture', 'vm', 'product', 'layout', 'merchRollout', 'vmRollout', 'fixtureMeasurement'],
377
385
  required: true
378
386
  },
379
387
  date_string: {