tango-api-schema 1.0.31 → 1.0.33
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/stores.model.js +16 -0
package/package.json
CHANGED
package/schema/stores.model.js
CHANGED
|
@@ -496,41 +496,57 @@ const collection = new mongoose.Schema(
|
|
|
496
496
|
pipelineTrigger: {
|
|
497
497
|
pipelineType: {
|
|
498
498
|
type: String,
|
|
499
|
+
default: 'v2_eod',
|
|
499
500
|
},
|
|
500
501
|
processLiveFeature: {
|
|
501
502
|
type: Boolean,
|
|
503
|
+
default: true,
|
|
502
504
|
},
|
|
503
505
|
processEodFeature: {
|
|
504
506
|
type: Boolean,
|
|
507
|
+
default: true,
|
|
505
508
|
},
|
|
506
509
|
processReid: {
|
|
507
510
|
type: Boolean,
|
|
511
|
+
default: true,
|
|
508
512
|
},
|
|
509
513
|
processYolo: {
|
|
510
514
|
type: Boolean,
|
|
515
|
+
default: true,
|
|
511
516
|
},
|
|
512
517
|
reidQueue: {
|
|
513
518
|
type: String,
|
|
519
|
+
default:"live-pipeline-reid-test.fifo"
|
|
514
520
|
},
|
|
515
521
|
yoloQueue: {
|
|
516
522
|
type: String,
|
|
523
|
+
default: 'eod-yolo.fifo',
|
|
517
524
|
},
|
|
518
525
|
version: {
|
|
519
526
|
type: String,
|
|
527
|
+
default: 'v2'
|
|
520
528
|
},
|
|
529
|
+
filterType:{
|
|
530
|
+
type: String,
|
|
531
|
+
default:'dynamic'
|
|
532
|
+
}
|
|
521
533
|
},
|
|
522
534
|
featurePackage: {
|
|
523
535
|
controlCenter: {
|
|
524
536
|
type: Boolean,
|
|
537
|
+
default: false,
|
|
525
538
|
},
|
|
526
539
|
revops: {
|
|
527
540
|
type: Boolean,
|
|
541
|
+
default: false,
|
|
528
542
|
},
|
|
529
543
|
zone: {
|
|
530
544
|
type: Boolean,
|
|
545
|
+
default: false,
|
|
531
546
|
},
|
|
532
547
|
recap:{
|
|
533
548
|
type: Boolean,
|
|
549
|
+
default: false,
|
|
534
550
|
}
|
|
535
551
|
},
|
|
536
552
|
},
|