tango-api-schema 2.5.71 → 2.5.73

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.5.71",
3
+ "version": "2.5.73",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -92,7 +92,19 @@ const billingSchema = new mongoose.Schema(
92
92
  advanceInvoice: {
93
93
  type: Boolean,
94
94
  default: false
95
- }
95
+ },
96
+ products: [
97
+ {
98
+ productName: {
99
+ type: String,
100
+ },
101
+ billingMethod: {
102
+ type: String,
103
+ enum: ['eachStore', 'overallStore'],
104
+ default: 'overallStore'
105
+ }
106
+ }
107
+ ]
96
108
  },
97
109
  {
98
110
  strict: true,
@@ -43,6 +43,12 @@ let pricingSchema = new mongoose.Schema(
43
43
  cameraCount:{
44
44
  type:Number
45
45
  },
46
+ zoneCount:{
47
+ type:Number
48
+ },
49
+ zoneName:{
50
+ type:Array
51
+ },
46
52
  products: [
47
53
  {
48
54
  productName: {
@@ -218,12 +218,6 @@ const processedchecklistconfigSchema = new mongoose.Schema({
218
218
  persondetectiontimethreshold: {
219
219
  type: String
220
220
  },
221
- },
222
- cameraAngle: {
223
- enabled: {
224
- type: Boolean,
225
- default: false
226
- }
227
221
  },
228
222
  halfshutter: {
229
223
  schedule: {
@@ -233,7 +227,53 @@ const processedchecklistconfigSchema = new mongoose.Schema({
233
227
  beforeCloseTime: {
234
228
  type: Number
235
229
  },
230
+ duration:{
231
+ type: Number
232
+ }
233
+ },
234
+ },
235
+ hygieneMonitoring:{
236
+ schedule: {
237
+ scheduletype: {
238
+ type: String
239
+ },
240
+ openTime: {
241
+ type: String
242
+ },
243
+ closeTime: {
244
+ type: String
245
+ },
236
246
  },
247
+ recurrence: {
248
+ status: {
249
+ type: Boolean,
250
+ default: false
251
+ },
252
+ time: {
253
+ type: Number
254
+ },
255
+ type:{
256
+ type:String
257
+ }
258
+ }
259
+ },
260
+ cameraAngle: {
261
+ enabled: {
262
+ type: Boolean,
263
+ default: false
264
+ }
265
+ },
266
+ IPChanged:{
267
+ enabled: {
268
+ type: Boolean,
269
+ default: false
270
+ }
271
+ },
272
+ resolutionChange:{
273
+ enabled: {
274
+ type: Boolean,
275
+ default: false
276
+ }
237
277
  },
238
278
  tvcompliance: {
239
279
  schedule: {
@@ -308,6 +348,17 @@ const processedchecklistconfigSchema = new mongoose.Schema({
308
348
  web: {
309
349
  type: Array
310
350
  },
351
+ email:{
352
+ type:{
353
+ type:Array
354
+ },
355
+ users:{
356
+ type:Array
357
+ },
358
+ teams:{
359
+ type:Array
360
+ }
361
+ }
311
362
  },
312
363
  },
313
364
  autoTaskConfig: {
@@ -319,6 +370,23 @@ const processedchecklistconfigSchema = new mongoose.Schema({
319
370
  type: Array,
320
371
  default: []
321
372
  },
373
+ taskAssignedTo: {
374
+ type:String
375
+ },
376
+ users:{
377
+ type:Array
378
+ },
379
+ approverEnabled:{
380
+ type:Boolean
381
+ },
382
+ taskValidity:{
383
+ time:{
384
+ type:Number
385
+ },
386
+ type:{
387
+ type:String
388
+ }
389
+ }
322
390
  },
323
391
  exportConfig: {
324
392
  enabled: {