tango-api-schema 2.5.33 → 2.5.35

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.5.33",
3
+ "version": "2.5.35",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -68,8 +68,7 @@ const fixtureShelfSchema = new mongoose.Schema(
68
68
  default: '',
69
69
  },
70
70
  antennaNo: {
71
- type: Number,
72
- default: 0,
71
+ type: Array,
73
72
  },
74
73
  },
75
74
  {
@@ -158,7 +158,7 @@ const storeFixtureSchema = new mongoose.Schema(
158
158
  default: true,
159
159
  },
160
160
  antennaNo:{
161
- type:Number
161
+ type:Array
162
162
  }
163
163
  },
164
164
  isBodyEnabled: {
@@ -59,7 +59,7 @@ const storeLayoutSchema = new mongoose.Schema( {
59
59
  isEdited: {
60
60
  type: Boolean,
61
61
  },
62
- planoProgress:{
62
+ planoProgress:{
63
63
  type:Number,
64
64
  default:25
65
65
  },
@@ -75,6 +75,9 @@ const storeLayoutSchema = new mongoose.Schema( {
75
75
  cadLayout:{
76
76
  type:Boolean
77
77
  },
78
+ isPlanoApproved:{
79
+ type:Boolean
80
+ },
78
81
  },
79
82
  {
80
83
  strict: true,