tango-api-schema 2.4.0 → 2.4.1

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.4.0",
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.4.1",
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
  }
@@ -29,6 +29,9 @@ const appVersionSchema = new mongoose.Schema({
29
29
  clientId: {
30
30
  type: String,
31
31
  },
32
+ scanditKey:{
33
+ type:String
34
+ }
32
35
  },
33
36
  {
34
37
  strict: true,
@@ -211,6 +211,12 @@ const fixtureConfigSchema = new mongoose.Schema(
211
211
  },
212
212
  isEdited: {
213
213
  type: Boolean,
214
+ },
215
+ templateGroupNumber:{
216
+ type:Number
217
+ },
218
+ templateGroupMax:{
219
+ type:Number
214
220
  }
215
221
  },
216
222
  {
@@ -348,6 +348,16 @@ const planoTaskCompliance = new mongoose.Schema(
348
348
  }
349
349
  ]
350
350
  }
351
+ ],
352
+ zoneStatus:[
353
+ {
354
+ zone:{
355
+ type:String
356
+ },
357
+ status:{
358
+ type:String
359
+ }
360
+ }
351
361
  ]
352
362
  }],
353
363
  planoId: {
@@ -216,6 +216,12 @@ const storeFixtureSchema = new mongoose.Schema(
216
216
  templateGroupName: {
217
217
  type: String
218
218
  },
219
+ templateGroupNumber:{
220
+ type:Number
221
+ },
222
+ templateGroupMax:{
223
+ type:Number
224
+ }
219
225
 
220
226
  },
221
227
  {