tango-api-schema 2.0.155 → 2.0.157

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.155",
3
+ "version": "2.0.157",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -19,7 +19,8 @@ const auditStoreData = new mongoose.Schema( {
19
19
  type:String
20
20
  },
21
21
  moduleType:{
22
- type: String
22
+ type: String,
23
+ enum:['traffic','zone']
23
24
  },
24
25
  zoneName:{
25
26
  type: String
@@ -467,6 +467,11 @@ const client = new mongoose.Schema(
467
467
  type: Boolean,
468
468
  default:false
469
469
  },
470
+ edgeApp:{
471
+ password:{
472
+ type:String,
473
+ },
474
+ }
470
475
  },
471
476
  {
472
477
  strict: true,