tango-api-schema 2.0.103 → 2.0.104

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.103",
3
+ "version": "2.0.104",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -431,7 +431,11 @@ const client = new mongoose.Schema(
431
431
  type: Array,
432
432
  default: [ '*' ],
433
433
  },
434
- }
434
+ },
435
+ notifyCsmAssign: {
436
+ type: Boolean,
437
+ default:false
438
+ },
435
439
  },
436
440
  {
437
441
  strict: true,
@@ -25,8 +25,11 @@ const userAssigned = new mongoose.Schema(
25
25
  type: String,
26
26
  enum: ['user', 'csm'],
27
27
  default: 'user'
28
- }
29
-
28
+ },
29
+ isClientApproved: {
30
+ type: Boolean,
31
+ default: false
32
+ },
30
33
  },
31
34
  {
32
35
  strict: true,