tango-api-schema 2.2.202 → 2.2.203
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 +6 -3
package/package.json
CHANGED
package/schema/store.model.js
CHANGED
|
@@ -376,13 +376,16 @@ const store = new mongoose.Schema(
|
|
|
376
376
|
},
|
|
377
377
|
revopTagging:{
|
|
378
378
|
duplicate: {
|
|
379
|
-
type:String
|
|
379
|
+
type:String,
|
|
380
|
+
default:"10%"
|
|
380
381
|
},
|
|
381
382
|
houseKeeping: {
|
|
382
|
-
type:Number
|
|
383
|
+
type:Number,
|
|
384
|
+
default: 1
|
|
383
385
|
},
|
|
384
386
|
employee: {
|
|
385
|
-
type:Number
|
|
387
|
+
type:Number,
|
|
388
|
+
default: 2
|
|
386
389
|
}
|
|
387
390
|
}
|
|
388
391
|
},
|