payservedb 3.1.6 → 3.1.7

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
@@ -107,7 +107,7 @@ const models = {
107
107
  ServiceRequest:require('./src/models/servicerequest'),
108
108
  CountryTaxRate:require('./src/models/country_tax'),
109
109
  Meter:require('./src/models/water_meter'),
110
- Concentrator:require('./src/models/water_meters_concentrator'),
110
+ Concentrator:require('./src/models/water_meter_concentrator'),
111
111
  Handover:require('./src/models/handover')
112
112
 
113
113
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payservedb",
3
- "version": "3.1.6",
3
+ "version": "3.1.7",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -20,7 +20,7 @@ const serviceRequestSchema = new mongoose.Schema({
20
20
  status: {
21
21
  type: String,
22
22
  required: true,
23
- enum: ['Pending', 'In Progress', 'Completed', 'Cancelled'],
23
+ enum: ['Pending', 'Awaiting', 'In Progress', 'Completed', 'Cancelled'],
24
24
  },
25
25
  customerId: {
26
26
  type: mongoose.Schema.Types.ObjectId,
File without changes
File without changes
File without changes
File without changes