@kipicore/dbcore 1.1.12 → 1.1.14

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 (1963) hide show
  1. package/dist/cjs/constants/app.js +1105 -0
  2. package/dist/cjs/helpers/utils.js +682 -0
  3. package/dist/cjs/index.d.ts +419 -0
  4. package/dist/cjs/index.js +758 -0
  5. package/dist/esm/configs/aws.d.ts +2 -0
  6. package/dist/esm/configs/aws.js +9 -0
  7. package/dist/esm/configs/env.d.ts +61 -0
  8. package/dist/esm/configs/env.js +132 -0
  9. package/dist/esm/constants/app.d.ts +871 -0
  10. package/dist/esm/constants/app.js +1099 -0
  11. package/dist/esm/constants/defaultModelAttributes.d.ts +17 -0
  12. package/dist/esm/constants/defaultModelAttributes.js +18 -0
  13. package/dist/esm/constants/errorMessages.d.ts +1055 -0
  14. package/dist/esm/constants/errorMessages.js +1161 -0
  15. package/dist/esm/constants/httpStatusCode.d.ts +26 -0
  16. package/dist/esm/constants/httpStatusCode.js +27 -0
  17. package/dist/esm/constants/successMessages.d.ts +699 -0
  18. package/dist/esm/constants/successMessages.js +807 -0
  19. package/dist/esm/helpers/s3Uploader.d.ts +3 -0
  20. package/dist/esm/helpers/s3Uploader.js +53 -0
  21. package/dist/esm/helpers/utils.d.ts +173 -0
  22. package/dist/esm/helpers/utils.js +603 -0
  23. package/dist/esm/index.d.ts +419 -0
  24. package/dist/esm/index.js +151 -0
  25. package/dist/esm/interfaces/academicCalendarInterface.d.ts +9 -0
  26. package/dist/esm/interfaces/academicCalendarInterface.js +1 -0
  27. package/dist/esm/interfaces/accountHasReceiptDetailsInterface.d.ts +17 -0
  28. package/dist/esm/interfaces/accountHasReceiptDetailsInterface.js +1 -0
  29. package/dist/esm/interfaces/announcementInterface.d.ts +19 -0
  30. package/dist/esm/interfaces/announcementInterface.js +1 -0
  31. package/dist/esm/interfaces/approvalRequestInterface.d.ts +14 -0
  32. package/dist/esm/interfaces/approvalRequestInterface.js +1 -0
  33. package/dist/esm/interfaces/areaInterface.d.ts +5 -0
  34. package/dist/esm/interfaces/areaInterface.js +1 -0
  35. package/dist/esm/interfaces/attendanceInterface.d.ts +21 -0
  36. package/dist/esm/interfaces/attendanceInterface.js +1 -0
  37. package/dist/esm/interfaces/bankAccountDetailsInterface.d.ts +14 -0
  38. package/dist/esm/interfaces/bankAccountDetailsInterface.js +1 -0
  39. package/dist/esm/interfaces/bannerInterface.d.ts +15 -0
  40. package/dist/esm/interfaces/bannerInterface.js +1 -0
  41. package/dist/esm/interfaces/batchInterface.d.ts +18 -0
  42. package/dist/esm/interfaces/batchInterface.js +1 -0
  43. package/dist/esm/interfaces/batchSubjectBookAssessmentInterface.d.ts +9 -0
  44. package/dist/esm/interfaces/batchSubjectBookAssessmentInterface.js +1 -0
  45. package/dist/esm/interfaces/batchSubjectProjectAssessmentInterface.d.ts +12 -0
  46. package/dist/esm/interfaces/batchSubjectProjectAssessmentInterface.js +1 -0
  47. package/dist/esm/interfaces/blogInterface.d.ts +46 -0
  48. package/dist/esm/interfaces/blogInterface.js +1 -0
  49. package/dist/esm/interfaces/bookAssessmentDateInterface.d.ts +8 -0
  50. package/dist/esm/interfaces/bookAssessmentDateInterface.js +1 -0
  51. package/dist/esm/interfaces/careerInterface.d.ts +12 -0
  52. package/dist/esm/interfaces/careerInterface.js +1 -0
  53. package/dist/esm/interfaces/categoriesInterface.d.ts +8 -0
  54. package/dist/esm/interfaces/categoriesInterface.js +1 -0
  55. package/dist/esm/interfaces/certificatesHistoryInterface.d.ts +9 -0
  56. package/dist/esm/interfaces/certificatesHistoryInterface.js +1 -0
  57. package/dist/esm/interfaces/certificatesManagementInterface.d.ts +11 -0
  58. package/dist/esm/interfaces/certificatesManagementInterface.js +1 -0
  59. package/dist/esm/interfaces/cityInterface.d.ts +12 -0
  60. package/dist/esm/interfaces/cityInterface.js +1 -0
  61. package/dist/esm/interfaces/classRoomInterface.d.ts +13 -0
  62. package/dist/esm/interfaces/classRoomInterface.js +1 -0
  63. package/dist/esm/interfaces/cloudStorageInterface.d.ts +15 -0
  64. package/dist/esm/interfaces/cloudStorageInterface.js +1 -0
  65. package/dist/esm/interfaces/coinPurchaseOfferInterface.d.ts +16 -0
  66. package/dist/esm/interfaces/coinPurchaseOfferInterface.js +1 -0
  67. package/dist/esm/interfaces/columnInterface.d.ts +15 -0
  68. package/dist/esm/interfaces/columnInterface.js +1 -0
  69. package/dist/esm/interfaces/commanInterface.d.ts +52 -0
  70. package/dist/esm/interfaces/commanInterface.js +1 -0
  71. package/dist/esm/interfaces/contactFeedBackInterface.d.ts +13 -0
  72. package/dist/esm/interfaces/contactFeedBackInterface.js +1 -0
  73. package/dist/esm/interfaces/countryInterface.d.ts +11 -0
  74. package/dist/esm/interfaces/countryInterface.js +1 -0
  75. package/dist/esm/interfaces/courseHasVisitorsInterface.d.ts +7 -0
  76. package/dist/esm/interfaces/courseHasVisitorsInterface.js +1 -0
  77. package/dist/esm/interfaces/courseInterface.d.ts +18 -0
  78. package/dist/esm/interfaces/courseInterface.js +1 -0
  79. package/dist/esm/interfaces/dailyBookInterface.d.ts +14 -0
  80. package/dist/esm/interfaces/dailyBookInterface.js +1 -0
  81. package/dist/esm/interfaces/dashboardManagementInterface.d.ts +19 -0
  82. package/dist/esm/interfaces/dashboardManagementInterface.js +1 -0
  83. package/dist/esm/interfaces/driverInterface.d.ts +21 -0
  84. package/dist/esm/interfaces/driverInterface.js +1 -0
  85. package/dist/esm/interfaces/entityGroupInterface.d.ts +12 -0
  86. package/dist/esm/interfaces/entityGroupInterface.js +1 -0
  87. package/dist/esm/interfaces/eventInterface.d.ts +21 -0
  88. package/dist/esm/interfaces/eventInterface.js +1 -0
  89. package/dist/esm/interfaces/examGroupInterface.d.ts +30 -0
  90. package/dist/esm/interfaces/examGroupInterface.js +1 -0
  91. package/dist/esm/interfaces/examHasAnswerSheetInterface.d.ts +23 -0
  92. package/dist/esm/interfaces/examHasAnswerSheetInterface.js +1 -0
  93. package/dist/esm/interfaces/examInterface.d.ts +38 -0
  94. package/dist/esm/interfaces/examInterface.js +1 -0
  95. package/dist/esm/interfaces/facilityInterface.d.ts +9 -0
  96. package/dist/esm/interfaces/facilityInterface.js +1 -0
  97. package/dist/esm/interfaces/featureActionInterface.d.ts +17 -0
  98. package/dist/esm/interfaces/featureActionInterface.js +1 -0
  99. package/dist/esm/interfaces/feeHistoryDetailsInterface.d.ts +17 -0
  100. package/dist/esm/interfaces/feeHistoryDetailsInterface.js +1 -0
  101. package/dist/esm/interfaces/feeHistoryInterface.d.ts +21 -0
  102. package/dist/esm/interfaces/feeHistoryInterface.js +1 -0
  103. package/dist/esm/interfaces/feeReminderInterface.d.ts +13 -0
  104. package/dist/esm/interfaces/feeReminderInterface.js +1 -0
  105. package/dist/esm/interfaces/feeReminderSettingInterface.d.ts +10 -0
  106. package/dist/esm/interfaces/feeReminderSettingInterface.js +1 -0
  107. package/dist/esm/interfaces/feeReminderTypeInterface.d.ts +10 -0
  108. package/dist/esm/interfaces/feeReminderTypeInterface.js +1 -0
  109. package/dist/esm/interfaces/feeTypeHasTermsInterface.d.ts +12 -0
  110. package/dist/esm/interfaces/feeTypeHasTermsInterface.js +1 -0
  111. package/dist/esm/interfaces/feeTypeInterface.d.ts +13 -0
  112. package/dist/esm/interfaces/feeTypeInterface.js +1 -0
  113. package/dist/esm/interfaces/feedBackInterface.d.ts +19 -0
  114. package/dist/esm/interfaces/feedBackInterface.js +1 -0
  115. package/dist/esm/interfaces/feesCollectionInterface.d.ts +19 -0
  116. package/dist/esm/interfaces/feesCollectionInterface.js +1 -0
  117. package/dist/esm/interfaces/fileStorageInterface.d.ts +14 -0
  118. package/dist/esm/interfaces/fileStorageInterface.js +1 -0
  119. package/dist/esm/interfaces/floorManagementInterface.d.ts +9 -0
  120. package/dist/esm/interfaces/floorManagementInterface.js +1 -0
  121. package/dist/esm/interfaces/generateIdCardInterface.d.ts +8 -0
  122. package/dist/esm/interfaces/generateIdCardInterface.js +1 -0
  123. package/dist/esm/interfaces/greetingsInterface.d.ts +12 -0
  124. package/dist/esm/interfaces/greetingsInterface.js +1 -0
  125. package/dist/esm/interfaces/holidayInterface.d.ts +22 -0
  126. package/dist/esm/interfaces/holidayInterface.js +1 -0
  127. package/dist/esm/interfaces/homeworkInterface.d.ts +13 -0
  128. package/dist/esm/interfaces/homeworkInterface.js +1 -0
  129. package/dist/esm/interfaces/informationSupportInterface.d.ts +15 -0
  130. package/dist/esm/interfaces/informationSupportInterface.js +1 -0
  131. package/dist/esm/interfaces/inquiryInterface.d.ts +54 -0
  132. package/dist/esm/interfaces/inquiryInterface.js +1 -0
  133. package/dist/esm/interfaces/instituteEntityInterface.d.ts +16 -0
  134. package/dist/esm/interfaces/instituteEntityInterface.js +1 -0
  135. package/dist/esm/interfaces/instituteEntityTypeInterface.d.ts +10 -0
  136. package/dist/esm/interfaces/instituteEntityTypeInterface.js +1 -0
  137. package/dist/esm/interfaces/instituteInterface.d.ts +35 -0
  138. package/dist/esm/interfaces/instituteInterface.js +1 -0
  139. package/dist/esm/interfaces/instituteSubscriptionPlanInterface.d.ts +21 -0
  140. package/dist/esm/interfaces/instituteSubscriptionPlanInterface.js +1 -0
  141. package/dist/esm/interfaces/inventoryHistoryInterface.d.ts +17 -0
  142. package/dist/esm/interfaces/inventoryHistoryInterface.js +1 -0
  143. package/dist/esm/interfaces/inventoryInterface.d.ts +15 -0
  144. package/dist/esm/interfaces/inventoryInterface.js +1 -0
  145. package/dist/esm/interfaces/invoiceInterface.d.ts +31 -0
  146. package/dist/esm/interfaces/invoiceInterface.js +1 -0
  147. package/dist/esm/interfaces/jobApplyInterface.d.ts +35 -0
  148. package/dist/esm/interfaces/jobApplyInterface.js +1 -0
  149. package/dist/esm/interfaces/lectureHistoryInterface.d.ts +24 -0
  150. package/dist/esm/interfaces/lectureHistoryInterface.js +1 -0
  151. package/dist/esm/interfaces/lectureInterface.d.ts +26 -0
  152. package/dist/esm/interfaces/lectureInterface.js +1 -0
  153. package/dist/esm/interfaces/masterLeaveInterface.d.ts +13 -0
  154. package/dist/esm/interfaces/masterLeaveInterface.js +1 -0
  155. package/dist/esm/interfaces/moduleFeatureInterface.d.ts +16 -0
  156. package/dist/esm/interfaces/moduleFeatureInterface.js +1 -0
  157. package/dist/esm/interfaces/moduleInterface.d.ts +15 -0
  158. package/dist/esm/interfaces/moduleInterface.js +1 -0
  159. package/dist/esm/interfaces/offersInterface.d.ts +18 -0
  160. package/dist/esm/interfaces/offersInterface.js +1 -0
  161. package/dist/esm/interfaces/paymentTermsInterface.d.ts +15 -0
  162. package/dist/esm/interfaces/paymentTermsInterface.js +1 -0
  163. package/dist/esm/interfaces/pdcChequeInterface.d.ts +16 -0
  164. package/dist/esm/interfaces/pdcChequeInterface.js +1 -0
  165. package/dist/esm/interfaces/pdcHistoryInterface.d.ts +17 -0
  166. package/dist/esm/interfaces/pdcHistoryInterface.js +1 -0
  167. package/dist/esm/interfaces/photosGalleryInterface.d.ts +17 -0
  168. package/dist/esm/interfaces/photosGalleryInterface.js +1 -0
  169. package/dist/esm/interfaces/pincodeInterface.d.ts +15 -0
  170. package/dist/esm/interfaces/pincodeInterface.js +1 -0
  171. package/dist/esm/interfaces/plannerInterface.d.ts +32 -0
  172. package/dist/esm/interfaces/plannerInterface.js +1 -0
  173. package/dist/esm/interfaces/productInterface.d.ts +10 -0
  174. package/dist/esm/interfaces/productInterface.js +1 -0
  175. package/dist/esm/interfaces/projectAssessmentOptionInterface.d.ts +8 -0
  176. package/dist/esm/interfaces/projectAssessmentOptionInterface.js +1 -0
  177. package/dist/esm/interfaces/replaceTeacherInterface.d.ts +22 -0
  178. package/dist/esm/interfaces/replaceTeacherInterface.js +1 -0
  179. package/dist/esm/interfaces/roleInterface.d.ts +26 -0
  180. package/dist/esm/interfaces/roleInterface.js +1 -0
  181. package/dist/esm/interfaces/rulesRegulationInterface.d.ts +10 -0
  182. package/dist/esm/interfaces/rulesRegulationInterface.js +1 -0
  183. package/dist/esm/interfaces/schoolFeeCollectionInterface.d.ts +13 -0
  184. package/dist/esm/interfaces/schoolFeeCollectionInterface.js +1 -0
  185. package/dist/esm/interfaces/schoolFeeInterface.d.ts +21 -0
  186. package/dist/esm/interfaces/schoolFeeInterface.js +1 -0
  187. package/dist/esm/interfaces/schoolOfferInterface.d.ts +20 -0
  188. package/dist/esm/interfaces/schoolOfferInterface.js +1 -0
  189. package/dist/esm/interfaces/sendNotificationInerface.d.ts +20 -0
  190. package/dist/esm/interfaces/sendNotificationInerface.js +1 -0
  191. package/dist/esm/interfaces/slotInterface.d.ts +8 -0
  192. package/dist/esm/interfaces/slotInterface.js +1 -0
  193. package/dist/esm/interfaces/stateInterface.d.ts +11 -0
  194. package/dist/esm/interfaces/stateInterface.js +1 -0
  195. package/dist/esm/interfaces/subCategoriesInterface.d.ts +9 -0
  196. package/dist/esm/interfaces/subCategoriesInterface.js +1 -0
  197. package/dist/esm/interfaces/subjectHasFeeInterface.d.ts +7 -0
  198. package/dist/esm/interfaces/subjectHasFeeInterface.js +1 -0
  199. package/dist/esm/interfaces/subjectHasPayFeeHistoryInterface.d.ts +9 -0
  200. package/dist/esm/interfaces/subjectHasPayFeeHistoryInterface.js +1 -0
  201. package/dist/esm/interfaces/subjectIndexInterface.d.ts +48 -0
  202. package/dist/esm/interfaces/subjectIndexInterface.js +1 -0
  203. package/dist/esm/interfaces/subscriptionPlanInterface.d.ts +29 -0
  204. package/dist/esm/interfaces/subscriptionPlanInterface.js +1 -0
  205. package/dist/esm/interfaces/syllabusInterface.d.ts +9 -0
  206. package/dist/esm/interfaces/syllabusInterface.js +1 -0
  207. package/dist/esm/interfaces/taskManagementInterface.d.ts +24 -0
  208. package/dist/esm/interfaces/taskManagementInterface.js +1 -0
  209. package/dist/esm/interfaces/testimonialInterface.d.ts +12 -0
  210. package/dist/esm/interfaces/testimonialInterface.js +1 -0
  211. package/dist/esm/interfaces/toDoInterface.d.ts +11 -0
  212. package/dist/esm/interfaces/toDoInterface.js +1 -0
  213. package/dist/esm/interfaces/tokenInterface.d.ts +27 -0
  214. package/dist/esm/interfaces/tokenInterface.js +1 -0
  215. package/dist/esm/interfaces/tripInterface.d.ts +13 -0
  216. package/dist/esm/interfaces/tripInterface.js +1 -0
  217. package/dist/esm/interfaces/typeManagementInterface.d.ts +11 -0
  218. package/dist/esm/interfaces/typeManagementInterface.js +1 -0
  219. package/dist/esm/interfaces/uniqueNumberCounterInterface.d.ts +11 -0
  220. package/dist/esm/interfaces/uniqueNumberCounterInterface.js +1 -0
  221. package/dist/esm/interfaces/userBookAssessmentInterface.d.ts +10 -0
  222. package/dist/esm/interfaces/userBookAssessmentInterface.js +1 -0
  223. package/dist/esm/interfaces/userDetailsInterface.d.ts +122 -0
  224. package/dist/esm/interfaces/userDetailsInterface.js +1 -0
  225. package/dist/esm/interfaces/userFeeTypeByAccountInterface.d.ts +19 -0
  226. package/dist/esm/interfaces/userFeeTypeByAccountInterface.js +1 -0
  227. package/dist/esm/interfaces/userFeeTypeInterface.d.ts +16 -0
  228. package/dist/esm/interfaces/userFeeTypeInterface.js +1 -0
  229. package/dist/esm/interfaces/userHasAnnouncementInterface.d.ts +9 -0
  230. package/dist/esm/interfaces/userHasAnnouncementInterface.js +1 -0
  231. package/dist/esm/interfaces/userHasBatchInterface.d.ts +7 -0
  232. package/dist/esm/interfaces/userHasBatchInterface.js +1 -0
  233. package/dist/esm/interfaces/userHasCourseInterface.d.ts +13 -0
  234. package/dist/esm/interfaces/userHasCourseInterface.js +1 -0
  235. package/dist/esm/interfaces/userHasDeviceInterface.d.ts +10 -0
  236. package/dist/esm/interfaces/userHasDeviceInterface.js +1 -0
  237. package/dist/esm/interfaces/userHasFeeTermsInterface.d.ts +37 -0
  238. package/dist/esm/interfaces/userHasFeeTermsInterface.js +1 -0
  239. package/dist/esm/interfaces/userHasFileInterface.d.ts +11 -0
  240. package/dist/esm/interfaces/userHasFileInterface.js +1 -0
  241. package/dist/esm/interfaces/userHasHomeWorkInterface.d.ts +11 -0
  242. package/dist/esm/interfaces/userHasHomeWorkInterface.js +1 -0
  243. package/dist/esm/interfaces/userHasInventoryHistoryInterface.d.ts +20 -0
  244. package/dist/esm/interfaces/userHasInventoryHistoryInterface.js +1 -0
  245. package/dist/esm/interfaces/userHasInventoryInterface.d.ts +21 -0
  246. package/dist/esm/interfaces/userHasInventoryInterface.js +1 -0
  247. package/dist/esm/interfaces/userHasLeaveHistoryInterface.d.ts +16 -0
  248. package/dist/esm/interfaces/userHasLeaveHistoryInterface.js +1 -0
  249. package/dist/esm/interfaces/userHasLeaveInterface.d.ts +12 -0
  250. package/dist/esm/interfaces/userHasLeaveInterface.js +1 -0
  251. package/dist/esm/interfaces/userHasOfferInterface.d.ts +10 -0
  252. package/dist/esm/interfaces/userHasOfferInterface.js +1 -0
  253. package/dist/esm/interfaces/userHasParentInterface.d.ts +14 -0
  254. package/dist/esm/interfaces/userHasParentInterface.js +1 -0
  255. package/dist/esm/interfaces/userHasRoleInterface.d.ts +13 -0
  256. package/dist/esm/interfaces/userHasRoleInterface.js +1 -0
  257. package/dist/esm/interfaces/userHasRollNumberInterface.d.ts +8 -0
  258. package/dist/esm/interfaces/userHasRollNumberInterface.js +1 -0
  259. package/dist/esm/interfaces/userHasStorageInterface.d.ts +11 -0
  260. package/dist/esm/interfaces/userHasStorageInterface.js +1 -0
  261. package/dist/esm/interfaces/userHasSubjectFeeInterface.d.ts +9 -0
  262. package/dist/esm/interfaces/userHasSubjectFeeInterface.js +1 -0
  263. package/dist/esm/interfaces/userInstituteMetaInterface.d.ts +39 -0
  264. package/dist/esm/interfaces/userInstituteMetaInterface.js +1 -0
  265. package/dist/esm/interfaces/userInterface.d.ts +44 -0
  266. package/dist/esm/interfaces/userInterface.js +1 -0
  267. package/dist/esm/interfaces/userLeaveRequestInterface.d.ts +15 -0
  268. package/dist/esm/interfaces/userLeaveRequestInterface.js +1 -0
  269. package/dist/esm/interfaces/userMetaInterface.d.ts +13 -0
  270. package/dist/esm/interfaces/userMetaInterface.js +1 -0
  271. package/dist/esm/interfaces/userPayoutDetailsInterface.d.ts +14 -0
  272. package/dist/esm/interfaces/userPayoutDetailsInterface.js +1 -0
  273. package/dist/esm/interfaces/userPayoutHistoryInterface.d.ts +18 -0
  274. package/dist/esm/interfaces/userPayoutHistoryInterface.js +1 -0
  275. package/dist/esm/interfaces/userPayoutInterface.d.ts +12 -0
  276. package/dist/esm/interfaces/userPayoutInterface.js +1 -0
  277. package/dist/esm/interfaces/userProjectAssessmentOptionInterface.d.ts +10 -0
  278. package/dist/esm/interfaces/userProjectAssessmentOptionInterface.js +1 -0
  279. package/dist/esm/interfaces/userRequiredStepsInterface.d.ts +9 -0
  280. package/dist/esm/interfaces/userRequiredStepsInterface.js +1 -0
  281. package/dist/esm/interfaces/userSchoolMetaInterface.d.ts +115 -0
  282. package/dist/esm/interfaces/userSchoolMetaInterface.js +1 -0
  283. package/dist/esm/interfaces/vehicleInterface.d.ts +11 -0
  284. package/dist/esm/interfaces/vehicleInterface.js +1 -0
  285. package/dist/esm/interfaces/vendorManagementInterface.d.ts +19 -0
  286. package/dist/esm/interfaces/vendorManagementInterface.js +1 -0
  287. package/dist/esm/interfaces/videoAnalystInterface.d.ts +37 -0
  288. package/dist/esm/interfaces/videoAnalystInterface.js +1 -0
  289. package/dist/esm/interfaces/walletHistoryInterface.d.ts +15 -0
  290. package/dist/esm/interfaces/walletHistoryInterface.js +1 -0
  291. package/dist/esm/interfaces/walletInterface.d.ts +10 -0
  292. package/dist/esm/interfaces/walletInterface.js +1 -0
  293. package/dist/esm/interfaces/walletTransactionInterface.d.ts +34 -0
  294. package/dist/esm/interfaces/walletTransactionInterface.js +1 -0
  295. package/dist/esm/interfaces/workingDayInterface.d.ts +11 -0
  296. package/dist/esm/interfaces/workingDayInterface.js +1 -0
  297. package/dist/esm/interfaces/workingShiftInterface.d.ts +12 -0
  298. package/dist/esm/interfaces/workingShiftInterface.js +1 -0
  299. package/dist/esm/models/mongodb/approvalRequestModel.d.ts +4 -0
  300. package/dist/esm/models/mongodb/approvalRequestModel.js +61 -0
  301. package/dist/esm/models/mongodb/attendanceModel.d.ts +4 -0
  302. package/dist/esm/models/mongodb/attendanceModel.js +139 -0
  303. package/dist/esm/models/mongodb/blogModel.d.ts +4 -0
  304. package/dist/esm/models/mongodb/blogModel.js +56 -0
  305. package/dist/esm/models/mongodb/careerModel.d.ts +4 -0
  306. package/dist/esm/models/mongodb/careerModel.js +48 -0
  307. package/dist/esm/models/mongodb/certificatesHistoryModel.d.ts +4 -0
  308. package/dist/esm/models/mongodb/certificatesHistoryModel.js +23 -0
  309. package/dist/esm/models/mongodb/certificatesManagementModel.d.ts +4 -0
  310. package/dist/esm/models/mongodb/certificatesManagementModel.js +32 -0
  311. package/dist/esm/models/mongodb/columnModel.d.ts +4 -0
  312. package/dist/esm/models/mongodb/columnModel.js +40 -0
  313. package/dist/esm/models/mongodb/dailyBookModel.d.ts +4 -0
  314. package/dist/esm/models/mongodb/dailyBookModel.js +53 -0
  315. package/dist/esm/models/mongodb/dashboardManagementModel.d.ts +4 -0
  316. package/dist/esm/models/mongodb/dashboardManagementModel.js +76 -0
  317. package/dist/esm/models/mongodb/eventModel.d.ts +4 -0
  318. package/dist/esm/models/mongodb/eventModel.js +126 -0
  319. package/dist/esm/models/mongodb/examGroupModel.d.ts +4 -0
  320. package/dist/esm/models/mongodb/examGroupModel.js +249 -0
  321. package/dist/esm/models/mongodb/examHasAnswerSheetModel.d.ts +4 -0
  322. package/dist/esm/models/mongodb/examHasAnswerSheetModel.js +94 -0
  323. package/dist/esm/models/mongodb/examModel.d.ts +4 -0
  324. package/dist/esm/models/mongodb/examModel.js +226 -0
  325. package/dist/esm/models/mongodb/feeReminderTypeModel.d.ts +4 -0
  326. package/dist/esm/models/mongodb/feeReminderTypeModel.js +38 -0
  327. package/dist/esm/models/mongodb/feedBackModel.d.ts +4 -0
  328. package/dist/esm/models/mongodb/feedBackModel.js +76 -0
  329. package/dist/esm/models/mongodb/generateIdCardModel.d.ts +4 -0
  330. package/dist/esm/models/mongodb/generateIdCardModel.js +20 -0
  331. package/dist/esm/models/mongodb/holidayModel.d.ts +4 -0
  332. package/dist/esm/models/mongodb/holidayModel.js +132 -0
  333. package/dist/esm/models/mongodb/index.d.ts +2 -0
  334. package/dist/esm/models/mongodb/index.js +19 -0
  335. package/dist/esm/models/mongodb/informationSupportModel.d.ts +4 -0
  336. package/dist/esm/models/mongodb/informationSupportModel.js +61 -0
  337. package/dist/esm/models/mongodb/inquiryModel.d.ts +4 -0
  338. package/dist/esm/models/mongodb/inquiryModel.js +147 -0
  339. package/dist/esm/models/mongodb/invoiceModel.d.ts +4 -0
  340. package/dist/esm/models/mongodb/invoiceModel.js +99 -0
  341. package/dist/esm/models/mongodb/jobApplyModel.d.ts +4 -0
  342. package/dist/esm/models/mongodb/jobApplyModel.js +116 -0
  343. package/dist/esm/models/mongodb/photosGalleryModel.d.ts +4 -0
  344. package/dist/esm/models/mongodb/photosGalleryModel.js +51 -0
  345. package/dist/esm/models/mongodb/plannerModel.d.ts +4 -0
  346. package/dist/esm/models/mongodb/plannerModel.js +139 -0
  347. package/dist/esm/models/mongodb/plugin/addDefaultAttributesPlugin.d.ts +2 -0
  348. package/dist/esm/models/mongodb/plugin/addDefaultAttributesPlugin.js +60 -0
  349. package/dist/esm/models/mongodb/plugin/transformIdInQueryPlugin.d.ts +3 -0
  350. package/dist/esm/models/mongodb/plugin/transformIdInQueryPlugin.js +59 -0
  351. package/dist/esm/models/mongodb/plugin/transformIdInResponsePlugin.d.ts +3 -0
  352. package/dist/esm/models/mongodb/plugin/transformIdInResponsePlugin.js +58 -0
  353. package/dist/esm/models/mongodb/replaceTeacherModel.d.ts +4 -0
  354. package/dist/esm/models/mongodb/replaceTeacherModel.js +75 -0
  355. package/dist/esm/models/mongodb/schoolFeeModel.d.ts +4 -0
  356. package/dist/esm/models/mongodb/schoolFeeModel.js +140 -0
  357. package/dist/esm/models/mongodb/subjectIndexModel.d.ts +4 -0
  358. package/dist/esm/models/mongodb/subjectIndexModel.js +586 -0
  359. package/dist/esm/models/mongodb/subscriptionPlanModel.d.ts +4 -0
  360. package/dist/esm/models/mongodb/subscriptionPlanModel.js +97 -0
  361. package/dist/esm/models/mongodb/taskManagementModel.d.ts +4 -0
  362. package/dist/esm/models/mongodb/taskManagementModel.js +128 -0
  363. package/dist/esm/models/mongodb/uniqueNumberCounterModel.d.ts +4 -0
  364. package/dist/esm/models/mongodb/uniqueNumberCounterModel.js +48 -0
  365. package/dist/esm/models/mongodb/userDetailsModel.d.ts +5 -0
  366. package/dist/esm/models/mongodb/userDetailsModel.js +473 -0
  367. package/dist/esm/models/mongodb/userDoc.d.ts +10 -0
  368. package/dist/esm/models/mongodb/userDoc.js +6 -0
  369. package/dist/esm/models/mongodb/userInstituteMetaModel.d.ts +4 -0
  370. package/dist/esm/models/mongodb/userInstituteMetaModel.js +177 -0
  371. package/dist/esm/models/mongodb/userSchoolMetaModel.d.ts +7 -0
  372. package/dist/esm/models/mongodb/userSchoolMetaModel.js +547 -0
  373. package/dist/esm/models/mongodb/videoAnalystModel.d.ts +4 -0
  374. package/dist/esm/models/mongodb/videoAnalystModel.js +45 -0
  375. package/dist/esm/models/mongodb/walletTransactionModel.d.ts +4 -0
  376. package/dist/esm/models/mongodb/walletTransactionModel.js +128 -0
  377. package/dist/esm/models/psql/SubCategoriesModel.d.ts +17 -0
  378. package/dist/esm/models/psql/SubCategoriesModel.js +97 -0
  379. package/dist/esm/models/psql/academicCalendarModel.d.ts +18 -0
  380. package/dist/esm/models/psql/academicCalendarModel.js +89 -0
  381. package/dist/esm/models/psql/accountHasReceiptDetailsModel.d.ts +26 -0
  382. package/dist/esm/models/psql/accountHasReceiptDetailsModel.js +140 -0
  383. package/dist/esm/models/psql/announcementModel.d.ts +28 -0
  384. package/dist/esm/models/psql/announcementModel.js +193 -0
  385. package/dist/esm/models/psql/areaModel.d.ts +9 -0
  386. package/dist/esm/models/psql/areaModel.js +35 -0
  387. package/dist/esm/models/psql/bankAccountDetailsModel.d.ts +23 -0
  388. package/dist/esm/models/psql/bankAccountDetailsModel.js +95 -0
  389. package/dist/esm/models/psql/bannerModel.d.ts +24 -0
  390. package/dist/esm/models/psql/bannerModel.js +111 -0
  391. package/dist/esm/models/psql/batchModel.d.ts +27 -0
  392. package/dist/esm/models/psql/batchModel.js +217 -0
  393. package/dist/esm/models/psql/batchSubjectBookAssessmentModel.d.ts +18 -0
  394. package/dist/esm/models/psql/batchSubjectBookAssessmentModel.js +151 -0
  395. package/dist/esm/models/psql/batchSubjectProjectAssessmentModel.d.ts +21 -0
  396. package/dist/esm/models/psql/batchSubjectProjectAssessmentModel.js +149 -0
  397. package/dist/esm/models/psql/bookAssessmentDateModel.d.ts +17 -0
  398. package/dist/esm/models/psql/bookAssessmentDateModel.js +82 -0
  399. package/dist/esm/models/psql/categoriesModel.d.ts +17 -0
  400. package/dist/esm/models/psql/categoriesModel.js +75 -0
  401. package/dist/esm/models/psql/cityModel.d.ts +13 -0
  402. package/dist/esm/models/psql/cityModel.js +67 -0
  403. package/dist/esm/models/psql/classRoomModel.d.ts +22 -0
  404. package/dist/esm/models/psql/classRoomModel.js +121 -0
  405. package/dist/esm/models/psql/cloudStorageModel.d.ts +24 -0
  406. package/dist/esm/models/psql/cloudStorageModel.js +92 -0
  407. package/dist/esm/models/psql/coinPurchaseOfferModel.d.ts +25 -0
  408. package/dist/esm/models/psql/coinPurchaseOfferModel.js +98 -0
  409. package/dist/esm/models/psql/contactFeedBackModel.d.ts +22 -0
  410. package/dist/esm/models/psql/contactFeedBackModel.js +115 -0
  411. package/dist/esm/models/psql/countryModel.d.ts +14 -0
  412. package/dist/esm/models/psql/countryModel.js +41 -0
  413. package/dist/esm/models/psql/courseHasVisitorsModel.d.ts +16 -0
  414. package/dist/esm/models/psql/courseHasVisitorsModel.js +66 -0
  415. package/dist/esm/models/psql/courseModel.d.ts +27 -0
  416. package/dist/esm/models/psql/courseModel.js +131 -0
  417. package/dist/esm/models/psql/driverModel.d.ts +30 -0
  418. package/dist/esm/models/psql/driverModel.js +158 -0
  419. package/dist/esm/models/psql/entityGroupModel.d.ts +21 -0
  420. package/dist/esm/models/psql/entityGroupModel.js +95 -0
  421. package/dist/esm/models/psql/facilityModel.d.ts +18 -0
  422. package/dist/esm/models/psql/facilityModel.js +115 -0
  423. package/dist/esm/models/psql/featureActionModel.d.ts +22 -0
  424. package/dist/esm/models/psql/featureActionModel.js +90 -0
  425. package/dist/esm/models/psql/feeHistoryDetailsModel.d.ts +26 -0
  426. package/dist/esm/models/psql/feeHistoryDetailsModel.js +181 -0
  427. package/dist/esm/models/psql/feeHistoryModel.d.ts +30 -0
  428. package/dist/esm/models/psql/feeHistoryModel.js +328 -0
  429. package/dist/esm/models/psql/feeReminderModel.d.ts +22 -0
  430. package/dist/esm/models/psql/feeReminderModel.js +234 -0
  431. package/dist/esm/models/psql/feeReminderSettingModel.d.ts +19 -0
  432. package/dist/esm/models/psql/feeReminderSettingModel.js +85 -0
  433. package/dist/esm/models/psql/feeTypeHasTermsModel.d.ts +21 -0
  434. package/dist/esm/models/psql/feeTypeHasTermsModel.js +97 -0
  435. package/dist/esm/models/psql/feeTypeModel.d.ts +22 -0
  436. package/dist/esm/models/psql/feeTypeModel.js +120 -0
  437. package/dist/esm/models/psql/feesCollectionModel.d.ts +28 -0
  438. package/dist/esm/models/psql/feesCollectionModel.js +226 -0
  439. package/dist/esm/models/psql/fileStorageModel.d.ts +6 -0
  440. package/dist/esm/models/psql/fileStorageModel.js +81 -0
  441. package/dist/esm/models/psql/floorManagementModel.d.ts +18 -0
  442. package/dist/esm/models/psql/floorManagementModel.js +85 -0
  443. package/dist/esm/models/psql/greetingsModel.d.ts +21 -0
  444. package/dist/esm/models/psql/greetingsModel.js +113 -0
  445. package/dist/esm/models/psql/homeWorkModel.d.ts +22 -0
  446. package/dist/esm/models/psql/homeWorkModel.js +123 -0
  447. package/dist/esm/models/psql/index.d.ts +4 -0
  448. package/dist/esm/models/psql/index.js +80 -0
  449. package/dist/esm/models/psql/instituteEntityModel.d.ts +25 -0
  450. package/dist/esm/models/psql/instituteEntityModel.js +126 -0
  451. package/dist/esm/models/psql/instituteEntityTypeModel.d.ts +19 -0
  452. package/dist/esm/models/psql/instituteEntityTypeModel.js +69 -0
  453. package/dist/esm/models/psql/instituteModel.d.ts +44 -0
  454. package/dist/esm/models/psql/instituteModel.js +235 -0
  455. package/dist/esm/models/psql/instituteSubscriptionPlanModel.d.ts +33 -0
  456. package/dist/esm/models/psql/instituteSubscriptionPlanModel.js +181 -0
  457. package/dist/esm/models/psql/inventoryHistoryModel.d.ts +26 -0
  458. package/dist/esm/models/psql/inventoryHistoryModel.js +154 -0
  459. package/dist/esm/models/psql/inventoryModel.d.ts +24 -0
  460. package/dist/esm/models/psql/inventoryModel.js +127 -0
  461. package/dist/esm/models/psql/lectureHistoryModel.d.ts +32 -0
  462. package/dist/esm/models/psql/lectureHistoryModel.js +218 -0
  463. package/dist/esm/models/psql/lectureModel.d.ts +34 -0
  464. package/dist/esm/models/psql/lectureModel.js +471 -0
  465. package/dist/esm/models/psql/masterLeaveModel.d.ts +22 -0
  466. package/dist/esm/models/psql/masterLeaveModel.js +126 -0
  467. package/dist/esm/models/psql/moduleFeatureModel.d.ts +21 -0
  468. package/dist/esm/models/psql/moduleFeatureModel.js +93 -0
  469. package/dist/esm/models/psql/moduleModel.d.ts +20 -0
  470. package/dist/esm/models/psql/moduleModel.js +96 -0
  471. package/dist/esm/models/psql/offerModel.d.ts +27 -0
  472. package/dist/esm/models/psql/offerModel.js +139 -0
  473. package/dist/esm/models/psql/paymentTermsModel.d.ts +17 -0
  474. package/dist/esm/models/psql/paymentTermsModel.js +109 -0
  475. package/dist/esm/models/psql/pdcChequeModel.d.ts +25 -0
  476. package/dist/esm/models/psql/pdcChequeModel.js +133 -0
  477. package/dist/esm/models/psql/pdcHistoryModel.d.ts +26 -0
  478. package/dist/esm/models/psql/pdcHistoryModel.js +147 -0
  479. package/dist/esm/models/psql/pincodeModel.d.ts +23 -0
  480. package/dist/esm/models/psql/pincodeModel.js +74 -0
  481. package/dist/esm/models/psql/productModel.d.ts +19 -0
  482. package/dist/esm/models/psql/productModel.js +119 -0
  483. package/dist/esm/models/psql/projectAssessmentOptionModel.d.ts +17 -0
  484. package/dist/esm/models/psql/projectAssessmentOptionModel.js +85 -0
  485. package/dist/esm/models/psql/roleModel.d.ts +22 -0
  486. package/dist/esm/models/psql/roleModel.js +92 -0
  487. package/dist/esm/models/psql/rulesRegulationModel.d.ts +19 -0
  488. package/dist/esm/models/psql/rulesRegulationModel.js +67 -0
  489. package/dist/esm/models/psql/schoolFeeCollectionModel.d.ts +22 -0
  490. package/dist/esm/models/psql/schoolFeeCollectionModel.js +151 -0
  491. package/dist/esm/models/psql/schoolOfferModel.d.ts +29 -0
  492. package/dist/esm/models/psql/schoolOfferModel.js +162 -0
  493. package/dist/esm/models/psql/sendNotificationModel.d.ts +22 -0
  494. package/dist/esm/models/psql/sendNotificationModel.js +112 -0
  495. package/dist/esm/models/psql/slotModel.d.ts +17 -0
  496. package/dist/esm/models/psql/slotModel.js +94 -0
  497. package/dist/esm/models/psql/stateModel.d.ts +13 -0
  498. package/dist/esm/models/psql/stateModel.js +53 -0
  499. package/dist/esm/models/psql/subjectHasFeeModel.d.ts +16 -0
  500. package/dist/esm/models/psql/subjectHasFeeModel.js +73 -0
  501. package/dist/esm/models/psql/subjectHasPayFeeHistoryModel.d.ts +18 -0
  502. package/dist/esm/models/psql/subjectHasPayFeeHistoryModel.js +104 -0
  503. package/dist/esm/models/psql/syllabusModel.d.ts +18 -0
  504. package/dist/esm/models/psql/syllabusModel.js +120 -0
  505. package/dist/esm/models/psql/testimonialModel.d.ts +21 -0
  506. package/dist/esm/models/psql/testimonialModel.js +155 -0
  507. package/dist/esm/models/psql/toDoModel.d.ts +20 -0
  508. package/dist/esm/models/psql/toDoModel.js +111 -0
  509. package/dist/esm/models/psql/tokenModel.d.ts +15 -0
  510. package/dist/esm/models/psql/tokenModel.js +35 -0
  511. package/dist/esm/models/psql/tripModel.d.ts +22 -0
  512. package/dist/esm/models/psql/tripModel.js +109 -0
  513. package/dist/esm/models/psql/typeManagementModel.d.ts +20 -0
  514. package/dist/esm/models/psql/typeManagementModel.js +117 -0
  515. package/dist/esm/models/psql/userBookAssessmentModel.d.ts +19 -0
  516. package/dist/esm/models/psql/userBookAssessmentModel.js +136 -0
  517. package/dist/esm/models/psql/userFeeTypeByAccountModel.d.ts +22 -0
  518. package/dist/esm/models/psql/userFeeTypeByAccountModel.js +179 -0
  519. package/dist/esm/models/psql/userFeeTypeModel.d.ts +25 -0
  520. package/dist/esm/models/psql/userFeeTypeModel.js +167 -0
  521. package/dist/esm/models/psql/userHasAnnouncementModel.d.ts +18 -0
  522. package/dist/esm/models/psql/userHasAnnouncementModel.js +103 -0
  523. package/dist/esm/models/psql/userHasBatchModel.d.ts +16 -0
  524. package/dist/esm/models/psql/userHasBatchModel.js +87 -0
  525. package/dist/esm/models/psql/userHasCourseModel.d.ts +22 -0
  526. package/dist/esm/models/psql/userHasCourseModel.js +111 -0
  527. package/dist/esm/models/psql/userHasDeviceModel.d.ts +19 -0
  528. package/dist/esm/models/psql/userHasDeviceModel.js +86 -0
  529. package/dist/esm/models/psql/userHasFeeTermsModel.d.ts +27 -0
  530. package/dist/esm/models/psql/userHasFeeTermsModel.js +197 -0
  531. package/dist/esm/models/psql/userHasFileModel.d.ts +16 -0
  532. package/dist/esm/models/psql/userHasFileModel.js +102 -0
  533. package/dist/esm/models/psql/userHasHomeWorkModel.d.ts +19 -0
  534. package/dist/esm/models/psql/userHasHomeWorkModel.js +114 -0
  535. package/dist/esm/models/psql/userHasInventoryHistoryModel.d.ts +29 -0
  536. package/dist/esm/models/psql/userHasInventoryHistoryModel.js +141 -0
  537. package/dist/esm/models/psql/userHasInventoryModel.d.ts +30 -0
  538. package/dist/esm/models/psql/userHasInventoryModel.js +143 -0
  539. package/dist/esm/models/psql/userHasLeaveHistoryModel.d.ts +25 -0
  540. package/dist/esm/models/psql/userHasLeaveHistoryModel.js +101 -0
  541. package/dist/esm/models/psql/userHasLeaveModel.d.ts +21 -0
  542. package/dist/esm/models/psql/userHasLeaveModel.js +116 -0
  543. package/dist/esm/models/psql/userHasOfferModel.d.ts +19 -0
  544. package/dist/esm/models/psql/userHasOfferModel.js +149 -0
  545. package/dist/esm/models/psql/userHasParentModel.d.ts +23 -0
  546. package/dist/esm/models/psql/userHasParentModel.js +130 -0
  547. package/dist/esm/models/psql/userHasRoleModel.d.ts +18 -0
  548. package/dist/esm/models/psql/userHasRoleModel.js +92 -0
  549. package/dist/esm/models/psql/userHasRollNumberModel.d.ts +17 -0
  550. package/dist/esm/models/psql/userHasRollNumberModel.js +85 -0
  551. package/dist/esm/models/psql/userHasStorageModel.d.ts +20 -0
  552. package/dist/esm/models/psql/userHasStorageModel.js +81 -0
  553. package/dist/esm/models/psql/userHasSubjectFeeModel.d.ts +18 -0
  554. package/dist/esm/models/psql/userHasSubjectFeeModel.js +81 -0
  555. package/dist/esm/models/psql/userLeaveRequestModel.d.ts +24 -0
  556. package/dist/esm/models/psql/userLeaveRequestModel.js +99 -0
  557. package/dist/esm/models/psql/userModel.d.ts +55 -0
  558. package/dist/esm/models/psql/userModel.js +387 -0
  559. package/dist/esm/models/psql/userPayoutDetailsModel.d.ts +21 -0
  560. package/dist/esm/models/psql/userPayoutDetailsModel.js +157 -0
  561. package/dist/esm/models/psql/userPayoutHistoryModel.d.ts +27 -0
  562. package/dist/esm/models/psql/userPayoutHistoryModel.js +150 -0
  563. package/dist/esm/models/psql/userPayoutModel.d.ts +20 -0
  564. package/dist/esm/models/psql/userPayoutModel.js +296 -0
  565. package/dist/esm/models/psql/userProjectAssessmentOptionModel.d.ts +19 -0
  566. package/dist/esm/models/psql/userProjectAssessmentOptionModel.js +121 -0
  567. package/dist/esm/models/psql/userRequiredStepsModel.d.ts +17 -0
  568. package/dist/esm/models/psql/userRequiredStepsModel.js +73 -0
  569. package/dist/esm/models/psql/vehicleModel.d.ts +20 -0
  570. package/dist/esm/models/psql/vehicleModel.js +105 -0
  571. package/dist/esm/models/psql/vendorManagementModel.d.ts +28 -0
  572. package/dist/esm/models/psql/vendorManagementModel.js +174 -0
  573. package/dist/esm/models/psql/walletHistoryModel.d.ts +24 -0
  574. package/dist/esm/models/psql/walletHistoryModel.js +97 -0
  575. package/dist/esm/models/psql/walletModel.d.ts +19 -0
  576. package/dist/esm/models/psql/walletModel.js +88 -0
  577. package/dist/esm/models/psql/workingDayModel.d.ts +20 -0
  578. package/dist/esm/models/psql/workingDayModel.js +74 -0
  579. package/dist/esm/models/psql/workingShiftModel.d.ts +21 -0
  580. package/dist/esm/models/psql/workingShiftModel.js +87 -0
  581. package/dist/esm/services/Concrete/mongooseCommonService.d.ts +36 -0
  582. package/dist/esm/services/Concrete/mongooseCommonService.js +103 -0
  583. package/dist/esm/services/Concrete/sequelizeCommonService.d.ts +17 -0
  584. package/dist/esm/services/Concrete/sequelizeCommonService.js +121 -0
  585. package/dist/esm/services/Contracts/IMongooseCommonService.d.ts +36 -0
  586. package/dist/esm/services/Contracts/IMongooseCommonService.js +1 -0
  587. package/dist/esm/services/Contracts/ISequelizeCommonService.d.ts +21 -0
  588. package/dist/esm/services/Contracts/ISequelizeCommonService.js +1 -0
  589. package/dist/esm/types/academicCalendarType.d.ts +6 -0
  590. package/dist/esm/types/academicCalendarType.js +1 -0
  591. package/dist/esm/types/accountHasReceiptDetailsType.d.ts +7 -0
  592. package/dist/esm/types/accountHasReceiptDetailsType.js +1 -0
  593. package/dist/esm/types/announcementType.d.ts +6 -0
  594. package/dist/esm/types/announcementType.js +1 -0
  595. package/dist/esm/types/approveRequestType.d.ts +2 -0
  596. package/dist/esm/types/approveRequestType.js +1 -0
  597. package/dist/esm/types/areaType.d.ts +3 -0
  598. package/dist/esm/types/areaType.js +1 -0
  599. package/dist/esm/types/attendanceType.d.ts +2 -0
  600. package/dist/esm/types/attendanceType.js +1 -0
  601. package/dist/esm/types/bankAccountDetailsType.d.ts +3 -0
  602. package/dist/esm/types/bankAccountDetailsType.js +1 -0
  603. package/dist/esm/types/bannerType.d.ts +7 -0
  604. package/dist/esm/types/bannerType.js +1 -0
  605. package/dist/esm/types/batchSubjectBookAssessmentType.d.ts +7 -0
  606. package/dist/esm/types/batchSubjectBookAssessmentType.js +1 -0
  607. package/dist/esm/types/batchSubjectProjectAssessmentType.d.ts +7 -0
  608. package/dist/esm/types/batchSubjectProjectAssessmentType.js +1 -0
  609. package/dist/esm/types/batchType.d.ts +7 -0
  610. package/dist/esm/types/batchType.js +1 -0
  611. package/dist/esm/types/blogType.d.ts +2 -0
  612. package/dist/esm/types/blogType.js +1 -0
  613. package/dist/esm/types/bookAssessmentDateType.d.ts +7 -0
  614. package/dist/esm/types/bookAssessmentDateType.js +1 -0
  615. package/dist/esm/types/careerType.d.ts +2 -0
  616. package/dist/esm/types/careerType.js +1 -0
  617. package/dist/esm/types/categoriesType.d.ts +3 -0
  618. package/dist/esm/types/categoriesType.js +1 -0
  619. package/dist/esm/types/certificatesHistoryType.d.ts +2 -0
  620. package/dist/esm/types/certificatesHistoryType.js +1 -0
  621. package/dist/esm/types/certificatesManagementType.d.ts +2 -0
  622. package/dist/esm/types/certificatesManagementType.js +1 -0
  623. package/dist/esm/types/classRoomType.d.ts +3 -0
  624. package/dist/esm/types/classRoomType.js +1 -0
  625. package/dist/esm/types/cloudStorageType.d.ts +3 -0
  626. package/dist/esm/types/cloudStorageType.js +1 -0
  627. package/dist/esm/types/coinPurchaseOfferType.d.ts +3 -0
  628. package/dist/esm/types/coinPurchaseOfferType.js +1 -0
  629. package/dist/esm/types/commonType.d.ts +9 -0
  630. package/dist/esm/types/commonType.js +1 -0
  631. package/dist/esm/types/contactFeedBackType.d.ts +3 -0
  632. package/dist/esm/types/contactFeedBackType.js +1 -0
  633. package/dist/esm/types/courseHasVisitorsType.d.ts +2 -0
  634. package/dist/esm/types/courseHasVisitorsType.js +1 -0
  635. package/dist/esm/types/courseType.d.ts +2 -0
  636. package/dist/esm/types/courseType.js +1 -0
  637. package/dist/esm/types/dailyBookType.d.ts +2 -0
  638. package/dist/esm/types/dailyBookType.js +1 -0
  639. package/dist/esm/types/dashboardManagementType.d.ts +2 -0
  640. package/dist/esm/types/dashboardManagementType.js +1 -0
  641. package/dist/esm/types/driverType.d.ts +6 -0
  642. package/dist/esm/types/driverType.js +1 -0
  643. package/dist/esm/types/entityGroupType.d.ts +3 -0
  644. package/dist/esm/types/entityGroupType.js +1 -0
  645. package/dist/esm/types/eventType.d.ts +2 -0
  646. package/dist/esm/types/eventType.js +1 -0
  647. package/dist/esm/types/examGroupType.d.ts +6 -0
  648. package/dist/esm/types/examGroupType.js +1 -0
  649. package/dist/esm/types/examHasAnswerSheetType.d.ts +2 -0
  650. package/dist/esm/types/examHasAnswerSheetType.js +1 -0
  651. package/dist/esm/types/examType.d.ts +6 -0
  652. package/dist/esm/types/examType.js +1 -0
  653. package/dist/esm/types/facilityType.d.ts +3 -0
  654. package/dist/esm/types/facilityType.js +1 -0
  655. package/dist/esm/types/featureActionType.d.ts +3 -0
  656. package/dist/esm/types/featureActionType.js +1 -0
  657. package/dist/esm/types/feeHistoryDetailsType.d.ts +6 -0
  658. package/dist/esm/types/feeHistoryDetailsType.js +1 -0
  659. package/dist/esm/types/feeHistoryType.d.ts +18 -0
  660. package/dist/esm/types/feeHistoryType.js +1 -0
  661. package/dist/esm/types/feeReminderSettingType.d.ts +3 -0
  662. package/dist/esm/types/feeReminderSettingType.js +1 -0
  663. package/dist/esm/types/feeReminderType.d.ts +3 -0
  664. package/dist/esm/types/feeReminderType.js +1 -0
  665. package/dist/esm/types/feeReminderTypeType.d.ts +2 -0
  666. package/dist/esm/types/feeReminderTypeType.js +1 -0
  667. package/dist/esm/types/feeTypeHasTermsType.d.ts +3 -0
  668. package/dist/esm/types/feeTypeHasTermsType.js +1 -0
  669. package/dist/esm/types/feeTypeType.d.ts +3 -0
  670. package/dist/esm/types/feeTypeType.js +1 -0
  671. package/dist/esm/types/feedBackType.d.ts +2 -0
  672. package/dist/esm/types/feedBackType.js +1 -0
  673. package/dist/esm/types/feesCollectionType.d.ts +3 -0
  674. package/dist/esm/types/feesCollectionType.js +1 -0
  675. package/dist/esm/types/fileStorageType.d.ts +3 -0
  676. package/dist/esm/types/fileStorageType.js +1 -0
  677. package/dist/esm/types/floormanagementType.d.ts +3 -0
  678. package/dist/esm/types/floormanagementType.js +1 -0
  679. package/dist/esm/types/generateIdCardType.d.ts +2 -0
  680. package/dist/esm/types/generateIdCardType.js +1 -0
  681. package/dist/esm/types/greetingsType.d.ts +6 -0
  682. package/dist/esm/types/greetingsType.js +1 -0
  683. package/dist/esm/types/holidayType.d.ts +2 -0
  684. package/dist/esm/types/holidayType.js +2 -0
  685. package/dist/esm/types/homeWorkType.d.ts +3 -0
  686. package/dist/esm/types/homeWorkType.js +1 -0
  687. package/dist/esm/types/informationSupportType.d.ts +2 -0
  688. package/dist/esm/types/informationSupportType.js +1 -0
  689. package/dist/esm/types/inquiryType.d.ts +2 -0
  690. package/dist/esm/types/inquiryType.js +1 -0
  691. package/dist/esm/types/instituteEntityType.d.ts +6 -0
  692. package/dist/esm/types/instituteEntityType.js +1 -0
  693. package/dist/esm/types/instituteEntityTypeType.d.ts +3 -0
  694. package/dist/esm/types/instituteEntityTypeType.js +1 -0
  695. package/dist/esm/types/instituteSubscriptionPlanType.d.ts +3 -0
  696. package/dist/esm/types/instituteSubscriptionPlanType.js +1 -0
  697. package/dist/esm/types/instituteType.d.ts +3 -0
  698. package/dist/esm/types/instituteType.js +1 -0
  699. package/dist/esm/types/inventoryHistoryType.d.ts +3 -0
  700. package/dist/esm/types/inventoryHistoryType.js +1 -0
  701. package/dist/esm/types/inventoryType.d.ts +3 -0
  702. package/dist/esm/types/inventoryType.js +1 -0
  703. package/dist/esm/types/jobApply.d.ts +2 -0
  704. package/dist/esm/types/jobApply.js +1 -0
  705. package/dist/esm/types/lectureHistoryType.d.ts +6 -0
  706. package/dist/esm/types/lectureHistoryType.js +1 -0
  707. package/dist/esm/types/lectureType.d.ts +6 -0
  708. package/dist/esm/types/lectureType.js +1 -0
  709. package/dist/esm/types/masterLeaveType.d.ts +3 -0
  710. package/dist/esm/types/masterLeaveType.js +1 -0
  711. package/dist/esm/types/moduleFeatureType.d.ts +3 -0
  712. package/dist/esm/types/moduleFeatureType.js +1 -0
  713. package/dist/esm/types/moduleType.d.ts +3 -0
  714. package/dist/esm/types/moduleType.js +1 -0
  715. package/dist/esm/types/offerType.d.ts +3 -0
  716. package/dist/esm/types/offerType.js +1 -0
  717. package/dist/esm/types/paymentTermsType.d.ts +3 -0
  718. package/dist/esm/types/paymentTermsType.js +2 -0
  719. package/dist/esm/types/pdcChequeType.d.ts +6 -0
  720. package/dist/esm/types/pdcChequeType.js +1 -0
  721. package/dist/esm/types/pdcHistoryType.d.ts +2 -0
  722. package/dist/esm/types/pdcHistoryType.js +1 -0
  723. package/dist/esm/types/photosGalleryType.d.ts +2 -0
  724. package/dist/esm/types/photosGalleryType.js +1 -0
  725. package/dist/esm/types/plannerType.d.ts +7 -0
  726. package/dist/esm/types/plannerType.js +1 -0
  727. package/dist/esm/types/productType.d.ts +3 -0
  728. package/dist/esm/types/productType.js +1 -0
  729. package/dist/esm/types/projectAssessmentOptionType.d.ts +7 -0
  730. package/dist/esm/types/projectAssessmentOptionType.js +1 -0
  731. package/dist/esm/types/roleType.d.ts +11 -0
  732. package/dist/esm/types/roleType.js +1 -0
  733. package/dist/esm/types/rulesRegulationType.d.ts +3 -0
  734. package/dist/esm/types/rulesRegulationType.js +1 -0
  735. package/dist/esm/types/schoolFeeCollectionType.d.ts +3 -0
  736. package/dist/esm/types/schoolFeeCollectionType.js +1 -0
  737. package/dist/esm/types/schoolFeeType.d.ts +3 -0
  738. package/dist/esm/types/schoolFeeType.js +1 -0
  739. package/dist/esm/types/schoolOfferType.d.ts +3 -0
  740. package/dist/esm/types/schoolOfferType.js +1 -0
  741. package/dist/esm/types/sendNotificationType.d.ts +3 -0
  742. package/dist/esm/types/sendNotificationType.js +1 -0
  743. package/dist/esm/types/slotType.d.ts +2 -0
  744. package/dist/esm/types/slotType.js +1 -0
  745. package/dist/esm/types/subCategoryType.d.ts +3 -0
  746. package/dist/esm/types/subCategoryType.js +1 -0
  747. package/dist/esm/types/subjectHasFeeType.d.ts +3 -0
  748. package/dist/esm/types/subjectHasFeeType.js +1 -0
  749. package/dist/esm/types/subjectHasPayFeeHistoryType.d.ts +3 -0
  750. package/dist/esm/types/subjectHasPayFeeHistoryType.js +1 -0
  751. package/dist/esm/types/subjectIndexType.d.ts +7 -0
  752. package/dist/esm/types/subjectIndexType.js +1 -0
  753. package/dist/esm/types/subscriptionPlanType.d.ts +2 -0
  754. package/dist/esm/types/subscriptionPlanType.js +1 -0
  755. package/dist/esm/types/syllabusType.d.ts +7 -0
  756. package/dist/esm/types/syllabusType.js +1 -0
  757. package/dist/esm/types/taskManagementType.d.ts +2 -0
  758. package/dist/esm/types/taskManagementType.js +1 -0
  759. package/dist/esm/types/testimonialType.d.ts +13 -0
  760. package/dist/esm/types/testimonialType.js +1 -0
  761. package/dist/esm/types/toDoType.d.ts +6 -0
  762. package/dist/esm/types/toDoType.js +1 -0
  763. package/dist/esm/types/tripType.d.ts +2 -0
  764. package/dist/esm/types/tripType.js +1 -0
  765. package/dist/esm/types/typeManagementType.d.ts +3 -0
  766. package/dist/esm/types/typeManagementType.js +1 -0
  767. package/dist/esm/types/uniqueNumberCounterType.d.ts +2 -0
  768. package/dist/esm/types/uniqueNumberCounterType.js +1 -0
  769. package/dist/esm/types/userBookAssessmentType.d.ts +7 -0
  770. package/dist/esm/types/userBookAssessmentType.js +1 -0
  771. package/dist/esm/types/userDetailsType.d.ts +2 -0
  772. package/dist/esm/types/userDetailsType.js +1 -0
  773. package/dist/esm/types/userFeeTypeByAccountType.d.ts +3 -0
  774. package/dist/esm/types/userFeeTypeByAccountType.js +1 -0
  775. package/dist/esm/types/userFeeTypeType.d.ts +6 -0
  776. package/dist/esm/types/userFeeTypeType.js +1 -0
  777. package/dist/esm/types/userHasAnnouncementType.d.ts +3 -0
  778. package/dist/esm/types/userHasAnnouncementType.js +1 -0
  779. package/dist/esm/types/userHasBatchType.d.ts +9 -0
  780. package/dist/esm/types/userHasBatchType.js +1 -0
  781. package/dist/esm/types/userHasCourseType.d.ts +3 -0
  782. package/dist/esm/types/userHasCourseType.js +1 -0
  783. package/dist/esm/types/userHasDeviceType.d.ts +3 -0
  784. package/dist/esm/types/userHasDeviceType.js +1 -0
  785. package/dist/esm/types/userHasFeeTermsType.d.ts +3 -0
  786. package/dist/esm/types/userHasFeeTermsType.js +1 -0
  787. package/dist/esm/types/userHasFileType.d.ts +3 -0
  788. package/dist/esm/types/userHasFileType.js +1 -0
  789. package/dist/esm/types/userHasHomeWorkType.d.ts +3 -0
  790. package/dist/esm/types/userHasHomeWorkType.js +1 -0
  791. package/dist/esm/types/userHasInventoryHistoryType.d.ts +3 -0
  792. package/dist/esm/types/userHasInventoryHistoryType.js +1 -0
  793. package/dist/esm/types/userHasInventoryType.d.ts +3 -0
  794. package/dist/esm/types/userHasInventoryType.js +1 -0
  795. package/dist/esm/types/userHasLeaveHistoryType.d.ts +3 -0
  796. package/dist/esm/types/userHasLeaveHistoryType.js +1 -0
  797. package/dist/esm/types/userHasLeaveType.d.ts +3 -0
  798. package/dist/esm/types/userHasLeaveType.js +1 -0
  799. package/dist/esm/types/userHasOffer.d.ts +3 -0
  800. package/dist/esm/types/userHasOffer.js +1 -0
  801. package/dist/esm/types/userHasParentType.d.ts +10 -0
  802. package/dist/esm/types/userHasParentType.js +1 -0
  803. package/dist/esm/types/userHasRoleType.d.ts +3 -0
  804. package/dist/esm/types/userHasRoleType.js +1 -0
  805. package/dist/esm/types/userHasRollNumberType.d.ts +3 -0
  806. package/dist/esm/types/userHasRollNumberType.js +1 -0
  807. package/dist/esm/types/userHasStorageType.d.ts +3 -0
  808. package/dist/esm/types/userHasStorageType.js +1 -0
  809. package/dist/esm/types/userHasSubjectFeeType.d.ts +3 -0
  810. package/dist/esm/types/userHasSubjectFeeType.js +1 -0
  811. package/dist/esm/types/userInstituteMetaType.d.ts +2 -0
  812. package/dist/esm/types/userInstituteMetaType.js +1 -0
  813. package/dist/esm/types/userLeaveRequestType.d.ts +3 -0
  814. package/dist/esm/types/userLeaveRequestType.js +1 -0
  815. package/dist/esm/types/userMetaType.d.ts +13 -0
  816. package/dist/esm/types/userMetaType.js +1 -0
  817. package/dist/esm/types/userPayoutDetailsType.d.ts +3 -0
  818. package/dist/esm/types/userPayoutDetailsType.js +1 -0
  819. package/dist/esm/types/userPayoutHistoryType.d.ts +3 -0
  820. package/dist/esm/types/userPayoutHistoryType.js +1 -0
  821. package/dist/esm/types/userPayoutType.d.ts +7 -0
  822. package/dist/esm/types/userPayoutType.js +1 -0
  823. package/dist/esm/types/userProjectAssessmentOptionType.d.ts +7 -0
  824. package/dist/esm/types/userProjectAssessmentOptionType.js +1 -0
  825. package/dist/esm/types/userRequiredStepsType.d.ts +3 -0
  826. package/dist/esm/types/userRequiredStepsType.js +1 -0
  827. package/dist/esm/types/userSchoolMetaType.d.ts +3 -0
  828. package/dist/esm/types/userSchoolMetaType.js +1 -0
  829. package/dist/esm/types/userType.d.ts +12 -0
  830. package/dist/esm/types/userType.js +1 -0
  831. package/dist/esm/types/vehicleType.d.ts +3 -0
  832. package/dist/esm/types/vehicleType.js +1 -0
  833. package/dist/esm/types/vendorType.d.ts +3 -0
  834. package/dist/esm/types/vendorType.js +1 -0
  835. package/dist/esm/types/videoAnalystType.d.ts +2 -0
  836. package/dist/esm/types/videoAnalystType.js +1 -0
  837. package/dist/esm/types/walletHistoryType.d.ts +3 -0
  838. package/dist/esm/types/walletHistoryType.js +1 -0
  839. package/dist/esm/types/walletTransactionType.d.ts +3 -0
  840. package/dist/esm/types/walletTransactionType.js +1 -0
  841. package/dist/esm/types/walletType.d.ts +3 -0
  842. package/dist/esm/types/walletType.js +1 -0
  843. package/dist/esm/types/workingDayType.d.ts +3 -0
  844. package/dist/esm/types/workingDayType.js +1 -0
  845. package/dist/esm/types/workingShiftType.d.ts +3 -0
  846. package/dist/esm/types/workingShiftType.js +1 -0
  847. package/package.json +15 -5
  848. package/dist/configs/postgresConfig.d.ts +0 -8
  849. package/dist/configs/postgresConfig.js +0 -32
  850. package/dist/constants/app.js +0 -1105
  851. package/dist/db/psql/index.d.ts +0 -16
  852. package/dist/db/psql/index.js +0 -105
  853. package/dist/db/psql/migrations/20241225101052-add-deleted-by-and-deleted-at-fields.d.ts +0 -2
  854. package/dist/db/psql/migrations/20241225101052-add-deleted-by-and-deleted-at-fields.js +0 -71
  855. package/dist/db/psql/migrations/20250106070945-add-user-fields-and-deleted-user-fields.d.ts +0 -3
  856. package/dist/db/psql/migrations/20250106070945-add-user-fields-and-deleted-user-fields.js +0 -33
  857. package/dist/db/psql/migrations/20250106080059-add-fields-and-deleted-fields.d.ts +0 -3
  858. package/dist/db/psql/migrations/20250106080059-add-fields-and-deleted-fields.js +0 -94
  859. package/dist/db/psql/migrations/20250108092439-update-batch-model-fields.d.ts +0 -2
  860. package/dist/db/psql/migrations/20250108092439-update-batch-model-fields.js +0 -38
  861. package/dist/db/psql/migrations/20250210102846-add-profileImage-coverImage-to-users.d.ts +0 -3
  862. package/dist/db/psql/migrations/20250210102846-add-profileImage-coverImage-to-users.js +0 -102
  863. package/dist/db/psql/migrations/20250211071743-add-action-user-has-histroy.d.ts +0 -3
  864. package/dist/db/psql/migrations/20250211071743-add-action-user-has-histroy.js +0 -76
  865. package/dist/db/psql/migrations/20250213140815-add-assignQuantity-user-has-histroy.d.ts +0 -3
  866. package/dist/db/psql/migrations/20250213140815-add-assignQuantity-user-has-histroy.js +0 -80
  867. package/dist/db/psql/migrations/20250214072626-add-middlename-user.d.ts +0 -3
  868. package/dist/db/psql/migrations/20250214072626-add-middlename-user.js +0 -80
  869. package/dist/db/psql/migrations/20250224085333-add-apptype-in-user.d.ts +0 -3
  870. package/dist/db/psql/migrations/20250224085333-add-apptype-in-user.js +0 -78
  871. package/dist/db/psql/migrations/20250226053006-add-brouchure-in-institute.d.ts +0 -3
  872. package/dist/db/psql/migrations/20250226053006-add-brouchure-in-institute.js +0 -80
  873. package/dist/db/psql/migrations/20250227123530-add-defult-in-fee-reminder.d.ts +0 -3
  874. package/dist/db/psql/migrations/20250227123530-add-defult-in-fee-reminder.js +0 -78
  875. package/dist/db/psql/migrations/20250304052831-add-institued-in-school-data-clm.d.ts +0 -3
  876. package/dist/db/psql/migrations/20250304052831-add-institued-in-school-data-clm.js +0 -112
  877. package/dist/db/psql/migrations/20250306053557-add-shifyId-in-batch.d.ts +0 -3
  878. package/dist/db/psql/migrations/20250306053557-add-shifyId-in-batch.js +0 -86
  879. package/dist/db/psql/migrations/20250311044606-add-institued-in-school-data-clm-subtype.d.ts +0 -2
  880. package/dist/db/psql/migrations/20250311044606-add-institued-in-school-data-clm-subtype.js +0 -43
  881. package/dist/db/psql/migrations/20250402090653-add-user-area.d.ts +0 -3
  882. package/dist/db/psql/migrations/20250402090653-add-user-area.js +0 -94
  883. package/dist/db/psql/migrations/20250407094125-update-type-in-typeManagement.d.ts +0 -2
  884. package/dist/db/psql/migrations/20250407094125-update-type-in-typeManagement.js +0 -64
  885. package/dist/db/psql/migrations/20250409105229-add-user-type-in-role.d.ts +0 -3
  886. package/dist/db/psql/migrations/20250409105229-add-user-type-in-role.js +0 -55
  887. package/dist/db/psql/migrations/20250417121316-make-institute-id-nullable-in-type-management.d.ts +0 -2
  888. package/dist/db/psql/migrations/20250417121316-make-institute-id-nullable-in-type-management.js +0 -16
  889. package/dist/db/psql/migrations/20250419071236-fee_histroy_add_school_clm.d.ts +0 -3
  890. package/dist/db/psql/migrations/20250419071236-fee_histroy_add_school_clm.js +0 -134
  891. package/dist/db/psql/migrations/20250419085334-fee_histroy_add_school_clm.d.ts +0 -3
  892. package/dist/db/psql/migrations/20250419085334-fee_histroy_add_school_clm.js +0 -86
  893. package/dist/db/psql/migrations/20250421085618-add-entityIds-field-in-announcements.d.ts +0 -3
  894. package/dist/db/psql/migrations/20250421085618-add-entityIds-field-in-announcements.js +0 -81
  895. package/dist/db/psql/migrations/20250422114032-add-account.d.ts +0 -3
  896. package/dist/db/psql/migrations/20250422114032-add-account.js +0 -86
  897. package/dist/db/psql/migrations/20250423051841-add-master-leave-clm.d.ts +0 -3
  898. package/dist/db/psql/migrations/20250423051841-add-master-leave-clm.js +0 -71
  899. package/dist/db/psql/migrations/20250423064522-update-calender-enum.d.ts +0 -2
  900. package/dist/db/psql/migrations/20250423064522-update-calender-enum.js +0 -34
  901. package/dist/db/psql/migrations/20250423093827-update-institued-district.d.ts +0 -3
  902. package/dist/db/psql/migrations/20250423093827-update-institued-district.js +0 -78
  903. package/dist/db/psql/migrations/20250424044755-update-fee-history-feeTyps-clm.d.ts +0 -3
  904. package/dist/db/psql/migrations/20250424044755-update-fee-history-feeTyps-clm.js +0 -34
  905. package/dist/db/psql/migrations/20250424053841-update-fee-history-key.d.ts +0 -2
  906. package/dist/db/psql/migrations/20250424053841-update-fee-history-key.js +0 -35
  907. package/dist/db/psql/migrations/20250426070309-update-banner-clm-userType.d.ts +0 -3
  908. package/dist/db/psql/migrations/20250426070309-update-banner-clm-userType.js +0 -55
  909. package/dist/db/psql/migrations/20250505035157-update-fee-collection-clm-add.d.ts +0 -3
  910. package/dist/db/psql/migrations/20250505035157-update-fee-collection-clm-add.js +0 -86
  911. package/dist/db/psql/migrations/20250505082924-update-banner-clm.d.ts +0 -3
  912. package/dist/db/psql/migrations/20250505082924-update-banner-clm.js +0 -18
  913. package/dist/db/psql/migrations/20250505094616-about-as-clm-in-institued.d.ts +0 -2
  914. package/dist/db/psql/migrations/20250505094616-about-as-clm-in-institued.js +0 -16
  915. package/dist/db/psql/migrations/20250506070110-add-dayOfWeek-clm-in-working-model.d.ts +0 -3
  916. package/dist/db/psql/migrations/20250506070110-add-dayOfWeek-clm-in-working-model.js +0 -80
  917. package/dist/db/psql/migrations/20250509055920-add-feecollection-isleft-clm.d.ts +0 -3
  918. package/dist/db/psql/migrations/20250509055920-add-feecollection-isleft-clm.js +0 -80
  919. package/dist/db/psql/migrations/20250513061037-add-techer-clm-batch.d.ts +0 -3
  920. package/dist/db/psql/migrations/20250513061037-add-techer-clm-batch.js +0 -88
  921. package/dist/db/psql/migrations/20250514101801-add-slotId-workingShif.d.ts +0 -3
  922. package/dist/db/psql/migrations/20250514101801-add-slotId-workingShif.js +0 -86
  923. package/dist/db/psql/migrations/20250516062917-add-globalId-clm-user-model.d.ts +0 -3
  924. package/dist/db/psql/migrations/20250516062917-add-globalId-clm-user-model.js +0 -80
  925. package/dist/db/psql/migrations/20250516063542-add-globalId-clm-institute-model.d.ts +0 -3
  926. package/dist/db/psql/migrations/20250516063542-add-globalId-clm-institute-model.js +0 -80
  927. package/dist/db/psql/migrations/20250520061231-add-institued_mobile_person_data.d.ts +0 -3
  928. package/dist/db/psql/migrations/20250520061231-add-institued_mobile_person_data.js +0 -116
  929. package/dist/db/psql/migrations/20250522044729-add-institued_update_add_2.d.ts +0 -2
  930. package/dist/db/psql/migrations/20250522044729-add-institued_update_add_2.js +0 -16
  931. package/dist/db/psql/migrations/20250526035543-add-totalQuantity_add_remainingQuantiy_clm_userHasInventoryHistory.d.ts +0 -3
  932. package/dist/db/psql/migrations/20250526035543-add-totalQuantity_add_remainingQuantiy_clm_userHasInventoryHistory.js +0 -98
  933. package/dist/db/psql/migrations/20250526093322-add-appType_clm_in_module.d.ts +0 -3
  934. package/dist/db/psql/migrations/20250526093322-add-appType_clm_in_module.js +0 -80
  935. package/dist/db/psql/migrations/20250526094030-add-appType_clm_in_action.d.ts +0 -3
  936. package/dist/db/psql/migrations/20250526094030-add-appType_clm_in_action.js +0 -80
  937. package/dist/db/psql/migrations/20250526094233-add-appType_clm_in_module_features.d.ts +0 -3
  938. package/dist/db/psql/migrations/20250526094233-add-appType_clm_in_module_features.js +0 -80
  939. package/dist/db/psql/migrations/20250527065001-add-app-type-in-role-model.d.ts +0 -3
  940. package/dist/db/psql/migrations/20250527065001-add-app-type-in-role-model.js +0 -57
  941. package/dist/db/psql/migrations/20250528045906-add-module-type-to-notifications.d.ts +0 -2
  942. package/dist/db/psql/migrations/20250528045906-add-module-type-to-notifications.js +0 -13
  943. package/dist/db/psql/migrations/20250602090331-add-or-update-user-model-medicalHistory.d.ts +0 -3
  944. package/dist/db/psql/migrations/20250602090331-add-or-update-user-model-medicalHistory.js +0 -107
  945. package/dist/db/psql/migrations/20250602100550-add-planner-sync-status-to-institute.d.ts +0 -3
  946. package/dist/db/psql/migrations/20250602100550-add-planner-sync-status-to-institute.js +0 -113
  947. package/dist/db/psql/migrations/20250603054900-add-clm-for-defult-data-add-or-not-in-ins-model.d.ts +0 -3
  948. package/dist/db/psql/migrations/20250603054900-add-clm-for-defult-data-add-or-not-in-ins-model.js +0 -80
  949. package/dist/db/psql/migrations/20250604103905-add-is-institute-default-field-in-role.d.ts +0 -3
  950. package/dist/db/psql/migrations/20250604103905-add-is-institute-default-field-in-role.js +0 -57
  951. package/dist/db/psql/migrations/20250604121051-update-mobile-number-opstion.d.ts +0 -3
  952. package/dist/db/psql/migrations/20250604121051-update-mobile-number-opstion.js +0 -15
  953. package/dist/db/psql/migrations/20250617064159-update-type-management-jun-17.d.ts +0 -2
  954. package/dist/db/psql/migrations/20250617064159-update-type-management-jun-17.js +0 -11
  955. package/dist/db/psql/migrations/20250627065013-is-institute-default-added-type-managemente.d.ts +0 -2
  956. package/dist/db/psql/migrations/20250627065013-is-institute-default-added-type-managemente.js +0 -12
  957. package/dist/db/psql/migrations/20250701095321-add-clm-institute-pdfId.d.ts +0 -3
  958. package/dist/db/psql/migrations/20250701095321-add-clm-institute-pdfId.js +0 -57
  959. package/dist/db/psql/migrations/20250704102117-add-clm-isDefult-in-typeManagemet.d.ts +0 -2
  960. package/dist/db/psql/migrations/20250704102117-add-clm-isDefult-in-typeManagemet.js +0 -12
  961. package/dist/db/psql/migrations/20250715103324-add-academic-calendar-id-to-batches.d.ts +0 -2
  962. package/dist/db/psql/migrations/20250715103324-add-academic-calendar-id-to-batches.js +0 -13
  963. package/dist/db/psql/migrations/20250715121047-remove-batch-id-from-academic-calendars.d.ts +0 -2
  964. package/dist/db/psql/migrations/20250715121047-remove-batch-id-from-academic-calendars.js +0 -12
  965. package/dist/db/psql/migrations/20250716131731-rename-user-id-to-primary-user-id.d.ts +0 -2
  966. package/dist/db/psql/migrations/20250716131731-rename-user-id-to-primary-user-id.js +0 -9
  967. package/dist/db/psql/migrations/20250717092933-add-floor-id-to-class-rooms.d.ts +0 -3
  968. package/dist/db/psql/migrations/20250717092933-add-floor-id-to-class-rooms.js +0 -86
  969. package/dist/db/psql/migrations/20250718121251-add-clm-classroom-typeid.d.ts +0 -3
  970. package/dist/db/psql/migrations/20250718121251-add-clm-classroom-typeid.js +0 -86
  971. package/dist/db/psql/migrations/20250721065317-add-instituteId-fileSize-to-fileStorage.d.ts +0 -2
  972. package/dist/db/psql/migrations/20250721065317-add-instituteId-fileSize-to-fileStorage.js +0 -22
  973. package/dist/db/psql/migrations/20250721100004-add-shift-slot-id-to-lectures.d.ts +0 -2
  974. package/dist/db/psql/migrations/20250721100004-add-shift-slot-id-to-lectures.js +0 -17
  975. package/dist/db/psql/migrations/20250721105455-add-clm-classroom-add-classroomnumber.d.ts +0 -3
  976. package/dist/db/psql/migrations/20250721105455-add-clm-classroom-add-classroomnumber.js +0 -78
  977. package/dist/db/psql/migrations/20250722071836-add-title-to-floor-management.d.ts +0 -2
  978. package/dist/db/psql/migrations/20250722071836-add-title-to-floor-management.js +0 -14
  979. package/dist/db/psql/migrations/20250723150111-add-clm-batch-slotId.d.ts +0 -3
  980. package/dist/db/psql/migrations/20250723150111-add-clm-batch-slotId.js +0 -86
  981. package/dist/db/psql/migrations/20250724062458-update_classRoom_number_clm_to_string.d.ts +0 -2
  982. package/dist/db/psql/migrations/20250724062458-update_classRoom_number_clm_to_string.js +0 -15
  983. package/dist/db/psql/migrations/20250725132424-add-unique-index-on-instituteId-name-type.d.ts +0 -2
  984. package/dist/db/psql/migrations/20250725132424-add-unique-index-on-instituteId-name-type.js +0 -24
  985. package/dist/db/psql/migrations/20250730104844-update-unique-key-assessment-type.d.ts +0 -2
  986. package/dist/db/psql/migrations/20250730104844-update-unique-key-assessment-type.js +0 -30
  987. package/dist/db/psql/migrations/20250804090437-update_ins_in_pdf_id_string_to_uuid.d.ts +0 -3
  988. package/dist/db/psql/migrations/20250804090437-update_ins_in_pdf_id_string_to_uuid.js +0 -62
  989. package/dist/db/psql/migrations/20250805062440-remove_unique_key_into_batch_subject_project_assessments.d.ts +0 -2
  990. package/dist/db/psql/migrations/20250805062440-remove_unique_key_into_batch_subject_project_assessments.js +0 -21
  991. package/dist/db/psql/migrations/20250805115805-add-descriptions-to-lectures.d.ts +0 -2
  992. package/dist/db/psql/migrations/20250805115805-add-descriptions-to-lectures.js +0 -12
  993. package/dist/db/psql/migrations/20250808100700-add_clm_contectFeed_in_ins_givenId.d.ts +0 -3
  994. package/dist/db/psql/migrations/20250808100700-add_clm_contectFeed_in_ins_givenId.js +0 -86
  995. package/dist/db/psql/migrations/20250808101515-add-sequence-to-institute_entities.d.ts +0 -2
  996. package/dist/db/psql/migrations/20250808101515-add-sequence-to-institute_entities.js +0 -12
  997. package/dist/db/psql/migrations/20250812080521-add-title-and-descriptions-to-batch-subject-project-assessments.d.ts +0 -2
  998. package/dist/db/psql/migrations/20250812080521-add-title-and-descriptions-to-batch-subject-project-assessments.js +0 -17
  999. package/dist/db/psql/migrations/20250820092836-add-sequence-number-to-institute-entities.d.ts +0 -2
  1000. package/dist/db/psql/migrations/20250820092836-add-sequence-number-to-institute-entities.js +0 -15
  1001. package/dist/db/psql/migrations/20250829103203-remove-syllabus-composit-index.d.ts +0 -2
  1002. package/dist/db/psql/migrations/20250829103203-remove-syllabus-composit-index.js +0 -15
  1003. package/dist/db/psql/migrations/20250905132024-add-uuid-to-users.d.ts +0 -2
  1004. package/dist/db/psql/migrations/20250905132024-add-uuid-to-users.js +0 -12
  1005. package/dist/db/psql/migrations/20250908054025-userHasOffer_model_update.d.ts +0 -3
  1006. package/dist/db/psql/migrations/20250908054025-userHasOffer_model_update.js +0 -112
  1007. package/dist/db/psql/migrations/20250908054754-offer_in_add_offertype_clm.d.ts +0 -3
  1008. package/dist/db/psql/migrations/20250908054754-offer_in_add_offertype_clm.js +0 -70
  1009. package/dist/db/psql/migrations/20250909061117-add-instituteId-isDefault-to-entityGroup.d.ts +0 -2
  1010. package/dist/db/psql/migrations/20250909061117-add-instituteId-isDefault-to-entityGroup.js +0 -17
  1011. package/dist/db/psql/migrations/20250911060106-change-wallet-history-columns-to-float.d.ts +0 -2
  1012. package/dist/db/psql/migrations/20250911060106-change-wallet-history-columns-to-float.js +0 -39
  1013. package/dist/db/psql/migrations/20250911060245-change-coin-to-float-in-wallets.d.ts +0 -2
  1014. package/dist/db/psql/migrations/20250911060245-change-coin-to-float-in-wallets.js +0 -17
  1015. package/dist/db/psql/migrations/20250917135646-change-storageInBytes-to-float.d.ts +0 -2
  1016. package/dist/db/psql/migrations/20250917135646-change-storageInBytes-to-float.js +0 -17
  1017. package/dist/db/psql/seeders/20240809100759-add-countries-states-cities.d.ts +0 -2
  1018. package/dist/db/psql/seeders/20240809100759-add-countries-states-cities.js +0 -64
  1019. package/dist/db/psql/seeders/20250101122757-add-default-permissions-modules.d.ts +0 -2
  1020. package/dist/db/psql/seeders/20250101122757-add-default-permissions-modules.js +0 -159
  1021. package/dist/db/psql/seeders/Data/AcademicCalendarModule.d.ts +0 -13
  1022. package/dist/db/psql/seeders/Data/AcademicCalendarModule.js +0 -24
  1023. package/dist/db/psql/seeders/Data/AdministrativeStaffModule.d.ts +0 -10
  1024. package/dist/db/psql/seeders/Data/AdministrativeStaffModule.js +0 -38
  1025. package/dist/db/psql/seeders/Data/AnnouncementsModule.d.ts +0 -13
  1026. package/dist/db/psql/seeders/Data/AnnouncementsModule.js +0 -50
  1027. package/dist/db/psql/seeders/Data/AssetsModule.d.ts +0 -10
  1028. package/dist/db/psql/seeders/Data/AssetsModule.js +0 -37
  1029. package/dist/db/psql/seeders/Data/AttendanceModule.d.ts +0 -13
  1030. package/dist/db/psql/seeders/Data/AttendanceModule.js +0 -57
  1031. package/dist/db/psql/seeders/Data/BannerModule.d.ts +0 -13
  1032. package/dist/db/psql/seeders/Data/BannerModule.js +0 -24
  1033. package/dist/db/psql/seeders/Data/BatchModule.d.ts +0 -13
  1034. package/dist/db/psql/seeders/Data/BatchModule.js +0 -34
  1035. package/dist/db/psql/seeders/Data/BoardModule .d.ts +0 -10
  1036. package/dist/db/psql/seeders/Data/BoardModule .js +0 -18
  1037. package/dist/db/psql/seeders/Data/BookAssessmentsModule.d.ts +0 -13
  1038. package/dist/db/psql/seeders/Data/BookAssessmentsModule.js +0 -23
  1039. package/dist/db/psql/seeders/Data/CategoriesModule.d.ts +0 -10
  1040. package/dist/db/psql/seeders/Data/CategoriesModule.js +0 -18
  1041. package/dist/db/psql/seeders/Data/ClassroomModule.d.ts +0 -13
  1042. package/dist/db/psql/seeders/Data/ClassroomModule.js +0 -37
  1043. package/dist/db/psql/seeders/Data/DivisionModule.d.ts +0 -13
  1044. package/dist/db/psql/seeders/Data/DivisionModule.js +0 -25
  1045. package/dist/db/psql/seeders/Data/EventModule.d.ts +0 -13
  1046. package/dist/db/psql/seeders/Data/EventModule.js +0 -22
  1047. package/dist/db/psql/seeders/Data/ExamsAndResultsModule.d.ts +0 -13
  1048. package/dist/db/psql/seeders/Data/ExamsAndResultsModule.js +0 -113
  1049. package/dist/db/psql/seeders/Data/FacilityModule.d.ts +0 -13
  1050. package/dist/db/psql/seeders/Data/FacilityModule.js +0 -22
  1051. package/dist/db/psql/seeders/Data/FeeAndDiscountModule.d.ts +0 -13
  1052. package/dist/db/psql/seeders/Data/FeeAndDiscountModule.js +0 -239
  1053. package/dist/db/psql/seeders/Data/FeedBackModule.d.ts +0 -13
  1054. package/dist/db/psql/seeders/Data/FeedBackModule.js +0 -27
  1055. package/dist/db/psql/seeders/Data/FileModule.d.ts +0 -10
  1056. package/dist/db/psql/seeders/Data/FileModule.js +0 -38
  1057. package/dist/db/psql/seeders/Data/GenerateIdModule.d.ts +0 -13
  1058. package/dist/db/psql/seeders/Data/GenerateIdModule.js +0 -19
  1059. package/dist/db/psql/seeders/Data/HolidayModule.d.ts +0 -13
  1060. package/dist/db/psql/seeders/Data/HolidayModule.js +0 -22
  1061. package/dist/db/psql/seeders/Data/HomeworkModule.d.ts +0 -13
  1062. package/dist/db/psql/seeders/Data/HomeworkModule.js +0 -42
  1063. package/dist/db/psql/seeders/Data/IndexModule.d.ts +0 -13
  1064. package/dist/db/psql/seeders/Data/IndexModule.js +0 -97
  1065. package/dist/db/psql/seeders/Data/InquiryModule.d.ts +0 -13
  1066. package/dist/db/psql/seeders/Data/InquiryModule.js +0 -22
  1067. package/dist/db/psql/seeders/Data/InstituteModule.d.ts +0 -13
  1068. package/dist/db/psql/seeders/Data/InstituteModule.js +0 -63
  1069. package/dist/db/psql/seeders/Data/InventoryModule.d.ts +0 -13
  1070. package/dist/db/psql/seeders/Data/InventoryModule.js +0 -42
  1071. package/dist/db/psql/seeders/Data/JobApplyModule.d.ts +0 -13
  1072. package/dist/db/psql/seeders/Data/JobApplyModule.js +0 -22
  1073. package/dist/db/psql/seeders/Data/LectureModule.d.ts +0 -10
  1074. package/dist/db/psql/seeders/Data/LectureModule.js +0 -28
  1075. package/dist/db/psql/seeders/Data/ParentModule.d.ts +0 -10
  1076. package/dist/db/psql/seeders/Data/ParentModule.js +0 -38
  1077. package/dist/db/psql/seeders/Data/PayoutModule.d.ts +0 -10
  1078. package/dist/db/psql/seeders/Data/PayoutModule.js +0 -18
  1079. package/dist/db/psql/seeders/Data/PdcChequesModule.d.ts +0 -13
  1080. package/dist/db/psql/seeders/Data/PdcChequesModule.js +0 -27
  1081. package/dist/db/psql/seeders/Data/PhotosGalleryModule.d.ts +0 -13
  1082. package/dist/db/psql/seeders/Data/PhotosGalleryModule.js +0 -27
  1083. package/dist/db/psql/seeders/Data/PlannerModule.d.ts +0 -10
  1084. package/dist/db/psql/seeders/Data/PlannerModule.js +0 -18
  1085. package/dist/db/psql/seeders/Data/ProjectAssessmentsModule.d.ts +0 -13
  1086. package/dist/db/psql/seeders/Data/ProjectAssessmentsModule.js +0 -23
  1087. package/dist/db/psql/seeders/Data/ReplaceTeacherModule.d.ts +0 -13
  1088. package/dist/db/psql/seeders/Data/ReplaceTeacherModule.js +0 -22
  1089. package/dist/db/psql/seeders/Data/RoleModule.d.ts +0 -13
  1090. package/dist/db/psql/seeders/Data/RoleModule.js +0 -53
  1091. package/dist/db/psql/seeders/Data/RollNumberModule.d.ts +0 -13
  1092. package/dist/db/psql/seeders/Data/RollNumberModule.js +0 -22
  1093. package/dist/db/psql/seeders/Data/SchoolFeeModule.d.ts +0 -10
  1094. package/dist/db/psql/seeders/Data/SchoolFeeModule.js +0 -38
  1095. package/dist/db/psql/seeders/Data/SchoolModule.d.ts +0 -13
  1096. package/dist/db/psql/seeders/Data/SchoolModule.js +0 -63
  1097. package/dist/db/psql/seeders/Data/SchoolRegistration.d.ts +0 -13
  1098. package/dist/db/psql/seeders/Data/SchoolRegistration.js +0 -22
  1099. package/dist/db/psql/seeders/Data/SettingsModule.d.ts +0 -10
  1100. package/dist/db/psql/seeders/Data/SettingsModule.js +0 -28
  1101. package/dist/db/psql/seeders/Data/StaffTimingModule.d.ts +0 -13
  1102. package/dist/db/psql/seeders/Data/StaffTimingModule.js +0 -22
  1103. package/dist/db/psql/seeders/Data/StudentModule.d.ts +0 -10
  1104. package/dist/db/psql/seeders/Data/StudentModule.js +0 -18
  1105. package/dist/db/psql/seeders/Data/SubjectModule.d.ts +0 -10
  1106. package/dist/db/psql/seeders/Data/SubjectModule.js +0 -37
  1107. package/dist/db/psql/seeders/Data/SyllabusManagementModule.d.ts +0 -13
  1108. package/dist/db/psql/seeders/Data/SyllabusManagementModule.js +0 -25
  1109. package/dist/db/psql/seeders/Data/TeacherModule.d.ts +0 -10
  1110. package/dist/db/psql/seeders/Data/TeacherModule.js +0 -68
  1111. package/dist/db/psql/seeders/Data/TestimonialsModule.d.ts +0 -13
  1112. package/dist/db/psql/seeders/Data/TestimonialsModule.js +0 -27
  1113. package/dist/db/psql/seeders/Data/TimetableModule.d.ts +0 -13
  1114. package/dist/db/psql/seeders/Data/TimetableModule.js +0 -43
  1115. package/dist/db/psql/seeders/Data/To-doModule.d.ts +0 -13
  1116. package/dist/db/psql/seeders/Data/To-doModule.js +0 -27
  1117. package/dist/db/psql/seeders/Data/TypeManagementModule.d.ts +0 -13
  1118. package/dist/db/psql/seeders/Data/TypeManagementModule.js +0 -28
  1119. package/dist/db/psql/seeders/Data/UserModule.d.ts +0 -13
  1120. package/dist/db/psql/seeders/Data/UserModule.js +0 -266
  1121. package/dist/db/psql/seeders/Data/appType.d.ts +0 -4
  1122. package/dist/db/psql/seeders/Data/appType.js +0 -8
  1123. package/dist/helpers/utils.js +0 -682
  1124. package/dist/index.d.ts +0 -419
  1125. package/dist/index.js +0 -758
  1126. /package/dist/{configs → cjs/configs}/aws.d.ts +0 -0
  1127. /package/dist/{configs → cjs/configs}/aws.js +0 -0
  1128. /package/dist/{configs → cjs/configs}/env.d.ts +0 -0
  1129. /package/dist/{configs → cjs/configs}/env.js +0 -0
  1130. /package/dist/{constants → cjs/constants}/app.d.ts +0 -0
  1131. /package/dist/{constants → cjs/constants}/defaultModelAttributes.d.ts +0 -0
  1132. /package/dist/{constants → cjs/constants}/defaultModelAttributes.js +0 -0
  1133. /package/dist/{constants → cjs/constants}/errorMessages.d.ts +0 -0
  1134. /package/dist/{constants → cjs/constants}/errorMessages.js +0 -0
  1135. /package/dist/{constants → cjs/constants}/httpStatusCode.d.ts +0 -0
  1136. /package/dist/{constants → cjs/constants}/httpStatusCode.js +0 -0
  1137. /package/dist/{constants → cjs/constants}/successMessages.d.ts +0 -0
  1138. /package/dist/{constants → cjs/constants}/successMessages.js +0 -0
  1139. /package/dist/{helpers → cjs/helpers}/s3Uploader.d.ts +0 -0
  1140. /package/dist/{helpers → cjs/helpers}/s3Uploader.js +0 -0
  1141. /package/dist/{helpers → cjs/helpers}/utils.d.ts +0 -0
  1142. /package/dist/{interfaces → cjs/interfaces}/academicCalendarInterface.d.ts +0 -0
  1143. /package/dist/{interfaces → cjs/interfaces}/academicCalendarInterface.js +0 -0
  1144. /package/dist/{interfaces → cjs/interfaces}/accountHasReceiptDetailsInterface.d.ts +0 -0
  1145. /package/dist/{interfaces → cjs/interfaces}/accountHasReceiptDetailsInterface.js +0 -0
  1146. /package/dist/{interfaces → cjs/interfaces}/announcementInterface.d.ts +0 -0
  1147. /package/dist/{interfaces → cjs/interfaces}/announcementInterface.js +0 -0
  1148. /package/dist/{interfaces → cjs/interfaces}/approvalRequestInterface.d.ts +0 -0
  1149. /package/dist/{interfaces → cjs/interfaces}/approvalRequestInterface.js +0 -0
  1150. /package/dist/{interfaces → cjs/interfaces}/areaInterface.d.ts +0 -0
  1151. /package/dist/{interfaces → cjs/interfaces}/areaInterface.js +0 -0
  1152. /package/dist/{interfaces → cjs/interfaces}/attendanceInterface.d.ts +0 -0
  1153. /package/dist/{interfaces → cjs/interfaces}/attendanceInterface.js +0 -0
  1154. /package/dist/{interfaces → cjs/interfaces}/bankAccountDetailsInterface.d.ts +0 -0
  1155. /package/dist/{interfaces → cjs/interfaces}/bankAccountDetailsInterface.js +0 -0
  1156. /package/dist/{interfaces → cjs/interfaces}/bannerInterface.d.ts +0 -0
  1157. /package/dist/{interfaces → cjs/interfaces}/bannerInterface.js +0 -0
  1158. /package/dist/{interfaces → cjs/interfaces}/batchInterface.d.ts +0 -0
  1159. /package/dist/{interfaces → cjs/interfaces}/batchInterface.js +0 -0
  1160. /package/dist/{interfaces → cjs/interfaces}/batchSubjectBookAssessmentInterface.d.ts +0 -0
  1161. /package/dist/{interfaces → cjs/interfaces}/batchSubjectBookAssessmentInterface.js +0 -0
  1162. /package/dist/{interfaces → cjs/interfaces}/batchSubjectProjectAssessmentInterface.d.ts +0 -0
  1163. /package/dist/{interfaces → cjs/interfaces}/batchSubjectProjectAssessmentInterface.js +0 -0
  1164. /package/dist/{interfaces → cjs/interfaces}/blogInterface.d.ts +0 -0
  1165. /package/dist/{interfaces → cjs/interfaces}/blogInterface.js +0 -0
  1166. /package/dist/{interfaces → cjs/interfaces}/bookAssessmentDateInterface.d.ts +0 -0
  1167. /package/dist/{interfaces → cjs/interfaces}/bookAssessmentDateInterface.js +0 -0
  1168. /package/dist/{interfaces → cjs/interfaces}/careerInterface.d.ts +0 -0
  1169. /package/dist/{interfaces → cjs/interfaces}/careerInterface.js +0 -0
  1170. /package/dist/{interfaces → cjs/interfaces}/categoriesInterface.d.ts +0 -0
  1171. /package/dist/{interfaces → cjs/interfaces}/categoriesInterface.js +0 -0
  1172. /package/dist/{interfaces → cjs/interfaces}/certificatesHistoryInterface.d.ts +0 -0
  1173. /package/dist/{interfaces → cjs/interfaces}/certificatesHistoryInterface.js +0 -0
  1174. /package/dist/{interfaces → cjs/interfaces}/certificatesManagementInterface.d.ts +0 -0
  1175. /package/dist/{interfaces → cjs/interfaces}/certificatesManagementInterface.js +0 -0
  1176. /package/dist/{interfaces → cjs/interfaces}/cityInterface.d.ts +0 -0
  1177. /package/dist/{interfaces → cjs/interfaces}/cityInterface.js +0 -0
  1178. /package/dist/{interfaces → cjs/interfaces}/classRoomInterface.d.ts +0 -0
  1179. /package/dist/{interfaces → cjs/interfaces}/classRoomInterface.js +0 -0
  1180. /package/dist/{interfaces → cjs/interfaces}/cloudStorageInterface.d.ts +0 -0
  1181. /package/dist/{interfaces → cjs/interfaces}/cloudStorageInterface.js +0 -0
  1182. /package/dist/{interfaces → cjs/interfaces}/coinPurchaseOfferInterface.d.ts +0 -0
  1183. /package/dist/{interfaces → cjs/interfaces}/coinPurchaseOfferInterface.js +0 -0
  1184. /package/dist/{interfaces → cjs/interfaces}/columnInterface.d.ts +0 -0
  1185. /package/dist/{interfaces → cjs/interfaces}/columnInterface.js +0 -0
  1186. /package/dist/{interfaces → cjs/interfaces}/commanInterface.d.ts +0 -0
  1187. /package/dist/{interfaces → cjs/interfaces}/commanInterface.js +0 -0
  1188. /package/dist/{interfaces → cjs/interfaces}/contactFeedBackInterface.d.ts +0 -0
  1189. /package/dist/{interfaces → cjs/interfaces}/contactFeedBackInterface.js +0 -0
  1190. /package/dist/{interfaces → cjs/interfaces}/countryInterface.d.ts +0 -0
  1191. /package/dist/{interfaces → cjs/interfaces}/countryInterface.js +0 -0
  1192. /package/dist/{interfaces → cjs/interfaces}/courseHasVisitorsInterface.d.ts +0 -0
  1193. /package/dist/{interfaces → cjs/interfaces}/courseHasVisitorsInterface.js +0 -0
  1194. /package/dist/{interfaces → cjs/interfaces}/courseInterface.d.ts +0 -0
  1195. /package/dist/{interfaces → cjs/interfaces}/courseInterface.js +0 -0
  1196. /package/dist/{interfaces → cjs/interfaces}/dailyBookInterface.d.ts +0 -0
  1197. /package/dist/{interfaces → cjs/interfaces}/dailyBookInterface.js +0 -0
  1198. /package/dist/{interfaces → cjs/interfaces}/dashboardManagementInterface.d.ts +0 -0
  1199. /package/dist/{interfaces → cjs/interfaces}/dashboardManagementInterface.js +0 -0
  1200. /package/dist/{interfaces → cjs/interfaces}/driverInterface.d.ts +0 -0
  1201. /package/dist/{interfaces → cjs/interfaces}/driverInterface.js +0 -0
  1202. /package/dist/{interfaces → cjs/interfaces}/entityGroupInterface.d.ts +0 -0
  1203. /package/dist/{interfaces → cjs/interfaces}/entityGroupInterface.js +0 -0
  1204. /package/dist/{interfaces → cjs/interfaces}/eventInterface.d.ts +0 -0
  1205. /package/dist/{interfaces → cjs/interfaces}/eventInterface.js +0 -0
  1206. /package/dist/{interfaces → cjs/interfaces}/examGroupInterface.d.ts +0 -0
  1207. /package/dist/{interfaces → cjs/interfaces}/examGroupInterface.js +0 -0
  1208. /package/dist/{interfaces → cjs/interfaces}/examHasAnswerSheetInterface.d.ts +0 -0
  1209. /package/dist/{interfaces → cjs/interfaces}/examHasAnswerSheetInterface.js +0 -0
  1210. /package/dist/{interfaces → cjs/interfaces}/examInterface.d.ts +0 -0
  1211. /package/dist/{interfaces → cjs/interfaces}/examInterface.js +0 -0
  1212. /package/dist/{interfaces → cjs/interfaces}/facilityInterface.d.ts +0 -0
  1213. /package/dist/{interfaces → cjs/interfaces}/facilityInterface.js +0 -0
  1214. /package/dist/{interfaces → cjs/interfaces}/featureActionInterface.d.ts +0 -0
  1215. /package/dist/{interfaces → cjs/interfaces}/featureActionInterface.js +0 -0
  1216. /package/dist/{interfaces → cjs/interfaces}/feeHistoryDetailsInterface.d.ts +0 -0
  1217. /package/dist/{interfaces → cjs/interfaces}/feeHistoryDetailsInterface.js +0 -0
  1218. /package/dist/{interfaces → cjs/interfaces}/feeHistoryInterface.d.ts +0 -0
  1219. /package/dist/{interfaces → cjs/interfaces}/feeHistoryInterface.js +0 -0
  1220. /package/dist/{interfaces → cjs/interfaces}/feeReminderInterface.d.ts +0 -0
  1221. /package/dist/{interfaces → cjs/interfaces}/feeReminderInterface.js +0 -0
  1222. /package/dist/{interfaces → cjs/interfaces}/feeReminderSettingInterface.d.ts +0 -0
  1223. /package/dist/{interfaces → cjs/interfaces}/feeReminderSettingInterface.js +0 -0
  1224. /package/dist/{interfaces → cjs/interfaces}/feeReminderTypeInterface.d.ts +0 -0
  1225. /package/dist/{interfaces → cjs/interfaces}/feeReminderTypeInterface.js +0 -0
  1226. /package/dist/{interfaces → cjs/interfaces}/feeTypeHasTermsInterface.d.ts +0 -0
  1227. /package/dist/{interfaces → cjs/interfaces}/feeTypeHasTermsInterface.js +0 -0
  1228. /package/dist/{interfaces → cjs/interfaces}/feeTypeInterface.d.ts +0 -0
  1229. /package/dist/{interfaces → cjs/interfaces}/feeTypeInterface.js +0 -0
  1230. /package/dist/{interfaces → cjs/interfaces}/feedBackInterface.d.ts +0 -0
  1231. /package/dist/{interfaces → cjs/interfaces}/feedBackInterface.js +0 -0
  1232. /package/dist/{interfaces → cjs/interfaces}/feesCollectionInterface.d.ts +0 -0
  1233. /package/dist/{interfaces → cjs/interfaces}/feesCollectionInterface.js +0 -0
  1234. /package/dist/{interfaces → cjs/interfaces}/fileStorageInterface.d.ts +0 -0
  1235. /package/dist/{interfaces → cjs/interfaces}/fileStorageInterface.js +0 -0
  1236. /package/dist/{interfaces → cjs/interfaces}/floorManagementInterface.d.ts +0 -0
  1237. /package/dist/{interfaces → cjs/interfaces}/floorManagementInterface.js +0 -0
  1238. /package/dist/{interfaces → cjs/interfaces}/generateIdCardInterface.d.ts +0 -0
  1239. /package/dist/{interfaces → cjs/interfaces}/generateIdCardInterface.js +0 -0
  1240. /package/dist/{interfaces → cjs/interfaces}/greetingsInterface.d.ts +0 -0
  1241. /package/dist/{interfaces → cjs/interfaces}/greetingsInterface.js +0 -0
  1242. /package/dist/{interfaces → cjs/interfaces}/holidayInterface.d.ts +0 -0
  1243. /package/dist/{interfaces → cjs/interfaces}/holidayInterface.js +0 -0
  1244. /package/dist/{interfaces → cjs/interfaces}/homeworkInterface.d.ts +0 -0
  1245. /package/dist/{interfaces → cjs/interfaces}/homeworkInterface.js +0 -0
  1246. /package/dist/{interfaces → cjs/interfaces}/informationSupportInterface.d.ts +0 -0
  1247. /package/dist/{interfaces → cjs/interfaces}/informationSupportInterface.js +0 -0
  1248. /package/dist/{interfaces → cjs/interfaces}/inquiryInterface.d.ts +0 -0
  1249. /package/dist/{interfaces → cjs/interfaces}/inquiryInterface.js +0 -0
  1250. /package/dist/{interfaces → cjs/interfaces}/instituteEntityInterface.d.ts +0 -0
  1251. /package/dist/{interfaces → cjs/interfaces}/instituteEntityInterface.js +0 -0
  1252. /package/dist/{interfaces → cjs/interfaces}/instituteEntityTypeInterface.d.ts +0 -0
  1253. /package/dist/{interfaces → cjs/interfaces}/instituteEntityTypeInterface.js +0 -0
  1254. /package/dist/{interfaces → cjs/interfaces}/instituteInterface.d.ts +0 -0
  1255. /package/dist/{interfaces → cjs/interfaces}/instituteInterface.js +0 -0
  1256. /package/dist/{interfaces → cjs/interfaces}/instituteSubscriptionPlanInterface.d.ts +0 -0
  1257. /package/dist/{interfaces → cjs/interfaces}/instituteSubscriptionPlanInterface.js +0 -0
  1258. /package/dist/{interfaces → cjs/interfaces}/inventoryHistoryInterface.d.ts +0 -0
  1259. /package/dist/{interfaces → cjs/interfaces}/inventoryHistoryInterface.js +0 -0
  1260. /package/dist/{interfaces → cjs/interfaces}/inventoryInterface.d.ts +0 -0
  1261. /package/dist/{interfaces → cjs/interfaces}/inventoryInterface.js +0 -0
  1262. /package/dist/{interfaces → cjs/interfaces}/invoiceInterface.d.ts +0 -0
  1263. /package/dist/{interfaces → cjs/interfaces}/invoiceInterface.js +0 -0
  1264. /package/dist/{interfaces → cjs/interfaces}/jobApplyInterface.d.ts +0 -0
  1265. /package/dist/{interfaces → cjs/interfaces}/jobApplyInterface.js +0 -0
  1266. /package/dist/{interfaces → cjs/interfaces}/lectureHistoryInterface.d.ts +0 -0
  1267. /package/dist/{interfaces → cjs/interfaces}/lectureHistoryInterface.js +0 -0
  1268. /package/dist/{interfaces → cjs/interfaces}/lectureInterface.d.ts +0 -0
  1269. /package/dist/{interfaces → cjs/interfaces}/lectureInterface.js +0 -0
  1270. /package/dist/{interfaces → cjs/interfaces}/masterLeaveInterface.d.ts +0 -0
  1271. /package/dist/{interfaces → cjs/interfaces}/masterLeaveInterface.js +0 -0
  1272. /package/dist/{interfaces → cjs/interfaces}/moduleFeatureInterface.d.ts +0 -0
  1273. /package/dist/{interfaces → cjs/interfaces}/moduleFeatureInterface.js +0 -0
  1274. /package/dist/{interfaces → cjs/interfaces}/moduleInterface.d.ts +0 -0
  1275. /package/dist/{interfaces → cjs/interfaces}/moduleInterface.js +0 -0
  1276. /package/dist/{interfaces → cjs/interfaces}/offersInterface.d.ts +0 -0
  1277. /package/dist/{interfaces → cjs/interfaces}/offersInterface.js +0 -0
  1278. /package/dist/{interfaces → cjs/interfaces}/paymentTermsInterface.d.ts +0 -0
  1279. /package/dist/{interfaces → cjs/interfaces}/paymentTermsInterface.js +0 -0
  1280. /package/dist/{interfaces → cjs/interfaces}/pdcChequeInterface.d.ts +0 -0
  1281. /package/dist/{interfaces → cjs/interfaces}/pdcChequeInterface.js +0 -0
  1282. /package/dist/{interfaces → cjs/interfaces}/pdcHistoryInterface.d.ts +0 -0
  1283. /package/dist/{interfaces → cjs/interfaces}/pdcHistoryInterface.js +0 -0
  1284. /package/dist/{interfaces → cjs/interfaces}/photosGalleryInterface.d.ts +0 -0
  1285. /package/dist/{interfaces → cjs/interfaces}/photosGalleryInterface.js +0 -0
  1286. /package/dist/{interfaces → cjs/interfaces}/pincodeInterface.d.ts +0 -0
  1287. /package/dist/{interfaces → cjs/interfaces}/pincodeInterface.js +0 -0
  1288. /package/dist/{interfaces → cjs/interfaces}/plannerInterface.d.ts +0 -0
  1289. /package/dist/{interfaces → cjs/interfaces}/plannerInterface.js +0 -0
  1290. /package/dist/{interfaces → cjs/interfaces}/productInterface.d.ts +0 -0
  1291. /package/dist/{interfaces → cjs/interfaces}/productInterface.js +0 -0
  1292. /package/dist/{interfaces → cjs/interfaces}/projectAssessmentOptionInterface.d.ts +0 -0
  1293. /package/dist/{interfaces → cjs/interfaces}/projectAssessmentOptionInterface.js +0 -0
  1294. /package/dist/{interfaces → cjs/interfaces}/replaceTeacherInterface.d.ts +0 -0
  1295. /package/dist/{interfaces → cjs/interfaces}/replaceTeacherInterface.js +0 -0
  1296. /package/dist/{interfaces → cjs/interfaces}/roleInterface.d.ts +0 -0
  1297. /package/dist/{interfaces → cjs/interfaces}/roleInterface.js +0 -0
  1298. /package/dist/{interfaces → cjs/interfaces}/rulesRegulationInterface.d.ts +0 -0
  1299. /package/dist/{interfaces → cjs/interfaces}/rulesRegulationInterface.js +0 -0
  1300. /package/dist/{interfaces → cjs/interfaces}/schoolFeeCollectionInterface.d.ts +0 -0
  1301. /package/dist/{interfaces → cjs/interfaces}/schoolFeeCollectionInterface.js +0 -0
  1302. /package/dist/{interfaces → cjs/interfaces}/schoolFeeInterface.d.ts +0 -0
  1303. /package/dist/{interfaces → cjs/interfaces}/schoolFeeInterface.js +0 -0
  1304. /package/dist/{interfaces → cjs/interfaces}/schoolOfferInterface.d.ts +0 -0
  1305. /package/dist/{interfaces → cjs/interfaces}/schoolOfferInterface.js +0 -0
  1306. /package/dist/{interfaces → cjs/interfaces}/sendNotificationInerface.d.ts +0 -0
  1307. /package/dist/{interfaces → cjs/interfaces}/sendNotificationInerface.js +0 -0
  1308. /package/dist/{interfaces → cjs/interfaces}/slotInterface.d.ts +0 -0
  1309. /package/dist/{interfaces → cjs/interfaces}/slotInterface.js +0 -0
  1310. /package/dist/{interfaces → cjs/interfaces}/stateInterface.d.ts +0 -0
  1311. /package/dist/{interfaces → cjs/interfaces}/stateInterface.js +0 -0
  1312. /package/dist/{interfaces → cjs/interfaces}/subCategoriesInterface.d.ts +0 -0
  1313. /package/dist/{interfaces → cjs/interfaces}/subCategoriesInterface.js +0 -0
  1314. /package/dist/{interfaces → cjs/interfaces}/subjectHasFeeInterface.d.ts +0 -0
  1315. /package/dist/{interfaces → cjs/interfaces}/subjectHasFeeInterface.js +0 -0
  1316. /package/dist/{interfaces → cjs/interfaces}/subjectHasPayFeeHistoryInterface.d.ts +0 -0
  1317. /package/dist/{interfaces → cjs/interfaces}/subjectHasPayFeeHistoryInterface.js +0 -0
  1318. /package/dist/{interfaces → cjs/interfaces}/subjectIndexInterface.d.ts +0 -0
  1319. /package/dist/{interfaces → cjs/interfaces}/subjectIndexInterface.js +0 -0
  1320. /package/dist/{interfaces → cjs/interfaces}/subscriptionPlanInterface.d.ts +0 -0
  1321. /package/dist/{interfaces → cjs/interfaces}/subscriptionPlanInterface.js +0 -0
  1322. /package/dist/{interfaces → cjs/interfaces}/syllabusInterface.d.ts +0 -0
  1323. /package/dist/{interfaces → cjs/interfaces}/syllabusInterface.js +0 -0
  1324. /package/dist/{interfaces → cjs/interfaces}/taskManagementInterface.d.ts +0 -0
  1325. /package/dist/{interfaces → cjs/interfaces}/taskManagementInterface.js +0 -0
  1326. /package/dist/{interfaces → cjs/interfaces}/testimonialInterface.d.ts +0 -0
  1327. /package/dist/{interfaces → cjs/interfaces}/testimonialInterface.js +0 -0
  1328. /package/dist/{interfaces → cjs/interfaces}/toDoInterface.d.ts +0 -0
  1329. /package/dist/{interfaces → cjs/interfaces}/toDoInterface.js +0 -0
  1330. /package/dist/{interfaces → cjs/interfaces}/tokenInterface.d.ts +0 -0
  1331. /package/dist/{interfaces → cjs/interfaces}/tokenInterface.js +0 -0
  1332. /package/dist/{interfaces → cjs/interfaces}/tripInterface.d.ts +0 -0
  1333. /package/dist/{interfaces → cjs/interfaces}/tripInterface.js +0 -0
  1334. /package/dist/{interfaces → cjs/interfaces}/typeManagementInterface.d.ts +0 -0
  1335. /package/dist/{interfaces → cjs/interfaces}/typeManagementInterface.js +0 -0
  1336. /package/dist/{interfaces → cjs/interfaces}/uniqueNumberCounterInterface.d.ts +0 -0
  1337. /package/dist/{interfaces → cjs/interfaces}/uniqueNumberCounterInterface.js +0 -0
  1338. /package/dist/{interfaces → cjs/interfaces}/userBookAssessmentInterface.d.ts +0 -0
  1339. /package/dist/{interfaces → cjs/interfaces}/userBookAssessmentInterface.js +0 -0
  1340. /package/dist/{interfaces → cjs/interfaces}/userDetailsInterface.d.ts +0 -0
  1341. /package/dist/{interfaces → cjs/interfaces}/userDetailsInterface.js +0 -0
  1342. /package/dist/{interfaces → cjs/interfaces}/userFeeTypeByAccountInterface.d.ts +0 -0
  1343. /package/dist/{interfaces → cjs/interfaces}/userFeeTypeByAccountInterface.js +0 -0
  1344. /package/dist/{interfaces → cjs/interfaces}/userFeeTypeInterface.d.ts +0 -0
  1345. /package/dist/{interfaces → cjs/interfaces}/userFeeTypeInterface.js +0 -0
  1346. /package/dist/{interfaces → cjs/interfaces}/userHasAnnouncementInterface.d.ts +0 -0
  1347. /package/dist/{interfaces → cjs/interfaces}/userHasAnnouncementInterface.js +0 -0
  1348. /package/dist/{interfaces → cjs/interfaces}/userHasBatchInterface.d.ts +0 -0
  1349. /package/dist/{interfaces → cjs/interfaces}/userHasBatchInterface.js +0 -0
  1350. /package/dist/{interfaces → cjs/interfaces}/userHasCourseInterface.d.ts +0 -0
  1351. /package/dist/{interfaces → cjs/interfaces}/userHasCourseInterface.js +0 -0
  1352. /package/dist/{interfaces → cjs/interfaces}/userHasDeviceInterface.d.ts +0 -0
  1353. /package/dist/{interfaces → cjs/interfaces}/userHasDeviceInterface.js +0 -0
  1354. /package/dist/{interfaces → cjs/interfaces}/userHasFeeTermsInterface.d.ts +0 -0
  1355. /package/dist/{interfaces → cjs/interfaces}/userHasFeeTermsInterface.js +0 -0
  1356. /package/dist/{interfaces → cjs/interfaces}/userHasFileInterface.d.ts +0 -0
  1357. /package/dist/{interfaces → cjs/interfaces}/userHasFileInterface.js +0 -0
  1358. /package/dist/{interfaces → cjs/interfaces}/userHasHomeWorkInterface.d.ts +0 -0
  1359. /package/dist/{interfaces → cjs/interfaces}/userHasHomeWorkInterface.js +0 -0
  1360. /package/dist/{interfaces → cjs/interfaces}/userHasInventoryHistoryInterface.d.ts +0 -0
  1361. /package/dist/{interfaces → cjs/interfaces}/userHasInventoryHistoryInterface.js +0 -0
  1362. /package/dist/{interfaces → cjs/interfaces}/userHasInventoryInterface.d.ts +0 -0
  1363. /package/dist/{interfaces → cjs/interfaces}/userHasInventoryInterface.js +0 -0
  1364. /package/dist/{interfaces → cjs/interfaces}/userHasLeaveHistoryInterface.d.ts +0 -0
  1365. /package/dist/{interfaces → cjs/interfaces}/userHasLeaveHistoryInterface.js +0 -0
  1366. /package/dist/{interfaces → cjs/interfaces}/userHasLeaveInterface.d.ts +0 -0
  1367. /package/dist/{interfaces → cjs/interfaces}/userHasLeaveInterface.js +0 -0
  1368. /package/dist/{interfaces → cjs/interfaces}/userHasOfferInterface.d.ts +0 -0
  1369. /package/dist/{interfaces → cjs/interfaces}/userHasOfferInterface.js +0 -0
  1370. /package/dist/{interfaces → cjs/interfaces}/userHasParentInterface.d.ts +0 -0
  1371. /package/dist/{interfaces → cjs/interfaces}/userHasParentInterface.js +0 -0
  1372. /package/dist/{interfaces → cjs/interfaces}/userHasRoleInterface.d.ts +0 -0
  1373. /package/dist/{interfaces → cjs/interfaces}/userHasRoleInterface.js +0 -0
  1374. /package/dist/{interfaces → cjs/interfaces}/userHasRollNumberInterface.d.ts +0 -0
  1375. /package/dist/{interfaces → cjs/interfaces}/userHasRollNumberInterface.js +0 -0
  1376. /package/dist/{interfaces → cjs/interfaces}/userHasStorageInterface.d.ts +0 -0
  1377. /package/dist/{interfaces → cjs/interfaces}/userHasStorageInterface.js +0 -0
  1378. /package/dist/{interfaces → cjs/interfaces}/userHasSubjectFeeInterface.d.ts +0 -0
  1379. /package/dist/{interfaces → cjs/interfaces}/userHasSubjectFeeInterface.js +0 -0
  1380. /package/dist/{interfaces → cjs/interfaces}/userInstituteMetaInterface.d.ts +0 -0
  1381. /package/dist/{interfaces → cjs/interfaces}/userInstituteMetaInterface.js +0 -0
  1382. /package/dist/{interfaces → cjs/interfaces}/userInterface.d.ts +0 -0
  1383. /package/dist/{interfaces → cjs/interfaces}/userInterface.js +0 -0
  1384. /package/dist/{interfaces → cjs/interfaces}/userLeaveRequestInterface.d.ts +0 -0
  1385. /package/dist/{interfaces → cjs/interfaces}/userLeaveRequestInterface.js +0 -0
  1386. /package/dist/{interfaces → cjs/interfaces}/userMetaInterface.d.ts +0 -0
  1387. /package/dist/{interfaces → cjs/interfaces}/userMetaInterface.js +0 -0
  1388. /package/dist/{interfaces → cjs/interfaces}/userPayoutDetailsInterface.d.ts +0 -0
  1389. /package/dist/{interfaces → cjs/interfaces}/userPayoutDetailsInterface.js +0 -0
  1390. /package/dist/{interfaces → cjs/interfaces}/userPayoutHistoryInterface.d.ts +0 -0
  1391. /package/dist/{interfaces → cjs/interfaces}/userPayoutHistoryInterface.js +0 -0
  1392. /package/dist/{interfaces → cjs/interfaces}/userPayoutInterface.d.ts +0 -0
  1393. /package/dist/{interfaces → cjs/interfaces}/userPayoutInterface.js +0 -0
  1394. /package/dist/{interfaces → cjs/interfaces}/userProjectAssessmentOptionInterface.d.ts +0 -0
  1395. /package/dist/{interfaces → cjs/interfaces}/userProjectAssessmentOptionInterface.js +0 -0
  1396. /package/dist/{interfaces → cjs/interfaces}/userRequiredStepsInterface.d.ts +0 -0
  1397. /package/dist/{interfaces → cjs/interfaces}/userRequiredStepsInterface.js +0 -0
  1398. /package/dist/{interfaces → cjs/interfaces}/userSchoolMetaInterface.d.ts +0 -0
  1399. /package/dist/{interfaces → cjs/interfaces}/userSchoolMetaInterface.js +0 -0
  1400. /package/dist/{interfaces → cjs/interfaces}/vehicleInterface.d.ts +0 -0
  1401. /package/dist/{interfaces → cjs/interfaces}/vehicleInterface.js +0 -0
  1402. /package/dist/{interfaces → cjs/interfaces}/vendorManagementInterface.d.ts +0 -0
  1403. /package/dist/{interfaces → cjs/interfaces}/vendorManagementInterface.js +0 -0
  1404. /package/dist/{interfaces → cjs/interfaces}/videoAnalystInterface.d.ts +0 -0
  1405. /package/dist/{interfaces → cjs/interfaces}/videoAnalystInterface.js +0 -0
  1406. /package/dist/{interfaces → cjs/interfaces}/walletHistoryInterface.d.ts +0 -0
  1407. /package/dist/{interfaces → cjs/interfaces}/walletHistoryInterface.js +0 -0
  1408. /package/dist/{interfaces → cjs/interfaces}/walletInterface.d.ts +0 -0
  1409. /package/dist/{interfaces → cjs/interfaces}/walletInterface.js +0 -0
  1410. /package/dist/{interfaces → cjs/interfaces}/walletTransactionInterface.d.ts +0 -0
  1411. /package/dist/{interfaces → cjs/interfaces}/walletTransactionInterface.js +0 -0
  1412. /package/dist/{interfaces → cjs/interfaces}/workingDayInterface.d.ts +0 -0
  1413. /package/dist/{interfaces → cjs/interfaces}/workingDayInterface.js +0 -0
  1414. /package/dist/{interfaces → cjs/interfaces}/workingShiftInterface.d.ts +0 -0
  1415. /package/dist/{interfaces → cjs/interfaces}/workingShiftInterface.js +0 -0
  1416. /package/dist/{models → cjs/models}/mongodb/approvalRequestModel.d.ts +0 -0
  1417. /package/dist/{models → cjs/models}/mongodb/approvalRequestModel.js +0 -0
  1418. /package/dist/{models → cjs/models}/mongodb/attendanceModel.d.ts +0 -0
  1419. /package/dist/{models → cjs/models}/mongodb/attendanceModel.js +0 -0
  1420. /package/dist/{models → cjs/models}/mongodb/blogModel.d.ts +0 -0
  1421. /package/dist/{models → cjs/models}/mongodb/blogModel.js +0 -0
  1422. /package/dist/{models → cjs/models}/mongodb/careerModel.d.ts +0 -0
  1423. /package/dist/{models → cjs/models}/mongodb/careerModel.js +0 -0
  1424. /package/dist/{models → cjs/models}/mongodb/certificatesHistoryModel.d.ts +0 -0
  1425. /package/dist/{models → cjs/models}/mongodb/certificatesHistoryModel.js +0 -0
  1426. /package/dist/{models → cjs/models}/mongodb/certificatesManagementModel.d.ts +0 -0
  1427. /package/dist/{models → cjs/models}/mongodb/certificatesManagementModel.js +0 -0
  1428. /package/dist/{models → cjs/models}/mongodb/columnModel.d.ts +0 -0
  1429. /package/dist/{models → cjs/models}/mongodb/columnModel.js +0 -0
  1430. /package/dist/{models → cjs/models}/mongodb/dailyBookModel.d.ts +0 -0
  1431. /package/dist/{models → cjs/models}/mongodb/dailyBookModel.js +0 -0
  1432. /package/dist/{models → cjs/models}/mongodb/dashboardManagementModel.d.ts +0 -0
  1433. /package/dist/{models → cjs/models}/mongodb/dashboardManagementModel.js +0 -0
  1434. /package/dist/{models → cjs/models}/mongodb/eventModel.d.ts +0 -0
  1435. /package/dist/{models → cjs/models}/mongodb/eventModel.js +0 -0
  1436. /package/dist/{models → cjs/models}/mongodb/examGroupModel.d.ts +0 -0
  1437. /package/dist/{models → cjs/models}/mongodb/examGroupModel.js +0 -0
  1438. /package/dist/{models → cjs/models}/mongodb/examHasAnswerSheetModel.d.ts +0 -0
  1439. /package/dist/{models → cjs/models}/mongodb/examHasAnswerSheetModel.js +0 -0
  1440. /package/dist/{models → cjs/models}/mongodb/examModel.d.ts +0 -0
  1441. /package/dist/{models → cjs/models}/mongodb/examModel.js +0 -0
  1442. /package/dist/{models → cjs/models}/mongodb/feeReminderTypeModel.d.ts +0 -0
  1443. /package/dist/{models → cjs/models}/mongodb/feeReminderTypeModel.js +0 -0
  1444. /package/dist/{models → cjs/models}/mongodb/feedBackModel.d.ts +0 -0
  1445. /package/dist/{models → cjs/models}/mongodb/feedBackModel.js +0 -0
  1446. /package/dist/{models → cjs/models}/mongodb/generateIdCardModel.d.ts +0 -0
  1447. /package/dist/{models → cjs/models}/mongodb/generateIdCardModel.js +0 -0
  1448. /package/dist/{models → cjs/models}/mongodb/holidayModel.d.ts +0 -0
  1449. /package/dist/{models → cjs/models}/mongodb/holidayModel.js +0 -0
  1450. /package/dist/{models → cjs/models}/mongodb/index.d.ts +0 -0
  1451. /package/dist/{models → cjs/models}/mongodb/index.js +0 -0
  1452. /package/dist/{models → cjs/models}/mongodb/informationSupportModel.d.ts +0 -0
  1453. /package/dist/{models → cjs/models}/mongodb/informationSupportModel.js +0 -0
  1454. /package/dist/{models → cjs/models}/mongodb/inquiryModel.d.ts +0 -0
  1455. /package/dist/{models → cjs/models}/mongodb/inquiryModel.js +0 -0
  1456. /package/dist/{models → cjs/models}/mongodb/invoiceModel.d.ts +0 -0
  1457. /package/dist/{models → cjs/models}/mongodb/invoiceModel.js +0 -0
  1458. /package/dist/{models → cjs/models}/mongodb/jobApplyModel.d.ts +0 -0
  1459. /package/dist/{models → cjs/models}/mongodb/jobApplyModel.js +0 -0
  1460. /package/dist/{models → cjs/models}/mongodb/photosGalleryModel.d.ts +0 -0
  1461. /package/dist/{models → cjs/models}/mongodb/photosGalleryModel.js +0 -0
  1462. /package/dist/{models → cjs/models}/mongodb/plannerModel.d.ts +0 -0
  1463. /package/dist/{models → cjs/models}/mongodb/plannerModel.js +0 -0
  1464. /package/dist/{models → cjs/models}/mongodb/plugin/addDefaultAttributesPlugin.d.ts +0 -0
  1465. /package/dist/{models → cjs/models}/mongodb/plugin/addDefaultAttributesPlugin.js +0 -0
  1466. /package/dist/{models → cjs/models}/mongodb/plugin/transformIdInQueryPlugin.d.ts +0 -0
  1467. /package/dist/{models → cjs/models}/mongodb/plugin/transformIdInQueryPlugin.js +0 -0
  1468. /package/dist/{models → cjs/models}/mongodb/plugin/transformIdInResponsePlugin.d.ts +0 -0
  1469. /package/dist/{models → cjs/models}/mongodb/plugin/transformIdInResponsePlugin.js +0 -0
  1470. /package/dist/{models → cjs/models}/mongodb/replaceTeacherModel.d.ts +0 -0
  1471. /package/dist/{models → cjs/models}/mongodb/replaceTeacherModel.js +0 -0
  1472. /package/dist/{models → cjs/models}/mongodb/schoolFeeModel.d.ts +0 -0
  1473. /package/dist/{models → cjs/models}/mongodb/schoolFeeModel.js +0 -0
  1474. /package/dist/{models → cjs/models}/mongodb/subjectIndexModel.d.ts +0 -0
  1475. /package/dist/{models → cjs/models}/mongodb/subjectIndexModel.js +0 -0
  1476. /package/dist/{models → cjs/models}/mongodb/subscriptionPlanModel.d.ts +0 -0
  1477. /package/dist/{models → cjs/models}/mongodb/subscriptionPlanModel.js +0 -0
  1478. /package/dist/{models → cjs/models}/mongodb/taskManagementModel.d.ts +0 -0
  1479. /package/dist/{models → cjs/models}/mongodb/taskManagementModel.js +0 -0
  1480. /package/dist/{models → cjs/models}/mongodb/uniqueNumberCounterModel.d.ts +0 -0
  1481. /package/dist/{models → cjs/models}/mongodb/uniqueNumberCounterModel.js +0 -0
  1482. /package/dist/{models → cjs/models}/mongodb/userDetailsModel.d.ts +0 -0
  1483. /package/dist/{models → cjs/models}/mongodb/userDetailsModel.js +0 -0
  1484. /package/dist/{models → cjs/models}/mongodb/userDoc.d.ts +0 -0
  1485. /package/dist/{models → cjs/models}/mongodb/userDoc.js +0 -0
  1486. /package/dist/{models → cjs/models}/mongodb/userInstituteMetaModel.d.ts +0 -0
  1487. /package/dist/{models → cjs/models}/mongodb/userInstituteMetaModel.js +0 -0
  1488. /package/dist/{models → cjs/models}/mongodb/userSchoolMetaModel.d.ts +0 -0
  1489. /package/dist/{models → cjs/models}/mongodb/userSchoolMetaModel.js +0 -0
  1490. /package/dist/{models → cjs/models}/mongodb/videoAnalystModel.d.ts +0 -0
  1491. /package/dist/{models → cjs/models}/mongodb/videoAnalystModel.js +0 -0
  1492. /package/dist/{models → cjs/models}/mongodb/walletTransactionModel.d.ts +0 -0
  1493. /package/dist/{models → cjs/models}/mongodb/walletTransactionModel.js +0 -0
  1494. /package/dist/{models → cjs/models}/psql/SubCategoriesModel.d.ts +0 -0
  1495. /package/dist/{models → cjs/models}/psql/SubCategoriesModel.js +0 -0
  1496. /package/dist/{models → cjs/models}/psql/academicCalendarModel.d.ts +0 -0
  1497. /package/dist/{models → cjs/models}/psql/academicCalendarModel.js +0 -0
  1498. /package/dist/{models → cjs/models}/psql/accountHasReceiptDetailsModel.d.ts +0 -0
  1499. /package/dist/{models → cjs/models}/psql/accountHasReceiptDetailsModel.js +0 -0
  1500. /package/dist/{models → cjs/models}/psql/announcementModel.d.ts +0 -0
  1501. /package/dist/{models → cjs/models}/psql/announcementModel.js +0 -0
  1502. /package/dist/{models → cjs/models}/psql/areaModel.d.ts +0 -0
  1503. /package/dist/{models → cjs/models}/psql/areaModel.js +0 -0
  1504. /package/dist/{models → cjs/models}/psql/bankAccountDetailsModel.d.ts +0 -0
  1505. /package/dist/{models → cjs/models}/psql/bankAccountDetailsModel.js +0 -0
  1506. /package/dist/{models → cjs/models}/psql/bannerModel.d.ts +0 -0
  1507. /package/dist/{models → cjs/models}/psql/bannerModel.js +0 -0
  1508. /package/dist/{models → cjs/models}/psql/batchModel.d.ts +0 -0
  1509. /package/dist/{models → cjs/models}/psql/batchModel.js +0 -0
  1510. /package/dist/{models → cjs/models}/psql/batchSubjectBookAssessmentModel.d.ts +0 -0
  1511. /package/dist/{models → cjs/models}/psql/batchSubjectBookAssessmentModel.js +0 -0
  1512. /package/dist/{models → cjs/models}/psql/batchSubjectProjectAssessmentModel.d.ts +0 -0
  1513. /package/dist/{models → cjs/models}/psql/batchSubjectProjectAssessmentModel.js +0 -0
  1514. /package/dist/{models → cjs/models}/psql/bookAssessmentDateModel.d.ts +0 -0
  1515. /package/dist/{models → cjs/models}/psql/bookAssessmentDateModel.js +0 -0
  1516. /package/dist/{models → cjs/models}/psql/categoriesModel.d.ts +0 -0
  1517. /package/dist/{models → cjs/models}/psql/categoriesModel.js +0 -0
  1518. /package/dist/{models → cjs/models}/psql/cityModel.d.ts +0 -0
  1519. /package/dist/{models → cjs/models}/psql/cityModel.js +0 -0
  1520. /package/dist/{models → cjs/models}/psql/classRoomModel.d.ts +0 -0
  1521. /package/dist/{models → cjs/models}/psql/classRoomModel.js +0 -0
  1522. /package/dist/{models → cjs/models}/psql/cloudStorageModel.d.ts +0 -0
  1523. /package/dist/{models → cjs/models}/psql/cloudStorageModel.js +0 -0
  1524. /package/dist/{models → cjs/models}/psql/coinPurchaseOfferModel.d.ts +0 -0
  1525. /package/dist/{models → cjs/models}/psql/coinPurchaseOfferModel.js +0 -0
  1526. /package/dist/{models → cjs/models}/psql/contactFeedBackModel.d.ts +0 -0
  1527. /package/dist/{models → cjs/models}/psql/contactFeedBackModel.js +0 -0
  1528. /package/dist/{models → cjs/models}/psql/countryModel.d.ts +0 -0
  1529. /package/dist/{models → cjs/models}/psql/countryModel.js +0 -0
  1530. /package/dist/{models → cjs/models}/psql/courseHasVisitorsModel.d.ts +0 -0
  1531. /package/dist/{models → cjs/models}/psql/courseHasVisitorsModel.js +0 -0
  1532. /package/dist/{models → cjs/models}/psql/courseModel.d.ts +0 -0
  1533. /package/dist/{models → cjs/models}/psql/courseModel.js +0 -0
  1534. /package/dist/{models → cjs/models}/psql/driverModel.d.ts +0 -0
  1535. /package/dist/{models → cjs/models}/psql/driverModel.js +0 -0
  1536. /package/dist/{models → cjs/models}/psql/entityGroupModel.d.ts +0 -0
  1537. /package/dist/{models → cjs/models}/psql/entityGroupModel.js +0 -0
  1538. /package/dist/{models → cjs/models}/psql/facilityModel.d.ts +0 -0
  1539. /package/dist/{models → cjs/models}/psql/facilityModel.js +0 -0
  1540. /package/dist/{models → cjs/models}/psql/featureActionModel.d.ts +0 -0
  1541. /package/dist/{models → cjs/models}/psql/featureActionModel.js +0 -0
  1542. /package/dist/{models → cjs/models}/psql/feeHistoryDetailsModel.d.ts +0 -0
  1543. /package/dist/{models → cjs/models}/psql/feeHistoryDetailsModel.js +0 -0
  1544. /package/dist/{models → cjs/models}/psql/feeHistoryModel.d.ts +0 -0
  1545. /package/dist/{models → cjs/models}/psql/feeHistoryModel.js +0 -0
  1546. /package/dist/{models → cjs/models}/psql/feeReminderModel.d.ts +0 -0
  1547. /package/dist/{models → cjs/models}/psql/feeReminderModel.js +0 -0
  1548. /package/dist/{models → cjs/models}/psql/feeReminderSettingModel.d.ts +0 -0
  1549. /package/dist/{models → cjs/models}/psql/feeReminderSettingModel.js +0 -0
  1550. /package/dist/{models → cjs/models}/psql/feeTypeHasTermsModel.d.ts +0 -0
  1551. /package/dist/{models → cjs/models}/psql/feeTypeHasTermsModel.js +0 -0
  1552. /package/dist/{models → cjs/models}/psql/feeTypeModel.d.ts +0 -0
  1553. /package/dist/{models → cjs/models}/psql/feeTypeModel.js +0 -0
  1554. /package/dist/{models → cjs/models}/psql/feesCollectionModel.d.ts +0 -0
  1555. /package/dist/{models → cjs/models}/psql/feesCollectionModel.js +0 -0
  1556. /package/dist/{models → cjs/models}/psql/fileStorageModel.d.ts +0 -0
  1557. /package/dist/{models → cjs/models}/psql/fileStorageModel.js +0 -0
  1558. /package/dist/{models → cjs/models}/psql/floorManagementModel.d.ts +0 -0
  1559. /package/dist/{models → cjs/models}/psql/floorManagementModel.js +0 -0
  1560. /package/dist/{models → cjs/models}/psql/greetingsModel.d.ts +0 -0
  1561. /package/dist/{models → cjs/models}/psql/greetingsModel.js +0 -0
  1562. /package/dist/{models → cjs/models}/psql/homeWorkModel.d.ts +0 -0
  1563. /package/dist/{models → cjs/models}/psql/homeWorkModel.js +0 -0
  1564. /package/dist/{models → cjs/models}/psql/index.d.ts +0 -0
  1565. /package/dist/{models → cjs/models}/psql/index.js +0 -0
  1566. /package/dist/{models → cjs/models}/psql/instituteEntityModel.d.ts +0 -0
  1567. /package/dist/{models → cjs/models}/psql/instituteEntityModel.js +0 -0
  1568. /package/dist/{models → cjs/models}/psql/instituteEntityTypeModel.d.ts +0 -0
  1569. /package/dist/{models → cjs/models}/psql/instituteEntityTypeModel.js +0 -0
  1570. /package/dist/{models → cjs/models}/psql/instituteModel.d.ts +0 -0
  1571. /package/dist/{models → cjs/models}/psql/instituteModel.js +0 -0
  1572. /package/dist/{models → cjs/models}/psql/instituteSubscriptionPlanModel.d.ts +0 -0
  1573. /package/dist/{models → cjs/models}/psql/instituteSubscriptionPlanModel.js +0 -0
  1574. /package/dist/{models → cjs/models}/psql/inventoryHistoryModel.d.ts +0 -0
  1575. /package/dist/{models → cjs/models}/psql/inventoryHistoryModel.js +0 -0
  1576. /package/dist/{models → cjs/models}/psql/inventoryModel.d.ts +0 -0
  1577. /package/dist/{models → cjs/models}/psql/inventoryModel.js +0 -0
  1578. /package/dist/{models → cjs/models}/psql/lectureHistoryModel.d.ts +0 -0
  1579. /package/dist/{models → cjs/models}/psql/lectureHistoryModel.js +0 -0
  1580. /package/dist/{models → cjs/models}/psql/lectureModel.d.ts +0 -0
  1581. /package/dist/{models → cjs/models}/psql/lectureModel.js +0 -0
  1582. /package/dist/{models → cjs/models}/psql/masterLeaveModel.d.ts +0 -0
  1583. /package/dist/{models → cjs/models}/psql/masterLeaveModel.js +0 -0
  1584. /package/dist/{models → cjs/models}/psql/moduleFeatureModel.d.ts +0 -0
  1585. /package/dist/{models → cjs/models}/psql/moduleFeatureModel.js +0 -0
  1586. /package/dist/{models → cjs/models}/psql/moduleModel.d.ts +0 -0
  1587. /package/dist/{models → cjs/models}/psql/moduleModel.js +0 -0
  1588. /package/dist/{models → cjs/models}/psql/offerModel.d.ts +0 -0
  1589. /package/dist/{models → cjs/models}/psql/offerModel.js +0 -0
  1590. /package/dist/{models → cjs/models}/psql/paymentTermsModel.d.ts +0 -0
  1591. /package/dist/{models → cjs/models}/psql/paymentTermsModel.js +0 -0
  1592. /package/dist/{models → cjs/models}/psql/pdcChequeModel.d.ts +0 -0
  1593. /package/dist/{models → cjs/models}/psql/pdcChequeModel.js +0 -0
  1594. /package/dist/{models → cjs/models}/psql/pdcHistoryModel.d.ts +0 -0
  1595. /package/dist/{models → cjs/models}/psql/pdcHistoryModel.js +0 -0
  1596. /package/dist/{models → cjs/models}/psql/pincodeModel.d.ts +0 -0
  1597. /package/dist/{models → cjs/models}/psql/pincodeModel.js +0 -0
  1598. /package/dist/{models → cjs/models}/psql/productModel.d.ts +0 -0
  1599. /package/dist/{models → cjs/models}/psql/productModel.js +0 -0
  1600. /package/dist/{models → cjs/models}/psql/projectAssessmentOptionModel.d.ts +0 -0
  1601. /package/dist/{models → cjs/models}/psql/projectAssessmentOptionModel.js +0 -0
  1602. /package/dist/{models → cjs/models}/psql/roleModel.d.ts +0 -0
  1603. /package/dist/{models → cjs/models}/psql/roleModel.js +0 -0
  1604. /package/dist/{models → cjs/models}/psql/rulesRegulationModel.d.ts +0 -0
  1605. /package/dist/{models → cjs/models}/psql/rulesRegulationModel.js +0 -0
  1606. /package/dist/{models → cjs/models}/psql/schoolFeeCollectionModel.d.ts +0 -0
  1607. /package/dist/{models → cjs/models}/psql/schoolFeeCollectionModel.js +0 -0
  1608. /package/dist/{models → cjs/models}/psql/schoolOfferModel.d.ts +0 -0
  1609. /package/dist/{models → cjs/models}/psql/schoolOfferModel.js +0 -0
  1610. /package/dist/{models → cjs/models}/psql/sendNotificationModel.d.ts +0 -0
  1611. /package/dist/{models → cjs/models}/psql/sendNotificationModel.js +0 -0
  1612. /package/dist/{models → cjs/models}/psql/slotModel.d.ts +0 -0
  1613. /package/dist/{models → cjs/models}/psql/slotModel.js +0 -0
  1614. /package/dist/{models → cjs/models}/psql/stateModel.d.ts +0 -0
  1615. /package/dist/{models → cjs/models}/psql/stateModel.js +0 -0
  1616. /package/dist/{models → cjs/models}/psql/subjectHasFeeModel.d.ts +0 -0
  1617. /package/dist/{models → cjs/models}/psql/subjectHasFeeModel.js +0 -0
  1618. /package/dist/{models → cjs/models}/psql/subjectHasPayFeeHistoryModel.d.ts +0 -0
  1619. /package/dist/{models → cjs/models}/psql/subjectHasPayFeeHistoryModel.js +0 -0
  1620. /package/dist/{models → cjs/models}/psql/syllabusModel.d.ts +0 -0
  1621. /package/dist/{models → cjs/models}/psql/syllabusModel.js +0 -0
  1622. /package/dist/{models → cjs/models}/psql/testimonialModel.d.ts +0 -0
  1623. /package/dist/{models → cjs/models}/psql/testimonialModel.js +0 -0
  1624. /package/dist/{models → cjs/models}/psql/toDoModel.d.ts +0 -0
  1625. /package/dist/{models → cjs/models}/psql/toDoModel.js +0 -0
  1626. /package/dist/{models → cjs/models}/psql/tokenModel.d.ts +0 -0
  1627. /package/dist/{models → cjs/models}/psql/tokenModel.js +0 -0
  1628. /package/dist/{models → cjs/models}/psql/tripModel.d.ts +0 -0
  1629. /package/dist/{models → cjs/models}/psql/tripModel.js +0 -0
  1630. /package/dist/{models → cjs/models}/psql/typeManagementModel.d.ts +0 -0
  1631. /package/dist/{models → cjs/models}/psql/typeManagementModel.js +0 -0
  1632. /package/dist/{models → cjs/models}/psql/userBookAssessmentModel.d.ts +0 -0
  1633. /package/dist/{models → cjs/models}/psql/userBookAssessmentModel.js +0 -0
  1634. /package/dist/{models → cjs/models}/psql/userFeeTypeByAccountModel.d.ts +0 -0
  1635. /package/dist/{models → cjs/models}/psql/userFeeTypeByAccountModel.js +0 -0
  1636. /package/dist/{models → cjs/models}/psql/userFeeTypeModel.d.ts +0 -0
  1637. /package/dist/{models → cjs/models}/psql/userFeeTypeModel.js +0 -0
  1638. /package/dist/{models → cjs/models}/psql/userHasAnnouncementModel.d.ts +0 -0
  1639. /package/dist/{models → cjs/models}/psql/userHasAnnouncementModel.js +0 -0
  1640. /package/dist/{models → cjs/models}/psql/userHasBatchModel.d.ts +0 -0
  1641. /package/dist/{models → cjs/models}/psql/userHasBatchModel.js +0 -0
  1642. /package/dist/{models → cjs/models}/psql/userHasCourseModel.d.ts +0 -0
  1643. /package/dist/{models → cjs/models}/psql/userHasCourseModel.js +0 -0
  1644. /package/dist/{models → cjs/models}/psql/userHasDeviceModel.d.ts +0 -0
  1645. /package/dist/{models → cjs/models}/psql/userHasDeviceModel.js +0 -0
  1646. /package/dist/{models → cjs/models}/psql/userHasFeeTermsModel.d.ts +0 -0
  1647. /package/dist/{models → cjs/models}/psql/userHasFeeTermsModel.js +0 -0
  1648. /package/dist/{models → cjs/models}/psql/userHasFileModel.d.ts +0 -0
  1649. /package/dist/{models → cjs/models}/psql/userHasFileModel.js +0 -0
  1650. /package/dist/{models → cjs/models}/psql/userHasHomeWorkModel.d.ts +0 -0
  1651. /package/dist/{models → cjs/models}/psql/userHasHomeWorkModel.js +0 -0
  1652. /package/dist/{models → cjs/models}/psql/userHasInventoryHistoryModel.d.ts +0 -0
  1653. /package/dist/{models → cjs/models}/psql/userHasInventoryHistoryModel.js +0 -0
  1654. /package/dist/{models → cjs/models}/psql/userHasInventoryModel.d.ts +0 -0
  1655. /package/dist/{models → cjs/models}/psql/userHasInventoryModel.js +0 -0
  1656. /package/dist/{models → cjs/models}/psql/userHasLeaveHistoryModel.d.ts +0 -0
  1657. /package/dist/{models → cjs/models}/psql/userHasLeaveHistoryModel.js +0 -0
  1658. /package/dist/{models → cjs/models}/psql/userHasLeaveModel.d.ts +0 -0
  1659. /package/dist/{models → cjs/models}/psql/userHasLeaveModel.js +0 -0
  1660. /package/dist/{models → cjs/models}/psql/userHasOfferModel.d.ts +0 -0
  1661. /package/dist/{models → cjs/models}/psql/userHasOfferModel.js +0 -0
  1662. /package/dist/{models → cjs/models}/psql/userHasParentModel.d.ts +0 -0
  1663. /package/dist/{models → cjs/models}/psql/userHasParentModel.js +0 -0
  1664. /package/dist/{models → cjs/models}/psql/userHasRoleModel.d.ts +0 -0
  1665. /package/dist/{models → cjs/models}/psql/userHasRoleModel.js +0 -0
  1666. /package/dist/{models → cjs/models}/psql/userHasRollNumberModel.d.ts +0 -0
  1667. /package/dist/{models → cjs/models}/psql/userHasRollNumberModel.js +0 -0
  1668. /package/dist/{models → cjs/models}/psql/userHasStorageModel.d.ts +0 -0
  1669. /package/dist/{models → cjs/models}/psql/userHasStorageModel.js +0 -0
  1670. /package/dist/{models → cjs/models}/psql/userHasSubjectFeeModel.d.ts +0 -0
  1671. /package/dist/{models → cjs/models}/psql/userHasSubjectFeeModel.js +0 -0
  1672. /package/dist/{models → cjs/models}/psql/userLeaveRequestModel.d.ts +0 -0
  1673. /package/dist/{models → cjs/models}/psql/userLeaveRequestModel.js +0 -0
  1674. /package/dist/{models → cjs/models}/psql/userModel.d.ts +0 -0
  1675. /package/dist/{models → cjs/models}/psql/userModel.js +0 -0
  1676. /package/dist/{models → cjs/models}/psql/userPayoutDetailsModel.d.ts +0 -0
  1677. /package/dist/{models → cjs/models}/psql/userPayoutDetailsModel.js +0 -0
  1678. /package/dist/{models → cjs/models}/psql/userPayoutHistoryModel.d.ts +0 -0
  1679. /package/dist/{models → cjs/models}/psql/userPayoutHistoryModel.js +0 -0
  1680. /package/dist/{models → cjs/models}/psql/userPayoutModel.d.ts +0 -0
  1681. /package/dist/{models → cjs/models}/psql/userPayoutModel.js +0 -0
  1682. /package/dist/{models → cjs/models}/psql/userProjectAssessmentOptionModel.d.ts +0 -0
  1683. /package/dist/{models → cjs/models}/psql/userProjectAssessmentOptionModel.js +0 -0
  1684. /package/dist/{models → cjs/models}/psql/userRequiredStepsModel.d.ts +0 -0
  1685. /package/dist/{models → cjs/models}/psql/userRequiredStepsModel.js +0 -0
  1686. /package/dist/{models → cjs/models}/psql/vehicleModel.d.ts +0 -0
  1687. /package/dist/{models → cjs/models}/psql/vehicleModel.js +0 -0
  1688. /package/dist/{models → cjs/models}/psql/vendorManagementModel.d.ts +0 -0
  1689. /package/dist/{models → cjs/models}/psql/vendorManagementModel.js +0 -0
  1690. /package/dist/{models → cjs/models}/psql/walletHistoryModel.d.ts +0 -0
  1691. /package/dist/{models → cjs/models}/psql/walletHistoryModel.js +0 -0
  1692. /package/dist/{models → cjs/models}/psql/walletModel.d.ts +0 -0
  1693. /package/dist/{models → cjs/models}/psql/walletModel.js +0 -0
  1694. /package/dist/{models → cjs/models}/psql/workingDayModel.d.ts +0 -0
  1695. /package/dist/{models → cjs/models}/psql/workingDayModel.js +0 -0
  1696. /package/dist/{models → cjs/models}/psql/workingShiftModel.d.ts +0 -0
  1697. /package/dist/{models → cjs/models}/psql/workingShiftModel.js +0 -0
  1698. /package/dist/{services → cjs/services}/Concrete/mongooseCommonService.d.ts +0 -0
  1699. /package/dist/{services → cjs/services}/Concrete/mongooseCommonService.js +0 -0
  1700. /package/dist/{services → cjs/services}/Concrete/sequelizeCommonService.d.ts +0 -0
  1701. /package/dist/{services → cjs/services}/Concrete/sequelizeCommonService.js +0 -0
  1702. /package/dist/{services → cjs/services}/Contracts/IMongooseCommonService.d.ts +0 -0
  1703. /package/dist/{services → cjs/services}/Contracts/IMongooseCommonService.js +0 -0
  1704. /package/dist/{services → cjs/services}/Contracts/ISequelizeCommonService.d.ts +0 -0
  1705. /package/dist/{services → cjs/services}/Contracts/ISequelizeCommonService.js +0 -0
  1706. /package/dist/{types → cjs/types}/academicCalendarType.d.ts +0 -0
  1707. /package/dist/{types → cjs/types}/academicCalendarType.js +0 -0
  1708. /package/dist/{types → cjs/types}/accountHasReceiptDetailsType.d.ts +0 -0
  1709. /package/dist/{types → cjs/types}/accountHasReceiptDetailsType.js +0 -0
  1710. /package/dist/{types → cjs/types}/announcementType.d.ts +0 -0
  1711. /package/dist/{types → cjs/types}/announcementType.js +0 -0
  1712. /package/dist/{types → cjs/types}/approveRequestType.d.ts +0 -0
  1713. /package/dist/{types → cjs/types}/approveRequestType.js +0 -0
  1714. /package/dist/{types → cjs/types}/areaType.d.ts +0 -0
  1715. /package/dist/{types → cjs/types}/areaType.js +0 -0
  1716. /package/dist/{types → cjs/types}/attendanceType.d.ts +0 -0
  1717. /package/dist/{types → cjs/types}/attendanceType.js +0 -0
  1718. /package/dist/{types → cjs/types}/bankAccountDetailsType.d.ts +0 -0
  1719. /package/dist/{types → cjs/types}/bankAccountDetailsType.js +0 -0
  1720. /package/dist/{types → cjs/types}/bannerType.d.ts +0 -0
  1721. /package/dist/{types → cjs/types}/bannerType.js +0 -0
  1722. /package/dist/{types → cjs/types}/batchSubjectBookAssessmentType.d.ts +0 -0
  1723. /package/dist/{types → cjs/types}/batchSubjectBookAssessmentType.js +0 -0
  1724. /package/dist/{types → cjs/types}/batchSubjectProjectAssessmentType.d.ts +0 -0
  1725. /package/dist/{types → cjs/types}/batchSubjectProjectAssessmentType.js +0 -0
  1726. /package/dist/{types → cjs/types}/batchType.d.ts +0 -0
  1727. /package/dist/{types → cjs/types}/batchType.js +0 -0
  1728. /package/dist/{types → cjs/types}/blogType.d.ts +0 -0
  1729. /package/dist/{types → cjs/types}/blogType.js +0 -0
  1730. /package/dist/{types → cjs/types}/bookAssessmentDateType.d.ts +0 -0
  1731. /package/dist/{types → cjs/types}/bookAssessmentDateType.js +0 -0
  1732. /package/dist/{types → cjs/types}/careerType.d.ts +0 -0
  1733. /package/dist/{types → cjs/types}/careerType.js +0 -0
  1734. /package/dist/{types → cjs/types}/categoriesType.d.ts +0 -0
  1735. /package/dist/{types → cjs/types}/categoriesType.js +0 -0
  1736. /package/dist/{types → cjs/types}/certificatesHistoryType.d.ts +0 -0
  1737. /package/dist/{types → cjs/types}/certificatesHistoryType.js +0 -0
  1738. /package/dist/{types → cjs/types}/certificatesManagementType.d.ts +0 -0
  1739. /package/dist/{types → cjs/types}/certificatesManagementType.js +0 -0
  1740. /package/dist/{types → cjs/types}/classRoomType.d.ts +0 -0
  1741. /package/dist/{types → cjs/types}/classRoomType.js +0 -0
  1742. /package/dist/{types → cjs/types}/cloudStorageType.d.ts +0 -0
  1743. /package/dist/{types → cjs/types}/cloudStorageType.js +0 -0
  1744. /package/dist/{types → cjs/types}/coinPurchaseOfferType.d.ts +0 -0
  1745. /package/dist/{types → cjs/types}/coinPurchaseOfferType.js +0 -0
  1746. /package/dist/{types → cjs/types}/commonType.d.ts +0 -0
  1747. /package/dist/{types → cjs/types}/commonType.js +0 -0
  1748. /package/dist/{types → cjs/types}/contactFeedBackType.d.ts +0 -0
  1749. /package/dist/{types → cjs/types}/contactFeedBackType.js +0 -0
  1750. /package/dist/{types → cjs/types}/courseHasVisitorsType.d.ts +0 -0
  1751. /package/dist/{types → cjs/types}/courseHasVisitorsType.js +0 -0
  1752. /package/dist/{types → cjs/types}/courseType.d.ts +0 -0
  1753. /package/dist/{types → cjs/types}/courseType.js +0 -0
  1754. /package/dist/{types → cjs/types}/dailyBookType.d.ts +0 -0
  1755. /package/dist/{types → cjs/types}/dailyBookType.js +0 -0
  1756. /package/dist/{types → cjs/types}/dashboardManagementType.d.ts +0 -0
  1757. /package/dist/{types → cjs/types}/dashboardManagementType.js +0 -0
  1758. /package/dist/{types → cjs/types}/driverType.d.ts +0 -0
  1759. /package/dist/{types → cjs/types}/driverType.js +0 -0
  1760. /package/dist/{types → cjs/types}/entityGroupType.d.ts +0 -0
  1761. /package/dist/{types → cjs/types}/entityGroupType.js +0 -0
  1762. /package/dist/{types → cjs/types}/eventType.d.ts +0 -0
  1763. /package/dist/{types → cjs/types}/eventType.js +0 -0
  1764. /package/dist/{types → cjs/types}/examGroupType.d.ts +0 -0
  1765. /package/dist/{types → cjs/types}/examGroupType.js +0 -0
  1766. /package/dist/{types → cjs/types}/examHasAnswerSheetType.d.ts +0 -0
  1767. /package/dist/{types → cjs/types}/examHasAnswerSheetType.js +0 -0
  1768. /package/dist/{types → cjs/types}/examType.d.ts +0 -0
  1769. /package/dist/{types → cjs/types}/examType.js +0 -0
  1770. /package/dist/{types → cjs/types}/facilityType.d.ts +0 -0
  1771. /package/dist/{types → cjs/types}/facilityType.js +0 -0
  1772. /package/dist/{types → cjs/types}/featureActionType.d.ts +0 -0
  1773. /package/dist/{types → cjs/types}/featureActionType.js +0 -0
  1774. /package/dist/{types → cjs/types}/feeHistoryDetailsType.d.ts +0 -0
  1775. /package/dist/{types → cjs/types}/feeHistoryDetailsType.js +0 -0
  1776. /package/dist/{types → cjs/types}/feeHistoryType.d.ts +0 -0
  1777. /package/dist/{types → cjs/types}/feeHistoryType.js +0 -0
  1778. /package/dist/{types → cjs/types}/feeReminderSettingType.d.ts +0 -0
  1779. /package/dist/{types → cjs/types}/feeReminderSettingType.js +0 -0
  1780. /package/dist/{types → cjs/types}/feeReminderType.d.ts +0 -0
  1781. /package/dist/{types → cjs/types}/feeReminderType.js +0 -0
  1782. /package/dist/{types → cjs/types}/feeReminderTypeType.d.ts +0 -0
  1783. /package/dist/{types → cjs/types}/feeReminderTypeType.js +0 -0
  1784. /package/dist/{types → cjs/types}/feeTypeHasTermsType.d.ts +0 -0
  1785. /package/dist/{types → cjs/types}/feeTypeHasTermsType.js +0 -0
  1786. /package/dist/{types → cjs/types}/feeTypeType.d.ts +0 -0
  1787. /package/dist/{types → cjs/types}/feeTypeType.js +0 -0
  1788. /package/dist/{types → cjs/types}/feedBackType.d.ts +0 -0
  1789. /package/dist/{types → cjs/types}/feedBackType.js +0 -0
  1790. /package/dist/{types → cjs/types}/feesCollectionType.d.ts +0 -0
  1791. /package/dist/{types → cjs/types}/feesCollectionType.js +0 -0
  1792. /package/dist/{types → cjs/types}/fileStorageType.d.ts +0 -0
  1793. /package/dist/{types → cjs/types}/fileStorageType.js +0 -0
  1794. /package/dist/{types → cjs/types}/floormanagementType.d.ts +0 -0
  1795. /package/dist/{types → cjs/types}/floormanagementType.js +0 -0
  1796. /package/dist/{types → cjs/types}/generateIdCardType.d.ts +0 -0
  1797. /package/dist/{types → cjs/types}/generateIdCardType.js +0 -0
  1798. /package/dist/{types → cjs/types}/greetingsType.d.ts +0 -0
  1799. /package/dist/{types → cjs/types}/greetingsType.js +0 -0
  1800. /package/dist/{types → cjs/types}/holidayType.d.ts +0 -0
  1801. /package/dist/{types → cjs/types}/holidayType.js +0 -0
  1802. /package/dist/{types → cjs/types}/homeWorkType.d.ts +0 -0
  1803. /package/dist/{types → cjs/types}/homeWorkType.js +0 -0
  1804. /package/dist/{types → cjs/types}/informationSupportType.d.ts +0 -0
  1805. /package/dist/{types → cjs/types}/informationSupportType.js +0 -0
  1806. /package/dist/{types → cjs/types}/inquiryType.d.ts +0 -0
  1807. /package/dist/{types → cjs/types}/inquiryType.js +0 -0
  1808. /package/dist/{types → cjs/types}/instituteEntityType.d.ts +0 -0
  1809. /package/dist/{types → cjs/types}/instituteEntityType.js +0 -0
  1810. /package/dist/{types → cjs/types}/instituteEntityTypeType.d.ts +0 -0
  1811. /package/dist/{types → cjs/types}/instituteEntityTypeType.js +0 -0
  1812. /package/dist/{types → cjs/types}/instituteSubscriptionPlanType.d.ts +0 -0
  1813. /package/dist/{types → cjs/types}/instituteSubscriptionPlanType.js +0 -0
  1814. /package/dist/{types → cjs/types}/instituteType.d.ts +0 -0
  1815. /package/dist/{types → cjs/types}/instituteType.js +0 -0
  1816. /package/dist/{types → cjs/types}/inventoryHistoryType.d.ts +0 -0
  1817. /package/dist/{types → cjs/types}/inventoryHistoryType.js +0 -0
  1818. /package/dist/{types → cjs/types}/inventoryType.d.ts +0 -0
  1819. /package/dist/{types → cjs/types}/inventoryType.js +0 -0
  1820. /package/dist/{types → cjs/types}/jobApply.d.ts +0 -0
  1821. /package/dist/{types → cjs/types}/jobApply.js +0 -0
  1822. /package/dist/{types → cjs/types}/lectureHistoryType.d.ts +0 -0
  1823. /package/dist/{types → cjs/types}/lectureHistoryType.js +0 -0
  1824. /package/dist/{types → cjs/types}/lectureType.d.ts +0 -0
  1825. /package/dist/{types → cjs/types}/lectureType.js +0 -0
  1826. /package/dist/{types → cjs/types}/masterLeaveType.d.ts +0 -0
  1827. /package/dist/{types → cjs/types}/masterLeaveType.js +0 -0
  1828. /package/dist/{types → cjs/types}/moduleFeatureType.d.ts +0 -0
  1829. /package/dist/{types → cjs/types}/moduleFeatureType.js +0 -0
  1830. /package/dist/{types → cjs/types}/moduleType.d.ts +0 -0
  1831. /package/dist/{types → cjs/types}/moduleType.js +0 -0
  1832. /package/dist/{types → cjs/types}/offerType.d.ts +0 -0
  1833. /package/dist/{types → cjs/types}/offerType.js +0 -0
  1834. /package/dist/{types → cjs/types}/paymentTermsType.d.ts +0 -0
  1835. /package/dist/{types → cjs/types}/paymentTermsType.js +0 -0
  1836. /package/dist/{types → cjs/types}/pdcChequeType.d.ts +0 -0
  1837. /package/dist/{types → cjs/types}/pdcChequeType.js +0 -0
  1838. /package/dist/{types → cjs/types}/pdcHistoryType.d.ts +0 -0
  1839. /package/dist/{types → cjs/types}/pdcHistoryType.js +0 -0
  1840. /package/dist/{types → cjs/types}/photosGalleryType.d.ts +0 -0
  1841. /package/dist/{types → cjs/types}/photosGalleryType.js +0 -0
  1842. /package/dist/{types → cjs/types}/plannerType.d.ts +0 -0
  1843. /package/dist/{types → cjs/types}/plannerType.js +0 -0
  1844. /package/dist/{types → cjs/types}/productType.d.ts +0 -0
  1845. /package/dist/{types → cjs/types}/productType.js +0 -0
  1846. /package/dist/{types → cjs/types}/projectAssessmentOptionType.d.ts +0 -0
  1847. /package/dist/{types → cjs/types}/projectAssessmentOptionType.js +0 -0
  1848. /package/dist/{types → cjs/types}/roleType.d.ts +0 -0
  1849. /package/dist/{types → cjs/types}/roleType.js +0 -0
  1850. /package/dist/{types → cjs/types}/rulesRegulationType.d.ts +0 -0
  1851. /package/dist/{types → cjs/types}/rulesRegulationType.js +0 -0
  1852. /package/dist/{types → cjs/types}/schoolFeeCollectionType.d.ts +0 -0
  1853. /package/dist/{types → cjs/types}/schoolFeeCollectionType.js +0 -0
  1854. /package/dist/{types → cjs/types}/schoolFeeType.d.ts +0 -0
  1855. /package/dist/{types → cjs/types}/schoolFeeType.js +0 -0
  1856. /package/dist/{types → cjs/types}/schoolOfferType.d.ts +0 -0
  1857. /package/dist/{types → cjs/types}/schoolOfferType.js +0 -0
  1858. /package/dist/{types → cjs/types}/sendNotificationType.d.ts +0 -0
  1859. /package/dist/{types → cjs/types}/sendNotificationType.js +0 -0
  1860. /package/dist/{types → cjs/types}/slotType.d.ts +0 -0
  1861. /package/dist/{types → cjs/types}/slotType.js +0 -0
  1862. /package/dist/{types → cjs/types}/subCategoryType.d.ts +0 -0
  1863. /package/dist/{types → cjs/types}/subCategoryType.js +0 -0
  1864. /package/dist/{types → cjs/types}/subjectHasFeeType.d.ts +0 -0
  1865. /package/dist/{types → cjs/types}/subjectHasFeeType.js +0 -0
  1866. /package/dist/{types → cjs/types}/subjectHasPayFeeHistoryType.d.ts +0 -0
  1867. /package/dist/{types → cjs/types}/subjectHasPayFeeHistoryType.js +0 -0
  1868. /package/dist/{types → cjs/types}/subjectIndexType.d.ts +0 -0
  1869. /package/dist/{types → cjs/types}/subjectIndexType.js +0 -0
  1870. /package/dist/{types → cjs/types}/subscriptionPlanType.d.ts +0 -0
  1871. /package/dist/{types → cjs/types}/subscriptionPlanType.js +0 -0
  1872. /package/dist/{types → cjs/types}/syllabusType.d.ts +0 -0
  1873. /package/dist/{types → cjs/types}/syllabusType.js +0 -0
  1874. /package/dist/{types → cjs/types}/taskManagementType.d.ts +0 -0
  1875. /package/dist/{types → cjs/types}/taskManagementType.js +0 -0
  1876. /package/dist/{types → cjs/types}/testimonialType.d.ts +0 -0
  1877. /package/dist/{types → cjs/types}/testimonialType.js +0 -0
  1878. /package/dist/{types → cjs/types}/toDoType.d.ts +0 -0
  1879. /package/dist/{types → cjs/types}/toDoType.js +0 -0
  1880. /package/dist/{types → cjs/types}/tripType.d.ts +0 -0
  1881. /package/dist/{types → cjs/types}/tripType.js +0 -0
  1882. /package/dist/{types → cjs/types}/typeManagementType.d.ts +0 -0
  1883. /package/dist/{types → cjs/types}/typeManagementType.js +0 -0
  1884. /package/dist/{types → cjs/types}/uniqueNumberCounterType.d.ts +0 -0
  1885. /package/dist/{types → cjs/types}/uniqueNumberCounterType.js +0 -0
  1886. /package/dist/{types → cjs/types}/userBookAssessmentType.d.ts +0 -0
  1887. /package/dist/{types → cjs/types}/userBookAssessmentType.js +0 -0
  1888. /package/dist/{types → cjs/types}/userDetailsType.d.ts +0 -0
  1889. /package/dist/{types → cjs/types}/userDetailsType.js +0 -0
  1890. /package/dist/{types → cjs/types}/userFeeTypeByAccountType.d.ts +0 -0
  1891. /package/dist/{types → cjs/types}/userFeeTypeByAccountType.js +0 -0
  1892. /package/dist/{types → cjs/types}/userFeeTypeType.d.ts +0 -0
  1893. /package/dist/{types → cjs/types}/userFeeTypeType.js +0 -0
  1894. /package/dist/{types → cjs/types}/userHasAnnouncementType.d.ts +0 -0
  1895. /package/dist/{types → cjs/types}/userHasAnnouncementType.js +0 -0
  1896. /package/dist/{types → cjs/types}/userHasBatchType.d.ts +0 -0
  1897. /package/dist/{types → cjs/types}/userHasBatchType.js +0 -0
  1898. /package/dist/{types → cjs/types}/userHasCourseType.d.ts +0 -0
  1899. /package/dist/{types → cjs/types}/userHasCourseType.js +0 -0
  1900. /package/dist/{types → cjs/types}/userHasDeviceType.d.ts +0 -0
  1901. /package/dist/{types → cjs/types}/userHasDeviceType.js +0 -0
  1902. /package/dist/{types → cjs/types}/userHasFeeTermsType.d.ts +0 -0
  1903. /package/dist/{types → cjs/types}/userHasFeeTermsType.js +0 -0
  1904. /package/dist/{types → cjs/types}/userHasFileType.d.ts +0 -0
  1905. /package/dist/{types → cjs/types}/userHasFileType.js +0 -0
  1906. /package/dist/{types → cjs/types}/userHasHomeWorkType.d.ts +0 -0
  1907. /package/dist/{types → cjs/types}/userHasHomeWorkType.js +0 -0
  1908. /package/dist/{types → cjs/types}/userHasInventoryHistoryType.d.ts +0 -0
  1909. /package/dist/{types → cjs/types}/userHasInventoryHistoryType.js +0 -0
  1910. /package/dist/{types → cjs/types}/userHasInventoryType.d.ts +0 -0
  1911. /package/dist/{types → cjs/types}/userHasInventoryType.js +0 -0
  1912. /package/dist/{types → cjs/types}/userHasLeaveHistoryType.d.ts +0 -0
  1913. /package/dist/{types → cjs/types}/userHasLeaveHistoryType.js +0 -0
  1914. /package/dist/{types → cjs/types}/userHasLeaveType.d.ts +0 -0
  1915. /package/dist/{types → cjs/types}/userHasLeaveType.js +0 -0
  1916. /package/dist/{types → cjs/types}/userHasOffer.d.ts +0 -0
  1917. /package/dist/{types → cjs/types}/userHasOffer.js +0 -0
  1918. /package/dist/{types → cjs/types}/userHasParentType.d.ts +0 -0
  1919. /package/dist/{types → cjs/types}/userHasParentType.js +0 -0
  1920. /package/dist/{types → cjs/types}/userHasRoleType.d.ts +0 -0
  1921. /package/dist/{types → cjs/types}/userHasRoleType.js +0 -0
  1922. /package/dist/{types → cjs/types}/userHasRollNumberType.d.ts +0 -0
  1923. /package/dist/{types → cjs/types}/userHasRollNumberType.js +0 -0
  1924. /package/dist/{types → cjs/types}/userHasStorageType.d.ts +0 -0
  1925. /package/dist/{types → cjs/types}/userHasStorageType.js +0 -0
  1926. /package/dist/{types → cjs/types}/userHasSubjectFeeType.d.ts +0 -0
  1927. /package/dist/{types → cjs/types}/userHasSubjectFeeType.js +0 -0
  1928. /package/dist/{types → cjs/types}/userInstituteMetaType.d.ts +0 -0
  1929. /package/dist/{types → cjs/types}/userInstituteMetaType.js +0 -0
  1930. /package/dist/{types → cjs/types}/userLeaveRequestType.d.ts +0 -0
  1931. /package/dist/{types → cjs/types}/userLeaveRequestType.js +0 -0
  1932. /package/dist/{types → cjs/types}/userMetaType.d.ts +0 -0
  1933. /package/dist/{types → cjs/types}/userMetaType.js +0 -0
  1934. /package/dist/{types → cjs/types}/userPayoutDetailsType.d.ts +0 -0
  1935. /package/dist/{types → cjs/types}/userPayoutDetailsType.js +0 -0
  1936. /package/dist/{types → cjs/types}/userPayoutHistoryType.d.ts +0 -0
  1937. /package/dist/{types → cjs/types}/userPayoutHistoryType.js +0 -0
  1938. /package/dist/{types → cjs/types}/userPayoutType.d.ts +0 -0
  1939. /package/dist/{types → cjs/types}/userPayoutType.js +0 -0
  1940. /package/dist/{types → cjs/types}/userProjectAssessmentOptionType.d.ts +0 -0
  1941. /package/dist/{types → cjs/types}/userProjectAssessmentOptionType.js +0 -0
  1942. /package/dist/{types → cjs/types}/userRequiredStepsType.d.ts +0 -0
  1943. /package/dist/{types → cjs/types}/userRequiredStepsType.js +0 -0
  1944. /package/dist/{types → cjs/types}/userSchoolMetaType.d.ts +0 -0
  1945. /package/dist/{types → cjs/types}/userSchoolMetaType.js +0 -0
  1946. /package/dist/{types → cjs/types}/userType.d.ts +0 -0
  1947. /package/dist/{types → cjs/types}/userType.js +0 -0
  1948. /package/dist/{types → cjs/types}/vehicleType.d.ts +0 -0
  1949. /package/dist/{types → cjs/types}/vehicleType.js +0 -0
  1950. /package/dist/{types → cjs/types}/vendorType.d.ts +0 -0
  1951. /package/dist/{types → cjs/types}/vendorType.js +0 -0
  1952. /package/dist/{types → cjs/types}/videoAnalystType.d.ts +0 -0
  1953. /package/dist/{types → cjs/types}/videoAnalystType.js +0 -0
  1954. /package/dist/{types → cjs/types}/walletHistoryType.d.ts +0 -0
  1955. /package/dist/{types → cjs/types}/walletHistoryType.js +0 -0
  1956. /package/dist/{types → cjs/types}/walletTransactionType.d.ts +0 -0
  1957. /package/dist/{types → cjs/types}/walletTransactionType.js +0 -0
  1958. /package/dist/{types → cjs/types}/walletType.d.ts +0 -0
  1959. /package/dist/{types → cjs/types}/walletType.js +0 -0
  1960. /package/dist/{types → cjs/types}/workingDayType.d.ts +0 -0
  1961. /package/dist/{types → cjs/types}/workingDayType.js +0 -0
  1962. /package/dist/{types → cjs/types}/workingShiftType.d.ts +0 -0
  1963. /package/dist/{types → cjs/types}/workingShiftType.js +0 -0
@@ -0,0 +1,419 @@
1
+ import { IAcademicCalendarModelAttributes } from './interfaces/academicCalendarInterface.js';
2
+ import { IAccountHasReceiptDetailsInterfaceModelAttributes } from './interfaces/accountHasReceiptDetailsInterface.js';
3
+ import { IAnnouncementModelAttributes } from './interfaces/announcementInterface.js';
4
+ import { IApproveRequestModelAttributes } from './interfaces/approvalRequestInterface.js';
5
+ import { IAreaModelAttributes } from './interfaces/areaInterface.js';
6
+ import { IAttendanceUser, IAttendanceModelAttributes } from './interfaces/attendanceInterface.js';
7
+ import { IBankAccountDetailsInterfaceModelAttributes } from './interfaces/bankAccountDetailsInterface.js';
8
+ import { IBannerModelAttributes } from './interfaces/bannerInterface.js';
9
+ import { IBatchModelAttributes } from './interfaces/batchInterface.js';
10
+ import { IBatchSubjectBookAssessmentModelAttributes } from './interfaces/batchSubjectBookAssessmentInterface.js';
11
+ import { IBatchSubjectProjectAssessmentModelAttributes } from './interfaces/batchSubjectProjectAssessmentInterface.js';
12
+ import { ICommentSchema, ILikeSchema, IShareListSchema, ISubTopicSchema, IBlogModelAttributes } from './interfaces/blogInterface.js';
13
+ import { IBookAssessmentDateModelAttributes } from './interfaces/bookAssessmentDateInterface.js';
14
+ import { ICareerModelAttributes } from './interfaces/careerInterface.js';
15
+ import { ICategoriesModelAttributes } from './interfaces/categoriesInterface.js';
16
+ import { ICertificatesHistoryAttributes } from './interfaces/certificatesHistoryInterface.js';
17
+ import { ICertificatesManagementAttributes } from './interfaces/certificatesManagementInterface.js';
18
+ import { ICityAttributes } from './interfaces/cityInterface.js';
19
+ import { IClassRoomModelAttributes } from './interfaces/classRoomInterface.js';
20
+ import { ICloudStorageModelAttributes } from './interfaces/cloudStorageInterface.js';
21
+ import { ICoinPurchaseOfferModelAttributes } from './interfaces/coinPurchaseOfferInterface.js';
22
+ import { IRowSchema, IColumnModelAttributes } from './interfaces/columnInterface.js';
23
+ import { IDefaultAttributes, IEmailOptions, ICommanDao, ICountDao, IDeleteDao, IFindAllDao, IFindOneDao, IUpsertDao, ICommanMongoDao } from './interfaces/commanInterface.js';
24
+ import { IContactFeedBackAttributes } from './interfaces/contactFeedBackInterface.js';
25
+ import { ICountryAttributes } from './interfaces/countryInterface.js';
26
+ import { ICourseHasVisitorsModelAttributes } from './interfaces/courseHasVisitorsInterface.js';
27
+ import { ICourseModelAttributes } from './interfaces/courseInterface.js';
28
+ import { IDailyBookModelAttributes } from './interfaces/dailyBookInterface.js';
29
+ import { IModuleList, IDashboardManagementAttributes } from './interfaces/dashboardManagementInterface.js';
30
+ import { IDriverModelAttributes } from './interfaces/driverInterface.js';
31
+ import { IEntityGroupModelAttributes } from './interfaces/entityGroupInterface.js';
32
+ import { IEventHasBatch, IEventModelAttributes } from './interfaces/eventInterface.js';
33
+ import { IExamGroupDaysAttributes, IExamGroupStandardByDaysAttributes, IExamGroupModelAttributes } from './interfaces/examGroupInterface.js';
34
+ import { IAnswerSheetQuestion, IExamHasAnswerSheetModelAttributes } from './interfaces/examHasAnswerSheetInterface.js';
35
+ import { IExamHasBatch, IExamModelAttributes } from './interfaces/examInterface.js';
36
+ import { IFacilityAttributes } from './interfaces/facilityInterface.js';
37
+ import { IFeatureActionAttributes } from './interfaces/featureActionInterface.js';
38
+ import { IFeeHistoryDetailsModelAttributes } from './interfaces/feeHistoryDetailsInterface.js';
39
+ import { IFeeHistoryModelAttributes } from './interfaces/feeHistoryInterface.js';
40
+ import { IFeeReminderModelAttributes } from './interfaces/feeReminderInterface.js';
41
+ import { IFeeReminderSettingModelAttributes } from './interfaces/feeReminderSettingInterface.js';
42
+ import { IFeeReminderTypeModelAttributes } from './interfaces/feeReminderTypeInterface.js';
43
+ import { IFeeTypeHasTermsModelAttributes } from './interfaces/feeTypeHasTermsInterface.js';
44
+ import { IFeeTypeModelAttributes } from './interfaces/feeTypeInterface.js';
45
+ import { IConversation, IFeedBackModelAttributes } from './interfaces/feedBackInterface.js';
46
+ import { IFeesCollectionModelAttributes } from './interfaces/feesCollectionInterface.js';
47
+ import { IFileStorageAttributes } from './interfaces/fileStorageInterface.js';
48
+ import { IFloorManagementModelAttributes } from './interfaces/floorManagementInterface.js';
49
+ import { IGenarateIdCardModelAttributes } from './interfaces/generateIdCardInterface.js';
50
+ import { IGreetingsModelAttributes } from './interfaces/greetingsInterface.js';
51
+ import { IHolidayHasBatch, IHolidayModelAttributes } from './interfaces/holidayInterface.js';
52
+ import { IHomeWorkModelAttributes } from './interfaces/homeworkInterface.js';
53
+ import { IDescription, IInformationSupportModelAttributes } from './interfaces/informationSupportInterface.js';
54
+ import { IBasicInformation, IAcademicInformation, ILastSchool, IGuardianInformation, IInquiryModelAttributes } from './interfaces/inquiryInterface.js';
55
+ import { IInstituteEntityAttributes } from './interfaces/instituteEntityInterface.js';
56
+ import { IInstituteEntityTypeAttributes } from './interfaces/instituteEntityTypeInterface.js';
57
+ import { IInstituteAttributes } from './interfaces/instituteInterface.js';
58
+ import { IInstituteSubscriptionPlanModelAttributes } from './interfaces/instituteSubscriptionPlanInterface.js';
59
+ import { IInventoryHistoryModelAttributes } from './interfaces/inventoryHistoryInterface.js';
60
+ import { IInventoryModelAttributes } from './interfaces/inventoryInterface.js';
61
+ import { IPurchaseSchema, IFileStorageItemsSchema, IInvoiceModelAttributes } from './interfaces/invoiceInterface.js';
62
+ import { IQualifications, IExperience, IDocuments, IJobApplyAttributes } from './interfaces/jobApplyInterface.js';
63
+ import { ILectureHistoryModelAttributes } from './interfaces/lectureHistoryInterface.js';
64
+ import { ILectureModelAttributes } from './interfaces/lectureInterface.js';
65
+ import { IMasterLeaveModelAttributes } from './interfaces/masterLeaveInterface.js';
66
+ import { IModuleFeatureAttributes } from './interfaces/moduleFeatureInterface.js';
67
+ import { IModuleAttributes } from './interfaces/moduleInterface.js';
68
+ import { IOffersModelAttributes } from './interfaces/offersInterface.js';
69
+ import { IPaymentTermsModelAttributes } from './interfaces/paymentTermsInterface.js';
70
+ import { IPdcChequeModelAttributes } from './interfaces/pdcChequeInterface.js';
71
+ import { IPdcHistoryModelAttributes } from './interfaces/pdcHistoryInterface.js';
72
+ import { IGalleryFile, IGalleryAlbumAttributes } from './interfaces/photosGalleryInterface.js';
73
+ import { IPincodeAttributes } from './interfaces/pincodeInterface.js';
74
+ import { IPlannerLectureContentAttributes, IPlannerLectureAttributes, IPlannerTimeSlotAttributes, IPlannerModelAttributes } from './interfaces/plannerInterface.js';
75
+ import { IProductModelAttributes } from './interfaces/productInterface.js';
76
+ import { IProjectAssessmentOptionModelAttributes } from './interfaces/projectAssessmentOptionInterface.js';
77
+ import { IReplaceTeacherBatchesSchema, IReplaceTeacherModelAttributes } from './interfaces/replaceTeacherInterface.js';
78
+ import { IRoleAttributes, ICreateRolePermissions } from './interfaces/roleInterface.js';
79
+ import { IRulesRegulationAttributes } from './interfaces/rulesRegulationInterface.js';
80
+ import { ISchoolFeesCollectionModelAttributes } from './interfaces/schoolFeeCollectionInterface.js';
81
+ import { ITermsSchema, IFeeSchema, ISchoolFeeModelAttributes } from './interfaces/schoolFeeInterface.js';
82
+ import { ISchoolOffersModelAttributes } from './interfaces/schoolOfferInterface.js';
83
+ import { INotificationModelAttributes, INotification } from './interfaces/sendNotificationInerface.js';
84
+ import { ISlotModelAttributes } from './interfaces/slotInterface.js';
85
+ import { IStateAttributes } from './interfaces/stateInterface.js';
86
+ import { ISubCategoriesModelAttributes } from './interfaces/subCategoriesInterface.js';
87
+ import { ISubjectHasFeeModelAttributes } from './interfaces/subjectHasFeeInterface.js';
88
+ import { ISubjectHasPayFeeHistoryModelAttributes } from './interfaces/subjectHasPayFeeHistoryInterface.js';
89
+ import { IChapterFileAttributes, IChapterIndexAttributes, IAssignedUsersAttributes, ISubjectIndexModelAttributes } from './interfaces/subjectIndexInterface.js';
90
+ import { ISubscriptionPlanFiles, ISubscriptionPlanModelAttributes } from './interfaces/subscriptionPlanInterface.js';
91
+ import { ISyllabusModelAttributes } from './interfaces/syllabusInterface.js';
92
+ import { ITaskConversationsAttributes, ITaskManagementModelAttributes } from './interfaces/taskManagementInterface.js';
93
+ import { ITestimonialModelAttributes } from './interfaces/testimonialInterface.js';
94
+ import { IToDoModelAttributes } from './interfaces/toDoInterface.js';
95
+ import { ITokenAttributes, ITokenDao, ITokenService } from './interfaces/tokenInterface.js';
96
+ import { ITripModelAttributes } from './interfaces/tripInterface.js';
97
+ import { ITypeManagementModelAttributes } from './interfaces/typeManagementInterface.js';
98
+ import { IUniqueNumberCounterModelAttributes } from './interfaces/uniqueNumberCounterInterface.js';
99
+ import { IUserBookAssessmentModelAttributes } from './interfaces/userBookAssessmentInterface.js';
100
+ import { IUserHasFiles, IUserHasQualification, IUserSchoolInfo, IExperienceSchema, ILastSchoolSchema, IAddressSchema, IEmergencyContactSchema, IWorkingDetailsSchema, IUserDetailsAttributes } from './interfaces/userDetailsInterface.js';
101
+ import { collectionHasUserFeeType, IUserFeeTypeByAccountModelAttributes } from './interfaces/userFeeTypeByAccountInterface.js';
102
+ import { IUserFeeTypeModelAttributes } from './interfaces/userFeeTypeInterface.js';
103
+ import { IUserHasAnnouncementModelAttributes } from './interfaces/userHasAnnouncementInterface.js';
104
+ import { IUserHasBatchModelAttributes } from './interfaces/userHasBatchInterface.js';
105
+ import { IUserHasCourseModelAttributes } from './interfaces/userHasCourseInterface.js';
106
+ import { IUserHasDeviceModelAttributes } from './interfaces/userHasDeviceInterface.js';
107
+ import { IUserHasFeeTermsModelAttributes, IUserPayFeeAttributes } from './interfaces/userHasFeeTermsInterface.js';
108
+ import { IUserHasFileModelAttributes } from './interfaces/userHasFileInterface.js';
109
+ import { IUserHasHomeWorkModelAttributes } from './interfaces/userHasHomeWorkInterface.js';
110
+ import { IUserHasInventoryHistoryModelAttributes } from './interfaces/userHasInventoryHistoryInterface.js';
111
+ import { IUserHasInventoryModelAttributes } from './interfaces/userHasInventoryInterface.js';
112
+ import { IUserHasLeaveHistoryModelAttributes } from './interfaces/userHasLeaveHistoryInterface.js';
113
+ import { IUserHasLeaveModelAttributes } from './interfaces/userHasLeaveInterface.js';
114
+ import { IUserHasOfferModelAttributes } from './interfaces/userHasOfferInterface.js';
115
+ import { IUserHasParentAttributes } from './interfaces/userHasParentInterface.js';
116
+ import { IUserHasRoleAttributes } from './interfaces/userHasRoleInterface.js';
117
+ import { IUserHasRollNumberModelAttributes } from './interfaces/userHasRollNumberInterface.js';
118
+ import { IUserHasStorageModelAttributes } from './interfaces/userHasStorageInterface.js';
119
+ import { IUserHasSubjectFeeModelAttributes } from './interfaces/userHasSubjectFeeInterface.js';
120
+ import { IUserInstituteMetaSlots, IUserInstituteMetaAttributes } from './interfaces/userInstituteMetaInterface.js';
121
+ import { IUserAttributes } from './interfaces/userInterface.js';
122
+ import { IUserLeaveRequestModelAttributes } from './interfaces/userLeaveRequestInterface.js';
123
+ import { IUserMetaAttributes } from './interfaces/userMetaInterface.js';
124
+ import { IUserPayoutDetailsModelAttributes } from './interfaces/userPayoutDetailsInterface.js';
125
+ import { IUserPayoutHistoryModelAttributes } from './interfaces/userPayoutHistoryInterface.js';
126
+ import { IUserPayoutModelAttributes } from './interfaces/userPayoutInterface.js';
127
+ import { IUserProjectAssessmentOptionModelAttributes } from './interfaces/userProjectAssessmentOptionInterface.js';
128
+ import { IUserRequiredStepsAttributes } from './interfaces/userRequiredStepsInterface.js';
129
+ import { ITrustInformation, ICorrespondentInformation, ITrustiesInformation, IBuildingInformation, IHscSscSchema, ICoInfrastructureSchema, ISchoolInformation, IUserSchoolMetaModelAttributes } from './interfaces/userSchoolMetaInterface.js';
130
+ import { IVehicleModelAttributes } from './interfaces/vehicleInterface.js';
131
+ import { IVendorModelAttributes } from './interfaces/vendorManagementInterface.js';
132
+ import { IVideoAnalystModelAttributes } from './interfaces/videoAnalystInterface.js';
133
+ import { IWalletHistoryModelAttributes } from './interfaces/walletHistoryInterface.js';
134
+ import { IWalletModelAttributes } from './interfaces/walletInterface.js';
135
+ import { IWalletTransactionUsers, IWalletTransactionModelAttributes } from './interfaces/walletTransactionInterface.js';
136
+ import { IWorkingDayAttributes } from './interfaces/workingDayInterface.js';
137
+ import { IWorkingShiftAttributes } from './interfaces/workingShiftInterface.js';
138
+ import { uploadFileToS3, getPresignedUrl } from './helpers/s3Uploader.js';
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.js';
140
+ import { MongooseCommonService } from './services/Concrete/mongooseCommonService.js';
141
+ import SequelizeCommonService from './services/Concrete/sequelizeCommonService.js';
142
+ import { IMongooseCommonService } from './services/Contracts/IMongooseCommonService.js';
143
+ import { ISequelizeCommonService } from './services/Contracts/ISequelizeCommonService.js';
144
+ import { TAcademicCalendarModelCreationAttributes, TUpdateAcademicCalenderStatusParams } from './types/academicCalendarType.js';
145
+ import { TAccountHasReceiptDetailsModelCreationAttributes, TAccountHasReceiptDetailAttributesWithAssociations } from './types/accountHasReceiptDetailsType.js';
146
+ import { TAnnouncementModelCreationAttributes, TAnnouncementCreateParams } from './types/announcementType.js';
147
+ import { TApproveRequestCreationAttributes } from './types/approveRequestType.js';
148
+ import { TAeraModelCreationAttributes } from './types/areaType.js';
149
+ import { TAttendanceCreationAttributes } from './types/attendanceType.js';
150
+ import { TBankAccountDetailsModelCreationAttributes } from './types/bankAccountDetailsType.js';
151
+ import { TBannerModelCreationAttributes, TBannerAttributesWithAssociations } from './types/bannerType.js';
152
+ import { TBatchSubjectBookAssessmentModelCreationAttributes, TBatchSubjectBookAssessmentAttributesWithAssociations } from './types/batchSubjectBookAssessmentType.js';
153
+ import { TBatchSubjectProjectAssessmentModelCreationAttributes, TBatchSubjectProjectAssessmentAttributesWithAssociations } from './types/batchSubjectProjectAssessmentType.js';
154
+ import { TBatchModelCreationAttributes, TBatchWithAssociationsAttributes } from './types/batchType.js';
155
+ import { TBlogModelCreationAttributes } from './types/blogType.js';
156
+ import { TBookAssessmentDateModelCreationAttributes, TBookAssessmentDateAttributesWithAssociations } from './types/bookAssessmentDateType.js';
157
+ import { TCareerModelCreationAttributes } from './types/careerType.js';
158
+ import { TCategoriesModelCreationAttributes } from './types/categoriesType.js';
159
+ import { TCertificatesHistoryModelCreationAttributes } from './types/certificatesHistoryType.js';
160
+ import { TCertificatesManagementModelCreationAttributes } from './types/certificatesManagementType.js';
161
+ import { TClassRoomModelCreationAttributes } from './types/classRoomType.js';
162
+ import { TCloudStorageModelCreationAttributes } from './types/cloudStorageType.js';
163
+ import { TCoinPurchaseOfferModelCreationAttributes } from './types/coinPurchaseOfferType.js';
164
+ import { TPaginationOptions } from './types/commonType.js';
165
+ import { TContactFeedBackModelCreationAttributes } from './types/contactFeedBackType.js';
166
+ import { TCourseHasVisitorsModelCreationAttributes } from './types/courseHasVisitorsType.js';
167
+ import { TCourseModelCreationAttributes } from './types/courseType.js';
168
+ import { TDailyBookModelCreationAttributes } from './types/dailyBookType.js';
169
+ import { TDashboardManagementModelCreationAttributes } from './types/dashboardManagementType.js';
170
+ import { TDriverModelCreationAttributes, TDriverWithAssociation } from './types/driverType.js';
171
+ import { TEntityGroupModelCreationAttributes } from './types/entityGroupType.js';
172
+ import { TEventModelCreationAttributes } from './types/eventType.js';
173
+ import { TExamGroupCreationAttributes, TUpdateExamGroupDataParams } from './types/examGroupType.js';
174
+ import { TExamHasAnswerSheetModelCreationAttributes } from './types/examHasAnswerSheetType.js';
175
+ import { TExamModelCreationAttributes, TExamAttributesWithAssociations } from './types/examType.js';
176
+ import { TFacilityCreationAttributes } from './types/facilityType.js';
177
+ import { TFeatureActionCreationAttributes } from './types/featureActionType.js';
178
+ import { TFeeHistoryDetailsModelCreationAttributes, TFeeHistoryDetailsWithAssociation } from './types/feeHistoryDetailsType.js';
179
+ import { TFeeHistoryModelCreationAttributes, TFeeHistoryAttributesWithAssociations } from './types/feeHistoryType.js';
180
+ import { TFeeReminderSettingModelCreationAttributes } from './types/feeReminderSettingType.js';
181
+ import { TFeeReminderModelCreationAttributes } from './types/feeReminderType.js';
182
+ import { TFeeReminderTypeModelCreationAttributes } from './types/feeReminderTypeType.js';
183
+ import { TFeeTypeHasTermsModelCreationAttributes } from './types/feeTypeHasTermsType.js';
184
+ import { TFeeTypeModelCreationAttributes } from './types/feeTypeType.js';
185
+ import { TFeedBackModelCreationAttributes } from './types/feedBackType.js';
186
+ import { TFeesCollectionModelCreationAttributes } from './types/feesCollectionType.js';
187
+ import { TFileStorageModelCreationAttributes } from './types/fileStorageType.js';
188
+ import { TFloorManagementCreationAttributs } from './types/floormanagementType.js';
189
+ import { TGenarateIdCardModelAttributes } from './types/generateIdCardType.js';
190
+ import { TGreetingsModelCreationAttributes, TGreetingAttributesWithAssociations } from './types/greetingsType.js';
191
+ import { THolidayModelCreationAttributes } from './types/holidayType.js';
192
+ import { THomeWorkModelCreationAttributes } from './types/homeWorkType.js';
193
+ import { TInformationSupportModelCreationAttributes } from './types/informationSupportType.js';
194
+ import { TInquiryModelCreationAttributes } from './types/inquiryType.js';
195
+ import { TInstituteEntityCreationAttributes, TInstituteEntityWithAssociation } from './types/instituteEntityType.js';
196
+ import { TInstituteEntityTypeCreationAttributes } from './types/instituteEntityTypeType.js';
197
+ import { TInstituteSubscriptionPlanModelCreationAttributes } from './types/instituteSubscriptionPlanType.js';
198
+ import { TInstituteCreationAttributes } from './types/instituteType.js';
199
+ import { TInventoryHistoryModelCreationAttributes } from './types/inventoryHistoryType.js';
200
+ import { TInventoryModelCreationAttributes } from './types/inventoryType.js';
201
+ import { TJobApplyCreationAttributes } from './types/jobApply.js';
202
+ import { TLectureHistoryModelCreationAttributes, TLectureHistoryWithAssociation } from './types/lectureHistoryType.js';
203
+ import { TLectureModelCreationAttributes, TLectureWithAssociation } from './types/lectureType.js';
204
+ import { TMasterLeaveModelCreationAttributes } from './types/masterLeaveType.js';
205
+ import { TModuleFeatureCreationAttributes } from './types/moduleFeatureType.js';
206
+ import { TModuleCreationAttributes } from './types/moduleType.js';
207
+ import { TOfferModelCreationAttributes } from './types/offerType.js';
208
+ import { TPaymentTermsModelCreationAttributes } from './types/paymentTermsType.js';
209
+ import { TPdcChequeModelCreationAttributes, TPdcChequeWithAssociation } from './types/pdcChequeType.js';
210
+ import { TPdcHistoryModelCreationAttributes } from './types/pdcHistoryType.js';
211
+ import { TPhotosGalleryModelCreationAttributes } from './types/photosGalleryType.js';
212
+ import { TPlannerCreationAttributes, TUpdatePlannerDataParams } from './types/plannerType.js';
213
+ import { TProductsModelCreationAttributes } from './types/productType.js';
214
+ import { TProjectAssessmentOptionModelCreationAttributes, TProjectAssessmentOptionAttributesWithAssociations } from './types/projectAssessmentOptionType.js';
215
+ import { TRoleCreationAttributes, TRolePermission } from './types/roleType.js';
216
+ import { TRulesRegulationCreationAttributes } from './types/rulesRegulationType.js';
217
+ import { TSchoolFeeCollectionModelCreationAttributes } from './types/schoolFeeCollectionType.js';
218
+ import { TSchoolFeeModelCreationAttributes } from './types/schoolFeeType.js';
219
+ import { TSchoolOfferModelCreationAttributes } from './types/schoolOfferType.js';
220
+ import { TNotificationModelCreationAttributes } from './types/sendNotificationType.js';
221
+ import { TSlotModelCreationAttributes } from './types/slotType.js';
222
+ import { TSubCategoriesModelCreationAttributes } from './types/subCategoryType.js';
223
+ import { TSubjectHasFeeModelCreationAttributes } from './types/subjectHasFeeType.js';
224
+ import { TSubjectHasPayFeeHistoryModelCreationAttributes } from './types/subjectHasPayFeeHistoryType.js';
225
+ import { TSubjectIndexModelCreationAttributes, TSubjectIndexAttributesWithAssociations } from './types/subjectIndexType.js';
226
+ import { TSubscriptionPlanCreationAttributes } from './types/subscriptionPlanType.js';
227
+ import { TSyllabusCreationAttributes, TSyllabusAttributesWithAssociations } from './types/syllabusType.js';
228
+ import { TTaskManagementCreationAttributes } from './types/taskManagementType.js';
229
+ import { TTestimonialModelCreationAttributes, TTestimonialAttributesWithAssociations } from './types/testimonialType.js';
230
+ import { TToDoModelCreationAttributes, TToDoWithAssociation } from './types/toDoType.js';
231
+ import { TTripModelCreationAttributes } from './types/tripType.js';
232
+ import { TTypeManagementModelCreationAttributes } from './types/typeManagementType.js';
233
+ import { TUniqueNumberCounterCreationAttributes } from './types/uniqueNumberCounterType.js';
234
+ import { TUserBookAssessmentModelCreationAttributes, TUserBookAssessmentAttributesWithAssociations } from './types/userBookAssessmentType.js';
235
+ import { TUserDetailsModelCreationAttributes } from './types/userDetailsType.js';
236
+ import { TUserFeeTypeByAccountModelCreationAttributes } from './types/userFeeTypeByAccountType.js';
237
+ import { TUserFeeTypeModelCreationAttributes, TUserFeeTypeModelCreationWithBankIdAttributes } from './types/userFeeTypeType.js';
238
+ import { TUserHasAnnouncementModelCreationAttributes } from './types/userHasAnnouncementType.js';
239
+ import { TUserHasBatchModelCreationAttributes, TUserHasBatchModelAttributesWithAssociations } from './types/userHasBatchType.js';
240
+ import { TUserHasCourseModelCreationAttributes } from './types/userHasCourseType.js';
241
+ import { TUserHasDeviceModelCreationAttributes } from './types/userHasDeviceType.js';
242
+ import { TUserHasFeeTermsModelCreationAttributes } from './types/userHasFeeTermsType.js';
243
+ import { TUserHasFileCreationAttributes } from './types/userHasFileType.js';
244
+ import { TUserHasHomeWorkAttributes } from './types/userHasHomeWorkType.js';
245
+ import { TUserHasInventoryHistoryModelCreationAttributes } from './types/userHasInventoryHistoryType.js';
246
+ import { TUserHasInventoryModelCreationAttributes } from './types/userHasInventoryType.js';
247
+ import { TUserHasLeaveHistoryModelCreationAttributes } from './types/userHasLeaveHistoryType.js';
248
+ import { TUserHasLeaveModelCreationAttributes } from './types/userHasLeaveType.js';
249
+ import { TUserHasOfferModelCreationAttributes } from './types/userHasOffer.js';
250
+ import { TUserHasParentCreationAttributes, TCreateParentUserType, TCreateParentType } from './types/userHasParentType.js';
251
+ import { TUserHasRoleCreationAttributes } from './types/userHasRoleType.js';
252
+ import { TUserHasRollNumberModelCreationAttributes } from './types/userHasRollNumberType.js';
253
+ import { TUserHasStorageModelCreationAttributes } from './types/userHasStorageType.js';
254
+ import { TUserHasSubjectFeeModelCreationAttributes } from './types/userHasSubjectFeeType.js';
255
+ import { TUserInstituteMetaCreationAttributes } from './types/userInstituteMetaType.js';
256
+ import { TUserLeaveRequestModelCreationAttributes } from './types/userLeaveRequestType.js';
257
+ import { TUserMetaCreationAttributes, TParentsUserMetaModelAttributes, TGuardiansUserMetaModelAttributes } from './types/userMetaType.js';
258
+ import { TUserPayoutDetailsModelCreationAttributes } from './types/userPayoutDetailsType.js';
259
+ import { TUserPayoutHistoryModelCreationAttributes } from './types/userPayoutHistoryType.js';
260
+ import { TUserPayoutModelCreationAttributes, TUserPayoutWithDetails } from './types/userPayoutType.js';
261
+ import { TUserProjectAssessmentOptionModelCreationAttributes, TUserProjectAssessmentOptionAttributesWithAssociations } from './types/userProjectAssessmentOptionType.js';
262
+ import { TUserRequiredStepsAttributes } from './types/userRequiredStepsType.js';
263
+ import { TUserSchoolMetaModelCreationAttributes } from './types/userSchoolMetaType.js';
264
+ import { TUserCreationAttributes, TUserParentAttributes, TGenerateTokenRes } from './types/userType.js';
265
+ import { TVehicleModelCreationAttributes } from './types/vehicleType.js';
266
+ import { TVendorCreationAttributes } from './types/vendorType.js';
267
+ import { TVideoAnalystCreationAttributes } from './types/videoAnalystType.js';
268
+ import { TWalletHistoryModelCreationAttributes } from './types/walletHistoryType.js';
269
+ import { TWalletTransactionModelCreationAttributes } from './types/walletTransactionType.js';
270
+ import { TWalletModelCreationAttributes } from './types/walletType.js';
271
+ import { TWorkingDayCreationAttributes } from './types/workingDayType.js';
272
+ import { TWorkingShiftCreationAttributes } from './types/workingShiftType.js';
273
+ import { s3 } from './configs/aws.js';
274
+ import { ENV_VARIABLE } from './configs/env.js';
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, API_URL, GOOGLE_AUTH, META_AUTH, APPLE_AUTH, 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, PAYMENT_PROCESSING_STATUS_URL, PAYMENT_PROCESSING_PAGE_URL, PAYMENT_PROCESSING_CALLBACK_URL, INITIAL_FREE_COIN, INITIAL_FREE_STORAGE_IN_GB, FREE_SUBSCRIPTION_SEQUENCE } from './constants/app.js';
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.js';
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.js';
278
+ import { HTTP_STATUS_CODE } from './constants/httpStatusCode.js';
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.js';
280
+ import ApprovalRequestModel from './models/mongodb/approvalRequestModel.js';
281
+ import AttendanceModel from './models/mongodb/attendanceModel.js';
282
+ import BlogModel from './models/mongodb/blogModel.js';
283
+ import CareerModel from './models/mongodb/careerModel.js';
284
+ import CertificatesHistoryModel from './models/mongodb/certificatesHistoryModel.js';
285
+ import CertificatesManagementModel from './models/mongodb/certificatesManagementModel.js';
286
+ import ColumnModel from './models/mongodb/columnModel.js';
287
+ import DailyBookModel from './models/mongodb/dailyBookModel.js';
288
+ import DashboardManagementModel from './models/mongodb/dashboardManagementModel.js';
289
+ import EventModel from './models/mongodb/eventModel.js';
290
+ import ExamGroupModel from './models/mongodb/examGroupModel.js';
291
+ import ExamHasAnswerSheetModel from './models/mongodb/examHasAnswerSheetModel.js';
292
+ import ExamModel from './models/mongodb/examModel.js';
293
+ import FeeReminderTypeModel from './models/mongodb/feeReminderTypeModel.js';
294
+ import FeedBackModel from './models/mongodb/feedBackModel.js';
295
+ import GenerateIdCardModel from './models/mongodb/generateIdCardModel.js';
296
+ import HolidayModel from './models/mongodb/holidayModel.js';
297
+ import InformationSupportModel from './models/mongodb/informationSupportModel.js';
298
+ import InquiryModel from './models/mongodb/inquiryModel.js';
299
+ import InvoiceModel from './models/mongodb/invoiceModel.js';
300
+ import JobApplyModel from './models/mongodb/jobApplyModel.js';
301
+ import PhotosGalleryModel from './models/mongodb/photosGalleryModel.js';
302
+ import PlannerModel from './models/mongodb/plannerModel.js';
303
+ import ReplaceTeacherModel from './models/mongodb/replaceTeacherModel.js';
304
+ import SchoolFeeModel from './models/mongodb/schoolFeeModel.js';
305
+ import SubjectIndexModel from './models/mongodb/subjectIndexModel.js';
306
+ import SubscriptionPlanModel from './models/mongodb/subscriptionPlanModel.js';
307
+ import TaskManagementModel from './models/mongodb/taskManagementModel.js';
308
+ import UniqueNumberCounterModel from './models/mongodb/uniqueNumberCounterModel.js';
309
+ import UserDetailsModel from './models/mongodb/userDetailsModel.js';
310
+ import { UserSchoolInfoSchema } from './models/mongodb/userDetailsModel.js';
311
+ import { IUserDoc, UserDoc } from './models/mongodb/userDoc.js';
312
+ import UserInstituteMetaModel from './models/mongodb/userInstituteMetaModel.js';
313
+ import UserSchoolMetaModel from './models/mongodb/userSchoolMetaModel.js';
314
+ import VideoAnalystModel from './models/mongodb/videoAnalystModel.js';
315
+ import WalletTransactionModel from './models/mongodb/walletTransactionModel.js';
316
+ import SubCategoriesModel from './models/psql/SubCategoriesModel.js';
317
+ import AcademicCalendarModel from './models/psql/academicCalendarModel.js';
318
+ import AccountHasReceiptDetailsModel from './models/psql/accountHasReceiptDetailsModel.js';
319
+ import AnnouncementModel from './models/psql/announcementModel.js';
320
+ import AreaModel from './models/psql/areaModel.js';
321
+ import BankAccountDetailsModel from './models/psql/bankAccountDetailsModel.js';
322
+ import BannerModel from './models/psql/bannerModel.js';
323
+ import BatchModel from './models/psql/batchModel.js';
324
+ import BatchSubjectBookAssessmentModel from './models/psql/batchSubjectBookAssessmentModel.js';
325
+ import BatchSubjectProjectAssessmentModel from './models/psql/batchSubjectProjectAssessmentModel.js';
326
+ import BookAssessmentDateModel from './models/psql/bookAssessmentDateModel.js';
327
+ import CategoriesModel from './models/psql/categoriesModel.js';
328
+ import CityModel from './models/psql/cityModel.js';
329
+ import ClassRoomModel from './models/psql/classRoomModel.js';
330
+ import CloudStorageModel from './models/psql/cloudStorageModel.js';
331
+ import CoinPurchaseOfferModel from './models/psql/coinPurchaseOfferModel.js';
332
+ import ContactFeedBackModel from './models/psql/contactFeedBackModel.js';
333
+ import CountryModel from './models/psql/countryModel.js';
334
+ import CourseHasVisitorsModel from './models/psql/courseHasVisitorsModel.js';
335
+ import CourseModel from './models/psql/courseModel.js';
336
+ import DriverModel from './models/psql/driverModel.js';
337
+ import EntityGroupModel from './models/psql/entityGroupModel.js';
338
+ import FacilityModel from './models/psql/facilityModel.js';
339
+ import FeatureActionModel from './models/psql/featureActionModel.js';
340
+ import FeeHistoryDetailsModel from './models/psql/feeHistoryDetailsModel.js';
341
+ import FeeHistoryModel from './models/psql/feeHistoryModel.js';
342
+ import FeeReminderModel from './models/psql/feeReminderModel.js';
343
+ import FeeReminderSettingModel from './models/psql/feeReminderSettingModel.js';
344
+ import FeeTypeHasTermsModel from './models/psql/feeTypeHasTermsModel.js';
345
+ import FeeTypeModel from './models/psql/feeTypeModel.js';
346
+ import FeesCollectionModel from './models/psql/feesCollectionModel.js';
347
+ import FileStorageModel from './models/psql/fileStorageModel.js';
348
+ import FloorManagementModel from './models/psql/floorManagementModel.js';
349
+ import GreetingsModel from './models/psql/greetingsModel.js';
350
+ import HomeWorkModel from './models/psql/homeWorkModel.js';
351
+ import InstituteEntityModel from './models/psql/instituteEntityModel.js';
352
+ import InstituteEntityTypeModel from './models/psql/instituteEntityTypeModel.js';
353
+ import InstituteModel from './models/psql/instituteModel.js';
354
+ import InstituteSubscriptionPlanModel from './models/psql/instituteSubscriptionPlanModel.js';
355
+ import InventoryHistoryModel from './models/psql/inventoryHistoryModel.js';
356
+ import InventoryModel from './models/psql/inventoryModel.js';
357
+ import LectureHistoryModel from './models/psql/lectureHistoryModel.js';
358
+ import LectureModel from './models/psql/lectureModel.js';
359
+ import MasterLeaveModel from './models/psql/masterLeaveModel.js';
360
+ import ModuleFeatureModel from './models/psql/moduleFeatureModel.js';
361
+ import ModuleModel from './models/psql/moduleModel.js';
362
+ import OfferModel from './models/psql/offerModel.js';
363
+ import PaymentTermsModel from './models/psql/paymentTermsModel.js';
364
+ import PdcChequeModel from './models/psql/pdcChequeModel.js';
365
+ import PdcHistoryModel from './models/psql/pdcHistoryModel.js';
366
+ import PincodeModel from './models/psql/pincodeModel.js';
367
+ import ProductModel from './models/psql/productModel.js';
368
+ import ProjectAssessmentOptionModel from './models/psql/projectAssessmentOptionModel.js';
369
+ import RoleModel from './models/psql/roleModel.js';
370
+ import RulesRegulationModel from './models/psql/rulesRegulationModel.js';
371
+ import SchoolFeeCollectionModel from './models/psql/schoolFeeCollectionModel.js';
372
+ import SchoolOfferModel from './models/psql/schoolOfferModel.js';
373
+ import SendNotificationModel from './models/psql/sendNotificationModel.js';
374
+ import SlotModel from './models/psql/slotModel.js';
375
+ import StateModel from './models/psql/stateModel.js';
376
+ import SubjectHasFeeModel from './models/psql/subjectHasFeeModel.js';
377
+ import SubjectHasPayFeeHistoryModel from './models/psql/subjectHasPayFeeHistoryModel.js';
378
+ import SyllabusModel from './models/psql/syllabusModel.js';
379
+ import TestimonialModel from './models/psql/testimonialModel.js';
380
+ import ToDoModel from './models/psql/toDoModel.js';
381
+ import TokenModel from './models/psql/tokenModel.js';
382
+ import TripModel from './models/psql/tripModel.js';
383
+ import TypeManagementModel from './models/psql/typeManagementModel.js';
384
+ import UserBookAssessmentModel from './models/psql/userBookAssessmentModel.js';
385
+ import UserFeeTypeByAccountModel from './models/psql/userFeeTypeByAccountModel.js';
386
+ import UserFeeTypeModel from './models/psql/userFeeTypeModel.js';
387
+ import UserHasAnnouncementModel from './models/psql/userHasAnnouncementModel.js';
388
+ import UserHasBatchModel from './models/psql/userHasBatchModel.js';
389
+ import UserHasCourseModel from './models/psql/userHasCourseModel.js';
390
+ import UserHasDeviceModel from './models/psql/userHasDeviceModel.js';
391
+ import UserHasFeeTermsModel from './models/psql/userHasFeeTermsModel.js';
392
+ import UserHasFileModel from './models/psql/userHasFileModel.js';
393
+ import UserHasHomeWorkModel from './models/psql/userHasHomeWorkModel.js';
394
+ import UserHasInventoryHistoryModel from './models/psql/userHasInventoryHistoryModel.js';
395
+ import UserHasInventoryModel from './models/psql/userHasInventoryModel.js';
396
+ import UserHasLeaveHistoryModel from './models/psql/userHasLeaveHistoryModel.js';
397
+ import UserHasLeaveModel from './models/psql/userHasLeaveModel.js';
398
+ import UserHasOfferModel from './models/psql/userHasOfferModel.js';
399
+ import UserHasParentModel from './models/psql/userHasParentModel.js';
400
+ import UserHasRoleModel from './models/psql/userHasRoleModel.js';
401
+ import UserHasRollNumberModel from './models/psql/userHasRollNumberModel.js';
402
+ import UserHasStorageModel from './models/psql/userHasStorageModel.js';
403
+ import UserHasSubjectFeeModel from './models/psql/userHasSubjectFeeModel.js';
404
+ import UserLeaveRequestModel from './models/psql/userLeaveRequestModel.js';
405
+ import UserModel from './models/psql/userModel.js';
406
+ import UserPayoutDetailsModel from './models/psql/userPayoutDetailsModel.js';
407
+ import UserPayoutHistoryModel from './models/psql/userPayoutHistoryModel.js';
408
+ import UserPayoutModel from './models/psql/userPayoutModel.js';
409
+ import UserProjectAssessmentOptionModel from './models/psql/userProjectAssessmentOptionModel.js';
410
+ import UserRequiredStepsModel from './models/psql/userRequiredStepsModel.js';
411
+ import VehicleModel from './models/psql/vehicleModel.js';
412
+ import VendorManagementModel from './models/psql/vendorManagementModel.js';
413
+ import WalletHistoryModel from './models/psql/walletHistoryModel.js';
414
+ import WalletModel from './models/psql/walletModel.js';
415
+ import WorkingDayModel from './models/psql/workingDayModel.js';
416
+ import WorkingShiftModel from './models/psql/workingShiftModel.js';
417
+ import { sequelize, db, Sequelize } from './models/psql/index.js';
418
+ import connectMongoDb from './models/mongodb/index.js';
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, API_URL, GOOGLE_AUTH, META_AUTH, APPLE_AUTH, 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, PAYMENT_PROCESSING_STATUS_URL, PAYMENT_PROCESSING_PAGE_URL, PAYMENT_PROCESSING_CALLBACK_URL, 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, connectMongoDb };