@kipicore/dbcore 1.1.5 → 1.1.8

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 (73) hide show
  1. package/README.md +1 -1
  2. package/dist/constants/app.js +0 -1
  3. package/dist/db/mongodb.js +4 -4
  4. package/dist/db/postgres.d.ts +1 -1
  5. package/dist/db/postgres.js +5 -5
  6. package/dist/index.d.ts +419 -415
  7. package/dist/index.js +748 -428
  8. package/dist/models/mongodb/attendanceModel.d.ts +2 -2
  9. package/dist/models/mongodb/attendanceModel.js +7 -8
  10. package/dist/models/mongodb/eventModel.d.ts +2 -2
  11. package/dist/models/mongodb/eventModel.js +3 -3
  12. package/dist/models/mongodb/examGroupModel.d.ts +2 -2
  13. package/dist/models/mongodb/examGroupModel.js +22 -28
  14. package/dist/models/mongodb/examHasAnswerSheetModel.d.ts +2 -2
  15. package/dist/models/mongodb/examHasAnswerSheetModel.js +5 -6
  16. package/dist/models/mongodb/examModel.d.ts +2 -2
  17. package/dist/models/mongodb/examModel.js +7 -10
  18. package/dist/models/mongodb/holidayModel.d.ts +2 -2
  19. package/dist/models/mongodb/holidayModel.js +4 -6
  20. package/dist/models/mongodb/inquiryModel.d.ts +2 -2
  21. package/dist/models/mongodb/inquiryModel.js +3 -4
  22. package/dist/models/mongodb/plugin/transformIdInResponsePlugin.d.ts +1 -1
  23. package/dist/models/mongodb/plugin/transformIdInResponsePlugin.js +4 -6
  24. package/dist/models/mongodb/schoolFeeModel.d.ts +2 -2
  25. package/dist/models/mongodb/schoolFeeModel.js +3 -3
  26. package/dist/models/mongodb/subjectIndexModel.d.ts +2 -2
  27. package/dist/models/mongodb/subjectIndexModel.js +66 -108
  28. package/dist/models/mongodb/subscriptionPlanModel.d.ts +2 -2
  29. package/dist/models/mongodb/subscriptionPlanModel.js +1 -1
  30. package/dist/models/mongodb/taskManagementModel.d.ts +2 -2
  31. package/dist/models/mongodb/taskManagementModel.js +3 -3
  32. package/dist/models/mongodb/userDoc.d.ts +1 -1
  33. package/dist/models/mongodb/userDoc.js +1 -1
  34. package/dist/models/mongodb/userSchoolMetaModel.d.ts +1 -1
  35. package/dist/models/mongodb/userSchoolMetaModel.js +8 -8
  36. package/dist/models/psql/announcementModel.d.ts +4 -4
  37. package/dist/models/psql/announcementModel.js +25 -25
  38. package/dist/models/psql/batchModel.d.ts +4 -4
  39. package/dist/models/psql/batchModel.js +51 -51
  40. package/dist/models/psql/driverModel.d.ts +4 -4
  41. package/dist/models/psql/driverModel.js +28 -28
  42. package/dist/models/psql/facilityModel.d.ts +4 -4
  43. package/dist/models/psql/facilityModel.js +23 -23
  44. package/dist/models/psql/feeHistoryModel.d.ts +4 -4
  45. package/dist/models/psql/feeHistoryModel.js +64 -65
  46. package/dist/models/psql/feeReminderModel.d.ts +3 -3
  47. package/dist/models/psql/feeReminderModel.js +32 -32
  48. package/dist/models/psql/feesCollectionModel.d.ts +4 -4
  49. package/dist/models/psql/feesCollectionModel.js +36 -37
  50. package/dist/models/psql/index.d.ts +1 -1
  51. package/dist/models/psql/index.js +12 -12
  52. package/dist/models/psql/lectureModel.d.ts +4 -4
  53. package/dist/models/psql/lectureModel.js +75 -84
  54. package/dist/models/psql/masterLeaveModel.d.ts +4 -4
  55. package/dist/models/psql/masterLeaveModel.js +22 -23
  56. package/dist/models/psql/testimonialModel.d.ts +4 -4
  57. package/dist/models/psql/testimonialModel.js +25 -27
  58. package/dist/models/psql/toDoModel.d.ts +4 -4
  59. package/dist/models/psql/toDoModel.js +23 -23
  60. package/dist/models/psql/typeManagementModel.d.ts +4 -4
  61. package/dist/models/psql/typeManagementModel.js +19 -19
  62. package/dist/models/psql/userModel.d.ts +4 -4
  63. package/dist/models/psql/userModel.js +47 -48
  64. package/dist/models/psql/userPayoutModel.d.ts +4 -4
  65. package/dist/models/psql/userPayoutModel.js +55 -70
  66. package/dist/services/Concrete/mongooseCommonService.d.ts +4 -4
  67. package/dist/services/Concrete/mongooseCommonService.js +2 -4
  68. package/dist/services/Contracts/IMongooseCommonService.d.ts +2 -2
  69. package/dist/services/Contracts/ISequelizeCommonService.d.ts +12 -12
  70. package/dist/types/generateIdCardType.d.ts +2 -2
  71. package/package.json +49 -47
  72. /package/dist/services/Concrete/{sequelizeCommanService.d.ts → sequelizeCommonService.d.ts} +0 -0
  73. /package/dist/services/Concrete/{sequelizeCommanService.js → sequelizeCommonService.js} +0 -0
package/dist/index.d.ts CHANGED
@@ -1,415 +1,419 @@
1
- export * from './interfaces/academicCalendarInterface';
2
- export * from './interfaces/accountHasReceiptDetailsInterface';
3
- export * from './interfaces/announcementInterface';
4
- export * from './interfaces/approvalRequestInterface';
5
- export * from './interfaces/areaInterface';
6
- export * from './interfaces/attendanceInterface';
7
- export * from './interfaces/bankAccountDetailsInterface';
8
- export * from './interfaces/bannerInterface';
9
- export * from './interfaces/batchInterface';
10
- export * from './interfaces/batchSubjectBookAssessmentInterface';
11
- export * from './interfaces/batchSubjectProjectAssessmentInterface';
12
- export * from './interfaces/blogInterface';
13
- export * from './interfaces/bookAssessmentDateInterface';
14
- export * from './interfaces/careerInterface';
15
- export * from './interfaces/categoriesInterface';
16
- export * from './interfaces/certificatesHistoryInterface';
17
- export * from './interfaces/certificatesManagementInterface';
18
- export * from './interfaces/cityInterface';
19
- export * from './interfaces/classRoomInterface';
20
- export * from './interfaces/cloudStorageInterface';
21
- export * from './interfaces/coinPurchaseOfferInterface';
22
- export * from './interfaces/columnInterface';
23
- export * from './interfaces/commanInterface';
24
- export * from './interfaces/contactFeedBackInterface';
25
- export * from './interfaces/countryInterface';
26
- export * from './interfaces/courseHasVisitorsInterface';
27
- export * from './interfaces/courseInterface';
28
- export * from './interfaces/dailyBookInterface';
29
- export * from './interfaces/dashboardManagementInterface';
30
- export * from './interfaces/driverInterface';
31
- export * from './interfaces/entityGroupInterface';
32
- export * from './interfaces/eventInterface';
33
- export * from './interfaces/examGroupInterface';
34
- export * from './interfaces/examHasAnswerSheetInterface';
35
- export * from './interfaces/examInterface';
36
- export * from './interfaces/facilityInterface';
37
- export * from './interfaces/featureActionInterface';
38
- export * from './interfaces/feeHistoryDetailsInterface';
39
- export * from './interfaces/feeHistoryInterface';
40
- export * from './interfaces/feeReminderInterface';
41
- export * from './interfaces/feeReminderSettingInterface';
42
- export * from './interfaces/feeReminderTypeInterface';
43
- export * from './interfaces/feeTypeHasTermsInterface';
44
- export * from './interfaces/feeTypeInterface';
45
- export * from './interfaces/feedBackInterface';
46
- export * from './interfaces/feesCollectionInterface';
47
- export * from './interfaces/fileStorageInterface';
48
- export * from './interfaces/floorManagementInterface';
49
- export * from './interfaces/generateIdCardInterface';
50
- export * from './interfaces/greetingsInterface';
51
- export * from './interfaces/holidayInterface';
52
- export * from './interfaces/homeworkInterface';
53
- export * from './interfaces/informationSupportInterface';
54
- export * from './interfaces/inquiryInterface';
55
- export * from './interfaces/instituteEntityInterface';
56
- export * from './interfaces/instituteEntityTypeInterface';
57
- export * from './interfaces/instituteInterface';
58
- export * from './interfaces/instituteSubscriptionPlanInterface';
59
- export * from './interfaces/inventoryHistoryInterface';
60
- export * from './interfaces/inventoryInterface';
61
- export * from './interfaces/invoiceInterface';
62
- export * from './interfaces/jobApplyInterface';
63
- export * from './interfaces/lectureHistoryInterface';
64
- export * from './interfaces/lectureInterface';
65
- export * from './interfaces/masterLeaveInterface';
66
- export * from './interfaces/moduleFeatureInterface';
67
- export * from './interfaces/moduleInterface';
68
- export * from './interfaces/offersInterface';
69
- export * from './interfaces/paymentTermsInterface';
70
- export * from './interfaces/pdcChequeInterface';
71
- export * from './interfaces/pdcHistoryInterface';
72
- export * from './interfaces/photosGalleryInterface';
73
- export * from './interfaces/pincodeInterface';
74
- export * from './interfaces/plannerInterface';
75
- export * from './interfaces/productInterface';
76
- export * from './interfaces/projectAssessmentOptionInterface';
77
- export * from './interfaces/replaceTeacherInterface';
78
- export * from './interfaces/roleInterface';
79
- export * from './interfaces/rulesRegulationInterface';
80
- export * from './interfaces/schoolFeeCollectionInterface';
81
- export * from './interfaces/schoolFeeInterface';
82
- export * from './interfaces/schoolOfferInterface';
83
- export * from './interfaces/sendNotificationInerface';
84
- export * from './interfaces/slotInterface';
85
- export * from './interfaces/stateInterface';
86
- export * from './interfaces/subCategoriesInterface';
87
- export * from './interfaces/subjectHasFeeInterface';
88
- export * from './interfaces/subjectHasPayFeeHistoryInterface';
89
- export * from './interfaces/subjectIndexInterface';
90
- export * from './interfaces/subscriptionPlanInterface';
91
- export * from './interfaces/syllabusInterface';
92
- export * from './interfaces/taskManagementInterface';
93
- export * from './interfaces/testimonialInterface';
94
- export * from './interfaces/toDoInterface';
95
- export * from './interfaces/tokenInterface';
96
- export * from './interfaces/tripInterface';
97
- export * from './interfaces/typeManagementInterface';
98
- export * from './interfaces/uniqueNumberCounterInterface';
99
- export * from './interfaces/userBookAssessmentInterface';
100
- export * from './interfaces/userDetailsInterface';
101
- export * from './interfaces/userFeeTypeByAccountInterface';
102
- export * from './interfaces/userFeeTypeInterface';
103
- export * from './interfaces/userHasAnnouncementInterface';
104
- export * from './interfaces/userHasBatchInterface';
105
- export * from './interfaces/userHasCourseInterface';
106
- export * from './interfaces/userHasDeviceInterface';
107
- export * from './interfaces/userHasFeeTermsInterface';
108
- export * from './interfaces/userHasFileInterface';
109
- export * from './interfaces/userHasHomeWorkInterface';
110
- export * from './interfaces/userHasInventoryHistoryInterface';
111
- export * from './interfaces/userHasInventoryInterface';
112
- export * from './interfaces/userHasLeaveHistoryInterface';
113
- export * from './interfaces/userHasLeaveInterface';
114
- export * from './interfaces/userHasOfferInterface';
115
- export * from './interfaces/userHasParentInterface';
116
- export * from './interfaces/userHasRoleInterface';
117
- export * from './interfaces/userHasRollNumberInterface';
118
- export * from './interfaces/userHasStorageInterface';
119
- export * from './interfaces/userHasSubjectFeeInterface';
120
- export * from './interfaces/userInstituteMetaInterface';
121
- export * from './interfaces/userInterface';
122
- export * from './interfaces/userLeaveRequestInterface';
123
- export * from './interfaces/userMetaInterface';
124
- export * from './interfaces/userPayoutDetailsInterface';
125
- export * from './interfaces/userPayoutHistoryInterface';
126
- export * from './interfaces/userPayoutInterface';
127
- export * from './interfaces/userProjectAssessmentOptionInterface';
128
- export * from './interfaces/userRequiredStepsInterface';
129
- export * from './interfaces/userSchoolMetaInterface';
130
- export * from './interfaces/vehicleInterface';
131
- export * from './interfaces/vendorManagementInterface';
132
- export * from './interfaces/videoAnalystInterface';
133
- export * from './interfaces/walletHistoryInterface';
134
- export * from './interfaces/walletInterface';
135
- export * from './interfaces/walletTransactionInterface';
136
- export * from './interfaces/workingDayInterface';
137
- export * from './interfaces/workingShiftInterface';
138
- export * from './helpers/s3Uploader';
139
- export * from './helpers/utils';
140
- export * from './services/Concrete/mongooseCommonService';
141
- export * from './services/Concrete/sequelizeCommanService';
142
- export * from './services/Contracts/IMongooseCommonService';
143
- export * from './services/Contracts/ISequelizeCommonService';
144
- export * from './types/academicCalendarType';
145
- export * from './types/accountHasReceiptDetailsType';
146
- export * from './types/announcementType';
147
- export * from './types/approveRequestType';
148
- export * from './types/areaType';
149
- export * from './types/attendanceType';
150
- export * from './types/bankAccountDetailsType';
151
- export * from './types/bannerType';
152
- export * from './types/batchSubjectBookAssessmentType';
153
- export * from './types/batchSubjectProjectAssessmentType';
154
- export * from './types/batchType';
155
- export * from './types/blogType';
156
- export * from './types/bookAssessmentDateType';
157
- export * from './types/careerType';
158
- export * from './types/categoriesType';
159
- export * from './types/certificatesHistoryType';
160
- export * from './types/certificatesManagementType';
161
- export * from './types/classRoomType';
162
- export * from './types/cloudStorageType';
163
- export * from './types/coinPurchaseOfferType';
164
- export * from './types/commonType';
165
- export * from './types/contactFeedBackType';
166
- export * from './types/courseHasVisitorsType';
167
- export * from './types/courseType';
168
- export * from './types/dailyBookType';
169
- export * from './types/dashboardManagementType';
170
- export * from './types/driverType';
171
- export * from './types/entityGroupType';
172
- export * from './types/eventType';
173
- export * from './types/examGroupType';
174
- export * from './types/examHasAnswerSheetType';
175
- export * from './types/examType';
176
- export * from './types/facilityType';
177
- export * from './types/featureActionType';
178
- export * from './types/feeHistoryDetailsType';
179
- export * from './types/feeHistoryType';
180
- export * from './types/feeReminderSettingType';
181
- export * from './types/feeReminderType';
182
- export * from './types/feeReminderTypeType';
183
- export * from './types/feeTypeHasTermsType';
184
- export * from './types/feeTypeType';
185
- export * from './types/feedBackType';
186
- export * from './types/feesCollectionType';
187
- export * from './types/fileStorageType';
188
- export * from './types/floormanagementType';
189
- export * from './types/generateIdCardType';
190
- export * from './types/greetingsType';
191
- export * from './types/holidayType';
192
- export * from './types/homeWorkType';
193
- export * from './types/informationSupportType';
194
- export * from './types/inquiryType';
195
- export * from './types/instituteEntityType';
196
- export * from './types/instituteEntityTypeType';
197
- export * from './types/instituteSubscriptionPlanType';
198
- export * from './types/instituteType';
199
- export * from './types/inventoryHistoryType';
200
- export * from './types/inventoryType';
201
- export * from './types/jobApply';
202
- export * from './types/lectureHistoryType';
203
- export * from './types/lectureType';
204
- export * from './types/masterLeaveType';
205
- export * from './types/moduleFeatureType';
206
- export * from './types/moduleType';
207
- export * from './types/offerType';
208
- export * from './types/paymentTermsType';
209
- export * from './types/pdcChequeType';
210
- export * from './types/pdcHistoryType';
211
- export * from './types/photosGalleryType';
212
- export * from './types/plannerType';
213
- export * from './types/productType';
214
- export * from './types/projectAssessmentOptionType';
215
- export * from './types/roleType';
216
- export * from './types/rulesRegulationType';
217
- export * from './types/schoolFeeCollectionType';
218
- export * from './types/schoolFeeType';
219
- export * from './types/schoolOfferType';
220
- export * from './types/sendNotificationType';
221
- export * from './types/slotType';
222
- export * from './types/subCategoryType';
223
- export * from './types/subjectHasFeeType';
224
- export * from './types/subjectHasPayFeeHistoryType';
225
- export * from './types/subjectIndexType';
226
- export * from './types/subscriptionPlanType';
227
- export * from './types/syllabusType';
228
- export * from './types/taskManagementType';
229
- export * from './types/testimonialType';
230
- export * from './types/toDoType';
231
- export * from './types/tripType';
232
- export * from './types/typeManagementType';
233
- export * from './types/uniqueNumberCounterType';
234
- export * from './types/userBookAssessmentType';
235
- export * from './types/userDetailsType';
236
- export * from './types/userFeeTypeByAccountType';
237
- export * from './types/userFeeTypeType';
238
- export * from './types/userHasAnnouncementType';
239
- export * from './types/userHasBatchType';
240
- export * from './types/userHasCourseType';
241
- export * from './types/userHasDeviceType';
242
- export * from './types/userHasFeeTermsType';
243
- export * from './types/userHasFileType';
244
- export * from './types/userHasHomeWorkType';
245
- export * from './types/userHasInventoryHistoryType';
246
- export * from './types/userHasInventoryType';
247
- export * from './types/userHasLeaveHistoryType';
248
- export * from './types/userHasLeaveType';
249
- export * from './types/userHasOffer';
250
- export * from './types/userHasParentType';
251
- export * from './types/userHasRoleType';
252
- export * from './types/userHasRollNumberType';
253
- export * from './types/userHasStorageType';
254
- export * from './types/userHasSubjectFeeType';
255
- export * from './types/userInstituteMetaType';
256
- export * from './types/userLeaveRequestType';
257
- export * from './types/userMetaType';
258
- export * from './types/userPayoutDetailsType';
259
- export * from './types/userPayoutHistoryType';
260
- export * from './types/userPayoutType';
261
- export * from './types/userProjectAssessmentOptionType';
262
- export * from './types/userRequiredStepsType';
263
- export * from './types/userSchoolMetaType';
264
- export * from './types/userType';
265
- export * from './types/vehicleType';
266
- export * from './types/vendorType';
267
- export * from './types/videoAnalystType';
268
- export * from './types/walletHistoryType';
269
- export * from './types/walletTransactionType';
270
- export * from './types/walletType';
271
- export * from './types/workingDayType';
272
- export * from './types/workingShiftType';
273
- export * from './configs/aws';
274
- export * from './configs/env';
275
- export * from './constants/app';
276
- export * from './constants/defaultModelAttributes';
277
- export * from './constants/errorMessages';
278
- export * from './constants/httpStatusCode';
279
- export * from './constants/successMessages';
280
- export * from './models/mongodb/approvalRequestModel';
281
- export * from './models/mongodb/attendanceModel';
282
- export * from './models/mongodb/blogModel';
283
- export * from './models/mongodb/careerModel';
284
- export * from './models/mongodb/certificatesHistoryModel';
285
- export * from './models/mongodb/certificatesManagementModel';
286
- export * from './models/mongodb/columnModel';
287
- export * from './models/mongodb/dailyBookModel';
288
- export * from './models/mongodb/dashboardManagementModel';
289
- export * from './models/mongodb/eventModel';
290
- export * from './models/mongodb/examGroupModel';
291
- export * from './models/mongodb/examHasAnswerSheetModel';
292
- export * from './models/mongodb/examModel';
293
- export * from './models/mongodb/feeReminderTypeModel';
294
- export * from './models/mongodb/feedBackModel';
295
- export * from './models/mongodb/generateIdCardModel';
296
- export * from './models/mongodb/holidayModel';
297
- export * from './models/mongodb/informationSupportModel';
298
- export * from './models/mongodb/inquiryModel';
299
- export * from './models/mongodb/invoiceModel';
300
- export * from './models/mongodb/jobApplyModel';
301
- export * from './models/mongodb/photosGalleryModel';
302
- export * from './models/mongodb/plannerModel';
303
- export * from './models/mongodb/replaceTeacherModel';
304
- export * from './models/mongodb/schoolFeeModel';
305
- export * from './models/mongodb/subjectIndexModel';
306
- export * from './models/mongodb/subscriptionPlanModel';
307
- export * from './models/mongodb/taskManagementModel';
308
- export * from './models/mongodb/uniqueNumberCounterModel';
309
- export * from './models/mongodb/userDetailsModel';
310
- export * from './models/mongodb/userDoc';
311
- export * from './models/mongodb/userInstituteMetaModel';
312
- export * from './models/mongodb/userSchoolMetaModel';
313
- export * from './models/mongodb/videoAnalystModel';
314
- export * from './models/mongodb/walletTransactionModel';
315
- export * from './models/psql/SubCategoriesModel';
316
- export * from './models/psql/academicCalendarModel';
317
- export * from './models/psql/accountHasReceiptDetailsModel';
318
- export * from './models/psql/announcementModel';
319
- export * from './models/psql/areaModel';
320
- export * from './models/psql/bankAccountDetailsModel';
321
- export * from './models/psql/bannerModel';
322
- export * from './models/psql/batchModel';
323
- export * from './models/psql/batchSubjectBookAssessmentModel';
324
- export * from './models/psql/batchSubjectProjectAssessmentModel';
325
- export * from './models/psql/bookAssessmentDateModel';
326
- export * from './models/psql/categoriesModel';
327
- export * from './models/psql/cityModel';
328
- export * from './models/psql/classRoomModel';
329
- export * from './models/psql/cloudStorageModel';
330
- export * from './models/psql/coinPurchaseOfferModel';
331
- export * from './models/psql/contactFeedBackModel';
332
- export * from './models/psql/countryModel';
333
- export * from './models/psql/courseHasVisitorsModel';
334
- export * from './models/psql/courseModel';
335
- export * from './models/psql/driverModel';
336
- export * from './models/psql/entityGroupModel';
337
- export * from './models/psql/facilityModel';
338
- export * from './models/psql/featureActionModel';
339
- export * from './models/psql/feeHistoryDetailsModel';
340
- export * from './models/psql/feeHistoryModel';
341
- export * from './models/psql/feeReminderModel';
342
- export * from './models/psql/feeReminderSettingModel';
343
- export * from './models/psql/feeTypeHasTermsModel';
344
- export * from './models/psql/feeTypeModel';
345
- export * from './models/psql/feesCollectionModel';
346
- export * from './models/psql/fileStorageModel';
347
- export * from './models/psql/floorManagementModel';
348
- export * from './models/psql/greetingsModel';
349
- export * from './models/psql/homeWorkModel';
350
- export * from './models/psql/instituteEntityModel';
351
- export * from './models/psql/instituteEntityTypeModel';
352
- export * from './models/psql/instituteModel';
353
- export * from './models/psql/instituteSubscriptionPlanModel';
354
- export * from './models/psql/inventoryHistoryModel';
355
- export * from './models/psql/inventoryModel';
356
- export * from './models/psql/lectureHistoryModel';
357
- export * from './models/psql/lectureModel';
358
- export * from './models/psql/masterLeaveModel';
359
- export * from './models/psql/moduleFeatureModel';
360
- export * from './models/psql/moduleModel';
361
- export * from './models/psql/offerModel';
362
- export * from './models/psql/paymentTermsModel';
363
- export * from './models/psql/pdcChequeModel';
364
- export * from './models/psql/pdcHistoryModel';
365
- export * from './models/psql/pincodeModel';
366
- export * from './models/psql/productModel';
367
- export * from './models/psql/projectAssessmentOptionModel';
368
- export * from './models/psql/roleModel';
369
- export * from './models/psql/rulesRegulationModel';
370
- export * from './models/psql/schoolFeeCollectionModel';
371
- export * from './models/psql/schoolOfferModel';
372
- export * from './models/psql/sendNotificationModel';
373
- export * from './models/psql/slotModel';
374
- export * from './models/psql/stateModel';
375
- export * from './models/psql/subjectHasFeeModel';
376
- export * from './models/psql/subjectHasPayFeeHistoryModel';
377
- export * from './models/psql/syllabusModel';
378
- export * from './models/psql/testimonialModel';
379
- export * from './models/psql/toDoModel';
380
- export * from './models/psql/tokenModel';
381
- export * from './models/psql/tripModel';
382
- export * from './models/psql/typeManagementModel';
383
- export * from './models/psql/userBookAssessmentModel';
384
- export * from './models/psql/userFeeTypeByAccountModel';
385
- export * from './models/psql/userFeeTypeModel';
386
- export * from './models/psql/userHasAnnouncementModel';
387
- export * from './models/psql/userHasBatchModel';
388
- export * from './models/psql/userHasCourseModel';
389
- export * from './models/psql/userHasDeviceModel';
390
- export * from './models/psql/userHasFeeTermsModel';
391
- export * from './models/psql/userHasFileModel';
392
- export * from './models/psql/userHasHomeWorkModel';
393
- export * from './models/psql/userHasInventoryHistoryModel';
394
- export * from './models/psql/userHasInventoryModel';
395
- export * from './models/psql/userHasLeaveHistoryModel';
396
- export * from './models/psql/userHasLeaveModel';
397
- export * from './models/psql/userHasOfferModel';
398
- export * from './models/psql/userHasParentModel';
399
- export * from './models/psql/userHasRoleModel';
400
- export * from './models/psql/userHasRollNumberModel';
401
- export * from './models/psql/userHasStorageModel';
402
- export * from './models/psql/userHasSubjectFeeModel';
403
- export * from './models/psql/userLeaveRequestModel';
404
- export * from './models/psql/userModel';
405
- export * from './models/psql/userPayoutDetailsModel';
406
- export * from './models/psql/userPayoutHistoryModel';
407
- export * from './models/psql/userPayoutModel';
408
- export * from './models/psql/userProjectAssessmentOptionModel';
409
- export * from './models/psql/userRequiredStepsModel';
410
- export * from './models/psql/vehicleModel';
411
- export * from './models/psql/vendorManagementModel';
412
- export * from './models/psql/walletHistoryModel';
413
- export * from './models/psql/walletModel';
414
- export * from './models/psql/workingDayModel';
415
- export * from './models/psql/workingShiftModel';
1
+ import { IAcademicCalendarModelAttributes } from './interfaces/academicCalendarInterface';
2
+ import { IAccountHasReceiptDetailsInterfaceModelAttributes } from './interfaces/accountHasReceiptDetailsInterface';
3
+ import { IAnnouncementModelAttributes } from './interfaces/announcementInterface';
4
+ import { IApproveRequestModelAttributes } from './interfaces/approvalRequestInterface';
5
+ import { IAreaModelAttributes } from './interfaces/areaInterface';
6
+ import { IAttendanceUser, IAttendanceModelAttributes } from './interfaces/attendanceInterface';
7
+ import { IBankAccountDetailsInterfaceModelAttributes } from './interfaces/bankAccountDetailsInterface';
8
+ import { IBannerModelAttributes } from './interfaces/bannerInterface';
9
+ import { IBatchModelAttributes } from './interfaces/batchInterface';
10
+ import { IBatchSubjectBookAssessmentModelAttributes } from './interfaces/batchSubjectBookAssessmentInterface';
11
+ import { IBatchSubjectProjectAssessmentModelAttributes } from './interfaces/batchSubjectProjectAssessmentInterface';
12
+ import { ICommentSchema, ILikeSchema, IShareListSchema, ISubTopicSchema, IBlogModelAttributes } from './interfaces/blogInterface';
13
+ import { IBookAssessmentDateModelAttributes } from './interfaces/bookAssessmentDateInterface';
14
+ import { ICareerModelAttributes } from './interfaces/careerInterface';
15
+ import { ICategoriesModelAttributes } from './interfaces/categoriesInterface';
16
+ import { ICertificatesHistoryAttributes } from './interfaces/certificatesHistoryInterface';
17
+ import { ICertificatesManagementAttributes } from './interfaces/certificatesManagementInterface';
18
+ import { ICityAttributes } from './interfaces/cityInterface';
19
+ import { IClassRoomModelAttributes } from './interfaces/classRoomInterface';
20
+ import { ICloudStorageModelAttributes } from './interfaces/cloudStorageInterface';
21
+ import { ICoinPurchaseOfferModelAttributes } from './interfaces/coinPurchaseOfferInterface';
22
+ import { IRowSchema, IColumnModelAttributes } from './interfaces/columnInterface';
23
+ import { IDefaultAttributes, IEmailOptions, ICommanDao, ICountDao, IDeleteDao, IFindAllDao, IFindOneDao, IUpsertDao, ICommanMongoDao } from './interfaces/commanInterface';
24
+ import { IContactFeedBackAttributes } from './interfaces/contactFeedBackInterface';
25
+ import { ICountryAttributes } from './interfaces/countryInterface';
26
+ import { ICourseHasVisitorsModelAttributes } from './interfaces/courseHasVisitorsInterface';
27
+ import { ICourseModelAttributes } from './interfaces/courseInterface';
28
+ import { IDailyBookModelAttributes } from './interfaces/dailyBookInterface';
29
+ import { IModuleList, IDashboardManagementAttributes } from './interfaces/dashboardManagementInterface';
30
+ import { IDriverModelAttributes } from './interfaces/driverInterface';
31
+ import { IEntityGroupModelAttributes } from './interfaces/entityGroupInterface';
32
+ import { IEventHasBatch, IEventModelAttributes } from './interfaces/eventInterface';
33
+ import { IExamGroupDaysAttributes, IExamGroupStandardByDaysAttributes, IExamGroupModelAttributes } from './interfaces/examGroupInterface';
34
+ import { IAnswerSheetQuestion, IExamHasAnswerSheetModelAttributes } from './interfaces/examHasAnswerSheetInterface';
35
+ import { IExamHasBatch, IExamModelAttributes } from './interfaces/examInterface';
36
+ import { IFacilityAttributes } from './interfaces/facilityInterface';
37
+ import { IFeatureActionAttributes } from './interfaces/featureActionInterface';
38
+ import { IFeeHistoryDetailsModelAttributes } from './interfaces/feeHistoryDetailsInterface';
39
+ import { IFeeHistoryModelAttributes } from './interfaces/feeHistoryInterface';
40
+ import { IFeeReminderModelAttributes } from './interfaces/feeReminderInterface';
41
+ import { IFeeReminderSettingModelAttributes } from './interfaces/feeReminderSettingInterface';
42
+ import { IFeeReminderTypeModelAttributes } from './interfaces/feeReminderTypeInterface';
43
+ import { IFeeTypeHasTermsModelAttributes } from './interfaces/feeTypeHasTermsInterface';
44
+ import { IFeeTypeModelAttributes } from './interfaces/feeTypeInterface';
45
+ import { IConversation, IFeedBackModelAttributes } from './interfaces/feedBackInterface';
46
+ import { IFeesCollectionModelAttributes } from './interfaces/feesCollectionInterface';
47
+ import { IFileStorageAttributes } from './interfaces/fileStorageInterface';
48
+ import { IFloorManagementModelAttributes } from './interfaces/floorManagementInterface';
49
+ import { IGenarateIdCardModelAttributes } from './interfaces/generateIdCardInterface';
50
+ import { IGreetingsModelAttributes } from './interfaces/greetingsInterface';
51
+ import { IHolidayHasBatch, IHolidayModelAttributes } from './interfaces/holidayInterface';
52
+ import { IHomeWorkModelAttributes } from './interfaces/homeworkInterface';
53
+ import { IDescription, IInformationSupportModelAttributes } from './interfaces/informationSupportInterface';
54
+ import { IBasicInformation, IAcademicInformation, ILastSchool, IGuardianInformation, IInquiryModelAttributes } from './interfaces/inquiryInterface';
55
+ import { IInstituteEntityAttributes } from './interfaces/instituteEntityInterface';
56
+ import { IInstituteEntityTypeAttributes } from './interfaces/instituteEntityTypeInterface';
57
+ import { IInstituteAttributes } from './interfaces/instituteInterface';
58
+ import { IInstituteSubscriptionPlanModelAttributes } from './interfaces/instituteSubscriptionPlanInterface';
59
+ import { IInventoryHistoryModelAttributes } from './interfaces/inventoryHistoryInterface';
60
+ import { IInventoryModelAttributes } from './interfaces/inventoryInterface';
61
+ import { IPurchaseSchema, IFileStorageItemsSchema, IInvoiceModelAttributes } from './interfaces/invoiceInterface';
62
+ import { IQualifications, IExperience, IDocuments, IJobApplyAttributes } from './interfaces/jobApplyInterface';
63
+ import { ILectureHistoryModelAttributes } from './interfaces/lectureHistoryInterface';
64
+ import { ILectureModelAttributes } from './interfaces/lectureInterface';
65
+ import { IMasterLeaveModelAttributes } from './interfaces/masterLeaveInterface';
66
+ import { IModuleFeatureAttributes } from './interfaces/moduleFeatureInterface';
67
+ import { IModuleAttributes } from './interfaces/moduleInterface';
68
+ import { IOffersModelAttributes } from './interfaces/offersInterface';
69
+ import { IPaymentTermsModelAttributes } from './interfaces/paymentTermsInterface';
70
+ import { IPdcChequeModelAttributes } from './interfaces/pdcChequeInterface';
71
+ import { IPdcHistoryModelAttributes } from './interfaces/pdcHistoryInterface';
72
+ import { IGalleryFile, IGalleryAlbumAttributes } from './interfaces/photosGalleryInterface';
73
+ import { IPincodeAttributes } from './interfaces/pincodeInterface';
74
+ import { IPlannerLectureContentAttributes, IPlannerLectureAttributes, IPlannerTimeSlotAttributes, IPlannerModelAttributes } from './interfaces/plannerInterface';
75
+ import { IProductModelAttributes } from './interfaces/productInterface';
76
+ import { IProjectAssessmentOptionModelAttributes } from './interfaces/projectAssessmentOptionInterface';
77
+ import { IReplaceTeacherBatchesSchema, IReplaceTeacherModelAttributes } from './interfaces/replaceTeacherInterface';
78
+ import { IRoleAttributes, ICreateRolePermissions } from './interfaces/roleInterface';
79
+ import { IRulesRegulationAttributes } from './interfaces/rulesRegulationInterface';
80
+ import { ISchoolFeesCollectionModelAttributes } from './interfaces/schoolFeeCollectionInterface';
81
+ import { ITermsSchema, IFeeSchema, ISchoolFeeModelAttributes } from './interfaces/schoolFeeInterface';
82
+ import { ISchoolOffersModelAttributes } from './interfaces/schoolOfferInterface';
83
+ import { INotificationModelAttributes, INotification } from './interfaces/sendNotificationInerface';
84
+ import { ISlotModelAttributes } from './interfaces/slotInterface';
85
+ import { IStateAttributes } from './interfaces/stateInterface';
86
+ import { ISubCategoriesModelAttributes } from './interfaces/subCategoriesInterface';
87
+ import { ISubjectHasFeeModelAttributes } from './interfaces/subjectHasFeeInterface';
88
+ import { ISubjectHasPayFeeHistoryModelAttributes } from './interfaces/subjectHasPayFeeHistoryInterface';
89
+ import { IChapterFileAttributes, IChapterIndexAttributes, IAssignedUsersAttributes, ISubjectIndexModelAttributes } from './interfaces/subjectIndexInterface';
90
+ import { ISubscriptionPlanFiles, ISubscriptionPlanModelAttributes } from './interfaces/subscriptionPlanInterface';
91
+ import { ISyllabusModelAttributes } from './interfaces/syllabusInterface';
92
+ import { ITaskConversationsAttributes, ITaskManagementModelAttributes } from './interfaces/taskManagementInterface';
93
+ import { ITestimonialModelAttributes } from './interfaces/testimonialInterface';
94
+ import { IToDoModelAttributes } from './interfaces/toDoInterface';
95
+ import { ITokenAttributes, ITokenDao, ITokenService } from './interfaces/tokenInterface';
96
+ import { ITripModelAttributes } from './interfaces/tripInterface';
97
+ import { ITypeManagementModelAttributes } from './interfaces/typeManagementInterface';
98
+ import { IUniqueNumberCounterModelAttributes } from './interfaces/uniqueNumberCounterInterface';
99
+ import { IUserBookAssessmentModelAttributes } from './interfaces/userBookAssessmentInterface';
100
+ import { IUserHasFiles, IUserHasQualification, IUserSchoolInfo, IExperienceSchema, ILastSchoolSchema, IAddressSchema, IEmergencyContactSchema, IWorkingDetailsSchema, IUserDetailsAttributes } from './interfaces/userDetailsInterface';
101
+ import { collectionHasUserFeeType, IUserFeeTypeByAccountModelAttributes } from './interfaces/userFeeTypeByAccountInterface';
102
+ import { IUserFeeTypeModelAttributes } from './interfaces/userFeeTypeInterface';
103
+ import { IUserHasAnnouncementModelAttributes } from './interfaces/userHasAnnouncementInterface';
104
+ import { IUserHasBatchModelAttributes } from './interfaces/userHasBatchInterface';
105
+ import { IUserHasCourseModelAttributes } from './interfaces/userHasCourseInterface';
106
+ import { IUserHasDeviceModelAttributes } from './interfaces/userHasDeviceInterface';
107
+ import { IUserHasFeeTermsModelAttributes, IUserPayFeeAttributes } from './interfaces/userHasFeeTermsInterface';
108
+ import { IUserHasFileModelAttributes } from './interfaces/userHasFileInterface';
109
+ import { IUserHasHomeWorkModelAttributes } from './interfaces/userHasHomeWorkInterface';
110
+ import { IUserHasInventoryHistoryModelAttributes } from './interfaces/userHasInventoryHistoryInterface';
111
+ import { IUserHasInventoryModelAttributes } from './interfaces/userHasInventoryInterface';
112
+ import { IUserHasLeaveHistoryModelAttributes } from './interfaces/userHasLeaveHistoryInterface';
113
+ import { IUserHasLeaveModelAttributes } from './interfaces/userHasLeaveInterface';
114
+ import { IUserHasOfferModelAttributes } from './interfaces/userHasOfferInterface';
115
+ import { IUserHasParentAttributes } from './interfaces/userHasParentInterface';
116
+ import { IUserHasRoleAttributes } from './interfaces/userHasRoleInterface';
117
+ import { IUserHasRollNumberModelAttributes } from './interfaces/userHasRollNumberInterface';
118
+ import { IUserHasStorageModelAttributes } from './interfaces/userHasStorageInterface';
119
+ import { IUserHasSubjectFeeModelAttributes } from './interfaces/userHasSubjectFeeInterface';
120
+ import { IUserInstituteMetaSlots, IUserInstituteMetaAttributes } from './interfaces/userInstituteMetaInterface';
121
+ import { IUserAttributes } from './interfaces/userInterface';
122
+ import { IUserLeaveRequestModelAttributes } from './interfaces/userLeaveRequestInterface';
123
+ import { IUserMetaAttributes } from './interfaces/userMetaInterface';
124
+ import { IUserPayoutDetailsModelAttributes } from './interfaces/userPayoutDetailsInterface';
125
+ import { IUserPayoutHistoryModelAttributes } from './interfaces/userPayoutHistoryInterface';
126
+ import { IUserPayoutModelAttributes } from './interfaces/userPayoutInterface';
127
+ import { IUserProjectAssessmentOptionModelAttributes } from './interfaces/userProjectAssessmentOptionInterface';
128
+ import { IUserRequiredStepsAttributes } from './interfaces/userRequiredStepsInterface';
129
+ import { ITrustInformation, ICorrespondentInformation, ITrustiesInformation, IBuildingInformation, IHscSscSchema, ICoInfrastructureSchema, ISchoolInformation, IUserSchoolMetaModelAttributes } from './interfaces/userSchoolMetaInterface';
130
+ import { IVehicleModelAttributes } from './interfaces/vehicleInterface';
131
+ import { IVendorModelAttributes } from './interfaces/vendorManagementInterface';
132
+ import { IVideoAnalystModelAttributes } from './interfaces/videoAnalystInterface';
133
+ import { IWalletHistoryModelAttributes } from './interfaces/walletHistoryInterface';
134
+ import { IWalletModelAttributes } from './interfaces/walletInterface';
135
+ import { IWalletTransactionUsers, IWalletTransactionModelAttributes } from './interfaces/walletTransactionInterface';
136
+ import { IWorkingDayAttributes } from './interfaces/workingDayInterface';
137
+ import { IWorkingShiftAttributes } from './interfaces/workingShiftInterface';
138
+ import { uploadFileToS3, getPresignedUrl } from './helpers/s3Uploader';
139
+ import { pick, isValidMongoDbId, omit, ensureDirectoryExists, generateOtp, generateAlphaNumericCode, generateTempPassword, getUniqueArrayByFields, keyByFieldOrFields, groupByFieldOrFields, isTimeWithinRange, isDateWithinRange, startOfDay, generateUuidToNumber, endOfDay, groupByFields, sortArray, getChildrenByParentId, getParentsByChildrenId, buildNestedStructure, flattenNestedStructure, removeFalsyValues, isValidUUID, parseOrderOptions, capitalizeFirst, normalizeToArray, fromSnakeCaseToNormalText, slugify, assignNonNull, isUserSchoolInfoUpdate, chunkArray, extractFromObject, enumAlternatives, objectIdAlternatives, uuidIdAlternatives, customPagination, generateHmacSHA256, verifyHmacSHA256, generateVoucherCode, getCityAreas, getNextLetter } from './helpers/utils';
140
+ import { MongooseCommonService } from './services/Concrete/mongooseCommonService';
141
+ import SequelizeCommonService from './services/Concrete/sequelizeCommonService';
142
+ import { IMongooseCommonService } from './services/Contracts/IMongooseCommonService';
143
+ import { ISequelizeCommonService } from './services/Contracts/ISequelizeCommonService';
144
+ import { TAcademicCalendarModelCreationAttributes, TUpdateAcademicCalenderStatusParams } from './types/academicCalendarType';
145
+ import { TAccountHasReceiptDetailsModelCreationAttributes, TAccountHasReceiptDetailAttributesWithAssociations } from './types/accountHasReceiptDetailsType';
146
+ import { TAnnouncementModelCreationAttributes, TAnnouncementCreateParams } from './types/announcementType';
147
+ import { TApproveRequestCreationAttributes } from './types/approveRequestType';
148
+ import { TAeraModelCreationAttributes } from './types/areaType';
149
+ import { TAttendanceCreationAttributes } from './types/attendanceType';
150
+ import { TBankAccountDetailsModelCreationAttributes } from './types/bankAccountDetailsType';
151
+ import { TBannerModelCreationAttributes, TBannerAttributesWithAssociations } from './types/bannerType';
152
+ import { TBatchSubjectBookAssessmentModelCreationAttributes, TBatchSubjectBookAssessmentAttributesWithAssociations } from './types/batchSubjectBookAssessmentType';
153
+ import { TBatchSubjectProjectAssessmentModelCreationAttributes, TBatchSubjectProjectAssessmentAttributesWithAssociations } from './types/batchSubjectProjectAssessmentType';
154
+ import { TBatchModelCreationAttributes, TBatchWithAssociationsAttributes } from './types/batchType';
155
+ import { TBlogModelCreationAttributes } from './types/blogType';
156
+ import { TBookAssessmentDateModelCreationAttributes, TBookAssessmentDateAttributesWithAssociations } from './types/bookAssessmentDateType';
157
+ import { TCareerModelCreationAttributes } from './types/careerType';
158
+ import { TCategoriesModelCreationAttributes } from './types/categoriesType';
159
+ import { TCertificatesHistoryModelCreationAttributes } from './types/certificatesHistoryType';
160
+ import { TCertificatesManagementModelCreationAttributes } from './types/certificatesManagementType';
161
+ import { TClassRoomModelCreationAttributes } from './types/classRoomType';
162
+ import { TCloudStorageModelCreationAttributes } from './types/cloudStorageType';
163
+ import { TCoinPurchaseOfferModelCreationAttributes } from './types/coinPurchaseOfferType';
164
+ import { TPaginationOptions } from './types/commonType';
165
+ import { TContactFeedBackModelCreationAttributes } from './types/contactFeedBackType';
166
+ import { TCourseHasVisitorsModelCreationAttributes } from './types/courseHasVisitorsType';
167
+ import { TCourseModelCreationAttributes } from './types/courseType';
168
+ import { TDailyBookModelCreationAttributes } from './types/dailyBookType';
169
+ import { TDashboardManagementModelCreationAttributes } from './types/dashboardManagementType';
170
+ import { TDriverModelCreationAttributes, TDriverWithAssociation } from './types/driverType';
171
+ import { TEntityGroupModelCreationAttributes } from './types/entityGroupType';
172
+ import { TEventModelCreationAttributes } from './types/eventType';
173
+ import { TExamGroupCreationAttributes, TUpdateExamGroupDataParams } from './types/examGroupType';
174
+ import { TExamHasAnswerSheetModelCreationAttributes } from './types/examHasAnswerSheetType';
175
+ import { TExamModelCreationAttributes, TExamAttributesWithAssociations } from './types/examType';
176
+ import { TFacilityCreationAttributes } from './types/facilityType';
177
+ import { TFeatureActionCreationAttributes } from './types/featureActionType';
178
+ import { TFeeHistoryDetailsModelCreationAttributes, TFeeHistoryDetailsWithAssociation } from './types/feeHistoryDetailsType';
179
+ import { TFeeHistoryModelCreationAttributes, TFeeHistoryAttributesWithAssociations } from './types/feeHistoryType';
180
+ import { TFeeReminderSettingModelCreationAttributes } from './types/feeReminderSettingType';
181
+ import { TFeeReminderModelCreationAttributes } from './types/feeReminderType';
182
+ import { TFeeReminderTypeModelCreationAttributes } from './types/feeReminderTypeType';
183
+ import { TFeeTypeHasTermsModelCreationAttributes } from './types/feeTypeHasTermsType';
184
+ import { TFeeTypeModelCreationAttributes } from './types/feeTypeType';
185
+ import { TFeedBackModelCreationAttributes } from './types/feedBackType';
186
+ import { TFeesCollectionModelCreationAttributes } from './types/feesCollectionType';
187
+ import { TFileStorageModelCreationAttributes } from './types/fileStorageType';
188
+ import { TFloorManagementCreationAttributs } from './types/floormanagementType';
189
+ import { TGenarateIdCardModelAttributes } from './types/generateIdCardType';
190
+ import { TGreetingsModelCreationAttributes, TGreetingAttributesWithAssociations } from './types/greetingsType';
191
+ import { THolidayModelCreationAttributes } from './types/holidayType';
192
+ import { THomeWorkModelCreationAttributes } from './types/homeWorkType';
193
+ import { TInformationSupportModelCreationAttributes } from './types/informationSupportType';
194
+ import { TInquiryModelCreationAttributes } from './types/inquiryType';
195
+ import { TInstituteEntityCreationAttributes, TInstituteEntityWithAssociation } from './types/instituteEntityType';
196
+ import { TInstituteEntityTypeCreationAttributes } from './types/instituteEntityTypeType';
197
+ import { TInstituteSubscriptionPlanModelCreationAttributes } from './types/instituteSubscriptionPlanType';
198
+ import { TInstituteCreationAttributes } from './types/instituteType';
199
+ import { TInventoryHistoryModelCreationAttributes } from './types/inventoryHistoryType';
200
+ import { TInventoryModelCreationAttributes } from './types/inventoryType';
201
+ import { TJobApplyCreationAttributes } from './types/jobApply';
202
+ import { TLectureHistoryModelCreationAttributes, TLectureHistoryWithAssociation } from './types/lectureHistoryType';
203
+ import { TLectureModelCreationAttributes, TLectureWithAssociation } from './types/lectureType';
204
+ import { TMasterLeaveModelCreationAttributes } from './types/masterLeaveType';
205
+ import { TModuleFeatureCreationAttributes } from './types/moduleFeatureType';
206
+ import { TModuleCreationAttributes } from './types/moduleType';
207
+ import { TOfferModelCreationAttributes } from './types/offerType';
208
+ import { TPaymentTermsModelCreationAttributes } from './types/paymentTermsType';
209
+ import { TPdcChequeModelCreationAttributes, TPdcChequeWithAssociation } from './types/pdcChequeType';
210
+ import { TPdcHistoryModelCreationAttributes } from './types/pdcHistoryType';
211
+ import { TPhotosGalleryModelCreationAttributes } from './types/photosGalleryType';
212
+ import { TPlannerCreationAttributes, TUpdatePlannerDataParams } from './types/plannerType';
213
+ import { TProductsModelCreationAttributes } from './types/productType';
214
+ import { TProjectAssessmentOptionModelCreationAttributes, TProjectAssessmentOptionAttributesWithAssociations } from './types/projectAssessmentOptionType';
215
+ import { TRoleCreationAttributes, TRolePermission } from './types/roleType';
216
+ import { TRulesRegulationCreationAttributes } from './types/rulesRegulationType';
217
+ import { TSchoolFeeCollectionModelCreationAttributes } from './types/schoolFeeCollectionType';
218
+ import { TSchoolFeeModelCreationAttributes } from './types/schoolFeeType';
219
+ import { TSchoolOfferModelCreationAttributes } from './types/schoolOfferType';
220
+ import { TNotificationModelCreationAttributes } from './types/sendNotificationType';
221
+ import { TSlotModelCreationAttributes } from './types/slotType';
222
+ import { TSubCategoriesModelCreationAttributes } from './types/subCategoryType';
223
+ import { TSubjectHasFeeModelCreationAttributes } from './types/subjectHasFeeType';
224
+ import { TSubjectHasPayFeeHistoryModelCreationAttributes } from './types/subjectHasPayFeeHistoryType';
225
+ import { TSubjectIndexModelCreationAttributes, TSubjectIndexAttributesWithAssociations } from './types/subjectIndexType';
226
+ import { TSubscriptionPlanCreationAttributes } from './types/subscriptionPlanType';
227
+ import { TSyllabusCreationAttributes, TSyllabusAttributesWithAssociations } from './types/syllabusType';
228
+ import { TTaskManagementCreationAttributes } from './types/taskManagementType';
229
+ import { TTestimonialModelCreationAttributes, TTestimonialAttributesWithAssociations } from './types/testimonialType';
230
+ import { TToDoModelCreationAttributes, TToDoWithAssociation } from './types/toDoType';
231
+ import { TTripModelCreationAttributes } from './types/tripType';
232
+ import { TTypeManagementModelCreationAttributes } from './types/typeManagementType';
233
+ import { TUniqueNumberCounterCreationAttributes } from './types/uniqueNumberCounterType';
234
+ import { TUserBookAssessmentModelCreationAttributes, TUserBookAssessmentAttributesWithAssociations } from './types/userBookAssessmentType';
235
+ import { TUserDetailsModelCreationAttributes } from './types/userDetailsType';
236
+ import { TUserFeeTypeByAccountModelCreationAttributes } from './types/userFeeTypeByAccountType';
237
+ import { TUserFeeTypeModelCreationAttributes, TUserFeeTypeModelCreationWithBankIdAttributes } from './types/userFeeTypeType';
238
+ import { TUserHasAnnouncementModelCreationAttributes } from './types/userHasAnnouncementType';
239
+ import { TUserHasBatchModelCreationAttributes, TUserHasBatchModelAttributesWithAssociations } from './types/userHasBatchType';
240
+ import { TUserHasCourseModelCreationAttributes } from './types/userHasCourseType';
241
+ import { TUserHasDeviceModelCreationAttributes } from './types/userHasDeviceType';
242
+ import { TUserHasFeeTermsModelCreationAttributes } from './types/userHasFeeTermsType';
243
+ import { TUserHasFileCreationAttributes } from './types/userHasFileType';
244
+ import { TUserHasHomeWorkAttributes } from './types/userHasHomeWorkType';
245
+ import { TUserHasInventoryHistoryModelCreationAttributes } from './types/userHasInventoryHistoryType';
246
+ import { TUserHasInventoryModelCreationAttributes } from './types/userHasInventoryType';
247
+ import { TUserHasLeaveHistoryModelCreationAttributes } from './types/userHasLeaveHistoryType';
248
+ import { TUserHasLeaveModelCreationAttributes } from './types/userHasLeaveType';
249
+ import { TUserHasOfferModelCreationAttributes } from './types/userHasOffer';
250
+ import { TUserHasParentCreationAttributes, TCreateParentUserType, TCreateParentType } from './types/userHasParentType';
251
+ import { TUserHasRoleCreationAttributes } from './types/userHasRoleType';
252
+ import { TUserHasRollNumberModelCreationAttributes } from './types/userHasRollNumberType';
253
+ import { TUserHasStorageModelCreationAttributes } from './types/userHasStorageType';
254
+ import { TUserHasSubjectFeeModelCreationAttributes } from './types/userHasSubjectFeeType';
255
+ import { TUserInstituteMetaCreationAttributes } from './types/userInstituteMetaType';
256
+ import { TUserLeaveRequestModelCreationAttributes } from './types/userLeaveRequestType';
257
+ import { TUserMetaCreationAttributes, TParentsUserMetaModelAttributes, TGuardiansUserMetaModelAttributes } from './types/userMetaType';
258
+ import { TUserPayoutDetailsModelCreationAttributes } from './types/userPayoutDetailsType';
259
+ import { TUserPayoutHistoryModelCreationAttributes } from './types/userPayoutHistoryType';
260
+ import { TUserPayoutModelCreationAttributes, TUserPayoutWithDetails } from './types/userPayoutType';
261
+ import { TUserProjectAssessmentOptionModelCreationAttributes, TUserProjectAssessmentOptionAttributesWithAssociations } from './types/userProjectAssessmentOptionType';
262
+ import { TUserRequiredStepsAttributes } from './types/userRequiredStepsType';
263
+ import { TUserSchoolMetaModelCreationAttributes } from './types/userSchoolMetaType';
264
+ import { TUserCreationAttributes, TUserParentAttributes, TGenerateTokenRes } from './types/userType';
265
+ import { TVehicleModelCreationAttributes } from './types/vehicleType';
266
+ import { TVendorCreationAttributes } from './types/vendorType';
267
+ import { TVideoAnalystCreationAttributes } from './types/videoAnalystType';
268
+ import { TWalletHistoryModelCreationAttributes } from './types/walletHistoryType';
269
+ import { TWalletTransactionModelCreationAttributes } from './types/walletTransactionType';
270
+ import { TWalletModelCreationAttributes } from './types/walletType';
271
+ import { TWorkingDayCreationAttributes } from './types/workingDayType';
272
+ import { TWorkingShiftCreationAttributes } from './types/workingShiftType';
273
+ import { s3 } from './configs/aws';
274
+ import { ENV_VARIABLE } from './configs/env';
275
+ import { SIXTY, ONE_HUNDRED, ONE_THOUSAND, USER_INSTITUTE_META_STATUS_REJECTED_COUNT, PAGINATION, DEFAULT_CLASS_ROOM_TITLE, DEFAULT_BATCH_TITLE, PAGINATION_ORDER, PAGINATION_UPDATE_ORDER, EMAIL_VERIFICATION, MOBILE_VERIFICATION, PDF_MICRO_SERVICE_END_POINT, USER_STATUS, INVENTORY_TYPE, USER_INVENTORY_ACTION, ATTENDANCE_STATUS, ATTENDANCE_TYPE, SCHOOL_TYPE, SCHOOL_SUB_TYPE, GENDER, ASSIGN_TYPE, RETURN_STATUS, ACADEMIC_CALENDARS_TYPE, USER_TYPES, TOKEN_TYPES, COMMAN_STATUS, USER_COURSE_STATUS, TRIP_TYPE, GREETING_TYPE, FEE_REMINDER_SETTING_STATUS, TERM_DURATION, FEE_REMINDER_SETTING_TYPE, FEE_REMINDER_SETTING_FREQUENCY, FEE_TYPE_FREQUENCY, PAYMENT_TYPE, FEE_PAYMENT_STATUS, INSTITUTE_STATUS, OFFER_TYPE, OFFER_NAME, LEAVE_TYPE, LEAVE, LEAVE_STATUS, WORKIN_DAY_STATUS, SCHOOL_SHIFT, INSTITUTE_ENTITY_STATUS, INSTITUTE_ENTITY_TYPE_STATUS, INSTITUTE_ENTITY_TYPE_SEQUENCE, ADMISSION_TYPE, NO_TYPE, USER_DETAILS, WORK_TYPE, BLOG_STATUS, WORK_CATEGORY, DISABILITY_TYPE, GUARDIANS_USER_META_MODEL_STATUS, USER_HAS_PARENT_STATUS, USER_INSTITUTE_META_STATUS, EMPLOYMENT_TYPE, FACILITY_TYPE, FEED_BACK_TYPE, FEED_BACK_STATUS, APP_TYPE, BANNER_TYPE, ACADEMIC_CALENDARS_STATUS, FILE_TYPE, TYPE_MANAGEMENT_TYPE, TYPE_MANAGEMENT_STATUS, APPROVE_REQUEST_TYPE, APPROVE_REQUEST_STATUS, ANNOUCEMENT_SCHEDULE_TYPE, TYPE_OF_USER, ANNOUCEMENT_STATUS, USER_HAS_ANNOUCEMENT_STATUS, GREETING_STATUS, EXAM_MODE, COURSE_STATUS, EXAM_STATUS, EXAM_ANSWER_SELECTION_TYPE, EXAM_VALID_ANSWER_TYPE, EXAM_ANSWER_SHEET_STATUS, EXAM_ANSWER_SHEET_RESULT_STATUS, EXAM_ANSWER_SHEET_RESULT_TYPE, PAYMENT_TERMS_STATUS, PAYMENT_TERMS_TYPE, EXAM_ANSWER_SHEET_QUESTION_RESULT, LECTURE_SLOT_DURATION, SUBJECT_INDEX_TYPE, EXAM_GROUP_STATUS, EXAM_GROUP_STANDARD_RESULT, INQUIRY_REFERRED_BY, INQUIRY_STATUS, IMAGE__NAME, CHAPTER_INDEX_TYPE, USER_CHAPTER_INDEX_STATUS, FEE_HISTORY_STATUS, CHAPTER_INDEX_FILE_TYPE, PARENTS_CHILDREN_CURRENT, USER_PAYOUT_TYPE, QDC_NAME, SVA_NAME, TRUST_TYPE, TRUST_REGISTERED_UNDER, DESIGNATION_OF_PERSON, PROPERTY_STATUS, BOOLEAN_STATUS, FEE_TYPE, IS_PRINCIPAL, CATEGORY, NATIONALITY, RELIGION_CASTE, CASTE, SCHOOL_INFORMATION_STEP, LECTURE_STATUS, LECTURE_TITLE, TO_DO_STATUS, SVG_URL_PATH, UPLOAD_PATH, DEFAULT_INSTITUTED_LOGO, PINCODE_API_URL, EMAIL_TEMPLATES, PDF_TEMPLATES, EMAIL_SUBJECTS, bankAccountRegexMap, templateKeyWord, DEVICE_TYPE, USER_DETAILS_FILED, TASK_MANAGEMENT_STATUS, BOOK_ASSESSMENT_DATE_STATUS, USER_BOOK_ASSESSMENT_STATUS, PROJECT_ASSESSMENT_OPTION_STATUS, NOTIFICATION_TYPE, NOTIFICATION_STATUS, NOTIFICATION_MODULE_TYPE, NOTIFICATION_ACTION, PLANNER_SYNC_STATUS, CONTACT_FEED_BACK_TYPE, DISCOUNT_TYPE, SUBSCRIPTION_PLAN_CHARGE_INTERVAL, VALID_CURRENCY, SUBSCRIPTION_PLAN_FILES_TYPE, SOCKET_EVENTS, HOME_WORK_STATUS, LANGUAGES, PDF_CHEQUE_STATUS, PDF_CHEQUE_FREQUENCY, INVOICE_PAYMENT_TYPE, COLUMN_LIST_TITLE, PURCHASE_STATUS, INVOICE_TYPE, TEACHER_TYPE, REPLACE_TEACHER_STATUS, WALLET_HISTORY_TYPE, WALLET_HISTORY_ITEM_TYPE, WALLET_HISTORY_ACTION, WALLET_HISTORY_STATUS, WALLET_TRANSACTION_USERS_TYPE, INSTITUTE_SUBSCRIPTION_PLAN_STATUS, CHARGE_PER_TRANSACTION_ITEM_UNIT, ONE_GB_BYTES, JOB_ACTION, PAYMENT_GATEWAY_TYPES, PAYMENT_METHODS, WALLET_TRANSACTION_VALID_DATE_IN_MINUTES, WALLET_TRANSACTION_VALID_DATE_FOR_OTP_IN_MINUTES, COIN_PURCHASE_GST_PERCENTAGE, INITIAL_FREE_COIN, INITIAL_FREE_STORAGE_IN_GB, FREE_SUBSCRIPTION_SEQUENCE } from './constants/app';
276
+ import { INSTITUTE_DEFAULT_ATTRIBUTES, INSTITUTE_WORKING_DAY_DEFAULT_ATTRIBUTES, DEFAULT_EXCLUDES_ATTRIBUTES, USER_BASIC_DETAIL, SUBJECT_FEE_BASIC_DETAIL, FEE_COLLECTION_BASIC_DETAIL, INSTITUTE_BASIC_DETAIL, FILE_BASIC_DETAIL, USER_PAYOUT_BASIC_DETAIL } from './constants/defaultModelAttributes';
277
+ import { ERROR_MESSAGES, USER_ERROR_MESSAGES, USER_FEE_TYPE_ACCOUNT_ERROR_MESSAGES, BANNER_ERROR_MESSAGES, APPROVE_REQUEST_ERROR_MESSAGES, INQUIRY_ERROR_MESSAGES, INFORMATION_SUPPORT_ERROR_MESSAGES, BANK_ACCOUNT_DETAILS_ERROR_MESSAGES, SCHOOL_SHIFT_ERROR_MESSAGES, ACCOUNT_RECEIPT_ERROR_MESSAGES, SCHOOL_FEES_COLLECTION_ERROR_MESSAGES, FEEDBACK_ERROR_MESSAGES, SUBSCRIPTION_ERROR_MESSAGES, LEAVE_ERROR_MESSAGES, MASTER_LEAVE_ERROR_MESSAGES, FEE_HISTORY_ERROR_MESSAGES, SUBJECT_HAS_FEE_ERROR_MESSAGES, USER_HAS_INVENTORY_ERROR_MESSAGES, CATEGORY_ERROR_MESSAGES, INVENTORY_ERROR_MESSAGES, PAYMENT_TERMS_ERROR_MESSAGES, INVENTORY_HISTORY_ERROR_MESSAGES, OFFER_ERROR_MESSAGES, FACILITY_ERROR_MESSAGES, FEE_TYPE_ERROR_MESSAGES, SCHOOL_FEE_ERROR_MESSAGES, USER_FEE_TYPE_ERROR_MESSAGES, FEESCOLLECTION_ERROR_MESSAGES, FEEREMINDER_ERROR_MESSAGES, FEE_REMINDER_SETTING_ERROR_MESSAGES, FEE_REMINDER_ERROR_MESSAGES, USER_HAS_OFFER_ERROR_MESSAGES, USER_HAS_ROLL_NUMBER_ERROR_MESSAGES, HOLIDAY_ERROR_MESSAGES, EVENT_ERROR_MESSAGES, ACADEMIC_CALENDAR_ERROR_MESSAGES, BATCH_ERROR_MESSAGES, CLASSROOM_ERROR_MESSAGES, TYPE_MANAGEMENT_ERROR_MESSAGES, ROLE_ERROR_MESSAGES, MODULE_ERROR_MESSAGES, INSTITUTE_ERROR_MESSAGES, INSTITUTE_ENTITY_TYPE_ERROR_MESSAGES, INSTITUTE_ENTITY_ERROR_MESSAGES, USER_INSTITUTE_META_ERROR_MESSAGES, PARENTS_ERROR_MESSAGES, ANNOUCEMENT_ERROR_MESSAGES, EXAM_ERROR_MESSAGES, EXAM_HAS_ANSWER_SHEET_ERROR_MESSAGES, FILE_STORAGE_ERROR_MESSAGES, ATTENDANCE_ERROR_MESSAGES, USER_SCHOOL_METADATA_ERROR_MESSAGES, WORKING_DAYS_ERROR_MESSAGES, LECTURE_ERROR_MESSAGES, TRIP_ERROR_MESSAGES, SLOT_ERROR_MESSAGES, TO_DO_ERROR_MESSAGES, COURSE_ERROR_MESSAGES, USER_HAS_COURSE_ERROR_MESSAGES, GREETING_ERROR_MESSAGES, PDC_CHEQUE_ERROR_MESSAGES, VIDEO_ANALYST_ERROR_MESSAGES, BLOG_ERROR_MESSAGES, DRIVER_ERROR_MESSAGES, TESTIMONIAL_ERROR_MESSAGES, SUBJECT_INDEX_ERROR_MESSAGES, USER_PAYOUT_ERROR_MESSAGES, USER_PAYOUT_HISTORY_ERROR_MESSAGES, EXAM_GROUP_ERROR_MESSAGES, TASK_MANAGEMENT_ERROR_MESSAGES, BATCH_SUBJECT_BOOK_ASSESSMENT_ERROR_MESSAGES, USER_BOOK_ASSESSMENT_ERROR_MESSAGES, BATCH_SUBJECT_PROJECT_ASSESSMENT_ERROR_MESSAGES, VEHICLE_ERROR_MESSAGES, GENERATE_ID_CARD_ERROR_MESSAGES, CONTACT_FEED_BACK_ERROR_MESSAGES, PHOTO_GALLERY_ERROR_MESSAGES, NOTIFICATION_ERROR_MESSAGES, RULES_REGULATION_ERROR_MESSAGES, CAREER_ERROR_MESSAGES, SIGNED_URL_ERROR_MESSAGES, FLOOR_MANAGEMENT_ERROR_MESSAGES, SUBSCRIPTION_PLAN_ERROR_MESSAGES, CLOUD_STORAGE_ERROR_MESSAGES, HOME_WORK_ERROR_MESSAGES, USER_HAS_HOME_WORK_ERROR_MESSAGES, DAILY_BOOK_ERROR_MESSAGES, SYLLABUS_ERROR_MESSAGES, COIN_PURCHASE_OFFER_ERROR_MESSAGES, VENDOR_MANAGEMENT_ERROR_MESSAGES, SUB_CATEGORY_ERROR_MESSAGES, PRODUCT_ERROR_MESSAGES, INVOICE_ERROR_MESSAGES, COLUMN_ERROR_MESSAGES, PDC_HISTORY_ERROR_MESSAGES, DASHBOARD_MANAGEMENT_ERROR_MESSAGES, CERTIFICATES_MANAGEMENT_ERROR_MESSAGES, CERTIFICATES_HISTORY_ERROR_MESSAGES, REPLACE_TEACHER_ERROR_MESSAGES, WALLET_ERROR_MESSAGES, WALLET_HISTORY_ERROR_MESSAGES, WALLET_TRANSACTION_ERROR_MESSAGES, INSTITUTE_SUBSCRIPTION_PLAN_ERROR_MESSAGES, USER_HAS_STORAGE_ERROR_MESSAGES, ENTITY_GROUP_ERROR_MESSAGES, JOB_APPLY_ERROR_MESSAGES, USER_REQUIRED_STEPS_ERROR_MESSAGES, PAYMENT_TRANSACTION_ERROR_MESSAGES } from './constants/errorMessages';
278
+ import { HTTP_STATUS_CODE } from './constants/httpStatusCode';
279
+ import { SUCCESS_MESSAGES, USER_SUCCESS_MESSAGES, BANNER_SUCCESS_MESSAGES, APPROVE_REQUEST_SUCCESS_MESSAGES, ADMIN_SUCCESS_MESSAGES, USER_FEE_TYPE_ACCOUNT_SUCCESS_MESSAGES, USER_FEE_TYPE_SUCCESS_MESSAGES, SCHOOL_FEES_COLLECTION_SUCCESS_MESSAGES, FEE_SUCCESS_MESSAGES, INQUIRY_SUCCESS_MESSAGES, INFORMATION_SUPPORT_SUCCESS_MESSAGES, FEEDBACK_SUCCESS_MESSAGES, FEE_TYPE_SUCCESS_MESSAGES, ACCOUNT_RECEIPT_SUCCESS_MESSAGES, BANK_ACCOUNT_DETAILS_SUCCESS_MESSAGES, SUBSCRIPTION_SUCCESS_MESSAGES, SCHOOL_SHIFT_SUCCESS_MESSAGES, FEE_REMINDER_SUCCESS_MESSAGES, FACILITY_SUCCESS_MESSAGES, PAYMENT_TERMS_SUCCESS_MESSAGES, LEAVE_SUCCESS_MESSAGES, MASTER_LEAVE_SUCCESS_MESSAGES, FEE_HISTORY_SUCCESS_MESSAGES, SUBJECT_HAS_FEE_SUCCESS_MESSAGES, USER_HAS_INVENTORY_SUCCESS_MESSAGES, USER_HAS_INVENTORY_HISTORY_SUCCESS_MESSAGES, INVENTORY_SUCCESS_MESSAGES, INVENTORY_HISTORY_SUCCESS_MESSAGES, CATEGORY_SUCCESS_MESSAGES, OFFER_SUCCESS_MESSAGES, FEESCOLLECTION_SUCCESS_MESSAGES, FEEREMINDER_SUCCESS_MESSAGES, FEE_REMINDER_SETTING_SUCCESS_MESSAGES, USER_HAS_OFFER_SUCCESS_MESSAGES, USER_HAS_ROLL_NUMBER_SUCCESS_MESSAGES, HOLIDAY_SUCCESS_MESSAGES, EVENT_SUCCESS_MESSAGES, ACADEMIC_CALENDAR_SUCCESS_MESSAGES, BATCH_SUCCESS_MESSAGES, CLASSROOM_SUCCESS_MESSAGES, ROLE_SUCCESS_MESSAGES, MODULE_SUCCESS_MESSAGES, INSTITUTE_SUCCESS_MESSAGES, WORKING_DAYS_SUCCESS_MESSAGES, INSTITUTE_ENTITY_SUCCESS_MESSAGES, INSTITUTE_ENTITY_TYPE_SUCCESS_MESSAGES, USER_INSTITUTE_META_SUCCESS_MESSAGES, PARENTS_SUCCESS_MESSAGES, TYPE_MANAGEMENT_SUCCESS_MESSAGES, ANNOUCEMENT_SUCCESS_MESSAGES, EXAM_SUCCESS_MESSAGES, EXAM_HAS_ANSWER_SHEET_SUCCESS_MESSAGES, ATTENDANCE_SUCCESS_MESSAGES, USER_SCHOOL_METADATA_SUCCESS_MESSAGES, LECTURE_SUCCESS_MESSAGES, TRIP_SUCCESS_MESSAGES, SLOT_SUCCESS_MESSAGES, TO_DO_SUCCESS_MESSAGES, COURSE_SUCCESS_MESSAGES, USER_HAS_COURSE_SUCCESS_MESSAGES, GREETING_SUCCESS_MESSAGES, PDC_CHEQUE_SUCCESS_MESSAGES, TESTIMONIAL_SUCCESS_MESSAGES, VIDEO_ANALYST_SUCCESS_MESSAGES, BLOG_SUCCESS_MESSAGES, DRIVER_SUCCESS_MESSAGES, SUBJECT_INDEX_SUCCESS_MESSAGES, USER_PAYOUT_SUCCESS_MESSAGES, USER_PAYOUT_HISTORY_SUCCESS_MESSAGES, PLANNER_SUCCESS_MESSAGES, EXAM_GROUP_SUCCESS_MESSAGES, TASK_MANAGEMENT_SUCCESS_MESSAGES, BATCH_SUBJECT_BOOK_ASSESSMENT_SUCCESS_MESSAGES, USER_BOOK_ASSESSMENT_SUCCESS_MESSAGES, BATCH_SUBJECT_PROJECT_ASSESSMENT_SUCCESS_MESSAGES, VEHICLE_SUCCESS_MESSAGES, GENERATE_ID_CARD_SUCCESS_MESSAGES, CONTACT_FEED_BACK_SUCCESS_MESSAGES, PHOTO_GALLERY_SUCCESS_MESSAGES, NOTIFICATION_SUCCESS_MESSAGES, CUSTOME_NOTIFICATION_SUCCESS_MESSAGES, RULE_REGULATION_SUCCESS_MESSAGES, CAREER_SUCCESS_MESSAGES, FLOOR_MANAGEMENT_SUCCESS_MESSAGES, SUBSCRIPTION_PLAN_SUCCESS_MESSAGES, CLOUD_STORAGE_SUCCESS_MESSAGES, HOME_WORK_SUCCESS_MESSAGES, USER_HAS_HOME_WORK_SUCCESS_MESSAGES, DAILY_BOOK_SUCCESS_MESSAGES, SYLLABUS_SUCCESS_MESSAGES, COIN_PURCHASE_OFFER_SUCCESS_MESSAGES, VENDOR_MANAGEMENT_SUCCESS_MESSAGES, SUB_CATEGORY_SUCCESS_MESSAGES, PRODUCT_SUCCESS_MESSAGES, INVOICE_SUCCESS_MESSAGES, COLUMN_SUCCESS_MESSAGES, PDC_HISTORY_SUCCESS_MESSAGES, DASHBOARD_MANAGEMENT_SUCCESS_MESSAGES, CERTIFICATES_MANAGEMENT_SUCCESS_MESSAGES, CERTIFICATES_HISTORY_SUCCESS_MESSAGES, REPLACE_TEACHER_SUCCESS_MESSAGES, WALLET_SUCCESS_MESSAGES, WALLET_HISTORY_SUCCESS_MESSAGES, WALLET_TRANSACTION_SUCCESS_MESSAGES, INSTITUTE_SUBSCRIPTION_PLAN_SUCCESS_MESSAGES, USER_HAS_STORAGE_SUCCESS_MESSAGES, ENTITY_GROUP_SUCCESS_MESSAGES, JOB_APPLY_SUCCESS_MESSAGES, USER_REQUIRED_STEPS_SUCCESS_MESSAGES, PAYMENT_TRANSACTION_SUCCESS_MESSAGES } from './constants/successMessages';
280
+ import ApprovalRequestModel from './models/mongodb/approvalRequestModel';
281
+ import AttendanceModel from './models/mongodb/attendanceModel';
282
+ import BlogModel from './models/mongodb/blogModel';
283
+ import CareerModel from './models/mongodb/careerModel';
284
+ import CertificatesHistoryModel from './models/mongodb/certificatesHistoryModel';
285
+ import CertificatesManagementModel from './models/mongodb/certificatesManagementModel';
286
+ import ColumnModel from './models/mongodb/columnModel';
287
+ import DailyBookModel from './models/mongodb/dailyBookModel';
288
+ import DashboardManagementModel from './models/mongodb/dashboardManagementModel';
289
+ import EventModel from './models/mongodb/eventModel';
290
+ import ExamGroupModel from './models/mongodb/examGroupModel';
291
+ import ExamHasAnswerSheetModel from './models/mongodb/examHasAnswerSheetModel';
292
+ import ExamModel from './models/mongodb/examModel';
293
+ import FeeReminderTypeModel from './models/mongodb/feeReminderTypeModel';
294
+ import FeedBackModel from './models/mongodb/feedBackModel';
295
+ import GenerateIdCardModel from './models/mongodb/generateIdCardModel';
296
+ import HolidayModel from './models/mongodb/holidayModel';
297
+ import InformationSupportModel from './models/mongodb/informationSupportModel';
298
+ import InquiryModel from './models/mongodb/inquiryModel';
299
+ import InvoiceModel from './models/mongodb/invoiceModel';
300
+ import JobApplyModel from './models/mongodb/jobApplyModel';
301
+ import PhotosGalleryModel from './models/mongodb/photosGalleryModel';
302
+ import PlannerModel from './models/mongodb/plannerModel';
303
+ import ReplaceTeacherModel from './models/mongodb/replaceTeacherModel';
304
+ import SchoolFeeModel from './models/mongodb/schoolFeeModel';
305
+ import SubjectIndexModel from './models/mongodb/subjectIndexModel';
306
+ import SubscriptionPlanModel from './models/mongodb/subscriptionPlanModel';
307
+ import TaskManagementModel from './models/mongodb/taskManagementModel';
308
+ import UniqueNumberCounterModel from './models/mongodb/uniqueNumberCounterModel';
309
+ import UserDetailsModel from './models/mongodb/userDetailsModel';
310
+ import { UserSchoolInfoSchema } from './models/mongodb/userDetailsModel';
311
+ import { IUserDoc, UserDoc } from './models/mongodb/userDoc';
312
+ import UserInstituteMetaModel from './models/mongodb/userInstituteMetaModel';
313
+ import UserSchoolMetaModel from './models/mongodb/userSchoolMetaModel';
314
+ import VideoAnalystModel from './models/mongodb/videoAnalystModel';
315
+ import WalletTransactionModel from './models/mongodb/walletTransactionModel';
316
+ import SubCategoriesModel from './models/psql/SubCategoriesModel';
317
+ import AcademicCalendarModel from './models/psql/academicCalendarModel';
318
+ import AccountHasReceiptDetailsModel from './models/psql/accountHasReceiptDetailsModel';
319
+ import AnnouncementModel from './models/psql/announcementModel';
320
+ import AreaModel from './models/psql/areaModel';
321
+ import BankAccountDetailsModel from './models/psql/bankAccountDetailsModel';
322
+ import BannerModel from './models/psql/bannerModel';
323
+ import BatchModel from './models/psql/batchModel';
324
+ import BatchSubjectBookAssessmentModel from './models/psql/batchSubjectBookAssessmentModel';
325
+ import BatchSubjectProjectAssessmentModel from './models/psql/batchSubjectProjectAssessmentModel';
326
+ import BookAssessmentDateModel from './models/psql/bookAssessmentDateModel';
327
+ import CategoriesModel from './models/psql/categoriesModel';
328
+ import CityModel from './models/psql/cityModel';
329
+ import ClassRoomModel from './models/psql/classRoomModel';
330
+ import CloudStorageModel from './models/psql/cloudStorageModel';
331
+ import CoinPurchaseOfferModel from './models/psql/coinPurchaseOfferModel';
332
+ import ContactFeedBackModel from './models/psql/contactFeedBackModel';
333
+ import CountryModel from './models/psql/countryModel';
334
+ import CourseHasVisitorsModel from './models/psql/courseHasVisitorsModel';
335
+ import CourseModel from './models/psql/courseModel';
336
+ import DriverModel from './models/psql/driverModel';
337
+ import EntityGroupModel from './models/psql/entityGroupModel';
338
+ import FacilityModel from './models/psql/facilityModel';
339
+ import FeatureActionModel from './models/psql/featureActionModel';
340
+ import FeeHistoryDetailsModel from './models/psql/feeHistoryDetailsModel';
341
+ import FeeHistoryModel from './models/psql/feeHistoryModel';
342
+ import FeeReminderModel from './models/psql/feeReminderModel';
343
+ import FeeReminderSettingModel from './models/psql/feeReminderSettingModel';
344
+ import FeeTypeHasTermsModel from './models/psql/feeTypeHasTermsModel';
345
+ import FeeTypeModel from './models/psql/feeTypeModel';
346
+ import FeesCollectionModel from './models/psql/feesCollectionModel';
347
+ import FileStorageModel from './models/psql/fileStorageModel';
348
+ import FloorManagementModel from './models/psql/floorManagementModel';
349
+ import GreetingsModel from './models/psql/greetingsModel';
350
+ import HomeWorkModel from './models/psql/homeWorkModel';
351
+ import InstituteEntityModel from './models/psql/instituteEntityModel';
352
+ import InstituteEntityTypeModel from './models/psql/instituteEntityTypeModel';
353
+ import InstituteModel from './models/psql/instituteModel';
354
+ import InstituteSubscriptionPlanModel from './models/psql/instituteSubscriptionPlanModel';
355
+ import InventoryHistoryModel from './models/psql/inventoryHistoryModel';
356
+ import InventoryModel from './models/psql/inventoryModel';
357
+ import LectureHistoryModel from './models/psql/lectureHistoryModel';
358
+ import LectureModel from './models/psql/lectureModel';
359
+ import MasterLeaveModel from './models/psql/masterLeaveModel';
360
+ import ModuleFeatureModel from './models/psql/moduleFeatureModel';
361
+ import ModuleModel from './models/psql/moduleModel';
362
+ import OfferModel from './models/psql/offerModel';
363
+ import PaymentTermsModel from './models/psql/paymentTermsModel';
364
+ import PdcChequeModel from './models/psql/pdcChequeModel';
365
+ import PdcHistoryModel from './models/psql/pdcHistoryModel';
366
+ import PincodeModel from './models/psql/pincodeModel';
367
+ import ProductModel from './models/psql/productModel';
368
+ import ProjectAssessmentOptionModel from './models/psql/projectAssessmentOptionModel';
369
+ import RoleModel from './models/psql/roleModel';
370
+ import RulesRegulationModel from './models/psql/rulesRegulationModel';
371
+ import SchoolFeeCollectionModel from './models/psql/schoolFeeCollectionModel';
372
+ import SchoolOfferModel from './models/psql/schoolOfferModel';
373
+ import SendNotificationModel from './models/psql/sendNotificationModel';
374
+ import SlotModel from './models/psql/slotModel';
375
+ import StateModel from './models/psql/stateModel';
376
+ import SubjectHasFeeModel from './models/psql/subjectHasFeeModel';
377
+ import SubjectHasPayFeeHistoryModel from './models/psql/subjectHasPayFeeHistoryModel';
378
+ import SyllabusModel from './models/psql/syllabusModel';
379
+ import TestimonialModel from './models/psql/testimonialModel';
380
+ import ToDoModel from './models/psql/toDoModel';
381
+ import TokenModel from './models/psql/tokenModel';
382
+ import TripModel from './models/psql/tripModel';
383
+ import TypeManagementModel from './models/psql/typeManagementModel';
384
+ import UserBookAssessmentModel from './models/psql/userBookAssessmentModel';
385
+ import UserFeeTypeByAccountModel from './models/psql/userFeeTypeByAccountModel';
386
+ import UserFeeTypeModel from './models/psql/userFeeTypeModel';
387
+ import UserHasAnnouncementModel from './models/psql/userHasAnnouncementModel';
388
+ import UserHasBatchModel from './models/psql/userHasBatchModel';
389
+ import UserHasCourseModel from './models/psql/userHasCourseModel';
390
+ import UserHasDeviceModel from './models/psql/userHasDeviceModel';
391
+ import UserHasFeeTermsModel from './models/psql/userHasFeeTermsModel';
392
+ import UserHasFileModel from './models/psql/userHasFileModel';
393
+ import UserHasHomeWorkModel from './models/psql/userHasHomeWorkModel';
394
+ import UserHasInventoryHistoryModel from './models/psql/userHasInventoryHistoryModel';
395
+ import UserHasInventoryModel from './models/psql/userHasInventoryModel';
396
+ import UserHasLeaveHistoryModel from './models/psql/userHasLeaveHistoryModel';
397
+ import UserHasLeaveModel from './models/psql/userHasLeaveModel';
398
+ import UserHasOfferModel from './models/psql/userHasOfferModel';
399
+ import UserHasParentModel from './models/psql/userHasParentModel';
400
+ import UserHasRoleModel from './models/psql/userHasRoleModel';
401
+ import UserHasRollNumberModel from './models/psql/userHasRollNumberModel';
402
+ import UserHasStorageModel from './models/psql/userHasStorageModel';
403
+ import UserHasSubjectFeeModel from './models/psql/userHasSubjectFeeModel';
404
+ import UserLeaveRequestModel from './models/psql/userLeaveRequestModel';
405
+ import UserModel from './models/psql/userModel';
406
+ import UserPayoutDetailsModel from './models/psql/userPayoutDetailsModel';
407
+ import UserPayoutHistoryModel from './models/psql/userPayoutHistoryModel';
408
+ import UserPayoutModel from './models/psql/userPayoutModel';
409
+ import UserProjectAssessmentOptionModel from './models/psql/userProjectAssessmentOptionModel';
410
+ import UserRequiredStepsModel from './models/psql/userRequiredStepsModel';
411
+ import VehicleModel from './models/psql/vehicleModel';
412
+ import VendorManagementModel from './models/psql/vendorManagementModel';
413
+ import WalletHistoryModel from './models/psql/walletHistoryModel';
414
+ import WalletModel from './models/psql/walletModel';
415
+ import WorkingDayModel from './models/psql/workingDayModel';
416
+ import WorkingShiftModel from './models/psql/workingShiftModel';
417
+ import { sequelize, db, Sequelize } from './models/psql';
418
+ import { connectMongo } from 'db/mongodb';
419
+ export { IAcademicCalendarModelAttributes, IAccountHasReceiptDetailsInterfaceModelAttributes, IAnnouncementModelAttributes, IApproveRequestModelAttributes, IAreaModelAttributes, IAttendanceUser, IAttendanceModelAttributes, IBankAccountDetailsInterfaceModelAttributes, IBannerModelAttributes, IBatchModelAttributes, IBatchSubjectBookAssessmentModelAttributes, IBatchSubjectProjectAssessmentModelAttributes, ICommentSchema, ILikeSchema, IShareListSchema, ISubTopicSchema, IBlogModelAttributes, IBookAssessmentDateModelAttributes, ICareerModelAttributes, ICategoriesModelAttributes, ICertificatesHistoryAttributes, ICertificatesManagementAttributes, ICityAttributes, IClassRoomModelAttributes, ICloudStorageModelAttributes, ICoinPurchaseOfferModelAttributes, IRowSchema, IColumnModelAttributes, IDefaultAttributes, IEmailOptions, ICommanDao, ICountDao, IDeleteDao, IFindAllDao, IFindOneDao, IUpsertDao, ICommanMongoDao, IContactFeedBackAttributes, ICountryAttributes, ICourseHasVisitorsModelAttributes, ICourseModelAttributes, IDailyBookModelAttributes, IModuleList, IDashboardManagementAttributes, IDriverModelAttributes, IEntityGroupModelAttributes, IEventHasBatch, IEventModelAttributes, IExamGroupDaysAttributes, IExamGroupStandardByDaysAttributes, IExamGroupModelAttributes, IAnswerSheetQuestion, IExamHasAnswerSheetModelAttributes, IExamHasBatch, IExamModelAttributes, IFacilityAttributes, IFeatureActionAttributes, IFeeHistoryDetailsModelAttributes, IFeeHistoryModelAttributes, IFeeReminderModelAttributes, IFeeReminderSettingModelAttributes, IFeeReminderTypeModelAttributes, IFeeTypeHasTermsModelAttributes, IFeeTypeModelAttributes, IConversation, IFeedBackModelAttributes, IFeesCollectionModelAttributes, IFileStorageAttributes, IFloorManagementModelAttributes, IGenarateIdCardModelAttributes, IGreetingsModelAttributes, IHolidayHasBatch, IHolidayModelAttributes, IHomeWorkModelAttributes, IDescription, IInformationSupportModelAttributes, IBasicInformation, IAcademicInformation, ILastSchool, IGuardianInformation, IInquiryModelAttributes, IInstituteEntityAttributes, IInstituteEntityTypeAttributes, IInstituteAttributes, IInstituteSubscriptionPlanModelAttributes, IInventoryHistoryModelAttributes, IInventoryModelAttributes, IPurchaseSchema, IFileStorageItemsSchema, IInvoiceModelAttributes, IQualifications, IExperience, IDocuments, IJobApplyAttributes, ILectureHistoryModelAttributes, ILectureModelAttributes, IMasterLeaveModelAttributes, IModuleFeatureAttributes, IModuleAttributes, IOffersModelAttributes, IPaymentTermsModelAttributes, IPdcChequeModelAttributes, IPdcHistoryModelAttributes, IGalleryFile, IGalleryAlbumAttributes, IPincodeAttributes, IPlannerLectureContentAttributes, IPlannerLectureAttributes, IPlannerTimeSlotAttributes, IPlannerModelAttributes, IProductModelAttributes, IProjectAssessmentOptionModelAttributes, IReplaceTeacherBatchesSchema, IReplaceTeacherModelAttributes, IRoleAttributes, ICreateRolePermissions, IRulesRegulationAttributes, ISchoolFeesCollectionModelAttributes, ITermsSchema, IFeeSchema, ISchoolFeeModelAttributes, ISchoolOffersModelAttributes, INotificationModelAttributes, INotification, ISlotModelAttributes, IStateAttributes, ISubCategoriesModelAttributes, ISubjectHasFeeModelAttributes, ISubjectHasPayFeeHistoryModelAttributes, IChapterFileAttributes, IChapterIndexAttributes, IAssignedUsersAttributes, ISubjectIndexModelAttributes, ISubscriptionPlanFiles, ISubscriptionPlanModelAttributes, ISyllabusModelAttributes, ITaskConversationsAttributes, ITaskManagementModelAttributes, ITestimonialModelAttributes, IToDoModelAttributes, ITokenAttributes, ITokenDao, ITokenService, ITripModelAttributes, ITypeManagementModelAttributes, IUniqueNumberCounterModelAttributes, IUserBookAssessmentModelAttributes, IUserHasFiles, IUserHasQualification, IUserSchoolInfo, IExperienceSchema, ILastSchoolSchema, IAddressSchema, IEmergencyContactSchema, IWorkingDetailsSchema, IUserDetailsAttributes, collectionHasUserFeeType, IUserFeeTypeByAccountModelAttributes, IUserFeeTypeModelAttributes, IUserHasAnnouncementModelAttributes, IUserHasBatchModelAttributes, IUserHasCourseModelAttributes, IUserHasDeviceModelAttributes, IUserHasFeeTermsModelAttributes, IUserPayFeeAttributes, IUserHasFileModelAttributes, IUserHasHomeWorkModelAttributes, IUserHasInventoryHistoryModelAttributes, IUserHasInventoryModelAttributes, IUserHasLeaveHistoryModelAttributes, IUserHasLeaveModelAttributes, IUserHasOfferModelAttributes, IUserHasParentAttributes, IUserHasRoleAttributes, IUserHasRollNumberModelAttributes, IUserHasStorageModelAttributes, IUserHasSubjectFeeModelAttributes, IUserInstituteMetaSlots, IUserInstituteMetaAttributes, IUserAttributes, IUserLeaveRequestModelAttributes, IUserMetaAttributes, IUserPayoutDetailsModelAttributes, IUserPayoutHistoryModelAttributes, IUserPayoutModelAttributes, IUserProjectAssessmentOptionModelAttributes, IUserRequiredStepsAttributes, ITrustInformation, ICorrespondentInformation, ITrustiesInformation, IBuildingInformation, IHscSscSchema, ICoInfrastructureSchema, ISchoolInformation, IUserSchoolMetaModelAttributes, IVehicleModelAttributes, IVendorModelAttributes, IVideoAnalystModelAttributes, IWalletHistoryModelAttributes, IWalletModelAttributes, IWalletTransactionUsers, IWalletTransactionModelAttributes, IWorkingDayAttributes, IWorkingShiftAttributes, uploadFileToS3, getPresignedUrl, pick, isValidMongoDbId, omit, ensureDirectoryExists, generateOtp, generateAlphaNumericCode, generateTempPassword, getUniqueArrayByFields, keyByFieldOrFields, groupByFieldOrFields, isTimeWithinRange, isDateWithinRange, startOfDay, generateUuidToNumber, endOfDay, groupByFields, sortArray, getChildrenByParentId, getParentsByChildrenId, buildNestedStructure, flattenNestedStructure, removeFalsyValues, isValidUUID, parseOrderOptions, capitalizeFirst, normalizeToArray, fromSnakeCaseToNormalText, slugify, assignNonNull, isUserSchoolInfoUpdate, chunkArray, extractFromObject, enumAlternatives, objectIdAlternatives, uuidIdAlternatives, customPagination, generateHmacSHA256, verifyHmacSHA256, generateVoucherCode, getCityAreas, getNextLetter, MongooseCommonService, SequelizeCommonService, IMongooseCommonService, ISequelizeCommonService, TAcademicCalendarModelCreationAttributes, TUpdateAcademicCalenderStatusParams, TAccountHasReceiptDetailsModelCreationAttributes, TAccountHasReceiptDetailAttributesWithAssociations, TAnnouncementModelCreationAttributes, TAnnouncementCreateParams, TApproveRequestCreationAttributes, TAeraModelCreationAttributes, TAttendanceCreationAttributes, TBankAccountDetailsModelCreationAttributes, TBannerModelCreationAttributes, TBannerAttributesWithAssociations, TBatchSubjectBookAssessmentModelCreationAttributes, TBatchSubjectBookAssessmentAttributesWithAssociations, TBatchSubjectProjectAssessmentModelCreationAttributes, TBatchSubjectProjectAssessmentAttributesWithAssociations, TBatchModelCreationAttributes, TBatchWithAssociationsAttributes, TBlogModelCreationAttributes, TBookAssessmentDateModelCreationAttributes, TBookAssessmentDateAttributesWithAssociations, TCareerModelCreationAttributes, TCategoriesModelCreationAttributes, TCertificatesHistoryModelCreationAttributes, TCertificatesManagementModelCreationAttributes, TClassRoomModelCreationAttributes, TCloudStorageModelCreationAttributes, TCoinPurchaseOfferModelCreationAttributes, TPaginationOptions, TContactFeedBackModelCreationAttributes, TCourseHasVisitorsModelCreationAttributes, TCourseModelCreationAttributes, TDailyBookModelCreationAttributes, TDashboardManagementModelCreationAttributes, TDriverModelCreationAttributes, TDriverWithAssociation, TEntityGroupModelCreationAttributes, TEventModelCreationAttributes, TExamGroupCreationAttributes, TUpdateExamGroupDataParams, TExamHasAnswerSheetModelCreationAttributes, TExamModelCreationAttributes, TExamAttributesWithAssociations, TFacilityCreationAttributes, TFeatureActionCreationAttributes, TFeeHistoryDetailsModelCreationAttributes, TFeeHistoryDetailsWithAssociation, TFeeHistoryModelCreationAttributes, TFeeHistoryAttributesWithAssociations, TFeeReminderSettingModelCreationAttributes, TFeeReminderModelCreationAttributes, TFeeReminderTypeModelCreationAttributes, TFeeTypeHasTermsModelCreationAttributes, TFeeTypeModelCreationAttributes, TFeedBackModelCreationAttributes, TFeesCollectionModelCreationAttributes, TFileStorageModelCreationAttributes, TFloorManagementCreationAttributs, TGenarateIdCardModelAttributes, TGreetingsModelCreationAttributes, TGreetingAttributesWithAssociations, THolidayModelCreationAttributes, THomeWorkModelCreationAttributes, TInformationSupportModelCreationAttributes, TInquiryModelCreationAttributes, TInstituteEntityCreationAttributes, TInstituteEntityWithAssociation, TInstituteEntityTypeCreationAttributes, TInstituteSubscriptionPlanModelCreationAttributes, TInstituteCreationAttributes, TInventoryHistoryModelCreationAttributes, TInventoryModelCreationAttributes, TJobApplyCreationAttributes, TLectureHistoryModelCreationAttributes, TLectureHistoryWithAssociation, TLectureModelCreationAttributes, TLectureWithAssociation, TMasterLeaveModelCreationAttributes, TModuleFeatureCreationAttributes, TModuleCreationAttributes, TOfferModelCreationAttributes, TPaymentTermsModelCreationAttributes, TPdcChequeModelCreationAttributes, TPdcChequeWithAssociation, TPdcHistoryModelCreationAttributes, TPhotosGalleryModelCreationAttributes, TPlannerCreationAttributes, TUpdatePlannerDataParams, TProductsModelCreationAttributes, TProjectAssessmentOptionModelCreationAttributes, TProjectAssessmentOptionAttributesWithAssociations, TRoleCreationAttributes, TRolePermission, TRulesRegulationCreationAttributes, TSchoolFeeCollectionModelCreationAttributes, TSchoolFeeModelCreationAttributes, TSchoolOfferModelCreationAttributes, TNotificationModelCreationAttributes, TSlotModelCreationAttributes, TSubCategoriesModelCreationAttributes, TSubjectHasFeeModelCreationAttributes, TSubjectHasPayFeeHistoryModelCreationAttributes, TSubjectIndexModelCreationAttributes, TSubjectIndexAttributesWithAssociations, TSubscriptionPlanCreationAttributes, TSyllabusCreationAttributes, TSyllabusAttributesWithAssociations, TTaskManagementCreationAttributes, TTestimonialModelCreationAttributes, TTestimonialAttributesWithAssociations, TToDoModelCreationAttributes, TToDoWithAssociation, TTripModelCreationAttributes, TTypeManagementModelCreationAttributes, TUniqueNumberCounterCreationAttributes, TUserBookAssessmentModelCreationAttributes, TUserBookAssessmentAttributesWithAssociations, TUserDetailsModelCreationAttributes, TUserFeeTypeByAccountModelCreationAttributes, TUserFeeTypeModelCreationAttributes, TUserFeeTypeModelCreationWithBankIdAttributes, TUserHasAnnouncementModelCreationAttributes, TUserHasBatchModelCreationAttributes, TUserHasBatchModelAttributesWithAssociations, TUserHasCourseModelCreationAttributes, TUserHasDeviceModelCreationAttributes, TUserHasFeeTermsModelCreationAttributes, TUserHasFileCreationAttributes, TUserHasHomeWorkAttributes, TUserHasInventoryHistoryModelCreationAttributes, TUserHasInventoryModelCreationAttributes, TUserHasLeaveHistoryModelCreationAttributes, TUserHasLeaveModelCreationAttributes, TUserHasOfferModelCreationAttributes, TUserHasParentCreationAttributes, TCreateParentUserType, TCreateParentType, TUserHasRoleCreationAttributes, TUserHasRollNumberModelCreationAttributes, TUserHasStorageModelCreationAttributes, TUserHasSubjectFeeModelCreationAttributes, TUserInstituteMetaCreationAttributes, TUserLeaveRequestModelCreationAttributes, TUserMetaCreationAttributes, TParentsUserMetaModelAttributes, TGuardiansUserMetaModelAttributes, TUserPayoutDetailsModelCreationAttributes, TUserPayoutHistoryModelCreationAttributes, TUserPayoutModelCreationAttributes, TUserPayoutWithDetails, TUserProjectAssessmentOptionModelCreationAttributes, TUserProjectAssessmentOptionAttributesWithAssociations, TUserRequiredStepsAttributes, TUserSchoolMetaModelCreationAttributes, TUserCreationAttributes, TUserParentAttributes, TGenerateTokenRes, TVehicleModelCreationAttributes, TVendorCreationAttributes, TVideoAnalystCreationAttributes, TWalletHistoryModelCreationAttributes, TWalletTransactionModelCreationAttributes, TWalletModelCreationAttributes, TWorkingDayCreationAttributes, TWorkingShiftCreationAttributes, s3, ENV_VARIABLE, SIXTY, ONE_HUNDRED, ONE_THOUSAND, USER_INSTITUTE_META_STATUS_REJECTED_COUNT, PAGINATION, DEFAULT_CLASS_ROOM_TITLE, DEFAULT_BATCH_TITLE, PAGINATION_ORDER, PAGINATION_UPDATE_ORDER, EMAIL_VERIFICATION, MOBILE_VERIFICATION, PDF_MICRO_SERVICE_END_POINT, USER_STATUS, INVENTORY_TYPE, USER_INVENTORY_ACTION, ATTENDANCE_STATUS, ATTENDANCE_TYPE, SCHOOL_TYPE, SCHOOL_SUB_TYPE, GENDER, ASSIGN_TYPE, RETURN_STATUS, ACADEMIC_CALENDARS_TYPE, USER_TYPES, TOKEN_TYPES, COMMAN_STATUS, USER_COURSE_STATUS, TRIP_TYPE, GREETING_TYPE, FEE_REMINDER_SETTING_STATUS, TERM_DURATION, FEE_REMINDER_SETTING_TYPE, FEE_REMINDER_SETTING_FREQUENCY, FEE_TYPE_FREQUENCY, PAYMENT_TYPE, FEE_PAYMENT_STATUS, INSTITUTE_STATUS, OFFER_TYPE, OFFER_NAME, LEAVE_TYPE, LEAVE, LEAVE_STATUS, WORKIN_DAY_STATUS, SCHOOL_SHIFT, INSTITUTE_ENTITY_STATUS, INSTITUTE_ENTITY_TYPE_STATUS, INSTITUTE_ENTITY_TYPE_SEQUENCE, ADMISSION_TYPE, NO_TYPE, USER_DETAILS, WORK_TYPE, BLOG_STATUS, WORK_CATEGORY, DISABILITY_TYPE, GUARDIANS_USER_META_MODEL_STATUS, USER_HAS_PARENT_STATUS, USER_INSTITUTE_META_STATUS, EMPLOYMENT_TYPE, FACILITY_TYPE, FEED_BACK_TYPE, FEED_BACK_STATUS, APP_TYPE, BANNER_TYPE, ACADEMIC_CALENDARS_STATUS, FILE_TYPE, TYPE_MANAGEMENT_TYPE, TYPE_MANAGEMENT_STATUS, APPROVE_REQUEST_TYPE, APPROVE_REQUEST_STATUS, ANNOUCEMENT_SCHEDULE_TYPE, TYPE_OF_USER, ANNOUCEMENT_STATUS, USER_HAS_ANNOUCEMENT_STATUS, GREETING_STATUS, EXAM_MODE, COURSE_STATUS, EXAM_STATUS, EXAM_ANSWER_SELECTION_TYPE, EXAM_VALID_ANSWER_TYPE, EXAM_ANSWER_SHEET_STATUS, EXAM_ANSWER_SHEET_RESULT_STATUS, EXAM_ANSWER_SHEET_RESULT_TYPE, PAYMENT_TERMS_STATUS, PAYMENT_TERMS_TYPE, EXAM_ANSWER_SHEET_QUESTION_RESULT, LECTURE_SLOT_DURATION, SUBJECT_INDEX_TYPE, EXAM_GROUP_STATUS, EXAM_GROUP_STANDARD_RESULT, INQUIRY_REFERRED_BY, INQUIRY_STATUS, IMAGE__NAME, CHAPTER_INDEX_TYPE, USER_CHAPTER_INDEX_STATUS, FEE_HISTORY_STATUS, CHAPTER_INDEX_FILE_TYPE, PARENTS_CHILDREN_CURRENT, USER_PAYOUT_TYPE, QDC_NAME, SVA_NAME, TRUST_TYPE, TRUST_REGISTERED_UNDER, DESIGNATION_OF_PERSON, PROPERTY_STATUS, BOOLEAN_STATUS, FEE_TYPE, IS_PRINCIPAL, CATEGORY, NATIONALITY, RELIGION_CASTE, CASTE, SCHOOL_INFORMATION_STEP, LECTURE_STATUS, LECTURE_TITLE, TO_DO_STATUS, SVG_URL_PATH, UPLOAD_PATH, DEFAULT_INSTITUTED_LOGO, PINCODE_API_URL, EMAIL_TEMPLATES, PDF_TEMPLATES, EMAIL_SUBJECTS, bankAccountRegexMap, templateKeyWord, DEVICE_TYPE, USER_DETAILS_FILED, TASK_MANAGEMENT_STATUS, BOOK_ASSESSMENT_DATE_STATUS, USER_BOOK_ASSESSMENT_STATUS, PROJECT_ASSESSMENT_OPTION_STATUS, NOTIFICATION_TYPE, NOTIFICATION_STATUS, NOTIFICATION_MODULE_TYPE, NOTIFICATION_ACTION, PLANNER_SYNC_STATUS, CONTACT_FEED_BACK_TYPE, DISCOUNT_TYPE, SUBSCRIPTION_PLAN_CHARGE_INTERVAL, VALID_CURRENCY, SUBSCRIPTION_PLAN_FILES_TYPE, SOCKET_EVENTS, HOME_WORK_STATUS, LANGUAGES, PDF_CHEQUE_STATUS, PDF_CHEQUE_FREQUENCY, INVOICE_PAYMENT_TYPE, COLUMN_LIST_TITLE, PURCHASE_STATUS, INVOICE_TYPE, TEACHER_TYPE, REPLACE_TEACHER_STATUS, WALLET_HISTORY_TYPE, WALLET_HISTORY_ITEM_TYPE, WALLET_HISTORY_ACTION, WALLET_HISTORY_STATUS, WALLET_TRANSACTION_USERS_TYPE, INSTITUTE_SUBSCRIPTION_PLAN_STATUS, CHARGE_PER_TRANSACTION_ITEM_UNIT, ONE_GB_BYTES, JOB_ACTION, PAYMENT_GATEWAY_TYPES, PAYMENT_METHODS, WALLET_TRANSACTION_VALID_DATE_IN_MINUTES, WALLET_TRANSACTION_VALID_DATE_FOR_OTP_IN_MINUTES, COIN_PURCHASE_GST_PERCENTAGE, INITIAL_FREE_COIN, INITIAL_FREE_STORAGE_IN_GB, FREE_SUBSCRIPTION_SEQUENCE, INSTITUTE_DEFAULT_ATTRIBUTES, INSTITUTE_WORKING_DAY_DEFAULT_ATTRIBUTES, DEFAULT_EXCLUDES_ATTRIBUTES, USER_BASIC_DETAIL, SUBJECT_FEE_BASIC_DETAIL, FEE_COLLECTION_BASIC_DETAIL, INSTITUTE_BASIC_DETAIL, FILE_BASIC_DETAIL, USER_PAYOUT_BASIC_DETAIL, ERROR_MESSAGES, USER_ERROR_MESSAGES, USER_FEE_TYPE_ACCOUNT_ERROR_MESSAGES, BANNER_ERROR_MESSAGES, APPROVE_REQUEST_ERROR_MESSAGES, INQUIRY_ERROR_MESSAGES, INFORMATION_SUPPORT_ERROR_MESSAGES, BANK_ACCOUNT_DETAILS_ERROR_MESSAGES, SCHOOL_SHIFT_ERROR_MESSAGES, ACCOUNT_RECEIPT_ERROR_MESSAGES, SCHOOL_FEES_COLLECTION_ERROR_MESSAGES, FEEDBACK_ERROR_MESSAGES, SUBSCRIPTION_ERROR_MESSAGES, LEAVE_ERROR_MESSAGES, MASTER_LEAVE_ERROR_MESSAGES, FEE_HISTORY_ERROR_MESSAGES, SUBJECT_HAS_FEE_ERROR_MESSAGES, USER_HAS_INVENTORY_ERROR_MESSAGES, CATEGORY_ERROR_MESSAGES, INVENTORY_ERROR_MESSAGES, PAYMENT_TERMS_ERROR_MESSAGES, INVENTORY_HISTORY_ERROR_MESSAGES, OFFER_ERROR_MESSAGES, FACILITY_ERROR_MESSAGES, FEE_TYPE_ERROR_MESSAGES, SCHOOL_FEE_ERROR_MESSAGES, USER_FEE_TYPE_ERROR_MESSAGES, FEESCOLLECTION_ERROR_MESSAGES, FEEREMINDER_ERROR_MESSAGES, FEE_REMINDER_SETTING_ERROR_MESSAGES, FEE_REMINDER_ERROR_MESSAGES, USER_HAS_OFFER_ERROR_MESSAGES, USER_HAS_ROLL_NUMBER_ERROR_MESSAGES, HOLIDAY_ERROR_MESSAGES, EVENT_ERROR_MESSAGES, ACADEMIC_CALENDAR_ERROR_MESSAGES, BATCH_ERROR_MESSAGES, CLASSROOM_ERROR_MESSAGES, TYPE_MANAGEMENT_ERROR_MESSAGES, ROLE_ERROR_MESSAGES, MODULE_ERROR_MESSAGES, INSTITUTE_ERROR_MESSAGES, INSTITUTE_ENTITY_TYPE_ERROR_MESSAGES, INSTITUTE_ENTITY_ERROR_MESSAGES, USER_INSTITUTE_META_ERROR_MESSAGES, PARENTS_ERROR_MESSAGES, ANNOUCEMENT_ERROR_MESSAGES, EXAM_ERROR_MESSAGES, EXAM_HAS_ANSWER_SHEET_ERROR_MESSAGES, FILE_STORAGE_ERROR_MESSAGES, ATTENDANCE_ERROR_MESSAGES, USER_SCHOOL_METADATA_ERROR_MESSAGES, WORKING_DAYS_ERROR_MESSAGES, LECTURE_ERROR_MESSAGES, TRIP_ERROR_MESSAGES, SLOT_ERROR_MESSAGES, TO_DO_ERROR_MESSAGES, COURSE_ERROR_MESSAGES, USER_HAS_COURSE_ERROR_MESSAGES, GREETING_ERROR_MESSAGES, PDC_CHEQUE_ERROR_MESSAGES, VIDEO_ANALYST_ERROR_MESSAGES, BLOG_ERROR_MESSAGES, DRIVER_ERROR_MESSAGES, TESTIMONIAL_ERROR_MESSAGES, SUBJECT_INDEX_ERROR_MESSAGES, USER_PAYOUT_ERROR_MESSAGES, USER_PAYOUT_HISTORY_ERROR_MESSAGES, EXAM_GROUP_ERROR_MESSAGES, TASK_MANAGEMENT_ERROR_MESSAGES, BATCH_SUBJECT_BOOK_ASSESSMENT_ERROR_MESSAGES, USER_BOOK_ASSESSMENT_ERROR_MESSAGES, BATCH_SUBJECT_PROJECT_ASSESSMENT_ERROR_MESSAGES, VEHICLE_ERROR_MESSAGES, GENERATE_ID_CARD_ERROR_MESSAGES, CONTACT_FEED_BACK_ERROR_MESSAGES, PHOTO_GALLERY_ERROR_MESSAGES, NOTIFICATION_ERROR_MESSAGES, RULES_REGULATION_ERROR_MESSAGES, CAREER_ERROR_MESSAGES, SIGNED_URL_ERROR_MESSAGES, FLOOR_MANAGEMENT_ERROR_MESSAGES, SUBSCRIPTION_PLAN_ERROR_MESSAGES, CLOUD_STORAGE_ERROR_MESSAGES, HOME_WORK_ERROR_MESSAGES, USER_HAS_HOME_WORK_ERROR_MESSAGES, DAILY_BOOK_ERROR_MESSAGES, SYLLABUS_ERROR_MESSAGES, COIN_PURCHASE_OFFER_ERROR_MESSAGES, VENDOR_MANAGEMENT_ERROR_MESSAGES, SUB_CATEGORY_ERROR_MESSAGES, PRODUCT_ERROR_MESSAGES, INVOICE_ERROR_MESSAGES, COLUMN_ERROR_MESSAGES, PDC_HISTORY_ERROR_MESSAGES, DASHBOARD_MANAGEMENT_ERROR_MESSAGES, CERTIFICATES_MANAGEMENT_ERROR_MESSAGES, CERTIFICATES_HISTORY_ERROR_MESSAGES, REPLACE_TEACHER_ERROR_MESSAGES, WALLET_ERROR_MESSAGES, WALLET_HISTORY_ERROR_MESSAGES, WALLET_TRANSACTION_ERROR_MESSAGES, INSTITUTE_SUBSCRIPTION_PLAN_ERROR_MESSAGES, USER_HAS_STORAGE_ERROR_MESSAGES, ENTITY_GROUP_ERROR_MESSAGES, JOB_APPLY_ERROR_MESSAGES, USER_REQUIRED_STEPS_ERROR_MESSAGES, PAYMENT_TRANSACTION_ERROR_MESSAGES, HTTP_STATUS_CODE, SUCCESS_MESSAGES, USER_SUCCESS_MESSAGES, BANNER_SUCCESS_MESSAGES, APPROVE_REQUEST_SUCCESS_MESSAGES, ADMIN_SUCCESS_MESSAGES, USER_FEE_TYPE_ACCOUNT_SUCCESS_MESSAGES, USER_FEE_TYPE_SUCCESS_MESSAGES, SCHOOL_FEES_COLLECTION_SUCCESS_MESSAGES, FEE_SUCCESS_MESSAGES, INQUIRY_SUCCESS_MESSAGES, INFORMATION_SUPPORT_SUCCESS_MESSAGES, FEEDBACK_SUCCESS_MESSAGES, FEE_TYPE_SUCCESS_MESSAGES, ACCOUNT_RECEIPT_SUCCESS_MESSAGES, BANK_ACCOUNT_DETAILS_SUCCESS_MESSAGES, SUBSCRIPTION_SUCCESS_MESSAGES, SCHOOL_SHIFT_SUCCESS_MESSAGES, FEE_REMINDER_SUCCESS_MESSAGES, FACILITY_SUCCESS_MESSAGES, PAYMENT_TERMS_SUCCESS_MESSAGES, LEAVE_SUCCESS_MESSAGES, MASTER_LEAVE_SUCCESS_MESSAGES, FEE_HISTORY_SUCCESS_MESSAGES, SUBJECT_HAS_FEE_SUCCESS_MESSAGES, USER_HAS_INVENTORY_SUCCESS_MESSAGES, USER_HAS_INVENTORY_HISTORY_SUCCESS_MESSAGES, INVENTORY_SUCCESS_MESSAGES, INVENTORY_HISTORY_SUCCESS_MESSAGES, CATEGORY_SUCCESS_MESSAGES, OFFER_SUCCESS_MESSAGES, FEESCOLLECTION_SUCCESS_MESSAGES, FEEREMINDER_SUCCESS_MESSAGES, FEE_REMINDER_SETTING_SUCCESS_MESSAGES, USER_HAS_OFFER_SUCCESS_MESSAGES, USER_HAS_ROLL_NUMBER_SUCCESS_MESSAGES, HOLIDAY_SUCCESS_MESSAGES, EVENT_SUCCESS_MESSAGES, ACADEMIC_CALENDAR_SUCCESS_MESSAGES, BATCH_SUCCESS_MESSAGES, CLASSROOM_SUCCESS_MESSAGES, ROLE_SUCCESS_MESSAGES, MODULE_SUCCESS_MESSAGES, INSTITUTE_SUCCESS_MESSAGES, WORKING_DAYS_SUCCESS_MESSAGES, INSTITUTE_ENTITY_SUCCESS_MESSAGES, INSTITUTE_ENTITY_TYPE_SUCCESS_MESSAGES, USER_INSTITUTE_META_SUCCESS_MESSAGES, PARENTS_SUCCESS_MESSAGES, TYPE_MANAGEMENT_SUCCESS_MESSAGES, ANNOUCEMENT_SUCCESS_MESSAGES, EXAM_SUCCESS_MESSAGES, EXAM_HAS_ANSWER_SHEET_SUCCESS_MESSAGES, ATTENDANCE_SUCCESS_MESSAGES, USER_SCHOOL_METADATA_SUCCESS_MESSAGES, LECTURE_SUCCESS_MESSAGES, TRIP_SUCCESS_MESSAGES, SLOT_SUCCESS_MESSAGES, TO_DO_SUCCESS_MESSAGES, COURSE_SUCCESS_MESSAGES, USER_HAS_COURSE_SUCCESS_MESSAGES, GREETING_SUCCESS_MESSAGES, PDC_CHEQUE_SUCCESS_MESSAGES, TESTIMONIAL_SUCCESS_MESSAGES, VIDEO_ANALYST_SUCCESS_MESSAGES, BLOG_SUCCESS_MESSAGES, DRIVER_SUCCESS_MESSAGES, SUBJECT_INDEX_SUCCESS_MESSAGES, USER_PAYOUT_SUCCESS_MESSAGES, USER_PAYOUT_HISTORY_SUCCESS_MESSAGES, PLANNER_SUCCESS_MESSAGES, EXAM_GROUP_SUCCESS_MESSAGES, TASK_MANAGEMENT_SUCCESS_MESSAGES, BATCH_SUBJECT_BOOK_ASSESSMENT_SUCCESS_MESSAGES, USER_BOOK_ASSESSMENT_SUCCESS_MESSAGES, BATCH_SUBJECT_PROJECT_ASSESSMENT_SUCCESS_MESSAGES, VEHICLE_SUCCESS_MESSAGES, GENERATE_ID_CARD_SUCCESS_MESSAGES, CONTACT_FEED_BACK_SUCCESS_MESSAGES, PHOTO_GALLERY_SUCCESS_MESSAGES, NOTIFICATION_SUCCESS_MESSAGES, CUSTOME_NOTIFICATION_SUCCESS_MESSAGES, RULE_REGULATION_SUCCESS_MESSAGES, CAREER_SUCCESS_MESSAGES, FLOOR_MANAGEMENT_SUCCESS_MESSAGES, SUBSCRIPTION_PLAN_SUCCESS_MESSAGES, CLOUD_STORAGE_SUCCESS_MESSAGES, HOME_WORK_SUCCESS_MESSAGES, USER_HAS_HOME_WORK_SUCCESS_MESSAGES, DAILY_BOOK_SUCCESS_MESSAGES, SYLLABUS_SUCCESS_MESSAGES, COIN_PURCHASE_OFFER_SUCCESS_MESSAGES, VENDOR_MANAGEMENT_SUCCESS_MESSAGES, SUB_CATEGORY_SUCCESS_MESSAGES, PRODUCT_SUCCESS_MESSAGES, INVOICE_SUCCESS_MESSAGES, COLUMN_SUCCESS_MESSAGES, PDC_HISTORY_SUCCESS_MESSAGES, DASHBOARD_MANAGEMENT_SUCCESS_MESSAGES, CERTIFICATES_MANAGEMENT_SUCCESS_MESSAGES, CERTIFICATES_HISTORY_SUCCESS_MESSAGES, REPLACE_TEACHER_SUCCESS_MESSAGES, WALLET_SUCCESS_MESSAGES, WALLET_HISTORY_SUCCESS_MESSAGES, WALLET_TRANSACTION_SUCCESS_MESSAGES, INSTITUTE_SUBSCRIPTION_PLAN_SUCCESS_MESSAGES, USER_HAS_STORAGE_SUCCESS_MESSAGES, ENTITY_GROUP_SUCCESS_MESSAGES, JOB_APPLY_SUCCESS_MESSAGES, USER_REQUIRED_STEPS_SUCCESS_MESSAGES, PAYMENT_TRANSACTION_SUCCESS_MESSAGES, ApprovalRequestModel, AttendanceModel, BlogModel, CareerModel, CertificatesHistoryModel, CertificatesManagementModel, ColumnModel, DailyBookModel, DashboardManagementModel, EventModel, ExamGroupModel, ExamHasAnswerSheetModel, ExamModel, FeeReminderTypeModel, FeedBackModel, GenerateIdCardModel, HolidayModel, InformationSupportModel, InquiryModel, InvoiceModel, JobApplyModel, PhotosGalleryModel, PlannerModel, ReplaceTeacherModel, SchoolFeeModel, SubjectIndexModel, SubscriptionPlanModel, TaskManagementModel, UniqueNumberCounterModel, UserDetailsModel, UserSchoolInfoSchema, IUserDoc, UserDoc, UserInstituteMetaModel, UserSchoolMetaModel, VideoAnalystModel, WalletTransactionModel, SubCategoriesModel, AcademicCalendarModel, AccountHasReceiptDetailsModel, AnnouncementModel, AreaModel, BankAccountDetailsModel, BannerModel, BatchModel, BatchSubjectBookAssessmentModel, BatchSubjectProjectAssessmentModel, BookAssessmentDateModel, CategoriesModel, CityModel, ClassRoomModel, CloudStorageModel, CoinPurchaseOfferModel, ContactFeedBackModel, CountryModel, CourseHasVisitorsModel, CourseModel, DriverModel, EntityGroupModel, FacilityModel, FeatureActionModel, FeeHistoryDetailsModel, FeeHistoryModel, FeeReminderModel, FeeReminderSettingModel, FeeTypeHasTermsModel, FeeTypeModel, FeesCollectionModel, FileStorageModel, FloorManagementModel, GreetingsModel, HomeWorkModel, InstituteEntityModel, InstituteEntityTypeModel, InstituteModel, InstituteSubscriptionPlanModel, InventoryHistoryModel, InventoryModel, LectureHistoryModel, LectureModel, MasterLeaveModel, ModuleFeatureModel, ModuleModel, OfferModel, PaymentTermsModel, PdcChequeModel, PdcHistoryModel, PincodeModel, ProductModel, ProjectAssessmentOptionModel, RoleModel, RulesRegulationModel, SchoolFeeCollectionModel, SchoolOfferModel, SendNotificationModel, SlotModel, StateModel, SubjectHasFeeModel, SubjectHasPayFeeHistoryModel, SyllabusModel, TestimonialModel, ToDoModel, TokenModel, TripModel, TypeManagementModel, UserBookAssessmentModel, UserFeeTypeByAccountModel, UserFeeTypeModel, UserHasAnnouncementModel, UserHasBatchModel, UserHasCourseModel, UserHasDeviceModel, UserHasFeeTermsModel, UserHasFileModel, UserHasHomeWorkModel, UserHasInventoryHistoryModel, UserHasInventoryModel, UserHasLeaveHistoryModel, UserHasLeaveModel, UserHasOfferModel, UserHasParentModel, UserHasRoleModel, UserHasRollNumberModel, UserHasStorageModel, UserHasSubjectFeeModel, UserLeaveRequestModel, UserModel, UserPayoutDetailsModel, UserPayoutHistoryModel, UserPayoutModel, UserProjectAssessmentOptionModel, UserRequiredStepsModel, VehicleModel, VendorManagementModel, WalletHistoryModel, WalletModel, WorkingDayModel, WorkingShiftModel, sequelize, Sequelize, db, connectMongo };