tango-api-schema 1.0.49 → 1.0.51

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": "1.0.49",
3
+ "version": "1.0.51",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -3,7 +3,7 @@ import mongoose from 'mongoose';
3
3
  import uniqueValidator from 'mongoose-unique-validator';
4
4
  const reportParameterSchema = mongoose.Schema( {},
5
5
  {
6
- strict: true,
6
+ strict: false,
7
7
  versionKey: false,
8
8
  timestamps: true,
9
9
  } );
@@ -555,6 +555,10 @@ const collection = new mongoose.Schema(
555
555
  recap:{
556
556
  type: Boolean,
557
557
  default: false,
558
+ },
559
+ eyeTest:{
560
+ type: Boolean,
561
+ default: false,
558
562
  }
559
563
  },
560
564
  },