tango-api-schema 2.2.3 → 2.2.5

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.3",
3
+ "version": "2.2.5",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -102,6 +102,10 @@ const processedchecklistconfigSchema = new mongoose.Schema({
102
102
  checkListDescription:{
103
103
  type: String,
104
104
  },
105
+ remainder:{
106
+ type:Array,
107
+ default:[]
108
+ },
105
109
  },
106
110
  {
107
111
  strict: true,
@@ -184,6 +184,10 @@ const processedTaskSchema = new mongoose.Schema(
184
184
  checkListDescription:{
185
185
  type: String,
186
186
  },
187
+ remainder:{
188
+ type:Array,
189
+ default:[]
190
+ },
187
191
  },
188
192
  {
189
193
  strict: true,
@@ -97,6 +97,13 @@ const processestaskconfigSchema = new mongoose.Schema({
97
97
  },
98
98
  checkListDescription:{
99
99
  type: String,
100
+ },
101
+ priorityType:{
102
+ type:String
103
+ },
104
+ remainder:{
105
+ type:Array,
106
+ default:[]
100
107
  },
101
108
  },
102
109
  {