tango-api-schema 2.2.2 → 2.2.4

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.2",
3
+ "version": "2.2.4",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -86,6 +86,10 @@ const checklistlogSchema = new mongoose.Schema({
86
86
  type:Boolean,
87
87
  default:false
88
88
  },
89
+ approver:{
90
+ type:Array,
91
+ default:[]
92
+ }
89
93
  },
90
94
  {
91
95
  strict: true,
@@ -97,6 +97,9 @@ const processestaskconfigSchema = new mongoose.Schema({
97
97
  },
98
98
  checkListDescription:{
99
99
  type: String,
100
+ },
101
+ priorityType:{
102
+ type:String
100
103
  },
101
104
  },
102
105
  {