tango-api-schema 2.0.89 → 2.0.90

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.0.89",
3
+ "version": "2.0.90",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -196,7 +196,10 @@ const client = new mongoose.Schema(
196
196
  enum:[1,2,3,4,5,6,8,9,10,11,12],
197
197
  default:1
198
198
  },
199
-
199
+ emailAlert:{
200
+ type: Boolean,
201
+ default: false
202
+ }
200
203
  },
201
204
  reportConfigs: {
202
205
  report: {
@@ -406,7 +409,7 @@ const client = new mongoose.Schema(
406
409
  type: Array,
407
410
  default: [ '*' ],
408
411
  },
409
- },
412
+ }
410
413
  },
411
414
  {
412
415
  strict: true,