payservedb 9.0.9 → 9.1.0

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/index.js CHANGED
@@ -258,7 +258,7 @@ const models = {
258
258
  EmailThread: require("./src/models/email_thread"),
259
259
  MoveinLandlord: require("./src/models/movein_landlord"),
260
260
  MoveinUser: require("./src/models/movein_user"),
261
- // InvoiceWithholdingTax: require("./src/models/InvoiceWithholdingTax"),
261
+ InvoiceWithholdingTax: require("./src/models/InvoiceWithholdingTax"),
262
262
  InvoiceCreditAdjustment: require("./src/models/invoiceCreditAdjustment"),
263
263
  // Customer Obsession admin-managed config
264
264
  EmailCcConfig: require("./src/models/email_cc_config"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payservedb",
3
- "version": "9.0.9",
3
+ "version": "9.1.0",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
package/src/models/faq.js CHANGED
@@ -1,6 +1,7 @@
1
1
  const mongoose = require('mongoose');
2
2
 
3
3
  const faqSchema = new mongoose.Schema({
4
+ name:{type:String},
4
5
  question:{type:String,required:true},
5
6
  answer:{type:String,required:true},
6
7
  facilityId: {