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
|
@@ -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,
|
|
@@ -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,
|