payservedb 8.5.3 → 8.5.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payservedb",
3
- "version": "8.5.3",
3
+ "version": "8.5.4",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -104,7 +104,7 @@ const leaseAgreementSchema = new mongoose.Schema({
104
104
  }],
105
105
  securityDeposit: { type: Number, required: true },
106
106
  balanceBroughtForward: { type: Number, required: true, default: 0 },
107
- taxEnabled: { type: Boolean, default: true },
107
+ taxEnabled: { type: Boolean, default: false },
108
108
  penaltyId: {
109
109
  type: mongoose.Schema.Types.ObjectId,
110
110
  ref: 'Penalty'
@@ -234,4 +234,4 @@ leaseAgreementSchema.index({ lastInvoiceYearMonth: 1 });
234
234
 
235
235
  const LeaseAgreement = mongoose.model('LeaseAgreement', leaseAgreementSchema);
236
236
 
237
- module.exports = LeaseAgreement;
237
+ module.exports = LeaseAgreement;