tango-api-schema 2.5.70 → 2.5.72
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
package/schema/billing.model.js
CHANGED
package/schema/client.model.js
CHANGED
package/schema/invoice.model.js
CHANGED
|
@@ -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: {
|