tango-api-schema 2.3.22 → 2.3.23

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.3.22",
3
+ "version": "2.3.23",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -190,7 +190,17 @@ const collection = new Schema(
190
190
  type: Number,
191
191
  trim: true,
192
192
  default: 5,
193
- }
193
+ },
194
+ taggedChecklist: [
195
+ {
196
+ checkListName: {
197
+ type: String
198
+ },
199
+ sourceCheckList_id: {
200
+ type: mongoose.SchemaTypes.ObjectId,
201
+ }
202
+ }
203
+ ]
194
204
  },
195
205
  {
196
206
  strict: true,
@@ -32,6 +32,13 @@ const collection = new Schema({
32
32
  rgbBorderColor: {
33
33
  type:String,
34
34
  },
35
+ productName:{
36
+ type:String,
37
+ required:true
38
+ },
39
+ checkListName:{
40
+ type:String
41
+ },
35
42
  },{
36
43
  strict: true,
37
44
  versionKey: false,