tango-api-schema 2.4.17 → 2.4.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.4.17",
3
+ "version": "2.4.18",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -67,6 +67,10 @@ const fixtureShelfSchema = new mongoose.Schema(
67
67
  type: String,
68
68
  default: '',
69
69
  },
70
+ antennaNo: {
71
+ type: Number,
72
+ default: 0,
73
+ },
70
74
  },
71
75
  {
72
76
  strict: true,
@@ -16,7 +16,7 @@ const planoComplianceSchema = new mongoose.Schema(
16
16
  },
17
17
  type: {
18
18
  type: String,
19
- enum: [ 'product', 'vm' ],
19
+ enum: [ 'product', 'vm' ,'storageBox'],
20
20
  default:'product'
21
21
  },
22
22
  planoId: {
@@ -16,7 +16,7 @@ const planoMappingSchema = new mongoose.Schema(
16
16
  },
17
17
  type: {
18
18
  type: String,
19
- enum: [ 'product', 'vm' ],
19
+ enum: [ 'product', 'vm',,'storageBox' ],
20
20
  required: true,
21
21
  },
22
22
  planoId: {
@@ -221,6 +221,13 @@ const storeFixtureSchema = new mongoose.Schema(
221
221
  },
222
222
  templateGroupMax:{
223
223
  type:Number
224
+ },
225
+ readerId:{
226
+ type:String
227
+ },
228
+ isEdited:{
229
+ type:Boolean,
230
+ default:false
224
231
  }
225
232
 
226
233
  },