tango-api-schema 2.2.178 → 2.2.180
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
|
@@ -198,7 +198,7 @@ const checklistconfigSchema = new mongoose.Schema({
|
|
|
198
198
|
type: Boolean,
|
|
199
199
|
default:false
|
|
200
200
|
},
|
|
201
|
-
aiConfig:{
|
|
201
|
+
aiConfig: {
|
|
202
202
|
assignConfig: {
|
|
203
203
|
type:String
|
|
204
204
|
},
|
|
@@ -240,6 +240,44 @@ const checklistconfigSchema = new mongoose.Schema({
|
|
|
240
240
|
},
|
|
241
241
|
autoTask:{
|
|
242
242
|
type:Boolean
|
|
243
|
+
},
|
|
244
|
+
backroomMonitoring: {
|
|
245
|
+
countAlert: {
|
|
246
|
+
status: {
|
|
247
|
+
type:Boolean
|
|
248
|
+
},
|
|
249
|
+
condition: {
|
|
250
|
+
type:String
|
|
251
|
+
},
|
|
252
|
+
value: {
|
|
253
|
+
type:String
|
|
254
|
+
},
|
|
255
|
+
},
|
|
256
|
+
timeSpendAlert: {
|
|
257
|
+
status: {
|
|
258
|
+
type:Boolean
|
|
259
|
+
},
|
|
260
|
+
condition: {
|
|
261
|
+
type:String
|
|
262
|
+
},
|
|
263
|
+
value: {
|
|
264
|
+
type:String
|
|
265
|
+
},
|
|
266
|
+
},
|
|
267
|
+
hibernation: {
|
|
268
|
+
status: {
|
|
269
|
+
type:Boolean
|
|
270
|
+
},
|
|
271
|
+
start: {
|
|
272
|
+
type:String
|
|
273
|
+
},
|
|
274
|
+
end: {
|
|
275
|
+
type:String
|
|
276
|
+
},
|
|
277
|
+
},
|
|
278
|
+
},
|
|
279
|
+
detectionArea: {
|
|
280
|
+
type:Array
|
|
243
281
|
}
|
|
244
282
|
},
|
|
245
283
|
rawVideoUpload: {
|
|
@@ -129,7 +129,7 @@ const processedchecklistconfigSchema = new mongoose.Schema({
|
|
|
129
129
|
aiStoreList:{
|
|
130
130
|
type:Array
|
|
131
131
|
},
|
|
132
|
-
|
|
132
|
+
aiConfig: {
|
|
133
133
|
assignConfig: {
|
|
134
134
|
type:String
|
|
135
135
|
},
|
|
@@ -171,6 +171,44 @@ const processedchecklistconfigSchema = new mongoose.Schema({
|
|
|
171
171
|
},
|
|
172
172
|
autoTask:{
|
|
173
173
|
type:Boolean
|
|
174
|
+
},
|
|
175
|
+
backroomMonitoring: {
|
|
176
|
+
countAlert: {
|
|
177
|
+
status: {
|
|
178
|
+
type:Boolean
|
|
179
|
+
},
|
|
180
|
+
condition: {
|
|
181
|
+
type:String
|
|
182
|
+
},
|
|
183
|
+
value: {
|
|
184
|
+
type:String
|
|
185
|
+
},
|
|
186
|
+
},
|
|
187
|
+
timeSpendAlert: {
|
|
188
|
+
status: {
|
|
189
|
+
type:Boolean
|
|
190
|
+
},
|
|
191
|
+
condition: {
|
|
192
|
+
type:String
|
|
193
|
+
},
|
|
194
|
+
value: {
|
|
195
|
+
type:String
|
|
196
|
+
},
|
|
197
|
+
},
|
|
198
|
+
hibernation: {
|
|
199
|
+
status: {
|
|
200
|
+
type:Boolean
|
|
201
|
+
},
|
|
202
|
+
start: {
|
|
203
|
+
type:String
|
|
204
|
+
},
|
|
205
|
+
end: {
|
|
206
|
+
type:String
|
|
207
|
+
},
|
|
208
|
+
},
|
|
209
|
+
},
|
|
210
|
+
detectionArea: {
|
|
211
|
+
type:Array
|
|
174
212
|
}
|
|
175
213
|
},
|
|
176
214
|
rawVideoUpload: {
|