@kipicore/dbcore 1.1.228 → 1.1.230
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.
|
@@ -12,6 +12,13 @@ export interface IUserTrip {
|
|
|
12
12
|
pickUpNo: Number;
|
|
13
13
|
dropNo: Number;
|
|
14
14
|
}
|
|
15
|
+
export interface IStudentFeeService {
|
|
16
|
+
feeTypeId: String;
|
|
17
|
+
status: COMMAN_STATUS;
|
|
18
|
+
startDate: Date;
|
|
19
|
+
endDate?: Date;
|
|
20
|
+
isRequired?: boolean;
|
|
21
|
+
}
|
|
15
22
|
export interface IUserInstituteMetaAttributes extends IDefaultAttributes, Document {
|
|
16
23
|
id: string;
|
|
17
24
|
entities?: string[];
|
|
@@ -46,4 +53,5 @@ export interface IUserInstituteMetaAttributes extends IDefaultAttributes, Docume
|
|
|
46
53
|
academicCalendarId?: string;
|
|
47
54
|
oldId?: string;
|
|
48
55
|
previousEntities?: string[];
|
|
56
|
+
studentFeeService?: IStudentFeeService[];
|
|
49
57
|
}
|
|
@@ -60,6 +60,13 @@ const userTripSchema = new mongoose_1.Schema({
|
|
|
60
60
|
pickUpNo: { type: Number },
|
|
61
61
|
dropNo: { type: Number },
|
|
62
62
|
}, { _id: false });
|
|
63
|
+
const studentFeeServiceSchema = new mongoose_1.Schema({
|
|
64
|
+
feeTypeId: { type: String },
|
|
65
|
+
startDate: { type: Date },
|
|
66
|
+
endDate: { type: Date },
|
|
67
|
+
status: { type: String },
|
|
68
|
+
isRequired: { type: Boolean, default: false },
|
|
69
|
+
}, { _id: false });
|
|
63
70
|
const userInstituteMetaSchema = new mongoose_1.Schema({
|
|
64
71
|
entities: {
|
|
65
72
|
type: [{ type: String }],
|
|
@@ -183,6 +190,11 @@ const userInstituteMetaSchema = new mongoose_1.Schema({
|
|
|
183
190
|
default: [],
|
|
184
191
|
required: false,
|
|
185
192
|
},
|
|
193
|
+
studentFeeService: {
|
|
194
|
+
type: [studentFeeServiceSchema],
|
|
195
|
+
default: [],
|
|
196
|
+
required: false,
|
|
197
|
+
},
|
|
186
198
|
sidNo: {
|
|
187
199
|
type: String,
|
|
188
200
|
required: false,
|
package/package.json
CHANGED