@kipicore/dbcore 1.1.13 → 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 @@
1
+ export {};
@@ -0,0 +1,52 @@
1
+ import { FilterQuery, InsertManyOptions, MongooseUpdateQueryOptions, QueryOptions } from 'mongoose';
2
+ import { BulkCreateOptions, CountOptions, CreateOptions, FindOptions, FindOrCreateOptions, UpdateOptions, WhereOptions } from 'sequelize';
3
+ export interface IDefaultAttributes {
4
+ createdBy?: string;
5
+ updatedBy?: string;
6
+ createdAt?: Date;
7
+ updatedAt?: Date;
8
+ deletedBy?: string;
9
+ deletedAt?: Date | string;
10
+ }
11
+ export interface IEmailOptions {
12
+ from?: string;
13
+ to: string | string[];
14
+ cc?: string | string[];
15
+ bcc?: string | string[];
16
+ subject: string;
17
+ text?: string;
18
+ html?: string;
19
+ attachments?: {
20
+ filename: string;
21
+ path: string;
22
+ }[];
23
+ }
24
+ export interface ICommanDao<IModelAttributes, TCreationAttributes> {
25
+ findAll: (where: WhereOptions<IModelAttributes>, options?: FindOptions<IModelAttributes>) => Promise<IModelAttributes[]>;
26
+ findOne(where: WhereOptions<IModelAttributes>, options?: FindOptions<IModelAttributes>): Promise<IModelAttributes | null>;
27
+ update: (where: WhereOptions<IModelAttributes>, updateData: Partial<TCreationAttributes>, options: Omit<UpdateOptions<IModelAttributes>, 'where'>) => Promise<[affectedCount: number]>;
28
+ create: (createData: TCreationAttributes, options: CreateOptions) => Promise<IModelAttributes>;
29
+ bulkCreate: (createData: TCreationAttributes[], options: BulkCreateOptions) => Promise<IModelAttributes[]>;
30
+ }
31
+ export interface ICountDao<IModelAttributes> {
32
+ count: (where: WhereOptions<IModelAttributes>, options?: CountOptions<IModelAttributes>) => Promise<number>;
33
+ }
34
+ export interface IDeleteDao<IModelAttributes> {
35
+ delete: (where: WhereOptions<IModelAttributes>, options?: CountOptions<IModelAttributes>) => Promise<number>;
36
+ }
37
+ export interface IFindAllDao<IModelAttributes> {
38
+ findAll: (where: WhereOptions<IModelAttributes>, options?: FindOptions<IModelAttributes>) => Promise<IModelAttributes[]>;
39
+ }
40
+ export interface IFindOneDao<IModelAttributes> {
41
+ findOne(where: WhereOptions<IModelAttributes>, options?: FindOptions<IModelAttributes>): Promise<IModelAttributes | null>;
42
+ }
43
+ export interface IUpsertDao<IModelAttributes> {
44
+ upsert: (where: WhereOptions<IModelAttributes>, updateData: FindOrCreateOptions<IModelAttributes>, options: Omit<FindOrCreateOptions<IModelAttributes>, 'where'>) => Promise<[IModelAttributes, boolean]>;
45
+ }
46
+ export interface ICommanMongoDao<IModelAttributes, TCreationAttributes> {
47
+ findAll: (where: FilterQuery<IModelAttributes>, options?: QueryOptions<IModelAttributes>) => Promise<IModelAttributes[]>;
48
+ findOne(where: FilterQuery<IModelAttributes>, options?: QueryOptions<IModelAttributes>): Promise<IModelAttributes | null>;
49
+ update: (where: FilterQuery<IModelAttributes>, updateData: Partial<TCreationAttributes>, options?: MongooseUpdateQueryOptions<IModelAttributes> | null) => Promise<any>;
50
+ create: (createData: TCreationAttributes, options?: CreateOptions) => Promise<IModelAttributes>;
51
+ bulkCreate: (createData: TCreationAttributes[], options?: InsertManyOptions) => Promise<IModelAttributes[] | undefined>;
52
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,13 @@
1
+ import { CONTACT_FEED_BACK_TYPE } from '../constants/app.js';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ export interface IContactFeedBackAttributes extends IDefaultAttributes {
4
+ id: number;
5
+ subject: string;
6
+ discraption: string;
7
+ files?: string[];
8
+ type: CONTACT_FEED_BACK_TYPE;
9
+ instituteId?: string;
10
+ academicCalendarId: string;
11
+ userId?: string;
12
+ givenInstitutedId?: string;
13
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,11 @@
1
+ import { IDefaultAttributes } from './commanInterface.js';
2
+ export interface ICountryAttributes extends IDefaultAttributes {
3
+ id?: number;
4
+ countryCode: string;
5
+ name: string;
6
+ phoneCode: number;
7
+ currency: string;
8
+ isActive?: boolean;
9
+ createdAt?: Date;
10
+ updatedAt?: Date;
11
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,7 @@
1
+ import { IDefaultAttributes } from './commanInterface.js';
2
+ export interface ICourseHasVisitorsModelAttributes extends IDefaultAttributes {
3
+ id: string;
4
+ courseId: string;
5
+ date: Date;
6
+ visitCount: number;
7
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,18 @@
1
+ import { APP_TYPE, COMMAN_STATUS, COURSE_STATUS, USER_TYPES } from '../constants/app.js';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ export interface ICourseModelAttributes extends IDefaultAttributes {
4
+ id: string;
5
+ instituteId?: string;
6
+ price: number;
7
+ title: string;
8
+ subTitle: string;
9
+ materialType: string;
10
+ userType: USER_TYPES;
11
+ appType: APP_TYPE;
12
+ courseStatus: COURSE_STATUS;
13
+ entities: string[];
14
+ subjectId: string;
15
+ status: COMMAN_STATUS;
16
+ instructor: string;
17
+ expiryTime: number;
18
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,14 @@
1
+ import { Document } from 'mongoose';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ export interface IDailyBookModelAttributes extends IDefaultAttributes, Document {
4
+ id: string;
5
+ userId: string;
6
+ date: Date;
7
+ instituteId: string;
8
+ batchId: string;
9
+ subjectId: string;
10
+ lectureId: string;
11
+ subjectIndexId: string;
12
+ chapterIndexId: string[];
13
+ teachingAid: string;
14
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,19 @@
1
+ import { Document } from 'mongoose';
2
+ import { USER_TYPES, COMMAN_STATUS } from '../constants/app.js';
3
+ import { IDefaultAttributes } from './commanInterface.js';
4
+ export interface IModuleList {
5
+ sequenceNumber: number;
6
+ moduleName: string;
7
+ webConfig: string;
8
+ mobileConfig: string;
9
+ webStatus: COMMAN_STATUS;
10
+ mobileStatus: COMMAN_STATUS;
11
+ }
12
+ export interface IDashboardManagementAttributes extends IDefaultAttributes, Document {
13
+ id: string;
14
+ isDefault: boolean;
15
+ userId: string;
16
+ instituteId: string;
17
+ userType: USER_TYPES;
18
+ moduleList: IModuleList[];
19
+ }
@@ -0,0 +1,21 @@
1
+ import { APP_TYPE, COMMAN_STATUS } from '../constants/app.js';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ export interface IDriverModelAttributes extends IDefaultAttributes {
4
+ id: string;
5
+ instituteId: string;
6
+ firstName: string;
7
+ lastName: string;
8
+ address1: string;
9
+ address2?: string;
10
+ pinCode: string;
11
+ city: number;
12
+ state: number;
13
+ country: number;
14
+ area: string;
15
+ aadharCardNumber: string;
16
+ aadharCard: string;
17
+ drivingLicenseNumber: string;
18
+ drivingLicense: string;
19
+ appType?: APP_TYPE;
20
+ status: COMMAN_STATUS;
21
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,12 @@
1
+ import { IDefaultAttributes } from './commanInterface.js';
2
+ import { COMMAN_STATUS } from '../constants/app.js';
3
+ export interface IEntityGroupModelAttributes extends IDefaultAttributes {
4
+ id: string;
5
+ name: string;
6
+ standardId: string;
7
+ isDefault: boolean;
8
+ entityIds: string[];
9
+ instituteId: string;
10
+ status: COMMAN_STATUS;
11
+ selectionCount: number;
12
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,21 @@
1
+ import { Document } from 'mongoose';
2
+ import { ACADEMIC_CALENDARS_TYPE, COMMAN_STATUS, PLANNER_SYNC_STATUS } from '../constants/app.js';
3
+ import { IDefaultAttributes } from './commanInterface.js';
4
+ export interface IEventHasBatch {
5
+ batchId: string;
6
+ subjectId?: string;
7
+ lectureId?: string;
8
+ }
9
+ export interface IEventModelAttributes extends IDefaultAttributes, Document {
10
+ id: string;
11
+ title: string;
12
+ subTitle?: string;
13
+ description?: string;
14
+ batches?: IEventHasBatch[];
15
+ type: ACADEMIC_CALENDARS_TYPE;
16
+ status?: COMMAN_STATUS;
17
+ instituteId?: string;
18
+ startTime: Date;
19
+ endTime: Date;
20
+ plannerSyncStatus?: PLANNER_SYNC_STATUS;
21
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,30 @@
1
+ import mongoose, { Document } from 'mongoose';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ import { EXAM_GROUP_STANDARD_RESULT, EXAM_GROUP_STATUS } from '../constants/app.js';
4
+ import { IExamModelAttributes } from './examInterface.js';
5
+ export interface IExamGroupDaysAttributes {
6
+ date: Date;
7
+ note: string;
8
+ subjectId: string;
9
+ examId?: mongoose.Types.ObjectId;
10
+ isHoliday: boolean;
11
+ examDetails?: IExamModelAttributes;
12
+ }
13
+ export interface IExamGroupStandardByDaysAttributes {
14
+ standardId: string;
15
+ days: IExamGroupDaysAttributes[];
16
+ isMarksAdded?: boolean;
17
+ result?: EXAM_GROUP_STANDARD_RESULT;
18
+ }
19
+ export interface IExamGroupModelAttributes extends IDefaultAttributes, Document {
20
+ id: string;
21
+ title: string;
22
+ subTitle: string;
23
+ instituteId: string;
24
+ startDate: Date;
25
+ endDate: Date;
26
+ standardByDays: IExamGroupStandardByDaysAttributes[];
27
+ standards: string[];
28
+ subjects?: string[];
29
+ status: EXAM_GROUP_STATUS;
30
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,23 @@
1
+ import mongoose, { Document } from 'mongoose';
2
+ import { EXAM_ANSWER_SHEET_QUESTION_RESULT, EXAM_ANSWER_SHEET_RESULT_STATUS, EXAM_ANSWER_SHEET_RESULT_TYPE, EXAM_ANSWER_SHEET_STATUS, USER_TYPES } from '../constants/app.js';
3
+ import { IDefaultAttributes } from './commanInterface.js';
4
+ export interface IAnswerSheetQuestion {
5
+ index: number;
6
+ options?: string[];
7
+ selectedOptions?: string[];
8
+ validOptions?: string[];
9
+ result?: EXAM_ANSWER_SHEET_QUESTION_RESULT;
10
+ }
11
+ export interface IExamHasAnswerSheetModelAttributes extends IDefaultAttributes, Document {
12
+ id: string;
13
+ examId: mongoose.Types.ObjectId;
14
+ questions?: IAnswerSheetQuestion[];
15
+ userId: string;
16
+ userType?: USER_TYPES;
17
+ status?: EXAM_ANSWER_SHEET_STATUS;
18
+ obtainedMarks?: number;
19
+ type?: EXAM_ANSWER_SHEET_RESULT_TYPE;
20
+ resultStatus?: EXAM_ANSWER_SHEET_RESULT_STATUS;
21
+ isInProgress?: boolean;
22
+ studentExamIp?: string;
23
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,38 @@
1
+ import { Document } from 'mongoose';
2
+ import { EXAM_ANSWER_SELECTION_TYPE, EXAM_VALID_ANSWER_TYPE, EXAM_MODE, EXAM_STATUS, PLANNER_SYNC_STATUS } from '../constants/app.js';
3
+ import { IDefaultAttributes } from './commanInterface.js';
4
+ import mongoose from 'mongoose';
5
+ export interface IExamHasBatch {
6
+ batchId: string;
7
+ classroomId: string;
8
+ startTime: Date;
9
+ endTime: Date;
10
+ isMarksAdded?: boolean;
11
+ }
12
+ export interface IExamModelAttributes extends IDefaultAttributes, Document {
13
+ id: string;
14
+ title: string;
15
+ subTitle?: string;
16
+ description?: string;
17
+ subject: string;
18
+ fileId?: string;
19
+ batches: IExamHasBatch[];
20
+ mode: EXAM_MODE;
21
+ type: string;
22
+ scheduleDate: Date;
23
+ maxMarks: number;
24
+ passingMarks: number;
25
+ status?: EXAM_STATUS;
26
+ nagativeMarksPerQuestion: number;
27
+ marksPerQuestion?: number;
28
+ instituteId?: string;
29
+ totalQuestions?: number;
30
+ mcqOptions?: string[];
31
+ ansSelectionType?: EXAM_ANSWER_SELECTION_TYPE;
32
+ validAnsType?: EXAM_VALID_ANSWER_TYPE;
33
+ standard?: string;
34
+ groupId?: mongoose.Types.ObjectId;
35
+ isPublished: boolean;
36
+ isMarksAdded?: boolean;
37
+ plannerSyncStatus?: PLANNER_SYNC_STATUS;
38
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,9 @@
1
+ import { FACILITY_TYPE } from '../constants/app.js';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ export interface IFacilityAttributes extends IDefaultAttributes {
4
+ id: string;
5
+ typeManagementId: string;
6
+ type: FACILITY_TYPE;
7
+ quantity: number;
8
+ instituteId: string;
9
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,17 @@
1
+ import { APP_TYPE, COMMAN_STATUS } from '../constants/app.js';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ export interface IFeatureActionAttributes extends IDefaultAttributes {
4
+ id: string;
5
+ name: string;
6
+ isDefault?: boolean;
7
+ status?: COMMAN_STATUS;
8
+ featureId?: string;
9
+ code?: string;
10
+ appType?: APP_TYPE;
11
+ moduleId: string;
12
+ roleId?: string;
13
+ createdBy?: string;
14
+ updatedBy?: string;
15
+ createdAt?: Date;
16
+ updatedAt?: Date;
17
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,17 @@
1
+ import { PAYMENT_TYPE } from '../constants/app.js';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ export interface IFeeHistoryDetailsModelAttributes extends IDefaultAttributes {
4
+ id: string;
5
+ instituteId: string;
6
+ feeHistoryId: string;
7
+ userFeeTypeByAccountId: string;
8
+ academicCalendarId: string;
9
+ schoolFeeCollectionId: string;
10
+ userId: string;
11
+ feeTypeId: string;
12
+ paidFee: number;
13
+ upiId: string;
14
+ paymentType: PAYMENT_TYPE;
15
+ chequeNo: string;
16
+ bankName: string;
17
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,21 @@
1
+ import { FEE_HISTORY_STATUS, PAYMENT_TYPE } from '../constants/app.js';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ export interface IFeeHistoryModelAttributes extends IDefaultAttributes {
4
+ id: string;
5
+ instituteId: string;
6
+ userId: string;
7
+ feeCollectionId?: string;
8
+ paidFee: number;
9
+ pdfId?: string | null;
10
+ invoiceId?: number | null;
11
+ status: FEE_HISTORY_STATUS;
12
+ paidDate: Date;
13
+ upiId?: string | null;
14
+ paymentType?: PAYMENT_TYPE;
15
+ bankName?: string | null;
16
+ chequeNo?: string | null;
17
+ feeTypeId?: string[] | null;
18
+ bankAccountId?: string | null;
19
+ parentHistoryId?: string | null;
20
+ schoolFeeCollectionId?: string | null;
21
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,13 @@
1
+ import { IDefaultAttributes } from './commanInterface.js';
2
+ export interface IFeeReminderModelAttributes extends IDefaultAttributes {
3
+ id: string;
4
+ userId: string;
5
+ instituteId: string;
6
+ sendDate: Date;
7
+ templateId: string;
8
+ batchId: string;
9
+ subjectId?: string;
10
+ feeCollectionId: string;
11
+ dueDate: Date;
12
+ dueAmount: number;
13
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,10 @@
1
+ import { BOOLEAN_STATUS, FEE_REMINDER_SETTING_STATUS } from '../constants/app.js';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ export interface IFeeReminderSettingModelAttributes extends IDefaultAttributes {
4
+ id: string;
5
+ instituteId: string;
6
+ templateData: string;
7
+ status: FEE_REMINDER_SETTING_STATUS;
8
+ typeId: string;
9
+ default: BOOLEAN_STATUS;
10
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,10 @@
1
+ import { Document } from 'mongoose';
2
+ import { FEE_REMINDER_SETTING_FREQUENCY, FEE_REMINDER_SETTING_TYPE } from '../constants/app.js';
3
+ import { IDefaultAttributes } from './commanInterface.js';
4
+ export interface IFeeReminderTypeModelAttributes extends IDefaultAttributes, Document {
5
+ id: string;
6
+ type: FEE_REMINDER_SETTING_TYPE;
7
+ day: number;
8
+ frequency: FEE_REMINDER_SETTING_FREQUENCY;
9
+ instituteId: string;
10
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,12 @@
1
+ import { PAYMENT_TERMS_TYPE } from '../constants/app.js';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ export interface IFeeTypeHasTermsModelAttributes extends IDefaultAttributes {
4
+ id: string;
5
+ stdId: string;
6
+ feeTypeId: string;
7
+ frequency: PAYMENT_TERMS_TYPE;
8
+ amount: number;
9
+ date: Date;
10
+ instituteId: string;
11
+ academicCalendarId: string;
12
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,13 @@
1
+ import { IDefaultAttributes } from './commanInterface.js';
2
+ import { FEE_TYPE, COMMAN_STATUS, FEE_TYPE_FREQUENCY, BOOLEAN_STATUS } from '../constants/app.js';
3
+ export interface IFeeTypeModelAttributes extends IDefaultAttributes {
4
+ id: string;
5
+ typeManagementId: string;
6
+ frequency: FEE_TYPE_FREQUENCY;
7
+ feeType: FEE_TYPE;
8
+ module: COMMAN_STATUS;
9
+ status: COMMAN_STATUS;
10
+ account: string;
11
+ instituteId: string;
12
+ isDefault: BOOLEAN_STATUS;
13
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,19 @@
1
+ import { Document } from 'mongoose';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ import { FEED_BACK_STATUS, FEED_BACK_TYPE } from '../constants/app.js';
4
+ export interface IConversation extends IDefaultAttributes {
5
+ userId: string;
6
+ comment: string;
7
+ parentCommentId: string;
8
+ }
9
+ export interface IFeedBackModelAttributes extends IDefaultAttributes, Document {
10
+ id: string;
11
+ type: FEED_BACK_TYPE;
12
+ serialNo: string;
13
+ publicToAll?: boolean;
14
+ status: FEED_BACK_STATUS;
15
+ subject: string;
16
+ description: string;
17
+ instituteId: string;
18
+ conversation: IConversation[];
19
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,19 @@
1
+ import { FEE_PAYMENT_STATUS, PAYMENT_TYPE } from '../constants/app.js';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ export interface IFeesCollectionModelAttributes extends IDefaultAttributes {
4
+ id: string;
5
+ date: Date;
6
+ feeAmount?: number;
7
+ paymentType?: PAYMENT_TYPE;
8
+ bankName?: string | null;
9
+ chequeNo?: string | null;
10
+ userId: string;
11
+ academicCalendarId: string;
12
+ instituteId: string;
13
+ upiId?: string | null;
14
+ status?: FEE_PAYMENT_STATUS;
15
+ discount?: number;
16
+ paidFee?: number;
17
+ dueDate?: Date;
18
+ isLeft: boolean;
19
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,14 @@
1
+ import { APP_TYPE } from '../constants/app.js';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ export interface IFileStorageAttributes extends IDefaultAttributes {
4
+ id: string;
5
+ originalFileName: string;
6
+ storageFileName: string;
7
+ storagePath?: string;
8
+ localPath?: string;
9
+ uploadedFrom: APP_TYPE;
10
+ filePath?: string;
11
+ instituteId?: string;
12
+ fileSize?: number;
13
+ storageUserId?: string;
14
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,9 @@
1
+ import { IDefaultAttributes } from './commanInterface.js';
2
+ import { COMMAN_STATUS } from '../constants/app.js';
3
+ export interface IFloorManagementModelAttributes extends IDefaultAttributes {
4
+ id: string;
5
+ title: string;
6
+ floorNumber: number;
7
+ status: COMMAN_STATUS;
8
+ instituteId: string;
9
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,8 @@
1
+ import { Document } from 'mongoose';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ export interface IGenarateIdCardModelAttributes extends IDefaultAttributes, Document {
4
+ id: string;
5
+ templateName: string;
6
+ content?: string;
7
+ instituteId: string;
8
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,12 @@
1
+ import { COMMAN_STATUS, GREETING_TYPE } from '../constants/app.js';
2
+ import { IDefaultAttributes } from './commanInterface.js';
3
+ export interface IGreetingsModelAttributes extends IDefaultAttributes {
4
+ id: string;
5
+ instituteId: string;
6
+ greetingType: GREETING_TYPE;
7
+ isDefault: boolean;
8
+ templateData: string;
9
+ status: COMMAN_STATUS;
10
+ title: string;
11
+ image: string;
12
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,22 @@
1
+ import { Document } from 'mongoose';
2
+ import { ACADEMIC_CALENDARS_TYPE, COMMAN_STATUS, PLANNER_SYNC_STATUS } from '../constants/app.js';
3
+ import { IDefaultAttributes } from './commanInterface.js';
4
+ export interface IHolidayHasBatch {
5
+ batchId: string;
6
+ subjectId?: string;
7
+ lectureId?: string;
8
+ }
9
+ export interface IHolidayModelAttributes extends IDefaultAttributes, Document {
10
+ id: string;
11
+ title: string;
12
+ subTitle?: string;
13
+ description?: string;
14
+ batches?: IHolidayHasBatch[];
15
+ type: ACADEMIC_CALENDARS_TYPE;
16
+ status?: COMMAN_STATUS;
17
+ instituteId?: string;
18
+ startTime: Date;
19
+ endTime: Date;
20
+ typeManagementId: string;
21
+ plannerSyncStatus?: PLANNER_SYNC_STATUS;
22
+ }
@@ -0,0 +1 @@
1
+ export {};