tango-api-schema 2.5.15 → 2.5.17

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.17",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -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' ],