tango-api-schema 2.0.29 → 2.0.30
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 +1 -1
- package/schema/store.model.js +55 -2
package/package.json
CHANGED
package/schema/store.model.js
CHANGED
|
@@ -39,7 +39,6 @@ const store = new mongoose.Schema(
|
|
|
39
39
|
type: String,
|
|
40
40
|
},
|
|
41
41
|
},
|
|
42
|
-
|
|
43
42
|
storeProfile: {
|
|
44
43
|
storeCode: {
|
|
45
44
|
type: String,
|
|
@@ -170,7 +169,7 @@ const store = new mongoose.Schema(
|
|
|
170
169
|
ipManufacturerStatus: {
|
|
171
170
|
type: Boolean,
|
|
172
171
|
},
|
|
173
|
-
|
|
172
|
+
frameRTSPURL: {
|
|
174
173
|
type: Boolean,
|
|
175
174
|
},
|
|
176
175
|
installEdge: {
|
|
@@ -184,6 +183,18 @@ const store = new mongoose.Schema(
|
|
|
184
183
|
},
|
|
185
184
|
isSocketEnable:{
|
|
186
185
|
type: Boolean,
|
|
186
|
+
},
|
|
187
|
+
storeCameraManufacturer:[
|
|
188
|
+
{
|
|
189
|
+
ip: { type: String },
|
|
190
|
+
manufacturer: { type: String },
|
|
191
|
+
},
|
|
192
|
+
],
|
|
193
|
+
lastUpdatedAt: {
|
|
194
|
+
type: Date,
|
|
195
|
+
},
|
|
196
|
+
deployed:{
|
|
197
|
+
type: Boolean,
|
|
187
198
|
}
|
|
188
199
|
},
|
|
189
200
|
spocDetails: [
|
|
@@ -230,6 +241,48 @@ const store = new mongoose.Schema(
|
|
|
230
241
|
type: Date,
|
|
231
242
|
},
|
|
232
243
|
},
|
|
244
|
+
pipelineTrigger: {
|
|
245
|
+
version: {
|
|
246
|
+
type: String,
|
|
247
|
+
default: 'v2',
|
|
248
|
+
},
|
|
249
|
+
pipelineType: {
|
|
250
|
+
type: String,
|
|
251
|
+
default: 'v2_live',
|
|
252
|
+
},
|
|
253
|
+
reidQueue: {
|
|
254
|
+
type: String,
|
|
255
|
+
default: 'reid_v2.fifo',
|
|
256
|
+
},
|
|
257
|
+
processLiveFeature: {
|
|
258
|
+
type: Boolean,
|
|
259
|
+
default: false,
|
|
260
|
+
},
|
|
261
|
+
processEodFeature: {
|
|
262
|
+
type: Boolean,
|
|
263
|
+
default: true,
|
|
264
|
+
},
|
|
265
|
+
processReid: {
|
|
266
|
+
type: Boolean,
|
|
267
|
+
default: true,
|
|
268
|
+
},
|
|
269
|
+
processYolo: {
|
|
270
|
+
type: Boolean,
|
|
271
|
+
default: true,
|
|
272
|
+
},
|
|
273
|
+
yoloQueue: {
|
|
274
|
+
type: String,
|
|
275
|
+
default: 'yolo_live_v2',
|
|
276
|
+
},
|
|
277
|
+
filterType: {
|
|
278
|
+
type: String,
|
|
279
|
+
default: 'dynamic',
|
|
280
|
+
},
|
|
281
|
+
liveQueue:{
|
|
282
|
+
type: String,
|
|
283
|
+
default: "yolo-v2-live",
|
|
284
|
+
},
|
|
285
|
+
},
|
|
233
286
|
},
|
|
234
287
|
{
|
|
235
288
|
strict: true,
|