tango-api-schema 2.2.60 → 2.2.62

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.2.60",
3
+ "version": "2.2.62",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -94,6 +94,15 @@ const checklistlogSchema = new mongoose.Schema({
94
94
  type:Array,
95
95
  default:[]
96
96
  },
97
+ userEmail: {
98
+ type: String
99
+ },
100
+ userName: {
101
+ type: String
102
+ },
103
+ coverage: {
104
+ type: String
105
+ },
97
106
  },
98
107
  {
99
108
  strict: true,
@@ -54,7 +54,6 @@ const storeLayoutSchema = new mongoose.Schema( {
54
54
  type: String,
55
55
  enum: [ 'LTR', 'RTL' ],
56
56
  // LTR - Left to Right, RTL - Right to Left
57
- required: true,
58
57
  },
59
58
  },
60
59
  {