tango-api-schema 2.4.8 → 2.4.10

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.4.8",
3
+ "version": "2.4.10",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -77,6 +77,10 @@ const collection =new mongoose.Schema(
77
77
  type: String,
78
78
  trim: true,
79
79
  },
80
+ playBack:{
81
+ type:Boolean,
82
+ default:false
83
+ },
80
84
  filters: {
81
85
  yolo: {
82
86
  type: Boolean,
@@ -389,7 +389,11 @@ const store = new mongoose.Schema(
389
389
  },
390
390
  employee: {
391
391
  type:Number,
392
- default: 5
392
+ default: 10000
393
+ },
394
+ junk: {
395
+ type:Number,
396
+ default: 10000
393
397
  }
394
398
  }
395
399
  },