payservedb 2.0.2 → 2.0.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.
Files changed (38) hide show
  1. package/index.js +98 -98
  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 +173 -173
  12. package/src/models/email.js +24 -24
  13. package/src/models/entry_exit.js +53 -53
  14. package/src/models/facility.js +39 -39
  15. package/src/models/facilityasset.js +25 -25
  16. package/src/models/guard.js +47 -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 +70 -70
  32. package/src/models/user.js +93 -93
  33. package/src/models/visitLog.js +87 -83
  34. package/src/models/visitor.js +54 -50
  35. package/src/models/waitlist.js +28 -44
  36. package/src/models/waterConcentrator.js +50 -50
  37. package/src/models/waterMeter.js +50 -50
  38. package/src/models/waterMeterSetting.js +29 -29
@@ -1,47 +1,47 @@
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
+ 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,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;
@@ -1,49 +1,49 @@
1
-
2
- const mongoose = require('mongoose');
3
-
4
- const LevySchema = new mongoose.Schema({
5
- levyName: {
6
- type: String,
7
- required: [true, 'Levy name is required'],
8
- trim: true,
9
- },
10
- amount: {
11
- type: String,
12
- required: [true, 'amount is required'],
13
- },
14
- levyType: {
15
- type: mongoose.Schema.Types.ObjectId, // Update this to reference LevyType
16
- ref: 'LevyType',
17
- required: [true, 'Levy type is required'],
18
- },
19
- levyApplicant: {
20
- type: String,
21
- required: [true, 'Levy applicant is required'],
22
- trim: true,
23
- },
24
- collectionFrequency: {
25
- type: String,
26
- required: [true, 'Collection Frequency is required'],
27
- trim: true,
28
- enum: ['Monthly', 'Quarterly', 'Annually', 'Semi-annually', 'Weekly']
29
- },
30
- invoiceDate: {
31
- type: String,
32
- required: [true, 'Invoice Date is required'],
33
- trim: true,
34
- },
35
- disabled: {
36
- type: Boolean,
37
- default: false
38
- },
39
- facilityId: {
40
- type: mongoose.Schema.Types.ObjectId,
41
- ref: 'Facility',
42
- }
43
- }, {
44
- timestamps: true, // Automatically add createdAt and updatedAt fields
45
- });
46
-
47
- const Levy = mongoose.model('Levy', LevySchema);
48
-
49
- module.exports = Levy;
1
+
2
+ const mongoose = require('mongoose');
3
+
4
+ const LevySchema = new mongoose.Schema({
5
+ levyName: {
6
+ type: String,
7
+ required: [true, 'Levy name is required'],
8
+ trim: true,
9
+ },
10
+ amount: {
11
+ type: String,
12
+ required: [true, 'amount is required'],
13
+ },
14
+ levyType: {
15
+ type: mongoose.Schema.Types.ObjectId, // Update this to reference LevyType
16
+ ref: 'LevyType',
17
+ required: [true, 'Levy type is required'],
18
+ },
19
+ levyApplicant: {
20
+ type: String,
21
+ required: [true, 'Levy applicant is required'],
22
+ trim: true,
23
+ },
24
+ collectionFrequency: {
25
+ type: String,
26
+ required: [true, 'Collection Frequency is required'],
27
+ trim: true,
28
+ enum: ['Monthly', 'Quarterly', 'Annually', 'Semi-annually', 'Weekly']
29
+ },
30
+ invoiceDate: {
31
+ type: String,
32
+ required: [true, 'Invoice Date is required'],
33
+ trim: true,
34
+ },
35
+ disabled: {
36
+ type: Boolean,
37
+ default: false
38
+ },
39
+ facilityId: {
40
+ type: mongoose.Schema.Types.ObjectId,
41
+ ref: 'Facility',
42
+ }
43
+ }, {
44
+ timestamps: true, // Automatically add createdAt and updatedAt fields
45
+ });
46
+
47
+ const Levy = mongoose.model('Levy', LevySchema);
48
+
49
+ module.exports = Levy;
@@ -1,19 +1,19 @@
1
- const mongoose = require('mongoose');
2
-
3
- const LevyTypeSchema = new mongoose.Schema({
4
- levyType: {
5
- type: String,
6
- required: [true, 'Levy type is required'],
7
- trim: true,
8
- },
9
- facilityId: {
10
- type: mongoose.Schema.Types.ObjectId,
11
- ref: 'Facility',
12
- }
13
- }, {
14
- timestamps: true, // Automatically add createdAt and updatedAt fields
15
- });
16
-
17
- const LevyType = mongoose.model('LevyType', LevyTypeSchema);
18
-
19
- module.exports = LevyType;
1
+ const mongoose = require('mongoose');
2
+
3
+ const LevyTypeSchema = new mongoose.Schema({
4
+ levyType: {
5
+ type: String,
6
+ required: [true, 'Levy type is required'],
7
+ trim: true,
8
+ },
9
+ facilityId: {
10
+ type: mongoose.Schema.Types.ObjectId,
11
+ ref: 'Facility',
12
+ }
13
+ }, {
14
+ timestamps: true, // Automatically add createdAt and updatedAt fields
15
+ });
16
+
17
+ const LevyType = mongoose.model('LevyType', LevyTypeSchema);
18
+
19
+ module.exports = LevyType;
@@ -1,39 +1,39 @@
1
- const mongoose = require('mongoose');
2
- const MessageSchema = mongoose.Schema({
3
- type: {
4
- type: String,
5
- required: true
6
- },
7
- recipient: {
8
- type: String,
9
- required: true,
10
- },
11
- subject: {
12
- type: String,
13
- required: false
14
- },
15
- body: {
16
- type: String,
17
- required: true
18
- },
19
- sentOn: {
20
- type: Date,
21
- required: false
22
- },
23
- createdOn:{
24
- type:Date,
25
- required:true
26
- },
27
- status: {
28
- type: String,
29
- required: true,
30
- enum: ['Not Sent', 'In Queue', 'Sent']
31
- },
32
- messageId: {
33
- type: String,
34
- required: false
35
- }
36
-
37
- })
38
- const Message = mongoose.model('Message', MessageSchema);
1
+ const mongoose = require('mongoose');
2
+ const MessageSchema = mongoose.Schema({
3
+ type: {
4
+ type: String,
5
+ required: true
6
+ },
7
+ recipient: {
8
+ type: String,
9
+ required: true,
10
+ },
11
+ subject: {
12
+ type: String,
13
+ required: false
14
+ },
15
+ body: {
16
+ type: String,
17
+ required: true
18
+ },
19
+ sentOn: {
20
+ type: Date,
21
+ required: false
22
+ },
23
+ createdOn:{
24
+ type:Date,
25
+ required:true
26
+ },
27
+ status: {
28
+ type: String,
29
+ required: true,
30
+ enum: ['Not Sent', 'In Queue', 'Sent']
31
+ },
32
+ messageId: {
33
+ type: String,
34
+ required: false
35
+ }
36
+
37
+ })
38
+ const Message = mongoose.model('Message', MessageSchema);
39
39
  module.exports = Message
@@ -1,21 +1,21 @@
1
- const mongoose = require('mongoose');
2
-
3
- // Define the schema for modules
4
- const moduleSchema = new mongoose.Schema({
5
- name: {
6
- type: String,
7
- required: [true, 'Module name is required'],
8
- trim: true,
9
- unique: true // Ensure module name is unique
10
- }
11
- }, {
12
- timestamps: true // Automatically add createdAt and updatedAt fields
13
- });
14
-
15
- // Indexes for improved performance
16
- moduleSchema.index({ name: 1 });
17
-
18
- // Compile the model from the schema
19
- const Module = mongoose.model('Module', moduleSchema);
20
-
21
- module.exports = Module;
1
+ const mongoose = require('mongoose');
2
+
3
+ // Define the schema for modules
4
+ const moduleSchema = new mongoose.Schema({
5
+ name: {
6
+ type: String,
7
+ required: [true, 'Module name is required'],
8
+ trim: true,
9
+ unique: true // Ensure module name is unique
10
+ }
11
+ }, {
12
+ timestamps: true // Automatically add createdAt and updatedAt fields
13
+ });
14
+
15
+ // Indexes for improved performance
16
+ moduleSchema.index({ name: 1 });
17
+
18
+ // Compile the model from the schema
19
+ const Module = mongoose.model('Module', moduleSchema);
20
+
21
+ module.exports = Module;