tango-api-schema 2.2.97 → 2.2.99

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.97",
3
+ "version": "2.2.99",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -55,6 +55,12 @@ const fixtureConfigSchema = new mongoose.Schema(
55
55
  fixtureConfigType: {
56
56
  type: String
57
57
  },
58
+ shelfConfig:{
59
+ type: Array,
60
+ },
61
+ vmConfig:{
62
+ type: Array,
63
+ },
58
64
  },
59
65
  {
60
66
  strict: true,
@@ -48,6 +48,9 @@ const fixtureShelfSchema = new mongoose.Schema(
48
48
  },
49
49
  rfId:{
50
50
  type:String
51
+ },
52
+ shelfSplitup: {
53
+ type: Number,
51
54
  }
52
55
  },
53
56
  {
@@ -64,7 +64,10 @@ const planoProductDetailSchema = new mongoose.Schema(
64
64
  },
65
65
  xZone:{
66
66
  type: String
67
- }
67
+ },
68
+ fixtureConfigId: {
69
+ type: mongoose.Types.ObjectId,
70
+ },
68
71
 
69
72
  },
70
73
  {
@@ -199,6 +199,9 @@ const store = new mongoose.Schema(
199
199
  isSocketEnable: {
200
200
  type: Boolean,
201
201
  },
202
+ isRemoteEyeTest:{
203
+ type: Boolean,
204
+ },
202
205
  storeCameraManufacturer: [
203
206
  {
204
207
  ip: { type: String },
@@ -146,6 +146,15 @@ const storeFixtureSchema = new mongoose.Schema(
146
146
  fixtureCode: {
147
147
  type: String,
148
148
  },
149
+ header: {
150
+ type: String,
151
+ },
152
+ footer: {
153
+ type: String,
154
+ },
155
+ associatedElementFixtureNumber: {
156
+ type: Number,
157
+ },
149
158
  },
150
159
  {
151
160
  strict: true,