payservedb 1.9.1 → 1.9.3
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 +98 -98
- package/package.json +15 -15
- package/src/models/apilog.js +18 -18
- package/src/models/archivedapilog.js +18 -18
- package/src/models/archivedauditlog.js +83 -83
- package/src/models/auditlog.js +83 -83
- package/src/models/bankdetails.js +40 -40
- package/src/models/combinedUnits.js +62 -62
- package/src/models/company.js +52 -52
- package/src/models/contract.js +42 -42
- package/src/models/customer.js +169 -129
- package/src/models/email.js +24 -24
- package/src/models/entry_exit.js +43 -43
- package/src/models/facility.js +39 -39
- package/src/models/facilityasset.js +25 -25
- package/src/models/guard.js +47 -47
- package/src/models/invoice.js +105 -105
- package/src/models/invoiceBillingSetting.js +29 -29
- package/src/models/levy.js +49 -49
- package/src/models/levytype.js +19 -19
- package/src/models/message.js +38 -38
- package/src/models/module.js +21 -21
- package/src/models/penalty.js +51 -51
- package/src/models/refresh_token.js +23 -23
- package/src/models/reminder.js +47 -47
- package/src/models/settings.js +19 -19
- package/src/models/sms_africastalking.js +20 -20
- package/src/models/sms_meliora.js +16 -16
- package/src/models/tax.js +35 -35
- package/src/models/unitasset.js +25 -25
- package/src/models/units.js +66 -66
- package/src/models/user.js +81 -81
- package/src/models/visitLog.js +83 -83
- package/src/models/visitor.js +50 -50
- package/src/models/waterConcentrator.js +50 -50
- package/src/models/waterMeter.js +50 -50
- package/src/models/waterMeterSetting.js +29 -29
package/src/models/invoice.js
CHANGED
|
@@ -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;
|
package/src/models/levy.js
CHANGED
|
@@ -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;
|
package/src/models/levytype.js
CHANGED
|
@@ -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;
|
package/src/models/message.js
CHANGED
|
@@ -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
|
package/src/models/module.js
CHANGED
|
@@ -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;
|
package/src/models/penalty.js
CHANGED
|
@@ -1,51 +1,51 @@
|
|
|
1
|
-
const mongoose = require('mongoose');
|
|
2
|
-
|
|
3
|
-
// Define the schema for companies
|
|
4
|
-
const penaltySchema = new mongoose.Schema({
|
|
5
|
-
title: {
|
|
6
|
-
type: String,
|
|
7
|
-
required: true
|
|
8
|
-
},
|
|
9
|
-
module: {
|
|
10
|
-
type: String,
|
|
11
|
-
required: true
|
|
12
|
-
},
|
|
13
|
-
type: {
|
|
14
|
-
type: String,
|
|
15
|
-
required: true
|
|
16
|
-
},
|
|
17
|
-
effectDays: {
|
|
18
|
-
type: Number,
|
|
19
|
-
required: true
|
|
20
|
-
},
|
|
21
|
-
percentage: {
|
|
22
|
-
type: Boolean,
|
|
23
|
-
required: true
|
|
24
|
-
},
|
|
25
|
-
amount: {
|
|
26
|
-
type: Number,
|
|
27
|
-
required: true
|
|
28
|
-
},
|
|
29
|
-
isActive: {
|
|
30
|
-
type: Boolean,
|
|
31
|
-
required: true
|
|
32
|
-
},
|
|
33
|
-
disabled:{
|
|
34
|
-
type:Boolean,
|
|
35
|
-
required:true
|
|
36
|
-
},
|
|
37
|
-
facilityId: {
|
|
38
|
-
type: mongoose.Schema.Types.ObjectId,
|
|
39
|
-
ref: 'Facility',
|
|
40
|
-
}
|
|
41
|
-
}, {
|
|
42
|
-
timestamps: true // Automatically add createdAt and updatedAt fields
|
|
43
|
-
});
|
|
44
|
-
|
|
45
|
-
// Indexes for improved performance
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
// Compile the model from the schema
|
|
49
|
-
const Penalty = mongoose.model('Penalty', penaltySchema);
|
|
50
|
-
|
|
51
|
-
module.exports = Penalty;
|
|
1
|
+
const mongoose = require('mongoose');
|
|
2
|
+
|
|
3
|
+
// Define the schema for companies
|
|
4
|
+
const penaltySchema = new mongoose.Schema({
|
|
5
|
+
title: {
|
|
6
|
+
type: String,
|
|
7
|
+
required: true
|
|
8
|
+
},
|
|
9
|
+
module: {
|
|
10
|
+
type: String,
|
|
11
|
+
required: true
|
|
12
|
+
},
|
|
13
|
+
type: {
|
|
14
|
+
type: String,
|
|
15
|
+
required: true
|
|
16
|
+
},
|
|
17
|
+
effectDays: {
|
|
18
|
+
type: Number,
|
|
19
|
+
required: true
|
|
20
|
+
},
|
|
21
|
+
percentage: {
|
|
22
|
+
type: Boolean,
|
|
23
|
+
required: true
|
|
24
|
+
},
|
|
25
|
+
amount: {
|
|
26
|
+
type: Number,
|
|
27
|
+
required: true
|
|
28
|
+
},
|
|
29
|
+
isActive: {
|
|
30
|
+
type: Boolean,
|
|
31
|
+
required: true
|
|
32
|
+
},
|
|
33
|
+
disabled:{
|
|
34
|
+
type:Boolean,
|
|
35
|
+
required:true
|
|
36
|
+
},
|
|
37
|
+
facilityId: {
|
|
38
|
+
type: mongoose.Schema.Types.ObjectId,
|
|
39
|
+
ref: 'Facility',
|
|
40
|
+
}
|
|
41
|
+
}, {
|
|
42
|
+
timestamps: true // Automatically add createdAt and updatedAt fields
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
// Indexes for improved performance
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
// Compile the model from the schema
|
|
49
|
+
const Penalty = mongoose.model('Penalty', penaltySchema);
|
|
50
|
+
|
|
51
|
+
module.exports = Penalty;
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
const mongoose = require('mongoose');
|
|
2
|
-
|
|
3
|
-
const refreshTokenSchema = new mongoose.Schema({
|
|
4
|
-
userId: {
|
|
5
|
-
type: String,
|
|
6
|
-
required: true,
|
|
7
|
-
index: true, // Index for faster lookup by userId
|
|
8
|
-
},
|
|
9
|
-
token: {
|
|
10
|
-
type: String,
|
|
11
|
-
required: true,
|
|
12
|
-
},
|
|
13
|
-
createdAt: {
|
|
14
|
-
type: Date,
|
|
15
|
-
required: true,
|
|
16
|
-
default: Date.now,
|
|
17
|
-
expires: '30d', // Example: Token expires after 30 days
|
|
18
|
-
},
|
|
19
|
-
},{timestamps: true});
|
|
20
|
-
|
|
21
|
-
const RefreshToken = mongoose.model('RefreshToken', refreshTokenSchema);
|
|
22
|
-
|
|
23
|
-
module.exports = RefreshToken;
|
|
1
|
+
const mongoose = require('mongoose');
|
|
2
|
+
|
|
3
|
+
const refreshTokenSchema = new mongoose.Schema({
|
|
4
|
+
userId: {
|
|
5
|
+
type: String,
|
|
6
|
+
required: true,
|
|
7
|
+
index: true, // Index for faster lookup by userId
|
|
8
|
+
},
|
|
9
|
+
token: {
|
|
10
|
+
type: String,
|
|
11
|
+
required: true,
|
|
12
|
+
},
|
|
13
|
+
createdAt: {
|
|
14
|
+
type: Date,
|
|
15
|
+
required: true,
|
|
16
|
+
default: Date.now,
|
|
17
|
+
expires: '30d', // Example: Token expires after 30 days
|
|
18
|
+
},
|
|
19
|
+
},{timestamps: true});
|
|
20
|
+
|
|
21
|
+
const RefreshToken = mongoose.model('RefreshToken', refreshTokenSchema);
|
|
22
|
+
|
|
23
|
+
module.exports = RefreshToken;
|