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
package/schema/client.model.js
CHANGED
|
@@ -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: {
|
package/schema/store.model.js
CHANGED
|
@@ -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: {
|
package/schema/tagging.model.js
CHANGED
|
@@ -25,7 +25,7 @@ const traxAuditData = new mongoose.Schema( {
|
|
|
25
25
|
type: String
|
|
26
26
|
},
|
|
27
27
|
tempId:{
|
|
28
|
-
type:
|
|
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
|
}
|