tango-api-schema 2.2.30 → 2.2.32

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.2.30",
3
+ "version": "2.2.32",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -185,7 +185,12 @@ const checklistconfigSchema = new mongoose.Schema({
185
185
  enableNewDeployedStore:{
186
186
  type:Boolean,
187
187
  default:false
188
- }
188
+ },
189
+ coverage:{
190
+ type: String,
191
+ default: 'store',
192
+ enum: ["store", "user"]
193
+ },
189
194
  },
190
195
  {
191
196
  strict: true,
@@ -200,6 +200,11 @@ const processedchecklistSchema = new mongoose.Schema({
200
200
  restrictAttendance:{
201
201
  type:Boolean,
202
202
  default:false
203
+ },
204
+ coverage:{
205
+ type: String,
206
+ default: 'store',
207
+ enum: ["store", "user"]
203
208
  },
204
209
  },
205
210
  {
@@ -109,6 +109,11 @@ const processedchecklistconfigSchema = new mongoose.Schema({
109
109
  restrictAttendance:{
110
110
  type:Boolean,
111
111
  default:false
112
+ },
113
+ coverage:{
114
+ type: String,
115
+ default: 'store',
116
+ enum: ["store", "user"]
112
117
  },
113
118
  },
114
119
  {
@@ -110,8 +110,11 @@ const storeFixtureSchema = new mongoose.Schema(
110
110
  // TTB - Top to Bottom, BTT - Bottom to Top
111
111
  required: true,
112
112
  },
113
+ fixtureNumber: {
114
+ type: Number,
115
+ required: true,
116
+ },
113
117
  },
114
-
115
118
  {
116
119
  strict: true,
117
120
  versionKey: false,