tango-api-schema 2.3.32 → 2.3.34

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.3.32",
3
+ "version": "2.3.34",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -211,6 +211,12 @@ const fixtureConfigSchema = new mongoose.Schema(
211
211
  },
212
212
  isEdited: {
213
213
  type: Boolean,
214
+ },
215
+ templateGroupNumber:{
216
+ type:Number
217
+ },
218
+ templateGroupMax:{
219
+ type:Number
214
220
  }
215
221
  },
216
222
  {
@@ -216,6 +216,12 @@ const storeFixtureSchema = new mongoose.Schema(
216
216
  templateGroupName: {
217
217
  type: String
218
218
  },
219
+ templateGroupNumber:{
220
+ type:Number
221
+ },
222
+ templateGroupMax:{
223
+ type:Number
224
+ }
219
225
 
220
226
  },
221
227
  {