tango-api-schema 2.2.46 → 2.2.48

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.46",
3
+ "version": "2.2.48",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -21,6 +21,9 @@ const downloadSchema = new mongoose.Schema({
21
21
  storeIds: {
22
22
  type: Array,
23
23
  },
24
+ userEmailList: {
25
+ type: Array,
26
+ },
24
27
  questions: {
25
28
  type: Array,
26
29
  },
@@ -98,6 +101,10 @@ const downloadSchema = new mongoose.Schema({
98
101
  enum: ['','report','gallery','dashboard'],
99
102
  default:''
100
103
  },
104
+ filtertype: {
105
+ type: String,
106
+ enum: ['Clusters','Teams']
107
+ },
101
108
  },
102
109
  {
103
110
  strict: true,