tango-api-schema 2.1.98 → 2.1.99

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.98",
3
+ "version": "2.1.99",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -194,6 +194,9 @@ const processedchecklistSchema = new mongoose.Schema({
194
194
  type:Array,
195
195
  default:[]
196
196
  },
197
+ checkListDescription:{
198
+ type: String,
199
+ },
197
200
  },
198
201
  {
199
202
  strict: true,
@@ -99,6 +99,9 @@ const processedchecklistconfigSchema = new mongoose.Schema({
99
99
  type:Array,
100
100
  default:[]
101
101
  },
102
+ checkListDescription:{
103
+ type: String,
104
+ },
102
105
  },
103
106
  {
104
107
  strict: true,
@@ -181,6 +181,9 @@ const processedTaskSchema = new mongoose.Schema(
181
181
  priorityType:{
182
182
  type:String
183
183
  },
184
+ checkListDescription:{
185
+ type: String,
186
+ },
184
187
  },
185
188
  {
186
189
  strict: true,
@@ -95,6 +95,9 @@ const processestaskconfigSchema = new mongoose.Schema({
95
95
  type:Array,
96
96
  default:[]
97
97
  },
98
+ checkListDescription:{
99
+ type: String,
100
+ },
98
101
  },
99
102
  {
100
103
  strict: true,