tango-api-schema 2.5.45 → 2.5.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.5.45",
3
+ "version": "2.5.48",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -786,6 +786,9 @@ const client = new mongoose.Schema(
786
786
  sendTo: {
787
787
  type: Array,
788
788
  },
789
+ otherEmailList:{
790
+ type: Array
791
+ }
789
792
  },
790
793
  clientConfigs: {
791
794
  exportLimit: {
@@ -257,7 +257,11 @@ const externalParameter = new mongoose.Schema(
257
257
  type: String,
258
258
  default: "30"
259
259
  },
260
- }
260
+ },
261
+ isMandatory: {
262
+ type: Boolean,
263
+ default: true
264
+ },
261
265
 
262
266
 
263
267
  },