tango-api-schema 2.5.15 → 2.5.18

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.15",
3
+ "version": "2.5.18",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -508,6 +508,18 @@ const client = new mongoose.Schema(
508
508
  type: Number,
509
509
  default: 3
510
510
  },
511
+ allowTicketReview: {
512
+ type: Number,
513
+ default: 3
514
+ },
515
+ allowTangoReview: {
516
+ type: Number,
517
+ default: 4
518
+ },
519
+ allowTangoApprove: {
520
+ type: Number,
521
+ default: 4
522
+ },
511
523
  allowImageView: {
512
524
  type: Number,
513
525
  default:90
@@ -66,7 +66,10 @@ const storeLayoutSchema = new mongoose.Schema( {
66
66
  verificationStatus:{
67
67
  type:Boolean
68
68
  },
69
- rolloutStatus:{
69
+ merchRolloutStatus:{
70
+ type:Boolean
71
+ },
72
+ vmRolloutStatus:{
70
73
  type:Boolean
71
74
  }
72
75
  },
@@ -115,6 +115,10 @@ const user = new mongoose.Schema(
115
115
  type:String,
116
116
  default:''
117
117
  },
118
+ appName : {
119
+ type:String,
120
+ default:''
121
+ },
118
122
  loginFrom:{
119
123
  type:String,
120
124
  enum: [ 'web', 'android', 'ios' ],