tango-api-schema 2.5.62 → 2.5.63

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,28 +1,28 @@
1
- {
2
- "name": "tango-api-schema",
3
- "version": "2.5.62",
4
- "description": "tangoEye model schema",
5
- "main": "index.js",
6
- "type": "module",
7
- "scripts": {
8
- "test": "echo \"Error: no test specified\" && exit 1",
9
- "start": "node index.js",
10
- "build:patch": "node build.js patch && npm publish",
11
- "build:minor": "node build.js minor && npm publish",
12
- "build:major": "node build.js major && npm publish"
13
- },
14
- "repository": {
15
- "type": "git",
16
- "url": "git+https://praveen22raj@bitbucket.org/tangoeye-retail/tango-api-schema.git"
17
- },
18
- "author": "praveenraj",
19
- "license": "ISC",
20
- "bugs": {
21
- "url": "https://bitbucket.org/tangoeye-retail/tango-api-schema/issues"
22
- },
23
- "homepage": "https://bitbucket.org/tangoeye-retail/tango-api-schema#readme",
24
- "dependencies": {
25
- "express": "^4.21.1",
26
- "mongoose": "^7.5.3"
27
- }
1
+ {
2
+ "name": "tango-api-schema",
3
+ "version": "2.5.63",
4
+ "description": "tangoEye model schema",
5
+ "main": "index.js",
6
+ "type": "module",
7
+ "scripts": {
8
+ "test": "echo \"Error: no test specified\" && exit 1",
9
+ "start": "node index.js",
10
+ "build:patch": "node build.js patch && npm publish",
11
+ "build:minor": "node build.js minor && npm publish",
12
+ "build:major": "node build.js major && npm publish"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://praveen22raj@bitbucket.org/tangoeye-retail/tango-api-schema.git"
17
+ },
18
+ "author": "praveenraj",
19
+ "license": "ISC",
20
+ "bugs": {
21
+ "url": "https://bitbucket.org/tangoeye-retail/tango-api-schema/issues"
22
+ },
23
+ "homepage": "https://bitbucket.org/tangoeye-retail/tango-api-schema#readme",
24
+ "dependencies": {
25
+ "express": "^4.21.1",
26
+ "mongoose": "^7.5.3"
27
+ }
28
28
  }
@@ -435,6 +435,20 @@ const checklistconfigSchema = new mongoose.Schema({
435
435
  type: Number,
436
436
  default: 0
437
437
  },
438
+ export:{
439
+ type:Boolean,
440
+ default:false
441
+ },
442
+ notifyFlags:{
443
+ notifyType:{
444
+ type:Array,
445
+ default:[]
446
+ },
447
+ users:{
448
+ type:Array,
449
+ default:[]
450
+ }
451
+ }
438
452
  },
439
453
  {
440
454
  strict: true,
@@ -254,6 +254,9 @@ const processedchecklistSchema = new mongoose.Schema({
254
254
  type:Number,
255
255
  default:0
256
256
  },
257
+ export:{
258
+ type:Boolean
259
+ }
257
260
  },
258
261
  {
259
262
  strict: true,
@@ -91,6 +91,31 @@ const storeFixtureSchema = new mongoose.Schema(
91
91
  fixtureCapacity: {
92
92
  type: Number,
93
93
  },
94
+ standardFixtureCapacity: {
95
+ type: Number,
96
+ },
97
+ StandardShelfConfig: [
98
+ {
99
+ shelfNumber: {
100
+ type: Number,
101
+ },
102
+ shelfType: {
103
+ type: String,
104
+ },
105
+ zone: {
106
+ type: String,
107
+ },
108
+ productPerShelf: {
109
+ type: Number,
110
+ },
111
+ trayRows: {
112
+ type: Number,
113
+ },
114
+ productBrandName: {
115
+ type:Array
116
+ }
117
+ },
118
+ ],
94
119
  associatedElementType: {
95
120
  type: String,
96
121
  enum: [ 'wall', 'facade' ],