tango-api-schema 2.5.17 → 2.5.19
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/client.model.js +17 -1
package/package.json
CHANGED
package/schema/client.model.js
CHANGED
|
@@ -508,6 +508,18 @@ const client = new mongoose.Schema(
|
|
|
508
508
|
type: Number,
|
|
509
509
|
default: 3
|
|
510
510
|
},
|
|
511
|
+
allowTicketReview: {
|
|
512
|
+
type: Number,
|
|
513
|
+
default: 3
|
|
514
|
+
},
|
|
515
|
+
allowTangoReview: {
|
|
516
|
+
type: Number,
|
|
517
|
+
default: 4
|
|
518
|
+
},
|
|
519
|
+
allowTangoApprove: {
|
|
520
|
+
type: Number,
|
|
521
|
+
default: 4
|
|
522
|
+
},
|
|
511
523
|
allowImageView: {
|
|
512
524
|
type: Number,
|
|
513
525
|
default:90
|
|
@@ -576,7 +588,11 @@ const client = new mongoose.Schema(
|
|
|
576
588
|
tangoReview: {
|
|
577
589
|
type: String,
|
|
578
590
|
default: "85%"
|
|
579
|
-
}
|
|
591
|
+
},
|
|
592
|
+
tangoApproved:{ // this key for decide the final count is reflected by tango or client
|
|
593
|
+
type: Boolean,
|
|
594
|
+
default: false
|
|
595
|
+
}
|
|
580
596
|
},
|
|
581
597
|
document: {
|
|
582
598
|
addressProof: {
|