tango-api-schema 2.1.0 → 2.1.3

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.1.0",
3
+ "version": "2.1.3",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -224,12 +224,15 @@ const client = new mongoose.Schema(
224
224
  auditConfigs: {
225
225
  audit: {
226
226
  type: Boolean,
227
+ default: true
227
228
  },
228
229
  count:{
229
- type:Number
230
+ type:Number,
231
+ default:200
230
232
  },
231
233
  ratio:{
232
- type:Number
234
+ type:Number,
235
+ default:0.75,
233
236
  },
234
237
  queueName: {
235
238
  type: String,
@@ -240,6 +243,23 @@ const client = new mongoose.Schema(
240
243
  trafficQueueName: {
241
244
  type: String,
242
245
  },
246
+ traxQueueName: {
247
+ unattendedCustomer :{
248
+ type:String
249
+ },
250
+ leftInMiddle:{
251
+ type:String
252
+ },
253
+ uniformDetection:{
254
+ type:String
255
+ },
256
+ mobileDetection:{
257
+ type:String
258
+ },
259
+ cameraAngleChange:{
260
+ type:String
261
+ }
262
+ }
243
263
  },
244
264
  assignedUsers: {
245
265
  csm: {
@@ -97,6 +97,7 @@ const store = new mongoose.Schema(
97
97
  },
98
98
  firstFile: {
99
99
  type: Boolean,
100
+ default:false
100
101
  },
101
102
  status: {
102
103
  type: Boolean,
@@ -259,6 +260,7 @@ const store = new mongoose.Schema(
259
260
  },
260
261
  hibernation: {
261
262
  type: Date,
263
+ default: new Date()
262
264
  },
263
265
  },
264
266
  pipelineTrigger: {
@@ -26,7 +26,13 @@ const collection = new Schema({
26
26
  isDeleted:{
27
27
  type:Boolean,
28
28
  default:false
29
- }
29
+ },
30
+ rgbColor: {
31
+ type:String,
32
+ },
33
+ rgbBorderColor: {
34
+ type:String,
35
+ },
30
36
  },{
31
37
  strict: true,
32
38
  versionKey: false,
@@ -25,7 +25,7 @@ const traxAuditData = new mongoose.Schema( {
25
25
  type: String
26
26
  },
27
27
  tempId:{
28
- type: String
28
+ type: Number
29
29
  },
30
30
  fileDate: {
31
31
  type: String,
@@ -40,9 +40,6 @@ const traxAuditData = new mongoose.Schema( {
40
40
  installedStore: {
41
41
  type: Number,
42
42
  },
43
- totalFilesCount: {
44
- type: Number,
45
- },
46
43
  sqs:{
47
44
  type:Object
48
45
  }