tango-api-schema 1.0.32 → 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 +4 -0
package/package.json
CHANGED
package/schema/stores.model.js
CHANGED
|
@@ -534,15 +534,19 @@ const collection = new mongoose.Schema(
|
|
|
534
534
|
featurePackage: {
|
|
535
535
|
controlCenter: {
|
|
536
536
|
type: Boolean,
|
|
537
|
+
default: false,
|
|
537
538
|
},
|
|
538
539
|
revops: {
|
|
539
540
|
type: Boolean,
|
|
541
|
+
default: false,
|
|
540
542
|
},
|
|
541
543
|
zone: {
|
|
542
544
|
type: Boolean,
|
|
545
|
+
default: false,
|
|
543
546
|
},
|
|
544
547
|
recap:{
|
|
545
548
|
type: Boolean,
|
|
549
|
+
default: false,
|
|
546
550
|
}
|
|
547
551
|
},
|
|
548
552
|
},
|