tango-api-schema 2.2.146 → 2.2.148

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.146",
3
+ "version": "2.2.148",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -105,6 +105,9 @@ const taskSchema = new mongoose.Schema(
105
105
  type: Boolean,
106
106
  default:false
107
107
  },
108
+ checkListFrom: {
109
+ type: String
110
+ }
108
111
  },
109
112
  {
110
113
  strict: true,
@@ -234,7 +234,10 @@ const processedTaskSchema = new mongoose.Schema(
234
234
  },
235
235
  floorId:{
236
236
  type:mongoose.SchemaTypes.ObjectId,
237
- },
237
+ },
238
+ checkListFrom: {
239
+ type: String
240
+ }
238
241
  },
239
242
  {
240
243
  strict: true,
@@ -118,6 +118,9 @@ const processestaskconfigSchema = new mongoose.Schema({
118
118
  type: Boolean,
119
119
  default:false
120
120
  },
121
+ checkListFrom: {
122
+ type: String
123
+ }
121
124
  },
122
125
  {
123
126
  strict: true,