tango-api-schema 2.2.5 → 2.2.7

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.5",
3
+ "version": "2.2.7",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -383,6 +383,14 @@ const client = new mongoose.Schema(
383
383
  type:Boolean,
384
384
  default:false
385
385
  },
386
+ isFootfallDirectoryAudit:{
387
+ type:Boolean,
388
+ default:false
389
+ },
390
+ isFootfallDirectoryLimit:{
391
+ type:Boolean,
392
+ default:false
393
+ }
386
394
  },
387
395
  document: {
388
396
  addressProof: {
@@ -196,6 +196,10 @@ const processedchecklistSchema = new mongoose.Schema({
196
196
  },
197
197
  checkListDescription:{
198
198
  type: String,
199
+ },
200
+ restrictAttendance:{
201
+ type:Boolean,
202
+ default:false
199
203
  },
200
204
  },
201
205
  {
@@ -105,6 +105,10 @@ const processedchecklistconfigSchema = new mongoose.Schema({
105
105
  remainder:{
106
106
  type:Array,
107
107
  default:[]
108
+ },
109
+ restrictAttendance:{
110
+ type:Boolean,
111
+ default:false
108
112
  },
109
113
  },
110
114
  {
@@ -188,6 +188,10 @@ const processedTaskSchema = new mongoose.Schema(
188
188
  type:Array,
189
189
  default:[]
190
190
  },
191
+ restrictAttendance:{
192
+ type:Boolean,
193
+ default:false
194
+ },
191
195
  },
192
196
  {
193
197
  strict: true,
@@ -105,6 +105,10 @@ const processestaskconfigSchema = new mongoose.Schema({
105
105
  type:Array,
106
106
  default:[]
107
107
  },
108
+ restrictAttendance:{
109
+ type:Boolean,
110
+ default:false
111
+ },
108
112
  },
109
113
  {
110
114
  strict: true,