tango-api-schema 2.3.31 → 2.3.32

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.31",
3
+ "version": "2.3.32",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -104,7 +104,7 @@ const downloadSchema = new mongoose.Schema({
104
104
  },
105
105
  checkListName:{
106
106
  type: String,
107
- },
107
+ },
108
108
  downloadInsertFrom: {
109
109
  type: String,
110
110
  enum: ['','report','gallery','dashboard'],
@@ -113,10 +113,7 @@ const downloadSchema = new mongoose.Schema({
113
113
  filtertype: {
114
114
  type: String,
115
115
  enum: ['Clusters','Teams']
116
- },
117
- aiFilter:{
118
- type: String,
119
- },
116
+ },
120
117
  },
121
118
  {
122
119
  strict: true,
@@ -348,6 +348,16 @@ const planoTaskCompliance = new mongoose.Schema(
348
348
  }
349
349
  ]
350
350
  }
351
+ ],
352
+ zoneStatus:[
353
+ {
354
+ zone:{
355
+ type:String
356
+ },
357
+ status:{
358
+ type:String
359
+ }
360
+ }
351
361
  ]
352
362
  }],
353
363
  planoId: {
@@ -43,12 +43,6 @@ const runAIRequestSchema = new mongoose.Schema({
43
43
  createdBy: {
44
44
  type: String
45
45
  },
46
- uniqueqid: {
47
- type: String
48
- },
49
- checkListNumber: {
50
- type: Number,
51
- },
52
46
  },
53
47
  {
54
48
  strict: true,