tango-api-schema 2.2.168 → 2.2.169

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.168",
3
+ "version": "2.2.169",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -45,6 +45,9 @@ const fixtureShelfSchema = new mongoose.Schema(
45
45
  rfId: {
46
46
  type: String
47
47
  },
48
+ sectionName: {
49
+ type: String
50
+ },
48
51
  shelfType: {
49
52
  type: String,
50
53
  enum: ['shelf', 'tray'],
@@ -19,6 +19,11 @@ const collection = new mongoose.Schema( {
19
19
  taskType:{
20
20
  type:String,
21
21
  enum:['layout','fixture','vm']
22
+ },
23
+ commentType:{
24
+ type:String,
25
+ enum:['comment','approve','disapprove','publish'],
26
+ default:"comment"
22
27
  },
23
28
  planoId:{
24
29
  type: mongoose.Types.ObjectId,