tango-api-schema 2.1.90 → 2.1.91

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.1.90",
3
+ "version": "2.1.91",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -47,7 +47,14 @@ const checklistlogSchema = new mongoose.Schema({
47
47
  },
48
48
  processedChecklistId: {
49
49
  type: mongoose.SchemaTypes.ObjectId,
50
- }
50
+ },
51
+ type:{
52
+ type:String,
53
+ default:'checklist'
54
+ },
55
+ userAnswer:{
56
+ type:Array
57
+ },
51
58
  },
52
59
  {
53
60
  strict: true,
@@ -177,7 +177,10 @@ const processedTaskSchema = new mongoose.Schema(
177
177
  redoStatus:{
178
178
  type:Boolean,
179
179
  default:false
180
- }
180
+ },
181
+ priorityType:{
182
+ type:String
183
+ },
181
184
  },
182
185
  {
183
186
  strict: true,