payservedb 1.8.6 → 1.8.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.
Files changed (37) hide show
  1. package/index.js +98 -97
  2. package/package.json +15 -15
  3. package/src/models/apilog.js +18 -18
  4. package/src/models/archivedapilog.js +18 -18
  5. package/src/models/archivedauditlog.js +83 -83
  6. package/src/models/auditlog.js +83 -83
  7. package/src/models/bankdetails.js +40 -40
  8. package/src/models/combinedUnits.js +62 -62
  9. package/src/models/company.js +52 -52
  10. package/src/models/contract.js +42 -42
  11. package/src/models/customer.js +126 -126
  12. package/src/models/email.js +24 -24
  13. package/src/models/entry_exit.js +39 -43
  14. package/src/models/facility.js +39 -39
  15. package/src/models/facilityasset.js +25 -25
  16. package/src/models/guard.js +43 -47
  17. package/src/models/invoice.js +105 -105
  18. package/src/models/invoiceBillingSetting.js +29 -29
  19. package/src/models/levy.js +49 -49
  20. package/src/models/levytype.js +19 -19
  21. package/src/models/message.js +38 -38
  22. package/src/models/module.js +21 -21
  23. package/src/models/penalty.js +51 -51
  24. package/src/models/refresh_token.js +23 -23
  25. package/src/models/reminder.js +47 -47
  26. package/src/models/settings.js +19 -19
  27. package/src/models/sms_africastalking.js +20 -20
  28. package/src/models/sms_meliora.js +16 -16
  29. package/src/models/tax.js +35 -35
  30. package/src/models/unitasset.js +25 -25
  31. package/src/models/units.js +66 -66
  32. package/src/models/user.js +81 -81
  33. package/src/models/visitLog.js +72 -83
  34. package/src/models/visitor.js +50 -50
  35. package/src/models/waterConcentrator.js +50 -50
  36. package/src/models/waterMeter.js +50 -0
  37. package/src/models/waterMeterSetting.js +29 -29
@@ -1,25 +1,25 @@
1
- const mongoose = require('mongoose');
2
- const EmailSchema = mongoose.Schema({
3
- user: {
4
- type: String,
5
- required: true
6
- },
7
- from: {
8
- type: String,
9
- required: true
10
- },
11
- host: {
12
- type: String,
13
- required: true
14
- },
15
- port: {
16
- type: Number,
17
- required: true
18
- },
19
- auth: {
20
- user: String,
21
- pass: String
22
- }
23
- })
24
- const Email = mongoose.model('Email', EmailSchema);
1
+ const mongoose = require('mongoose');
2
+ const EmailSchema = mongoose.Schema({
3
+ user: {
4
+ type: String,
5
+ required: true
6
+ },
7
+ from: {
8
+ type: String,
9
+ required: true
10
+ },
11
+ host: {
12
+ type: String,
13
+ required: true
14
+ },
15
+ port: {
16
+ type: Number,
17
+ required: true
18
+ },
19
+ auth: {
20
+ user: String,
21
+ pass: String
22
+ }
23
+ })
24
+ const Email = mongoose.model('Email', EmailSchema);
25
25
  module.exports = Email
@@ -1,43 +1,39 @@
1
- const mongoose = require('mongoose');
2
-
3
- const EntryExitSchema = mongoose.Schema({
4
- name: {
5
- type: String,
6
- required: true
7
- },
8
- location: {
9
- type: String,
10
- required: true,
11
- },
12
- gps: {
13
- lat: {
14
- type: Number,
15
- required: true
16
- },
17
- lng: {
18
- type: Number,
19
- required: true
20
- }
21
- },
22
- range:{
23
- type:Number,
24
- required:true
25
- },
26
- disabled:{
27
- type:Boolean,
28
- required:true
29
- },
30
- purpose: {
31
- type: String,
32
- required: true,
33
- enum: ['entry/exit', 'entry', 'exit', 'emergency exit']
34
- },
35
- facilityId: {
36
- type: mongoose.Schema.Types.ObjectId,
37
- ref: 'Facility',
38
- }
39
- });
40
-
41
- const EntryExit = mongoose.model('EntryExit', EntryExitSchema);
42
-
43
- module.exports = EntryExit;
1
+ const mongoose = require('mongoose');
2
+
3
+ const EntryExitSchema = mongoose.Schema({
4
+ name: {
5
+ type: String,
6
+ required: true
7
+ },
8
+ location: {
9
+ type: String,
10
+ required: true,
11
+ },
12
+ gps: {
13
+ lat: {
14
+ type: Number,
15
+ required: true
16
+ },
17
+ lng: {
18
+ type: Number,
19
+ required: true
20
+ }
21
+ },
22
+ disabled:{
23
+ type:Boolean,
24
+ required:true
25
+ },
26
+ purpose: {
27
+ type: String,
28
+ required: true,
29
+ enum: ['entry/exit', 'entry', 'exit', 'emergency exit']
30
+ },
31
+ facilityId: {
32
+ type: mongoose.Schema.Types.ObjectId,
33
+ ref: 'Facility',
34
+ }
35
+ });
36
+
37
+ const EntryExit = mongoose.model('EntryExit', EntryExitSchema);
38
+
39
+ module.exports = EntryExit;
@@ -1,39 +1,39 @@
1
- const mongoose = require('mongoose');
2
-
3
- // Define the schema for companies
4
- const facilitySchema = new mongoose.Schema({
5
- name: {
6
- type: String,
7
- required: [true, 'Facility name is required'],
8
- trim: true,
9
- minlength: [1, 'Facility name must be at least 1 character long']
10
- },
11
- location: {
12
- type: String,
13
- required: true
14
- },
15
- subDivision: { type: String, required: true },
16
- isEnabled: { type: Boolean, required: true },
17
- divisionArray: [],
18
- landReferenceNumbers: [],
19
- defaultMeasurement: { type: String, required: false },
20
- totalCommonArea: { type: String, required: false },
21
- totalLettableArea: { type: String, required: false },
22
-
23
- logo: {
24
- type: String,
25
- trim: false,
26
- default: null
27
- }
28
-
29
- }, {
30
- timestamps: true // Automatically add createdAt and updatedAt fields
31
- });
32
-
33
- // Indexes for improved performance
34
- facilitySchema.index({ name: 1 });
35
-
36
- // Compile the model from the schema
37
- const Facility = mongoose.model('Facility', facilitySchema);
38
-
39
- module.exports = Facility;
1
+ const mongoose = require('mongoose');
2
+
3
+ // Define the schema for companies
4
+ const facilitySchema = new mongoose.Schema({
5
+ name: {
6
+ type: String,
7
+ required: [true, 'Facility name is required'],
8
+ trim: true,
9
+ minlength: [1, 'Facility name must be at least 1 character long']
10
+ },
11
+ location: {
12
+ type: String,
13
+ required: true
14
+ },
15
+ subDivision: { type: String, required: true },
16
+ isEnabled: { type: Boolean, required: true },
17
+ divisionArray: [],
18
+ landReferenceNumbers: [],
19
+ defaultMeasurement: { type: String, required: false },
20
+ totalCommonArea: { type: String, required: false },
21
+ totalLettableArea: { type: String, required: false },
22
+
23
+ logo: {
24
+ type: String,
25
+ trim: false,
26
+ default: null
27
+ }
28
+
29
+ }, {
30
+ timestamps: true // Automatically add createdAt and updatedAt fields
31
+ });
32
+
33
+ // Indexes for improved performance
34
+ facilitySchema.index({ name: 1 });
35
+
36
+ // Compile the model from the schema
37
+ const Facility = mongoose.model('Facility', facilitySchema);
38
+
39
+ module.exports = Facility;
@@ -1,25 +1,25 @@
1
- const mongoose = require('mongoose');
2
-
3
- // Define the schema for companies
4
- const facilityassetSchema = new mongoose.Schema({
5
- name: {
6
- type: String,
7
- required:true
8
- },
9
- facilityId:{
10
- type: mongoose.Schema.Types.ObjectId,
11
- ref: 'Facility',
12
- }
13
-
14
-
15
- }, {
16
- timestamps: true // Automatically add createdAt and updatedAt fields
17
- });
18
-
19
- // Indexes for improved performance
20
- facilityassetSchema.index({ name: 1 });
21
-
22
- // Compile the model from the schema
23
- const FacilityAsset = mongoose.model('FacilityAsset', facilityassetSchema);
24
-
25
- module.exports = FacilityAsset;
1
+ const mongoose = require('mongoose');
2
+
3
+ // Define the schema for companies
4
+ const facilityassetSchema = new mongoose.Schema({
5
+ name: {
6
+ type: String,
7
+ required:true
8
+ },
9
+ facilityId:{
10
+ type: mongoose.Schema.Types.ObjectId,
11
+ ref: 'Facility',
12
+ }
13
+
14
+
15
+ }, {
16
+ timestamps: true // Automatically add createdAt and updatedAt fields
17
+ });
18
+
19
+ // Indexes for improved performance
20
+ facilityassetSchema.index({ name: 1 });
21
+
22
+ // Compile the model from the schema
23
+ const FacilityAsset = mongoose.model('FacilityAsset', facilityassetSchema);
24
+
25
+ module.exports = FacilityAsset;
@@ -1,47 +1,43 @@
1
- const mongoose = require('mongoose');
2
-
3
- // Define the schema for guards
4
- const guardSchema = new mongoose.Schema({
5
- firstName: {
6
- type: String,
7
- required: true
8
- },
9
- lastName: {
10
- type: String,
11
- required: true
12
- },
13
- phoneNumber: {
14
- type: String,
15
- required: true
16
- },
17
- email:{
18
- type:String,
19
- required:false
20
- },
21
- entryPoints: [],
22
- startTime: {
23
- type: String,
24
- required: true
25
- },
26
- endTime: {
27
- type: String,
28
- required: true
29
- },
30
- status: {
31
- type: String,
32
- required: true,
33
- enum: ["On Duty", "Off Duty", "On Break", "Absent", "Sick Leave", "Suspended"]
34
- },
35
- facilityId: {
36
- type: mongoose.Schema.Types.ObjectId,
37
- ref: 'Facility',
38
- required: true // Assuming facilityId is required
39
- }
40
- }, {
41
- timestamps: true // Automatically adds createdAt and updatedAt fields
42
- });
43
-
44
- // Compile the model from the schema
45
- const Guard = mongoose.model('Guard', guardSchema);
46
-
47
- module.exports = Guard;
1
+ const mongoose = require('mongoose');
2
+
3
+ // Define the schema for guards
4
+ const guardSchema = new mongoose.Schema({
5
+ firstName: {
6
+ type: String,
7
+ required: true
8
+ },
9
+ lastName: {
10
+ type: String,
11
+ required: true
12
+ },
13
+ phoneNumber: {
14
+ type: String,
15
+ required: true
16
+ },
17
+ entryPoints: [],
18
+ startTime: {
19
+ type: String,
20
+ required: true
21
+ },
22
+ endTime: {
23
+ type: String,
24
+ required: true
25
+ },
26
+ status: {
27
+ type: String,
28
+ required: true,
29
+ enum: ["On Duty", "Off Duty", "On Break", "Absent", "Sick Leave", "Suspended"]
30
+ },
31
+ facilityId: {
32
+ type: mongoose.Schema.Types.ObjectId,
33
+ ref: 'Facility',
34
+ required: true // Assuming facilityId is required
35
+ }
36
+ }, {
37
+ timestamps: true // Automatically adds createdAt and updatedAt fields
38
+ });
39
+
40
+ // Compile the model from the schema
41
+ const Guard = mongoose.model('Guard', guardSchema);
42
+
43
+ module.exports = Guard;
@@ -1,105 +1,105 @@
1
- const mongoose = require('mongoose');
2
- const Schema = mongoose.Schema;
3
-
4
- const InvoiceSchema = new Schema({
5
- invoiceNumber: {
6
- type: String,
7
- required: true,
8
- unique: true,
9
- },
10
- client: {
11
- _id: {
12
- type: mongoose.Schema.Types.ObjectId,
13
- ref: 'Customer',
14
- },
15
- name: { type: String, required: true },
16
- email: { type: String, required: true },
17
- address: { type: String },
18
- },
19
- facility: {
20
- _id: {
21
- type: mongoose.Schema.Types.ObjectId,
22
- ref: 'Facility',
23
- },
24
- name: { type: String, required: true },
25
- imageURL: { type: String, required: true }
26
- },
27
- unit: {
28
- _id: {
29
- type: mongoose.Schema.Types.ObjectId,
30
- ref: 'Unit',
31
- },
32
- name: { type: String, required: true }
33
- },
34
- items: [
35
- {
36
- description: { type: String, required: true },
37
- quantity: { type: Number, required: true },
38
- unitPrice: { type: Number, required: true },
39
- }
40
- ],
41
- subTotal: {
42
- type: Number,
43
- required: true,
44
- default: 0,
45
- },
46
- tax: {
47
- type: Number,
48
- required: true,
49
- default: 0,
50
- },
51
- totalAmount: {
52
- type: Number,
53
- required: true,
54
- default: 0,
55
- },
56
- issueDate: {
57
- type: Date,
58
- required: true,
59
- default: Date.now,
60
- },
61
- dueDate: {
62
- type: Date,
63
- required: true,
64
- },
65
- status: {
66
- type: String,
67
- enum: ['Pending', 'Paid', 'Cancelled', 'Overdue', 'Partially Paid'],
68
- default: 'Pending',
69
- },
70
- penalty: {
71
- isApplied: { type: Boolean, default: false },
72
- penaltyAmount: { type: Number, default: 0 },
73
- penaltyDate: { type: Date },
74
- penaltyReason: { type: String },
75
- },
76
- whatFor: {
77
- invoiceType: { type: String, required: true },
78
- description: { type: String, required: true }
79
- },
80
- invoiceNote: {
81
- type: String,
82
- default: ''
83
- },
84
- paymentDetails: {
85
- paymentStatus: {
86
- type: String,
87
- enum: ['Pending', 'Completed', 'Failed'],
88
- default: 'Pending'
89
- },
90
- paymentMethod: {
91
- type: String,
92
- enum: ['Credit Card', 'Bank Transfer', 'PayPal', 'Cash'],
93
- },
94
- paymentDate: {
95
- type: Date,
96
- },
97
- transactionId: {
98
- type: String,
99
- default: ''
100
- }
101
- }
102
- });
103
-
104
- const Invoice = mongoose.model('Invoice', InvoiceSchema);
105
- module.exports = Invoice
1
+ const mongoose = require('mongoose');
2
+ const Schema = mongoose.Schema;
3
+
4
+ const InvoiceSchema = new Schema({
5
+ invoiceNumber: {
6
+ type: String,
7
+ required: true,
8
+ unique: true,
9
+ },
10
+ client: {
11
+ _id: {
12
+ type: mongoose.Schema.Types.ObjectId,
13
+ ref: 'Customer',
14
+ },
15
+ name: { type: String, required: true },
16
+ email: { type: String, required: true },
17
+ address: { type: String },
18
+ },
19
+ facility: {
20
+ _id: {
21
+ type: mongoose.Schema.Types.ObjectId,
22
+ ref: 'Facility',
23
+ },
24
+ name: { type: String, required: true },
25
+ imageURL: { type: String, required: true }
26
+ },
27
+ unit: {
28
+ _id: {
29
+ type: mongoose.Schema.Types.ObjectId,
30
+ ref: 'Unit',
31
+ },
32
+ name: { type: String, required: true }
33
+ },
34
+ items: [
35
+ {
36
+ description: { type: String, required: true },
37
+ quantity: { type: Number, required: true },
38
+ unitPrice: { type: Number, required: true },
39
+ }
40
+ ],
41
+ subTotal: {
42
+ type: Number,
43
+ required: true,
44
+ default: 0,
45
+ },
46
+ tax: {
47
+ type: Number,
48
+ required: true,
49
+ default: 0,
50
+ },
51
+ totalAmount: {
52
+ type: Number,
53
+ required: true,
54
+ default: 0,
55
+ },
56
+ issueDate: {
57
+ type: Date,
58
+ required: true,
59
+ default: Date.now,
60
+ },
61
+ dueDate: {
62
+ type: Date,
63
+ required: true,
64
+ },
65
+ status: {
66
+ type: String,
67
+ enum: ['Pending', 'Paid', 'Cancelled', 'Overdue', 'Partially Paid'],
68
+ default: 'Pending',
69
+ },
70
+ penalty: {
71
+ isApplied: { type: Boolean, default: false },
72
+ penaltyAmount: { type: Number, default: 0 },
73
+ penaltyDate: { type: Date },
74
+ penaltyReason: { type: String },
75
+ },
76
+ whatFor: {
77
+ invoiceType: { type: String, required: true },
78
+ description: { type: String, required: true }
79
+ },
80
+ invoiceNote: {
81
+ type: String,
82
+ default: ''
83
+ },
84
+ paymentDetails: {
85
+ paymentStatus: {
86
+ type: String,
87
+ enum: ['Pending', 'Completed', 'Failed'],
88
+ default: 'Pending'
89
+ },
90
+ paymentMethod: {
91
+ type: String,
92
+ enum: ['Credit Card', 'Bank Transfer', 'PayPal', 'Cash'],
93
+ },
94
+ paymentDate: {
95
+ type: Date,
96
+ },
97
+ transactionId: {
98
+ type: String,
99
+ default: ''
100
+ }
101
+ }
102
+ });
103
+
104
+ const Invoice = mongoose.model('Invoice', InvoiceSchema);
105
+ module.exports = Invoice
@@ -1,29 +1,29 @@
1
- const mongoose = require('mongoose');
2
-
3
- // Define the schema for companies
4
- const InvoiceBillingSettingSchema = new mongoose.Schema({
5
- dueDays: {
6
- type: Number,
7
- required: true,
8
- min: 1 // Ensures dueDays is at least 1
9
- },
10
- levyNote: {
11
- type: String,
12
- required: true
13
- },
14
- facilityId: {
15
- type: mongoose.Schema.Types.ObjectId,
16
- ref: 'Facility',
17
- required: true // Consider making this required if every setting must be linked to a facility
18
- }
19
- }, {
20
- timestamps: true // Automatically add createdAt and updatedAt fields
21
- });
22
-
23
- // Indexes for improved performance
24
- InvoiceBillingSettingSchema.index({ facilityId: 1 }); // Index on facilityId
25
-
26
- // Compile the model from the schema
27
- const InvoiceBillingSetting = mongoose.model('InvoiceBillingSetting', InvoiceBillingSettingSchema);
28
-
29
- module.exports = InvoiceBillingSetting;
1
+ const mongoose = require('mongoose');
2
+
3
+ // Define the schema for companies
4
+ const InvoiceBillingSettingSchema = new mongoose.Schema({
5
+ dueDays: {
6
+ type: Number,
7
+ required: true,
8
+ min: 1 // Ensures dueDays is at least 1
9
+ },
10
+ levyNote: {
11
+ type: String,
12
+ required: true
13
+ },
14
+ facilityId: {
15
+ type: mongoose.Schema.Types.ObjectId,
16
+ ref: 'Facility',
17
+ required: true // Consider making this required if every setting must be linked to a facility
18
+ }
19
+ }, {
20
+ timestamps: true // Automatically add createdAt and updatedAt fields
21
+ });
22
+
23
+ // Indexes for improved performance
24
+ InvoiceBillingSettingSchema.index({ facilityId: 1 }); // Index on facilityId
25
+
26
+ // Compile the model from the schema
27
+ const InvoiceBillingSetting = mongoose.model('InvoiceBillingSetting', InvoiceBillingSettingSchema);
28
+
29
+ module.exports = InvoiceBillingSetting;