tango-api-schema 2.2.27 → 2.2.28

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.27",
3
+ "version": "2.2.28",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -45,7 +45,14 @@ const fixtureConfigSchema = new mongoose.Schema(
45
45
  default: 'mm',
46
46
  },
47
47
  },
48
-
48
+ fixtureBrandCategory:{
49
+ type: Array,
50
+ default: [],
51
+ },
52
+ fixtureBrandSubCategory:{
53
+ type: Array,
54
+ default: [],
55
+ },
49
56
  },
50
57
  {
51
58
  strict: true,
@@ -30,7 +30,6 @@ const fixtureShelfSchema = new mongoose.Schema(
30
30
  type: Number,
31
31
  required: true,
32
32
  },
33
-
34
33
  shelfOrder: {
35
34
  type: String,
36
35
  enum: [ 'LTR', 'RTL' ],
@@ -45,6 +44,12 @@ const fixtureShelfSchema = new mongoose.Schema(
45
44
  type: String,
46
45
  enum: [ 'header', 'footer', 'middle' ],
47
46
  default:'middle'
47
+ },
48
+ sectionName:{
49
+ type: String
50
+ },
51
+ rfId:{
52
+ type:String
48
53
  }
49
54
  },
50
55
  {
@@ -44,6 +44,10 @@ const planoComplianceSchema = new mongoose.Schema(
44
44
  type: String,
45
45
  enum: [ 'misplaced', 'proper' ],
46
46
  },
47
+ date:{
48
+ type:Date,
49
+ required:true
50
+ },
47
51
  },
48
52
  {
49
53
  strict: true,
@@ -44,7 +44,7 @@ const planogramSchema = new mongoose.Schema( {
44
44
  },
45
45
  productResolutionLevel: {
46
46
  type: String,
47
- enum: [ 'L1', 'L2', 'L3', 'L4' ],
47
+ enum: [ 'L1', 'L2', 'L3', 'L4', 'L5' ],
48
48
  // L1- floor level, L2- fixture level, L3- fixture-shelf level, L4- fixture-shelf-product level
49
49
  default: 'L3',
50
50
  }